/ src / evidently / legacy / dashboard / tabs / quality_metrics_options_example.ipynb
quality_metrics_options_example.ipynb
  1  {
  2   "cells": [
  3    {
  4     "cell_type": "code",
  5     "execution_count": 1,
  6     "id": "3001cdaf",
  7     "metadata": {},
  8     "outputs": [
  9      {
 10       "name": "stdout",
 11       "output_type": "stream",
 12       "text": [
 13        "Obtaining file:///Users/olgafilippova/work/evidently\n",
 14        "Requirement already satisfied: dataclasses>=0.6 in /Users/olgafilippova/opt/anaconda3/lib/python3.9/site-packages (from evidently==0.1.40.dev0) (0.6)\n",
 15        "Requirement already satisfied: plotly>=4.12.0 in /Users/olgafilippova/opt/anaconda3/lib/python3.9/site-packages (from evidently==0.1.40.dev0) (4.12.0)\n",
 16        "Requirement already satisfied: statsmodels>=0.12.2 in /Users/olgafilippova/opt/anaconda3/lib/python3.9/site-packages (from evidently==0.1.40.dev0) (0.12.2)\n",
 17        "Requirement already satisfied: scikit-learn>=0.23.2 in /Users/olgafilippova/opt/anaconda3/lib/python3.9/site-packages (from evidently==0.1.40.dev0) (0.24.2)\n",
 18        "Requirement already satisfied: pandas>=1.1.5 in /Users/olgafilippova/opt/anaconda3/lib/python3.9/site-packages (from evidently==0.1.40.dev0) (1.1.5)\n",
 19        "Requirement already satisfied: numpy>=1.19.5 in /Users/olgafilippova/opt/anaconda3/lib/python3.9/site-packages (from evidently==0.1.40.dev0) (1.19.5)\n",
 20        "Requirement already satisfied: scipy>=1.5.4 in /Users/olgafilippova/opt/anaconda3/lib/python3.9/site-packages (from evidently==0.1.40.dev0) (1.5.4)\n",
 21        "Requirement already satisfied: requests>=2.19.0 in /Users/olgafilippova/opt/anaconda3/lib/python3.9/site-packages (from evidently==0.1.40.dev0) (2.26.0)\n",
 22        "Requirement already satisfied: PyYAML~=5.1 in /Users/olgafilippova/opt/anaconda3/lib/python3.9/site-packages (from evidently==0.1.40.dev0) (5.4.1)\n",
 23        "Requirement already satisfied: pytz>=2017.2 in /Users/olgafilippova/opt/anaconda3/lib/python3.9/site-packages (from pandas>=1.1.5->evidently==0.1.40.dev0) (2021.3)\n",
 24        "Requirement already satisfied: python-dateutil>=2.7.3 in /Users/olgafilippova/opt/anaconda3/lib/python3.9/site-packages (from pandas>=1.1.5->evidently==0.1.40.dev0) (2.8.2)\n",
 25        "Requirement already satisfied: retrying>=1.3.3 in /Users/olgafilippova/opt/anaconda3/lib/python3.9/site-packages (from plotly>=4.12.0->evidently==0.1.40.dev0) (1.3.3)\n",
 26        "Requirement already satisfied: six in /Users/olgafilippova/opt/anaconda3/lib/python3.9/site-packages (from plotly>=4.12.0->evidently==0.1.40.dev0) (1.16.0)\n",
 27        "Requirement already satisfied: idna<4,>=2.5 in /Users/olgafilippova/opt/anaconda3/lib/python3.9/site-packages (from requests>=2.19.0->evidently==0.1.40.dev0) (3.2)\n",
 28        "Requirement already satisfied: certifi>=2017.4.17 in /Users/olgafilippova/opt/anaconda3/lib/python3.9/site-packages (from requests>=2.19.0->evidently==0.1.40.dev0) (2021.10.8)\n",
 29        "Requirement already satisfied: urllib3<1.27,>=1.21.1 in /Users/olgafilippova/opt/anaconda3/lib/python3.9/site-packages (from requests>=2.19.0->evidently==0.1.40.dev0) (1.26.7)\n",
 30        "Requirement already satisfied: charset-normalizer~=2.0.0 in /Users/olgafilippova/opt/anaconda3/lib/python3.9/site-packages (from requests>=2.19.0->evidently==0.1.40.dev0) (2.0.4)\n",
 31        "Requirement already satisfied: threadpoolctl>=2.0.0 in /Users/olgafilippova/opt/anaconda3/lib/python3.9/site-packages (from scikit-learn>=0.23.2->evidently==0.1.40.dev0) (2.2.0)\n",
 32        "Requirement already satisfied: joblib>=0.11 in /Users/olgafilippova/opt/anaconda3/lib/python3.9/site-packages (from scikit-learn>=0.23.2->evidently==0.1.40.dev0) (1.1.0)\n",
 33        "Requirement already satisfied: patsy>=0.5 in /Users/olgafilippova/opt/anaconda3/lib/python3.9/site-packages (from statsmodels>=0.12.2->evidently==0.1.40.dev0) (0.5.2)\n",
 34        "Installing collected packages: evidently\n",
 35        "  Attempting uninstall: evidently\n",
 36        "    Found existing installation: evidently 0.1.40.dev0\n",
 37        "    Uninstalling evidently-0.1.40.dev0:\n",
 38        "      Successfully uninstalled evidently-0.1.40.dev0\n",
 39        "  Running setup.py develop for evidently\n",
 40        "Successfully installed evidently-0.1.40.dev0\n"
 41       ]
 42      }
 43     ],
 44     "source": [
 45      "!pip install -e /Users/olgafilippova/work/evidently"
 46     ]
 47    },
 48    {
 49     "cell_type": "code",
 50     "execution_count": 47,
 51     "id": "018b1851",
 52     "metadata": {},
 53     "outputs": [],
 54     "source": [
 55      "import pandas as pd\n",
 56      "import numpy as np\n",
 57      "from sklearn.datasets import fetch_openml\n",
 58      "from sklearn.ensemble import RandomForestClassifier\n",
 59      "from sklearn.linear_model import LogisticRegression\n",
 60      "from sklearn.model_selection import train_test_split\n",
 61      "from sklearn.neighbors import KNeighborsClassifier\n",
 62      "import seaborn as sns\n",
 63      "\n",
 64      "import pandas as pd\n",
 65      "\n",
 66      "\n",
 67      "from evidently.legacy.dashboard import Dashboard\n",
 68      "from evidently.legacy.pipeline.column_mapping import ColumnMapping\n",
 69      "from evidently.legacy.dashboard.tabs import ProbClassificationPerformanceTab\n",
 70      "\n",
 71      "from evidently.legacy.model_profile import Profile\n",
 72      "from evidently.legacy.model_profile.sections import ProbClassificationPerformanceProfileSection"
 73     ]
 74    },
 75    {
 76     "cell_type": "markdown",
 77     "id": "9923a4d4",
 78     "metadata": {},
 79     "source": [
 80      "# Load data"
 81     ]
 82    },
 83    {
 84     "cell_type": "code",
 85     "execution_count": 81,
 86     "id": "be6d1ca8",
 87     "metadata": {},
 88     "outputs": [],
 89     "source": [
 90      "wine = fetch_openml(name='wine_quality', version=1)"
 91     ]
 92    },
 93    {
 94     "cell_type": "code",
 95     "execution_count": 82,
 96     "id": "f29ccd4f",
 97     "metadata": {},
 98     "outputs": [],
 99     "source": [
100      "wine_df = wine.frame"
101     ]
102    },
103    {
104     "cell_type": "code",
105     "execution_count": 83,
106     "id": "20f16f3c",
107     "metadata": {},
108     "outputs": [],
109     "source": [
110      "red = wine_df[:1599]\n",
111      "white = wine_df[1599:]"
112     ]
113    },
114    {
115     "cell_type": "code",
116     "execution_count": 84,
117     "id": "4018dd44",
118     "metadata": {},
119     "outputs": [],
120     "source": [
121      "wine_column_mapping = ColumnMapping()\n",
122      "wine_column_mapping.numerical_features = wine.feature_names"
123     ]
124    },
125    {
126     "cell_type": "code",
127     "execution_count": 86,
128     "id": "05fd2521",
129     "metadata": {},
130     "outputs": [],
131     "source": "from evidently.legacy.dashboard.tabs import DataDriftTab"
132    },
133    {
134     "cell_type": "code",
135     "execution_count": null,
136     "id": "27ccd83f",
137     "metadata": {},
138     "outputs": [],
139     "source": [
140      "model_performance_dashboard = Dashboard(tabs=[DataDriftTab()])\n",
141      "model_performance_dashboard.calculate(red.sample(1000, random_state=0), \n",
142      "                                      white.sample(1000, random_state=0), \n",
143      "                                      column_mapping=wine_column_mapping)\n",
144      "model_performance_dashboard.show()"
145     ]
146    },
147    {
148     "cell_type": "code",
149     "execution_count": 57,
150     "id": "4024452e",
151     "metadata": {},
152     "outputs": [],
153     "source": [
154      "default_df['y'] = default_df['y'].astype(int)"
155     ]
156    },
157    {
158     "cell_type": "markdown",
159     "id": "8c48655b",
160     "metadata": {},
161     "source": [
162      "# Train model, get predictions"
163     ]
164    },
165    {
166     "cell_type": "code",
167     "execution_count": 162,
168     "id": "3e959879",
169     "metadata": {},
170     "outputs": [],
171     "source": [
172      "wine_df['target'] = (wine_df['quality'] > 5).astype(int)"
173     ]
174    },
175    {
176     "cell_type": "code",
177     "execution_count": 163,
178     "id": "e2f47845",
179     "metadata": {},
180     "outputs": [],
181     "source": [
182      "train_data, test_data = train_test_split(wine_df, random_state=0)"
183     ]
184    },
185    {
186     "cell_type": "code",
187     "execution_count": 164,
188     "id": "235bbf4b",
189     "metadata": {},
190     "outputs": [],
191     "source": [
192      "model = LogisticRegression()"
193     ]
194    },
195    {
196     "cell_type": "code",
197     "execution_count": 165,
198     "id": "fd392019",
199     "metadata": {},
200     "outputs": [
201      {
202       "name": "stderr",
203       "output_type": "stream",
204       "text": [
205        "/Users/olgafilippova/opt/anaconda3/lib/python3.9/site-packages/sklearn/linear_model/_logistic.py:763: ConvergenceWarning:\n",
206        "\n",
207        "lbfgs failed to converge (status=1):\n",
208        "STOP: TOTAL NO. of ITERATIONS REACHED LIMIT.\n",
209        "\n",
210        "Increase the number of iterations (max_iter) or scale the data as shown in:\n",
211        "    https://scikit-learn.org/stable/modules/preprocessing.html\n",
212        "Please also refer to the documentation for alternative solver options:\n",
213        "    https://scikit-learn.org/stable/modules/linear_model.html#logistic-regression\n",
214        "\n"
215       ]
216      },
217      {
218       "data": {
219        "text/plain": [
220         "LogisticRegression()"
221        ]
222       },
223       "execution_count": 165,
224       "metadata": {},
225       "output_type": "execute_result"
226      }
227     ],
228     "source": [
229      "model.fit(wine_df[wine.feature_names], wine_df.target)"
230     ]
231    },
232    {
233     "cell_type": "code",
234     "execution_count": 169,
235     "id": "6c547fec",
236     "metadata": {},
237     "outputs": [],
238     "source": [
239      "train_probas = pd.DataFrame(model.predict_proba(train_data[wine.feature_names]))\n",
240      "train_probas.columns = ['bad', 'good']\n",
241      "test_probas = pd.DataFrame(model.predict_proba(test_data[wine.feature_names]))\n",
242      "test_probas.columns = ['bad', 'good']"
243     ]
244    },
245    {
246     "cell_type": "code",
247     "execution_count": 170,
248     "id": "f27defe4",
249     "metadata": {},
250     "outputs": [],
251     "source": [
252      "train_data['target'] = train_data['target'].map({1: 'good', 0: 'bad'}).astype(str).values\n",
253      "test_data['target'] = test_data['target'].map({1: 'good', 0: 'bad'}).astype(str).values"
254     ]
255    },
256    {
257     "cell_type": "code",
258     "execution_count": 172,
259     "id": "57cb6df8",
260     "metadata": {},
261     "outputs": [],
262     "source": [
263      "train_data.reset_index(inplace=True, drop=True)\n",
264      "test_data.reset_index(inplace=True, drop=True)\n",
265      "\n",
266      "merged_train_data = pd.concat([train_data, train_probas], axis=1)\n",
267      "merged_test_data = pd.concat([test_data, test_probas], axis=1)"
268     ]
269    },
270    {
271     "cell_type": "markdown",
272     "id": "dd88eca8",
273     "metadata": {},
274     "source": [
275      "# Probabilistic Model Performance Dashboard full "
276     ]
277    },
278    {
279     "cell_type": "code",
280     "execution_count": 158,
281     "id": "91a9270a",
282     "metadata": {},
283     "outputs": [],
284     "source": [
285      "wine_column_mapping = ColumnMapping()\n",
286      "\n",
287      "wine_column_mapping.target = 'target'\n",
288      "wine_column_mapping.prediction = ['good', 'bad']\n",
289      "wine_column_mapping.numerical_features = wine.feature_names"
290     ]
291    },
292    {
293     "cell_type": "code",
294     "execution_count": 184,
295     "id": "3f73178e",
296     "metadata": {},
297     "outputs": [
298      {
299       "data": {
300        "text/html": [
301         "\n",
302         "<link rel=\"stylesheet\" href=\"https://fonts.googleapis.com/icon?family=Material+Icons\"/>\n",
303         "<style>\n",
304         ".reset-this-parent {\n",
305         "  all: initial;\n",
306         "}\n",
307         ".reset-this-parent h5 {\n",
308         "  all: initial;\n",
309         "  font: initial;\n",
310         "}\n",
311         "</style>\n",
312         "<script>\n",
313         "    var evidently_dashboard_522f08a9c3494994bcc173c8e0de5a16 = {\"name\": \"evidently_dashboard_522f08a9c3494994bcc173c8e0de5a16\", \"widgets\": [{\"type\": \"counter\", \"title\": \"\", \"size\": 2, \"details\": \"\", \"alertsPosition\": null, \"alertStats\": null, \"params\": {\"counters\": [{\"value\": \"\", \"label\": \"Probabilistic Classification Model Performance Report. Target: 'target'\"}]}, \"insights\": [], \"additionalGraphs\": [], \"alerts\": [], \"tabs\": []}, {\"type\": \"counter\", \"title\": \"Reference: Model Quality With Macro-average Metrics\", \"size\": 2, \"details\": \"\", \"alertsPosition\": null, \"alertStats\": null, \"params\": {\"counters\": [{\"value\": \"0.722\", \"label\": \"Accuracy\"}, {\"value\": \"0.696\", \"label\": \"Precision\"}, {\"value\": \"0.676\", \"label\": \"Recall\"}, {\"value\": \"0.682\", \"label\": \"F1\"}, {\"value\": \"0.782\", \"label\": \"ROC AUC\"}, {\"value\": \"0.533\", \"label\": \"LogLoss\"}]}, \"insights\": [], \"additionalGraphs\": [], \"alerts\": [], \"tabs\": []}, {\"type\": \"counter\", \"title\": \"Current: Model Quality With Macro-average Metrics\", \"size\": 2, \"details\": \"\", \"alertsPosition\": null, \"alertStats\": null, \"params\": {\"counters\": [{\"value\": \"0.733\", \"label\": \"Accuracy\"}, {\"value\": \"0.711\", \"label\": \"Precision\"}, {\"value\": \"0.676\", \"label\": \"Recall\"}, {\"value\": \"0.684\", \"label\": \"F1\"}, {\"value\": \"0.775\", \"label\": \"ROC AUC\"}, {\"value\": \"0.539\", \"label\": \"LogLoss\"}]}, \"insights\": [], \"additionalGraphs\": [], \"alerts\": [], \"tabs\": []}, {\"type\": \"big_graph\", \"title\": \"Reference: Class Representation\", \"size\": 1, \"details\": \"\", \"alertsPosition\": null, \"alertStats\": null, \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\"}, \"name\": \"Support\", \"type\": \"bar\", \"x\": [\"bad\", \"good\"], \"y\": [355.0, 645.0]}], \"layout\": {\"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"Class\"}}, \"yaxis\": {\"title\": {\"text\": \"Number of Objects\"}}}}, \"insights\": [], \"additionalGraphs\": [], \"alerts\": [], \"tabs\": []}, {\"type\": \"big_graph\", \"title\": \"Current: Class Representation\", \"size\": 1, \"details\": \"\", \"alertsPosition\": null, \"alertStats\": null, \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\"}, \"name\": \"Support\", \"type\": \"bar\", \"x\": [\"bad\", \"good\"], \"y\": [352.0, 648.0]}], \"layout\": {\"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"Class\"}}, \"yaxis\": {\"title\": {\"text\": \"Number of Objects\"}}}}, \"insights\": [], \"additionalGraphs\": [], \"alerts\": [], \"tabs\": []}, {\"type\": \"big_graph\", \"title\": \"Reference: Confusion Matrix\", \"size\": 1, \"details\": \"\", \"alertsPosition\": null, \"alertStats\": null, \"params\": {\"data\": [{\"colorscale\": [[0.0, \"rgb(0,0,255)\"], [1.0, \"rgb(255,0,0)\"]], \"reversescale\": false, \"showscale\": true, \"type\": \"heatmap\", \"x\": [\"bad\", \"good\"], \"y\": [\"bad\", \"good\"], \"z\": [[183, 172], [106, 539]]}], \"layout\": {\"annotations\": [{\"font\": {\"color\": \"#FFFFFF\"}, \"showarrow\": false, \"text\": \"183\", \"x\": \"bad\", \"xref\": \"x\", \"y\": \"bad\", \"yref\": \"y\"}, {\"font\": {\"color\": \"#FFFFFF\"}, \"showarrow\": false, \"text\": \"172\", \"x\": \"good\", \"xref\": \"x\", \"y\": \"bad\", \"yref\": \"y\"}, {\"font\": {\"color\": \"#FFFFFF\"}, \"showarrow\": false, \"text\": \"106\", \"x\": \"bad\", \"xref\": \"x\", \"y\": \"good\", \"yref\": \"y\"}, {\"font\": {\"color\": \"#FFFFFF\"}, \"showarrow\": false, \"text\": \"539\", \"x\": \"good\", \"xref\": \"x\", \"y\": \"good\", \"yref\": \"y\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"dtick\": 1, \"gridcolor\": \"rgb(0, 0, 0)\", \"side\": \"top\", \"ticks\": \"\", \"title\": {\"text\": \"Predicted value\"}}, \"yaxis\": {\"dtick\": 1, \"ticks\": \"\", \"ticksuffix\": \"  \", \"title\": {\"text\": \"Actual value\"}}}}, \"insights\": [], \"additionalGraphs\": [], \"alerts\": [], \"tabs\": []}, {\"type\": \"big_graph\", \"title\": \"Current: Confusion Matrix\", \"size\": 1, \"details\": \"\", \"alertsPosition\": null, \"alertStats\": null, \"params\": {\"data\": [{\"colorscale\": [[0.0, \"rgb(0,0,255)\"], [1.0, \"rgb(255,0,0)\"]], \"reversescale\": false, \"showscale\": true, \"type\": \"heatmap\", \"x\": [\"bad\", \"good\"], \"y\": [\"bad\", \"good\"], \"z\": [[170, 182], [85, 563]]}], \"layout\": {\"annotations\": [{\"font\": {\"color\": \"#FFFFFF\"}, \"showarrow\": false, \"text\": \"170\", \"x\": \"bad\", \"xref\": \"x\", \"y\": \"bad\", \"yref\": \"y\"}, {\"font\": {\"color\": \"#FFFFFF\"}, \"showarrow\": false, \"text\": \"182\", \"x\": \"good\", \"xref\": \"x\", \"y\": \"bad\", \"yref\": \"y\"}, {\"font\": {\"color\": \"#FFFFFF\"}, \"showarrow\": false, \"text\": \"85\", \"x\": \"bad\", \"xref\": \"x\", \"y\": \"good\", \"yref\": \"y\"}, {\"font\": {\"color\": \"#FFFFFF\"}, \"showarrow\": false, \"text\": \"563\", \"x\": \"good\", \"xref\": \"x\", \"y\": \"good\", \"yref\": \"y\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"dtick\": 1, \"gridcolor\": \"rgb(0, 0, 0)\", \"side\": \"top\", \"ticks\": \"\", \"title\": {\"text\": \"Predicted value\"}}, \"yaxis\": {\"dtick\": 1, \"ticks\": \"\", \"ticksuffix\": \"  \", \"title\": {\"text\": \"Actual value\"}}}}, \"insights\": [], \"additionalGraphs\": [], \"alerts\": [], \"tabs\": []}, {\"type\": \"big_graph\", \"title\": \"Reference: Quality Metrics by Class\", \"size\": 1, \"details\": \"\", \"alertsPosition\": null, \"alertStats\": null, \"params\": {\"data\": [{\"colorscale\": [[0.0, \"rgb(0,0,255)\"], [1.0, \"rgb(255,0,0)\"]], \"reversescale\": false, \"showscale\": true, \"type\": \"heatmap\", \"x\": [\"bad\", \"good\"], \"y\": [\"precision\", \"recall\", \"f1-score\"], \"z\": [[0.6332179930795848, 0.7580872011251758], [0.5154929577464789, 0.8356589147286821], [0.5683229813664596, 0.7949852507374631]]}], \"layout\": {\"annotations\": [{\"font\": {\"color\": \"#FFFFFF\"}, \"showarrow\": false, \"text\": \"0.633\", \"x\": \"bad\", \"xref\": \"x\", \"y\": \"precision\", \"yref\": \"y\"}, {\"font\": {\"color\": \"#FFFFFF\"}, \"showarrow\": false, \"text\": \"0.758\", \"x\": \"good\", \"xref\": \"x\", \"y\": \"precision\", \"yref\": \"y\"}, {\"font\": {\"color\": \"#FFFFFF\"}, \"showarrow\": false, \"text\": \"0.515\", \"x\": \"bad\", \"xref\": \"x\", \"y\": \"recall\", \"yref\": \"y\"}, {\"font\": {\"color\": \"#FFFFFF\"}, \"showarrow\": false, \"text\": \"0.836\", \"x\": \"good\", \"xref\": \"x\", \"y\": \"recall\", \"yref\": \"y\"}, {\"font\": {\"color\": \"#FFFFFF\"}, \"showarrow\": false, \"text\": \"0.568\", \"x\": \"bad\", \"xref\": \"x\", \"y\": \"f1-score\", \"yref\": \"y\"}, {\"font\": {\"color\": \"#FFFFFF\"}, \"showarrow\": false, \"text\": \"0.795\", \"x\": \"good\", \"xref\": \"x\", \"y\": \"f1-score\", \"yref\": \"y\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"dtick\": 1, \"gridcolor\": \"rgb(0, 0, 0)\", \"side\": \"top\", \"ticks\": \"\", \"title\": {\"text\": \"Class\"}}, \"yaxis\": {\"dtick\": 1, \"ticks\": \"\", \"ticksuffix\": \"  \", \"title\": {\"text\": \"Metric\"}}}}, \"insights\": [], \"additionalGraphs\": [], \"alerts\": [], \"tabs\": []}, {\"type\": \"big_graph\", \"title\": \"Current: Quality Metrics by Class\", \"size\": 1, \"details\": \"\", \"alertsPosition\": null, \"alertStats\": null, \"params\": {\"data\": [{\"colorscale\": [[0.0, \"rgb(0,0,255)\"], [1.0, \"rgb(255,0,0)\"]], \"reversescale\": false, \"showscale\": true, \"type\": \"heatmap\", \"x\": [\"bad\", \"good\"], \"y\": [\"precision\", \"recall\", \"f1-score\"], \"z\": [[0.6666666666666666, 0.7557046979865771], [0.48295454545454547, 0.8688271604938271], [0.5601317957166392, 0.8083273510409188]]}], \"layout\": {\"annotations\": [{\"font\": {\"color\": \"#FFFFFF\"}, \"showarrow\": false, \"text\": \"0.667\", \"x\": \"bad\", \"xref\": \"x\", \"y\": \"precision\", \"yref\": \"y\"}, {\"font\": {\"color\": \"#FFFFFF\"}, \"showarrow\": false, \"text\": \"0.756\", \"x\": \"good\", \"xref\": \"x\", \"y\": \"precision\", \"yref\": \"y\"}, {\"font\": {\"color\": \"#FFFFFF\"}, \"showarrow\": false, \"text\": \"0.483\", \"x\": \"bad\", \"xref\": \"x\", \"y\": \"recall\", \"yref\": \"y\"}, {\"font\": {\"color\": \"#FFFFFF\"}, \"showarrow\": false, \"text\": \"0.869\", \"x\": \"good\", \"xref\": \"x\", \"y\": \"recall\", \"yref\": \"y\"}, {\"font\": {\"color\": \"#FFFFFF\"}, \"showarrow\": false, \"text\": \"0.56\", \"x\": \"bad\", \"xref\": \"x\", \"y\": \"f1-score\", \"yref\": \"y\"}, {\"font\": {\"color\": \"#FFFFFF\"}, \"showarrow\": false, \"text\": \"0.808\", \"x\": \"good\", \"xref\": \"x\", \"y\": \"f1-score\", \"yref\": \"y\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"dtick\": 1, \"gridcolor\": \"rgb(0, 0, 0)\", \"side\": \"top\", \"ticks\": \"\", \"title\": {\"text\": \"Class\"}}, \"yaxis\": {\"dtick\": 1, \"ticks\": \"\", \"ticksuffix\": \"  \", \"title\": {\"text\": \"Metric\"}}}}, \"insights\": [], \"additionalGraphs\": [], \"alerts\": [], \"tabs\": []}, {\"type\": \"tabbed_graph\", \"title\": \"Reference: Class Separation Quality\", \"size\": 1, \"details\": \"\", \"alertsPosition\": \"row\", \"alertStats\": {}, \"params\": {\"graphs\": [{\"id\": \"tab_good\", \"title\": \"good\", \"graph\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good\", \"type\": \"scatter\", \"x\": [0.5514284427656483, 0.8532602024274076, 0.15147705931939837, 0.2592562149909985, 0.8256057840041534, 0.4883210588546224, 0.2875834757728678, 0.9918409374556353, 0.7796646097622284, 0.6529288533806669, 0.8203130251578863, 0.07307702772271141, 0.684863191954983, 0.07216982250044479, 0.6965616857295954, 0.7735667923860555, 0.5530152878492834, 0.587900249120892, 0.6077022420794631, 0.9355716990589958, 0.23258895398494395, 0.11625264212884434, 0.9510205359874752, 0.9711661575386462, 0.5006594828349897, 0.5706292744873135, 0.5004789810780662, 0.3180004237433417, 0.982921110438958, 0.35151204719541984, 0.2902899745978045, 0.861559474464951, 0.2996508486580809, 0.1681292557062859, 0.06376244905425532, 0.73175765946843, 0.41421280524826176, 0.4176036012374432, 0.43445236418629307, 0.881269931708389, 0.6593558059479309, 0.3721304820193251, 0.5857540921219991, 0.6097817780956897, 0.9504883426083623, 0.9722680795286789, 0.9778941841456634, 0.14445975494302576, 0.37733180472923156, 0.9086195415737209, 0.298782426063543, 0.28320234146095036, 0.8472105753968533, 0.9577430716306503, 0.04802887121735233, 0.024479394989072256, 0.9206446568711768, 0.8239755573320048, 0.16099268019094537, 0.31391935873092003, 0.4143222703756396, 0.8011616019250182, 0.05322092092437236, 0.9288770387512316, 0.619326950684261, 0.14743536674985736, 0.1893548600405528, 0.21610438289576317, 0.7522081664318342, 0.6276400692988883, 0.1187188811960651, 0.4702977061746434, 0.37274187197395336, 0.7248979486808279, 0.7621715454650589, 0.8314945927558284, 0.6095974551496389, 0.5917349326877943, 0.09503903792093893, 0.18894655262872784, 0.11158194761242035, 0.4520409952166121, 0.5228504470893645, 0.9896004909533734, 0.18687764357552505, 0.4924762052934891, 0.8272452546967016, 0.5860434330147494, 0.1853544570530511, 0.21825740429058804, 0.3808404258020499, 0.49583033395480647, 0.22994286097435657, 0.9189651857866825, 0.31714511726288364, 0.7257547281338385, 0.07607414605352047, 0.31222186382985406, 0.5103585936385479, 0.1591195464056373, 0.3203669714555796, 0.06686971817935916, 0.6741553680552334, 0.5634645349658198, 0.32228101677057763, 0.875756628487644, 0.844374387045168, 0.7458502808104277, 0.08530129013755361, 0.21833105019333732, 0.6372234397348073, 0.8046300581732635, 0.5007861793007656, 0.6244712306769156, 0.6839452973218412, 0.8811789497732311, 0.5084377214232219, 0.6913072040192353, 0.9050410167104234, 0.7568555539064309, 0.5635745192887469, 0.03276296200290452, 0.6205914088063023, 0.37836667709246175, 0.5803573358538273, 0.10910043864933539, 0.9763979946259944, 0.8420153872937127, 0.6105899655546178, 0.1486716410368325, 0.4675140509011274, 0.9952005105265969, 0.508792948334106, 0.5941616513353392, 0.0038778545554442045, 0.8986762426658889, 0.10515126385401663, 0.24720397666435712, 0.5445182077846129, 0.8859066427123703, 0.956838805403422, 0.629892668184606, 0.7802022684995816, 0.27157159744302517, 0.8606556236306017, 0.3613192929610737, 0.3093512950377506, 0.9202661644005584, 0.7645019521859828, 0.05064220002693631, 0.6409869980394598, 0.8175397358679234, 0.09443019112093765, 0.48274212707111797, 0.27301682900354807, 0.5376727937311964, 0.8731721079522623, 0.7737781995762489, 0.7919590715594268, 0.41511682457620735, 0.07289318170307646, 0.1133284549950605, 0.3464023974276943, 0.5288811148589156, 0.7147787832939155, 0.8126073797957812, 0.5003541500952561, 0.9884307658467822, 0.5963119158152405, 0.45739493902224226, 0.338023391385999, 0.3737363580389952, 0.4902422100289979, 0.21852762557683347, 0.9444470748650438, 0.9191256151609555, 0.9313608480025505, 0.5063180899467451, 0.9917451351089308, 0.7347650422591464, 0.5011544457451594, 0.792019096998527, 0.24692451349372746, 0.997721064196789, 0.4338366392169396, 0.49801618698855477, 0.6788281018039772, 0.3199615396060165, 0.10440500634001904, 0.19079175486019795, 0.07207218120784809, 0.8273802928129107, 0.28235674176269776, 0.5216704696379437, 0.7372945563720202, 0.4213284237813797, 0.13955451608880165, 0.28702568065004064, 0.6932780862299032, 0.8017958671747348, 0.3727399428027022, 0.8596759445114702, 0.48591461848696726, 0.8048654388747863, 0.9813965500143715, 0.33540283728753295, 0.012484437451434571, 0.40127352784103787, 0.1643882996510615, 0.01903171014568994, 0.04198328552919872, 0.01778157164584182, 0.8081619104865398, 0.7420374155216499, 0.1589486844216308, 0.06450468512568752, 0.19163371658983908, 0.9304600699865021, 0.06173375249733137, 0.2485910398328267, 0.8823724848760557, 0.7019332054696729, 0.4975902379840892, 0.46268418997089056, 0.41982433981425127, 0.7120154926697482, 0.23998763617177588, 0.10947411070270718, 0.20732493772688898, 0.018475579446069368, 0.8628110464484844, 0.8731088691843103, 0.09906839567271608, 0.3246047982133786, 0.17493375197788508, 0.2594050077927852, 0.051059056189424856, 0.1395433992301479, 0.3004803906210948, 0.4189705635687304, 0.6626443351632613, 0.6313302171613848, 0.3109615432331492, 0.25182222789573916, 0.7709317414528886, 0.20420660738197904, 0.5502028336064907, 0.9892524244543773, 0.6802590370777851, 0.476490948527983, 0.8145416984017251, 0.5706805252928149, 0.07761432059259643, 0.2168380925732759, 0.44333933656814295, 0.6177760049205873, 0.017529287101546442, 0.41002869043134993, 0.7235105836269323, 0.08791211067216687, 0.5297760697726996, 0.3275613374500709, 0.8714123454450705, 0.4063981040125675, 0.4098786085724626, 0.8122636732689958, 0.12948485135734844, 0.4581047084511448, 0.04873498364757578, 0.31492487150917625, 0.45124419177262975, 0.30208563501840735, 0.15708057254146324, 0.13321495198552347, 0.4738155974355436, 0.5013427668127467, 0.5965363549820833, 0.3353734229359123, 0.1581237700069139, 0.47262102346487156, 0.9826764777569708, 0.602455448319089, 0.9907547976604594, 0.7195093793635845, 0.43580404695121067, 0.5039855288077831, 0.8102134831200275, 0.0424356383807728, 0.9770280146371682, 0.5039069036959608, 0.6214246107470064, 0.43515118331534886, 0.10728393184761131, 0.29003342961584777, 0.35508049147277787, 0.6061880069292945, 0.7906714400886317, 0.2334375969787046, 0.13668670170486952, 0.03700194168191617, 0.16337079127100573, 0.7959008505421281, 0.737325327658567, 0.7860065948576105, 0.9312074257139551, 0.261146348845294, 0.9996499745316968, 0.9199882862205367, 0.7451224969226098, 0.6787858780136817, 0.930951630700188, 0.5882896256123438, 0.536777858170587, 0.12051823211077117, 0.023670960467334856, 0.4896801252439871, 0.06212935882692683, 0.8621190511684611, 0.21192656641612717, 0.9360529586234752, 0.6242511691845521, 0.9817967639909848, 0.44719116726612773, 0.9257378372446975, 0.23299838909104253, 0.9276348722530877, 0.660827581947594, 0.22988678096913628, 0.9901895208688564, 0.07898066363887779, 0.1343066287858944, 0.6835226152547667, 0.7879091373763504, 0.4716947450175184, 0.8911943312396023, 0.902115779380704, 0.9432802637688626, 0.16905658124704903, 0.31925528200544884, 0.962270081996505, 0.4712380604737956, 0.25811649308122064, 0.6671415837095902, 0.2720486028370963, 0.514568870493872, 0.06358114457907171, 0.8023811345508854, 0.9563819965097733, 0.20232293044899607, 0.338403324048018, 0.3936970982596141, 0.7002493374767149, 0.17125275471821033, 0.1682368045524435, 0.13203938002811222, 0.6077459735192166, 0.9825134942687461, 0.23560383276729824, 0.17502772375233833, 0.8817194722925196, 0.7611838625868933, 0.3796368749844802, 0.8643891454125208, 0.3357360592541918, 0.6718375270711415, 0.31747722042030424, 0.7198838034113332, 0.5450830648793707, 0.5401290597462798, 0.7886726173857963, 0.6741129889237806, 0.4178757900525111, 0.7720803109744117, 0.3705927854900736, 0.610255184675656, 0.8554713364922715, 0.7724030307361054, 0.6246127574817786, 0.14184747985953505, 0.04341084214429114, 0.36862005142785814, 0.29674169248702953, 0.41842110345665773, 0.09749439034715934, 0.7507331846696078, 0.3212915173576759, 0.43206516155197916, 0.5173946089101062, 0.25512897277083413, 0.8060973869223382, 0.2421354656939788, 0.008681487084366557, 0.8610514520166155, 0.7315311755278592, 0.05998827579667665, 0.5336233012439922, 0.12030339893855568, 0.2794996359885987, 0.7477848867087343, 0.061096938975048753, 0.86927068238092, 0.7613424063406178, 0.6296984719234527, 0.48163995218565303, 0.8810775347137542, 0.6065237272893992, 0.8060954308495717, 0.13393990630306496, 0.7532907479246603, 0.30338357237556135, 0.9338401907508168, 0.028315001287124608, 0.878991900523418, 0.29675165227983036, 0.07554653649520482, 0.004887605170658227, 0.8665953219567026, 0.8726329988014264, 0.5118370513769984, 0.9669487187298133, 0.09343728793954098, 0.558219825228358, 0.9437397254504601, 0.9423008440072067, 0.11081316900255844, 0.3903305164536722, 0.9604029971106538, 0.5784796451936753, 0.4115085506129308, 0.02453036951548393, 0.7452166981611303, 0.03002697659263842, 0.6566791915181445, 0.2147254628030144, 0.6777591351231204, 0.6665868735929739, 0.3427013337296281, 0.02163781507312945, 0.19430266795177586, 0.9494135908099608, 0.2173727598458275, 0.9926606303884947, 0.28257390783990155, 0.46549070923018976, 0.4126230870847142, 0.8605614313193921, 0.046772658172797854, 0.9220864702552491, 0.2681134857896049, 0.18493067295450671, 0.35519041937317297, 0.5948243446932666, 0.1330808822552505, 0.03318237707250282, 0.5121313469276045, 0.9181459623321311, 0.07987786638573413, 0.7928652334711828, 0.2586416326986819, 0.7254321469081422, 0.48276313755309497, 0.24377922581817268, 0.34393212327207057, 0.17321135019637102, 0.6437288796439629, 0.7169763604531793, 0.16574632291371572, 0.8579930518804156, 0.6340292835964232, 0.8679137352826279, 0.48437191450308303, 0.9360970327642494, 0.3684055412264573, 0.7824145240760212, 0.4945568146559889, 0.6255427438354441, 0.7324971462013502, 0.46881532782181323, 0.08308321372856642, 0.9956576775746039, 0.7326477336618379, 0.35614572422647783, 0.3361562144605186, 0.28085932455383267, 0.6433792773427403, 0.05008114820936116, 0.7583277366295499, 0.18044924590754718, 0.5411641886518422, 0.7851314415896443, 0.20564962875149595, 0.09989090462706363, 0.46624563530943597, 0.7669221621039378, 0.4263359409277422, 0.9237793448859722, 0.30909232769176775, 0.1750888443349401, 0.18224647822773887, 0.6408245169639367, 0.9472404255839145, 0.35958801923509887, 0.70269474505509, 0.22021256788820676, 0.9873879099313356, 0.6407865694700531, 0.45892738025396385, 0.8435286294643995, 0.669327647990995, 0.8653227863406262, 0.15668522198974155, 0.39761993884720814, 0.8215190182991, 0.26938664994321926, 0.46666979058448066, 0.5907063774239767, 0.6432001679323187, 0.9971791018871601, 0.5067524340166402, 0.4493636273963205, 0.14521498534708122, 0.16593007663468062, 0.6072901921279598, 0.8563536576218995, 0.7017552822529814, 0.34384466014798665, 0.8676313403750595, 0.9559879718982911, 0.5152637664034282, 0.1330571681763184, 0.9771036486439214, 0.3305301716179494, 0.4525970797572578, 0.4145107128008253, 0.09526101963492417, 0.2892711664714259, 0.25390474291498233, 0.8172737293016421, 0.32952909401557884, 0.705743103058763, 0.42771957462877985, 0.833530218141968, 0.03781880333245713, 0.030772774171463957, 0.2958949506763283, 0.9125067237526027, 0.4271486719467982, 0.21140485569583267, 0.6500040580642334, 0.27713638088082015, 0.3203864619080451, 0.6011420134212689, 0.27568553839897747, 0.6078222860080226, 0.4248289851696916, 0.37422481560512355, 0.5480516296509538, 0.5405177990175684, 0.4200202449298096, 0.6338628541754611, 0.7722500574341489, 0.29125423696711183, 0.6612553051783859, 0.454469445089851, 0.7527565806216089, 0.09649668417052393, 0.8856338621664943, 0.14313982091662603, 0.6697248742926685, 0.44199241131221656, 0.2156723394758565, 0.2990061615099794, 0.3482545655916539, 0.04168300999480945, 0.6139143265672542, 0.7044283883066484, 0.35743778359710787, 0.6322549578520973, 0.13730020142269728, 0.40463637612235537, 0.8282426967675979, 0.28542468592221226, 0.06600186137656983, 0.2874240010302108, 0.5722992535308965, 0.5498464364543588, 0.09013752107309925, 0.7599079976123098, 0.896411424670844, 0.19227753568585382, 0.5793993363095851, 0.3476263826212239, 0.7726003287964981, 0.21489881353406348, 0.6252063991228615, 0.11116767580759435, 0.8904533128204326, 0.894314614934159, 0.03730785817606341, 0.2698922613415662, 0.9245353243544445, 0.4202029864010488, 0.9398745427510324, 0.4141000109431895, 0.24964862908436547, 0.7306478238435045, 0.7402346000638877, 0.7616202544983888, 0.7845129063348962, 0.5943480678556923, 0.673316913828497, 0.18184735399521645, 0.291807181966416, 0.8322036250924116, 0.18932181042736385, 0.4574458119615801, 0.34491970336036726, 0.2916182397285424, 0.008155285743138618, 0.919332461067399, 0.06977173148903526, 0.27917246744844315, 0.6982202835396577, 0.4515066551504774, 0.6348249396342016, 0.26241147943814525, 0.17985069517900998, 0.42097906306221944, 0.8972968380822306, 0.6197502598575204, 0.16741735014706438, 0.6510404935588285, 0.5570089501082838, 0.6028803659144994, 0.8209305729669686, 0.6087907163520926, 0.9617243749572957, 0.7123925656141591, 0.2669358620660349, 0.952835336327062, 0.23676699725314243, 0.9078852339827012, 0.34681972206441725, 0.19184308684839524, 0.4723853118551967], \"y\": [0.8156061324462894, 0.42491310922683634, 0.8867827646463432, 0.8014995238430205, 0.30499958310650876, 0.5817355832705369, 0.959171062334887, 0.7854416128369749, 0.9085690698200813, 0.8998600376511439, 0.6341165000693628, 0.412102187638673, 0.7643629411050379, 0.4710001938005606, 0.40182653035141874, 0.40438056362905367, 0.8870480016118494, 0.3650667978415713, 0.9064321709292111, 0.9327245345966092, 0.6458420185168736, 0.8821841129047617, 0.6704018506542557, 0.7655671181822064, 0.8616986618932058, 0.48774537944210006, 0.9637355036179479, 0.6794204065079696, 0.6044835155949141, 0.7867954023600708, 0.9137982268836646, 0.5867502063434873, 0.8048584290077971, 0.9718511071053526, 0.9627192884041744, 0.7978623718349598, 0.6091120966723917, 0.8943338178728011, 0.8853376735027229, 0.9045563504021151, 0.9264844632598176, 0.6342457655367447, 0.9414033426130164, 0.5636516403732365, 0.5172967922101196, 0.4836896337264441, 0.35199620689495453, 0.788779954566273, 0.9696552399248426, 0.772496554239754, 0.8132656157621138, 0.4539090261140653, 0.9333708926412786, 0.679765045723866, 0.48457442622955804, 0.4248820606938153, 0.6737819616086004, 0.8780741425819777, 0.38340602447337646, 0.90634085684919, 0.5574014604752268, 0.6804147683859246, 0.9077110088845216, 0.7718472635729894, 0.4717552048891654, 0.22222808308441652, 0.8616549355667619, 0.705749071892896, 0.4699129352300819, 0.9680524782819758, 0.8891353183282249, 0.9466602521798594, 0.8553382520847058, 0.7430243903066251, 0.6616131862201935, 0.6919609500216202, 0.96565744679506, 0.913108907487878, 0.5395521774612226, 0.9026238558501023, 0.6550941529376255, 0.9757876320152292, 0.8833495792027257, 0.6666029765862381, 0.8504582120840628, 0.9320215595878566, 0.7639947574915884, 0.6085229656221847, 0.9557131606798471, 0.46184432615952054, 0.5642658412077981, 0.8815615400732472, 0.7189203536918151, 0.9301020530176726, 0.7341394174346678, 0.7759189559372703, 0.8448078654733812, 0.9012666081120407, 0.8926028620066223, 0.5287492720273277, 0.6874206920638863, 0.37408584674942635, 0.8348370105186077, 0.8697567261320243, 0.9175759024810304, 0.44644098895981, 0.8874384748400057, 0.7787567487441118, 0.9416122482572158, 0.3265229243180111, 0.9308095750950773, 0.42267134533232753, 0.43068181214270274, 0.8727308285810839, 0.7201611177732586, 0.8430904589044517, 0.8140617541555761, 0.9456747441572588, 0.6672663325862807, 0.8756470416862959, 0.518871521713375, 0.7040615347784164, 0.4957960231649875, 0.6250130361556073, 0.27413726132188326, 0.5193133578087885, 0.37656641690434584, 0.5808048103476511, 0.7917827117482167, 0.36569143480873245, 0.7232542293832885, 0.9785934574433302, 0.5715075300165849, 0.8182555969893297, 0.5448461144048058, 0.9491291995847589, 0.4833587957991669, 0.3189279754564957, 0.9184825510014271, 0.5524830505676419, 0.9600429304649183, 0.7818180966165994, 0.7962710274484252, 0.7569429870375118, 0.46184432615952054, 0.7641514270390748, 0.9486763575522457, 0.8086368705092697, 0.6784536879503494, 0.6877019790624462, 0.6082670858563528, 0.6053794617794684, 0.6319330693089359, 0.4982105707488519, 0.6787928880949093, 0.9231980717613485, 0.8831230955067948, 0.6845485656817341, 0.8799204262605215, 0.9164563829924386, 0.7819268199067826, 0.23469888428232324, 0.9492377841603665, 0.8826092272015389, 0.6360541596480074, 0.5184081252698399, 0.6400126753125241, 0.542646305979658, 0.4479501208302092, 0.7783171875827786, 0.7867712153112567, 0.5236605417423803, 0.6959846197179591, 0.7925023358445066, 0.6683189355892497, 0.18737025221649042, 0.42506327048176057, 0.7272596040941706, 0.7314191754306454, 0.4827891324637794, 0.6649341228620356, 0.9038332731164471, 0.9588917860646077, 0.8945194928389463, 0.49833043835950624, 0.7997712594855277, 0.8577935987172323, 0.7622736922026153, 0.8039391974899521, 0.7396811504731934, 0.8115340233127679, 0.801728888664367, 0.738451208106372, 0.5859674792922007, 0.1865203674848816, 0.8773430435604171, 0.36888329310067386, 0.8651817982269884, 0.9067615420962557, 0.8594983988587351, 0.7437750884018276, 0.9145224932934428, 0.9135679891815164, 0.8001832456898428, 0.6860977766129374, 0.9377826008632761, 0.9300369611912853, 0.6997062971069969, 0.5693182102579236, 0.3404656140239559, 0.7160591142088384, 0.7953146078011, 0.8869803873277935, 0.7639982823097876, 0.8681285227071118, 0.576868797021353, 0.93035102563313, 0.8375600281828176, 0.8279918435672958, 0.9266689436294401, 0.7559862346636359, 0.5099889666930224, 0.6914445842613687, 0.9651950326885705, 0.87851968214492, 0.8499702807396289, 0.4685752957996948, 0.7241546992314323, 0.7848147251007912, 0.7341394174346678, 0.7008877443692281, 0.340588975625529, 0.5013021766499856, 0.8321174529331695, 0.8818378666553491, 0.9176909075187759, 0.8634678749265305, 0.7436082905772717, 0.9343776659412377, 0.7668809937296346, 0.6243383802582345, 0.5332560471205093, 0.6907315465649003, 0.16626803588025432, 0.1668542888532837, 0.7408943843163458, 0.5221312328975666, 0.7457559475413279, 0.46389636934606376, 0.9292627865919654, 0.5268311186840582, 0.4244151934213653, 0.643310536612302, 0.8577438313980266, 0.7816208399762355, 0.8553382520847058, 0.7010035672814305, 0.5242572272016158, 0.9187320011579697, 0.8703498177621264, 0.6713045345576062, 0.9137982268836646, 0.8614414457916845, 0.9445662266054761, 0.8808216590199034, 0.7386378115490353, 0.8873009977622293, 0.9157094897337859, 0.6606038558129893, 0.9296803968514485, 0.8864322240790464, 0.5146720135715994, 0.8720710714485208, 0.9415427660945741, 0.9138701141498735, 0.6527559092576063, 0.8751970040938668, 0.9249766460056568, 0.801728888664367, 0.6575848465963361, 0.6934824043184128, 0.8619113960143526, 0.9419078024651042, 0.9591721389341828, 0.8397407150753159, 0.9084383840076588, 0.4963969309336195, 0.7359588175524252, 0.3531961907069324, 0.9279819479140234, 0.7752976919572294, 0.8665226278427577, 0.9515211055933231, 0.7314191754306454, 0.890886918514299, 0.3235491032739525, 0.3719939405423586, 0.6323804178173072, 0.8398006965792015, 0.8239469134189235, 0.8592101816891015, 0.7615002907198236, 0.8688259750909261, 0.8718104001390852, 0.5838074755684882, 0.8756470416862959, 0.901850575196968, 0.9451930143658351, 0.6253812669856891, 0.5890764576710766, 0.4921052500998711, 0.4862070578416567, 0.9170647663398394, 0.7035583451969506, 0.8476385889092957, 0.5603058978573646, 0.5810606890504925, 0.9088604673919816, 0.8903252600075929, 0.944267921154058, 0.9435968591480925, 0.938237366988842, 0.9357286047893738, 0.7961386682142712, 0.7840233885688647, 0.2513590507613302, 0.7389284097502917, 0.9053472250810051, 0.44438282424164377, 0.862281110352348, 0.8021059248496223, 0.9152740930046814, 0.643737358401971, 0.8540304955499701, 0.8613418170006786, 0.6911084183178322, 0.8848367871057808, 0.8387883096682573, 0.5942651630821018, 0.65691393717736, 0.6369979527510315, 0.8280658524313272, 0.9640736168216585, 0.6546311715671466, 0.5599819536107853, 0.48348053317652906, 0.7668016587569692, 0.03620763244300767, 0.7364400865449663, 0.37408584674942635, 0.8767503774172, 0.8743962287172513, 0.8751970040938668, 0.8833495792027257, 0.7091886355621774, 0.87006937054451, 0.7904001815220257, 0.8761418339280951, 0.8306834851111597, 0.7531715889012326, 0.38181207472529843, 0.6490458991820136, 0.9138057013338913, 0.9046222904886461, 0.17956061692355052, 0.7506163079023257, 0.8963285795381793, 0.8848361664653354, 0.9283037217377402, 0.45996158699034445, 0.7290858434196763, 0.8319094967702583, 0.6578018675312727, 0.18727567457681707, 0.8673410249845035, 0.9453298670648187, 0.9446538464906173, 0.19605573045952288, 0.6723831041639817, 0.3438281302059518, 0.37858973820495484, 0.6953170483296187, 0.21463507152544156, 0.26963792069965237, 0.3280912492037974, 0.8399932187801539, 0.420387898633768, 0.36522500752858966, 0.5810560693343539, 0.9306346767722963, 0.7167716539092029, 0.656736106921484, 0.5549139996760648, 0.6909161521388689, 0.591904263202073, 0.884703171197362, 0.866402281883595, 0.7582770814524421, 0.8990773411030794, 0.1818065866116437, 0.6222165686186035, 0.17261914235374884, 0.8156064679757086, 0.4851213943917703, 0.8871292211128762, 0.8398494053952754, 0.703270618172154, 0.6305543892506115, 0.7494149477175548, 0.1532408287022325, 0.6159732902773407, 0.738220551127759, 0.8354520044441791, 0.8536870432671441, 0.5751476712690671, 0.9077719201719568, 0.7878515691455199, 0.6672663325862807, 0.45293736875445273, 0.17058553029544155, 0.747933377844996, 0.8400163125056676, 0.4516778718827729, 0.6082670858563528, 0.8401843469141149, 0.7636885291754726, 0.789170795337903, 0.8128612802083497, 0.7522530659814418, 0.8086757686066508, 0.8356255123032285, 0.9241779635105248, 0.9674588597049086, 0.9368885694202199, 0.4990764491242286, 0.876561204324957, 0.554264192243629, 0.5967716244634195, 0.9060244606340249, 0.8401608718856799, 0.7329750583133859, 0.8021769878309102, 0.9316817655017511, 0.45488322534173153, 0.798578398438993, 0.7425236774748816, 0.5742682328784404, 0.4937681935814938, 0.8972164286692267, 0.8914273370768748, 0.9377613518261881, 0.8862258850530264, 0.8591757581361523, 0.7410678096850266, 0.6822336012657398, 0.9201658505843877, 0.6982578893131915, 0.5746709232170782, 0.7626532952948841, 0.7137703530889916, 0.7520971196461234, 0.4473853625959922, 0.7957460056304991, 0.4833174871501707, 0.8758467705785958, 0.4689303842787964, 0.6133612564737879, 0.8568681391705205, 0.6835133967314007, 0.9732070839986944, 0.21435716257549006, 0.5761668962420043, 0.4055433603128916, 0.3743394998756179, 0.9118635774953143, 0.964551884718591, 0.9306459334511011, 0.8424802355113449, 0.7739144871152517, 0.6872688771534424, 0.8590561833388345, 0.6714384475466295, 0.6408669500407106, 0.5203550269219845, 0.2856853969697174, 0.857760555506807, 0.9307094503226838, 0.6787928880949093, 0.8308635255795866, 0.29271374211533296, 0.6769315553524353, 0.23831547366416572, 0.5895099457120908, 0.8994675076574448, 0.8893400405584444, 0.8456825404777587, 0.5399612081435882, 0.6188649121485582, 0.9281492942813848, 0.7611740601422801, 0.46550237374781617, 0.8896861436466836, 0.9038901015569306, 0.5044440900554997, 0.9215480939667524, 0.6930273792518707, 0.8723244804196287, 0.5624338775604165, 0.9226297661236537, 0.8469231754225917, 0.9430557295321259, 0.9097116306258912, 0.5988707702267543, 0.3813853072548755, 0.8843832309478876, 0.9006952500629406, 0.918975987201669, 0.18997930334445084, 0.8923106748541326, 0.8461388699436441, 0.5973439234355874, 0.9544642924744549, 0.91770416680597, 0.9177239854204658, 0.17584552180125673, 0.9240099144459667, 0.48524948024905407, 0.8889685222180134, 0.5785503824403398, 0.7511953459672914, 0.6887596776945688, 0.6717539058356753, 0.7168761391602206, 0.7134478068952186, 0.834626350903405, 0.5715867980362679, 0.6588392688727011, 0.9488572786900573, 0.8920529250761863, 0.8891353183282249, 0.707981940789761, 0.926348680038428, 0.631489487929038, 0.7443856388661001, 0.9260754381930228, 0.9544642924744549, 0.8497401318990601, 0.5604010177433062, 0.8036334301115304, 0.7898153537185114, 0.8491431337122072, 0.6570881560807702, 0.8389599143569951, 0.7944137576415592, 0.8132668978866627, 0.44714680104169846, 0.7978021044641371, 0.41921696608658454, 0.38876183891604754, 0.9248463736054193, 0.4277915265084825, 0.6345107008491314, 0.8008942533173764, 0.5087430598332189, 0.9414938992689892, 0.6922115882765215, 0.8296175750175913, 0.8593339228153332, 0.8975141534758351, 0.5977126281557783, 0.9279478536756302, 0.6485770817571253, 0.8905823996589662, 0.9332072841984264, 0.9432461110830079, 0.9410120781436498, 0.6339696776630096, 0.7120962557761497, 0.5841709037351369, 0.5928970840420333, 0.9006589732900512, 0.936371533648048, 0.6907852379101131, 0.7675780198071424, 0.9444587893431046, 0.4702336163336472, 0.8925536722101626, 0.8158978708906081, 0.822780392485108, 0.8037335327290217, 0.8382351003285965, 0.8941557358589171, 0.4796498334522667, 0.926348680038428, 0.6842118015950474, 0.6463580983468415, 0.8292048071278182, 0.5834426687867836, 0.8419845362148763, 0.2431563391580561, 0.7763142135369961, 0.9390550746437164, 0.7774903237071782, 0.8141232663130791, 0.9444089886680379, 0.430401459478284, 0.9192677156927759, 0.8427595869840984, 0.87120858451521, 0.5693182102579236, 0.820012080301976, 0.58719119911586, 0.42769376643096113, 0.3542595869275313, 0.89579938191327, 0.8743523014696554, 0.7820497043505815, 0.5279069501129625, 0.8869579700149332, 0.45488774279476296, 0.8514781135508903, 0.8278297091497892, 0.663749097381813, 0.5132851713944618, 0.4906566565015208, 0.6415219885510332, 0.6991293681294938, 0.8150539074042624, 0.5800669536763935, 0.9583771200922359, 0.7366090055976814, 0.5747817696023392, 0.5315376696882942, 0.8074446941396305, 0.9038901015569306, 0.9087015650331977, 0.6697291810323083, 0.5800669536763935, 0.8807270543114014, 0.5135845984304893, 0.9352791850238339, 0.36120709973337456, 0.6206709330576408, 0.906286252315459, 0.7937202818717513]}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other\", \"type\": \"scatter\", \"x\": [0.3134482410668944, 0.12977665385895376, 0.5487546831877419, 0.39887146539366014, 0.29174476521944526, 0.3290868405145697, 0.21628831873178056, 0.6120788465385177, 0.36137491412545186, 0.342744020944592, 0.11355966093792258, 0.97526316993991, 0.7678712010555585, 0.20404947262837403, 0.5766313387055906, 0.998967691440558, 0.5249070908342638, 0.28546108168071793, 0.35051619300332526, 0.5097932166522698, 0.7742158862073097, 0.3785528327333598, 0.20302118248880308, 0.5621833355793248, 0.17358186605913728, 0.990814690845408, 0.36113756242152184, 0.31801828938699916, 0.34299250478186727, 0.17787989768229162, 0.6571939880424629, 0.2842244117891335, 0.4051665146932383, 0.46657683131339556, 0.003956103420675983, 0.6983276797327468, 0.8222796899314885, 0.8453078170296519, 0.6023068443241358, 0.04091952993050707, 0.2729298142736406, 0.3432463263195411, 0.43210656459939867, 0.40353569557657987, 0.3913162946441744, 0.105997389331421, 0.8825042803956208, 0.9968048971798249, 0.9762631741201466, 0.4255755487951183, 0.42514152561619445, 0.3622529522781561, 0.11016709608163044, 0.9962575916874379, 0.025721021921890297, 0.26557726649213986, 0.5500708437370364, 0.3481798220882397, 0.6852927463424923, 0.6481291402288992, 0.5966366978330153, 0.3080414967248577, 0.37398100450991556, 0.5918927353615068, 0.9275813057668367, 0.4841630791705015, 0.5030909226490173, 0.33150398548638127, 0.26643486160343677, 0.8246374593957472, 0.929043461860414, 0.7596207026719715, 0.48715855729474733, 0.8018457060350854, 0.7728279717524029, 0.269832756384527, 0.7562264302762906, 0.5130463264020382, 0.5222231764153598, 0.054028418191736094, 0.9916955520608826, 0.26080266505965954, 0.3779056275570418, 0.17270029652367502, 0.8760364690459064, 0.26897549683863675, 0.5343845908593422, 0.08671264757113517, 0.3917362527687953, 0.5852262289844701, 0.757482870827421, 0.4366525777784068, 0.6206545038769266, 0.637469324665194, 0.6421497298415904, 0.22649220280144278, 0.11158512080115313, 0.29504585335178224, 0.7794509759806993, 0.14386163486430192, 0.2519132117362307, 0.583464262639228, 0.48765275908257566, 0.22784697057145686, 0.7708438110254179, 0.1113130511864796, 0.8804871765221555, 0.9478991811545819, 0.5416225310938266, 0.9499466284284318, 0.161013409570275, 0.2156849758050169, 0.7611883097490963, 0.08511445971552734, 0.956036195967113, 0.3392169603511376, 0.036842339960037496, 0.5103602963413423, 0.9748660867423856, 0.16681735894226823, 0.9456362298955904, 0.9975454538440992, 0.9984323267457302, 0.0030379282275072583, 0.006310624729634728, 0.5878627581862966, 0.35739670386830835, 0.6249309542325383, 0.6719477382926298, 0.4902492958910617, 0.5718850937839761, 0.1481059935020319, 0.0589647458541247, 0.07069606883744795, 0.5318281050225646, 0.46196046171807437, 0.44331280074595514, 0.8046126211944153, 0.8632890455494319, 0.9794702950123345, 0.7495290253399686, 0.43354983815630976, 0.7672428514629286, 0.7350786552237702, 0.5780689846008514, 0.16480139504134317, 0.3803544213345327, 0.8929764503216173, 0.9767538991565584, 0.8838031221368033, 0.6804006730896726, 0.07955407217666455, 0.23331561039882398, 0.20471346743462127, 0.2768949032398661, 0.10424276815640066, 0.08319892343754376, 0.9817140926957262, 0.02973021497453554, 0.9762388980299358, 0.31158855209401304, 0.7312527759733015, 0.5542035498836351, 0.751854685033397, 0.7553008916248773, 0.9507793464841395, 0.892112255025596, 0.3049946059479358, 0.2590378987557962, 0.5156866175957207, 0.8173260557410168, 0.41458701353090754, 0.09847253522139077, 0.5871768671058777, 0.11107155281679171, 0.3986425543573404, 0.7121870219661304, 0.8224658932947385, 0.7363556613096902, 0.7699188968191029, 0.9101116505210803, 0.5647653642006152, 0.9182312301760821, 0.845064179218596, 0.8791889966757261, 0.13252013610724545, 0.3800877984358897, 0.7697897824392461, 0.9079069679060717, 0.9077608263182616, 0.1107986362481359, 0.024426971662532715, 0.12226352775051008, 0.19327579209089918, 0.9470476052433249, 0.025376621625979867, 0.9195399393556072, 0.37486385293236935, 0.87698142391789, 0.15480575144059439, 0.12481537554965527, 0.7166255936736127, 0.481916544475405, 0.6978344694416942, 0.2099703741862149, 0.2117373301085359, 0.34115780978453725, 0.47298091908924667, 0.9922345702633845, 0.3314790545017189, 0.6075605345799467, 0.17836116831460203, 0.11301500056797198, 0.7919429801420996, 0.46199478832479646, 0.5396085978340219, 0.4085638053947672, 0.6971530845660887, 0.22546684262947247, 0.7991862628754428, 0.20742630568720244, 0.2917692021240891, 0.472945776721468, 0.05011244639298018, 0.8416227684095958, 0.710569645806868, 0.476501262623093, 0.3262504996304936, 0.06216685072896011, 0.8843610251314232, 0.743804030614779, 0.8455550932457686, 0.0842153315393468, 0.6603452444282378, 0.27103392745376576, 0.04622488703436245, 0.3553376171084782, 0.45463173514305233, 0.33439522042779557, 0.6976007567679453, 0.9728436490227935, 0.9353979419576833, 0.06874601599182717, 0.7163385819432022, 0.9976255282981779, 0.8944103471025553, 0.604757937066518, 0.4758119867370173, 0.6283925910587183, 0.113383579712659, 0.5614112788774972, 0.7091207288699878, 0.28350890462563016, 0.39374491580346227, 0.8760336290969338, 0.33909713216778514, 0.3080095242568206, 0.9540997740447599, 0.25112963552719414, 0.557665809972946, 0.23767177272385975, 0.4883151121287622, 0.7678280336121932, 0.7995908661096894, 0.5509273196434402, 0.08899548573835037, 0.41425109944411853, 0.036317998582071964, 0.322717663468737, 0.9379032887336711, 0.42993890897942244, 0.11221689140431201, 0.8270337993334486, 0.14613203836247768, 0.31638157836167846, 0.4970587343505355, 0.9702805289002348, 0.6963056264595209, 0.7015152080689842, 0.7682316341969192, 0.8513361828911903, 0.15572873324960168, 0.6338808088623125, 0.8500891626466761, 0.6024464329453268, 0.6775488995543123, 0.9795914875967199, 0.14691766449328014, 0.02283335329899061, 0.06098379292131517, 0.7618265795552502, 0.4509137225157217, 0.6810972311760668, 0.9799951003026882, 0.6173122464352219, 0.725194323900852, 0.13731581158795103, 0.03726536342440945, 0.39048090186518236, 0.9766399874806966, 0.01878737268080022, 0.7131081969364514, 0.7589693749989939, 0.09093837256602588, 0.2140816683521053, 0.1623714259435609, 0.3837326133161776, 0.9135334919328617, 0.4543623766687761, 0.2696148394519148, 0.3307437894132039, 0.6242494888564263, 0.29485125183773364, 0.402858863326899, 0.6553662566718174, 0.9907409994672102, 0.18884549561719566, 0.35902428594543656, 0.30120439432789425, 0.4206463283759623, 0.5905237786175961, 0.7312205903126939, 0.46952586516606565, 0.16236778512549033, 0.20293874037485182, 0.8683944815925007, 0.89364514298271, 0.5804242845807354, 0.9179559702835195, 0.9780666777264178, 0.6342548362987975, 0.004551544771217775, 0.40167806350516977, 0.031717553226641604, 0.5023202239946225, 0.8317565785272952, 0.9002818265734615, 0.3987830027137066, 0.49721279915075167, 0.21444166102252482, 0.8705419544106747, 0.10165589979495604, 0.8098331673161375, 0.17532173417239838, 0.8570805752171798, 0.08594312123209469, 0.7568375577452231, 0.8053052569389072, 0.3018780126168169, 0.6532164521242001, 0.18900437296340045, 0.12594294883729418, 0.7343951766899451, 0.930033017751509, 0.8247945720213558], \"y\": [0.2802292104526322, 0.9455194119275858, 0.4978743212349556, 0.5289145624519528, 0.28439238707197784, 0.2033309570226689, 0.27345747478543325, 0.8322873304845451, 0.389055896812549, 0.3675472469853882, 0.5781933746273124, 0.7401955299744071, 0.44969671697605845, 0.4367887814338696, 0.31593955341667695, 0.3775624358859999, 0.19282181046294666, 0.048451763306065584, 0.6005928650583868, 0.032225376113695775, 0.427412413738938, 0.23973251442015217, 0.13890126550157303, 0.8613925272127, 0.329663916828638, 0.19359965390713213, 0.6827271716759634, 0.1960905505555538, 0.08135735686643118, 0.39737240301928484, 0.13902987396822816, 0.6514166433739288, 0.6994753721471061, 0.7140886736258081, 0.5021795028970708, 0.48743245558712556, 0.5731139673640956, 0.8820820642542792, 0.559972149724866, 0.5061565591493914, 0.5066810377847554, 0.833805652807593, 0.6979972163580744, 0.3177574231538272, 0.13068190592986567, 0.758876109553896, 0.5681062961269688, 0.715544821914063, 0.762062625203523, 0.4464438677531786, 0.20995974230910305, 0.5262622410710028, 0.39442669669188163, 0.2537324982988368, 0.6775437642744659, 0.23876321589577687, 0.6369158982934647, 0.38960060362966165, 0.6034323722874255, 0.7769991715799629, 0.15199748354041337, 0.5641412449951732, 0.7590466800561823, 0.5969347905931296, 0.1048362779837843, 0.7217824369593382, 0.2662339163773806, 0.16472378978351135, 0.37760124376932414, 0.7071736299639594, 0.3436862995931572, 0.8384434752264291, 0.3635333644877426, 0.7813188949129265, 0.7279369976219869, 0.5641098847382463, 0.3863964747623771, 0.9209913370067284, 0.1477144681640183, 0.8809374658555192, 0.6533168894759348, 0.8873477284758582, 0.3697306267878623, 0.28319023347825867, 0.5203701741750857, 0.5523747693308857, 0.6387521731780509, 0.3881380695009739, 0.8487896327149285, 0.4636606453307818, 0.8384434752264291, 0.558266603669778, 0.21657231888677728, 0.3635333644877426, 0.5512671313974766, 0.5051039398599867, 0.5827915753039158, 0.49441682850108926, 0.47309171914705017, 0.6262595591688196, 0.5508242483721094, 0.47332791509789995, 0.7117569366896692, 0.3933786516273859, 0.16465066549244003, 0.7490394132223248, 0.769261050002088, 0.7431932405995126, 0.3141000916210982, 0.723735045552473, 0.6484132891031948, 0.688519894019609, 0.40496704226994307, 0.5803736122960511, 0.6327801522745691, 0.45115706990411364, 0.37268733756108086, 0.9009693101135351, 0.06496389958099598, 0.44431713201158524, 0.39960831974332744, 0.8662156944598043, 0.31018081106061823, 0.5339551117365043, 0.33311273919547707, 0.400132762133902, 0.8528754522806217, 0.14419347879543085, 0.11672350429510901, 0.44556702529145975, 0.6160120899414699, 0.13766892845409207, 0.5517204028384314, 0.5232178919035022, 0.35483403305733974, 0.4900213704561591, 0.8854578072659228, 0.43084122675663034, 0.7601186327653665, 0.14072030431570776, 0.6186690618327106, 0.5245054232921349, 0.7326259458716644, 0.5690781983520095, 0.4018508815425063, 0.24877469563805235, 0.7952501197393639, 0.8766221356386195, 0.303451532996695, 0.5357745481647883, 0.7096524147827454, 0.20877177283968149, 0.8635610141758273, 0.46736762313881036, 0.6061151992073851, 0.113015272873705, 0.40446014603085867, 0.6332606063976143, 0.648705381890928, 0.42186952587750404, 0.8047913565308571, 0.3017058309841093, 0.38406990132164637, 0.33494193042999065, 0.19929939967121216, 0.8624919783238055, 0.528785836409086, 0.43084122675663034, 0.47042159929499583, 0.5061565591493914, 0.5759491569657543, 0.8468794444363914, 0.20342296359496542, 0.5170831534483544, 0.3666753044655067, 0.6131723001375537, 0.4410646109528086, 0.6903416342484309, 0.3866428492574258, 0.4636606453307818, 0.4525459302795702, 0.03199256040434073, 0.7029629492254846, 0.2433141614541866, 0.548755973819273, 0.3775060302547258, 0.06593060991448157, 0.8745624549148976, 0.22931948662359403, 0.27267688907931714, 0.589328430619086, 0.8007160756317941, 0.5525637789187225, 0.5008522318356121, 0.4556212410144909, 0.17391722008742402, 0.43574637053357784, 0.3237440077649342, 0.6071692164257629, 0.6925152430641841, 0.592675381607996, 0.43854150134957587, 0.43854150134957587, 0.42437112972565305, 0.8061118855433299, 0.35195592295594336, 0.7605370065149419, 0.38898578429124253, 0.67510953655807, 0.872979709380305, 0.710510994258769, 0.720290290780972, 0.4820787970895852, 0.42019280799979697, 0.4304380754474639, 0.25285023254778977, 0.3238056884730761, 0.39471961640683584, 0.09510031985475974, 0.367046376808582, 0.21500793651835448, 0.8705359023101334, 0.6100742529031461, 0.6226449432624995, 0.7279369976219869, 0.3643494054700089, 0.09992017521484964, 0.41475515148757036, 0.6462260464983366, 0.14102909592513518, 0.48949585696458414, 0.5239520436918008, 0.6084413884537807, 0.5655473856702703, 0.9517420512476797, 0.7489379515982664, 0.4647937384849751, 0.7915321263825208, 0.44112279258530757, 0.5734340256727429, 0.6604471727860799, 0.4845203185458914, 0.6968730453869196, 0.5315374962198609, 0.8685951485887234, 0.6242442748350044, 0.2912097196987059, 0.7725938221565348, 0.2067629769731588, 0.30221725334927335, 0.13129342562285412, 0.6467789443522378, 0.6994753721471061, 0.11825382206919556, 0.41022417118631593, 0.4882665226122541, 0.7732287086973071, 0.25374762405010176, 0.49441682850108926, 0.3723877205427743, 0.652330313245635, 0.43667799883041203, 0.5964718913578133, 0.55172276504346, 0.24113559934961917, 0.8243980268882987, 0.7263843594269437, 0.43535214809021755, 0.8721122798612579, 0.18723914490145582, 0.6486906676970999, 0.11576704656818047, 0.4328241622975616, 0.491481212420291, 0.5264345378086769, 0.33856526784971647, 0.2967410926251248, 0.581398831228375, 0.5973776665460488, 0.6195406102170065, 0.37782717658841725, 0.323061133240968, 0.17420808473594895, 0.19634770547538957, 0.46492234760650425, 0.49613167963272686, 0.5812209036149294, 0.6057291775435286, 0.63414717387345, 0.5702687187355167, 0.8604975146328253, 0.6309022132706124, 0.48732991249542923, 0.6887148870948692, 0.41581945293096145, 0.5706760596351739, 0.4831274653996314, 0.06684727567316755, 0.49090643211649887, 0.15191610726090596, 0.2711405311223577, 0.7653618545702112, 0.09266565137124261, 0.4554350627407873, 0.19698919164573708, 0.6930185080649685, 0.5227537922811563, 0.50434568709929, 0.7082092780767422, 0.46058046365566996, 0.6735723234187477, 0.4285936050615775, 0.323061133240968, 0.5168500865319015, 0.6161307914674419, 0.23456444218973552, 0.3192004782541023, 0.21968945907811915, 0.5028183230931117, 0.43371621376298963, 0.6744209213341115, 0.5940260419772637, 0.13783310426722128, 0.5136444387530009, 0.5508647999875032, 0.4955911012838212, 0.9814394195009358, 0.8260225289794664, 0.17965956338109995, 0.46844896472597397, 0.6048119589659149, 0.3289160319090978, 0.2454606394453749, 0.7497022835596558, 0.683485355417811, 0.20995974230910305, 0.23504578258460665, 0.37175956099497537, 0.4875530438829156, 0.24982584224249993, 0.6282829625348888, 0.4520795162158371, 0.8200372413039435, 0.12832513643528837, 0.5299630655130737, 0.29552777318700446, 0.24021937552346023, 0.5429028773737552, 0.6311869746243346, 0.4145977043912777, 0.39329840463575844, 0.39070335653410526, 0.4286990948130573, 0.846836560604146, 0.6880850122626078]}], \"layout\": {\"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"range\": [-2, 3], \"showticklabels\": false}, \"yaxis\": {\"title\": {\"text\": \"Probability\"}}}}}, {\"id\": \"tab_bad\", \"title\": \"bad\", \"graph\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad\", \"type\": \"scatter\", \"x\": [0.7905531427454444, 0.6960385010169304, 0.268696822788173, 0.4179533630270241, 0.3779878814889741, 0.6372791707528676, 0.8073615264286571, 0.6770964576535786, 0.4175637168239402, 0.27093540924104353, 0.8449397117392603, 0.7220237421397929, 0.8654042419564241, 0.5804415709152472, 0.5797102030852072, 0.09678653304666296, 0.870928432149902, 0.726952298001102, 0.2099050589015532, 0.1542052656564672, 0.8711407938010648, 0.6467378786356751, 0.921988768207673, 0.3822824186298439, 0.39174769779731466, 0.4771800856421723, 0.9181232128458734, 0.7976610272845726, 0.08323397778055064, 0.8170092624667938, 0.7884237598408887, 0.88063658246695, 0.5647781085256772, 0.3245181822981944, 0.7941843931681278, 0.0024956210577610216, 0.486350375112233, 0.8596848579517383, 0.5871459729227293, 0.24408337907762123, 0.45798062869320333, 0.16790474616650408, 0.4678622676555019, 0.6152352497159724, 0.5743756435179089, 0.35093674134505226, 0.4964606378780446, 0.9954202874764791, 0.3946901654832302, 0.2197737184438604, 0.9277850424239412, 0.008971726962572646, 0.13722296180999471, 0.07480602870151976, 0.26091288879466623, 0.474183167515547, 0.8723963665623721, 0.9308329105476614, 0.5857977369937079, 0.8585353949438347, 0.30232989459115, 0.14413521777702787, 0.934606139326597, 0.43479059706719936, 0.5981069306867836, 0.906942149899698, 0.1761671473340095, 0.5395483728612928, 0.0027222456567562725, 0.36559759542532977, 0.36394268123557516, 0.4374013316362234, 0.44410837513740964, 0.9933500058273723, 0.3893695363324624, 0.46324946719886473, 0.6820315945699773, 0.9036371276612298, 0.25638079210074616, 0.46640014581957434, 0.1852514509359776, 0.10112404222437099, 0.5683617596038507, 0.22215822794234252, 0.18916883867246248, 0.5609955091983262, 0.41020572856450754, 0.4173337129848188, 0.7000830118466669, 0.8723186910434975, 0.7662400589348957, 0.2108135457748017, 0.45696770717590174, 0.6762729861052609, 0.08041352451109385, 0.5595089557168645, 0.008693026264778303, 0.19865456562206252, 0.4017693206323837, 0.6508696580735636, 0.19115370202804738, 0.3791033935174076, 0.7372002257011625, 0.07024100560771829, 0.5515939163530872, 0.31323744672939624, 0.16015084050314443, 0.39103400274403655, 0.80113660524214, 0.970213042335027, 0.1574718024281978, 0.5247616928903531, 0.3368639401155077, 0.3648185812295677, 0.29502924408256104, 0.6642201926133701, 0.11107390204272283, 0.8054859467691629, 0.593693592343239, 0.6916962937824824, 0.626120209568544, 0.0307635985273349, 0.7380205201720523, 0.3522271610895126, 0.34415769635024795, 0.18324709912691628, 0.9248625445177808, 0.018818632886481113, 0.7946125130321697, 0.19355461122044937, 0.03790073207120803, 0.9590601220063856, 0.6801046216426124, 0.34562019755959417, 0.5893973520661906, 0.4720969814367242, 0.23650064679549843, 0.30635104457856244, 0.24317818044649342, 0.6829970616955912, 0.553168742310462, 0.3502065627587031, 0.5327690671268379, 0.605470888430494, 0.6955435641335017, 0.33761051732011893, 0.6143170198777491, 0.6608138536343257, 0.41751690127148666, 0.8940548631787357, 0.43730962381627303, 0.9139328380634565, 0.6961052349665132, 0.847997831416771, 0.11800140986881802, 0.7679824287189754, 0.9525182882811636, 0.5468221583773232, 0.2792715706533522, 0.9093206998379442, 0.5165503223480641, 0.5520341548340321, 0.493756305049175, 0.937986818384116, 0.05614583525543404, 0.6957920316881655, 0.628904050159258, 0.2364312577973796, 0.9450810635740152, 0.109142925389062, 0.30164274065624197, 0.4638755386150799, 0.7451146728989894, 0.4080206930280299, 0.038023764138361615, 0.5670523284911316, 0.7978474906924142, 0.30135874948839203, 0.7232768280912919, 0.8810624628231891, 0.34064189622925545, 0.23785260152192333, 0.702462626326706, 0.3225279151523929, 0.24690454897108294, 0.3304599870916708, 0.9830334239455277, 0.6627287396566256, 0.637044846989685, 0.019244750989791726, 0.1608401383890241, 0.45432502006762854, 0.05626923611462997, 0.3861187774544399, 0.7825897288536544, 0.6054044783493187, 0.6883281681008705, 0.01361348840573784, 0.6330790074181202, 0.46236897210268346, 0.0014003165907727766, 0.05694067640086076, 0.036901720396585014, 0.7603883331239573, 0.7512666038028312, 0.2439977637317553, 0.02388387279505544, 0.9095872565460758, 0.5948141322922896, 0.6682064453240957, 0.10757200061213756, 0.08047421152580214, 0.03426210499763538, 0.4092093186398731, 0.16503177147116166, 0.3463383125584397, 0.8510104721465003, 0.6389924441601962, 0.4765081506630111, 0.32474028085255346, 0.021133436467993594, 0.053880391176925224, 0.4566916912706406, 0.9129517031995216, 0.514798130692351, 0.9214708639027896, 0.1884120274543334, 0.11212125565541986, 0.7724222493375789, 0.17489707680415867, 0.25256736809485447, 0.3485296826014448, 0.4729242788360808, 0.30556158313691273, 0.8736237849727052, 0.2979056863990647, 0.8866638469790242, 0.17899047678816582, 0.5998270562458572, 0.053793800381770396, 0.25573255470712664, 0.3434569963859698, 0.3355531933558221, 0.5178074782737508, 0.8543995835639646, 0.9998104547369995, 0.9014584920908654, 0.29485343195383673, 0.8894427042336355, 0.5738352781098189, 0.5970382125586247, 0.8362563385296085, 0.22280909633900003, 0.8026651360721707, 0.6888605033100746, 0.7978079994675147, 0.45474532919698685, 0.723061265174322, 0.045008431858464926, 0.25497618586969395, 0.8317282173155268, 0.9060106857978276, 0.8417835362020085, 0.4395007320169845, 0.00808935922337295, 0.656595842242274, 0.5474887018154437, 0.04824017205756814, 0.8149793587902522, 0.06868854479518638, 0.777176809343076, 0.8668901894289848, 0.9390591874713835, 0.6747013043308917, 0.6787281830962649, 0.042375655808829515, 0.5121442029390941, 0.33619291393673656, 0.3593655600080834, 0.0444901750744543, 0.6938985798841915, 0.7113377262962252, 0.9583345110184087, 0.7744041127627026, 0.5963149923017482, 0.6917250859674945, 0.7403442411120288, 0.6956972485838796, 0.1323515743364, 0.538555126588929, 0.18303528323575302, 0.8124504241647492, 0.6712590178379454, 0.6977177488893629, 0.26678223663807554, 0.2915046850004055, 0.13351189759004267, 0.8390504343748434, 0.1561684170147154, 0.31961759308676474, 0.9714362756329668, 0.03017931052292533, 0.5921510954941178, 0.012975432614939275, 0.5983414454499507, 0.5975204915995546, 0.5641695742020096, 0.2811406705933591, 0.9121987032578052, 0.931523198758179, 0.826924775948213, 0.6079236258834285, 0.35803251138988645, 0.8842229128520029, 0.7968998019073954, 0.1718021962056483, 0.48981812954165915, 0.6734266952224548, 0.4445448751851857, 0.3197006882109038, 0.38514166469466515, 0.546182918838598, 0.8734479333748878, 0.9937160771415093, 0.4378369966814032, 0.5547735900144654, 0.11420530189551559, 0.04693640146971978, 0.7235225686244785, 0.9433747766423417, 0.34063371190607594, 0.8800712175891372, 0.2420561854541381, 0.5715884794627515, 0.6133822120053323, 0.5414581333827209, 0.43402656126537786, 0.6323580347565699, 0.20615899592262965, 0.5953088783263393, 0.2712379036508046, 0.15327647555138313, 0.4284159107463986, 0.6837667848927608, 0.5487874325206707, 0.14632662795335705, 0.7197703923948067, 0.8452076163274889, 0.9692928626139905, 0.02223952247838612, 0.693602309932592, 0.14542962595832876, 0.5230637642809679, 0.2606355116092738, 0.22072011487220633], \"y\": [0.7197707895473677, 0.05448058807241418, 0.5021256787650443, 0.4710854375480472, 0.7156076129280222, 0.7966690429773311, 0.7265425252145667, 0.16771266951545494, 0.610944103187451, 0.6324527530146118, 0.42180662537268765, 0.2598044700255929, 0.5503032830239416, 0.5632112185661304, 0.6840604465833231, 0.6224375641140001, 0.8071781895370533, 0.9515482366939344, 0.3994071349416132, 0.9677746238863042, 0.572587586261062, 0.7602674855798478, 0.861098734498427, 0.1386074727873, 0.6703360831713621, 0.8064003460928679, 0.3172728283240366, 0.8039094494444462, 0.9186426431335688, 0.6026275969807151, 0.8609701260317718, 0.3485833566260712, 0.3005246278528939, 0.2859113263741919, 0.4978204971029292, 0.5125675444128744, 0.4268860326359044, 0.11791793574572085, 0.440027850275134, 0.4938434408506086, 0.4933189622152446, 0.166194347192407, 0.30200278364192557, 0.6822425768461728, 0.8693180940701344, 0.24112389044610405, 0.43189370387303117, 0.284455178085937, 0.23793737479647703, 0.5535561322468214, 0.7900402576908969, 0.47373775892899717, 0.6055733033081183, 0.7462675017011632, 0.32245623572553406, 0.7612367841042231, 0.36308410170653527, 0.6103993963703384, 0.3965676277125745, 0.2230008284200371, 0.8480025164595866, 0.43585875500482685, 0.24095331994381775, 0.4030652094068704, 0.8951637220162157, 0.2782175630406618, 0.7337660836226194, 0.8352762102164887, 0.6223987562306759, 0.2928263700360406, 0.6563137004068428, 0.16155652477357085, 0.6364666355122575, 0.2186811050870735, 0.27206300237801306, 0.4358901152617537, 0.6136035252376228, 0.07900866299327158, 0.8522855318359817, 0.11906253414448076, 0.3466831105240652, 0.11265227152414181, 0.6302693732121377, 0.7168097665217413, 0.4796298258249143, 0.4476252306691143, 0.3612478268219491, 0.611861930499026, 0.15121036728507153, 0.5363393546692182, 0.16155652477357085, 0.441733396330222, 0.7834276811132227, 0.6364666355122575, 0.44873286860252337, 0.4948960601400133, 0.4172084246960842, 0.5055831714989107, 0.5269082808529498, 0.3737404408311804, 0.4491757516278906, 0.5266720849021, 0.2882430633103308, 0.6066213483726142, 0.83534933450756, 0.2509605867776752, 0.230738949997912, 0.25680675940048736, 0.6858999083789018, 0.27626495444752697, 0.35158671089680515, 0.311480105980391, 0.5950329577300569, 0.4196263877039489, 0.3672198477254309, 0.5488429300958864, 0.6273126624389191, 0.0990306898864649, 0.935036100419004, 0.5556828679884147, 0.6003916802566726, 0.1337843055401957, 0.6898191889393818, 0.46604488826349566, 0.6668872608045229, 0.5998672378660981, 0.14712454771937833, 0.8558065212045691, 0.883276495704891, 0.5544329747085402, 0.38398791005853006, 0.8623310715459079, 0.4482795971615686, 0.4767821080964978, 0.6451659669426603, 0.5099786295438409, 0.11454219273407718, 0.5691587732433696, 0.2398813672346335, 0.8592796956842923, 0.38133093816728936, 0.4754945767078651, 0.2673740541283356, 0.43092180164799054, 0.5981491184574936, 0.7512253043619477, 0.20474988026063612, 0.12337786436138054, 0.6965484670033051, 0.4642254518352117, 0.29034758521725457, 0.7912282271603185, 0.1364389858241727, 0.5326323768611896, 0.3938848007926149, 0.886984727126295, 0.5955398539691413, 0.3667393936023857, 0.35129461810907203, 0.578130474122496, 0.1952086434691429, 0.6982941690158907, 0.6159300986783536, 0.6650580695700093, 0.8007006003287879, 0.13750802167619447, 0.47121416359091395, 0.5691587732433696, 0.5295784007050042, 0.4938434408506086, 0.4240508430342457, 0.1531205555636086, 0.7965770364050346, 0.4829168465516456, 0.6333246955344933, 0.38682769986244625, 0.5589353890471914, 0.30965836575156913, 0.6133571507425741, 0.5363393546692182, 0.5474540697204298, 0.9680074395956593, 0.29703705077451537, 0.7566858385458134, 0.451244026180727, 0.6224939697452743, 0.9340693900855184, 0.1254375450851024, 0.770680513376406, 0.7273231109206828, 0.410671569380914, 0.19928392436820586, 0.44743622108127745, 0.4991477681643879, 0.5443787589855091, 0.826082779912576, 0.5642536294664222, 0.6762559922350657, 0.39283078357423706, 0.3074847569358159, 0.40732461839200396, 0.5614584986504241, 0.5614584986504241, 0.575628870274347, 0.1938881144566701, 0.6480440770440566, 0.23946299348505806, 0.6110142157087575, 0.32489046344192996, 0.127020290619695, 0.28948900574123104, 0.27970970921902805, 0.5179212029104148, 0.579807192000203, 0.5695619245525361, 0.7471497674522103, 0.6761943115269239, 0.6052803835931642, 0.9048996801452402, 0.632953623191418, 0.7849920634816455, 0.12946409768986655, 0.3899257470968539, 0.37735505673750047, 0.27206300237801306, 0.6356505945299911, 0.9000798247851504, 0.5852448485124296, 0.3537739535016634, 0.8589709040748648, 0.5105041430354158, 0.4760479563081992, 0.3915586115462193, 0.4344526143297297, 0.04825794875232026, 0.25106204840173363, 0.5352062615150248, 0.2084678736174792, 0.5588772074146924, 0.42656597432725707, 0.3395528272139201, 0.5154796814541086, 0.30312695461308037, 0.4684625037801391, 0.13140485141127656, 0.37575572516499556, 0.7087902803012941, 0.22740617784346517, 0.7932370230268412, 0.6977827466507267, 0.8687065743771458, 0.3532210556477622, 0.3005246278528939, 0.8817461779308045, 0.5897758288136841, 0.5117334773877459, 0.2267712913026929, 0.7462523759498982, 0.5055831714989107, 0.6276122794572256, 0.34766968675436505, 0.563322001169588, 0.4035281086421867, 0.44827723495654004, 0.7588644006503809, 0.17560197311170134, 0.2736156405730563, 0.5646478519097824, 0.12788772013874206, 0.8127608550985441, 0.35130933230290007, 0.8842329534318195, 0.5671758377024384, 0.508518787579709, 0.4735654621913231, 0.6614347321502836, 0.7032589073748752, 0.418601168771625, 0.40262233345395115, 0.38045938978299354, 0.6221728234115828, 0.6769388667590319, 0.825791915264051, 0.8036522945246104, 0.5350776523934957, 0.5038683203672731, 0.4187790963850706, 0.3942708224564714, 0.36585282612655, 0.42973128126448334, 0.1395024853671747, 0.36909778672938764, 0.5126700875045708, 0.31128511290513083, 0.5841805470690385, 0.42932394036482613, 0.5168725346003686, 0.9331527243268325, 0.5090935678835011, 0.848083892739094, 0.7288594688776423, 0.23463814542978878, 0.9073343486287574, 0.5445649372592127, 0.8030108083542629, 0.30698149193503155, 0.47724620771884374, 0.49565431290071005, 0.29179072192325783, 0.53941953634433, 0.32642767658125227, 0.5714063949384225, 0.6769388667590319, 0.48314991346809855, 0.3838692085325581, 0.7654355578102645, 0.6807995217458978, 0.7803105409218809, 0.4971816769068883, 0.5662837862370104, 0.32557907866588853, 0.4059739580227363, 0.8621668957327787, 0.4863555612469991, 0.44913520001249685, 0.5044088987161788, 0.018560580499064172, 0.17397747102053363, 0.8203404366189, 0.531551035274026, 0.3951880410340851, 0.6710839680909022, 0.7545393605546251, 0.25029771644034415, 0.31651464458218903, 0.7900402576908969, 0.7649542174153934, 0.6282404390050247, 0.5124469561170844, 0.7501741577575001, 0.3717170374651112, 0.5479204837841629, 0.1799627586960565, 0.8716748635647116, 0.4700369344869263, 0.7044722268129955, 0.7597806244765397, 0.4570971226262448, 0.3688130253756654, 0.5854022956087224, 0.6067015953642416, 0.6092966434658947, 0.5713009051869427, 0.15316343939585397, 0.31191498773739224]}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other\", \"type\": \"scatter\", \"x\": [0.464788992708455, 0.133578388827031, 0.4553188200392261, 0.3684901043400667, 0.8608557701249374, 0.9663987039126916, 0.636152313046697, 0.7945981089498206, 0.3552322926156617, 0.5962263661724867, 0.6661992644260317, 0.1553052405299883, 0.1633160588470528, 0.008628111582191123, 0.37729000292817494, 0.23876868590040912, 0.7780982371418502, 0.66159532906066, 0.05872412812901695, 0.0626948857704458, 0.8093833922410454, 0.5578725852550901, 0.21129848505473692, 0.8256613618765677, 0.44355822610788875, 0.0714082763477546, 0.3100320092379787, 0.6954692278486595, 0.9210139584096962, 0.5294800658473968, 0.7345128521081049, 0.46962188504877933, 0.2115500145967112, 0.8167894472334882, 0.6806293699759627, 0.42604109740380924, 0.6896927364334947, 0.5301977586347719, 0.03373705567178942, 0.5400458406973419, 0.5356692381801845, 0.311171240868786, 0.8459037461336183, 0.0595132960557645, 0.631696082620689, 0.4376122110214502, 0.4503690198209075, 0.08548419359682924, 0.4785669143514405, 0.5112392737938499, 0.3657431973763784, 0.2658085595213452, 0.3195257747568301, 0.33647026304304584, 0.37086043296695703, 0.043032327639353496, 0.6652263836791423, 0.47517434697651273, 0.4247092673016052, 0.1701861794472661, 0.4420658026958564, 0.8388018778228518, 0.09660261464845299, 0.24093428532497363, 0.777811502834764, 0.7613544464404068, 0.11351237002633141, 0.8996537726052646, 0.06327501427382498, 0.29105186352443335, 0.9975020852526578, 0.7601081508204303, 0.9822275956208466, 0.8602037777659257, 0.16722778642114378, 0.47927366225414514, 0.16510094785297114, 0.3940654381122868, 0.7716289075010796, 0.541712318834467, 0.43944984479880456, 0.061751912245739726, 0.6965975687553954, 0.49620305660917585, 0.23670139683608948, 0.6467861885564705, 0.3413935581969557, 0.5755058092195483, 0.5952721411626839, 0.15053725400218265, 0.1958946993298163, 0.3081211705131859, 0.6239076723597543, 0.6698405929261451, 0.1809995242759369, 0.6245685434501244, 0.23076092917041813, 0.14962055844787092, 0.7623864174842756, 0.2582051973293664, 0.027785097931908087, 0.3543849473733024, 0.4012035448460697, 0.9139213666795893, 0.9183814895743228, 0.4375719089350547, 0.20852368249518483, 0.2401336136694293, 0.8711467316161717, 0.27489815117653904, 0.29015573999776856, 0.5114132759394064, 0.2623016560276644, 0.20478255560845593, 0.35451366880201973, 0.8324541817018057, 0.15746857934248115, 0.1818176816240601, 0.27524354883043933, 0.2845345502060589, 0.9566651399422401, 0.9457031926000037, 0.5630992174835872, 0.2029132745778831, 0.1891449520491154, 0.6145567040260498, 0.3032670674001051, 0.2688680420085372, 0.45909288865847786, 0.30764520883098634, 0.050598270385030286, 0.7693011033780919, 0.287454026802628, 0.29234816286418186, 0.6999609612764417, 0.42600600938083066, 0.37460282622624674, 0.7008174307794096, 0.762425675345172, 0.06393101464266548, 0.6756930145508507, 0.6241755648705266, 0.7789934692161592, 0.6225280317779673, 0.07037766791866484, 0.6209251442876793, 0.2939196848677581, 0.9419832809975711, 0.12784762030432695, 0.918946550903923, 0.7615846968263773, 0.9946767737102844, 0.7694460692032018, 0.5928149242532412, 0.46154433452637933, 0.3598887338146475, 0.3781139191625955, 0.5540229539809303, 0.45234405393265087, 0.9347791825015926, 0.2131652073536785, 0.8768833348656402, 0.6466704422620775, 0.9523232447255242, 0.8076373095479699, 0.2867211629767522, 0.451009105776612, 0.7521440662462183, 0.33549293824813065, 0.44699478664858183, 0.35592031703727656, 0.5935601842248187, 0.9919754988358456, 0.5434063280954092, 0.849490148251619, 0.6341659975293632, 0.18777454456846587, 0.4624413652374254, 0.8123885530560687, 0.4394847945708187, 0.8096596104133114, 0.6795065538215621, 0.32135283506031076, 0.7199857262908206, 0.29542667810000056, 0.727062205959097, 0.14756743786596505, 0.6074146944276324, 0.36743435496899446, 0.3734290116353882, 0.017436594203677824, 0.6620735402402532, 0.8654502737777733, 0.9295338555655182, 0.5347506819696205, 0.6559511566923902, 0.41272744342974343, 0.4191806863518228, 0.5097351340230283, 0.7072725890118133, 0.3633261959996027, 0.7323503662181378, 0.9337974663811077, 0.4286676806568247, 0.8255201010874182, 0.8685701732279327, 0.21246904679091372, 0.39990899525760737, 0.3225915135622843, 0.5421672703931683, 0.16058401766946362, 0.7648292137952714, 0.2009672527350378, 0.2141563704496957, 0.7883759982983202, 0.2476017272847877, 0.7444148208377365, 0.7835394866629509, 0.01812178861436531, 0.6128854222786867, 0.6886255703486194, 0.8572055532096311, 0.5434098756255636, 0.3992809066768094, 0.9789731048910973, 0.15378306299338407, 0.038530745601610294, 0.7933660263263183, 0.4803878750204502, 0.19032353667654323, 0.6261708843350141, 0.23840483258556533, 0.8332738579024477, 0.2358701510519784, 0.9251644967273057, 0.6212631947213089, 0.48174701036265843, 0.6901816497961938, 0.6367826903874723, 0.04618448847368173, 0.20239687832099507, 0.9335690713101916, 0.1932304380569111, 0.2769384111826464, 0.0763649271176634, 0.1742179348283942, 0.24878557086223207, 0.2032895430171836, 0.8577935155565268, 0.8586678096747319, 0.30067083290898067, 0.19656816550697775, 0.7059596275693988, 0.4565832122063268, 0.43948673821392237, 0.42492662908019296, 0.1144527955044391, 0.5953469713030167, 0.10447514086819021, 0.31642489414114383, 0.7463234817449613, 0.9920015876057231, 0.2204514556951025, 0.7093014910908101, 0.529520935982783, 0.504552219470561, 0.17798150375329547, 0.28229999029462194, 0.1418773714681979, 0.6599859550298074, 0.250679806282034, 0.8981664462520121, 0.87924663881627, 0.23682562670124896, 0.09612081645810411, 0.9482952898298986, 0.3762346115537494, 0.43071040975669006, 0.05932836361559546, 0.45983227324742637, 0.5085227841839366, 0.8292074774187148, 0.9480040338542015, 0.014072071784660856, 0.5707044185408127, 0.6272085678041704, 0.6977113903507988, 0.9327260960120719, 0.3207363894579792, 0.46131940820433226, 0.8940686851480265, 0.6781527189910875, 0.4176551869377618, 0.4775146550661421, 0.5218162392890441, 0.9604052881655144, 0.8856736482688062, 0.0728816742014019, 0.9277522183218393, 0.8417371253712741, 0.9576543952225436, 0.5986783938374135, 0.586963484816346, 0.7011266638309671, 0.4608260603705461, 0.9079998025283248, 0.16326196059316878, 0.5630073459275895, 0.7347392136155715, 0.10489159134488768, 0.5501048205634657, 0.048599166276293904, 0.4672506688056489, 0.7018825741661802, 0.38931630443088894, 0.25639817765327, 0.19459584494895055, 0.7567156623423201, 0.958674145352907, 0.1553454883081441, 0.10207389945079104, 0.4188066516824569, 0.15083478579985743, 0.09823123757386543, 0.7583419064394787, 0.47820569956970715, 0.342614223324068, 0.8377707900799348, 0.33763783496142197, 0.8533928307238622, 0.6582834896412313, 0.14924898285304689, 0.45915793892889323, 0.6912150764476811, 0.5071487507476509, 0.10450308589697288, 0.9097720997699091, 0.7146066900377084, 0.3429690516849009, 0.8491477648192108, 0.12984374793417408, 0.03269165515993189, 0.6737305595183698, 0.3200254443262297, 0.9159754183410236, 0.4454594536913118, 0.5649433570105759, 0.07937259258059426, 0.8557843985011089, 0.21838614050034066, 0.09866351327252143, 0.21225101340828678, 0.7382824389358321, 0.46629909516746015, 0.9941014994430305, 0.25613488263962936, 0.019576838432512123, 0.008885503224625557, 0.5898312466692751, 0.9782028722986337, 0.20597660769316606, 0.9374561805645288, 0.9447587165045116, 0.25341068044463233, 0.8695777225516692, 0.9211016370739314, 0.014890461787522291, 0.22087231405681917, 0.6151454425608465, 0.9515446007563934, 0.9892952223178839, 0.6289176142871792, 0.18799352457475638, 0.21917754814064638, 0.0022661850596975563, 0.40049173809656924, 0.6982324769586633, 0.6452378954824227, 0.12289228366504423, 0.3901248209746825, 0.4848200331187652, 0.9631275212522977, 0.9016382294254324, 0.47910752908521426, 0.11793294657405562, 0.5954817887442281, 0.9298729029574074, 0.7647404558160265, 0.6500544973409513, 0.48912823863782007, 0.4873084655159847, 0.5653682158895117, 0.03760459358591939, 0.3897642893729081, 0.6899135437419928, 0.1428150039281505, 0.6742141631870097, 0.5639046002100297, 0.7339813566952599, 0.8649236495775059, 0.7487471566205824, 0.2765755310782313, 0.7330786353148171, 0.24653838200157796, 0.09814625407923072, 0.8124728856938371, 0.906475193363521, 0.5114552262688763, 0.4696100070183763, 0.015677273036793005, 0.9841440871230864, 0.8483834908153306, 0.7835153019707682, 0.6513730961519141, 0.35588171579881156, 0.9723707223605086, 0.13219523033451708, 0.7745838619598739, 0.9922981905683766, 0.02113570607040538, 0.010671700072537038, 0.9607069462735598, 0.06995565568185824, 0.31671593481714866, 0.790924687241898, 0.8396720629764514, 0.34941797527817164, 0.39900202665488527, 0.7764851595647864, 0.8261162644448115, 0.05326170235459926, 0.07770557891417518, 0.7135806610063373, 0.7689386742532315, 0.290551539571277, 0.5506213099560436, 0.6752707180161044, 0.03362515425010404, 0.9267275541913965, 0.11895330000294613, 0.27153805087682037, 0.21624310052768925, 0.7126965673916124, 0.9197532250948215, 0.016191075555489154, 0.50410450949187, 0.14370846925843273, 0.28568854711543534, 0.3989586569632987, 0.474158270737116, 0.48811617346420766, 0.46054143834986927, 0.8981385164180284, 0.6997194165534648, 0.5332303433435108, 0.895335718597839, 0.8675678447715951, 0.474588256339583, 0.2658423425844598, 0.8001460722977312, 0.08240568458723829, 0.20148206953910963, 0.9801139373530242, 0.008535577087659618, 0.6183199466826047, 0.8947436346046982, 0.8438013936383054, 0.5747430810730947, 0.6432267498845932, 0.7128760748272346, 0.3103136637401023, 0.14328541458967903, 0.21582576206440252, 0.36680683848758255, 0.48809465702657784, 0.9254948228615363, 0.2090679454463491, 0.8605120342566097, 0.07020077921704204, 0.4642802760943694, 0.972127232075064, 0.34254472948317793, 0.6029887102963198, 0.48457174242167644, 0.5705889785846968, 0.05241294250265405, 0.19231768005137218, 0.6257524879818578, 0.47988872837735985, 0.7471679579999222, 0.25447887412871995, 0.15873056418191434, 0.668372245175822, 0.5426248694766951, 0.13578642842228383, 0.6535874234076421, 0.8254104162642831, 0.1545799415276976, 0.937678788795305, 0.7181780837661322, 0.9729354068970555, 0.9911675924116037, 0.8079875173873029, 0.7453113869719954, 0.449864272236538, 0.7842535339922596, 0.5257028951562179, 0.6959622085047604, 0.5069353068365537, 0.21725438282355714, 0.8052197051468225, 0.7058621580602216, 0.9021696269388771, 0.23511418765650616, 0.14081141254727225, 0.6938141239873888, 0.2534850712034359, 0.5049063296166842, 0.23269396487762173, 0.7340949963187194, 0.9147846940677948, 0.031346129314060445, 0.9867140990858482, 0.09217422306435341, 0.253342986505787, 0.7506186065112136, 0.4713454169329925, 0.9793969104157019, 0.4045834620400195, 0.2453324223140173, 0.08429708469986519, 0.9532361285818347, 0.4333613155392738, 0.6712054008041737, 0.5244254256546257, 0.7416703641712002, 0.32778064116913075, 0.24149637810278346, 0.43487079058195455, 0.7314633108110996, 0.9332162394639176, 0.9628579243751727, 0.3240400437060257, 0.11088616234973847, 0.09578457782437355, 0.3796035857460869, 0.25023575224655703, 0.9050869374174078, 0.05245177612739682, 0.7415561679677466, 0.4592280345384243, 0.2653011201019797, 0.901150576009028, 0.6373416829854543, 0.8001364961221675, 0.3693260938340729, 0.9627537958945067, 0.4747289014785574, 0.06516594421120314, 0.45577594940963173, 0.3733057343873093, 0.5744398911868407, 0.8436424854593674, 0.44913789447311314, 0.6456076367453206, 0.6525479604710075, 0.17558121747449318, 0.4932768923544707, 0.5164922126714563, 0.730429659752338, 0.42658927998979734, 0.9335636525695351, 0.9736090846996363, 0.6770588172636318, 0.20341881798620576, 0.6416908252573236, 0.10157552836643913, 0.28884990640215935, 0.02049267843503788, 0.5460881895160626, 0.31009289181395006, 0.034185310179025485, 0.339308694285103, 0.4587662364368308, 0.09444042820502074, 0.2701208897249917, 0.27314059860559203, 0.4657605165035871, 0.2920218647231341, 0.10991941682366324, 0.444333002935574, 0.6435035287961444, 0.9233136373001368, 0.324264511717438, 0.6627431603634213, 0.9216679217952314, 0.5690156470816341, 0.20858525451437504, 0.5685239492282382, 0.6999736590589803, 0.7055648694740878, 0.6350824297948251, 0.7602677566670134, 0.8148461300348234, 0.8181457560338734, 0.74819429789312, 0.5861045636408363, 0.7055787366856322, 0.09555060317630637, 0.6115811309371771, 0.569913632432693, 0.8501194468360241, 0.206711935916447, 0.600381031875034, 0.6459538233311592, 0.512211210582523, 0.4448227191727715, 0.1652025517160065, 0.7479102649427642, 0.9764669861080043, 0.9044587916367035, 0.6202680200153285, 0.33445842412629223, 0.8501220668307365, 0.34507737895493873, 0.450823656803757, 0.6389713601110573, 0.007297888808291297, 0.09690528668137877, 0.5251193314364078, 0.5273918205296728, 0.5184940090294382, 0.6891197617958965, 0.7184962857248878, 0.45066843605440166, 0.6124524321176423, 0.5502361277589531, 0.6977311889898208, 0.5520897953326399, 0.026448555750119507, 0.24969280492033885, 0.9950613219217072, 0.9147215981355464, 0.607991281276187, 0.5200974512808835], \"y\": [0.18439386755371057, 0.5750868907731637, 0.1132172353536568, 0.19850047615697952, 0.6950004168934912, 0.41826441672946313, 0.040828937665112974, 0.2145583871630251, 0.09143093017991866, 0.10013996234885614, 0.3658834999306372, 0.587897812361327, 0.23563705889496211, 0.5289998061994394, 0.5981734696485812, 0.5956194363709464, 0.11295199838815062, 0.6349332021584286, 0.09356782907078887, 0.0672754654033908, 0.3541579814831264, 0.11781588709523827, 0.3295981493457443, 0.23443288181779365, 0.13830133810679424, 0.5122546205578999, 0.03626449638205209, 0.32057959349203036, 0.3955164844050859, 0.21320459763992916, 0.08620177311633537, 0.4132497936565127, 0.19514157099220286, 0.028148892894647393, 0.03728071159582558, 0.20213762816504022, 0.39088790332760825, 0.10566618212719892, 0.11466232649727714, 0.09544364959788487, 0.07351553674018241, 0.3657542344632553, 0.05859665738698361, 0.43634835962676355, 0.4827032077898804, 0.516310366273556, 0.6480037931050455, 0.21122004543372697, 0.030344760075157406, 0.22750344576024595, 0.18673438423788624, 0.5460909738859347, 0.0666291073587214, 0.320234954276134, 0.515425573770442, 0.5751179393061847, 0.3262180383913996, 0.12192585741802231, 0.6165939755266235, 0.09365914315081003, 0.44259853952477324, 0.31958523161407537, 0.09228899111547839, 0.22815273642701062, 0.5282447951108347, 0.7777719169155834, 0.13834506443323813, 0.29425092810710396, 0.5300870647699181, 0.031947521718024174, 0.1108646816717751, 0.053339747820140615, 0.14466174791529418, 0.25697560969337485, 0.3383868137798065, 0.30803904997837983, 0.03434255320493995, 0.08689109251212201, 0.46044782253877736, 0.0973761441498977, 0.3449058470623745, 0.024212367984770777, 0.11665042079727428, 0.3333970234137619, 0.1495417879159372, 0.0679784404121434, 0.2360052425084116, 0.39147703437781534, 0.04428683932015287, 0.5381556738404795, 0.4357341587922019, 0.11843845992675284, 0.28107964630818494, 0.06989794698232743, 0.2658605825653322, 0.22408104406272966, 0.15519213452661884, 0.09873339188795927, 0.10739713799337769, 0.4712507279726723, 0.31257930793611366, 0.6259141532505736, 0.1651629894813923, 0.13024327386797574, 0.08242409751896962, 0.55355901104019, 0.11256152515999429, 0.22124325125588817, 0.05838775174278421, 0.6734770756819889, 0.06919042490492266, 0.5773286546676725, 0.5693181878572973, 0.12726917141891614, 0.27983888222674136, 0.15690954109554833, 0.18593824584442387, 0.05432525584274117, 0.33273366741371935, 0.12435295831370408, 0.48112847828662497, 0.2959384652215836, 0.5042039768350125, 0.3749869638443927, 0.7258627386781167, 0.4806866421912115, 0.6234335830956541, 0.4191951896523489, 0.20821728825178332, 0.6343085651912675, 0.27674577061671146, 0.02140654255666985, 0.42849246998341506, 0.1817444030106703, 0.4551538855951942, 0.05087080041524106, 0.516641204200833, 0.6810720245435042, 0.08151744899857294, 0.4475169494323581, 0.03995706953508171, 0.2181819033834006, 0.20372897255157485, 0.24305701296248816, 0.5381556738404795, 0.2358485729609252, 0.051323642447754336, 0.1913631294907303, 0.32154631204965056, 0.31229802093755377, 0.3917329141436472, 0.39462053822053156, 0.3680669306910641, 0.5017894292511481, 0.32120711190509066, 0.0768019282386515, 0.1168769044932052, 0.31545143431826594, 0.12007957373947853, 0.08354361700756141, 0.2180731800932174, 0.7653011157176768, 0.05076221583963347, 0.11739077279846111, 0.3639458403519926, 0.4815918747301601, 0.35998732468747585, 0.457353694020342, 0.5520498791697908, 0.22168281241722143, 0.2132287846887433, 0.4763394582576197, 0.3040153802820409, 0.20749766415549342, 0.3316810644107503, 0.8126297477835096, 0.5749367295182395, 0.27274039590582944, 0.2685808245693546, 0.5172108675362206, 0.33506587713796443, 0.09616672688355288, 0.041108213935392324, 0.10548050716105373, 0.5016695616404938, 0.20022874051447226, 0.14220640128276774, 0.23772630779738468, 0.19606080251004787, 0.2603188495268066, 0.18846597668723208, 0.19827111133563302, 0.261548791893628, 0.4140325207077993, 0.8134796325151183, 0.12265695643958285, 0.6311167068993262, 0.13481820177301163, 0.0932384579037443, 0.14050160114126486, 0.2562249115981724, 0.08547750670655718, 0.08643201081848362, 0.19981675431015722, 0.31390222338706264, 0.06221739913672386, 0.06996303880871468, 0.30029370289300306, 0.4306817897420764, 0.6595343859760441, 0.2839408857911616, 0.20468539219890003, 0.1130196126722065, 0.2360017176902124, 0.13187147729288817, 0.42313120297864704, 0.06964897436687001, 0.1624399718171824, 0.17200815643270417, 0.07333105637055992, 0.2440137653363641, 0.4900110333069776, 0.3085554157386313, 0.03480496731142946, 0.12148031785507996, 0.15002971926037112, 0.5314247042003052, 0.2758453007685677, 0.2151852748992088, 0.2658605825653322, 0.29911225563077193, 0.6594110243744711, 0.49869782335001445, 0.16788254706683048, 0.11816213334465087, 0.08230909248122409, 0.13653212507346946, 0.25639170942272826, 0.06562233405876228, 0.23311900627036541, 0.3756616197417655, 0.46674395287949066, 0.3092684534350997, 0.8337319641197457, 0.8331457111467163, 0.2591056156836542, 0.4778687671024334, 0.2542440524586721, 0.5361036306539362, 0.07073721340803463, 0.4731688813159418, 0.5755848065786346, 0.356689463387698, 0.14225616860197343, 0.21837916002376445, 0.14466174791529418, 0.29899643271856946, 0.4757427727983842, 0.08126799884203029, 0.1296501822378736, 0.3286954654423938, 0.08620177311633537, 0.13855855420831553, 0.05543377339452393, 0.11917834098009661, 0.2613621884509647, 0.11269900223777074, 0.08429051026621415, 0.3393961441870107, 0.07031960314855146, 0.11356777592095357, 0.4853279864284006, 0.1279289285514792, 0.0584572339054259, 0.08612988585012649, 0.3472440907423937, 0.1248029959061332, 0.07502335399434323, 0.19827111133563302, 0.3424151534036639, 0.3065175956815872, 0.13808860398564737, 0.058092197534895806, 0.04082786106581715, 0.1602592849246841, 0.09156161599234125, 0.5036030690663805, 0.2640411824475748, 0.6468038092930676, 0.07201805208597656, 0.22470230804277058, 0.1334773721572423, 0.04847889440667685, 0.2685808245693546, 0.10911308148570098, 0.6764508967260475, 0.6280060594576413, 0.36761958218269275, 0.16019930342079847, 0.17605308658107655, 0.14078981831089854, 0.2384997092801764, 0.13117402490907393, 0.12818959986091483, 0.4161925244315118, 0.12435295831370408, 0.09814942480303201, 0.05480698563416486, 0.3746187330143109, 0.41092354232892336, 0.507894749900129, 0.5137929421583434, 0.08293523366016065, 0.2964416548030494, 0.15236141109070434, 0.4396941021426354, 0.41893931094950754, 0.09113953260801844, 0.10967473999240707, 0.055732078845942, 0.05640314085190745, 0.06176263301115803, 0.06427139521062619, 0.20386133178572885, 0.21597661143113533, 0.7486409492386699, 0.2610715902497083, 0.09465277491899493, 0.5556171757583562, 0.137718889647652, 0.1978940751503777, 0.08472590699531857, 0.356262641598029, 0.14596950445002987, 0.13865818299932142, 0.3088915816821678, 0.11516321289421916, 0.16121169033174265, 0.40573483691789825, 0.34308606282264, 0.36300204724896845, 0.17193414756867276, 0.035926383178341514, 0.34536882843285344, 0.4400180463892147, 0.5165194668234709, 0.23319834124303085, 0.9637923675569924, 0.2635599134550337, 0.6259141532505736, 0.12324962258280003, 0.1256037712827487, 0.1248029959061332, 0.11665042079727428, 0.29081136443782263, 0.12993062945549005, 0.20959981847797426, 0.12385816607190492, 0.16931651488884025, 0.2468284110987674, 0.6181879252747016, 0.3509541008179864, 0.08619429866610873, 0.09537770951135394, 0.8204393830764495, 0.2493836920976743, 0.10367142046182065, 0.11516383353466464, 0.07169627826225977, 0.5400384130096556, 0.2709141565803237, 0.16809050322974173, 0.3421981324687273, 0.812724325423183, 0.1326589750154965, 0.054670132935181304, 0.055346153509382656, 0.8039442695404772, 0.3276168958360183, 0.6561718697940482, 0.6214102617950452, 0.3046829516703813, 0.7853649284745584, 0.7303620793003476, 0.6719087507962026, 0.16000678121984613, 0.579612101366232, 0.6347749924714103, 0.41894393066564606, 0.06936532322770372, 0.28322834609079706, 0.343263893078516, 0.4450860003239352, 0.3090838478611311, 0.408095736797927, 0.11529682880263803, 0.13359771811640497, 0.2417229185475579, 0.10092265889692065, 0.8181934133883563, 0.3777834313813965, 0.8273808576462511, 0.18439353202429143, 0.5148786056082297, 0.11287077888712382, 0.16015059460472458, 0.29672938182784603, 0.36944561074938853, 0.2505850522824452, 0.8467591712977676, 0.3840267097226593, 0.261779448872241, 0.1645479955558209, 0.14631295673285594, 0.4248523287309329, 0.09222807982804315, 0.2121484308544801, 0.33273366741371935, 0.5470626312455473, 0.8294144697045585, 0.25206662215500397, 0.15998368749433245, 0.548322128117227, 0.3917329141436472, 0.15981565308588508, 0.23631147082452741, 0.21082920466209698, 0.1871387197916503, 0.24774693401855818, 0.1913242313933492, 0.16437448769677154, 0.07582203648947516, 0.032541140295091364, 0.06311143057978008, 0.5009235508757715, 0.12343879567504301, 0.445735807756371, 0.40322837553658053, 0.09397553936597514, 0.1598391281143201, 0.26702494168661406, 0.19782301216908982, 0.06831823449824892, 0.5451167746582685, 0.20142160156100697, 0.25747632252511843, 0.4257317671215596, 0.5062318064185062, 0.10278357133077332, 0.10857266292312517, 0.06223864817381186, 0.11377411494697365, 0.14082424186384768, 0.2589321903149734, 0.31776639873426016, 0.07983414941561229, 0.30174211068680845, 0.42532907678292176, 0.23734670470511587, 0.2862296469110084, 0.24790288035387664, 0.5526146374040077, 0.20425399436950087, 0.5166825128498294, 0.12415322942140417, 0.5310696157212036, 0.3866387435262121, 0.14313186082947948, 0.31648660326859934, 0.026792916001305622, 0.7856428374245099, 0.42383310375799566, 0.5944566396871084, 0.6256605001243821, 0.08813642250468567, 0.03544811528140901, 0.06935406654889886, 0.15751976448865512, 0.22608551288474832, 0.3127311228465576, 0.1409438166611655, 0.3285615524533705, 0.3591330499592894, 0.47964497307801546, 0.7143146030302826, 0.14223944449319303, 0.06929054967731618, 0.32120711190509066, 0.16913647442041335, 0.707286257884667, 0.3230684446475647, 0.7616845263358343, 0.4104900542879092, 0.10053249234255524, 0.1106599594415556, 0.1543174595222413, 0.46003879185641183, 0.3811350878514418, 0.07185070571861518, 0.23882593985771994, 0.5344976262521839, 0.11031385635331636, 0.09610989844306939, 0.4955559099445003, 0.07845190603324759, 0.30697262074812925, 0.12767551958037127, 0.4375661224395835, 0.07737023387634634, 0.15307682457740834, 0.05694427046787409, 0.09028836937410878, 0.4011292297732457, 0.6186146927451245, 0.11561676905211238, 0.0993047499370594, 0.08102401279833105, 0.8100206966555492, 0.10768932514586738, 0.15386113005635593, 0.4026560765644126, 0.045535707525545144, 0.08229583319403, 0.08227601457953415, 0.8241544781987433, 0.0759900855540333, 0.5147505197509459, 0.11103147778198663, 0.42144961755966015, 0.24880465403270857, 0.3112403223054312, 0.3282460941643247, 0.28312386083977936, 0.2865521931047814, 0.16537364909659502, 0.4284132019637321, 0.34116073112729894, 0.051142721309942685, 0.10794707492381372, 0.1108646816717751, 0.29201805921023904, 0.07365131996157204, 0.36851051207096197, 0.2556143611338999, 0.07392456180697715, 0.045535707525545144, 0.15025986810093994, 0.4395989822566938, 0.19636656988846957, 0.21018464628148859, 0.15085686628779282, 0.3429118439192298, 0.16104008564300487, 0.2055862423584408, 0.18673310211333727, 0.5528531989583015, 0.20219789553586287, 0.5807830339134155, 0.6112381610839525, 0.07515362639458067, 0.5722084734915175, 0.3654892991508686, 0.1991057466826236, 0.4912569401667811, 0.05850610073101081, 0.3077884117234785, 0.17038242498240874, 0.14066607718466684, 0.10248584652416493, 0.4022873718442217, 0.07205214632436985, 0.35142291824287475, 0.10941760034103376, 0.06679271580157364, 0.05675388891699207, 0.058987921856350156, 0.3660303223369904, 0.28790374422385034, 0.4158290962648631, 0.40710291595796666, 0.09934102670994882, 0.06362846635195196, 0.30921476208988685, 0.23242198019285765, 0.055541210656895434, 0.5297663836663529, 0.10744632778983743, 0.18410212910939194, 0.17721960751489196, 0.1962664672709783, 0.1617648996714035, 0.10584426414108294, 0.5203501665477333, 0.07365131996157204, 0.31578819840495265, 0.35364190165315845, 0.1707951928721818, 0.41655733121321636, 0.15801546378512366, 0.7568436608419439, 0.22368578646300386, 0.0609449253562836, 0.2225096762928218, 0.18587673368692093, 0.05559101133196209, 0.569598540521716, 0.08073228430722412, 0.15724041301590164, 0.12879141548479, 0.4306817897420764, 0.17998791969802397, 0.41280880088413996, 0.5723062335690389, 0.6457404130724687, 0.10420061808672998, 0.12564769853034463, 0.21795029564941848, 0.4720930498870375, 0.11304202998506685, 0.545112257205237, 0.14852188644910969, 0.17217029085021085, 0.336250902618187, 0.48671482860553816, 0.5093433434984792, 0.35847801144896685, 0.3008706318705062, 0.18494609259573758, 0.4199330463236065, 0.04162287990776414, 0.2633909944023186, 0.4252182303976608, 0.4684623303117058, 0.1925553058603695, 0.09610989844306939, 0.09129843496680234, 0.3302708189676917, 0.4199330463236065, 0.11927294568859859, 0.4864154015695107, 0.06472081497616611, 0.6387929002666255, 0.37932906694235924, 0.093713747684541, 0.20627971812824875]}], \"layout\": {\"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"range\": [-2, 3], \"showticklabels\": false}, \"yaxis\": {\"title\": {\"text\": \"Probability\"}}}}}]}, \"insights\": [], \"additionalGraphs\": [], \"alerts\": [], \"tabs\": []}, {\"type\": \"tabbed_graph\", \"title\": \"Current: Class Separation Quality\", \"size\": 1, \"details\": \"\", \"alertsPosition\": \"row\", \"alertStats\": {}, \"params\": {\"graphs\": [{\"id\": \"tab_good\", \"title\": \"good\", \"graph\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good\", \"type\": \"scatter\", \"x\": [0.26277651615049735, 0.33714093609891105, 0.30517098788578567, 0.12015123823843332, 0.3034761900528461, 0.01781269237185057, 0.3052952290206392, 0.16905646907527605, 0.43896453162374727, 0.27825510536278075, 0.5720619210522414, 0.8412325649465572, 0.06943414010236981, 0.40469142671459446, 0.3527639600925656, 0.6671124412716708, 0.5427140890125415, 0.926175975112578, 0.4482619655026453, 0.5928636407872983, 0.17475500068502536, 0.3434826882861285, 0.6583227447733171, 0.9034200556938211, 0.6824689049938995, 0.9536315712412288, 0.8845930803238037, 0.2804674620442362, 0.6455447125874375, 0.2936316275799127, 0.9018596624515952, 0.35848323408337046, 0.2545137688198952, 0.21545515336662013, 0.9721935326781393, 0.539227018836867, 0.934855285104598, 0.8085509617731071, 0.5509170826626678, 0.08645998442449476, 0.7140686118024431, 0.8959110857621949, 0.673432273564163, 0.08913824300314088, 0.30779724666097585, 0.5290981340478619, 0.3580700784148316, 0.340051043934381, 0.4286036300215802, 0.44488412973086966, 0.19237340939978453, 0.8763247696320864, 0.2227390143598028, 0.5349086123050165, 0.6167779698579199, 0.3761956460176116, 0.7569956977309785, 0.4378577781092876, 0.8532366665300716, 0.8701802330964319, 0.9700932063055405, 0.44844153254853114, 0.66808005358628, 0.4553055919126424, 0.0073874184779134655, 0.29153765356754824, 0.13552521556195019, 0.5984986884809891, 0.4484514618239507, 0.5266957227590459, 0.4217745168294942, 0.49155255778327545, 0.9489823748328431, 0.04550544266724654, 0.3391574644971427, 0.6339458922523392, 0.5346358795253608, 0.20300454745972096, 0.5399761587461229, 0.4500715463788739, 0.5460075906825651, 0.8858368909404419, 0.5183236331400104, 0.3137352382356855, 0.260106377347187, 0.21143350630682978, 0.8337130239113935, 0.49138433800146797, 0.3620369876101066, 0.8780782195874843, 0.2539655022279852, 0.8440283582165411, 0.6772787975863128, 0.6084753717846653, 0.6839736848397149, 0.5277019784292664, 0.46905503668377224, 0.9962619946683362, 0.2824466169136961, 0.6675975261706614, 0.062352684737858044, 0.3892556421426493, 0.7773621401762772, 0.7136994349700342, 0.8136892640859581, 0.3416688232807087, 0.5618653339716178, 0.09509052972540011, 0.5466193692543742, 0.8999886048396959, 0.42494419165991104, 0.858496725458614, 0.2764327272976379, 0.36386288679659984, 0.7701805005424158, 0.5937750824171921, 0.9963833664204509, 0.38496046947970874, 0.7063410345810687, 0.2942355474674342, 0.8205349696149205, 0.6907818653060285, 0.035799284770947404, 0.32552756354089696, 0.16576814209994473, 0.4038869994832718, 0.7357530125963773, 0.17383791356934564, 0.8150727306252872, 0.7729651770506134, 0.6258289280538174, 0.8423206389412952, 0.6991689698699597, 0.019254747781870307, 0.9358148039841117, 0.26437737131148453, 0.04899195438826587, 0.49977885003911016, 0.9478374777577075, 0.14274604612442332, 0.6065258099700171, 0.4534330624166729, 0.943872394956814, 0.9329806027524894, 0.5235327237240545, 0.5883712465123224, 0.612585930801013, 0.4948020388679031, 0.2478111243375184, 0.2394389924548136, 0.12253467961081499, 0.08897363022055926, 0.5914498094155713, 0.5882326694834958, 0.7645432382656114, 0.7748418286272927, 0.30714703818756783, 0.6366781759879071, 0.7148134945660515, 0.8373600178341452, 0.4621891892589075, 0.7512187116392528, 0.20692036287120597, 0.889756800381205, 0.06600270923222329, 0.237980616221119, 0.591264636844859, 0.04831941289227992, 0.5335785198705632, 0.8356602136113372, 0.8638577777588436, 0.5138231521565578, 0.8398007516145787, 0.03163562115041085, 0.26508750376862733, 0.7668894203945497, 0.0681607399932227, 0.8129244328176083, 0.10094543927597077, 0.3496791960136375, 0.3144410657889519, 0.1876221629424839, 0.6956401343568295, 0.3449364551812928, 0.3177770148682332, 0.2460160975539737, 0.5155085660029131, 0.5281699870231318, 0.28482111785692565, 0.4658706015083971, 0.4623564090523343, 0.39832307076988505, 0.735181351768993, 0.31052000122105916, 0.8703123836055462, 0.9290214151959612, 0.10320571143873669, 0.23618662771428978, 0.3476035913854868, 0.6395101344423435, 0.9164304737211362, 0.004879118626790913, 0.34576872576622786, 0.15291356829092972, 0.6227401594499192, 0.8357513396873824, 0.45785567054610554, 0.25862787840400814, 0.3218862451680068, 0.6864692875654528, 0.3313218879841787, 0.02133394900468044, 0.059813763894053795, 0.29744237124060313, 0.7729162846123329, 0.5883584274348583, 0.7488315945657756, 0.4653042119890167, 0.6996156782498321, 0.16298531366286972, 0.9487212089876175, 0.7953601454182923, 0.6467784270547865, 0.24724757928007857, 0.5021574889178395, 0.2667238070825545, 0.2632430181213359, 0.1393002325714231, 0.3612708229331453, 0.6965420499875418, 0.04588375352432972, 0.6148698873719453, 0.6691193657860447, 0.816902780562114, 0.914102361653856, 0.5116575471666218, 0.20507153045434767, 0.8092290045603033, 0.7435152047141448, 0.635588453458371, 0.9678273748083726, 0.017617271377905586, 0.7233440009816131, 0.5490384068644707, 0.4943524449109362, 0.8932738949017922, 0.4298365669665022, 0.0027897143201539576, 0.8499209843972285, 0.4019801374488351, 0.9416743158203099, 0.4883576250575121, 0.3849461293282509, 0.10979578067826634, 0.815871551969776, 0.9092818063839216, 0.6052144363008177, 0.9733183103822405, 0.2890798972348503, 0.4359968896091644, 0.564776204798337, 0.6110681859876284, 0.7541958746321039, 0.6527794662033202, 0.19182686203318455, 0.2641682973118856, 0.3804259167581848, 0.11737538889289911, 0.9350068953438483, 0.322779644002648, 0.592006153248393, 0.7983001580055306, 0.3392586066588783, 0.5190600086664503, 0.14156707728188522, 0.3006654997862761, 0.7448670219023521, 0.18896334497121903, 0.29372153100015286, 0.0666849829988968, 0.2827249019039171, 0.6120867340778958, 0.10120217457337799, 0.6567972477613089, 0.5284951011574339, 0.009199081049879543, 0.2115286019176611, 0.1436674123926267, 0.3912578382253913, 0.5612410415037334, 0.36285429083136156, 0.7763050299893625, 0.2841670049454349, 0.3811735349028277, 0.904616565305281, 0.3071059126464428, 0.4023820752168098, 0.017368912519151625, 0.003906802581054691, 0.290303269209755, 0.8283283767267339, 0.32808656358344856, 0.04959252973319028, 0.2388108442139245, 0.9313507401044168, 0.46055766430681544, 0.7729167577353664, 0.7143112655642554, 0.9022619672633089, 0.6790860012567193, 0.9551626131344398, 0.3597607302068434, 0.6523682862842836, 0.5031562093689551, 0.880532072542705, 0.7465707856761181, 0.9704942106584435, 0.603377184653406, 0.5033871251034203, 0.1744934217587114, 0.3109708024494442, 0.7416762641094344, 0.06455327992892668, 0.5342473356952478, 0.1513091794455632, 0.9681576178013351, 0.7733588719849798, 0.5922579723796951, 0.4876101772148099, 0.5906205219540943, 0.817524883275697, 0.0741160360830595, 0.8883319059736646, 0.9516852451524255, 0.08204649246650209, 0.0809494864574728, 0.996474679542699, 0.43996200767984417, 0.5002229745435314, 0.5745564671679222, 0.49312874594874645, 0.11114217075209698, 0.7314684429894973, 0.7665585277305654, 0.35134051156387125, 0.6524966817123942, 0.21001140686362152, 0.6177959231705625, 0.5841461753725327, 0.22403073566722842, 0.22015413819977603, 0.04869085800105, 0.37913155169271107, 0.9854003374861278, 0.7951790928860457, 0.046407717766511314, 0.10532185257109494, 0.43442797143431144, 0.35863726237610805, 0.3263728291385345, 0.14345936927378367, 0.08234581038436406, 0.6514427298569586, 0.7881355355110828, 0.16951157999897215, 0.9164109934420456, 0.14140598192499831, 0.11358011537699009, 0.5487680501798686, 0.7455768718688152, 0.3848744649749737, 0.15552031270357092, 0.3548012964040733, 0.6228003607507054, 0.3709079449216891, 0.12518711680492167, 0.36811607623205267, 0.40747966729895513, 0.7843231243056814, 0.9709812977538642, 0.16293088304854264, 0.30738709453757607, 0.4685085371257415, 0.6947455494067591, 0.07637468941770875, 0.25329268980570596, 0.5965608532997788, 0.8197460224862321, 0.005193063828304978, 0.5997386364910355, 0.08948023978558672, 0.9235646589422276, 0.4962889571744141, 0.42603517678662906, 0.9229390843568541, 0.3761962845957785, 0.36037411870399116, 0.47998415295710284, 0.6600377320716633, 0.9089973789457383, 0.3180874863390887, 0.4506807967355453, 0.41904353647969117, 0.33285179087389083, 0.023326757287382427, 0.36595900021244965, 0.6991505434047814, 0.5716037689796277, 0.8266999286506083, 0.7796749065775157, 0.942099540216784, 0.5391919802221652, 0.9783657605368236, 0.20011529776156545, 0.9989366942014544, 0.4622021258348715, 0.11772716565493979, 0.23899205349103536, 0.3255881999342455, 0.11444159280743882, 0.2935668267798306, 0.020642786202140107, 0.07589662828828758, 0.8157764082336108, 0.008083180469518503, 0.14808616632312277, 0.1286443242648697, 0.27045467565283576, 0.2968417599107729, 0.27839293004631305, 0.07988746003477265, 0.17227777288161006, 0.376454708906085, 0.6101580226909304, 0.19416534125676854, 0.06539343976363199, 0.328854207374098, 0.9850798153598862, 0.9929080981500111, 0.598583624141244, 0.7407186884462943, 0.4026901318285808, 0.08383687929243944, 0.40977297489880804, 0.7660408269638941, 0.8378619497785096, 0.4308328792979379, 0.06453796041976445, 0.0443518157229601, 0.7148667854269589, 0.6589567558458155, 0.240211592555028, 0.20455041127712825, 0.6390311651711961, 0.8171578605181613, 0.7245887817214729, 0.3803296628502132, 0.040741421261620836, 0.30935899679103585, 0.9917560974864279, 0.5316554672246956, 0.7579712695733071, 0.7300897132388023, 0.18518332117101544, 0.7283481959163677, 0.47143064400416457, 0.5703965136746847, 0.19720456073039527, 0.20669369830810824, 0.12565028018878666, 0.18339805773052453, 0.998172972217242, 0.03480537855501176, 0.919759445274199, 0.6506956621309626, 0.25387536889271, 0.9136312564060256, 0.5246262545414401, 0.16930795051582537, 0.32515126406501693, 0.9740667133565125, 0.9149058612138931, 0.2653161005019765, 0.6735110899735587, 0.4727745838719011, 0.3769924169531854, 0.28692342136409144, 0.7317521033750378, 0.8137668653467494, 0.9526442482815135, 0.2549914896066624, 0.438478430406285, 0.1878256418690033, 0.5183921097749848, 0.5629841626570823, 0.8520489174588192, 0.49572106683277195, 0.3872068176619321, 0.24574287026349073, 0.2752417253226763, 0.8589098107901965, 0.8259877176234134, 0.7746173055809846, 0.39285750866190905, 0.48481201424823994, 0.21983920935110535, 0.5866323162294719, 0.302127458053435, 0.12044638203981517, 0.5680293332828791, 0.631056855192812, 0.2635736686572112, 0.5426269177220541, 0.19216516032045006, 0.5753825924200165, 0.2587628580495387, 0.22249924973929192, 0.5675425978104648, 0.22389296397073188, 0.4878740966878, 0.26784324565407913, 0.15931857322332843, 0.6678065508017117, 0.021457499162801152, 0.7566358662629042, 0.7887236656163357, 0.3844802008801479, 0.9795939430071984, 0.48626894935895904, 0.6349651740419938, 0.7416176588844489, 0.6820134087079225, 0.916794918694404, 0.8444023282900995, 0.3471555465207872, 0.4111275816569113, 0.9011214421997091, 0.35268569496977886, 0.36081672946162824, 0.9167636454350643, 0.75798002733986, 0.3073014553501976, 0.42895231124062816, 0.32712761401332047, 0.18982998992428612, 0.6383965866173049, 0.7270890747265577, 0.08875389552543311, 0.7699471678506055, 0.15071656366133135, 0.1742561922085304, 0.6328991240441875, 0.63876943391983, 0.4049952008492783, 0.6242384679572344, 0.6314149644776665, 0.9840147900198172, 0.38140853826167176, 0.4810296059361878, 0.8882772225969584, 0.3794806653424505, 0.9052154786885264, 0.6526510271311308, 0.3601326464690504, 0.06712186443465784, 0.44461342660659564, 0.485438826161539, 0.8800679476020912, 0.4341846933692356, 0.5147423494015269, 0.872530198793986, 0.46634002926026497, 0.7261531181815482, 0.9995749766964882, 0.4150688006645057, 0.9067603574789019, 0.465544788248097, 0.6816781428797747, 0.04883411974389229, 0.8013171304584522, 0.7733769455480243, 0.10490214338333959, 0.5622115235764441, 0.4918159392445548, 0.8118965682316687, 0.20616254840842518, 0.9596380785112361, 0.24096169251920097, 0.22511962463660995, 0.8901654782794736, 0.005420141797558231, 0.941223688216532, 0.1680875415770614, 0.5720300645425032, 0.4697441889901368, 0.8797370812437695, 0.9894016061149731, 0.9549094495704684, 0.6643738652482036, 0.02206268107583398, 0.402777235289591, 0.2909498748448113, 0.3286497897701737, 0.875788465449654, 0.9709055509628722, 0.5866909912292392, 0.14183728929037498, 0.84908192968252, 0.7173970473761381, 0.08777911130779659, 0.6185970009899424, 0.542562994580735, 0.22291596513788814, 0.8146906053225555, 0.22419128353287998, 0.184535270227841, 0.6768813099471161, 0.9886025817558723, 0.8390848114093279, 0.21950222014823828, 0.09833475028300687, 0.014443899561485951, 0.7435312821530536, 0.5726140106748755, 0.9307274893474086, 0.5743721763808566, 0.37563991469006885, 0.9474897646094518, 0.259270369761716, 0.6808010445026014, 0.46442830279041614, 0.4212014768075446, 0.6167898538303935, 0.8933174312758293, 0.5819708036827744, 0.6625796901124431, 0.5593669099085123, 0.9729396670837558, 0.012328833448003063, 0.5293617100470851, 0.583040164030023, 0.55517595337416, 0.05083229514840382, 0.23968827766639356, 0.47626902101881097, 0.19243766098102888, 0.42171033149286996, 0.5394174040337536], \"y\": [0.33396714643252134, 0.5044440900554997, 0.8874896900044845, 0.4686759077780351, 0.23831547366416572, 0.571181601185031, 0.7785327680196316, 0.7290551099174598, 0.9581131370131553, 0.6801000322064107, 0.413367674560271, 0.6667140739211237, 0.9108229754863395, 0.9275086157065797, 0.9186958597750785, 0.7191871442695774, 0.8184457509658746, 0.8597940676688322, 0.7947045908306632, 0.8244149680645384, 0.42771531534877594, 0.5315376696882942, 0.7136291946100958, 0.5510697799054304, 0.6393262665313312, 0.9016582766249417, 0.8560880110261746, 0.8947361144883382, 0.9102326114023062, 0.840723585394272, 0.9264645566705582, 0.5105903360131552, 0.752648770317166, 0.5855954083225455, 0.8989214048388485, 0.5190750352404293, 0.9560713253502463, 0.7273157243430202, 0.9279672131348602, 0.640103147954212, 0.9158977434209615, 0.9035955072010529, 0.7140955379655831, 0.233508355491505, 0.7280578325574358, 0.8810827811902006, 0.3966129217085586, 0.15541760955422754, 0.5851621750323275, 0.9046111951917862, 0.4177213302712193, 0.7993763114768937, 0.6978409661933959, 0.6473373667551029, 0.770784382977056, 0.6500641275496193, 0.548949563093737, 0.9803199442553986, 0.6150775052067382, 0.391333092160729, 0.6966682278280982, 0.9426748402861506, 0.9170092977635526, 0.844625652038695, 0.5621782696252592, 0.8935808323282117, 0.6792214086077275, 0.6719996755401956, 0.5252591274442797, 0.7277045758687855, 0.4685752957996948, 0.8616549355667619, 0.347491516391863, 0.8224130863808733, 0.5340790568488665, 0.6711667658766297, 0.5277539611022016, 0.7226430813715845, 0.8140972745487615, 0.3280236940194876, 0.9543080196225542, 0.7752655593026647, 0.9223925066666061, 0.8588031784191832, 0.6345107008491314, 0.9393010047953068, 0.7897067132703484, 0.8608062836413887, 0.8367885032124018, 0.38555642305179116, 0.8611944449682004, 0.9172341012895443, 0.9206892306522243, 0.9500505925695213, 0.537798347971205, 0.9173482789702866, 0.44454351342386716, 0.8909704850569525, 0.7351932580165473, 0.6818328744935735, 0.7981559962965634, 0.7626532952948841, 0.807353254900461, 0.964411205143099, 0.4685752957996948, 0.6986526320119215, 0.1956969407137045, 0.9233481403380283, 0.8218375601976645, 0.8536269727611236, 0.5637680470866036, 0.42267134533232753, 0.93003590801509, 0.9364808605729722, 0.8816060831574614, 0.9663102962713933, 0.8345570787709832, 0.4997893986747249, 0.7921603237806832, 0.5586815647381762, 0.8622246464681924, 0.9828719612298703, 0.909295720392338, 0.9476267884443668, 0.5395521774612226, 0.901360886913609, 0.39410444510430487, 0.9262213132200262, 0.6627387433216217, 0.9629433821448677, 0.9614311452267452, 0.9802968012486629, 0.933760787013923, 0.34432718187202205, 0.63596173557573, 0.624364378916488, 0.7417789548241253, 0.7300918276682445, 0.6968315453320488, 0.7840233885688647, 0.8958841271622066, 0.5417426694559925, 0.7102579146160282, 0.6004345411549624, 0.515920701757342, 0.7587882454650442, 0.5029588531082266, 0.6887596776945688, 0.8642849605932809, 0.6469572639767995, 0.8103639651534781, 0.939764354405301, 0.694136577696587, 0.6593725303534554, 0.9646797005081557, 0.7979900311745153, 0.792123904710467, 0.8869579700149332, 0.7351250317969437, 0.5332560471205093, 0.9406873315653421, 0.39362685027924615, 0.9466602521798594, 0.8394325033041952, 0.6633442657978572, 0.8126408700417265, 0.7332457619716184, 0.08024070404520958, 0.8667774471450977, 0.6466814331404849, 0.912366876100516, 0.656670904734599, 0.8701678467707724, 0.8875925797813499, 0.9658725076002231, 0.7668332861852056, 0.8604440887473094, 0.934384507524058, 0.9605946056867319, 0.951253157591183, 0.5749289095213865, 0.6279243005170476, 0.7937202818717513, 0.7665301650725991, 0.700127941221274, 0.8531107444728586, 0.7947045908306632, 0.8870566665876504, 0.5476228787844645, 0.8410401833568673, 0.8736671065238262, 0.6519898659949606, 0.936943112068646, 0.9077719201719568, 0.8071889556778997, 0.8815615400732472, 0.8935313268029127, 0.8782891297971865, 0.5029588531082266, 0.5797201450332624, 0.9416775458320723, 0.5958140198486584, 0.2485157288688957, 0.932021424688801, 0.8531502837407814, 0.6344194678828672, 0.632587077283238, 0.9121448358615357, 0.5776545535910985, 0.9052765174806566, 0.8580390107418799, 0.8998644401112552, 0.6784536879503494, 0.9458342431661766, 0.21387363850783603, 0.9530348339880965, 0.7307391114165022, 0.7187682731289255, 0.6905635603269331, 0.9569274903702625, 0.9287384091375525, 0.3856984054091925, 0.504413920551941, 0.5389739198483336, 0.5921068831639978, 0.10702848140489757, 0.8772993497727819, 0.6361944011057532, 0.8952999713010865, 0.7069578609115064, 0.10632960186243966, 0.6465592619811017, 0.9116333268133815, 0.9210441535829985, 0.9483358221641291, 0.5800224234700003, 0.896951343689222, 0.8958659323404018, 0.8896861436466836, 0.7763142135369961, 0.778627444633172, 0.9274605647284293, 0.9167924025380936, 0.6422094408272838, 0.6363725079258666, 0.8694129796739031, 0.5693182102579236, 0.5315376696882942, 0.6814536952243052, 0.30089534057709466, 0.6689448970920832, 0.6419522618821227, 0.6500641275496193, 0.8221968069187356, 0.9285763346020383, 0.8495153837633861, 0.7135666997345446, 0.8850789772017983, 0.9128367188568884, 0.8709442503982084, 0.44714680104169846, 0.7147831401969469, 0.6814536952243052, 0.5823319261018008, 0.7718122970862826, 0.8925058444773368, 0.9249991097277733, 0.7849066379312727, 0.5120166815330335, 0.7863291630268572, 0.8171821177205619, 0.8878235148823457, 0.9813953955585096, 0.5009899161211654, 0.6787020040856314, 0.2747106808400709, 0.6998114428322438, 0.7191783799678735, 0.7566715075843347, 0.7741630673610131, 0.692871858980435, 0.8706970297938403, 0.9226518689226377, 0.619213859232465, 0.9620625840847012, 0.8161066853745392, 0.7984578805051198, 0.8987836568806694, 0.27900511725120763, 0.747868261422589, 0.8013372150606806, 0.4430395412241901, 0.8082746512504794, 0.9248395818955686, 0.8132668978866627, 0.7926355964369082, 0.7243101498981422, 0.8251498778038484, 0.865753667016409, 0.8784859927081519, 0.9613966942665844, 0.8380103992838959, 0.9376908870460701, 0.8505645904112248, 0.5317253080143199, 0.8756470416862959, 0.8823120896825394, 0.8920529250761863, 0.9565288857220365, 0.92576324319171, 0.8397457208604353, 0.8008835764985612, 0.7620555647282774, 0.6333567796033132, 0.8986985644274655, 0.8289197139212982, 0.38568054861828666, 0.4358764146033148, 0.7013568331933456, 0.5524769805317635, 0.8654015550049637, 0.9625385348003681, 0.4997035751430624, 0.5940434106189647, 0.29640429037896177, 0.9370396801623051, 0.7496358493500708, 0.8521916566704996, 0.7519935213994349, 0.8956127660014477, 0.7563308848917781, 0.5425355780301907, 0.1652985164032473, 0.5777375433929663, 0.5926841497777402, 0.5247451599628447, 0.6215406511606532, 0.646742228322253, 0.5236567091352762, 0.8105889943537302, 0.7614647275399787, 0.7272264480694343, 0.44438282424164377, 0.8051848688934031, 0.253979247575754, 0.8737269176380216, 0.7884186533408385, 0.5226162157005312, 0.7776146375974927, 0.8021344726910251, 0.6794204065079696, 0.8398669626756513, 0.3743394998756179, 0.6593725303534554, 0.41008410759983227, 0.8726624594592295, 0.31336232876890546, 0.6187135046228962, 0.9208146539756937, 0.8948907807194619, 0.9475948217130945, 0.7098971478357265, 0.41970311630379203, 0.5524505095188592, 0.6689295490636696, 0.39534528644804523, 0.6686700461744643, 0.6608417181144597, 0.6289006219381473, 0.8112353209803558, 0.9675531845963172, 0.3468688843876404, 0.8171815196180959, 0.9315945487332388, 0.7612383340144859, 0.43979370974717685, 0.9452166580978265, 0.810349906376065, 0.4979189466877109, 0.9054024939516333, 0.7506263221664519, 0.8595966107872783, 0.9041757536760852, 0.5120166815330335, 0.9246344940597735, 0.622364539475366, 0.7975959936185795, 0.9376528402833735, 0.8270495791839716, 0.7463426393970082, 0.8508295060861325, 0.5277539611022016, 0.7926521549058593, 0.8343380415579561, 0.7973631232158779, 0.5423298306356671, 0.6253812669856891, 0.9342151247863544, 0.9064095870896521, 0.8428584418618921, 0.5680191878381406, 0.8230633503438987, 0.857993972512287, 0.8312116035859974, 0.8886868130574391, 0.5695902702544526, 0.8750573328895943, 0.47134086624147714, 0.6082670858563528, 0.8571520978358925, 0.7006810412396262, 0.6001343818465046, 0.8680196363335714, 0.7833148206731655, 0.835330250744176, 0.6883000602161935, 0.4297997702781997, 0.7132181587745201, 0.941909753873568, 0.9298379484442667, 0.8950633078112005, 0.9652574497835966, 0.8593048115498744, 0.23022113319019433, 0.5548683876071567, 0.8789570823277312, 0.7176343272433334, 0.7135972690872326, 0.900955402304434, 0.89110615578316, 0.8021344726910251, 0.36734125225010755, 0.9233813125795639, 0.9269988231022361, 0.6021478506882372, 0.27064660283581765, 0.7595966254948197, 0.5317253080143199, 0.9626288904553877, 0.518871521713375, 0.4244151934213653, 0.8784852709235653, 0.667697582798242, 0.6791650855490978, 0.8659372985570389, 0.5217980090164113, 0.9757802673562255, 0.20769640873195563, 0.6900575067285889, 0.15051833553221247, 0.8476988333501053, 0.12043274000614122, 0.6546311715671466, 0.412102187638673, 0.6339696776630096, 0.6925917751558638, 0.8074446941396305, 0.8417042066658985, 0.4702054036006336, 0.8107456318417504, 0.934253622333564, 0.9671353887875448, 0.3776875782453083, 0.5133306968464912, 0.8279918435672958, 0.7295730380004212, 0.8398957027397556, 0.7470826509089123, 0.7722124156410631, 0.3944809481034696, 0.5801047158883857, 0.7134138458261836, 0.8265590446981121, 0.5836238058504062, 0.7538957359152121, 0.9708936701567454, 0.41507295289487073, 0.9039211350062085, 0.5109703825452502, 0.8880660412534, 0.6332514250278477, 0.703270618172154, 0.863031725372896, 0.9601349291832292, 0.5845797646527732, 0.8357575010967041, 0.9584406458449958, 0.8733333206292072, 0.4740801794177068, 0.5787650908025566, 0.38525623454815555, 0.5715075300165849, 0.951253157591183, 0.831291834366621, 0.6482062646591596, 0.5447536045265621, 0.8456825404777587, 0.5358725178581014, 0.8893400405584444, 0.5955893395860203, 0.9408369636189147, 0.7580589814818564, 0.4244151934213653, 0.7636885291754726, 0.9532052815091139, 0.6686700461744643, 0.39683939049776734, 0.8309978518015588, 0.06774730328187532, 0.8934061610794648, 0.9459413258233057, 0.8507977517004935, 0.9694554821790147, 0.8640493534313302, 0.8409166048571896, 0.9059760843724536, 0.7278052027863667, 0.8952246802917138, 0.39534528644804523, 0.9558702864115934, 0.9178754126151818, 0.7504628435478695, 0.7568870052952757, 0.32046258648166903, 0.9712495894387816, 0.7125870341029702, 0.8286889773580812, 0.929575727770858, 0.8422483936479932, 0.60065365322741, 0.5775074082600717, 0.7505976846167132, 0.5317253080143199, 0.9590110623565244, 0.9651712957082627, 0.7333643603414158, 0.7757825668725274, 0.8928390517037824, 0.2578168736401774, 0.5355488836719776, 0.8408692583280314, 0.7849780542174357, 0.8711681462620556, 0.8447990405440073, 0.9571933326515756, 0.9307123551507692, 0.6421242495412457, 0.9239207054420927, 0.9336219461922934, 0.4244151934213653, 0.5673643045526261, 0.8301442064454496, 0.528471943574542, 0.8835542071774324, 0.8820947700128993, 0.4561713647735051, 0.584381944856391, 0.9493936477483658, 0.7816316980556022, 0.7770145472448273, 0.8495153837633861, 0.8318035560268552, 0.5220388622338656, 0.8589980209217414, 0.21216021099657945, 0.8782303617207965, 0.901850575196968, 0.7683760396387002, 0.9559989503713009, 0.938411491366706, 0.7225398931917507, 0.5918361617892179, 0.8596378534897678, 0.8816239240572568, 0.9296844522785247, 0.8299758417251202, 0.7538846798551382, 0.931253582726863, 0.6902425303942638, 0.9299571155275668, 0.35461708236434614, 0.6119587629530028, 0.8979450471026776, 0.8782891297971865, 0.6144930729026484, 0.5601837238662909, 0.4230258756549153, 0.5115702372514986, 0.6133200318312215, 0.8287048127179734, 0.42887934024879554, 0.5543929044930882, 0.5414149972460248, 0.7453725251924848, 0.6522898344923613, 0.6445138145159856, 0.9212190995841192, 0.6991293681294938, 0.9188224881967051, 0.9444881948020799, 0.8399825546316605, 0.6440269003431431, 0.45260210695563535, 0.6678228102737954, 0.8535669746933884, 0.23469888428232324, 0.7581156815660375, 0.8329520097124233, 0.5886389680190937, 0.4250130050586104, 0.290761161529129, 0.9065968169685268, 0.39757013049667705, 0.9584529405260903, 0.24804178200132845, 0.8400605958344816, 0.9562762484868867, 0.5923100188758571, 0.5355488836719776, 0.6866862751474886, 0.753715093249364, 0.9302702282582556, 0.8405005145861136, 0.7758456574858743, 0.8270123797965384, 0.9270997487744173, 0.8779999285967196, 0.6350604679157676, 0.9057987369792326, 0.9732730617650076, 0.28007269673131574, 0.5393237551960537, 0.9509318156255189, 0.8055358405733448, 0.8512314640165554, 0.6752183046546253, 0.9766791413071304, 0.26893819095773785, 0.5105552073939665, 0.7964242570425004, 0.9159462749375985, 0.46312559485344046, 0.7889853219989779, 0.5331772070153998, 0.6250130361556073, 0.5340700079782073, 0.8981158701031157, 0.8424802355113449]}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other\", \"type\": \"scatter\", \"x\": [0.855682032526683, 0.03814427766262163, 0.0009750447280950647, 0.2642234139938525, 0.03989652932439336, 0.6331160952942381, 0.49862934616383225, 0.8330355078530848, 0.33593072340982233, 0.7033042968429725, 0.32784819371819884, 0.8375255650242242, 0.9109700371365459, 0.24232688160079363, 0.5647837597335881, 0.8393193857153809, 0.13385067428035813, 0.9833982667049297, 0.5530775656805687, 0.968400665821523, 0.14869310619881737, 0.08431265534303267, 0.32749332069568327, 0.7086243068616429, 0.3214227887469153, 0.6190397558924661, 0.2950701749386321, 0.9224472489039025, 0.5890768426660262, 0.9674334245973129, 0.1681442826433711, 0.6362200601047427, 0.1867942130268806, 0.5583031455781572, 0.7972247111899657, 0.9841874435501735, 0.8597296192465704, 0.847184723641846, 0.7932360251917647, 0.6849535683642064, 0.4115847723554783, 0.996086519976565, 0.9093336541884931, 0.03823611078024658, 0.9132373839273343, 0.6443995012336405, 0.7158394922698227, 0.5686903791988079, 0.2992380663547145, 0.8869218289192281, 0.09698766976470996, 0.5134828601446251, 0.39157484832692757, 0.049384291952995985, 0.254628191745755, 0.9141044278496037, 0.23541301216110144, 0.7474069678244778, 0.8982057802575641, 0.7309068977846059, 0.050327870443907075, 0.642302366359234, 0.5832392267015728, 0.6381557647073846, 0.6636697948512539, 0.28851971420157974, 0.8089220659708413, 0.4606815327124829, 0.9644338663536053, 0.9990584859137823, 0.18913407200231547, 0.6184244328041645, 0.3302486265829997, 0.9662994520588668, 0.7852420109508609, 0.765947616992642, 0.981758893179708, 0.645320104719495, 0.387381245980959, 0.5180504204274382, 0.9742144107833686, 0.4871808367911732, 0.7791333172344956, 0.004962292361497922, 0.6697497356488289, 0.7577063980312789, 0.1344442934049208, 0.3219579013898025, 0.08993907205655116, 0.8635575551570829, 0.4041016255096358, 0.03513374059855945, 0.8419098080757208, 0.7707698225891133, 0.273705747482045, 0.46019866874667414, 0.20740196118892196, 0.6407463614507461, 0.3708184925190917, 0.11258601808521196, 0.45809329911495456, 0.6803400949405355, 0.6304880196146372, 0.7568288269043153, 0.40788535460521247, 0.027761137905150557, 0.03869028035890343, 0.2683940316302682, 0.5607967682339575, 0.051759991072580336, 0.2618182809162699, 0.7066483510183077, 0.9130427674694058, 0.5149821947995967, 0.6709263442534961, 0.8394354376387286, 0.06195154992807039, 0.33039939558803166, 0.05238834364519307, 0.509448486398737, 0.9398258338226863, 0.6035868146109455, 0.19540782457071382, 0.8090610618929428, 0.9692925381313818, 0.3889187774584565, 0.8708384382606017, 0.14730661658600852, 0.37354835548503273, 0.8434788546483638, 0.7816297576911948, 0.2624284317493234, 0.07607344439566399, 0.06663110668854255, 0.7673110273272251, 0.44788105283721225, 0.3970621919896493, 0.5428140671848536, 0.5819913015750551, 0.18341983299418152, 0.8728405247496098, 0.741797504225328, 0.6285162929380118, 0.17130779149898212, 0.8741633356441342, 0.4863634436783556, 0.7875534633649708, 0.808332048181184, 0.493546141887625, 0.5933122855876645, 0.7254412632449091, 0.3015082996759231, 0.042037446103690757, 0.32754922076813997, 0.2040777431762103, 0.3109662369186912, 0.14747782444815138, 0.27409572521960934, 0.6965741805260401, 0.5362114774250417, 0.6738514496548454, 0.3324347143584764, 0.8763817423587636, 0.43766201951067996, 0.7432122827694506, 0.10164721508246122, 0.11895024682582034, 0.2942356294137257, 0.9468563443395503, 0.9374265732916719, 0.28699866031454124, 0.6923600932100897, 0.6599485061180206, 0.21513542076835268, 0.023097023282267592, 0.7372229974924236, 0.8884446990463086, 0.11814547851568846, 0.4077407931807365, 0.47826880445459896, 0.30218979024345793, 0.43882588956303037, 0.15371851075665277, 0.350120263990518, 0.6882047809895744, 0.10981885860274798, 0.026944249058308833, 0.1890264275693102, 0.6153757773596988, 0.6315031680654207, 0.9413465558247431, 0.9092007711888556, 0.4756032996534537, 0.5690492311341929, 0.7954300941941626, 0.06080491938563126, 0.09002850587234501, 0.15738895583441925, 0.09161964269152478, 0.39488796009971516, 0.22473169876399812, 0.28706403518201573, 0.2794367819608521, 0.7073131347155686, 0.9490885722381601, 0.10390710626910549, 0.772113050608629, 0.07775643076457384, 0.31527940249033737, 0.7413866762459295, 0.15399432331088614, 0.7953949007748284, 0.009616223328261064, 0.72152061037564, 0.15176792632398806, 0.18786218856013348, 0.8937254445564392, 0.6448877532842379, 0.6954440449139859, 0.4336221739870706, 0.3418581676553446, 0.6580053756588873, 0.8864202455294169, 0.9927238175563579, 0.18315167122318632, 0.6816845493532547, 0.20494701985157748, 0.6819280427636485, 0.06726377700674435, 0.19137284188124581, 0.7316506597986804, 0.6992195414992124, 0.5211277025837703, 0.6551134067021185, 0.7786843134250268, 0.15360308259698074, 0.19541634282419051, 0.5012072916350215, 0.17097960380503996, 0.13068852711860912, 0.5562311021949646, 0.09054038078667592, 0.8368664420634119, 0.8246462857033122, 0.12002088425534774, 0.3524647432608047, 0.7426722598345502, 0.3250601692168371, 0.35505025891134767, 0.8394013753010591, 0.46787687778222664, 0.9466595813720723, 0.23257679182214253, 0.16853571802357759, 0.3309161534783449, 0.561349523387618, 0.16353866896826696, 0.2602051027439606, 0.5316910255594408, 0.14518967690603413, 0.31426931971996075, 0.5126662502909013, 0.3172427522660922, 0.6308247299432688, 0.841580645993228, 0.24211738973613905, 0.33402767278692347, 0.5093610485193075, 0.28859443183911304, 0.2855034098413375, 0.2966014184043563, 0.18402791704775234, 0.7615673582010174, 0.2259395470524319, 0.09163785217877418, 0.07043868395036512, 0.18482847794526014, 0.5844967026041371, 0.5079078451753746, 0.2804355734471863, 0.841534672037675, 0.14648795856667252, 0.0009776809084006688, 0.2041118720876508, 0.7194206519694556, 0.7623083295721979, 0.0700053642109737, 0.6814881662934176, 0.8429618021199768, 0.3511798769829442, 0.2381900307993271, 0.16921541707839494, 0.46849855867944756, 0.299080930602043, 0.038598316800832255, 0.14379063179993423, 0.3020956286807599, 0.0684467180530125, 0.3361738189668897, 0.3942890714004832, 0.3892140513840593, 0.9602239684243095, 0.9528835984585937, 0.4996324605072757, 0.44413346209693305, 0.383975002573273, 0.6274337562513597, 0.44354818008664854, 0.6054831981973484, 0.6316828557195436, 0.4611043358804544, 0.3435536287430214, 0.5575107880860483, 0.14163326127165654, 0.6025263411732338, 0.9682608169281987, 0.5656697847250444, 0.7627126295133059, 0.1576708573478336, 0.7642208848180517, 0.32095013521137217, 0.19013681747870814, 0.6121905607884001, 0.04851078508261508, 0.25667293279205894, 0.0099392072443516, 0.3154511216969047, 0.10167268298892207, 0.34053313618275727, 0.4106441206720548, 0.6779598901953438, 0.19903135707994757, 0.8131914045963903, 0.1568666189450948, 0.011088581759276628, 0.8437557085309594, 0.7492054126806201, 0.4418555061840964, 0.6435697797508443, 0.6557195535969605, 0.47501524443136933, 0.8618049733205666, 0.4684134540840441, 0.5900115098285111, 0.35037746247655466, 0.839075403048103, 0.17152938823720498, 0.6563596016756398, 0.009559405622945882, 0.015679190016052003, 0.7166774722566693, 0.0872584550297123], \"y\": [0.8142007211296887, 0.07257977436397642, 0.7430932382113554, 0.8214862427787604, 0.5698848321031316, 0.6048119589659149, 0.6466669219762841, 0.14510080060429495, 0.2250304680670007, 0.28492472637839966, 0.42061632734231896, 0.8281252124183194, 0.49622399336621903, 0.3482895521074759, 0.4678833354511545, 0.5708968386647719, 0.37048677721847617, 0.553632248395139, 0.8702137350251022, 0.42186952587750404, 0.8696774950675754, 0.5410576963494411, 0.3971326977900686, 0.3275001196198921, 0.9448289227093116, 0.7109941475090589, 0.41925580570138304, 0.3675472469853882, 0.6721911818800557, 0.5562207270314473, 0.5262426608517637, 0.3244609607385458, 0.15056615442564347, 0.15676979724311627, 0.6037730696030339, 0.6342511279653397, 0.021947035536558718, 0.32429164429335744, 0.5678746850743716, 0.3571680467137555, 0.7755534309390314, 0.3240287891037917, 0.699424662214302, 0.5151532452376618, 0.7564675819717819, 0.38343591026479057, 0.19811005648518398, 0.3168419703358067, 0.5315947262677626, 0.9269044449273315, 0.8260225289794664, 0.451791899378283, 0.830516920403184, 0.47128602930186, 0.19027823806377472, 0.5181346713949518, 0.29552777318700446, 0.45414400334446664, 0.39329840463575844, 0.42327932510626076, 0.45838907164509224, 0.2233864252642039, 0.3628419195926303, 0.6709353200988277, 0.46058046365566996, 0.25551237833043455, 0.7234147543269824, 0.1481282262733752, 0.314935793994079, 0.20050531530561894, 0.37453315488553635, 0.701015529968035, 0.6343341418527783, 0.1739320900588749, 0.734996253073231, 0.8172229478314255, 0.3598554146739685, 0.7121055211356295, 0.2620604909731644, 0.3421138035730516, 0.6951268813066005, 0.35208221297891723, 0.452099210446082, 0.18907620085798427, 0.5444201651108793, 0.6484058972837882, 0.3258186925596978, 0.5963383680780668, 0.6202666247822538, 0.576738593946626, 0.5054992484109841, 0.2972245631729925, 0.6844333356791464, 0.42629475072919953, 0.4405153833121037, 0.01207867704715336, 0.7609288944606691, 0.23951123982998349, 0.09310514674080905, 0.5084920166510624, 0.33067609257366243, 0.36481899584296196, 0.5708968386647719, 0.3194802059637459, 0.14207297841267416, 0.5776897120055972, 0.2026163425795633, 0.37909000048748537, 0.38206764842015895, 0.41324683104354176, 0.17826143731067332, 0.42339414872454434, 0.39148091864802853, 0.3511350413575442, 0.8053393751847749, 0.5937005322868365, 0.6849942580153355, 0.38930033076762494, 0.5168500865319015, 0.5699073288866824, 0.5376087249833421, 0.8185832461647057, 0.25950508036415604, 0.20394483716883388, 0.3303044530853749, 0.2528102968078532, 0.8477719856767125, 0.5217124250004609, 0.3303044530853749, 0.5382885532339231, 0.9625763866028243, 0.6536174904341296, 0.42629475072919953, 0.6458781618432388, 0.46574001023909845, 0.37268733756108086, 0.8180085473348132, 0.35493594975273335, 0.2423640089427935, 0.3636330633241046, 0.6421622311157122, 0.5444201651108793, 0.7396308412796291, 0.9036153464846048, 0.21101569987323432, 0.6004024464464508, 0.7595861882737439, 0.486549602332862, 0.2379839758891197, 0.5147825233229498, 0.2065932277190248, 0.4342628292980428, 0.5940848250235929, 0.4857193175270624, 0.5332610244722983, 0.5402196969638672, 0.8578846895389459, 0.5290225674595067, 0.6074669506688956, 0.1847839155105034, 0.3581391437324269, 0.4304380754474639, 0.8410120374942113, 0.5810086483513661, 0.19026233744636453, 0.7223494520380469, 0.8589928738613049, 0.8374625942163022, 0.781203852328267, 0.73983195178881, 0.41156537259256004, 0.7482873396984137, 0.44431713201158524, 0.7113673874393347, 0.49869552495399233, 0.7627102864663872, 0.37193390769028617, 0.37187810520956766, 0.3773291605703562, 0.8719651627687759, 0.6218762459828849, 0.3781393537983126, 0.553632248395139, 0.47624084907999176, 0.774399353278846, 0.5840424935194366, 0.5601025471409736, 0.6186690618327106, 0.620611700356168, 0.5755798886129706, 0.15047650536569443, 0.5530049338021776, 0.6597439619439023, 0.8300222117931148, 0.3490158529243493, 0.4410646109528086, 0.5067909967309752, 0.5851482063434866, 0.7149827463187939, 0.4849259975950144, 0.2094210588097294, 0.33399024531412796, 0.4083143545243069, 0.7497022835596558, 0.7817929239213606, 0.7637421953724776, 0.3825655414920891, 0.6611482494098961, 0.19022241257108333, 0.44972084577511023, 0.5476732603321269, 0.4831274653996314, 0.5077048340566679, 0.7289504589448288, 0.4379810490617926, 0.8017221455714771, 0.6434673631716396, 0.5059779734745421, 0.6065367192264559, 0.650368705032214, 0.34567471266024347, 0.39561589000187136, 0.3427787545601037, 0.4676404271158623, 0.5332283386400669, 0.4519108142444285, 0.40662831629925006, 0.42305576187259053, 0.22032895172816622, 0.5278715769330472, 0.43679486629948455, 0.743933429392776, 0.5269515041023835, 0.5008800654866953, 0.214168174561682, 0.44879088851457377, 0.683485355417811, 0.807753104897186, 0.42629475072919953, 0.8502951424821861, 0.17421175568219957, 0.25491371883486935, 0.7595861882737439, 0.6571724132942184, 0.7813188949129265, 0.5626906653340306, 0.8674288259883418, 0.6600514650598344, 0.4827749661719035, 0.5456147119159479, 0.39827550056677263, 0.27323823737433794, 0.695896529362927, 0.5048820477254727, 0.5422349097465021, 0.5610936746718964, 0.6571724132942184, 0.3088751107498249, 0.45428761266464013, 0.6604471727860799, 0.43371621376298963, 0.6171893197168647, 0.8100511550343341, 0.8100511550343341, 0.605832578461134, 0.5526475584669951, 0.4275055171336787, 0.8734720021260204, 0.8508295378350301, 0.5807723706867254, 0.8272749548927728, 0.2670652478909882, 0.7020144194675465, 0.4615566916191992, 0.7055847950248242, 0.43389869234556755, 0.6071692164257629, 0.3496825637352313, 0.23676491619791426, 0.7057755976874825, 0.15539001443149586, 0.6187538615870153, 0.8735882828904331, 0.30049486749739024, 0.23191705420611952, 0.8913917397916864, 0.4977157214618499, 0.16961113509580228, 0.8485494795219795, 0.4760032757956232, 0.5053843099270294, 0.2676015269871764, 0.3627664421236291, 0.15146266807038725, 0.7898179638281774, 0.6145296307645981, 0.3790380236797623, 0.3003532640340299, 0.6086112016774773, 0.39906793889171593, 0.8185832461647057, 0.6715802865662828, 0.8260225289794664, 0.6056902064850618, 0.400132762133902, 0.39471961640683584, 0.6449859309106076, 0.5637152910565628, 0.39949420960438964, 0.5490401551410112, 0.4398875418860128, 0.30916577334906253, 0.7093303227687476, 0.4562508424819209, 0.40444044759428516, 0.5773483646962835, 0.447777692034652, 0.4961542215384683, 0.32474312180562226, 0.21192693199409943, 0.9056903490933487, 0.5013816399998683, 0.758876109553896, 0.6364928148646596, 0.2952804752502578, 0.4748951900520853, 0.43679486629948455, 0.5479962315186364, 0.4728142838839701, 0.6343341418527783, 0.12248807650217919, 0.5052525886146573, 0.8281252124183194, 0.8930081609652758, 0.36283726088930296, 0.8098196742550625, 0.656477404357746, 0.193885049884708, 0.5269515041023835, 0.49858469647139786, 0.32780472036158087, 0.24927512797396847, 0.6148718578314069, 0.10691527318901187, 0.136775438340409, 0.8489192718114075, 0.2600203086082801, 0.8142007211296887, 0.5269515041023835, 0.7966615933629455, 0.5633234794197017, 0.767479452333631]}], \"layout\": {\"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"range\": [-2, 3], \"showticklabels\": false}, \"yaxis\": {\"title\": {\"text\": \"Probability\"}}}}}, {\"id\": \"tab_bad\", \"title\": \"bad\", \"graph\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad\", \"type\": \"scatter\", \"x\": [0.2618105642727283, 0.45505106642841475, 0.7697235832865766, 0.503113873037044, 0.4049483585701503, 0.7684118453843242, 0.10548383156318808, 0.1547210132658402, 0.45374084806121784, 0.41938062509165863, 0.2987589468235604, 0.6427143426691285, 0.30614751696588083, 0.771816166286103, 0.6272775091760869, 0.26267619516105833, 0.4799381814808744, 0.5528120179034641, 0.48198703967310963, 0.18370599756131067, 0.04527322668829714, 0.8681953126675575, 0.6610504480896989, 0.48476889142223756, 0.15872668430310988, 0.12584974417287886, 0.12986161209822555, 0.5785329479869659, 0.45449580953286595, 0.7599052815675822, 0.2721266086239449, 0.5516702708651906, 0.46745722574659, 0.26908555646925125, 0.7644192627037412, 0.40759535288137483, 0.8925992004014651, 0.8893906623435855, 0.38319010937857, 0.744818735126454, 0.9988230521467972, 0.3519164735656246, 0.24551472345681702, 0.05072802790769193, 0.14956600585246504, 0.6344446198470035, 0.6414214732825728, 0.7759527764670967, 0.6087999722808507, 0.6542380475034034, 0.8858884385526172, 0.44821612976808634, 0.1687646679232726, 0.05129663335183299, 0.09196919396618763, 0.2806606003237718, 0.07262745673233961, 0.7909294989889406, 0.2757773644806937, 0.003626376873492765, 0.1242454922914924, 0.009523294111078995, 0.4611461905323194, 0.055592097646768646, 0.275874774921367, 0.7723939042014025, 0.9054164115875419, 0.6307148773937679, 0.480295006661436, 0.630383786662943, 0.2536438806534119, 0.4828634989535113, 0.8366126086303042, 0.66059942208948, 0.5246534094470373, 0.9154801583448963, 0.216764978964317, 0.5866096379424466, 0.053069353685952336, 0.5884813841698326, 0.3803745738622073, 0.772199925239562, 0.2951236578924268, 0.08978745247471487, 0.5140811607056124, 0.3359289839442401, 0.6488513386670905, 0.7304430639303718, 0.6017145069558268, 0.7397997009417198, 0.5710249031774711, 0.7620400769119428, 0.8942706010217465, 0.5347719121674636, 0.6406770867204278, 0.27933580469755537, 0.11345650142910935, 0.8407633160927228, 0.6384434365749461, 0.1713738648691554, 0.3436001560946137, 0.17264206050082076, 0.6159875343164117, 0.2778548343751883, 0.8194724901374724, 0.3279988423754461, 0.4538645828554255, 0.9777271694105525, 0.9203020996811919, 0.5454821848096739, 0.2342721390910294, 0.6628670359441615, 0.4648346742936541, 0.3880120112835952, 0.5064886642636101, 0.4606324600822448, 0.2106387354202438, 0.04894548962618861, 0.7989497901548513, 0.7532690815843109, 0.22026589026096954, 0.6075760340559465, 0.05247087538590001, 0.9003389594343962, 0.8190183483552265, 0.5398159165524075, 0.6555140130121969, 0.8693877120048827, 0.9556927130147778, 0.05439844251423587, 0.6466001082157714, 0.3194204678554379, 0.6335517922469588, 0.9602630813425044, 0.13346658232008501, 0.34835185147165504, 0.27648272046791256, 0.6686802699540597, 0.8919136045766222, 0.44016444293962964, 0.1515880781785136, 0.24192504666788572, 0.859019094519817, 0.8657906042392405, 0.9933840952457192, 0.877016748020015, 0.8770414567489528, 0.8574624729049058, 0.8222992276739945, 0.5210180987263252, 0.6487555623815637, 0.8811158899398737, 0.39924901711723715, 0.6850790328500642, 0.13604218649817446, 0.407869480377376, 0.8834139524368498, 0.07828523927269804, 0.1538016296328737, 0.9469719733722416, 0.8804941946880391, 0.2405555758054002, 0.6577530399276753, 0.9236743427500702, 0.06471233520539432, 0.2644410620457075, 0.3882385106203523, 0.704059607348265, 0.6046909551032312, 0.8918196920083205, 0.18066140067341818, 0.7174531303919437, 0.952928036714511, 0.8507891981229588, 0.6219697650726587, 0.22660919959279646, 0.2144540587953303, 0.30239616052128726, 0.5894776414649927, 0.21550595212895174, 0.06721283785317123, 0.37846261725656594, 0.6037514532488729, 0.8596588696596313, 0.8103631394825564, 0.16721229308543606, 0.6743353692682812, 0.6243344531606747, 0.6611353271917428, 0.9509895673736627, 0.8986311651545542, 0.7767235734389858, 0.834963954459197, 0.17136094212622577, 0.7300244087342894, 0.7748180355149913, 0.8736140695819936, 0.984077234051012, 0.9614986499294222, 0.732727278533328, 0.5813565735889642, 0.48290947116814575, 0.44118425333427935, 0.552628943012575, 0.31542990416811656, 0.5823751076535959, 0.6935686215647059, 0.2676945202984089, 0.6673736593014005, 0.6039116974997325, 0.2793089000392994, 0.2821286689291539, 0.751089609676635, 0.23072969563880397, 0.3160757952936567, 0.008715939979082599, 0.7018309960747894, 0.8605928298052322, 0.34535012538574983, 0.39444885875576274, 0.7537813847922485, 0.20227515063701695, 0.2636562299314327, 0.44981293130126077, 0.7869886078027641, 0.8716574484435259, 0.13500912676301247, 0.2030226274903234, 0.1278105751223958, 0.6133852053431508, 0.9208150266095161, 0.323202158383186, 0.4224006431775814, 0.5479709811562444, 0.9873378627734654, 0.30138508052355584, 0.49884341188755965, 0.9752455592454727, 0.0037184634287200646, 0.24231590968329375, 0.8833302395900661, 0.1056058721721096, 0.3199448551489408, 0.3413273645075119, 0.4743133757498723, 0.3340579608687664, 0.3230122362084844, 0.644465001372319, 0.9078106870454308, 0.47327542203410355, 0.6965453815256673, 0.09391696551930051, 0.9192576341309708, 0.05898228508311132, 0.5546350568713266, 0.654747934800039, 0.7301405631541384, 0.4075167096320522, 0.9234389658620772, 0.055434855067829525, 0.36734268249273383, 0.4022474114005603, 0.11597356934221859, 0.3291793874574175, 0.5671284435274542, 0.44138668056259744, 0.3051682505058645, 0.28430982435553775, 0.29311418656941, 0.34882069872230026, 0.6411309834519475, 0.3035525663074665, 0.006007221808750796, 0.006697471708955405, 0.6083077386140849, 0.5603050585093977, 0.9930128685525034, 0.940273713987432, 0.22470742313572212, 0.3548816853384349, 0.7526826676787334, 0.4807430647910723, 0.82316086514051, 0.2273292283706475, 0.15621944316384417, 0.6857575352910428, 0.056622807979580414, 0.9411068877442524, 0.11602633624598635, 0.940071846589394, 0.7187520273947934, 0.6462164046627332, 0.3137371065641671, 0.8151009057454258, 0.5009959121537428, 0.9710672620395053, 0.8016817635895785, 0.8586478579304998, 0.7969657909119737, 0.6747522704172537, 0.8323968384297962, 0.09865476062382594, 0.7301057855327102, 0.6166034557330048, 0.4808167601483533, 0.3001300326425457, 0.12163425709752518, 0.611595549712768, 0.7696873118303205, 0.48986513509014395, 0.5928289641231125, 0.5409652517714659, 0.18055797576934562, 0.6935931830826287, 0.3950391605947098, 0.9827087388546613, 0.4710371344607789, 0.6573211532319042, 0.1842387287514834, 0.027388876508121163, 0.1577055374482892, 0.9271194818910886, 0.5083850051066452, 0.04134281228913128, 0.9056108674244825, 0.96324163868289, 0.5949591537308723, 0.08745865500006367, 0.045472059663457354, 0.37405461010200847, 0.7266386283513925, 0.2593196338678313, 0.7923724657947826, 0.3009746347681217, 0.39219594144103975, 0.13036363758390646, 0.4926925811830388, 0.654526849380283, 0.2674191113938139, 0.004046462181172439, 0.988165113225659, 0.8173130951413828, 0.37290687873744144, 0.9503557095850373, 0.5680435446807476, 0.3468205062521944, 0.7940135378810985, 0.876489297018632, 0.2618464140129416, 0.7043005764408273, 0.4622704974680195, 0.10794901940955737], \"y\": [0.18579927887031134, 0.9274202256360236, 0.2569067617886446, 0.17851375722123963, 0.43011516789686843, 0.3951880410340851, 0.35333307802371594, 0.854899199395705, 0.7749695319329993, 0.7150752736216004, 0.5793836726576811, 0.17187478758168062, 0.503776006633781, 0.6517104478925241, 0.5321166645488455, 0.4291031613352281, 0.6295132227815239, 0.446367751604861, 0.12978626497489776, 0.578130474122496, 0.1303225049324246, 0.4589423036505589, 0.6028673022099313, 0.6724998803801079, 0.055171077290688375, 0.28900585249094113, 0.5807441942986169, 0.6324527530146118, 0.32780881811994433, 0.4437792729685527, 0.47375733914823626, 0.6755390392614542, 0.8494338455743565, 0.8432302027568838, 0.3962269303969661, 0.36574887203466033, 0.9780529644634413, 0.6757083557066426, 0.43212531492562845, 0.6428319532862445, 0.2244465690609686, 0.6759712108962084, 0.300575337785698, 0.4848467547623382, 0.24353241802821812, 0.6165640897352094, 0.801889943514816, 0.6831580296641933, 0.4684052737322374, 0.07309555507266852, 0.17397747102053363, 0.548208100621717, 0.16948307959681597, 0.5287139706981401, 0.8097217619362252, 0.48186532860504816, 0.7044722268129955, 0.5458559966555334, 0.6067015953642416, 0.5767206748937392, 0.5416109283549078, 0.7766135747357961, 0.6371580804073698, 0.3290646799011723, 0.53941953634433, 0.7444876216695655, 0.27658524567301757, 0.8518717737266248, 0.685064206005921, 0.7994946846943811, 0.6254668451144636, 0.29898447003196504, 0.36566585814722175, 0.8260679099411251, 0.265003746926769, 0.18277705216857454, 0.6401445853260315, 0.2878944788643705, 0.7379395090268356, 0.6578861964269485, 0.3048731186933995, 0.6479177870210828, 0.5479007895539181, 0.8109237991420157, 0.4555798348891207, 0.35159410271621183, 0.6741813074403022, 0.40366163192193316, 0.3797333752177462, 0.42326140605337403, 0.49450075158901585, 0.7027754368270075, 0.31556666432085356, 0.5737052492708005, 0.5594846166878963, 0.9879213229528466, 0.23907110553933086, 0.7604887601700165, 0.906894853259191, 0.49150798334893764, 0.6693239074263375, 0.635181004157038, 0.4291031613352281, 0.6805197940362542, 0.8579270215873258, 0.42231028799440284, 0.7973836574204367, 0.6209099995125147, 0.617932351579841, 0.5867531689564582, 0.8217385626893267, 0.5766058512754557, 0.6085190813519714, 0.6488649586424557, 0.19466062481522506, 0.4062994677131635, 0.31500574198466447, 0.6106996692323751, 0.48314991346809855, 0.4300926711133176, 0.4623912750166579, 0.18141675383529432, 0.7404949196358439, 0.7960551628311661, 0.6696955469146251, 0.7471897031921468, 0.15222801432328747, 0.4782875749995391, 0.6696955469146251, 0.4617114467660769, 0.0374236133971757, 0.34638250956587036, 0.5737052492708005, 0.35412183815676124, 0.5342599897609015, 0.6273126624389191, 0.1819914526651868, 0.6450640502472667, 0.7576359910572065, 0.6363669366758954, 0.35783776888428775, 0.4555798348891207, 0.2603691587203709, 0.09638465351539516, 0.7889843001267657, 0.3995975535535492, 0.2404138117262561, 0.5134503976671381, 0.7620160241108803, 0.4852174766770502, 0.7934067722809752, 0.5657371707019572, 0.40591517497640706, 0.5142806824729376, 0.4667389755277017, 0.4597803030361328, 0.14211531046105408, 0.4709774325404933, 0.39253304933110444, 0.8152160844894966, 0.6418608562675732, 0.5695619245525361, 0.15898796250578873, 0.4189913516486339, 0.8097376625536354, 0.2776505479619531, 0.14100712613869515, 0.1625374057836978, 0.21879614767173305, 0.26016804821119, 0.5884346274074399, 0.25171266030158634, 0.5556828679884147, 0.2886326125606653, 0.5013044750460076, 0.23728971353361283, 0.6280660923097139, 0.6281218947904323, 0.6226708394296439, 0.1280348372312241, 0.37812375401711507, 0.6218606462016874, 0.446367751604861, 0.5237591509200082, 0.22560064672115399, 0.4159575064805634, 0.43989745285902637, 0.38133093816728936, 0.379388299643832, 0.4244201113870294, 0.8495234946343055, 0.44699506619782237, 0.3402560380560977, 0.16997778820688525, 0.6509841470756508, 0.5589353890471914, 0.49320900326902484, 0.41485179365651337, 0.2850172536812061, 0.5150740024049856, 0.7905789411902706, 0.6660097546858721, 0.5916856454756931, 0.25029771644034415, 0.21820707607863943, 0.23625780462752244, 0.6174344585079109, 0.33885175059010386, 0.8097775874289167, 0.5502791542248897, 0.45232673966787307, 0.5168725346003686, 0.4922951659433321, 0.2710495410551712, 0.5620189509382074, 0.19827785442852286, 0.35653263682836045, 0.4940220265254579, 0.3934632807735441, 0.349631294967786, 0.6543252873397565, 0.6043841099981286, 0.6572212454398962, 0.5323595728841377, 0.4667716613599331, 0.5480891857555714, 0.5933716837007499, 0.5769442381274095, 0.7796710482718338, 0.4721284230669528, 0.5632051337005155, 0.25606657060722404, 0.47304849589761655, 0.4991199345133047, 0.785831825438318, 0.5512091114854263, 0.31651464458218903, 0.192246895102814, 0.5737052492708005, 0.14970485751781393, 0.8257882443178004, 0.7450862811651306, 0.2404138117262561, 0.3428275867057816, 0.2186811050870735, 0.43730933466596944, 0.1325711740116582, 0.33994853494016564, 0.5172250338280965, 0.4543852880840521, 0.6017244994332274, 0.7267617626256621, 0.304103470637073, 0.49511795227452726, 0.4577650902534979, 0.4389063253281036, 0.3428275867057816, 0.6911248892501751, 0.5457123873353599, 0.3395528272139201, 0.5662837862370104, 0.38281068028313525, 0.1899488449656659, 0.1899488449656659, 0.39416742153886597, 0.4473524415330049, 0.5724944828663213, 0.12652799787397961, 0.14917046216496987, 0.4192276293132746, 0.1727250451072272, 0.7329347521090118, 0.2979855805324535, 0.5384433083808008, 0.2944152049751758, 0.5661013076544325, 0.39283078357423706, 0.6503174362647687, 0.7632350838020857, 0.29422440231251745, 0.8446099855685041, 0.3812461384129847, 0.1264117171095669, 0.6995051325026098, 0.7680829457938805, 0.1086082602083136, 0.50228427853815, 0.8303888649041977, 0.15145052047802054, 0.5239967242043768, 0.49461569007297057, 0.7323984730128237, 0.6372335578763709, 0.8485373319296128, 0.21018203617182263, 0.3854703692354019, 0.6209619763202376, 0.6996467359659702, 0.3913887983225227, 0.600932061108284, 0.18141675383529432, 0.32841971343371723, 0.17397747102053363, 0.3943097935149382, 0.5998672378660981, 0.6052803835931642, 0.35501406908939237, 0.4362847089434372, 0.6005057903956104, 0.45095984485898877, 0.5601124581139871, 0.6908342266509375, 0.29066967723125237, 0.5437491575180791, 0.5955595524057149, 0.4226516353037165, 0.552222307965348, 0.5038457784615318, 0.6752568781943777, 0.7880730680059006, 0.09430965090665133, 0.4986183600001317, 0.24112389044610405, 0.3635071851353404, 0.7047195247497422, 0.5251048099479148, 0.5632051337005155, 0.4520037684813636, 0.5271857161160298, 0.36566585814722175, 0.8775119234978208, 0.49474741138534273, 0.17187478758168062, 0.1069918390347242, 0.6371627391106971, 0.19018032574493748, 0.34352259564225396, 0.806114950115292, 0.47304849589761655, 0.5014153035286022, 0.6721952796384192, 0.7507248720260316, 0.38512814216859315, 0.8930847268109882, 0.863224561659591, 0.15108072818859253, 0.7399796913917198, 0.18579927887031134, 0.47304849589761655, 0.2033384066370545, 0.43667652058029827, 0.23252054766636898]}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other\", \"type\": \"scatter\", \"x\": [0.5146182749014259, 0.49062668473479265, 0.7775684245364711, 0.18371968996097232, 0.37323118094509833, 0.5450318688979305, 0.7464231032427451, 0.3294343326232544, 0.2969613911244091, 0.15686175146820902, 0.8299913361088695, 0.8203540119990778, 0.48731346209414994, 0.9791954760932127, 0.16524495288874452, 0.3822780628200225, 0.9592029119044162, 0.9941531136433404, 0.19762840222071965, 0.5423977590998265, 0.9170918929630828, 0.5769459529261466, 0.607133604110653, 0.6606962395238998, 0.28403860313515106, 0.4904376456560827, 0.9799854287785476, 0.5281147653585594, 0.7246414237359634, 0.07111741847735187, 0.9895810896570514, 0.8387410104849939, 0.916413897517408, 0.7012065569232092, 0.4978275963167742, 0.4459211552356662, 0.5397972321573549, 0.8969313666546511, 0.23873904609005037, 0.8150075110212002, 0.2123451687183131, 0.6733575343553094, 0.712706254273696, 0.9309804087905492, 0.8857121311746642, 0.9401686067453211, 0.8940303328932465, 0.9131718113251408, 0.9943321642562897, 0.9144173918298943, 0.21369463490508822, 0.32764076409836274, 0.9046038171671266, 0.5521508309145348, 0.22332199414769183, 0.6155098507383107, 0.46437086312950493, 0.2818801256696728, 0.6017527691147097, 0.2096876520756228, 0.9827057725897553, 0.3582994886861899, 0.18019676543387575, 0.9366110898860688, 0.3581869573951246, 0.5812866055812832, 0.29645679655811175, 0.529097369019318, 0.9339633048249418, 0.14566011502785037, 0.841629271956171, 0.5906305880017624, 0.7795707065539258, 0.07507593497167275, 0.8568270111338834, 0.6033097090460469, 0.9910935669894222, 0.6180410984449318, 0.6281292280090298, 0.630628134897479, 0.5977290091238843, 0.20785805591161133, 0.6971579441507066, 0.36775844050251905, 0.45479514980195435, 0.3525189387123091, 0.5665649101718125, 0.42495774311462153, 0.22420578532370472, 0.43909775248110117, 0.3060226483658073, 0.8067701683460813, 0.3748652487823998, 0.38851813920254674, 0.4634695097399426, 0.7120860522658907, 0.729455789545846, 0.055111829492492714, 0.40921585743046907, 0.06757635116339489, 0.060526790678279596, 0.584722395772246, 0.5066282970824733, 0.21547914953611813, 0.2557254167043067, 0.690592227574819, 0.13498670579756678, 0.19460536198405565, 0.015819068353741472, 0.25404405212923276, 0.9267293073376054, 0.16371445261055195, 0.9333266869366958, 0.6365818886203362, 0.09215565291784855, 0.47536630815056025, 0.01771282739897606, 0.16986438065771614, 0.5401820132650634, 0.5098098892594988, 0.3608183004103881, 0.516015679617911, 0.18294172543586185, 0.9768648567831958, 0.2814629605220974, 0.7121591443255735, 0.7228878371743551, 0.10385189168890496, 0.5271289046392199, 0.419615715257752, 0.6836853711690702, 0.40788828590700055, 0.06683213722861703, 0.8249356436921148, 0.9873377825815048, 0.2419455276521738, 0.7856078328147159, 0.9770957650709107, 0.19024269486728718, 0.28645688016240867, 0.6840762578334195, 0.9801998559080098, 0.19889619933021818, 0.7914809717737977, 0.40287730299639457, 0.21524504310232195, 0.4056037386439516, 0.08204541204875881, 0.6426259882321673, 0.006683296281569162, 0.7446666423717198, 0.07378143059876352, 0.09192350944214456, 0.22130363891338745, 0.8098076689381957, 0.29659716298811856, 0.7333147878904726, 0.832613430205936, 0.18428445805917693, 0.10216898945172992, 0.2517095448692628, 0.1233774350922342, 0.8854432161965774, 0.7726782689252322, 0.5114407770224267, 0.1849274904673196, 0.2028160270081616, 0.5572627587657927, 0.9808788743731734, 0.7349318412536329, 0.6133889641416941, 0.9200266623541973, 0.13566166313468453, 0.5314532543349136, 0.8149625648955524, 0.21631534280596343, 0.41079854098522317, 0.7674953937694353, 0.28620937761689114, 0.8311352578955197, 0.48573327824447987, 0.9874152852094288, 0.2758186668357375, 0.07727751800695604, 0.3952457440376622, 0.9266054261496164, 0.3065726859104785, 0.41724540146896705, 0.833061102051099, 0.5112673842017913, 0.7035644803793906, 0.5191269402042054, 0.4324154482271594, 0.2818141149872976, 0.522992233473626, 0.584464345387556, 0.4634125362869105, 0.907692739912117, 0.45575405390354307, 0.23242244772022547, 0.13149190352607198, 0.7402754363460051, 0.7292199849636781, 0.7878881344505179, 0.9356743659113066, 0.6167958566847709, 0.27134720000577917, 0.5221772215934849, 0.24618671462060038, 0.5978857152621304, 0.001085756170120411, 0.03943967827772832, 0.5496165930704092, 0.8159003352773624, 0.10270910502281483, 0.03512291023094838, 0.49672551030191936, 0.8544335574744385, 0.33933171490180347, 0.10415062329642644, 0.7415016973786396, 0.1131717510772332, 0.8251329760467428, 0.17888537963718143, 0.5789421814939862, 0.31469150029516724, 0.9558096749499478, 0.4870269422901081, 0.20944009641486216, 0.23780766567504685, 0.6995161547948411, 0.12689726057222173, 0.9045130595877313, 0.757409898330297, 0.42907323541238296, 0.5160787943887573, 0.6908296329972602, 0.8351446194853048, 0.9705551188829995, 0.42829101316905205, 0.6590180146526771, 0.43671223290144034, 0.02573332637843373, 0.2638505984353112, 0.9056556703639069, 0.38997394049166545, 0.9231660077612465, 0.6469017052599653, 0.20871346829668047, 0.7783414113231103, 0.9048364775523252, 0.12157091442525148, 0.6338906097588174, 0.6287903950536877, 0.8249667585950103, 0.15698247624709116, 0.5254203406202029, 0.26401494325013974, 0.44202127212693754, 0.4728247821557604, 0.7250302444849211, 0.3112309111855702, 0.5497840203823023, 0.5855102322989464, 0.1838195090982354, 0.9797133357930582, 0.2132786230410173, 0.2911847081730986, 0.6143498254078626, 0.39072973331867955, 0.5618754919537065, 0.873604714546023, 0.32698983884720123, 0.015002413768064438, 0.4141160473557387, 0.23079436621365423, 0.914897012627303, 0.6542875829747317, 0.5135508304531583, 0.43949351698975336, 0.6926947440964439, 0.3540675697163892, 0.057263146258306086, 0.3257063620946148, 0.5938002127720373, 0.49538129212645476, 0.5845237057298988, 0.39196607769218894, 0.9372928278041792, 0.0350394205001725, 0.08959207519849577, 0.062472758625330194, 0.33806743585497767, 0.074336371219478, 0.3523431110494416, 0.4117861449503043, 0.2542954442167539, 0.8233823120282762, 0.0652093693788327, 0.6943378102649113, 0.1878656981876884, 0.2597983764412446, 0.6072402643920456, 0.7551434644918867, 0.507042690352367, 0.1816231738861026, 0.4945366768843108, 0.3450528837099339, 0.39160824055754273, 0.3529581967607438, 0.44156540196379757, 0.20687663636477016, 0.30842945608581007, 0.13257666735308693, 0.0038642260636897463, 0.37864281371098096, 0.5499861629683639, 0.10065530470346717, 0.1719314925967219, 0.7421304332024335, 0.2986777705128808, 0.28728126534541465, 0.9914260642289695, 0.43411988831378323, 0.9837392798441579, 0.5602031364745683, 0.9984057682578226, 0.28303249470771064, 0.9175772020636745, 0.8673878782545106, 0.4245614753458964, 0.8506647587934176, 0.07180118608994135, 0.40509040849917444, 0.6308367931134131, 0.8469642249612656, 0.44747356603378463, 0.15371500748720401, 0.9695225670108333, 0.5245569022381865, 0.8815764356446896, 0.06388829473898228, 0.3639398812569936, 0.17718521968626688, 0.9068845322383262, 0.09209462718592742, 0.03911878146982117, 0.8590292811499769, 0.1818727173607716, 0.5040873536470919, 0.9630840343971337, 0.5956393204400102, 0.37415325131956967, 0.9737660319058494, 0.927683290732843, 0.5003332075168727, 0.14109398847626586, 0.6955227508783304, 0.5044362238461831, 0.9184972493550446, 0.006136403476042163, 0.7266738299843338, 0.421717077804722, 0.2581789276851394, 0.5337460209770497, 0.18751036618461514, 0.6843827420823693, 0.7628181352312325, 0.966147647079213, 0.9662729077068407, 0.16185766324263462, 0.9587077403027076, 0.7563617251723241, 0.765884820543339, 0.6678364316320956, 0.05748632398705622, 0.48743229127194754, 0.41500639323942123, 0.08491269961180803, 0.28435852008941476, 0.6740424644318913, 0.2116352103113045, 0.21360667773769948, 0.6143841967936529, 0.9603699121234939, 0.6396136710471504, 0.4595178539741419, 0.399556102351318, 0.10038180235502148, 0.3170351560460476, 0.29379075768894236, 0.265936696592876, 0.8124701491015747, 0.9511881960050114, 0.3823865874568634, 0.8484150518215721, 0.08490175073199968, 0.3544779888166999, 0.9722527282598009, 0.828618321211533, 0.8850794510698331, 0.9544085401516024, 0.8340131353936965, 0.8771012460923736, 0.9120287409219726, 0.14209613779145946, 0.9291748049507753, 0.023547461624671917, 0.9925730234298242, 0.7101842828739908, 0.950594721959516, 0.0459520151718833, 0.8217681407692123, 0.057380146342108196, 0.5173102325215297, 0.21894867348355918, 0.14138909564514324, 0.8286691365857587, 0.18693680784441746, 0.8562456281830947, 0.12743313753779906, 0.3458375912570588, 0.5349656096953148, 0.7218714197476107, 0.6253370722703379, 0.4549890705597983, 0.7815928716232786, 0.8847103048648554, 0.34474850152502634, 0.856218126533043, 0.6857449396181732, 0.1935602825382694, 0.7594308239316521, 0.9838771480793661, 0.07207425372125409, 0.41411896701424644, 0.8585528460636912, 0.6148182173439743, 0.3106255113084626, 0.2820435210667932, 0.08646748571513219, 0.5594934660218219, 0.9530320831506757, 0.44585228955333367, 0.18772620271454243, 0.4805479327294031, 0.34330140429749745, 0.9393211756195533, 0.6471901296734022, 0.5425022076991268, 0.6261414366545388, 0.6347001624806823, 0.9534727391846418, 0.226341356621526, 0.6041270091290712, 0.2906098215344488, 0.29519950817637386, 0.7588410995936667, 0.10115914682193583, 0.02240821977068752, 0.8081517282282826, 0.91278312877355, 0.8507063855644745, 0.11721091893652957, 0.5652782504425466, 0.47336244694985297, 0.19573062233423444, 0.06315760904149237, 0.501093862092127, 0.8730009246612209, 0.6661722829900681, 0.4182030083859547, 0.12009299860431388, 0.20046879765127756, 0.7171230028961011, 0.49605933755996556, 0.6790243959425056, 0.6162705811151037, 0.5546166164909718, 0.8691931977766891, 0.006224532314324405, 0.7615727242240559, 0.8175127915610667, 0.20038337610417756, 0.5034751991534844, 0.747499504288091, 0.8905292578958552, 0.34267650033370833, 0.926021672172463, 0.8734398694462921, 0.42987635641390876, 0.14589552473252587, 0.5026853162812517, 0.157761596812528, 0.3635480545352977, 0.11433360445057794, 0.8178718919809085, 0.5198270190782539, 0.25165907980525026, 0.33030410264701526, 0.3677948333295151, 0.7169648600613351, 0.687475404054599, 0.2822418327973827, 0.2078079818870957, 0.008033280466026693, 0.6853472503639667, 0.4851269805889685, 0.9373119560529254, 0.45742783954374067, 0.5042201981849843, 0.9045400321772105, 0.3405259678979041, 0.6828763489074761, 0.7867028582072444, 0.958294534148919, 0.8747715733548412, 0.2831221437209368, 0.19228386598815672, 0.8624793532301723, 0.12524421366754301, 0.1429952504195494, 0.18661477911085111, 0.622439012898931, 0.8616432839575948, 0.2141784053278819, 0.6216339236061166, 0.5510575530673893, 0.5607158240426263, 0.30974836001984096, 0.2546658759397201, 0.9678323938983584, 0.596687374063542, 0.024024253821221753, 0.8203628565970794, 0.017268423582865844, 0.4152148607896644, 0.9202520550437472, 0.2665549554461999, 0.1251834954761798, 0.3556611929036151, 0.9375128914205652, 0.21298389929064387, 0.09122806954867324, 0.5348626958106525, 0.21033693879786908, 0.01811536558393745, 0.5261275571606131, 0.34616034656350503, 0.17021834440188555, 0.7979045678734952, 0.6765314040810342, 0.1673266546565697, 0.4715858581615042, 0.9170590586711429, 0.39473065191154577, 0.5501418074331481, 0.900891302391937, 0.3728723574950745, 0.9193929497018014, 0.8567163596917395, 0.8056240000382825, 0.9268402049732186, 0.011877682199929351, 0.8759109044268956, 0.9906002747536825, 0.4534658021473895, 0.8751704175986544, 0.6517906196059126, 0.4795771268201079, 0.8437891639088563, 0.9036964448917056, 0.8633759453513854, 0.4328748306244796, 0.09169772263008491, 0.014790154300772684, 0.6150557455263579, 0.04956546104764148, 0.27111573998684335, 0.8948080020422476, 0.14765489251527608, 0.4975536683437325, 0.9723885980080101, 0.33354527116213994, 0.7370428983692862, 0.5277858174499097, 0.4226675871858, 0.229438789515941, 0.9448322052338195, 0.914582759434866, 0.6173941332405946, 0.08262124073406818, 0.27865789585147893, 0.09652947724852123, 0.3080964667926295, 0.7604811083746311, 0.29002033080703893, 0.40321425880985007, 0.8611598598627959, 0.6999269915148768, 0.22714072590734746, 0.8387672458569441, 0.0491149939975557, 0.5514195709184644, 0.5095063174188599, 0.8912626060058024, 0.591823032472226, 0.5539747066308219, 0.843621664984242, 0.9256511150938765, 0.23791403032804626, 0.35974745949363374, 0.1852913927995844, 0.9172999947540573, 0.4942664607210455, 0.5161801050153018, 0.9296764225142266, 0.942972306412989, 0.7565827165252672, 0.5849931011981127, 0.1843179373853856, 0.5722524428608047, 0.20268221616541549, 0.5779184622630353, 0.3329647647483436, 0.4608773230561194, 0.7040453494878709, 0.6398938260542696, 0.9840332299709261, 0.42875247912570325, 0.6790087680492167, 0.9381228908634265, 0.7271700305276125, 0.6199644733909708, 0.8074987002530333, 0.7024417497836005, 0.5121628902298134, 0.6097555611634724, 0.48270337677395936, 0.31039052876505047, 0.07893858898334238, 0.8871078570793748, 0.34820865698360914, 0.7846231847251818, 0.8273399626614, 0.45612416804572975, 0.6768150296942943, 0.5087239825507429], \"y\": [0.6660328535674787, 0.4955559099445003, 0.11251030999551548, 0.5313240922219649, 0.7616845263358343, 0.42881839881496897, 0.22146723198036844, 0.2709448900825402, 0.04188686298684474, 0.3198999677935893, 0.586632325439729, 0.3332859260788763, 0.0891770245136605, 0.07249138429342028, 0.0813041402249215, 0.2808128557304226, 0.18155424903412543, 0.14020593233116785, 0.20529540916933675, 0.1755850319354616, 0.5722846846512241, 0.4684623303117058, 0.2863708053899042, 0.4489302200945696, 0.3606737334686688, 0.09834172337505831, 0.1439119889738254, 0.10526388551166177, 0.08976738859769384, 0.15927641460572795, 0.07353544332944184, 0.4894096639868448, 0.24735122968283396, 0.41440459167745447, 0.10107859516115147, 0.4809249647595707, 0.043928674649753696, 0.27268427565697984, 0.07203278686513981, 0.35989685204578803, 0.08410225657903847, 0.09640449279894714, 0.2859044620344169, 0.766491644508495, 0.27194216744256416, 0.11891721880979944, 0.6033870782914414, 0.8445823904457724, 0.4148378249676725, 0.09538880480821377, 0.5822786697287807, 0.2006236885231063, 0.30215903380660414, 0.3526626332448971, 0.22921561702294402, 0.3499358724503807, 0.451050436906263, 0.01968005574460141, 0.3849224947932618, 0.608666907839271, 0.30333177217190177, 0.05732515971384944, 0.08299070223644744, 0.155374347961305, 0.4378217303747408, 0.10641916767178827, 0.3207785913922725, 0.3280003244598044, 0.4747408725557203, 0.27229542413121455, 0.5314247042003052, 0.13834506443323813, 0.652508483608137, 0.1775869136191267, 0.4659209431511335, 0.3288332341233703, 0.47224603889779837, 0.2773569186284155, 0.18590272545123854, 0.6719763059805124, 0.04569198037744582, 0.22473444069733528, 0.0776074933333939, 0.1411968215808168, 0.3654892991508686, 0.06069899520469324, 0.21029328672965164, 0.13919371635861133, 0.16321149678759816, 0.6144435769482088, 0.1388055550317996, 0.0827658987104557, 0.0793107693477757, 0.04994940743047871, 0.46220165202879504, 0.08265172102971341, 0.5554564865761329, 0.10902951494304747, 0.26480674198345266, 0.31816712550642645, 0.20184400370343658, 0.23734670470511587, 0.19264674509953905, 0.03558879485690103, 0.5314247042003052, 0.3013473679880785, 0.8043030592862955, 0.07665185966197174, 0.17816243980233548, 0.14637302723887635, 0.43623195291339645, 0.5773286546676725, 0.06996409198491005, 0.0635191394270278, 0.11839391684253864, 0.03368970372860669, 0.16544292122901683, 0.5002106013252752, 0.20783967621931676, 0.4413184352618238, 0.1377753535318076, 0.017128038770129694, 0.09070427960766203, 0.05237321155563324, 0.46044782253877736, 0.09863911308639095, 0.6058955548956951, 0.07377868677997379, 0.33726125667837825, 0.03705661785513226, 0.03856885477325478, 0.01970319875133708, 0.06623921298607705, 0.655672818127978, 0.36403826442427, 0.375635621083512, 0.25822104517587474, 0.26990817233175546, 0.30316845466795117, 0.21597661143113533, 0.10411587283779344, 0.4582573305440075, 0.28974208538397184, 0.3995654588450376, 0.48407929824265805, 0.2412117545349558, 0.49704114689177337, 0.3112403223054312, 0.13571503940671914, 0.35304273602320047, 0.18963603484652192, 0.06023564559469896, 0.305863422303413, 0.34062746964654456, 0.03532029949184434, 0.20200996882548472, 0.207876095289533, 0.11304202998506685, 0.26487496820305634, 0.46674395287949066, 0.05931266843465788, 0.6063731497207538, 0.053339747820140615, 0.16056749669580483, 0.3366557342021428, 0.18735912995827353, 0.2667542380283816, 0.9197592959547904, 0.13322255285490225, 0.3533185668595151, 0.08763312389948397, 0.343329095265401, 0.1298321532292276, 0.11240742021865013, 0.03412749239977686, 0.23316671381479437, 0.13955591125269062, 0.065615492475942, 0.03940539431326806, 0.04874684240881699, 0.42507109047861347, 0.3720756994829524, 0.20627971812824875, 0.23346983492740092, 0.299872058778726, 0.14688925552714138, 0.20529540916933675, 0.11294333341234963, 0.4523771212155355, 0.15895981664313275, 0.12633289347617382, 0.34801013400503944, 0.063056887931354, 0.09222807982804315, 0.19281104432210028, 0.11843845992675284, 0.1064686731970873, 0.12171087020281346, 0.49704114689177337, 0.4202798549667376, 0.058322454167927695, 0.40418598015134155, 0.7514842711311043, 0.067978575311199, 0.1468497162592186, 0.3655805321171328, 0.36741292271676196, 0.08785516413846428, 0.4223454464089015, 0.09472348251934337, 0.14196098925812006, 0.10013555988874479, 0.32154631204965056, 0.05416575683382341, 0.786126361492164, 0.04696516601190348, 0.26926088858349784, 0.28123172687107445, 0.3094364396730669, 0.04307250962973752, 0.07126159086244754, 0.6143015945908075, 0.495586079448059, 0.46102608015166635, 0.40789311683600216, 0.8929715185951024, 0.1227006502272181, 0.3638055988942468, 0.10470002869891348, 0.29304213908849364, 0.8936703981375603, 0.3534407380188983, 0.0883666731866185, 0.07895584641700149, 0.05166417783587085, 0.4199775765299997, 0.10304865631077798, 0.1041340676595982, 0.11031385635331636, 0.22368578646300386, 0.22137255536682798, 0.0725394352715707, 0.08320759746190642, 0.3577905591727162, 0.36362749207413336, 0.13058702032609693, 0.4306817897420764, 0.4684623303117058, 0.3185463047756948, 0.6991046594229053, 0.33105510290791684, 0.35804773811787727, 0.3499358724503807, 0.17780319308126435, 0.07142366539796174, 0.1504846162366139, 0.28643330026545544, 0.11492102279820171, 0.08716328114311156, 0.12905574960179156, 0.5528531989583015, 0.2852168598030531, 0.3185463047756948, 0.41766807389819915, 0.22818770291371737, 0.10749415552266317, 0.07500089027222667, 0.2150933620687273, 0.4879833184669665, 0.21367083697314282, 0.18281788227943807, 0.11217648511765432, 0.01860460444149037, 0.4990100838788346, 0.3212979959143686, 0.7252893191599291, 0.30018855716775616, 0.2808216200321265, 0.24332849241566534, 0.22583693263898685, 0.307128141019565, 0.12930297020615966, 0.07734813107736227, 0.38078614076753503, 0.037937415915298756, 0.18389331462546077, 0.2015421194948802, 0.10121634311933059, 0.7209948827487924, 0.252131738577411, 0.19866278493931944, 0.5569604587758099, 0.19172534874952063, 0.07516041810443141, 0.18673310211333727, 0.20736440356309183, 0.27568985010185776, 0.1748501221961516, 0.134246332983591, 0.12151400729184814, 0.03860330573341564, 0.16198960071610413, 0.062309112953929935, 0.14943540958877521, 0.46827469198568006, 0.12435295831370408, 0.11768791031746062, 0.10794707492381372, 0.04347111427796346, 0.07423675680829, 0.1602542791395647, 0.19911642350143877, 0.2379444352717226, 0.36664322039668684, 0.10130143557253446, 0.17108028607870185, 0.6143194513817134, 0.5641235853966853, 0.29864316680665437, 0.44752301946823647, 0.13459844499503626, 0.037461465199631894, 0.5002964248569376, 0.4059565893810353, 0.7035957096210382, 0.0629603198376949, 0.25036415064992923, 0.14780834332950044, 0.24800647860056513, 0.10438723399855232, 0.24366911510822187, 0.4574644219698093, 0.8347014835967527, 0.42226245660703365, 0.4073158502222598, 0.47525484003715535, 0.37845934883934684, 0.35325777167774697, 0.4763432908647238, 0.18941100564626978, 0.23853527246002126, 0.27277355193056574, 0.5556171757583562, 0.19481513110659687, 0.7460207524242459, 0.12627308236197843, 0.2115813466591615, 0.4773837842994688, 0.22238536240250728, 0.1978655273089749, 0.32057959349203036, 0.1601330373243487, 0.6256605001243821, 0.34062746964654456, 0.5899158924001677, 0.1273375405407705, 0.6866376712310945, 0.3812864953771038, 0.07918534602430627, 0.10510921928053807, 0.052405178286905496, 0.29010285216427345, 0.5802968836962079, 0.4475494904811408, 0.33107045093633036, 0.6046547135519548, 0.33132995382553565, 0.3391582818855403, 0.37109937806185267, 0.18876467901964422, 0.03244681540368277, 0.6531311156123596, 0.18281848038190407, 0.06840545126676123, 0.23876166598551407, 0.5602062902528231, 0.05478334190217349, 0.18965009362393503, 0.502081053312289, 0.0945975060483667, 0.24937367783354814, 0.14040338921272166, 0.09582424632391484, 0.4879833184669665, 0.07536550594022651, 0.37763546052463404, 0.20240400638142053, 0.06234715971662652, 0.1729504208160284, 0.2536573606029918, 0.1491704939138675, 0.47224603889779837, 0.20734784509414073, 0.1656619584420439, 0.20263687678412212, 0.4576701693643329, 0.3746187330143109, 0.06578487521364562, 0.09359041291034786, 0.15714155813810793, 0.43198081216185935, 0.17693664965610134, 0.14200602748771296, 0.16878839641400256, 0.11131318694256087, 0.43040972974554736, 0.12494266711040569, 0.5286591337585229, 0.3917329141436472, 0.14284790216410748, 0.29931895876037384, 0.3998656181534954, 0.13198036366642862, 0.2166851793268345, 0.164669749255824, 0.3116999397838065, 0.5702002297218003, 0.2867818412254799, 0.05809024612643199, 0.0701620515557333, 0.10493669218879953, 0.03474255021640338, 0.14069518845012563, 0.7697788668098057, 0.44513161239284327, 0.12104291767226882, 0.2823656727566666, 0.28640273091276736, 0.09904459769556595, 0.10889384421684001, 0.1978655273089749, 0.6326587477498924, 0.0766186874204361, 0.07300117689776386, 0.3978521493117628, 0.7293533971641823, 0.24040337450518035, 0.46827469198568006, 0.03737110954461231, 0.48112847828662497, 0.5755848065786346, 0.12151472907643468, 0.332302417201758, 0.3208349144509022, 0.13406270144296106, 0.47820199098358873, 0.024219732643774528, 0.7923035912680444, 0.3099424932714111, 0.8494816644677875, 0.15230116664989468, 0.8795672599938588, 0.34536882843285344, 0.587897812361327, 0.3660303223369904, 0.3074082248441362, 0.1925553058603695, 0.1582957933341015, 0.5297945963993664, 0.1892543681582496, 0.06574637766643598, 0.03286461121245521, 0.6223124217546917, 0.48666930315350876, 0.17200815643270417, 0.27042696199957883, 0.16010429726024444, 0.25291734909108765, 0.22778758435893687, 0.6055190518965303, 0.41989528411161425, 0.2865861541738164, 0.17344095530188786, 0.4163761941495938, 0.24610426408478792, 0.029106329843254564, 0.5849270471051293, 0.09607886499379148, 0.4890296174547498, 0.11193395874659995, 0.3667485749721523, 0.29672938182784603, 0.13696827462710404, 0.03986507081677082, 0.41542023534722683, 0.1642424989032959, 0.041559354155004224, 0.1266666793707928, 0.5259198205822933, 0.42123490919744344, 0.6147437654518444, 0.42849246998341506, 0.04874684240881699, 0.16870816563337898, 0.35179373534084035, 0.4552463954734379, 0.1543174595222413, 0.4641274821418986, 0.1106599594415556, 0.40441066041397966, 0.05916303638108533, 0.24194101851814365, 0.5755848065786346, 0.23631147082452741, 0.04679471849088612, 0.33132995382553565, 0.6031606095022326, 0.16900214819844117, 0.9322526967181247, 0.1065938389205352, 0.0540586741766943, 0.14920224829950646, 0.03054451782098533, 0.13595064656866984, 0.15908339514281045, 0.09402391562754642, 0.27219479721363327, 0.10477531970828624, 0.6046547135519548, 0.04412971358840656, 0.0821245873848182, 0.24953715645213048, 0.24311299470472425, 0.679537413518331, 0.02875041056121841, 0.2874129658970298, 0.17131102264191878, 0.07042427222914205, 0.1577516063520068, 0.39934634677258996, 0.42249259173992826, 0.24940231538328683, 0.46827469198568006, 0.040988937643475554, 0.034828704291737345, 0.26663563965858417, 0.22421743312747255, 0.10716094829621758, 0.7421831263598226, 0.4644511163280224, 0.1591307416719686, 0.21502194578256428, 0.12883185373794437, 0.15520095945599266, 0.04280666734842442, 0.06928764484923078, 0.3578757504587543, 0.0760792945579073, 0.06637805380770656, 0.5755848065786346, 0.4326356954473739, 0.16985579355455038, 0.47152805642545803, 0.11644579282256762, 0.11790522998710073, 0.5438286352264949, 0.41561805514360906, 0.050606352251634235, 0.21836830194439782, 0.22298545275517268, 0.1504846162366139, 0.16819644397314482, 0.47796113776613436, 0.14100197907825862, 0.7878397890034206, 0.12176963827920351, 0.09814942480303201, 0.23162396036129984, 0.04400104962869911, 0.061588508633294015, 0.2774601068082493, 0.40816383821078206, 0.14036214651023216, 0.11837607594274324, 0.0703155477214753, 0.17002415827487982, 0.24611532014486182, 0.06874641727313702, 0.30975746960573625, 0.07004288447243323, 0.6453829176356538, 0.3880412370469972, 0.10205495289732236, 0.12171087020281346, 0.38550692709735157, 0.4398162761337091, 0.5769741243450848, 0.48842976274850136, 0.3866799681687785, 0.17129518728202664, 0.5711206597512044, 0.4456070955069118, 0.4585850027539752, 0.25462747480751524, 0.34771016550763867, 0.35548618548401445, 0.07878090041588082, 0.3008706318705062, 0.08117751180329491, 0.055511805197920094, 0.1600174453683395, 0.35597309965685686, 0.5473978930443646, 0.3321771897262046, 0.14643302530661162, 0.7653011157176768, 0.24188431843396252, 0.16704799028757666, 0.41136103198090634, 0.5749869949413896, 0.709238838470871, 0.09340318303147321, 0.602429869503323, 0.04154705947390969, 0.7519582179986716, 0.15993940416551844, 0.04372375151311325, 0.4076899811241429, 0.4644511163280224, 0.3133137248525114, 0.24628490675063597, 0.06972977174174444, 0.15949948541388637, 0.2241543425141257, 0.1729876202034616, 0.07290025122558275, 0.1220000714032804, 0.36493953208423235, 0.09420126302076737, 0.026726938234992392, 0.7199273032686843, 0.4606762448039463, 0.04906818437448113, 0.19446415942665518, 0.14876853598344464, 0.3247816953453747, 0.023320858692869595, 0.7310618090422621, 0.48944479260603346, 0.20357574295749958, 0.0840537250624015, 0.5368744051465595, 0.21101467800102214, 0.46682279298460017, 0.3749869638443927, 0.46592999202179275, 0.10188412989688433, 0.15751976448865512]}], \"layout\": {\"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"range\": [-2, 3], \"showticklabels\": false}, \"yaxis\": {\"title\": {\"text\": \"Probability\"}}}}}]}, \"insights\": [], \"additionalGraphs\": [], \"alerts\": [], \"tabs\": []}, {\"type\": \"tabbed_graph\", \"title\": \"Reference: Probability Distribution\", \"size\": 1, \"details\": \"\", \"alertsPosition\": null, \"alertStats\": null, \"params\": {\"graphs\": [{\"id\": \"tab_good\", \"title\": \"good\", \"graph\": {\"data\": [{\"autobinx\": false, \"histnorm\": \"probability density\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#ed0400\"}, \"name\": \"good\", \"opacity\": 0.7, \"type\": \"histogram\", \"x\": [0.8156061324462894, 0.42491310922683634, 0.8867827646463432, 0.8014995238430205, 0.30499958310650876, 0.5817355832705369, 0.959171062334887, 0.7854416128369749, 0.9085690698200813, 0.8998600376511439, 0.6341165000693628, 0.412102187638673, 0.7643629411050379, 0.4710001938005606, 0.40182653035141874, 0.40438056362905367, 0.8870480016118494, 0.3650667978415713, 0.9064321709292111, 0.9327245345966092, 0.6458420185168736, 0.8821841129047617, 0.6704018506542557, 0.7655671181822064, 0.8616986618932058, 0.48774537944210006, 0.9637355036179479, 0.6794204065079696, 0.6044835155949141, 0.7867954023600708, 0.9137982268836646, 0.5867502063434873, 0.8048584290077971, 0.9718511071053526, 0.9627192884041744, 0.7978623718349598, 0.6091120966723917, 0.8943338178728011, 0.8853376735027229, 0.9045563504021151, 0.9264844632598176, 0.6342457655367447, 0.9414033426130164, 0.5636516403732365, 0.5172967922101196, 0.4836896337264441, 0.35199620689495453, 0.788779954566273, 0.9696552399248426, 0.772496554239754, 0.8132656157621138, 0.4539090261140653, 0.9333708926412786, 0.679765045723866, 0.48457442622955804, 0.4248820606938153, 0.6737819616086004, 0.8780741425819777, 0.38340602447337646, 0.90634085684919, 0.5574014604752268, 0.6804147683859246, 0.9077110088845216, 0.7718472635729894, 0.4717552048891654, 0.22222808308441652, 0.8616549355667619, 0.705749071892896, 0.4699129352300819, 0.9680524782819758, 0.8891353183282249, 0.9466602521798594, 0.8553382520847058, 0.7430243903066251, 0.6616131862201935, 0.6919609500216202, 0.96565744679506, 0.913108907487878, 0.5395521774612226, 0.9026238558501023, 0.6550941529376255, 0.9757876320152292, 0.8833495792027257, 0.6666029765862381, 0.8504582120840628, 0.9320215595878566, 0.7639947574915884, 0.6085229656221847, 0.9557131606798471, 0.46184432615952054, 0.5642658412077981, 0.8815615400732472, 0.7189203536918151, 0.9301020530176726, 0.7341394174346678, 0.7759189559372703, 0.8448078654733812, 0.9012666081120407, 0.8926028620066223, 0.5287492720273277, 0.6874206920638863, 0.37408584674942635, 0.8348370105186077, 0.8697567261320243, 0.9175759024810304, 0.44644098895981, 0.8874384748400057, 0.7787567487441118, 0.9416122482572158, 0.3265229243180111, 0.9308095750950773, 0.42267134533232753, 0.43068181214270274, 0.8727308285810839, 0.7201611177732586, 0.8430904589044517, 0.8140617541555761, 0.9456747441572588, 0.6672663325862807, 0.8756470416862959, 0.518871521713375, 0.7040615347784164, 0.4957960231649875, 0.6250130361556073, 0.27413726132188326, 0.5193133578087885, 0.37656641690434584, 0.5808048103476511, 0.7917827117482167, 0.36569143480873245, 0.7232542293832885, 0.9785934574433302, 0.5715075300165849, 0.8182555969893297, 0.5448461144048058, 0.9491291995847589, 0.4833587957991669, 0.3189279754564957, 0.9184825510014271, 0.5524830505676419, 0.9600429304649183, 0.7818180966165994, 0.7962710274484252, 0.7569429870375118, 0.46184432615952054, 0.7641514270390748, 0.9486763575522457, 0.8086368705092697, 0.6784536879503494, 0.6877019790624462, 0.6082670858563528, 0.6053794617794684, 0.6319330693089359, 0.4982105707488519, 0.6787928880949093, 0.9231980717613485, 0.8831230955067948, 0.6845485656817341, 0.8799204262605215, 0.9164563829924386, 0.7819268199067826, 0.23469888428232324, 0.9492377841603665, 0.8826092272015389, 0.6360541596480074, 0.5184081252698399, 0.6400126753125241, 0.542646305979658, 0.4479501208302092, 0.7783171875827786, 0.7867712153112567, 0.5236605417423803, 0.6959846197179591, 0.7925023358445066, 0.6683189355892497, 0.18737025221649042, 0.42506327048176057, 0.7272596040941706, 0.7314191754306454, 0.4827891324637794, 0.6649341228620356, 0.9038332731164471, 0.9588917860646077, 0.8945194928389463, 0.49833043835950624, 0.7997712594855277, 0.8577935987172323, 0.7622736922026153, 0.8039391974899521, 0.7396811504731934, 0.8115340233127679, 0.801728888664367, 0.738451208106372, 0.5859674792922007, 0.1865203674848816, 0.8773430435604171, 0.36888329310067386, 0.8651817982269884, 0.9067615420962557, 0.8594983988587351, 0.7437750884018276, 0.9145224932934428, 0.9135679891815164, 0.8001832456898428, 0.6860977766129374, 0.9377826008632761, 0.9300369611912853, 0.6997062971069969, 0.5693182102579236, 0.3404656140239559, 0.7160591142088384, 0.7953146078011, 0.8869803873277935, 0.7639982823097876, 0.8681285227071118, 0.576868797021353, 0.93035102563313, 0.8375600281828176, 0.8279918435672958, 0.9266689436294401, 0.7559862346636359, 0.5099889666930224, 0.6914445842613687, 0.9651950326885705, 0.87851968214492, 0.8499702807396289, 0.4685752957996948, 0.7241546992314323, 0.7848147251007912, 0.7341394174346678, 0.7008877443692281, 0.340588975625529, 0.5013021766499856, 0.8321174529331695, 0.8818378666553491, 0.9176909075187759, 0.8634678749265305, 0.7436082905772717, 0.9343776659412377, 0.7668809937296346, 0.6243383802582345, 0.5332560471205093, 0.6907315465649003, 0.16626803588025432, 0.1668542888532837, 0.7408943843163458, 0.5221312328975666, 0.7457559475413279, 0.46389636934606376, 0.9292627865919654, 0.5268311186840582, 0.4244151934213653, 0.643310536612302, 0.8577438313980266, 0.7816208399762355, 0.8553382520847058, 0.7010035672814305, 0.5242572272016158, 0.9187320011579697, 0.8703498177621264, 0.6713045345576062, 0.9137982268836646, 0.8614414457916845, 0.9445662266054761, 0.8808216590199034, 0.7386378115490353, 0.8873009977622293, 0.9157094897337859, 0.6606038558129893, 0.9296803968514485, 0.8864322240790464, 0.5146720135715994, 0.8720710714485208, 0.9415427660945741, 0.9138701141498735, 0.6527559092576063, 0.8751970040938668, 0.9249766460056568, 0.801728888664367, 0.6575848465963361, 0.6934824043184128, 0.8619113960143526, 0.9419078024651042, 0.9591721389341828, 0.8397407150753159, 0.9084383840076588, 0.4963969309336195, 0.7359588175524252, 0.3531961907069324, 0.9279819479140234, 0.7752976919572294, 0.8665226278427577, 0.9515211055933231, 0.7314191754306454, 0.890886918514299, 0.3235491032739525, 0.3719939405423586, 0.6323804178173072, 0.8398006965792015, 0.8239469134189235, 0.8592101816891015, 0.7615002907198236, 0.8688259750909261, 0.8718104001390852, 0.5838074755684882, 0.8756470416862959, 0.901850575196968, 0.9451930143658351, 0.6253812669856891, 0.5890764576710766, 0.4921052500998711, 0.4862070578416567, 0.9170647663398394, 0.7035583451969506, 0.8476385889092957, 0.5603058978573646, 0.5810606890504925, 0.9088604673919816, 0.8903252600075929, 0.944267921154058, 0.9435968591480925, 0.938237366988842, 0.9357286047893738, 0.7961386682142712, 0.7840233885688647, 0.2513590507613302, 0.7389284097502917, 0.9053472250810051, 0.44438282424164377, 0.862281110352348, 0.8021059248496223, 0.9152740930046814, 0.643737358401971, 0.8540304955499701, 0.8613418170006786, 0.6911084183178322, 0.8848367871057808, 0.8387883096682573, 0.5942651630821018, 0.65691393717736, 0.6369979527510315, 0.8280658524313272, 0.9640736168216585, 0.6546311715671466, 0.5599819536107853, 0.48348053317652906, 0.7668016587569692, 0.03620763244300767, 0.7364400865449663, 0.37408584674942635, 0.8767503774172, 0.8743962287172513, 0.8751970040938668, 0.8833495792027257, 0.7091886355621774, 0.87006937054451, 0.7904001815220257, 0.8761418339280951, 0.8306834851111597, 0.7531715889012326, 0.38181207472529843, 0.6490458991820136, 0.9138057013338913, 0.9046222904886461, 0.17956061692355052, 0.7506163079023257, 0.8963285795381793, 0.8848361664653354, 0.9283037217377402, 0.45996158699034445, 0.7290858434196763, 0.8319094967702583, 0.6578018675312727, 0.18727567457681707, 0.8673410249845035, 0.9453298670648187, 0.9446538464906173, 0.19605573045952288, 0.6723831041639817, 0.3438281302059518, 0.37858973820495484, 0.6953170483296187, 0.21463507152544156, 0.26963792069965237, 0.3280912492037974, 0.8399932187801539, 0.420387898633768, 0.36522500752858966, 0.5810560693343539, 0.9306346767722963, 0.7167716539092029, 0.656736106921484, 0.5549139996760648, 0.6909161521388689, 0.591904263202073, 0.884703171197362, 0.866402281883595, 0.7582770814524421, 0.8990773411030794, 0.1818065866116437, 0.6222165686186035, 0.17261914235374884, 0.8156064679757086, 0.4851213943917703, 0.8871292211128762, 0.8398494053952754, 0.703270618172154, 0.6305543892506115, 0.7494149477175548, 0.1532408287022325, 0.6159732902773407, 0.738220551127759, 0.8354520044441791, 0.8536870432671441, 0.5751476712690671, 0.9077719201719568, 0.7878515691455199, 0.6672663325862807, 0.45293736875445273, 0.17058553029544155, 0.747933377844996, 0.8400163125056676, 0.4516778718827729, 0.6082670858563528, 0.8401843469141149, 0.7636885291754726, 0.789170795337903, 0.8128612802083497, 0.7522530659814418, 0.8086757686066508, 0.8356255123032285, 0.9241779635105248, 0.9674588597049086, 0.9368885694202199, 0.4990764491242286, 0.876561204324957, 0.554264192243629, 0.5967716244634195, 0.9060244606340249, 0.8401608718856799, 0.7329750583133859, 0.8021769878309102, 0.9316817655017511, 0.45488322534173153, 0.798578398438993, 0.7425236774748816, 0.5742682328784404, 0.4937681935814938, 0.8972164286692267, 0.8914273370768748, 0.9377613518261881, 0.8862258850530264, 0.8591757581361523, 0.7410678096850266, 0.6822336012657398, 0.9201658505843877, 0.6982578893131915, 0.5746709232170782, 0.7626532952948841, 0.7137703530889916, 0.7520971196461234, 0.4473853625959922, 0.7957460056304991, 0.4833174871501707, 0.8758467705785958, 0.4689303842787964, 0.6133612564737879, 0.8568681391705205, 0.6835133967314007, 0.9732070839986944, 0.21435716257549006, 0.5761668962420043, 0.4055433603128916, 0.3743394998756179, 0.9118635774953143, 0.964551884718591, 0.9306459334511011, 0.8424802355113449, 0.7739144871152517, 0.6872688771534424, 0.8590561833388345, 0.6714384475466295, 0.6408669500407106, 0.5203550269219845, 0.2856853969697174, 0.857760555506807, 0.9307094503226838, 0.6787928880949093, 0.8308635255795866, 0.29271374211533296, 0.6769315553524353, 0.23831547366416572, 0.5895099457120908, 0.8994675076574448, 0.8893400405584444, 0.8456825404777587, 0.5399612081435882, 0.6188649121485582, 0.9281492942813848, 0.7611740601422801, 0.46550237374781617, 0.8896861436466836, 0.9038901015569306, 0.5044440900554997, 0.9215480939667524, 0.6930273792518707, 0.8723244804196287, 0.5624338775604165, 0.9226297661236537, 0.8469231754225917, 0.9430557295321259, 0.9097116306258912, 0.5988707702267543, 0.3813853072548755, 0.8843832309478876, 0.9006952500629406, 0.918975987201669, 0.18997930334445084, 0.8923106748541326, 0.8461388699436441, 0.5973439234355874, 0.9544642924744549, 0.91770416680597, 0.9177239854204658, 0.17584552180125673, 0.9240099144459667, 0.48524948024905407, 0.8889685222180134, 0.5785503824403398, 0.7511953459672914, 0.6887596776945688, 0.6717539058356753, 0.7168761391602206, 0.7134478068952186, 0.834626350903405, 0.5715867980362679, 0.6588392688727011, 0.9488572786900573, 0.8920529250761863, 0.8891353183282249, 0.707981940789761, 0.926348680038428, 0.631489487929038, 0.7443856388661001, 0.9260754381930228, 0.9544642924744549, 0.8497401318990601, 0.5604010177433062, 0.8036334301115304, 0.7898153537185114, 0.8491431337122072, 0.6570881560807702, 0.8389599143569951, 0.7944137576415592, 0.8132668978866627, 0.44714680104169846, 0.7978021044641371, 0.41921696608658454, 0.38876183891604754, 0.9248463736054193, 0.4277915265084825, 0.6345107008491314, 0.8008942533173764, 0.5087430598332189, 0.9414938992689892, 0.6922115882765215, 0.8296175750175913, 0.8593339228153332, 0.8975141534758351, 0.5977126281557783, 0.9279478536756302, 0.6485770817571253, 0.8905823996589662, 0.9332072841984264, 0.9432461110830079, 0.9410120781436498, 0.6339696776630096, 0.7120962557761497, 0.5841709037351369, 0.5928970840420333, 0.9006589732900512, 0.936371533648048, 0.6907852379101131, 0.7675780198071424, 0.9444587893431046, 0.4702336163336472, 0.8925536722101626, 0.8158978708906081, 0.822780392485108, 0.8037335327290217, 0.8382351003285965, 0.8941557358589171, 0.4796498334522667, 0.926348680038428, 0.6842118015950474, 0.6463580983468415, 0.8292048071278182, 0.5834426687867836, 0.8419845362148763, 0.2431563391580561, 0.7763142135369961, 0.9390550746437164, 0.7774903237071782, 0.8141232663130791, 0.9444089886680379, 0.430401459478284, 0.9192677156927759, 0.8427595869840984, 0.87120858451521, 0.5693182102579236, 0.820012080301976, 0.58719119911586, 0.42769376643096113, 0.3542595869275313, 0.89579938191327, 0.8743523014696554, 0.7820497043505815, 0.5279069501129625, 0.8869579700149332, 0.45488774279476296, 0.8514781135508903, 0.8278297091497892, 0.663749097381813, 0.5132851713944618, 0.4906566565015208, 0.6415219885510332, 0.6991293681294938, 0.8150539074042624, 0.5800669536763935, 0.9583771200922359, 0.7366090055976814, 0.5747817696023392, 0.5315376696882942, 0.8074446941396305, 0.9038901015569306, 0.9087015650331977, 0.6697291810323083, 0.5800669536763935, 0.8807270543114014, 0.5135845984304893, 0.9352791850238339, 0.36120709973337456, 0.6206709330576408, 0.906286252315459, 0.7937202818717513], \"xaxis\": \"x\", \"xbins\": {\"end\": 0.9785934574433302, \"size\": 0.05, \"start\": 0.03620763244300767}, \"yaxis\": \"y\"}, {\"autobinx\": false, \"histnorm\": \"probability density\", \"legendgroup\": \"other\", \"marker\": {\"color\": \"#4d4d4d\"}, \"name\": \"other\", \"opacity\": 0.7, \"type\": \"histogram\", \"x\": [0.2802292104526322, 0.9455194119275858, 0.4978743212349556, 0.5289145624519528, 0.28439238707197784, 0.2033309570226689, 0.27345747478543325, 0.8322873304845451, 0.389055896812549, 0.3675472469853882, 0.5781933746273124, 0.7401955299744071, 0.44969671697605845, 0.4367887814338696, 0.31593955341667695, 0.3775624358859999, 0.19282181046294666, 0.048451763306065584, 0.6005928650583868, 0.032225376113695775, 0.427412413738938, 0.23973251442015217, 0.13890126550157303, 0.8613925272127, 0.329663916828638, 0.19359965390713213, 0.6827271716759634, 0.1960905505555538, 0.08135735686643118, 0.39737240301928484, 0.13902987396822816, 0.6514166433739288, 0.6994753721471061, 0.7140886736258081, 0.5021795028970708, 0.48743245558712556, 0.5731139673640956, 0.8820820642542792, 0.559972149724866, 0.5061565591493914, 0.5066810377847554, 0.833805652807593, 0.6979972163580744, 0.3177574231538272, 0.13068190592986567, 0.758876109553896, 0.5681062961269688, 0.715544821914063, 0.762062625203523, 0.4464438677531786, 0.20995974230910305, 0.5262622410710028, 0.39442669669188163, 0.2537324982988368, 0.6775437642744659, 0.23876321589577687, 0.6369158982934647, 0.38960060362966165, 0.6034323722874255, 0.7769991715799629, 0.15199748354041337, 0.5641412449951732, 0.7590466800561823, 0.5969347905931296, 0.1048362779837843, 0.7217824369593382, 0.2662339163773806, 0.16472378978351135, 0.37760124376932414, 0.7071736299639594, 0.3436862995931572, 0.8384434752264291, 0.3635333644877426, 0.7813188949129265, 0.7279369976219869, 0.5641098847382463, 0.3863964747623771, 0.9209913370067284, 0.1477144681640183, 0.8809374658555192, 0.6533168894759348, 0.8873477284758582, 0.3697306267878623, 0.28319023347825867, 0.5203701741750857, 0.5523747693308857, 0.6387521731780509, 0.3881380695009739, 0.8487896327149285, 0.4636606453307818, 0.8384434752264291, 0.558266603669778, 0.21657231888677728, 0.3635333644877426, 0.5512671313974766, 0.5051039398599867, 0.5827915753039158, 0.49441682850108926, 0.47309171914705017, 0.6262595591688196, 0.5508242483721094, 0.47332791509789995, 0.7117569366896692, 0.3933786516273859, 0.16465066549244003, 0.7490394132223248, 0.769261050002088, 0.7431932405995126, 0.3141000916210982, 0.723735045552473, 0.6484132891031948, 0.688519894019609, 0.40496704226994307, 0.5803736122960511, 0.6327801522745691, 0.45115706990411364, 0.37268733756108086, 0.9009693101135351, 0.06496389958099598, 0.44431713201158524, 0.39960831974332744, 0.8662156944598043, 0.31018081106061823, 0.5339551117365043, 0.33311273919547707, 0.400132762133902, 0.8528754522806217, 0.14419347879543085, 0.11672350429510901, 0.44556702529145975, 0.6160120899414699, 0.13766892845409207, 0.5517204028384314, 0.5232178919035022, 0.35483403305733974, 0.4900213704561591, 0.8854578072659228, 0.43084122675663034, 0.7601186327653665, 0.14072030431570776, 0.6186690618327106, 0.5245054232921349, 0.7326259458716644, 0.5690781983520095, 0.4018508815425063, 0.24877469563805235, 0.7952501197393639, 0.8766221356386195, 0.303451532996695, 0.5357745481647883, 0.7096524147827454, 0.20877177283968149, 0.8635610141758273, 0.46736762313881036, 0.6061151992073851, 0.113015272873705, 0.40446014603085867, 0.6332606063976143, 0.648705381890928, 0.42186952587750404, 0.8047913565308571, 0.3017058309841093, 0.38406990132164637, 0.33494193042999065, 0.19929939967121216, 0.8624919783238055, 0.528785836409086, 0.43084122675663034, 0.47042159929499583, 0.5061565591493914, 0.5759491569657543, 0.8468794444363914, 0.20342296359496542, 0.5170831534483544, 0.3666753044655067, 0.6131723001375537, 0.4410646109528086, 0.6903416342484309, 0.3866428492574258, 0.4636606453307818, 0.4525459302795702, 0.03199256040434073, 0.7029629492254846, 0.2433141614541866, 0.548755973819273, 0.3775060302547258, 0.06593060991448157, 0.8745624549148976, 0.22931948662359403, 0.27267688907931714, 0.589328430619086, 0.8007160756317941, 0.5525637789187225, 0.5008522318356121, 0.4556212410144909, 0.17391722008742402, 0.43574637053357784, 0.3237440077649342, 0.6071692164257629, 0.6925152430641841, 0.592675381607996, 0.43854150134957587, 0.43854150134957587, 0.42437112972565305, 0.8061118855433299, 0.35195592295594336, 0.7605370065149419, 0.38898578429124253, 0.67510953655807, 0.872979709380305, 0.710510994258769, 0.720290290780972, 0.4820787970895852, 0.42019280799979697, 0.4304380754474639, 0.25285023254778977, 0.3238056884730761, 0.39471961640683584, 0.09510031985475974, 0.367046376808582, 0.21500793651835448, 0.8705359023101334, 0.6100742529031461, 0.6226449432624995, 0.7279369976219869, 0.3643494054700089, 0.09992017521484964, 0.41475515148757036, 0.6462260464983366, 0.14102909592513518, 0.48949585696458414, 0.5239520436918008, 0.6084413884537807, 0.5655473856702703, 0.9517420512476797, 0.7489379515982664, 0.4647937384849751, 0.7915321263825208, 0.44112279258530757, 0.5734340256727429, 0.6604471727860799, 0.4845203185458914, 0.6968730453869196, 0.5315374962198609, 0.8685951485887234, 0.6242442748350044, 0.2912097196987059, 0.7725938221565348, 0.2067629769731588, 0.30221725334927335, 0.13129342562285412, 0.6467789443522378, 0.6994753721471061, 0.11825382206919556, 0.41022417118631593, 0.4882665226122541, 0.7732287086973071, 0.25374762405010176, 0.49441682850108926, 0.3723877205427743, 0.652330313245635, 0.43667799883041203, 0.5964718913578133, 0.55172276504346, 0.24113559934961917, 0.8243980268882987, 0.7263843594269437, 0.43535214809021755, 0.8721122798612579, 0.18723914490145582, 0.6486906676970999, 0.11576704656818047, 0.4328241622975616, 0.491481212420291, 0.5264345378086769, 0.33856526784971647, 0.2967410926251248, 0.581398831228375, 0.5973776665460488, 0.6195406102170065, 0.37782717658841725, 0.323061133240968, 0.17420808473594895, 0.19634770547538957, 0.46492234760650425, 0.49613167963272686, 0.5812209036149294, 0.6057291775435286, 0.63414717387345, 0.5702687187355167, 0.8604975146328253, 0.6309022132706124, 0.48732991249542923, 0.6887148870948692, 0.41581945293096145, 0.5706760596351739, 0.4831274653996314, 0.06684727567316755, 0.49090643211649887, 0.15191610726090596, 0.2711405311223577, 0.7653618545702112, 0.09266565137124261, 0.4554350627407873, 0.19698919164573708, 0.6930185080649685, 0.5227537922811563, 0.50434568709929, 0.7082092780767422, 0.46058046365566996, 0.6735723234187477, 0.4285936050615775, 0.323061133240968, 0.5168500865319015, 0.6161307914674419, 0.23456444218973552, 0.3192004782541023, 0.21968945907811915, 0.5028183230931117, 0.43371621376298963, 0.6744209213341115, 0.5940260419772637, 0.13783310426722128, 0.5136444387530009, 0.5508647999875032, 0.4955911012838212, 0.9814394195009358, 0.8260225289794664, 0.17965956338109995, 0.46844896472597397, 0.6048119589659149, 0.3289160319090978, 0.2454606394453749, 0.7497022835596558, 0.683485355417811, 0.20995974230910305, 0.23504578258460665, 0.37175956099497537, 0.4875530438829156, 0.24982584224249993, 0.6282829625348888, 0.4520795162158371, 0.8200372413039435, 0.12832513643528837, 0.5299630655130737, 0.29552777318700446, 0.24021937552346023, 0.5429028773737552, 0.6311869746243346, 0.4145977043912777, 0.39329840463575844, 0.39070335653410526, 0.4286990948130573, 0.846836560604146, 0.6880850122626078], \"xaxis\": \"x\", \"xbins\": {\"end\": 0.9814394195009358, \"size\": 0.05, \"start\": 0.03199256040434073}, \"yaxis\": \"y\"}, {\"legendgroup\": \"good\", \"marker\": {\"color\": \"#ed0400\", \"symbol\": \"line-ns-open\"}, \"mode\": \"markers\", \"name\": \"good\", \"showlegend\": false, \"type\": \"scatter\", \"x\": [0.8156061324462894, 0.42491310922683634, 0.8867827646463432, 0.8014995238430205, 0.30499958310650876, 0.5817355832705369, 0.959171062334887, 0.7854416128369749, 0.9085690698200813, 0.8998600376511439, 0.6341165000693628, 0.412102187638673, 0.7643629411050379, 0.4710001938005606, 0.40182653035141874, 0.40438056362905367, 0.8870480016118494, 0.3650667978415713, 0.9064321709292111, 0.9327245345966092, 0.6458420185168736, 0.8821841129047617, 0.6704018506542557, 0.7655671181822064, 0.8616986618932058, 0.48774537944210006, 0.9637355036179479, 0.6794204065079696, 0.6044835155949141, 0.7867954023600708, 0.9137982268836646, 0.5867502063434873, 0.8048584290077971, 0.9718511071053526, 0.9627192884041744, 0.7978623718349598, 0.6091120966723917, 0.8943338178728011, 0.8853376735027229, 0.9045563504021151, 0.9264844632598176, 0.6342457655367447, 0.9414033426130164, 0.5636516403732365, 0.5172967922101196, 0.4836896337264441, 0.35199620689495453, 0.788779954566273, 0.9696552399248426, 0.772496554239754, 0.8132656157621138, 0.4539090261140653, 0.9333708926412786, 0.679765045723866, 0.48457442622955804, 0.4248820606938153, 0.6737819616086004, 0.8780741425819777, 0.38340602447337646, 0.90634085684919, 0.5574014604752268, 0.6804147683859246, 0.9077110088845216, 0.7718472635729894, 0.4717552048891654, 0.22222808308441652, 0.8616549355667619, 0.705749071892896, 0.4699129352300819, 0.9680524782819758, 0.8891353183282249, 0.9466602521798594, 0.8553382520847058, 0.7430243903066251, 0.6616131862201935, 0.6919609500216202, 0.96565744679506, 0.913108907487878, 0.5395521774612226, 0.9026238558501023, 0.6550941529376255, 0.9757876320152292, 0.8833495792027257, 0.6666029765862381, 0.8504582120840628, 0.9320215595878566, 0.7639947574915884, 0.6085229656221847, 0.9557131606798471, 0.46184432615952054, 0.5642658412077981, 0.8815615400732472, 0.7189203536918151, 0.9301020530176726, 0.7341394174346678, 0.7759189559372703, 0.8448078654733812, 0.9012666081120407, 0.8926028620066223, 0.5287492720273277, 0.6874206920638863, 0.37408584674942635, 0.8348370105186077, 0.8697567261320243, 0.9175759024810304, 0.44644098895981, 0.8874384748400057, 0.7787567487441118, 0.9416122482572158, 0.3265229243180111, 0.9308095750950773, 0.42267134533232753, 0.43068181214270274, 0.8727308285810839, 0.7201611177732586, 0.8430904589044517, 0.8140617541555761, 0.9456747441572588, 0.6672663325862807, 0.8756470416862959, 0.518871521713375, 0.7040615347784164, 0.4957960231649875, 0.6250130361556073, 0.27413726132188326, 0.5193133578087885, 0.37656641690434584, 0.5808048103476511, 0.7917827117482167, 0.36569143480873245, 0.7232542293832885, 0.9785934574433302, 0.5715075300165849, 0.8182555969893297, 0.5448461144048058, 0.9491291995847589, 0.4833587957991669, 0.3189279754564957, 0.9184825510014271, 0.5524830505676419, 0.9600429304649183, 0.7818180966165994, 0.7962710274484252, 0.7569429870375118, 0.46184432615952054, 0.7641514270390748, 0.9486763575522457, 0.8086368705092697, 0.6784536879503494, 0.6877019790624462, 0.6082670858563528, 0.6053794617794684, 0.6319330693089359, 0.4982105707488519, 0.6787928880949093, 0.9231980717613485, 0.8831230955067948, 0.6845485656817341, 0.8799204262605215, 0.9164563829924386, 0.7819268199067826, 0.23469888428232324, 0.9492377841603665, 0.8826092272015389, 0.6360541596480074, 0.5184081252698399, 0.6400126753125241, 0.542646305979658, 0.4479501208302092, 0.7783171875827786, 0.7867712153112567, 0.5236605417423803, 0.6959846197179591, 0.7925023358445066, 0.6683189355892497, 0.18737025221649042, 0.42506327048176057, 0.7272596040941706, 0.7314191754306454, 0.4827891324637794, 0.6649341228620356, 0.9038332731164471, 0.9588917860646077, 0.8945194928389463, 0.49833043835950624, 0.7997712594855277, 0.8577935987172323, 0.7622736922026153, 0.8039391974899521, 0.7396811504731934, 0.8115340233127679, 0.801728888664367, 0.738451208106372, 0.5859674792922007, 0.1865203674848816, 0.8773430435604171, 0.36888329310067386, 0.8651817982269884, 0.9067615420962557, 0.8594983988587351, 0.7437750884018276, 0.9145224932934428, 0.9135679891815164, 0.8001832456898428, 0.6860977766129374, 0.9377826008632761, 0.9300369611912853, 0.6997062971069969, 0.5693182102579236, 0.3404656140239559, 0.7160591142088384, 0.7953146078011, 0.8869803873277935, 0.7639982823097876, 0.8681285227071118, 0.576868797021353, 0.93035102563313, 0.8375600281828176, 0.8279918435672958, 0.9266689436294401, 0.7559862346636359, 0.5099889666930224, 0.6914445842613687, 0.9651950326885705, 0.87851968214492, 0.8499702807396289, 0.4685752957996948, 0.7241546992314323, 0.7848147251007912, 0.7341394174346678, 0.7008877443692281, 0.340588975625529, 0.5013021766499856, 0.8321174529331695, 0.8818378666553491, 0.9176909075187759, 0.8634678749265305, 0.7436082905772717, 0.9343776659412377, 0.7668809937296346, 0.6243383802582345, 0.5332560471205093, 0.6907315465649003, 0.16626803588025432, 0.1668542888532837, 0.7408943843163458, 0.5221312328975666, 0.7457559475413279, 0.46389636934606376, 0.9292627865919654, 0.5268311186840582, 0.4244151934213653, 0.643310536612302, 0.8577438313980266, 0.7816208399762355, 0.8553382520847058, 0.7010035672814305, 0.5242572272016158, 0.9187320011579697, 0.8703498177621264, 0.6713045345576062, 0.9137982268836646, 0.8614414457916845, 0.9445662266054761, 0.8808216590199034, 0.7386378115490353, 0.8873009977622293, 0.9157094897337859, 0.6606038558129893, 0.9296803968514485, 0.8864322240790464, 0.5146720135715994, 0.8720710714485208, 0.9415427660945741, 0.9138701141498735, 0.6527559092576063, 0.8751970040938668, 0.9249766460056568, 0.801728888664367, 0.6575848465963361, 0.6934824043184128, 0.8619113960143526, 0.9419078024651042, 0.9591721389341828, 0.8397407150753159, 0.9084383840076588, 0.4963969309336195, 0.7359588175524252, 0.3531961907069324, 0.9279819479140234, 0.7752976919572294, 0.8665226278427577, 0.9515211055933231, 0.7314191754306454, 0.890886918514299, 0.3235491032739525, 0.3719939405423586, 0.6323804178173072, 0.8398006965792015, 0.8239469134189235, 0.8592101816891015, 0.7615002907198236, 0.8688259750909261, 0.8718104001390852, 0.5838074755684882, 0.8756470416862959, 0.901850575196968, 0.9451930143658351, 0.6253812669856891, 0.5890764576710766, 0.4921052500998711, 0.4862070578416567, 0.9170647663398394, 0.7035583451969506, 0.8476385889092957, 0.5603058978573646, 0.5810606890504925, 0.9088604673919816, 0.8903252600075929, 0.944267921154058, 0.9435968591480925, 0.938237366988842, 0.9357286047893738, 0.7961386682142712, 0.7840233885688647, 0.2513590507613302, 0.7389284097502917, 0.9053472250810051, 0.44438282424164377, 0.862281110352348, 0.8021059248496223, 0.9152740930046814, 0.643737358401971, 0.8540304955499701, 0.8613418170006786, 0.6911084183178322, 0.8848367871057808, 0.8387883096682573, 0.5942651630821018, 0.65691393717736, 0.6369979527510315, 0.8280658524313272, 0.9640736168216585, 0.6546311715671466, 0.5599819536107853, 0.48348053317652906, 0.7668016587569692, 0.03620763244300767, 0.7364400865449663, 0.37408584674942635, 0.8767503774172, 0.8743962287172513, 0.8751970040938668, 0.8833495792027257, 0.7091886355621774, 0.87006937054451, 0.7904001815220257, 0.8761418339280951, 0.8306834851111597, 0.7531715889012326, 0.38181207472529843, 0.6490458991820136, 0.9138057013338913, 0.9046222904886461, 0.17956061692355052, 0.7506163079023257, 0.8963285795381793, 0.8848361664653354, 0.9283037217377402, 0.45996158699034445, 0.7290858434196763, 0.8319094967702583, 0.6578018675312727, 0.18727567457681707, 0.8673410249845035, 0.9453298670648187, 0.9446538464906173, 0.19605573045952288, 0.6723831041639817, 0.3438281302059518, 0.37858973820495484, 0.6953170483296187, 0.21463507152544156, 0.26963792069965237, 0.3280912492037974, 0.8399932187801539, 0.420387898633768, 0.36522500752858966, 0.5810560693343539, 0.9306346767722963, 0.7167716539092029, 0.656736106921484, 0.5549139996760648, 0.6909161521388689, 0.591904263202073, 0.884703171197362, 0.866402281883595, 0.7582770814524421, 0.8990773411030794, 0.1818065866116437, 0.6222165686186035, 0.17261914235374884, 0.8156064679757086, 0.4851213943917703, 0.8871292211128762, 0.8398494053952754, 0.703270618172154, 0.6305543892506115, 0.7494149477175548, 0.1532408287022325, 0.6159732902773407, 0.738220551127759, 0.8354520044441791, 0.8536870432671441, 0.5751476712690671, 0.9077719201719568, 0.7878515691455199, 0.6672663325862807, 0.45293736875445273, 0.17058553029544155, 0.747933377844996, 0.8400163125056676, 0.4516778718827729, 0.6082670858563528, 0.8401843469141149, 0.7636885291754726, 0.789170795337903, 0.8128612802083497, 0.7522530659814418, 0.8086757686066508, 0.8356255123032285, 0.9241779635105248, 0.9674588597049086, 0.9368885694202199, 0.4990764491242286, 0.876561204324957, 0.554264192243629, 0.5967716244634195, 0.9060244606340249, 0.8401608718856799, 0.7329750583133859, 0.8021769878309102, 0.9316817655017511, 0.45488322534173153, 0.798578398438993, 0.7425236774748816, 0.5742682328784404, 0.4937681935814938, 0.8972164286692267, 0.8914273370768748, 0.9377613518261881, 0.8862258850530264, 0.8591757581361523, 0.7410678096850266, 0.6822336012657398, 0.9201658505843877, 0.6982578893131915, 0.5746709232170782, 0.7626532952948841, 0.7137703530889916, 0.7520971196461234, 0.4473853625959922, 0.7957460056304991, 0.4833174871501707, 0.8758467705785958, 0.4689303842787964, 0.6133612564737879, 0.8568681391705205, 0.6835133967314007, 0.9732070839986944, 0.21435716257549006, 0.5761668962420043, 0.4055433603128916, 0.3743394998756179, 0.9118635774953143, 0.964551884718591, 0.9306459334511011, 0.8424802355113449, 0.7739144871152517, 0.6872688771534424, 0.8590561833388345, 0.6714384475466295, 0.6408669500407106, 0.5203550269219845, 0.2856853969697174, 0.857760555506807, 0.9307094503226838, 0.6787928880949093, 0.8308635255795866, 0.29271374211533296, 0.6769315553524353, 0.23831547366416572, 0.5895099457120908, 0.8994675076574448, 0.8893400405584444, 0.8456825404777587, 0.5399612081435882, 0.6188649121485582, 0.9281492942813848, 0.7611740601422801, 0.46550237374781617, 0.8896861436466836, 0.9038901015569306, 0.5044440900554997, 0.9215480939667524, 0.6930273792518707, 0.8723244804196287, 0.5624338775604165, 0.9226297661236537, 0.8469231754225917, 0.9430557295321259, 0.9097116306258912, 0.5988707702267543, 0.3813853072548755, 0.8843832309478876, 0.9006952500629406, 0.918975987201669, 0.18997930334445084, 0.8923106748541326, 0.8461388699436441, 0.5973439234355874, 0.9544642924744549, 0.91770416680597, 0.9177239854204658, 0.17584552180125673, 0.9240099144459667, 0.48524948024905407, 0.8889685222180134, 0.5785503824403398, 0.7511953459672914, 0.6887596776945688, 0.6717539058356753, 0.7168761391602206, 0.7134478068952186, 0.834626350903405, 0.5715867980362679, 0.6588392688727011, 0.9488572786900573, 0.8920529250761863, 0.8891353183282249, 0.707981940789761, 0.926348680038428, 0.631489487929038, 0.7443856388661001, 0.9260754381930228, 0.9544642924744549, 0.8497401318990601, 0.5604010177433062, 0.8036334301115304, 0.7898153537185114, 0.8491431337122072, 0.6570881560807702, 0.8389599143569951, 0.7944137576415592, 0.8132668978866627, 0.44714680104169846, 0.7978021044641371, 0.41921696608658454, 0.38876183891604754, 0.9248463736054193, 0.4277915265084825, 0.6345107008491314, 0.8008942533173764, 0.5087430598332189, 0.9414938992689892, 0.6922115882765215, 0.8296175750175913, 0.8593339228153332, 0.8975141534758351, 0.5977126281557783, 0.9279478536756302, 0.6485770817571253, 0.8905823996589662, 0.9332072841984264, 0.9432461110830079, 0.9410120781436498, 0.6339696776630096, 0.7120962557761497, 0.5841709037351369, 0.5928970840420333, 0.9006589732900512, 0.936371533648048, 0.6907852379101131, 0.7675780198071424, 0.9444587893431046, 0.4702336163336472, 0.8925536722101626, 0.8158978708906081, 0.822780392485108, 0.8037335327290217, 0.8382351003285965, 0.8941557358589171, 0.4796498334522667, 0.926348680038428, 0.6842118015950474, 0.6463580983468415, 0.8292048071278182, 0.5834426687867836, 0.8419845362148763, 0.2431563391580561, 0.7763142135369961, 0.9390550746437164, 0.7774903237071782, 0.8141232663130791, 0.9444089886680379, 0.430401459478284, 0.9192677156927759, 0.8427595869840984, 0.87120858451521, 0.5693182102579236, 0.820012080301976, 0.58719119911586, 0.42769376643096113, 0.3542595869275313, 0.89579938191327, 0.8743523014696554, 0.7820497043505815, 0.5279069501129625, 0.8869579700149332, 0.45488774279476296, 0.8514781135508903, 0.8278297091497892, 0.663749097381813, 0.5132851713944618, 0.4906566565015208, 0.6415219885510332, 0.6991293681294938, 0.8150539074042624, 0.5800669536763935, 0.9583771200922359, 0.7366090055976814, 0.5747817696023392, 0.5315376696882942, 0.8074446941396305, 0.9038901015569306, 0.9087015650331977, 0.6697291810323083, 0.5800669536763935, 0.8807270543114014, 0.5135845984304893, 0.9352791850238339, 0.36120709973337456, 0.6206709330576408, 0.906286252315459, 0.7937202818717513], \"xaxis\": \"x\", \"y\": [\"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\"], \"yaxis\": \"y2\"}, {\"legendgroup\": \"other\", \"marker\": {\"color\": \"#4d4d4d\", \"symbol\": \"line-ns-open\"}, \"mode\": \"markers\", \"name\": \"other\", \"showlegend\": false, \"type\": \"scatter\", \"x\": [0.2802292104526322, 0.9455194119275858, 0.4978743212349556, 0.5289145624519528, 0.28439238707197784, 0.2033309570226689, 0.27345747478543325, 0.8322873304845451, 0.389055896812549, 0.3675472469853882, 0.5781933746273124, 0.7401955299744071, 0.44969671697605845, 0.4367887814338696, 0.31593955341667695, 0.3775624358859999, 0.19282181046294666, 0.048451763306065584, 0.6005928650583868, 0.032225376113695775, 0.427412413738938, 0.23973251442015217, 0.13890126550157303, 0.8613925272127, 0.329663916828638, 0.19359965390713213, 0.6827271716759634, 0.1960905505555538, 0.08135735686643118, 0.39737240301928484, 0.13902987396822816, 0.6514166433739288, 0.6994753721471061, 0.7140886736258081, 0.5021795028970708, 0.48743245558712556, 0.5731139673640956, 0.8820820642542792, 0.559972149724866, 0.5061565591493914, 0.5066810377847554, 0.833805652807593, 0.6979972163580744, 0.3177574231538272, 0.13068190592986567, 0.758876109553896, 0.5681062961269688, 0.715544821914063, 0.762062625203523, 0.4464438677531786, 0.20995974230910305, 0.5262622410710028, 0.39442669669188163, 0.2537324982988368, 0.6775437642744659, 0.23876321589577687, 0.6369158982934647, 0.38960060362966165, 0.6034323722874255, 0.7769991715799629, 0.15199748354041337, 0.5641412449951732, 0.7590466800561823, 0.5969347905931296, 0.1048362779837843, 0.7217824369593382, 0.2662339163773806, 0.16472378978351135, 0.37760124376932414, 0.7071736299639594, 0.3436862995931572, 0.8384434752264291, 0.3635333644877426, 0.7813188949129265, 0.7279369976219869, 0.5641098847382463, 0.3863964747623771, 0.9209913370067284, 0.1477144681640183, 0.8809374658555192, 0.6533168894759348, 0.8873477284758582, 0.3697306267878623, 0.28319023347825867, 0.5203701741750857, 0.5523747693308857, 0.6387521731780509, 0.3881380695009739, 0.8487896327149285, 0.4636606453307818, 0.8384434752264291, 0.558266603669778, 0.21657231888677728, 0.3635333644877426, 0.5512671313974766, 0.5051039398599867, 0.5827915753039158, 0.49441682850108926, 0.47309171914705017, 0.6262595591688196, 0.5508242483721094, 0.47332791509789995, 0.7117569366896692, 0.3933786516273859, 0.16465066549244003, 0.7490394132223248, 0.769261050002088, 0.7431932405995126, 0.3141000916210982, 0.723735045552473, 0.6484132891031948, 0.688519894019609, 0.40496704226994307, 0.5803736122960511, 0.6327801522745691, 0.45115706990411364, 0.37268733756108086, 0.9009693101135351, 0.06496389958099598, 0.44431713201158524, 0.39960831974332744, 0.8662156944598043, 0.31018081106061823, 0.5339551117365043, 0.33311273919547707, 0.400132762133902, 0.8528754522806217, 0.14419347879543085, 0.11672350429510901, 0.44556702529145975, 0.6160120899414699, 0.13766892845409207, 0.5517204028384314, 0.5232178919035022, 0.35483403305733974, 0.4900213704561591, 0.8854578072659228, 0.43084122675663034, 0.7601186327653665, 0.14072030431570776, 0.6186690618327106, 0.5245054232921349, 0.7326259458716644, 0.5690781983520095, 0.4018508815425063, 0.24877469563805235, 0.7952501197393639, 0.8766221356386195, 0.303451532996695, 0.5357745481647883, 0.7096524147827454, 0.20877177283968149, 0.8635610141758273, 0.46736762313881036, 0.6061151992073851, 0.113015272873705, 0.40446014603085867, 0.6332606063976143, 0.648705381890928, 0.42186952587750404, 0.8047913565308571, 0.3017058309841093, 0.38406990132164637, 0.33494193042999065, 0.19929939967121216, 0.8624919783238055, 0.528785836409086, 0.43084122675663034, 0.47042159929499583, 0.5061565591493914, 0.5759491569657543, 0.8468794444363914, 0.20342296359496542, 0.5170831534483544, 0.3666753044655067, 0.6131723001375537, 0.4410646109528086, 0.6903416342484309, 0.3866428492574258, 0.4636606453307818, 0.4525459302795702, 0.03199256040434073, 0.7029629492254846, 0.2433141614541866, 0.548755973819273, 0.3775060302547258, 0.06593060991448157, 0.8745624549148976, 0.22931948662359403, 0.27267688907931714, 0.589328430619086, 0.8007160756317941, 0.5525637789187225, 0.5008522318356121, 0.4556212410144909, 0.17391722008742402, 0.43574637053357784, 0.3237440077649342, 0.6071692164257629, 0.6925152430641841, 0.592675381607996, 0.43854150134957587, 0.43854150134957587, 0.42437112972565305, 0.8061118855433299, 0.35195592295594336, 0.7605370065149419, 0.38898578429124253, 0.67510953655807, 0.872979709380305, 0.710510994258769, 0.720290290780972, 0.4820787970895852, 0.42019280799979697, 0.4304380754474639, 0.25285023254778977, 0.3238056884730761, 0.39471961640683584, 0.09510031985475974, 0.367046376808582, 0.21500793651835448, 0.8705359023101334, 0.6100742529031461, 0.6226449432624995, 0.7279369976219869, 0.3643494054700089, 0.09992017521484964, 0.41475515148757036, 0.6462260464983366, 0.14102909592513518, 0.48949585696458414, 0.5239520436918008, 0.6084413884537807, 0.5655473856702703, 0.9517420512476797, 0.7489379515982664, 0.4647937384849751, 0.7915321263825208, 0.44112279258530757, 0.5734340256727429, 0.6604471727860799, 0.4845203185458914, 0.6968730453869196, 0.5315374962198609, 0.8685951485887234, 0.6242442748350044, 0.2912097196987059, 0.7725938221565348, 0.2067629769731588, 0.30221725334927335, 0.13129342562285412, 0.6467789443522378, 0.6994753721471061, 0.11825382206919556, 0.41022417118631593, 0.4882665226122541, 0.7732287086973071, 0.25374762405010176, 0.49441682850108926, 0.3723877205427743, 0.652330313245635, 0.43667799883041203, 0.5964718913578133, 0.55172276504346, 0.24113559934961917, 0.8243980268882987, 0.7263843594269437, 0.43535214809021755, 0.8721122798612579, 0.18723914490145582, 0.6486906676970999, 0.11576704656818047, 0.4328241622975616, 0.491481212420291, 0.5264345378086769, 0.33856526784971647, 0.2967410926251248, 0.581398831228375, 0.5973776665460488, 0.6195406102170065, 0.37782717658841725, 0.323061133240968, 0.17420808473594895, 0.19634770547538957, 0.46492234760650425, 0.49613167963272686, 0.5812209036149294, 0.6057291775435286, 0.63414717387345, 0.5702687187355167, 0.8604975146328253, 0.6309022132706124, 0.48732991249542923, 0.6887148870948692, 0.41581945293096145, 0.5706760596351739, 0.4831274653996314, 0.06684727567316755, 0.49090643211649887, 0.15191610726090596, 0.2711405311223577, 0.7653618545702112, 0.09266565137124261, 0.4554350627407873, 0.19698919164573708, 0.6930185080649685, 0.5227537922811563, 0.50434568709929, 0.7082092780767422, 0.46058046365566996, 0.6735723234187477, 0.4285936050615775, 0.323061133240968, 0.5168500865319015, 0.6161307914674419, 0.23456444218973552, 0.3192004782541023, 0.21968945907811915, 0.5028183230931117, 0.43371621376298963, 0.6744209213341115, 0.5940260419772637, 0.13783310426722128, 0.5136444387530009, 0.5508647999875032, 0.4955911012838212, 0.9814394195009358, 0.8260225289794664, 0.17965956338109995, 0.46844896472597397, 0.6048119589659149, 0.3289160319090978, 0.2454606394453749, 0.7497022835596558, 0.683485355417811, 0.20995974230910305, 0.23504578258460665, 0.37175956099497537, 0.4875530438829156, 0.24982584224249993, 0.6282829625348888, 0.4520795162158371, 0.8200372413039435, 0.12832513643528837, 0.5299630655130737, 0.29552777318700446, 0.24021937552346023, 0.5429028773737552, 0.6311869746243346, 0.4145977043912777, 0.39329840463575844, 0.39070335653410526, 0.4286990948130573, 0.846836560604146, 0.6880850122626078], \"xaxis\": \"x\", \"y\": [\"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\"], \"yaxis\": \"y2\"}], \"layout\": {\"barmode\": \"overlay\", \"hovermode\": \"closest\", \"legend\": {\"orientation\": \"h\", \"traceorder\": \"reversed\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y2\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"Probability\"}, \"zeroline\": false}, \"yaxis\": {\"anchor\": \"free\", \"domain\": [0.35, 1], \"position\": 0.0, \"title\": {\"text\": \"Share\"}}, \"yaxis2\": {\"anchor\": \"x\", \"domain\": [0, 0.25], \"dtick\": 1, \"showticklabels\": false}}}}, {\"id\": \"tab_bad\", \"title\": \"bad\", \"graph\": {\"data\": [{\"autobinx\": false, \"histnorm\": \"probability density\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#ed0400\"}, \"name\": \"bad\", \"opacity\": 0.7, \"type\": \"histogram\", \"x\": [0.7197707895473677, 0.05448058807241418, 0.5021256787650443, 0.4710854375480472, 0.7156076129280222, 0.7966690429773311, 0.7265425252145667, 0.16771266951545494, 0.610944103187451, 0.6324527530146118, 0.42180662537268765, 0.2598044700255929, 0.5503032830239416, 0.5632112185661304, 0.6840604465833231, 0.6224375641140001, 0.8071781895370533, 0.9515482366939344, 0.3994071349416132, 0.9677746238863042, 0.572587586261062, 0.7602674855798478, 0.861098734498427, 0.1386074727873, 0.6703360831713621, 0.8064003460928679, 0.3172728283240366, 0.8039094494444462, 0.9186426431335688, 0.6026275969807151, 0.8609701260317718, 0.3485833566260712, 0.3005246278528939, 0.2859113263741919, 0.4978204971029292, 0.5125675444128744, 0.4268860326359044, 0.11791793574572085, 0.440027850275134, 0.4938434408506086, 0.4933189622152446, 0.166194347192407, 0.30200278364192557, 0.6822425768461728, 0.8693180940701344, 0.24112389044610405, 0.43189370387303117, 0.284455178085937, 0.23793737479647703, 0.5535561322468214, 0.7900402576908969, 0.47373775892899717, 0.6055733033081183, 0.7462675017011632, 0.32245623572553406, 0.7612367841042231, 0.36308410170653527, 0.6103993963703384, 0.3965676277125745, 0.2230008284200371, 0.8480025164595866, 0.43585875500482685, 0.24095331994381775, 0.4030652094068704, 0.8951637220162157, 0.2782175630406618, 0.7337660836226194, 0.8352762102164887, 0.6223987562306759, 0.2928263700360406, 0.6563137004068428, 0.16155652477357085, 0.6364666355122575, 0.2186811050870735, 0.27206300237801306, 0.4358901152617537, 0.6136035252376228, 0.07900866299327158, 0.8522855318359817, 0.11906253414448076, 0.3466831105240652, 0.11265227152414181, 0.6302693732121377, 0.7168097665217413, 0.4796298258249143, 0.4476252306691143, 0.3612478268219491, 0.611861930499026, 0.15121036728507153, 0.5363393546692182, 0.16155652477357085, 0.441733396330222, 0.7834276811132227, 0.6364666355122575, 0.44873286860252337, 0.4948960601400133, 0.4172084246960842, 0.5055831714989107, 0.5269082808529498, 0.3737404408311804, 0.4491757516278906, 0.5266720849021, 0.2882430633103308, 0.6066213483726142, 0.83534933450756, 0.2509605867776752, 0.230738949997912, 0.25680675940048736, 0.6858999083789018, 0.27626495444752697, 0.35158671089680515, 0.311480105980391, 0.5950329577300569, 0.4196263877039489, 0.3672198477254309, 0.5488429300958864, 0.6273126624389191, 0.0990306898864649, 0.935036100419004, 0.5556828679884147, 0.6003916802566726, 0.1337843055401957, 0.6898191889393818, 0.46604488826349566, 0.6668872608045229, 0.5998672378660981, 0.14712454771937833, 0.8558065212045691, 0.883276495704891, 0.5544329747085402, 0.38398791005853006, 0.8623310715459079, 0.4482795971615686, 0.4767821080964978, 0.6451659669426603, 0.5099786295438409, 0.11454219273407718, 0.5691587732433696, 0.2398813672346335, 0.8592796956842923, 0.38133093816728936, 0.4754945767078651, 0.2673740541283356, 0.43092180164799054, 0.5981491184574936, 0.7512253043619477, 0.20474988026063612, 0.12337786436138054, 0.6965484670033051, 0.4642254518352117, 0.29034758521725457, 0.7912282271603185, 0.1364389858241727, 0.5326323768611896, 0.3938848007926149, 0.886984727126295, 0.5955398539691413, 0.3667393936023857, 0.35129461810907203, 0.578130474122496, 0.1952086434691429, 0.6982941690158907, 0.6159300986783536, 0.6650580695700093, 0.8007006003287879, 0.13750802167619447, 0.47121416359091395, 0.5691587732433696, 0.5295784007050042, 0.4938434408506086, 0.4240508430342457, 0.1531205555636086, 0.7965770364050346, 0.4829168465516456, 0.6333246955344933, 0.38682769986244625, 0.5589353890471914, 0.30965836575156913, 0.6133571507425741, 0.5363393546692182, 0.5474540697204298, 0.9680074395956593, 0.29703705077451537, 0.7566858385458134, 0.451244026180727, 0.6224939697452743, 0.9340693900855184, 0.1254375450851024, 0.770680513376406, 0.7273231109206828, 0.410671569380914, 0.19928392436820586, 0.44743622108127745, 0.4991477681643879, 0.5443787589855091, 0.826082779912576, 0.5642536294664222, 0.6762559922350657, 0.39283078357423706, 0.3074847569358159, 0.40732461839200396, 0.5614584986504241, 0.5614584986504241, 0.575628870274347, 0.1938881144566701, 0.6480440770440566, 0.23946299348505806, 0.6110142157087575, 0.32489046344192996, 0.127020290619695, 0.28948900574123104, 0.27970970921902805, 0.5179212029104148, 0.579807192000203, 0.5695619245525361, 0.7471497674522103, 0.6761943115269239, 0.6052803835931642, 0.9048996801452402, 0.632953623191418, 0.7849920634816455, 0.12946409768986655, 0.3899257470968539, 0.37735505673750047, 0.27206300237801306, 0.6356505945299911, 0.9000798247851504, 0.5852448485124296, 0.3537739535016634, 0.8589709040748648, 0.5105041430354158, 0.4760479563081992, 0.3915586115462193, 0.4344526143297297, 0.04825794875232026, 0.25106204840173363, 0.5352062615150248, 0.2084678736174792, 0.5588772074146924, 0.42656597432725707, 0.3395528272139201, 0.5154796814541086, 0.30312695461308037, 0.4684625037801391, 0.13140485141127656, 0.37575572516499556, 0.7087902803012941, 0.22740617784346517, 0.7932370230268412, 0.6977827466507267, 0.8687065743771458, 0.3532210556477622, 0.3005246278528939, 0.8817461779308045, 0.5897758288136841, 0.5117334773877459, 0.2267712913026929, 0.7462523759498982, 0.5055831714989107, 0.6276122794572256, 0.34766968675436505, 0.563322001169588, 0.4035281086421867, 0.44827723495654004, 0.7588644006503809, 0.17560197311170134, 0.2736156405730563, 0.5646478519097824, 0.12788772013874206, 0.8127608550985441, 0.35130933230290007, 0.8842329534318195, 0.5671758377024384, 0.508518787579709, 0.4735654621913231, 0.6614347321502836, 0.7032589073748752, 0.418601168771625, 0.40262233345395115, 0.38045938978299354, 0.6221728234115828, 0.6769388667590319, 0.825791915264051, 0.8036522945246104, 0.5350776523934957, 0.5038683203672731, 0.4187790963850706, 0.3942708224564714, 0.36585282612655, 0.42973128126448334, 0.1395024853671747, 0.36909778672938764, 0.5126700875045708, 0.31128511290513083, 0.5841805470690385, 0.42932394036482613, 0.5168725346003686, 0.9331527243268325, 0.5090935678835011, 0.848083892739094, 0.7288594688776423, 0.23463814542978878, 0.9073343486287574, 0.5445649372592127, 0.8030108083542629, 0.30698149193503155, 0.47724620771884374, 0.49565431290071005, 0.29179072192325783, 0.53941953634433, 0.32642767658125227, 0.5714063949384225, 0.6769388667590319, 0.48314991346809855, 0.3838692085325581, 0.7654355578102645, 0.6807995217458978, 0.7803105409218809, 0.4971816769068883, 0.5662837862370104, 0.32557907866588853, 0.4059739580227363, 0.8621668957327787, 0.4863555612469991, 0.44913520001249685, 0.5044088987161788, 0.018560580499064172, 0.17397747102053363, 0.8203404366189, 0.531551035274026, 0.3951880410340851, 0.6710839680909022, 0.7545393605546251, 0.25029771644034415, 0.31651464458218903, 0.7900402576908969, 0.7649542174153934, 0.6282404390050247, 0.5124469561170844, 0.7501741577575001, 0.3717170374651112, 0.5479204837841629, 0.1799627586960565, 0.8716748635647116, 0.4700369344869263, 0.7044722268129955, 0.7597806244765397, 0.4570971226262448, 0.3688130253756654, 0.5854022956087224, 0.6067015953642416, 0.6092966434658947, 0.5713009051869427, 0.15316343939585397, 0.31191498773739224], \"xaxis\": \"x\", \"xbins\": {\"end\": 0.9680074395956593, \"size\": 0.05, \"start\": 0.018560580499064172}, \"yaxis\": \"y\"}, {\"autobinx\": false, \"histnorm\": \"probability density\", \"legendgroup\": \"other\", \"marker\": {\"color\": \"#4d4d4d\"}, \"name\": \"other\", \"opacity\": 0.7, \"type\": \"histogram\", \"x\": [0.18439386755371057, 0.5750868907731637, 0.1132172353536568, 0.19850047615697952, 0.6950004168934912, 0.41826441672946313, 0.040828937665112974, 0.2145583871630251, 0.09143093017991866, 0.10013996234885614, 0.3658834999306372, 0.587897812361327, 0.23563705889496211, 0.5289998061994394, 0.5981734696485812, 0.5956194363709464, 0.11295199838815062, 0.6349332021584286, 0.09356782907078887, 0.0672754654033908, 0.3541579814831264, 0.11781588709523827, 0.3295981493457443, 0.23443288181779365, 0.13830133810679424, 0.5122546205578999, 0.03626449638205209, 0.32057959349203036, 0.3955164844050859, 0.21320459763992916, 0.08620177311633537, 0.4132497936565127, 0.19514157099220286, 0.028148892894647393, 0.03728071159582558, 0.20213762816504022, 0.39088790332760825, 0.10566618212719892, 0.11466232649727714, 0.09544364959788487, 0.07351553674018241, 0.3657542344632553, 0.05859665738698361, 0.43634835962676355, 0.4827032077898804, 0.516310366273556, 0.6480037931050455, 0.21122004543372697, 0.030344760075157406, 0.22750344576024595, 0.18673438423788624, 0.5460909738859347, 0.0666291073587214, 0.320234954276134, 0.515425573770442, 0.5751179393061847, 0.3262180383913996, 0.12192585741802231, 0.6165939755266235, 0.09365914315081003, 0.44259853952477324, 0.31958523161407537, 0.09228899111547839, 0.22815273642701062, 0.5282447951108347, 0.7777719169155834, 0.13834506443323813, 0.29425092810710396, 0.5300870647699181, 0.031947521718024174, 0.1108646816717751, 0.053339747820140615, 0.14466174791529418, 0.25697560969337485, 0.3383868137798065, 0.30803904997837983, 0.03434255320493995, 0.08689109251212201, 0.46044782253877736, 0.0973761441498977, 0.3449058470623745, 0.024212367984770777, 0.11665042079727428, 0.3333970234137619, 0.1495417879159372, 0.0679784404121434, 0.2360052425084116, 0.39147703437781534, 0.04428683932015287, 0.5381556738404795, 0.4357341587922019, 0.11843845992675284, 0.28107964630818494, 0.06989794698232743, 0.2658605825653322, 0.22408104406272966, 0.15519213452661884, 0.09873339188795927, 0.10739713799337769, 0.4712507279726723, 0.31257930793611366, 0.6259141532505736, 0.1651629894813923, 0.13024327386797574, 0.08242409751896962, 0.55355901104019, 0.11256152515999429, 0.22124325125588817, 0.05838775174278421, 0.6734770756819889, 0.06919042490492266, 0.5773286546676725, 0.5693181878572973, 0.12726917141891614, 0.27983888222674136, 0.15690954109554833, 0.18593824584442387, 0.05432525584274117, 0.33273366741371935, 0.12435295831370408, 0.48112847828662497, 0.2959384652215836, 0.5042039768350125, 0.3749869638443927, 0.7258627386781167, 0.4806866421912115, 0.6234335830956541, 0.4191951896523489, 0.20821728825178332, 0.6343085651912675, 0.27674577061671146, 0.02140654255666985, 0.42849246998341506, 0.1817444030106703, 0.4551538855951942, 0.05087080041524106, 0.516641204200833, 0.6810720245435042, 0.08151744899857294, 0.4475169494323581, 0.03995706953508171, 0.2181819033834006, 0.20372897255157485, 0.24305701296248816, 0.5381556738404795, 0.2358485729609252, 0.051323642447754336, 0.1913631294907303, 0.32154631204965056, 0.31229802093755377, 0.3917329141436472, 0.39462053822053156, 0.3680669306910641, 0.5017894292511481, 0.32120711190509066, 0.0768019282386515, 0.1168769044932052, 0.31545143431826594, 0.12007957373947853, 0.08354361700756141, 0.2180731800932174, 0.7653011157176768, 0.05076221583963347, 0.11739077279846111, 0.3639458403519926, 0.4815918747301601, 0.35998732468747585, 0.457353694020342, 0.5520498791697908, 0.22168281241722143, 0.2132287846887433, 0.4763394582576197, 0.3040153802820409, 0.20749766415549342, 0.3316810644107503, 0.8126297477835096, 0.5749367295182395, 0.27274039590582944, 0.2685808245693546, 0.5172108675362206, 0.33506587713796443, 0.09616672688355288, 0.041108213935392324, 0.10548050716105373, 0.5016695616404938, 0.20022874051447226, 0.14220640128276774, 0.23772630779738468, 0.19606080251004787, 0.2603188495268066, 0.18846597668723208, 0.19827111133563302, 0.261548791893628, 0.4140325207077993, 0.8134796325151183, 0.12265695643958285, 0.6311167068993262, 0.13481820177301163, 0.0932384579037443, 0.14050160114126486, 0.2562249115981724, 0.08547750670655718, 0.08643201081848362, 0.19981675431015722, 0.31390222338706264, 0.06221739913672386, 0.06996303880871468, 0.30029370289300306, 0.4306817897420764, 0.6595343859760441, 0.2839408857911616, 0.20468539219890003, 0.1130196126722065, 0.2360017176902124, 0.13187147729288817, 0.42313120297864704, 0.06964897436687001, 0.1624399718171824, 0.17200815643270417, 0.07333105637055992, 0.2440137653363641, 0.4900110333069776, 0.3085554157386313, 0.03480496731142946, 0.12148031785507996, 0.15002971926037112, 0.5314247042003052, 0.2758453007685677, 0.2151852748992088, 0.2658605825653322, 0.29911225563077193, 0.6594110243744711, 0.49869782335001445, 0.16788254706683048, 0.11816213334465087, 0.08230909248122409, 0.13653212507346946, 0.25639170942272826, 0.06562233405876228, 0.23311900627036541, 0.3756616197417655, 0.46674395287949066, 0.3092684534350997, 0.8337319641197457, 0.8331457111467163, 0.2591056156836542, 0.4778687671024334, 0.2542440524586721, 0.5361036306539362, 0.07073721340803463, 0.4731688813159418, 0.5755848065786346, 0.356689463387698, 0.14225616860197343, 0.21837916002376445, 0.14466174791529418, 0.29899643271856946, 0.4757427727983842, 0.08126799884203029, 0.1296501822378736, 0.3286954654423938, 0.08620177311633537, 0.13855855420831553, 0.05543377339452393, 0.11917834098009661, 0.2613621884509647, 0.11269900223777074, 0.08429051026621415, 0.3393961441870107, 0.07031960314855146, 0.11356777592095357, 0.4853279864284006, 0.1279289285514792, 0.0584572339054259, 0.08612988585012649, 0.3472440907423937, 0.1248029959061332, 0.07502335399434323, 0.19827111133563302, 0.3424151534036639, 0.3065175956815872, 0.13808860398564737, 0.058092197534895806, 0.04082786106581715, 0.1602592849246841, 0.09156161599234125, 0.5036030690663805, 0.2640411824475748, 0.6468038092930676, 0.07201805208597656, 0.22470230804277058, 0.1334773721572423, 0.04847889440667685, 0.2685808245693546, 0.10911308148570098, 0.6764508967260475, 0.6280060594576413, 0.36761958218269275, 0.16019930342079847, 0.17605308658107655, 0.14078981831089854, 0.2384997092801764, 0.13117402490907393, 0.12818959986091483, 0.4161925244315118, 0.12435295831370408, 0.09814942480303201, 0.05480698563416486, 0.3746187330143109, 0.41092354232892336, 0.507894749900129, 0.5137929421583434, 0.08293523366016065, 0.2964416548030494, 0.15236141109070434, 0.4396941021426354, 0.41893931094950754, 0.09113953260801844, 0.10967473999240707, 0.055732078845942, 0.05640314085190745, 0.06176263301115803, 0.06427139521062619, 0.20386133178572885, 0.21597661143113533, 0.7486409492386699, 0.2610715902497083, 0.09465277491899493, 0.5556171757583562, 0.137718889647652, 0.1978940751503777, 0.08472590699531857, 0.356262641598029, 0.14596950445002987, 0.13865818299932142, 0.3088915816821678, 0.11516321289421916, 0.16121169033174265, 0.40573483691789825, 0.34308606282264, 0.36300204724896845, 0.17193414756867276, 0.035926383178341514, 0.34536882843285344, 0.4400180463892147, 0.5165194668234709, 0.23319834124303085, 0.9637923675569924, 0.2635599134550337, 0.6259141532505736, 0.12324962258280003, 0.1256037712827487, 0.1248029959061332, 0.11665042079727428, 0.29081136443782263, 0.12993062945549005, 0.20959981847797426, 0.12385816607190492, 0.16931651488884025, 0.2468284110987674, 0.6181879252747016, 0.3509541008179864, 0.08619429866610873, 0.09537770951135394, 0.8204393830764495, 0.2493836920976743, 0.10367142046182065, 0.11516383353466464, 0.07169627826225977, 0.5400384130096556, 0.2709141565803237, 0.16809050322974173, 0.3421981324687273, 0.812724325423183, 0.1326589750154965, 0.054670132935181304, 0.055346153509382656, 0.8039442695404772, 0.3276168958360183, 0.6561718697940482, 0.6214102617950452, 0.3046829516703813, 0.7853649284745584, 0.7303620793003476, 0.6719087507962026, 0.16000678121984613, 0.579612101366232, 0.6347749924714103, 0.41894393066564606, 0.06936532322770372, 0.28322834609079706, 0.343263893078516, 0.4450860003239352, 0.3090838478611311, 0.408095736797927, 0.11529682880263803, 0.13359771811640497, 0.2417229185475579, 0.10092265889692065, 0.8181934133883563, 0.3777834313813965, 0.8273808576462511, 0.18439353202429143, 0.5148786056082297, 0.11287077888712382, 0.16015059460472458, 0.29672938182784603, 0.36944561074938853, 0.2505850522824452, 0.8467591712977676, 0.3840267097226593, 0.261779448872241, 0.1645479955558209, 0.14631295673285594, 0.4248523287309329, 0.09222807982804315, 0.2121484308544801, 0.33273366741371935, 0.5470626312455473, 0.8294144697045585, 0.25206662215500397, 0.15998368749433245, 0.548322128117227, 0.3917329141436472, 0.15981565308588508, 0.23631147082452741, 0.21082920466209698, 0.1871387197916503, 0.24774693401855818, 0.1913242313933492, 0.16437448769677154, 0.07582203648947516, 0.032541140295091364, 0.06311143057978008, 0.5009235508757715, 0.12343879567504301, 0.445735807756371, 0.40322837553658053, 0.09397553936597514, 0.1598391281143201, 0.26702494168661406, 0.19782301216908982, 0.06831823449824892, 0.5451167746582685, 0.20142160156100697, 0.25747632252511843, 0.4257317671215596, 0.5062318064185062, 0.10278357133077332, 0.10857266292312517, 0.06223864817381186, 0.11377411494697365, 0.14082424186384768, 0.2589321903149734, 0.31776639873426016, 0.07983414941561229, 0.30174211068680845, 0.42532907678292176, 0.23734670470511587, 0.2862296469110084, 0.24790288035387664, 0.5526146374040077, 0.20425399436950087, 0.5166825128498294, 0.12415322942140417, 0.5310696157212036, 0.3866387435262121, 0.14313186082947948, 0.31648660326859934, 0.026792916001305622, 0.7856428374245099, 0.42383310375799566, 0.5944566396871084, 0.6256605001243821, 0.08813642250468567, 0.03544811528140901, 0.06935406654889886, 0.15751976448865512, 0.22608551288474832, 0.3127311228465576, 0.1409438166611655, 0.3285615524533705, 0.3591330499592894, 0.47964497307801546, 0.7143146030302826, 0.14223944449319303, 0.06929054967731618, 0.32120711190509066, 0.16913647442041335, 0.707286257884667, 0.3230684446475647, 0.7616845263358343, 0.4104900542879092, 0.10053249234255524, 0.1106599594415556, 0.1543174595222413, 0.46003879185641183, 0.3811350878514418, 0.07185070571861518, 0.23882593985771994, 0.5344976262521839, 0.11031385635331636, 0.09610989844306939, 0.4955559099445003, 0.07845190603324759, 0.30697262074812925, 0.12767551958037127, 0.4375661224395835, 0.07737023387634634, 0.15307682457740834, 0.05694427046787409, 0.09028836937410878, 0.4011292297732457, 0.6186146927451245, 0.11561676905211238, 0.0993047499370594, 0.08102401279833105, 0.8100206966555492, 0.10768932514586738, 0.15386113005635593, 0.4026560765644126, 0.045535707525545144, 0.08229583319403, 0.08227601457953415, 0.8241544781987433, 0.0759900855540333, 0.5147505197509459, 0.11103147778198663, 0.42144961755966015, 0.24880465403270857, 0.3112403223054312, 0.3282460941643247, 0.28312386083977936, 0.2865521931047814, 0.16537364909659502, 0.4284132019637321, 0.34116073112729894, 0.051142721309942685, 0.10794707492381372, 0.1108646816717751, 0.29201805921023904, 0.07365131996157204, 0.36851051207096197, 0.2556143611338999, 0.07392456180697715, 0.045535707525545144, 0.15025986810093994, 0.4395989822566938, 0.19636656988846957, 0.21018464628148859, 0.15085686628779282, 0.3429118439192298, 0.16104008564300487, 0.2055862423584408, 0.18673310211333727, 0.5528531989583015, 0.20219789553586287, 0.5807830339134155, 0.6112381610839525, 0.07515362639458067, 0.5722084734915175, 0.3654892991508686, 0.1991057466826236, 0.4912569401667811, 0.05850610073101081, 0.3077884117234785, 0.17038242498240874, 0.14066607718466684, 0.10248584652416493, 0.4022873718442217, 0.07205214632436985, 0.35142291824287475, 0.10941760034103376, 0.06679271580157364, 0.05675388891699207, 0.058987921856350156, 0.3660303223369904, 0.28790374422385034, 0.4158290962648631, 0.40710291595796666, 0.09934102670994882, 0.06362846635195196, 0.30921476208988685, 0.23242198019285765, 0.055541210656895434, 0.5297663836663529, 0.10744632778983743, 0.18410212910939194, 0.17721960751489196, 0.1962664672709783, 0.1617648996714035, 0.10584426414108294, 0.5203501665477333, 0.07365131996157204, 0.31578819840495265, 0.35364190165315845, 0.1707951928721818, 0.41655733121321636, 0.15801546378512366, 0.7568436608419439, 0.22368578646300386, 0.0609449253562836, 0.2225096762928218, 0.18587673368692093, 0.05559101133196209, 0.569598540521716, 0.08073228430722412, 0.15724041301590164, 0.12879141548479, 0.4306817897420764, 0.17998791969802397, 0.41280880088413996, 0.5723062335690389, 0.6457404130724687, 0.10420061808672998, 0.12564769853034463, 0.21795029564941848, 0.4720930498870375, 0.11304202998506685, 0.545112257205237, 0.14852188644910969, 0.17217029085021085, 0.336250902618187, 0.48671482860553816, 0.5093433434984792, 0.35847801144896685, 0.3008706318705062, 0.18494609259573758, 0.4199330463236065, 0.04162287990776414, 0.2633909944023186, 0.4252182303976608, 0.4684623303117058, 0.1925553058603695, 0.09610989844306939, 0.09129843496680234, 0.3302708189676917, 0.4199330463236065, 0.11927294568859859, 0.4864154015695107, 0.06472081497616611, 0.6387929002666255, 0.37932906694235924, 0.093713747684541, 0.20627971812824875], \"xaxis\": \"x\", \"xbins\": {\"end\": 0.9637923675569924, \"size\": 0.05, \"start\": 0.02140654255666985}, \"yaxis\": \"y\"}, {\"legendgroup\": \"bad\", \"marker\": {\"color\": \"#ed0400\", \"symbol\": \"line-ns-open\"}, \"mode\": \"markers\", \"name\": \"bad\", \"showlegend\": false, \"type\": \"scatter\", \"x\": [0.7197707895473677, 0.05448058807241418, 0.5021256787650443, 0.4710854375480472, 0.7156076129280222, 0.7966690429773311, 0.7265425252145667, 0.16771266951545494, 0.610944103187451, 0.6324527530146118, 0.42180662537268765, 0.2598044700255929, 0.5503032830239416, 0.5632112185661304, 0.6840604465833231, 0.6224375641140001, 0.8071781895370533, 0.9515482366939344, 0.3994071349416132, 0.9677746238863042, 0.572587586261062, 0.7602674855798478, 0.861098734498427, 0.1386074727873, 0.6703360831713621, 0.8064003460928679, 0.3172728283240366, 0.8039094494444462, 0.9186426431335688, 0.6026275969807151, 0.8609701260317718, 0.3485833566260712, 0.3005246278528939, 0.2859113263741919, 0.4978204971029292, 0.5125675444128744, 0.4268860326359044, 0.11791793574572085, 0.440027850275134, 0.4938434408506086, 0.4933189622152446, 0.166194347192407, 0.30200278364192557, 0.6822425768461728, 0.8693180940701344, 0.24112389044610405, 0.43189370387303117, 0.284455178085937, 0.23793737479647703, 0.5535561322468214, 0.7900402576908969, 0.47373775892899717, 0.6055733033081183, 0.7462675017011632, 0.32245623572553406, 0.7612367841042231, 0.36308410170653527, 0.6103993963703384, 0.3965676277125745, 0.2230008284200371, 0.8480025164595866, 0.43585875500482685, 0.24095331994381775, 0.4030652094068704, 0.8951637220162157, 0.2782175630406618, 0.7337660836226194, 0.8352762102164887, 0.6223987562306759, 0.2928263700360406, 0.6563137004068428, 0.16155652477357085, 0.6364666355122575, 0.2186811050870735, 0.27206300237801306, 0.4358901152617537, 0.6136035252376228, 0.07900866299327158, 0.8522855318359817, 0.11906253414448076, 0.3466831105240652, 0.11265227152414181, 0.6302693732121377, 0.7168097665217413, 0.4796298258249143, 0.4476252306691143, 0.3612478268219491, 0.611861930499026, 0.15121036728507153, 0.5363393546692182, 0.16155652477357085, 0.441733396330222, 0.7834276811132227, 0.6364666355122575, 0.44873286860252337, 0.4948960601400133, 0.4172084246960842, 0.5055831714989107, 0.5269082808529498, 0.3737404408311804, 0.4491757516278906, 0.5266720849021, 0.2882430633103308, 0.6066213483726142, 0.83534933450756, 0.2509605867776752, 0.230738949997912, 0.25680675940048736, 0.6858999083789018, 0.27626495444752697, 0.35158671089680515, 0.311480105980391, 0.5950329577300569, 0.4196263877039489, 0.3672198477254309, 0.5488429300958864, 0.6273126624389191, 0.0990306898864649, 0.935036100419004, 0.5556828679884147, 0.6003916802566726, 0.1337843055401957, 0.6898191889393818, 0.46604488826349566, 0.6668872608045229, 0.5998672378660981, 0.14712454771937833, 0.8558065212045691, 0.883276495704891, 0.5544329747085402, 0.38398791005853006, 0.8623310715459079, 0.4482795971615686, 0.4767821080964978, 0.6451659669426603, 0.5099786295438409, 0.11454219273407718, 0.5691587732433696, 0.2398813672346335, 0.8592796956842923, 0.38133093816728936, 0.4754945767078651, 0.2673740541283356, 0.43092180164799054, 0.5981491184574936, 0.7512253043619477, 0.20474988026063612, 0.12337786436138054, 0.6965484670033051, 0.4642254518352117, 0.29034758521725457, 0.7912282271603185, 0.1364389858241727, 0.5326323768611896, 0.3938848007926149, 0.886984727126295, 0.5955398539691413, 0.3667393936023857, 0.35129461810907203, 0.578130474122496, 0.1952086434691429, 0.6982941690158907, 0.6159300986783536, 0.6650580695700093, 0.8007006003287879, 0.13750802167619447, 0.47121416359091395, 0.5691587732433696, 0.5295784007050042, 0.4938434408506086, 0.4240508430342457, 0.1531205555636086, 0.7965770364050346, 0.4829168465516456, 0.6333246955344933, 0.38682769986244625, 0.5589353890471914, 0.30965836575156913, 0.6133571507425741, 0.5363393546692182, 0.5474540697204298, 0.9680074395956593, 0.29703705077451537, 0.7566858385458134, 0.451244026180727, 0.6224939697452743, 0.9340693900855184, 0.1254375450851024, 0.770680513376406, 0.7273231109206828, 0.410671569380914, 0.19928392436820586, 0.44743622108127745, 0.4991477681643879, 0.5443787589855091, 0.826082779912576, 0.5642536294664222, 0.6762559922350657, 0.39283078357423706, 0.3074847569358159, 0.40732461839200396, 0.5614584986504241, 0.5614584986504241, 0.575628870274347, 0.1938881144566701, 0.6480440770440566, 0.23946299348505806, 0.6110142157087575, 0.32489046344192996, 0.127020290619695, 0.28948900574123104, 0.27970970921902805, 0.5179212029104148, 0.579807192000203, 0.5695619245525361, 0.7471497674522103, 0.6761943115269239, 0.6052803835931642, 0.9048996801452402, 0.632953623191418, 0.7849920634816455, 0.12946409768986655, 0.3899257470968539, 0.37735505673750047, 0.27206300237801306, 0.6356505945299911, 0.9000798247851504, 0.5852448485124296, 0.3537739535016634, 0.8589709040748648, 0.5105041430354158, 0.4760479563081992, 0.3915586115462193, 0.4344526143297297, 0.04825794875232026, 0.25106204840173363, 0.5352062615150248, 0.2084678736174792, 0.5588772074146924, 0.42656597432725707, 0.3395528272139201, 0.5154796814541086, 0.30312695461308037, 0.4684625037801391, 0.13140485141127656, 0.37575572516499556, 0.7087902803012941, 0.22740617784346517, 0.7932370230268412, 0.6977827466507267, 0.8687065743771458, 0.3532210556477622, 0.3005246278528939, 0.8817461779308045, 0.5897758288136841, 0.5117334773877459, 0.2267712913026929, 0.7462523759498982, 0.5055831714989107, 0.6276122794572256, 0.34766968675436505, 0.563322001169588, 0.4035281086421867, 0.44827723495654004, 0.7588644006503809, 0.17560197311170134, 0.2736156405730563, 0.5646478519097824, 0.12788772013874206, 0.8127608550985441, 0.35130933230290007, 0.8842329534318195, 0.5671758377024384, 0.508518787579709, 0.4735654621913231, 0.6614347321502836, 0.7032589073748752, 0.418601168771625, 0.40262233345395115, 0.38045938978299354, 0.6221728234115828, 0.6769388667590319, 0.825791915264051, 0.8036522945246104, 0.5350776523934957, 0.5038683203672731, 0.4187790963850706, 0.3942708224564714, 0.36585282612655, 0.42973128126448334, 0.1395024853671747, 0.36909778672938764, 0.5126700875045708, 0.31128511290513083, 0.5841805470690385, 0.42932394036482613, 0.5168725346003686, 0.9331527243268325, 0.5090935678835011, 0.848083892739094, 0.7288594688776423, 0.23463814542978878, 0.9073343486287574, 0.5445649372592127, 0.8030108083542629, 0.30698149193503155, 0.47724620771884374, 0.49565431290071005, 0.29179072192325783, 0.53941953634433, 0.32642767658125227, 0.5714063949384225, 0.6769388667590319, 0.48314991346809855, 0.3838692085325581, 0.7654355578102645, 0.6807995217458978, 0.7803105409218809, 0.4971816769068883, 0.5662837862370104, 0.32557907866588853, 0.4059739580227363, 0.8621668957327787, 0.4863555612469991, 0.44913520001249685, 0.5044088987161788, 0.018560580499064172, 0.17397747102053363, 0.8203404366189, 0.531551035274026, 0.3951880410340851, 0.6710839680909022, 0.7545393605546251, 0.25029771644034415, 0.31651464458218903, 0.7900402576908969, 0.7649542174153934, 0.6282404390050247, 0.5124469561170844, 0.7501741577575001, 0.3717170374651112, 0.5479204837841629, 0.1799627586960565, 0.8716748635647116, 0.4700369344869263, 0.7044722268129955, 0.7597806244765397, 0.4570971226262448, 0.3688130253756654, 0.5854022956087224, 0.6067015953642416, 0.6092966434658947, 0.5713009051869427, 0.15316343939585397, 0.31191498773739224], \"xaxis\": \"x\", \"y\": [\"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\"], \"yaxis\": \"y2\"}, {\"legendgroup\": \"other\", \"marker\": {\"color\": \"#4d4d4d\", \"symbol\": \"line-ns-open\"}, \"mode\": \"markers\", \"name\": \"other\", \"showlegend\": false, \"type\": \"scatter\", \"x\": [0.18439386755371057, 0.5750868907731637, 0.1132172353536568, 0.19850047615697952, 0.6950004168934912, 0.41826441672946313, 0.040828937665112974, 0.2145583871630251, 0.09143093017991866, 0.10013996234885614, 0.3658834999306372, 0.587897812361327, 0.23563705889496211, 0.5289998061994394, 0.5981734696485812, 0.5956194363709464, 0.11295199838815062, 0.6349332021584286, 0.09356782907078887, 0.0672754654033908, 0.3541579814831264, 0.11781588709523827, 0.3295981493457443, 0.23443288181779365, 0.13830133810679424, 0.5122546205578999, 0.03626449638205209, 0.32057959349203036, 0.3955164844050859, 0.21320459763992916, 0.08620177311633537, 0.4132497936565127, 0.19514157099220286, 0.028148892894647393, 0.03728071159582558, 0.20213762816504022, 0.39088790332760825, 0.10566618212719892, 0.11466232649727714, 0.09544364959788487, 0.07351553674018241, 0.3657542344632553, 0.05859665738698361, 0.43634835962676355, 0.4827032077898804, 0.516310366273556, 0.6480037931050455, 0.21122004543372697, 0.030344760075157406, 0.22750344576024595, 0.18673438423788624, 0.5460909738859347, 0.0666291073587214, 0.320234954276134, 0.515425573770442, 0.5751179393061847, 0.3262180383913996, 0.12192585741802231, 0.6165939755266235, 0.09365914315081003, 0.44259853952477324, 0.31958523161407537, 0.09228899111547839, 0.22815273642701062, 0.5282447951108347, 0.7777719169155834, 0.13834506443323813, 0.29425092810710396, 0.5300870647699181, 0.031947521718024174, 0.1108646816717751, 0.053339747820140615, 0.14466174791529418, 0.25697560969337485, 0.3383868137798065, 0.30803904997837983, 0.03434255320493995, 0.08689109251212201, 0.46044782253877736, 0.0973761441498977, 0.3449058470623745, 0.024212367984770777, 0.11665042079727428, 0.3333970234137619, 0.1495417879159372, 0.0679784404121434, 0.2360052425084116, 0.39147703437781534, 0.04428683932015287, 0.5381556738404795, 0.4357341587922019, 0.11843845992675284, 0.28107964630818494, 0.06989794698232743, 0.2658605825653322, 0.22408104406272966, 0.15519213452661884, 0.09873339188795927, 0.10739713799337769, 0.4712507279726723, 0.31257930793611366, 0.6259141532505736, 0.1651629894813923, 0.13024327386797574, 0.08242409751896962, 0.55355901104019, 0.11256152515999429, 0.22124325125588817, 0.05838775174278421, 0.6734770756819889, 0.06919042490492266, 0.5773286546676725, 0.5693181878572973, 0.12726917141891614, 0.27983888222674136, 0.15690954109554833, 0.18593824584442387, 0.05432525584274117, 0.33273366741371935, 0.12435295831370408, 0.48112847828662497, 0.2959384652215836, 0.5042039768350125, 0.3749869638443927, 0.7258627386781167, 0.4806866421912115, 0.6234335830956541, 0.4191951896523489, 0.20821728825178332, 0.6343085651912675, 0.27674577061671146, 0.02140654255666985, 0.42849246998341506, 0.1817444030106703, 0.4551538855951942, 0.05087080041524106, 0.516641204200833, 0.6810720245435042, 0.08151744899857294, 0.4475169494323581, 0.03995706953508171, 0.2181819033834006, 0.20372897255157485, 0.24305701296248816, 0.5381556738404795, 0.2358485729609252, 0.051323642447754336, 0.1913631294907303, 0.32154631204965056, 0.31229802093755377, 0.3917329141436472, 0.39462053822053156, 0.3680669306910641, 0.5017894292511481, 0.32120711190509066, 0.0768019282386515, 0.1168769044932052, 0.31545143431826594, 0.12007957373947853, 0.08354361700756141, 0.2180731800932174, 0.7653011157176768, 0.05076221583963347, 0.11739077279846111, 0.3639458403519926, 0.4815918747301601, 0.35998732468747585, 0.457353694020342, 0.5520498791697908, 0.22168281241722143, 0.2132287846887433, 0.4763394582576197, 0.3040153802820409, 0.20749766415549342, 0.3316810644107503, 0.8126297477835096, 0.5749367295182395, 0.27274039590582944, 0.2685808245693546, 0.5172108675362206, 0.33506587713796443, 0.09616672688355288, 0.041108213935392324, 0.10548050716105373, 0.5016695616404938, 0.20022874051447226, 0.14220640128276774, 0.23772630779738468, 0.19606080251004787, 0.2603188495268066, 0.18846597668723208, 0.19827111133563302, 0.261548791893628, 0.4140325207077993, 0.8134796325151183, 0.12265695643958285, 0.6311167068993262, 0.13481820177301163, 0.0932384579037443, 0.14050160114126486, 0.2562249115981724, 0.08547750670655718, 0.08643201081848362, 0.19981675431015722, 0.31390222338706264, 0.06221739913672386, 0.06996303880871468, 0.30029370289300306, 0.4306817897420764, 0.6595343859760441, 0.2839408857911616, 0.20468539219890003, 0.1130196126722065, 0.2360017176902124, 0.13187147729288817, 0.42313120297864704, 0.06964897436687001, 0.1624399718171824, 0.17200815643270417, 0.07333105637055992, 0.2440137653363641, 0.4900110333069776, 0.3085554157386313, 0.03480496731142946, 0.12148031785507996, 0.15002971926037112, 0.5314247042003052, 0.2758453007685677, 0.2151852748992088, 0.2658605825653322, 0.29911225563077193, 0.6594110243744711, 0.49869782335001445, 0.16788254706683048, 0.11816213334465087, 0.08230909248122409, 0.13653212507346946, 0.25639170942272826, 0.06562233405876228, 0.23311900627036541, 0.3756616197417655, 0.46674395287949066, 0.3092684534350997, 0.8337319641197457, 0.8331457111467163, 0.2591056156836542, 0.4778687671024334, 0.2542440524586721, 0.5361036306539362, 0.07073721340803463, 0.4731688813159418, 0.5755848065786346, 0.356689463387698, 0.14225616860197343, 0.21837916002376445, 0.14466174791529418, 0.29899643271856946, 0.4757427727983842, 0.08126799884203029, 0.1296501822378736, 0.3286954654423938, 0.08620177311633537, 0.13855855420831553, 0.05543377339452393, 0.11917834098009661, 0.2613621884509647, 0.11269900223777074, 0.08429051026621415, 0.3393961441870107, 0.07031960314855146, 0.11356777592095357, 0.4853279864284006, 0.1279289285514792, 0.0584572339054259, 0.08612988585012649, 0.3472440907423937, 0.1248029959061332, 0.07502335399434323, 0.19827111133563302, 0.3424151534036639, 0.3065175956815872, 0.13808860398564737, 0.058092197534895806, 0.04082786106581715, 0.1602592849246841, 0.09156161599234125, 0.5036030690663805, 0.2640411824475748, 0.6468038092930676, 0.07201805208597656, 0.22470230804277058, 0.1334773721572423, 0.04847889440667685, 0.2685808245693546, 0.10911308148570098, 0.6764508967260475, 0.6280060594576413, 0.36761958218269275, 0.16019930342079847, 0.17605308658107655, 0.14078981831089854, 0.2384997092801764, 0.13117402490907393, 0.12818959986091483, 0.4161925244315118, 0.12435295831370408, 0.09814942480303201, 0.05480698563416486, 0.3746187330143109, 0.41092354232892336, 0.507894749900129, 0.5137929421583434, 0.08293523366016065, 0.2964416548030494, 0.15236141109070434, 0.4396941021426354, 0.41893931094950754, 0.09113953260801844, 0.10967473999240707, 0.055732078845942, 0.05640314085190745, 0.06176263301115803, 0.06427139521062619, 0.20386133178572885, 0.21597661143113533, 0.7486409492386699, 0.2610715902497083, 0.09465277491899493, 0.5556171757583562, 0.137718889647652, 0.1978940751503777, 0.08472590699531857, 0.356262641598029, 0.14596950445002987, 0.13865818299932142, 0.3088915816821678, 0.11516321289421916, 0.16121169033174265, 0.40573483691789825, 0.34308606282264, 0.36300204724896845, 0.17193414756867276, 0.035926383178341514, 0.34536882843285344, 0.4400180463892147, 0.5165194668234709, 0.23319834124303085, 0.9637923675569924, 0.2635599134550337, 0.6259141532505736, 0.12324962258280003, 0.1256037712827487, 0.1248029959061332, 0.11665042079727428, 0.29081136443782263, 0.12993062945549005, 0.20959981847797426, 0.12385816607190492, 0.16931651488884025, 0.2468284110987674, 0.6181879252747016, 0.3509541008179864, 0.08619429866610873, 0.09537770951135394, 0.8204393830764495, 0.2493836920976743, 0.10367142046182065, 0.11516383353466464, 0.07169627826225977, 0.5400384130096556, 0.2709141565803237, 0.16809050322974173, 0.3421981324687273, 0.812724325423183, 0.1326589750154965, 0.054670132935181304, 0.055346153509382656, 0.8039442695404772, 0.3276168958360183, 0.6561718697940482, 0.6214102617950452, 0.3046829516703813, 0.7853649284745584, 0.7303620793003476, 0.6719087507962026, 0.16000678121984613, 0.579612101366232, 0.6347749924714103, 0.41894393066564606, 0.06936532322770372, 0.28322834609079706, 0.343263893078516, 0.4450860003239352, 0.3090838478611311, 0.408095736797927, 0.11529682880263803, 0.13359771811640497, 0.2417229185475579, 0.10092265889692065, 0.8181934133883563, 0.3777834313813965, 0.8273808576462511, 0.18439353202429143, 0.5148786056082297, 0.11287077888712382, 0.16015059460472458, 0.29672938182784603, 0.36944561074938853, 0.2505850522824452, 0.8467591712977676, 0.3840267097226593, 0.261779448872241, 0.1645479955558209, 0.14631295673285594, 0.4248523287309329, 0.09222807982804315, 0.2121484308544801, 0.33273366741371935, 0.5470626312455473, 0.8294144697045585, 0.25206662215500397, 0.15998368749433245, 0.548322128117227, 0.3917329141436472, 0.15981565308588508, 0.23631147082452741, 0.21082920466209698, 0.1871387197916503, 0.24774693401855818, 0.1913242313933492, 0.16437448769677154, 0.07582203648947516, 0.032541140295091364, 0.06311143057978008, 0.5009235508757715, 0.12343879567504301, 0.445735807756371, 0.40322837553658053, 0.09397553936597514, 0.1598391281143201, 0.26702494168661406, 0.19782301216908982, 0.06831823449824892, 0.5451167746582685, 0.20142160156100697, 0.25747632252511843, 0.4257317671215596, 0.5062318064185062, 0.10278357133077332, 0.10857266292312517, 0.06223864817381186, 0.11377411494697365, 0.14082424186384768, 0.2589321903149734, 0.31776639873426016, 0.07983414941561229, 0.30174211068680845, 0.42532907678292176, 0.23734670470511587, 0.2862296469110084, 0.24790288035387664, 0.5526146374040077, 0.20425399436950087, 0.5166825128498294, 0.12415322942140417, 0.5310696157212036, 0.3866387435262121, 0.14313186082947948, 0.31648660326859934, 0.026792916001305622, 0.7856428374245099, 0.42383310375799566, 0.5944566396871084, 0.6256605001243821, 0.08813642250468567, 0.03544811528140901, 0.06935406654889886, 0.15751976448865512, 0.22608551288474832, 0.3127311228465576, 0.1409438166611655, 0.3285615524533705, 0.3591330499592894, 0.47964497307801546, 0.7143146030302826, 0.14223944449319303, 0.06929054967731618, 0.32120711190509066, 0.16913647442041335, 0.707286257884667, 0.3230684446475647, 0.7616845263358343, 0.4104900542879092, 0.10053249234255524, 0.1106599594415556, 0.1543174595222413, 0.46003879185641183, 0.3811350878514418, 0.07185070571861518, 0.23882593985771994, 0.5344976262521839, 0.11031385635331636, 0.09610989844306939, 0.4955559099445003, 0.07845190603324759, 0.30697262074812925, 0.12767551958037127, 0.4375661224395835, 0.07737023387634634, 0.15307682457740834, 0.05694427046787409, 0.09028836937410878, 0.4011292297732457, 0.6186146927451245, 0.11561676905211238, 0.0993047499370594, 0.08102401279833105, 0.8100206966555492, 0.10768932514586738, 0.15386113005635593, 0.4026560765644126, 0.045535707525545144, 0.08229583319403, 0.08227601457953415, 0.8241544781987433, 0.0759900855540333, 0.5147505197509459, 0.11103147778198663, 0.42144961755966015, 0.24880465403270857, 0.3112403223054312, 0.3282460941643247, 0.28312386083977936, 0.2865521931047814, 0.16537364909659502, 0.4284132019637321, 0.34116073112729894, 0.051142721309942685, 0.10794707492381372, 0.1108646816717751, 0.29201805921023904, 0.07365131996157204, 0.36851051207096197, 0.2556143611338999, 0.07392456180697715, 0.045535707525545144, 0.15025986810093994, 0.4395989822566938, 0.19636656988846957, 0.21018464628148859, 0.15085686628779282, 0.3429118439192298, 0.16104008564300487, 0.2055862423584408, 0.18673310211333727, 0.5528531989583015, 0.20219789553586287, 0.5807830339134155, 0.6112381610839525, 0.07515362639458067, 0.5722084734915175, 0.3654892991508686, 0.1991057466826236, 0.4912569401667811, 0.05850610073101081, 0.3077884117234785, 0.17038242498240874, 0.14066607718466684, 0.10248584652416493, 0.4022873718442217, 0.07205214632436985, 0.35142291824287475, 0.10941760034103376, 0.06679271580157364, 0.05675388891699207, 0.058987921856350156, 0.3660303223369904, 0.28790374422385034, 0.4158290962648631, 0.40710291595796666, 0.09934102670994882, 0.06362846635195196, 0.30921476208988685, 0.23242198019285765, 0.055541210656895434, 0.5297663836663529, 0.10744632778983743, 0.18410212910939194, 0.17721960751489196, 0.1962664672709783, 0.1617648996714035, 0.10584426414108294, 0.5203501665477333, 0.07365131996157204, 0.31578819840495265, 0.35364190165315845, 0.1707951928721818, 0.41655733121321636, 0.15801546378512366, 0.7568436608419439, 0.22368578646300386, 0.0609449253562836, 0.2225096762928218, 0.18587673368692093, 0.05559101133196209, 0.569598540521716, 0.08073228430722412, 0.15724041301590164, 0.12879141548479, 0.4306817897420764, 0.17998791969802397, 0.41280880088413996, 0.5723062335690389, 0.6457404130724687, 0.10420061808672998, 0.12564769853034463, 0.21795029564941848, 0.4720930498870375, 0.11304202998506685, 0.545112257205237, 0.14852188644910969, 0.17217029085021085, 0.336250902618187, 0.48671482860553816, 0.5093433434984792, 0.35847801144896685, 0.3008706318705062, 0.18494609259573758, 0.4199330463236065, 0.04162287990776414, 0.2633909944023186, 0.4252182303976608, 0.4684623303117058, 0.1925553058603695, 0.09610989844306939, 0.09129843496680234, 0.3302708189676917, 0.4199330463236065, 0.11927294568859859, 0.4864154015695107, 0.06472081497616611, 0.6387929002666255, 0.37932906694235924, 0.093713747684541, 0.20627971812824875], \"xaxis\": \"x\", \"y\": [\"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\"], \"yaxis\": \"y2\"}], \"layout\": {\"barmode\": \"overlay\", \"hovermode\": \"closest\", \"legend\": {\"orientation\": \"h\", \"traceorder\": \"reversed\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y2\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"Probability\"}, \"zeroline\": false}, \"yaxis\": {\"anchor\": \"free\", \"domain\": [0.35, 1], \"position\": 0.0, \"title\": {\"text\": \"Share\"}}, \"yaxis2\": {\"anchor\": \"x\", \"domain\": [0, 0.25], \"dtick\": 1, \"showticklabels\": false}}}}]}, \"insights\": [], \"additionalGraphs\": [], \"alerts\": [], \"tabs\": []}, {\"type\": \"tabbed_graph\", \"title\": \"Current: Probability Distribution\", \"size\": 1, \"details\": \"\", \"alertsPosition\": null, \"alertStats\": null, \"params\": {\"graphs\": [{\"id\": \"tab_good\", \"title\": \"good\", \"graph\": {\"data\": [{\"autobinx\": false, \"histnorm\": \"probability density\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#ed0400\"}, \"name\": \"good\", \"opacity\": 0.7, \"type\": \"histogram\", \"x\": [0.33396714643252134, 0.5044440900554997, 0.8874896900044845, 0.4686759077780351, 0.23831547366416572, 0.571181601185031, 0.7785327680196316, 0.7290551099174598, 0.9581131370131553, 0.6801000322064107, 0.413367674560271, 0.6667140739211237, 0.9108229754863395, 0.9275086157065797, 0.9186958597750785, 0.7191871442695774, 0.8184457509658746, 0.8597940676688322, 0.7947045908306632, 0.8244149680645384, 0.42771531534877594, 0.5315376696882942, 0.7136291946100958, 0.5510697799054304, 0.6393262665313312, 0.9016582766249417, 0.8560880110261746, 0.8947361144883382, 0.9102326114023062, 0.840723585394272, 0.9264645566705582, 0.5105903360131552, 0.752648770317166, 0.5855954083225455, 0.8989214048388485, 0.5190750352404293, 0.9560713253502463, 0.7273157243430202, 0.9279672131348602, 0.640103147954212, 0.9158977434209615, 0.9035955072010529, 0.7140955379655831, 0.233508355491505, 0.7280578325574358, 0.8810827811902006, 0.3966129217085586, 0.15541760955422754, 0.5851621750323275, 0.9046111951917862, 0.4177213302712193, 0.7993763114768937, 0.6978409661933959, 0.6473373667551029, 0.770784382977056, 0.6500641275496193, 0.548949563093737, 0.9803199442553986, 0.6150775052067382, 0.391333092160729, 0.6966682278280982, 0.9426748402861506, 0.9170092977635526, 0.844625652038695, 0.5621782696252592, 0.8935808323282117, 0.6792214086077275, 0.6719996755401956, 0.5252591274442797, 0.7277045758687855, 0.4685752957996948, 0.8616549355667619, 0.347491516391863, 0.8224130863808733, 0.5340790568488665, 0.6711667658766297, 0.5277539611022016, 0.7226430813715845, 0.8140972745487615, 0.3280236940194876, 0.9543080196225542, 0.7752655593026647, 0.9223925066666061, 0.8588031784191832, 0.6345107008491314, 0.9393010047953068, 0.7897067132703484, 0.8608062836413887, 0.8367885032124018, 0.38555642305179116, 0.8611944449682004, 0.9172341012895443, 0.9206892306522243, 0.9500505925695213, 0.537798347971205, 0.9173482789702866, 0.44454351342386716, 0.8909704850569525, 0.7351932580165473, 0.6818328744935735, 0.7981559962965634, 0.7626532952948841, 0.807353254900461, 0.964411205143099, 0.4685752957996948, 0.6986526320119215, 0.1956969407137045, 0.9233481403380283, 0.8218375601976645, 0.8536269727611236, 0.5637680470866036, 0.42267134533232753, 0.93003590801509, 0.9364808605729722, 0.8816060831574614, 0.9663102962713933, 0.8345570787709832, 0.4997893986747249, 0.7921603237806832, 0.5586815647381762, 0.8622246464681924, 0.9828719612298703, 0.909295720392338, 0.9476267884443668, 0.5395521774612226, 0.901360886913609, 0.39410444510430487, 0.9262213132200262, 0.6627387433216217, 0.9629433821448677, 0.9614311452267452, 0.9802968012486629, 0.933760787013923, 0.34432718187202205, 0.63596173557573, 0.624364378916488, 0.7417789548241253, 0.7300918276682445, 0.6968315453320488, 0.7840233885688647, 0.8958841271622066, 0.5417426694559925, 0.7102579146160282, 0.6004345411549624, 0.515920701757342, 0.7587882454650442, 0.5029588531082266, 0.6887596776945688, 0.8642849605932809, 0.6469572639767995, 0.8103639651534781, 0.939764354405301, 0.694136577696587, 0.6593725303534554, 0.9646797005081557, 0.7979900311745153, 0.792123904710467, 0.8869579700149332, 0.7351250317969437, 0.5332560471205093, 0.9406873315653421, 0.39362685027924615, 0.9466602521798594, 0.8394325033041952, 0.6633442657978572, 0.8126408700417265, 0.7332457619716184, 0.08024070404520958, 0.8667774471450977, 0.6466814331404849, 0.912366876100516, 0.656670904734599, 0.8701678467707724, 0.8875925797813499, 0.9658725076002231, 0.7668332861852056, 0.8604440887473094, 0.934384507524058, 0.9605946056867319, 0.951253157591183, 0.5749289095213865, 0.6279243005170476, 0.7937202818717513, 0.7665301650725991, 0.700127941221274, 0.8531107444728586, 0.7947045908306632, 0.8870566665876504, 0.5476228787844645, 0.8410401833568673, 0.8736671065238262, 0.6519898659949606, 0.936943112068646, 0.9077719201719568, 0.8071889556778997, 0.8815615400732472, 0.8935313268029127, 0.8782891297971865, 0.5029588531082266, 0.5797201450332624, 0.9416775458320723, 0.5958140198486584, 0.2485157288688957, 0.932021424688801, 0.8531502837407814, 0.6344194678828672, 0.632587077283238, 0.9121448358615357, 0.5776545535910985, 0.9052765174806566, 0.8580390107418799, 0.8998644401112552, 0.6784536879503494, 0.9458342431661766, 0.21387363850783603, 0.9530348339880965, 0.7307391114165022, 0.7187682731289255, 0.6905635603269331, 0.9569274903702625, 0.9287384091375525, 0.3856984054091925, 0.504413920551941, 0.5389739198483336, 0.5921068831639978, 0.10702848140489757, 0.8772993497727819, 0.6361944011057532, 0.8952999713010865, 0.7069578609115064, 0.10632960186243966, 0.6465592619811017, 0.9116333268133815, 0.9210441535829985, 0.9483358221641291, 0.5800224234700003, 0.896951343689222, 0.8958659323404018, 0.8896861436466836, 0.7763142135369961, 0.778627444633172, 0.9274605647284293, 0.9167924025380936, 0.6422094408272838, 0.6363725079258666, 0.8694129796739031, 0.5693182102579236, 0.5315376696882942, 0.6814536952243052, 0.30089534057709466, 0.6689448970920832, 0.6419522618821227, 0.6500641275496193, 0.8221968069187356, 0.9285763346020383, 0.8495153837633861, 0.7135666997345446, 0.8850789772017983, 0.9128367188568884, 0.8709442503982084, 0.44714680104169846, 0.7147831401969469, 0.6814536952243052, 0.5823319261018008, 0.7718122970862826, 0.8925058444773368, 0.9249991097277733, 0.7849066379312727, 0.5120166815330335, 0.7863291630268572, 0.8171821177205619, 0.8878235148823457, 0.9813953955585096, 0.5009899161211654, 0.6787020040856314, 0.2747106808400709, 0.6998114428322438, 0.7191783799678735, 0.7566715075843347, 0.7741630673610131, 0.692871858980435, 0.8706970297938403, 0.9226518689226377, 0.619213859232465, 0.9620625840847012, 0.8161066853745392, 0.7984578805051198, 0.8987836568806694, 0.27900511725120763, 0.747868261422589, 0.8013372150606806, 0.4430395412241901, 0.8082746512504794, 0.9248395818955686, 0.8132668978866627, 0.7926355964369082, 0.7243101498981422, 0.8251498778038484, 0.865753667016409, 0.8784859927081519, 0.9613966942665844, 0.8380103992838959, 0.9376908870460701, 0.8505645904112248, 0.5317253080143199, 0.8756470416862959, 0.8823120896825394, 0.8920529250761863, 0.9565288857220365, 0.92576324319171, 0.8397457208604353, 0.8008835764985612, 0.7620555647282774, 0.6333567796033132, 0.8986985644274655, 0.8289197139212982, 0.38568054861828666, 0.4358764146033148, 0.7013568331933456, 0.5524769805317635, 0.8654015550049637, 0.9625385348003681, 0.4997035751430624, 0.5940434106189647, 0.29640429037896177, 0.9370396801623051, 0.7496358493500708, 0.8521916566704996, 0.7519935213994349, 0.8956127660014477, 0.7563308848917781, 0.5425355780301907, 0.1652985164032473, 0.5777375433929663, 0.5926841497777402, 0.5247451599628447, 0.6215406511606532, 0.646742228322253, 0.5236567091352762, 0.8105889943537302, 0.7614647275399787, 0.7272264480694343, 0.44438282424164377, 0.8051848688934031, 0.253979247575754, 0.8737269176380216, 0.7884186533408385, 0.5226162157005312, 0.7776146375974927, 0.8021344726910251, 0.6794204065079696, 0.8398669626756513, 0.3743394998756179, 0.6593725303534554, 0.41008410759983227, 0.8726624594592295, 0.31336232876890546, 0.6187135046228962, 0.9208146539756937, 0.8948907807194619, 0.9475948217130945, 0.7098971478357265, 0.41970311630379203, 0.5524505095188592, 0.6689295490636696, 0.39534528644804523, 0.6686700461744643, 0.6608417181144597, 0.6289006219381473, 0.8112353209803558, 0.9675531845963172, 0.3468688843876404, 0.8171815196180959, 0.9315945487332388, 0.7612383340144859, 0.43979370974717685, 0.9452166580978265, 0.810349906376065, 0.4979189466877109, 0.9054024939516333, 0.7506263221664519, 0.8595966107872783, 0.9041757536760852, 0.5120166815330335, 0.9246344940597735, 0.622364539475366, 0.7975959936185795, 0.9376528402833735, 0.8270495791839716, 0.7463426393970082, 0.8508295060861325, 0.5277539611022016, 0.7926521549058593, 0.8343380415579561, 0.7973631232158779, 0.5423298306356671, 0.6253812669856891, 0.9342151247863544, 0.9064095870896521, 0.8428584418618921, 0.5680191878381406, 0.8230633503438987, 0.857993972512287, 0.8312116035859974, 0.8886868130574391, 0.5695902702544526, 0.8750573328895943, 0.47134086624147714, 0.6082670858563528, 0.8571520978358925, 0.7006810412396262, 0.6001343818465046, 0.8680196363335714, 0.7833148206731655, 0.835330250744176, 0.6883000602161935, 0.4297997702781997, 0.7132181587745201, 0.941909753873568, 0.9298379484442667, 0.8950633078112005, 0.9652574497835966, 0.8593048115498744, 0.23022113319019433, 0.5548683876071567, 0.8789570823277312, 0.7176343272433334, 0.7135972690872326, 0.900955402304434, 0.89110615578316, 0.8021344726910251, 0.36734125225010755, 0.9233813125795639, 0.9269988231022361, 0.6021478506882372, 0.27064660283581765, 0.7595966254948197, 0.5317253080143199, 0.9626288904553877, 0.518871521713375, 0.4244151934213653, 0.8784852709235653, 0.667697582798242, 0.6791650855490978, 0.8659372985570389, 0.5217980090164113, 0.9757802673562255, 0.20769640873195563, 0.6900575067285889, 0.15051833553221247, 0.8476988333501053, 0.12043274000614122, 0.6546311715671466, 0.412102187638673, 0.6339696776630096, 0.6925917751558638, 0.8074446941396305, 0.8417042066658985, 0.4702054036006336, 0.8107456318417504, 0.934253622333564, 0.9671353887875448, 0.3776875782453083, 0.5133306968464912, 0.8279918435672958, 0.7295730380004212, 0.8398957027397556, 0.7470826509089123, 0.7722124156410631, 0.3944809481034696, 0.5801047158883857, 0.7134138458261836, 0.8265590446981121, 0.5836238058504062, 0.7538957359152121, 0.9708936701567454, 0.41507295289487073, 0.9039211350062085, 0.5109703825452502, 0.8880660412534, 0.6332514250278477, 0.703270618172154, 0.863031725372896, 0.9601349291832292, 0.5845797646527732, 0.8357575010967041, 0.9584406458449958, 0.8733333206292072, 0.4740801794177068, 0.5787650908025566, 0.38525623454815555, 0.5715075300165849, 0.951253157591183, 0.831291834366621, 0.6482062646591596, 0.5447536045265621, 0.8456825404777587, 0.5358725178581014, 0.8893400405584444, 0.5955893395860203, 0.9408369636189147, 0.7580589814818564, 0.4244151934213653, 0.7636885291754726, 0.9532052815091139, 0.6686700461744643, 0.39683939049776734, 0.8309978518015588, 0.06774730328187532, 0.8934061610794648, 0.9459413258233057, 0.8507977517004935, 0.9694554821790147, 0.8640493534313302, 0.8409166048571896, 0.9059760843724536, 0.7278052027863667, 0.8952246802917138, 0.39534528644804523, 0.9558702864115934, 0.9178754126151818, 0.7504628435478695, 0.7568870052952757, 0.32046258648166903, 0.9712495894387816, 0.7125870341029702, 0.8286889773580812, 0.929575727770858, 0.8422483936479932, 0.60065365322741, 0.5775074082600717, 0.7505976846167132, 0.5317253080143199, 0.9590110623565244, 0.9651712957082627, 0.7333643603414158, 0.7757825668725274, 0.8928390517037824, 0.2578168736401774, 0.5355488836719776, 0.8408692583280314, 0.7849780542174357, 0.8711681462620556, 0.8447990405440073, 0.9571933326515756, 0.9307123551507692, 0.6421242495412457, 0.9239207054420927, 0.9336219461922934, 0.4244151934213653, 0.5673643045526261, 0.8301442064454496, 0.528471943574542, 0.8835542071774324, 0.8820947700128993, 0.4561713647735051, 0.584381944856391, 0.9493936477483658, 0.7816316980556022, 0.7770145472448273, 0.8495153837633861, 0.8318035560268552, 0.5220388622338656, 0.8589980209217414, 0.21216021099657945, 0.8782303617207965, 0.901850575196968, 0.7683760396387002, 0.9559989503713009, 0.938411491366706, 0.7225398931917507, 0.5918361617892179, 0.8596378534897678, 0.8816239240572568, 0.9296844522785247, 0.8299758417251202, 0.7538846798551382, 0.931253582726863, 0.6902425303942638, 0.9299571155275668, 0.35461708236434614, 0.6119587629530028, 0.8979450471026776, 0.8782891297971865, 0.6144930729026484, 0.5601837238662909, 0.4230258756549153, 0.5115702372514986, 0.6133200318312215, 0.8287048127179734, 0.42887934024879554, 0.5543929044930882, 0.5414149972460248, 0.7453725251924848, 0.6522898344923613, 0.6445138145159856, 0.9212190995841192, 0.6991293681294938, 0.9188224881967051, 0.9444881948020799, 0.8399825546316605, 0.6440269003431431, 0.45260210695563535, 0.6678228102737954, 0.8535669746933884, 0.23469888428232324, 0.7581156815660375, 0.8329520097124233, 0.5886389680190937, 0.4250130050586104, 0.290761161529129, 0.9065968169685268, 0.39757013049667705, 0.9584529405260903, 0.24804178200132845, 0.8400605958344816, 0.9562762484868867, 0.5923100188758571, 0.5355488836719776, 0.6866862751474886, 0.753715093249364, 0.9302702282582556, 0.8405005145861136, 0.7758456574858743, 0.8270123797965384, 0.9270997487744173, 0.8779999285967196, 0.6350604679157676, 0.9057987369792326, 0.9732730617650076, 0.28007269673131574, 0.5393237551960537, 0.9509318156255189, 0.8055358405733448, 0.8512314640165554, 0.6752183046546253, 0.9766791413071304, 0.26893819095773785, 0.5105552073939665, 0.7964242570425004, 0.9159462749375985, 0.46312559485344046, 0.7889853219989779, 0.5331772070153998, 0.6250130361556073, 0.5340700079782073, 0.8981158701031157, 0.8424802355113449], \"xaxis\": \"x\", \"xbins\": {\"end\": 0.9828719612298703, \"size\": 0.05, \"start\": 0.06774730328187532}, \"yaxis\": \"y\"}, {\"autobinx\": false, \"histnorm\": \"probability density\", \"legendgroup\": \"other\", \"marker\": {\"color\": \"#4d4d4d\"}, \"name\": \"other\", \"opacity\": 0.7, \"type\": \"histogram\", \"x\": [0.8142007211296887, 0.07257977436397642, 0.7430932382113554, 0.8214862427787604, 0.5698848321031316, 0.6048119589659149, 0.6466669219762841, 0.14510080060429495, 0.2250304680670007, 0.28492472637839966, 0.42061632734231896, 0.8281252124183194, 0.49622399336621903, 0.3482895521074759, 0.4678833354511545, 0.5708968386647719, 0.37048677721847617, 0.553632248395139, 0.8702137350251022, 0.42186952587750404, 0.8696774950675754, 0.5410576963494411, 0.3971326977900686, 0.3275001196198921, 0.9448289227093116, 0.7109941475090589, 0.41925580570138304, 0.3675472469853882, 0.6721911818800557, 0.5562207270314473, 0.5262426608517637, 0.3244609607385458, 0.15056615442564347, 0.15676979724311627, 0.6037730696030339, 0.6342511279653397, 0.021947035536558718, 0.32429164429335744, 0.5678746850743716, 0.3571680467137555, 0.7755534309390314, 0.3240287891037917, 0.699424662214302, 0.5151532452376618, 0.7564675819717819, 0.38343591026479057, 0.19811005648518398, 0.3168419703358067, 0.5315947262677626, 0.9269044449273315, 0.8260225289794664, 0.451791899378283, 0.830516920403184, 0.47128602930186, 0.19027823806377472, 0.5181346713949518, 0.29552777318700446, 0.45414400334446664, 0.39329840463575844, 0.42327932510626076, 0.45838907164509224, 0.2233864252642039, 0.3628419195926303, 0.6709353200988277, 0.46058046365566996, 0.25551237833043455, 0.7234147543269824, 0.1481282262733752, 0.314935793994079, 0.20050531530561894, 0.37453315488553635, 0.701015529968035, 0.6343341418527783, 0.1739320900588749, 0.734996253073231, 0.8172229478314255, 0.3598554146739685, 0.7121055211356295, 0.2620604909731644, 0.3421138035730516, 0.6951268813066005, 0.35208221297891723, 0.452099210446082, 0.18907620085798427, 0.5444201651108793, 0.6484058972837882, 0.3258186925596978, 0.5963383680780668, 0.6202666247822538, 0.576738593946626, 0.5054992484109841, 0.2972245631729925, 0.6844333356791464, 0.42629475072919953, 0.4405153833121037, 0.01207867704715336, 0.7609288944606691, 0.23951123982998349, 0.09310514674080905, 0.5084920166510624, 0.33067609257366243, 0.36481899584296196, 0.5708968386647719, 0.3194802059637459, 0.14207297841267416, 0.5776897120055972, 0.2026163425795633, 0.37909000048748537, 0.38206764842015895, 0.41324683104354176, 0.17826143731067332, 0.42339414872454434, 0.39148091864802853, 0.3511350413575442, 0.8053393751847749, 0.5937005322868365, 0.6849942580153355, 0.38930033076762494, 0.5168500865319015, 0.5699073288866824, 0.5376087249833421, 0.8185832461647057, 0.25950508036415604, 0.20394483716883388, 0.3303044530853749, 0.2528102968078532, 0.8477719856767125, 0.5217124250004609, 0.3303044530853749, 0.5382885532339231, 0.9625763866028243, 0.6536174904341296, 0.42629475072919953, 0.6458781618432388, 0.46574001023909845, 0.37268733756108086, 0.8180085473348132, 0.35493594975273335, 0.2423640089427935, 0.3636330633241046, 0.6421622311157122, 0.5444201651108793, 0.7396308412796291, 0.9036153464846048, 0.21101569987323432, 0.6004024464464508, 0.7595861882737439, 0.486549602332862, 0.2379839758891197, 0.5147825233229498, 0.2065932277190248, 0.4342628292980428, 0.5940848250235929, 0.4857193175270624, 0.5332610244722983, 0.5402196969638672, 0.8578846895389459, 0.5290225674595067, 0.6074669506688956, 0.1847839155105034, 0.3581391437324269, 0.4304380754474639, 0.8410120374942113, 0.5810086483513661, 0.19026233744636453, 0.7223494520380469, 0.8589928738613049, 0.8374625942163022, 0.781203852328267, 0.73983195178881, 0.41156537259256004, 0.7482873396984137, 0.44431713201158524, 0.7113673874393347, 0.49869552495399233, 0.7627102864663872, 0.37193390769028617, 0.37187810520956766, 0.3773291605703562, 0.8719651627687759, 0.6218762459828849, 0.3781393537983126, 0.553632248395139, 0.47624084907999176, 0.774399353278846, 0.5840424935194366, 0.5601025471409736, 0.6186690618327106, 0.620611700356168, 0.5755798886129706, 0.15047650536569443, 0.5530049338021776, 0.6597439619439023, 0.8300222117931148, 0.3490158529243493, 0.4410646109528086, 0.5067909967309752, 0.5851482063434866, 0.7149827463187939, 0.4849259975950144, 0.2094210588097294, 0.33399024531412796, 0.4083143545243069, 0.7497022835596558, 0.7817929239213606, 0.7637421953724776, 0.3825655414920891, 0.6611482494098961, 0.19022241257108333, 0.44972084577511023, 0.5476732603321269, 0.4831274653996314, 0.5077048340566679, 0.7289504589448288, 0.4379810490617926, 0.8017221455714771, 0.6434673631716396, 0.5059779734745421, 0.6065367192264559, 0.650368705032214, 0.34567471266024347, 0.39561589000187136, 0.3427787545601037, 0.4676404271158623, 0.5332283386400669, 0.4519108142444285, 0.40662831629925006, 0.42305576187259053, 0.22032895172816622, 0.5278715769330472, 0.43679486629948455, 0.743933429392776, 0.5269515041023835, 0.5008800654866953, 0.214168174561682, 0.44879088851457377, 0.683485355417811, 0.807753104897186, 0.42629475072919953, 0.8502951424821861, 0.17421175568219957, 0.25491371883486935, 0.7595861882737439, 0.6571724132942184, 0.7813188949129265, 0.5626906653340306, 0.8674288259883418, 0.6600514650598344, 0.4827749661719035, 0.5456147119159479, 0.39827550056677263, 0.27323823737433794, 0.695896529362927, 0.5048820477254727, 0.5422349097465021, 0.5610936746718964, 0.6571724132942184, 0.3088751107498249, 0.45428761266464013, 0.6604471727860799, 0.43371621376298963, 0.6171893197168647, 0.8100511550343341, 0.8100511550343341, 0.605832578461134, 0.5526475584669951, 0.4275055171336787, 0.8734720021260204, 0.8508295378350301, 0.5807723706867254, 0.8272749548927728, 0.2670652478909882, 0.7020144194675465, 0.4615566916191992, 0.7055847950248242, 0.43389869234556755, 0.6071692164257629, 0.3496825637352313, 0.23676491619791426, 0.7057755976874825, 0.15539001443149586, 0.6187538615870153, 0.8735882828904331, 0.30049486749739024, 0.23191705420611952, 0.8913917397916864, 0.4977157214618499, 0.16961113509580228, 0.8485494795219795, 0.4760032757956232, 0.5053843099270294, 0.2676015269871764, 0.3627664421236291, 0.15146266807038725, 0.7898179638281774, 0.6145296307645981, 0.3790380236797623, 0.3003532640340299, 0.6086112016774773, 0.39906793889171593, 0.8185832461647057, 0.6715802865662828, 0.8260225289794664, 0.6056902064850618, 0.400132762133902, 0.39471961640683584, 0.6449859309106076, 0.5637152910565628, 0.39949420960438964, 0.5490401551410112, 0.4398875418860128, 0.30916577334906253, 0.7093303227687476, 0.4562508424819209, 0.40444044759428516, 0.5773483646962835, 0.447777692034652, 0.4961542215384683, 0.32474312180562226, 0.21192693199409943, 0.9056903490933487, 0.5013816399998683, 0.758876109553896, 0.6364928148646596, 0.2952804752502578, 0.4748951900520853, 0.43679486629948455, 0.5479962315186364, 0.4728142838839701, 0.6343341418527783, 0.12248807650217919, 0.5052525886146573, 0.8281252124183194, 0.8930081609652758, 0.36283726088930296, 0.8098196742550625, 0.656477404357746, 0.193885049884708, 0.5269515041023835, 0.49858469647139786, 0.32780472036158087, 0.24927512797396847, 0.6148718578314069, 0.10691527318901187, 0.136775438340409, 0.8489192718114075, 0.2600203086082801, 0.8142007211296887, 0.5269515041023835, 0.7966615933629455, 0.5633234794197017, 0.767479452333631], \"xaxis\": \"x\", \"xbins\": {\"end\": 0.9625763866028243, \"size\": 0.05, \"start\": 0.01207867704715336}, \"yaxis\": \"y\"}, {\"legendgroup\": \"good\", \"marker\": {\"color\": \"#ed0400\", \"symbol\": \"line-ns-open\"}, \"mode\": \"markers\", \"name\": \"good\", \"showlegend\": false, \"type\": \"scatter\", \"x\": [0.33396714643252134, 0.5044440900554997, 0.8874896900044845, 0.4686759077780351, 0.23831547366416572, 0.571181601185031, 0.7785327680196316, 0.7290551099174598, 0.9581131370131553, 0.6801000322064107, 0.413367674560271, 0.6667140739211237, 0.9108229754863395, 0.9275086157065797, 0.9186958597750785, 0.7191871442695774, 0.8184457509658746, 0.8597940676688322, 0.7947045908306632, 0.8244149680645384, 0.42771531534877594, 0.5315376696882942, 0.7136291946100958, 0.5510697799054304, 0.6393262665313312, 0.9016582766249417, 0.8560880110261746, 0.8947361144883382, 0.9102326114023062, 0.840723585394272, 0.9264645566705582, 0.5105903360131552, 0.752648770317166, 0.5855954083225455, 0.8989214048388485, 0.5190750352404293, 0.9560713253502463, 0.7273157243430202, 0.9279672131348602, 0.640103147954212, 0.9158977434209615, 0.9035955072010529, 0.7140955379655831, 0.233508355491505, 0.7280578325574358, 0.8810827811902006, 0.3966129217085586, 0.15541760955422754, 0.5851621750323275, 0.9046111951917862, 0.4177213302712193, 0.7993763114768937, 0.6978409661933959, 0.6473373667551029, 0.770784382977056, 0.6500641275496193, 0.548949563093737, 0.9803199442553986, 0.6150775052067382, 0.391333092160729, 0.6966682278280982, 0.9426748402861506, 0.9170092977635526, 0.844625652038695, 0.5621782696252592, 0.8935808323282117, 0.6792214086077275, 0.6719996755401956, 0.5252591274442797, 0.7277045758687855, 0.4685752957996948, 0.8616549355667619, 0.347491516391863, 0.8224130863808733, 0.5340790568488665, 0.6711667658766297, 0.5277539611022016, 0.7226430813715845, 0.8140972745487615, 0.3280236940194876, 0.9543080196225542, 0.7752655593026647, 0.9223925066666061, 0.8588031784191832, 0.6345107008491314, 0.9393010047953068, 0.7897067132703484, 0.8608062836413887, 0.8367885032124018, 0.38555642305179116, 0.8611944449682004, 0.9172341012895443, 0.9206892306522243, 0.9500505925695213, 0.537798347971205, 0.9173482789702866, 0.44454351342386716, 0.8909704850569525, 0.7351932580165473, 0.6818328744935735, 0.7981559962965634, 0.7626532952948841, 0.807353254900461, 0.964411205143099, 0.4685752957996948, 0.6986526320119215, 0.1956969407137045, 0.9233481403380283, 0.8218375601976645, 0.8536269727611236, 0.5637680470866036, 0.42267134533232753, 0.93003590801509, 0.9364808605729722, 0.8816060831574614, 0.9663102962713933, 0.8345570787709832, 0.4997893986747249, 0.7921603237806832, 0.5586815647381762, 0.8622246464681924, 0.9828719612298703, 0.909295720392338, 0.9476267884443668, 0.5395521774612226, 0.901360886913609, 0.39410444510430487, 0.9262213132200262, 0.6627387433216217, 0.9629433821448677, 0.9614311452267452, 0.9802968012486629, 0.933760787013923, 0.34432718187202205, 0.63596173557573, 0.624364378916488, 0.7417789548241253, 0.7300918276682445, 0.6968315453320488, 0.7840233885688647, 0.8958841271622066, 0.5417426694559925, 0.7102579146160282, 0.6004345411549624, 0.515920701757342, 0.7587882454650442, 0.5029588531082266, 0.6887596776945688, 0.8642849605932809, 0.6469572639767995, 0.8103639651534781, 0.939764354405301, 0.694136577696587, 0.6593725303534554, 0.9646797005081557, 0.7979900311745153, 0.792123904710467, 0.8869579700149332, 0.7351250317969437, 0.5332560471205093, 0.9406873315653421, 0.39362685027924615, 0.9466602521798594, 0.8394325033041952, 0.6633442657978572, 0.8126408700417265, 0.7332457619716184, 0.08024070404520958, 0.8667774471450977, 0.6466814331404849, 0.912366876100516, 0.656670904734599, 0.8701678467707724, 0.8875925797813499, 0.9658725076002231, 0.7668332861852056, 0.8604440887473094, 0.934384507524058, 0.9605946056867319, 0.951253157591183, 0.5749289095213865, 0.6279243005170476, 0.7937202818717513, 0.7665301650725991, 0.700127941221274, 0.8531107444728586, 0.7947045908306632, 0.8870566665876504, 0.5476228787844645, 0.8410401833568673, 0.8736671065238262, 0.6519898659949606, 0.936943112068646, 0.9077719201719568, 0.8071889556778997, 0.8815615400732472, 0.8935313268029127, 0.8782891297971865, 0.5029588531082266, 0.5797201450332624, 0.9416775458320723, 0.5958140198486584, 0.2485157288688957, 0.932021424688801, 0.8531502837407814, 0.6344194678828672, 0.632587077283238, 0.9121448358615357, 0.5776545535910985, 0.9052765174806566, 0.8580390107418799, 0.8998644401112552, 0.6784536879503494, 0.9458342431661766, 0.21387363850783603, 0.9530348339880965, 0.7307391114165022, 0.7187682731289255, 0.6905635603269331, 0.9569274903702625, 0.9287384091375525, 0.3856984054091925, 0.504413920551941, 0.5389739198483336, 0.5921068831639978, 0.10702848140489757, 0.8772993497727819, 0.6361944011057532, 0.8952999713010865, 0.7069578609115064, 0.10632960186243966, 0.6465592619811017, 0.9116333268133815, 0.9210441535829985, 0.9483358221641291, 0.5800224234700003, 0.896951343689222, 0.8958659323404018, 0.8896861436466836, 0.7763142135369961, 0.778627444633172, 0.9274605647284293, 0.9167924025380936, 0.6422094408272838, 0.6363725079258666, 0.8694129796739031, 0.5693182102579236, 0.5315376696882942, 0.6814536952243052, 0.30089534057709466, 0.6689448970920832, 0.6419522618821227, 0.6500641275496193, 0.8221968069187356, 0.9285763346020383, 0.8495153837633861, 0.7135666997345446, 0.8850789772017983, 0.9128367188568884, 0.8709442503982084, 0.44714680104169846, 0.7147831401969469, 0.6814536952243052, 0.5823319261018008, 0.7718122970862826, 0.8925058444773368, 0.9249991097277733, 0.7849066379312727, 0.5120166815330335, 0.7863291630268572, 0.8171821177205619, 0.8878235148823457, 0.9813953955585096, 0.5009899161211654, 0.6787020040856314, 0.2747106808400709, 0.6998114428322438, 0.7191783799678735, 0.7566715075843347, 0.7741630673610131, 0.692871858980435, 0.8706970297938403, 0.9226518689226377, 0.619213859232465, 0.9620625840847012, 0.8161066853745392, 0.7984578805051198, 0.8987836568806694, 0.27900511725120763, 0.747868261422589, 0.8013372150606806, 0.4430395412241901, 0.8082746512504794, 0.9248395818955686, 0.8132668978866627, 0.7926355964369082, 0.7243101498981422, 0.8251498778038484, 0.865753667016409, 0.8784859927081519, 0.9613966942665844, 0.8380103992838959, 0.9376908870460701, 0.8505645904112248, 0.5317253080143199, 0.8756470416862959, 0.8823120896825394, 0.8920529250761863, 0.9565288857220365, 0.92576324319171, 0.8397457208604353, 0.8008835764985612, 0.7620555647282774, 0.6333567796033132, 0.8986985644274655, 0.8289197139212982, 0.38568054861828666, 0.4358764146033148, 0.7013568331933456, 0.5524769805317635, 0.8654015550049637, 0.9625385348003681, 0.4997035751430624, 0.5940434106189647, 0.29640429037896177, 0.9370396801623051, 0.7496358493500708, 0.8521916566704996, 0.7519935213994349, 0.8956127660014477, 0.7563308848917781, 0.5425355780301907, 0.1652985164032473, 0.5777375433929663, 0.5926841497777402, 0.5247451599628447, 0.6215406511606532, 0.646742228322253, 0.5236567091352762, 0.8105889943537302, 0.7614647275399787, 0.7272264480694343, 0.44438282424164377, 0.8051848688934031, 0.253979247575754, 0.8737269176380216, 0.7884186533408385, 0.5226162157005312, 0.7776146375974927, 0.8021344726910251, 0.6794204065079696, 0.8398669626756513, 0.3743394998756179, 0.6593725303534554, 0.41008410759983227, 0.8726624594592295, 0.31336232876890546, 0.6187135046228962, 0.9208146539756937, 0.8948907807194619, 0.9475948217130945, 0.7098971478357265, 0.41970311630379203, 0.5524505095188592, 0.6689295490636696, 0.39534528644804523, 0.6686700461744643, 0.6608417181144597, 0.6289006219381473, 0.8112353209803558, 0.9675531845963172, 0.3468688843876404, 0.8171815196180959, 0.9315945487332388, 0.7612383340144859, 0.43979370974717685, 0.9452166580978265, 0.810349906376065, 0.4979189466877109, 0.9054024939516333, 0.7506263221664519, 0.8595966107872783, 0.9041757536760852, 0.5120166815330335, 0.9246344940597735, 0.622364539475366, 0.7975959936185795, 0.9376528402833735, 0.8270495791839716, 0.7463426393970082, 0.8508295060861325, 0.5277539611022016, 0.7926521549058593, 0.8343380415579561, 0.7973631232158779, 0.5423298306356671, 0.6253812669856891, 0.9342151247863544, 0.9064095870896521, 0.8428584418618921, 0.5680191878381406, 0.8230633503438987, 0.857993972512287, 0.8312116035859974, 0.8886868130574391, 0.5695902702544526, 0.8750573328895943, 0.47134086624147714, 0.6082670858563528, 0.8571520978358925, 0.7006810412396262, 0.6001343818465046, 0.8680196363335714, 0.7833148206731655, 0.835330250744176, 0.6883000602161935, 0.4297997702781997, 0.7132181587745201, 0.941909753873568, 0.9298379484442667, 0.8950633078112005, 0.9652574497835966, 0.8593048115498744, 0.23022113319019433, 0.5548683876071567, 0.8789570823277312, 0.7176343272433334, 0.7135972690872326, 0.900955402304434, 0.89110615578316, 0.8021344726910251, 0.36734125225010755, 0.9233813125795639, 0.9269988231022361, 0.6021478506882372, 0.27064660283581765, 0.7595966254948197, 0.5317253080143199, 0.9626288904553877, 0.518871521713375, 0.4244151934213653, 0.8784852709235653, 0.667697582798242, 0.6791650855490978, 0.8659372985570389, 0.5217980090164113, 0.9757802673562255, 0.20769640873195563, 0.6900575067285889, 0.15051833553221247, 0.8476988333501053, 0.12043274000614122, 0.6546311715671466, 0.412102187638673, 0.6339696776630096, 0.6925917751558638, 0.8074446941396305, 0.8417042066658985, 0.4702054036006336, 0.8107456318417504, 0.934253622333564, 0.9671353887875448, 0.3776875782453083, 0.5133306968464912, 0.8279918435672958, 0.7295730380004212, 0.8398957027397556, 0.7470826509089123, 0.7722124156410631, 0.3944809481034696, 0.5801047158883857, 0.7134138458261836, 0.8265590446981121, 0.5836238058504062, 0.7538957359152121, 0.9708936701567454, 0.41507295289487073, 0.9039211350062085, 0.5109703825452502, 0.8880660412534, 0.6332514250278477, 0.703270618172154, 0.863031725372896, 0.9601349291832292, 0.5845797646527732, 0.8357575010967041, 0.9584406458449958, 0.8733333206292072, 0.4740801794177068, 0.5787650908025566, 0.38525623454815555, 0.5715075300165849, 0.951253157591183, 0.831291834366621, 0.6482062646591596, 0.5447536045265621, 0.8456825404777587, 0.5358725178581014, 0.8893400405584444, 0.5955893395860203, 0.9408369636189147, 0.7580589814818564, 0.4244151934213653, 0.7636885291754726, 0.9532052815091139, 0.6686700461744643, 0.39683939049776734, 0.8309978518015588, 0.06774730328187532, 0.8934061610794648, 0.9459413258233057, 0.8507977517004935, 0.9694554821790147, 0.8640493534313302, 0.8409166048571896, 0.9059760843724536, 0.7278052027863667, 0.8952246802917138, 0.39534528644804523, 0.9558702864115934, 0.9178754126151818, 0.7504628435478695, 0.7568870052952757, 0.32046258648166903, 0.9712495894387816, 0.7125870341029702, 0.8286889773580812, 0.929575727770858, 0.8422483936479932, 0.60065365322741, 0.5775074082600717, 0.7505976846167132, 0.5317253080143199, 0.9590110623565244, 0.9651712957082627, 0.7333643603414158, 0.7757825668725274, 0.8928390517037824, 0.2578168736401774, 0.5355488836719776, 0.8408692583280314, 0.7849780542174357, 0.8711681462620556, 0.8447990405440073, 0.9571933326515756, 0.9307123551507692, 0.6421242495412457, 0.9239207054420927, 0.9336219461922934, 0.4244151934213653, 0.5673643045526261, 0.8301442064454496, 0.528471943574542, 0.8835542071774324, 0.8820947700128993, 0.4561713647735051, 0.584381944856391, 0.9493936477483658, 0.7816316980556022, 0.7770145472448273, 0.8495153837633861, 0.8318035560268552, 0.5220388622338656, 0.8589980209217414, 0.21216021099657945, 0.8782303617207965, 0.901850575196968, 0.7683760396387002, 0.9559989503713009, 0.938411491366706, 0.7225398931917507, 0.5918361617892179, 0.8596378534897678, 0.8816239240572568, 0.9296844522785247, 0.8299758417251202, 0.7538846798551382, 0.931253582726863, 0.6902425303942638, 0.9299571155275668, 0.35461708236434614, 0.6119587629530028, 0.8979450471026776, 0.8782891297971865, 0.6144930729026484, 0.5601837238662909, 0.4230258756549153, 0.5115702372514986, 0.6133200318312215, 0.8287048127179734, 0.42887934024879554, 0.5543929044930882, 0.5414149972460248, 0.7453725251924848, 0.6522898344923613, 0.6445138145159856, 0.9212190995841192, 0.6991293681294938, 0.9188224881967051, 0.9444881948020799, 0.8399825546316605, 0.6440269003431431, 0.45260210695563535, 0.6678228102737954, 0.8535669746933884, 0.23469888428232324, 0.7581156815660375, 0.8329520097124233, 0.5886389680190937, 0.4250130050586104, 0.290761161529129, 0.9065968169685268, 0.39757013049667705, 0.9584529405260903, 0.24804178200132845, 0.8400605958344816, 0.9562762484868867, 0.5923100188758571, 0.5355488836719776, 0.6866862751474886, 0.753715093249364, 0.9302702282582556, 0.8405005145861136, 0.7758456574858743, 0.8270123797965384, 0.9270997487744173, 0.8779999285967196, 0.6350604679157676, 0.9057987369792326, 0.9732730617650076, 0.28007269673131574, 0.5393237551960537, 0.9509318156255189, 0.8055358405733448, 0.8512314640165554, 0.6752183046546253, 0.9766791413071304, 0.26893819095773785, 0.5105552073939665, 0.7964242570425004, 0.9159462749375985, 0.46312559485344046, 0.7889853219989779, 0.5331772070153998, 0.6250130361556073, 0.5340700079782073, 0.8981158701031157, 0.8424802355113449], \"xaxis\": \"x\", \"y\": [\"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\"], \"yaxis\": \"y2\"}, {\"legendgroup\": \"other\", \"marker\": {\"color\": \"#4d4d4d\", \"symbol\": \"line-ns-open\"}, \"mode\": \"markers\", \"name\": \"other\", \"showlegend\": false, \"type\": \"scatter\", \"x\": [0.8142007211296887, 0.07257977436397642, 0.7430932382113554, 0.8214862427787604, 0.5698848321031316, 0.6048119589659149, 0.6466669219762841, 0.14510080060429495, 0.2250304680670007, 0.28492472637839966, 0.42061632734231896, 0.8281252124183194, 0.49622399336621903, 0.3482895521074759, 0.4678833354511545, 0.5708968386647719, 0.37048677721847617, 0.553632248395139, 0.8702137350251022, 0.42186952587750404, 0.8696774950675754, 0.5410576963494411, 0.3971326977900686, 0.3275001196198921, 0.9448289227093116, 0.7109941475090589, 0.41925580570138304, 0.3675472469853882, 0.6721911818800557, 0.5562207270314473, 0.5262426608517637, 0.3244609607385458, 0.15056615442564347, 0.15676979724311627, 0.6037730696030339, 0.6342511279653397, 0.021947035536558718, 0.32429164429335744, 0.5678746850743716, 0.3571680467137555, 0.7755534309390314, 0.3240287891037917, 0.699424662214302, 0.5151532452376618, 0.7564675819717819, 0.38343591026479057, 0.19811005648518398, 0.3168419703358067, 0.5315947262677626, 0.9269044449273315, 0.8260225289794664, 0.451791899378283, 0.830516920403184, 0.47128602930186, 0.19027823806377472, 0.5181346713949518, 0.29552777318700446, 0.45414400334446664, 0.39329840463575844, 0.42327932510626076, 0.45838907164509224, 0.2233864252642039, 0.3628419195926303, 0.6709353200988277, 0.46058046365566996, 0.25551237833043455, 0.7234147543269824, 0.1481282262733752, 0.314935793994079, 0.20050531530561894, 0.37453315488553635, 0.701015529968035, 0.6343341418527783, 0.1739320900588749, 0.734996253073231, 0.8172229478314255, 0.3598554146739685, 0.7121055211356295, 0.2620604909731644, 0.3421138035730516, 0.6951268813066005, 0.35208221297891723, 0.452099210446082, 0.18907620085798427, 0.5444201651108793, 0.6484058972837882, 0.3258186925596978, 0.5963383680780668, 0.6202666247822538, 0.576738593946626, 0.5054992484109841, 0.2972245631729925, 0.6844333356791464, 0.42629475072919953, 0.4405153833121037, 0.01207867704715336, 0.7609288944606691, 0.23951123982998349, 0.09310514674080905, 0.5084920166510624, 0.33067609257366243, 0.36481899584296196, 0.5708968386647719, 0.3194802059637459, 0.14207297841267416, 0.5776897120055972, 0.2026163425795633, 0.37909000048748537, 0.38206764842015895, 0.41324683104354176, 0.17826143731067332, 0.42339414872454434, 0.39148091864802853, 0.3511350413575442, 0.8053393751847749, 0.5937005322868365, 0.6849942580153355, 0.38930033076762494, 0.5168500865319015, 0.5699073288866824, 0.5376087249833421, 0.8185832461647057, 0.25950508036415604, 0.20394483716883388, 0.3303044530853749, 0.2528102968078532, 0.8477719856767125, 0.5217124250004609, 0.3303044530853749, 0.5382885532339231, 0.9625763866028243, 0.6536174904341296, 0.42629475072919953, 0.6458781618432388, 0.46574001023909845, 0.37268733756108086, 0.8180085473348132, 0.35493594975273335, 0.2423640089427935, 0.3636330633241046, 0.6421622311157122, 0.5444201651108793, 0.7396308412796291, 0.9036153464846048, 0.21101569987323432, 0.6004024464464508, 0.7595861882737439, 0.486549602332862, 0.2379839758891197, 0.5147825233229498, 0.2065932277190248, 0.4342628292980428, 0.5940848250235929, 0.4857193175270624, 0.5332610244722983, 0.5402196969638672, 0.8578846895389459, 0.5290225674595067, 0.6074669506688956, 0.1847839155105034, 0.3581391437324269, 0.4304380754474639, 0.8410120374942113, 0.5810086483513661, 0.19026233744636453, 0.7223494520380469, 0.8589928738613049, 0.8374625942163022, 0.781203852328267, 0.73983195178881, 0.41156537259256004, 0.7482873396984137, 0.44431713201158524, 0.7113673874393347, 0.49869552495399233, 0.7627102864663872, 0.37193390769028617, 0.37187810520956766, 0.3773291605703562, 0.8719651627687759, 0.6218762459828849, 0.3781393537983126, 0.553632248395139, 0.47624084907999176, 0.774399353278846, 0.5840424935194366, 0.5601025471409736, 0.6186690618327106, 0.620611700356168, 0.5755798886129706, 0.15047650536569443, 0.5530049338021776, 0.6597439619439023, 0.8300222117931148, 0.3490158529243493, 0.4410646109528086, 0.5067909967309752, 0.5851482063434866, 0.7149827463187939, 0.4849259975950144, 0.2094210588097294, 0.33399024531412796, 0.4083143545243069, 0.7497022835596558, 0.7817929239213606, 0.7637421953724776, 0.3825655414920891, 0.6611482494098961, 0.19022241257108333, 0.44972084577511023, 0.5476732603321269, 0.4831274653996314, 0.5077048340566679, 0.7289504589448288, 0.4379810490617926, 0.8017221455714771, 0.6434673631716396, 0.5059779734745421, 0.6065367192264559, 0.650368705032214, 0.34567471266024347, 0.39561589000187136, 0.3427787545601037, 0.4676404271158623, 0.5332283386400669, 0.4519108142444285, 0.40662831629925006, 0.42305576187259053, 0.22032895172816622, 0.5278715769330472, 0.43679486629948455, 0.743933429392776, 0.5269515041023835, 0.5008800654866953, 0.214168174561682, 0.44879088851457377, 0.683485355417811, 0.807753104897186, 0.42629475072919953, 0.8502951424821861, 0.17421175568219957, 0.25491371883486935, 0.7595861882737439, 0.6571724132942184, 0.7813188949129265, 0.5626906653340306, 0.8674288259883418, 0.6600514650598344, 0.4827749661719035, 0.5456147119159479, 0.39827550056677263, 0.27323823737433794, 0.695896529362927, 0.5048820477254727, 0.5422349097465021, 0.5610936746718964, 0.6571724132942184, 0.3088751107498249, 0.45428761266464013, 0.6604471727860799, 0.43371621376298963, 0.6171893197168647, 0.8100511550343341, 0.8100511550343341, 0.605832578461134, 0.5526475584669951, 0.4275055171336787, 0.8734720021260204, 0.8508295378350301, 0.5807723706867254, 0.8272749548927728, 0.2670652478909882, 0.7020144194675465, 0.4615566916191992, 0.7055847950248242, 0.43389869234556755, 0.6071692164257629, 0.3496825637352313, 0.23676491619791426, 0.7057755976874825, 0.15539001443149586, 0.6187538615870153, 0.8735882828904331, 0.30049486749739024, 0.23191705420611952, 0.8913917397916864, 0.4977157214618499, 0.16961113509580228, 0.8485494795219795, 0.4760032757956232, 0.5053843099270294, 0.2676015269871764, 0.3627664421236291, 0.15146266807038725, 0.7898179638281774, 0.6145296307645981, 0.3790380236797623, 0.3003532640340299, 0.6086112016774773, 0.39906793889171593, 0.8185832461647057, 0.6715802865662828, 0.8260225289794664, 0.6056902064850618, 0.400132762133902, 0.39471961640683584, 0.6449859309106076, 0.5637152910565628, 0.39949420960438964, 0.5490401551410112, 0.4398875418860128, 0.30916577334906253, 0.7093303227687476, 0.4562508424819209, 0.40444044759428516, 0.5773483646962835, 0.447777692034652, 0.4961542215384683, 0.32474312180562226, 0.21192693199409943, 0.9056903490933487, 0.5013816399998683, 0.758876109553896, 0.6364928148646596, 0.2952804752502578, 0.4748951900520853, 0.43679486629948455, 0.5479962315186364, 0.4728142838839701, 0.6343341418527783, 0.12248807650217919, 0.5052525886146573, 0.8281252124183194, 0.8930081609652758, 0.36283726088930296, 0.8098196742550625, 0.656477404357746, 0.193885049884708, 0.5269515041023835, 0.49858469647139786, 0.32780472036158087, 0.24927512797396847, 0.6148718578314069, 0.10691527318901187, 0.136775438340409, 0.8489192718114075, 0.2600203086082801, 0.8142007211296887, 0.5269515041023835, 0.7966615933629455, 0.5633234794197017, 0.767479452333631], \"xaxis\": \"x\", \"y\": [\"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\"], \"yaxis\": \"y2\"}], \"layout\": {\"barmode\": \"overlay\", \"hovermode\": \"closest\", \"legend\": {\"orientation\": \"h\", \"traceorder\": \"reversed\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y2\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"Probability\"}, \"zeroline\": false}, \"yaxis\": {\"anchor\": \"free\", \"domain\": [0.35, 1], \"position\": 0.0, \"title\": {\"text\": \"Share\"}}, \"yaxis2\": {\"anchor\": \"x\", \"domain\": [0, 0.25], \"dtick\": 1, \"showticklabels\": false}}}}, {\"id\": \"tab_bad\", \"title\": \"bad\", \"graph\": {\"data\": [{\"autobinx\": false, \"histnorm\": \"probability density\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#ed0400\"}, \"name\": \"bad\", \"opacity\": 0.7, \"type\": \"histogram\", \"x\": [0.18579927887031134, 0.9274202256360236, 0.2569067617886446, 0.17851375722123963, 0.43011516789686843, 0.3951880410340851, 0.35333307802371594, 0.854899199395705, 0.7749695319329993, 0.7150752736216004, 0.5793836726576811, 0.17187478758168062, 0.503776006633781, 0.6517104478925241, 0.5321166645488455, 0.4291031613352281, 0.6295132227815239, 0.446367751604861, 0.12978626497489776, 0.578130474122496, 0.1303225049324246, 0.4589423036505589, 0.6028673022099313, 0.6724998803801079, 0.055171077290688375, 0.28900585249094113, 0.5807441942986169, 0.6324527530146118, 0.32780881811994433, 0.4437792729685527, 0.47375733914823626, 0.6755390392614542, 0.8494338455743565, 0.8432302027568838, 0.3962269303969661, 0.36574887203466033, 0.9780529644634413, 0.6757083557066426, 0.43212531492562845, 0.6428319532862445, 0.2244465690609686, 0.6759712108962084, 0.300575337785698, 0.4848467547623382, 0.24353241802821812, 0.6165640897352094, 0.801889943514816, 0.6831580296641933, 0.4684052737322374, 0.07309555507266852, 0.17397747102053363, 0.548208100621717, 0.16948307959681597, 0.5287139706981401, 0.8097217619362252, 0.48186532860504816, 0.7044722268129955, 0.5458559966555334, 0.6067015953642416, 0.5767206748937392, 0.5416109283549078, 0.7766135747357961, 0.6371580804073698, 0.3290646799011723, 0.53941953634433, 0.7444876216695655, 0.27658524567301757, 0.8518717737266248, 0.685064206005921, 0.7994946846943811, 0.6254668451144636, 0.29898447003196504, 0.36566585814722175, 0.8260679099411251, 0.265003746926769, 0.18277705216857454, 0.6401445853260315, 0.2878944788643705, 0.7379395090268356, 0.6578861964269485, 0.3048731186933995, 0.6479177870210828, 0.5479007895539181, 0.8109237991420157, 0.4555798348891207, 0.35159410271621183, 0.6741813074403022, 0.40366163192193316, 0.3797333752177462, 0.42326140605337403, 0.49450075158901585, 0.7027754368270075, 0.31556666432085356, 0.5737052492708005, 0.5594846166878963, 0.9879213229528466, 0.23907110553933086, 0.7604887601700165, 0.906894853259191, 0.49150798334893764, 0.6693239074263375, 0.635181004157038, 0.4291031613352281, 0.6805197940362542, 0.8579270215873258, 0.42231028799440284, 0.7973836574204367, 0.6209099995125147, 0.617932351579841, 0.5867531689564582, 0.8217385626893267, 0.5766058512754557, 0.6085190813519714, 0.6488649586424557, 0.19466062481522506, 0.4062994677131635, 0.31500574198466447, 0.6106996692323751, 0.48314991346809855, 0.4300926711133176, 0.4623912750166579, 0.18141675383529432, 0.7404949196358439, 0.7960551628311661, 0.6696955469146251, 0.7471897031921468, 0.15222801432328747, 0.4782875749995391, 0.6696955469146251, 0.4617114467660769, 0.0374236133971757, 0.34638250956587036, 0.5737052492708005, 0.35412183815676124, 0.5342599897609015, 0.6273126624389191, 0.1819914526651868, 0.6450640502472667, 0.7576359910572065, 0.6363669366758954, 0.35783776888428775, 0.4555798348891207, 0.2603691587203709, 0.09638465351539516, 0.7889843001267657, 0.3995975535535492, 0.2404138117262561, 0.5134503976671381, 0.7620160241108803, 0.4852174766770502, 0.7934067722809752, 0.5657371707019572, 0.40591517497640706, 0.5142806824729376, 0.4667389755277017, 0.4597803030361328, 0.14211531046105408, 0.4709774325404933, 0.39253304933110444, 0.8152160844894966, 0.6418608562675732, 0.5695619245525361, 0.15898796250578873, 0.4189913516486339, 0.8097376625536354, 0.2776505479619531, 0.14100712613869515, 0.1625374057836978, 0.21879614767173305, 0.26016804821119, 0.5884346274074399, 0.25171266030158634, 0.5556828679884147, 0.2886326125606653, 0.5013044750460076, 0.23728971353361283, 0.6280660923097139, 0.6281218947904323, 0.6226708394296439, 0.1280348372312241, 0.37812375401711507, 0.6218606462016874, 0.446367751604861, 0.5237591509200082, 0.22560064672115399, 0.4159575064805634, 0.43989745285902637, 0.38133093816728936, 0.379388299643832, 0.4244201113870294, 0.8495234946343055, 0.44699506619782237, 0.3402560380560977, 0.16997778820688525, 0.6509841470756508, 0.5589353890471914, 0.49320900326902484, 0.41485179365651337, 0.2850172536812061, 0.5150740024049856, 0.7905789411902706, 0.6660097546858721, 0.5916856454756931, 0.25029771644034415, 0.21820707607863943, 0.23625780462752244, 0.6174344585079109, 0.33885175059010386, 0.8097775874289167, 0.5502791542248897, 0.45232673966787307, 0.5168725346003686, 0.4922951659433321, 0.2710495410551712, 0.5620189509382074, 0.19827785442852286, 0.35653263682836045, 0.4940220265254579, 0.3934632807735441, 0.349631294967786, 0.6543252873397565, 0.6043841099981286, 0.6572212454398962, 0.5323595728841377, 0.4667716613599331, 0.5480891857555714, 0.5933716837007499, 0.5769442381274095, 0.7796710482718338, 0.4721284230669528, 0.5632051337005155, 0.25606657060722404, 0.47304849589761655, 0.4991199345133047, 0.785831825438318, 0.5512091114854263, 0.31651464458218903, 0.192246895102814, 0.5737052492708005, 0.14970485751781393, 0.8257882443178004, 0.7450862811651306, 0.2404138117262561, 0.3428275867057816, 0.2186811050870735, 0.43730933466596944, 0.1325711740116582, 0.33994853494016564, 0.5172250338280965, 0.4543852880840521, 0.6017244994332274, 0.7267617626256621, 0.304103470637073, 0.49511795227452726, 0.4577650902534979, 0.4389063253281036, 0.3428275867057816, 0.6911248892501751, 0.5457123873353599, 0.3395528272139201, 0.5662837862370104, 0.38281068028313525, 0.1899488449656659, 0.1899488449656659, 0.39416742153886597, 0.4473524415330049, 0.5724944828663213, 0.12652799787397961, 0.14917046216496987, 0.4192276293132746, 0.1727250451072272, 0.7329347521090118, 0.2979855805324535, 0.5384433083808008, 0.2944152049751758, 0.5661013076544325, 0.39283078357423706, 0.6503174362647687, 0.7632350838020857, 0.29422440231251745, 0.8446099855685041, 0.3812461384129847, 0.1264117171095669, 0.6995051325026098, 0.7680829457938805, 0.1086082602083136, 0.50228427853815, 0.8303888649041977, 0.15145052047802054, 0.5239967242043768, 0.49461569007297057, 0.7323984730128237, 0.6372335578763709, 0.8485373319296128, 0.21018203617182263, 0.3854703692354019, 0.6209619763202376, 0.6996467359659702, 0.3913887983225227, 0.600932061108284, 0.18141675383529432, 0.32841971343371723, 0.17397747102053363, 0.3943097935149382, 0.5998672378660981, 0.6052803835931642, 0.35501406908939237, 0.4362847089434372, 0.6005057903956104, 0.45095984485898877, 0.5601124581139871, 0.6908342266509375, 0.29066967723125237, 0.5437491575180791, 0.5955595524057149, 0.4226516353037165, 0.552222307965348, 0.5038457784615318, 0.6752568781943777, 0.7880730680059006, 0.09430965090665133, 0.4986183600001317, 0.24112389044610405, 0.3635071851353404, 0.7047195247497422, 0.5251048099479148, 0.5632051337005155, 0.4520037684813636, 0.5271857161160298, 0.36566585814722175, 0.8775119234978208, 0.49474741138534273, 0.17187478758168062, 0.1069918390347242, 0.6371627391106971, 0.19018032574493748, 0.34352259564225396, 0.806114950115292, 0.47304849589761655, 0.5014153035286022, 0.6721952796384192, 0.7507248720260316, 0.38512814216859315, 0.8930847268109882, 0.863224561659591, 0.15108072818859253, 0.7399796913917198, 0.18579927887031134, 0.47304849589761655, 0.2033384066370545, 0.43667652058029827, 0.23252054766636898], \"xaxis\": \"x\", \"xbins\": {\"end\": 0.9879213229528466, \"size\": 0.05, \"start\": 0.0374236133971757}, \"yaxis\": \"y\"}, {\"autobinx\": false, \"histnorm\": \"probability density\", \"legendgroup\": \"other\", \"marker\": {\"color\": \"#4d4d4d\"}, \"name\": \"other\", \"opacity\": 0.7, \"type\": \"histogram\", \"x\": [0.6660328535674787, 0.4955559099445003, 0.11251030999551548, 0.5313240922219649, 0.7616845263358343, 0.42881839881496897, 0.22146723198036844, 0.2709448900825402, 0.04188686298684474, 0.3198999677935893, 0.586632325439729, 0.3332859260788763, 0.0891770245136605, 0.07249138429342028, 0.0813041402249215, 0.2808128557304226, 0.18155424903412543, 0.14020593233116785, 0.20529540916933675, 0.1755850319354616, 0.5722846846512241, 0.4684623303117058, 0.2863708053899042, 0.4489302200945696, 0.3606737334686688, 0.09834172337505831, 0.1439119889738254, 0.10526388551166177, 0.08976738859769384, 0.15927641460572795, 0.07353544332944184, 0.4894096639868448, 0.24735122968283396, 0.41440459167745447, 0.10107859516115147, 0.4809249647595707, 0.043928674649753696, 0.27268427565697984, 0.07203278686513981, 0.35989685204578803, 0.08410225657903847, 0.09640449279894714, 0.2859044620344169, 0.766491644508495, 0.27194216744256416, 0.11891721880979944, 0.6033870782914414, 0.8445823904457724, 0.4148378249676725, 0.09538880480821377, 0.5822786697287807, 0.2006236885231063, 0.30215903380660414, 0.3526626332448971, 0.22921561702294402, 0.3499358724503807, 0.451050436906263, 0.01968005574460141, 0.3849224947932618, 0.608666907839271, 0.30333177217190177, 0.05732515971384944, 0.08299070223644744, 0.155374347961305, 0.4378217303747408, 0.10641916767178827, 0.3207785913922725, 0.3280003244598044, 0.4747408725557203, 0.27229542413121455, 0.5314247042003052, 0.13834506443323813, 0.652508483608137, 0.1775869136191267, 0.4659209431511335, 0.3288332341233703, 0.47224603889779837, 0.2773569186284155, 0.18590272545123854, 0.6719763059805124, 0.04569198037744582, 0.22473444069733528, 0.0776074933333939, 0.1411968215808168, 0.3654892991508686, 0.06069899520469324, 0.21029328672965164, 0.13919371635861133, 0.16321149678759816, 0.6144435769482088, 0.1388055550317996, 0.0827658987104557, 0.0793107693477757, 0.04994940743047871, 0.46220165202879504, 0.08265172102971341, 0.5554564865761329, 0.10902951494304747, 0.26480674198345266, 0.31816712550642645, 0.20184400370343658, 0.23734670470511587, 0.19264674509953905, 0.03558879485690103, 0.5314247042003052, 0.3013473679880785, 0.8043030592862955, 0.07665185966197174, 0.17816243980233548, 0.14637302723887635, 0.43623195291339645, 0.5773286546676725, 0.06996409198491005, 0.0635191394270278, 0.11839391684253864, 0.03368970372860669, 0.16544292122901683, 0.5002106013252752, 0.20783967621931676, 0.4413184352618238, 0.1377753535318076, 0.017128038770129694, 0.09070427960766203, 0.05237321155563324, 0.46044782253877736, 0.09863911308639095, 0.6058955548956951, 0.07377868677997379, 0.33726125667837825, 0.03705661785513226, 0.03856885477325478, 0.01970319875133708, 0.06623921298607705, 0.655672818127978, 0.36403826442427, 0.375635621083512, 0.25822104517587474, 0.26990817233175546, 0.30316845466795117, 0.21597661143113533, 0.10411587283779344, 0.4582573305440075, 0.28974208538397184, 0.3995654588450376, 0.48407929824265805, 0.2412117545349558, 0.49704114689177337, 0.3112403223054312, 0.13571503940671914, 0.35304273602320047, 0.18963603484652192, 0.06023564559469896, 0.305863422303413, 0.34062746964654456, 0.03532029949184434, 0.20200996882548472, 0.207876095289533, 0.11304202998506685, 0.26487496820305634, 0.46674395287949066, 0.05931266843465788, 0.6063731497207538, 0.053339747820140615, 0.16056749669580483, 0.3366557342021428, 0.18735912995827353, 0.2667542380283816, 0.9197592959547904, 0.13322255285490225, 0.3533185668595151, 0.08763312389948397, 0.343329095265401, 0.1298321532292276, 0.11240742021865013, 0.03412749239977686, 0.23316671381479437, 0.13955591125269062, 0.065615492475942, 0.03940539431326806, 0.04874684240881699, 0.42507109047861347, 0.3720756994829524, 0.20627971812824875, 0.23346983492740092, 0.299872058778726, 0.14688925552714138, 0.20529540916933675, 0.11294333341234963, 0.4523771212155355, 0.15895981664313275, 0.12633289347617382, 0.34801013400503944, 0.063056887931354, 0.09222807982804315, 0.19281104432210028, 0.11843845992675284, 0.1064686731970873, 0.12171087020281346, 0.49704114689177337, 0.4202798549667376, 0.058322454167927695, 0.40418598015134155, 0.7514842711311043, 0.067978575311199, 0.1468497162592186, 0.3655805321171328, 0.36741292271676196, 0.08785516413846428, 0.4223454464089015, 0.09472348251934337, 0.14196098925812006, 0.10013555988874479, 0.32154631204965056, 0.05416575683382341, 0.786126361492164, 0.04696516601190348, 0.26926088858349784, 0.28123172687107445, 0.3094364396730669, 0.04307250962973752, 0.07126159086244754, 0.6143015945908075, 0.495586079448059, 0.46102608015166635, 0.40789311683600216, 0.8929715185951024, 0.1227006502272181, 0.3638055988942468, 0.10470002869891348, 0.29304213908849364, 0.8936703981375603, 0.3534407380188983, 0.0883666731866185, 0.07895584641700149, 0.05166417783587085, 0.4199775765299997, 0.10304865631077798, 0.1041340676595982, 0.11031385635331636, 0.22368578646300386, 0.22137255536682798, 0.0725394352715707, 0.08320759746190642, 0.3577905591727162, 0.36362749207413336, 0.13058702032609693, 0.4306817897420764, 0.4684623303117058, 0.3185463047756948, 0.6991046594229053, 0.33105510290791684, 0.35804773811787727, 0.3499358724503807, 0.17780319308126435, 0.07142366539796174, 0.1504846162366139, 0.28643330026545544, 0.11492102279820171, 0.08716328114311156, 0.12905574960179156, 0.5528531989583015, 0.2852168598030531, 0.3185463047756948, 0.41766807389819915, 0.22818770291371737, 0.10749415552266317, 0.07500089027222667, 0.2150933620687273, 0.4879833184669665, 0.21367083697314282, 0.18281788227943807, 0.11217648511765432, 0.01860460444149037, 0.4990100838788346, 0.3212979959143686, 0.7252893191599291, 0.30018855716775616, 0.2808216200321265, 0.24332849241566534, 0.22583693263898685, 0.307128141019565, 0.12930297020615966, 0.07734813107736227, 0.38078614076753503, 0.037937415915298756, 0.18389331462546077, 0.2015421194948802, 0.10121634311933059, 0.7209948827487924, 0.252131738577411, 0.19866278493931944, 0.5569604587758099, 0.19172534874952063, 0.07516041810443141, 0.18673310211333727, 0.20736440356309183, 0.27568985010185776, 0.1748501221961516, 0.134246332983591, 0.12151400729184814, 0.03860330573341564, 0.16198960071610413, 0.062309112953929935, 0.14943540958877521, 0.46827469198568006, 0.12435295831370408, 0.11768791031746062, 0.10794707492381372, 0.04347111427796346, 0.07423675680829, 0.1602542791395647, 0.19911642350143877, 0.2379444352717226, 0.36664322039668684, 0.10130143557253446, 0.17108028607870185, 0.6143194513817134, 0.5641235853966853, 0.29864316680665437, 0.44752301946823647, 0.13459844499503626, 0.037461465199631894, 0.5002964248569376, 0.4059565893810353, 0.7035957096210382, 0.0629603198376949, 0.25036415064992923, 0.14780834332950044, 0.24800647860056513, 0.10438723399855232, 0.24366911510822187, 0.4574644219698093, 0.8347014835967527, 0.42226245660703365, 0.4073158502222598, 0.47525484003715535, 0.37845934883934684, 0.35325777167774697, 0.4763432908647238, 0.18941100564626978, 0.23853527246002126, 0.27277355193056574, 0.5556171757583562, 0.19481513110659687, 0.7460207524242459, 0.12627308236197843, 0.2115813466591615, 0.4773837842994688, 0.22238536240250728, 0.1978655273089749, 0.32057959349203036, 0.1601330373243487, 0.6256605001243821, 0.34062746964654456, 0.5899158924001677, 0.1273375405407705, 0.6866376712310945, 0.3812864953771038, 0.07918534602430627, 0.10510921928053807, 0.052405178286905496, 0.29010285216427345, 0.5802968836962079, 0.4475494904811408, 0.33107045093633036, 0.6046547135519548, 0.33132995382553565, 0.3391582818855403, 0.37109937806185267, 0.18876467901964422, 0.03244681540368277, 0.6531311156123596, 0.18281848038190407, 0.06840545126676123, 0.23876166598551407, 0.5602062902528231, 0.05478334190217349, 0.18965009362393503, 0.502081053312289, 0.0945975060483667, 0.24937367783354814, 0.14040338921272166, 0.09582424632391484, 0.4879833184669665, 0.07536550594022651, 0.37763546052463404, 0.20240400638142053, 0.06234715971662652, 0.1729504208160284, 0.2536573606029918, 0.1491704939138675, 0.47224603889779837, 0.20734784509414073, 0.1656619584420439, 0.20263687678412212, 0.4576701693643329, 0.3746187330143109, 0.06578487521364562, 0.09359041291034786, 0.15714155813810793, 0.43198081216185935, 0.17693664965610134, 0.14200602748771296, 0.16878839641400256, 0.11131318694256087, 0.43040972974554736, 0.12494266711040569, 0.5286591337585229, 0.3917329141436472, 0.14284790216410748, 0.29931895876037384, 0.3998656181534954, 0.13198036366642862, 0.2166851793268345, 0.164669749255824, 0.3116999397838065, 0.5702002297218003, 0.2867818412254799, 0.05809024612643199, 0.0701620515557333, 0.10493669218879953, 0.03474255021640338, 0.14069518845012563, 0.7697788668098057, 0.44513161239284327, 0.12104291767226882, 0.2823656727566666, 0.28640273091276736, 0.09904459769556595, 0.10889384421684001, 0.1978655273089749, 0.6326587477498924, 0.0766186874204361, 0.07300117689776386, 0.3978521493117628, 0.7293533971641823, 0.24040337450518035, 0.46827469198568006, 0.03737110954461231, 0.48112847828662497, 0.5755848065786346, 0.12151472907643468, 0.332302417201758, 0.3208349144509022, 0.13406270144296106, 0.47820199098358873, 0.024219732643774528, 0.7923035912680444, 0.3099424932714111, 0.8494816644677875, 0.15230116664989468, 0.8795672599938588, 0.34536882843285344, 0.587897812361327, 0.3660303223369904, 0.3074082248441362, 0.1925553058603695, 0.1582957933341015, 0.5297945963993664, 0.1892543681582496, 0.06574637766643598, 0.03286461121245521, 0.6223124217546917, 0.48666930315350876, 0.17200815643270417, 0.27042696199957883, 0.16010429726024444, 0.25291734909108765, 0.22778758435893687, 0.6055190518965303, 0.41989528411161425, 0.2865861541738164, 0.17344095530188786, 0.4163761941495938, 0.24610426408478792, 0.029106329843254564, 0.5849270471051293, 0.09607886499379148, 0.4890296174547498, 0.11193395874659995, 0.3667485749721523, 0.29672938182784603, 0.13696827462710404, 0.03986507081677082, 0.41542023534722683, 0.1642424989032959, 0.041559354155004224, 0.1266666793707928, 0.5259198205822933, 0.42123490919744344, 0.6147437654518444, 0.42849246998341506, 0.04874684240881699, 0.16870816563337898, 0.35179373534084035, 0.4552463954734379, 0.1543174595222413, 0.4641274821418986, 0.1106599594415556, 0.40441066041397966, 0.05916303638108533, 0.24194101851814365, 0.5755848065786346, 0.23631147082452741, 0.04679471849088612, 0.33132995382553565, 0.6031606095022326, 0.16900214819844117, 0.9322526967181247, 0.1065938389205352, 0.0540586741766943, 0.14920224829950646, 0.03054451782098533, 0.13595064656866984, 0.15908339514281045, 0.09402391562754642, 0.27219479721363327, 0.10477531970828624, 0.6046547135519548, 0.04412971358840656, 0.0821245873848182, 0.24953715645213048, 0.24311299470472425, 0.679537413518331, 0.02875041056121841, 0.2874129658970298, 0.17131102264191878, 0.07042427222914205, 0.1577516063520068, 0.39934634677258996, 0.42249259173992826, 0.24940231538328683, 0.46827469198568006, 0.040988937643475554, 0.034828704291737345, 0.26663563965858417, 0.22421743312747255, 0.10716094829621758, 0.7421831263598226, 0.4644511163280224, 0.1591307416719686, 0.21502194578256428, 0.12883185373794437, 0.15520095945599266, 0.04280666734842442, 0.06928764484923078, 0.3578757504587543, 0.0760792945579073, 0.06637805380770656, 0.5755848065786346, 0.4326356954473739, 0.16985579355455038, 0.47152805642545803, 0.11644579282256762, 0.11790522998710073, 0.5438286352264949, 0.41561805514360906, 0.050606352251634235, 0.21836830194439782, 0.22298545275517268, 0.1504846162366139, 0.16819644397314482, 0.47796113776613436, 0.14100197907825862, 0.7878397890034206, 0.12176963827920351, 0.09814942480303201, 0.23162396036129984, 0.04400104962869911, 0.061588508633294015, 0.2774601068082493, 0.40816383821078206, 0.14036214651023216, 0.11837607594274324, 0.0703155477214753, 0.17002415827487982, 0.24611532014486182, 0.06874641727313702, 0.30975746960573625, 0.07004288447243323, 0.6453829176356538, 0.3880412370469972, 0.10205495289732236, 0.12171087020281346, 0.38550692709735157, 0.4398162761337091, 0.5769741243450848, 0.48842976274850136, 0.3866799681687785, 0.17129518728202664, 0.5711206597512044, 0.4456070955069118, 0.4585850027539752, 0.25462747480751524, 0.34771016550763867, 0.35548618548401445, 0.07878090041588082, 0.3008706318705062, 0.08117751180329491, 0.055511805197920094, 0.1600174453683395, 0.35597309965685686, 0.5473978930443646, 0.3321771897262046, 0.14643302530661162, 0.7653011157176768, 0.24188431843396252, 0.16704799028757666, 0.41136103198090634, 0.5749869949413896, 0.709238838470871, 0.09340318303147321, 0.602429869503323, 0.04154705947390969, 0.7519582179986716, 0.15993940416551844, 0.04372375151311325, 0.4076899811241429, 0.4644511163280224, 0.3133137248525114, 0.24628490675063597, 0.06972977174174444, 0.15949948541388637, 0.2241543425141257, 0.1729876202034616, 0.07290025122558275, 0.1220000714032804, 0.36493953208423235, 0.09420126302076737, 0.026726938234992392, 0.7199273032686843, 0.4606762448039463, 0.04906818437448113, 0.19446415942665518, 0.14876853598344464, 0.3247816953453747, 0.023320858692869595, 0.7310618090422621, 0.48944479260603346, 0.20357574295749958, 0.0840537250624015, 0.5368744051465595, 0.21101467800102214, 0.46682279298460017, 0.3749869638443927, 0.46592999202179275, 0.10188412989688433, 0.15751976448865512], \"xaxis\": \"x\", \"xbins\": {\"end\": 0.9322526967181247, \"size\": 0.05, \"start\": 0.017128038770129694}, \"yaxis\": \"y\"}, {\"legendgroup\": \"bad\", \"marker\": {\"color\": \"#ed0400\", \"symbol\": \"line-ns-open\"}, \"mode\": \"markers\", \"name\": \"bad\", \"showlegend\": false, \"type\": \"scatter\", \"x\": [0.18579927887031134, 0.9274202256360236, 0.2569067617886446, 0.17851375722123963, 0.43011516789686843, 0.3951880410340851, 0.35333307802371594, 0.854899199395705, 0.7749695319329993, 0.7150752736216004, 0.5793836726576811, 0.17187478758168062, 0.503776006633781, 0.6517104478925241, 0.5321166645488455, 0.4291031613352281, 0.6295132227815239, 0.446367751604861, 0.12978626497489776, 0.578130474122496, 0.1303225049324246, 0.4589423036505589, 0.6028673022099313, 0.6724998803801079, 0.055171077290688375, 0.28900585249094113, 0.5807441942986169, 0.6324527530146118, 0.32780881811994433, 0.4437792729685527, 0.47375733914823626, 0.6755390392614542, 0.8494338455743565, 0.8432302027568838, 0.3962269303969661, 0.36574887203466033, 0.9780529644634413, 0.6757083557066426, 0.43212531492562845, 0.6428319532862445, 0.2244465690609686, 0.6759712108962084, 0.300575337785698, 0.4848467547623382, 0.24353241802821812, 0.6165640897352094, 0.801889943514816, 0.6831580296641933, 0.4684052737322374, 0.07309555507266852, 0.17397747102053363, 0.548208100621717, 0.16948307959681597, 0.5287139706981401, 0.8097217619362252, 0.48186532860504816, 0.7044722268129955, 0.5458559966555334, 0.6067015953642416, 0.5767206748937392, 0.5416109283549078, 0.7766135747357961, 0.6371580804073698, 0.3290646799011723, 0.53941953634433, 0.7444876216695655, 0.27658524567301757, 0.8518717737266248, 0.685064206005921, 0.7994946846943811, 0.6254668451144636, 0.29898447003196504, 0.36566585814722175, 0.8260679099411251, 0.265003746926769, 0.18277705216857454, 0.6401445853260315, 0.2878944788643705, 0.7379395090268356, 0.6578861964269485, 0.3048731186933995, 0.6479177870210828, 0.5479007895539181, 0.8109237991420157, 0.4555798348891207, 0.35159410271621183, 0.6741813074403022, 0.40366163192193316, 0.3797333752177462, 0.42326140605337403, 0.49450075158901585, 0.7027754368270075, 0.31556666432085356, 0.5737052492708005, 0.5594846166878963, 0.9879213229528466, 0.23907110553933086, 0.7604887601700165, 0.906894853259191, 0.49150798334893764, 0.6693239074263375, 0.635181004157038, 0.4291031613352281, 0.6805197940362542, 0.8579270215873258, 0.42231028799440284, 0.7973836574204367, 0.6209099995125147, 0.617932351579841, 0.5867531689564582, 0.8217385626893267, 0.5766058512754557, 0.6085190813519714, 0.6488649586424557, 0.19466062481522506, 0.4062994677131635, 0.31500574198466447, 0.6106996692323751, 0.48314991346809855, 0.4300926711133176, 0.4623912750166579, 0.18141675383529432, 0.7404949196358439, 0.7960551628311661, 0.6696955469146251, 0.7471897031921468, 0.15222801432328747, 0.4782875749995391, 0.6696955469146251, 0.4617114467660769, 0.0374236133971757, 0.34638250956587036, 0.5737052492708005, 0.35412183815676124, 0.5342599897609015, 0.6273126624389191, 0.1819914526651868, 0.6450640502472667, 0.7576359910572065, 0.6363669366758954, 0.35783776888428775, 0.4555798348891207, 0.2603691587203709, 0.09638465351539516, 0.7889843001267657, 0.3995975535535492, 0.2404138117262561, 0.5134503976671381, 0.7620160241108803, 0.4852174766770502, 0.7934067722809752, 0.5657371707019572, 0.40591517497640706, 0.5142806824729376, 0.4667389755277017, 0.4597803030361328, 0.14211531046105408, 0.4709774325404933, 0.39253304933110444, 0.8152160844894966, 0.6418608562675732, 0.5695619245525361, 0.15898796250578873, 0.4189913516486339, 0.8097376625536354, 0.2776505479619531, 0.14100712613869515, 0.1625374057836978, 0.21879614767173305, 0.26016804821119, 0.5884346274074399, 0.25171266030158634, 0.5556828679884147, 0.2886326125606653, 0.5013044750460076, 0.23728971353361283, 0.6280660923097139, 0.6281218947904323, 0.6226708394296439, 0.1280348372312241, 0.37812375401711507, 0.6218606462016874, 0.446367751604861, 0.5237591509200082, 0.22560064672115399, 0.4159575064805634, 0.43989745285902637, 0.38133093816728936, 0.379388299643832, 0.4244201113870294, 0.8495234946343055, 0.44699506619782237, 0.3402560380560977, 0.16997778820688525, 0.6509841470756508, 0.5589353890471914, 0.49320900326902484, 0.41485179365651337, 0.2850172536812061, 0.5150740024049856, 0.7905789411902706, 0.6660097546858721, 0.5916856454756931, 0.25029771644034415, 0.21820707607863943, 0.23625780462752244, 0.6174344585079109, 0.33885175059010386, 0.8097775874289167, 0.5502791542248897, 0.45232673966787307, 0.5168725346003686, 0.4922951659433321, 0.2710495410551712, 0.5620189509382074, 0.19827785442852286, 0.35653263682836045, 0.4940220265254579, 0.3934632807735441, 0.349631294967786, 0.6543252873397565, 0.6043841099981286, 0.6572212454398962, 0.5323595728841377, 0.4667716613599331, 0.5480891857555714, 0.5933716837007499, 0.5769442381274095, 0.7796710482718338, 0.4721284230669528, 0.5632051337005155, 0.25606657060722404, 0.47304849589761655, 0.4991199345133047, 0.785831825438318, 0.5512091114854263, 0.31651464458218903, 0.192246895102814, 0.5737052492708005, 0.14970485751781393, 0.8257882443178004, 0.7450862811651306, 0.2404138117262561, 0.3428275867057816, 0.2186811050870735, 0.43730933466596944, 0.1325711740116582, 0.33994853494016564, 0.5172250338280965, 0.4543852880840521, 0.6017244994332274, 0.7267617626256621, 0.304103470637073, 0.49511795227452726, 0.4577650902534979, 0.4389063253281036, 0.3428275867057816, 0.6911248892501751, 0.5457123873353599, 0.3395528272139201, 0.5662837862370104, 0.38281068028313525, 0.1899488449656659, 0.1899488449656659, 0.39416742153886597, 0.4473524415330049, 0.5724944828663213, 0.12652799787397961, 0.14917046216496987, 0.4192276293132746, 0.1727250451072272, 0.7329347521090118, 0.2979855805324535, 0.5384433083808008, 0.2944152049751758, 0.5661013076544325, 0.39283078357423706, 0.6503174362647687, 0.7632350838020857, 0.29422440231251745, 0.8446099855685041, 0.3812461384129847, 0.1264117171095669, 0.6995051325026098, 0.7680829457938805, 0.1086082602083136, 0.50228427853815, 0.8303888649041977, 0.15145052047802054, 0.5239967242043768, 0.49461569007297057, 0.7323984730128237, 0.6372335578763709, 0.8485373319296128, 0.21018203617182263, 0.3854703692354019, 0.6209619763202376, 0.6996467359659702, 0.3913887983225227, 0.600932061108284, 0.18141675383529432, 0.32841971343371723, 0.17397747102053363, 0.3943097935149382, 0.5998672378660981, 0.6052803835931642, 0.35501406908939237, 0.4362847089434372, 0.6005057903956104, 0.45095984485898877, 0.5601124581139871, 0.6908342266509375, 0.29066967723125237, 0.5437491575180791, 0.5955595524057149, 0.4226516353037165, 0.552222307965348, 0.5038457784615318, 0.6752568781943777, 0.7880730680059006, 0.09430965090665133, 0.4986183600001317, 0.24112389044610405, 0.3635071851353404, 0.7047195247497422, 0.5251048099479148, 0.5632051337005155, 0.4520037684813636, 0.5271857161160298, 0.36566585814722175, 0.8775119234978208, 0.49474741138534273, 0.17187478758168062, 0.1069918390347242, 0.6371627391106971, 0.19018032574493748, 0.34352259564225396, 0.806114950115292, 0.47304849589761655, 0.5014153035286022, 0.6721952796384192, 0.7507248720260316, 0.38512814216859315, 0.8930847268109882, 0.863224561659591, 0.15108072818859253, 0.7399796913917198, 0.18579927887031134, 0.47304849589761655, 0.2033384066370545, 0.43667652058029827, 0.23252054766636898], \"xaxis\": \"x\", \"y\": [\"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\"], \"yaxis\": \"y2\"}, {\"legendgroup\": \"other\", \"marker\": {\"color\": \"#4d4d4d\", \"symbol\": \"line-ns-open\"}, \"mode\": \"markers\", \"name\": \"other\", \"showlegend\": false, \"type\": \"scatter\", \"x\": [0.6660328535674787, 0.4955559099445003, 0.11251030999551548, 0.5313240922219649, 0.7616845263358343, 0.42881839881496897, 0.22146723198036844, 0.2709448900825402, 0.04188686298684474, 0.3198999677935893, 0.586632325439729, 0.3332859260788763, 0.0891770245136605, 0.07249138429342028, 0.0813041402249215, 0.2808128557304226, 0.18155424903412543, 0.14020593233116785, 0.20529540916933675, 0.1755850319354616, 0.5722846846512241, 0.4684623303117058, 0.2863708053899042, 0.4489302200945696, 0.3606737334686688, 0.09834172337505831, 0.1439119889738254, 0.10526388551166177, 0.08976738859769384, 0.15927641460572795, 0.07353544332944184, 0.4894096639868448, 0.24735122968283396, 0.41440459167745447, 0.10107859516115147, 0.4809249647595707, 0.043928674649753696, 0.27268427565697984, 0.07203278686513981, 0.35989685204578803, 0.08410225657903847, 0.09640449279894714, 0.2859044620344169, 0.766491644508495, 0.27194216744256416, 0.11891721880979944, 0.6033870782914414, 0.8445823904457724, 0.4148378249676725, 0.09538880480821377, 0.5822786697287807, 0.2006236885231063, 0.30215903380660414, 0.3526626332448971, 0.22921561702294402, 0.3499358724503807, 0.451050436906263, 0.01968005574460141, 0.3849224947932618, 0.608666907839271, 0.30333177217190177, 0.05732515971384944, 0.08299070223644744, 0.155374347961305, 0.4378217303747408, 0.10641916767178827, 0.3207785913922725, 0.3280003244598044, 0.4747408725557203, 0.27229542413121455, 0.5314247042003052, 0.13834506443323813, 0.652508483608137, 0.1775869136191267, 0.4659209431511335, 0.3288332341233703, 0.47224603889779837, 0.2773569186284155, 0.18590272545123854, 0.6719763059805124, 0.04569198037744582, 0.22473444069733528, 0.0776074933333939, 0.1411968215808168, 0.3654892991508686, 0.06069899520469324, 0.21029328672965164, 0.13919371635861133, 0.16321149678759816, 0.6144435769482088, 0.1388055550317996, 0.0827658987104557, 0.0793107693477757, 0.04994940743047871, 0.46220165202879504, 0.08265172102971341, 0.5554564865761329, 0.10902951494304747, 0.26480674198345266, 0.31816712550642645, 0.20184400370343658, 0.23734670470511587, 0.19264674509953905, 0.03558879485690103, 0.5314247042003052, 0.3013473679880785, 0.8043030592862955, 0.07665185966197174, 0.17816243980233548, 0.14637302723887635, 0.43623195291339645, 0.5773286546676725, 0.06996409198491005, 0.0635191394270278, 0.11839391684253864, 0.03368970372860669, 0.16544292122901683, 0.5002106013252752, 0.20783967621931676, 0.4413184352618238, 0.1377753535318076, 0.017128038770129694, 0.09070427960766203, 0.05237321155563324, 0.46044782253877736, 0.09863911308639095, 0.6058955548956951, 0.07377868677997379, 0.33726125667837825, 0.03705661785513226, 0.03856885477325478, 0.01970319875133708, 0.06623921298607705, 0.655672818127978, 0.36403826442427, 0.375635621083512, 0.25822104517587474, 0.26990817233175546, 0.30316845466795117, 0.21597661143113533, 0.10411587283779344, 0.4582573305440075, 0.28974208538397184, 0.3995654588450376, 0.48407929824265805, 0.2412117545349558, 0.49704114689177337, 0.3112403223054312, 0.13571503940671914, 0.35304273602320047, 0.18963603484652192, 0.06023564559469896, 0.305863422303413, 0.34062746964654456, 0.03532029949184434, 0.20200996882548472, 0.207876095289533, 0.11304202998506685, 0.26487496820305634, 0.46674395287949066, 0.05931266843465788, 0.6063731497207538, 0.053339747820140615, 0.16056749669580483, 0.3366557342021428, 0.18735912995827353, 0.2667542380283816, 0.9197592959547904, 0.13322255285490225, 0.3533185668595151, 0.08763312389948397, 0.343329095265401, 0.1298321532292276, 0.11240742021865013, 0.03412749239977686, 0.23316671381479437, 0.13955591125269062, 0.065615492475942, 0.03940539431326806, 0.04874684240881699, 0.42507109047861347, 0.3720756994829524, 0.20627971812824875, 0.23346983492740092, 0.299872058778726, 0.14688925552714138, 0.20529540916933675, 0.11294333341234963, 0.4523771212155355, 0.15895981664313275, 0.12633289347617382, 0.34801013400503944, 0.063056887931354, 0.09222807982804315, 0.19281104432210028, 0.11843845992675284, 0.1064686731970873, 0.12171087020281346, 0.49704114689177337, 0.4202798549667376, 0.058322454167927695, 0.40418598015134155, 0.7514842711311043, 0.067978575311199, 0.1468497162592186, 0.3655805321171328, 0.36741292271676196, 0.08785516413846428, 0.4223454464089015, 0.09472348251934337, 0.14196098925812006, 0.10013555988874479, 0.32154631204965056, 0.05416575683382341, 0.786126361492164, 0.04696516601190348, 0.26926088858349784, 0.28123172687107445, 0.3094364396730669, 0.04307250962973752, 0.07126159086244754, 0.6143015945908075, 0.495586079448059, 0.46102608015166635, 0.40789311683600216, 0.8929715185951024, 0.1227006502272181, 0.3638055988942468, 0.10470002869891348, 0.29304213908849364, 0.8936703981375603, 0.3534407380188983, 0.0883666731866185, 0.07895584641700149, 0.05166417783587085, 0.4199775765299997, 0.10304865631077798, 0.1041340676595982, 0.11031385635331636, 0.22368578646300386, 0.22137255536682798, 0.0725394352715707, 0.08320759746190642, 0.3577905591727162, 0.36362749207413336, 0.13058702032609693, 0.4306817897420764, 0.4684623303117058, 0.3185463047756948, 0.6991046594229053, 0.33105510290791684, 0.35804773811787727, 0.3499358724503807, 0.17780319308126435, 0.07142366539796174, 0.1504846162366139, 0.28643330026545544, 0.11492102279820171, 0.08716328114311156, 0.12905574960179156, 0.5528531989583015, 0.2852168598030531, 0.3185463047756948, 0.41766807389819915, 0.22818770291371737, 0.10749415552266317, 0.07500089027222667, 0.2150933620687273, 0.4879833184669665, 0.21367083697314282, 0.18281788227943807, 0.11217648511765432, 0.01860460444149037, 0.4990100838788346, 0.3212979959143686, 0.7252893191599291, 0.30018855716775616, 0.2808216200321265, 0.24332849241566534, 0.22583693263898685, 0.307128141019565, 0.12930297020615966, 0.07734813107736227, 0.38078614076753503, 0.037937415915298756, 0.18389331462546077, 0.2015421194948802, 0.10121634311933059, 0.7209948827487924, 0.252131738577411, 0.19866278493931944, 0.5569604587758099, 0.19172534874952063, 0.07516041810443141, 0.18673310211333727, 0.20736440356309183, 0.27568985010185776, 0.1748501221961516, 0.134246332983591, 0.12151400729184814, 0.03860330573341564, 0.16198960071610413, 0.062309112953929935, 0.14943540958877521, 0.46827469198568006, 0.12435295831370408, 0.11768791031746062, 0.10794707492381372, 0.04347111427796346, 0.07423675680829, 0.1602542791395647, 0.19911642350143877, 0.2379444352717226, 0.36664322039668684, 0.10130143557253446, 0.17108028607870185, 0.6143194513817134, 0.5641235853966853, 0.29864316680665437, 0.44752301946823647, 0.13459844499503626, 0.037461465199631894, 0.5002964248569376, 0.4059565893810353, 0.7035957096210382, 0.0629603198376949, 0.25036415064992923, 0.14780834332950044, 0.24800647860056513, 0.10438723399855232, 0.24366911510822187, 0.4574644219698093, 0.8347014835967527, 0.42226245660703365, 0.4073158502222598, 0.47525484003715535, 0.37845934883934684, 0.35325777167774697, 0.4763432908647238, 0.18941100564626978, 0.23853527246002126, 0.27277355193056574, 0.5556171757583562, 0.19481513110659687, 0.7460207524242459, 0.12627308236197843, 0.2115813466591615, 0.4773837842994688, 0.22238536240250728, 0.1978655273089749, 0.32057959349203036, 0.1601330373243487, 0.6256605001243821, 0.34062746964654456, 0.5899158924001677, 0.1273375405407705, 0.6866376712310945, 0.3812864953771038, 0.07918534602430627, 0.10510921928053807, 0.052405178286905496, 0.29010285216427345, 0.5802968836962079, 0.4475494904811408, 0.33107045093633036, 0.6046547135519548, 0.33132995382553565, 0.3391582818855403, 0.37109937806185267, 0.18876467901964422, 0.03244681540368277, 0.6531311156123596, 0.18281848038190407, 0.06840545126676123, 0.23876166598551407, 0.5602062902528231, 0.05478334190217349, 0.18965009362393503, 0.502081053312289, 0.0945975060483667, 0.24937367783354814, 0.14040338921272166, 0.09582424632391484, 0.4879833184669665, 0.07536550594022651, 0.37763546052463404, 0.20240400638142053, 0.06234715971662652, 0.1729504208160284, 0.2536573606029918, 0.1491704939138675, 0.47224603889779837, 0.20734784509414073, 0.1656619584420439, 0.20263687678412212, 0.4576701693643329, 0.3746187330143109, 0.06578487521364562, 0.09359041291034786, 0.15714155813810793, 0.43198081216185935, 0.17693664965610134, 0.14200602748771296, 0.16878839641400256, 0.11131318694256087, 0.43040972974554736, 0.12494266711040569, 0.5286591337585229, 0.3917329141436472, 0.14284790216410748, 0.29931895876037384, 0.3998656181534954, 0.13198036366642862, 0.2166851793268345, 0.164669749255824, 0.3116999397838065, 0.5702002297218003, 0.2867818412254799, 0.05809024612643199, 0.0701620515557333, 0.10493669218879953, 0.03474255021640338, 0.14069518845012563, 0.7697788668098057, 0.44513161239284327, 0.12104291767226882, 0.2823656727566666, 0.28640273091276736, 0.09904459769556595, 0.10889384421684001, 0.1978655273089749, 0.6326587477498924, 0.0766186874204361, 0.07300117689776386, 0.3978521493117628, 0.7293533971641823, 0.24040337450518035, 0.46827469198568006, 0.03737110954461231, 0.48112847828662497, 0.5755848065786346, 0.12151472907643468, 0.332302417201758, 0.3208349144509022, 0.13406270144296106, 0.47820199098358873, 0.024219732643774528, 0.7923035912680444, 0.3099424932714111, 0.8494816644677875, 0.15230116664989468, 0.8795672599938588, 0.34536882843285344, 0.587897812361327, 0.3660303223369904, 0.3074082248441362, 0.1925553058603695, 0.1582957933341015, 0.5297945963993664, 0.1892543681582496, 0.06574637766643598, 0.03286461121245521, 0.6223124217546917, 0.48666930315350876, 0.17200815643270417, 0.27042696199957883, 0.16010429726024444, 0.25291734909108765, 0.22778758435893687, 0.6055190518965303, 0.41989528411161425, 0.2865861541738164, 0.17344095530188786, 0.4163761941495938, 0.24610426408478792, 0.029106329843254564, 0.5849270471051293, 0.09607886499379148, 0.4890296174547498, 0.11193395874659995, 0.3667485749721523, 0.29672938182784603, 0.13696827462710404, 0.03986507081677082, 0.41542023534722683, 0.1642424989032959, 0.041559354155004224, 0.1266666793707928, 0.5259198205822933, 0.42123490919744344, 0.6147437654518444, 0.42849246998341506, 0.04874684240881699, 0.16870816563337898, 0.35179373534084035, 0.4552463954734379, 0.1543174595222413, 0.4641274821418986, 0.1106599594415556, 0.40441066041397966, 0.05916303638108533, 0.24194101851814365, 0.5755848065786346, 0.23631147082452741, 0.04679471849088612, 0.33132995382553565, 0.6031606095022326, 0.16900214819844117, 0.9322526967181247, 0.1065938389205352, 0.0540586741766943, 0.14920224829950646, 0.03054451782098533, 0.13595064656866984, 0.15908339514281045, 0.09402391562754642, 0.27219479721363327, 0.10477531970828624, 0.6046547135519548, 0.04412971358840656, 0.0821245873848182, 0.24953715645213048, 0.24311299470472425, 0.679537413518331, 0.02875041056121841, 0.2874129658970298, 0.17131102264191878, 0.07042427222914205, 0.1577516063520068, 0.39934634677258996, 0.42249259173992826, 0.24940231538328683, 0.46827469198568006, 0.040988937643475554, 0.034828704291737345, 0.26663563965858417, 0.22421743312747255, 0.10716094829621758, 0.7421831263598226, 0.4644511163280224, 0.1591307416719686, 0.21502194578256428, 0.12883185373794437, 0.15520095945599266, 0.04280666734842442, 0.06928764484923078, 0.3578757504587543, 0.0760792945579073, 0.06637805380770656, 0.5755848065786346, 0.4326356954473739, 0.16985579355455038, 0.47152805642545803, 0.11644579282256762, 0.11790522998710073, 0.5438286352264949, 0.41561805514360906, 0.050606352251634235, 0.21836830194439782, 0.22298545275517268, 0.1504846162366139, 0.16819644397314482, 0.47796113776613436, 0.14100197907825862, 0.7878397890034206, 0.12176963827920351, 0.09814942480303201, 0.23162396036129984, 0.04400104962869911, 0.061588508633294015, 0.2774601068082493, 0.40816383821078206, 0.14036214651023216, 0.11837607594274324, 0.0703155477214753, 0.17002415827487982, 0.24611532014486182, 0.06874641727313702, 0.30975746960573625, 0.07004288447243323, 0.6453829176356538, 0.3880412370469972, 0.10205495289732236, 0.12171087020281346, 0.38550692709735157, 0.4398162761337091, 0.5769741243450848, 0.48842976274850136, 0.3866799681687785, 0.17129518728202664, 0.5711206597512044, 0.4456070955069118, 0.4585850027539752, 0.25462747480751524, 0.34771016550763867, 0.35548618548401445, 0.07878090041588082, 0.3008706318705062, 0.08117751180329491, 0.055511805197920094, 0.1600174453683395, 0.35597309965685686, 0.5473978930443646, 0.3321771897262046, 0.14643302530661162, 0.7653011157176768, 0.24188431843396252, 0.16704799028757666, 0.41136103198090634, 0.5749869949413896, 0.709238838470871, 0.09340318303147321, 0.602429869503323, 0.04154705947390969, 0.7519582179986716, 0.15993940416551844, 0.04372375151311325, 0.4076899811241429, 0.4644511163280224, 0.3133137248525114, 0.24628490675063597, 0.06972977174174444, 0.15949948541388637, 0.2241543425141257, 0.1729876202034616, 0.07290025122558275, 0.1220000714032804, 0.36493953208423235, 0.09420126302076737, 0.026726938234992392, 0.7199273032686843, 0.4606762448039463, 0.04906818437448113, 0.19446415942665518, 0.14876853598344464, 0.3247816953453747, 0.023320858692869595, 0.7310618090422621, 0.48944479260603346, 0.20357574295749958, 0.0840537250624015, 0.5368744051465595, 0.21101467800102214, 0.46682279298460017, 0.3749869638443927, 0.46592999202179275, 0.10188412989688433, 0.15751976448865512], \"xaxis\": \"x\", \"y\": [\"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\"], \"yaxis\": \"y2\"}], \"layout\": {\"barmode\": \"overlay\", \"hovermode\": \"closest\", \"legend\": {\"orientation\": \"h\", \"traceorder\": \"reversed\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y2\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"Probability\"}, \"zeroline\": false}, \"yaxis\": {\"anchor\": \"free\", \"domain\": [0.35, 1], \"position\": 0.0, \"title\": {\"text\": \"Share\"}}, \"yaxis2\": {\"anchor\": \"x\", \"domain\": [0, 0.25], \"dtick\": 1, \"showticklabels\": false}}}}]}, \"insights\": [], \"additionalGraphs\": [], \"alerts\": [], \"tabs\": []}, {\"type\": \"big_graph\", \"title\": \"Reference: ROC Curve\", \"size\": 1, \"details\": \"\", \"alertsPosition\": null, \"alertStats\": null, \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"lines\", \"name\": \"ROC\", \"type\": \"scatter\", \"x\": [0.0, 0.0028169014084507044, 0.0028169014084507044, 0.0028169014084507044, 0.005633802816901409, 0.005633802816901409, 0.008450704225352112, 0.008450704225352112, 0.008450704225352112, 0.008450704225352112, 0.011267605633802818, 0.011267605633802818, 0.011267605633802818, 0.011267605633802818, 0.011267605633802818, 0.011267605633802818, 0.014084507042253521, 0.014084507042253521, 0.014084507042253521, 0.014084507042253521, 0.016901408450704224, 0.016901408450704224, 0.01971830985915493, 0.01971830985915493, 0.01971830985915493, 0.01971830985915493, 0.022535211267605635, 0.022535211267605635, 0.02535211267605634, 0.02535211267605634, 0.028169014084507043, 0.028169014084507043, 0.028169014084507043, 0.030985915492957747, 0.030985915492957747, 0.03380281690140845, 0.03380281690140845, 0.036619718309859155, 0.036619718309859155, 0.03943661971830986, 0.03943661971830986, 0.04225352112676056, 0.04225352112676056, 0.04507042253521127, 0.04507042253521127, 0.04788732394366197, 0.04788732394366197, 0.05070422535211268, 0.05070422535211268, 0.05352112676056338, 0.05352112676056338, 0.056338028169014086, 0.056338028169014086, 0.056338028169014086, 0.056338028169014086, 0.059154929577464786, 0.059154929577464786, 0.061971830985915494, 0.061971830985915494, 0.0676056338028169, 0.0676056338028169, 0.07323943661971831, 0.07323943661971831, 0.07887323943661972, 0.07887323943661972, 0.08450704225352113, 0.08450704225352113, 0.08732394366197183, 0.08732394366197183, 0.09014084507042254, 0.09014084507042254, 0.09295774647887324, 0.09295774647887324, 0.09295774647887324, 0.09295774647887324, 0.09577464788732394, 0.09577464788732394, 0.09859154929577464, 0.09859154929577464, 0.10140845070422536, 0.10140845070422536, 0.10422535211267606, 0.10422535211267606, 0.10704225352112676, 0.10704225352112676, 0.11267605633802817, 0.11267605633802817, 0.11549295774647887, 0.11549295774647887, 0.11830985915492957, 0.11830985915492957, 0.12112676056338029, 0.12112676056338029, 0.1323943661971831, 0.1323943661971831, 0.1352112676056338, 0.1352112676056338, 0.14084507042253522, 0.14084507042253522, 0.14366197183098592, 0.14366197183098592, 0.14647887323943662, 0.14647887323943662, 0.14647887323943662, 0.14647887323943662, 0.14929577464788732, 0.14929577464788732, 0.14929577464788732, 0.15492957746478872, 0.15492957746478872, 0.15774647887323945, 0.15774647887323945, 0.16056338028169015, 0.16056338028169015, 0.16619718309859155, 0.16619718309859155, 0.17183098591549295, 0.17183098591549295, 0.18028169014084508, 0.18028169014084508, 0.18309859154929578, 0.18309859154929578, 0.18591549295774648, 0.18591549295774648, 0.18873239436619718, 0.18873239436619718, 0.19436619718309858, 0.19436619718309858, 0.2, 0.2, 0.2056338028169014, 0.2056338028169014, 0.2084507042253521, 0.2084507042253521, 0.21690140845070421, 0.21690140845070421, 0.22253521126760564, 0.22253521126760564, 0.22253521126760564, 0.22253521126760564, 0.22535211267605634, 0.22535211267605634, 0.23098591549295774, 0.23098591549295774, 0.23380281690140844, 0.23380281690140844, 0.23380281690140844, 0.23380281690140844, 0.23661971830985915, 0.23661971830985915, 0.23943661971830985, 0.23943661971830985, 0.24507042253521127, 0.24507042253521127, 0.2507042253521127, 0.2507042253521127, 0.2563380281690141, 0.2563380281690141, 0.2591549295774648, 0.2591549295774648, 0.2619718309859155, 0.2619718309859155, 0.2647887323943662, 0.2647887323943662, 0.2676056338028169, 0.2676056338028169, 0.27323943661971833, 0.27323943661971833, 0.27887323943661974, 0.27887323943661974, 0.28450704225352114, 0.28450704225352114, 0.29014084507042254, 0.29014084507042254, 0.29295774647887324, 0.29295774647887324, 0.30140845070422534, 0.30140845070422534, 0.30704225352112674, 0.30704225352112674, 0.30985915492957744, 0.30985915492957744, 0.3183098591549296, 0.3183098591549296, 0.3211267605633803, 0.3211267605633803, 0.3267605633802817, 0.3267605633802817, 0.3295774647887324, 0.3295774647887324, 0.3323943661971831, 0.3323943661971831, 0.3352112676056338, 0.3352112676056338, 0.3380281690140845, 0.3380281690140845, 0.3408450704225352, 0.3408450704225352, 0.3436619718309859, 0.3436619718309859, 0.3464788732394366, 0.3464788732394366, 0.352112676056338, 0.352112676056338, 0.35492957746478876, 0.35492957746478876, 0.35492957746478876, 0.35774647887323946, 0.35774647887323946, 0.36056338028169016, 0.36056338028169016, 0.36619718309859156, 0.36619718309859156, 0.37183098591549296, 0.37183098591549296, 0.38028169014084506, 0.38028169014084506, 0.38591549295774646, 0.38591549295774646, 0.39154929577464787, 0.39154929577464787, 0.39436619718309857, 0.39436619718309857, 0.4140845070422535, 0.4140845070422535, 0.4169014084507042, 0.4169014084507042, 0.4225352112676056, 0.4225352112676056, 0.43380281690140843, 0.43380281690140843, 0.4422535211267606, 0.4422535211267606, 0.4450704225352113, 0.4450704225352113, 0.4507042253521127, 0.4507042253521127, 0.4535211267605634, 0.4535211267605634, 0.4591549295774648, 0.4591549295774648, 0.4619718309859155, 0.4619718309859155, 0.4647887323943662, 0.4704225352112676, 0.4732394366197183, 0.4732394366197183, 0.48169014084507045, 0.48169014084507045, 0.48450704225352115, 0.48450704225352115, 0.48732394366197185, 0.48732394366197185, 0.49014084507042255, 0.49014084507042255, 0.49295774647887325, 0.49859154929577465, 0.49859154929577465, 0.504225352112676, 0.504225352112676, 0.5126760563380282, 0.5126760563380282, 0.5211267605633803, 0.5211267605633803, 0.523943661971831, 0.523943661971831, 0.5267605633802817, 0.5267605633802817, 0.5295774647887324, 0.5295774647887324, 0.5352112676056338, 0.5352112676056338, 0.5380281690140845, 0.5380281690140845, 0.543661971830986, 0.543661971830986, 0.5492957746478874, 0.5492957746478874, 0.5549295774647888, 0.5549295774647888, 0.5577464788732395, 0.5577464788732395, 0.5633802816901409, 0.5633802816901409, 0.5690140845070423, 0.5690140845070423, 0.5746478873239437, 0.5746478873239437, 0.5774647887323944, 0.5774647887323944, 0.5802816901408451, 0.5802816901408451, 0.5887323943661972, 0.5943661971830986, 0.6112676056338028, 0.6169014084507042, 0.6169014084507042, 0.6197183098591549, 0.6197183098591549, 0.6253521126760564, 0.6253521126760564, 0.6281690140845071, 0.6281690140845071, 0.6309859154929578, 0.6309859154929578, 0.6338028169014085, 0.6338028169014085, 0.6366197183098592, 0.6366197183098592, 0.6450704225352113, 0.6450704225352113, 0.647887323943662, 0.647887323943662, 0.6535211267605634, 0.6535211267605634, 0.6563380281690141, 0.6563380281690141, 0.6873239436619718, 0.6873239436619718, 0.6985915492957746, 0.6985915492957746, 0.7098591549295775, 0.7098591549295775, 0.7098591549295775, 0.7154929577464789, 0.7154929577464789, 0.7211267605633803, 0.7211267605633803, 0.7295774647887324, 0.7295774647887324, 0.7323943661971831, 0.7380281690140845, 0.7380281690140845, 0.7408450704225352, 0.7408450704225352, 0.7436619718309859, 0.7436619718309859, 0.7464788732394366, 0.7464788732394366, 0.7605633802816901, 0.7605633802816901, 0.7661971830985915, 0.7661971830985915, 0.7718309859154929, 0.7746478873239436, 0.7746478873239436, 0.7859154929577464, 0.7859154929577464, 0.8, 0.8, 0.8028169014084507, 0.8028169014084507, 0.8112676056338028, 0.8112676056338028, 0.819718309859155, 0.819718309859155, 0.8309859154929577, 0.8309859154929577, 0.8422535211267606, 0.8422535211267606, 0.8535211267605634, 0.8535211267605634, 0.856338028169014, 0.856338028169014, 0.8619718309859155, 0.8619718309859155, 0.8704225352112676, 0.8704225352112676, 0.8760563380281691, 0.8985915492957747, 0.8985915492957747, 0.9042253521126761, 0.9042253521126761, 0.9070422535211268, 0.9070422535211268, 0.9098591549295775, 0.9098591549295775, 0.9154929577464789, 0.9154929577464789, 0.9211267605633803, 0.9211267605633803, 0.9943661971830986, 0.9943661971830986, 1.0], \"y\": [0.0, 0.0, 0.02945736434108527, 0.03255813953488372, 0.03255813953488372, 0.043410852713178294, 0.043410852713178294, 0.11317829457364341, 0.11627906976744186, 0.12868217054263567, 0.12868217054263567, 0.15348837209302327, 0.15658914728682172, 0.18449612403100776, 0.1875968992248062, 0.1937984496124031, 0.1937984496124031, 0.22790697674418606, 0.2310077519379845, 0.23410852713178296, 0.23410852713178296, 0.24651162790697675, 0.24651162790697675, 0.25426356589147286, 0.25736434108527134, 0.262015503875969, 0.262015503875969, 0.2651162790697674, 0.2651162790697674, 0.27596899224806204, 0.27596899224806204, 0.2806201550387597, 0.2868217054263566, 0.2868217054263566, 0.289922480620155, 0.289922480620155, 0.2930232558139535, 0.2930232558139535, 0.29767441860465116, 0.29767441860465116, 0.30387596899224806, 0.30387596899224806, 0.31007751937984496, 0.31007751937984496, 0.3116279069767442, 0.3116279069767442, 0.31317829457364343, 0.31317829457364343, 0.3209302325581395, 0.3209302325581395, 0.32248062015503876, 0.32248062015503876, 0.3364341085271318, 0.3395348837209302, 0.3426356589147287, 0.3426356589147287, 0.35038759689922483, 0.35038759689922483, 0.35348837209302325, 0.35348837209302325, 0.37829457364341085, 0.37829457364341085, 0.3875968992248062, 0.3875968992248062, 0.4015503875968992, 0.4015503875968992, 0.4046511627906977, 0.4046511627906977, 0.42790697674418604, 0.42790697674418604, 0.4294573643410853, 0.4294573643410853, 0.4372093023255814, 0.44031007751937984, 0.4434108527131783, 0.4434108527131783, 0.4573643410852713, 0.4573643410852713, 0.4635658914728682, 0.4635658914728682, 0.48527131782945737, 0.48527131782945737, 0.48992248062015503, 0.48992248062015503, 0.49612403100775193, 0.49612403100775193, 0.4992248062015504, 0.4992248062015504, 0.5054263565891473, 0.5054263565891473, 0.5162790697674419, 0.5162790697674419, 0.5193798449612403, 0.5193798449612403, 0.5317829457364341, 0.5317829457364341, 0.5333333333333333, 0.5333333333333333, 0.5410852713178295, 0.5410852713178295, 0.5472868217054263, 0.5472868217054263, 0.5596899224806201, 0.5627906976744186, 0.5643410852713179, 0.5643410852713179, 0.5674418604651162, 0.5689922480620155, 0.5689922480620155, 0.5705426356589147, 0.5705426356589147, 0.5720930232558139, 0.5720930232558139, 0.5736434108527132, 0.5736434108527132, 0.5813953488372093, 0.5813953488372093, 0.586046511627907, 0.586046511627907, 0.5875968992248062, 0.5875968992248062, 0.5891472868217055, 0.5891472868217055, 0.5953488372093023, 0.5953488372093023, 0.6, 0.6, 0.6031007751937985, 0.6031007751937985, 0.6093023255813953, 0.6093023255813953, 0.6201550387596899, 0.6201550387596899, 0.6217054263565891, 0.6217054263565891, 0.6325581395348837, 0.6325581395348837, 0.6387596899224807, 0.641860465116279, 0.6434108527131783, 0.6434108527131783, 0.6449612403100775, 0.6449612403100775, 0.6465116279069767, 0.6465116279069767, 0.6573643410852713, 0.6604651162790698, 0.6682170542635659, 0.6682170542635659, 0.6806201550387597, 0.6806201550387597, 0.6821705426356589, 0.6821705426356589, 0.6837209302325581, 0.6837209302325581, 0.6852713178294574, 0.6852713178294574, 0.6868217054263566, 0.6868217054263566, 0.6961240310077519, 0.6961240310077519, 0.6976744186046512, 0.6976744186046512, 0.7023255813953488, 0.7023255813953488, 0.7054263565891473, 0.7054263565891473, 0.710077519379845, 0.710077519379845, 0.7116279069767442, 0.7116279069767442, 0.7162790697674418, 0.7162790697674418, 0.7193798449612403, 0.7193798449612403, 0.7209302325581395, 0.7209302325581395, 0.724031007751938, 0.724031007751938, 0.7271317829457364, 0.7271317829457364, 0.7302325581395349, 0.7302325581395349, 0.7317829457364341, 0.7317829457364341, 0.7333333333333333, 0.7333333333333333, 0.7364341085271318, 0.7364341085271318, 0.737984496124031, 0.737984496124031, 0.7395348837209302, 0.7395348837209302, 0.7410852713178294, 0.7410852713178294, 0.7426356589147287, 0.7426356589147287, 0.7457364341085271, 0.7457364341085271, 0.7565891472868217, 0.7565891472868217, 0.7581395348837209, 0.7581395348837209, 0.7627906976744186, 0.7627906976744186, 0.765891472868217, 0.7674418604651163, 0.7674418604651163, 0.7705426356589147, 0.7705426356589147, 0.7767441860465116, 0.7767441860465116, 0.7798449612403101, 0.7798449612403101, 0.7829457364341085, 0.7829457364341085, 0.7844961240310078, 0.7844961240310078, 0.7922480620155039, 0.7922480620155039, 0.7968992248062016, 0.7968992248062016, 0.7984496124031008, 0.7984496124031008, 0.8, 0.8, 0.8046511627906977, 0.8046511627906977, 0.8077519379844961, 0.8077519379844961, 0.8124031007751938, 0.8124031007751938, 0.813953488372093, 0.813953488372093, 0.8155038759689922, 0.8155038759689922, 0.8170542635658915, 0.8170542635658915, 0.8248062015503876, 0.8248062015503876, 0.8263565891472868, 0.8263565891472868, 0.8325581395348837, 0.8325581395348837, 0.8325581395348837, 0.8325581395348837, 0.834108527131783, 0.834108527131783, 0.8356589147286821, 0.8356589147286821, 0.8403100775193798, 0.8403100775193798, 0.8418604651162791, 0.8418604651162791, 0.8434108527131783, 0.8434108527131783, 0.8434108527131783, 0.8465116279069768, 0.8465116279069768, 0.8480620155038759, 0.8480620155038759, 0.8496124031007752, 0.8496124031007752, 0.8558139534883721, 0.8558139534883721, 0.862015503875969, 0.862015503875969, 0.8635658914728682, 0.8635658914728682, 0.8651162790697674, 0.8651162790697674, 0.8682170542635659, 0.8682170542635659, 0.8744186046511628, 0.8744186046511628, 0.875968992248062, 0.875968992248062, 0.8775193798449612, 0.8775193798449612, 0.8806201550387597, 0.8806201550387597, 0.8821705426356589, 0.8821705426356589, 0.8883720930232558, 0.8883720930232558, 0.889922480620155, 0.889922480620155, 0.8945736434108527, 0.8945736434108527, 0.896124031007752, 0.896124031007752, 0.8976744186046511, 0.8976744186046511, 0.8976744186046511, 0.8976744186046511, 0.8976744186046511, 0.8992248062015504, 0.8992248062015504, 0.9007751937984496, 0.9007751937984496, 0.9038759689922481, 0.9038759689922481, 0.9100775193798449, 0.9100775193798449, 0.9116279069767442, 0.9116279069767442, 0.9131782945736434, 0.9131782945736434, 0.9147286821705426, 0.9147286821705426, 0.9162790697674419, 0.9162790697674419, 0.9178294573643411, 0.9178294573643411, 0.9193798449612403, 0.9193798449612403, 0.9209302325581395, 0.9209302325581395, 0.9224806201550387, 0.9224806201550387, 0.9286821705426357, 0.9286821705426357, 0.931782945736434, 0.9348837209302325, 0.9348837209302325, 0.9364341085271318, 0.9364341085271318, 0.937984496124031, 0.937984496124031, 0.9426356589147287, 0.9426356589147287, 0.9426356589147287, 0.9441860465116279, 0.9441860465116279, 0.9488372093023256, 0.9488372093023256, 0.9503875968992248, 0.9503875968992248, 0.9534883720930233, 0.9534883720930233, 0.9565891472868217, 0.9565891472868217, 0.958139534883721, 0.958139534883721, 0.958139534883721, 0.9596899224806201, 0.9596899224806201, 0.9612403100775194, 0.9612403100775194, 0.9627906976744186, 0.9627906976744186, 0.9643410852713178, 0.9643410852713178, 0.9658914728682171, 0.9658914728682171, 0.9674418604651163, 0.9674418604651163, 0.9689922480620154, 0.9689922480620154, 0.9705426356589147, 0.9705426356589147, 0.9720930232558139, 0.9720930232558139, 0.9736434108527132, 0.9736434108527132, 0.9751937984496124, 0.9751937984496124, 0.9782945736434109, 0.9782945736434109, 0.9782945736434109, 0.9798449612403101, 0.9798449612403101, 0.9844961240310077, 0.9844961240310077, 0.9875968992248062, 0.9875968992248062, 0.9906976744186047, 0.9906976744186047, 0.9968992248062015, 0.9968992248062015, 0.9984496124031008, 0.9984496124031008, 1.0, 1.0]}], \"layout\": {\"showlegend\": true, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"False Positive Rate\"}}, \"yaxis\": {\"title\": {\"text\": \"True Positive Rate\"}}}}, \"insights\": [], \"additionalGraphs\": [], \"alerts\": [], \"tabs\": []}, {\"type\": \"big_graph\", \"title\": \"Current: ROC Curve\", \"size\": 1, \"details\": \"\", \"alertsPosition\": null, \"alertStats\": null, \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"lines\", \"name\": \"ROC\", \"type\": \"scatter\", \"x\": [0.0, 0.0, 0.0, 0.002840909090909091, 0.002840909090909091, 0.002840909090909091, 0.002840909090909091, 0.005681818181818182, 0.005681818181818182, 0.008522727272727272, 0.008522727272727272, 0.011363636363636364, 0.011363636363636364, 0.014204545454545454, 0.014204545454545454, 0.017045454545454544, 0.017045454545454544, 0.019886363636363636, 0.019886363636363636, 0.019886363636363636, 0.019886363636363636, 0.02556818181818182, 0.02556818181818182, 0.028409090909090908, 0.028409090909090908, 0.03125, 0.03125, 0.03409090909090909, 0.03409090909090909, 0.036931818181818184, 0.036931818181818184, 0.03977272727272727, 0.03977272727272727, 0.04261363636363636, 0.04261363636363636, 0.045454545454545456, 0.045454545454545456, 0.048295454545454544, 0.048295454545454544, 0.056818181818181816, 0.056818181818181816, 0.05965909090909091, 0.05965909090909091, 0.0625, 0.0625, 0.06534090909090909, 0.06534090909090909, 0.06818181818181818, 0.06818181818181818, 0.07386363636363637, 0.07386363636363637, 0.07670454545454546, 0.07670454545454546, 0.08238636363636363, 0.08238636363636363, 0.08522727272727272, 0.09090909090909091, 0.09090909090909091, 0.09659090909090909, 0.09659090909090909, 0.10227272727272728, 0.10227272727272728, 0.10795454545454546, 0.11079545454545454, 0.11079545454545454, 0.11363636363636363, 0.11363636363636363, 0.11647727272727272, 0.11647727272727272, 0.11647727272727272, 0.11931818181818182, 0.11931818181818182, 0.12215909090909091, 0.12215909090909091, 0.12215909090909091, 0.12215909090909091, 0.125, 0.125, 0.1278409090909091, 0.1278409090909091, 0.13352272727272727, 0.13352272727272727, 0.13636363636363635, 0.13636363636363635, 0.13920454545454544, 0.13920454545454544, 0.14204545454545456, 0.14204545454545456, 0.14488636363636365, 0.14488636363636365, 0.14772727272727273, 0.14772727272727273, 0.15056818181818182, 0.15056818181818182, 0.15625, 0.1590909090909091, 0.1590909090909091, 0.16193181818181818, 0.16193181818181818, 0.16477272727272727, 0.16477272727272727, 0.16761363636363635, 0.16761363636363635, 0.17329545454545456, 0.17329545454545456, 0.17897727272727273, 0.17897727272727273, 0.18181818181818182, 0.18181818181818182, 0.1846590909090909, 0.1846590909090909, 0.1875, 0.1875, 0.1903409090909091, 0.1903409090909091, 0.19318181818181818, 0.19318181818181818, 0.20170454545454544, 0.20170454545454544, 0.20454545454545456, 0.20454545454545456, 0.21022727272727273, 0.21022727272727273, 0.21306818181818182, 0.21306818181818182, 0.2159090909090909, 0.2159090909090909, 0.21875, 0.21875, 0.22443181818181818, 0.22443181818181818, 0.23295454545454544, 0.23295454545454544, 0.23295454545454544, 0.23295454545454544, 0.23579545454545456, 0.23579545454545456, 0.23863636363636365, 0.23863636363636365, 0.24147727272727273, 0.24147727272727273, 0.24147727272727273, 0.24147727272727273, 0.24431818181818182, 0.24431818181818182, 0.2528409090909091, 0.2528409090909091, 0.2585227272727273, 0.2585227272727273, 0.26136363636363635, 0.26136363636363635, 0.26420454545454547, 0.26420454545454547, 0.26704545454545453, 0.26704545454545453, 0.26988636363636365, 0.26988636363636365, 0.2727272727272727, 0.2727272727272727, 0.2784090909090909, 0.2784090909090909, 0.28125, 0.28125, 0.2840909090909091, 0.2840909090909091, 0.2869318181818182, 0.2869318181818182, 0.29261363636363635, 0.29545454545454547, 0.29545454545454547, 0.29829545454545453, 0.29829545454545453, 0.3039772727272727, 0.3039772727272727, 0.3068181818181818, 0.3068181818181818, 0.3125, 0.3125, 0.3181818181818182, 0.3181818181818182, 0.3210227272727273, 0.3210227272727273, 0.3409090909090909, 0.3409090909090909, 0.34375, 0.34375, 0.3465909090909091, 0.3465909090909091, 0.3494318181818182, 0.3494318181818182, 0.3522727272727273, 0.3522727272727273, 0.35511363636363635, 0.35511363636363635, 0.35795454545454547, 0.35795454545454547, 0.36363636363636365, 0.36363636363636365, 0.3664772727272727, 0.3664772727272727, 0.375, 0.375, 0.3806818181818182, 0.38636363636363635, 0.38636363636363635, 0.38920454545454547, 0.38920454545454547, 0.3977272727272727, 0.3977272727272727, 0.4005681818181818, 0.4005681818181818, 0.4034090909090909, 0.4034090909090909, 0.40625, 0.40625, 0.4119318181818182, 0.41761363636363635, 0.41761363636363635, 0.42045454545454547, 0.42045454545454547, 0.42613636363636365, 0.42613636363636365, 0.4289772727272727, 0.4289772727272727, 0.4346590909090909, 0.4346590909090909, 0.4375, 0.4375, 0.4431818181818182, 0.4431818181818182, 0.4460227272727273, 0.4460227272727273, 0.44886363636363635, 0.44886363636363635, 0.44886363636363635, 0.44886363636363635, 0.45170454545454547, 0.45170454545454547, 0.45454545454545453, 0.45454545454545453, 0.45454545454545453, 0.45738636363636365, 0.45738636363636365, 0.4602272727272727, 0.4602272727272727, 0.4630681818181818, 0.4630681818181818, 0.4715909090909091, 0.4744318181818182, 0.4744318181818182, 0.4772727272727273, 0.4772727272727273, 0.48295454545454547, 0.48295454545454547, 0.48863636363636365, 0.48863636363636365, 0.48863636363636365, 0.48863636363636365, 0.5113636363636364, 0.5113636363636364, 0.5113636363636364, 0.5142045454545454, 0.5142045454545454, 0.5170454545454546, 0.5170454545454546, 0.5227272727272727, 0.5227272727272727, 0.5539772727272727, 0.5539772727272727, 0.5568181818181818, 0.5568181818181818, 0.5596590909090909, 0.5596590909090909, 0.5596590909090909, 0.5681818181818182, 0.5681818181818182, 0.5795454545454546, 0.5795454545454546, 0.5852272727272727, 0.5852272727272727, 0.6022727272727273, 0.6022727272727273, 0.6051136363636364, 0.6051136363636364, 0.6136363636363636, 0.6136363636363636, 0.6164772727272727, 0.6221590909090909, 0.6221590909090909, 0.6335227272727273, 0.6335227272727273, 0.6363636363636364, 0.6448863636363636, 0.6448863636363636, 0.6448863636363636, 0.6534090909090909, 0.6534090909090909, 0.6590909090909091, 0.6590909090909091, 0.6619318181818182, 0.6619318181818182, 0.6647727272727273, 0.6647727272727273, 0.6676136363636364, 0.6676136363636364, 0.6875, 0.6875, 0.6903409090909091, 0.6903409090909091, 0.6931818181818182, 0.6931818181818182, 0.6960227272727273, 0.6960227272727273, 0.7017045454545454, 0.7017045454545454, 0.7045454545454546, 0.7045454545454546, 0.7215909090909091, 0.7215909090909091, 0.7272727272727273, 0.7272727272727273, 0.7414772727272727, 0.7414772727272727, 0.7670454545454546, 0.7670454545454546, 0.78125, 0.78125, 0.7840909090909091, 0.7840909090909091, 0.7926136363636364, 0.7926136363636364, 0.7954545454545454, 0.8011363636363636, 0.8011363636363636, 0.8210227272727273, 0.8210227272727273, 0.8295454545454546, 0.8295454545454546, 0.8352272727272727, 0.8352272727272727, 0.84375, 0.84375, 0.8494318181818182, 0.8494318181818182, 0.8522727272727273, 0.8522727272727273, 0.8551136363636364, 0.8551136363636364, 0.8693181818181818, 0.8693181818181818, 0.875, 0.875, 0.8806818181818182, 0.8806818181818182, 0.8863636363636364, 0.8863636363636364, 0.8920454545454546, 0.8920454545454546, 0.8948863636363636, 0.8948863636363636, 0.90625, 0.90625, 0.9147727272727273, 0.9147727272727273, 0.9289772727272727, 0.9289772727272727, 0.9573863636363636, 0.9573863636363636, 0.9602272727272727, 0.9602272727272727, 0.96875, 0.96875, 0.9857954545454546, 0.9857954545454546, 0.9886363636363636, 0.9886363636363636, 0.9914772727272727, 0.9914772727272727, 0.9943181818181818, 0.9943181818181818, 1.0], \"y\": [0.0, 0.0015432098765432098, 0.030864197530864196, 0.030864197530864196, 0.06172839506172839, 0.06481481481481481, 0.08024691358024691, 0.08024691358024691, 0.13580246913580246, 0.13580246913580246, 0.19135802469135801, 0.19135802469135801, 0.19907407407407407, 0.19907407407407407, 0.2345679012345679, 0.2345679012345679, 0.23919753086419754, 0.23919753086419754, 0.27314814814814814, 0.2762345679012346, 0.28703703703703703, 0.28703703703703703, 0.29012345679012347, 0.29012345679012347, 0.29475308641975306, 0.29475308641975306, 0.2962962962962963, 0.2962962962962963, 0.2993827160493827, 0.2993827160493827, 0.3256172839506173, 0.3256172839506173, 0.33024691358024694, 0.33024691358024694, 0.3425925925925926, 0.3425925925925926, 0.3472222222222222, 0.3472222222222222, 0.35030864197530864, 0.35030864197530864, 0.36419753086419754, 0.36419753086419754, 0.38117283950617287, 0.38117283950617287, 0.3966049382716049, 0.3966049382716049, 0.39814814814814814, 0.39814814814814814, 0.404320987654321, 0.404320987654321, 0.4058641975308642, 0.4058641975308642, 0.4104938271604938, 0.4104938271604938, 0.41975308641975306, 0.41975308641975306, 0.41975308641975306, 0.4212962962962963, 0.4212962962962963, 0.42592592592592593, 0.42592592592592593, 0.4382716049382716, 0.4382716049382716, 0.4382716049382716, 0.4398148148148148, 0.4398148148148148, 0.44598765432098764, 0.44598765432098764, 0.44753086419753085, 0.4506172839506173, 0.4506172839506173, 0.46296296296296297, 0.46296296296296297, 0.4645061728395062, 0.4675925925925926, 0.47530864197530864, 0.47530864197530864, 0.4876543209876543, 0.4876543209876543, 0.48919753086419754, 0.48919753086419754, 0.5, 0.5, 0.5015432098765432, 0.5015432098765432, 0.5092592592592593, 0.5092592592592593, 0.5123456790123457, 0.5123456790123457, 0.5138888888888888, 0.5138888888888888, 0.5200617283950617, 0.5200617283950617, 0.5216049382716049, 0.5216049382716049, 0.5216049382716049, 0.529320987654321, 0.529320987654321, 0.5432098765432098, 0.5432098765432098, 0.5447530864197531, 0.5447530864197531, 0.5509259259259259, 0.5509259259259259, 0.5524691358024691, 0.5524691358024691, 0.5555555555555556, 0.5555555555555556, 0.5648148148148148, 0.5648148148148148, 0.5740740740740741, 0.5740740740740741, 0.5771604938271605, 0.5771604938271605, 0.5833333333333334, 0.5833333333333334, 0.595679012345679, 0.595679012345679, 0.5987654320987654, 0.5987654320987654, 0.6003086419753086, 0.6003086419753086, 0.6018518518518519, 0.6018518518518519, 0.6033950617283951, 0.6033950617283951, 0.6080246913580247, 0.6080246913580247, 0.6157407407407407, 0.6157407407407407, 0.6296296296296297, 0.6296296296296297, 0.6311728395061729, 0.6342592592592593, 0.6450617283950617, 0.6450617283950617, 0.6466049382716049, 0.6466049382716049, 0.6481481481481481, 0.6481481481481481, 0.6512345679012346, 0.654320987654321, 0.6620370370370371, 0.6620370370370371, 0.6635802469135802, 0.6635802469135802, 0.6666666666666666, 0.6666666666666666, 0.6682098765432098, 0.6682098765432098, 0.6697530864197531, 0.6697530864197531, 0.6728395061728395, 0.6728395061728395, 0.6759259259259259, 0.6759259259259259, 0.683641975308642, 0.683641975308642, 0.6851851851851852, 0.6851851851851852, 0.6882716049382716, 0.6882716049382716, 0.6898148148148148, 0.6898148148148148, 0.6959876543209876, 0.6959876543209876, 0.7052469135802469, 0.7052469135802469, 0.7052469135802469, 0.720679012345679, 0.720679012345679, 0.7222222222222222, 0.7222222222222222, 0.7237654320987654, 0.7237654320987654, 0.7253086419753086, 0.7253086419753086, 0.7268518518518519, 0.7268518518518519, 0.7314814814814815, 0.7314814814814815, 0.7330246913580247, 0.7330246913580247, 0.7376543209876543, 0.7376543209876543, 0.7391975308641975, 0.7391975308641975, 0.7422839506172839, 0.7422839506172839, 0.7438271604938271, 0.7438271604938271, 0.7546296296296297, 0.7546296296296297, 0.7577160493827161, 0.7577160493827161, 0.7608024691358025, 0.7608024691358025, 0.7685185185185185, 0.7685185185185185, 0.7716049382716049, 0.7716049382716049, 0.7762345679012346, 0.7762345679012346, 0.7762345679012346, 0.7808641975308642, 0.7808641975308642, 0.7839506172839507, 0.7839506172839507, 0.7854938271604939, 0.7854938271604939, 0.7870370370370371, 0.7870370370370371, 0.7885802469135802, 0.7885802469135802, 0.7916666666666666, 0.7916666666666666, 0.7916666666666666, 0.7962962962962963, 0.7962962962962963, 0.7978395061728395, 0.7978395061728395, 0.7993827160493827, 0.7993827160493827, 0.8009259259259259, 0.8009259259259259, 0.8040123456790124, 0.8040123456790124, 0.8070987654320988, 0.8070987654320988, 0.8117283950617284, 0.8117283950617284, 0.8132716049382716, 0.8132716049382716, 0.8148148148148148, 0.8179012345679012, 0.8209876543209876, 0.8209876543209876, 0.8225308641975309, 0.8225308641975309, 0.8240740740740741, 0.8287037037037037, 0.8287037037037037, 0.8317901234567902, 0.8317901234567902, 0.8333333333333334, 0.8333333333333334, 0.8364197530864198, 0.8364197530864198, 0.8364197530864198, 0.845679012345679, 0.845679012345679, 0.8487654320987654, 0.8487654320987654, 0.8503086419753086, 0.8503086419753086, 0.8518518518518519, 0.8549382716049383, 0.8611111111111112, 0.8611111111111112, 0.8641975308641975, 0.8672839506172839, 0.8672839506172839, 0.8688271604938271, 0.8688271604938271, 0.8719135802469136, 0.8719135802469136, 0.8734567901234568, 0.8734567901234568, 0.875, 0.875, 0.8765432098765432, 0.8765432098765432, 0.8796296296296297, 0.8827160493827161, 0.8827160493827161, 0.8842592592592593, 0.8842592592592593, 0.8858024691358025, 0.8858024691358025, 0.8873456790123457, 0.8873456790123457, 0.8919753086419753, 0.8919753086419753, 0.8935185185185185, 0.8935185185185185, 0.8950617283950617, 0.8950617283950617, 0.8950617283950617, 0.8966049382716049, 0.8966049382716049, 0.9012345679012346, 0.9012345679012346, 0.9012345679012346, 0.9027777777777778, 0.9074074074074074, 0.9074074074074074, 0.9104938271604939, 0.9104938271604939, 0.9120370370370371, 0.9120370370370371, 0.9166666666666666, 0.9166666666666666, 0.9182098765432098, 0.9182098765432098, 0.9197530864197531, 0.9197530864197531, 0.9212962962962963, 0.9212962962962963, 0.9243827160493827, 0.9243827160493827, 0.9274691358024691, 0.9274691358024691, 0.9320987654320988, 0.9320987654320988, 0.933641975308642, 0.933641975308642, 0.9398148148148148, 0.9398148148148148, 0.941358024691358, 0.941358024691358, 0.9429012345679012, 0.9429012345679012, 0.9444444444444444, 0.9444444444444444, 0.9459876543209876, 0.9459876543209876, 0.9490740740740741, 0.9490740740740741, 0.9506172839506173, 0.9506172839506173, 0.9521604938271605, 0.9521604938271605, 0.9521604938271605, 0.9537037037037037, 0.9537037037037037, 0.9552469135802469, 0.9552469135802469, 0.9567901234567902, 0.9567901234567902, 0.9583333333333334, 0.9583333333333334, 0.9598765432098766, 0.9598765432098766, 0.9614197530864198, 0.9614197530864198, 0.9660493827160493, 0.9660493827160493, 0.9691358024691358, 0.9691358024691358, 0.970679012345679, 0.970679012345679, 0.9722222222222222, 0.9722222222222222, 0.9753086419753086, 0.9753086419753086, 0.9768518518518519, 0.9768518518518519, 0.9799382716049383, 0.9799382716049383, 0.9814814814814815, 0.9814814814814815, 0.9845679012345679, 0.9845679012345679, 0.9861111111111112, 0.9861111111111112, 0.9876543209876543, 0.9876543209876543, 0.9891975308641975, 0.9891975308641975, 0.9907407407407407, 0.9907407407407407, 0.9922839506172839, 0.9922839506172839, 0.9953703703703703, 0.9953703703703703, 0.9969135802469136, 0.9969135802469136, 0.9984567901234568, 0.9984567901234568, 1.0, 1.0]}], \"layout\": {\"showlegend\": true, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"False Positive Rate\"}}, \"yaxis\": {\"title\": {\"text\": \"True Positive Rate\"}}}}, \"insights\": [], \"additionalGraphs\": [], \"alerts\": [], \"tabs\": []}, {\"type\": \"big_graph\", \"title\": \"Reference: Precision-Recall Curve\", \"size\": 1, \"details\": \"\", \"alertsPosition\": null, \"alertStats\": null, \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"lines\", \"name\": \"PR\", \"type\": \"scatter\", \"x\": [0.6462925851703407, 0.645937813440321, 0.6465863453815262, 0.6472361809045226, 0.647887323943662, 0.648539778449144, 0.6491935483870968, 0.649848637739657, 0.6505050505050505, 0.6511627906976745, 0.6518218623481782, 0.6524822695035462, 0.6531440162271805, 0.6538071065989848, 0.6544715447154471, 0.6551373346897253, 0.6558044806517311, 0.6564729867482161, 0.6571428571428571, 0.6578140960163432, 0.6584867075664622, 0.6591606960081884, 0.6598360655737705, 0.6605128205128206, 0.6611909650924025, 0.6618705035971223, 0.6625514403292181, 0.6632337796086509, 0.6628865979381443, 0.6635706914344686, 0.6642561983471075, 0.6639089968976215, 0.6635610766045549, 0.6632124352331606, 0.6628630705394191, 0.6635514018691588, 0.6642411642411642, 0.663891779396462, 0.6635416666666667, 0.6642335766423357, 0.6638830897703549, 0.6635318704284221, 0.6642259414225942, 0.6638743455497382, 0.6635220125786163, 0.6631689401888772, 0.6638655462184874, 0.6645636172450052, 0.6642105263157895, 0.6649104320337197, 0.6656118143459916, 0.6663146779303062, 0.6670190274841438, 0.6677248677248677, 0.6684322033898306, 0.6691410392364793, 0.6698513800424628, 0.6712765957446809, 0.670926517571885, 0.6705756929637526, 0.6712913553895411, 0.6720085470085471, 0.6727272727272727, 0.6723768736616702, 0.6730975348338692, 0.6738197424892703, 0.673469387755102, 0.6741935483870968, 0.673842841765339, 0.6745689655172413, 0.6752966558791802, 0.6760259179265659, 0.6767567567567567, 0.6764069264069265, 0.6771397616468039, 0.6778741865509761, 0.6786102062975027, 0.6793478260869565, 0.6789989118607181, 0.6797385620915033, 0.6804798255179935, 0.6812227074235808, 0.6819672131147541, 0.6816192560175055, 0.6823658269441402, 0.6831140350877193, 0.6838638858397366, 0.6835164835164835, 0.6842684268426843, 0.6850220264317181, 0.6857772877618522, 0.6854304635761589, 0.6861878453038674, 0.6858407079646017, 0.6866002214839424, 0.6873614190687362, 0.6881243063263041, 0.6888888888888889, 0.6896551724137931, 0.6893095768374164, 0.6900780379041248, 0.6908482142857143, 0.6916201117318436, 0.6923937360178971, 0.6920492721164614, 0.6928251121076233, 0.6943820224719102, 0.6940382452193475, 0.6948198198198198, 0.6956031567080045, 0.6952595936794582, 0.6949152542372882, 0.6957013574660633, 0.6964892412231031, 0.6972789115646258, 0.6980703745743473, 0.6988636363636364, 0.6985210466439136, 0.6981776765375854, 0.6989737742303307, 0.6986301369863014, 0.6994285714285714, 0.6990846681922197, 0.6987399770904925, 0.698394495412844, 0.6991963260619977, 0.6988505747126437, 0.7004608294930875, 0.7012687427912342, 0.7009237875288684, 0.7005780346820809, 0.7002314814814815, 0.7010428736964078, 0.7018561484918794, 0.70267131242741, 0.7023255813953488, 0.7031431897555297, 0.703962703962704, 0.7036172695449242, 0.7044392523364486, 0.7052631578947368, 0.7045720984759671, 0.704225352112676, 0.7038777908343126, 0.7047058823529412, 0.7055359246171967, 0.7063679245283019, 0.7072018890200709, 0.706855791962175, 0.7065088757396449, 0.7061611374407583, 0.7058125741399762, 0.7066508313539193, 0.7074910820451843, 0.7083333333333334, 0.7091775923718713, 0.7088305489260143, 0.7096774193548387, 0.7105263157894737, 0.7113772455089821, 0.7122302158273381, 0.7130852340936374, 0.7139423076923077, 0.7148014440433214, 0.7156626506024096, 0.7165259348612787, 0.717391304347826, 0.7182587666263603, 0.7179176755447942, 0.7187878787878788, 0.7184466019417476, 0.7193195625759417, 0.7201946472019465, 0.7198538367844093, 0.7207317073170731, 0.7203907203907204, 0.7212713936430318, 0.7221542227662179, 0.7230392156862745, 0.7226993865030675, 0.7235872235872236, 0.7232472324723247, 0.7241379310344828, 0.7237977805178791, 0.7246913580246913, 0.7243510506798516, 0.724009900990099, 0.7236679058240396, 0.7233250620347395, 0.724223602484472, 0.7238805970149254, 0.7235367372353674, 0.7244389027431422, 0.7253433208489388, 0.725, 0.7259073842302879, 0.7255639097744361, 0.7273869346733668, 0.7283018867924528, 0.7292191435768262, 0.7301387137452712, 0.7310606060606061, 0.7319848293299621, 0.7329113924050633, 0.7347715736040609, 0.735705209656925, 0.7366412213740458, 0.7375796178343949, 0.7372448979591837, 0.7381864623243933, 0.7378516624040921, 0.7387964148527529, 0.7384615384615385, 0.7381258023106547, 0.7377892030848329, 0.7387387387387387, 0.7396907216494846, 0.7393548387096774, 0.7403100775193798, 0.741267787839586, 0.7409326424870466, 0.7405966277561609, 0.7402597402597403, 0.7399219765929779, 0.7408854166666666, 0.741851368970013, 0.741514360313316, 0.742483660130719, 0.7418086500655308, 0.7437582128777924, 0.743421052631579, 0.7444005270092227, 0.7453825857519789, 0.7450462351387054, 0.746031746031746, 0.7470198675496689, 0.746684350132626, 0.7463479415670651, 0.7460106382978723, 0.7456724367509987, 0.7466666666666667, 0.7463284379172229, 0.7459893048128342, 0.7469879518072289, 0.7479892761394102, 0.7476510067114094, 0.7486559139784946, 0.7483176312247645, 0.7493261455525606, 0.7489878542510121, 0.7486486486486487, 0.7483085250338295, 0.7479674796747967, 0.7489823609226595, 0.748641304347826, 0.7482993197278912, 0.7479564032697548, 0.747612551159618, 0.7486338797814208, 0.7496580027359782, 0.7506849315068493, 0.7503429355281207, 0.7513736263736264, 0.7524071526822559, 0.7534435261707989, 0.7531034482758621, 0.7541436464088398, 0.7551867219917012, 0.7548476454293629, 0.7545076282940361, 0.7566063977746871, 0.7576601671309192, 0.7573221757322176, 0.7583798882681564, 0.7580419580419581, 0.7591036414565826, 0.758765778401122, 0.7584269662921348, 0.7580872011251758, 0.7591549295774648, 0.7588152327221439, 0.7598870056497176, 0.7609618104667609, 0.7620396600566572, 0.7617021276595745, 0.7627840909090909, 0.7649572649572649, 0.7660485021398002, 0.7657142857142857, 0.765379113018598, 0.7650429799426934, 0.7647058823529411, 0.7658045977011494, 0.7654676258992805, 0.7665706051873199, 0.7676767676767676, 0.7673410404624278, 0.7670043415340086, 0.7666666666666667, 0.7663280116110305, 0.7659883720930233, 0.7671033478893741, 0.7667638483965015, 0.7678832116788321, 0.7690058479532164, 0.7686676427525623, 0.7697947214076246, 0.7694566813509545, 0.7705882352941177, 0.7717231222385862, 0.7728613569321534, 0.7725258493353028, 0.772189349112426, 0.7718518518518519, 0.7729970326409495, 0.774145616641902, 0.7752976190476191, 0.7764530551415797, 0.7761194029850746, 0.7757847533632287, 0.7769461077844312, 0.7781109445277361, 0.7777777777777778, 0.7774436090225564, 0.7771084337349398, 0.7782805429864253, 0.7779456193353474, 0.7791225416036308, 0.7803030303030303, 0.7814871016691958, 0.7826747720364742, 0.7838660578386606, 0.7850609756097561, 0.7862595419847328, 0.7859327217125383, 0.7871362940275651, 0.7868098159509203, 0.7864823348694316, 0.7861538461538462, 0.7873651771956857, 0.7885802469135802, 0.7882534775888718, 0.7879256965944272, 0.7875968992248062, 0.7872670807453416, 0.7869362363919129, 0.7881619937694704, 0.7893915756630265, 0.7890625, 0.7902973395931142, 0.7915360501567398, 0.792778649921507, 0.7921259842519685, 0.7933753943217665, 0.7946287519747235, 0.7943037974683544, 0.7939778129952456, 0.7952380952380952, 0.7965023847376789, 0.7961783439490446, 0.79585326953748, 0.7955271565495208, 0.7952, 0.7964743589743589, 0.7961476725521669, 0.7958199356913184, 0.7971014492753623, 0.7967741935483871, 0.7961165048543689, 0.7974068071312804, 0.797077922077922, 0.7967479674796748, 0.7964169381107492, 0.797716150081566, 0.7990196078431373, 0.7986906710310966, 0.8, 0.7996715927750411, 0.7993421052631579, 0.7990115321252059, 0.7986798679867987, 0.7983471074380165, 0.7980132450331126, 0.7976782752902156, 0.7990033222591362, 0.7986688851913477, 0.7983333333333333, 0.7996661101836394, 0.7993311036789298, 0.8006700167504187, 0.8003355704697986, 0.8016806722689076, 0.8013468013468014, 0.8026981450252951, 0.8023648648648649, 0.8037225042301185, 0.8033898305084746, 0.8030560271646859, 0.8044217687074829, 0.8057921635434412, 0.8054607508532423, 0.8068376068376069, 0.8065068493150684, 0.8078902229845626, 0.8092783505154639, 0.810671256454389, 0.8100172711571675, 0.8114186851211073, 0.8110918544194108, 0.8107638888888888, 0.8121739130434783, 0.813588850174216, 0.8132635253054101, 0.8129370629370629, 0.8143607705779334, 0.8157894736842105, 0.8172231985940246, 0.8169014084507042, 0.818342151675485, 0.8180212014134276, 0.8176991150442477, 0.8191489361702128, 0.8206039076376554, 0.8202846975088968, 0.8199643493761141, 0.8196428571428571, 0.8211091234347049, 0.8225806451612904, 0.822262118491921, 0.8237410071942446, 0.8252252252252252, 0.8249097472924187, 0.8245931283905967, 0.8242753623188406, 0.8257713248638838, 0.8272727272727273, 0.8269581056466302, 0.8266423357664233, 0.8281535648994516, 0.8278388278388278, 0.8275229357798165, 0.8272058823529411, 0.8287292817679558, 0.8284132841328413, 0.8299445471349353, 0.8296296296296296, 0.8293135435992579, 0.828996282527881, 0.8286778398510242, 0.8283582089552238, 0.8280373831775701, 0.8295880149812734, 0.8292682926829268, 0.8308270676691729, 0.832391713747646, 0.8320754716981132, 0.833648393194707, 0.8352272727272727, 0.8349146110056926, 0.8365019011406845, 0.8380952380952381, 0.8377862595419847, 0.8393881453154876, 0.8390804597701149, 0.8387715930902111, 0.8384615384615385, 0.838150289017341, 0.8378378378378378, 0.8375241779497099, 0.8372093023255814, 0.8368932038834952, 0.8385214007782101, 0.8382066276803118, 0.837890625, 0.837573385518591, 0.8372549019607843, 0.8369351669941061, 0.8362919132149902, 0.8359683794466403, 0.8356435643564356, 0.8353174603174603, 0.8349900596421471, 0.8346613545816733, 0.8343313373253493, 0.834, 0.8356713426853707, 0.8353413654618473, 0.8370221327967807, 0.8387096774193549, 0.8383838383838383, 0.840080971659919, 0.8397565922920892, 0.8391038696537678, 0.8387755102040816, 0.8384458077709611, 0.8381147540983607, 0.837782340862423, 0.8395061728395061, 0.8412371134020619, 0.8409090909090909, 0.8405797101449275, 0.8402489626556017, 0.83991683991684, 0.8395833333333333, 0.8392484342379958, 0.8389121338912134, 0.8406708595387841, 0.842436974789916, 0.8442105263157895, 0.8438818565400844, 0.8456659619450317, 0.8453389830508474, 0.8450106157112527, 0.8446808510638298, 0.8443496801705757, 0.844017094017094, 0.8436830835117773, 0.8433476394849786, 0.8451612903225807, 0.8469827586206896, 0.8466522678185745, 0.8463203463203464, 0.8459869848156182, 0.8456521739130435, 0.8474945533769063, 0.8493449781659389, 0.849015317286652, 0.8486842105263158, 0.8524229074889867, 0.8520971302428256, 0.8517699115044248, 0.8514412416851441, 0.8533333333333334, 0.8530066815144766, 0.8526785714285714, 0.8523489932885906, 0.852017937219731, 0.8539325842696629, 0.8536036036036037, 0.8555304740406321, 0.8552036199095022, 0.8571428571428571, 0.8590909090909091, 0.8610478359908884, 0.860730593607306, 0.8604118993135011, 0.8600917431192661, 0.8620689655172413, 0.8640552995391705, 0.8637413394919169, 0.8634259259259259, 0.8631090487238979, 0.8627906976744186, 0.8624708624708625, 0.8644859813084113, 0.8665105386416861, 0.8661971830985915, 0.8682352941176471, 0.8679245283018868, 0.8699763593380615, 0.8696682464454977, 0.8738095238095238, 0.8735083532219571, 0.8729016786570744, 0.875, 0.8746987951807229, 0.87409200968523, 0.8737864077669902, 0.8734793187347932, 0.8731707317073171, 0.8728606356968215, 0.8725490196078431, 0.8722358722358723, 0.8719211822660099, 0.8716049382716049, 0.8737623762376238, 0.8734491315136477, 0.8731343283582089, 0.8728179551122195, 0.8725, 0.87468671679198, 0.8743718592964824, 0.8740554156171285, 0.8737373737373737, 0.8734177215189873, 0.8730964467005076, 0.8753180661577609, 0.8775510204081632, 0.8772378516624041, 0.8794871794871795, 0.8791773778920309, 0.8788659793814433, 0.8785529715762274, 0.8782383419689119, 0.8779220779220779, 0.8776041666666666, 0.8772845953002611, 0.8769633507853403, 0.8792650918635171, 0.881578947368421, 0.8839050131926122, 0.8862433862433863, 0.8859416445623343, 0.8856382978723404, 0.888, 0.8877005347593583, 0.8873994638069705, 0.8870967741935484, 0.8867924528301887, 0.8864864864864865, 0.8861788617886179, 0.8858695652173914, 0.888283378746594, 0.8879781420765027, 0.8876712328767123, 0.8873626373626373, 0.8870523415977961, 0.8895027624309392, 0.889196675900277, 0.8888888888888888, 0.8913649025069638, 0.8938547486033519, 0.8935574229691877, 0.8932584269662921, 0.8929577464788733, 0.8926553672316384, 0.8951841359773371, 0.8948863636363636, 0.8945868945868946, 0.8942857142857142, 0.8968481375358166, 0.896551724137931, 0.8962536023054755, 0.8959537572254336, 0.8956521739130435, 0.8953488372093024, 0.8950437317784257, 0.8947368421052632, 0.8944281524926686, 0.8941176470588236, 0.8938053097345132, 0.893491124260355, 0.8931750741839762, 0.8928571428571429, 0.8925373134328358, 0.8952095808383234, 0.8948948948948949, 0.8945783132530121, 0.8942598187311178, 0.8939393939393939, 0.8966565349544073, 0.8963414634146342, 0.8960244648318043, 0.8957055214723927, 0.8953846153846153, 0.8950617283950617, 0.8947368421052632, 0.8944099378881988, 0.8940809968847352, 0.89375, 0.896551724137931, 0.8962264150943396, 0.8958990536277602, 0.8952380952380953, 0.8949044585987261, 0.8945686900958466, 0.8942307692307693, 0.8938906752411575, 0.8935483870967742, 0.8964401294498382, 0.8961038961038961, 0.8990228013029316, 0.8986928104575164, 0.898360655737705, 0.8980263157894737, 0.8976897689768977, 0.8973509933774835, 0.8970099667774086, 0.8966666666666666, 0.8963210702341137, 0.8959731543624161, 0.8956228956228957, 0.8952702702702703, 0.8949152542372881, 0.8945578231292517, 0.89419795221843, 0.8938356164383562, 0.8969072164948454, 0.896551724137931, 0.8961937716262975, 0.8993055555555556, 0.9024390243902439, 0.9020979020979021, 0.9017543859649123, 0.9014084507042254, 0.901060070671378, 0.900709219858156, 0.900355871886121, 0.9, 0.899641577060932, 0.8992805755395683, 0.9025270758122743, 0.9057971014492754, 0.9054545454545454, 0.9051094890510949, 0.9047619047619048, 0.9044117647058824, 0.9040590405904059, 0.9037037037037037, 0.9104477611940298, 0.9101123595505618, 0.9097744360902256, 0.909433962264151, 0.9090909090909091, 0.908745247148289, 0.9083969465648855, 0.9080459770114943, 0.9076923076923077, 0.9073359073359073, 0.9069767441860465, 0.9066147859922179, 0.90625, 0.9058823529411765, 0.905511811023622, 0.9051383399209486, 0.9047619047619048, 0.9083665338645418, 0.912, 0.9116465863453815, 0.9112903225806451, 0.9149797570850202, 0.9146341463414634, 0.9142857142857143, 0.9139344262295082, 0.9135802469135802, 0.9132231404958677, 0.91701244813278, 0.9166666666666666, 0.9163179916317992, 0.9156118143459916, 0.9152542372881356, 0.9148936170212766, 0.9145299145299145, 0.9141630901287554, 0.9137931034482759, 0.9134199134199135, 0.9130434782608695, 0.9126637554585153, 0.9122807017543859, 0.9162995594713657, 0.915929203539823, 0.92, 0.9196428571428571, 0.9192825112107623, 0.918918918918919, 0.918552036199095, 0.9181818181818182, 0.9223744292237442, 0.9220183486238532, 0.9262672811059908, 0.9259259259259259, 0.9302325581395349, 0.9299065420560748, 0.9295774647887324, 0.9292452830188679, 0.9289099526066351, 0.9333333333333333, 0.9330143540669856, 0.9326923076923077, 0.9323671497584541, 0.9320388349514563, 0.9365853658536586, 0.9362745098039216, 0.9359605911330049, 0.9356435643564357, 0.9402985074626866, 0.94, 0.9396984924623115, 0.9444444444444444, 0.9441624365482234, 0.9438775510204082, 0.9487179487179487, 0.9481865284974094, 0.9476439790575916, 0.9473684210526315, 0.9470899470899471, 0.9468085106382979, 0.9518716577540107, 0.9516129032258065, 0.9513513513513514, 0.9510869565217391, 0.9508196721311475, 0.9505494505494505, 0.9502762430939227, 0.95, 0.9553072625698324, 0.9550561797752809, 0.9548022598870056, 0.9602272727272727, 0.96, 0.9597701149425287, 0.9595375722543352, 0.9590643274853801, 0.9588235294117647, 0.9585798816568047, 0.9583333333333334, 0.9580838323353293, 0.9578313253012049, 0.9636363636363636, 0.9634146341463414, 0.9631901840490797, 0.9629629629629629, 0.9627329192546584, 0.9625, 0.9622641509433962, 0.9620253164556962, 0.9617834394904459, 0.967948717948718, 0.967741935483871, 0.9675324675324676, 0.9671052631578947, 0.9668874172185431, 0.9666666666666667, 0.9664429530201343, 0.9662162162162162, 0.9659863945578231, 0.9657534246575342, 0.9655172413793104, 0.9652777777777778, 0.965034965034965, 0.9647887323943662, 0.9645390070921985, 0.9642857142857143, 0.9640287769784173, 0.9637681159420289, 0.9635036496350365, 0.9632352941176471, 0.9629629629629629, 0.9626865671641791, 0.9624060150375939, 0.9621212121212122, 0.9618320610687023, 0.9615384615384616, 0.9689922480620154, 0.96875, 0.968503937007874, 0.9682539682539683, 0.968, 0.967479674796748, 0.9672131147540983, 0.9669421487603306, 0.9666666666666667, 0.9663865546218487, 0.9661016949152542, 0.9658119658119658, 0.9655172413793104, 0.9652173913043478, 0.9649122807017544, 0.9646017699115044, 0.9642857142857143, 0.963963963963964, 0.9636363636363636, 0.963302752293578, 0.9629629629629629, 0.9626168224299065, 0.9622641509433962, 0.9619047619047619, 0.9611650485436893, 0.9607843137254902, 0.9603960396039604, 0.96, 0.9595959595959596, 0.9591836734693877, 0.9587628865979382, 0.9583333333333334, 0.9578947368421052, 0.9574468085106383, 0.956989247311828, 0.9565217391304348, 0.9560439560439561, 0.9555555555555556, 0.9550561797752809, 0.9545454545454546, 0.9540229885057471, 0.9651162790697675, 0.9647058823529412, 0.9642857142857143, 0.963855421686747, 0.9634146341463414, 0.9629629629629629, 0.9625, 0.9620253164556962, 0.9615384615384616, 0.9605263157894737, 0.96, 0.9594594594594594, 0.958904109589041, 0.9583333333333334, 0.9577464788732394, 0.9571428571428572, 0.9565217391304348, 0.9558823529411765, 0.9552238805970149, 0.9545454545454546, 0.9538461538461539, 0.953125, 0.9523809523809523, 0.9516129032258065, 0.9508196721311475, 0.95, 0.9491525423728814, 0.9482758620689655, 0.9473684210526315, 0.9464285714285714, 0.9454545454545454, 0.9444444444444444, 0.9433962264150944, 0.9423076923076923, 0.9411764705882353, 0.94, 0.9387755102040817, 0.9375, 0.9361702127659575, 0.9347826086956522, 0.9333333333333333, 0.9318181818181818, 0.9302325581395349, 0.9285714285714286, 0.926829268292683, 0.925, 0.9230769230769231, 0.9210526315789473, 0.918918918918919, 0.9166666666666666, 0.9142857142857143, 0.9117647058823529, 0.9090909090909091, 0.90625, 0.9032258064516129, 0.9333333333333333, 0.9310344827586207, 0.9285714285714286, 0.9259259259259259, 0.9230769230769231, 0.92, 0.9166666666666666, 0.9130434782608695, 0.9545454545454546, 0.95, 0.9473684210526315, 0.9444444444444444, 0.9411764705882353, 0.9375, 0.9333333333333333, 0.9285714285714286, 0.9230769230769231, 0.9166666666666666, 0.9090909090909091, 0.9, 0.8888888888888888, 0.875, 0.8571428571428571, 0.8333333333333334, 0.8, 0.75, 0.6666666666666666, 0.5, 0.0, 1.0], \"y\": [1.0, 0.9984496124031008, 0.9984496124031008, 0.9984496124031008, 0.9984496124031008, 0.9984496124031008, 0.9984496124031008, 0.9984496124031008, 0.9984496124031008, 0.9984496124031008, 0.9984496124031008, 0.9984496124031008, 0.9984496124031008, 0.9984496124031008, 0.9984496124031008, 0.9984496124031008, 0.9984496124031008, 0.9984496124031008, 0.9984496124031008, 0.9984496124031008, 0.9984496124031008, 0.9984496124031008, 0.9984496124031008, 0.9984496124031008, 0.9984496124031008, 0.9984496124031008, 0.9984496124031008, 0.9984496124031008, 0.9968992248062015, 0.9968992248062015, 0.9968992248062015, 0.9953488372093023, 0.993798449612403, 0.9922480620155039, 0.9906976744186047, 0.9906976744186047, 0.9906976744186047, 0.9891472868217054, 0.9875968992248062, 0.9875968992248062, 0.986046511627907, 0.9844961240310077, 0.9844961240310077, 0.9829457364341085, 0.9813953488372092, 0.9798449612403101, 0.9798449612403101, 0.9798449612403101, 0.9782945736434109, 0.9782945736434109, 0.9782945736434109, 0.9782945736434109, 0.9782945736434109, 0.9782945736434109, 0.9782945736434109, 0.9782945736434109, 0.9782945736434109, 0.9782945736434109, 0.9767441860465116, 0.9751937984496124, 0.9751937984496124, 0.9751937984496124, 0.9751937984496124, 0.9736434108527132, 0.9736434108527132, 0.9736434108527132, 0.9720930232558139, 0.9720930232558139, 0.9705426356589147, 0.9705426356589147, 0.9705426356589147, 0.9705426356589147, 0.9705426356589147, 0.9689922480620154, 0.9689922480620154, 0.9689922480620154, 0.9689922480620154, 0.9689922480620154, 0.9674418604651163, 0.9674418604651163, 0.9674418604651163, 0.9674418604651163, 0.9674418604651163, 0.9658914728682171, 0.9658914728682171, 0.9658914728682171, 0.9658914728682171, 0.9643410852713178, 0.9643410852713178, 0.9643410852713178, 0.9643410852713178, 0.9627906976744186, 0.9627906976744186, 0.9612403100775194, 0.9612403100775194, 0.9612403100775194, 0.9612403100775194, 0.9612403100775194, 0.9612403100775194, 0.9596899224806201, 0.9596899224806201, 0.9596899224806201, 0.9596899224806201, 0.9596899224806201, 0.958139534883721, 0.958139534883721, 0.958139534883721, 0.9565891472868217, 0.9565891472868217, 0.9565891472868217, 0.9550387596899225, 0.9534883720930233, 0.9534883720930233, 0.9534883720930233, 0.9534883720930233, 0.9534883720930233, 0.9534883720930233, 0.951937984496124, 0.9503875968992248, 0.9503875968992248, 0.9488372093023256, 0.9488372093023256, 0.9472868217054263, 0.9457364341085271, 0.9441860465116279, 0.9441860465116279, 0.9426356589147287, 0.9426356589147287, 0.9426356589147287, 0.9410852713178295, 0.9395348837209302, 0.937984496124031, 0.937984496124031, 0.937984496124031, 0.937984496124031, 0.9364341085271318, 0.9364341085271318, 0.9364341085271318, 0.9348837209302325, 0.9348837209302325, 0.9348837209302325, 0.931782945736434, 0.9302325581395349, 0.9286821705426357, 0.9286821705426357, 0.9286821705426357, 0.9286821705426357, 0.9286821705426357, 0.9271317829457364, 0.9255813953488372, 0.924031007751938, 0.9224806201550387, 0.9224806201550387, 0.9224806201550387, 0.9224806201550387, 0.9224806201550387, 0.9209302325581395, 0.9209302325581395, 0.9209302325581395, 0.9209302325581395, 0.9209302325581395, 0.9209302325581395, 0.9209302325581395, 0.9209302325581395, 0.9209302325581395, 0.9209302325581395, 0.9209302325581395, 0.9209302325581395, 0.9193798449612403, 0.9193798449612403, 0.9178294573643411, 0.9178294573643411, 0.9178294573643411, 0.9162790697674419, 0.9162790697674419, 0.9147286821705426, 0.9147286821705426, 0.9147286821705426, 0.9147286821705426, 0.9131782945736434, 0.9131782945736434, 0.9116279069767442, 0.9116279069767442, 0.9100775193798449, 0.9100775193798449, 0.9085271317829458, 0.9069767441860465, 0.9054263565891473, 0.9038759689922481, 0.9038759689922481, 0.9023255813953488, 0.9007751937984496, 0.9007751937984496, 0.9007751937984496, 0.8992248062015504, 0.8992248062015504, 0.8976744186046511, 0.8976744186046511, 0.8976744186046511, 0.8976744186046511, 0.8976744186046511, 0.8976744186046511, 0.8976744186046511, 0.8976744186046511, 0.8976744186046511, 0.8976744186046511, 0.8976744186046511, 0.8976744186046511, 0.896124031007752, 0.896124031007752, 0.8945736434108527, 0.8945736434108527, 0.8930232558139535, 0.8914728682170543, 0.889922480620155, 0.889922480620155, 0.889922480620155, 0.8883720930232558, 0.8883720930232558, 0.8883720930232558, 0.8868217054263566, 0.8852713178294573, 0.8837209302325582, 0.8821705426356589, 0.8821705426356589, 0.8821705426356589, 0.8806201550387597, 0.8806201550387597, 0.8775193798449612, 0.8775193798449612, 0.875968992248062, 0.875968992248062, 0.875968992248062, 0.8744186046511628, 0.8744186046511628, 0.8744186046511628, 0.8728682170542635, 0.8713178294573644, 0.8697674418604651, 0.8682170542635659, 0.8682170542635659, 0.8666666666666667, 0.8651162790697674, 0.8651162790697674, 0.8651162790697674, 0.8635658914728682, 0.8635658914728682, 0.862015503875969, 0.862015503875969, 0.8604651162790697, 0.8589147286821706, 0.8573643410852713, 0.8558139534883721, 0.8558139534883721, 0.8542635658914729, 0.8527131782945736, 0.8511627906976744, 0.8496124031007752, 0.8496124031007752, 0.8496124031007752, 0.8496124031007752, 0.8480620155038759, 0.8480620155038759, 0.8480620155038759, 0.8480620155038759, 0.8465116279069768, 0.8465116279069768, 0.8465116279069768, 0.8449612403100775, 0.8434108527131783, 0.8434108527131783, 0.8434108527131783, 0.8418604651162791, 0.8418604651162791, 0.8403100775193798, 0.8403100775193798, 0.8387596899224806, 0.8372093023255814, 0.8356589147286821, 0.8356589147286821, 0.834108527131783, 0.834108527131783, 0.834108527131783, 0.834108527131783, 0.8325581395348837, 0.8325581395348837, 0.8325581395348837, 0.8325581395348837, 0.8310077519379845, 0.8294573643410853, 0.827906976744186, 0.8263565891472868, 0.8263565891472868, 0.8248062015503876, 0.8248062015503876, 0.8248062015503876, 0.8232558139534883, 0.8217054263565892, 0.8201550387596899, 0.8186046511627907, 0.8170542635658915, 0.8170542635658915, 0.8155038759689922, 0.8155038759689922, 0.8155038759689922, 0.813953488372093, 0.813953488372093, 0.8124031007751938, 0.8124031007751938, 0.8124031007751938, 0.8124031007751938, 0.8108527131782945, 0.8093023255813954, 0.8077519379844961, 0.8077519379844961, 0.8077519379844961, 0.8077519379844961, 0.8077519379844961, 0.8062015503875969, 0.8046511627906977, 0.8046511627906977, 0.8046511627906977, 0.8031007751937984, 0.8015503875968992, 0.8, 0.8, 0.7984496124031008, 0.7984496124031008, 0.7984496124031008, 0.7984496124031008, 0.7984496124031008, 0.7984496124031008, 0.7984496124031008, 0.7984496124031008, 0.7968992248062016, 0.7968992248062016, 0.7953488372093023, 0.7937984496124031, 0.7922480620155039, 0.7922480620155039, 0.7922480620155039, 0.7906976744186046, 0.7891472868217054, 0.7875968992248062, 0.786046511627907, 0.7844961240310078, 0.7844961240310078, 0.7844961240310078, 0.7829457364341085, 0.7829457364341085, 0.7829457364341085, 0.7829457364341085, 0.7798449612403101, 0.7798449612403101, 0.7798449612403101, 0.7782945736434108, 0.7767441860465116, 0.7767441860465116, 0.7767441860465116, 0.7751937984496124, 0.7736434108527132, 0.772093023255814, 0.7705426356589147, 0.7705426356589147, 0.7689922480620155, 0.7674418604651163, 0.7674418604651163, 0.765891472868217, 0.7627906976744186, 0.7627906976744186, 0.7612403100775194, 0.7596899224806202, 0.7581395348837209, 0.7581395348837209, 0.7581395348837209, 0.7565891472868217, 0.7565891472868217, 0.7550387596899225, 0.7534883720930232, 0.751937984496124, 0.7503875968992249, 0.7488372093023256, 0.7472868217054264, 0.7457364341085271, 0.7457364341085271, 0.7441860465116279, 0.7426356589147287, 0.7426356589147287, 0.7410852713178294, 0.7410852713178294, 0.7395348837209302, 0.7395348837209302, 0.737984496124031, 0.737984496124031, 0.7364341085271318, 0.7364341085271318, 0.7348837209302326, 0.7333333333333333, 0.7333333333333333, 0.7333333333333333, 0.7317829457364341, 0.7317829457364341, 0.7302325581395349, 0.7302325581395349, 0.7302325581395349, 0.7302325581395349, 0.7271317829457364, 0.7271317829457364, 0.7255813953488373, 0.724031007751938, 0.724031007751938, 0.724031007751938, 0.7224806201550388, 0.7209302325581395, 0.7209302325581395, 0.7209302325581395, 0.7209302325581395, 0.7193798449612403, 0.7193798449612403, 0.7178294573643411, 0.7162790697674418, 0.7162790697674418, 0.7162790697674418, 0.7147286821705426, 0.7131782945736435, 0.7116279069767442, 0.7116279069767442, 0.7116279069767442, 0.710077519379845, 0.710077519379845, 0.710077519379845, 0.7085271317829457, 0.7069767441860465, 0.7054263565891473, 0.7054263565891473, 0.7054263565891473, 0.703875968992248, 0.7023255813953488, 0.7023255813953488, 0.7007751937984497, 0.6992248062015504, 0.6976744186046512, 0.6976744186046512, 0.6961240310077519, 0.6961240310077519, 0.6945736434108527, 0.6930232558139535, 0.6914728682170542, 0.689922480620155, 0.6883720930232559, 0.6868217054263566, 0.6868217054263566, 0.6852713178294574, 0.6852713178294574, 0.6852713178294574, 0.6837209302325581, 0.6837209302325581, 0.6837209302325581, 0.6821705426356589, 0.6821705426356589, 0.6821705426356589, 0.6806201550387597, 0.6806201550387597, 0.6790697674418604, 0.6775193798449612, 0.6759689922480621, 0.6744186046511628, 0.6728682170542636, 0.6713178294573643, 0.6697674418604651, 0.6682170542635659, 0.6682170542635659, 0.6666666666666666, 0.6651162790697674, 0.6635658914728683, 0.662015503875969, 0.6604651162790698, 0.6573643410852713, 0.6558139534883721, 0.6542635658914728, 0.6527131782945736, 0.6511627906976745, 0.6496124031007752, 0.648062015503876, 0.6465116279069767, 0.6465116279069767, 0.6449612403100775, 0.6449612403100775, 0.6449612403100775, 0.6434108527131783, 0.6434108527131783, 0.641860465116279, 0.6387596899224807, 0.6372093023255814, 0.6356589147286822, 0.6341085271317829, 0.6325581395348837, 0.6325581395348837, 0.6325581395348837, 0.6310077519379845, 0.6294573643410852, 0.627906976744186, 0.6263565891472869, 0.6248062015503876, 0.6232558139534884, 0.6217054263565891, 0.6217054263565891, 0.6217054263565891, 0.6217054263565891, 0.6201550387596899, 0.6201550387596899, 0.6186046511627907, 0.6170542635658914, 0.6155038759689923, 0.6139534883720931, 0.6124031007751938, 0.6108527131782946, 0.6093023255813953, 0.6093023255813953, 0.6093023255813953, 0.6077519379844961, 0.6062015503875969, 0.6046511627906976, 0.6031007751937985, 0.6031007751937985, 0.6031007751937985, 0.6015503875968993, 0.6, 0.6, 0.5984496124031008, 0.5968992248062015, 0.5953488372093023, 0.5953488372093023, 0.5937984496124031, 0.5922480620155038, 0.5906976744186047, 0.5891472868217055, 0.5891472868217055, 0.5875968992248062, 0.5875968992248062, 0.586046511627907, 0.586046511627907, 0.586046511627907, 0.586046511627907, 0.5844961240310077, 0.5829457364341085, 0.5813953488372093, 0.5813953488372093, 0.5813953488372093, 0.57984496124031, 0.5782945736434109, 0.5767441860465117, 0.5751937984496124, 0.5736434108527132, 0.5736434108527132, 0.5736434108527132, 0.5720930232558139, 0.5720930232558139, 0.5705426356589147, 0.5705426356589147, 0.5689922480620155, 0.5689922480620155, 0.5674418604651162, 0.5643410852713179, 0.5643410852713179, 0.5627906976744186, 0.5596899224806201, 0.5581395348837209, 0.5565891472868217, 0.5550387596899224, 0.5534883720930233, 0.5519379844961241, 0.5503875968992248, 0.5488372093023256, 0.5472868217054263, 0.5472868217054263, 0.5457364341085271, 0.5441860465116279, 0.5426356589147286, 0.5410852713178295, 0.5410852713178295, 0.5395348837209303, 0.537984496124031, 0.5364341085271318, 0.5348837209302325, 0.5333333333333333, 0.5333333333333333, 0.5333333333333333, 0.5317829457364341, 0.5317829457364341, 0.5302325581395348, 0.5286821705426357, 0.5271317829457365, 0.5255813953488372, 0.524031007751938, 0.5224806201550387, 0.5209302325581395, 0.5193798449612403, 0.5193798449612403, 0.5193798449612403, 0.5193798449612403, 0.5193798449612403, 0.517829457364341, 0.5162790697674419, 0.5162790697674419, 0.5147286821705427, 0.5131782945736434, 0.5116279069767442, 0.5100775193798449, 0.5085271317829457, 0.5069767441860465, 0.5054263565891473, 0.5054263565891473, 0.5038759689922481, 0.5023255813953489, 0.5007751937984496, 0.4992248062015504, 0.4992248062015504, 0.49767441860465117, 0.49612403100775193, 0.49612403100775193, 0.49612403100775193, 0.4945736434108527, 0.4930232558139535, 0.49147286821705427, 0.48992248062015503, 0.48992248062015503, 0.4883720930232558, 0.4868217054263566, 0.48527131782945737, 0.48527131782945737, 0.48372093023255813, 0.4821705426356589, 0.4806201550387597, 0.4790697674418605, 0.47751937984496123, 0.475968992248062, 0.4744186046511628, 0.4728682170542636, 0.47131782945736433, 0.4697674418604651, 0.4682170542635659, 0.4666666666666667, 0.46511627906976744, 0.4635658914728682, 0.4635658914728682, 0.462015503875969, 0.4604651162790698, 0.45891472868217054, 0.4573643410852713, 0.4573643410852713, 0.4558139534883721, 0.4542635658914729, 0.45271317829457364, 0.4511627906976744, 0.4496124031007752, 0.448062015503876, 0.44651162790697674, 0.4449612403100775, 0.4434108527131783, 0.4434108527131783, 0.4418604651162791, 0.44031007751937984, 0.4372093023255814, 0.4356589147286822, 0.43410852713178294, 0.4325581395348837, 0.4310077519379845, 0.4294573643410853, 0.4294573643410853, 0.42790697674418604, 0.42790697674418604, 0.4263565891472868, 0.4248062015503876, 0.4232558139534884, 0.42170542635658914, 0.4201550387596899, 0.4186046511627907, 0.4170542635658915, 0.41550387596899224, 0.413953488372093, 0.4124031007751938, 0.4108527131782946, 0.40930232558139534, 0.4077519379844961, 0.4062015503875969, 0.4046511627906977, 0.4046511627906977, 0.40310077519379844, 0.4015503875968992, 0.4015503875968992, 0.4015503875968992, 0.4, 0.3984496124031008, 0.39689922480620154, 0.3953488372093023, 0.3937984496124031, 0.3922480620155039, 0.39069767441860465, 0.3891472868217054, 0.3875968992248062, 0.3875968992248062, 0.3875968992248062, 0.386046511627907, 0.38449612403100775, 0.3829457364341085, 0.3813953488372093, 0.3798449612403101, 0.37829457364341085, 0.37829457364341085, 0.3767441860465116, 0.3751937984496124, 0.3736434108527132, 0.37209302325581395, 0.3705426356589147, 0.3689922480620155, 0.3674418604651163, 0.36589147286821705, 0.3643410852713178, 0.3627906976744186, 0.3612403100775194, 0.35968992248062015, 0.3581395348837209, 0.35658914728682173, 0.3550387596899225, 0.35348837209302325, 0.35348837209302325, 0.35348837209302325, 0.351937984496124, 0.35038759689922483, 0.35038759689922483, 0.3488372093023256, 0.34728682170542635, 0.3457364341085271, 0.34418604651162793, 0.3426356589147287, 0.3426356589147287, 0.34108527131782945, 0.3395348837209302, 0.3364341085271318, 0.33488372093023255, 0.3333333333333333, 0.33178294573643413, 0.3302325581395349, 0.32868217054263565, 0.3271317829457364, 0.32558139534883723, 0.324031007751938, 0.32248062015503876, 0.32248062015503876, 0.3209302325581395, 0.3209302325581395, 0.31937984496124033, 0.3178294573643411, 0.31627906976744186, 0.3147286821705426, 0.31317829457364343, 0.31317829457364343, 0.3116279069767442, 0.3116279069767442, 0.31007751937984496, 0.31007751937984496, 0.3085271317829457, 0.30697674418604654, 0.3054263565891473, 0.30387596899224806, 0.30387596899224806, 0.3023255813953488, 0.30077519379844964, 0.2992248062015504, 0.29767441860465116, 0.29767441860465116, 0.2961240310077519, 0.29457364341085274, 0.2930232558139535, 0.2930232558139535, 0.29147286821705426, 0.289922480620155, 0.289922480620155, 0.28837209302325584, 0.2868217054263566, 0.2868217054263566, 0.2837209302325581, 0.2806201550387597, 0.27906976744186046, 0.2775193798449612, 0.27596899224806204, 0.27596899224806204, 0.2744186046511628, 0.27286821705426356, 0.2713178294573643, 0.26976744186046514, 0.2682170542635659, 0.26666666666666666, 0.2651162790697674, 0.2651162790697674, 0.26356589147286824, 0.262015503875969, 0.262015503875969, 0.26046511627906976, 0.2589147286821705, 0.25736434108527134, 0.25426356589147286, 0.2527131782945736, 0.25116279069767444, 0.2496124031007752, 0.24806201550387597, 0.24651162790697675, 0.24651162790697675, 0.24496124031007752, 0.2434108527131783, 0.24186046511627907, 0.24031007751937986, 0.23875968992248062, 0.2372093023255814, 0.23565891472868217, 0.23410852713178296, 0.23410852713178296, 0.23255813953488372, 0.2310077519379845, 0.22790697674418606, 0.22635658914728682, 0.2248062015503876, 0.22325581395348837, 0.22170542635658916, 0.22015503875968992, 0.2186046511627907, 0.21705426356589147, 0.21550387596899226, 0.21395348837209302, 0.2124031007751938, 0.21085271317829457, 0.20930232558139536, 0.20775193798449612, 0.2062015503875969, 0.20465116279069767, 0.20310077519379846, 0.20155038759689922, 0.2, 0.19844961240310077, 0.19689922480620156, 0.19534883720930232, 0.1937984496124031, 0.1937984496124031, 0.19224806201550387, 0.19069767441860466, 0.18914728682170542, 0.1875968992248062, 0.18449612403100776, 0.18294573643410852, 0.1813953488372093, 0.17984496124031008, 0.17829457364341086, 0.17674418604651163, 0.17519379844961241, 0.17364341085271318, 0.17209302325581396, 0.17054263565891473, 0.16899224806201552, 0.16744186046511628, 0.16589147286821707, 0.16434108527131783, 0.16279069767441862, 0.16124031007751938, 0.15968992248062017, 0.15813953488372093, 0.15658914728682172, 0.15348837209302327, 0.15193798449612403, 0.15038759689922482, 0.14883720930232558, 0.14728682170542637, 0.14573643410852713, 0.14418604651162792, 0.14263565891472868, 0.14108527131782947, 0.13953488372093023, 0.13798449612403102, 0.13643410852713178, 0.13488372093023257, 0.13333333333333333, 0.13178294573643412, 0.13023255813953488, 0.12868217054263567, 0.12868217054263567, 0.12713178294573643, 0.12558139534883722, 0.12403100775193798, 0.12248062015503876, 0.12093023255813953, 0.11937984496124031, 0.11782945736434108, 0.11627906976744186, 0.11317829457364341, 0.11162790697674418, 0.11007751937984496, 0.10852713178294573, 0.10697674418604651, 0.10542635658914729, 0.10387596899224806, 0.10232558139534884, 0.10077519379844961, 0.09922480620155039, 0.09767441860465116, 0.09612403100775194, 0.09457364341085271, 0.09302325581395349, 0.09147286821705426, 0.08992248062015504, 0.08837209302325581, 0.08682170542635659, 0.08527131782945736, 0.08372093023255814, 0.08217054263565891, 0.08062015503875969, 0.07906976744186046, 0.07751937984496124, 0.07596899224806201, 0.07441860465116279, 0.07286821705426356, 0.07131782945736434, 0.06976744186046512, 0.06821705426356589, 0.06666666666666667, 0.06511627906976744, 0.06356589147286822, 0.06201550387596899, 0.06046511627906977, 0.05891472868217054, 0.05736434108527132, 0.05581395348837209, 0.05426356589147287, 0.05271317829457364, 0.05116279069767442, 0.04961240310077519, 0.04806201550387597, 0.046511627906976744, 0.04496124031007752, 0.043410852713178294, 0.043410852713178294, 0.04186046511627907, 0.040310077519379844, 0.03875968992248062, 0.037209302325581395, 0.03565891472868217, 0.034108527131782945, 0.03255813953488372, 0.03255813953488372, 0.02945736434108527, 0.027906976744186046, 0.02635658914728682, 0.024806201550387597, 0.023255813953488372, 0.021705426356589147, 0.020155038759689922, 0.018604651162790697, 0.017054263565891473, 0.015503875968992248, 0.013953488372093023, 0.012403100775193798, 0.010852713178294573, 0.009302325581395349, 0.007751937984496124, 0.006201550387596899, 0.004651162790697674, 0.0031007751937984496, 0.0015503875968992248, 0.0, 0.0]}], \"layout\": {\"showlegend\": true, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"Recall\"}}, \"yaxis\": {\"title\": {\"text\": \"Precision\"}}}}, \"insights\": [], \"additionalGraphs\": [], \"alerts\": [], \"tabs\": []}, {\"type\": \"big_graph\", \"title\": \"Current: Precision-Recall Curve\", \"size\": 1, \"details\": \"\", \"alertsPosition\": null, \"alertStats\": null, \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"lines\", \"name\": \"PR\", \"type\": \"scatter\", \"x\": [0.6492985971943888, 0.6489468405215647, 0.6495983935742972, 0.6492462311557788, 0.6498993963782697, 0.649546827794562, 0.6502016129032258, 0.649848637739657, 0.6494949494949495, 0.6501516683518705, 0.6508097165991903, 0.6514690982776089, 0.652129817444219, 0.6527918781725889, 0.6534552845528455, 0.6531027466937945, 0.6537678207739308, 0.654434250764526, 0.6551020408163265, 0.6547497446373851, 0.6554192229038854, 0.6550665301944729, 0.6557377049180327, 0.6564102564102564, 0.6570841889117043, 0.65775950668037, 0.6584362139917695, 0.659114315139032, 0.6597938144329897, 0.6604747162022704, 0.6611570247933884, 0.6618407445708376, 0.6614906832298136, 0.6621761658031088, 0.6628630705394191, 0.6635514018691588, 0.6642411642411642, 0.6649323621227887, 0.6645833333333333, 0.6652763295099061, 0.6659707724425887, 0.6666666666666666, 0.6663179916317992, 0.6659685863874345, 0.6666666666666666, 0.6673662119622246, 0.6680672268907563, 0.668769716088328, 0.6684210526315789, 0.6691253951527925, 0.6687763713080169, 0.6684266103484688, 0.6691331923890064, 0.6698412698412698, 0.6694915254237288, 0.6702014846235419, 0.6709129511677282, 0.6705632306057385, 0.6702127659574468, 0.670926517571885, 0.6716417910447762, 0.6712913553895411, 0.6720085470085471, 0.6727272727272727, 0.6723768736616702, 0.6730975348338692, 0.6738197424892703, 0.6745435016111708, 0.6752688172043011, 0.6759956942949408, 0.6756465517241379, 0.6752966558791802, 0.6760259179265659, 0.6756756756756757, 0.6753246753246753, 0.6749729144095341, 0.675704989154013, 0.6753528773072747, 0.6760869565217391, 0.676822633297062, 0.6764705882352942, 0.6772082878953108, 0.6779475982532751, 0.6786885245901639, 0.6783369803063457, 0.6790799561883899, 0.6798245614035088, 0.6794731064763996, 0.6802197802197802, 0.680968096809681, 0.6817180616740088, 0.681367144432194, 0.6821192052980133, 0.6828729281767956, 0.6836283185840708, 0.6843853820598007, 0.6851441241685144, 0.6859045504994451, 0.6866666666666666, 0.6863181312569522, 0.6878483835005574, 0.6886160714285714, 0.6882681564245811, 0.6890380313199105, 0.6898096304591266, 0.6905829596412556, 0.6902356902356902, 0.6910112359550562, 0.6906636670416197, 0.6903153153153153, 0.6910935738444194, 0.6918735891647856, 0.6926553672316385, 0.6934389140271493, 0.6942242355605889, 0.6938775510204082, 0.6946651532349603, 0.6954545454545454, 0.6962457337883959, 0.6970387243735763, 0.6978335233751425, 0.6986301369863014, 0.6994285714285714, 0.700228832951945, 0.7010309278350515, 0.7006880733944955, 0.7014925373134329, 0.7022988505747126, 0.7031070195627158, 0.7039170506912442, 0.7047289504036909, 0.7043879907621247, 0.7052023121387283, 0.7060185185185185, 0.7056778679026651, 0.7064965197215777, 0.7073170731707317, 0.708139534883721, 0.7089639115250291, 0.7097902097902098, 0.7106184364060677, 0.7102803738317757, 0.7099415204678362, 0.7096018735362998, 0.7092614302461899, 0.710093896713615, 0.7097532314923619, 0.7105882352941176, 0.7114252061248527, 0.7110849056603774, 0.7107438016528925, 0.710401891252955, 0.7112426035502959, 0.7105575326215896, 0.7114014251781473, 0.7110582639714625, 0.7107142857142857, 0.7115613825983313, 0.711217183770883, 0.7120669056152927, 0.7129186602870813, 0.7137724550898203, 0.7146282973621103, 0.7154861944777912, 0.7163461538461539, 0.717208182912154, 0.7168674698795181, 0.7177322074788902, 0.717391304347826, 0.7182587666263603, 0.7179176755447942, 0.7175757575757575, 0.7172330097087378, 0.7181044957472661, 0.7177615571776156, 0.7186358099878197, 0.7195121951219512, 0.7191697191697192, 0.7188264058679706, 0.7197062423500612, 0.7205882352941176, 0.7214723926380369, 0.7204433497536946, 0.720098643649815, 0.7227722772277227, 0.7236679058240396, 0.7233250620347395, 0.7229813664596273, 0.722636815920398, 0.7235367372353674, 0.7244389027431422, 0.7253433208489388, 0.72625, 0.7259073842302879, 0.7277289836888331, 0.7286432160804021, 0.7283018867924528, 0.7292191435768262, 0.7301387137452712, 0.7310606060606061, 0.7307206068268015, 0.7316455696202532, 0.7313054499366286, 0.7309644670050761, 0.7306226175349428, 0.7315521628498728, 0.732484076433121, 0.7334183673469388, 0.7343550446998723, 0.7352941176470589, 0.736235595390525, 0.735897435897436, 0.7368421052631579, 0.7377892030848329, 0.7374517374517374, 0.7384020618556701, 0.7393548387096774, 0.7403100775193798, 0.741267787839586, 0.7409326424870466, 0.74189364461738, 0.7428571428571429, 0.7438231469440832, 0.7431551499348109, 0.7428198433420365, 0.742483660130719, 0.743455497382199, 0.7431192660550459, 0.7440944881889764, 0.7437582128777924, 0.7447368421052631, 0.7457180500658761, 0.7467018469656992, 0.7476882430647291, 0.7486772486772487, 0.7496688741721854, 0.7506631299734748, 0.751660026560425, 0.7526595744680851, 0.7536617842876165, 0.7546666666666667, 0.7543391188251002, 0.7553475935828877, 0.7563587684069611, 0.7560321715817694, 0.7557046979865771, 0.7567204301075269, 0.756393001345895, 0.7574123989218329, 0.7567567567567568, 0.7564276048714479, 0.7560975609756098, 0.757123473541384, 0.7581521739130435, 0.7591836734693878, 0.7602179836512262, 0.7612551159618008, 0.7622950819672131, 0.7633378932968536, 0.7643835616438356, 0.7640603566529492, 0.7637362637362637, 0.7634112792297112, 0.7630853994490359, 0.7624309392265194, 0.7621023513139695, 0.7631578947368421, 0.7642163661581137, 0.7638888888888888, 0.7649513212795549, 0.766016713091922, 0.7656903765690377, 0.7653631284916201, 0.7664335664335664, 0.7661064425770309, 0.7657784011220197, 0.7654494382022472, 0.7651195499296765, 0.7647887323943662, 0.764456981664316, 0.7655367231638418, 0.7687943262411348, 0.7681365576102418, 0.7692307692307693, 0.7689015691868759, 0.77, 0.7693409742120344, 0.7704447632711621, 0.7694524495677233, 0.7691197691197691, 0.7702312138728323, 0.7698986975397974, 0.7710144927536232, 0.7706821480406386, 0.7703488372093024, 0.7696793002915452, 0.7693430656934307, 0.77046783625731, 0.7701317715959004, 0.7712609970674487, 0.7709251101321586, 0.7705882352941177, 0.7702503681885126, 0.7713864306784661, 0.7725258493353028, 0.772189349112426, 0.7718518518518519, 0.7729970326409495, 0.7726597325408618, 0.7723214285714286, 0.7746268656716417, 0.7742899850523169, 0.7754491017964071, 0.775112443778111, 0.7762762762762763, 0.7774436090225564, 0.7771084337349398, 0.7782805429864253, 0.7779456193353474, 0.7776096822995462, 0.7772727272727272, 0.7784522003034902, 0.7796352583586627, 0.7820121951219512, 0.7816793893129771, 0.7813455657492355, 0.7825421133231241, 0.7822085889570553, 0.783410138248848, 0.7830769230769231, 0.7842835130970724, 0.7839506172839507, 0.7851622874806801, 0.7863777089783281, 0.7875968992248062, 0.7872670807453416, 0.7869362363919129, 0.7881619937694704, 0.7878315132605305, 0.7875, 0.7871674491392802, 0.7884012539184952, 0.7896389324960753, 0.7921259842519685, 0.7917981072555205, 0.7914691943127962, 0.7911392405063291, 0.7923930269413629, 0.7936507936507936, 0.794912559618442, 0.7945859872611465, 0.7942583732057417, 0.7955271565495208, 0.7952, 0.7948717948717948, 0.7945425361155698, 0.7942122186495176, 0.7938808373590982, 0.7951612903225806, 0.7964458804523424, 0.7961165048543689, 0.7957860615883307, 0.797077922077922, 0.7967479674796748, 0.7964169381107492, 0.797716150081566, 0.7973856209150327, 0.7970540098199672, 0.7967213114754098, 0.7963875205254516, 0.7960526315789473, 0.7957166392092258, 0.7953795379537953, 0.7966942148760331, 0.7963576158940397, 0.7976782752902156, 0.7973421926910299, 0.7970049916805324, 0.7983333333333333, 0.7979966611018364, 0.7993311036789298, 0.7989949748743719, 0.7986577181208053, 0.7983193277310925, 0.7996632996632996, 0.8010118043844857, 0.8023648648648649, 0.8037225042301185, 0.8050847457627118, 0.8064516129032258, 0.8078231292517006, 0.807495741056218, 0.8088737201365188, 0.8085470085470086, 0.8082191780821918, 0.8078902229845626, 0.8092783505154639, 0.810671256454389, 0.8103448275862069, 0.8117443868739206, 0.8131487889273357, 0.8128249566724437, 0.8142361111111112, 0.8139130434782609, 0.8153310104529616, 0.8167539267015707, 0.8164335664335665, 0.8178633975481612, 0.8175438596491228, 0.8172231985940246, 0.8169014084507042, 0.8165784832451499, 0.8162544169611308, 0.815929203539823, 0.8156028368794326, 0.8152753108348135, 0.8149466192170819, 0.8146167557932263, 0.8160714285714286, 0.8189964157706093, 0.8186714542190305, 0.8183453237410072, 0.818018018018018, 0.8176895306859205, 0.8173598553345389, 0.8170289855072463, 0.8185117967332124, 0.8181818181818182, 0.8178506375227687, 0.8175182481751825, 0.8171846435100548, 0.8186813186813187, 0.818348623853211, 0.8198529411764706, 0.8195211786372008, 0.8191881918819188, 0.8207024029574861, 0.8222222222222222, 0.8218923933209648, 0.8234200743494424, 0.8230912476722533, 0.8227611940298507, 0.822429906542056, 0.8220973782771536, 0.8217636022514071, 0.8233082706766918, 0.8226415094339623, 0.8241965973534972, 0.8238636363636364, 0.8235294117647058, 0.8250950570342205, 0.8247619047619048, 0.8263358778625954, 0.8260038240917782, 0.8291746641074856, 0.8285163776493256, 0.8301158301158301, 0.8317214700193424, 0.8333333333333334, 0.8330097087378641, 0.8346303501945526, 0.834307992202729, 0.833984375, 0.8336594911937377, 0.8333333333333334, 0.8330058939096268, 0.8323471400394478, 0.8320158102766798, 0.8316831683168316, 0.8333333333333334, 0.8330019880715706, 0.8346613545816733, 0.8343313373253493, 0.836, 0.8356713426853707, 0.8353413654618473, 0.8350100603621731, 0.8346774193548387, 0.8343434343434344, 0.8340080971659919, 0.8336713995943205, 0.8329938900203666, 0.8326530612244898, 0.8343558282208589, 0.8360655737704918, 0.837782340862423, 0.8374485596707819, 0.8371134020618557, 0.8367768595041323, 0.8364389233954451, 0.8360995850622407, 0.8357588357588358, 0.8354166666666667, 0.8350730688935282, 0.8347280334728033, 0.8364779874213837, 0.8382352941176471, 0.8378947368421052, 0.8375527426160337, 0.8372093023255814, 0.836864406779661, 0.8365180467091295, 0.8382978723404255, 0.837953091684435, 0.8376068376068376, 0.8372591006423983, 0.8390557939914163, 0.8387096774193549, 0.8405172413793104, 0.8401727861771058, 0.841991341991342, 0.8438177874186551, 0.8434782608695652, 0.8453159041394336, 0.8449781659388647, 0.8446389496717724, 0.8464912280701754, 0.8483516483516483, 0.8502202643171806, 0.8498896247240618, 0.8495575221238938, 0.8492239467849224, 0.8488888888888889, 0.8485523385300668, 0.8482142857142857, 0.8478747203579419, 0.8475336322869955, 0.849438202247191, 0.8490990990990991, 0.8487584650112867, 0.8484162895927602, 0.8480725623582767, 0.85, 0.8496583143507973, 0.8493150684931506, 0.851258581235698, 0.8509174311926605, 0.8505747126436781, 0.8502304147465438, 0.8498845265588915, 0.8495370370370371, 0.8491879350348028, 0.8511627906976744, 0.8508158508158508, 0.8504672897196262, 0.8501170960187353, 0.8497652582159625, 0.8494117647058823, 0.8490566037735849, 0.851063829787234, 0.8507109004739336, 0.850356294536817, 0.8523809523809524, 0.8544152744630071, 0.854066985645933, 0.8561151079136691, 0.8581730769230769, 0.8578313253012049, 0.857487922705314, 0.8571428571428571, 0.8567961165048543, 0.8588807785888077, 0.8585365853658536, 0.8606356968215159, 0.8602941176470589, 0.85995085995086, 0.8596059113300493, 0.8592592592592593, 0.8589108910891089, 0.858560794044665, 0.8582089552238806, 0.85785536159601, 0.8575, 0.8596491228070176, 0.8592964824120602, 0.8589420654911839, 0.8585858585858586, 0.8582278481012658, 0.8578680203045685, 0.8600508905852418, 0.8644501278772379, 0.8641025641025641, 0.8663239074550129, 0.865979381443299, 0.8656330749354005, 0.8652849740932642, 0.8649350649350649, 0.8671875, 0.8668407310704961, 0.8691099476439791, 0.868766404199475, 0.868421052631579, 0.8707124010554089, 0.8703703703703703, 0.870026525198939, 0.8696808510638298, 0.8693333333333333, 0.8689839572192514, 0.871313672922252, 0.8709677419354839, 0.8733153638814016, 0.8729729729729729, 0.8726287262872628, 0.8722826086956522, 0.8719346049046321, 0.8715846994535519, 0.8712328767123287, 0.8708791208791209, 0.8732782369146006, 0.8756906077348067, 0.8753462603878116, 0.8777777777777778, 0.8774373259052924, 0.8770949720670391, 0.876750700280112, 0.8764044943820225, 0.8760563380281691, 0.8757062146892656, 0.8753541076487252, 0.875, 0.8774928774928775, 0.8771428571428571, 0.8767908309455588, 0.8764367816091954, 0.8760806916426513, 0.8757225433526011, 0.875, 0.8746355685131195, 0.8771929824561403, 0.8768328445747801, 0.8764705882352941, 0.8761061946902655, 0.8757396449704142, 0.8753709198813057, 0.875, 0.8746268656716418, 0.874251497005988, 0.8768768768768769, 0.8761329305135952, 0.8757575757575757, 0.878419452887538, 0.8780487804878049, 0.8776758409785933, 0.8773006134969326, 0.8769230769230769, 0.8796296296296297, 0.8792569659442725, 0.8819875776397516, 0.8875, 0.8871473354231975, 0.8867924528301887, 0.886435331230284, 0.8860759493670886, 0.8857142857142857, 0.8853503184713376, 0.8849840255591054, 0.8846153846153846, 0.8903225806451613, 0.889967637540453, 0.8896103896103896, 0.8892508143322475, 0.8921568627450981, 0.8950819672131147, 0.8947368421052632, 0.9006622516556292, 0.9036544850498339, 0.9033333333333333, 0.903010033444816, 0.9026845637583892, 0.9023569023569024, 0.902027027027027, 0.9016949152542373, 0.9078498293515358, 0.9075342465753424, 0.9072164948453608, 0.906896551724138, 0.9100346020761245, 0.9097222222222222, 0.916083916083916, 0.9157894736842105, 0.9154929577464789, 0.9151943462897526, 0.9148936170212766, 0.9181494661921709, 0.9178571428571428, 0.921146953405018, 0.920863309352518, 0.9205776173285198, 0.9202898550724637, 0.92, 0.9197080291970803, 0.9194139194139194, 0.9191176470588235, 0.9188191881918819, 0.9185185185185185, 0.9182156133828996, 0.9216417910447762, 0.9213483146067416, 0.9210526315789473, 0.9207547169811321, 0.9204545454545454, 0.9201520912547528, 0.9198473282442748, 0.9195402298850575, 0.9192307692307692, 0.918918918918919, 0.9186046511627907, 0.9182879377431906, 0.921875, 0.9215686274509803, 0.9212598425196851, 0.9209486166007905, 0.9206349206349206, 0.9203187250996016, 0.92, 0.9196787148594378, 0.9193548387096774, 0.9190283400809717, 0.9227642276422764, 0.926530612244898, 0.930327868852459, 0.9297520661157025, 0.9336099585062241, 0.9333333333333333, 0.9330543933054394, 0.9327731092436975, 0.9367088607594937, 0.9364406779661016, 0.9361702127659575, 0.9358974358974359, 0.9356223175965666, 0.9353448275862069, 0.935064935064935, 0.9347826086956522, 0.9344978165938864, 0.9385964912280702, 0.9383259911894273, 0.9380530973451328, 0.9377777777777778, 0.9419642857142857, 0.9417040358744395, 0.9414414414414415, 0.9411764705882353, 0.9409090909090909, 0.9406392694063926, 0.9403669724770642, 0.9400921658986175, 0.9398148148148148, 0.9395348837209302, 0.9392523364485982, 0.9389671361502347, 0.9386792452830188, 0.9383886255924171, 0.9380952380952381, 0.937799043062201, 0.9375, 0.9371980676328503, 0.941747572815534, 0.9414634146341463, 0.9411764705882353, 0.9458128078817734, 0.9455445544554455, 0.9502487562189055, 0.95, 0.949748743718593, 0.9494949494949495, 0.9543147208121827, 0.9540816326530612, 0.9538461538461539, 0.9587628865979382, 0.9637305699481865, 0.9635416666666666, 0.9633507853403142, 0.9631578947368421, 0.9629629629629629, 0.9627659574468085, 0.9625668449197861, 0.9623655913978495, 0.9619565217391305, 0.9617486338797814, 0.9615384615384616, 0.9613259668508287, 0.9611111111111111, 0.9608938547486033, 0.9606741573033708, 0.96045197740113, 0.9602272727272727, 0.96, 0.9597701149425287, 0.9595375722543352, 0.9593023255813954, 0.9590643274853801, 0.9588235294117647, 0.9585798816568047, 0.9583333333333334, 0.9580838323353293, 0.9578313253012049, 0.9575757575757575, 0.9573170731707317, 0.9570552147239264, 0.9567901234567902, 0.9627329192546584, 0.9625, 0.9622641509433962, 0.9620253164556962, 0.9681528662420382, 0.967948717948718, 0.967741935483871, 0.9675324675324676, 0.9673202614379085, 0.9671052631578947, 0.9668874172185431, 0.9666666666666667, 0.9664429530201343, 0.9662162162162162, 0.9659863945578231, 0.9657534246575342, 0.9655172413793104, 0.9652777777777778, 0.965034965034965, 0.9647887323943662, 0.9645390070921985, 0.9642857142857143, 0.9640287769784173, 0.9637681159420289, 0.9635036496350365, 0.9632352941176471, 0.9629629629629629, 0.9626865671641791, 0.9699248120300752, 0.9696969696969697, 0.9694656488549618, 0.9692307692307692, 0.9689922480620154, 0.96875, 0.9763779527559056, 0.9761904761904762, 0.976, 0.9758064516129032, 0.975609756097561, 0.9754098360655737, 0.9752066115702479, 0.975, 0.9747899159663865, 0.9745762711864406, 0.9743589743589743, 0.9741379310344828, 0.9739130434782609, 0.9736842105263158, 0.9734513274336283, 0.9732142857142857, 0.972972972972973, 0.9727272727272728, 0.9724770642201835, 0.9722222222222222, 0.9719626168224299, 0.9716981132075472, 0.9714285714285714, 0.9711538461538461, 0.970873786407767, 0.9705882352941176, 0.9702970297029703, 0.97, 0.9696969696969697, 0.9693877551020408, 0.9690721649484536, 0.96875, 0.968421052631579, 0.9680851063829787, 0.967741935483871, 0.967391304347826, 0.967032967032967, 0.9777777777777777, 0.9775280898876404, 0.9772727272727273, 0.9770114942528736, 0.9767441860465116, 0.9764705882352941, 0.9761904761904762, 0.9759036144578314, 0.975609756097561, 0.9753086419753086, 0.975, 0.9746835443037974, 0.9743589743589743, 0.974025974025974, 0.9736842105263158, 0.9733333333333334, 0.972972972972973, 0.9726027397260274, 0.9722222222222222, 0.971830985915493, 0.9714285714285714, 0.9710144927536232, 0.9705882352941176, 0.9701492537313433, 0.9696969696969697, 0.9692307692307692, 0.96875, 0.9682539682539683, 0.967741935483871, 0.9672131147540983, 0.9666666666666667, 0.9661016949152542, 0.9655172413793104, 0.9649122807017544, 0.9642857142857143, 0.9636363636363636, 0.9629629629629629, 0.9811320754716981, 0.9807692307692307, 0.9803921568627451, 0.98, 0.9795918367346939, 0.9791666666666666, 0.9787234042553191, 0.9782608695652174, 0.9777777777777777, 0.9772727272727273, 0.9767441860465116, 0.975609756097561, 0.975, 0.9743589743589743, 0.9736842105263158, 0.972972972972973, 0.9722222222222222, 0.9714285714285714, 0.9705882352941176, 0.9696969696969697, 0.96875, 0.967741935483871, 0.9666666666666667, 0.9655172413793104, 0.9642857142857143, 0.9629629629629629, 0.9615384615384616, 0.96, 0.9583333333333334, 0.9565217391304348, 0.9545454545454546, 0.9523809523809523, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"y\": [1.0, 0.9984567901234568, 0.9984567901234568, 0.9969135802469136, 0.9969135802469136, 0.9953703703703703, 0.9953703703703703, 0.9938271604938271, 0.9922839506172839, 0.9922839506172839, 0.9922839506172839, 0.9922839506172839, 0.9922839506172839, 0.9922839506172839, 0.9922839506172839, 0.9907407407407407, 0.9907407407407407, 0.9907407407407407, 0.9907407407407407, 0.9891975308641975, 0.9891975308641975, 0.9876543209876543, 0.9876543209876543, 0.9876543209876543, 0.9876543209876543, 0.9876543209876543, 0.9876543209876543, 0.9876543209876543, 0.9876543209876543, 0.9876543209876543, 0.9876543209876543, 0.9876543209876543, 0.9861111111111112, 0.9861111111111112, 0.9861111111111112, 0.9861111111111112, 0.9861111111111112, 0.9861111111111112, 0.9845679012345679, 0.9845679012345679, 0.9845679012345679, 0.9845679012345679, 0.9830246913580247, 0.9814814814814815, 0.9814814814814815, 0.9814814814814815, 0.9814814814814815, 0.9814814814814815, 0.9799382716049383, 0.9799382716049383, 0.9783950617283951, 0.9768518518518519, 0.9768518518518519, 0.9768518518518519, 0.9753086419753086, 0.9753086419753086, 0.9753086419753086, 0.9737654320987654, 0.9722222222222222, 0.9722222222222222, 0.9722222222222222, 0.970679012345679, 0.970679012345679, 0.970679012345679, 0.9691358024691358, 0.9691358024691358, 0.9691358024691358, 0.9691358024691358, 0.9691358024691358, 0.9691358024691358, 0.9675925925925926, 0.9660493827160493, 0.9660493827160493, 0.9645061728395061, 0.9629629629629629, 0.9614197530864198, 0.9614197530864198, 0.9598765432098766, 0.9598765432098766, 0.9598765432098766, 0.9583333333333334, 0.9583333333333334, 0.9583333333333334, 0.9583333333333334, 0.9567901234567902, 0.9567901234567902, 0.9567901234567902, 0.9552469135802469, 0.9552469135802469, 0.9552469135802469, 0.9552469135802469, 0.9537037037037037, 0.9537037037037037, 0.9537037037037037, 0.9537037037037037, 0.9537037037037037, 0.9537037037037037, 0.9537037037037037, 0.9537037037037037, 0.9521604938271605, 0.9521604938271605, 0.9521604938271605, 0.9506172839506173, 0.9506172839506173, 0.9506172839506173, 0.9506172839506173, 0.9490740740740741, 0.9490740740740741, 0.9475308641975309, 0.9459876543209876, 0.9459876543209876, 0.9459876543209876, 0.9459876543209876, 0.9459876543209876, 0.9459876543209876, 0.9444444444444444, 0.9444444444444444, 0.9444444444444444, 0.9444444444444444, 0.9444444444444444, 0.9444444444444444, 0.9444444444444444, 0.9444444444444444, 0.9444444444444444, 0.9444444444444444, 0.9429012345679012, 0.9429012345679012, 0.9429012345679012, 0.9429012345679012, 0.9429012345679012, 0.9429012345679012, 0.941358024691358, 0.941358024691358, 0.941358024691358, 0.9398148148148148, 0.9398148148148148, 0.9398148148148148, 0.9398148148148148, 0.9398148148148148, 0.9398148148148148, 0.9398148148148148, 0.9382716049382716, 0.9367283950617284, 0.9351851851851852, 0.933641975308642, 0.933641975308642, 0.9320987654320988, 0.9320987654320988, 0.9320987654320988, 0.9305555555555556, 0.9290123456790124, 0.9274691358024691, 0.9274691358024691, 0.9243827160493827, 0.9243827160493827, 0.9228395061728395, 0.9212962962962963, 0.9212962962962963, 0.9197530864197531, 0.9197530864197531, 0.9197530864197531, 0.9197530864197531, 0.9197530864197531, 0.9197530864197531, 0.9197530864197531, 0.9197530864197531, 0.9182098765432098, 0.9182098765432098, 0.9166666666666666, 0.9166666666666666, 0.9151234567901234, 0.9135802469135802, 0.9120370370370371, 0.9120370370370371, 0.9104938271604939, 0.9104938271604939, 0.9104938271604939, 0.9089506172839507, 0.9074074074074074, 0.9074074074074074, 0.9074074074074074, 0.9074074074074074, 0.9027777777777778, 0.9012345679012346, 0.9012345679012346, 0.9012345679012346, 0.8996913580246914, 0.8981481481481481, 0.8966049382716049, 0.8966049382716049, 0.8966049382716049, 0.8966049382716049, 0.8966049382716049, 0.8950617283950617, 0.8950617283950617, 0.8950617283950617, 0.8935185185185185, 0.8935185185185185, 0.8935185185185185, 0.8935185185185185, 0.8919753086419753, 0.8919753086419753, 0.8904320987654321, 0.8888888888888888, 0.8873456790123457, 0.8873456790123457, 0.8873456790123457, 0.8873456790123457, 0.8873456790123457, 0.8873456790123457, 0.8873456790123457, 0.8858024691358025, 0.8858024691358025, 0.8858024691358025, 0.8842592592592593, 0.8842592592592593, 0.8842592592592593, 0.8842592592592593, 0.8842592592592593, 0.8827160493827161, 0.8827160493827161, 0.8827160493827161, 0.8827160493827161, 0.8796296296296297, 0.8780864197530864, 0.8765432098765432, 0.8765432098765432, 0.875, 0.875, 0.8734567901234568, 0.8734567901234568, 0.8734567901234568, 0.8734567901234568, 0.8734567901234568, 0.8734567901234568, 0.8734567901234568, 0.8734567901234568, 0.8734567901234568, 0.8734567901234568, 0.8734567901234568, 0.8734567901234568, 0.8719135802469136, 0.8719135802469136, 0.8719135802469136, 0.8703703703703703, 0.8688271604938271, 0.8688271604938271, 0.8672839506172839, 0.8672839506172839, 0.8641975308641975, 0.8626543209876543, 0.8611111111111112, 0.8611111111111112, 0.8611111111111112, 0.8611111111111112, 0.8611111111111112, 0.8611111111111112, 0.8611111111111112, 0.8611111111111112, 0.8611111111111112, 0.8595679012345679, 0.8580246913580247, 0.8564814814814815, 0.8549382716049383, 0.8518518518518519, 0.8503086419753086, 0.8503086419753086, 0.8503086419753086, 0.8487654320987654, 0.8487654320987654, 0.8487654320987654, 0.8472222222222222, 0.845679012345679, 0.845679012345679, 0.8441358024691358, 0.8425925925925926, 0.8410493827160493, 0.8395061728395061, 0.8379629629629629, 0.8364197530864198, 0.8364197530864198, 0.8364197530864198, 0.8333333333333334, 0.8333333333333334, 0.8317901234567902, 0.8317901234567902, 0.8287037037037037, 0.8287037037037037, 0.8240740740740741, 0.8225308641975309, 0.8225308641975309, 0.8209876543209876, 0.8209876543209876, 0.8194444444444444, 0.8179012345679012, 0.8148148148148148, 0.8132716049382716, 0.8132716049382716, 0.8117283950617284, 0.8117283950617284, 0.8101851851851852, 0.808641975308642, 0.8070987654320988, 0.8070987654320988, 0.8070987654320988, 0.8055555555555556, 0.8040123456790124, 0.8040123456790124, 0.8024691358024691, 0.8009259259259259, 0.8009259259259259, 0.7993827160493827, 0.7993827160493827, 0.7978395061728395, 0.7978395061728395, 0.7978395061728395, 0.7962962962962963, 0.7962962962962963, 0.7947530864197531, 0.7932098765432098, 0.7916666666666666, 0.7916666666666666, 0.7916666666666666, 0.7916666666666666, 0.7901234567901234, 0.7885802469135802, 0.7885802469135802, 0.7870370370370371, 0.7870370370370371, 0.7854938271604939, 0.7854938271604939, 0.7839506172839507, 0.7839506172839507, 0.7839506172839507, 0.7839506172839507, 0.7824074074074074, 0.7808641975308642, 0.7808641975308642, 0.779320987654321, 0.7777777777777778, 0.7762345679012346, 0.7762345679012346, 0.7762345679012346, 0.7762345679012346, 0.7746913580246914, 0.7731481481481481, 0.7716049382716049, 0.7716049382716049, 0.7716049382716049, 0.7716049382716049, 0.7700617283950617, 0.7685185185185185, 0.7685185185185185, 0.7669753086419753, 0.7654320987654321, 0.7638888888888888, 0.7623456790123457, 0.7608024691358025, 0.7608024691358025, 0.7608024691358025, 0.7592592592592593, 0.7577160493827161, 0.7577160493827161, 0.7561728395061729, 0.7546296296296297, 0.7546296296296297, 0.7530864197530864, 0.7515432098765432, 0.75, 0.7484567901234568, 0.7469135802469136, 0.7453703703703703, 0.7438271604938271, 0.7438271604938271, 0.7422839506172839, 0.7422839506172839, 0.7407407407407407, 0.7391975308641975, 0.7391975308641975, 0.7376543209876543, 0.7376543209876543, 0.7361111111111112, 0.7345679012345679, 0.7330246913580247, 0.7330246913580247, 0.7330246913580247, 0.7330246913580247, 0.7330246913580247, 0.7330246913580247, 0.7330246913580247, 0.7330246913580247, 0.7314814814814815, 0.7314814814814815, 0.7299382716049383, 0.7283950617283951, 0.7268518518518519, 0.7268518518518519, 0.7268518518518519, 0.7253086419753086, 0.7253086419753086, 0.7253086419753086, 0.7237654320987654, 0.7237654320987654, 0.7222222222222222, 0.7222222222222222, 0.7222222222222222, 0.720679012345679, 0.720679012345679, 0.7191358024691358, 0.7175925925925926, 0.7160493827160493, 0.7145061728395061, 0.7129629629629629, 0.7114197530864198, 0.7098765432098766, 0.7083333333333334, 0.7067901234567902, 0.7052469135802469, 0.7052469135802469, 0.7052469135802469, 0.7037037037037037, 0.7021604938271605, 0.7006172839506173, 0.6990740740740741, 0.6975308641975309, 0.6959876543209876, 0.6959876543209876, 0.6944444444444444, 0.6929012345679012, 0.691358024691358, 0.6898148148148148, 0.6898148148148148, 0.6882716049382716, 0.6882716049382716, 0.6867283950617284, 0.6851851851851852, 0.6851851851851852, 0.6851851851851852, 0.683641975308642, 0.683641975308642, 0.6820987654320988, 0.6805555555555556, 0.6790123456790124, 0.6774691358024691, 0.6759259259259259, 0.6759259259259259, 0.6728395061728395, 0.6728395061728395, 0.6712962962962963, 0.6697530864197531, 0.6697530864197531, 0.6682098765432098, 0.6682098765432098, 0.6666666666666666, 0.6666666666666666, 0.6635802469135802, 0.6635802469135802, 0.6635802469135802, 0.6635802469135802, 0.6620370370370371, 0.6620370370370371, 0.6604938271604939, 0.6589506172839507, 0.6574074074074074, 0.6558641975308642, 0.654320987654321, 0.6512345679012346, 0.6496913580246914, 0.6481481481481481, 0.6481481481481481, 0.6466049382716049, 0.6466049382716049, 0.6450617283950617, 0.6450617283950617, 0.6435185185185185, 0.6419753086419753, 0.6404320987654321, 0.6388888888888888, 0.6373456790123457, 0.6358024691358025, 0.6342592592592593, 0.6311728395061729, 0.6296296296296297, 0.6296296296296297, 0.6296296296296297, 0.6296296296296297, 0.6280864197530864, 0.6265432098765432, 0.625, 0.6234567901234568, 0.6219135802469136, 0.6203703703703703, 0.6188271604938271, 0.6172839506172839, 0.6157407407407407, 0.6157407407407407, 0.6157407407407407, 0.6141975308641975, 0.6126543209876543, 0.6111111111111112, 0.6095679012345679, 0.6080246913580247, 0.6080246913580247, 0.6064814814814815, 0.6049382716049383, 0.6033950617283951, 0.6033950617283951, 0.6018518518518519, 0.6018518518518519, 0.6003086419753086, 0.6003086419753086, 0.6003086419753086, 0.5987654320987654, 0.5987654320987654, 0.5972222222222222, 0.595679012345679, 0.595679012345679, 0.595679012345679, 0.595679012345679, 0.5941358024691358, 0.5925925925925926, 0.5910493827160493, 0.5895061728395061, 0.5879629629629629, 0.5864197530864198, 0.5848765432098766, 0.5833333333333334, 0.5833333333333334, 0.5817901234567902, 0.5802469135802469, 0.5787037037037037, 0.5771604938271605, 0.5771604938271605, 0.5756172839506173, 0.5740740740740741, 0.5740740740740741, 0.5725308641975309, 0.5709876543209876, 0.5694444444444444, 0.5679012345679012, 0.566358024691358, 0.5648148148148148, 0.5648148148148148, 0.5632716049382716, 0.5617283950617284, 0.5601851851851852, 0.558641975308642, 0.5570987654320988, 0.5555555555555556, 0.5555555555555556, 0.5540123456790124, 0.5524691358024691, 0.5524691358024691, 0.5524691358024691, 0.5509259259259259, 0.5509259259259259, 0.5509259259259259, 0.5493827160493827, 0.5478395061728395, 0.5462962962962963, 0.5447530864197531, 0.5447530864197531, 0.5432098765432098, 0.5432098765432098, 0.5416666666666666, 0.5401234567901234, 0.5385802469135802, 0.5370370370370371, 0.5354938271604939, 0.5339506172839507, 0.5324074074074074, 0.5308641975308642, 0.529320987654321, 0.529320987654321, 0.5277777777777778, 0.5262345679012346, 0.5246913580246914, 0.5231481481481481, 0.5216049382716049, 0.5216049382716049, 0.5216049382716049, 0.5200617283950617, 0.5200617283950617, 0.5185185185185185, 0.5169753086419753, 0.5154320987654321, 0.5138888888888888, 0.5138888888888888, 0.5123456790123457, 0.5123456790123457, 0.5108024691358025, 0.5092592592592593, 0.5092592592592593, 0.5077160493827161, 0.5061728395061729, 0.5046296296296297, 0.5030864197530864, 0.5015432098765432, 0.5015432098765432, 0.5, 0.5, 0.4984567901234568, 0.49691358024691357, 0.49537037037037035, 0.49382716049382713, 0.49228395061728397, 0.49074074074074076, 0.48919753086419754, 0.48919753086419754, 0.48919753086419754, 0.4876543209876543, 0.4876543209876543, 0.4861111111111111, 0.4845679012345679, 0.48302469135802467, 0.48148148148148145, 0.4799382716049383, 0.4783950617283951, 0.47685185185185186, 0.47530864197530864, 0.47530864197530864, 0.4737654320987654, 0.4722222222222222, 0.470679012345679, 0.4691358024691358, 0.4675925925925926, 0.4645061728395062, 0.46296296296296297, 0.46296296296296297, 0.46141975308641975, 0.45987654320987653, 0.4583333333333333, 0.4567901234567901, 0.45524691358024694, 0.4537037037037037, 0.4521604938271605, 0.4506172839506173, 0.4506172839506173, 0.44753086419753085, 0.44598765432098764, 0.44598765432098764, 0.4444444444444444, 0.44290123456790126, 0.44135802469135804, 0.4398148148148148, 0.4398148148148148, 0.4382716049382716, 0.4382716049382716, 0.4382716049382716, 0.4367283950617284, 0.4351851851851852, 0.43364197530864196, 0.43209876543209874, 0.4305555555555556, 0.42901234567901236, 0.42746913580246915, 0.42592592592592593, 0.42592592592592593, 0.4243827160493827, 0.4228395061728395, 0.4212962962962963, 0.4212962962962963, 0.4212962962962963, 0.41975308641975306, 0.41975308641975306, 0.41975308641975306, 0.4182098765432099, 0.4166666666666667, 0.41512345679012347, 0.41358024691358025, 0.41203703703703703, 0.4104938271604938, 0.4104938271604938, 0.4089506172839506, 0.4074074074074074, 0.4058641975308642, 0.4058641975308642, 0.404320987654321, 0.404320987654321, 0.4027777777777778, 0.4012345679012346, 0.39969135802469136, 0.39814814814814814, 0.39814814814814814, 0.3966049382716049, 0.3966049382716049, 0.3950617283950617, 0.39351851851851855, 0.39197530864197533, 0.3904320987654321, 0.3888888888888889, 0.3873456790123457, 0.38580246913580246, 0.38425925925925924, 0.38271604938271603, 0.38117283950617287, 0.38117283950617287, 0.37962962962962965, 0.37808641975308643, 0.3765432098765432, 0.375, 0.3734567901234568, 0.37191358024691357, 0.37037037037037035, 0.36882716049382713, 0.36728395061728397, 0.36574074074074076, 0.36419753086419754, 0.36419753086419754, 0.3626543209876543, 0.3611111111111111, 0.3595679012345679, 0.35802469135802467, 0.35648148148148145, 0.3549382716049383, 0.3533950617283951, 0.35185185185185186, 0.35030864197530864, 0.35030864197530864, 0.35030864197530864, 0.35030864197530864, 0.3472222222222222, 0.3472222222222222, 0.345679012345679, 0.3441358024691358, 0.3425925925925926, 0.3425925925925926, 0.3410493827160494, 0.3395061728395062, 0.33796296296296297, 0.33641975308641975, 0.33487654320987653, 0.3333333333333333, 0.3317901234567901, 0.33024691358024694, 0.33024691358024694, 0.3287037037037037, 0.3271604938271605, 0.3256172839506173, 0.3256172839506173, 0.32407407407407407, 0.32253086419753085, 0.32098765432098764, 0.3194444444444444, 0.31790123456790126, 0.31635802469135804, 0.3148148148148148, 0.3132716049382716, 0.3117283950617284, 0.3101851851851852, 0.30864197530864196, 0.30709876543209874, 0.3055555555555556, 0.30401234567901236, 0.30246913580246915, 0.30092592592592593, 0.2993827160493827, 0.2993827160493827, 0.2978395061728395, 0.2962962962962963, 0.2962962962962963, 0.29475308641975306, 0.29475308641975306, 0.2932098765432099, 0.2916666666666667, 0.29012345679012347, 0.29012345679012347, 0.28858024691358025, 0.28703703703703703, 0.28703703703703703, 0.28703703703703703, 0.2854938271604938, 0.2839506172839506, 0.2824074074074074, 0.2808641975308642, 0.279320987654321, 0.2777777777777778, 0.2762345679012346, 0.27314814814814814, 0.2716049382716049, 0.2700617283950617, 0.26851851851851855, 0.26697530864197533, 0.2654320987654321, 0.2638888888888889, 0.2623456790123457, 0.26080246913580246, 0.25925925925925924, 0.25771604938271603, 0.25617283950617287, 0.25462962962962965, 0.25308641975308643, 0.2515432098765432, 0.25, 0.24845679012345678, 0.24691358024691357, 0.24537037037037038, 0.24382716049382716, 0.24228395061728394, 0.24074074074074073, 0.23919753086419754, 0.23919753086419754, 0.23765432098765432, 0.2361111111111111, 0.2345679012345679, 0.2345679012345679, 0.2330246913580247, 0.23148148148148148, 0.22993827160493827, 0.22839506172839505, 0.22685185185185186, 0.22530864197530864, 0.22376543209876543, 0.2222222222222222, 0.22067901234567902, 0.2191358024691358, 0.2175925925925926, 0.21604938271604937, 0.21450617283950618, 0.21296296296296297, 0.21141975308641975, 0.20987654320987653, 0.20833333333333334, 0.20679012345679013, 0.2052469135802469, 0.2037037037037037, 0.2021604938271605, 0.2006172839506173, 0.19907407407407407, 0.19907407407407407, 0.19753086419753085, 0.19598765432098766, 0.19444444444444445, 0.19290123456790123, 0.19135802469135801, 0.19135802469135801, 0.18981481481481483, 0.1882716049382716, 0.1867283950617284, 0.18518518518518517, 0.18364197530864199, 0.18209876543209877, 0.18055555555555555, 0.17901234567901234, 0.17746913580246915, 0.17592592592592593, 0.1743827160493827, 0.1728395061728395, 0.1712962962962963, 0.1697530864197531, 0.16820987654320987, 0.16666666666666666, 0.16512345679012347, 0.16358024691358025, 0.16203703703703703, 0.16049382716049382, 0.15895061728395063, 0.1574074074074074, 0.1558641975308642, 0.15432098765432098, 0.1527777777777778, 0.15123456790123457, 0.14969135802469136, 0.14814814814814814, 0.14660493827160495, 0.14506172839506173, 0.14351851851851852, 0.1419753086419753, 0.1404320987654321, 0.1388888888888889, 0.13734567901234568, 0.13580246913580246, 0.13580246913580246, 0.13425925925925927, 0.13271604938271606, 0.13117283950617284, 0.12962962962962962, 0.12808641975308643, 0.12654320987654322, 0.125, 0.12345679012345678, 0.12191358024691358, 0.12037037037037036, 0.11882716049382716, 0.11728395061728394, 0.11574074074074074, 0.11419753086419752, 0.11265432098765432, 0.1111111111111111, 0.1095679012345679, 0.10802469135802469, 0.10648148148148148, 0.10493827160493827, 0.10339506172839506, 0.10185185185185185, 0.10030864197530864, 0.09876543209876543, 0.09722222222222222, 0.09567901234567901, 0.0941358024691358, 0.09259259259259259, 0.09104938271604938, 0.08950617283950617, 0.08796296296296297, 0.08641975308641975, 0.08487654320987655, 0.08333333333333333, 0.08179012345679013, 0.08024691358024691, 0.08024691358024691, 0.0787037037037037, 0.07716049382716049, 0.07561728395061729, 0.07407407407407407, 0.07253086419753087, 0.07098765432098765, 0.06944444444444445, 0.06790123456790123, 0.06635802469135803, 0.06481481481481481, 0.06172839506172839, 0.06018518518518518, 0.05864197530864197, 0.05709876543209876, 0.05555555555555555, 0.05401234567901234, 0.05246913580246913, 0.05092592592592592, 0.04938271604938271, 0.047839506172839504, 0.046296296296296294, 0.044753086419753084, 0.043209876543209874, 0.041666666666666664, 0.040123456790123455, 0.038580246913580245, 0.037037037037037035, 0.035493827160493825, 0.033950617283950615, 0.032407407407407406, 0.030864197530864196, 0.030864197530864196, 0.029320987654320986, 0.027777777777777776, 0.026234567901234566, 0.024691358024691357, 0.023148148148148147, 0.021604938271604937, 0.020061728395061727, 0.018518518518518517, 0.016975308641975308, 0.015432098765432098, 0.013888888888888888, 0.012345679012345678, 0.010802469135802469, 0.009259259259259259, 0.007716049382716049, 0.006172839506172839, 0.004629629629629629, 0.0030864197530864196, 0.0015432098765432098, 0.0]}], \"layout\": {\"showlegend\": true, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"Recall\"}}, \"yaxis\": {\"title\": {\"text\": \"Precision\"}}}}, \"insights\": [], \"additionalGraphs\": [], \"alerts\": [], \"tabs\": []}, {\"type\": \"big_table\", \"title\": \"Reference: Precision-Recall Table\", \"size\": 1, \"details\": \"\", \"alertsPosition\": null, \"alertStats\": null, \"params\": {\"rowsPerPage\": 21, \"columns\": [{\"title\": \"Top(%)\", \"field\": \"f1\", \"sort\": \"asc\"}, {\"title\": \"Count\", \"field\": \"f2\"}, {\"title\": \"Prob\", \"field\": \"f3\"}, {\"title\": \"TP\", \"field\": \"f4\"}, {\"title\": \"FP\", \"field\": \"f5\"}, {\"title\": \"Precision\", \"field\": \"f6\"}, {\"title\": \"Recall\", \"field\": \"f7\"}], \"data\": [{\"f1\": 5.0, \"f2\": 50, \"f3\": 0.94, \"f4\": 47, \"f5\": 3, \"f6\": 94.0, \"f7\": 7.3}, {\"f1\": 10.0, \"f2\": 100, \"f3\": 0.91, \"f4\": 96, \"f5\": 4, \"f6\": 96.0, \"f7\": 14.9}, {\"f1\": 15.0, \"f2\": 150, \"f3\": 0.89, \"f4\": 145, \"f5\": 5, \"f6\": 96.7, \"f7\": 22.5}, {\"f1\": 20.0, \"f2\": 200, \"f3\": 0.87, \"f4\": 188, \"f5\": 12, \"f6\": 94.0, \"f7\": 29.1}, {\"f1\": 25.0, \"f2\": 250, \"f3\": 0.85, \"f4\": 228, \"f5\": 22, \"f6\": 91.2, \"f7\": 35.3}, {\"f1\": 30.0, \"f2\": 300, \"f3\": 0.81, \"f4\": 269, \"f5\": 31, \"f6\": 89.7, \"f7\": 41.7}, {\"f1\": 35.0, \"f2\": 350, \"f3\": 0.78, \"f4\": 313, \"f5\": 37, \"f6\": 89.4, \"f7\": 48.5}, {\"f1\": 40.0, \"f2\": 400, \"f3\": 0.74, \"f4\": 349, \"f5\": 51, \"f6\": 87.2, \"f7\": 54.1}, {\"f1\": 45.0, \"f2\": 450, \"f3\": 0.7, \"f4\": 384, \"f5\": 66, \"f6\": 85.3, \"f7\": 59.5}, {\"f1\": 50.0, \"f2\": 500, \"f3\": 0.67, \"f4\": 417, \"f5\": 83, \"f6\": 83.4, \"f7\": 64.7}, {\"f1\": 55.0, \"f2\": 550, \"f3\": 0.63, \"f4\": 455, \"f5\": 95, \"f6\": 82.7, \"f7\": 70.5}, {\"f1\": 60.0, \"f2\": 600, \"f3\": 0.59, \"f4\": 479, \"f5\": 121, \"f6\": 79.8, \"f7\": 74.3}, {\"f1\": 65.0, \"f2\": 650, \"f3\": 0.56, \"f4\": 511, \"f5\": 139, \"f6\": 78.6, \"f7\": 79.2}, {\"f1\": 70.0, \"f2\": 700, \"f3\": 0.51, \"f4\": 536, \"f5\": 164, \"f6\": 76.6, \"f7\": 83.1}, {\"f1\": 75.0, \"f2\": 750, \"f3\": 0.47, \"f4\": 560, \"f5\": 190, \"f6\": 74.7, \"f7\": 86.8}, {\"f1\": 80.0, \"f2\": 800, \"f3\": 0.43, \"f4\": 580, \"f5\": 220, \"f6\": 72.5, \"f7\": 89.9}, {\"f1\": 85.0, \"f2\": 850, \"f3\": 0.38, \"f4\": 599, \"f5\": 251, \"f6\": 70.5, \"f7\": 92.9}, {\"f1\": 90.0, \"f2\": 900, \"f3\": 0.3, \"f4\": 620, \"f5\": 280, \"f6\": 68.9, \"f7\": 96.1}, {\"f1\": 95.0, \"f2\": 950, \"f3\": 0.2, \"f4\": 631, \"f5\": 319, \"f6\": 66.4, \"f7\": 97.8}, {\"f1\": 100.0, \"f2\": 1000, \"f3\": 0.03, \"f4\": 645, \"f5\": 355, \"f6\": 64.5, \"f7\": 100.0}]}, \"insights\": [], \"additionalGraphs\": [], \"alerts\": [], \"tabs\": []}, {\"type\": \"big_table\", \"title\": \"Current: Precision-Recall Table\", \"size\": 1, \"details\": \"\", \"alertsPosition\": null, \"alertStats\": null, \"params\": {\"rowsPerPage\": 21, \"columns\": [{\"title\": \"Top(%)\", \"field\": \"f1\", \"sort\": \"asc\"}, {\"title\": \"Count\", \"field\": \"f2\"}, {\"title\": \"Prob\", \"field\": \"f3\"}, {\"title\": \"TP\", \"field\": \"f4\"}, {\"title\": \"FP\", \"field\": \"f5\"}, {\"title\": \"Precision\", \"field\": \"f6\"}, {\"title\": \"Recall\", \"field\": \"f7\"}], \"data\": [{\"f1\": 5.0, \"f2\": 50, \"f3\": 0.95, \"f4\": 49, \"f5\": 1, \"f6\": 98.0, \"f7\": 7.6}, {\"f1\": 10.0, \"f2\": 100, \"f3\": 0.92, \"f4\": 97, \"f5\": 3, \"f6\": 97.0, \"f7\": 15.0}, {\"f1\": 15.0, \"f2\": 150, \"f3\": 0.9, \"f4\": 145, \"f5\": 5, \"f6\": 96.7, \"f7\": 22.4}, {\"f1\": 20.0, \"f2\": 200, \"f3\": 0.87, \"f4\": 190, \"f5\": 10, \"f6\": 95.0, \"f7\": 29.3}, {\"f1\": 25.0, \"f2\": 250, \"f3\": 0.84, \"f4\": 230, \"f5\": 20, \"f6\": 92.0, \"f7\": 35.5}, {\"f1\": 30.0, \"f2\": 300, \"f3\": 0.82, \"f4\": 271, \"f5\": 29, \"f6\": 90.3, \"f7\": 41.8}, {\"f1\": 35.0, \"f2\": 350, \"f3\": 0.79, \"f4\": 307, \"f5\": 43, \"f6\": 87.7, \"f7\": 47.4}, {\"f1\": 40.0, \"f2\": 400, \"f3\": 0.76, \"f4\": 343, \"f5\": 57, \"f6\": 85.8, \"f7\": 52.9}, {\"f1\": 45.0, \"f2\": 450, \"f3\": 0.71, \"f4\": 382, \"f5\": 68, \"f6\": 84.9, \"f7\": 59.0}, {\"f1\": 50.0, \"f2\": 500, \"f3\": 0.67, \"f4\": 418, \"f5\": 82, \"f6\": 83.6, \"f7\": 64.5}, {\"f1\": 55.0, \"f2\": 550, \"f3\": 0.64, \"f4\": 450, \"f5\": 100, \"f6\": 81.8, \"f7\": 69.4}, {\"f1\": 60.0, \"f2\": 600, \"f3\": 0.6, \"f4\": 479, \"f5\": 121, \"f6\": 79.8, \"f7\": 73.9}, {\"f1\": 65.0, \"f2\": 650, \"f3\": 0.56, \"f4\": 509, \"f5\": 141, \"f6\": 78.3, \"f7\": 78.5}, {\"f1\": 70.0, \"f2\": 700, \"f3\": 0.53, \"f4\": 539, \"f5\": 161, \"f6\": 77.0, \"f7\": 83.2}, {\"f1\": 75.0, \"f2\": 750, \"f3\": 0.5, \"f4\": 566, \"f5\": 184, \"f6\": 75.5, \"f7\": 87.3}, {\"f1\": 80.0, \"f2\": 800, \"f3\": 0.43, \"f4\": 581, \"f5\": 219, \"f6\": 72.6, \"f7\": 89.7}, {\"f1\": 85.0, \"f2\": 850, \"f3\": 0.39, \"f4\": 604, \"f5\": 246, \"f6\": 71.1, \"f7\": 93.2}, {\"f1\": 90.0, \"f2\": 900, \"f3\": 0.33, \"f4\": 618, \"f5\": 282, \"f6\": 68.7, \"f7\": 95.4}, {\"f1\": 95.0, \"f2\": 950, \"f3\": 0.23, \"f4\": 635, \"f5\": 315, \"f6\": 66.8, \"f7\": 98.0}, {\"f1\": 100.0, \"f2\": 1000, \"f3\": 0.01, \"f4\": 648, \"f5\": 352, \"f6\": 64.8, \"f7\": 100.0}]}, \"insights\": [], \"additionalGraphs\": [], \"alerts\": [], \"tabs\": []}, {\"type\": \"big_table\", \"title\": \"Classification Quality By Feature\", \"size\": 2, \"details\": \"\", \"alertsPosition\": null, \"alertStats\": null, \"params\": {\"rowsPerPage\": 10, \"columns\": [{\"title\": \"Feature\", \"field\": \"f1\"}], \"data\": [{\"details\": {\"parts\": [{\"title\": \"All\", \"id\": \"All_fixed.acidity\"}, {\"title\": \"good\", \"id\": \"fixed.acidity_good\"}, {\"title\": \"bad\", \"id\": \"fixed.acidity_bad\"}], \"insights\": []}, \"f1\": \"fixed.acidity\"}, {\"details\": {\"parts\": [{\"title\": \"All\", \"id\": \"All_volatile.acidity\"}, {\"title\": \"good\", \"id\": \"volatile.acidity_good\"}, {\"title\": \"bad\", \"id\": \"volatile.acidity_bad\"}], \"insights\": []}, \"f1\": \"volatile.acidity\"}, {\"details\": {\"parts\": [{\"title\": \"All\", \"id\": \"All_citric.acid\"}, {\"title\": \"good\", \"id\": \"citric.acid_good\"}, {\"title\": \"bad\", \"id\": \"citric.acid_bad\"}], \"insights\": []}, \"f1\": \"citric.acid\"}, {\"details\": {\"parts\": [{\"title\": \"All\", \"id\": \"All_residual.sugar\"}, {\"title\": \"good\", \"id\": \"residual.sugar_good\"}, {\"title\": \"bad\", \"id\": \"residual.sugar_bad\"}], \"insights\": []}, \"f1\": \"residual.sugar\"}, {\"details\": {\"parts\": [{\"title\": \"All\", \"id\": \"All_chlorides\"}, {\"title\": \"good\", \"id\": \"chlorides_good\"}, {\"title\": \"bad\", \"id\": \"chlorides_bad\"}], \"insights\": []}, \"f1\": \"chlorides\"}, {\"details\": {\"parts\": [{\"title\": \"All\", \"id\": \"All_free.sulfur.dioxide\"}, {\"title\": \"good\", \"id\": \"free.sulfur.dioxide_good\"}, {\"title\": \"bad\", \"id\": \"free.sulfur.dioxide_bad\"}], \"insights\": []}, \"f1\": \"free.sulfur.dioxide\"}, {\"details\": {\"parts\": [{\"title\": \"All\", \"id\": \"All_total.sulfur.dioxide\"}, {\"title\": \"good\", \"id\": \"total.sulfur.dioxide_good\"}, {\"title\": \"bad\", \"id\": \"total.sulfur.dioxide_bad\"}], \"insights\": []}, \"f1\": \"total.sulfur.dioxide\"}, {\"details\": {\"parts\": [{\"title\": \"All\", \"id\": \"All_density\"}, {\"title\": \"good\", \"id\": \"density_good\"}, {\"title\": \"bad\", \"id\": \"density_bad\"}], \"insights\": []}, \"f1\": \"density\"}, {\"details\": {\"parts\": [{\"title\": \"All\", \"id\": \"All_pH\"}, {\"title\": \"good\", \"id\": \"pH_good\"}, {\"title\": \"bad\", \"id\": \"pH_bad\"}], \"insights\": []}, \"f1\": \"pH\"}, {\"details\": {\"parts\": [{\"title\": \"All\", \"id\": \"All_sulphates\"}, {\"title\": \"good\", \"id\": \"sulphates_good\"}, {\"title\": \"bad\", \"id\": \"sulphates_bad\"}], \"insights\": []}, \"f1\": \"sulphates\"}, {\"details\": {\"parts\": [{\"title\": \"All\", \"id\": \"All_alcohol\"}, {\"title\": \"good\", \"id\": \"alcohol_good\"}, {\"title\": \"bad\", \"id\": \"alcohol_bad\"}], \"insights\": []}, \"f1\": \"alcohol\"}]}, \"insights\": [], \"additionalGraphs\": [{\"id\": \"All_fixed.acidity\", \"params\": {\"data\": [{\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Reference<br>fixed.acidity=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [7.0, 7.3, 7.5, 6.3, 6.3, 7.0, 6.5, 5.6, 6.9, 5.8, 8.1, 7.7, 6.2, 7.3, 6.8, 6.6, 7.3, 15.6, 5.2, 6.2, 8.0, 7.7, 6.3, 7.3, 9.0, 6.0, 5.3, 7.8, 7.1, 6.2, 6.3, 7.3, 7.2, 5.8, 7.2, 7.7, 7.7, 5.9, 6.7, 6.5, 6.0, 7.2, 7.7, 7.4, 8.1, 6.8, 8.2, 6.2, 9.4, 6.8, 7.0, 6.6, 6.0, 6.3, 14.2, 6.8, 5.9, 6.0, 7.6, 5.9, 11.1, 5.9, 7.1, 6.6, 12.6, 8.3, 6.7, 7.4, 7.0, 6.7, 7.0, 6.2, 6.4, 7.9, 7.4, 7.0, 7.9, 6.5, 8.2, 6.9, 5.7, 6.3, 8.3, 9.1, 8.0, 7.8, 7.3, 8.6, 6.9, 10.8, 6.4, 7.7, 8.8, 6.6, 6.1, 5.0, 6.3, 5.9, 6.6, 7.3, 8.3, 7.3, 9.9, 7.5, 7.2, 6.4, 5.2, 7.9, 6.7, 6.7, 8.0, 7.9, 6.9, 7.4, 5.6, 6.7, 5.9, 6.0, 7.1, 7.2, 6.8, 6.3, 9.2, 7.8, 8.1, 7.5, 6.8, 6.7, 6.9, 7.3, 7.0, 5.0, 7.3, 8.2, 7.7, 5.0, 10.1, 6.6, 7.1, 9.5, 8.0, 5.9, 6.8, 6.9, 10.8, 7.4, 7.2, 5.8, 6.7, 7.3, 7.0, 12.0, 6.7, 6.2, 6.6, 6.4, 5.9, 7.8, 7.4, 6.1, 5.9, 7.5, 6.4, 7.9, 6.1, 7.2, 7.1, 6.3, 7.8, 5.2, 10.2, 7.8, 6.2, 8.5, 7.6, 6.4, 7.8, 6.0, 6.2, 7.4, 6.0, 6.8, 7.9, 6.1, 6.2, 5.6, 5.5, 11.1, 5.9, 6.4, 6.6, 5.6, 5.0, 7.0, 7.1, 7.8, 6.1, 8.4, 6.8, 8.5, 7.7, 6.4, 7.1, 8.4, 6.7, 8.2, 8.2, 8.1, 7.3, 8.0, 8.2, 6.5, 6.5, 6.0, 6.9, 6.6, 6.6, 7.0, 7.5, 6.6, 6.6, 6.6, 7.0, 8.3, 7.1, 7.0, 7.1, 7.1, 7.7, 6.1, 6.0, 6.6, 6.3, 6.9, 6.7, 4.8, 6.4, 6.6, 6.3, 7.1, 8.9, 7.2, 7.2, 6.4, 7.0, 7.0, 7.7, 6.5, 6.3, 5.8, 8.0, 7.4, 10.8, 10.1, 10.7, 6.4, 6.5, 6.6, 7.3, 9.8, 7.4, 6.3, 6.1, 7.2, 7.0, 6.2, 7.3, 9.1, 6.5, 5.2, 6.0, 6.4, 6.7, 6.0, 5.5, 6.7, 6.7, 9.1, 5.6, 7.1, 7.8, 7.6, 5.1, 5.8, 8.0, 10.8, 6.2, 7.8, 7.7, 7.3, 5.6, 7.9, 8.3, 6.2, 6.0, 6.1, 7.1, 6.7, 5.7, 6.8, 6.6, 5.9, 5.7, 6.0, 8.4, 7.2, 8.5, 7.1, 7.2, 6.6, 7.2, 7.3, 5.9, 6.1, 7.1, 13.4, 8.3, 6.0, 6.4, 5.9, 5.8, 6.1, 6.8, 6.3, 7.3, 7.0, 7.4, 8.8, 7.4, 6.4, 5.1, 8.1, 11.4, 5.6, 6.8, 6.9, 7.0, 7.2, 6.2, 6.8, 6.5, 8.8, 5.1, 6.5, 7.2, 8.1, 7.1, 8.2, 5.8, 7.3, 6.8, 7.7, 6.7, 8.3, 6.8, 6.3, 8.4, 6.2, 11.5, 6.9, 7.4, 6.2, 8.9, 7.2, 7.2, 6.6, 6.2, 6.2, 9.2, 7.2, 5.8, 5.6, 7.7, 9.2, 6.6, 7.0, 5.9, 8.6, 7.4, 9.0, 10.0, 7.5, 8.3, 6.5, 6.9, 7.5, 10.2, 6.1, 7.7, 6.8, 6.1, 6.0, 6.7, 6.3, 7.0, 6.0, 7.7, 6.8, 5.0, 8.0, 7.4, 6.7, 6.1, 7.0, 7.4, 5.7, 6.8, 7.4, 6.1, 6.5, 6.6, 6.4, 5.7, 6.6, 7.1, 7.0, 6.3, 7.1, 7.7, 7.5, 7.5, 6.9, 5.9, 7.0, 6.1, 5.8, 8.0, 7.4, 6.7, 8.0, 7.7, 6.6, 6.4, 5.5, 6.9, 4.4, 8.3, 6.3, 6.9, 11.1, 6.4, 6.8, 7.4, 7.5, 6.9, 6.3, 7.2, 6.7, 10.5, 5.9, 6.8, 6.1, 5.8, 7.3, 7.4, 12.0, 6.4, 7.1, 6.4, 6.2, 11.1, 7.6, 11.5, 8.0, 6.4, 7.3, 6.2, 6.7, 7.3, 8.9, 8.3, 6.2, 6.5, 8.7, 5.7, 6.5, 7.0, 6.7, 7.5, 7.3, 6.2, 6.5, 6.6, 6.3, 6.5, 7.7, 7.5, 6.6, 5.7, 6.0, 7.3, 7.9, 7.0, 6.5, 7.3, 8.6, 6.9, 6.5, 7.3, 7.4, 6.9, 7.0, 5.3, 7.2, 7.9, 6.7, 5.1, 6.7, 6.5, 6.4, 6.9, 7.8, 7.1, 7.5, 6.5, 6.3, 6.7, 6.6, 6.7, 6.8, 8.4, 6.0, 8.1, 6.5, 7.2, 7.1, 8.6, 8.0, 6.2, 6.5, 8.9, 6.9, 5.8, 6.0, 6.8, 7.9, 6.8, 7.1, 6.8, 7.0, 6.8, 6.0, 7.9, 7.9, 6.5, 6.0, 10.1, 7.0, 6.8, 6.3, 7.2, 7.7, 6.6, 8.2, 6.4, 6.8, 7.2, 7.0, 7.8, 6.6, 6.7, 7.6, 5.6, 6.4, 5.1, 7.7, 7.1, 8.6, 6.1, 8.0, 6.2, 7.6, 7.2, 7.1, 6.5, 6.3, 7.2, 6.4, 7.9, 7.8, 7.5, 6.4, 5.9, 6.0, 7.0, 6.9, 5.4, 6.8, 6.0, 6.8, 8.6, 6.7, 6.3, 6.0, 5.0, 7.2, 5.6, 8.0, 5.6, 7.8, 7.4, 7.1, 6.4, 7.0, 9.4, 6.0, 5.9, 7.1, 6.3, 7.3, 6.4, 10.5, 8.1, 8.1, 6.4, 8.8, 6.1, 7.0, 7.2, 9.2, 6.6, 6.9, 9.7, 8.8, 7.8, 7.8, 7.3, 6.7, 6.6, 6.8, 7.15, 8.0, 7.4, 6.5, 5.3, 7.1, 10.8, 6.6, 7.0, 7.2, 7.5, 10.7, 5.9, 6.8, 6.9], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Current<br>fixed.acidity=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [6.4, 7.2, 6.8, 6.8, 7.9, 7.4, 7.3, 6.6, 6.5, 5.8, 10.0, 6.9, 6.6, 5.3, 4.4, 7.9, 6.9, 8.5, 9.1, 7.6, 7.6, 7.4, 8.3, 6.7, 7.8, 7.1, 6.4, 6.0, 7.6, 6.9, 7.3, 6.6, 6.9, 5.1, 5.8, 6.6, 6.5, 6.4, 6.8, 7.2, 6.7, 6.0, 7.6, 7.3, 8.3, 7.8, 7.8, 6.8, 7.9, 6.8, 8.0, 8.0, 6.8, 9.2, 6.9, 8.1, 10.7, 5.2, 6.6, 9.1, 6.4, 6.8, 6.6, 8.0, 6.7, 6.0, 7.7, 7.7, 6.0, 7.5, 7.1, 6.7, 7.7, 5.3, 8.0, 6.3, 6.1, 6.6, 7.7, 9.0, 6.4, 7.3, 7.5, 8.3, 7.6, 8.4, 9.3, 6.5, 6.9, 6.3, 6.3, 8.4, 5.6, 6.6, 6.0, 7.3, 11.6, 7.6, 11.8, 5.9, 7.2, 6.4, 6.9, 6.9, 7.1, 6.6, 7.9, 6.7, 6.2, 6.7, 6.7, 7.9, 6.9, 6.1, 6.4, 6.4, 5.0, 6.6, 6.9, 9.8, 5.0, 5.4, 6.5, 6.2, 8.2, 9.7, 7.8, 6.1, 9.3, 6.8, 6.2, 7.4, 6.1, 8.3, 6.2, 8.3, 9.2, 8.3, 6.8, 7.3, 7.2, 6.4, 11.9, 6.6, 6.2, 5.8, 8.4, 8.9, 7.1, 8.3, 7.0, 7.6, 7.5, 7.2, 6.5, 6.8, 9.9, 7.2, 5.9, 7.2, 7.1, 7.5, 6.2, 6.3, 12.6, 8.6, 8.9, 7.9, 8.3, 6.9, 6.3, 8.6, 7.2, 8.5, 5.8, 7.0, 6.1, 6.5, 6.0, 8.3, 7.7, 5.8, 6.9, 11.8, 7.0, 6.3, 9.1, 5.6, 7.0, 6.9, 7.8, 6.6, 6.5, 7.0, 6.2, 7.7, 6.7, 5.1, 8.4, 6.5, 7.2, 7.5, 5.8, 7.7, 6.6, 6.7, 8.5, 10.4, 6.6, 6.8, 5.9, 5.8, 6.7, 6.2, 13.2, 7.0, 5.9, 6.0, 5.6, 6.8, 7.0, 6.2, 7.8, 6.3, 7.3, 7.3, 6.0, 7.4, 8.7, 7.3, 6.9, 8.1, 6.9, 7.0, 10.3, 8.4, 6.6, 6.8, 7.0, 7.4, 6.8, 8.1, 8.4, 6.4, 7.1, 10.4, 7.3, 7.4, 7.5, 9.4, 7.9, 7.6, 8.1, 6.5, 7.0, 6.7, 7.5, 6.6, 6.7, 5.8, 6.8, 6.9, 7.5, 6.4, 7.3, 7.4, 7.6, 6.1, 6.8, 7.6, 6.8, 6.3, 5.4, 11.5, 6.7, 7.4, 6.9, 6.8, 5.6, 5.9, 8.4, 7.9, 6.0, 5.8, 7.0, 10.0, 6.1, 6.2, 5.3, 6.1, 11.5, 10.3, 6.9, 8.2, 6.4, 6.1, 6.1, 7.0, 6.9, 7.0, 8.0, 7.6, 7.5, 6.0, 7.4, 7.2, 5.9, 6.8, 7.8, 7.0, 6.2, 6.5, 6.2, 6.5, 5.7, 5.4, 7.2, 8.1, 8.5, 6.7, 7.0, 6.0, 7.7, 7.3, 10.1, 7.2, 7.4, 10.9, 6.8, 6.6, 7.0, 6.7, 9.1, 8.0, 6.7, 6.9, 7.3, 6.5, 7.6, 7.0, 7.1, 6.1, 7.4, 7.0, 7.7, 6.8, 7.0, 6.3, 9.8, 6.7, 7.8, 7.5, 8.7, 7.2, 7.6, 6.7, 8.6, 6.5, 7.5, 6.6, 6.8, 6.6, 8.2, 7.0, 8.8, 6.4, 5.7, 6.9, 6.2, 6.8, 5.6, 6.3, 7.9, 6.9, 10.9, 6.6, 5.8, 6.4, 6.8, 5.6, 4.9, 7.4, 6.8, 6.8, 6.5, 7.1, 7.2, 5.5, 6.9, 6.3, 6.4, 6.1, 5.2, 6.8, 6.9, 7.5, 7.2, 10.1, 7.2, 6.8, 7.4, 5.6, 6.3, 6.8, 6.0, 6.9, 6.2, 5.9, 7.0, 6.9, 8.3, 5.6, 8.2, 6.0, 6.7, 7.5, 6.2, 10.1, 7.0, 7.2, 5.5, 5.7, 11.1, 6.9, 11.5, 7.1, 6.6, 6.3, 6.6, 7.8, 6.7, 5.7, 6.7, 7.2, 9.1, 7.8, 8.1, 7.4, 6.5, 6.8, 7.4, 5.3, 7.6, 7.0, 6.2, 11.3, 5.0, 6.4, 6.0, 8.9, 6.6, 7.0, 6.5, 7.7, 7.2, 6.0, 6.5, 5.9, 6.4, 7.0, 6.7, 6.2, 6.6, 6.8, 7.5, 7.4, 8.0, 6.2, 7.2, 6.9, 6.2, 8.2, 6.0, 7.4, 8.3, 6.6, 6.4, 6.8, 5.6, 6.0, 6.4, 6.8, 7.0, 8.9, 7.1, 7.4, 6.9, 6.6, 8.4, 7.1, 8.7, 7.3, 8.3, 8.2, 9.0, 10.9, 8.6, 9.6, 7.3, 12.0, 6.0, 6.9, 7.4, 5.8, 5.6, 5.7, 6.7, 6.1, 10.6, 8.2, 7.3, 7.2, 6.4, 7.4, 7.9, 6.7, 6.8, 9.9, 6.4, 7.2, 5.0, 7.5, 5.3, 6.9, 5.6, 7.2, 6.9, 6.1, 6.9, 7.3, 7.0, 6.6, 7.4, 6.3, 8.0, 7.4, 11.6, 8.9, 7.0, 6.9, 6.4, 6.5, 10.4, 6.7, 5.6, 5.5, 10.6, 8.8, 6.9, 7.4, 7.6, 7.2, 6.0, 9.1, 5.8, 7.5, 7.0, 6.5, 6.0, 5.1, 6.7, 6.9, 7.4, 7.9, 7.3, 7.8, 8.5, 6.6, 6.7, 6.1, 7.3, 7.0, 6.0, 7.7, 7.4, 6.3, 6.0, 6.6, 7.1, 6.8, 6.4, 7.0, 5.7, 5.1, 7.4, 5.7, 7.7, 6.7, 6.6, 6.4, 6.8, 7.1, 8.0, 6.0, 8.0, 12.4, 6.6, 7.3, 7.0, 6.1, 6.6, 6.9, 6.4, 7.9, 6.6, 7.5, 9.6, 7.2, 8.0, 5.5, 6.3, 6.8, 6.9, 6.6, 7.4, 7.6, 5.6, 7.0, 6.9, 6.9, 6.9, 6.7, 6.8, 6.4, 6.8, 6.0, 7.5, 9.0, 10.2, 6.6, 7.8, 13.7, 7.1, 7.0, 7.1, 7.7, 6.1, 8.2, 9.5, 7.4, 6.5, 8.3, 5.7, 6.4, 7.8, 6.8, 6.7, 6.7], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Reference<br>fixed.acidity=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [7.2, 7.2, 9.1, 6.2, 9.2, 7.1, 5.3, 8.5, 6.9, 7.5, 7.0, 6.9, 7.3, 7.3, 5.1, 6.4, 7.8, 5.7, 6.6, 8.2, 6.1, 7.4, 7.5, 8.8, 7.0, 7.8, 5.9, 9.7, 7.5, 6.2, 7.0, 7.8, 5.8, 7.1, 7.4, 9.1, 8.5, 6.3, 10.2, 6.6, 6.9, 8.2, 5.7, 7.1, 7.1, 5.7, 5.3, 6.7, 8.2, 6.6, 9.9, 6.3, 6.6, 12.3, 7.4, 7.6, 8.0, 6.5, 6.5, 11.5, 6.3, 6.5, 6.7, 6.0, 8.5, 5.8, 6.7, 7.7, 6.7, 8.5, 7.4, 8.6, 7.4, 7.0, 6.4, 6.6, 6.2, 7.9, 7.5, 7.7, 8.2, 6.9, 6.1, 6.9, 7.7, 9.2, 6.1, 6.5, 7.1, 7.0, 8.6, 5.8, 8.4, 7.4, 7.4, 6.6, 6.4, 9.2, 6.4, 7.7, 7.2, 7.6, 7.1, 7.6, 7.8, 7.8, 5.9, 5.6, 6.2, 6.5, 7.4, 7.2, 6.2, 5.5, 7.1, 6.7, 7.2, 5.2, 10.6, 7.1, 5.8, 6.3, 6.7, 6.9, 7.1, 7.0, 6.8, 8.7, 7.7, 7.1, 10.3, 10.1, 6.4, 6.6, 9.4, 7.1, 8.3, 6.4, 7.8, 7.9, 6.8, 6.5, 5.8, 6.4, 7.3, 5.7, 6.2, 6.4, 9.4, 7.5, 7.2, 7.1, 7.6, 6.7, 6.9, 8.1, 11.6, 5.9, 7.2, 6.4, 8.3, 9.6, 12.5, 6.2, 7.2, 7.3, 6.5, 6.4, 7.2, 6.6, 6.9, 5.1, 7.3, 8.2, 7.8, 7.1, 7.3, 7.0, 7.3, 7.0, 6.0, 8.1, 5.8, 8.9, 7.5, 5.9, 9.8, 7.5, 6.6, 7.3, 6.5, 7.7, 6.4, 6.0, 6.3, 7.5, 7.5, 6.7, 7.4, 6.1, 5.6, 9.9, 9.9, 10.0, 5.9, 7.2, 6.1, 9.9, 5.6, 5.9, 7.5, 5.1, 6.7, 9.8, 6.6, 6.6, 7.1, 6.4, 8.0, 9.8, 10.0, 5.5, 7.5, 8.6, 6.4, 7.4, 5.3, 8.5, 5.9, 7.3, 6.4, 9.6, 7.0, 7.2, 6.8, 7.5, 6.1, 5.7, 6.6, 6.8, 10.8, 7.0, 6.7, 6.4, 5.6, 11.3, 9.3, 6.8, 6.6, 9.1, 9.8, 7.6, 5.8, 7.3, 7.6, 7.9, 7.2, 6.7, 9.2, 12.3, 7.1, 6.5, 6.9, 6.4, 9.3, 6.4, 5.8, 5.6, 6.1, 6.6, 7.5, 6.8, 7.8, 6.3, 6.2, 6.7, 7.0, 7.7, 6.6, 5.9, 9.9, 6.4, 8.9, 6.8, 6.3, 7.2, 9.5, 5.9, 9.2, 6.7, 7.5, 9.4, 7.1, 5.3, 8.6, 9.9, 5.8, 6.3, 7.7, 9.2, 5.6, 7.4, 9.0, 6.5, 9.4, 8.7, 6.1, 6.3, 10.6, 7.0, 6.4, 6.1, 6.4, 6.4, 8.2, 7.5, 9.4, 9.0, 6.8, 6.5, 7.4, 6.2, 7.7, 7.6, 6.6, 7.1, 15.9, 6.2, 8.1, 6.4, 6.8, 9.1, 6.5, 6.9, 5.5, 9.9, 7.3, 10.8, 6.0, 6.7, 6.1, 6.3, 7.0, 9.1, 6.6, 7.4, 6.2, 8.0, 7.0, 7.0, 7.6, 8.0, 8.4, 5.6, 9.2], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Current<br>fixed.acidity=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [7.3, 6.4, 7.5, 5.6, 6.9, 6.8, 6.5, 9.1, 9.0, 12.7, 7.6, 7.2, 6.4, 7.3, 6.7, 6.8, 6.8, 11.9, 6.6, 6.4, 6.8, 8.0, 6.3, 6.5, 6.6, 7.4, 7.2, 7.5, 5.3, 7.0, 7.5, 5.3, 8.1, 8.2, 6.9, 5.9, 9.8, 7.5, 7.0, 6.0, 8.6, 7.5, 6.9, 7.0, 6.4, 6.5, 8.3, 8.3, 6.0, 7.4, 6.2, 7.5, 9.0, 8.0, 7.7, 7.9, 7.4, 15.6, 7.6, 6.9, 15.5, 8.1, 6.3, 10.0, 7.0, 6.8, 8.5, 7.4, 6.8, 7.3, 6.6, 5.6, 4.9, 8.8, 6.6, 7.1, 7.2, 7.0, 6.2, 8.0, 7.6, 9.2, 6.0, 7.9, 8.3, 8.2, 7.9, 7.8, 6.7, 7.5, 6.3, 7.6, 9.3, 7.7, 6.9, 7.6, 8.0, 8.9, 6.8, 6.3, 10.0, 9.4, 6.8, 6.5, 8.9, 7.0, 9.0, 6.0, 6.0, 7.6, 7.9, 7.1, 6.9, 6.9, 9.6, 8.9, 6.6, 6.6, 6.4, 8.4, 5.8, 6.6, 7.0, 7.8, 7.2, 7.5, 5.7, 11.8, 7.2, 6.8, 6.9, 6.6, 7.7, 8.8, 7.1, 7.2, 6.9, 9.0, 7.2, 6.5, 7.9, 8.3, 8.6, 8.4, 9.5, 7.4, 7.9, 6.4, 7.9, 6.9, 7.2, 7.9, 7.1, 7.2, 7.0, 7.2, 6.1, 6.8, 6.9, 8.0, 8.4, 6.6, 7.1, 7.6, 7.4, 7.7, 5.9, 6.7, 6.6, 7.4, 6.6, 7.2, 7.1, 6.6, 7.9, 5.8, 7.0, 6.8, 6.6, 6.1, 8.0, 4.2, 11.9, 6.4, 6.8, 7.5, 6.3, 6.8, 7.8, 6.2, 7.2, 8.2, 7.7, 7.0, 7.2, 7.3, 7.8, 5.6, 7.1, 6.8, 6.8, 6.2, 6.4, 6.9, 7.1, 7.2, 6.8, 10.0, 6.4, 7.3, 9.3, 5.8, 6.7, 8.5, 6.0, 6.7, 6.4, 8.8, 7.1, 6.5, 6.9, 6.7, 8.3, 6.4, 6.8, 6.1, 7.6, 7.0, 8.2, 4.9, 6.3, 7.6, 6.5, 9.2, 8.4, 6.7, 5.5, 6.1, 7.7, 7.4, 6.2, 7.2, 7.9, 7.1, 7.0, 6.0, 7.5, 5.7, 8.2, 6.4, 7.5, 6.8, 9.4, 7.5, 6.5, 6.5, 7.1, 6.8, 7.2, 10.8, 6.5, 7.2, 6.4, 6.4, 8.2, 6.4, 7.1, 6.2, 6.2, 6.4, 7.1, 8.3, 7.9, 6.7, 9.2, 6.0, 7.4, 7.0, 6.7, 6.8, 8.3, 6.1, 6.9, 5.8, 8.9, 6.0, 8.6, 6.0, 7.8, 9.8, 6.4, 5.2, 7.2, 7.2, 6.4, 9.3, 6.3, 6.4, 6.2, 8.9, 6.6, 13.0, 6.2, 6.8, 7.0, 6.4, 11.1, 7.4, 8.1, 6.4, 7.5, 6.4, 8.2, 7.1, 7.6, 7.2, 7.6, 6.7, 6.2, 5.4, 11.0, 6.3, 5.7, 6.6, 8.9, 6.8, 6.3, 12.2, 6.6, 4.9, 7.6, 6.4, 7.2, 6.3, 7.6, 7.2, 5.8, 6.8, 6.5, 7.3, 6.9, 9.0, 6.8, 8.0, 10.4, 8.1, 8.3, 7.3, 6.5, 7.6, 7.0, 7.1], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Reference\", \"x\": 0.245, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Current\", \"x\": 0.755, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"barmode\": \"overlay\", \"legend\": {\"title\": {\"text\": \"target\"}, \"tracegroupgap\": 0}, \"margin\": {\"t\": 60}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.49], \"title\": {\"text\": \"fixed.acidity\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.51, 1.0], \"matches\": \"x\", \"title\": {\"text\": \"fixed.acidity\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"count\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}}}}, {\"id\": \"fixed.acidity_good\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (ref)\", \"type\": \"scatter\", \"x\": [7.0, 7.3, 7.5, 6.3, 6.3, 7.0, 6.5, 5.6, 6.9, 5.8, 8.1, 7.7, 6.2, 7.3, 6.8, 6.6, 7.3, 15.6, 5.2, 6.2, 8.0, 7.7, 6.3, 7.3, 9.0, 6.0, 5.3, 7.8, 7.1, 6.2, 6.3, 7.3, 7.2, 5.8, 7.2, 7.7, 7.7, 5.9, 6.7, 6.5, 6.0, 7.2, 7.7, 7.4, 8.1, 6.8, 8.2, 6.2, 9.4, 6.8, 7.0, 6.6, 6.0, 6.3, 14.2, 6.8, 5.9, 6.0, 7.6, 5.9, 11.1, 5.9, 7.1, 6.6, 12.6, 8.3, 6.7, 7.4, 7.0, 6.7, 7.0, 6.2, 6.4, 7.9, 7.4, 7.0, 7.9, 6.5, 8.2, 6.9, 5.7, 6.3, 8.3, 9.1, 8.0, 7.8, 7.3, 8.6, 6.9, 10.8, 6.4, 7.7, 8.8, 6.6, 6.1, 5.0, 6.3, 5.9, 6.6, 7.3, 8.3, 7.3, 9.9, 7.5, 7.2, 6.4, 5.2, 7.9, 6.7, 6.7, 8.0, 7.9, 6.9, 7.4, 5.6, 6.7, 5.9, 6.0, 7.1, 7.2, 6.8, 6.3, 9.2, 7.8, 8.1, 7.5, 6.8, 6.7, 6.9, 7.3, 7.0, 5.0, 7.3, 8.2, 7.7, 5.0, 10.1, 6.6, 7.1, 9.5, 8.0, 5.9, 6.8, 6.9, 10.8, 7.4, 7.2, 5.8, 6.7, 7.3, 7.0, 12.0, 6.7, 6.2, 6.6, 6.4, 5.9, 7.8, 7.4, 6.1, 5.9, 7.5, 6.4, 7.9, 6.1, 7.2, 7.1, 6.3, 7.8, 5.2, 10.2, 7.8, 6.2, 8.5, 7.6, 6.4, 7.8, 6.0, 6.2, 7.4, 6.0, 6.8, 7.9, 6.1, 6.2, 5.6, 5.5, 11.1, 5.9, 6.4, 6.6, 5.6, 5.0, 7.0, 7.1, 7.8, 6.1, 8.4, 6.8, 8.5, 7.7, 6.4, 7.1, 8.4, 6.7, 8.2, 8.2, 8.1, 7.3, 8.0, 8.2, 6.5, 6.5, 6.0, 6.9, 6.6, 6.6, 7.0, 7.5, 6.6, 6.6, 6.6, 7.0, 8.3, 7.1, 7.0, 7.1, 7.1, 7.7, 6.1, 6.0, 6.6, 6.3, 6.9, 6.7, 4.8, 6.4, 6.6, 6.3, 7.1, 8.9, 7.2, 7.2, 6.4, 7.0, 7.0, 7.7, 6.5, 6.3, 5.8, 8.0, 7.4, 10.8, 10.1, 10.7, 6.4, 6.5, 6.6, 7.3, 9.8, 7.4, 6.3, 6.1, 7.2, 7.0, 6.2, 7.3, 9.1, 6.5, 5.2, 6.0, 6.4, 6.7, 6.0, 5.5, 6.7, 6.7, 9.1, 5.6, 7.1, 7.8, 7.6, 5.1, 5.8, 8.0, 10.8, 6.2, 7.8, 7.7, 7.3, 5.6, 7.9, 8.3, 6.2, 6.0, 6.1, 7.1, 6.7, 5.7, 6.8, 6.6, 5.9, 5.7, 6.0, 8.4, 7.2, 8.5, 7.1, 7.2, 6.6, 7.2, 7.3, 5.9, 6.1, 7.1, 13.4, 8.3, 6.0, 6.4, 5.9, 5.8, 6.1, 6.8, 6.3, 7.3, 7.0, 7.4, 8.8, 7.4, 6.4, 5.1, 8.1, 11.4, 5.6, 6.8, 6.9, 7.0, 7.2, 6.2, 6.8, 6.5, 8.8, 5.1, 6.5, 7.2, 8.1, 7.1, 8.2, 5.8, 7.3, 6.8, 7.7, 6.7, 8.3, 6.8, 6.3, 8.4, 6.2, 11.5, 6.9, 7.4, 6.2, 8.9, 7.2, 7.2, 6.6, 6.2, 6.2, 9.2, 7.2, 5.8, 5.6, 7.7, 9.2, 6.6, 7.0, 5.9, 8.6, 7.4, 9.0, 10.0, 7.5, 8.3, 6.5, 6.9, 7.5, 10.2, 6.1, 7.7, 6.8, 6.1, 6.0, 6.7, 6.3, 7.0, 6.0, 7.7, 6.8, 5.0, 8.0, 7.4, 6.7, 6.1, 7.0, 7.4, 5.7, 6.8, 7.4, 6.1, 6.5, 6.6, 6.4, 5.7, 6.6, 7.1, 7.0, 6.3, 7.1, 7.7, 7.5, 7.5, 6.9, 5.9, 7.0, 6.1, 5.8, 8.0, 7.4, 6.7, 8.0, 7.7, 6.6, 6.4, 5.5, 6.9, 4.4, 8.3, 6.3, 6.9, 11.1, 6.4, 6.8, 7.4, 7.5, 6.9, 6.3, 7.2, 6.7, 10.5, 5.9, 6.8, 6.1, 5.8, 7.3, 7.4, 12.0, 6.4, 7.1, 6.4, 6.2, 11.1, 7.6, 11.5, 8.0, 6.4, 7.3, 6.2, 6.7, 7.3, 8.9, 8.3, 6.2, 6.5, 8.7, 5.7, 6.5, 7.0, 6.7, 7.5, 7.3, 6.2, 6.5, 6.6, 6.3, 6.5, 7.7, 7.5, 6.6, 5.7, 6.0, 7.3, 7.9, 7.0, 6.5, 7.3, 8.6, 6.9, 6.5, 7.3, 7.4, 6.9, 7.0, 5.3, 7.2, 7.9, 6.7, 5.1, 6.7, 6.5, 6.4, 6.9, 7.8, 7.1, 7.5, 6.5, 6.3, 6.7, 6.6, 6.7, 6.8, 8.4, 6.0, 8.1, 6.5, 7.2, 7.1, 8.6, 8.0, 6.2, 6.5, 8.9, 6.9, 5.8, 6.0, 6.8, 7.9, 6.8, 7.1, 6.8, 7.0, 6.8, 6.0, 7.9, 7.9, 6.5, 6.0, 10.1, 7.0, 6.8, 6.3, 7.2, 7.7, 6.6, 8.2, 6.4, 6.8, 7.2, 7.0, 7.8, 6.6, 6.7, 7.6, 5.6, 6.4, 5.1, 7.7, 7.1, 8.6, 6.1, 8.0, 6.2, 7.6, 7.2, 7.1, 6.5, 6.3, 7.2, 6.4, 7.9, 7.8, 7.5, 6.4, 5.9, 6.0, 7.0, 6.9, 5.4, 6.8, 6.0, 6.8, 8.6, 6.7, 6.3, 6.0, 5.0, 7.2, 5.6, 8.0, 5.6, 7.8, 7.4, 7.1, 6.4, 7.0, 9.4, 6.0, 5.9, 7.1, 6.3, 7.3, 6.4, 10.5, 8.1, 8.1, 6.4, 8.8, 6.1, 7.0, 7.2, 9.2, 6.6, 6.9, 9.7, 8.8, 7.8, 7.8, 7.3, 6.7, 6.6, 6.8, 7.15, 8.0, 7.4, 6.5, 5.3, 7.1, 10.8, 6.6, 7.0, 7.2, 7.5, 10.7, 5.9, 6.8, 6.9], \"xaxis\": \"x\", \"y\": [0.8156061324462894, 0.42491310922683634, 0.8867827646463432, 0.8014995238430205, 0.30499958310650876, 0.5817355832705369, 0.959171062334887, 0.7854416128369749, 0.9085690698200813, 0.8998600376511439, 0.6341165000693628, 0.412102187638673, 0.7643629411050379, 0.4710001938005606, 0.40182653035141874, 0.40438056362905367, 0.8870480016118494, 0.3650667978415713, 0.9064321709292111, 0.9327245345966092, 0.6458420185168736, 0.8821841129047617, 0.6704018506542557, 0.7655671181822064, 0.8616986618932058, 0.48774537944210006, 0.9637355036179479, 0.6794204065079696, 0.6044835155949141, 0.7867954023600708, 0.9137982268836646, 0.5867502063434873, 0.8048584290077971, 0.9718511071053526, 0.9627192884041744, 0.7978623718349598, 0.6091120966723917, 0.8943338178728011, 0.8853376735027229, 0.9045563504021151, 0.9264844632598176, 0.6342457655367447, 0.9414033426130164, 0.5636516403732365, 0.5172967922101196, 0.4836896337264441, 0.35199620689495453, 0.788779954566273, 0.9696552399248426, 0.772496554239754, 0.8132656157621138, 0.4539090261140653, 0.9333708926412786, 0.679765045723866, 0.48457442622955804, 0.4248820606938153, 0.6737819616086004, 0.8780741425819777, 0.38340602447337646, 0.90634085684919, 0.5574014604752268, 0.6804147683859246, 0.9077110088845216, 0.7718472635729894, 0.4717552048891654, 0.22222808308441652, 0.8616549355667619, 0.705749071892896, 0.4699129352300819, 0.9680524782819758, 0.8891353183282249, 0.9466602521798594, 0.8553382520847058, 0.7430243903066251, 0.6616131862201935, 0.6919609500216202, 0.96565744679506, 0.913108907487878, 0.5395521774612226, 0.9026238558501023, 0.6550941529376255, 0.9757876320152292, 0.8833495792027257, 0.6666029765862381, 0.8504582120840628, 0.9320215595878566, 0.7639947574915884, 0.6085229656221847, 0.9557131606798471, 0.46184432615952054, 0.5642658412077981, 0.8815615400732472, 0.7189203536918151, 0.9301020530176726, 0.7341394174346678, 0.7759189559372703, 0.8448078654733812, 0.9012666081120407, 0.8926028620066223, 0.5287492720273277, 0.6874206920638863, 0.37408584674942635, 0.8348370105186077, 0.8697567261320243, 0.9175759024810304, 0.44644098895981, 0.8874384748400057, 0.7787567487441118, 0.9416122482572158, 0.3265229243180111, 0.9308095750950773, 0.42267134533232753, 0.43068181214270274, 0.8727308285810839, 0.7201611177732586, 0.8430904589044517, 0.8140617541555761, 0.9456747441572588, 0.6672663325862807, 0.8756470416862959, 0.518871521713375, 0.7040615347784164, 0.4957960231649875, 0.6250130361556073, 0.27413726132188326, 0.5193133578087885, 0.37656641690434584, 0.5808048103476511, 0.7917827117482167, 0.36569143480873245, 0.7232542293832885, 0.9785934574433302, 0.5715075300165849, 0.8182555969893297, 0.5448461144048058, 0.9491291995847589, 0.4833587957991669, 0.3189279754564957, 0.9184825510014271, 0.5524830505676419, 0.9600429304649183, 0.7818180966165994, 0.7962710274484252, 0.7569429870375118, 0.46184432615952054, 0.7641514270390748, 0.9486763575522457, 0.8086368705092697, 0.6784536879503494, 0.6877019790624462, 0.6082670858563528, 0.6053794617794684, 0.6319330693089359, 0.4982105707488519, 0.6787928880949093, 0.9231980717613485, 0.8831230955067948, 0.6845485656817341, 0.8799204262605215, 0.9164563829924386, 0.7819268199067826, 0.23469888428232324, 0.9492377841603665, 0.8826092272015389, 0.6360541596480074, 0.5184081252698399, 0.6400126753125241, 0.542646305979658, 0.4479501208302092, 0.7783171875827786, 0.7867712153112567, 0.5236605417423803, 0.6959846197179591, 0.7925023358445066, 0.6683189355892497, 0.18737025221649042, 0.42506327048176057, 0.7272596040941706, 0.7314191754306454, 0.4827891324637794, 0.6649341228620356, 0.9038332731164471, 0.9588917860646077, 0.8945194928389463, 0.49833043835950624, 0.7997712594855277, 0.8577935987172323, 0.7622736922026153, 0.8039391974899521, 0.7396811504731934, 0.8115340233127679, 0.801728888664367, 0.738451208106372, 0.5859674792922007, 0.1865203674848816, 0.8773430435604171, 0.36888329310067386, 0.8651817982269884, 0.9067615420962557, 0.8594983988587351, 0.7437750884018276, 0.9145224932934428, 0.9135679891815164, 0.8001832456898428, 0.6860977766129374, 0.9377826008632761, 0.9300369611912853, 0.6997062971069969, 0.5693182102579236, 0.3404656140239559, 0.7160591142088384, 0.7953146078011, 0.8869803873277935, 0.7639982823097876, 0.8681285227071118, 0.576868797021353, 0.93035102563313, 0.8375600281828176, 0.8279918435672958, 0.9266689436294401, 0.7559862346636359, 0.5099889666930224, 0.6914445842613687, 0.9651950326885705, 0.87851968214492, 0.8499702807396289, 0.4685752957996948, 0.7241546992314323, 0.7848147251007912, 0.7341394174346678, 0.7008877443692281, 0.340588975625529, 0.5013021766499856, 0.8321174529331695, 0.8818378666553491, 0.9176909075187759, 0.8634678749265305, 0.7436082905772717, 0.9343776659412377, 0.7668809937296346, 0.6243383802582345, 0.5332560471205093, 0.6907315465649003, 0.16626803588025432, 0.1668542888532837, 0.7408943843163458, 0.5221312328975666, 0.7457559475413279, 0.46389636934606376, 0.9292627865919654, 0.5268311186840582, 0.4244151934213653, 0.643310536612302, 0.8577438313980266, 0.7816208399762355, 0.8553382520847058, 0.7010035672814305, 0.5242572272016158, 0.9187320011579697, 0.8703498177621264, 0.6713045345576062, 0.9137982268836646, 0.8614414457916845, 0.9445662266054761, 0.8808216590199034, 0.7386378115490353, 0.8873009977622293, 0.9157094897337859, 0.6606038558129893, 0.9296803968514485, 0.8864322240790464, 0.5146720135715994, 0.8720710714485208, 0.9415427660945741, 0.9138701141498735, 0.6527559092576063, 0.8751970040938668, 0.9249766460056568, 0.801728888664367, 0.6575848465963361, 0.6934824043184128, 0.8619113960143526, 0.9419078024651042, 0.9591721389341828, 0.8397407150753159, 0.9084383840076588, 0.4963969309336195, 0.7359588175524252, 0.3531961907069324, 0.9279819479140234, 0.7752976919572294, 0.8665226278427577, 0.9515211055933231, 0.7314191754306454, 0.890886918514299, 0.3235491032739525, 0.3719939405423586, 0.6323804178173072, 0.8398006965792015, 0.8239469134189235, 0.8592101816891015, 0.7615002907198236, 0.8688259750909261, 0.8718104001390852, 0.5838074755684882, 0.8756470416862959, 0.901850575196968, 0.9451930143658351, 0.6253812669856891, 0.5890764576710766, 0.4921052500998711, 0.4862070578416567, 0.9170647663398394, 0.7035583451969506, 0.8476385889092957, 0.5603058978573646, 0.5810606890504925, 0.9088604673919816, 0.8903252600075929, 0.944267921154058, 0.9435968591480925, 0.938237366988842, 0.9357286047893738, 0.7961386682142712, 0.7840233885688647, 0.2513590507613302, 0.7389284097502917, 0.9053472250810051, 0.44438282424164377, 0.862281110352348, 0.8021059248496223, 0.9152740930046814, 0.643737358401971, 0.8540304955499701, 0.8613418170006786, 0.6911084183178322, 0.8848367871057808, 0.8387883096682573, 0.5942651630821018, 0.65691393717736, 0.6369979527510315, 0.8280658524313272, 0.9640736168216585, 0.6546311715671466, 0.5599819536107853, 0.48348053317652906, 0.7668016587569692, 0.03620763244300767, 0.7364400865449663, 0.37408584674942635, 0.8767503774172, 0.8743962287172513, 0.8751970040938668, 0.8833495792027257, 0.7091886355621774, 0.87006937054451, 0.7904001815220257, 0.8761418339280951, 0.8306834851111597, 0.7531715889012326, 0.38181207472529843, 0.6490458991820136, 0.9138057013338913, 0.9046222904886461, 0.17956061692355052, 0.7506163079023257, 0.8963285795381793, 0.8848361664653354, 0.9283037217377402, 0.45996158699034445, 0.7290858434196763, 0.8319094967702583, 0.6578018675312727, 0.18727567457681707, 0.8673410249845035, 0.9453298670648187, 0.9446538464906173, 0.19605573045952288, 0.6723831041639817, 0.3438281302059518, 0.37858973820495484, 0.6953170483296187, 0.21463507152544156, 0.26963792069965237, 0.3280912492037974, 0.8399932187801539, 0.420387898633768, 0.36522500752858966, 0.5810560693343539, 0.9306346767722963, 0.7167716539092029, 0.656736106921484, 0.5549139996760648, 0.6909161521388689, 0.591904263202073, 0.884703171197362, 0.866402281883595, 0.7582770814524421, 0.8990773411030794, 0.1818065866116437, 0.6222165686186035, 0.17261914235374884, 0.8156064679757086, 0.4851213943917703, 0.8871292211128762, 0.8398494053952754, 0.703270618172154, 0.6305543892506115, 0.7494149477175548, 0.1532408287022325, 0.6159732902773407, 0.738220551127759, 0.8354520044441791, 0.8536870432671441, 0.5751476712690671, 0.9077719201719568, 0.7878515691455199, 0.6672663325862807, 0.45293736875445273, 0.17058553029544155, 0.747933377844996, 0.8400163125056676, 0.4516778718827729, 0.6082670858563528, 0.8401843469141149, 0.7636885291754726, 0.789170795337903, 0.8128612802083497, 0.7522530659814418, 0.8086757686066508, 0.8356255123032285, 0.9241779635105248, 0.9674588597049086, 0.9368885694202199, 0.4990764491242286, 0.876561204324957, 0.554264192243629, 0.5967716244634195, 0.9060244606340249, 0.8401608718856799, 0.7329750583133859, 0.8021769878309102, 0.9316817655017511, 0.45488322534173153, 0.798578398438993, 0.7425236774748816, 0.5742682328784404, 0.4937681935814938, 0.8972164286692267, 0.8914273370768748, 0.9377613518261881, 0.8862258850530264, 0.8591757581361523, 0.7410678096850266, 0.6822336012657398, 0.9201658505843877, 0.6982578893131915, 0.5746709232170782, 0.7626532952948841, 0.7137703530889916, 0.7520971196461234, 0.4473853625959922, 0.7957460056304991, 0.4833174871501707, 0.8758467705785958, 0.4689303842787964, 0.6133612564737879, 0.8568681391705205, 0.6835133967314007, 0.9732070839986944, 0.21435716257549006, 0.5761668962420043, 0.4055433603128916, 0.3743394998756179, 0.9118635774953143, 0.964551884718591, 0.9306459334511011, 0.8424802355113449, 0.7739144871152517, 0.6872688771534424, 0.8590561833388345, 0.6714384475466295, 0.6408669500407106, 0.5203550269219845, 0.2856853969697174, 0.857760555506807, 0.9307094503226838, 0.6787928880949093, 0.8308635255795866, 0.29271374211533296, 0.6769315553524353, 0.23831547366416572, 0.5895099457120908, 0.8994675076574448, 0.8893400405584444, 0.8456825404777587, 0.5399612081435882, 0.6188649121485582, 0.9281492942813848, 0.7611740601422801, 0.46550237374781617, 0.8896861436466836, 0.9038901015569306, 0.5044440900554997, 0.9215480939667524, 0.6930273792518707, 0.8723244804196287, 0.5624338775604165, 0.9226297661236537, 0.8469231754225917, 0.9430557295321259, 0.9097116306258912, 0.5988707702267543, 0.3813853072548755, 0.8843832309478876, 0.9006952500629406, 0.918975987201669, 0.18997930334445084, 0.8923106748541326, 0.8461388699436441, 0.5973439234355874, 0.9544642924744549, 0.91770416680597, 0.9177239854204658, 0.17584552180125673, 0.9240099144459667, 0.48524948024905407, 0.8889685222180134, 0.5785503824403398, 0.7511953459672914, 0.6887596776945688, 0.6717539058356753, 0.7168761391602206, 0.7134478068952186, 0.834626350903405, 0.5715867980362679, 0.6588392688727011, 0.9488572786900573, 0.8920529250761863, 0.8891353183282249, 0.707981940789761, 0.926348680038428, 0.631489487929038, 0.7443856388661001, 0.9260754381930228, 0.9544642924744549, 0.8497401318990601, 0.5604010177433062, 0.8036334301115304, 0.7898153537185114, 0.8491431337122072, 0.6570881560807702, 0.8389599143569951, 0.7944137576415592, 0.8132668978866627, 0.44714680104169846, 0.7978021044641371, 0.41921696608658454, 0.38876183891604754, 0.9248463736054193, 0.4277915265084825, 0.6345107008491314, 0.8008942533173764, 0.5087430598332189, 0.9414938992689892, 0.6922115882765215, 0.8296175750175913, 0.8593339228153332, 0.8975141534758351, 0.5977126281557783, 0.9279478536756302, 0.6485770817571253, 0.8905823996589662, 0.9332072841984264, 0.9432461110830079, 0.9410120781436498, 0.6339696776630096, 0.7120962557761497, 0.5841709037351369, 0.5928970840420333, 0.9006589732900512, 0.936371533648048, 0.6907852379101131, 0.7675780198071424, 0.9444587893431046, 0.4702336163336472, 0.8925536722101626, 0.8158978708906081, 0.822780392485108, 0.8037335327290217, 0.8382351003285965, 0.8941557358589171, 0.4796498334522667, 0.926348680038428, 0.6842118015950474, 0.6463580983468415, 0.8292048071278182, 0.5834426687867836, 0.8419845362148763, 0.2431563391580561, 0.7763142135369961, 0.9390550746437164, 0.7774903237071782, 0.8141232663130791, 0.9444089886680379, 0.430401459478284, 0.9192677156927759, 0.8427595869840984, 0.87120858451521, 0.5693182102579236, 0.820012080301976, 0.58719119911586, 0.42769376643096113, 0.3542595869275313, 0.89579938191327, 0.8743523014696554, 0.7820497043505815, 0.5279069501129625, 0.8869579700149332, 0.45488774279476296, 0.8514781135508903, 0.8278297091497892, 0.663749097381813, 0.5132851713944618, 0.4906566565015208, 0.6415219885510332, 0.6991293681294938, 0.8150539074042624, 0.5800669536763935, 0.9583771200922359, 0.7366090055976814, 0.5747817696023392, 0.5315376696882942, 0.8074446941396305, 0.9038901015569306, 0.9087015650331977, 0.6697291810323083, 0.5800669536763935, 0.8807270543114014, 0.5135845984304893, 0.9352791850238339, 0.36120709973337456, 0.6206709330576408, 0.906286252315459, 0.7937202818717513], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [7.2, 7.2, 9.1, 6.2, 9.2, 7.1, 5.3, 8.5, 6.9, 7.5, 7.0, 6.9, 7.3, 7.3, 5.1, 6.4, 7.8, 5.7, 6.6, 8.2, 6.1, 7.4, 7.5, 8.8, 7.0, 7.8, 5.9, 9.7, 7.5, 6.2, 7.0, 7.8, 5.8, 7.1, 7.4, 9.1, 8.5, 6.3, 10.2, 6.6, 6.9, 8.2, 5.7, 7.1, 7.1, 5.7, 5.3, 6.7, 8.2, 6.6, 9.9, 6.3, 6.6, 12.3, 7.4, 7.6, 8.0, 6.5, 6.5, 11.5, 6.3, 6.5, 6.7, 6.0, 8.5, 5.8, 6.7, 7.7, 6.7, 8.5, 7.4, 8.6, 7.4, 7.0, 6.4, 6.6, 6.2, 7.9, 7.5, 7.7, 8.2, 6.9, 6.1, 6.9, 7.7, 9.2, 6.1, 6.5, 7.1, 7.0, 8.6, 5.8, 8.4, 7.4, 7.4, 6.6, 6.4, 9.2, 6.4, 7.7, 7.2, 7.6, 7.1, 7.6, 7.8, 7.8, 5.9, 5.6, 6.2, 6.5, 7.4, 7.2, 6.2, 5.5, 7.1, 6.7, 7.2, 5.2, 10.6, 7.1, 5.8, 6.3, 6.7, 6.9, 7.1, 7.0, 6.8, 8.7, 7.7, 7.1, 10.3, 10.1, 6.4, 6.6, 9.4, 7.1, 8.3, 6.4, 7.8, 7.9, 6.8, 6.5, 5.8, 6.4, 7.3, 5.7, 6.2, 6.4, 9.4, 7.5, 7.2, 7.1, 7.6, 6.7, 6.9, 8.1, 11.6, 5.9, 7.2, 6.4, 8.3, 9.6, 12.5, 6.2, 7.2, 7.3, 6.5, 6.4, 7.2, 6.6, 6.9, 5.1, 7.3, 8.2, 7.8, 7.1, 7.3, 7.0, 7.3, 7.0, 6.0, 8.1, 5.8, 8.9, 7.5, 5.9, 9.8, 7.5, 6.6, 7.3, 6.5, 7.7, 6.4, 6.0, 6.3, 7.5, 7.5, 6.7, 7.4, 6.1, 5.6, 9.9, 9.9, 10.0, 5.9, 7.2, 6.1, 9.9, 5.6, 5.9, 7.5, 5.1, 6.7, 9.8, 6.6, 6.6, 7.1, 6.4, 8.0, 9.8, 10.0, 5.5, 7.5, 8.6, 6.4, 7.4, 5.3, 8.5, 5.9, 7.3, 6.4, 9.6, 7.0, 7.2, 6.8, 7.5, 6.1, 5.7, 6.6, 6.8, 10.8, 7.0, 6.7, 6.4, 5.6, 11.3, 9.3, 6.8, 6.6, 9.1, 9.8, 7.6, 5.8, 7.3, 7.6, 7.9, 7.2, 6.7, 9.2, 12.3, 7.1, 6.5, 6.9, 6.4, 9.3, 6.4, 5.8, 5.6, 6.1, 6.6, 7.5, 6.8, 7.8, 6.3, 6.2, 6.7, 7.0, 7.7, 6.6, 5.9, 9.9, 6.4, 8.9, 6.8, 6.3, 7.2, 9.5, 5.9, 9.2, 6.7, 7.5, 9.4, 7.1, 5.3, 8.6, 9.9, 5.8, 6.3, 7.7, 9.2, 5.6, 7.4, 9.0, 6.5, 9.4, 8.7, 6.1, 6.3, 10.6, 7.0, 6.4, 6.1, 6.4, 6.4, 8.2, 7.5, 9.4, 9.0, 6.8, 6.5, 7.4, 6.2, 7.7, 7.6, 6.6, 7.1, 15.9, 6.2, 8.1, 6.4, 6.8, 9.1, 6.5, 6.9, 5.5, 9.9, 7.3, 10.8, 6.0, 6.7, 6.1, 6.3, 7.0, 9.1, 6.6, 7.4, 6.2, 8.0, 7.0, 7.0, 7.6, 8.0, 8.4, 5.6, 9.2], \"xaxis\": \"x\", \"y\": [0.2802292104526322, 0.9455194119275858, 0.4978743212349556, 0.5289145624519528, 0.28439238707197784, 0.2033309570226689, 0.27345747478543325, 0.8322873304845451, 0.389055896812549, 0.3675472469853882, 0.5781933746273124, 0.7401955299744071, 0.44969671697605845, 0.4367887814338696, 0.31593955341667695, 0.3775624358859999, 0.19282181046294666, 0.048451763306065584, 0.6005928650583868, 0.032225376113695775, 0.427412413738938, 0.23973251442015217, 0.13890126550157303, 0.8613925272127, 0.329663916828638, 0.19359965390713213, 0.6827271716759634, 0.1960905505555538, 0.08135735686643118, 0.39737240301928484, 0.13902987396822816, 0.6514166433739288, 0.6994753721471061, 0.7140886736258081, 0.5021795028970708, 0.48743245558712556, 0.5731139673640956, 0.8820820642542792, 0.559972149724866, 0.5061565591493914, 0.5066810377847554, 0.833805652807593, 0.6979972163580744, 0.3177574231538272, 0.13068190592986567, 0.758876109553896, 0.5681062961269688, 0.715544821914063, 0.762062625203523, 0.4464438677531786, 0.20995974230910305, 0.5262622410710028, 0.39442669669188163, 0.2537324982988368, 0.6775437642744659, 0.23876321589577687, 0.6369158982934647, 0.38960060362966165, 0.6034323722874255, 0.7769991715799629, 0.15199748354041337, 0.5641412449951732, 0.7590466800561823, 0.5969347905931296, 0.1048362779837843, 0.7217824369593382, 0.2662339163773806, 0.16472378978351135, 0.37760124376932414, 0.7071736299639594, 0.3436862995931572, 0.8384434752264291, 0.3635333644877426, 0.7813188949129265, 0.7279369976219869, 0.5641098847382463, 0.3863964747623771, 0.9209913370067284, 0.1477144681640183, 0.8809374658555192, 0.6533168894759348, 0.8873477284758582, 0.3697306267878623, 0.28319023347825867, 0.5203701741750857, 0.5523747693308857, 0.6387521731780509, 0.3881380695009739, 0.8487896327149285, 0.4636606453307818, 0.8384434752264291, 0.558266603669778, 0.21657231888677728, 0.3635333644877426, 0.5512671313974766, 0.5051039398599867, 0.5827915753039158, 0.49441682850108926, 0.47309171914705017, 0.6262595591688196, 0.5508242483721094, 0.47332791509789995, 0.7117569366896692, 0.3933786516273859, 0.16465066549244003, 0.7490394132223248, 0.769261050002088, 0.7431932405995126, 0.3141000916210982, 0.723735045552473, 0.6484132891031948, 0.688519894019609, 0.40496704226994307, 0.5803736122960511, 0.6327801522745691, 0.45115706990411364, 0.37268733756108086, 0.9009693101135351, 0.06496389958099598, 0.44431713201158524, 0.39960831974332744, 0.8662156944598043, 0.31018081106061823, 0.5339551117365043, 0.33311273919547707, 0.400132762133902, 0.8528754522806217, 0.14419347879543085, 0.11672350429510901, 0.44556702529145975, 0.6160120899414699, 0.13766892845409207, 0.5517204028384314, 0.5232178919035022, 0.35483403305733974, 0.4900213704561591, 0.8854578072659228, 0.43084122675663034, 0.7601186327653665, 0.14072030431570776, 0.6186690618327106, 0.5245054232921349, 0.7326259458716644, 0.5690781983520095, 0.4018508815425063, 0.24877469563805235, 0.7952501197393639, 0.8766221356386195, 0.303451532996695, 0.5357745481647883, 0.7096524147827454, 0.20877177283968149, 0.8635610141758273, 0.46736762313881036, 0.6061151992073851, 0.113015272873705, 0.40446014603085867, 0.6332606063976143, 0.648705381890928, 0.42186952587750404, 0.8047913565308571, 0.3017058309841093, 0.38406990132164637, 0.33494193042999065, 0.19929939967121216, 0.8624919783238055, 0.528785836409086, 0.43084122675663034, 0.47042159929499583, 0.5061565591493914, 0.5759491569657543, 0.8468794444363914, 0.20342296359496542, 0.5170831534483544, 0.3666753044655067, 0.6131723001375537, 0.4410646109528086, 0.6903416342484309, 0.3866428492574258, 0.4636606453307818, 0.4525459302795702, 0.03199256040434073, 0.7029629492254846, 0.2433141614541866, 0.548755973819273, 0.3775060302547258, 0.06593060991448157, 0.8745624549148976, 0.22931948662359403, 0.27267688907931714, 0.589328430619086, 0.8007160756317941, 0.5525637789187225, 0.5008522318356121, 0.4556212410144909, 0.17391722008742402, 0.43574637053357784, 0.3237440077649342, 0.6071692164257629, 0.6925152430641841, 0.592675381607996, 0.43854150134957587, 0.43854150134957587, 0.42437112972565305, 0.8061118855433299, 0.35195592295594336, 0.7605370065149419, 0.38898578429124253, 0.67510953655807, 0.872979709380305, 0.710510994258769, 0.720290290780972, 0.4820787970895852, 0.42019280799979697, 0.4304380754474639, 0.25285023254778977, 0.3238056884730761, 0.39471961640683584, 0.09510031985475974, 0.367046376808582, 0.21500793651835448, 0.8705359023101334, 0.6100742529031461, 0.6226449432624995, 0.7279369976219869, 0.3643494054700089, 0.09992017521484964, 0.41475515148757036, 0.6462260464983366, 0.14102909592513518, 0.48949585696458414, 0.5239520436918008, 0.6084413884537807, 0.5655473856702703, 0.9517420512476797, 0.7489379515982664, 0.4647937384849751, 0.7915321263825208, 0.44112279258530757, 0.5734340256727429, 0.6604471727860799, 0.4845203185458914, 0.6968730453869196, 0.5315374962198609, 0.8685951485887234, 0.6242442748350044, 0.2912097196987059, 0.7725938221565348, 0.2067629769731588, 0.30221725334927335, 0.13129342562285412, 0.6467789443522378, 0.6994753721471061, 0.11825382206919556, 0.41022417118631593, 0.4882665226122541, 0.7732287086973071, 0.25374762405010176, 0.49441682850108926, 0.3723877205427743, 0.652330313245635, 0.43667799883041203, 0.5964718913578133, 0.55172276504346, 0.24113559934961917, 0.8243980268882987, 0.7263843594269437, 0.43535214809021755, 0.8721122798612579, 0.18723914490145582, 0.6486906676970999, 0.11576704656818047, 0.4328241622975616, 0.491481212420291, 0.5264345378086769, 0.33856526784971647, 0.2967410926251248, 0.581398831228375, 0.5973776665460488, 0.6195406102170065, 0.37782717658841725, 0.323061133240968, 0.17420808473594895, 0.19634770547538957, 0.46492234760650425, 0.49613167963272686, 0.5812209036149294, 0.6057291775435286, 0.63414717387345, 0.5702687187355167, 0.8604975146328253, 0.6309022132706124, 0.48732991249542923, 0.6887148870948692, 0.41581945293096145, 0.5706760596351739, 0.4831274653996314, 0.06684727567316755, 0.49090643211649887, 0.15191610726090596, 0.2711405311223577, 0.7653618545702112, 0.09266565137124261, 0.4554350627407873, 0.19698919164573708, 0.6930185080649685, 0.5227537922811563, 0.50434568709929, 0.7082092780767422, 0.46058046365566996, 0.6735723234187477, 0.4285936050615775, 0.323061133240968, 0.5168500865319015, 0.6161307914674419, 0.23456444218973552, 0.3192004782541023, 0.21968945907811915, 0.5028183230931117, 0.43371621376298963, 0.6744209213341115, 0.5940260419772637, 0.13783310426722128, 0.5136444387530009, 0.5508647999875032, 0.4955911012838212, 0.9814394195009358, 0.8260225289794664, 0.17965956338109995, 0.46844896472597397, 0.6048119589659149, 0.3289160319090978, 0.2454606394453749, 0.7497022835596558, 0.683485355417811, 0.20995974230910305, 0.23504578258460665, 0.37175956099497537, 0.4875530438829156, 0.24982584224249993, 0.6282829625348888, 0.4520795162158371, 0.8200372413039435, 0.12832513643528837, 0.5299630655130737, 0.29552777318700446, 0.24021937552346023, 0.5429028773737552, 0.6311869746243346, 0.4145977043912777, 0.39329840463575844, 0.39070335653410526, 0.4286990948130573, 0.846836560604146, 0.6880850122626078], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (curr)\", \"type\": \"scatter\", \"x\": [6.4, 7.2, 6.8, 6.8, 7.9, 7.4, 7.3, 6.6, 6.5, 5.8, 10.0, 6.9, 6.6, 5.3, 4.4, 7.9, 6.9, 8.5, 9.1, 7.6, 7.6, 7.4, 8.3, 6.7, 7.8, 7.1, 6.4, 6.0, 7.6, 6.9, 7.3, 6.6, 6.9, 5.1, 5.8, 6.6, 6.5, 6.4, 6.8, 7.2, 6.7, 6.0, 7.6, 7.3, 8.3, 7.8, 7.8, 6.8, 7.9, 6.8, 8.0, 8.0, 6.8, 9.2, 6.9, 8.1, 10.7, 5.2, 6.6, 9.1, 6.4, 6.8, 6.6, 8.0, 6.7, 6.0, 7.7, 7.7, 6.0, 7.5, 7.1, 6.7, 7.7, 5.3, 8.0, 6.3, 6.1, 6.6, 7.7, 9.0, 6.4, 7.3, 7.5, 8.3, 7.6, 8.4, 9.3, 6.5, 6.9, 6.3, 6.3, 8.4, 5.6, 6.6, 6.0, 7.3, 11.6, 7.6, 11.8, 5.9, 7.2, 6.4, 6.9, 6.9, 7.1, 6.6, 7.9, 6.7, 6.2, 6.7, 6.7, 7.9, 6.9, 6.1, 6.4, 6.4, 5.0, 6.6, 6.9, 9.8, 5.0, 5.4, 6.5, 6.2, 8.2, 9.7, 7.8, 6.1, 9.3, 6.8, 6.2, 7.4, 6.1, 8.3, 6.2, 8.3, 9.2, 8.3, 6.8, 7.3, 7.2, 6.4, 11.9, 6.6, 6.2, 5.8, 8.4, 8.9, 7.1, 8.3, 7.0, 7.6, 7.5, 7.2, 6.5, 6.8, 9.9, 7.2, 5.9, 7.2, 7.1, 7.5, 6.2, 6.3, 12.6, 8.6, 8.9, 7.9, 8.3, 6.9, 6.3, 8.6, 7.2, 8.5, 5.8, 7.0, 6.1, 6.5, 6.0, 8.3, 7.7, 5.8, 6.9, 11.8, 7.0, 6.3, 9.1, 5.6, 7.0, 6.9, 7.8, 6.6, 6.5, 7.0, 6.2, 7.7, 6.7, 5.1, 8.4, 6.5, 7.2, 7.5, 5.8, 7.7, 6.6, 6.7, 8.5, 10.4, 6.6, 6.8, 5.9, 5.8, 6.7, 6.2, 13.2, 7.0, 5.9, 6.0, 5.6, 6.8, 7.0, 6.2, 7.8, 6.3, 7.3, 7.3, 6.0, 7.4, 8.7, 7.3, 6.9, 8.1, 6.9, 7.0, 10.3, 8.4, 6.6, 6.8, 7.0, 7.4, 6.8, 8.1, 8.4, 6.4, 7.1, 10.4, 7.3, 7.4, 7.5, 9.4, 7.9, 7.6, 8.1, 6.5, 7.0, 6.7, 7.5, 6.6, 6.7, 5.8, 6.8, 6.9, 7.5, 6.4, 7.3, 7.4, 7.6, 6.1, 6.8, 7.6, 6.8, 6.3, 5.4, 11.5, 6.7, 7.4, 6.9, 6.8, 5.6, 5.9, 8.4, 7.9, 6.0, 5.8, 7.0, 10.0, 6.1, 6.2, 5.3, 6.1, 11.5, 10.3, 6.9, 8.2, 6.4, 6.1, 6.1, 7.0, 6.9, 7.0, 8.0, 7.6, 7.5, 6.0, 7.4, 7.2, 5.9, 6.8, 7.8, 7.0, 6.2, 6.5, 6.2, 6.5, 5.7, 5.4, 7.2, 8.1, 8.5, 6.7, 7.0, 6.0, 7.7, 7.3, 10.1, 7.2, 7.4, 10.9, 6.8, 6.6, 7.0, 6.7, 9.1, 8.0, 6.7, 6.9, 7.3, 6.5, 7.6, 7.0, 7.1, 6.1, 7.4, 7.0, 7.7, 6.8, 7.0, 6.3, 9.8, 6.7, 7.8, 7.5, 8.7, 7.2, 7.6, 6.7, 8.6, 6.5, 7.5, 6.6, 6.8, 6.6, 8.2, 7.0, 8.8, 6.4, 5.7, 6.9, 6.2, 6.8, 5.6, 6.3, 7.9, 6.9, 10.9, 6.6, 5.8, 6.4, 6.8, 5.6, 4.9, 7.4, 6.8, 6.8, 6.5, 7.1, 7.2, 5.5, 6.9, 6.3, 6.4, 6.1, 5.2, 6.8, 6.9, 7.5, 7.2, 10.1, 7.2, 6.8, 7.4, 5.6, 6.3, 6.8, 6.0, 6.9, 6.2, 5.9, 7.0, 6.9, 8.3, 5.6, 8.2, 6.0, 6.7, 7.5, 6.2, 10.1, 7.0, 7.2, 5.5, 5.7, 11.1, 6.9, 11.5, 7.1, 6.6, 6.3, 6.6, 7.8, 6.7, 5.7, 6.7, 7.2, 9.1, 7.8, 8.1, 7.4, 6.5, 6.8, 7.4, 5.3, 7.6, 7.0, 6.2, 11.3, 5.0, 6.4, 6.0, 8.9, 6.6, 7.0, 6.5, 7.7, 7.2, 6.0, 6.5, 5.9, 6.4, 7.0, 6.7, 6.2, 6.6, 6.8, 7.5, 7.4, 8.0, 6.2, 7.2, 6.9, 6.2, 8.2, 6.0, 7.4, 8.3, 6.6, 6.4, 6.8, 5.6, 6.0, 6.4, 6.8, 7.0, 8.9, 7.1, 7.4, 6.9, 6.6, 8.4, 7.1, 8.7, 7.3, 8.3, 8.2, 9.0, 10.9, 8.6, 9.6, 7.3, 12.0, 6.0, 6.9, 7.4, 5.8, 5.6, 5.7, 6.7, 6.1, 10.6, 8.2, 7.3, 7.2, 6.4, 7.4, 7.9, 6.7, 6.8, 9.9, 6.4, 7.2, 5.0, 7.5, 5.3, 6.9, 5.6, 7.2, 6.9, 6.1, 6.9, 7.3, 7.0, 6.6, 7.4, 6.3, 8.0, 7.4, 11.6, 8.9, 7.0, 6.9, 6.4, 6.5, 10.4, 6.7, 5.6, 5.5, 10.6, 8.8, 6.9, 7.4, 7.6, 7.2, 6.0, 9.1, 5.8, 7.5, 7.0, 6.5, 6.0, 5.1, 6.7, 6.9, 7.4, 7.9, 7.3, 7.8, 8.5, 6.6, 6.7, 6.1, 7.3, 7.0, 6.0, 7.7, 7.4, 6.3, 6.0, 6.6, 7.1, 6.8, 6.4, 7.0, 5.7, 5.1, 7.4, 5.7, 7.7, 6.7, 6.6, 6.4, 6.8, 7.1, 8.0, 6.0, 8.0, 12.4, 6.6, 7.3, 7.0, 6.1, 6.6, 6.9, 6.4, 7.9, 6.6, 7.5, 9.6, 7.2, 8.0, 5.5, 6.3, 6.8, 6.9, 6.6, 7.4, 7.6, 5.6, 7.0, 6.9, 6.9, 6.9, 6.7, 6.8, 6.4, 6.8, 6.0, 7.5, 9.0, 10.2, 6.6, 7.8, 13.7, 7.1, 7.0, 7.1, 7.7, 6.1, 8.2, 9.5, 7.4, 6.5, 8.3, 5.7, 6.4, 7.8, 6.8, 6.7, 6.7], \"xaxis\": \"x2\", \"y\": [0.33396714643252134, 0.5044440900554997, 0.8874896900044845, 0.4686759077780351, 0.23831547366416572, 0.571181601185031, 0.7785327680196316, 0.7290551099174598, 0.9581131370131553, 0.6801000322064107, 0.413367674560271, 0.6667140739211237, 0.9108229754863395, 0.9275086157065797, 0.9186958597750785, 0.7191871442695774, 0.8184457509658746, 0.8597940676688322, 0.7947045908306632, 0.8244149680645384, 0.42771531534877594, 0.5315376696882942, 0.7136291946100958, 0.5510697799054304, 0.6393262665313312, 0.9016582766249417, 0.8560880110261746, 0.8947361144883382, 0.9102326114023062, 0.840723585394272, 0.9264645566705582, 0.5105903360131552, 0.752648770317166, 0.5855954083225455, 0.8989214048388485, 0.5190750352404293, 0.9560713253502463, 0.7273157243430202, 0.9279672131348602, 0.640103147954212, 0.9158977434209615, 0.9035955072010529, 0.7140955379655831, 0.233508355491505, 0.7280578325574358, 0.8810827811902006, 0.3966129217085586, 0.15541760955422754, 0.5851621750323275, 0.9046111951917862, 0.4177213302712193, 0.7993763114768937, 0.6978409661933959, 0.6473373667551029, 0.770784382977056, 0.6500641275496193, 0.548949563093737, 0.9803199442553986, 0.6150775052067382, 0.391333092160729, 0.6966682278280982, 0.9426748402861506, 0.9170092977635526, 0.844625652038695, 0.5621782696252592, 0.8935808323282117, 0.6792214086077275, 0.6719996755401956, 0.5252591274442797, 0.7277045758687855, 0.4685752957996948, 0.8616549355667619, 0.347491516391863, 0.8224130863808733, 0.5340790568488665, 0.6711667658766297, 0.5277539611022016, 0.7226430813715845, 0.8140972745487615, 0.3280236940194876, 0.9543080196225542, 0.7752655593026647, 0.9223925066666061, 0.8588031784191832, 0.6345107008491314, 0.9393010047953068, 0.7897067132703484, 0.8608062836413887, 0.8367885032124018, 0.38555642305179116, 0.8611944449682004, 0.9172341012895443, 0.9206892306522243, 0.9500505925695213, 0.537798347971205, 0.9173482789702866, 0.44454351342386716, 0.8909704850569525, 0.7351932580165473, 0.6818328744935735, 0.7981559962965634, 0.7626532952948841, 0.807353254900461, 0.964411205143099, 0.4685752957996948, 0.6986526320119215, 0.1956969407137045, 0.9233481403380283, 0.8218375601976645, 0.8536269727611236, 0.5637680470866036, 0.42267134533232753, 0.93003590801509, 0.9364808605729722, 0.8816060831574614, 0.9663102962713933, 0.8345570787709832, 0.4997893986747249, 0.7921603237806832, 0.5586815647381762, 0.8622246464681924, 0.9828719612298703, 0.909295720392338, 0.9476267884443668, 0.5395521774612226, 0.901360886913609, 0.39410444510430487, 0.9262213132200262, 0.6627387433216217, 0.9629433821448677, 0.9614311452267452, 0.9802968012486629, 0.933760787013923, 0.34432718187202205, 0.63596173557573, 0.624364378916488, 0.7417789548241253, 0.7300918276682445, 0.6968315453320488, 0.7840233885688647, 0.8958841271622066, 0.5417426694559925, 0.7102579146160282, 0.6004345411549624, 0.515920701757342, 0.7587882454650442, 0.5029588531082266, 0.6887596776945688, 0.8642849605932809, 0.6469572639767995, 0.8103639651534781, 0.939764354405301, 0.694136577696587, 0.6593725303534554, 0.9646797005081557, 0.7979900311745153, 0.792123904710467, 0.8869579700149332, 0.7351250317969437, 0.5332560471205093, 0.9406873315653421, 0.39362685027924615, 0.9466602521798594, 0.8394325033041952, 0.6633442657978572, 0.8126408700417265, 0.7332457619716184, 0.08024070404520958, 0.8667774471450977, 0.6466814331404849, 0.912366876100516, 0.656670904734599, 0.8701678467707724, 0.8875925797813499, 0.9658725076002231, 0.7668332861852056, 0.8604440887473094, 0.934384507524058, 0.9605946056867319, 0.951253157591183, 0.5749289095213865, 0.6279243005170476, 0.7937202818717513, 0.7665301650725991, 0.700127941221274, 0.8531107444728586, 0.7947045908306632, 0.8870566665876504, 0.5476228787844645, 0.8410401833568673, 0.8736671065238262, 0.6519898659949606, 0.936943112068646, 0.9077719201719568, 0.8071889556778997, 0.8815615400732472, 0.8935313268029127, 0.8782891297971865, 0.5029588531082266, 0.5797201450332624, 0.9416775458320723, 0.5958140198486584, 0.2485157288688957, 0.932021424688801, 0.8531502837407814, 0.6344194678828672, 0.632587077283238, 0.9121448358615357, 0.5776545535910985, 0.9052765174806566, 0.8580390107418799, 0.8998644401112552, 0.6784536879503494, 0.9458342431661766, 0.21387363850783603, 0.9530348339880965, 0.7307391114165022, 0.7187682731289255, 0.6905635603269331, 0.9569274903702625, 0.9287384091375525, 0.3856984054091925, 0.504413920551941, 0.5389739198483336, 0.5921068831639978, 0.10702848140489757, 0.8772993497727819, 0.6361944011057532, 0.8952999713010865, 0.7069578609115064, 0.10632960186243966, 0.6465592619811017, 0.9116333268133815, 0.9210441535829985, 0.9483358221641291, 0.5800224234700003, 0.896951343689222, 0.8958659323404018, 0.8896861436466836, 0.7763142135369961, 0.778627444633172, 0.9274605647284293, 0.9167924025380936, 0.6422094408272838, 0.6363725079258666, 0.8694129796739031, 0.5693182102579236, 0.5315376696882942, 0.6814536952243052, 0.30089534057709466, 0.6689448970920832, 0.6419522618821227, 0.6500641275496193, 0.8221968069187356, 0.9285763346020383, 0.8495153837633861, 0.7135666997345446, 0.8850789772017983, 0.9128367188568884, 0.8709442503982084, 0.44714680104169846, 0.7147831401969469, 0.6814536952243052, 0.5823319261018008, 0.7718122970862826, 0.8925058444773368, 0.9249991097277733, 0.7849066379312727, 0.5120166815330335, 0.7863291630268572, 0.8171821177205619, 0.8878235148823457, 0.9813953955585096, 0.5009899161211654, 0.6787020040856314, 0.2747106808400709, 0.6998114428322438, 0.7191783799678735, 0.7566715075843347, 0.7741630673610131, 0.692871858980435, 0.8706970297938403, 0.9226518689226377, 0.619213859232465, 0.9620625840847012, 0.8161066853745392, 0.7984578805051198, 0.8987836568806694, 0.27900511725120763, 0.747868261422589, 0.8013372150606806, 0.4430395412241901, 0.8082746512504794, 0.9248395818955686, 0.8132668978866627, 0.7926355964369082, 0.7243101498981422, 0.8251498778038484, 0.865753667016409, 0.8784859927081519, 0.9613966942665844, 0.8380103992838959, 0.9376908870460701, 0.8505645904112248, 0.5317253080143199, 0.8756470416862959, 0.8823120896825394, 0.8920529250761863, 0.9565288857220365, 0.92576324319171, 0.8397457208604353, 0.8008835764985612, 0.7620555647282774, 0.6333567796033132, 0.8986985644274655, 0.8289197139212982, 0.38568054861828666, 0.4358764146033148, 0.7013568331933456, 0.5524769805317635, 0.8654015550049637, 0.9625385348003681, 0.4997035751430624, 0.5940434106189647, 0.29640429037896177, 0.9370396801623051, 0.7496358493500708, 0.8521916566704996, 0.7519935213994349, 0.8956127660014477, 0.7563308848917781, 0.5425355780301907, 0.1652985164032473, 0.5777375433929663, 0.5926841497777402, 0.5247451599628447, 0.6215406511606532, 0.646742228322253, 0.5236567091352762, 0.8105889943537302, 0.7614647275399787, 0.7272264480694343, 0.44438282424164377, 0.8051848688934031, 0.253979247575754, 0.8737269176380216, 0.7884186533408385, 0.5226162157005312, 0.7776146375974927, 0.8021344726910251, 0.6794204065079696, 0.8398669626756513, 0.3743394998756179, 0.6593725303534554, 0.41008410759983227, 0.8726624594592295, 0.31336232876890546, 0.6187135046228962, 0.9208146539756937, 0.8948907807194619, 0.9475948217130945, 0.7098971478357265, 0.41970311630379203, 0.5524505095188592, 0.6689295490636696, 0.39534528644804523, 0.6686700461744643, 0.6608417181144597, 0.6289006219381473, 0.8112353209803558, 0.9675531845963172, 0.3468688843876404, 0.8171815196180959, 0.9315945487332388, 0.7612383340144859, 0.43979370974717685, 0.9452166580978265, 0.810349906376065, 0.4979189466877109, 0.9054024939516333, 0.7506263221664519, 0.8595966107872783, 0.9041757536760852, 0.5120166815330335, 0.9246344940597735, 0.622364539475366, 0.7975959936185795, 0.9376528402833735, 0.8270495791839716, 0.7463426393970082, 0.8508295060861325, 0.5277539611022016, 0.7926521549058593, 0.8343380415579561, 0.7973631232158779, 0.5423298306356671, 0.6253812669856891, 0.9342151247863544, 0.9064095870896521, 0.8428584418618921, 0.5680191878381406, 0.8230633503438987, 0.857993972512287, 0.8312116035859974, 0.8886868130574391, 0.5695902702544526, 0.8750573328895943, 0.47134086624147714, 0.6082670858563528, 0.8571520978358925, 0.7006810412396262, 0.6001343818465046, 0.8680196363335714, 0.7833148206731655, 0.835330250744176, 0.6883000602161935, 0.4297997702781997, 0.7132181587745201, 0.941909753873568, 0.9298379484442667, 0.8950633078112005, 0.9652574497835966, 0.8593048115498744, 0.23022113319019433, 0.5548683876071567, 0.8789570823277312, 0.7176343272433334, 0.7135972690872326, 0.900955402304434, 0.89110615578316, 0.8021344726910251, 0.36734125225010755, 0.9233813125795639, 0.9269988231022361, 0.6021478506882372, 0.27064660283581765, 0.7595966254948197, 0.5317253080143199, 0.9626288904553877, 0.518871521713375, 0.4244151934213653, 0.8784852709235653, 0.667697582798242, 0.6791650855490978, 0.8659372985570389, 0.5217980090164113, 0.9757802673562255, 0.20769640873195563, 0.6900575067285889, 0.15051833553221247, 0.8476988333501053, 0.12043274000614122, 0.6546311715671466, 0.412102187638673, 0.6339696776630096, 0.6925917751558638, 0.8074446941396305, 0.8417042066658985, 0.4702054036006336, 0.8107456318417504, 0.934253622333564, 0.9671353887875448, 0.3776875782453083, 0.5133306968464912, 0.8279918435672958, 0.7295730380004212, 0.8398957027397556, 0.7470826509089123, 0.7722124156410631, 0.3944809481034696, 0.5801047158883857, 0.7134138458261836, 0.8265590446981121, 0.5836238058504062, 0.7538957359152121, 0.9708936701567454, 0.41507295289487073, 0.9039211350062085, 0.5109703825452502, 0.8880660412534, 0.6332514250278477, 0.703270618172154, 0.863031725372896, 0.9601349291832292, 0.5845797646527732, 0.8357575010967041, 0.9584406458449958, 0.8733333206292072, 0.4740801794177068, 0.5787650908025566, 0.38525623454815555, 0.5715075300165849, 0.951253157591183, 0.831291834366621, 0.6482062646591596, 0.5447536045265621, 0.8456825404777587, 0.5358725178581014, 0.8893400405584444, 0.5955893395860203, 0.9408369636189147, 0.7580589814818564, 0.4244151934213653, 0.7636885291754726, 0.9532052815091139, 0.6686700461744643, 0.39683939049776734, 0.8309978518015588, 0.06774730328187532, 0.8934061610794648, 0.9459413258233057, 0.8507977517004935, 0.9694554821790147, 0.8640493534313302, 0.8409166048571896, 0.9059760843724536, 0.7278052027863667, 0.8952246802917138, 0.39534528644804523, 0.9558702864115934, 0.9178754126151818, 0.7504628435478695, 0.7568870052952757, 0.32046258648166903, 0.9712495894387816, 0.7125870341029702, 0.8286889773580812, 0.929575727770858, 0.8422483936479932, 0.60065365322741, 0.5775074082600717, 0.7505976846167132, 0.5317253080143199, 0.9590110623565244, 0.9651712957082627, 0.7333643603414158, 0.7757825668725274, 0.8928390517037824, 0.2578168736401774, 0.5355488836719776, 0.8408692583280314, 0.7849780542174357, 0.8711681462620556, 0.8447990405440073, 0.9571933326515756, 0.9307123551507692, 0.6421242495412457, 0.9239207054420927, 0.9336219461922934, 0.4244151934213653, 0.5673643045526261, 0.8301442064454496, 0.528471943574542, 0.8835542071774324, 0.8820947700128993, 0.4561713647735051, 0.584381944856391, 0.9493936477483658, 0.7816316980556022, 0.7770145472448273, 0.8495153837633861, 0.8318035560268552, 0.5220388622338656, 0.8589980209217414, 0.21216021099657945, 0.8782303617207965, 0.901850575196968, 0.7683760396387002, 0.9559989503713009, 0.938411491366706, 0.7225398931917507, 0.5918361617892179, 0.8596378534897678, 0.8816239240572568, 0.9296844522785247, 0.8299758417251202, 0.7538846798551382, 0.931253582726863, 0.6902425303942638, 0.9299571155275668, 0.35461708236434614, 0.6119587629530028, 0.8979450471026776, 0.8782891297971865, 0.6144930729026484, 0.5601837238662909, 0.4230258756549153, 0.5115702372514986, 0.6133200318312215, 0.8287048127179734, 0.42887934024879554, 0.5543929044930882, 0.5414149972460248, 0.7453725251924848, 0.6522898344923613, 0.6445138145159856, 0.9212190995841192, 0.6991293681294938, 0.9188224881967051, 0.9444881948020799, 0.8399825546316605, 0.6440269003431431, 0.45260210695563535, 0.6678228102737954, 0.8535669746933884, 0.23469888428232324, 0.7581156815660375, 0.8329520097124233, 0.5886389680190937, 0.4250130050586104, 0.290761161529129, 0.9065968169685268, 0.39757013049667705, 0.9584529405260903, 0.24804178200132845, 0.8400605958344816, 0.9562762484868867, 0.5923100188758571, 0.5355488836719776, 0.6866862751474886, 0.753715093249364, 0.9302702282582556, 0.8405005145861136, 0.7758456574858743, 0.8270123797965384, 0.9270997487744173, 0.8779999285967196, 0.6350604679157676, 0.9057987369792326, 0.9732730617650076, 0.28007269673131574, 0.5393237551960537, 0.9509318156255189, 0.8055358405733448, 0.8512314640165554, 0.6752183046546253, 0.9766791413071304, 0.26893819095773785, 0.5105552073939665, 0.7964242570425004, 0.9159462749375985, 0.46312559485344046, 0.7889853219989779, 0.5331772070153998, 0.6250130361556073, 0.5340700079782073, 0.8981158701031157, 0.8424802355113449], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [7.3, 6.4, 7.5, 5.6, 6.9, 6.8, 6.5, 9.1, 9.0, 12.7, 7.6, 7.2, 6.4, 7.3, 6.7, 6.8, 6.8, 11.9, 6.6, 6.4, 6.8, 8.0, 6.3, 6.5, 6.6, 7.4, 7.2, 7.5, 5.3, 7.0, 7.5, 5.3, 8.1, 8.2, 6.9, 5.9, 9.8, 7.5, 7.0, 6.0, 8.6, 7.5, 6.9, 7.0, 6.4, 6.5, 8.3, 8.3, 6.0, 7.4, 6.2, 7.5, 9.0, 8.0, 7.7, 7.9, 7.4, 15.6, 7.6, 6.9, 15.5, 8.1, 6.3, 10.0, 7.0, 6.8, 8.5, 7.4, 6.8, 7.3, 6.6, 5.6, 4.9, 8.8, 6.6, 7.1, 7.2, 7.0, 6.2, 8.0, 7.6, 9.2, 6.0, 7.9, 8.3, 8.2, 7.9, 7.8, 6.7, 7.5, 6.3, 7.6, 9.3, 7.7, 6.9, 7.6, 8.0, 8.9, 6.8, 6.3, 10.0, 9.4, 6.8, 6.5, 8.9, 7.0, 9.0, 6.0, 6.0, 7.6, 7.9, 7.1, 6.9, 6.9, 9.6, 8.9, 6.6, 6.6, 6.4, 8.4, 5.8, 6.6, 7.0, 7.8, 7.2, 7.5, 5.7, 11.8, 7.2, 6.8, 6.9, 6.6, 7.7, 8.8, 7.1, 7.2, 6.9, 9.0, 7.2, 6.5, 7.9, 8.3, 8.6, 8.4, 9.5, 7.4, 7.9, 6.4, 7.9, 6.9, 7.2, 7.9, 7.1, 7.2, 7.0, 7.2, 6.1, 6.8, 6.9, 8.0, 8.4, 6.6, 7.1, 7.6, 7.4, 7.7, 5.9, 6.7, 6.6, 7.4, 6.6, 7.2, 7.1, 6.6, 7.9, 5.8, 7.0, 6.8, 6.6, 6.1, 8.0, 4.2, 11.9, 6.4, 6.8, 7.5, 6.3, 6.8, 7.8, 6.2, 7.2, 8.2, 7.7, 7.0, 7.2, 7.3, 7.8, 5.6, 7.1, 6.8, 6.8, 6.2, 6.4, 6.9, 7.1, 7.2, 6.8, 10.0, 6.4, 7.3, 9.3, 5.8, 6.7, 8.5, 6.0, 6.7, 6.4, 8.8, 7.1, 6.5, 6.9, 6.7, 8.3, 6.4, 6.8, 6.1, 7.6, 7.0, 8.2, 4.9, 6.3, 7.6, 6.5, 9.2, 8.4, 6.7, 5.5, 6.1, 7.7, 7.4, 6.2, 7.2, 7.9, 7.1, 7.0, 6.0, 7.5, 5.7, 8.2, 6.4, 7.5, 6.8, 9.4, 7.5, 6.5, 6.5, 7.1, 6.8, 7.2, 10.8, 6.5, 7.2, 6.4, 6.4, 8.2, 6.4, 7.1, 6.2, 6.2, 6.4, 7.1, 8.3, 7.9, 6.7, 9.2, 6.0, 7.4, 7.0, 6.7, 6.8, 8.3, 6.1, 6.9, 5.8, 8.9, 6.0, 8.6, 6.0, 7.8, 9.8, 6.4, 5.2, 7.2, 7.2, 6.4, 9.3, 6.3, 6.4, 6.2, 8.9, 6.6, 13.0, 6.2, 6.8, 7.0, 6.4, 11.1, 7.4, 8.1, 6.4, 7.5, 6.4, 8.2, 7.1, 7.6, 7.2, 7.6, 6.7, 6.2, 5.4, 11.0, 6.3, 5.7, 6.6, 8.9, 6.8, 6.3, 12.2, 6.6, 4.9, 7.6, 6.4, 7.2, 6.3, 7.6, 7.2, 5.8, 6.8, 6.5, 7.3, 6.9, 9.0, 6.8, 8.0, 10.4, 8.1, 8.3, 7.3, 6.5, 7.6, 7.0, 7.1], \"xaxis\": \"x2\", \"y\": [0.8142007211296887, 0.07257977436397642, 0.7430932382113554, 0.8214862427787604, 0.5698848321031316, 0.6048119589659149, 0.6466669219762841, 0.14510080060429495, 0.2250304680670007, 0.28492472637839966, 0.42061632734231896, 0.8281252124183194, 0.49622399336621903, 0.3482895521074759, 0.4678833354511545, 0.5708968386647719, 0.37048677721847617, 0.553632248395139, 0.8702137350251022, 0.42186952587750404, 0.8696774950675754, 0.5410576963494411, 0.3971326977900686, 0.3275001196198921, 0.9448289227093116, 0.7109941475090589, 0.41925580570138304, 0.3675472469853882, 0.6721911818800557, 0.5562207270314473, 0.5262426608517637, 0.3244609607385458, 0.15056615442564347, 0.15676979724311627, 0.6037730696030339, 0.6342511279653397, 0.021947035536558718, 0.32429164429335744, 0.5678746850743716, 0.3571680467137555, 0.7755534309390314, 0.3240287891037917, 0.699424662214302, 0.5151532452376618, 0.7564675819717819, 0.38343591026479057, 0.19811005648518398, 0.3168419703358067, 0.5315947262677626, 0.9269044449273315, 0.8260225289794664, 0.451791899378283, 0.830516920403184, 0.47128602930186, 0.19027823806377472, 0.5181346713949518, 0.29552777318700446, 0.45414400334446664, 0.39329840463575844, 0.42327932510626076, 0.45838907164509224, 0.2233864252642039, 0.3628419195926303, 0.6709353200988277, 0.46058046365566996, 0.25551237833043455, 0.7234147543269824, 0.1481282262733752, 0.314935793994079, 0.20050531530561894, 0.37453315488553635, 0.701015529968035, 0.6343341418527783, 0.1739320900588749, 0.734996253073231, 0.8172229478314255, 0.3598554146739685, 0.7121055211356295, 0.2620604909731644, 0.3421138035730516, 0.6951268813066005, 0.35208221297891723, 0.452099210446082, 0.18907620085798427, 0.5444201651108793, 0.6484058972837882, 0.3258186925596978, 0.5963383680780668, 0.6202666247822538, 0.576738593946626, 0.5054992484109841, 0.2972245631729925, 0.6844333356791464, 0.42629475072919953, 0.4405153833121037, 0.01207867704715336, 0.7609288944606691, 0.23951123982998349, 0.09310514674080905, 0.5084920166510624, 0.33067609257366243, 0.36481899584296196, 0.5708968386647719, 0.3194802059637459, 0.14207297841267416, 0.5776897120055972, 0.2026163425795633, 0.37909000048748537, 0.38206764842015895, 0.41324683104354176, 0.17826143731067332, 0.42339414872454434, 0.39148091864802853, 0.3511350413575442, 0.8053393751847749, 0.5937005322868365, 0.6849942580153355, 0.38930033076762494, 0.5168500865319015, 0.5699073288866824, 0.5376087249833421, 0.8185832461647057, 0.25950508036415604, 0.20394483716883388, 0.3303044530853749, 0.2528102968078532, 0.8477719856767125, 0.5217124250004609, 0.3303044530853749, 0.5382885532339231, 0.9625763866028243, 0.6536174904341296, 0.42629475072919953, 0.6458781618432388, 0.46574001023909845, 0.37268733756108086, 0.8180085473348132, 0.35493594975273335, 0.2423640089427935, 0.3636330633241046, 0.6421622311157122, 0.5444201651108793, 0.7396308412796291, 0.9036153464846048, 0.21101569987323432, 0.6004024464464508, 0.7595861882737439, 0.486549602332862, 0.2379839758891197, 0.5147825233229498, 0.2065932277190248, 0.4342628292980428, 0.5940848250235929, 0.4857193175270624, 0.5332610244722983, 0.5402196969638672, 0.8578846895389459, 0.5290225674595067, 0.6074669506688956, 0.1847839155105034, 0.3581391437324269, 0.4304380754474639, 0.8410120374942113, 0.5810086483513661, 0.19026233744636453, 0.7223494520380469, 0.8589928738613049, 0.8374625942163022, 0.781203852328267, 0.73983195178881, 0.41156537259256004, 0.7482873396984137, 0.44431713201158524, 0.7113673874393347, 0.49869552495399233, 0.7627102864663872, 0.37193390769028617, 0.37187810520956766, 0.3773291605703562, 0.8719651627687759, 0.6218762459828849, 0.3781393537983126, 0.553632248395139, 0.47624084907999176, 0.774399353278846, 0.5840424935194366, 0.5601025471409736, 0.6186690618327106, 0.620611700356168, 0.5755798886129706, 0.15047650536569443, 0.5530049338021776, 0.6597439619439023, 0.8300222117931148, 0.3490158529243493, 0.4410646109528086, 0.5067909967309752, 0.5851482063434866, 0.7149827463187939, 0.4849259975950144, 0.2094210588097294, 0.33399024531412796, 0.4083143545243069, 0.7497022835596558, 0.7817929239213606, 0.7637421953724776, 0.3825655414920891, 0.6611482494098961, 0.19022241257108333, 0.44972084577511023, 0.5476732603321269, 0.4831274653996314, 0.5077048340566679, 0.7289504589448288, 0.4379810490617926, 0.8017221455714771, 0.6434673631716396, 0.5059779734745421, 0.6065367192264559, 0.650368705032214, 0.34567471266024347, 0.39561589000187136, 0.3427787545601037, 0.4676404271158623, 0.5332283386400669, 0.4519108142444285, 0.40662831629925006, 0.42305576187259053, 0.22032895172816622, 0.5278715769330472, 0.43679486629948455, 0.743933429392776, 0.5269515041023835, 0.5008800654866953, 0.214168174561682, 0.44879088851457377, 0.683485355417811, 0.807753104897186, 0.42629475072919953, 0.8502951424821861, 0.17421175568219957, 0.25491371883486935, 0.7595861882737439, 0.6571724132942184, 0.7813188949129265, 0.5626906653340306, 0.8674288259883418, 0.6600514650598344, 0.4827749661719035, 0.5456147119159479, 0.39827550056677263, 0.27323823737433794, 0.695896529362927, 0.5048820477254727, 0.5422349097465021, 0.5610936746718964, 0.6571724132942184, 0.3088751107498249, 0.45428761266464013, 0.6604471727860799, 0.43371621376298963, 0.6171893197168647, 0.8100511550343341, 0.8100511550343341, 0.605832578461134, 0.5526475584669951, 0.4275055171336787, 0.8734720021260204, 0.8508295378350301, 0.5807723706867254, 0.8272749548927728, 0.2670652478909882, 0.7020144194675465, 0.4615566916191992, 0.7055847950248242, 0.43389869234556755, 0.6071692164257629, 0.3496825637352313, 0.23676491619791426, 0.7057755976874825, 0.15539001443149586, 0.6187538615870153, 0.8735882828904331, 0.30049486749739024, 0.23191705420611952, 0.8913917397916864, 0.4977157214618499, 0.16961113509580228, 0.8485494795219795, 0.4760032757956232, 0.5053843099270294, 0.2676015269871764, 0.3627664421236291, 0.15146266807038725, 0.7898179638281774, 0.6145296307645981, 0.3790380236797623, 0.3003532640340299, 0.6086112016774773, 0.39906793889171593, 0.8185832461647057, 0.6715802865662828, 0.8260225289794664, 0.6056902064850618, 0.400132762133902, 0.39471961640683584, 0.6449859309106076, 0.5637152910565628, 0.39949420960438964, 0.5490401551410112, 0.4398875418860128, 0.30916577334906253, 0.7093303227687476, 0.4562508424819209, 0.40444044759428516, 0.5773483646962835, 0.447777692034652, 0.4961542215384683, 0.32474312180562226, 0.21192693199409943, 0.9056903490933487, 0.5013816399998683, 0.758876109553896, 0.6364928148646596, 0.2952804752502578, 0.4748951900520853, 0.43679486629948455, 0.5479962315186364, 0.4728142838839701, 0.6343341418527783, 0.12248807650217919, 0.5052525886146573, 0.8281252124183194, 0.8930081609652758, 0.36283726088930296, 0.8098196742550625, 0.656477404357746, 0.193885049884708, 0.5269515041023835, 0.49858469647139786, 0.32780472036158087, 0.24927512797396847, 0.6148718578314069, 0.10691527318901187, 0.136775438340409, 0.8489192718114075, 0.2600203086082801, 0.8142007211296887, 0.5269515041023835, 0.7966615933629455, 0.5633234794197017, 0.767479452333631], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"fixed.acidity\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"fixed.acidity\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}}, {\"id\": \"fixed.acidity_bad\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (ref)\", \"type\": \"scatter\", \"x\": [7.2, 7.2, 9.1, 6.2, 9.2, 7.1, 5.3, 8.5, 6.9, 7.5, 7.0, 6.9, 7.3, 7.3, 5.1, 6.4, 7.8, 5.7, 6.6, 8.2, 6.1, 7.4, 7.5, 8.8, 7.0, 7.8, 5.9, 9.7, 7.5, 6.2, 7.0, 7.8, 5.8, 7.1, 7.4, 9.1, 8.5, 6.3, 10.2, 6.6, 6.9, 8.2, 5.7, 7.1, 7.1, 5.7, 5.3, 6.7, 8.2, 6.6, 9.9, 6.3, 6.6, 12.3, 7.4, 7.6, 8.0, 6.5, 6.5, 11.5, 6.3, 6.5, 6.7, 6.0, 8.5, 5.8, 6.7, 7.7, 6.7, 8.5, 7.4, 8.6, 7.4, 7.0, 6.4, 6.6, 6.2, 7.9, 7.5, 7.7, 8.2, 6.9, 6.1, 6.9, 7.7, 9.2, 6.1, 6.5, 7.1, 7.0, 8.6, 5.8, 8.4, 7.4, 7.4, 6.6, 6.4, 9.2, 6.4, 7.7, 7.2, 7.6, 7.1, 7.6, 7.8, 7.8, 5.9, 5.6, 6.2, 6.5, 7.4, 7.2, 6.2, 5.5, 7.1, 6.7, 7.2, 5.2, 10.6, 7.1, 5.8, 6.3, 6.7, 6.9, 7.1, 7.0, 6.8, 8.7, 7.7, 7.1, 10.3, 10.1, 6.4, 6.6, 9.4, 7.1, 8.3, 6.4, 7.8, 7.9, 6.8, 6.5, 5.8, 6.4, 7.3, 5.7, 6.2, 6.4, 9.4, 7.5, 7.2, 7.1, 7.6, 6.7, 6.9, 8.1, 11.6, 5.9, 7.2, 6.4, 8.3, 9.6, 12.5, 6.2, 7.2, 7.3, 6.5, 6.4, 7.2, 6.6, 6.9, 5.1, 7.3, 8.2, 7.8, 7.1, 7.3, 7.0, 7.3, 7.0, 6.0, 8.1, 5.8, 8.9, 7.5, 5.9, 9.8, 7.5, 6.6, 7.3, 6.5, 7.7, 6.4, 6.0, 6.3, 7.5, 7.5, 6.7, 7.4, 6.1, 5.6, 9.9, 9.9, 10.0, 5.9, 7.2, 6.1, 9.9, 5.6, 5.9, 7.5, 5.1, 6.7, 9.8, 6.6, 6.6, 7.1, 6.4, 8.0, 9.8, 10.0, 5.5, 7.5, 8.6, 6.4, 7.4, 5.3, 8.5, 5.9, 7.3, 6.4, 9.6, 7.0, 7.2, 6.8, 7.5, 6.1, 5.7, 6.6, 6.8, 10.8, 7.0, 6.7, 6.4, 5.6, 11.3, 9.3, 6.8, 6.6, 9.1, 9.8, 7.6, 5.8, 7.3, 7.6, 7.9, 7.2, 6.7, 9.2, 12.3, 7.1, 6.5, 6.9, 6.4, 9.3, 6.4, 5.8, 5.6, 6.1, 6.6, 7.5, 6.8, 7.8, 6.3, 6.2, 6.7, 7.0, 7.7, 6.6, 5.9, 9.9, 6.4, 8.9, 6.8, 6.3, 7.2, 9.5, 5.9, 9.2, 6.7, 7.5, 9.4, 7.1, 5.3, 8.6, 9.9, 5.8, 6.3, 7.7, 9.2, 5.6, 7.4, 9.0, 6.5, 9.4, 8.7, 6.1, 6.3, 10.6, 7.0, 6.4, 6.1, 6.4, 6.4, 8.2, 7.5, 9.4, 9.0, 6.8, 6.5, 7.4, 6.2, 7.7, 7.6, 6.6, 7.1, 15.9, 6.2, 8.1, 6.4, 6.8, 9.1, 6.5, 6.9, 5.5, 9.9, 7.3, 10.8, 6.0, 6.7, 6.1, 6.3, 7.0, 9.1, 6.6, 7.4, 6.2, 8.0, 7.0, 7.0, 7.6, 8.0, 8.4, 5.6, 9.2], \"xaxis\": \"x\", \"y\": [0.7197707895473677, 0.05448058807241418, 0.5021256787650443, 0.4710854375480472, 0.7156076129280222, 0.7966690429773311, 0.7265425252145667, 0.16771266951545494, 0.610944103187451, 0.6324527530146118, 0.42180662537268765, 0.2598044700255929, 0.5503032830239416, 0.5632112185661304, 0.6840604465833231, 0.6224375641140001, 0.8071781895370533, 0.9515482366939344, 0.3994071349416132, 0.9677746238863042, 0.572587586261062, 0.7602674855798478, 0.861098734498427, 0.1386074727873, 0.6703360831713621, 0.8064003460928679, 0.3172728283240366, 0.8039094494444462, 0.9186426431335688, 0.6026275969807151, 0.8609701260317718, 0.3485833566260712, 0.3005246278528939, 0.2859113263741919, 0.4978204971029292, 0.5125675444128744, 0.4268860326359044, 0.11791793574572085, 0.440027850275134, 0.4938434408506086, 0.4933189622152446, 0.166194347192407, 0.30200278364192557, 0.6822425768461728, 0.8693180940701344, 0.24112389044610405, 0.43189370387303117, 0.284455178085937, 0.23793737479647703, 0.5535561322468214, 0.7900402576908969, 0.47373775892899717, 0.6055733033081183, 0.7462675017011632, 0.32245623572553406, 0.7612367841042231, 0.36308410170653527, 0.6103993963703384, 0.3965676277125745, 0.2230008284200371, 0.8480025164595866, 0.43585875500482685, 0.24095331994381775, 0.4030652094068704, 0.8951637220162157, 0.2782175630406618, 0.7337660836226194, 0.8352762102164887, 0.6223987562306759, 0.2928263700360406, 0.6563137004068428, 0.16155652477357085, 0.6364666355122575, 0.2186811050870735, 0.27206300237801306, 0.4358901152617537, 0.6136035252376228, 0.07900866299327158, 0.8522855318359817, 0.11906253414448076, 0.3466831105240652, 0.11265227152414181, 0.6302693732121377, 0.7168097665217413, 0.4796298258249143, 0.4476252306691143, 0.3612478268219491, 0.611861930499026, 0.15121036728507153, 0.5363393546692182, 0.16155652477357085, 0.441733396330222, 0.7834276811132227, 0.6364666355122575, 0.44873286860252337, 0.4948960601400133, 0.4172084246960842, 0.5055831714989107, 0.5269082808529498, 0.3737404408311804, 0.4491757516278906, 0.5266720849021, 0.2882430633103308, 0.6066213483726142, 0.83534933450756, 0.2509605867776752, 0.230738949997912, 0.25680675940048736, 0.6858999083789018, 0.27626495444752697, 0.35158671089680515, 0.311480105980391, 0.5950329577300569, 0.4196263877039489, 0.3672198477254309, 0.5488429300958864, 0.6273126624389191, 0.0990306898864649, 0.935036100419004, 0.5556828679884147, 0.6003916802566726, 0.1337843055401957, 0.6898191889393818, 0.46604488826349566, 0.6668872608045229, 0.5998672378660981, 0.14712454771937833, 0.8558065212045691, 0.883276495704891, 0.5544329747085402, 0.38398791005853006, 0.8623310715459079, 0.4482795971615686, 0.4767821080964978, 0.6451659669426603, 0.5099786295438409, 0.11454219273407718, 0.5691587732433696, 0.2398813672346335, 0.8592796956842923, 0.38133093816728936, 0.4754945767078651, 0.2673740541283356, 0.43092180164799054, 0.5981491184574936, 0.7512253043619477, 0.20474988026063612, 0.12337786436138054, 0.6965484670033051, 0.4642254518352117, 0.29034758521725457, 0.7912282271603185, 0.1364389858241727, 0.5326323768611896, 0.3938848007926149, 0.886984727126295, 0.5955398539691413, 0.3667393936023857, 0.35129461810907203, 0.578130474122496, 0.1952086434691429, 0.6982941690158907, 0.6159300986783536, 0.6650580695700093, 0.8007006003287879, 0.13750802167619447, 0.47121416359091395, 0.5691587732433696, 0.5295784007050042, 0.4938434408506086, 0.4240508430342457, 0.1531205555636086, 0.7965770364050346, 0.4829168465516456, 0.6333246955344933, 0.38682769986244625, 0.5589353890471914, 0.30965836575156913, 0.6133571507425741, 0.5363393546692182, 0.5474540697204298, 0.9680074395956593, 0.29703705077451537, 0.7566858385458134, 0.451244026180727, 0.6224939697452743, 0.9340693900855184, 0.1254375450851024, 0.770680513376406, 0.7273231109206828, 0.410671569380914, 0.19928392436820586, 0.44743622108127745, 0.4991477681643879, 0.5443787589855091, 0.826082779912576, 0.5642536294664222, 0.6762559922350657, 0.39283078357423706, 0.3074847569358159, 0.40732461839200396, 0.5614584986504241, 0.5614584986504241, 0.575628870274347, 0.1938881144566701, 0.6480440770440566, 0.23946299348505806, 0.6110142157087575, 0.32489046344192996, 0.127020290619695, 0.28948900574123104, 0.27970970921902805, 0.5179212029104148, 0.579807192000203, 0.5695619245525361, 0.7471497674522103, 0.6761943115269239, 0.6052803835931642, 0.9048996801452402, 0.632953623191418, 0.7849920634816455, 0.12946409768986655, 0.3899257470968539, 0.37735505673750047, 0.27206300237801306, 0.6356505945299911, 0.9000798247851504, 0.5852448485124296, 0.3537739535016634, 0.8589709040748648, 0.5105041430354158, 0.4760479563081992, 0.3915586115462193, 0.4344526143297297, 0.04825794875232026, 0.25106204840173363, 0.5352062615150248, 0.2084678736174792, 0.5588772074146924, 0.42656597432725707, 0.3395528272139201, 0.5154796814541086, 0.30312695461308037, 0.4684625037801391, 0.13140485141127656, 0.37575572516499556, 0.7087902803012941, 0.22740617784346517, 0.7932370230268412, 0.6977827466507267, 0.8687065743771458, 0.3532210556477622, 0.3005246278528939, 0.8817461779308045, 0.5897758288136841, 0.5117334773877459, 0.2267712913026929, 0.7462523759498982, 0.5055831714989107, 0.6276122794572256, 0.34766968675436505, 0.563322001169588, 0.4035281086421867, 0.44827723495654004, 0.7588644006503809, 0.17560197311170134, 0.2736156405730563, 0.5646478519097824, 0.12788772013874206, 0.8127608550985441, 0.35130933230290007, 0.8842329534318195, 0.5671758377024384, 0.508518787579709, 0.4735654621913231, 0.6614347321502836, 0.7032589073748752, 0.418601168771625, 0.40262233345395115, 0.38045938978299354, 0.6221728234115828, 0.6769388667590319, 0.825791915264051, 0.8036522945246104, 0.5350776523934957, 0.5038683203672731, 0.4187790963850706, 0.3942708224564714, 0.36585282612655, 0.42973128126448334, 0.1395024853671747, 0.36909778672938764, 0.5126700875045708, 0.31128511290513083, 0.5841805470690385, 0.42932394036482613, 0.5168725346003686, 0.9331527243268325, 0.5090935678835011, 0.848083892739094, 0.7288594688776423, 0.23463814542978878, 0.9073343486287574, 0.5445649372592127, 0.8030108083542629, 0.30698149193503155, 0.47724620771884374, 0.49565431290071005, 0.29179072192325783, 0.53941953634433, 0.32642767658125227, 0.5714063949384225, 0.6769388667590319, 0.48314991346809855, 0.3838692085325581, 0.7654355578102645, 0.6807995217458978, 0.7803105409218809, 0.4971816769068883, 0.5662837862370104, 0.32557907866588853, 0.4059739580227363, 0.8621668957327787, 0.4863555612469991, 0.44913520001249685, 0.5044088987161788, 0.018560580499064172, 0.17397747102053363, 0.8203404366189, 0.531551035274026, 0.3951880410340851, 0.6710839680909022, 0.7545393605546251, 0.25029771644034415, 0.31651464458218903, 0.7900402576908969, 0.7649542174153934, 0.6282404390050247, 0.5124469561170844, 0.7501741577575001, 0.3717170374651112, 0.5479204837841629, 0.1799627586960565, 0.8716748635647116, 0.4700369344869263, 0.7044722268129955, 0.7597806244765397, 0.4570971226262448, 0.3688130253756654, 0.5854022956087224, 0.6067015953642416, 0.6092966434658947, 0.5713009051869427, 0.15316343939585397, 0.31191498773739224], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [7.0, 7.3, 7.5, 6.3, 6.3, 7.0, 6.5, 5.6, 6.9, 5.8, 8.1, 7.7, 6.2, 7.3, 6.8, 6.6, 7.3, 15.6, 5.2, 6.2, 8.0, 7.7, 6.3, 7.3, 9.0, 6.0, 5.3, 7.8, 7.1, 6.2, 6.3, 7.3, 7.2, 5.8, 7.2, 7.7, 7.7, 5.9, 6.7, 6.5, 6.0, 7.2, 7.7, 7.4, 8.1, 6.8, 8.2, 6.2, 9.4, 6.8, 7.0, 6.6, 6.0, 6.3, 14.2, 6.8, 5.9, 6.0, 7.6, 5.9, 11.1, 5.9, 7.1, 6.6, 12.6, 8.3, 6.7, 7.4, 7.0, 6.7, 7.0, 6.2, 6.4, 7.9, 7.4, 7.0, 7.9, 6.5, 8.2, 6.9, 5.7, 6.3, 8.3, 9.1, 8.0, 7.8, 7.3, 8.6, 6.9, 10.8, 6.4, 7.7, 8.8, 6.6, 6.1, 5.0, 6.3, 5.9, 6.6, 7.3, 8.3, 7.3, 9.9, 7.5, 7.2, 6.4, 5.2, 7.9, 6.7, 6.7, 8.0, 7.9, 6.9, 7.4, 5.6, 6.7, 5.9, 6.0, 7.1, 7.2, 6.8, 6.3, 9.2, 7.8, 8.1, 7.5, 6.8, 6.7, 6.9, 7.3, 7.0, 5.0, 7.3, 8.2, 7.7, 5.0, 10.1, 6.6, 7.1, 9.5, 8.0, 5.9, 6.8, 6.9, 10.8, 7.4, 7.2, 5.8, 6.7, 7.3, 7.0, 12.0, 6.7, 6.2, 6.6, 6.4, 5.9, 7.8, 7.4, 6.1, 5.9, 7.5, 6.4, 7.9, 6.1, 7.2, 7.1, 6.3, 7.8, 5.2, 10.2, 7.8, 6.2, 8.5, 7.6, 6.4, 7.8, 6.0, 6.2, 7.4, 6.0, 6.8, 7.9, 6.1, 6.2, 5.6, 5.5, 11.1, 5.9, 6.4, 6.6, 5.6, 5.0, 7.0, 7.1, 7.8, 6.1, 8.4, 6.8, 8.5, 7.7, 6.4, 7.1, 8.4, 6.7, 8.2, 8.2, 8.1, 7.3, 8.0, 8.2, 6.5, 6.5, 6.0, 6.9, 6.6, 6.6, 7.0, 7.5, 6.6, 6.6, 6.6, 7.0, 8.3, 7.1, 7.0, 7.1, 7.1, 7.7, 6.1, 6.0, 6.6, 6.3, 6.9, 6.7, 4.8, 6.4, 6.6, 6.3, 7.1, 8.9, 7.2, 7.2, 6.4, 7.0, 7.0, 7.7, 6.5, 6.3, 5.8, 8.0, 7.4, 10.8, 10.1, 10.7, 6.4, 6.5, 6.6, 7.3, 9.8, 7.4, 6.3, 6.1, 7.2, 7.0, 6.2, 7.3, 9.1, 6.5, 5.2, 6.0, 6.4, 6.7, 6.0, 5.5, 6.7, 6.7, 9.1, 5.6, 7.1, 7.8, 7.6, 5.1, 5.8, 8.0, 10.8, 6.2, 7.8, 7.7, 7.3, 5.6, 7.9, 8.3, 6.2, 6.0, 6.1, 7.1, 6.7, 5.7, 6.8, 6.6, 5.9, 5.7, 6.0, 8.4, 7.2, 8.5, 7.1, 7.2, 6.6, 7.2, 7.3, 5.9, 6.1, 7.1, 13.4, 8.3, 6.0, 6.4, 5.9, 5.8, 6.1, 6.8, 6.3, 7.3, 7.0, 7.4, 8.8, 7.4, 6.4, 5.1, 8.1, 11.4, 5.6, 6.8, 6.9, 7.0, 7.2, 6.2, 6.8, 6.5, 8.8, 5.1, 6.5, 7.2, 8.1, 7.1, 8.2, 5.8, 7.3, 6.8, 7.7, 6.7, 8.3, 6.8, 6.3, 8.4, 6.2, 11.5, 6.9, 7.4, 6.2, 8.9, 7.2, 7.2, 6.6, 6.2, 6.2, 9.2, 7.2, 5.8, 5.6, 7.7, 9.2, 6.6, 7.0, 5.9, 8.6, 7.4, 9.0, 10.0, 7.5, 8.3, 6.5, 6.9, 7.5, 10.2, 6.1, 7.7, 6.8, 6.1, 6.0, 6.7, 6.3, 7.0, 6.0, 7.7, 6.8, 5.0, 8.0, 7.4, 6.7, 6.1, 7.0, 7.4, 5.7, 6.8, 7.4, 6.1, 6.5, 6.6, 6.4, 5.7, 6.6, 7.1, 7.0, 6.3, 7.1, 7.7, 7.5, 7.5, 6.9, 5.9, 7.0, 6.1, 5.8, 8.0, 7.4, 6.7, 8.0, 7.7, 6.6, 6.4, 5.5, 6.9, 4.4, 8.3, 6.3, 6.9, 11.1, 6.4, 6.8, 7.4, 7.5, 6.9, 6.3, 7.2, 6.7, 10.5, 5.9, 6.8, 6.1, 5.8, 7.3, 7.4, 12.0, 6.4, 7.1, 6.4, 6.2, 11.1, 7.6, 11.5, 8.0, 6.4, 7.3, 6.2, 6.7, 7.3, 8.9, 8.3, 6.2, 6.5, 8.7, 5.7, 6.5, 7.0, 6.7, 7.5, 7.3, 6.2, 6.5, 6.6, 6.3, 6.5, 7.7, 7.5, 6.6, 5.7, 6.0, 7.3, 7.9, 7.0, 6.5, 7.3, 8.6, 6.9, 6.5, 7.3, 7.4, 6.9, 7.0, 5.3, 7.2, 7.9, 6.7, 5.1, 6.7, 6.5, 6.4, 6.9, 7.8, 7.1, 7.5, 6.5, 6.3, 6.7, 6.6, 6.7, 6.8, 8.4, 6.0, 8.1, 6.5, 7.2, 7.1, 8.6, 8.0, 6.2, 6.5, 8.9, 6.9, 5.8, 6.0, 6.8, 7.9, 6.8, 7.1, 6.8, 7.0, 6.8, 6.0, 7.9, 7.9, 6.5, 6.0, 10.1, 7.0, 6.8, 6.3, 7.2, 7.7, 6.6, 8.2, 6.4, 6.8, 7.2, 7.0, 7.8, 6.6, 6.7, 7.6, 5.6, 6.4, 5.1, 7.7, 7.1, 8.6, 6.1, 8.0, 6.2, 7.6, 7.2, 7.1, 6.5, 6.3, 7.2, 6.4, 7.9, 7.8, 7.5, 6.4, 5.9, 6.0, 7.0, 6.9, 5.4, 6.8, 6.0, 6.8, 8.6, 6.7, 6.3, 6.0, 5.0, 7.2, 5.6, 8.0, 5.6, 7.8, 7.4, 7.1, 6.4, 7.0, 9.4, 6.0, 5.9, 7.1, 6.3, 7.3, 6.4, 10.5, 8.1, 8.1, 6.4, 8.8, 6.1, 7.0, 7.2, 9.2, 6.6, 6.9, 9.7, 8.8, 7.8, 7.8, 7.3, 6.7, 6.6, 6.8, 7.15, 8.0, 7.4, 6.5, 5.3, 7.1, 10.8, 6.6, 7.0, 7.2, 7.5, 10.7, 5.9, 6.8, 6.9], \"xaxis\": \"x\", \"y\": [0.18439386755371057, 0.5750868907731637, 0.1132172353536568, 0.19850047615697952, 0.6950004168934912, 0.41826441672946313, 0.040828937665112974, 0.2145583871630251, 0.09143093017991866, 0.10013996234885614, 0.3658834999306372, 0.587897812361327, 0.23563705889496211, 0.5289998061994394, 0.5981734696485812, 0.5956194363709464, 0.11295199838815062, 0.6349332021584286, 0.09356782907078887, 0.0672754654033908, 0.3541579814831264, 0.11781588709523827, 0.3295981493457443, 0.23443288181779365, 0.13830133810679424, 0.5122546205578999, 0.03626449638205209, 0.32057959349203036, 0.3955164844050859, 0.21320459763992916, 0.08620177311633537, 0.4132497936565127, 0.19514157099220286, 0.028148892894647393, 0.03728071159582558, 0.20213762816504022, 0.39088790332760825, 0.10566618212719892, 0.11466232649727714, 0.09544364959788487, 0.07351553674018241, 0.3657542344632553, 0.05859665738698361, 0.43634835962676355, 0.4827032077898804, 0.516310366273556, 0.6480037931050455, 0.21122004543372697, 0.030344760075157406, 0.22750344576024595, 0.18673438423788624, 0.5460909738859347, 0.0666291073587214, 0.320234954276134, 0.515425573770442, 0.5751179393061847, 0.3262180383913996, 0.12192585741802231, 0.6165939755266235, 0.09365914315081003, 0.44259853952477324, 0.31958523161407537, 0.09228899111547839, 0.22815273642701062, 0.5282447951108347, 0.7777719169155834, 0.13834506443323813, 0.29425092810710396, 0.5300870647699181, 0.031947521718024174, 0.1108646816717751, 0.053339747820140615, 0.14466174791529418, 0.25697560969337485, 0.3383868137798065, 0.30803904997837983, 0.03434255320493995, 0.08689109251212201, 0.46044782253877736, 0.0973761441498977, 0.3449058470623745, 0.024212367984770777, 0.11665042079727428, 0.3333970234137619, 0.1495417879159372, 0.0679784404121434, 0.2360052425084116, 0.39147703437781534, 0.04428683932015287, 0.5381556738404795, 0.4357341587922019, 0.11843845992675284, 0.28107964630818494, 0.06989794698232743, 0.2658605825653322, 0.22408104406272966, 0.15519213452661884, 0.09873339188795927, 0.10739713799337769, 0.4712507279726723, 0.31257930793611366, 0.6259141532505736, 0.1651629894813923, 0.13024327386797574, 0.08242409751896962, 0.55355901104019, 0.11256152515999429, 0.22124325125588817, 0.05838775174278421, 0.6734770756819889, 0.06919042490492266, 0.5773286546676725, 0.5693181878572973, 0.12726917141891614, 0.27983888222674136, 0.15690954109554833, 0.18593824584442387, 0.05432525584274117, 0.33273366741371935, 0.12435295831370408, 0.48112847828662497, 0.2959384652215836, 0.5042039768350125, 0.3749869638443927, 0.7258627386781167, 0.4806866421912115, 0.6234335830956541, 0.4191951896523489, 0.20821728825178332, 0.6343085651912675, 0.27674577061671146, 0.02140654255666985, 0.42849246998341506, 0.1817444030106703, 0.4551538855951942, 0.05087080041524106, 0.516641204200833, 0.6810720245435042, 0.08151744899857294, 0.4475169494323581, 0.03995706953508171, 0.2181819033834006, 0.20372897255157485, 0.24305701296248816, 0.5381556738404795, 0.2358485729609252, 0.051323642447754336, 0.1913631294907303, 0.32154631204965056, 0.31229802093755377, 0.3917329141436472, 0.39462053822053156, 0.3680669306910641, 0.5017894292511481, 0.32120711190509066, 0.0768019282386515, 0.1168769044932052, 0.31545143431826594, 0.12007957373947853, 0.08354361700756141, 0.2180731800932174, 0.7653011157176768, 0.05076221583963347, 0.11739077279846111, 0.3639458403519926, 0.4815918747301601, 0.35998732468747585, 0.457353694020342, 0.5520498791697908, 0.22168281241722143, 0.2132287846887433, 0.4763394582576197, 0.3040153802820409, 0.20749766415549342, 0.3316810644107503, 0.8126297477835096, 0.5749367295182395, 0.27274039590582944, 0.2685808245693546, 0.5172108675362206, 0.33506587713796443, 0.09616672688355288, 0.041108213935392324, 0.10548050716105373, 0.5016695616404938, 0.20022874051447226, 0.14220640128276774, 0.23772630779738468, 0.19606080251004787, 0.2603188495268066, 0.18846597668723208, 0.19827111133563302, 0.261548791893628, 0.4140325207077993, 0.8134796325151183, 0.12265695643958285, 0.6311167068993262, 0.13481820177301163, 0.0932384579037443, 0.14050160114126486, 0.2562249115981724, 0.08547750670655718, 0.08643201081848362, 0.19981675431015722, 0.31390222338706264, 0.06221739913672386, 0.06996303880871468, 0.30029370289300306, 0.4306817897420764, 0.6595343859760441, 0.2839408857911616, 0.20468539219890003, 0.1130196126722065, 0.2360017176902124, 0.13187147729288817, 0.42313120297864704, 0.06964897436687001, 0.1624399718171824, 0.17200815643270417, 0.07333105637055992, 0.2440137653363641, 0.4900110333069776, 0.3085554157386313, 0.03480496731142946, 0.12148031785507996, 0.15002971926037112, 0.5314247042003052, 0.2758453007685677, 0.2151852748992088, 0.2658605825653322, 0.29911225563077193, 0.6594110243744711, 0.49869782335001445, 0.16788254706683048, 0.11816213334465087, 0.08230909248122409, 0.13653212507346946, 0.25639170942272826, 0.06562233405876228, 0.23311900627036541, 0.3756616197417655, 0.46674395287949066, 0.3092684534350997, 0.8337319641197457, 0.8331457111467163, 0.2591056156836542, 0.4778687671024334, 0.2542440524586721, 0.5361036306539362, 0.07073721340803463, 0.4731688813159418, 0.5755848065786346, 0.356689463387698, 0.14225616860197343, 0.21837916002376445, 0.14466174791529418, 0.29899643271856946, 0.4757427727983842, 0.08126799884203029, 0.1296501822378736, 0.3286954654423938, 0.08620177311633537, 0.13855855420831553, 0.05543377339452393, 0.11917834098009661, 0.2613621884509647, 0.11269900223777074, 0.08429051026621415, 0.3393961441870107, 0.07031960314855146, 0.11356777592095357, 0.4853279864284006, 0.1279289285514792, 0.0584572339054259, 0.08612988585012649, 0.3472440907423937, 0.1248029959061332, 0.07502335399434323, 0.19827111133563302, 0.3424151534036639, 0.3065175956815872, 0.13808860398564737, 0.058092197534895806, 0.04082786106581715, 0.1602592849246841, 0.09156161599234125, 0.5036030690663805, 0.2640411824475748, 0.6468038092930676, 0.07201805208597656, 0.22470230804277058, 0.1334773721572423, 0.04847889440667685, 0.2685808245693546, 0.10911308148570098, 0.6764508967260475, 0.6280060594576413, 0.36761958218269275, 0.16019930342079847, 0.17605308658107655, 0.14078981831089854, 0.2384997092801764, 0.13117402490907393, 0.12818959986091483, 0.4161925244315118, 0.12435295831370408, 0.09814942480303201, 0.05480698563416486, 0.3746187330143109, 0.41092354232892336, 0.507894749900129, 0.5137929421583434, 0.08293523366016065, 0.2964416548030494, 0.15236141109070434, 0.4396941021426354, 0.41893931094950754, 0.09113953260801844, 0.10967473999240707, 0.055732078845942, 0.05640314085190745, 0.06176263301115803, 0.06427139521062619, 0.20386133178572885, 0.21597661143113533, 0.7486409492386699, 0.2610715902497083, 0.09465277491899493, 0.5556171757583562, 0.137718889647652, 0.1978940751503777, 0.08472590699531857, 0.356262641598029, 0.14596950445002987, 0.13865818299932142, 0.3088915816821678, 0.11516321289421916, 0.16121169033174265, 0.40573483691789825, 0.34308606282264, 0.36300204724896845, 0.17193414756867276, 0.035926383178341514, 0.34536882843285344, 0.4400180463892147, 0.5165194668234709, 0.23319834124303085, 0.9637923675569924, 0.2635599134550337, 0.6259141532505736, 0.12324962258280003, 0.1256037712827487, 0.1248029959061332, 0.11665042079727428, 0.29081136443782263, 0.12993062945549005, 0.20959981847797426, 0.12385816607190492, 0.16931651488884025, 0.2468284110987674, 0.6181879252747016, 0.3509541008179864, 0.08619429866610873, 0.09537770951135394, 0.8204393830764495, 0.2493836920976743, 0.10367142046182065, 0.11516383353466464, 0.07169627826225977, 0.5400384130096556, 0.2709141565803237, 0.16809050322974173, 0.3421981324687273, 0.812724325423183, 0.1326589750154965, 0.054670132935181304, 0.055346153509382656, 0.8039442695404772, 0.3276168958360183, 0.6561718697940482, 0.6214102617950452, 0.3046829516703813, 0.7853649284745584, 0.7303620793003476, 0.6719087507962026, 0.16000678121984613, 0.579612101366232, 0.6347749924714103, 0.41894393066564606, 0.06936532322770372, 0.28322834609079706, 0.343263893078516, 0.4450860003239352, 0.3090838478611311, 0.408095736797927, 0.11529682880263803, 0.13359771811640497, 0.2417229185475579, 0.10092265889692065, 0.8181934133883563, 0.3777834313813965, 0.8273808576462511, 0.18439353202429143, 0.5148786056082297, 0.11287077888712382, 0.16015059460472458, 0.29672938182784603, 0.36944561074938853, 0.2505850522824452, 0.8467591712977676, 0.3840267097226593, 0.261779448872241, 0.1645479955558209, 0.14631295673285594, 0.4248523287309329, 0.09222807982804315, 0.2121484308544801, 0.33273366741371935, 0.5470626312455473, 0.8294144697045585, 0.25206662215500397, 0.15998368749433245, 0.548322128117227, 0.3917329141436472, 0.15981565308588508, 0.23631147082452741, 0.21082920466209698, 0.1871387197916503, 0.24774693401855818, 0.1913242313933492, 0.16437448769677154, 0.07582203648947516, 0.032541140295091364, 0.06311143057978008, 0.5009235508757715, 0.12343879567504301, 0.445735807756371, 0.40322837553658053, 0.09397553936597514, 0.1598391281143201, 0.26702494168661406, 0.19782301216908982, 0.06831823449824892, 0.5451167746582685, 0.20142160156100697, 0.25747632252511843, 0.4257317671215596, 0.5062318064185062, 0.10278357133077332, 0.10857266292312517, 0.06223864817381186, 0.11377411494697365, 0.14082424186384768, 0.2589321903149734, 0.31776639873426016, 0.07983414941561229, 0.30174211068680845, 0.42532907678292176, 0.23734670470511587, 0.2862296469110084, 0.24790288035387664, 0.5526146374040077, 0.20425399436950087, 0.5166825128498294, 0.12415322942140417, 0.5310696157212036, 0.3866387435262121, 0.14313186082947948, 0.31648660326859934, 0.026792916001305622, 0.7856428374245099, 0.42383310375799566, 0.5944566396871084, 0.6256605001243821, 0.08813642250468567, 0.03544811528140901, 0.06935406654889886, 0.15751976448865512, 0.22608551288474832, 0.3127311228465576, 0.1409438166611655, 0.3285615524533705, 0.3591330499592894, 0.47964497307801546, 0.7143146030302826, 0.14223944449319303, 0.06929054967731618, 0.32120711190509066, 0.16913647442041335, 0.707286257884667, 0.3230684446475647, 0.7616845263358343, 0.4104900542879092, 0.10053249234255524, 0.1106599594415556, 0.1543174595222413, 0.46003879185641183, 0.3811350878514418, 0.07185070571861518, 0.23882593985771994, 0.5344976262521839, 0.11031385635331636, 0.09610989844306939, 0.4955559099445003, 0.07845190603324759, 0.30697262074812925, 0.12767551958037127, 0.4375661224395835, 0.07737023387634634, 0.15307682457740834, 0.05694427046787409, 0.09028836937410878, 0.4011292297732457, 0.6186146927451245, 0.11561676905211238, 0.0993047499370594, 0.08102401279833105, 0.8100206966555492, 0.10768932514586738, 0.15386113005635593, 0.4026560765644126, 0.045535707525545144, 0.08229583319403, 0.08227601457953415, 0.8241544781987433, 0.0759900855540333, 0.5147505197509459, 0.11103147778198663, 0.42144961755966015, 0.24880465403270857, 0.3112403223054312, 0.3282460941643247, 0.28312386083977936, 0.2865521931047814, 0.16537364909659502, 0.4284132019637321, 0.34116073112729894, 0.051142721309942685, 0.10794707492381372, 0.1108646816717751, 0.29201805921023904, 0.07365131996157204, 0.36851051207096197, 0.2556143611338999, 0.07392456180697715, 0.045535707525545144, 0.15025986810093994, 0.4395989822566938, 0.19636656988846957, 0.21018464628148859, 0.15085686628779282, 0.3429118439192298, 0.16104008564300487, 0.2055862423584408, 0.18673310211333727, 0.5528531989583015, 0.20219789553586287, 0.5807830339134155, 0.6112381610839525, 0.07515362639458067, 0.5722084734915175, 0.3654892991508686, 0.1991057466826236, 0.4912569401667811, 0.05850610073101081, 0.3077884117234785, 0.17038242498240874, 0.14066607718466684, 0.10248584652416493, 0.4022873718442217, 0.07205214632436985, 0.35142291824287475, 0.10941760034103376, 0.06679271580157364, 0.05675388891699207, 0.058987921856350156, 0.3660303223369904, 0.28790374422385034, 0.4158290962648631, 0.40710291595796666, 0.09934102670994882, 0.06362846635195196, 0.30921476208988685, 0.23242198019285765, 0.055541210656895434, 0.5297663836663529, 0.10744632778983743, 0.18410212910939194, 0.17721960751489196, 0.1962664672709783, 0.1617648996714035, 0.10584426414108294, 0.5203501665477333, 0.07365131996157204, 0.31578819840495265, 0.35364190165315845, 0.1707951928721818, 0.41655733121321636, 0.15801546378512366, 0.7568436608419439, 0.22368578646300386, 0.0609449253562836, 0.2225096762928218, 0.18587673368692093, 0.05559101133196209, 0.569598540521716, 0.08073228430722412, 0.15724041301590164, 0.12879141548479, 0.4306817897420764, 0.17998791969802397, 0.41280880088413996, 0.5723062335690389, 0.6457404130724687, 0.10420061808672998, 0.12564769853034463, 0.21795029564941848, 0.4720930498870375, 0.11304202998506685, 0.545112257205237, 0.14852188644910969, 0.17217029085021085, 0.336250902618187, 0.48671482860553816, 0.5093433434984792, 0.35847801144896685, 0.3008706318705062, 0.18494609259573758, 0.4199330463236065, 0.04162287990776414, 0.2633909944023186, 0.4252182303976608, 0.4684623303117058, 0.1925553058603695, 0.09610989844306939, 0.09129843496680234, 0.3302708189676917, 0.4199330463236065, 0.11927294568859859, 0.4864154015695107, 0.06472081497616611, 0.6387929002666255, 0.37932906694235924, 0.093713747684541, 0.20627971812824875], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (curr)\", \"type\": \"scatter\", \"x\": [7.3, 6.4, 7.5, 5.6, 6.9, 6.8, 6.5, 9.1, 9.0, 12.7, 7.6, 7.2, 6.4, 7.3, 6.7, 6.8, 6.8, 11.9, 6.6, 6.4, 6.8, 8.0, 6.3, 6.5, 6.6, 7.4, 7.2, 7.5, 5.3, 7.0, 7.5, 5.3, 8.1, 8.2, 6.9, 5.9, 9.8, 7.5, 7.0, 6.0, 8.6, 7.5, 6.9, 7.0, 6.4, 6.5, 8.3, 8.3, 6.0, 7.4, 6.2, 7.5, 9.0, 8.0, 7.7, 7.9, 7.4, 15.6, 7.6, 6.9, 15.5, 8.1, 6.3, 10.0, 7.0, 6.8, 8.5, 7.4, 6.8, 7.3, 6.6, 5.6, 4.9, 8.8, 6.6, 7.1, 7.2, 7.0, 6.2, 8.0, 7.6, 9.2, 6.0, 7.9, 8.3, 8.2, 7.9, 7.8, 6.7, 7.5, 6.3, 7.6, 9.3, 7.7, 6.9, 7.6, 8.0, 8.9, 6.8, 6.3, 10.0, 9.4, 6.8, 6.5, 8.9, 7.0, 9.0, 6.0, 6.0, 7.6, 7.9, 7.1, 6.9, 6.9, 9.6, 8.9, 6.6, 6.6, 6.4, 8.4, 5.8, 6.6, 7.0, 7.8, 7.2, 7.5, 5.7, 11.8, 7.2, 6.8, 6.9, 6.6, 7.7, 8.8, 7.1, 7.2, 6.9, 9.0, 7.2, 6.5, 7.9, 8.3, 8.6, 8.4, 9.5, 7.4, 7.9, 6.4, 7.9, 6.9, 7.2, 7.9, 7.1, 7.2, 7.0, 7.2, 6.1, 6.8, 6.9, 8.0, 8.4, 6.6, 7.1, 7.6, 7.4, 7.7, 5.9, 6.7, 6.6, 7.4, 6.6, 7.2, 7.1, 6.6, 7.9, 5.8, 7.0, 6.8, 6.6, 6.1, 8.0, 4.2, 11.9, 6.4, 6.8, 7.5, 6.3, 6.8, 7.8, 6.2, 7.2, 8.2, 7.7, 7.0, 7.2, 7.3, 7.8, 5.6, 7.1, 6.8, 6.8, 6.2, 6.4, 6.9, 7.1, 7.2, 6.8, 10.0, 6.4, 7.3, 9.3, 5.8, 6.7, 8.5, 6.0, 6.7, 6.4, 8.8, 7.1, 6.5, 6.9, 6.7, 8.3, 6.4, 6.8, 6.1, 7.6, 7.0, 8.2, 4.9, 6.3, 7.6, 6.5, 9.2, 8.4, 6.7, 5.5, 6.1, 7.7, 7.4, 6.2, 7.2, 7.9, 7.1, 7.0, 6.0, 7.5, 5.7, 8.2, 6.4, 7.5, 6.8, 9.4, 7.5, 6.5, 6.5, 7.1, 6.8, 7.2, 10.8, 6.5, 7.2, 6.4, 6.4, 8.2, 6.4, 7.1, 6.2, 6.2, 6.4, 7.1, 8.3, 7.9, 6.7, 9.2, 6.0, 7.4, 7.0, 6.7, 6.8, 8.3, 6.1, 6.9, 5.8, 8.9, 6.0, 8.6, 6.0, 7.8, 9.8, 6.4, 5.2, 7.2, 7.2, 6.4, 9.3, 6.3, 6.4, 6.2, 8.9, 6.6, 13.0, 6.2, 6.8, 7.0, 6.4, 11.1, 7.4, 8.1, 6.4, 7.5, 6.4, 8.2, 7.1, 7.6, 7.2, 7.6, 6.7, 6.2, 5.4, 11.0, 6.3, 5.7, 6.6, 8.9, 6.8, 6.3, 12.2, 6.6, 4.9, 7.6, 6.4, 7.2, 6.3, 7.6, 7.2, 5.8, 6.8, 6.5, 7.3, 6.9, 9.0, 6.8, 8.0, 10.4, 8.1, 8.3, 7.3, 6.5, 7.6, 7.0, 7.1], \"xaxis\": \"x2\", \"y\": [0.18579927887031134, 0.9274202256360236, 0.2569067617886446, 0.17851375722123963, 0.43011516789686843, 0.3951880410340851, 0.35333307802371594, 0.854899199395705, 0.7749695319329993, 0.7150752736216004, 0.5793836726576811, 0.17187478758168062, 0.503776006633781, 0.6517104478925241, 0.5321166645488455, 0.4291031613352281, 0.6295132227815239, 0.446367751604861, 0.12978626497489776, 0.578130474122496, 0.1303225049324246, 0.4589423036505589, 0.6028673022099313, 0.6724998803801079, 0.055171077290688375, 0.28900585249094113, 0.5807441942986169, 0.6324527530146118, 0.32780881811994433, 0.4437792729685527, 0.47375733914823626, 0.6755390392614542, 0.8494338455743565, 0.8432302027568838, 0.3962269303969661, 0.36574887203466033, 0.9780529644634413, 0.6757083557066426, 0.43212531492562845, 0.6428319532862445, 0.2244465690609686, 0.6759712108962084, 0.300575337785698, 0.4848467547623382, 0.24353241802821812, 0.6165640897352094, 0.801889943514816, 0.6831580296641933, 0.4684052737322374, 0.07309555507266852, 0.17397747102053363, 0.548208100621717, 0.16948307959681597, 0.5287139706981401, 0.8097217619362252, 0.48186532860504816, 0.7044722268129955, 0.5458559966555334, 0.6067015953642416, 0.5767206748937392, 0.5416109283549078, 0.7766135747357961, 0.6371580804073698, 0.3290646799011723, 0.53941953634433, 0.7444876216695655, 0.27658524567301757, 0.8518717737266248, 0.685064206005921, 0.7994946846943811, 0.6254668451144636, 0.29898447003196504, 0.36566585814722175, 0.8260679099411251, 0.265003746926769, 0.18277705216857454, 0.6401445853260315, 0.2878944788643705, 0.7379395090268356, 0.6578861964269485, 0.3048731186933995, 0.6479177870210828, 0.5479007895539181, 0.8109237991420157, 0.4555798348891207, 0.35159410271621183, 0.6741813074403022, 0.40366163192193316, 0.3797333752177462, 0.42326140605337403, 0.49450075158901585, 0.7027754368270075, 0.31556666432085356, 0.5737052492708005, 0.5594846166878963, 0.9879213229528466, 0.23907110553933086, 0.7604887601700165, 0.906894853259191, 0.49150798334893764, 0.6693239074263375, 0.635181004157038, 0.4291031613352281, 0.6805197940362542, 0.8579270215873258, 0.42231028799440284, 0.7973836574204367, 0.6209099995125147, 0.617932351579841, 0.5867531689564582, 0.8217385626893267, 0.5766058512754557, 0.6085190813519714, 0.6488649586424557, 0.19466062481522506, 0.4062994677131635, 0.31500574198466447, 0.6106996692323751, 0.48314991346809855, 0.4300926711133176, 0.4623912750166579, 0.18141675383529432, 0.7404949196358439, 0.7960551628311661, 0.6696955469146251, 0.7471897031921468, 0.15222801432328747, 0.4782875749995391, 0.6696955469146251, 0.4617114467660769, 0.0374236133971757, 0.34638250956587036, 0.5737052492708005, 0.35412183815676124, 0.5342599897609015, 0.6273126624389191, 0.1819914526651868, 0.6450640502472667, 0.7576359910572065, 0.6363669366758954, 0.35783776888428775, 0.4555798348891207, 0.2603691587203709, 0.09638465351539516, 0.7889843001267657, 0.3995975535535492, 0.2404138117262561, 0.5134503976671381, 0.7620160241108803, 0.4852174766770502, 0.7934067722809752, 0.5657371707019572, 0.40591517497640706, 0.5142806824729376, 0.4667389755277017, 0.4597803030361328, 0.14211531046105408, 0.4709774325404933, 0.39253304933110444, 0.8152160844894966, 0.6418608562675732, 0.5695619245525361, 0.15898796250578873, 0.4189913516486339, 0.8097376625536354, 0.2776505479619531, 0.14100712613869515, 0.1625374057836978, 0.21879614767173305, 0.26016804821119, 0.5884346274074399, 0.25171266030158634, 0.5556828679884147, 0.2886326125606653, 0.5013044750460076, 0.23728971353361283, 0.6280660923097139, 0.6281218947904323, 0.6226708394296439, 0.1280348372312241, 0.37812375401711507, 0.6218606462016874, 0.446367751604861, 0.5237591509200082, 0.22560064672115399, 0.4159575064805634, 0.43989745285902637, 0.38133093816728936, 0.379388299643832, 0.4244201113870294, 0.8495234946343055, 0.44699506619782237, 0.3402560380560977, 0.16997778820688525, 0.6509841470756508, 0.5589353890471914, 0.49320900326902484, 0.41485179365651337, 0.2850172536812061, 0.5150740024049856, 0.7905789411902706, 0.6660097546858721, 0.5916856454756931, 0.25029771644034415, 0.21820707607863943, 0.23625780462752244, 0.6174344585079109, 0.33885175059010386, 0.8097775874289167, 0.5502791542248897, 0.45232673966787307, 0.5168725346003686, 0.4922951659433321, 0.2710495410551712, 0.5620189509382074, 0.19827785442852286, 0.35653263682836045, 0.4940220265254579, 0.3934632807735441, 0.349631294967786, 0.6543252873397565, 0.6043841099981286, 0.6572212454398962, 0.5323595728841377, 0.4667716613599331, 0.5480891857555714, 0.5933716837007499, 0.5769442381274095, 0.7796710482718338, 0.4721284230669528, 0.5632051337005155, 0.25606657060722404, 0.47304849589761655, 0.4991199345133047, 0.785831825438318, 0.5512091114854263, 0.31651464458218903, 0.192246895102814, 0.5737052492708005, 0.14970485751781393, 0.8257882443178004, 0.7450862811651306, 0.2404138117262561, 0.3428275867057816, 0.2186811050870735, 0.43730933466596944, 0.1325711740116582, 0.33994853494016564, 0.5172250338280965, 0.4543852880840521, 0.6017244994332274, 0.7267617626256621, 0.304103470637073, 0.49511795227452726, 0.4577650902534979, 0.4389063253281036, 0.3428275867057816, 0.6911248892501751, 0.5457123873353599, 0.3395528272139201, 0.5662837862370104, 0.38281068028313525, 0.1899488449656659, 0.1899488449656659, 0.39416742153886597, 0.4473524415330049, 0.5724944828663213, 0.12652799787397961, 0.14917046216496987, 0.4192276293132746, 0.1727250451072272, 0.7329347521090118, 0.2979855805324535, 0.5384433083808008, 0.2944152049751758, 0.5661013076544325, 0.39283078357423706, 0.6503174362647687, 0.7632350838020857, 0.29422440231251745, 0.8446099855685041, 0.3812461384129847, 0.1264117171095669, 0.6995051325026098, 0.7680829457938805, 0.1086082602083136, 0.50228427853815, 0.8303888649041977, 0.15145052047802054, 0.5239967242043768, 0.49461569007297057, 0.7323984730128237, 0.6372335578763709, 0.8485373319296128, 0.21018203617182263, 0.3854703692354019, 0.6209619763202376, 0.6996467359659702, 0.3913887983225227, 0.600932061108284, 0.18141675383529432, 0.32841971343371723, 0.17397747102053363, 0.3943097935149382, 0.5998672378660981, 0.6052803835931642, 0.35501406908939237, 0.4362847089434372, 0.6005057903956104, 0.45095984485898877, 0.5601124581139871, 0.6908342266509375, 0.29066967723125237, 0.5437491575180791, 0.5955595524057149, 0.4226516353037165, 0.552222307965348, 0.5038457784615318, 0.6752568781943777, 0.7880730680059006, 0.09430965090665133, 0.4986183600001317, 0.24112389044610405, 0.3635071851353404, 0.7047195247497422, 0.5251048099479148, 0.5632051337005155, 0.4520037684813636, 0.5271857161160298, 0.36566585814722175, 0.8775119234978208, 0.49474741138534273, 0.17187478758168062, 0.1069918390347242, 0.6371627391106971, 0.19018032574493748, 0.34352259564225396, 0.806114950115292, 0.47304849589761655, 0.5014153035286022, 0.6721952796384192, 0.7507248720260316, 0.38512814216859315, 0.8930847268109882, 0.863224561659591, 0.15108072818859253, 0.7399796913917198, 0.18579927887031134, 0.47304849589761655, 0.2033384066370545, 0.43667652058029827, 0.23252054766636898], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [6.4, 7.2, 6.8, 6.8, 7.9, 7.4, 7.3, 6.6, 6.5, 5.8, 10.0, 6.9, 6.6, 5.3, 4.4, 7.9, 6.9, 8.5, 9.1, 7.6, 7.6, 7.4, 8.3, 6.7, 7.8, 7.1, 6.4, 6.0, 7.6, 6.9, 7.3, 6.6, 6.9, 5.1, 5.8, 6.6, 6.5, 6.4, 6.8, 7.2, 6.7, 6.0, 7.6, 7.3, 8.3, 7.8, 7.8, 6.8, 7.9, 6.8, 8.0, 8.0, 6.8, 9.2, 6.9, 8.1, 10.7, 5.2, 6.6, 9.1, 6.4, 6.8, 6.6, 8.0, 6.7, 6.0, 7.7, 7.7, 6.0, 7.5, 7.1, 6.7, 7.7, 5.3, 8.0, 6.3, 6.1, 6.6, 7.7, 9.0, 6.4, 7.3, 7.5, 8.3, 7.6, 8.4, 9.3, 6.5, 6.9, 6.3, 6.3, 8.4, 5.6, 6.6, 6.0, 7.3, 11.6, 7.6, 11.8, 5.9, 7.2, 6.4, 6.9, 6.9, 7.1, 6.6, 7.9, 6.7, 6.2, 6.7, 6.7, 7.9, 6.9, 6.1, 6.4, 6.4, 5.0, 6.6, 6.9, 9.8, 5.0, 5.4, 6.5, 6.2, 8.2, 9.7, 7.8, 6.1, 9.3, 6.8, 6.2, 7.4, 6.1, 8.3, 6.2, 8.3, 9.2, 8.3, 6.8, 7.3, 7.2, 6.4, 11.9, 6.6, 6.2, 5.8, 8.4, 8.9, 7.1, 8.3, 7.0, 7.6, 7.5, 7.2, 6.5, 6.8, 9.9, 7.2, 5.9, 7.2, 7.1, 7.5, 6.2, 6.3, 12.6, 8.6, 8.9, 7.9, 8.3, 6.9, 6.3, 8.6, 7.2, 8.5, 5.8, 7.0, 6.1, 6.5, 6.0, 8.3, 7.7, 5.8, 6.9, 11.8, 7.0, 6.3, 9.1, 5.6, 7.0, 6.9, 7.8, 6.6, 6.5, 7.0, 6.2, 7.7, 6.7, 5.1, 8.4, 6.5, 7.2, 7.5, 5.8, 7.7, 6.6, 6.7, 8.5, 10.4, 6.6, 6.8, 5.9, 5.8, 6.7, 6.2, 13.2, 7.0, 5.9, 6.0, 5.6, 6.8, 7.0, 6.2, 7.8, 6.3, 7.3, 7.3, 6.0, 7.4, 8.7, 7.3, 6.9, 8.1, 6.9, 7.0, 10.3, 8.4, 6.6, 6.8, 7.0, 7.4, 6.8, 8.1, 8.4, 6.4, 7.1, 10.4, 7.3, 7.4, 7.5, 9.4, 7.9, 7.6, 8.1, 6.5, 7.0, 6.7, 7.5, 6.6, 6.7, 5.8, 6.8, 6.9, 7.5, 6.4, 7.3, 7.4, 7.6, 6.1, 6.8, 7.6, 6.8, 6.3, 5.4, 11.5, 6.7, 7.4, 6.9, 6.8, 5.6, 5.9, 8.4, 7.9, 6.0, 5.8, 7.0, 10.0, 6.1, 6.2, 5.3, 6.1, 11.5, 10.3, 6.9, 8.2, 6.4, 6.1, 6.1, 7.0, 6.9, 7.0, 8.0, 7.6, 7.5, 6.0, 7.4, 7.2, 5.9, 6.8, 7.8, 7.0, 6.2, 6.5, 6.2, 6.5, 5.7, 5.4, 7.2, 8.1, 8.5, 6.7, 7.0, 6.0, 7.7, 7.3, 10.1, 7.2, 7.4, 10.9, 6.8, 6.6, 7.0, 6.7, 9.1, 8.0, 6.7, 6.9, 7.3, 6.5, 7.6, 7.0, 7.1, 6.1, 7.4, 7.0, 7.7, 6.8, 7.0, 6.3, 9.8, 6.7, 7.8, 7.5, 8.7, 7.2, 7.6, 6.7, 8.6, 6.5, 7.5, 6.6, 6.8, 6.6, 8.2, 7.0, 8.8, 6.4, 5.7, 6.9, 6.2, 6.8, 5.6, 6.3, 7.9, 6.9, 10.9, 6.6, 5.8, 6.4, 6.8, 5.6, 4.9, 7.4, 6.8, 6.8, 6.5, 7.1, 7.2, 5.5, 6.9, 6.3, 6.4, 6.1, 5.2, 6.8, 6.9, 7.5, 7.2, 10.1, 7.2, 6.8, 7.4, 5.6, 6.3, 6.8, 6.0, 6.9, 6.2, 5.9, 7.0, 6.9, 8.3, 5.6, 8.2, 6.0, 6.7, 7.5, 6.2, 10.1, 7.0, 7.2, 5.5, 5.7, 11.1, 6.9, 11.5, 7.1, 6.6, 6.3, 6.6, 7.8, 6.7, 5.7, 6.7, 7.2, 9.1, 7.8, 8.1, 7.4, 6.5, 6.8, 7.4, 5.3, 7.6, 7.0, 6.2, 11.3, 5.0, 6.4, 6.0, 8.9, 6.6, 7.0, 6.5, 7.7, 7.2, 6.0, 6.5, 5.9, 6.4, 7.0, 6.7, 6.2, 6.6, 6.8, 7.5, 7.4, 8.0, 6.2, 7.2, 6.9, 6.2, 8.2, 6.0, 7.4, 8.3, 6.6, 6.4, 6.8, 5.6, 6.0, 6.4, 6.8, 7.0, 8.9, 7.1, 7.4, 6.9, 6.6, 8.4, 7.1, 8.7, 7.3, 8.3, 8.2, 9.0, 10.9, 8.6, 9.6, 7.3, 12.0, 6.0, 6.9, 7.4, 5.8, 5.6, 5.7, 6.7, 6.1, 10.6, 8.2, 7.3, 7.2, 6.4, 7.4, 7.9, 6.7, 6.8, 9.9, 6.4, 7.2, 5.0, 7.5, 5.3, 6.9, 5.6, 7.2, 6.9, 6.1, 6.9, 7.3, 7.0, 6.6, 7.4, 6.3, 8.0, 7.4, 11.6, 8.9, 7.0, 6.9, 6.4, 6.5, 10.4, 6.7, 5.6, 5.5, 10.6, 8.8, 6.9, 7.4, 7.6, 7.2, 6.0, 9.1, 5.8, 7.5, 7.0, 6.5, 6.0, 5.1, 6.7, 6.9, 7.4, 7.9, 7.3, 7.8, 8.5, 6.6, 6.7, 6.1, 7.3, 7.0, 6.0, 7.7, 7.4, 6.3, 6.0, 6.6, 7.1, 6.8, 6.4, 7.0, 5.7, 5.1, 7.4, 5.7, 7.7, 6.7, 6.6, 6.4, 6.8, 7.1, 8.0, 6.0, 8.0, 12.4, 6.6, 7.3, 7.0, 6.1, 6.6, 6.9, 6.4, 7.9, 6.6, 7.5, 9.6, 7.2, 8.0, 5.5, 6.3, 6.8, 6.9, 6.6, 7.4, 7.6, 5.6, 7.0, 6.9, 6.9, 6.9, 6.7, 6.8, 6.4, 6.8, 6.0, 7.5, 9.0, 10.2, 6.6, 7.8, 13.7, 7.1, 7.0, 7.1, 7.7, 6.1, 8.2, 9.5, 7.4, 6.5, 8.3, 5.7, 6.4, 7.8, 6.8, 6.7, 6.7], \"xaxis\": \"x2\", \"y\": [0.6660328535674787, 0.4955559099445003, 0.11251030999551548, 0.5313240922219649, 0.7616845263358343, 0.42881839881496897, 0.22146723198036844, 0.2709448900825402, 0.04188686298684474, 0.3198999677935893, 0.586632325439729, 0.3332859260788763, 0.0891770245136605, 0.07249138429342028, 0.0813041402249215, 0.2808128557304226, 0.18155424903412543, 0.14020593233116785, 0.20529540916933675, 0.1755850319354616, 0.5722846846512241, 0.4684623303117058, 0.2863708053899042, 0.4489302200945696, 0.3606737334686688, 0.09834172337505831, 0.1439119889738254, 0.10526388551166177, 0.08976738859769384, 0.15927641460572795, 0.07353544332944184, 0.4894096639868448, 0.24735122968283396, 0.41440459167745447, 0.10107859516115147, 0.4809249647595707, 0.043928674649753696, 0.27268427565697984, 0.07203278686513981, 0.35989685204578803, 0.08410225657903847, 0.09640449279894714, 0.2859044620344169, 0.766491644508495, 0.27194216744256416, 0.11891721880979944, 0.6033870782914414, 0.8445823904457724, 0.4148378249676725, 0.09538880480821377, 0.5822786697287807, 0.2006236885231063, 0.30215903380660414, 0.3526626332448971, 0.22921561702294402, 0.3499358724503807, 0.451050436906263, 0.01968005574460141, 0.3849224947932618, 0.608666907839271, 0.30333177217190177, 0.05732515971384944, 0.08299070223644744, 0.155374347961305, 0.4378217303747408, 0.10641916767178827, 0.3207785913922725, 0.3280003244598044, 0.4747408725557203, 0.27229542413121455, 0.5314247042003052, 0.13834506443323813, 0.652508483608137, 0.1775869136191267, 0.4659209431511335, 0.3288332341233703, 0.47224603889779837, 0.2773569186284155, 0.18590272545123854, 0.6719763059805124, 0.04569198037744582, 0.22473444069733528, 0.0776074933333939, 0.1411968215808168, 0.3654892991508686, 0.06069899520469324, 0.21029328672965164, 0.13919371635861133, 0.16321149678759816, 0.6144435769482088, 0.1388055550317996, 0.0827658987104557, 0.0793107693477757, 0.04994940743047871, 0.46220165202879504, 0.08265172102971341, 0.5554564865761329, 0.10902951494304747, 0.26480674198345266, 0.31816712550642645, 0.20184400370343658, 0.23734670470511587, 0.19264674509953905, 0.03558879485690103, 0.5314247042003052, 0.3013473679880785, 0.8043030592862955, 0.07665185966197174, 0.17816243980233548, 0.14637302723887635, 0.43623195291339645, 0.5773286546676725, 0.06996409198491005, 0.0635191394270278, 0.11839391684253864, 0.03368970372860669, 0.16544292122901683, 0.5002106013252752, 0.20783967621931676, 0.4413184352618238, 0.1377753535318076, 0.017128038770129694, 0.09070427960766203, 0.05237321155563324, 0.46044782253877736, 0.09863911308639095, 0.6058955548956951, 0.07377868677997379, 0.33726125667837825, 0.03705661785513226, 0.03856885477325478, 0.01970319875133708, 0.06623921298607705, 0.655672818127978, 0.36403826442427, 0.375635621083512, 0.25822104517587474, 0.26990817233175546, 0.30316845466795117, 0.21597661143113533, 0.10411587283779344, 0.4582573305440075, 0.28974208538397184, 0.3995654588450376, 0.48407929824265805, 0.2412117545349558, 0.49704114689177337, 0.3112403223054312, 0.13571503940671914, 0.35304273602320047, 0.18963603484652192, 0.06023564559469896, 0.305863422303413, 0.34062746964654456, 0.03532029949184434, 0.20200996882548472, 0.207876095289533, 0.11304202998506685, 0.26487496820305634, 0.46674395287949066, 0.05931266843465788, 0.6063731497207538, 0.053339747820140615, 0.16056749669580483, 0.3366557342021428, 0.18735912995827353, 0.2667542380283816, 0.9197592959547904, 0.13322255285490225, 0.3533185668595151, 0.08763312389948397, 0.343329095265401, 0.1298321532292276, 0.11240742021865013, 0.03412749239977686, 0.23316671381479437, 0.13955591125269062, 0.065615492475942, 0.03940539431326806, 0.04874684240881699, 0.42507109047861347, 0.3720756994829524, 0.20627971812824875, 0.23346983492740092, 0.299872058778726, 0.14688925552714138, 0.20529540916933675, 0.11294333341234963, 0.4523771212155355, 0.15895981664313275, 0.12633289347617382, 0.34801013400503944, 0.063056887931354, 0.09222807982804315, 0.19281104432210028, 0.11843845992675284, 0.1064686731970873, 0.12171087020281346, 0.49704114689177337, 0.4202798549667376, 0.058322454167927695, 0.40418598015134155, 0.7514842711311043, 0.067978575311199, 0.1468497162592186, 0.3655805321171328, 0.36741292271676196, 0.08785516413846428, 0.4223454464089015, 0.09472348251934337, 0.14196098925812006, 0.10013555988874479, 0.32154631204965056, 0.05416575683382341, 0.786126361492164, 0.04696516601190348, 0.26926088858349784, 0.28123172687107445, 0.3094364396730669, 0.04307250962973752, 0.07126159086244754, 0.6143015945908075, 0.495586079448059, 0.46102608015166635, 0.40789311683600216, 0.8929715185951024, 0.1227006502272181, 0.3638055988942468, 0.10470002869891348, 0.29304213908849364, 0.8936703981375603, 0.3534407380188983, 0.0883666731866185, 0.07895584641700149, 0.05166417783587085, 0.4199775765299997, 0.10304865631077798, 0.1041340676595982, 0.11031385635331636, 0.22368578646300386, 0.22137255536682798, 0.0725394352715707, 0.08320759746190642, 0.3577905591727162, 0.36362749207413336, 0.13058702032609693, 0.4306817897420764, 0.4684623303117058, 0.3185463047756948, 0.6991046594229053, 0.33105510290791684, 0.35804773811787727, 0.3499358724503807, 0.17780319308126435, 0.07142366539796174, 0.1504846162366139, 0.28643330026545544, 0.11492102279820171, 0.08716328114311156, 0.12905574960179156, 0.5528531989583015, 0.2852168598030531, 0.3185463047756948, 0.41766807389819915, 0.22818770291371737, 0.10749415552266317, 0.07500089027222667, 0.2150933620687273, 0.4879833184669665, 0.21367083697314282, 0.18281788227943807, 0.11217648511765432, 0.01860460444149037, 0.4990100838788346, 0.3212979959143686, 0.7252893191599291, 0.30018855716775616, 0.2808216200321265, 0.24332849241566534, 0.22583693263898685, 0.307128141019565, 0.12930297020615966, 0.07734813107736227, 0.38078614076753503, 0.037937415915298756, 0.18389331462546077, 0.2015421194948802, 0.10121634311933059, 0.7209948827487924, 0.252131738577411, 0.19866278493931944, 0.5569604587758099, 0.19172534874952063, 0.07516041810443141, 0.18673310211333727, 0.20736440356309183, 0.27568985010185776, 0.1748501221961516, 0.134246332983591, 0.12151400729184814, 0.03860330573341564, 0.16198960071610413, 0.062309112953929935, 0.14943540958877521, 0.46827469198568006, 0.12435295831370408, 0.11768791031746062, 0.10794707492381372, 0.04347111427796346, 0.07423675680829, 0.1602542791395647, 0.19911642350143877, 0.2379444352717226, 0.36664322039668684, 0.10130143557253446, 0.17108028607870185, 0.6143194513817134, 0.5641235853966853, 0.29864316680665437, 0.44752301946823647, 0.13459844499503626, 0.037461465199631894, 0.5002964248569376, 0.4059565893810353, 0.7035957096210382, 0.0629603198376949, 0.25036415064992923, 0.14780834332950044, 0.24800647860056513, 0.10438723399855232, 0.24366911510822187, 0.4574644219698093, 0.8347014835967527, 0.42226245660703365, 0.4073158502222598, 0.47525484003715535, 0.37845934883934684, 0.35325777167774697, 0.4763432908647238, 0.18941100564626978, 0.23853527246002126, 0.27277355193056574, 0.5556171757583562, 0.19481513110659687, 0.7460207524242459, 0.12627308236197843, 0.2115813466591615, 0.4773837842994688, 0.22238536240250728, 0.1978655273089749, 0.32057959349203036, 0.1601330373243487, 0.6256605001243821, 0.34062746964654456, 0.5899158924001677, 0.1273375405407705, 0.6866376712310945, 0.3812864953771038, 0.07918534602430627, 0.10510921928053807, 0.052405178286905496, 0.29010285216427345, 0.5802968836962079, 0.4475494904811408, 0.33107045093633036, 0.6046547135519548, 0.33132995382553565, 0.3391582818855403, 0.37109937806185267, 0.18876467901964422, 0.03244681540368277, 0.6531311156123596, 0.18281848038190407, 0.06840545126676123, 0.23876166598551407, 0.5602062902528231, 0.05478334190217349, 0.18965009362393503, 0.502081053312289, 0.0945975060483667, 0.24937367783354814, 0.14040338921272166, 0.09582424632391484, 0.4879833184669665, 0.07536550594022651, 0.37763546052463404, 0.20240400638142053, 0.06234715971662652, 0.1729504208160284, 0.2536573606029918, 0.1491704939138675, 0.47224603889779837, 0.20734784509414073, 0.1656619584420439, 0.20263687678412212, 0.4576701693643329, 0.3746187330143109, 0.06578487521364562, 0.09359041291034786, 0.15714155813810793, 0.43198081216185935, 0.17693664965610134, 0.14200602748771296, 0.16878839641400256, 0.11131318694256087, 0.43040972974554736, 0.12494266711040569, 0.5286591337585229, 0.3917329141436472, 0.14284790216410748, 0.29931895876037384, 0.3998656181534954, 0.13198036366642862, 0.2166851793268345, 0.164669749255824, 0.3116999397838065, 0.5702002297218003, 0.2867818412254799, 0.05809024612643199, 0.0701620515557333, 0.10493669218879953, 0.03474255021640338, 0.14069518845012563, 0.7697788668098057, 0.44513161239284327, 0.12104291767226882, 0.2823656727566666, 0.28640273091276736, 0.09904459769556595, 0.10889384421684001, 0.1978655273089749, 0.6326587477498924, 0.0766186874204361, 0.07300117689776386, 0.3978521493117628, 0.7293533971641823, 0.24040337450518035, 0.46827469198568006, 0.03737110954461231, 0.48112847828662497, 0.5755848065786346, 0.12151472907643468, 0.332302417201758, 0.3208349144509022, 0.13406270144296106, 0.47820199098358873, 0.024219732643774528, 0.7923035912680444, 0.3099424932714111, 0.8494816644677875, 0.15230116664989468, 0.8795672599938588, 0.34536882843285344, 0.587897812361327, 0.3660303223369904, 0.3074082248441362, 0.1925553058603695, 0.1582957933341015, 0.5297945963993664, 0.1892543681582496, 0.06574637766643598, 0.03286461121245521, 0.6223124217546917, 0.48666930315350876, 0.17200815643270417, 0.27042696199957883, 0.16010429726024444, 0.25291734909108765, 0.22778758435893687, 0.6055190518965303, 0.41989528411161425, 0.2865861541738164, 0.17344095530188786, 0.4163761941495938, 0.24610426408478792, 0.029106329843254564, 0.5849270471051293, 0.09607886499379148, 0.4890296174547498, 0.11193395874659995, 0.3667485749721523, 0.29672938182784603, 0.13696827462710404, 0.03986507081677082, 0.41542023534722683, 0.1642424989032959, 0.041559354155004224, 0.1266666793707928, 0.5259198205822933, 0.42123490919744344, 0.6147437654518444, 0.42849246998341506, 0.04874684240881699, 0.16870816563337898, 0.35179373534084035, 0.4552463954734379, 0.1543174595222413, 0.4641274821418986, 0.1106599594415556, 0.40441066041397966, 0.05916303638108533, 0.24194101851814365, 0.5755848065786346, 0.23631147082452741, 0.04679471849088612, 0.33132995382553565, 0.6031606095022326, 0.16900214819844117, 0.9322526967181247, 0.1065938389205352, 0.0540586741766943, 0.14920224829950646, 0.03054451782098533, 0.13595064656866984, 0.15908339514281045, 0.09402391562754642, 0.27219479721363327, 0.10477531970828624, 0.6046547135519548, 0.04412971358840656, 0.0821245873848182, 0.24953715645213048, 0.24311299470472425, 0.679537413518331, 0.02875041056121841, 0.2874129658970298, 0.17131102264191878, 0.07042427222914205, 0.1577516063520068, 0.39934634677258996, 0.42249259173992826, 0.24940231538328683, 0.46827469198568006, 0.040988937643475554, 0.034828704291737345, 0.26663563965858417, 0.22421743312747255, 0.10716094829621758, 0.7421831263598226, 0.4644511163280224, 0.1591307416719686, 0.21502194578256428, 0.12883185373794437, 0.15520095945599266, 0.04280666734842442, 0.06928764484923078, 0.3578757504587543, 0.0760792945579073, 0.06637805380770656, 0.5755848065786346, 0.4326356954473739, 0.16985579355455038, 0.47152805642545803, 0.11644579282256762, 0.11790522998710073, 0.5438286352264949, 0.41561805514360906, 0.050606352251634235, 0.21836830194439782, 0.22298545275517268, 0.1504846162366139, 0.16819644397314482, 0.47796113776613436, 0.14100197907825862, 0.7878397890034206, 0.12176963827920351, 0.09814942480303201, 0.23162396036129984, 0.04400104962869911, 0.061588508633294015, 0.2774601068082493, 0.40816383821078206, 0.14036214651023216, 0.11837607594274324, 0.0703155477214753, 0.17002415827487982, 0.24611532014486182, 0.06874641727313702, 0.30975746960573625, 0.07004288447243323, 0.6453829176356538, 0.3880412370469972, 0.10205495289732236, 0.12171087020281346, 0.38550692709735157, 0.4398162761337091, 0.5769741243450848, 0.48842976274850136, 0.3866799681687785, 0.17129518728202664, 0.5711206597512044, 0.4456070955069118, 0.4585850027539752, 0.25462747480751524, 0.34771016550763867, 0.35548618548401445, 0.07878090041588082, 0.3008706318705062, 0.08117751180329491, 0.055511805197920094, 0.1600174453683395, 0.35597309965685686, 0.5473978930443646, 0.3321771897262046, 0.14643302530661162, 0.7653011157176768, 0.24188431843396252, 0.16704799028757666, 0.41136103198090634, 0.5749869949413896, 0.709238838470871, 0.09340318303147321, 0.602429869503323, 0.04154705947390969, 0.7519582179986716, 0.15993940416551844, 0.04372375151311325, 0.4076899811241429, 0.4644511163280224, 0.3133137248525114, 0.24628490675063597, 0.06972977174174444, 0.15949948541388637, 0.2241543425141257, 0.1729876202034616, 0.07290025122558275, 0.1220000714032804, 0.36493953208423235, 0.09420126302076737, 0.026726938234992392, 0.7199273032686843, 0.4606762448039463, 0.04906818437448113, 0.19446415942665518, 0.14876853598344464, 0.3247816953453747, 0.023320858692869595, 0.7310618090422621, 0.48944479260603346, 0.20357574295749958, 0.0840537250624015, 0.5368744051465595, 0.21101467800102214, 0.46682279298460017, 0.3749869638443927, 0.46592999202179275, 0.10188412989688433, 0.15751976448865512], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"fixed.acidity\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"fixed.acidity\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}}, {\"id\": \"All_volatile.acidity\", \"params\": {\"data\": [{\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Reference<br>volatile.acidity=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [0.24, 0.19, 0.33, 0.1, 0.33, 0.36, 0.37, 0.19, 0.23, 0.27, 0.19, 0.57, 0.12, 0.26, 0.25, 0.37, 0.18, 0.685, 0.335, 0.2, 0.26, 0.4, 0.21, 0.25, 0.3, 0.24, 0.3, 0.43, 0.145, 0.66, 0.27, 0.48, 0.24, 0.17, 0.24, 0.2, 0.23, 0.34, 0.44, 0.26, 0.2, 0.08, 0.23, 0.22, 0.24, 0.15, 0.34, 0.47, 0.27, 0.43, 0.15, 0.35, 0.19, 0.19, 0.27, 0.27, 0.44, 0.21, 0.51, 0.4, 0.44, 0.65, 0.22, 0.14, 0.38, 0.6, 0.28, 0.21, 0.31, 0.21, 0.32, 0.37, 0.21, 0.3, 0.37, 0.22, 0.35, 0.24, 0.635, 0.36, 0.21, 0.22, 0.18, 0.27, 0.4, 0.15, 0.18, 0.45, 0.33, 0.4, 0.31, 0.39, 0.17, 0.16, 0.15, 0.35, 0.24, 0.29, 0.25, 0.18, 0.14, 0.25, 0.44, 0.27, 0.24, 0.17, 0.38, 0.11, 0.22, 0.855, 0.27, 0.33, 0.31, 0.25, 0.28, 0.48, 0.34, 0.13, 0.23, 0.36, 0.18, 0.26, 0.27, 0.18, 0.53, 0.51, 0.51, 0.3, 0.2, 0.66, 0.17, 0.455, 0.22, 0.38, 0.25, 0.29, 0.43, 0.855, 0.42, 0.46, 0.18, 0.15, 0.23, 0.24, 0.4, 0.23, 0.23, 0.2, 0.46, 0.13, 0.15, 0.5, 0.23, 0.3, 0.23, 0.31, 0.2, 0.34, 0.22, 0.21, 0.27, 0.63, 0.125, 0.51, 0.38, 0.21, 0.32, 0.23, 0.27, 0.44, 0.44, 0.34, 0.15, 0.23, 0.41, 0.69, 0.53, 0.17, 0.39, 0.635, 0.34, 0.27, 0.2, 0.3, 0.32, 0.235, 0.62, 0.18, 0.28, 0.15, 0.21, 0.66, 0.55, 0.55, 0.59, 0.28, 0.28, 0.23, 0.26, 0.19, 0.16, 0.32, 0.28, 0.62, 0.27, 0.34, 0.24, 0.29, 0.19, 0.36, 0.23, 0.25, 0.28, 0.27, 0.26, 0.23, 0.21, 0.2, 0.18, 0.44, 0.2, 0.21, 0.29, 0.21, 0.27, 0.17, 0.26, 0.17, 0.24, 0.15, 0.32, 0.36, 0.76, 0.28, 0.28, 0.21, 0.15, 0.19, 0.17, 0.29, 0.26, 0.23, 0.21, 0.44, 0.745, 0.27, 0.26, 0.25, 0.29, 0.29, 0.22, 0.19, 0.47, 0.31, 0.4, 0.21, 0.43, 0.2, 0.21, 0.3, 0.105, 0.27, 0.19, 0.34, 0.29, 0.3, 0.43, 0.4, 0.53, 0.3, 0.17, 0.67, 0.28, 0.17, 0.34, 0.25, 0.18, 0.3, 0.66, 0.39, 0.29, 0.24, 0.11, 0.28, 0.36, 0.29, 0.35, 0.2, 0.56, 0.2, 0.18, 0.37, 0.28, 0.39, 0.29, 0.28, 0.6, 0.27, 0.18, 0.2, 0.58, 0.25, 0.43, 0.2, 0.16, 0.36, 0.21, 0.14, 0.25, 0.36, 0.38, 0.24, 0.395, 0.18, 0.16, 0.27, 0.17, 0.32, 0.23, 0.25, 0.3, 0.22, 0.22, 0.41, 0.21, 0.65, 0.24, 0.27, 0.3, 0.3, 0.29, 0.27, 0.26, 0.255, 0.19, 0.19, 0.2, 0.66, 0.25, 0.18, 0.35, 0.28, 0.25, 0.18, 0.53, 0.28, 0.18, 1.0, 0.58, 0.25, 0.16, 0.16, 0.18, 0.18, 0.27, 0.2, 0.36, 0.3, 0.18, 0.48, 0.4, 0.26, 0.29, 0.39, 0.63, 0.26, 0.3, 0.15, 0.31, 0.28, 0.275, 0.19, 0.24, 0.71, 0.64, 0.22, 0.21, 0.83, 0.22, 0.43, 0.49, 0.25, 0.58, 0.34, 0.34, 0.23, 0.54, 0.4, 0.28, 0.25, 0.44, 0.28, 0.3, 0.35, 0.21, 0.31, 0.22, 0.45, 0.27, 0.58, 0.62, 0.62, 0.58, 0.28, 0.25, 0.25, 0.25, 0.34, 0.41, 0.44, 0.295, 0.33, 0.28, 0.16, 0.36, 0.25, 0.37, 0.23, 0.46, 0.42, 0.18, 0.22, 0.31, 0.15, 0.23, 0.26, 0.2, 0.16, 0.45, 0.32, 0.35, 0.33, 0.25, 0.16, 0.24, 0.46, 0.76, 0.68, 0.3, 0.31, 0.31, 0.21, 0.2, 0.42, 0.21, 0.23, 0.29, 0.23, 0.24, 0.12, 0.25, 0.32, 0.315, 0.16, 0.18, 0.37, 0.17, 0.6, 0.17, 0.15, 0.45, 0.4, 0.35, 0.27, 0.14, 0.67, 0.33, 0.19, 0.26, 0.4, 0.66, 0.3, 0.18, 0.23, 0.4, 0.115, 0.3, 0.28, 0.21, 0.2, 0.36, 0.18, 0.22, 0.26, 0.36, 0.28, 0.32, 0.23, 0.37, 0.41, 0.23, 0.58, 0.2, 0.18, 0.305, 0.2, 0.16, 0.21, 0.3, 0.18, 0.54, 0.31, 0.31, 0.23, 0.34, 0.23, 0.26, 0.29, 0.24, 0.3, 0.19, 0.26, 0.2, 0.38, 0.35, 0.37, 0.24, 0.52, 0.22, 0.53, 0.2, 0.29, 0.31, 0.13, 0.63, 0.2, 0.37, 0.26, 0.19, 0.37, 0.4, 0.36, 0.28, 0.29, 0.16, 0.545, 0.18, 0.38, 0.18, 0.32, 0.24, 0.26, 0.26, 0.18, 0.28, 0.29, 0.38, 0.14, 0.46, 0.28, 0.14, 0.44, 0.18, 0.23, 0.17, 0.65, 0.18, 0.43, 0.29, 0.17, 0.3, 0.22, 0.34, 0.41, 0.42, 0.3, 0.23, 0.16, 0.27, 0.28, 0.2, 0.16, 0.2, 0.36, 0.2, 0.23, 0.17, 0.26, 0.35, 0.27, 0.26, 0.32, 0.19, 0.51, 0.17, 0.63, 0.53, 0.26, 0.1, 0.29, 0.49, 0.32, 0.27, 0.26, 0.44, 0.24, 0.34, 0.59, 0.32, 0.42, 0.16, 0.13, 0.24, 0.24, 0.3, 0.34, 0.22, 0.13, 0.21, 0.19, 0.29, 0.43, 0.34, 0.825, 0.31, 0.3, 0.125, 0.29, 0.37, 0.755, 0.19, 0.25, 0.31, 0.55, 0.32, 0.26, 0.28, 0.37, 0.34, 0.19, 0.17, 0.23, 0.19, 0.36, 0.31, 0.18, 0.32, 0.34, 0.23, 0.35, 0.13, 0.67, 0.62, 0.24, 0.18], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Current<br>volatile.acidity=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [0.37, 0.23, 0.21, 0.32, 0.58, 0.21, 0.24, 0.3, 0.2, 0.3, 0.48, 0.25, 0.27, 0.32, 0.32, 0.2, 0.44, 0.25, 0.22, 0.37, 0.2, 0.19, 0.2, 0.26, 0.25, 0.29, 0.22, 0.24, 0.39, 0.34, 0.41, 0.34, 0.22, 0.26, 0.3, 0.19, 0.13, 0.23, 0.475, 0.605, 0.33, 0.24, 0.52, 0.29, 0.26, 0.57, 0.3, 0.6, 0.26, 0.22, 0.42, 0.57, 0.28, 0.28, 0.26, 0.17, 0.22, 0.34, 0.21, 0.76, 0.42, 0.3, 0.22, 0.25, 0.26, 0.3, 0.42, 0.28, 0.54, 0.14, 0.26, 0.28, 0.34, 0.275, 0.29, 0.2, 0.28, 0.18, 0.26, 0.53, 0.15, 0.21, 0.31, 0.24, 0.22, 0.31, 0.36, 0.33, 0.19, 0.3, 0.2, 0.24, 0.25, 0.31, 0.4, 0.4, 0.475, 0.25, 0.26, 0.61, 0.26, 0.17, 0.51, 0.28, 0.26, 0.28, 0.53, 0.24, 0.38, 0.3, 0.66, 0.33, 0.29, 0.29, 0.32, 0.36, 0.255, 0.24, 0.29, 0.66, 0.33, 0.23, 0.34, 0.16, 0.635, 0.42, 0.46, 0.34, 0.39, 0.17, 0.19, 0.36, 0.26, 0.28, 0.27, 0.21, 0.36, 0.42, 0.34, 0.21, 0.18, 0.865, 0.39, 0.23, 0.29, 0.31, 0.35, 0.4, 0.09, 0.22, 0.12, 0.1, 0.18, 0.2, 0.19, 0.3, 0.35, 0.37, 0.2, 0.23, 0.23, 0.55, 0.37, 0.3, 0.39, 0.265, 0.3, 1.04, 0.34, 0.21, 0.15, 0.18, 0.27, 0.34, 0.39, 0.24, 0.2, 0.28, 0.38, 0.31, 0.39, 0.19, 0.18, 0.33, 0.14, 0.55, 0.22, 0.46, 0.27, 0.41, 0.19, 0.18, 0.22, 0.25, 0.17, 0.39, 0.19, 0.33, 0.35, 0.27, 0.36, 0.26, 0.4, 0.17, 0.21, 0.31, 0.21, 0.44, 0.25, 0.15, 0.26, 0.28, 0.46, 0.32, 0.46, 0.32, 0.22, 0.31, 0.35, 0.24, 0.18, 0.35, 0.6, 0.26, 0.22, 0.655, 0.2, 0.28, 0.42, 0.22, 0.84, 0.28, 0.19, 0.23, 0.27, 0.2, 0.34, 0.14, 0.31, 0.16, 0.22, 0.4, 0.36, 0.22, 0.46, 0.43, 0.19, 0.19, 0.21, 0.685, 0.17, 0.22, 0.17, 0.28, 0.13, 0.11, 0.14, 0.17, 0.34, 0.32, 0.65, 0.28, 0.21, 0.28, 0.13, 0.24, 0.27, 0.41, 0.23, 0.18, 0.11, 0.17, 0.15, 0.59, 0.11, 0.68, 0.24, 0.18, 0.295, 0.55, 0.37, 0.27, 0.28, 0.345, 0.28, 0.44, 0.32, 0.2, 0.585, 0.17, 0.45, 0.43, 0.13, 0.32, 0.17, 0.28, 0.25, 0.36, 0.24, 0.3, 0.17, 0.16, 0.25, 0.38, 0.25, 0.36, 0.37, 0.18, 0.21, 0.16, 0.24, 0.46, 0.52, 0.31, 0.21, 0.22, 0.37, 0.28, 0.19, 0.25, 0.33, 0.28, 0.29, 0.19, 0.65, 0.2, 0.29, 0.32, 0.19, 0.4, 0.43, 0.16, 0.785, 0.22, 0.27, 0.25, 0.25, 0.26, 0.36, 0.43, 0.21, 0.32, 0.3, 0.54, 0.63, 0.18, 0.35, 0.27, 0.25, 0.41, 0.43, 0.305, 0.23, 0.2, 0.3, 0.31, 0.645, 0.29, 0.16, 0.52, 0.3, 0.24, 0.42, 0.26, 0.45, 0.27, 0.22, 0.22, 0.33, 0.24, 0.22, 0.34, 0.21, 0.14, 0.53, 0.725, 0.18, 0.27, 0.47, 0.26, 0.235, 0.26, 0.33, 0.23, 0.23, 0.2, 0.27, 0.16, 0.45, 0.4, 0.2, 0.28, 0.24, 0.23, 0.115, 0.57, 0.25, 0.27, 0.37, 0.18, 0.18, 0.21, 0.19, 0.19, 0.31, 0.23, 0.24, 0.445, 0.15, 0.45, 0.26, 0.2, 0.18, 0.19, 0.18, 0.4, 0.21, 0.37, 0.32, 0.26, 0.21, 0.28, 0.42, 0.765, 0.315, 0.28, 0.25, 0.28, 0.36, 0.17, 0.41, 0.27, 0.15, 0.32, 0.5, 0.52, 0.24, 0.25, 0.08, 0.18, 0.19, 0.57, 0.23, 0.19, 0.36, 0.34, 0.38, 0.5, 0.42, 0.745, 0.22, 0.69, 0.18, 0.57, 0.17, 0.33, 0.36, 0.18, 0.22, 0.4, 0.24, 0.36, 0.19, 0.23, 0.18, 0.17, 0.44, 0.17, 0.21, 0.685, 0.3, 0.2, 0.58, 0.16, 0.16, 0.24, 0.36, 0.13, 0.26, 0.21, 0.34, 0.25, 0.38, 0.12, 0.17, 0.19, 0.3, 0.38, 0.39, 0.59, 0.45, 0.22, 0.31, 0.35, 0.2, 0.39, 0.2, 0.56, 0.305, 0.45, 0.24, 0.26, 0.19, 0.26, 0.41, 0.22, 0.31, 0.35, 1.02, 0.27, 0.52, 0.21, 0.35, 0.26, 0.22, 0.44, 0.41, 0.4, 0.27, 0.25, 0.3, 0.49, 0.24, 0.32, 0.21, 0.19, 0.25, 0.37, 0.25, 0.26, 0.69, 0.17, 0.25, 0.25, 0.31, 0.3, 0.53, 0.24, 0.69, 0.38, 0.22, 0.29, 0.26, 0.16, 0.27, 0.15, 0.5, 0.31, 0.21, 0.19, 0.29, 0.32, 0.41, 0.21, 0.2, 0.42, 0.36, 0.15, 0.35, 0.33, 0.11, 0.31, 0.16, 0.34, 0.34, 0.2, 0.21, 0.28, 0.19, 0.28, 0.205, 0.26, 0.19, 0.43, 0.28, 0.21, 0.33, 0.24, 0.25, 0.28, 0.38, 0.3, 0.15, 0.33, 0.18, 0.32, 0.61, 0.3, 0.38, 0.38, 0.56, 0.34, 0.24, 0.22, 0.58, 0.35, 0.32, 0.28, 0.2, 0.21, 0.16, 0.58, 0.28, 0.255, 0.21, 0.63, 0.38, 0.16, 0.24, 0.35, 0.48, 0.19, 0.2, 0.17, 0.6, 0.32, 0.18, 0.2, 0.38, 0.52, 0.15, 0.38, 0.18, 0.14, 0.16, 0.26, 0.24, 0.245, 0.29, 0.15, 0.645, 0.415, 0.18, 0.2, 0.34, 0.18, 0.22, 0.51, 0.42, 0.49, 0.32, 0.25, 0.2, 0.24, 0.18, 0.27, 0.53, 0.28], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Reference<br>volatile.acidity=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [0.46, 0.32, 0.27, 0.6, 0.46, 0.66, 0.58, 0.21, 0.4, 0.41, 0.6, 0.21, 0.3, 0.32, 0.52, 0.37, 0.53, 1.13, 0.26, 1.33, 0.3, 0.31, 1.115, 0.19, 0.685, 0.76, 0.22, 0.69, 0.705, 0.3, 0.805, 0.34, 0.28, 0.23, 0.25, 0.28, 0.16, 0.2, 0.42, 0.25, 0.38, 0.28, 0.1, 0.365, 0.755, 0.26, 0.165, 0.17, 0.31, 0.44, 0.63, 0.305, 0.26, 0.5, 0.27, 0.47, 0.28, 0.51, 0.38, 0.41, 0.6, 0.25, 0.7, 0.21, 0.66, 0.22, 0.47, 0.64, 0.54, 0.17, 0.24, 0.37, 0.41, 0.29, 0.15, 0.31, 0.28, 0.18, 0.77, 0.31, 0.24, 0.28, 0.27, 0.48, 0.3, 0.54, 0.2, 0.52, 0.39, 0.34, 0.37, 0.26, 0.6, 0.41, 0.28, 0.27, 0.22, 0.28, 0.28, 0.28, 0.31, 0.39, 0.21, 0.32, 0.57, 0.41, 0.32, 0.35, 0.43, 0.2, 0.41, 0.15, 0.45, 0.14, 0.43, 0.5, 0.39, 0.25, 1.025, 0.28, 0.33, 0.57, 0.41, 0.35, 0.32, 0.44, 0.26, 0.765, 0.775, 0.28, 0.17, 0.935, 0.29, 0.25, 0.28, 0.34, 0.14, 0.32, 0.27, 0.69, 0.27, 0.27, 0.36, 0.29, 0.33, 0.45, 0.2, 0.21, 0.59, 0.38, 0.28, 0.68, 0.19, 0.56, 0.2, 0.87, 0.42, 0.21, 0.14, 0.45, 0.23, 0.68, 0.46, 0.31, 0.655, 0.25, 0.23, 0.32, 0.34, 0.25, 0.29, 0.23, 0.59, 0.37, 0.44, 0.48, 0.38, 0.3, 0.58, 0.34, 0.32, 1.33, 0.28, 0.33, 0.26, 0.29, 0.93, 0.34, 0.56, 0.29, 0.22, 0.275, 0.32, 0.615, 0.27, 0.755, 0.29, 0.25, 0.33, 0.17, 0.35, 0.5, 0.5, 0.73, 0.26, 0.31, 0.21, 0.35, 0.54, 0.19, 0.22, 0.21, 0.31, 0.25, 0.32, 0.42, 0.46, 0.475, 0.61, 0.42, 0.69, 0.19, 0.31, 0.26, 0.15, 0.38, 0.76, 0.24, 0.36, 0.695, 0.35, 0.25, 0.12, 0.23, 0.17, 0.3, 0.36, 0.26, 0.34, 0.29, 0.45, 0.34, 0.24, 0.27, 0.19, 0.37, 0.4, 0.26, 0.31, 0.52, 0.88, 0.29, 0.28, 0.835, 0.25, 0.345, 0.23, 0.62, 0.28, 0.39, 0.25, 0.41, 0.26, 0.25, 0.2, 0.22, 0.19, 0.2, 0.32, 0.725, 0.23, 0.67, 0.24, 0.32, 0.32, 0.42, 0.58, 0.32, 0.35, 0.415, 0.5, 0.64, 0.34, 0.66, 0.39, 0.29, 0.21, 0.23, 0.34, 0.265, 0.2, 0.29, 0.49, 0.43, 0.33, 0.54, 0.33, 0.695, 0.28, 0.58, 0.915, 0.18, 0.82, 0.14, 0.615, 0.24, 0.34, 0.39, 0.36, 0.39, 0.18, 0.37, 0.64, 0.27, 0.39, 0.32, 0.23, 0.47, 0.28, 0.46, 0.47, 0.25, 0.96, 0.41, 0.32, 0.31, 0.36, 0.25, 0.575, 0.28, 0.28, 0.45, 0.39, 0.24, 0.12, 0.63, 0.37, 0.5, 0.59, 0.42, 0.22, 0.24, 0.2, 0.775, 0.24, 0.61, 0.38, 0.3, 0.24, 0.46, 0.31, 0.52, 0.4, 0.5, 0.19], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Current<br>volatile.acidity=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [0.365, 0.62, 0.27, 0.18, 0.29, 0.28, 0.43, 0.765, 0.785, 0.6, 0.3, 0.19, 0.31, 0.25, 0.29, 0.21, 0.31, 0.38, 0.35, 0.45, 0.28, 0.25, 0.34, 0.41, 0.22, 0.29, 0.41, 0.41, 0.21, 0.2, 0.27, 0.3, 0.73, 0.6, 0.18, 0.19, 0.98, 0.52, 0.12, 0.36, 0.485, 0.58, 0.34, 0.25, 0.43, 0.51, 0.54, 0.6, 0.28, 0.2, 0.25, 0.26, 0.31, 0.64, 0.705, 0.37, 0.61, 0.645, 0.31, 0.42, 0.645, 0.45, 0.27, 0.29, 0.39, 0.91, 0.46, 0.7, 0.775, 0.55, 0.57, 0.34, 0.335, 0.685, 0.24, 0.25, 0.27, 0.31, 0.47, 0.39, 0.13, 0.56, 0.29, 0.5, 0.2, 0.37, 0.16, 0.25, 0.25, 0.5, 0.23, 0.345, 0.27, 0.3, 0.58, 1.58, 0.29, 0.62, 0.64, 0.24, 0.35, 0.42, 0.21, 0.52, 0.33, 0.51, 0.62, 0.5, 0.33, 0.33, 0.6, 0.31, 0.63, 0.3, 0.21, 0.27, 0.24, 0.41, 0.27, 0.56, 0.27, 0.24, 0.61, 0.5, 0.695, 0.65, 0.16, 0.23, 0.695, 0.44, 0.28, 0.33, 0.3, 0.35, 0.34, 0.39, 0.25, 0.66, 0.585, 0.315, 0.29, 0.2, 0.22, 0.18, 0.59, 0.34, 0.21, 0.4, 0.52, 0.37, 0.5, 0.31, 0.43, 0.24, 0.3, 0.31, 0.22, 0.26, 0.28, 0.55, 0.635, 0.32, 0.14, 0.36, 0.59, 0.31, 0.3, 0.14, 0.21, 0.23, 0.31, 0.26, 0.28, 0.17, 0.35, 0.54, 0.39, 0.39, 0.24, 0.15, 0.16, 0.215, 0.38, 0.34, 0.26, 0.3, 0.29, 0.27, 0.28, 0.24, 0.66, 0.25, 0.25, 0.28, 0.4, 0.38, 0.21, 0.3, 0.18, 0.45, 0.67, 0.36, 0.34, 0.24, 0.27, 0.21, 0.31, 0.32, 0.5, 0.31, 0.34, 0.33, 0.48, 0.2, 0.28, 0.39, 0.29, 0.34, 0.34, 0.24, 0.4, 0.27, 0.33, 0.28, 0.18, 0.41, 0.41, 0.27, 0.52, 0.345, 0.33, 0.23, 0.22, 0.23, 0.745, 0.35, 0.12, 0.22, 0.3, 0.22, 0.44, 0.65, 0.21, 0.12, 0.29, 0.32, 0.17, 0.14, 0.4, 0.41, 0.42, 0.44, 0.3, 0.24, 0.29, 0.23, 0.12, 0.3, 0.34, 0.45, 0.46, 0.2, 0.18, 0.18, 0.26, 0.28, 0.47, 0.23, 0.235, 0.33, 0.28, 0.705, 0.16, 0.31, 0.16, 0.28, 0.33, 0.45, 0.675, 0.37, 0.78, 0.28, 0.19, 0.6, 0.62, 0.14, 0.31, 0.555, 0.21, 0.45, 0.26, 0.6, 0.4, 0.62, 0.3, 0.41, 0.41, 0.3, 0.25, 0.59, 0.24, 0.32, 0.25, 0.26, 0.44, 0.475, 0.35, 0.24, 0.28, 0.23, 0.4, 0.27, 0.26, 0.24, 0.27, 0.26, 0.31, 0.26, 0.33, 0.595, 0.26, 0.39, 0.26, 0.23, 0.875, 0.35, 0.33, 0.45, 0.3, 0.335, 0.9, 0.24, 0.19, 0.16, 0.55, 0.21, 0.15, 0.63, 0.22, 0.49, 0.32, 0.44, 0.48, 0.83, 0.61, 0.2, 0.4, 0.365, 0.22, 0.15, 0.23, 0.26], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Reference\", \"x\": 0.245, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Current\", \"x\": 0.755, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"barmode\": \"overlay\", \"legend\": {\"title\": {\"text\": \"target\"}, \"tracegroupgap\": 0}, \"margin\": {\"t\": 60}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.49], \"title\": {\"text\": \"volatile.acidity\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.51, 1.0], \"matches\": \"x\", \"title\": {\"text\": \"volatile.acidity\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"count\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}}}}, {\"id\": \"volatile.acidity_good\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (ref)\", \"type\": \"scatter\", \"x\": [0.24, 0.19, 0.33, 0.1, 0.33, 0.36, 0.37, 0.19, 0.23, 0.27, 0.19, 0.57, 0.12, 0.26, 0.25, 0.37, 0.18, 0.685, 0.335, 0.2, 0.26, 0.4, 0.21, 0.25, 0.3, 0.24, 0.3, 0.43, 0.145, 0.66, 0.27, 0.48, 0.24, 0.17, 0.24, 0.2, 0.23, 0.34, 0.44, 0.26, 0.2, 0.08, 0.23, 0.22, 0.24, 0.15, 0.34, 0.47, 0.27, 0.43, 0.15, 0.35, 0.19, 0.19, 0.27, 0.27, 0.44, 0.21, 0.51, 0.4, 0.44, 0.65, 0.22, 0.14, 0.38, 0.6, 0.28, 0.21, 0.31, 0.21, 0.32, 0.37, 0.21, 0.3, 0.37, 0.22, 0.35, 0.24, 0.635, 0.36, 0.21, 0.22, 0.18, 0.27, 0.4, 0.15, 0.18, 0.45, 0.33, 0.4, 0.31, 0.39, 0.17, 0.16, 0.15, 0.35, 0.24, 0.29, 0.25, 0.18, 0.14, 0.25, 0.44, 0.27, 0.24, 0.17, 0.38, 0.11, 0.22, 0.855, 0.27, 0.33, 0.31, 0.25, 0.28, 0.48, 0.34, 0.13, 0.23, 0.36, 0.18, 0.26, 0.27, 0.18, 0.53, 0.51, 0.51, 0.3, 0.2, 0.66, 0.17, 0.455, 0.22, 0.38, 0.25, 0.29, 0.43, 0.855, 0.42, 0.46, 0.18, 0.15, 0.23, 0.24, 0.4, 0.23, 0.23, 0.2, 0.46, 0.13, 0.15, 0.5, 0.23, 0.3, 0.23, 0.31, 0.2, 0.34, 0.22, 0.21, 0.27, 0.63, 0.125, 0.51, 0.38, 0.21, 0.32, 0.23, 0.27, 0.44, 0.44, 0.34, 0.15, 0.23, 0.41, 0.69, 0.53, 0.17, 0.39, 0.635, 0.34, 0.27, 0.2, 0.3, 0.32, 0.235, 0.62, 0.18, 0.28, 0.15, 0.21, 0.66, 0.55, 0.55, 0.59, 0.28, 0.28, 0.23, 0.26, 0.19, 0.16, 0.32, 0.28, 0.62, 0.27, 0.34, 0.24, 0.29, 0.19, 0.36, 0.23, 0.25, 0.28, 0.27, 0.26, 0.23, 0.21, 0.2, 0.18, 0.44, 0.2, 0.21, 0.29, 0.21, 0.27, 0.17, 0.26, 0.17, 0.24, 0.15, 0.32, 0.36, 0.76, 0.28, 0.28, 0.21, 0.15, 0.19, 0.17, 0.29, 0.26, 0.23, 0.21, 0.44, 0.745, 0.27, 0.26, 0.25, 0.29, 0.29, 0.22, 0.19, 0.47, 0.31, 0.4, 0.21, 0.43, 0.2, 0.21, 0.3, 0.105, 0.27, 0.19, 0.34, 0.29, 0.3, 0.43, 0.4, 0.53, 0.3, 0.17, 0.67, 0.28, 0.17, 0.34, 0.25, 0.18, 0.3, 0.66, 0.39, 0.29, 0.24, 0.11, 0.28, 0.36, 0.29, 0.35, 0.2, 0.56, 0.2, 0.18, 0.37, 0.28, 0.39, 0.29, 0.28, 0.6, 0.27, 0.18, 0.2, 0.58, 0.25, 0.43, 0.2, 0.16, 0.36, 0.21, 0.14, 0.25, 0.36, 0.38, 0.24, 0.395, 0.18, 0.16, 0.27, 0.17, 0.32, 0.23, 0.25, 0.3, 0.22, 0.22, 0.41, 0.21, 0.65, 0.24, 0.27, 0.3, 0.3, 0.29, 0.27, 0.26, 0.255, 0.19, 0.19, 0.2, 0.66, 0.25, 0.18, 0.35, 0.28, 0.25, 0.18, 0.53, 0.28, 0.18, 1.0, 0.58, 0.25, 0.16, 0.16, 0.18, 0.18, 0.27, 0.2, 0.36, 0.3, 0.18, 0.48, 0.4, 0.26, 0.29, 0.39, 0.63, 0.26, 0.3, 0.15, 0.31, 0.28, 0.275, 0.19, 0.24, 0.71, 0.64, 0.22, 0.21, 0.83, 0.22, 0.43, 0.49, 0.25, 0.58, 0.34, 0.34, 0.23, 0.54, 0.4, 0.28, 0.25, 0.44, 0.28, 0.3, 0.35, 0.21, 0.31, 0.22, 0.45, 0.27, 0.58, 0.62, 0.62, 0.58, 0.28, 0.25, 0.25, 0.25, 0.34, 0.41, 0.44, 0.295, 0.33, 0.28, 0.16, 0.36, 0.25, 0.37, 0.23, 0.46, 0.42, 0.18, 0.22, 0.31, 0.15, 0.23, 0.26, 0.2, 0.16, 0.45, 0.32, 0.35, 0.33, 0.25, 0.16, 0.24, 0.46, 0.76, 0.68, 0.3, 0.31, 0.31, 0.21, 0.2, 0.42, 0.21, 0.23, 0.29, 0.23, 0.24, 0.12, 0.25, 0.32, 0.315, 0.16, 0.18, 0.37, 0.17, 0.6, 0.17, 0.15, 0.45, 0.4, 0.35, 0.27, 0.14, 0.67, 0.33, 0.19, 0.26, 0.4, 0.66, 0.3, 0.18, 0.23, 0.4, 0.115, 0.3, 0.28, 0.21, 0.2, 0.36, 0.18, 0.22, 0.26, 0.36, 0.28, 0.32, 0.23, 0.37, 0.41, 0.23, 0.58, 0.2, 0.18, 0.305, 0.2, 0.16, 0.21, 0.3, 0.18, 0.54, 0.31, 0.31, 0.23, 0.34, 0.23, 0.26, 0.29, 0.24, 0.3, 0.19, 0.26, 0.2, 0.38, 0.35, 0.37, 0.24, 0.52, 0.22, 0.53, 0.2, 0.29, 0.31, 0.13, 0.63, 0.2, 0.37, 0.26, 0.19, 0.37, 0.4, 0.36, 0.28, 0.29, 0.16, 0.545, 0.18, 0.38, 0.18, 0.32, 0.24, 0.26, 0.26, 0.18, 0.28, 0.29, 0.38, 0.14, 0.46, 0.28, 0.14, 0.44, 0.18, 0.23, 0.17, 0.65, 0.18, 0.43, 0.29, 0.17, 0.3, 0.22, 0.34, 0.41, 0.42, 0.3, 0.23, 0.16, 0.27, 0.28, 0.2, 0.16, 0.2, 0.36, 0.2, 0.23, 0.17, 0.26, 0.35, 0.27, 0.26, 0.32, 0.19, 0.51, 0.17, 0.63, 0.53, 0.26, 0.1, 0.29, 0.49, 0.32, 0.27, 0.26, 0.44, 0.24, 0.34, 0.59, 0.32, 0.42, 0.16, 0.13, 0.24, 0.24, 0.3, 0.34, 0.22, 0.13, 0.21, 0.19, 0.29, 0.43, 0.34, 0.825, 0.31, 0.3, 0.125, 0.29, 0.37, 0.755, 0.19, 0.25, 0.31, 0.55, 0.32, 0.26, 0.28, 0.37, 0.34, 0.19, 0.17, 0.23, 0.19, 0.36, 0.31, 0.18, 0.32, 0.34, 0.23, 0.35, 0.13, 0.67, 0.62, 0.24, 0.18], \"xaxis\": \"x\", \"y\": [0.8156061324462894, 0.42491310922683634, 0.8867827646463432, 0.8014995238430205, 0.30499958310650876, 0.5817355832705369, 0.959171062334887, 0.7854416128369749, 0.9085690698200813, 0.8998600376511439, 0.6341165000693628, 0.412102187638673, 0.7643629411050379, 0.4710001938005606, 0.40182653035141874, 0.40438056362905367, 0.8870480016118494, 0.3650667978415713, 0.9064321709292111, 0.9327245345966092, 0.6458420185168736, 0.8821841129047617, 0.6704018506542557, 0.7655671181822064, 0.8616986618932058, 0.48774537944210006, 0.9637355036179479, 0.6794204065079696, 0.6044835155949141, 0.7867954023600708, 0.9137982268836646, 0.5867502063434873, 0.8048584290077971, 0.9718511071053526, 0.9627192884041744, 0.7978623718349598, 0.6091120966723917, 0.8943338178728011, 0.8853376735027229, 0.9045563504021151, 0.9264844632598176, 0.6342457655367447, 0.9414033426130164, 0.5636516403732365, 0.5172967922101196, 0.4836896337264441, 0.35199620689495453, 0.788779954566273, 0.9696552399248426, 0.772496554239754, 0.8132656157621138, 0.4539090261140653, 0.9333708926412786, 0.679765045723866, 0.48457442622955804, 0.4248820606938153, 0.6737819616086004, 0.8780741425819777, 0.38340602447337646, 0.90634085684919, 0.5574014604752268, 0.6804147683859246, 0.9077110088845216, 0.7718472635729894, 0.4717552048891654, 0.22222808308441652, 0.8616549355667619, 0.705749071892896, 0.4699129352300819, 0.9680524782819758, 0.8891353183282249, 0.9466602521798594, 0.8553382520847058, 0.7430243903066251, 0.6616131862201935, 0.6919609500216202, 0.96565744679506, 0.913108907487878, 0.5395521774612226, 0.9026238558501023, 0.6550941529376255, 0.9757876320152292, 0.8833495792027257, 0.6666029765862381, 0.8504582120840628, 0.9320215595878566, 0.7639947574915884, 0.6085229656221847, 0.9557131606798471, 0.46184432615952054, 0.5642658412077981, 0.8815615400732472, 0.7189203536918151, 0.9301020530176726, 0.7341394174346678, 0.7759189559372703, 0.8448078654733812, 0.9012666081120407, 0.8926028620066223, 0.5287492720273277, 0.6874206920638863, 0.37408584674942635, 0.8348370105186077, 0.8697567261320243, 0.9175759024810304, 0.44644098895981, 0.8874384748400057, 0.7787567487441118, 0.9416122482572158, 0.3265229243180111, 0.9308095750950773, 0.42267134533232753, 0.43068181214270274, 0.8727308285810839, 0.7201611177732586, 0.8430904589044517, 0.8140617541555761, 0.9456747441572588, 0.6672663325862807, 0.8756470416862959, 0.518871521713375, 0.7040615347784164, 0.4957960231649875, 0.6250130361556073, 0.27413726132188326, 0.5193133578087885, 0.37656641690434584, 0.5808048103476511, 0.7917827117482167, 0.36569143480873245, 0.7232542293832885, 0.9785934574433302, 0.5715075300165849, 0.8182555969893297, 0.5448461144048058, 0.9491291995847589, 0.4833587957991669, 0.3189279754564957, 0.9184825510014271, 0.5524830505676419, 0.9600429304649183, 0.7818180966165994, 0.7962710274484252, 0.7569429870375118, 0.46184432615952054, 0.7641514270390748, 0.9486763575522457, 0.8086368705092697, 0.6784536879503494, 0.6877019790624462, 0.6082670858563528, 0.6053794617794684, 0.6319330693089359, 0.4982105707488519, 0.6787928880949093, 0.9231980717613485, 0.8831230955067948, 0.6845485656817341, 0.8799204262605215, 0.9164563829924386, 0.7819268199067826, 0.23469888428232324, 0.9492377841603665, 0.8826092272015389, 0.6360541596480074, 0.5184081252698399, 0.6400126753125241, 0.542646305979658, 0.4479501208302092, 0.7783171875827786, 0.7867712153112567, 0.5236605417423803, 0.6959846197179591, 0.7925023358445066, 0.6683189355892497, 0.18737025221649042, 0.42506327048176057, 0.7272596040941706, 0.7314191754306454, 0.4827891324637794, 0.6649341228620356, 0.9038332731164471, 0.9588917860646077, 0.8945194928389463, 0.49833043835950624, 0.7997712594855277, 0.8577935987172323, 0.7622736922026153, 0.8039391974899521, 0.7396811504731934, 0.8115340233127679, 0.801728888664367, 0.738451208106372, 0.5859674792922007, 0.1865203674848816, 0.8773430435604171, 0.36888329310067386, 0.8651817982269884, 0.9067615420962557, 0.8594983988587351, 0.7437750884018276, 0.9145224932934428, 0.9135679891815164, 0.8001832456898428, 0.6860977766129374, 0.9377826008632761, 0.9300369611912853, 0.6997062971069969, 0.5693182102579236, 0.3404656140239559, 0.7160591142088384, 0.7953146078011, 0.8869803873277935, 0.7639982823097876, 0.8681285227071118, 0.576868797021353, 0.93035102563313, 0.8375600281828176, 0.8279918435672958, 0.9266689436294401, 0.7559862346636359, 0.5099889666930224, 0.6914445842613687, 0.9651950326885705, 0.87851968214492, 0.8499702807396289, 0.4685752957996948, 0.7241546992314323, 0.7848147251007912, 0.7341394174346678, 0.7008877443692281, 0.340588975625529, 0.5013021766499856, 0.8321174529331695, 0.8818378666553491, 0.9176909075187759, 0.8634678749265305, 0.7436082905772717, 0.9343776659412377, 0.7668809937296346, 0.6243383802582345, 0.5332560471205093, 0.6907315465649003, 0.16626803588025432, 0.1668542888532837, 0.7408943843163458, 0.5221312328975666, 0.7457559475413279, 0.46389636934606376, 0.9292627865919654, 0.5268311186840582, 0.4244151934213653, 0.643310536612302, 0.8577438313980266, 0.7816208399762355, 0.8553382520847058, 0.7010035672814305, 0.5242572272016158, 0.9187320011579697, 0.8703498177621264, 0.6713045345576062, 0.9137982268836646, 0.8614414457916845, 0.9445662266054761, 0.8808216590199034, 0.7386378115490353, 0.8873009977622293, 0.9157094897337859, 0.6606038558129893, 0.9296803968514485, 0.8864322240790464, 0.5146720135715994, 0.8720710714485208, 0.9415427660945741, 0.9138701141498735, 0.6527559092576063, 0.8751970040938668, 0.9249766460056568, 0.801728888664367, 0.6575848465963361, 0.6934824043184128, 0.8619113960143526, 0.9419078024651042, 0.9591721389341828, 0.8397407150753159, 0.9084383840076588, 0.4963969309336195, 0.7359588175524252, 0.3531961907069324, 0.9279819479140234, 0.7752976919572294, 0.8665226278427577, 0.9515211055933231, 0.7314191754306454, 0.890886918514299, 0.3235491032739525, 0.3719939405423586, 0.6323804178173072, 0.8398006965792015, 0.8239469134189235, 0.8592101816891015, 0.7615002907198236, 0.8688259750909261, 0.8718104001390852, 0.5838074755684882, 0.8756470416862959, 0.901850575196968, 0.9451930143658351, 0.6253812669856891, 0.5890764576710766, 0.4921052500998711, 0.4862070578416567, 0.9170647663398394, 0.7035583451969506, 0.8476385889092957, 0.5603058978573646, 0.5810606890504925, 0.9088604673919816, 0.8903252600075929, 0.944267921154058, 0.9435968591480925, 0.938237366988842, 0.9357286047893738, 0.7961386682142712, 0.7840233885688647, 0.2513590507613302, 0.7389284097502917, 0.9053472250810051, 0.44438282424164377, 0.862281110352348, 0.8021059248496223, 0.9152740930046814, 0.643737358401971, 0.8540304955499701, 0.8613418170006786, 0.6911084183178322, 0.8848367871057808, 0.8387883096682573, 0.5942651630821018, 0.65691393717736, 0.6369979527510315, 0.8280658524313272, 0.9640736168216585, 0.6546311715671466, 0.5599819536107853, 0.48348053317652906, 0.7668016587569692, 0.03620763244300767, 0.7364400865449663, 0.37408584674942635, 0.8767503774172, 0.8743962287172513, 0.8751970040938668, 0.8833495792027257, 0.7091886355621774, 0.87006937054451, 0.7904001815220257, 0.8761418339280951, 0.8306834851111597, 0.7531715889012326, 0.38181207472529843, 0.6490458991820136, 0.9138057013338913, 0.9046222904886461, 0.17956061692355052, 0.7506163079023257, 0.8963285795381793, 0.8848361664653354, 0.9283037217377402, 0.45996158699034445, 0.7290858434196763, 0.8319094967702583, 0.6578018675312727, 0.18727567457681707, 0.8673410249845035, 0.9453298670648187, 0.9446538464906173, 0.19605573045952288, 0.6723831041639817, 0.3438281302059518, 0.37858973820495484, 0.6953170483296187, 0.21463507152544156, 0.26963792069965237, 0.3280912492037974, 0.8399932187801539, 0.420387898633768, 0.36522500752858966, 0.5810560693343539, 0.9306346767722963, 0.7167716539092029, 0.656736106921484, 0.5549139996760648, 0.6909161521388689, 0.591904263202073, 0.884703171197362, 0.866402281883595, 0.7582770814524421, 0.8990773411030794, 0.1818065866116437, 0.6222165686186035, 0.17261914235374884, 0.8156064679757086, 0.4851213943917703, 0.8871292211128762, 0.8398494053952754, 0.703270618172154, 0.6305543892506115, 0.7494149477175548, 0.1532408287022325, 0.6159732902773407, 0.738220551127759, 0.8354520044441791, 0.8536870432671441, 0.5751476712690671, 0.9077719201719568, 0.7878515691455199, 0.6672663325862807, 0.45293736875445273, 0.17058553029544155, 0.747933377844996, 0.8400163125056676, 0.4516778718827729, 0.6082670858563528, 0.8401843469141149, 0.7636885291754726, 0.789170795337903, 0.8128612802083497, 0.7522530659814418, 0.8086757686066508, 0.8356255123032285, 0.9241779635105248, 0.9674588597049086, 0.9368885694202199, 0.4990764491242286, 0.876561204324957, 0.554264192243629, 0.5967716244634195, 0.9060244606340249, 0.8401608718856799, 0.7329750583133859, 0.8021769878309102, 0.9316817655017511, 0.45488322534173153, 0.798578398438993, 0.7425236774748816, 0.5742682328784404, 0.4937681935814938, 0.8972164286692267, 0.8914273370768748, 0.9377613518261881, 0.8862258850530264, 0.8591757581361523, 0.7410678096850266, 0.6822336012657398, 0.9201658505843877, 0.6982578893131915, 0.5746709232170782, 0.7626532952948841, 0.7137703530889916, 0.7520971196461234, 0.4473853625959922, 0.7957460056304991, 0.4833174871501707, 0.8758467705785958, 0.4689303842787964, 0.6133612564737879, 0.8568681391705205, 0.6835133967314007, 0.9732070839986944, 0.21435716257549006, 0.5761668962420043, 0.4055433603128916, 0.3743394998756179, 0.9118635774953143, 0.964551884718591, 0.9306459334511011, 0.8424802355113449, 0.7739144871152517, 0.6872688771534424, 0.8590561833388345, 0.6714384475466295, 0.6408669500407106, 0.5203550269219845, 0.2856853969697174, 0.857760555506807, 0.9307094503226838, 0.6787928880949093, 0.8308635255795866, 0.29271374211533296, 0.6769315553524353, 0.23831547366416572, 0.5895099457120908, 0.8994675076574448, 0.8893400405584444, 0.8456825404777587, 0.5399612081435882, 0.6188649121485582, 0.9281492942813848, 0.7611740601422801, 0.46550237374781617, 0.8896861436466836, 0.9038901015569306, 0.5044440900554997, 0.9215480939667524, 0.6930273792518707, 0.8723244804196287, 0.5624338775604165, 0.9226297661236537, 0.8469231754225917, 0.9430557295321259, 0.9097116306258912, 0.5988707702267543, 0.3813853072548755, 0.8843832309478876, 0.9006952500629406, 0.918975987201669, 0.18997930334445084, 0.8923106748541326, 0.8461388699436441, 0.5973439234355874, 0.9544642924744549, 0.91770416680597, 0.9177239854204658, 0.17584552180125673, 0.9240099144459667, 0.48524948024905407, 0.8889685222180134, 0.5785503824403398, 0.7511953459672914, 0.6887596776945688, 0.6717539058356753, 0.7168761391602206, 0.7134478068952186, 0.834626350903405, 0.5715867980362679, 0.6588392688727011, 0.9488572786900573, 0.8920529250761863, 0.8891353183282249, 0.707981940789761, 0.926348680038428, 0.631489487929038, 0.7443856388661001, 0.9260754381930228, 0.9544642924744549, 0.8497401318990601, 0.5604010177433062, 0.8036334301115304, 0.7898153537185114, 0.8491431337122072, 0.6570881560807702, 0.8389599143569951, 0.7944137576415592, 0.8132668978866627, 0.44714680104169846, 0.7978021044641371, 0.41921696608658454, 0.38876183891604754, 0.9248463736054193, 0.4277915265084825, 0.6345107008491314, 0.8008942533173764, 0.5087430598332189, 0.9414938992689892, 0.6922115882765215, 0.8296175750175913, 0.8593339228153332, 0.8975141534758351, 0.5977126281557783, 0.9279478536756302, 0.6485770817571253, 0.8905823996589662, 0.9332072841984264, 0.9432461110830079, 0.9410120781436498, 0.6339696776630096, 0.7120962557761497, 0.5841709037351369, 0.5928970840420333, 0.9006589732900512, 0.936371533648048, 0.6907852379101131, 0.7675780198071424, 0.9444587893431046, 0.4702336163336472, 0.8925536722101626, 0.8158978708906081, 0.822780392485108, 0.8037335327290217, 0.8382351003285965, 0.8941557358589171, 0.4796498334522667, 0.926348680038428, 0.6842118015950474, 0.6463580983468415, 0.8292048071278182, 0.5834426687867836, 0.8419845362148763, 0.2431563391580561, 0.7763142135369961, 0.9390550746437164, 0.7774903237071782, 0.8141232663130791, 0.9444089886680379, 0.430401459478284, 0.9192677156927759, 0.8427595869840984, 0.87120858451521, 0.5693182102579236, 0.820012080301976, 0.58719119911586, 0.42769376643096113, 0.3542595869275313, 0.89579938191327, 0.8743523014696554, 0.7820497043505815, 0.5279069501129625, 0.8869579700149332, 0.45488774279476296, 0.8514781135508903, 0.8278297091497892, 0.663749097381813, 0.5132851713944618, 0.4906566565015208, 0.6415219885510332, 0.6991293681294938, 0.8150539074042624, 0.5800669536763935, 0.9583771200922359, 0.7366090055976814, 0.5747817696023392, 0.5315376696882942, 0.8074446941396305, 0.9038901015569306, 0.9087015650331977, 0.6697291810323083, 0.5800669536763935, 0.8807270543114014, 0.5135845984304893, 0.9352791850238339, 0.36120709973337456, 0.6206709330576408, 0.906286252315459, 0.7937202818717513], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [0.46, 0.32, 0.27, 0.6, 0.46, 0.66, 0.58, 0.21, 0.4, 0.41, 0.6, 0.21, 0.3, 0.32, 0.52, 0.37, 0.53, 1.13, 0.26, 1.33, 0.3, 0.31, 1.115, 0.19, 0.685, 0.76, 0.22, 0.69, 0.705, 0.3, 0.805, 0.34, 0.28, 0.23, 0.25, 0.28, 0.16, 0.2, 0.42, 0.25, 0.38, 0.28, 0.1, 0.365, 0.755, 0.26, 0.165, 0.17, 0.31, 0.44, 0.63, 0.305, 0.26, 0.5, 0.27, 0.47, 0.28, 0.51, 0.38, 0.41, 0.6, 0.25, 0.7, 0.21, 0.66, 0.22, 0.47, 0.64, 0.54, 0.17, 0.24, 0.37, 0.41, 0.29, 0.15, 0.31, 0.28, 0.18, 0.77, 0.31, 0.24, 0.28, 0.27, 0.48, 0.3, 0.54, 0.2, 0.52, 0.39, 0.34, 0.37, 0.26, 0.6, 0.41, 0.28, 0.27, 0.22, 0.28, 0.28, 0.28, 0.31, 0.39, 0.21, 0.32, 0.57, 0.41, 0.32, 0.35, 0.43, 0.2, 0.41, 0.15, 0.45, 0.14, 0.43, 0.5, 0.39, 0.25, 1.025, 0.28, 0.33, 0.57, 0.41, 0.35, 0.32, 0.44, 0.26, 0.765, 0.775, 0.28, 0.17, 0.935, 0.29, 0.25, 0.28, 0.34, 0.14, 0.32, 0.27, 0.69, 0.27, 0.27, 0.36, 0.29, 0.33, 0.45, 0.2, 0.21, 0.59, 0.38, 0.28, 0.68, 0.19, 0.56, 0.2, 0.87, 0.42, 0.21, 0.14, 0.45, 0.23, 0.68, 0.46, 0.31, 0.655, 0.25, 0.23, 0.32, 0.34, 0.25, 0.29, 0.23, 0.59, 0.37, 0.44, 0.48, 0.38, 0.3, 0.58, 0.34, 0.32, 1.33, 0.28, 0.33, 0.26, 0.29, 0.93, 0.34, 0.56, 0.29, 0.22, 0.275, 0.32, 0.615, 0.27, 0.755, 0.29, 0.25, 0.33, 0.17, 0.35, 0.5, 0.5, 0.73, 0.26, 0.31, 0.21, 0.35, 0.54, 0.19, 0.22, 0.21, 0.31, 0.25, 0.32, 0.42, 0.46, 0.475, 0.61, 0.42, 0.69, 0.19, 0.31, 0.26, 0.15, 0.38, 0.76, 0.24, 0.36, 0.695, 0.35, 0.25, 0.12, 0.23, 0.17, 0.3, 0.36, 0.26, 0.34, 0.29, 0.45, 0.34, 0.24, 0.27, 0.19, 0.37, 0.4, 0.26, 0.31, 0.52, 0.88, 0.29, 0.28, 0.835, 0.25, 0.345, 0.23, 0.62, 0.28, 0.39, 0.25, 0.41, 0.26, 0.25, 0.2, 0.22, 0.19, 0.2, 0.32, 0.725, 0.23, 0.67, 0.24, 0.32, 0.32, 0.42, 0.58, 0.32, 0.35, 0.415, 0.5, 0.64, 0.34, 0.66, 0.39, 0.29, 0.21, 0.23, 0.34, 0.265, 0.2, 0.29, 0.49, 0.43, 0.33, 0.54, 0.33, 0.695, 0.28, 0.58, 0.915, 0.18, 0.82, 0.14, 0.615, 0.24, 0.34, 0.39, 0.36, 0.39, 0.18, 0.37, 0.64, 0.27, 0.39, 0.32, 0.23, 0.47, 0.28, 0.46, 0.47, 0.25, 0.96, 0.41, 0.32, 0.31, 0.36, 0.25, 0.575, 0.28, 0.28, 0.45, 0.39, 0.24, 0.12, 0.63, 0.37, 0.5, 0.59, 0.42, 0.22, 0.24, 0.2, 0.775, 0.24, 0.61, 0.38, 0.3, 0.24, 0.46, 0.31, 0.52, 0.4, 0.5, 0.19], \"xaxis\": \"x\", \"y\": [0.2802292104526322, 0.9455194119275858, 0.4978743212349556, 0.5289145624519528, 0.28439238707197784, 0.2033309570226689, 0.27345747478543325, 0.8322873304845451, 0.389055896812549, 0.3675472469853882, 0.5781933746273124, 0.7401955299744071, 0.44969671697605845, 0.4367887814338696, 0.31593955341667695, 0.3775624358859999, 0.19282181046294666, 0.048451763306065584, 0.6005928650583868, 0.032225376113695775, 0.427412413738938, 0.23973251442015217, 0.13890126550157303, 0.8613925272127, 0.329663916828638, 0.19359965390713213, 0.6827271716759634, 0.1960905505555538, 0.08135735686643118, 0.39737240301928484, 0.13902987396822816, 0.6514166433739288, 0.6994753721471061, 0.7140886736258081, 0.5021795028970708, 0.48743245558712556, 0.5731139673640956, 0.8820820642542792, 0.559972149724866, 0.5061565591493914, 0.5066810377847554, 0.833805652807593, 0.6979972163580744, 0.3177574231538272, 0.13068190592986567, 0.758876109553896, 0.5681062961269688, 0.715544821914063, 0.762062625203523, 0.4464438677531786, 0.20995974230910305, 0.5262622410710028, 0.39442669669188163, 0.2537324982988368, 0.6775437642744659, 0.23876321589577687, 0.6369158982934647, 0.38960060362966165, 0.6034323722874255, 0.7769991715799629, 0.15199748354041337, 0.5641412449951732, 0.7590466800561823, 0.5969347905931296, 0.1048362779837843, 0.7217824369593382, 0.2662339163773806, 0.16472378978351135, 0.37760124376932414, 0.7071736299639594, 0.3436862995931572, 0.8384434752264291, 0.3635333644877426, 0.7813188949129265, 0.7279369976219869, 0.5641098847382463, 0.3863964747623771, 0.9209913370067284, 0.1477144681640183, 0.8809374658555192, 0.6533168894759348, 0.8873477284758582, 0.3697306267878623, 0.28319023347825867, 0.5203701741750857, 0.5523747693308857, 0.6387521731780509, 0.3881380695009739, 0.8487896327149285, 0.4636606453307818, 0.8384434752264291, 0.558266603669778, 0.21657231888677728, 0.3635333644877426, 0.5512671313974766, 0.5051039398599867, 0.5827915753039158, 0.49441682850108926, 0.47309171914705017, 0.6262595591688196, 0.5508242483721094, 0.47332791509789995, 0.7117569366896692, 0.3933786516273859, 0.16465066549244003, 0.7490394132223248, 0.769261050002088, 0.7431932405995126, 0.3141000916210982, 0.723735045552473, 0.6484132891031948, 0.688519894019609, 0.40496704226994307, 0.5803736122960511, 0.6327801522745691, 0.45115706990411364, 0.37268733756108086, 0.9009693101135351, 0.06496389958099598, 0.44431713201158524, 0.39960831974332744, 0.8662156944598043, 0.31018081106061823, 0.5339551117365043, 0.33311273919547707, 0.400132762133902, 0.8528754522806217, 0.14419347879543085, 0.11672350429510901, 0.44556702529145975, 0.6160120899414699, 0.13766892845409207, 0.5517204028384314, 0.5232178919035022, 0.35483403305733974, 0.4900213704561591, 0.8854578072659228, 0.43084122675663034, 0.7601186327653665, 0.14072030431570776, 0.6186690618327106, 0.5245054232921349, 0.7326259458716644, 0.5690781983520095, 0.4018508815425063, 0.24877469563805235, 0.7952501197393639, 0.8766221356386195, 0.303451532996695, 0.5357745481647883, 0.7096524147827454, 0.20877177283968149, 0.8635610141758273, 0.46736762313881036, 0.6061151992073851, 0.113015272873705, 0.40446014603085867, 0.6332606063976143, 0.648705381890928, 0.42186952587750404, 0.8047913565308571, 0.3017058309841093, 0.38406990132164637, 0.33494193042999065, 0.19929939967121216, 0.8624919783238055, 0.528785836409086, 0.43084122675663034, 0.47042159929499583, 0.5061565591493914, 0.5759491569657543, 0.8468794444363914, 0.20342296359496542, 0.5170831534483544, 0.3666753044655067, 0.6131723001375537, 0.4410646109528086, 0.6903416342484309, 0.3866428492574258, 0.4636606453307818, 0.4525459302795702, 0.03199256040434073, 0.7029629492254846, 0.2433141614541866, 0.548755973819273, 0.3775060302547258, 0.06593060991448157, 0.8745624549148976, 0.22931948662359403, 0.27267688907931714, 0.589328430619086, 0.8007160756317941, 0.5525637789187225, 0.5008522318356121, 0.4556212410144909, 0.17391722008742402, 0.43574637053357784, 0.3237440077649342, 0.6071692164257629, 0.6925152430641841, 0.592675381607996, 0.43854150134957587, 0.43854150134957587, 0.42437112972565305, 0.8061118855433299, 0.35195592295594336, 0.7605370065149419, 0.38898578429124253, 0.67510953655807, 0.872979709380305, 0.710510994258769, 0.720290290780972, 0.4820787970895852, 0.42019280799979697, 0.4304380754474639, 0.25285023254778977, 0.3238056884730761, 0.39471961640683584, 0.09510031985475974, 0.367046376808582, 0.21500793651835448, 0.8705359023101334, 0.6100742529031461, 0.6226449432624995, 0.7279369976219869, 0.3643494054700089, 0.09992017521484964, 0.41475515148757036, 0.6462260464983366, 0.14102909592513518, 0.48949585696458414, 0.5239520436918008, 0.6084413884537807, 0.5655473856702703, 0.9517420512476797, 0.7489379515982664, 0.4647937384849751, 0.7915321263825208, 0.44112279258530757, 0.5734340256727429, 0.6604471727860799, 0.4845203185458914, 0.6968730453869196, 0.5315374962198609, 0.8685951485887234, 0.6242442748350044, 0.2912097196987059, 0.7725938221565348, 0.2067629769731588, 0.30221725334927335, 0.13129342562285412, 0.6467789443522378, 0.6994753721471061, 0.11825382206919556, 0.41022417118631593, 0.4882665226122541, 0.7732287086973071, 0.25374762405010176, 0.49441682850108926, 0.3723877205427743, 0.652330313245635, 0.43667799883041203, 0.5964718913578133, 0.55172276504346, 0.24113559934961917, 0.8243980268882987, 0.7263843594269437, 0.43535214809021755, 0.8721122798612579, 0.18723914490145582, 0.6486906676970999, 0.11576704656818047, 0.4328241622975616, 0.491481212420291, 0.5264345378086769, 0.33856526784971647, 0.2967410926251248, 0.581398831228375, 0.5973776665460488, 0.6195406102170065, 0.37782717658841725, 0.323061133240968, 0.17420808473594895, 0.19634770547538957, 0.46492234760650425, 0.49613167963272686, 0.5812209036149294, 0.6057291775435286, 0.63414717387345, 0.5702687187355167, 0.8604975146328253, 0.6309022132706124, 0.48732991249542923, 0.6887148870948692, 0.41581945293096145, 0.5706760596351739, 0.4831274653996314, 0.06684727567316755, 0.49090643211649887, 0.15191610726090596, 0.2711405311223577, 0.7653618545702112, 0.09266565137124261, 0.4554350627407873, 0.19698919164573708, 0.6930185080649685, 0.5227537922811563, 0.50434568709929, 0.7082092780767422, 0.46058046365566996, 0.6735723234187477, 0.4285936050615775, 0.323061133240968, 0.5168500865319015, 0.6161307914674419, 0.23456444218973552, 0.3192004782541023, 0.21968945907811915, 0.5028183230931117, 0.43371621376298963, 0.6744209213341115, 0.5940260419772637, 0.13783310426722128, 0.5136444387530009, 0.5508647999875032, 0.4955911012838212, 0.9814394195009358, 0.8260225289794664, 0.17965956338109995, 0.46844896472597397, 0.6048119589659149, 0.3289160319090978, 0.2454606394453749, 0.7497022835596558, 0.683485355417811, 0.20995974230910305, 0.23504578258460665, 0.37175956099497537, 0.4875530438829156, 0.24982584224249993, 0.6282829625348888, 0.4520795162158371, 0.8200372413039435, 0.12832513643528837, 0.5299630655130737, 0.29552777318700446, 0.24021937552346023, 0.5429028773737552, 0.6311869746243346, 0.4145977043912777, 0.39329840463575844, 0.39070335653410526, 0.4286990948130573, 0.846836560604146, 0.6880850122626078], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (curr)\", \"type\": \"scatter\", \"x\": [0.37, 0.23, 0.21, 0.32, 0.58, 0.21, 0.24, 0.3, 0.2, 0.3, 0.48, 0.25, 0.27, 0.32, 0.32, 0.2, 0.44, 0.25, 0.22, 0.37, 0.2, 0.19, 0.2, 0.26, 0.25, 0.29, 0.22, 0.24, 0.39, 0.34, 0.41, 0.34, 0.22, 0.26, 0.3, 0.19, 0.13, 0.23, 0.475, 0.605, 0.33, 0.24, 0.52, 0.29, 0.26, 0.57, 0.3, 0.6, 0.26, 0.22, 0.42, 0.57, 0.28, 0.28, 0.26, 0.17, 0.22, 0.34, 0.21, 0.76, 0.42, 0.3, 0.22, 0.25, 0.26, 0.3, 0.42, 0.28, 0.54, 0.14, 0.26, 0.28, 0.34, 0.275, 0.29, 0.2, 0.28, 0.18, 0.26, 0.53, 0.15, 0.21, 0.31, 0.24, 0.22, 0.31, 0.36, 0.33, 0.19, 0.3, 0.2, 0.24, 0.25, 0.31, 0.4, 0.4, 0.475, 0.25, 0.26, 0.61, 0.26, 0.17, 0.51, 0.28, 0.26, 0.28, 0.53, 0.24, 0.38, 0.3, 0.66, 0.33, 0.29, 0.29, 0.32, 0.36, 0.255, 0.24, 0.29, 0.66, 0.33, 0.23, 0.34, 0.16, 0.635, 0.42, 0.46, 0.34, 0.39, 0.17, 0.19, 0.36, 0.26, 0.28, 0.27, 0.21, 0.36, 0.42, 0.34, 0.21, 0.18, 0.865, 0.39, 0.23, 0.29, 0.31, 0.35, 0.4, 0.09, 0.22, 0.12, 0.1, 0.18, 0.2, 0.19, 0.3, 0.35, 0.37, 0.2, 0.23, 0.23, 0.55, 0.37, 0.3, 0.39, 0.265, 0.3, 1.04, 0.34, 0.21, 0.15, 0.18, 0.27, 0.34, 0.39, 0.24, 0.2, 0.28, 0.38, 0.31, 0.39, 0.19, 0.18, 0.33, 0.14, 0.55, 0.22, 0.46, 0.27, 0.41, 0.19, 0.18, 0.22, 0.25, 0.17, 0.39, 0.19, 0.33, 0.35, 0.27, 0.36, 0.26, 0.4, 0.17, 0.21, 0.31, 0.21, 0.44, 0.25, 0.15, 0.26, 0.28, 0.46, 0.32, 0.46, 0.32, 0.22, 0.31, 0.35, 0.24, 0.18, 0.35, 0.6, 0.26, 0.22, 0.655, 0.2, 0.28, 0.42, 0.22, 0.84, 0.28, 0.19, 0.23, 0.27, 0.2, 0.34, 0.14, 0.31, 0.16, 0.22, 0.4, 0.36, 0.22, 0.46, 0.43, 0.19, 0.19, 0.21, 0.685, 0.17, 0.22, 0.17, 0.28, 0.13, 0.11, 0.14, 0.17, 0.34, 0.32, 0.65, 0.28, 0.21, 0.28, 0.13, 0.24, 0.27, 0.41, 0.23, 0.18, 0.11, 0.17, 0.15, 0.59, 0.11, 0.68, 0.24, 0.18, 0.295, 0.55, 0.37, 0.27, 0.28, 0.345, 0.28, 0.44, 0.32, 0.2, 0.585, 0.17, 0.45, 0.43, 0.13, 0.32, 0.17, 0.28, 0.25, 0.36, 0.24, 0.3, 0.17, 0.16, 0.25, 0.38, 0.25, 0.36, 0.37, 0.18, 0.21, 0.16, 0.24, 0.46, 0.52, 0.31, 0.21, 0.22, 0.37, 0.28, 0.19, 0.25, 0.33, 0.28, 0.29, 0.19, 0.65, 0.2, 0.29, 0.32, 0.19, 0.4, 0.43, 0.16, 0.785, 0.22, 0.27, 0.25, 0.25, 0.26, 0.36, 0.43, 0.21, 0.32, 0.3, 0.54, 0.63, 0.18, 0.35, 0.27, 0.25, 0.41, 0.43, 0.305, 0.23, 0.2, 0.3, 0.31, 0.645, 0.29, 0.16, 0.52, 0.3, 0.24, 0.42, 0.26, 0.45, 0.27, 0.22, 0.22, 0.33, 0.24, 0.22, 0.34, 0.21, 0.14, 0.53, 0.725, 0.18, 0.27, 0.47, 0.26, 0.235, 0.26, 0.33, 0.23, 0.23, 0.2, 0.27, 0.16, 0.45, 0.4, 0.2, 0.28, 0.24, 0.23, 0.115, 0.57, 0.25, 0.27, 0.37, 0.18, 0.18, 0.21, 0.19, 0.19, 0.31, 0.23, 0.24, 0.445, 0.15, 0.45, 0.26, 0.2, 0.18, 0.19, 0.18, 0.4, 0.21, 0.37, 0.32, 0.26, 0.21, 0.28, 0.42, 0.765, 0.315, 0.28, 0.25, 0.28, 0.36, 0.17, 0.41, 0.27, 0.15, 0.32, 0.5, 0.52, 0.24, 0.25, 0.08, 0.18, 0.19, 0.57, 0.23, 0.19, 0.36, 0.34, 0.38, 0.5, 0.42, 0.745, 0.22, 0.69, 0.18, 0.57, 0.17, 0.33, 0.36, 0.18, 0.22, 0.4, 0.24, 0.36, 0.19, 0.23, 0.18, 0.17, 0.44, 0.17, 0.21, 0.685, 0.3, 0.2, 0.58, 0.16, 0.16, 0.24, 0.36, 0.13, 0.26, 0.21, 0.34, 0.25, 0.38, 0.12, 0.17, 0.19, 0.3, 0.38, 0.39, 0.59, 0.45, 0.22, 0.31, 0.35, 0.2, 0.39, 0.2, 0.56, 0.305, 0.45, 0.24, 0.26, 0.19, 0.26, 0.41, 0.22, 0.31, 0.35, 1.02, 0.27, 0.52, 0.21, 0.35, 0.26, 0.22, 0.44, 0.41, 0.4, 0.27, 0.25, 0.3, 0.49, 0.24, 0.32, 0.21, 0.19, 0.25, 0.37, 0.25, 0.26, 0.69, 0.17, 0.25, 0.25, 0.31, 0.3, 0.53, 0.24, 0.69, 0.38, 0.22, 0.29, 0.26, 0.16, 0.27, 0.15, 0.5, 0.31, 0.21, 0.19, 0.29, 0.32, 0.41, 0.21, 0.2, 0.42, 0.36, 0.15, 0.35, 0.33, 0.11, 0.31, 0.16, 0.34, 0.34, 0.2, 0.21, 0.28, 0.19, 0.28, 0.205, 0.26, 0.19, 0.43, 0.28, 0.21, 0.33, 0.24, 0.25, 0.28, 0.38, 0.3, 0.15, 0.33, 0.18, 0.32, 0.61, 0.3, 0.38, 0.38, 0.56, 0.34, 0.24, 0.22, 0.58, 0.35, 0.32, 0.28, 0.2, 0.21, 0.16, 0.58, 0.28, 0.255, 0.21, 0.63, 0.38, 0.16, 0.24, 0.35, 0.48, 0.19, 0.2, 0.17, 0.6, 0.32, 0.18, 0.2, 0.38, 0.52, 0.15, 0.38, 0.18, 0.14, 0.16, 0.26, 0.24, 0.245, 0.29, 0.15, 0.645, 0.415, 0.18, 0.2, 0.34, 0.18, 0.22, 0.51, 0.42, 0.49, 0.32, 0.25, 0.2, 0.24, 0.18, 0.27, 0.53, 0.28], \"xaxis\": \"x2\", \"y\": [0.33396714643252134, 0.5044440900554997, 0.8874896900044845, 0.4686759077780351, 0.23831547366416572, 0.571181601185031, 0.7785327680196316, 0.7290551099174598, 0.9581131370131553, 0.6801000322064107, 0.413367674560271, 0.6667140739211237, 0.9108229754863395, 0.9275086157065797, 0.9186958597750785, 0.7191871442695774, 0.8184457509658746, 0.8597940676688322, 0.7947045908306632, 0.8244149680645384, 0.42771531534877594, 0.5315376696882942, 0.7136291946100958, 0.5510697799054304, 0.6393262665313312, 0.9016582766249417, 0.8560880110261746, 0.8947361144883382, 0.9102326114023062, 0.840723585394272, 0.9264645566705582, 0.5105903360131552, 0.752648770317166, 0.5855954083225455, 0.8989214048388485, 0.5190750352404293, 0.9560713253502463, 0.7273157243430202, 0.9279672131348602, 0.640103147954212, 0.9158977434209615, 0.9035955072010529, 0.7140955379655831, 0.233508355491505, 0.7280578325574358, 0.8810827811902006, 0.3966129217085586, 0.15541760955422754, 0.5851621750323275, 0.9046111951917862, 0.4177213302712193, 0.7993763114768937, 0.6978409661933959, 0.6473373667551029, 0.770784382977056, 0.6500641275496193, 0.548949563093737, 0.9803199442553986, 0.6150775052067382, 0.391333092160729, 0.6966682278280982, 0.9426748402861506, 0.9170092977635526, 0.844625652038695, 0.5621782696252592, 0.8935808323282117, 0.6792214086077275, 0.6719996755401956, 0.5252591274442797, 0.7277045758687855, 0.4685752957996948, 0.8616549355667619, 0.347491516391863, 0.8224130863808733, 0.5340790568488665, 0.6711667658766297, 0.5277539611022016, 0.7226430813715845, 0.8140972745487615, 0.3280236940194876, 0.9543080196225542, 0.7752655593026647, 0.9223925066666061, 0.8588031784191832, 0.6345107008491314, 0.9393010047953068, 0.7897067132703484, 0.8608062836413887, 0.8367885032124018, 0.38555642305179116, 0.8611944449682004, 0.9172341012895443, 0.9206892306522243, 0.9500505925695213, 0.537798347971205, 0.9173482789702866, 0.44454351342386716, 0.8909704850569525, 0.7351932580165473, 0.6818328744935735, 0.7981559962965634, 0.7626532952948841, 0.807353254900461, 0.964411205143099, 0.4685752957996948, 0.6986526320119215, 0.1956969407137045, 0.9233481403380283, 0.8218375601976645, 0.8536269727611236, 0.5637680470866036, 0.42267134533232753, 0.93003590801509, 0.9364808605729722, 0.8816060831574614, 0.9663102962713933, 0.8345570787709832, 0.4997893986747249, 0.7921603237806832, 0.5586815647381762, 0.8622246464681924, 0.9828719612298703, 0.909295720392338, 0.9476267884443668, 0.5395521774612226, 0.901360886913609, 0.39410444510430487, 0.9262213132200262, 0.6627387433216217, 0.9629433821448677, 0.9614311452267452, 0.9802968012486629, 0.933760787013923, 0.34432718187202205, 0.63596173557573, 0.624364378916488, 0.7417789548241253, 0.7300918276682445, 0.6968315453320488, 0.7840233885688647, 0.8958841271622066, 0.5417426694559925, 0.7102579146160282, 0.6004345411549624, 0.515920701757342, 0.7587882454650442, 0.5029588531082266, 0.6887596776945688, 0.8642849605932809, 0.6469572639767995, 0.8103639651534781, 0.939764354405301, 0.694136577696587, 0.6593725303534554, 0.9646797005081557, 0.7979900311745153, 0.792123904710467, 0.8869579700149332, 0.7351250317969437, 0.5332560471205093, 0.9406873315653421, 0.39362685027924615, 0.9466602521798594, 0.8394325033041952, 0.6633442657978572, 0.8126408700417265, 0.7332457619716184, 0.08024070404520958, 0.8667774471450977, 0.6466814331404849, 0.912366876100516, 0.656670904734599, 0.8701678467707724, 0.8875925797813499, 0.9658725076002231, 0.7668332861852056, 0.8604440887473094, 0.934384507524058, 0.9605946056867319, 0.951253157591183, 0.5749289095213865, 0.6279243005170476, 0.7937202818717513, 0.7665301650725991, 0.700127941221274, 0.8531107444728586, 0.7947045908306632, 0.8870566665876504, 0.5476228787844645, 0.8410401833568673, 0.8736671065238262, 0.6519898659949606, 0.936943112068646, 0.9077719201719568, 0.8071889556778997, 0.8815615400732472, 0.8935313268029127, 0.8782891297971865, 0.5029588531082266, 0.5797201450332624, 0.9416775458320723, 0.5958140198486584, 0.2485157288688957, 0.932021424688801, 0.8531502837407814, 0.6344194678828672, 0.632587077283238, 0.9121448358615357, 0.5776545535910985, 0.9052765174806566, 0.8580390107418799, 0.8998644401112552, 0.6784536879503494, 0.9458342431661766, 0.21387363850783603, 0.9530348339880965, 0.7307391114165022, 0.7187682731289255, 0.6905635603269331, 0.9569274903702625, 0.9287384091375525, 0.3856984054091925, 0.504413920551941, 0.5389739198483336, 0.5921068831639978, 0.10702848140489757, 0.8772993497727819, 0.6361944011057532, 0.8952999713010865, 0.7069578609115064, 0.10632960186243966, 0.6465592619811017, 0.9116333268133815, 0.9210441535829985, 0.9483358221641291, 0.5800224234700003, 0.896951343689222, 0.8958659323404018, 0.8896861436466836, 0.7763142135369961, 0.778627444633172, 0.9274605647284293, 0.9167924025380936, 0.6422094408272838, 0.6363725079258666, 0.8694129796739031, 0.5693182102579236, 0.5315376696882942, 0.6814536952243052, 0.30089534057709466, 0.6689448970920832, 0.6419522618821227, 0.6500641275496193, 0.8221968069187356, 0.9285763346020383, 0.8495153837633861, 0.7135666997345446, 0.8850789772017983, 0.9128367188568884, 0.8709442503982084, 0.44714680104169846, 0.7147831401969469, 0.6814536952243052, 0.5823319261018008, 0.7718122970862826, 0.8925058444773368, 0.9249991097277733, 0.7849066379312727, 0.5120166815330335, 0.7863291630268572, 0.8171821177205619, 0.8878235148823457, 0.9813953955585096, 0.5009899161211654, 0.6787020040856314, 0.2747106808400709, 0.6998114428322438, 0.7191783799678735, 0.7566715075843347, 0.7741630673610131, 0.692871858980435, 0.8706970297938403, 0.9226518689226377, 0.619213859232465, 0.9620625840847012, 0.8161066853745392, 0.7984578805051198, 0.8987836568806694, 0.27900511725120763, 0.747868261422589, 0.8013372150606806, 0.4430395412241901, 0.8082746512504794, 0.9248395818955686, 0.8132668978866627, 0.7926355964369082, 0.7243101498981422, 0.8251498778038484, 0.865753667016409, 0.8784859927081519, 0.9613966942665844, 0.8380103992838959, 0.9376908870460701, 0.8505645904112248, 0.5317253080143199, 0.8756470416862959, 0.8823120896825394, 0.8920529250761863, 0.9565288857220365, 0.92576324319171, 0.8397457208604353, 0.8008835764985612, 0.7620555647282774, 0.6333567796033132, 0.8986985644274655, 0.8289197139212982, 0.38568054861828666, 0.4358764146033148, 0.7013568331933456, 0.5524769805317635, 0.8654015550049637, 0.9625385348003681, 0.4997035751430624, 0.5940434106189647, 0.29640429037896177, 0.9370396801623051, 0.7496358493500708, 0.8521916566704996, 0.7519935213994349, 0.8956127660014477, 0.7563308848917781, 0.5425355780301907, 0.1652985164032473, 0.5777375433929663, 0.5926841497777402, 0.5247451599628447, 0.6215406511606532, 0.646742228322253, 0.5236567091352762, 0.8105889943537302, 0.7614647275399787, 0.7272264480694343, 0.44438282424164377, 0.8051848688934031, 0.253979247575754, 0.8737269176380216, 0.7884186533408385, 0.5226162157005312, 0.7776146375974927, 0.8021344726910251, 0.6794204065079696, 0.8398669626756513, 0.3743394998756179, 0.6593725303534554, 0.41008410759983227, 0.8726624594592295, 0.31336232876890546, 0.6187135046228962, 0.9208146539756937, 0.8948907807194619, 0.9475948217130945, 0.7098971478357265, 0.41970311630379203, 0.5524505095188592, 0.6689295490636696, 0.39534528644804523, 0.6686700461744643, 0.6608417181144597, 0.6289006219381473, 0.8112353209803558, 0.9675531845963172, 0.3468688843876404, 0.8171815196180959, 0.9315945487332388, 0.7612383340144859, 0.43979370974717685, 0.9452166580978265, 0.810349906376065, 0.4979189466877109, 0.9054024939516333, 0.7506263221664519, 0.8595966107872783, 0.9041757536760852, 0.5120166815330335, 0.9246344940597735, 0.622364539475366, 0.7975959936185795, 0.9376528402833735, 0.8270495791839716, 0.7463426393970082, 0.8508295060861325, 0.5277539611022016, 0.7926521549058593, 0.8343380415579561, 0.7973631232158779, 0.5423298306356671, 0.6253812669856891, 0.9342151247863544, 0.9064095870896521, 0.8428584418618921, 0.5680191878381406, 0.8230633503438987, 0.857993972512287, 0.8312116035859974, 0.8886868130574391, 0.5695902702544526, 0.8750573328895943, 0.47134086624147714, 0.6082670858563528, 0.8571520978358925, 0.7006810412396262, 0.6001343818465046, 0.8680196363335714, 0.7833148206731655, 0.835330250744176, 0.6883000602161935, 0.4297997702781997, 0.7132181587745201, 0.941909753873568, 0.9298379484442667, 0.8950633078112005, 0.9652574497835966, 0.8593048115498744, 0.23022113319019433, 0.5548683876071567, 0.8789570823277312, 0.7176343272433334, 0.7135972690872326, 0.900955402304434, 0.89110615578316, 0.8021344726910251, 0.36734125225010755, 0.9233813125795639, 0.9269988231022361, 0.6021478506882372, 0.27064660283581765, 0.7595966254948197, 0.5317253080143199, 0.9626288904553877, 0.518871521713375, 0.4244151934213653, 0.8784852709235653, 0.667697582798242, 0.6791650855490978, 0.8659372985570389, 0.5217980090164113, 0.9757802673562255, 0.20769640873195563, 0.6900575067285889, 0.15051833553221247, 0.8476988333501053, 0.12043274000614122, 0.6546311715671466, 0.412102187638673, 0.6339696776630096, 0.6925917751558638, 0.8074446941396305, 0.8417042066658985, 0.4702054036006336, 0.8107456318417504, 0.934253622333564, 0.9671353887875448, 0.3776875782453083, 0.5133306968464912, 0.8279918435672958, 0.7295730380004212, 0.8398957027397556, 0.7470826509089123, 0.7722124156410631, 0.3944809481034696, 0.5801047158883857, 0.7134138458261836, 0.8265590446981121, 0.5836238058504062, 0.7538957359152121, 0.9708936701567454, 0.41507295289487073, 0.9039211350062085, 0.5109703825452502, 0.8880660412534, 0.6332514250278477, 0.703270618172154, 0.863031725372896, 0.9601349291832292, 0.5845797646527732, 0.8357575010967041, 0.9584406458449958, 0.8733333206292072, 0.4740801794177068, 0.5787650908025566, 0.38525623454815555, 0.5715075300165849, 0.951253157591183, 0.831291834366621, 0.6482062646591596, 0.5447536045265621, 0.8456825404777587, 0.5358725178581014, 0.8893400405584444, 0.5955893395860203, 0.9408369636189147, 0.7580589814818564, 0.4244151934213653, 0.7636885291754726, 0.9532052815091139, 0.6686700461744643, 0.39683939049776734, 0.8309978518015588, 0.06774730328187532, 0.8934061610794648, 0.9459413258233057, 0.8507977517004935, 0.9694554821790147, 0.8640493534313302, 0.8409166048571896, 0.9059760843724536, 0.7278052027863667, 0.8952246802917138, 0.39534528644804523, 0.9558702864115934, 0.9178754126151818, 0.7504628435478695, 0.7568870052952757, 0.32046258648166903, 0.9712495894387816, 0.7125870341029702, 0.8286889773580812, 0.929575727770858, 0.8422483936479932, 0.60065365322741, 0.5775074082600717, 0.7505976846167132, 0.5317253080143199, 0.9590110623565244, 0.9651712957082627, 0.7333643603414158, 0.7757825668725274, 0.8928390517037824, 0.2578168736401774, 0.5355488836719776, 0.8408692583280314, 0.7849780542174357, 0.8711681462620556, 0.8447990405440073, 0.9571933326515756, 0.9307123551507692, 0.6421242495412457, 0.9239207054420927, 0.9336219461922934, 0.4244151934213653, 0.5673643045526261, 0.8301442064454496, 0.528471943574542, 0.8835542071774324, 0.8820947700128993, 0.4561713647735051, 0.584381944856391, 0.9493936477483658, 0.7816316980556022, 0.7770145472448273, 0.8495153837633861, 0.8318035560268552, 0.5220388622338656, 0.8589980209217414, 0.21216021099657945, 0.8782303617207965, 0.901850575196968, 0.7683760396387002, 0.9559989503713009, 0.938411491366706, 0.7225398931917507, 0.5918361617892179, 0.8596378534897678, 0.8816239240572568, 0.9296844522785247, 0.8299758417251202, 0.7538846798551382, 0.931253582726863, 0.6902425303942638, 0.9299571155275668, 0.35461708236434614, 0.6119587629530028, 0.8979450471026776, 0.8782891297971865, 0.6144930729026484, 0.5601837238662909, 0.4230258756549153, 0.5115702372514986, 0.6133200318312215, 0.8287048127179734, 0.42887934024879554, 0.5543929044930882, 0.5414149972460248, 0.7453725251924848, 0.6522898344923613, 0.6445138145159856, 0.9212190995841192, 0.6991293681294938, 0.9188224881967051, 0.9444881948020799, 0.8399825546316605, 0.6440269003431431, 0.45260210695563535, 0.6678228102737954, 0.8535669746933884, 0.23469888428232324, 0.7581156815660375, 0.8329520097124233, 0.5886389680190937, 0.4250130050586104, 0.290761161529129, 0.9065968169685268, 0.39757013049667705, 0.9584529405260903, 0.24804178200132845, 0.8400605958344816, 0.9562762484868867, 0.5923100188758571, 0.5355488836719776, 0.6866862751474886, 0.753715093249364, 0.9302702282582556, 0.8405005145861136, 0.7758456574858743, 0.8270123797965384, 0.9270997487744173, 0.8779999285967196, 0.6350604679157676, 0.9057987369792326, 0.9732730617650076, 0.28007269673131574, 0.5393237551960537, 0.9509318156255189, 0.8055358405733448, 0.8512314640165554, 0.6752183046546253, 0.9766791413071304, 0.26893819095773785, 0.5105552073939665, 0.7964242570425004, 0.9159462749375985, 0.46312559485344046, 0.7889853219989779, 0.5331772070153998, 0.6250130361556073, 0.5340700079782073, 0.8981158701031157, 0.8424802355113449], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [0.365, 0.62, 0.27, 0.18, 0.29, 0.28, 0.43, 0.765, 0.785, 0.6, 0.3, 0.19, 0.31, 0.25, 0.29, 0.21, 0.31, 0.38, 0.35, 0.45, 0.28, 0.25, 0.34, 0.41, 0.22, 0.29, 0.41, 0.41, 0.21, 0.2, 0.27, 0.3, 0.73, 0.6, 0.18, 0.19, 0.98, 0.52, 0.12, 0.36, 0.485, 0.58, 0.34, 0.25, 0.43, 0.51, 0.54, 0.6, 0.28, 0.2, 0.25, 0.26, 0.31, 0.64, 0.705, 0.37, 0.61, 0.645, 0.31, 0.42, 0.645, 0.45, 0.27, 0.29, 0.39, 0.91, 0.46, 0.7, 0.775, 0.55, 0.57, 0.34, 0.335, 0.685, 0.24, 0.25, 0.27, 0.31, 0.47, 0.39, 0.13, 0.56, 0.29, 0.5, 0.2, 0.37, 0.16, 0.25, 0.25, 0.5, 0.23, 0.345, 0.27, 0.3, 0.58, 1.58, 0.29, 0.62, 0.64, 0.24, 0.35, 0.42, 0.21, 0.52, 0.33, 0.51, 0.62, 0.5, 0.33, 0.33, 0.6, 0.31, 0.63, 0.3, 0.21, 0.27, 0.24, 0.41, 0.27, 0.56, 0.27, 0.24, 0.61, 0.5, 0.695, 0.65, 0.16, 0.23, 0.695, 0.44, 0.28, 0.33, 0.3, 0.35, 0.34, 0.39, 0.25, 0.66, 0.585, 0.315, 0.29, 0.2, 0.22, 0.18, 0.59, 0.34, 0.21, 0.4, 0.52, 0.37, 0.5, 0.31, 0.43, 0.24, 0.3, 0.31, 0.22, 0.26, 0.28, 0.55, 0.635, 0.32, 0.14, 0.36, 0.59, 0.31, 0.3, 0.14, 0.21, 0.23, 0.31, 0.26, 0.28, 0.17, 0.35, 0.54, 0.39, 0.39, 0.24, 0.15, 0.16, 0.215, 0.38, 0.34, 0.26, 0.3, 0.29, 0.27, 0.28, 0.24, 0.66, 0.25, 0.25, 0.28, 0.4, 0.38, 0.21, 0.3, 0.18, 0.45, 0.67, 0.36, 0.34, 0.24, 0.27, 0.21, 0.31, 0.32, 0.5, 0.31, 0.34, 0.33, 0.48, 0.2, 0.28, 0.39, 0.29, 0.34, 0.34, 0.24, 0.4, 0.27, 0.33, 0.28, 0.18, 0.41, 0.41, 0.27, 0.52, 0.345, 0.33, 0.23, 0.22, 0.23, 0.745, 0.35, 0.12, 0.22, 0.3, 0.22, 0.44, 0.65, 0.21, 0.12, 0.29, 0.32, 0.17, 0.14, 0.4, 0.41, 0.42, 0.44, 0.3, 0.24, 0.29, 0.23, 0.12, 0.3, 0.34, 0.45, 0.46, 0.2, 0.18, 0.18, 0.26, 0.28, 0.47, 0.23, 0.235, 0.33, 0.28, 0.705, 0.16, 0.31, 0.16, 0.28, 0.33, 0.45, 0.675, 0.37, 0.78, 0.28, 0.19, 0.6, 0.62, 0.14, 0.31, 0.555, 0.21, 0.45, 0.26, 0.6, 0.4, 0.62, 0.3, 0.41, 0.41, 0.3, 0.25, 0.59, 0.24, 0.32, 0.25, 0.26, 0.44, 0.475, 0.35, 0.24, 0.28, 0.23, 0.4, 0.27, 0.26, 0.24, 0.27, 0.26, 0.31, 0.26, 0.33, 0.595, 0.26, 0.39, 0.26, 0.23, 0.875, 0.35, 0.33, 0.45, 0.3, 0.335, 0.9, 0.24, 0.19, 0.16, 0.55, 0.21, 0.15, 0.63, 0.22, 0.49, 0.32, 0.44, 0.48, 0.83, 0.61, 0.2, 0.4, 0.365, 0.22, 0.15, 0.23, 0.26], \"xaxis\": \"x2\", \"y\": [0.8142007211296887, 0.07257977436397642, 0.7430932382113554, 0.8214862427787604, 0.5698848321031316, 0.6048119589659149, 0.6466669219762841, 0.14510080060429495, 0.2250304680670007, 0.28492472637839966, 0.42061632734231896, 0.8281252124183194, 0.49622399336621903, 0.3482895521074759, 0.4678833354511545, 0.5708968386647719, 0.37048677721847617, 0.553632248395139, 0.8702137350251022, 0.42186952587750404, 0.8696774950675754, 0.5410576963494411, 0.3971326977900686, 0.3275001196198921, 0.9448289227093116, 0.7109941475090589, 0.41925580570138304, 0.3675472469853882, 0.6721911818800557, 0.5562207270314473, 0.5262426608517637, 0.3244609607385458, 0.15056615442564347, 0.15676979724311627, 0.6037730696030339, 0.6342511279653397, 0.021947035536558718, 0.32429164429335744, 0.5678746850743716, 0.3571680467137555, 0.7755534309390314, 0.3240287891037917, 0.699424662214302, 0.5151532452376618, 0.7564675819717819, 0.38343591026479057, 0.19811005648518398, 0.3168419703358067, 0.5315947262677626, 0.9269044449273315, 0.8260225289794664, 0.451791899378283, 0.830516920403184, 0.47128602930186, 0.19027823806377472, 0.5181346713949518, 0.29552777318700446, 0.45414400334446664, 0.39329840463575844, 0.42327932510626076, 0.45838907164509224, 0.2233864252642039, 0.3628419195926303, 0.6709353200988277, 0.46058046365566996, 0.25551237833043455, 0.7234147543269824, 0.1481282262733752, 0.314935793994079, 0.20050531530561894, 0.37453315488553635, 0.701015529968035, 0.6343341418527783, 0.1739320900588749, 0.734996253073231, 0.8172229478314255, 0.3598554146739685, 0.7121055211356295, 0.2620604909731644, 0.3421138035730516, 0.6951268813066005, 0.35208221297891723, 0.452099210446082, 0.18907620085798427, 0.5444201651108793, 0.6484058972837882, 0.3258186925596978, 0.5963383680780668, 0.6202666247822538, 0.576738593946626, 0.5054992484109841, 0.2972245631729925, 0.6844333356791464, 0.42629475072919953, 0.4405153833121037, 0.01207867704715336, 0.7609288944606691, 0.23951123982998349, 0.09310514674080905, 0.5084920166510624, 0.33067609257366243, 0.36481899584296196, 0.5708968386647719, 0.3194802059637459, 0.14207297841267416, 0.5776897120055972, 0.2026163425795633, 0.37909000048748537, 0.38206764842015895, 0.41324683104354176, 0.17826143731067332, 0.42339414872454434, 0.39148091864802853, 0.3511350413575442, 0.8053393751847749, 0.5937005322868365, 0.6849942580153355, 0.38930033076762494, 0.5168500865319015, 0.5699073288866824, 0.5376087249833421, 0.8185832461647057, 0.25950508036415604, 0.20394483716883388, 0.3303044530853749, 0.2528102968078532, 0.8477719856767125, 0.5217124250004609, 0.3303044530853749, 0.5382885532339231, 0.9625763866028243, 0.6536174904341296, 0.42629475072919953, 0.6458781618432388, 0.46574001023909845, 0.37268733756108086, 0.8180085473348132, 0.35493594975273335, 0.2423640089427935, 0.3636330633241046, 0.6421622311157122, 0.5444201651108793, 0.7396308412796291, 0.9036153464846048, 0.21101569987323432, 0.6004024464464508, 0.7595861882737439, 0.486549602332862, 0.2379839758891197, 0.5147825233229498, 0.2065932277190248, 0.4342628292980428, 0.5940848250235929, 0.4857193175270624, 0.5332610244722983, 0.5402196969638672, 0.8578846895389459, 0.5290225674595067, 0.6074669506688956, 0.1847839155105034, 0.3581391437324269, 0.4304380754474639, 0.8410120374942113, 0.5810086483513661, 0.19026233744636453, 0.7223494520380469, 0.8589928738613049, 0.8374625942163022, 0.781203852328267, 0.73983195178881, 0.41156537259256004, 0.7482873396984137, 0.44431713201158524, 0.7113673874393347, 0.49869552495399233, 0.7627102864663872, 0.37193390769028617, 0.37187810520956766, 0.3773291605703562, 0.8719651627687759, 0.6218762459828849, 0.3781393537983126, 0.553632248395139, 0.47624084907999176, 0.774399353278846, 0.5840424935194366, 0.5601025471409736, 0.6186690618327106, 0.620611700356168, 0.5755798886129706, 0.15047650536569443, 0.5530049338021776, 0.6597439619439023, 0.8300222117931148, 0.3490158529243493, 0.4410646109528086, 0.5067909967309752, 0.5851482063434866, 0.7149827463187939, 0.4849259975950144, 0.2094210588097294, 0.33399024531412796, 0.4083143545243069, 0.7497022835596558, 0.7817929239213606, 0.7637421953724776, 0.3825655414920891, 0.6611482494098961, 0.19022241257108333, 0.44972084577511023, 0.5476732603321269, 0.4831274653996314, 0.5077048340566679, 0.7289504589448288, 0.4379810490617926, 0.8017221455714771, 0.6434673631716396, 0.5059779734745421, 0.6065367192264559, 0.650368705032214, 0.34567471266024347, 0.39561589000187136, 0.3427787545601037, 0.4676404271158623, 0.5332283386400669, 0.4519108142444285, 0.40662831629925006, 0.42305576187259053, 0.22032895172816622, 0.5278715769330472, 0.43679486629948455, 0.743933429392776, 0.5269515041023835, 0.5008800654866953, 0.214168174561682, 0.44879088851457377, 0.683485355417811, 0.807753104897186, 0.42629475072919953, 0.8502951424821861, 0.17421175568219957, 0.25491371883486935, 0.7595861882737439, 0.6571724132942184, 0.7813188949129265, 0.5626906653340306, 0.8674288259883418, 0.6600514650598344, 0.4827749661719035, 0.5456147119159479, 0.39827550056677263, 0.27323823737433794, 0.695896529362927, 0.5048820477254727, 0.5422349097465021, 0.5610936746718964, 0.6571724132942184, 0.3088751107498249, 0.45428761266464013, 0.6604471727860799, 0.43371621376298963, 0.6171893197168647, 0.8100511550343341, 0.8100511550343341, 0.605832578461134, 0.5526475584669951, 0.4275055171336787, 0.8734720021260204, 0.8508295378350301, 0.5807723706867254, 0.8272749548927728, 0.2670652478909882, 0.7020144194675465, 0.4615566916191992, 0.7055847950248242, 0.43389869234556755, 0.6071692164257629, 0.3496825637352313, 0.23676491619791426, 0.7057755976874825, 0.15539001443149586, 0.6187538615870153, 0.8735882828904331, 0.30049486749739024, 0.23191705420611952, 0.8913917397916864, 0.4977157214618499, 0.16961113509580228, 0.8485494795219795, 0.4760032757956232, 0.5053843099270294, 0.2676015269871764, 0.3627664421236291, 0.15146266807038725, 0.7898179638281774, 0.6145296307645981, 0.3790380236797623, 0.3003532640340299, 0.6086112016774773, 0.39906793889171593, 0.8185832461647057, 0.6715802865662828, 0.8260225289794664, 0.6056902064850618, 0.400132762133902, 0.39471961640683584, 0.6449859309106076, 0.5637152910565628, 0.39949420960438964, 0.5490401551410112, 0.4398875418860128, 0.30916577334906253, 0.7093303227687476, 0.4562508424819209, 0.40444044759428516, 0.5773483646962835, 0.447777692034652, 0.4961542215384683, 0.32474312180562226, 0.21192693199409943, 0.9056903490933487, 0.5013816399998683, 0.758876109553896, 0.6364928148646596, 0.2952804752502578, 0.4748951900520853, 0.43679486629948455, 0.5479962315186364, 0.4728142838839701, 0.6343341418527783, 0.12248807650217919, 0.5052525886146573, 0.8281252124183194, 0.8930081609652758, 0.36283726088930296, 0.8098196742550625, 0.656477404357746, 0.193885049884708, 0.5269515041023835, 0.49858469647139786, 0.32780472036158087, 0.24927512797396847, 0.6148718578314069, 0.10691527318901187, 0.136775438340409, 0.8489192718114075, 0.2600203086082801, 0.8142007211296887, 0.5269515041023835, 0.7966615933629455, 0.5633234794197017, 0.767479452333631], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"volatile.acidity\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"volatile.acidity\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}}, {\"id\": \"volatile.acidity_bad\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (ref)\", \"type\": \"scatter\", \"x\": [0.46, 0.32, 0.27, 0.6, 0.46, 0.66, 0.58, 0.21, 0.4, 0.41, 0.6, 0.21, 0.3, 0.32, 0.52, 0.37, 0.53, 1.13, 0.26, 1.33, 0.3, 0.31, 1.115, 0.19, 0.685, 0.76, 0.22, 0.69, 0.705, 0.3, 0.805, 0.34, 0.28, 0.23, 0.25, 0.28, 0.16, 0.2, 0.42, 0.25, 0.38, 0.28, 0.1, 0.365, 0.755, 0.26, 0.165, 0.17, 0.31, 0.44, 0.63, 0.305, 0.26, 0.5, 0.27, 0.47, 0.28, 0.51, 0.38, 0.41, 0.6, 0.25, 0.7, 0.21, 0.66, 0.22, 0.47, 0.64, 0.54, 0.17, 0.24, 0.37, 0.41, 0.29, 0.15, 0.31, 0.28, 0.18, 0.77, 0.31, 0.24, 0.28, 0.27, 0.48, 0.3, 0.54, 0.2, 0.52, 0.39, 0.34, 0.37, 0.26, 0.6, 0.41, 0.28, 0.27, 0.22, 0.28, 0.28, 0.28, 0.31, 0.39, 0.21, 0.32, 0.57, 0.41, 0.32, 0.35, 0.43, 0.2, 0.41, 0.15, 0.45, 0.14, 0.43, 0.5, 0.39, 0.25, 1.025, 0.28, 0.33, 0.57, 0.41, 0.35, 0.32, 0.44, 0.26, 0.765, 0.775, 0.28, 0.17, 0.935, 0.29, 0.25, 0.28, 0.34, 0.14, 0.32, 0.27, 0.69, 0.27, 0.27, 0.36, 0.29, 0.33, 0.45, 0.2, 0.21, 0.59, 0.38, 0.28, 0.68, 0.19, 0.56, 0.2, 0.87, 0.42, 0.21, 0.14, 0.45, 0.23, 0.68, 0.46, 0.31, 0.655, 0.25, 0.23, 0.32, 0.34, 0.25, 0.29, 0.23, 0.59, 0.37, 0.44, 0.48, 0.38, 0.3, 0.58, 0.34, 0.32, 1.33, 0.28, 0.33, 0.26, 0.29, 0.93, 0.34, 0.56, 0.29, 0.22, 0.275, 0.32, 0.615, 0.27, 0.755, 0.29, 0.25, 0.33, 0.17, 0.35, 0.5, 0.5, 0.73, 0.26, 0.31, 0.21, 0.35, 0.54, 0.19, 0.22, 0.21, 0.31, 0.25, 0.32, 0.42, 0.46, 0.475, 0.61, 0.42, 0.69, 0.19, 0.31, 0.26, 0.15, 0.38, 0.76, 0.24, 0.36, 0.695, 0.35, 0.25, 0.12, 0.23, 0.17, 0.3, 0.36, 0.26, 0.34, 0.29, 0.45, 0.34, 0.24, 0.27, 0.19, 0.37, 0.4, 0.26, 0.31, 0.52, 0.88, 0.29, 0.28, 0.835, 0.25, 0.345, 0.23, 0.62, 0.28, 0.39, 0.25, 0.41, 0.26, 0.25, 0.2, 0.22, 0.19, 0.2, 0.32, 0.725, 0.23, 0.67, 0.24, 0.32, 0.32, 0.42, 0.58, 0.32, 0.35, 0.415, 0.5, 0.64, 0.34, 0.66, 0.39, 0.29, 0.21, 0.23, 0.34, 0.265, 0.2, 0.29, 0.49, 0.43, 0.33, 0.54, 0.33, 0.695, 0.28, 0.58, 0.915, 0.18, 0.82, 0.14, 0.615, 0.24, 0.34, 0.39, 0.36, 0.39, 0.18, 0.37, 0.64, 0.27, 0.39, 0.32, 0.23, 0.47, 0.28, 0.46, 0.47, 0.25, 0.96, 0.41, 0.32, 0.31, 0.36, 0.25, 0.575, 0.28, 0.28, 0.45, 0.39, 0.24, 0.12, 0.63, 0.37, 0.5, 0.59, 0.42, 0.22, 0.24, 0.2, 0.775, 0.24, 0.61, 0.38, 0.3, 0.24, 0.46, 0.31, 0.52, 0.4, 0.5, 0.19], \"xaxis\": \"x\", \"y\": [0.7197707895473677, 0.05448058807241418, 0.5021256787650443, 0.4710854375480472, 0.7156076129280222, 0.7966690429773311, 0.7265425252145667, 0.16771266951545494, 0.610944103187451, 0.6324527530146118, 0.42180662537268765, 0.2598044700255929, 0.5503032830239416, 0.5632112185661304, 0.6840604465833231, 0.6224375641140001, 0.8071781895370533, 0.9515482366939344, 0.3994071349416132, 0.9677746238863042, 0.572587586261062, 0.7602674855798478, 0.861098734498427, 0.1386074727873, 0.6703360831713621, 0.8064003460928679, 0.3172728283240366, 0.8039094494444462, 0.9186426431335688, 0.6026275969807151, 0.8609701260317718, 0.3485833566260712, 0.3005246278528939, 0.2859113263741919, 0.4978204971029292, 0.5125675444128744, 0.4268860326359044, 0.11791793574572085, 0.440027850275134, 0.4938434408506086, 0.4933189622152446, 0.166194347192407, 0.30200278364192557, 0.6822425768461728, 0.8693180940701344, 0.24112389044610405, 0.43189370387303117, 0.284455178085937, 0.23793737479647703, 0.5535561322468214, 0.7900402576908969, 0.47373775892899717, 0.6055733033081183, 0.7462675017011632, 0.32245623572553406, 0.7612367841042231, 0.36308410170653527, 0.6103993963703384, 0.3965676277125745, 0.2230008284200371, 0.8480025164595866, 0.43585875500482685, 0.24095331994381775, 0.4030652094068704, 0.8951637220162157, 0.2782175630406618, 0.7337660836226194, 0.8352762102164887, 0.6223987562306759, 0.2928263700360406, 0.6563137004068428, 0.16155652477357085, 0.6364666355122575, 0.2186811050870735, 0.27206300237801306, 0.4358901152617537, 0.6136035252376228, 0.07900866299327158, 0.8522855318359817, 0.11906253414448076, 0.3466831105240652, 0.11265227152414181, 0.6302693732121377, 0.7168097665217413, 0.4796298258249143, 0.4476252306691143, 0.3612478268219491, 0.611861930499026, 0.15121036728507153, 0.5363393546692182, 0.16155652477357085, 0.441733396330222, 0.7834276811132227, 0.6364666355122575, 0.44873286860252337, 0.4948960601400133, 0.4172084246960842, 0.5055831714989107, 0.5269082808529498, 0.3737404408311804, 0.4491757516278906, 0.5266720849021, 0.2882430633103308, 0.6066213483726142, 0.83534933450756, 0.2509605867776752, 0.230738949997912, 0.25680675940048736, 0.6858999083789018, 0.27626495444752697, 0.35158671089680515, 0.311480105980391, 0.5950329577300569, 0.4196263877039489, 0.3672198477254309, 0.5488429300958864, 0.6273126624389191, 0.0990306898864649, 0.935036100419004, 0.5556828679884147, 0.6003916802566726, 0.1337843055401957, 0.6898191889393818, 0.46604488826349566, 0.6668872608045229, 0.5998672378660981, 0.14712454771937833, 0.8558065212045691, 0.883276495704891, 0.5544329747085402, 0.38398791005853006, 0.8623310715459079, 0.4482795971615686, 0.4767821080964978, 0.6451659669426603, 0.5099786295438409, 0.11454219273407718, 0.5691587732433696, 0.2398813672346335, 0.8592796956842923, 0.38133093816728936, 0.4754945767078651, 0.2673740541283356, 0.43092180164799054, 0.5981491184574936, 0.7512253043619477, 0.20474988026063612, 0.12337786436138054, 0.6965484670033051, 0.4642254518352117, 0.29034758521725457, 0.7912282271603185, 0.1364389858241727, 0.5326323768611896, 0.3938848007926149, 0.886984727126295, 0.5955398539691413, 0.3667393936023857, 0.35129461810907203, 0.578130474122496, 0.1952086434691429, 0.6982941690158907, 0.6159300986783536, 0.6650580695700093, 0.8007006003287879, 0.13750802167619447, 0.47121416359091395, 0.5691587732433696, 0.5295784007050042, 0.4938434408506086, 0.4240508430342457, 0.1531205555636086, 0.7965770364050346, 0.4829168465516456, 0.6333246955344933, 0.38682769986244625, 0.5589353890471914, 0.30965836575156913, 0.6133571507425741, 0.5363393546692182, 0.5474540697204298, 0.9680074395956593, 0.29703705077451537, 0.7566858385458134, 0.451244026180727, 0.6224939697452743, 0.9340693900855184, 0.1254375450851024, 0.770680513376406, 0.7273231109206828, 0.410671569380914, 0.19928392436820586, 0.44743622108127745, 0.4991477681643879, 0.5443787589855091, 0.826082779912576, 0.5642536294664222, 0.6762559922350657, 0.39283078357423706, 0.3074847569358159, 0.40732461839200396, 0.5614584986504241, 0.5614584986504241, 0.575628870274347, 0.1938881144566701, 0.6480440770440566, 0.23946299348505806, 0.6110142157087575, 0.32489046344192996, 0.127020290619695, 0.28948900574123104, 0.27970970921902805, 0.5179212029104148, 0.579807192000203, 0.5695619245525361, 0.7471497674522103, 0.6761943115269239, 0.6052803835931642, 0.9048996801452402, 0.632953623191418, 0.7849920634816455, 0.12946409768986655, 0.3899257470968539, 0.37735505673750047, 0.27206300237801306, 0.6356505945299911, 0.9000798247851504, 0.5852448485124296, 0.3537739535016634, 0.8589709040748648, 0.5105041430354158, 0.4760479563081992, 0.3915586115462193, 0.4344526143297297, 0.04825794875232026, 0.25106204840173363, 0.5352062615150248, 0.2084678736174792, 0.5588772074146924, 0.42656597432725707, 0.3395528272139201, 0.5154796814541086, 0.30312695461308037, 0.4684625037801391, 0.13140485141127656, 0.37575572516499556, 0.7087902803012941, 0.22740617784346517, 0.7932370230268412, 0.6977827466507267, 0.8687065743771458, 0.3532210556477622, 0.3005246278528939, 0.8817461779308045, 0.5897758288136841, 0.5117334773877459, 0.2267712913026929, 0.7462523759498982, 0.5055831714989107, 0.6276122794572256, 0.34766968675436505, 0.563322001169588, 0.4035281086421867, 0.44827723495654004, 0.7588644006503809, 0.17560197311170134, 0.2736156405730563, 0.5646478519097824, 0.12788772013874206, 0.8127608550985441, 0.35130933230290007, 0.8842329534318195, 0.5671758377024384, 0.508518787579709, 0.4735654621913231, 0.6614347321502836, 0.7032589073748752, 0.418601168771625, 0.40262233345395115, 0.38045938978299354, 0.6221728234115828, 0.6769388667590319, 0.825791915264051, 0.8036522945246104, 0.5350776523934957, 0.5038683203672731, 0.4187790963850706, 0.3942708224564714, 0.36585282612655, 0.42973128126448334, 0.1395024853671747, 0.36909778672938764, 0.5126700875045708, 0.31128511290513083, 0.5841805470690385, 0.42932394036482613, 0.5168725346003686, 0.9331527243268325, 0.5090935678835011, 0.848083892739094, 0.7288594688776423, 0.23463814542978878, 0.9073343486287574, 0.5445649372592127, 0.8030108083542629, 0.30698149193503155, 0.47724620771884374, 0.49565431290071005, 0.29179072192325783, 0.53941953634433, 0.32642767658125227, 0.5714063949384225, 0.6769388667590319, 0.48314991346809855, 0.3838692085325581, 0.7654355578102645, 0.6807995217458978, 0.7803105409218809, 0.4971816769068883, 0.5662837862370104, 0.32557907866588853, 0.4059739580227363, 0.8621668957327787, 0.4863555612469991, 0.44913520001249685, 0.5044088987161788, 0.018560580499064172, 0.17397747102053363, 0.8203404366189, 0.531551035274026, 0.3951880410340851, 0.6710839680909022, 0.7545393605546251, 0.25029771644034415, 0.31651464458218903, 0.7900402576908969, 0.7649542174153934, 0.6282404390050247, 0.5124469561170844, 0.7501741577575001, 0.3717170374651112, 0.5479204837841629, 0.1799627586960565, 0.8716748635647116, 0.4700369344869263, 0.7044722268129955, 0.7597806244765397, 0.4570971226262448, 0.3688130253756654, 0.5854022956087224, 0.6067015953642416, 0.6092966434658947, 0.5713009051869427, 0.15316343939585397, 0.31191498773739224], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [0.24, 0.19, 0.33, 0.1, 0.33, 0.36, 0.37, 0.19, 0.23, 0.27, 0.19, 0.57, 0.12, 0.26, 0.25, 0.37, 0.18, 0.685, 0.335, 0.2, 0.26, 0.4, 0.21, 0.25, 0.3, 0.24, 0.3, 0.43, 0.145, 0.66, 0.27, 0.48, 0.24, 0.17, 0.24, 0.2, 0.23, 0.34, 0.44, 0.26, 0.2, 0.08, 0.23, 0.22, 0.24, 0.15, 0.34, 0.47, 0.27, 0.43, 0.15, 0.35, 0.19, 0.19, 0.27, 0.27, 0.44, 0.21, 0.51, 0.4, 0.44, 0.65, 0.22, 0.14, 0.38, 0.6, 0.28, 0.21, 0.31, 0.21, 0.32, 0.37, 0.21, 0.3, 0.37, 0.22, 0.35, 0.24, 0.635, 0.36, 0.21, 0.22, 0.18, 0.27, 0.4, 0.15, 0.18, 0.45, 0.33, 0.4, 0.31, 0.39, 0.17, 0.16, 0.15, 0.35, 0.24, 0.29, 0.25, 0.18, 0.14, 0.25, 0.44, 0.27, 0.24, 0.17, 0.38, 0.11, 0.22, 0.855, 0.27, 0.33, 0.31, 0.25, 0.28, 0.48, 0.34, 0.13, 0.23, 0.36, 0.18, 0.26, 0.27, 0.18, 0.53, 0.51, 0.51, 0.3, 0.2, 0.66, 0.17, 0.455, 0.22, 0.38, 0.25, 0.29, 0.43, 0.855, 0.42, 0.46, 0.18, 0.15, 0.23, 0.24, 0.4, 0.23, 0.23, 0.2, 0.46, 0.13, 0.15, 0.5, 0.23, 0.3, 0.23, 0.31, 0.2, 0.34, 0.22, 0.21, 0.27, 0.63, 0.125, 0.51, 0.38, 0.21, 0.32, 0.23, 0.27, 0.44, 0.44, 0.34, 0.15, 0.23, 0.41, 0.69, 0.53, 0.17, 0.39, 0.635, 0.34, 0.27, 0.2, 0.3, 0.32, 0.235, 0.62, 0.18, 0.28, 0.15, 0.21, 0.66, 0.55, 0.55, 0.59, 0.28, 0.28, 0.23, 0.26, 0.19, 0.16, 0.32, 0.28, 0.62, 0.27, 0.34, 0.24, 0.29, 0.19, 0.36, 0.23, 0.25, 0.28, 0.27, 0.26, 0.23, 0.21, 0.2, 0.18, 0.44, 0.2, 0.21, 0.29, 0.21, 0.27, 0.17, 0.26, 0.17, 0.24, 0.15, 0.32, 0.36, 0.76, 0.28, 0.28, 0.21, 0.15, 0.19, 0.17, 0.29, 0.26, 0.23, 0.21, 0.44, 0.745, 0.27, 0.26, 0.25, 0.29, 0.29, 0.22, 0.19, 0.47, 0.31, 0.4, 0.21, 0.43, 0.2, 0.21, 0.3, 0.105, 0.27, 0.19, 0.34, 0.29, 0.3, 0.43, 0.4, 0.53, 0.3, 0.17, 0.67, 0.28, 0.17, 0.34, 0.25, 0.18, 0.3, 0.66, 0.39, 0.29, 0.24, 0.11, 0.28, 0.36, 0.29, 0.35, 0.2, 0.56, 0.2, 0.18, 0.37, 0.28, 0.39, 0.29, 0.28, 0.6, 0.27, 0.18, 0.2, 0.58, 0.25, 0.43, 0.2, 0.16, 0.36, 0.21, 0.14, 0.25, 0.36, 0.38, 0.24, 0.395, 0.18, 0.16, 0.27, 0.17, 0.32, 0.23, 0.25, 0.3, 0.22, 0.22, 0.41, 0.21, 0.65, 0.24, 0.27, 0.3, 0.3, 0.29, 0.27, 0.26, 0.255, 0.19, 0.19, 0.2, 0.66, 0.25, 0.18, 0.35, 0.28, 0.25, 0.18, 0.53, 0.28, 0.18, 1.0, 0.58, 0.25, 0.16, 0.16, 0.18, 0.18, 0.27, 0.2, 0.36, 0.3, 0.18, 0.48, 0.4, 0.26, 0.29, 0.39, 0.63, 0.26, 0.3, 0.15, 0.31, 0.28, 0.275, 0.19, 0.24, 0.71, 0.64, 0.22, 0.21, 0.83, 0.22, 0.43, 0.49, 0.25, 0.58, 0.34, 0.34, 0.23, 0.54, 0.4, 0.28, 0.25, 0.44, 0.28, 0.3, 0.35, 0.21, 0.31, 0.22, 0.45, 0.27, 0.58, 0.62, 0.62, 0.58, 0.28, 0.25, 0.25, 0.25, 0.34, 0.41, 0.44, 0.295, 0.33, 0.28, 0.16, 0.36, 0.25, 0.37, 0.23, 0.46, 0.42, 0.18, 0.22, 0.31, 0.15, 0.23, 0.26, 0.2, 0.16, 0.45, 0.32, 0.35, 0.33, 0.25, 0.16, 0.24, 0.46, 0.76, 0.68, 0.3, 0.31, 0.31, 0.21, 0.2, 0.42, 0.21, 0.23, 0.29, 0.23, 0.24, 0.12, 0.25, 0.32, 0.315, 0.16, 0.18, 0.37, 0.17, 0.6, 0.17, 0.15, 0.45, 0.4, 0.35, 0.27, 0.14, 0.67, 0.33, 0.19, 0.26, 0.4, 0.66, 0.3, 0.18, 0.23, 0.4, 0.115, 0.3, 0.28, 0.21, 0.2, 0.36, 0.18, 0.22, 0.26, 0.36, 0.28, 0.32, 0.23, 0.37, 0.41, 0.23, 0.58, 0.2, 0.18, 0.305, 0.2, 0.16, 0.21, 0.3, 0.18, 0.54, 0.31, 0.31, 0.23, 0.34, 0.23, 0.26, 0.29, 0.24, 0.3, 0.19, 0.26, 0.2, 0.38, 0.35, 0.37, 0.24, 0.52, 0.22, 0.53, 0.2, 0.29, 0.31, 0.13, 0.63, 0.2, 0.37, 0.26, 0.19, 0.37, 0.4, 0.36, 0.28, 0.29, 0.16, 0.545, 0.18, 0.38, 0.18, 0.32, 0.24, 0.26, 0.26, 0.18, 0.28, 0.29, 0.38, 0.14, 0.46, 0.28, 0.14, 0.44, 0.18, 0.23, 0.17, 0.65, 0.18, 0.43, 0.29, 0.17, 0.3, 0.22, 0.34, 0.41, 0.42, 0.3, 0.23, 0.16, 0.27, 0.28, 0.2, 0.16, 0.2, 0.36, 0.2, 0.23, 0.17, 0.26, 0.35, 0.27, 0.26, 0.32, 0.19, 0.51, 0.17, 0.63, 0.53, 0.26, 0.1, 0.29, 0.49, 0.32, 0.27, 0.26, 0.44, 0.24, 0.34, 0.59, 0.32, 0.42, 0.16, 0.13, 0.24, 0.24, 0.3, 0.34, 0.22, 0.13, 0.21, 0.19, 0.29, 0.43, 0.34, 0.825, 0.31, 0.3, 0.125, 0.29, 0.37, 0.755, 0.19, 0.25, 0.31, 0.55, 0.32, 0.26, 0.28, 0.37, 0.34, 0.19, 0.17, 0.23, 0.19, 0.36, 0.31, 0.18, 0.32, 0.34, 0.23, 0.35, 0.13, 0.67, 0.62, 0.24, 0.18], \"xaxis\": \"x\", \"y\": [0.18439386755371057, 0.5750868907731637, 0.1132172353536568, 0.19850047615697952, 0.6950004168934912, 0.41826441672946313, 0.040828937665112974, 0.2145583871630251, 0.09143093017991866, 0.10013996234885614, 0.3658834999306372, 0.587897812361327, 0.23563705889496211, 0.5289998061994394, 0.5981734696485812, 0.5956194363709464, 0.11295199838815062, 0.6349332021584286, 0.09356782907078887, 0.0672754654033908, 0.3541579814831264, 0.11781588709523827, 0.3295981493457443, 0.23443288181779365, 0.13830133810679424, 0.5122546205578999, 0.03626449638205209, 0.32057959349203036, 0.3955164844050859, 0.21320459763992916, 0.08620177311633537, 0.4132497936565127, 0.19514157099220286, 0.028148892894647393, 0.03728071159582558, 0.20213762816504022, 0.39088790332760825, 0.10566618212719892, 0.11466232649727714, 0.09544364959788487, 0.07351553674018241, 0.3657542344632553, 0.05859665738698361, 0.43634835962676355, 0.4827032077898804, 0.516310366273556, 0.6480037931050455, 0.21122004543372697, 0.030344760075157406, 0.22750344576024595, 0.18673438423788624, 0.5460909738859347, 0.0666291073587214, 0.320234954276134, 0.515425573770442, 0.5751179393061847, 0.3262180383913996, 0.12192585741802231, 0.6165939755266235, 0.09365914315081003, 0.44259853952477324, 0.31958523161407537, 0.09228899111547839, 0.22815273642701062, 0.5282447951108347, 0.7777719169155834, 0.13834506443323813, 0.29425092810710396, 0.5300870647699181, 0.031947521718024174, 0.1108646816717751, 0.053339747820140615, 0.14466174791529418, 0.25697560969337485, 0.3383868137798065, 0.30803904997837983, 0.03434255320493995, 0.08689109251212201, 0.46044782253877736, 0.0973761441498977, 0.3449058470623745, 0.024212367984770777, 0.11665042079727428, 0.3333970234137619, 0.1495417879159372, 0.0679784404121434, 0.2360052425084116, 0.39147703437781534, 0.04428683932015287, 0.5381556738404795, 0.4357341587922019, 0.11843845992675284, 0.28107964630818494, 0.06989794698232743, 0.2658605825653322, 0.22408104406272966, 0.15519213452661884, 0.09873339188795927, 0.10739713799337769, 0.4712507279726723, 0.31257930793611366, 0.6259141532505736, 0.1651629894813923, 0.13024327386797574, 0.08242409751896962, 0.55355901104019, 0.11256152515999429, 0.22124325125588817, 0.05838775174278421, 0.6734770756819889, 0.06919042490492266, 0.5773286546676725, 0.5693181878572973, 0.12726917141891614, 0.27983888222674136, 0.15690954109554833, 0.18593824584442387, 0.05432525584274117, 0.33273366741371935, 0.12435295831370408, 0.48112847828662497, 0.2959384652215836, 0.5042039768350125, 0.3749869638443927, 0.7258627386781167, 0.4806866421912115, 0.6234335830956541, 0.4191951896523489, 0.20821728825178332, 0.6343085651912675, 0.27674577061671146, 0.02140654255666985, 0.42849246998341506, 0.1817444030106703, 0.4551538855951942, 0.05087080041524106, 0.516641204200833, 0.6810720245435042, 0.08151744899857294, 0.4475169494323581, 0.03995706953508171, 0.2181819033834006, 0.20372897255157485, 0.24305701296248816, 0.5381556738404795, 0.2358485729609252, 0.051323642447754336, 0.1913631294907303, 0.32154631204965056, 0.31229802093755377, 0.3917329141436472, 0.39462053822053156, 0.3680669306910641, 0.5017894292511481, 0.32120711190509066, 0.0768019282386515, 0.1168769044932052, 0.31545143431826594, 0.12007957373947853, 0.08354361700756141, 0.2180731800932174, 0.7653011157176768, 0.05076221583963347, 0.11739077279846111, 0.3639458403519926, 0.4815918747301601, 0.35998732468747585, 0.457353694020342, 0.5520498791697908, 0.22168281241722143, 0.2132287846887433, 0.4763394582576197, 0.3040153802820409, 0.20749766415549342, 0.3316810644107503, 0.8126297477835096, 0.5749367295182395, 0.27274039590582944, 0.2685808245693546, 0.5172108675362206, 0.33506587713796443, 0.09616672688355288, 0.041108213935392324, 0.10548050716105373, 0.5016695616404938, 0.20022874051447226, 0.14220640128276774, 0.23772630779738468, 0.19606080251004787, 0.2603188495268066, 0.18846597668723208, 0.19827111133563302, 0.261548791893628, 0.4140325207077993, 0.8134796325151183, 0.12265695643958285, 0.6311167068993262, 0.13481820177301163, 0.0932384579037443, 0.14050160114126486, 0.2562249115981724, 0.08547750670655718, 0.08643201081848362, 0.19981675431015722, 0.31390222338706264, 0.06221739913672386, 0.06996303880871468, 0.30029370289300306, 0.4306817897420764, 0.6595343859760441, 0.2839408857911616, 0.20468539219890003, 0.1130196126722065, 0.2360017176902124, 0.13187147729288817, 0.42313120297864704, 0.06964897436687001, 0.1624399718171824, 0.17200815643270417, 0.07333105637055992, 0.2440137653363641, 0.4900110333069776, 0.3085554157386313, 0.03480496731142946, 0.12148031785507996, 0.15002971926037112, 0.5314247042003052, 0.2758453007685677, 0.2151852748992088, 0.2658605825653322, 0.29911225563077193, 0.6594110243744711, 0.49869782335001445, 0.16788254706683048, 0.11816213334465087, 0.08230909248122409, 0.13653212507346946, 0.25639170942272826, 0.06562233405876228, 0.23311900627036541, 0.3756616197417655, 0.46674395287949066, 0.3092684534350997, 0.8337319641197457, 0.8331457111467163, 0.2591056156836542, 0.4778687671024334, 0.2542440524586721, 0.5361036306539362, 0.07073721340803463, 0.4731688813159418, 0.5755848065786346, 0.356689463387698, 0.14225616860197343, 0.21837916002376445, 0.14466174791529418, 0.29899643271856946, 0.4757427727983842, 0.08126799884203029, 0.1296501822378736, 0.3286954654423938, 0.08620177311633537, 0.13855855420831553, 0.05543377339452393, 0.11917834098009661, 0.2613621884509647, 0.11269900223777074, 0.08429051026621415, 0.3393961441870107, 0.07031960314855146, 0.11356777592095357, 0.4853279864284006, 0.1279289285514792, 0.0584572339054259, 0.08612988585012649, 0.3472440907423937, 0.1248029959061332, 0.07502335399434323, 0.19827111133563302, 0.3424151534036639, 0.3065175956815872, 0.13808860398564737, 0.058092197534895806, 0.04082786106581715, 0.1602592849246841, 0.09156161599234125, 0.5036030690663805, 0.2640411824475748, 0.6468038092930676, 0.07201805208597656, 0.22470230804277058, 0.1334773721572423, 0.04847889440667685, 0.2685808245693546, 0.10911308148570098, 0.6764508967260475, 0.6280060594576413, 0.36761958218269275, 0.16019930342079847, 0.17605308658107655, 0.14078981831089854, 0.2384997092801764, 0.13117402490907393, 0.12818959986091483, 0.4161925244315118, 0.12435295831370408, 0.09814942480303201, 0.05480698563416486, 0.3746187330143109, 0.41092354232892336, 0.507894749900129, 0.5137929421583434, 0.08293523366016065, 0.2964416548030494, 0.15236141109070434, 0.4396941021426354, 0.41893931094950754, 0.09113953260801844, 0.10967473999240707, 0.055732078845942, 0.05640314085190745, 0.06176263301115803, 0.06427139521062619, 0.20386133178572885, 0.21597661143113533, 0.7486409492386699, 0.2610715902497083, 0.09465277491899493, 0.5556171757583562, 0.137718889647652, 0.1978940751503777, 0.08472590699531857, 0.356262641598029, 0.14596950445002987, 0.13865818299932142, 0.3088915816821678, 0.11516321289421916, 0.16121169033174265, 0.40573483691789825, 0.34308606282264, 0.36300204724896845, 0.17193414756867276, 0.035926383178341514, 0.34536882843285344, 0.4400180463892147, 0.5165194668234709, 0.23319834124303085, 0.9637923675569924, 0.2635599134550337, 0.6259141532505736, 0.12324962258280003, 0.1256037712827487, 0.1248029959061332, 0.11665042079727428, 0.29081136443782263, 0.12993062945549005, 0.20959981847797426, 0.12385816607190492, 0.16931651488884025, 0.2468284110987674, 0.6181879252747016, 0.3509541008179864, 0.08619429866610873, 0.09537770951135394, 0.8204393830764495, 0.2493836920976743, 0.10367142046182065, 0.11516383353466464, 0.07169627826225977, 0.5400384130096556, 0.2709141565803237, 0.16809050322974173, 0.3421981324687273, 0.812724325423183, 0.1326589750154965, 0.054670132935181304, 0.055346153509382656, 0.8039442695404772, 0.3276168958360183, 0.6561718697940482, 0.6214102617950452, 0.3046829516703813, 0.7853649284745584, 0.7303620793003476, 0.6719087507962026, 0.16000678121984613, 0.579612101366232, 0.6347749924714103, 0.41894393066564606, 0.06936532322770372, 0.28322834609079706, 0.343263893078516, 0.4450860003239352, 0.3090838478611311, 0.408095736797927, 0.11529682880263803, 0.13359771811640497, 0.2417229185475579, 0.10092265889692065, 0.8181934133883563, 0.3777834313813965, 0.8273808576462511, 0.18439353202429143, 0.5148786056082297, 0.11287077888712382, 0.16015059460472458, 0.29672938182784603, 0.36944561074938853, 0.2505850522824452, 0.8467591712977676, 0.3840267097226593, 0.261779448872241, 0.1645479955558209, 0.14631295673285594, 0.4248523287309329, 0.09222807982804315, 0.2121484308544801, 0.33273366741371935, 0.5470626312455473, 0.8294144697045585, 0.25206662215500397, 0.15998368749433245, 0.548322128117227, 0.3917329141436472, 0.15981565308588508, 0.23631147082452741, 0.21082920466209698, 0.1871387197916503, 0.24774693401855818, 0.1913242313933492, 0.16437448769677154, 0.07582203648947516, 0.032541140295091364, 0.06311143057978008, 0.5009235508757715, 0.12343879567504301, 0.445735807756371, 0.40322837553658053, 0.09397553936597514, 0.1598391281143201, 0.26702494168661406, 0.19782301216908982, 0.06831823449824892, 0.5451167746582685, 0.20142160156100697, 0.25747632252511843, 0.4257317671215596, 0.5062318064185062, 0.10278357133077332, 0.10857266292312517, 0.06223864817381186, 0.11377411494697365, 0.14082424186384768, 0.2589321903149734, 0.31776639873426016, 0.07983414941561229, 0.30174211068680845, 0.42532907678292176, 0.23734670470511587, 0.2862296469110084, 0.24790288035387664, 0.5526146374040077, 0.20425399436950087, 0.5166825128498294, 0.12415322942140417, 0.5310696157212036, 0.3866387435262121, 0.14313186082947948, 0.31648660326859934, 0.026792916001305622, 0.7856428374245099, 0.42383310375799566, 0.5944566396871084, 0.6256605001243821, 0.08813642250468567, 0.03544811528140901, 0.06935406654889886, 0.15751976448865512, 0.22608551288474832, 0.3127311228465576, 0.1409438166611655, 0.3285615524533705, 0.3591330499592894, 0.47964497307801546, 0.7143146030302826, 0.14223944449319303, 0.06929054967731618, 0.32120711190509066, 0.16913647442041335, 0.707286257884667, 0.3230684446475647, 0.7616845263358343, 0.4104900542879092, 0.10053249234255524, 0.1106599594415556, 0.1543174595222413, 0.46003879185641183, 0.3811350878514418, 0.07185070571861518, 0.23882593985771994, 0.5344976262521839, 0.11031385635331636, 0.09610989844306939, 0.4955559099445003, 0.07845190603324759, 0.30697262074812925, 0.12767551958037127, 0.4375661224395835, 0.07737023387634634, 0.15307682457740834, 0.05694427046787409, 0.09028836937410878, 0.4011292297732457, 0.6186146927451245, 0.11561676905211238, 0.0993047499370594, 0.08102401279833105, 0.8100206966555492, 0.10768932514586738, 0.15386113005635593, 0.4026560765644126, 0.045535707525545144, 0.08229583319403, 0.08227601457953415, 0.8241544781987433, 0.0759900855540333, 0.5147505197509459, 0.11103147778198663, 0.42144961755966015, 0.24880465403270857, 0.3112403223054312, 0.3282460941643247, 0.28312386083977936, 0.2865521931047814, 0.16537364909659502, 0.4284132019637321, 0.34116073112729894, 0.051142721309942685, 0.10794707492381372, 0.1108646816717751, 0.29201805921023904, 0.07365131996157204, 0.36851051207096197, 0.2556143611338999, 0.07392456180697715, 0.045535707525545144, 0.15025986810093994, 0.4395989822566938, 0.19636656988846957, 0.21018464628148859, 0.15085686628779282, 0.3429118439192298, 0.16104008564300487, 0.2055862423584408, 0.18673310211333727, 0.5528531989583015, 0.20219789553586287, 0.5807830339134155, 0.6112381610839525, 0.07515362639458067, 0.5722084734915175, 0.3654892991508686, 0.1991057466826236, 0.4912569401667811, 0.05850610073101081, 0.3077884117234785, 0.17038242498240874, 0.14066607718466684, 0.10248584652416493, 0.4022873718442217, 0.07205214632436985, 0.35142291824287475, 0.10941760034103376, 0.06679271580157364, 0.05675388891699207, 0.058987921856350156, 0.3660303223369904, 0.28790374422385034, 0.4158290962648631, 0.40710291595796666, 0.09934102670994882, 0.06362846635195196, 0.30921476208988685, 0.23242198019285765, 0.055541210656895434, 0.5297663836663529, 0.10744632778983743, 0.18410212910939194, 0.17721960751489196, 0.1962664672709783, 0.1617648996714035, 0.10584426414108294, 0.5203501665477333, 0.07365131996157204, 0.31578819840495265, 0.35364190165315845, 0.1707951928721818, 0.41655733121321636, 0.15801546378512366, 0.7568436608419439, 0.22368578646300386, 0.0609449253562836, 0.2225096762928218, 0.18587673368692093, 0.05559101133196209, 0.569598540521716, 0.08073228430722412, 0.15724041301590164, 0.12879141548479, 0.4306817897420764, 0.17998791969802397, 0.41280880088413996, 0.5723062335690389, 0.6457404130724687, 0.10420061808672998, 0.12564769853034463, 0.21795029564941848, 0.4720930498870375, 0.11304202998506685, 0.545112257205237, 0.14852188644910969, 0.17217029085021085, 0.336250902618187, 0.48671482860553816, 0.5093433434984792, 0.35847801144896685, 0.3008706318705062, 0.18494609259573758, 0.4199330463236065, 0.04162287990776414, 0.2633909944023186, 0.4252182303976608, 0.4684623303117058, 0.1925553058603695, 0.09610989844306939, 0.09129843496680234, 0.3302708189676917, 0.4199330463236065, 0.11927294568859859, 0.4864154015695107, 0.06472081497616611, 0.6387929002666255, 0.37932906694235924, 0.093713747684541, 0.20627971812824875], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (curr)\", \"type\": \"scatter\", \"x\": [0.365, 0.62, 0.27, 0.18, 0.29, 0.28, 0.43, 0.765, 0.785, 0.6, 0.3, 0.19, 0.31, 0.25, 0.29, 0.21, 0.31, 0.38, 0.35, 0.45, 0.28, 0.25, 0.34, 0.41, 0.22, 0.29, 0.41, 0.41, 0.21, 0.2, 0.27, 0.3, 0.73, 0.6, 0.18, 0.19, 0.98, 0.52, 0.12, 0.36, 0.485, 0.58, 0.34, 0.25, 0.43, 0.51, 0.54, 0.6, 0.28, 0.2, 0.25, 0.26, 0.31, 0.64, 0.705, 0.37, 0.61, 0.645, 0.31, 0.42, 0.645, 0.45, 0.27, 0.29, 0.39, 0.91, 0.46, 0.7, 0.775, 0.55, 0.57, 0.34, 0.335, 0.685, 0.24, 0.25, 0.27, 0.31, 0.47, 0.39, 0.13, 0.56, 0.29, 0.5, 0.2, 0.37, 0.16, 0.25, 0.25, 0.5, 0.23, 0.345, 0.27, 0.3, 0.58, 1.58, 0.29, 0.62, 0.64, 0.24, 0.35, 0.42, 0.21, 0.52, 0.33, 0.51, 0.62, 0.5, 0.33, 0.33, 0.6, 0.31, 0.63, 0.3, 0.21, 0.27, 0.24, 0.41, 0.27, 0.56, 0.27, 0.24, 0.61, 0.5, 0.695, 0.65, 0.16, 0.23, 0.695, 0.44, 0.28, 0.33, 0.3, 0.35, 0.34, 0.39, 0.25, 0.66, 0.585, 0.315, 0.29, 0.2, 0.22, 0.18, 0.59, 0.34, 0.21, 0.4, 0.52, 0.37, 0.5, 0.31, 0.43, 0.24, 0.3, 0.31, 0.22, 0.26, 0.28, 0.55, 0.635, 0.32, 0.14, 0.36, 0.59, 0.31, 0.3, 0.14, 0.21, 0.23, 0.31, 0.26, 0.28, 0.17, 0.35, 0.54, 0.39, 0.39, 0.24, 0.15, 0.16, 0.215, 0.38, 0.34, 0.26, 0.3, 0.29, 0.27, 0.28, 0.24, 0.66, 0.25, 0.25, 0.28, 0.4, 0.38, 0.21, 0.3, 0.18, 0.45, 0.67, 0.36, 0.34, 0.24, 0.27, 0.21, 0.31, 0.32, 0.5, 0.31, 0.34, 0.33, 0.48, 0.2, 0.28, 0.39, 0.29, 0.34, 0.34, 0.24, 0.4, 0.27, 0.33, 0.28, 0.18, 0.41, 0.41, 0.27, 0.52, 0.345, 0.33, 0.23, 0.22, 0.23, 0.745, 0.35, 0.12, 0.22, 0.3, 0.22, 0.44, 0.65, 0.21, 0.12, 0.29, 0.32, 0.17, 0.14, 0.4, 0.41, 0.42, 0.44, 0.3, 0.24, 0.29, 0.23, 0.12, 0.3, 0.34, 0.45, 0.46, 0.2, 0.18, 0.18, 0.26, 0.28, 0.47, 0.23, 0.235, 0.33, 0.28, 0.705, 0.16, 0.31, 0.16, 0.28, 0.33, 0.45, 0.675, 0.37, 0.78, 0.28, 0.19, 0.6, 0.62, 0.14, 0.31, 0.555, 0.21, 0.45, 0.26, 0.6, 0.4, 0.62, 0.3, 0.41, 0.41, 0.3, 0.25, 0.59, 0.24, 0.32, 0.25, 0.26, 0.44, 0.475, 0.35, 0.24, 0.28, 0.23, 0.4, 0.27, 0.26, 0.24, 0.27, 0.26, 0.31, 0.26, 0.33, 0.595, 0.26, 0.39, 0.26, 0.23, 0.875, 0.35, 0.33, 0.45, 0.3, 0.335, 0.9, 0.24, 0.19, 0.16, 0.55, 0.21, 0.15, 0.63, 0.22, 0.49, 0.32, 0.44, 0.48, 0.83, 0.61, 0.2, 0.4, 0.365, 0.22, 0.15, 0.23, 0.26], \"xaxis\": \"x2\", \"y\": [0.18579927887031134, 0.9274202256360236, 0.2569067617886446, 0.17851375722123963, 0.43011516789686843, 0.3951880410340851, 0.35333307802371594, 0.854899199395705, 0.7749695319329993, 0.7150752736216004, 0.5793836726576811, 0.17187478758168062, 0.503776006633781, 0.6517104478925241, 0.5321166645488455, 0.4291031613352281, 0.6295132227815239, 0.446367751604861, 0.12978626497489776, 0.578130474122496, 0.1303225049324246, 0.4589423036505589, 0.6028673022099313, 0.6724998803801079, 0.055171077290688375, 0.28900585249094113, 0.5807441942986169, 0.6324527530146118, 0.32780881811994433, 0.4437792729685527, 0.47375733914823626, 0.6755390392614542, 0.8494338455743565, 0.8432302027568838, 0.3962269303969661, 0.36574887203466033, 0.9780529644634413, 0.6757083557066426, 0.43212531492562845, 0.6428319532862445, 0.2244465690609686, 0.6759712108962084, 0.300575337785698, 0.4848467547623382, 0.24353241802821812, 0.6165640897352094, 0.801889943514816, 0.6831580296641933, 0.4684052737322374, 0.07309555507266852, 0.17397747102053363, 0.548208100621717, 0.16948307959681597, 0.5287139706981401, 0.8097217619362252, 0.48186532860504816, 0.7044722268129955, 0.5458559966555334, 0.6067015953642416, 0.5767206748937392, 0.5416109283549078, 0.7766135747357961, 0.6371580804073698, 0.3290646799011723, 0.53941953634433, 0.7444876216695655, 0.27658524567301757, 0.8518717737266248, 0.685064206005921, 0.7994946846943811, 0.6254668451144636, 0.29898447003196504, 0.36566585814722175, 0.8260679099411251, 0.265003746926769, 0.18277705216857454, 0.6401445853260315, 0.2878944788643705, 0.7379395090268356, 0.6578861964269485, 0.3048731186933995, 0.6479177870210828, 0.5479007895539181, 0.8109237991420157, 0.4555798348891207, 0.35159410271621183, 0.6741813074403022, 0.40366163192193316, 0.3797333752177462, 0.42326140605337403, 0.49450075158901585, 0.7027754368270075, 0.31556666432085356, 0.5737052492708005, 0.5594846166878963, 0.9879213229528466, 0.23907110553933086, 0.7604887601700165, 0.906894853259191, 0.49150798334893764, 0.6693239074263375, 0.635181004157038, 0.4291031613352281, 0.6805197940362542, 0.8579270215873258, 0.42231028799440284, 0.7973836574204367, 0.6209099995125147, 0.617932351579841, 0.5867531689564582, 0.8217385626893267, 0.5766058512754557, 0.6085190813519714, 0.6488649586424557, 0.19466062481522506, 0.4062994677131635, 0.31500574198466447, 0.6106996692323751, 0.48314991346809855, 0.4300926711133176, 0.4623912750166579, 0.18141675383529432, 0.7404949196358439, 0.7960551628311661, 0.6696955469146251, 0.7471897031921468, 0.15222801432328747, 0.4782875749995391, 0.6696955469146251, 0.4617114467660769, 0.0374236133971757, 0.34638250956587036, 0.5737052492708005, 0.35412183815676124, 0.5342599897609015, 0.6273126624389191, 0.1819914526651868, 0.6450640502472667, 0.7576359910572065, 0.6363669366758954, 0.35783776888428775, 0.4555798348891207, 0.2603691587203709, 0.09638465351539516, 0.7889843001267657, 0.3995975535535492, 0.2404138117262561, 0.5134503976671381, 0.7620160241108803, 0.4852174766770502, 0.7934067722809752, 0.5657371707019572, 0.40591517497640706, 0.5142806824729376, 0.4667389755277017, 0.4597803030361328, 0.14211531046105408, 0.4709774325404933, 0.39253304933110444, 0.8152160844894966, 0.6418608562675732, 0.5695619245525361, 0.15898796250578873, 0.4189913516486339, 0.8097376625536354, 0.2776505479619531, 0.14100712613869515, 0.1625374057836978, 0.21879614767173305, 0.26016804821119, 0.5884346274074399, 0.25171266030158634, 0.5556828679884147, 0.2886326125606653, 0.5013044750460076, 0.23728971353361283, 0.6280660923097139, 0.6281218947904323, 0.6226708394296439, 0.1280348372312241, 0.37812375401711507, 0.6218606462016874, 0.446367751604861, 0.5237591509200082, 0.22560064672115399, 0.4159575064805634, 0.43989745285902637, 0.38133093816728936, 0.379388299643832, 0.4244201113870294, 0.8495234946343055, 0.44699506619782237, 0.3402560380560977, 0.16997778820688525, 0.6509841470756508, 0.5589353890471914, 0.49320900326902484, 0.41485179365651337, 0.2850172536812061, 0.5150740024049856, 0.7905789411902706, 0.6660097546858721, 0.5916856454756931, 0.25029771644034415, 0.21820707607863943, 0.23625780462752244, 0.6174344585079109, 0.33885175059010386, 0.8097775874289167, 0.5502791542248897, 0.45232673966787307, 0.5168725346003686, 0.4922951659433321, 0.2710495410551712, 0.5620189509382074, 0.19827785442852286, 0.35653263682836045, 0.4940220265254579, 0.3934632807735441, 0.349631294967786, 0.6543252873397565, 0.6043841099981286, 0.6572212454398962, 0.5323595728841377, 0.4667716613599331, 0.5480891857555714, 0.5933716837007499, 0.5769442381274095, 0.7796710482718338, 0.4721284230669528, 0.5632051337005155, 0.25606657060722404, 0.47304849589761655, 0.4991199345133047, 0.785831825438318, 0.5512091114854263, 0.31651464458218903, 0.192246895102814, 0.5737052492708005, 0.14970485751781393, 0.8257882443178004, 0.7450862811651306, 0.2404138117262561, 0.3428275867057816, 0.2186811050870735, 0.43730933466596944, 0.1325711740116582, 0.33994853494016564, 0.5172250338280965, 0.4543852880840521, 0.6017244994332274, 0.7267617626256621, 0.304103470637073, 0.49511795227452726, 0.4577650902534979, 0.4389063253281036, 0.3428275867057816, 0.6911248892501751, 0.5457123873353599, 0.3395528272139201, 0.5662837862370104, 0.38281068028313525, 0.1899488449656659, 0.1899488449656659, 0.39416742153886597, 0.4473524415330049, 0.5724944828663213, 0.12652799787397961, 0.14917046216496987, 0.4192276293132746, 0.1727250451072272, 0.7329347521090118, 0.2979855805324535, 0.5384433083808008, 0.2944152049751758, 0.5661013076544325, 0.39283078357423706, 0.6503174362647687, 0.7632350838020857, 0.29422440231251745, 0.8446099855685041, 0.3812461384129847, 0.1264117171095669, 0.6995051325026098, 0.7680829457938805, 0.1086082602083136, 0.50228427853815, 0.8303888649041977, 0.15145052047802054, 0.5239967242043768, 0.49461569007297057, 0.7323984730128237, 0.6372335578763709, 0.8485373319296128, 0.21018203617182263, 0.3854703692354019, 0.6209619763202376, 0.6996467359659702, 0.3913887983225227, 0.600932061108284, 0.18141675383529432, 0.32841971343371723, 0.17397747102053363, 0.3943097935149382, 0.5998672378660981, 0.6052803835931642, 0.35501406908939237, 0.4362847089434372, 0.6005057903956104, 0.45095984485898877, 0.5601124581139871, 0.6908342266509375, 0.29066967723125237, 0.5437491575180791, 0.5955595524057149, 0.4226516353037165, 0.552222307965348, 0.5038457784615318, 0.6752568781943777, 0.7880730680059006, 0.09430965090665133, 0.4986183600001317, 0.24112389044610405, 0.3635071851353404, 0.7047195247497422, 0.5251048099479148, 0.5632051337005155, 0.4520037684813636, 0.5271857161160298, 0.36566585814722175, 0.8775119234978208, 0.49474741138534273, 0.17187478758168062, 0.1069918390347242, 0.6371627391106971, 0.19018032574493748, 0.34352259564225396, 0.806114950115292, 0.47304849589761655, 0.5014153035286022, 0.6721952796384192, 0.7507248720260316, 0.38512814216859315, 0.8930847268109882, 0.863224561659591, 0.15108072818859253, 0.7399796913917198, 0.18579927887031134, 0.47304849589761655, 0.2033384066370545, 0.43667652058029827, 0.23252054766636898], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [0.37, 0.23, 0.21, 0.32, 0.58, 0.21, 0.24, 0.3, 0.2, 0.3, 0.48, 0.25, 0.27, 0.32, 0.32, 0.2, 0.44, 0.25, 0.22, 0.37, 0.2, 0.19, 0.2, 0.26, 0.25, 0.29, 0.22, 0.24, 0.39, 0.34, 0.41, 0.34, 0.22, 0.26, 0.3, 0.19, 0.13, 0.23, 0.475, 0.605, 0.33, 0.24, 0.52, 0.29, 0.26, 0.57, 0.3, 0.6, 0.26, 0.22, 0.42, 0.57, 0.28, 0.28, 0.26, 0.17, 0.22, 0.34, 0.21, 0.76, 0.42, 0.3, 0.22, 0.25, 0.26, 0.3, 0.42, 0.28, 0.54, 0.14, 0.26, 0.28, 0.34, 0.275, 0.29, 0.2, 0.28, 0.18, 0.26, 0.53, 0.15, 0.21, 0.31, 0.24, 0.22, 0.31, 0.36, 0.33, 0.19, 0.3, 0.2, 0.24, 0.25, 0.31, 0.4, 0.4, 0.475, 0.25, 0.26, 0.61, 0.26, 0.17, 0.51, 0.28, 0.26, 0.28, 0.53, 0.24, 0.38, 0.3, 0.66, 0.33, 0.29, 0.29, 0.32, 0.36, 0.255, 0.24, 0.29, 0.66, 0.33, 0.23, 0.34, 0.16, 0.635, 0.42, 0.46, 0.34, 0.39, 0.17, 0.19, 0.36, 0.26, 0.28, 0.27, 0.21, 0.36, 0.42, 0.34, 0.21, 0.18, 0.865, 0.39, 0.23, 0.29, 0.31, 0.35, 0.4, 0.09, 0.22, 0.12, 0.1, 0.18, 0.2, 0.19, 0.3, 0.35, 0.37, 0.2, 0.23, 0.23, 0.55, 0.37, 0.3, 0.39, 0.265, 0.3, 1.04, 0.34, 0.21, 0.15, 0.18, 0.27, 0.34, 0.39, 0.24, 0.2, 0.28, 0.38, 0.31, 0.39, 0.19, 0.18, 0.33, 0.14, 0.55, 0.22, 0.46, 0.27, 0.41, 0.19, 0.18, 0.22, 0.25, 0.17, 0.39, 0.19, 0.33, 0.35, 0.27, 0.36, 0.26, 0.4, 0.17, 0.21, 0.31, 0.21, 0.44, 0.25, 0.15, 0.26, 0.28, 0.46, 0.32, 0.46, 0.32, 0.22, 0.31, 0.35, 0.24, 0.18, 0.35, 0.6, 0.26, 0.22, 0.655, 0.2, 0.28, 0.42, 0.22, 0.84, 0.28, 0.19, 0.23, 0.27, 0.2, 0.34, 0.14, 0.31, 0.16, 0.22, 0.4, 0.36, 0.22, 0.46, 0.43, 0.19, 0.19, 0.21, 0.685, 0.17, 0.22, 0.17, 0.28, 0.13, 0.11, 0.14, 0.17, 0.34, 0.32, 0.65, 0.28, 0.21, 0.28, 0.13, 0.24, 0.27, 0.41, 0.23, 0.18, 0.11, 0.17, 0.15, 0.59, 0.11, 0.68, 0.24, 0.18, 0.295, 0.55, 0.37, 0.27, 0.28, 0.345, 0.28, 0.44, 0.32, 0.2, 0.585, 0.17, 0.45, 0.43, 0.13, 0.32, 0.17, 0.28, 0.25, 0.36, 0.24, 0.3, 0.17, 0.16, 0.25, 0.38, 0.25, 0.36, 0.37, 0.18, 0.21, 0.16, 0.24, 0.46, 0.52, 0.31, 0.21, 0.22, 0.37, 0.28, 0.19, 0.25, 0.33, 0.28, 0.29, 0.19, 0.65, 0.2, 0.29, 0.32, 0.19, 0.4, 0.43, 0.16, 0.785, 0.22, 0.27, 0.25, 0.25, 0.26, 0.36, 0.43, 0.21, 0.32, 0.3, 0.54, 0.63, 0.18, 0.35, 0.27, 0.25, 0.41, 0.43, 0.305, 0.23, 0.2, 0.3, 0.31, 0.645, 0.29, 0.16, 0.52, 0.3, 0.24, 0.42, 0.26, 0.45, 0.27, 0.22, 0.22, 0.33, 0.24, 0.22, 0.34, 0.21, 0.14, 0.53, 0.725, 0.18, 0.27, 0.47, 0.26, 0.235, 0.26, 0.33, 0.23, 0.23, 0.2, 0.27, 0.16, 0.45, 0.4, 0.2, 0.28, 0.24, 0.23, 0.115, 0.57, 0.25, 0.27, 0.37, 0.18, 0.18, 0.21, 0.19, 0.19, 0.31, 0.23, 0.24, 0.445, 0.15, 0.45, 0.26, 0.2, 0.18, 0.19, 0.18, 0.4, 0.21, 0.37, 0.32, 0.26, 0.21, 0.28, 0.42, 0.765, 0.315, 0.28, 0.25, 0.28, 0.36, 0.17, 0.41, 0.27, 0.15, 0.32, 0.5, 0.52, 0.24, 0.25, 0.08, 0.18, 0.19, 0.57, 0.23, 0.19, 0.36, 0.34, 0.38, 0.5, 0.42, 0.745, 0.22, 0.69, 0.18, 0.57, 0.17, 0.33, 0.36, 0.18, 0.22, 0.4, 0.24, 0.36, 0.19, 0.23, 0.18, 0.17, 0.44, 0.17, 0.21, 0.685, 0.3, 0.2, 0.58, 0.16, 0.16, 0.24, 0.36, 0.13, 0.26, 0.21, 0.34, 0.25, 0.38, 0.12, 0.17, 0.19, 0.3, 0.38, 0.39, 0.59, 0.45, 0.22, 0.31, 0.35, 0.2, 0.39, 0.2, 0.56, 0.305, 0.45, 0.24, 0.26, 0.19, 0.26, 0.41, 0.22, 0.31, 0.35, 1.02, 0.27, 0.52, 0.21, 0.35, 0.26, 0.22, 0.44, 0.41, 0.4, 0.27, 0.25, 0.3, 0.49, 0.24, 0.32, 0.21, 0.19, 0.25, 0.37, 0.25, 0.26, 0.69, 0.17, 0.25, 0.25, 0.31, 0.3, 0.53, 0.24, 0.69, 0.38, 0.22, 0.29, 0.26, 0.16, 0.27, 0.15, 0.5, 0.31, 0.21, 0.19, 0.29, 0.32, 0.41, 0.21, 0.2, 0.42, 0.36, 0.15, 0.35, 0.33, 0.11, 0.31, 0.16, 0.34, 0.34, 0.2, 0.21, 0.28, 0.19, 0.28, 0.205, 0.26, 0.19, 0.43, 0.28, 0.21, 0.33, 0.24, 0.25, 0.28, 0.38, 0.3, 0.15, 0.33, 0.18, 0.32, 0.61, 0.3, 0.38, 0.38, 0.56, 0.34, 0.24, 0.22, 0.58, 0.35, 0.32, 0.28, 0.2, 0.21, 0.16, 0.58, 0.28, 0.255, 0.21, 0.63, 0.38, 0.16, 0.24, 0.35, 0.48, 0.19, 0.2, 0.17, 0.6, 0.32, 0.18, 0.2, 0.38, 0.52, 0.15, 0.38, 0.18, 0.14, 0.16, 0.26, 0.24, 0.245, 0.29, 0.15, 0.645, 0.415, 0.18, 0.2, 0.34, 0.18, 0.22, 0.51, 0.42, 0.49, 0.32, 0.25, 0.2, 0.24, 0.18, 0.27, 0.53, 0.28], \"xaxis\": \"x2\", \"y\": [0.6660328535674787, 0.4955559099445003, 0.11251030999551548, 0.5313240922219649, 0.7616845263358343, 0.42881839881496897, 0.22146723198036844, 0.2709448900825402, 0.04188686298684474, 0.3198999677935893, 0.586632325439729, 0.3332859260788763, 0.0891770245136605, 0.07249138429342028, 0.0813041402249215, 0.2808128557304226, 0.18155424903412543, 0.14020593233116785, 0.20529540916933675, 0.1755850319354616, 0.5722846846512241, 0.4684623303117058, 0.2863708053899042, 0.4489302200945696, 0.3606737334686688, 0.09834172337505831, 0.1439119889738254, 0.10526388551166177, 0.08976738859769384, 0.15927641460572795, 0.07353544332944184, 0.4894096639868448, 0.24735122968283396, 0.41440459167745447, 0.10107859516115147, 0.4809249647595707, 0.043928674649753696, 0.27268427565697984, 0.07203278686513981, 0.35989685204578803, 0.08410225657903847, 0.09640449279894714, 0.2859044620344169, 0.766491644508495, 0.27194216744256416, 0.11891721880979944, 0.6033870782914414, 0.8445823904457724, 0.4148378249676725, 0.09538880480821377, 0.5822786697287807, 0.2006236885231063, 0.30215903380660414, 0.3526626332448971, 0.22921561702294402, 0.3499358724503807, 0.451050436906263, 0.01968005574460141, 0.3849224947932618, 0.608666907839271, 0.30333177217190177, 0.05732515971384944, 0.08299070223644744, 0.155374347961305, 0.4378217303747408, 0.10641916767178827, 0.3207785913922725, 0.3280003244598044, 0.4747408725557203, 0.27229542413121455, 0.5314247042003052, 0.13834506443323813, 0.652508483608137, 0.1775869136191267, 0.4659209431511335, 0.3288332341233703, 0.47224603889779837, 0.2773569186284155, 0.18590272545123854, 0.6719763059805124, 0.04569198037744582, 0.22473444069733528, 0.0776074933333939, 0.1411968215808168, 0.3654892991508686, 0.06069899520469324, 0.21029328672965164, 0.13919371635861133, 0.16321149678759816, 0.6144435769482088, 0.1388055550317996, 0.0827658987104557, 0.0793107693477757, 0.04994940743047871, 0.46220165202879504, 0.08265172102971341, 0.5554564865761329, 0.10902951494304747, 0.26480674198345266, 0.31816712550642645, 0.20184400370343658, 0.23734670470511587, 0.19264674509953905, 0.03558879485690103, 0.5314247042003052, 0.3013473679880785, 0.8043030592862955, 0.07665185966197174, 0.17816243980233548, 0.14637302723887635, 0.43623195291339645, 0.5773286546676725, 0.06996409198491005, 0.0635191394270278, 0.11839391684253864, 0.03368970372860669, 0.16544292122901683, 0.5002106013252752, 0.20783967621931676, 0.4413184352618238, 0.1377753535318076, 0.017128038770129694, 0.09070427960766203, 0.05237321155563324, 0.46044782253877736, 0.09863911308639095, 0.6058955548956951, 0.07377868677997379, 0.33726125667837825, 0.03705661785513226, 0.03856885477325478, 0.01970319875133708, 0.06623921298607705, 0.655672818127978, 0.36403826442427, 0.375635621083512, 0.25822104517587474, 0.26990817233175546, 0.30316845466795117, 0.21597661143113533, 0.10411587283779344, 0.4582573305440075, 0.28974208538397184, 0.3995654588450376, 0.48407929824265805, 0.2412117545349558, 0.49704114689177337, 0.3112403223054312, 0.13571503940671914, 0.35304273602320047, 0.18963603484652192, 0.06023564559469896, 0.305863422303413, 0.34062746964654456, 0.03532029949184434, 0.20200996882548472, 0.207876095289533, 0.11304202998506685, 0.26487496820305634, 0.46674395287949066, 0.05931266843465788, 0.6063731497207538, 0.053339747820140615, 0.16056749669580483, 0.3366557342021428, 0.18735912995827353, 0.2667542380283816, 0.9197592959547904, 0.13322255285490225, 0.3533185668595151, 0.08763312389948397, 0.343329095265401, 0.1298321532292276, 0.11240742021865013, 0.03412749239977686, 0.23316671381479437, 0.13955591125269062, 0.065615492475942, 0.03940539431326806, 0.04874684240881699, 0.42507109047861347, 0.3720756994829524, 0.20627971812824875, 0.23346983492740092, 0.299872058778726, 0.14688925552714138, 0.20529540916933675, 0.11294333341234963, 0.4523771212155355, 0.15895981664313275, 0.12633289347617382, 0.34801013400503944, 0.063056887931354, 0.09222807982804315, 0.19281104432210028, 0.11843845992675284, 0.1064686731970873, 0.12171087020281346, 0.49704114689177337, 0.4202798549667376, 0.058322454167927695, 0.40418598015134155, 0.7514842711311043, 0.067978575311199, 0.1468497162592186, 0.3655805321171328, 0.36741292271676196, 0.08785516413846428, 0.4223454464089015, 0.09472348251934337, 0.14196098925812006, 0.10013555988874479, 0.32154631204965056, 0.05416575683382341, 0.786126361492164, 0.04696516601190348, 0.26926088858349784, 0.28123172687107445, 0.3094364396730669, 0.04307250962973752, 0.07126159086244754, 0.6143015945908075, 0.495586079448059, 0.46102608015166635, 0.40789311683600216, 0.8929715185951024, 0.1227006502272181, 0.3638055988942468, 0.10470002869891348, 0.29304213908849364, 0.8936703981375603, 0.3534407380188983, 0.0883666731866185, 0.07895584641700149, 0.05166417783587085, 0.4199775765299997, 0.10304865631077798, 0.1041340676595982, 0.11031385635331636, 0.22368578646300386, 0.22137255536682798, 0.0725394352715707, 0.08320759746190642, 0.3577905591727162, 0.36362749207413336, 0.13058702032609693, 0.4306817897420764, 0.4684623303117058, 0.3185463047756948, 0.6991046594229053, 0.33105510290791684, 0.35804773811787727, 0.3499358724503807, 0.17780319308126435, 0.07142366539796174, 0.1504846162366139, 0.28643330026545544, 0.11492102279820171, 0.08716328114311156, 0.12905574960179156, 0.5528531989583015, 0.2852168598030531, 0.3185463047756948, 0.41766807389819915, 0.22818770291371737, 0.10749415552266317, 0.07500089027222667, 0.2150933620687273, 0.4879833184669665, 0.21367083697314282, 0.18281788227943807, 0.11217648511765432, 0.01860460444149037, 0.4990100838788346, 0.3212979959143686, 0.7252893191599291, 0.30018855716775616, 0.2808216200321265, 0.24332849241566534, 0.22583693263898685, 0.307128141019565, 0.12930297020615966, 0.07734813107736227, 0.38078614076753503, 0.037937415915298756, 0.18389331462546077, 0.2015421194948802, 0.10121634311933059, 0.7209948827487924, 0.252131738577411, 0.19866278493931944, 0.5569604587758099, 0.19172534874952063, 0.07516041810443141, 0.18673310211333727, 0.20736440356309183, 0.27568985010185776, 0.1748501221961516, 0.134246332983591, 0.12151400729184814, 0.03860330573341564, 0.16198960071610413, 0.062309112953929935, 0.14943540958877521, 0.46827469198568006, 0.12435295831370408, 0.11768791031746062, 0.10794707492381372, 0.04347111427796346, 0.07423675680829, 0.1602542791395647, 0.19911642350143877, 0.2379444352717226, 0.36664322039668684, 0.10130143557253446, 0.17108028607870185, 0.6143194513817134, 0.5641235853966853, 0.29864316680665437, 0.44752301946823647, 0.13459844499503626, 0.037461465199631894, 0.5002964248569376, 0.4059565893810353, 0.7035957096210382, 0.0629603198376949, 0.25036415064992923, 0.14780834332950044, 0.24800647860056513, 0.10438723399855232, 0.24366911510822187, 0.4574644219698093, 0.8347014835967527, 0.42226245660703365, 0.4073158502222598, 0.47525484003715535, 0.37845934883934684, 0.35325777167774697, 0.4763432908647238, 0.18941100564626978, 0.23853527246002126, 0.27277355193056574, 0.5556171757583562, 0.19481513110659687, 0.7460207524242459, 0.12627308236197843, 0.2115813466591615, 0.4773837842994688, 0.22238536240250728, 0.1978655273089749, 0.32057959349203036, 0.1601330373243487, 0.6256605001243821, 0.34062746964654456, 0.5899158924001677, 0.1273375405407705, 0.6866376712310945, 0.3812864953771038, 0.07918534602430627, 0.10510921928053807, 0.052405178286905496, 0.29010285216427345, 0.5802968836962079, 0.4475494904811408, 0.33107045093633036, 0.6046547135519548, 0.33132995382553565, 0.3391582818855403, 0.37109937806185267, 0.18876467901964422, 0.03244681540368277, 0.6531311156123596, 0.18281848038190407, 0.06840545126676123, 0.23876166598551407, 0.5602062902528231, 0.05478334190217349, 0.18965009362393503, 0.502081053312289, 0.0945975060483667, 0.24937367783354814, 0.14040338921272166, 0.09582424632391484, 0.4879833184669665, 0.07536550594022651, 0.37763546052463404, 0.20240400638142053, 0.06234715971662652, 0.1729504208160284, 0.2536573606029918, 0.1491704939138675, 0.47224603889779837, 0.20734784509414073, 0.1656619584420439, 0.20263687678412212, 0.4576701693643329, 0.3746187330143109, 0.06578487521364562, 0.09359041291034786, 0.15714155813810793, 0.43198081216185935, 0.17693664965610134, 0.14200602748771296, 0.16878839641400256, 0.11131318694256087, 0.43040972974554736, 0.12494266711040569, 0.5286591337585229, 0.3917329141436472, 0.14284790216410748, 0.29931895876037384, 0.3998656181534954, 0.13198036366642862, 0.2166851793268345, 0.164669749255824, 0.3116999397838065, 0.5702002297218003, 0.2867818412254799, 0.05809024612643199, 0.0701620515557333, 0.10493669218879953, 0.03474255021640338, 0.14069518845012563, 0.7697788668098057, 0.44513161239284327, 0.12104291767226882, 0.2823656727566666, 0.28640273091276736, 0.09904459769556595, 0.10889384421684001, 0.1978655273089749, 0.6326587477498924, 0.0766186874204361, 0.07300117689776386, 0.3978521493117628, 0.7293533971641823, 0.24040337450518035, 0.46827469198568006, 0.03737110954461231, 0.48112847828662497, 0.5755848065786346, 0.12151472907643468, 0.332302417201758, 0.3208349144509022, 0.13406270144296106, 0.47820199098358873, 0.024219732643774528, 0.7923035912680444, 0.3099424932714111, 0.8494816644677875, 0.15230116664989468, 0.8795672599938588, 0.34536882843285344, 0.587897812361327, 0.3660303223369904, 0.3074082248441362, 0.1925553058603695, 0.1582957933341015, 0.5297945963993664, 0.1892543681582496, 0.06574637766643598, 0.03286461121245521, 0.6223124217546917, 0.48666930315350876, 0.17200815643270417, 0.27042696199957883, 0.16010429726024444, 0.25291734909108765, 0.22778758435893687, 0.6055190518965303, 0.41989528411161425, 0.2865861541738164, 0.17344095530188786, 0.4163761941495938, 0.24610426408478792, 0.029106329843254564, 0.5849270471051293, 0.09607886499379148, 0.4890296174547498, 0.11193395874659995, 0.3667485749721523, 0.29672938182784603, 0.13696827462710404, 0.03986507081677082, 0.41542023534722683, 0.1642424989032959, 0.041559354155004224, 0.1266666793707928, 0.5259198205822933, 0.42123490919744344, 0.6147437654518444, 0.42849246998341506, 0.04874684240881699, 0.16870816563337898, 0.35179373534084035, 0.4552463954734379, 0.1543174595222413, 0.4641274821418986, 0.1106599594415556, 0.40441066041397966, 0.05916303638108533, 0.24194101851814365, 0.5755848065786346, 0.23631147082452741, 0.04679471849088612, 0.33132995382553565, 0.6031606095022326, 0.16900214819844117, 0.9322526967181247, 0.1065938389205352, 0.0540586741766943, 0.14920224829950646, 0.03054451782098533, 0.13595064656866984, 0.15908339514281045, 0.09402391562754642, 0.27219479721363327, 0.10477531970828624, 0.6046547135519548, 0.04412971358840656, 0.0821245873848182, 0.24953715645213048, 0.24311299470472425, 0.679537413518331, 0.02875041056121841, 0.2874129658970298, 0.17131102264191878, 0.07042427222914205, 0.1577516063520068, 0.39934634677258996, 0.42249259173992826, 0.24940231538328683, 0.46827469198568006, 0.040988937643475554, 0.034828704291737345, 0.26663563965858417, 0.22421743312747255, 0.10716094829621758, 0.7421831263598226, 0.4644511163280224, 0.1591307416719686, 0.21502194578256428, 0.12883185373794437, 0.15520095945599266, 0.04280666734842442, 0.06928764484923078, 0.3578757504587543, 0.0760792945579073, 0.06637805380770656, 0.5755848065786346, 0.4326356954473739, 0.16985579355455038, 0.47152805642545803, 0.11644579282256762, 0.11790522998710073, 0.5438286352264949, 0.41561805514360906, 0.050606352251634235, 0.21836830194439782, 0.22298545275517268, 0.1504846162366139, 0.16819644397314482, 0.47796113776613436, 0.14100197907825862, 0.7878397890034206, 0.12176963827920351, 0.09814942480303201, 0.23162396036129984, 0.04400104962869911, 0.061588508633294015, 0.2774601068082493, 0.40816383821078206, 0.14036214651023216, 0.11837607594274324, 0.0703155477214753, 0.17002415827487982, 0.24611532014486182, 0.06874641727313702, 0.30975746960573625, 0.07004288447243323, 0.6453829176356538, 0.3880412370469972, 0.10205495289732236, 0.12171087020281346, 0.38550692709735157, 0.4398162761337091, 0.5769741243450848, 0.48842976274850136, 0.3866799681687785, 0.17129518728202664, 0.5711206597512044, 0.4456070955069118, 0.4585850027539752, 0.25462747480751524, 0.34771016550763867, 0.35548618548401445, 0.07878090041588082, 0.3008706318705062, 0.08117751180329491, 0.055511805197920094, 0.1600174453683395, 0.35597309965685686, 0.5473978930443646, 0.3321771897262046, 0.14643302530661162, 0.7653011157176768, 0.24188431843396252, 0.16704799028757666, 0.41136103198090634, 0.5749869949413896, 0.709238838470871, 0.09340318303147321, 0.602429869503323, 0.04154705947390969, 0.7519582179986716, 0.15993940416551844, 0.04372375151311325, 0.4076899811241429, 0.4644511163280224, 0.3133137248525114, 0.24628490675063597, 0.06972977174174444, 0.15949948541388637, 0.2241543425141257, 0.1729876202034616, 0.07290025122558275, 0.1220000714032804, 0.36493953208423235, 0.09420126302076737, 0.026726938234992392, 0.7199273032686843, 0.4606762448039463, 0.04906818437448113, 0.19446415942665518, 0.14876853598344464, 0.3247816953453747, 0.023320858692869595, 0.7310618090422621, 0.48944479260603346, 0.20357574295749958, 0.0840537250624015, 0.5368744051465595, 0.21101467800102214, 0.46682279298460017, 0.3749869638443927, 0.46592999202179275, 0.10188412989688433, 0.15751976448865512], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"volatile.acidity\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"volatile.acidity\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}}, {\"id\": \"All_citric.acid\", \"params\": {\"data\": [{\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Reference<br>citric.acid=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [0.32, 0.24, 0.36, 0.24, 0.27, 0.21, 0.3, 0.46, 0.34, 0.26, 0.4, 0.21, 0.26, 0.33, 0.24, 0.47, 0.29, 0.76, 0.2, 0.29, 0.28, 0.27, 0.28, 0.36, 0.49, 0.27, 0.3, 0.49, 0.33, 0.48, 0.49, 0.32, 0.28, 0.34, 0.36, 0.44, 0.31, 0.31, 0.22, 0.39, 0.26, 0.49, 0.37, 0.26, 0.26, 0.32, 0.38, 0.19, 0.53, 0.3, 0.29, 0.29, 0.26, 0.29, 0.49, 0.28, 0.36, 0.38, 0.24, 0.32, 0.42, 0.23, 0.74, 0.44, 0.66, 0.13, 0.28, 0.3, 0.26, 0.36, 0.35, 0.24, 0.28, 0.68, 0.35, 0.29, 0.46, 0.28, 0.1, 0.35, 0.24, 0.34, 0.3, 0.45, 0.33, 0.34, 0.29, 0.31, 0.31, 0.41, 0.28, 0.28, 0.38, 0.4, 0.29, 0.25, 0.29, 0.28, 0.25, 0.65, 0.34, 0.36, 0.46, 0.34, 0.3, 0.32, 0.26, 0.49, 0.33, 0.02, 0.33, 0.28, 0.32, 0.29, 0.27, 0.32, 0.25, 0.36, 0.35, 0.46, 0.3, 0.49, 0.34, 0.31, 0.22, 0.02, 0.01, 0.5, 0.36, 0.0, 0.33, 0.18, 0.4, 0.32, 0.43, 0.54, 0.4, 0.02, 0.2, 0.24, 0.37, 0.31, 0.32, 0.34, 0.41, 0.43, 0.46, 0.27, 0.24, 0.32, 0.28, 0.59, 0.25, 0.26, 0.3, 0.5, 0.28, 0.35, 0.26, 0.38, 0.29, 0.27, 0.36, 0.25, 0.2, 0.34, 0.3, 0.21, 0.58, 0.04, 0.42, 0.37, 0.46, 0.28, 0.14, 0.09, 0.04, 0.21, 0.24, 0.1, 0.29, 0.49, 0.35, 0.3, 0.16, 0.29, 0.33, 0.48, 0.34, 0.31, 0.29, 0.0, 0.14, 0.05, 0.02, 0.34, 0.16, 0.32, 0.26, 0.48, 0.49, 0.27, 0.49, 0.12, 0.26, 0.37, 0.34, 0.49, 0.27, 0.43, 0.49, 0.2, 0.34, 0.32, 0.27, 0.26, 0.29, 0.49, 0.31, 0.32, 0.32, 0.49, 0.26, 0.4, 0.6, 0.37, 0.34, 0.4, 0.31, 0.29, 0.32, 0.21, 0.0, 0.28, 0.28, 0.21, 0.36, 0.41, 0.42, 0.34, 0.33, 0.39, 1.0, 0.44, 0.12, 0.32, 0.31, 0.27, 0.4, 0.33, 0.42, 0.3, 0.43, 0.35, 0.37, 0.28, 0.31, 0.14, 0.49, 0.39, 0.34, 0.49, 0.37, 0.44, 0.35, 0.32, 0.37, 0.57, 0.06, 0.34, 0.36, 0.08, 0.31, 0.3, 0.26, 0.26, 0.28, 0.41, 0.0, 0.79, 0.36, 0.44, 0.32, 0.3, 0.39, 0.42, 0.25, 0.28, 0.08, 0.39, 0.31, 0.3, 0.48, 0.24, 0.41, 0.25, 0.0, 0.12, 0.36, 0.38, 0.02, 0.24, 0.3, 0.26, 0.33, 0.46, 0.26, 0.33, 0.39, 0.47, 0.3, 0.34, 0.13, 0.36, 0.36, 0.62, 0.31, 0.3, 0.27, 0.27, 0.27, 0.38, 0.31, 0.3, 0.29, 0.02, 0.22, 0.39, 0.49, 0.27, 0.28, 0.33, 0.44, 0.57, 0.36, 0.31, 0.33, 0.33, 0.21, 0.28, 0.28, 0.45, 0.36, 0.26, 0.13, 0.49, 0.32, 0.09, 0.0, 0.36, 0.29, 0.41, 0.28, 0.3, 0.3, 0.4, 0.32, 0.33, 0.51, 0.36, 0.41, 0.19, 0.35, 0.44, 0.03, 0.27, 0.31, 0.27, 0.36, 0.26, 0.3, 0.39, 0.3, 0.23, 0.28, 0.26, 0.31, 0.0, 0.27, 0.34, 0.2, 0.32, 0.13, 0.36, 0.49, 0.29, 0.37, 0.31, 0.29, 0.37, 0.28, 0.24, 0.49, 0.3, 0.28, 0.47, 0.42, 0.28, 0.32, 0.28, 0.05, 0.21, 0.23, 0.33, 0.28, 0.32, 0.34, 0.42, 0.0, 0.49, 0.24, 0.3, 0.35, 0.3, 0.56, 0.45, 0.28, 0.35, 0.18, 0.2, 0.37, 0.31, 0.3, 0.28, 0.27, 0.18, 0.44, 0.3, 0.3, 0.36, 0.49, 0.41, 0.28, 0.31, 0.35, 0.1, 0.29, 0.01, 0.33, 0.49, 0.38, 0.74, 0.37, 0.45, 0.62, 0.33, 0.4, 0.26, 0.47, 0.28, 0.28, 0.24, 0.27, 0.35, 0.3, 0.76, 0.27, 0.01, 0.27, 0.27, 0.73, 0.29, 0.49, 0.25, 0.31, 0.02, 0.27, 0.36, 0.3, 0.51, 0.15, 0.49, 0.33, 0.32, 0.35, 0.29, 0.49, 0.34, 0.32, 0.44, 0.24, 0.48, 0.23, 0.24, 0.31, 0.39, 0.49, 0.3, 0.3, 0.05, 0.41, 0.23, 0.4, 0.41, 0.39, 0.42, 0.3, 0.35, 0.34, 0.29, 0.26, 0.31, 0.38, 0.38, 0.44, 0.33, 0.33, 0.49, 0.38, 0.27, 0.33, 0.31, 0.31, 0.5, 0.36, 0.37, 0.46, 0.44, 0.37, 0.35, 0.31, 0.25, 0.36, 0.37, 0.0, 0.3, 0.7, 0.36, 0.29, 0.33, 0.32, 0.25, 0.28, 0.21, 0.4, 0.06, 0.28, 0.29, 0.35, 0.35, 0.35, 0.29, 0.41, 0.49, 0.25, 0.25, 0.5, 0.49, 0.26, 0.29, 0.32, 0.24, 0.28, 0.4, 0.3, 0.02, 0.31, 0.36, 0.22, 0.36, 0.35, 0.34, 0.1, 0.24, 0.0, 0.32, 0.23, 0.49, 0.32, 0.32, 0.28, 0.41, 0.28, 0.37, 0.33, 0.31, 0.28, 0.3, 0.24, 0.34, 0.31, 0.35, 0.26, 0.0, 0.74, 0.01, 0.16, 0.32, 0.24, 0.32, 0.28, 0.32, 0.37, 0.29, 0.04, 0.29, 0.3, 0.16, 0.33, 0.23, 0.49, 0.38, 0.32, 0.26, 0.56, 0.66, 0.29, 0.29, 0.4, 0.27, 0.21, 0.35, 0.28, 0.24, 0.28, 0.38, 0.25, 0.49, 0.32, 0.18, 0.43, 0.33, 0.47, 0.04, 0.33, 0.27, 0.36, 0.25, 0.4, 0.33, 0.24, 0.35, 0.31, 0.31, 0.38, 0.49, 0.44, 0.4, 0.33, 0.26, 0.38, 0.22, 0.28, 0.34, 0.36], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Current<br>citric.acid=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [0.19, 0.38, 0.42, 0.21, 0.23, 0.27, 0.29, 0.25, 0.31, 0.12, 0.24, 0.35, 0.25, 0.23, 0.39, 0.34, 0.0, 0.31, 0.24, 0.34, 0.3, 0.31, 0.35, 0.39, 0.28, 0.49, 0.38, 0.28, 0.32, 0.3, 0.29, 0.27, 0.37, 0.34, 0.23, 0.99, 0.27, 0.37, 0.33, 0.02, 0.34, 0.33, 0.49, 0.3, 0.42, 0.09, 0.29, 0.18, 0.33, 0.37, 0.17, 0.39, 0.44, 0.41, 0.31, 0.44, 0.56, 0.0, 0.31, 0.68, 0.09, 0.26, 0.36, 0.27, 0.29, 0.33, 0.38, 0.33, 0.06, 0.34, 0.34, 0.28, 0.28, 0.24, 0.29, 0.19, 0.24, 0.28, 0.3, 0.49, 0.4, 0.33, 0.41, 0.27, 0.34, 0.29, 0.39, 0.24, 0.49, 0.34, 0.26, 0.49, 0.26, 0.28, 0.3, 0.28, 0.4, 1.23, 0.52, 0.08, 0.44, 0.27, 0.23, 0.24, 0.34, 0.09, 0.24, 0.32, 0.42, 0.29, 0.0, 0.28, 0.3, 0.27, 0.25, 0.53, 0.22, 0.27, 0.25, 0.39, 0.23, 0.36, 0.27, 0.47, 0.1, 0.46, 0.26, 0.46, 0.4, 0.35, 0.38, 0.34, 0.28, 0.27, 0.49, 0.58, 0.34, 0.38, 0.27, 0.29, 0.45, 0.03, 0.69, 0.37, 0.26, 0.33, 0.56, 0.32, 0.3, 0.34, 0.29, 0.33, 0.31, 0.61, 0.34, 0.35, 0.38, 0.32, 0.4, 0.39, 0.39, 0.24, 0.24, 0.91, 0.49, 0.36, 0.35, 0.05, 0.4, 0.81, 0.3, 0.4, 0.28, 0.4, 0.47, 0.3, 0.17, 0.38, 0.26, 0.39, 0.3, 0.25, 0.36, 0.49, 0.32, 0.15, 0.24, 0.24, 0.36, 0.33, 0.32, 0.26, 0.32, 0.45, 0.28, 0.28, 0.32, 0.22, 0.56, 0.26, 0.36, 0.25, 0.42, 0.52, 0.5, 0.3, 0.41, 0.73, 0.3, 0.41, 0.29, 0.34, 0.24, 0.45, 0.52, 0.29, 0.38, 0.24, 0.4, 0.4, 0.49, 0.29, 0.14, 0.42, 0.5, 0.2, 0.32, 0.3, 0.45, 0.26, 0.21, 0.4, 0.39, 0.36, 0.24, 0.38, 0.24, 0.18, 0.31, 0.49, 0.35, 0.32, 0.36, 0.34, 0.2, 0.5, 0.27, 0.31, 0.34, 0.11, 0.32, 0.28, 0.44, 0.29, 0.37, 0.26, 0.74, 0.3, 0.4, 0.31, 0.02, 0.31, 0.34, 0.19, 0.27, 0.36, 0.42, 0.2, 0.42, 0.46, 0.27, 0.32, 0.32, 0.59, 0.34, 0.16, 0.49, 0.32, 0.26, 0.1, 0.53, 0.27, 0.52, 0.15, 0.32, 0.49, 0.28, 0.31, 0.07, 0.27, 0.5, 0.44, 0.28, 0.26, 0.3, 0.3, 0.48, 0.3, 0.36, 0.32, 0.29, 0.44, 0.47, 0.26, 0.36, 0.46, 0.3, 0.35, 0.39, 0.3, 0.27, 0.31, 0.08, 0.61, 0.25, 0.29, 0.4, 0.34, 0.49, 0.33, 0.28, 0.27, 0.29, 0.49, 0.37, 0.34, 0.25, 0.52, 0.58, 0.3, 0.02, 0.32, 0.0, 0.32, 0.69, 0.3, 0.42, 0.28, 0.44, 0.3, 0.31, 0.33, 0.49, 0.0, 0.08, 0.28, 0.3, 0.38, 0.49, 0.27, 0.49, 0.38, 0.32, 0.61, 0.22, 0.31, 0.25, 0.26, 0.38, 0.08, 0.29, 0.24, 0.49, 0.46, 0.43, 0.49, 0.2, 0.49, 0.41, 0.33, 0.32, 0.29, 0.4, 0.38, 0.49, 0.09, 0.37, 0.29, 0.08, 0.0, 0.27, 0.43, 0.31, 0.42, 0.39, 0.41, 0.42, 0.31, 0.11, 0.24, 0.22, 0.24, 0.45, 0.39, 0.35, 0.02, 0.39, 0.54, 0.15, 0.37, 0.42, 0.24, 0.28, 0.71, 0.27, 0.33, 0.29, 0.26, 0.28, 0.27, 0.37, 0.36, 0.49, 0.71, 0.24, 0.12, 0.38, 0.34, 0.27, 0.24, 0.25, 0.36, 0.47, 0.18, 0.54, 0.26, 0.41, 0.22, 0.29, 0.5, 0.27, 0.32, 0.38, 0.33, 0.3, 0.25, 0.38, 0.36, 0.33, 0.3, 0.3, 0.01, 0.29, 0.23, 0.38, 0.45, 0.01, 0.2, 0.19, 0.18, 0.3, 0.08, 0.26, 0.21, 0.28, 0.2, 0.31, 0.28, 0.32, 0.32, 0.3, 0.32, 0.25, 0.29, 0.31, 0.29, 0.49, 0.3, 0.33, 0.0, 0.2, 0.36, 0.2, 0.27, 0.48, 0.3, 0.2, 0.39, 0.18, 0.34, 0.23, 0.34, 0.49, 0.45, 0.38, 0.49, 0.3, 0.29, 0.1, 0.0, 0.4, 0.4, 0.39, 0.33, 0.33, 0.47, 0.42, 0.31, 0.39, 0.55, 0.41, 0.38, 0.3, 0.18, 0.24, 0.2, 0.18, 0.24, 0.43, 0.43, 0.32, 0.34, 0.28, 0.29, 0.38, 0.31, 0.31, 0.53, 0.49, 0.37, 0.33, 0.2, 0.33, 0.26, 0.4, 0.27, 0.26, 0.36, 0.35, 0.53, 0.07, 0.26, 0.36, 0.53, 0.45, 0.22, 0.66, 0.33, 0.0, 0.29, 0.32, 0.3, 0.48, 0.28, 0.37, 0.32, 0.45, 0.4, 0.24, 0.3, 0.58, 0.3, 0.21, 0.37, 0.3, 0.19, 0.21, 0.32, 0.51, 0.27, 0.26, 0.33, 0.3, 0.42, 0.3, 0.24, 0.26, 0.3, 0.39, 0.27, 0.31, 0.26, 0.29, 1.0, 0.36, 0.31, 0.38, 0.28, 0.25, 0.35, 0.2, 0.51, 0.47, 0.22, 0.31, 0.5, 0.18, 0.45, 0.15, 0.14, 0.03, 0.32, 0.36, 0.23, 0.16, 0.49, 0.26, 0.36, 0.34, 0.3, 0.21, 0.58, 0.43, 0.26, 0.36, 0.27, 0.42, 0.49, 0.26, 0.35, 0.04, 0.4, 0.28, 0.28, 0.26, 0.25, 0.27, 0.31, 0.29, 0.54, 0.28, 0.26, 0.28, 0.28, 0.18, 0.26, 0.29, 0.38, 0.65, 0.32, 0.0, 0.68, 0.36, 0.34, 0.31, 0.35, 0.46, 0.24, 0.41, 0.24, 0.3, 0.49, 0.24, 0.22, 0.31, 0.37, 0.29, 0.34], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Reference<br>citric.acid=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [0.65, 0.47, 0.32, 0.08, 0.23, 0.0, 0.07, 0.52, 0.37, 0.23, 0.3, 0.49, 0.74, 0.35, 0.06, 0.2, 0.33, 0.09, 0.22, 0.0, 0.47, 0.26, 0.1, 0.3, 0.0, 0.04, 0.18, 0.32, 0.1, 0.32, 0.0, 0.27, 0.66, 0.24, 0.37, 0.49, 0.35, 0.37, 0.57, 0.36, 0.38, 0.6, 0.27, 0.14, 0.15, 0.24, 0.24, 0.27, 0.43, 0.15, 0.24, 0.22, 0.31, 0.49, 0.26, 0.49, 0.42, 0.25, 0.53, 0.52, 0.44, 0.35, 0.08, 0.24, 0.2, 0.3, 0.34, 0.21, 0.13, 0.31, 0.31, 0.65, 0.66, 0.33, 0.29, 0.07, 0.43, 0.4, 0.2, 0.36, 0.3, 0.37, 0.43, 0.2, 0.23, 0.31, 0.34, 0.17, 0.35, 0.1, 0.65, 0.24, 0.1, 0.66, 0.42, 0.52, 0.56, 0.46, 0.44, 0.35, 0.5, 0.31, 0.28, 0.34, 0.31, 0.68, 0.19, 0.37, 0.49, 0.24, 0.24, 0.33, 0.2, 0.27, 0.17, 0.36, 0.62, 0.23, 0.43, 0.26, 0.2, 0.28, 0.34, 0.55, 0.24, 0.24, 0.22, 0.22, 0.42, 0.19, 0.47, 0.22, 0.3, 0.51, 0.3, 0.2, 0.36, 0.23, 0.35, 0.21, 0.22, 0.4, 0.38, 0.18, 0.22, 0.42, 0.26, 0.34, 0.14, 0.48, 0.38, 0.0, 0.41, 0.09, 0.41, 0.0, 0.53, 0.24, 0.35, 0.07, 0.43, 0.24, 0.49, 0.23, 0.03, 0.39, 0.2, 0.23, 0.28, 0.36, 0.41, 0.18, 0.26, 0.64, 0.28, 0.28, 0.21, 0.28, 0.3, 0.1, 0.46, 0.0, 0.35, 0.34, 0.52, 0.16, 0.45, 0.24, 0.15, 0.37, 0.19, 0.3, 0.5, 0.04, 0.51, 0.0, 0.31, 0.31, 0.26, 0.21, 0.14, 0.5, 0.5, 0.43, 0.24, 0.26, 0.19, 0.41, 0.04, 0.37, 0.29, 0.28, 0.44, 0.74, 0.47, 0.13, 0.23, 0.06, 0.38, 0.48, 0.11, 0.27, 0.51, 0.41, 0.29, 0.34, 0.03, 0.47, 0.04, 0.0, 0.2, 0.54, 0.28, 0.25, 0.32, 0.21, 0.41, 0.25, 0.34, 0.56, 0.33, 0.39, 0.29, 0.32, 0.27, 0.5, 0.49, 0.24, 0.37, 0.33, 0.25, 0.26, 0.66, 0.03, 0.34, 0.51, 0.38, 0.24, 0.46, 0.63, 0.28, 0.22, 0.33, 0.57, 0.33, 0.3, 0.24, 0.22, 0.25, 0.2, 0.35, 0.3, 0.38, 0.26, 0.5, 0.39, 0.12, 0.61, 0.19, 0.13, 0.24, 0.21, 0.32, 0.07, 0.24, 0.2, 0.47, 0.3, 0.27, 0.22, 0.49, 0.55, 0.22, 0.11, 0.4, 0.26, 0.23, 0.55, 0.58, 0.2, 0.0, 0.4, 0.05, 0.33, 0.28, 0.35, 0.24, 0.16, 0.59, 0.21, 0.48, 0.2, 0.21, 0.45, 0.49, 0.37, 0.56, 0.31, 0.44, 0.14, 0.46, 0.47, 0.2, 0.24, 0.36, 0.25, 0.65, 0.54, 0.22, 0.17, 0.4, 0.35, 0.35, 0.4, 0.33, 0.24, 0.16, 0.46, 0.0, 0.46, 0.49, 0.29, 0.3, 0.22, 0.27, 0.01, 0.18, 0.49, 0.18, 0.2, 0.29, 0.03, 0.7, 0.09, 0.42], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Current<br>citric.acid=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [0.49, 0.12, 0.36, 0.29, 0.4, 0.4, 0.18, 0.04, 0.24, 0.65, 0.25, 0.39, 0.4, 0.26, 0.45, 0.36, 0.32, 0.49, 0.34, 0.07, 0.39, 0.13, 0.36, 0.64, 0.37, 0.31, 0.3, 0.23, 0.29, 0.74, 0.79, 0.2, 0.0, 0.17, 0.33, 0.21, 0.32, 0.11, 0.19, 0.06, 0.29, 0.2, 0.74, 0.29, 0.32, 0.25, 0.24, 0.25, 0.29, 0.35, 0.54, 0.26, 0.49, 0.22, 0.1, 0.23, 0.01, 0.49, 0.29, 0.2, 0.49, 0.34, 0.18, 0.4, 0.21, 0.06, 0.59, 0.0, 0.0, 0.03, 0.02, 0.25, 0.14, 0.26, 0.35, 0.28, 0.46, 0.52, 0.21, 0.3, 0.34, 0.18, 0.2, 0.33, 0.49, 0.27, 0.3, 0.34, 0.13, 0.36, 0.49, 0.26, 0.41, 0.42, 0.01, 0.0, 0.49, 0.19, 0.08, 0.55, 0.45, 0.32, 0.36, 0.11, 0.32, 0.09, 0.04, 0.0, 0.26, 0.41, 0.06, 0.5, 0.02, 0.29, 0.28, 0.34, 0.22, 0.24, 0.45, 0.08, 0.2, 0.28, 0.26, 0.17, 0.13, 0.18, 0.32, 0.38, 0.13, 0.37, 0.41, 0.32, 0.42, 0.49, 0.28, 0.62, 0.24, 0.17, 0.2, 0.2, 0.39, 0.49, 0.33, 0.42, 0.44, 0.28, 0.39, 0.23, 0.26, 0.23, 0.0, 0.22, 0.42, 0.19, 0.27, 0.24, 0.25, 0.44, 0.22, 0.42, 0.36, 0.47, 0.35, 0.48, 0.08, 0.26, 0.29, 0.46, 0.34, 0.38, 0.38, 0.32, 0.26, 0.28, 0.21, 0.0, 0.24, 0.35, 0.27, 0.35, 0.36, 0.23, 0.49, 0.1, 0.34, 0.32, 0.3, 0.22, 0.49, 0.22, 0.03, 0.46, 0.3, 0.28, 0.62, 0.21, 0.27, 0.1, 0.39, 0.3, 0.02, 0.26, 0.2, 0.4, 0.28, 0.36, 0.42, 0.59, 0.16, 0.69, 0.49, 0.23, 0.08, 0.4, 0.49, 0.24, 0.28, 0.33, 0.86, 0.24, 0.56, 0.25, 0.43, 0.41, 0.37, 0.14, 0.49, 0.29, 0.34, 0.34, 0.2, 0.34, 0.25, 0.35, 0.11, 0.48, 0.33, 0.31, 0.42, 0.33, 0.18, 0.02, 0.39, 0.32, 0.33, 0.12, 0.37, 0.3, 0.48, 0.01, 0.31, 0.2, 0.32, 0.62, 0.25, 0.36, 0.32, 0.23, 0.23, 0.33, 0.14, 0.22, 0.74, 0.74, 0.33, 0.36, 0.24, 0.38, 0.34, 0.44, 0.31, 0.12, 0.74, 0.42, 0.49, 0.25, 0.26, 0.34, 0.07, 0.47, 0.1, 0.25, 0.38, 0.0, 0.18, 0.37, 0.3, 0.26, 0.49, 0.38, 0.35, 0.07, 0.24, 0.06, 0.33, 0.39, 0.16, 0.38, 0.44, 0.39, 0.28, 0.65, 0.54, 0.56, 0.24, 0.06, 0.48, 0.29, 0.46, 0.26, 0.18, 0.19, 0.44, 0.41, 0.33, 0.74, 0.26, 0.49, 0.29, 0.1, 0.68, 0.08, 0.24, 0.27, 0.13, 0.53, 0.2, 0.49, 0.45, 0.14, 0.06, 0.29, 0.39, 0.4, 0.21, 0.41, 0.28, 0.04, 0.25, 0.32, 0.15, 0.49, 0.25, 0.27, 0.49, 0.3, 0.41, 0.49, 0.25, 0.4, 0.28, 0.3], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Reference\", \"x\": 0.245, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Current\", \"x\": 0.755, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"barmode\": \"overlay\", \"legend\": {\"title\": {\"text\": \"target\"}, \"tracegroupgap\": 0}, \"margin\": {\"t\": 60}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.49], \"title\": {\"text\": \"citric.acid\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.51, 1.0], \"matches\": \"x\", \"title\": {\"text\": \"citric.acid\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"count\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}}}}, {\"id\": \"citric.acid_good\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (ref)\", \"type\": \"scatter\", \"x\": [0.32, 0.24, 0.36, 0.24, 0.27, 0.21, 0.3, 0.46, 0.34, 0.26, 0.4, 0.21, 0.26, 0.33, 0.24, 0.47, 0.29, 0.76, 0.2, 0.29, 0.28, 0.27, 0.28, 0.36, 0.49, 0.27, 0.3, 0.49, 0.33, 0.48, 0.49, 0.32, 0.28, 0.34, 0.36, 0.44, 0.31, 0.31, 0.22, 0.39, 0.26, 0.49, 0.37, 0.26, 0.26, 0.32, 0.38, 0.19, 0.53, 0.3, 0.29, 0.29, 0.26, 0.29, 0.49, 0.28, 0.36, 0.38, 0.24, 0.32, 0.42, 0.23, 0.74, 0.44, 0.66, 0.13, 0.28, 0.3, 0.26, 0.36, 0.35, 0.24, 0.28, 0.68, 0.35, 0.29, 0.46, 0.28, 0.1, 0.35, 0.24, 0.34, 0.3, 0.45, 0.33, 0.34, 0.29, 0.31, 0.31, 0.41, 0.28, 0.28, 0.38, 0.4, 0.29, 0.25, 0.29, 0.28, 0.25, 0.65, 0.34, 0.36, 0.46, 0.34, 0.3, 0.32, 0.26, 0.49, 0.33, 0.02, 0.33, 0.28, 0.32, 0.29, 0.27, 0.32, 0.25, 0.36, 0.35, 0.46, 0.3, 0.49, 0.34, 0.31, 0.22, 0.02, 0.01, 0.5, 0.36, 0.0, 0.33, 0.18, 0.4, 0.32, 0.43, 0.54, 0.4, 0.02, 0.2, 0.24, 0.37, 0.31, 0.32, 0.34, 0.41, 0.43, 0.46, 0.27, 0.24, 0.32, 0.28, 0.59, 0.25, 0.26, 0.3, 0.5, 0.28, 0.35, 0.26, 0.38, 0.29, 0.27, 0.36, 0.25, 0.2, 0.34, 0.3, 0.21, 0.58, 0.04, 0.42, 0.37, 0.46, 0.28, 0.14, 0.09, 0.04, 0.21, 0.24, 0.1, 0.29, 0.49, 0.35, 0.3, 0.16, 0.29, 0.33, 0.48, 0.34, 0.31, 0.29, 0.0, 0.14, 0.05, 0.02, 0.34, 0.16, 0.32, 0.26, 0.48, 0.49, 0.27, 0.49, 0.12, 0.26, 0.37, 0.34, 0.49, 0.27, 0.43, 0.49, 0.2, 0.34, 0.32, 0.27, 0.26, 0.29, 0.49, 0.31, 0.32, 0.32, 0.49, 0.26, 0.4, 0.6, 0.37, 0.34, 0.4, 0.31, 0.29, 0.32, 0.21, 0.0, 0.28, 0.28, 0.21, 0.36, 0.41, 0.42, 0.34, 0.33, 0.39, 1.0, 0.44, 0.12, 0.32, 0.31, 0.27, 0.4, 0.33, 0.42, 0.3, 0.43, 0.35, 0.37, 0.28, 0.31, 0.14, 0.49, 0.39, 0.34, 0.49, 0.37, 0.44, 0.35, 0.32, 0.37, 0.57, 0.06, 0.34, 0.36, 0.08, 0.31, 0.3, 0.26, 0.26, 0.28, 0.41, 0.0, 0.79, 0.36, 0.44, 0.32, 0.3, 0.39, 0.42, 0.25, 0.28, 0.08, 0.39, 0.31, 0.3, 0.48, 0.24, 0.41, 0.25, 0.0, 0.12, 0.36, 0.38, 0.02, 0.24, 0.3, 0.26, 0.33, 0.46, 0.26, 0.33, 0.39, 0.47, 0.3, 0.34, 0.13, 0.36, 0.36, 0.62, 0.31, 0.3, 0.27, 0.27, 0.27, 0.38, 0.31, 0.3, 0.29, 0.02, 0.22, 0.39, 0.49, 0.27, 0.28, 0.33, 0.44, 0.57, 0.36, 0.31, 0.33, 0.33, 0.21, 0.28, 0.28, 0.45, 0.36, 0.26, 0.13, 0.49, 0.32, 0.09, 0.0, 0.36, 0.29, 0.41, 0.28, 0.3, 0.3, 0.4, 0.32, 0.33, 0.51, 0.36, 0.41, 0.19, 0.35, 0.44, 0.03, 0.27, 0.31, 0.27, 0.36, 0.26, 0.3, 0.39, 0.3, 0.23, 0.28, 0.26, 0.31, 0.0, 0.27, 0.34, 0.2, 0.32, 0.13, 0.36, 0.49, 0.29, 0.37, 0.31, 0.29, 0.37, 0.28, 0.24, 0.49, 0.3, 0.28, 0.47, 0.42, 0.28, 0.32, 0.28, 0.05, 0.21, 0.23, 0.33, 0.28, 0.32, 0.34, 0.42, 0.0, 0.49, 0.24, 0.3, 0.35, 0.3, 0.56, 0.45, 0.28, 0.35, 0.18, 0.2, 0.37, 0.31, 0.3, 0.28, 0.27, 0.18, 0.44, 0.3, 0.3, 0.36, 0.49, 0.41, 0.28, 0.31, 0.35, 0.1, 0.29, 0.01, 0.33, 0.49, 0.38, 0.74, 0.37, 0.45, 0.62, 0.33, 0.4, 0.26, 0.47, 0.28, 0.28, 0.24, 0.27, 0.35, 0.3, 0.76, 0.27, 0.01, 0.27, 0.27, 0.73, 0.29, 0.49, 0.25, 0.31, 0.02, 0.27, 0.36, 0.3, 0.51, 0.15, 0.49, 0.33, 0.32, 0.35, 0.29, 0.49, 0.34, 0.32, 0.44, 0.24, 0.48, 0.23, 0.24, 0.31, 0.39, 0.49, 0.3, 0.3, 0.05, 0.41, 0.23, 0.4, 0.41, 0.39, 0.42, 0.3, 0.35, 0.34, 0.29, 0.26, 0.31, 0.38, 0.38, 0.44, 0.33, 0.33, 0.49, 0.38, 0.27, 0.33, 0.31, 0.31, 0.5, 0.36, 0.37, 0.46, 0.44, 0.37, 0.35, 0.31, 0.25, 0.36, 0.37, 0.0, 0.3, 0.7, 0.36, 0.29, 0.33, 0.32, 0.25, 0.28, 0.21, 0.4, 0.06, 0.28, 0.29, 0.35, 0.35, 0.35, 0.29, 0.41, 0.49, 0.25, 0.25, 0.5, 0.49, 0.26, 0.29, 0.32, 0.24, 0.28, 0.4, 0.3, 0.02, 0.31, 0.36, 0.22, 0.36, 0.35, 0.34, 0.1, 0.24, 0.0, 0.32, 0.23, 0.49, 0.32, 0.32, 0.28, 0.41, 0.28, 0.37, 0.33, 0.31, 0.28, 0.3, 0.24, 0.34, 0.31, 0.35, 0.26, 0.0, 0.74, 0.01, 0.16, 0.32, 0.24, 0.32, 0.28, 0.32, 0.37, 0.29, 0.04, 0.29, 0.3, 0.16, 0.33, 0.23, 0.49, 0.38, 0.32, 0.26, 0.56, 0.66, 0.29, 0.29, 0.4, 0.27, 0.21, 0.35, 0.28, 0.24, 0.28, 0.38, 0.25, 0.49, 0.32, 0.18, 0.43, 0.33, 0.47, 0.04, 0.33, 0.27, 0.36, 0.25, 0.4, 0.33, 0.24, 0.35, 0.31, 0.31, 0.38, 0.49, 0.44, 0.4, 0.33, 0.26, 0.38, 0.22, 0.28, 0.34, 0.36], \"xaxis\": \"x\", \"y\": [0.8156061324462894, 0.42491310922683634, 0.8867827646463432, 0.8014995238430205, 0.30499958310650876, 0.5817355832705369, 0.959171062334887, 0.7854416128369749, 0.9085690698200813, 0.8998600376511439, 0.6341165000693628, 0.412102187638673, 0.7643629411050379, 0.4710001938005606, 0.40182653035141874, 0.40438056362905367, 0.8870480016118494, 0.3650667978415713, 0.9064321709292111, 0.9327245345966092, 0.6458420185168736, 0.8821841129047617, 0.6704018506542557, 0.7655671181822064, 0.8616986618932058, 0.48774537944210006, 0.9637355036179479, 0.6794204065079696, 0.6044835155949141, 0.7867954023600708, 0.9137982268836646, 0.5867502063434873, 0.8048584290077971, 0.9718511071053526, 0.9627192884041744, 0.7978623718349598, 0.6091120966723917, 0.8943338178728011, 0.8853376735027229, 0.9045563504021151, 0.9264844632598176, 0.6342457655367447, 0.9414033426130164, 0.5636516403732365, 0.5172967922101196, 0.4836896337264441, 0.35199620689495453, 0.788779954566273, 0.9696552399248426, 0.772496554239754, 0.8132656157621138, 0.4539090261140653, 0.9333708926412786, 0.679765045723866, 0.48457442622955804, 0.4248820606938153, 0.6737819616086004, 0.8780741425819777, 0.38340602447337646, 0.90634085684919, 0.5574014604752268, 0.6804147683859246, 0.9077110088845216, 0.7718472635729894, 0.4717552048891654, 0.22222808308441652, 0.8616549355667619, 0.705749071892896, 0.4699129352300819, 0.9680524782819758, 0.8891353183282249, 0.9466602521798594, 0.8553382520847058, 0.7430243903066251, 0.6616131862201935, 0.6919609500216202, 0.96565744679506, 0.913108907487878, 0.5395521774612226, 0.9026238558501023, 0.6550941529376255, 0.9757876320152292, 0.8833495792027257, 0.6666029765862381, 0.8504582120840628, 0.9320215595878566, 0.7639947574915884, 0.6085229656221847, 0.9557131606798471, 0.46184432615952054, 0.5642658412077981, 0.8815615400732472, 0.7189203536918151, 0.9301020530176726, 0.7341394174346678, 0.7759189559372703, 0.8448078654733812, 0.9012666081120407, 0.8926028620066223, 0.5287492720273277, 0.6874206920638863, 0.37408584674942635, 0.8348370105186077, 0.8697567261320243, 0.9175759024810304, 0.44644098895981, 0.8874384748400057, 0.7787567487441118, 0.9416122482572158, 0.3265229243180111, 0.9308095750950773, 0.42267134533232753, 0.43068181214270274, 0.8727308285810839, 0.7201611177732586, 0.8430904589044517, 0.8140617541555761, 0.9456747441572588, 0.6672663325862807, 0.8756470416862959, 0.518871521713375, 0.7040615347784164, 0.4957960231649875, 0.6250130361556073, 0.27413726132188326, 0.5193133578087885, 0.37656641690434584, 0.5808048103476511, 0.7917827117482167, 0.36569143480873245, 0.7232542293832885, 0.9785934574433302, 0.5715075300165849, 0.8182555969893297, 0.5448461144048058, 0.9491291995847589, 0.4833587957991669, 0.3189279754564957, 0.9184825510014271, 0.5524830505676419, 0.9600429304649183, 0.7818180966165994, 0.7962710274484252, 0.7569429870375118, 0.46184432615952054, 0.7641514270390748, 0.9486763575522457, 0.8086368705092697, 0.6784536879503494, 0.6877019790624462, 0.6082670858563528, 0.6053794617794684, 0.6319330693089359, 0.4982105707488519, 0.6787928880949093, 0.9231980717613485, 0.8831230955067948, 0.6845485656817341, 0.8799204262605215, 0.9164563829924386, 0.7819268199067826, 0.23469888428232324, 0.9492377841603665, 0.8826092272015389, 0.6360541596480074, 0.5184081252698399, 0.6400126753125241, 0.542646305979658, 0.4479501208302092, 0.7783171875827786, 0.7867712153112567, 0.5236605417423803, 0.6959846197179591, 0.7925023358445066, 0.6683189355892497, 0.18737025221649042, 0.42506327048176057, 0.7272596040941706, 0.7314191754306454, 0.4827891324637794, 0.6649341228620356, 0.9038332731164471, 0.9588917860646077, 0.8945194928389463, 0.49833043835950624, 0.7997712594855277, 0.8577935987172323, 0.7622736922026153, 0.8039391974899521, 0.7396811504731934, 0.8115340233127679, 0.801728888664367, 0.738451208106372, 0.5859674792922007, 0.1865203674848816, 0.8773430435604171, 0.36888329310067386, 0.8651817982269884, 0.9067615420962557, 0.8594983988587351, 0.7437750884018276, 0.9145224932934428, 0.9135679891815164, 0.8001832456898428, 0.6860977766129374, 0.9377826008632761, 0.9300369611912853, 0.6997062971069969, 0.5693182102579236, 0.3404656140239559, 0.7160591142088384, 0.7953146078011, 0.8869803873277935, 0.7639982823097876, 0.8681285227071118, 0.576868797021353, 0.93035102563313, 0.8375600281828176, 0.8279918435672958, 0.9266689436294401, 0.7559862346636359, 0.5099889666930224, 0.6914445842613687, 0.9651950326885705, 0.87851968214492, 0.8499702807396289, 0.4685752957996948, 0.7241546992314323, 0.7848147251007912, 0.7341394174346678, 0.7008877443692281, 0.340588975625529, 0.5013021766499856, 0.8321174529331695, 0.8818378666553491, 0.9176909075187759, 0.8634678749265305, 0.7436082905772717, 0.9343776659412377, 0.7668809937296346, 0.6243383802582345, 0.5332560471205093, 0.6907315465649003, 0.16626803588025432, 0.1668542888532837, 0.7408943843163458, 0.5221312328975666, 0.7457559475413279, 0.46389636934606376, 0.9292627865919654, 0.5268311186840582, 0.4244151934213653, 0.643310536612302, 0.8577438313980266, 0.7816208399762355, 0.8553382520847058, 0.7010035672814305, 0.5242572272016158, 0.9187320011579697, 0.8703498177621264, 0.6713045345576062, 0.9137982268836646, 0.8614414457916845, 0.9445662266054761, 0.8808216590199034, 0.7386378115490353, 0.8873009977622293, 0.9157094897337859, 0.6606038558129893, 0.9296803968514485, 0.8864322240790464, 0.5146720135715994, 0.8720710714485208, 0.9415427660945741, 0.9138701141498735, 0.6527559092576063, 0.8751970040938668, 0.9249766460056568, 0.801728888664367, 0.6575848465963361, 0.6934824043184128, 0.8619113960143526, 0.9419078024651042, 0.9591721389341828, 0.8397407150753159, 0.9084383840076588, 0.4963969309336195, 0.7359588175524252, 0.3531961907069324, 0.9279819479140234, 0.7752976919572294, 0.8665226278427577, 0.9515211055933231, 0.7314191754306454, 0.890886918514299, 0.3235491032739525, 0.3719939405423586, 0.6323804178173072, 0.8398006965792015, 0.8239469134189235, 0.8592101816891015, 0.7615002907198236, 0.8688259750909261, 0.8718104001390852, 0.5838074755684882, 0.8756470416862959, 0.901850575196968, 0.9451930143658351, 0.6253812669856891, 0.5890764576710766, 0.4921052500998711, 0.4862070578416567, 0.9170647663398394, 0.7035583451969506, 0.8476385889092957, 0.5603058978573646, 0.5810606890504925, 0.9088604673919816, 0.8903252600075929, 0.944267921154058, 0.9435968591480925, 0.938237366988842, 0.9357286047893738, 0.7961386682142712, 0.7840233885688647, 0.2513590507613302, 0.7389284097502917, 0.9053472250810051, 0.44438282424164377, 0.862281110352348, 0.8021059248496223, 0.9152740930046814, 0.643737358401971, 0.8540304955499701, 0.8613418170006786, 0.6911084183178322, 0.8848367871057808, 0.8387883096682573, 0.5942651630821018, 0.65691393717736, 0.6369979527510315, 0.8280658524313272, 0.9640736168216585, 0.6546311715671466, 0.5599819536107853, 0.48348053317652906, 0.7668016587569692, 0.03620763244300767, 0.7364400865449663, 0.37408584674942635, 0.8767503774172, 0.8743962287172513, 0.8751970040938668, 0.8833495792027257, 0.7091886355621774, 0.87006937054451, 0.7904001815220257, 0.8761418339280951, 0.8306834851111597, 0.7531715889012326, 0.38181207472529843, 0.6490458991820136, 0.9138057013338913, 0.9046222904886461, 0.17956061692355052, 0.7506163079023257, 0.8963285795381793, 0.8848361664653354, 0.9283037217377402, 0.45996158699034445, 0.7290858434196763, 0.8319094967702583, 0.6578018675312727, 0.18727567457681707, 0.8673410249845035, 0.9453298670648187, 0.9446538464906173, 0.19605573045952288, 0.6723831041639817, 0.3438281302059518, 0.37858973820495484, 0.6953170483296187, 0.21463507152544156, 0.26963792069965237, 0.3280912492037974, 0.8399932187801539, 0.420387898633768, 0.36522500752858966, 0.5810560693343539, 0.9306346767722963, 0.7167716539092029, 0.656736106921484, 0.5549139996760648, 0.6909161521388689, 0.591904263202073, 0.884703171197362, 0.866402281883595, 0.7582770814524421, 0.8990773411030794, 0.1818065866116437, 0.6222165686186035, 0.17261914235374884, 0.8156064679757086, 0.4851213943917703, 0.8871292211128762, 0.8398494053952754, 0.703270618172154, 0.6305543892506115, 0.7494149477175548, 0.1532408287022325, 0.6159732902773407, 0.738220551127759, 0.8354520044441791, 0.8536870432671441, 0.5751476712690671, 0.9077719201719568, 0.7878515691455199, 0.6672663325862807, 0.45293736875445273, 0.17058553029544155, 0.747933377844996, 0.8400163125056676, 0.4516778718827729, 0.6082670858563528, 0.8401843469141149, 0.7636885291754726, 0.789170795337903, 0.8128612802083497, 0.7522530659814418, 0.8086757686066508, 0.8356255123032285, 0.9241779635105248, 0.9674588597049086, 0.9368885694202199, 0.4990764491242286, 0.876561204324957, 0.554264192243629, 0.5967716244634195, 0.9060244606340249, 0.8401608718856799, 0.7329750583133859, 0.8021769878309102, 0.9316817655017511, 0.45488322534173153, 0.798578398438993, 0.7425236774748816, 0.5742682328784404, 0.4937681935814938, 0.8972164286692267, 0.8914273370768748, 0.9377613518261881, 0.8862258850530264, 0.8591757581361523, 0.7410678096850266, 0.6822336012657398, 0.9201658505843877, 0.6982578893131915, 0.5746709232170782, 0.7626532952948841, 0.7137703530889916, 0.7520971196461234, 0.4473853625959922, 0.7957460056304991, 0.4833174871501707, 0.8758467705785958, 0.4689303842787964, 0.6133612564737879, 0.8568681391705205, 0.6835133967314007, 0.9732070839986944, 0.21435716257549006, 0.5761668962420043, 0.4055433603128916, 0.3743394998756179, 0.9118635774953143, 0.964551884718591, 0.9306459334511011, 0.8424802355113449, 0.7739144871152517, 0.6872688771534424, 0.8590561833388345, 0.6714384475466295, 0.6408669500407106, 0.5203550269219845, 0.2856853969697174, 0.857760555506807, 0.9307094503226838, 0.6787928880949093, 0.8308635255795866, 0.29271374211533296, 0.6769315553524353, 0.23831547366416572, 0.5895099457120908, 0.8994675076574448, 0.8893400405584444, 0.8456825404777587, 0.5399612081435882, 0.6188649121485582, 0.9281492942813848, 0.7611740601422801, 0.46550237374781617, 0.8896861436466836, 0.9038901015569306, 0.5044440900554997, 0.9215480939667524, 0.6930273792518707, 0.8723244804196287, 0.5624338775604165, 0.9226297661236537, 0.8469231754225917, 0.9430557295321259, 0.9097116306258912, 0.5988707702267543, 0.3813853072548755, 0.8843832309478876, 0.9006952500629406, 0.918975987201669, 0.18997930334445084, 0.8923106748541326, 0.8461388699436441, 0.5973439234355874, 0.9544642924744549, 0.91770416680597, 0.9177239854204658, 0.17584552180125673, 0.9240099144459667, 0.48524948024905407, 0.8889685222180134, 0.5785503824403398, 0.7511953459672914, 0.6887596776945688, 0.6717539058356753, 0.7168761391602206, 0.7134478068952186, 0.834626350903405, 0.5715867980362679, 0.6588392688727011, 0.9488572786900573, 0.8920529250761863, 0.8891353183282249, 0.707981940789761, 0.926348680038428, 0.631489487929038, 0.7443856388661001, 0.9260754381930228, 0.9544642924744549, 0.8497401318990601, 0.5604010177433062, 0.8036334301115304, 0.7898153537185114, 0.8491431337122072, 0.6570881560807702, 0.8389599143569951, 0.7944137576415592, 0.8132668978866627, 0.44714680104169846, 0.7978021044641371, 0.41921696608658454, 0.38876183891604754, 0.9248463736054193, 0.4277915265084825, 0.6345107008491314, 0.8008942533173764, 0.5087430598332189, 0.9414938992689892, 0.6922115882765215, 0.8296175750175913, 0.8593339228153332, 0.8975141534758351, 0.5977126281557783, 0.9279478536756302, 0.6485770817571253, 0.8905823996589662, 0.9332072841984264, 0.9432461110830079, 0.9410120781436498, 0.6339696776630096, 0.7120962557761497, 0.5841709037351369, 0.5928970840420333, 0.9006589732900512, 0.936371533648048, 0.6907852379101131, 0.7675780198071424, 0.9444587893431046, 0.4702336163336472, 0.8925536722101626, 0.8158978708906081, 0.822780392485108, 0.8037335327290217, 0.8382351003285965, 0.8941557358589171, 0.4796498334522667, 0.926348680038428, 0.6842118015950474, 0.6463580983468415, 0.8292048071278182, 0.5834426687867836, 0.8419845362148763, 0.2431563391580561, 0.7763142135369961, 0.9390550746437164, 0.7774903237071782, 0.8141232663130791, 0.9444089886680379, 0.430401459478284, 0.9192677156927759, 0.8427595869840984, 0.87120858451521, 0.5693182102579236, 0.820012080301976, 0.58719119911586, 0.42769376643096113, 0.3542595869275313, 0.89579938191327, 0.8743523014696554, 0.7820497043505815, 0.5279069501129625, 0.8869579700149332, 0.45488774279476296, 0.8514781135508903, 0.8278297091497892, 0.663749097381813, 0.5132851713944618, 0.4906566565015208, 0.6415219885510332, 0.6991293681294938, 0.8150539074042624, 0.5800669536763935, 0.9583771200922359, 0.7366090055976814, 0.5747817696023392, 0.5315376696882942, 0.8074446941396305, 0.9038901015569306, 0.9087015650331977, 0.6697291810323083, 0.5800669536763935, 0.8807270543114014, 0.5135845984304893, 0.9352791850238339, 0.36120709973337456, 0.6206709330576408, 0.906286252315459, 0.7937202818717513], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [0.65, 0.47, 0.32, 0.08, 0.23, 0.0, 0.07, 0.52, 0.37, 0.23, 0.3, 0.49, 0.74, 0.35, 0.06, 0.2, 0.33, 0.09, 0.22, 0.0, 0.47, 0.26, 0.1, 0.3, 0.0, 0.04, 0.18, 0.32, 0.1, 0.32, 0.0, 0.27, 0.66, 0.24, 0.37, 0.49, 0.35, 0.37, 0.57, 0.36, 0.38, 0.6, 0.27, 0.14, 0.15, 0.24, 0.24, 0.27, 0.43, 0.15, 0.24, 0.22, 0.31, 0.49, 0.26, 0.49, 0.42, 0.25, 0.53, 0.52, 0.44, 0.35, 0.08, 0.24, 0.2, 0.3, 0.34, 0.21, 0.13, 0.31, 0.31, 0.65, 0.66, 0.33, 0.29, 0.07, 0.43, 0.4, 0.2, 0.36, 0.3, 0.37, 0.43, 0.2, 0.23, 0.31, 0.34, 0.17, 0.35, 0.1, 0.65, 0.24, 0.1, 0.66, 0.42, 0.52, 0.56, 0.46, 0.44, 0.35, 0.5, 0.31, 0.28, 0.34, 0.31, 0.68, 0.19, 0.37, 0.49, 0.24, 0.24, 0.33, 0.2, 0.27, 0.17, 0.36, 0.62, 0.23, 0.43, 0.26, 0.2, 0.28, 0.34, 0.55, 0.24, 0.24, 0.22, 0.22, 0.42, 0.19, 0.47, 0.22, 0.3, 0.51, 0.3, 0.2, 0.36, 0.23, 0.35, 0.21, 0.22, 0.4, 0.38, 0.18, 0.22, 0.42, 0.26, 0.34, 0.14, 0.48, 0.38, 0.0, 0.41, 0.09, 0.41, 0.0, 0.53, 0.24, 0.35, 0.07, 0.43, 0.24, 0.49, 0.23, 0.03, 0.39, 0.2, 0.23, 0.28, 0.36, 0.41, 0.18, 0.26, 0.64, 0.28, 0.28, 0.21, 0.28, 0.3, 0.1, 0.46, 0.0, 0.35, 0.34, 0.52, 0.16, 0.45, 0.24, 0.15, 0.37, 0.19, 0.3, 0.5, 0.04, 0.51, 0.0, 0.31, 0.31, 0.26, 0.21, 0.14, 0.5, 0.5, 0.43, 0.24, 0.26, 0.19, 0.41, 0.04, 0.37, 0.29, 0.28, 0.44, 0.74, 0.47, 0.13, 0.23, 0.06, 0.38, 0.48, 0.11, 0.27, 0.51, 0.41, 0.29, 0.34, 0.03, 0.47, 0.04, 0.0, 0.2, 0.54, 0.28, 0.25, 0.32, 0.21, 0.41, 0.25, 0.34, 0.56, 0.33, 0.39, 0.29, 0.32, 0.27, 0.5, 0.49, 0.24, 0.37, 0.33, 0.25, 0.26, 0.66, 0.03, 0.34, 0.51, 0.38, 0.24, 0.46, 0.63, 0.28, 0.22, 0.33, 0.57, 0.33, 0.3, 0.24, 0.22, 0.25, 0.2, 0.35, 0.3, 0.38, 0.26, 0.5, 0.39, 0.12, 0.61, 0.19, 0.13, 0.24, 0.21, 0.32, 0.07, 0.24, 0.2, 0.47, 0.3, 0.27, 0.22, 0.49, 0.55, 0.22, 0.11, 0.4, 0.26, 0.23, 0.55, 0.58, 0.2, 0.0, 0.4, 0.05, 0.33, 0.28, 0.35, 0.24, 0.16, 0.59, 0.21, 0.48, 0.2, 0.21, 0.45, 0.49, 0.37, 0.56, 0.31, 0.44, 0.14, 0.46, 0.47, 0.2, 0.24, 0.36, 0.25, 0.65, 0.54, 0.22, 0.17, 0.4, 0.35, 0.35, 0.4, 0.33, 0.24, 0.16, 0.46, 0.0, 0.46, 0.49, 0.29, 0.3, 0.22, 0.27, 0.01, 0.18, 0.49, 0.18, 0.2, 0.29, 0.03, 0.7, 0.09, 0.42], \"xaxis\": \"x\", \"y\": [0.2802292104526322, 0.9455194119275858, 0.4978743212349556, 0.5289145624519528, 0.28439238707197784, 0.2033309570226689, 0.27345747478543325, 0.8322873304845451, 0.389055896812549, 0.3675472469853882, 0.5781933746273124, 0.7401955299744071, 0.44969671697605845, 0.4367887814338696, 0.31593955341667695, 0.3775624358859999, 0.19282181046294666, 0.048451763306065584, 0.6005928650583868, 0.032225376113695775, 0.427412413738938, 0.23973251442015217, 0.13890126550157303, 0.8613925272127, 0.329663916828638, 0.19359965390713213, 0.6827271716759634, 0.1960905505555538, 0.08135735686643118, 0.39737240301928484, 0.13902987396822816, 0.6514166433739288, 0.6994753721471061, 0.7140886736258081, 0.5021795028970708, 0.48743245558712556, 0.5731139673640956, 0.8820820642542792, 0.559972149724866, 0.5061565591493914, 0.5066810377847554, 0.833805652807593, 0.6979972163580744, 0.3177574231538272, 0.13068190592986567, 0.758876109553896, 0.5681062961269688, 0.715544821914063, 0.762062625203523, 0.4464438677531786, 0.20995974230910305, 0.5262622410710028, 0.39442669669188163, 0.2537324982988368, 0.6775437642744659, 0.23876321589577687, 0.6369158982934647, 0.38960060362966165, 0.6034323722874255, 0.7769991715799629, 0.15199748354041337, 0.5641412449951732, 0.7590466800561823, 0.5969347905931296, 0.1048362779837843, 0.7217824369593382, 0.2662339163773806, 0.16472378978351135, 0.37760124376932414, 0.7071736299639594, 0.3436862995931572, 0.8384434752264291, 0.3635333644877426, 0.7813188949129265, 0.7279369976219869, 0.5641098847382463, 0.3863964747623771, 0.9209913370067284, 0.1477144681640183, 0.8809374658555192, 0.6533168894759348, 0.8873477284758582, 0.3697306267878623, 0.28319023347825867, 0.5203701741750857, 0.5523747693308857, 0.6387521731780509, 0.3881380695009739, 0.8487896327149285, 0.4636606453307818, 0.8384434752264291, 0.558266603669778, 0.21657231888677728, 0.3635333644877426, 0.5512671313974766, 0.5051039398599867, 0.5827915753039158, 0.49441682850108926, 0.47309171914705017, 0.6262595591688196, 0.5508242483721094, 0.47332791509789995, 0.7117569366896692, 0.3933786516273859, 0.16465066549244003, 0.7490394132223248, 0.769261050002088, 0.7431932405995126, 0.3141000916210982, 0.723735045552473, 0.6484132891031948, 0.688519894019609, 0.40496704226994307, 0.5803736122960511, 0.6327801522745691, 0.45115706990411364, 0.37268733756108086, 0.9009693101135351, 0.06496389958099598, 0.44431713201158524, 0.39960831974332744, 0.8662156944598043, 0.31018081106061823, 0.5339551117365043, 0.33311273919547707, 0.400132762133902, 0.8528754522806217, 0.14419347879543085, 0.11672350429510901, 0.44556702529145975, 0.6160120899414699, 0.13766892845409207, 0.5517204028384314, 0.5232178919035022, 0.35483403305733974, 0.4900213704561591, 0.8854578072659228, 0.43084122675663034, 0.7601186327653665, 0.14072030431570776, 0.6186690618327106, 0.5245054232921349, 0.7326259458716644, 0.5690781983520095, 0.4018508815425063, 0.24877469563805235, 0.7952501197393639, 0.8766221356386195, 0.303451532996695, 0.5357745481647883, 0.7096524147827454, 0.20877177283968149, 0.8635610141758273, 0.46736762313881036, 0.6061151992073851, 0.113015272873705, 0.40446014603085867, 0.6332606063976143, 0.648705381890928, 0.42186952587750404, 0.8047913565308571, 0.3017058309841093, 0.38406990132164637, 0.33494193042999065, 0.19929939967121216, 0.8624919783238055, 0.528785836409086, 0.43084122675663034, 0.47042159929499583, 0.5061565591493914, 0.5759491569657543, 0.8468794444363914, 0.20342296359496542, 0.5170831534483544, 0.3666753044655067, 0.6131723001375537, 0.4410646109528086, 0.6903416342484309, 0.3866428492574258, 0.4636606453307818, 0.4525459302795702, 0.03199256040434073, 0.7029629492254846, 0.2433141614541866, 0.548755973819273, 0.3775060302547258, 0.06593060991448157, 0.8745624549148976, 0.22931948662359403, 0.27267688907931714, 0.589328430619086, 0.8007160756317941, 0.5525637789187225, 0.5008522318356121, 0.4556212410144909, 0.17391722008742402, 0.43574637053357784, 0.3237440077649342, 0.6071692164257629, 0.6925152430641841, 0.592675381607996, 0.43854150134957587, 0.43854150134957587, 0.42437112972565305, 0.8061118855433299, 0.35195592295594336, 0.7605370065149419, 0.38898578429124253, 0.67510953655807, 0.872979709380305, 0.710510994258769, 0.720290290780972, 0.4820787970895852, 0.42019280799979697, 0.4304380754474639, 0.25285023254778977, 0.3238056884730761, 0.39471961640683584, 0.09510031985475974, 0.367046376808582, 0.21500793651835448, 0.8705359023101334, 0.6100742529031461, 0.6226449432624995, 0.7279369976219869, 0.3643494054700089, 0.09992017521484964, 0.41475515148757036, 0.6462260464983366, 0.14102909592513518, 0.48949585696458414, 0.5239520436918008, 0.6084413884537807, 0.5655473856702703, 0.9517420512476797, 0.7489379515982664, 0.4647937384849751, 0.7915321263825208, 0.44112279258530757, 0.5734340256727429, 0.6604471727860799, 0.4845203185458914, 0.6968730453869196, 0.5315374962198609, 0.8685951485887234, 0.6242442748350044, 0.2912097196987059, 0.7725938221565348, 0.2067629769731588, 0.30221725334927335, 0.13129342562285412, 0.6467789443522378, 0.6994753721471061, 0.11825382206919556, 0.41022417118631593, 0.4882665226122541, 0.7732287086973071, 0.25374762405010176, 0.49441682850108926, 0.3723877205427743, 0.652330313245635, 0.43667799883041203, 0.5964718913578133, 0.55172276504346, 0.24113559934961917, 0.8243980268882987, 0.7263843594269437, 0.43535214809021755, 0.8721122798612579, 0.18723914490145582, 0.6486906676970999, 0.11576704656818047, 0.4328241622975616, 0.491481212420291, 0.5264345378086769, 0.33856526784971647, 0.2967410926251248, 0.581398831228375, 0.5973776665460488, 0.6195406102170065, 0.37782717658841725, 0.323061133240968, 0.17420808473594895, 0.19634770547538957, 0.46492234760650425, 0.49613167963272686, 0.5812209036149294, 0.6057291775435286, 0.63414717387345, 0.5702687187355167, 0.8604975146328253, 0.6309022132706124, 0.48732991249542923, 0.6887148870948692, 0.41581945293096145, 0.5706760596351739, 0.4831274653996314, 0.06684727567316755, 0.49090643211649887, 0.15191610726090596, 0.2711405311223577, 0.7653618545702112, 0.09266565137124261, 0.4554350627407873, 0.19698919164573708, 0.6930185080649685, 0.5227537922811563, 0.50434568709929, 0.7082092780767422, 0.46058046365566996, 0.6735723234187477, 0.4285936050615775, 0.323061133240968, 0.5168500865319015, 0.6161307914674419, 0.23456444218973552, 0.3192004782541023, 0.21968945907811915, 0.5028183230931117, 0.43371621376298963, 0.6744209213341115, 0.5940260419772637, 0.13783310426722128, 0.5136444387530009, 0.5508647999875032, 0.4955911012838212, 0.9814394195009358, 0.8260225289794664, 0.17965956338109995, 0.46844896472597397, 0.6048119589659149, 0.3289160319090978, 0.2454606394453749, 0.7497022835596558, 0.683485355417811, 0.20995974230910305, 0.23504578258460665, 0.37175956099497537, 0.4875530438829156, 0.24982584224249993, 0.6282829625348888, 0.4520795162158371, 0.8200372413039435, 0.12832513643528837, 0.5299630655130737, 0.29552777318700446, 0.24021937552346023, 0.5429028773737552, 0.6311869746243346, 0.4145977043912777, 0.39329840463575844, 0.39070335653410526, 0.4286990948130573, 0.846836560604146, 0.6880850122626078], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (curr)\", \"type\": \"scatter\", \"x\": [0.19, 0.38, 0.42, 0.21, 0.23, 0.27, 0.29, 0.25, 0.31, 0.12, 0.24, 0.35, 0.25, 0.23, 0.39, 0.34, 0.0, 0.31, 0.24, 0.34, 0.3, 0.31, 0.35, 0.39, 0.28, 0.49, 0.38, 0.28, 0.32, 0.3, 0.29, 0.27, 0.37, 0.34, 0.23, 0.99, 0.27, 0.37, 0.33, 0.02, 0.34, 0.33, 0.49, 0.3, 0.42, 0.09, 0.29, 0.18, 0.33, 0.37, 0.17, 0.39, 0.44, 0.41, 0.31, 0.44, 0.56, 0.0, 0.31, 0.68, 0.09, 0.26, 0.36, 0.27, 0.29, 0.33, 0.38, 0.33, 0.06, 0.34, 0.34, 0.28, 0.28, 0.24, 0.29, 0.19, 0.24, 0.28, 0.3, 0.49, 0.4, 0.33, 0.41, 0.27, 0.34, 0.29, 0.39, 0.24, 0.49, 0.34, 0.26, 0.49, 0.26, 0.28, 0.3, 0.28, 0.4, 1.23, 0.52, 0.08, 0.44, 0.27, 0.23, 0.24, 0.34, 0.09, 0.24, 0.32, 0.42, 0.29, 0.0, 0.28, 0.3, 0.27, 0.25, 0.53, 0.22, 0.27, 0.25, 0.39, 0.23, 0.36, 0.27, 0.47, 0.1, 0.46, 0.26, 0.46, 0.4, 0.35, 0.38, 0.34, 0.28, 0.27, 0.49, 0.58, 0.34, 0.38, 0.27, 0.29, 0.45, 0.03, 0.69, 0.37, 0.26, 0.33, 0.56, 0.32, 0.3, 0.34, 0.29, 0.33, 0.31, 0.61, 0.34, 0.35, 0.38, 0.32, 0.4, 0.39, 0.39, 0.24, 0.24, 0.91, 0.49, 0.36, 0.35, 0.05, 0.4, 0.81, 0.3, 0.4, 0.28, 0.4, 0.47, 0.3, 0.17, 0.38, 0.26, 0.39, 0.3, 0.25, 0.36, 0.49, 0.32, 0.15, 0.24, 0.24, 0.36, 0.33, 0.32, 0.26, 0.32, 0.45, 0.28, 0.28, 0.32, 0.22, 0.56, 0.26, 0.36, 0.25, 0.42, 0.52, 0.5, 0.3, 0.41, 0.73, 0.3, 0.41, 0.29, 0.34, 0.24, 0.45, 0.52, 0.29, 0.38, 0.24, 0.4, 0.4, 0.49, 0.29, 0.14, 0.42, 0.5, 0.2, 0.32, 0.3, 0.45, 0.26, 0.21, 0.4, 0.39, 0.36, 0.24, 0.38, 0.24, 0.18, 0.31, 0.49, 0.35, 0.32, 0.36, 0.34, 0.2, 0.5, 0.27, 0.31, 0.34, 0.11, 0.32, 0.28, 0.44, 0.29, 0.37, 0.26, 0.74, 0.3, 0.4, 0.31, 0.02, 0.31, 0.34, 0.19, 0.27, 0.36, 0.42, 0.2, 0.42, 0.46, 0.27, 0.32, 0.32, 0.59, 0.34, 0.16, 0.49, 0.32, 0.26, 0.1, 0.53, 0.27, 0.52, 0.15, 0.32, 0.49, 0.28, 0.31, 0.07, 0.27, 0.5, 0.44, 0.28, 0.26, 0.3, 0.3, 0.48, 0.3, 0.36, 0.32, 0.29, 0.44, 0.47, 0.26, 0.36, 0.46, 0.3, 0.35, 0.39, 0.3, 0.27, 0.31, 0.08, 0.61, 0.25, 0.29, 0.4, 0.34, 0.49, 0.33, 0.28, 0.27, 0.29, 0.49, 0.37, 0.34, 0.25, 0.52, 0.58, 0.3, 0.02, 0.32, 0.0, 0.32, 0.69, 0.3, 0.42, 0.28, 0.44, 0.3, 0.31, 0.33, 0.49, 0.0, 0.08, 0.28, 0.3, 0.38, 0.49, 0.27, 0.49, 0.38, 0.32, 0.61, 0.22, 0.31, 0.25, 0.26, 0.38, 0.08, 0.29, 0.24, 0.49, 0.46, 0.43, 0.49, 0.2, 0.49, 0.41, 0.33, 0.32, 0.29, 0.4, 0.38, 0.49, 0.09, 0.37, 0.29, 0.08, 0.0, 0.27, 0.43, 0.31, 0.42, 0.39, 0.41, 0.42, 0.31, 0.11, 0.24, 0.22, 0.24, 0.45, 0.39, 0.35, 0.02, 0.39, 0.54, 0.15, 0.37, 0.42, 0.24, 0.28, 0.71, 0.27, 0.33, 0.29, 0.26, 0.28, 0.27, 0.37, 0.36, 0.49, 0.71, 0.24, 0.12, 0.38, 0.34, 0.27, 0.24, 0.25, 0.36, 0.47, 0.18, 0.54, 0.26, 0.41, 0.22, 0.29, 0.5, 0.27, 0.32, 0.38, 0.33, 0.3, 0.25, 0.38, 0.36, 0.33, 0.3, 0.3, 0.01, 0.29, 0.23, 0.38, 0.45, 0.01, 0.2, 0.19, 0.18, 0.3, 0.08, 0.26, 0.21, 0.28, 0.2, 0.31, 0.28, 0.32, 0.32, 0.3, 0.32, 0.25, 0.29, 0.31, 0.29, 0.49, 0.3, 0.33, 0.0, 0.2, 0.36, 0.2, 0.27, 0.48, 0.3, 0.2, 0.39, 0.18, 0.34, 0.23, 0.34, 0.49, 0.45, 0.38, 0.49, 0.3, 0.29, 0.1, 0.0, 0.4, 0.4, 0.39, 0.33, 0.33, 0.47, 0.42, 0.31, 0.39, 0.55, 0.41, 0.38, 0.3, 0.18, 0.24, 0.2, 0.18, 0.24, 0.43, 0.43, 0.32, 0.34, 0.28, 0.29, 0.38, 0.31, 0.31, 0.53, 0.49, 0.37, 0.33, 0.2, 0.33, 0.26, 0.4, 0.27, 0.26, 0.36, 0.35, 0.53, 0.07, 0.26, 0.36, 0.53, 0.45, 0.22, 0.66, 0.33, 0.0, 0.29, 0.32, 0.3, 0.48, 0.28, 0.37, 0.32, 0.45, 0.4, 0.24, 0.3, 0.58, 0.3, 0.21, 0.37, 0.3, 0.19, 0.21, 0.32, 0.51, 0.27, 0.26, 0.33, 0.3, 0.42, 0.3, 0.24, 0.26, 0.3, 0.39, 0.27, 0.31, 0.26, 0.29, 1.0, 0.36, 0.31, 0.38, 0.28, 0.25, 0.35, 0.2, 0.51, 0.47, 0.22, 0.31, 0.5, 0.18, 0.45, 0.15, 0.14, 0.03, 0.32, 0.36, 0.23, 0.16, 0.49, 0.26, 0.36, 0.34, 0.3, 0.21, 0.58, 0.43, 0.26, 0.36, 0.27, 0.42, 0.49, 0.26, 0.35, 0.04, 0.4, 0.28, 0.28, 0.26, 0.25, 0.27, 0.31, 0.29, 0.54, 0.28, 0.26, 0.28, 0.28, 0.18, 0.26, 0.29, 0.38, 0.65, 0.32, 0.0, 0.68, 0.36, 0.34, 0.31, 0.35, 0.46, 0.24, 0.41, 0.24, 0.3, 0.49, 0.24, 0.22, 0.31, 0.37, 0.29, 0.34], \"xaxis\": \"x2\", \"y\": [0.33396714643252134, 0.5044440900554997, 0.8874896900044845, 0.4686759077780351, 0.23831547366416572, 0.571181601185031, 0.7785327680196316, 0.7290551099174598, 0.9581131370131553, 0.6801000322064107, 0.413367674560271, 0.6667140739211237, 0.9108229754863395, 0.9275086157065797, 0.9186958597750785, 0.7191871442695774, 0.8184457509658746, 0.8597940676688322, 0.7947045908306632, 0.8244149680645384, 0.42771531534877594, 0.5315376696882942, 0.7136291946100958, 0.5510697799054304, 0.6393262665313312, 0.9016582766249417, 0.8560880110261746, 0.8947361144883382, 0.9102326114023062, 0.840723585394272, 0.9264645566705582, 0.5105903360131552, 0.752648770317166, 0.5855954083225455, 0.8989214048388485, 0.5190750352404293, 0.9560713253502463, 0.7273157243430202, 0.9279672131348602, 0.640103147954212, 0.9158977434209615, 0.9035955072010529, 0.7140955379655831, 0.233508355491505, 0.7280578325574358, 0.8810827811902006, 0.3966129217085586, 0.15541760955422754, 0.5851621750323275, 0.9046111951917862, 0.4177213302712193, 0.7993763114768937, 0.6978409661933959, 0.6473373667551029, 0.770784382977056, 0.6500641275496193, 0.548949563093737, 0.9803199442553986, 0.6150775052067382, 0.391333092160729, 0.6966682278280982, 0.9426748402861506, 0.9170092977635526, 0.844625652038695, 0.5621782696252592, 0.8935808323282117, 0.6792214086077275, 0.6719996755401956, 0.5252591274442797, 0.7277045758687855, 0.4685752957996948, 0.8616549355667619, 0.347491516391863, 0.8224130863808733, 0.5340790568488665, 0.6711667658766297, 0.5277539611022016, 0.7226430813715845, 0.8140972745487615, 0.3280236940194876, 0.9543080196225542, 0.7752655593026647, 0.9223925066666061, 0.8588031784191832, 0.6345107008491314, 0.9393010047953068, 0.7897067132703484, 0.8608062836413887, 0.8367885032124018, 0.38555642305179116, 0.8611944449682004, 0.9172341012895443, 0.9206892306522243, 0.9500505925695213, 0.537798347971205, 0.9173482789702866, 0.44454351342386716, 0.8909704850569525, 0.7351932580165473, 0.6818328744935735, 0.7981559962965634, 0.7626532952948841, 0.807353254900461, 0.964411205143099, 0.4685752957996948, 0.6986526320119215, 0.1956969407137045, 0.9233481403380283, 0.8218375601976645, 0.8536269727611236, 0.5637680470866036, 0.42267134533232753, 0.93003590801509, 0.9364808605729722, 0.8816060831574614, 0.9663102962713933, 0.8345570787709832, 0.4997893986747249, 0.7921603237806832, 0.5586815647381762, 0.8622246464681924, 0.9828719612298703, 0.909295720392338, 0.9476267884443668, 0.5395521774612226, 0.901360886913609, 0.39410444510430487, 0.9262213132200262, 0.6627387433216217, 0.9629433821448677, 0.9614311452267452, 0.9802968012486629, 0.933760787013923, 0.34432718187202205, 0.63596173557573, 0.624364378916488, 0.7417789548241253, 0.7300918276682445, 0.6968315453320488, 0.7840233885688647, 0.8958841271622066, 0.5417426694559925, 0.7102579146160282, 0.6004345411549624, 0.515920701757342, 0.7587882454650442, 0.5029588531082266, 0.6887596776945688, 0.8642849605932809, 0.6469572639767995, 0.8103639651534781, 0.939764354405301, 0.694136577696587, 0.6593725303534554, 0.9646797005081557, 0.7979900311745153, 0.792123904710467, 0.8869579700149332, 0.7351250317969437, 0.5332560471205093, 0.9406873315653421, 0.39362685027924615, 0.9466602521798594, 0.8394325033041952, 0.6633442657978572, 0.8126408700417265, 0.7332457619716184, 0.08024070404520958, 0.8667774471450977, 0.6466814331404849, 0.912366876100516, 0.656670904734599, 0.8701678467707724, 0.8875925797813499, 0.9658725076002231, 0.7668332861852056, 0.8604440887473094, 0.934384507524058, 0.9605946056867319, 0.951253157591183, 0.5749289095213865, 0.6279243005170476, 0.7937202818717513, 0.7665301650725991, 0.700127941221274, 0.8531107444728586, 0.7947045908306632, 0.8870566665876504, 0.5476228787844645, 0.8410401833568673, 0.8736671065238262, 0.6519898659949606, 0.936943112068646, 0.9077719201719568, 0.8071889556778997, 0.8815615400732472, 0.8935313268029127, 0.8782891297971865, 0.5029588531082266, 0.5797201450332624, 0.9416775458320723, 0.5958140198486584, 0.2485157288688957, 0.932021424688801, 0.8531502837407814, 0.6344194678828672, 0.632587077283238, 0.9121448358615357, 0.5776545535910985, 0.9052765174806566, 0.8580390107418799, 0.8998644401112552, 0.6784536879503494, 0.9458342431661766, 0.21387363850783603, 0.9530348339880965, 0.7307391114165022, 0.7187682731289255, 0.6905635603269331, 0.9569274903702625, 0.9287384091375525, 0.3856984054091925, 0.504413920551941, 0.5389739198483336, 0.5921068831639978, 0.10702848140489757, 0.8772993497727819, 0.6361944011057532, 0.8952999713010865, 0.7069578609115064, 0.10632960186243966, 0.6465592619811017, 0.9116333268133815, 0.9210441535829985, 0.9483358221641291, 0.5800224234700003, 0.896951343689222, 0.8958659323404018, 0.8896861436466836, 0.7763142135369961, 0.778627444633172, 0.9274605647284293, 0.9167924025380936, 0.6422094408272838, 0.6363725079258666, 0.8694129796739031, 0.5693182102579236, 0.5315376696882942, 0.6814536952243052, 0.30089534057709466, 0.6689448970920832, 0.6419522618821227, 0.6500641275496193, 0.8221968069187356, 0.9285763346020383, 0.8495153837633861, 0.7135666997345446, 0.8850789772017983, 0.9128367188568884, 0.8709442503982084, 0.44714680104169846, 0.7147831401969469, 0.6814536952243052, 0.5823319261018008, 0.7718122970862826, 0.8925058444773368, 0.9249991097277733, 0.7849066379312727, 0.5120166815330335, 0.7863291630268572, 0.8171821177205619, 0.8878235148823457, 0.9813953955585096, 0.5009899161211654, 0.6787020040856314, 0.2747106808400709, 0.6998114428322438, 0.7191783799678735, 0.7566715075843347, 0.7741630673610131, 0.692871858980435, 0.8706970297938403, 0.9226518689226377, 0.619213859232465, 0.9620625840847012, 0.8161066853745392, 0.7984578805051198, 0.8987836568806694, 0.27900511725120763, 0.747868261422589, 0.8013372150606806, 0.4430395412241901, 0.8082746512504794, 0.9248395818955686, 0.8132668978866627, 0.7926355964369082, 0.7243101498981422, 0.8251498778038484, 0.865753667016409, 0.8784859927081519, 0.9613966942665844, 0.8380103992838959, 0.9376908870460701, 0.8505645904112248, 0.5317253080143199, 0.8756470416862959, 0.8823120896825394, 0.8920529250761863, 0.9565288857220365, 0.92576324319171, 0.8397457208604353, 0.8008835764985612, 0.7620555647282774, 0.6333567796033132, 0.8986985644274655, 0.8289197139212982, 0.38568054861828666, 0.4358764146033148, 0.7013568331933456, 0.5524769805317635, 0.8654015550049637, 0.9625385348003681, 0.4997035751430624, 0.5940434106189647, 0.29640429037896177, 0.9370396801623051, 0.7496358493500708, 0.8521916566704996, 0.7519935213994349, 0.8956127660014477, 0.7563308848917781, 0.5425355780301907, 0.1652985164032473, 0.5777375433929663, 0.5926841497777402, 0.5247451599628447, 0.6215406511606532, 0.646742228322253, 0.5236567091352762, 0.8105889943537302, 0.7614647275399787, 0.7272264480694343, 0.44438282424164377, 0.8051848688934031, 0.253979247575754, 0.8737269176380216, 0.7884186533408385, 0.5226162157005312, 0.7776146375974927, 0.8021344726910251, 0.6794204065079696, 0.8398669626756513, 0.3743394998756179, 0.6593725303534554, 0.41008410759983227, 0.8726624594592295, 0.31336232876890546, 0.6187135046228962, 0.9208146539756937, 0.8948907807194619, 0.9475948217130945, 0.7098971478357265, 0.41970311630379203, 0.5524505095188592, 0.6689295490636696, 0.39534528644804523, 0.6686700461744643, 0.6608417181144597, 0.6289006219381473, 0.8112353209803558, 0.9675531845963172, 0.3468688843876404, 0.8171815196180959, 0.9315945487332388, 0.7612383340144859, 0.43979370974717685, 0.9452166580978265, 0.810349906376065, 0.4979189466877109, 0.9054024939516333, 0.7506263221664519, 0.8595966107872783, 0.9041757536760852, 0.5120166815330335, 0.9246344940597735, 0.622364539475366, 0.7975959936185795, 0.9376528402833735, 0.8270495791839716, 0.7463426393970082, 0.8508295060861325, 0.5277539611022016, 0.7926521549058593, 0.8343380415579561, 0.7973631232158779, 0.5423298306356671, 0.6253812669856891, 0.9342151247863544, 0.9064095870896521, 0.8428584418618921, 0.5680191878381406, 0.8230633503438987, 0.857993972512287, 0.8312116035859974, 0.8886868130574391, 0.5695902702544526, 0.8750573328895943, 0.47134086624147714, 0.6082670858563528, 0.8571520978358925, 0.7006810412396262, 0.6001343818465046, 0.8680196363335714, 0.7833148206731655, 0.835330250744176, 0.6883000602161935, 0.4297997702781997, 0.7132181587745201, 0.941909753873568, 0.9298379484442667, 0.8950633078112005, 0.9652574497835966, 0.8593048115498744, 0.23022113319019433, 0.5548683876071567, 0.8789570823277312, 0.7176343272433334, 0.7135972690872326, 0.900955402304434, 0.89110615578316, 0.8021344726910251, 0.36734125225010755, 0.9233813125795639, 0.9269988231022361, 0.6021478506882372, 0.27064660283581765, 0.7595966254948197, 0.5317253080143199, 0.9626288904553877, 0.518871521713375, 0.4244151934213653, 0.8784852709235653, 0.667697582798242, 0.6791650855490978, 0.8659372985570389, 0.5217980090164113, 0.9757802673562255, 0.20769640873195563, 0.6900575067285889, 0.15051833553221247, 0.8476988333501053, 0.12043274000614122, 0.6546311715671466, 0.412102187638673, 0.6339696776630096, 0.6925917751558638, 0.8074446941396305, 0.8417042066658985, 0.4702054036006336, 0.8107456318417504, 0.934253622333564, 0.9671353887875448, 0.3776875782453083, 0.5133306968464912, 0.8279918435672958, 0.7295730380004212, 0.8398957027397556, 0.7470826509089123, 0.7722124156410631, 0.3944809481034696, 0.5801047158883857, 0.7134138458261836, 0.8265590446981121, 0.5836238058504062, 0.7538957359152121, 0.9708936701567454, 0.41507295289487073, 0.9039211350062085, 0.5109703825452502, 0.8880660412534, 0.6332514250278477, 0.703270618172154, 0.863031725372896, 0.9601349291832292, 0.5845797646527732, 0.8357575010967041, 0.9584406458449958, 0.8733333206292072, 0.4740801794177068, 0.5787650908025566, 0.38525623454815555, 0.5715075300165849, 0.951253157591183, 0.831291834366621, 0.6482062646591596, 0.5447536045265621, 0.8456825404777587, 0.5358725178581014, 0.8893400405584444, 0.5955893395860203, 0.9408369636189147, 0.7580589814818564, 0.4244151934213653, 0.7636885291754726, 0.9532052815091139, 0.6686700461744643, 0.39683939049776734, 0.8309978518015588, 0.06774730328187532, 0.8934061610794648, 0.9459413258233057, 0.8507977517004935, 0.9694554821790147, 0.8640493534313302, 0.8409166048571896, 0.9059760843724536, 0.7278052027863667, 0.8952246802917138, 0.39534528644804523, 0.9558702864115934, 0.9178754126151818, 0.7504628435478695, 0.7568870052952757, 0.32046258648166903, 0.9712495894387816, 0.7125870341029702, 0.8286889773580812, 0.929575727770858, 0.8422483936479932, 0.60065365322741, 0.5775074082600717, 0.7505976846167132, 0.5317253080143199, 0.9590110623565244, 0.9651712957082627, 0.7333643603414158, 0.7757825668725274, 0.8928390517037824, 0.2578168736401774, 0.5355488836719776, 0.8408692583280314, 0.7849780542174357, 0.8711681462620556, 0.8447990405440073, 0.9571933326515756, 0.9307123551507692, 0.6421242495412457, 0.9239207054420927, 0.9336219461922934, 0.4244151934213653, 0.5673643045526261, 0.8301442064454496, 0.528471943574542, 0.8835542071774324, 0.8820947700128993, 0.4561713647735051, 0.584381944856391, 0.9493936477483658, 0.7816316980556022, 0.7770145472448273, 0.8495153837633861, 0.8318035560268552, 0.5220388622338656, 0.8589980209217414, 0.21216021099657945, 0.8782303617207965, 0.901850575196968, 0.7683760396387002, 0.9559989503713009, 0.938411491366706, 0.7225398931917507, 0.5918361617892179, 0.8596378534897678, 0.8816239240572568, 0.9296844522785247, 0.8299758417251202, 0.7538846798551382, 0.931253582726863, 0.6902425303942638, 0.9299571155275668, 0.35461708236434614, 0.6119587629530028, 0.8979450471026776, 0.8782891297971865, 0.6144930729026484, 0.5601837238662909, 0.4230258756549153, 0.5115702372514986, 0.6133200318312215, 0.8287048127179734, 0.42887934024879554, 0.5543929044930882, 0.5414149972460248, 0.7453725251924848, 0.6522898344923613, 0.6445138145159856, 0.9212190995841192, 0.6991293681294938, 0.9188224881967051, 0.9444881948020799, 0.8399825546316605, 0.6440269003431431, 0.45260210695563535, 0.6678228102737954, 0.8535669746933884, 0.23469888428232324, 0.7581156815660375, 0.8329520097124233, 0.5886389680190937, 0.4250130050586104, 0.290761161529129, 0.9065968169685268, 0.39757013049667705, 0.9584529405260903, 0.24804178200132845, 0.8400605958344816, 0.9562762484868867, 0.5923100188758571, 0.5355488836719776, 0.6866862751474886, 0.753715093249364, 0.9302702282582556, 0.8405005145861136, 0.7758456574858743, 0.8270123797965384, 0.9270997487744173, 0.8779999285967196, 0.6350604679157676, 0.9057987369792326, 0.9732730617650076, 0.28007269673131574, 0.5393237551960537, 0.9509318156255189, 0.8055358405733448, 0.8512314640165554, 0.6752183046546253, 0.9766791413071304, 0.26893819095773785, 0.5105552073939665, 0.7964242570425004, 0.9159462749375985, 0.46312559485344046, 0.7889853219989779, 0.5331772070153998, 0.6250130361556073, 0.5340700079782073, 0.8981158701031157, 0.8424802355113449], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [0.49, 0.12, 0.36, 0.29, 0.4, 0.4, 0.18, 0.04, 0.24, 0.65, 0.25, 0.39, 0.4, 0.26, 0.45, 0.36, 0.32, 0.49, 0.34, 0.07, 0.39, 0.13, 0.36, 0.64, 0.37, 0.31, 0.3, 0.23, 0.29, 0.74, 0.79, 0.2, 0.0, 0.17, 0.33, 0.21, 0.32, 0.11, 0.19, 0.06, 0.29, 0.2, 0.74, 0.29, 0.32, 0.25, 0.24, 0.25, 0.29, 0.35, 0.54, 0.26, 0.49, 0.22, 0.1, 0.23, 0.01, 0.49, 0.29, 0.2, 0.49, 0.34, 0.18, 0.4, 0.21, 0.06, 0.59, 0.0, 0.0, 0.03, 0.02, 0.25, 0.14, 0.26, 0.35, 0.28, 0.46, 0.52, 0.21, 0.3, 0.34, 0.18, 0.2, 0.33, 0.49, 0.27, 0.3, 0.34, 0.13, 0.36, 0.49, 0.26, 0.41, 0.42, 0.01, 0.0, 0.49, 0.19, 0.08, 0.55, 0.45, 0.32, 0.36, 0.11, 0.32, 0.09, 0.04, 0.0, 0.26, 0.41, 0.06, 0.5, 0.02, 0.29, 0.28, 0.34, 0.22, 0.24, 0.45, 0.08, 0.2, 0.28, 0.26, 0.17, 0.13, 0.18, 0.32, 0.38, 0.13, 0.37, 0.41, 0.32, 0.42, 0.49, 0.28, 0.62, 0.24, 0.17, 0.2, 0.2, 0.39, 0.49, 0.33, 0.42, 0.44, 0.28, 0.39, 0.23, 0.26, 0.23, 0.0, 0.22, 0.42, 0.19, 0.27, 0.24, 0.25, 0.44, 0.22, 0.42, 0.36, 0.47, 0.35, 0.48, 0.08, 0.26, 0.29, 0.46, 0.34, 0.38, 0.38, 0.32, 0.26, 0.28, 0.21, 0.0, 0.24, 0.35, 0.27, 0.35, 0.36, 0.23, 0.49, 0.1, 0.34, 0.32, 0.3, 0.22, 0.49, 0.22, 0.03, 0.46, 0.3, 0.28, 0.62, 0.21, 0.27, 0.1, 0.39, 0.3, 0.02, 0.26, 0.2, 0.4, 0.28, 0.36, 0.42, 0.59, 0.16, 0.69, 0.49, 0.23, 0.08, 0.4, 0.49, 0.24, 0.28, 0.33, 0.86, 0.24, 0.56, 0.25, 0.43, 0.41, 0.37, 0.14, 0.49, 0.29, 0.34, 0.34, 0.2, 0.34, 0.25, 0.35, 0.11, 0.48, 0.33, 0.31, 0.42, 0.33, 0.18, 0.02, 0.39, 0.32, 0.33, 0.12, 0.37, 0.3, 0.48, 0.01, 0.31, 0.2, 0.32, 0.62, 0.25, 0.36, 0.32, 0.23, 0.23, 0.33, 0.14, 0.22, 0.74, 0.74, 0.33, 0.36, 0.24, 0.38, 0.34, 0.44, 0.31, 0.12, 0.74, 0.42, 0.49, 0.25, 0.26, 0.34, 0.07, 0.47, 0.1, 0.25, 0.38, 0.0, 0.18, 0.37, 0.3, 0.26, 0.49, 0.38, 0.35, 0.07, 0.24, 0.06, 0.33, 0.39, 0.16, 0.38, 0.44, 0.39, 0.28, 0.65, 0.54, 0.56, 0.24, 0.06, 0.48, 0.29, 0.46, 0.26, 0.18, 0.19, 0.44, 0.41, 0.33, 0.74, 0.26, 0.49, 0.29, 0.1, 0.68, 0.08, 0.24, 0.27, 0.13, 0.53, 0.2, 0.49, 0.45, 0.14, 0.06, 0.29, 0.39, 0.4, 0.21, 0.41, 0.28, 0.04, 0.25, 0.32, 0.15, 0.49, 0.25, 0.27, 0.49, 0.3, 0.41, 0.49, 0.25, 0.4, 0.28, 0.3], \"xaxis\": \"x2\", \"y\": [0.8142007211296887, 0.07257977436397642, 0.7430932382113554, 0.8214862427787604, 0.5698848321031316, 0.6048119589659149, 0.6466669219762841, 0.14510080060429495, 0.2250304680670007, 0.28492472637839966, 0.42061632734231896, 0.8281252124183194, 0.49622399336621903, 0.3482895521074759, 0.4678833354511545, 0.5708968386647719, 0.37048677721847617, 0.553632248395139, 0.8702137350251022, 0.42186952587750404, 0.8696774950675754, 0.5410576963494411, 0.3971326977900686, 0.3275001196198921, 0.9448289227093116, 0.7109941475090589, 0.41925580570138304, 0.3675472469853882, 0.6721911818800557, 0.5562207270314473, 0.5262426608517637, 0.3244609607385458, 0.15056615442564347, 0.15676979724311627, 0.6037730696030339, 0.6342511279653397, 0.021947035536558718, 0.32429164429335744, 0.5678746850743716, 0.3571680467137555, 0.7755534309390314, 0.3240287891037917, 0.699424662214302, 0.5151532452376618, 0.7564675819717819, 0.38343591026479057, 0.19811005648518398, 0.3168419703358067, 0.5315947262677626, 0.9269044449273315, 0.8260225289794664, 0.451791899378283, 0.830516920403184, 0.47128602930186, 0.19027823806377472, 0.5181346713949518, 0.29552777318700446, 0.45414400334446664, 0.39329840463575844, 0.42327932510626076, 0.45838907164509224, 0.2233864252642039, 0.3628419195926303, 0.6709353200988277, 0.46058046365566996, 0.25551237833043455, 0.7234147543269824, 0.1481282262733752, 0.314935793994079, 0.20050531530561894, 0.37453315488553635, 0.701015529968035, 0.6343341418527783, 0.1739320900588749, 0.734996253073231, 0.8172229478314255, 0.3598554146739685, 0.7121055211356295, 0.2620604909731644, 0.3421138035730516, 0.6951268813066005, 0.35208221297891723, 0.452099210446082, 0.18907620085798427, 0.5444201651108793, 0.6484058972837882, 0.3258186925596978, 0.5963383680780668, 0.6202666247822538, 0.576738593946626, 0.5054992484109841, 0.2972245631729925, 0.6844333356791464, 0.42629475072919953, 0.4405153833121037, 0.01207867704715336, 0.7609288944606691, 0.23951123982998349, 0.09310514674080905, 0.5084920166510624, 0.33067609257366243, 0.36481899584296196, 0.5708968386647719, 0.3194802059637459, 0.14207297841267416, 0.5776897120055972, 0.2026163425795633, 0.37909000048748537, 0.38206764842015895, 0.41324683104354176, 0.17826143731067332, 0.42339414872454434, 0.39148091864802853, 0.3511350413575442, 0.8053393751847749, 0.5937005322868365, 0.6849942580153355, 0.38930033076762494, 0.5168500865319015, 0.5699073288866824, 0.5376087249833421, 0.8185832461647057, 0.25950508036415604, 0.20394483716883388, 0.3303044530853749, 0.2528102968078532, 0.8477719856767125, 0.5217124250004609, 0.3303044530853749, 0.5382885532339231, 0.9625763866028243, 0.6536174904341296, 0.42629475072919953, 0.6458781618432388, 0.46574001023909845, 0.37268733756108086, 0.8180085473348132, 0.35493594975273335, 0.2423640089427935, 0.3636330633241046, 0.6421622311157122, 0.5444201651108793, 0.7396308412796291, 0.9036153464846048, 0.21101569987323432, 0.6004024464464508, 0.7595861882737439, 0.486549602332862, 0.2379839758891197, 0.5147825233229498, 0.2065932277190248, 0.4342628292980428, 0.5940848250235929, 0.4857193175270624, 0.5332610244722983, 0.5402196969638672, 0.8578846895389459, 0.5290225674595067, 0.6074669506688956, 0.1847839155105034, 0.3581391437324269, 0.4304380754474639, 0.8410120374942113, 0.5810086483513661, 0.19026233744636453, 0.7223494520380469, 0.8589928738613049, 0.8374625942163022, 0.781203852328267, 0.73983195178881, 0.41156537259256004, 0.7482873396984137, 0.44431713201158524, 0.7113673874393347, 0.49869552495399233, 0.7627102864663872, 0.37193390769028617, 0.37187810520956766, 0.3773291605703562, 0.8719651627687759, 0.6218762459828849, 0.3781393537983126, 0.553632248395139, 0.47624084907999176, 0.774399353278846, 0.5840424935194366, 0.5601025471409736, 0.6186690618327106, 0.620611700356168, 0.5755798886129706, 0.15047650536569443, 0.5530049338021776, 0.6597439619439023, 0.8300222117931148, 0.3490158529243493, 0.4410646109528086, 0.5067909967309752, 0.5851482063434866, 0.7149827463187939, 0.4849259975950144, 0.2094210588097294, 0.33399024531412796, 0.4083143545243069, 0.7497022835596558, 0.7817929239213606, 0.7637421953724776, 0.3825655414920891, 0.6611482494098961, 0.19022241257108333, 0.44972084577511023, 0.5476732603321269, 0.4831274653996314, 0.5077048340566679, 0.7289504589448288, 0.4379810490617926, 0.8017221455714771, 0.6434673631716396, 0.5059779734745421, 0.6065367192264559, 0.650368705032214, 0.34567471266024347, 0.39561589000187136, 0.3427787545601037, 0.4676404271158623, 0.5332283386400669, 0.4519108142444285, 0.40662831629925006, 0.42305576187259053, 0.22032895172816622, 0.5278715769330472, 0.43679486629948455, 0.743933429392776, 0.5269515041023835, 0.5008800654866953, 0.214168174561682, 0.44879088851457377, 0.683485355417811, 0.807753104897186, 0.42629475072919953, 0.8502951424821861, 0.17421175568219957, 0.25491371883486935, 0.7595861882737439, 0.6571724132942184, 0.7813188949129265, 0.5626906653340306, 0.8674288259883418, 0.6600514650598344, 0.4827749661719035, 0.5456147119159479, 0.39827550056677263, 0.27323823737433794, 0.695896529362927, 0.5048820477254727, 0.5422349097465021, 0.5610936746718964, 0.6571724132942184, 0.3088751107498249, 0.45428761266464013, 0.6604471727860799, 0.43371621376298963, 0.6171893197168647, 0.8100511550343341, 0.8100511550343341, 0.605832578461134, 0.5526475584669951, 0.4275055171336787, 0.8734720021260204, 0.8508295378350301, 0.5807723706867254, 0.8272749548927728, 0.2670652478909882, 0.7020144194675465, 0.4615566916191992, 0.7055847950248242, 0.43389869234556755, 0.6071692164257629, 0.3496825637352313, 0.23676491619791426, 0.7057755976874825, 0.15539001443149586, 0.6187538615870153, 0.8735882828904331, 0.30049486749739024, 0.23191705420611952, 0.8913917397916864, 0.4977157214618499, 0.16961113509580228, 0.8485494795219795, 0.4760032757956232, 0.5053843099270294, 0.2676015269871764, 0.3627664421236291, 0.15146266807038725, 0.7898179638281774, 0.6145296307645981, 0.3790380236797623, 0.3003532640340299, 0.6086112016774773, 0.39906793889171593, 0.8185832461647057, 0.6715802865662828, 0.8260225289794664, 0.6056902064850618, 0.400132762133902, 0.39471961640683584, 0.6449859309106076, 0.5637152910565628, 0.39949420960438964, 0.5490401551410112, 0.4398875418860128, 0.30916577334906253, 0.7093303227687476, 0.4562508424819209, 0.40444044759428516, 0.5773483646962835, 0.447777692034652, 0.4961542215384683, 0.32474312180562226, 0.21192693199409943, 0.9056903490933487, 0.5013816399998683, 0.758876109553896, 0.6364928148646596, 0.2952804752502578, 0.4748951900520853, 0.43679486629948455, 0.5479962315186364, 0.4728142838839701, 0.6343341418527783, 0.12248807650217919, 0.5052525886146573, 0.8281252124183194, 0.8930081609652758, 0.36283726088930296, 0.8098196742550625, 0.656477404357746, 0.193885049884708, 0.5269515041023835, 0.49858469647139786, 0.32780472036158087, 0.24927512797396847, 0.6148718578314069, 0.10691527318901187, 0.136775438340409, 0.8489192718114075, 0.2600203086082801, 0.8142007211296887, 0.5269515041023835, 0.7966615933629455, 0.5633234794197017, 0.767479452333631], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"citric.acid\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"citric.acid\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}}, {\"id\": \"citric.acid_bad\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (ref)\", \"type\": \"scatter\", \"x\": [0.65, 0.47, 0.32, 0.08, 0.23, 0.0, 0.07, 0.52, 0.37, 0.23, 0.3, 0.49, 0.74, 0.35, 0.06, 0.2, 0.33, 0.09, 0.22, 0.0, 0.47, 0.26, 0.1, 0.3, 0.0, 0.04, 0.18, 0.32, 0.1, 0.32, 0.0, 0.27, 0.66, 0.24, 0.37, 0.49, 0.35, 0.37, 0.57, 0.36, 0.38, 0.6, 0.27, 0.14, 0.15, 0.24, 0.24, 0.27, 0.43, 0.15, 0.24, 0.22, 0.31, 0.49, 0.26, 0.49, 0.42, 0.25, 0.53, 0.52, 0.44, 0.35, 0.08, 0.24, 0.2, 0.3, 0.34, 0.21, 0.13, 0.31, 0.31, 0.65, 0.66, 0.33, 0.29, 0.07, 0.43, 0.4, 0.2, 0.36, 0.3, 0.37, 0.43, 0.2, 0.23, 0.31, 0.34, 0.17, 0.35, 0.1, 0.65, 0.24, 0.1, 0.66, 0.42, 0.52, 0.56, 0.46, 0.44, 0.35, 0.5, 0.31, 0.28, 0.34, 0.31, 0.68, 0.19, 0.37, 0.49, 0.24, 0.24, 0.33, 0.2, 0.27, 0.17, 0.36, 0.62, 0.23, 0.43, 0.26, 0.2, 0.28, 0.34, 0.55, 0.24, 0.24, 0.22, 0.22, 0.42, 0.19, 0.47, 0.22, 0.3, 0.51, 0.3, 0.2, 0.36, 0.23, 0.35, 0.21, 0.22, 0.4, 0.38, 0.18, 0.22, 0.42, 0.26, 0.34, 0.14, 0.48, 0.38, 0.0, 0.41, 0.09, 0.41, 0.0, 0.53, 0.24, 0.35, 0.07, 0.43, 0.24, 0.49, 0.23, 0.03, 0.39, 0.2, 0.23, 0.28, 0.36, 0.41, 0.18, 0.26, 0.64, 0.28, 0.28, 0.21, 0.28, 0.3, 0.1, 0.46, 0.0, 0.35, 0.34, 0.52, 0.16, 0.45, 0.24, 0.15, 0.37, 0.19, 0.3, 0.5, 0.04, 0.51, 0.0, 0.31, 0.31, 0.26, 0.21, 0.14, 0.5, 0.5, 0.43, 0.24, 0.26, 0.19, 0.41, 0.04, 0.37, 0.29, 0.28, 0.44, 0.74, 0.47, 0.13, 0.23, 0.06, 0.38, 0.48, 0.11, 0.27, 0.51, 0.41, 0.29, 0.34, 0.03, 0.47, 0.04, 0.0, 0.2, 0.54, 0.28, 0.25, 0.32, 0.21, 0.41, 0.25, 0.34, 0.56, 0.33, 0.39, 0.29, 0.32, 0.27, 0.5, 0.49, 0.24, 0.37, 0.33, 0.25, 0.26, 0.66, 0.03, 0.34, 0.51, 0.38, 0.24, 0.46, 0.63, 0.28, 0.22, 0.33, 0.57, 0.33, 0.3, 0.24, 0.22, 0.25, 0.2, 0.35, 0.3, 0.38, 0.26, 0.5, 0.39, 0.12, 0.61, 0.19, 0.13, 0.24, 0.21, 0.32, 0.07, 0.24, 0.2, 0.47, 0.3, 0.27, 0.22, 0.49, 0.55, 0.22, 0.11, 0.4, 0.26, 0.23, 0.55, 0.58, 0.2, 0.0, 0.4, 0.05, 0.33, 0.28, 0.35, 0.24, 0.16, 0.59, 0.21, 0.48, 0.2, 0.21, 0.45, 0.49, 0.37, 0.56, 0.31, 0.44, 0.14, 0.46, 0.47, 0.2, 0.24, 0.36, 0.25, 0.65, 0.54, 0.22, 0.17, 0.4, 0.35, 0.35, 0.4, 0.33, 0.24, 0.16, 0.46, 0.0, 0.46, 0.49, 0.29, 0.3, 0.22, 0.27, 0.01, 0.18, 0.49, 0.18, 0.2, 0.29, 0.03, 0.7, 0.09, 0.42], \"xaxis\": \"x\", \"y\": [0.7197707895473677, 0.05448058807241418, 0.5021256787650443, 0.4710854375480472, 0.7156076129280222, 0.7966690429773311, 0.7265425252145667, 0.16771266951545494, 0.610944103187451, 0.6324527530146118, 0.42180662537268765, 0.2598044700255929, 0.5503032830239416, 0.5632112185661304, 0.6840604465833231, 0.6224375641140001, 0.8071781895370533, 0.9515482366939344, 0.3994071349416132, 0.9677746238863042, 0.572587586261062, 0.7602674855798478, 0.861098734498427, 0.1386074727873, 0.6703360831713621, 0.8064003460928679, 0.3172728283240366, 0.8039094494444462, 0.9186426431335688, 0.6026275969807151, 0.8609701260317718, 0.3485833566260712, 0.3005246278528939, 0.2859113263741919, 0.4978204971029292, 0.5125675444128744, 0.4268860326359044, 0.11791793574572085, 0.440027850275134, 0.4938434408506086, 0.4933189622152446, 0.166194347192407, 0.30200278364192557, 0.6822425768461728, 0.8693180940701344, 0.24112389044610405, 0.43189370387303117, 0.284455178085937, 0.23793737479647703, 0.5535561322468214, 0.7900402576908969, 0.47373775892899717, 0.6055733033081183, 0.7462675017011632, 0.32245623572553406, 0.7612367841042231, 0.36308410170653527, 0.6103993963703384, 0.3965676277125745, 0.2230008284200371, 0.8480025164595866, 0.43585875500482685, 0.24095331994381775, 0.4030652094068704, 0.8951637220162157, 0.2782175630406618, 0.7337660836226194, 0.8352762102164887, 0.6223987562306759, 0.2928263700360406, 0.6563137004068428, 0.16155652477357085, 0.6364666355122575, 0.2186811050870735, 0.27206300237801306, 0.4358901152617537, 0.6136035252376228, 0.07900866299327158, 0.8522855318359817, 0.11906253414448076, 0.3466831105240652, 0.11265227152414181, 0.6302693732121377, 0.7168097665217413, 0.4796298258249143, 0.4476252306691143, 0.3612478268219491, 0.611861930499026, 0.15121036728507153, 0.5363393546692182, 0.16155652477357085, 0.441733396330222, 0.7834276811132227, 0.6364666355122575, 0.44873286860252337, 0.4948960601400133, 0.4172084246960842, 0.5055831714989107, 0.5269082808529498, 0.3737404408311804, 0.4491757516278906, 0.5266720849021, 0.2882430633103308, 0.6066213483726142, 0.83534933450756, 0.2509605867776752, 0.230738949997912, 0.25680675940048736, 0.6858999083789018, 0.27626495444752697, 0.35158671089680515, 0.311480105980391, 0.5950329577300569, 0.4196263877039489, 0.3672198477254309, 0.5488429300958864, 0.6273126624389191, 0.0990306898864649, 0.935036100419004, 0.5556828679884147, 0.6003916802566726, 0.1337843055401957, 0.6898191889393818, 0.46604488826349566, 0.6668872608045229, 0.5998672378660981, 0.14712454771937833, 0.8558065212045691, 0.883276495704891, 0.5544329747085402, 0.38398791005853006, 0.8623310715459079, 0.4482795971615686, 0.4767821080964978, 0.6451659669426603, 0.5099786295438409, 0.11454219273407718, 0.5691587732433696, 0.2398813672346335, 0.8592796956842923, 0.38133093816728936, 0.4754945767078651, 0.2673740541283356, 0.43092180164799054, 0.5981491184574936, 0.7512253043619477, 0.20474988026063612, 0.12337786436138054, 0.6965484670033051, 0.4642254518352117, 0.29034758521725457, 0.7912282271603185, 0.1364389858241727, 0.5326323768611896, 0.3938848007926149, 0.886984727126295, 0.5955398539691413, 0.3667393936023857, 0.35129461810907203, 0.578130474122496, 0.1952086434691429, 0.6982941690158907, 0.6159300986783536, 0.6650580695700093, 0.8007006003287879, 0.13750802167619447, 0.47121416359091395, 0.5691587732433696, 0.5295784007050042, 0.4938434408506086, 0.4240508430342457, 0.1531205555636086, 0.7965770364050346, 0.4829168465516456, 0.6333246955344933, 0.38682769986244625, 0.5589353890471914, 0.30965836575156913, 0.6133571507425741, 0.5363393546692182, 0.5474540697204298, 0.9680074395956593, 0.29703705077451537, 0.7566858385458134, 0.451244026180727, 0.6224939697452743, 0.9340693900855184, 0.1254375450851024, 0.770680513376406, 0.7273231109206828, 0.410671569380914, 0.19928392436820586, 0.44743622108127745, 0.4991477681643879, 0.5443787589855091, 0.826082779912576, 0.5642536294664222, 0.6762559922350657, 0.39283078357423706, 0.3074847569358159, 0.40732461839200396, 0.5614584986504241, 0.5614584986504241, 0.575628870274347, 0.1938881144566701, 0.6480440770440566, 0.23946299348505806, 0.6110142157087575, 0.32489046344192996, 0.127020290619695, 0.28948900574123104, 0.27970970921902805, 0.5179212029104148, 0.579807192000203, 0.5695619245525361, 0.7471497674522103, 0.6761943115269239, 0.6052803835931642, 0.9048996801452402, 0.632953623191418, 0.7849920634816455, 0.12946409768986655, 0.3899257470968539, 0.37735505673750047, 0.27206300237801306, 0.6356505945299911, 0.9000798247851504, 0.5852448485124296, 0.3537739535016634, 0.8589709040748648, 0.5105041430354158, 0.4760479563081992, 0.3915586115462193, 0.4344526143297297, 0.04825794875232026, 0.25106204840173363, 0.5352062615150248, 0.2084678736174792, 0.5588772074146924, 0.42656597432725707, 0.3395528272139201, 0.5154796814541086, 0.30312695461308037, 0.4684625037801391, 0.13140485141127656, 0.37575572516499556, 0.7087902803012941, 0.22740617784346517, 0.7932370230268412, 0.6977827466507267, 0.8687065743771458, 0.3532210556477622, 0.3005246278528939, 0.8817461779308045, 0.5897758288136841, 0.5117334773877459, 0.2267712913026929, 0.7462523759498982, 0.5055831714989107, 0.6276122794572256, 0.34766968675436505, 0.563322001169588, 0.4035281086421867, 0.44827723495654004, 0.7588644006503809, 0.17560197311170134, 0.2736156405730563, 0.5646478519097824, 0.12788772013874206, 0.8127608550985441, 0.35130933230290007, 0.8842329534318195, 0.5671758377024384, 0.508518787579709, 0.4735654621913231, 0.6614347321502836, 0.7032589073748752, 0.418601168771625, 0.40262233345395115, 0.38045938978299354, 0.6221728234115828, 0.6769388667590319, 0.825791915264051, 0.8036522945246104, 0.5350776523934957, 0.5038683203672731, 0.4187790963850706, 0.3942708224564714, 0.36585282612655, 0.42973128126448334, 0.1395024853671747, 0.36909778672938764, 0.5126700875045708, 0.31128511290513083, 0.5841805470690385, 0.42932394036482613, 0.5168725346003686, 0.9331527243268325, 0.5090935678835011, 0.848083892739094, 0.7288594688776423, 0.23463814542978878, 0.9073343486287574, 0.5445649372592127, 0.8030108083542629, 0.30698149193503155, 0.47724620771884374, 0.49565431290071005, 0.29179072192325783, 0.53941953634433, 0.32642767658125227, 0.5714063949384225, 0.6769388667590319, 0.48314991346809855, 0.3838692085325581, 0.7654355578102645, 0.6807995217458978, 0.7803105409218809, 0.4971816769068883, 0.5662837862370104, 0.32557907866588853, 0.4059739580227363, 0.8621668957327787, 0.4863555612469991, 0.44913520001249685, 0.5044088987161788, 0.018560580499064172, 0.17397747102053363, 0.8203404366189, 0.531551035274026, 0.3951880410340851, 0.6710839680909022, 0.7545393605546251, 0.25029771644034415, 0.31651464458218903, 0.7900402576908969, 0.7649542174153934, 0.6282404390050247, 0.5124469561170844, 0.7501741577575001, 0.3717170374651112, 0.5479204837841629, 0.1799627586960565, 0.8716748635647116, 0.4700369344869263, 0.7044722268129955, 0.7597806244765397, 0.4570971226262448, 0.3688130253756654, 0.5854022956087224, 0.6067015953642416, 0.6092966434658947, 0.5713009051869427, 0.15316343939585397, 0.31191498773739224], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [0.32, 0.24, 0.36, 0.24, 0.27, 0.21, 0.3, 0.46, 0.34, 0.26, 0.4, 0.21, 0.26, 0.33, 0.24, 0.47, 0.29, 0.76, 0.2, 0.29, 0.28, 0.27, 0.28, 0.36, 0.49, 0.27, 0.3, 0.49, 0.33, 0.48, 0.49, 0.32, 0.28, 0.34, 0.36, 0.44, 0.31, 0.31, 0.22, 0.39, 0.26, 0.49, 0.37, 0.26, 0.26, 0.32, 0.38, 0.19, 0.53, 0.3, 0.29, 0.29, 0.26, 0.29, 0.49, 0.28, 0.36, 0.38, 0.24, 0.32, 0.42, 0.23, 0.74, 0.44, 0.66, 0.13, 0.28, 0.3, 0.26, 0.36, 0.35, 0.24, 0.28, 0.68, 0.35, 0.29, 0.46, 0.28, 0.1, 0.35, 0.24, 0.34, 0.3, 0.45, 0.33, 0.34, 0.29, 0.31, 0.31, 0.41, 0.28, 0.28, 0.38, 0.4, 0.29, 0.25, 0.29, 0.28, 0.25, 0.65, 0.34, 0.36, 0.46, 0.34, 0.3, 0.32, 0.26, 0.49, 0.33, 0.02, 0.33, 0.28, 0.32, 0.29, 0.27, 0.32, 0.25, 0.36, 0.35, 0.46, 0.3, 0.49, 0.34, 0.31, 0.22, 0.02, 0.01, 0.5, 0.36, 0.0, 0.33, 0.18, 0.4, 0.32, 0.43, 0.54, 0.4, 0.02, 0.2, 0.24, 0.37, 0.31, 0.32, 0.34, 0.41, 0.43, 0.46, 0.27, 0.24, 0.32, 0.28, 0.59, 0.25, 0.26, 0.3, 0.5, 0.28, 0.35, 0.26, 0.38, 0.29, 0.27, 0.36, 0.25, 0.2, 0.34, 0.3, 0.21, 0.58, 0.04, 0.42, 0.37, 0.46, 0.28, 0.14, 0.09, 0.04, 0.21, 0.24, 0.1, 0.29, 0.49, 0.35, 0.3, 0.16, 0.29, 0.33, 0.48, 0.34, 0.31, 0.29, 0.0, 0.14, 0.05, 0.02, 0.34, 0.16, 0.32, 0.26, 0.48, 0.49, 0.27, 0.49, 0.12, 0.26, 0.37, 0.34, 0.49, 0.27, 0.43, 0.49, 0.2, 0.34, 0.32, 0.27, 0.26, 0.29, 0.49, 0.31, 0.32, 0.32, 0.49, 0.26, 0.4, 0.6, 0.37, 0.34, 0.4, 0.31, 0.29, 0.32, 0.21, 0.0, 0.28, 0.28, 0.21, 0.36, 0.41, 0.42, 0.34, 0.33, 0.39, 1.0, 0.44, 0.12, 0.32, 0.31, 0.27, 0.4, 0.33, 0.42, 0.3, 0.43, 0.35, 0.37, 0.28, 0.31, 0.14, 0.49, 0.39, 0.34, 0.49, 0.37, 0.44, 0.35, 0.32, 0.37, 0.57, 0.06, 0.34, 0.36, 0.08, 0.31, 0.3, 0.26, 0.26, 0.28, 0.41, 0.0, 0.79, 0.36, 0.44, 0.32, 0.3, 0.39, 0.42, 0.25, 0.28, 0.08, 0.39, 0.31, 0.3, 0.48, 0.24, 0.41, 0.25, 0.0, 0.12, 0.36, 0.38, 0.02, 0.24, 0.3, 0.26, 0.33, 0.46, 0.26, 0.33, 0.39, 0.47, 0.3, 0.34, 0.13, 0.36, 0.36, 0.62, 0.31, 0.3, 0.27, 0.27, 0.27, 0.38, 0.31, 0.3, 0.29, 0.02, 0.22, 0.39, 0.49, 0.27, 0.28, 0.33, 0.44, 0.57, 0.36, 0.31, 0.33, 0.33, 0.21, 0.28, 0.28, 0.45, 0.36, 0.26, 0.13, 0.49, 0.32, 0.09, 0.0, 0.36, 0.29, 0.41, 0.28, 0.3, 0.3, 0.4, 0.32, 0.33, 0.51, 0.36, 0.41, 0.19, 0.35, 0.44, 0.03, 0.27, 0.31, 0.27, 0.36, 0.26, 0.3, 0.39, 0.3, 0.23, 0.28, 0.26, 0.31, 0.0, 0.27, 0.34, 0.2, 0.32, 0.13, 0.36, 0.49, 0.29, 0.37, 0.31, 0.29, 0.37, 0.28, 0.24, 0.49, 0.3, 0.28, 0.47, 0.42, 0.28, 0.32, 0.28, 0.05, 0.21, 0.23, 0.33, 0.28, 0.32, 0.34, 0.42, 0.0, 0.49, 0.24, 0.3, 0.35, 0.3, 0.56, 0.45, 0.28, 0.35, 0.18, 0.2, 0.37, 0.31, 0.3, 0.28, 0.27, 0.18, 0.44, 0.3, 0.3, 0.36, 0.49, 0.41, 0.28, 0.31, 0.35, 0.1, 0.29, 0.01, 0.33, 0.49, 0.38, 0.74, 0.37, 0.45, 0.62, 0.33, 0.4, 0.26, 0.47, 0.28, 0.28, 0.24, 0.27, 0.35, 0.3, 0.76, 0.27, 0.01, 0.27, 0.27, 0.73, 0.29, 0.49, 0.25, 0.31, 0.02, 0.27, 0.36, 0.3, 0.51, 0.15, 0.49, 0.33, 0.32, 0.35, 0.29, 0.49, 0.34, 0.32, 0.44, 0.24, 0.48, 0.23, 0.24, 0.31, 0.39, 0.49, 0.3, 0.3, 0.05, 0.41, 0.23, 0.4, 0.41, 0.39, 0.42, 0.3, 0.35, 0.34, 0.29, 0.26, 0.31, 0.38, 0.38, 0.44, 0.33, 0.33, 0.49, 0.38, 0.27, 0.33, 0.31, 0.31, 0.5, 0.36, 0.37, 0.46, 0.44, 0.37, 0.35, 0.31, 0.25, 0.36, 0.37, 0.0, 0.3, 0.7, 0.36, 0.29, 0.33, 0.32, 0.25, 0.28, 0.21, 0.4, 0.06, 0.28, 0.29, 0.35, 0.35, 0.35, 0.29, 0.41, 0.49, 0.25, 0.25, 0.5, 0.49, 0.26, 0.29, 0.32, 0.24, 0.28, 0.4, 0.3, 0.02, 0.31, 0.36, 0.22, 0.36, 0.35, 0.34, 0.1, 0.24, 0.0, 0.32, 0.23, 0.49, 0.32, 0.32, 0.28, 0.41, 0.28, 0.37, 0.33, 0.31, 0.28, 0.3, 0.24, 0.34, 0.31, 0.35, 0.26, 0.0, 0.74, 0.01, 0.16, 0.32, 0.24, 0.32, 0.28, 0.32, 0.37, 0.29, 0.04, 0.29, 0.3, 0.16, 0.33, 0.23, 0.49, 0.38, 0.32, 0.26, 0.56, 0.66, 0.29, 0.29, 0.4, 0.27, 0.21, 0.35, 0.28, 0.24, 0.28, 0.38, 0.25, 0.49, 0.32, 0.18, 0.43, 0.33, 0.47, 0.04, 0.33, 0.27, 0.36, 0.25, 0.4, 0.33, 0.24, 0.35, 0.31, 0.31, 0.38, 0.49, 0.44, 0.4, 0.33, 0.26, 0.38, 0.22, 0.28, 0.34, 0.36], \"xaxis\": \"x\", \"y\": [0.18439386755371057, 0.5750868907731637, 0.1132172353536568, 0.19850047615697952, 0.6950004168934912, 0.41826441672946313, 0.040828937665112974, 0.2145583871630251, 0.09143093017991866, 0.10013996234885614, 0.3658834999306372, 0.587897812361327, 0.23563705889496211, 0.5289998061994394, 0.5981734696485812, 0.5956194363709464, 0.11295199838815062, 0.6349332021584286, 0.09356782907078887, 0.0672754654033908, 0.3541579814831264, 0.11781588709523827, 0.3295981493457443, 0.23443288181779365, 0.13830133810679424, 0.5122546205578999, 0.03626449638205209, 0.32057959349203036, 0.3955164844050859, 0.21320459763992916, 0.08620177311633537, 0.4132497936565127, 0.19514157099220286, 0.028148892894647393, 0.03728071159582558, 0.20213762816504022, 0.39088790332760825, 0.10566618212719892, 0.11466232649727714, 0.09544364959788487, 0.07351553674018241, 0.3657542344632553, 0.05859665738698361, 0.43634835962676355, 0.4827032077898804, 0.516310366273556, 0.6480037931050455, 0.21122004543372697, 0.030344760075157406, 0.22750344576024595, 0.18673438423788624, 0.5460909738859347, 0.0666291073587214, 0.320234954276134, 0.515425573770442, 0.5751179393061847, 0.3262180383913996, 0.12192585741802231, 0.6165939755266235, 0.09365914315081003, 0.44259853952477324, 0.31958523161407537, 0.09228899111547839, 0.22815273642701062, 0.5282447951108347, 0.7777719169155834, 0.13834506443323813, 0.29425092810710396, 0.5300870647699181, 0.031947521718024174, 0.1108646816717751, 0.053339747820140615, 0.14466174791529418, 0.25697560969337485, 0.3383868137798065, 0.30803904997837983, 0.03434255320493995, 0.08689109251212201, 0.46044782253877736, 0.0973761441498977, 0.3449058470623745, 0.024212367984770777, 0.11665042079727428, 0.3333970234137619, 0.1495417879159372, 0.0679784404121434, 0.2360052425084116, 0.39147703437781534, 0.04428683932015287, 0.5381556738404795, 0.4357341587922019, 0.11843845992675284, 0.28107964630818494, 0.06989794698232743, 0.2658605825653322, 0.22408104406272966, 0.15519213452661884, 0.09873339188795927, 0.10739713799337769, 0.4712507279726723, 0.31257930793611366, 0.6259141532505736, 0.1651629894813923, 0.13024327386797574, 0.08242409751896962, 0.55355901104019, 0.11256152515999429, 0.22124325125588817, 0.05838775174278421, 0.6734770756819889, 0.06919042490492266, 0.5773286546676725, 0.5693181878572973, 0.12726917141891614, 0.27983888222674136, 0.15690954109554833, 0.18593824584442387, 0.05432525584274117, 0.33273366741371935, 0.12435295831370408, 0.48112847828662497, 0.2959384652215836, 0.5042039768350125, 0.3749869638443927, 0.7258627386781167, 0.4806866421912115, 0.6234335830956541, 0.4191951896523489, 0.20821728825178332, 0.6343085651912675, 0.27674577061671146, 0.02140654255666985, 0.42849246998341506, 0.1817444030106703, 0.4551538855951942, 0.05087080041524106, 0.516641204200833, 0.6810720245435042, 0.08151744899857294, 0.4475169494323581, 0.03995706953508171, 0.2181819033834006, 0.20372897255157485, 0.24305701296248816, 0.5381556738404795, 0.2358485729609252, 0.051323642447754336, 0.1913631294907303, 0.32154631204965056, 0.31229802093755377, 0.3917329141436472, 0.39462053822053156, 0.3680669306910641, 0.5017894292511481, 0.32120711190509066, 0.0768019282386515, 0.1168769044932052, 0.31545143431826594, 0.12007957373947853, 0.08354361700756141, 0.2180731800932174, 0.7653011157176768, 0.05076221583963347, 0.11739077279846111, 0.3639458403519926, 0.4815918747301601, 0.35998732468747585, 0.457353694020342, 0.5520498791697908, 0.22168281241722143, 0.2132287846887433, 0.4763394582576197, 0.3040153802820409, 0.20749766415549342, 0.3316810644107503, 0.8126297477835096, 0.5749367295182395, 0.27274039590582944, 0.2685808245693546, 0.5172108675362206, 0.33506587713796443, 0.09616672688355288, 0.041108213935392324, 0.10548050716105373, 0.5016695616404938, 0.20022874051447226, 0.14220640128276774, 0.23772630779738468, 0.19606080251004787, 0.2603188495268066, 0.18846597668723208, 0.19827111133563302, 0.261548791893628, 0.4140325207077993, 0.8134796325151183, 0.12265695643958285, 0.6311167068993262, 0.13481820177301163, 0.0932384579037443, 0.14050160114126486, 0.2562249115981724, 0.08547750670655718, 0.08643201081848362, 0.19981675431015722, 0.31390222338706264, 0.06221739913672386, 0.06996303880871468, 0.30029370289300306, 0.4306817897420764, 0.6595343859760441, 0.2839408857911616, 0.20468539219890003, 0.1130196126722065, 0.2360017176902124, 0.13187147729288817, 0.42313120297864704, 0.06964897436687001, 0.1624399718171824, 0.17200815643270417, 0.07333105637055992, 0.2440137653363641, 0.4900110333069776, 0.3085554157386313, 0.03480496731142946, 0.12148031785507996, 0.15002971926037112, 0.5314247042003052, 0.2758453007685677, 0.2151852748992088, 0.2658605825653322, 0.29911225563077193, 0.6594110243744711, 0.49869782335001445, 0.16788254706683048, 0.11816213334465087, 0.08230909248122409, 0.13653212507346946, 0.25639170942272826, 0.06562233405876228, 0.23311900627036541, 0.3756616197417655, 0.46674395287949066, 0.3092684534350997, 0.8337319641197457, 0.8331457111467163, 0.2591056156836542, 0.4778687671024334, 0.2542440524586721, 0.5361036306539362, 0.07073721340803463, 0.4731688813159418, 0.5755848065786346, 0.356689463387698, 0.14225616860197343, 0.21837916002376445, 0.14466174791529418, 0.29899643271856946, 0.4757427727983842, 0.08126799884203029, 0.1296501822378736, 0.3286954654423938, 0.08620177311633537, 0.13855855420831553, 0.05543377339452393, 0.11917834098009661, 0.2613621884509647, 0.11269900223777074, 0.08429051026621415, 0.3393961441870107, 0.07031960314855146, 0.11356777592095357, 0.4853279864284006, 0.1279289285514792, 0.0584572339054259, 0.08612988585012649, 0.3472440907423937, 0.1248029959061332, 0.07502335399434323, 0.19827111133563302, 0.3424151534036639, 0.3065175956815872, 0.13808860398564737, 0.058092197534895806, 0.04082786106581715, 0.1602592849246841, 0.09156161599234125, 0.5036030690663805, 0.2640411824475748, 0.6468038092930676, 0.07201805208597656, 0.22470230804277058, 0.1334773721572423, 0.04847889440667685, 0.2685808245693546, 0.10911308148570098, 0.6764508967260475, 0.6280060594576413, 0.36761958218269275, 0.16019930342079847, 0.17605308658107655, 0.14078981831089854, 0.2384997092801764, 0.13117402490907393, 0.12818959986091483, 0.4161925244315118, 0.12435295831370408, 0.09814942480303201, 0.05480698563416486, 0.3746187330143109, 0.41092354232892336, 0.507894749900129, 0.5137929421583434, 0.08293523366016065, 0.2964416548030494, 0.15236141109070434, 0.4396941021426354, 0.41893931094950754, 0.09113953260801844, 0.10967473999240707, 0.055732078845942, 0.05640314085190745, 0.06176263301115803, 0.06427139521062619, 0.20386133178572885, 0.21597661143113533, 0.7486409492386699, 0.2610715902497083, 0.09465277491899493, 0.5556171757583562, 0.137718889647652, 0.1978940751503777, 0.08472590699531857, 0.356262641598029, 0.14596950445002987, 0.13865818299932142, 0.3088915816821678, 0.11516321289421916, 0.16121169033174265, 0.40573483691789825, 0.34308606282264, 0.36300204724896845, 0.17193414756867276, 0.035926383178341514, 0.34536882843285344, 0.4400180463892147, 0.5165194668234709, 0.23319834124303085, 0.9637923675569924, 0.2635599134550337, 0.6259141532505736, 0.12324962258280003, 0.1256037712827487, 0.1248029959061332, 0.11665042079727428, 0.29081136443782263, 0.12993062945549005, 0.20959981847797426, 0.12385816607190492, 0.16931651488884025, 0.2468284110987674, 0.6181879252747016, 0.3509541008179864, 0.08619429866610873, 0.09537770951135394, 0.8204393830764495, 0.2493836920976743, 0.10367142046182065, 0.11516383353466464, 0.07169627826225977, 0.5400384130096556, 0.2709141565803237, 0.16809050322974173, 0.3421981324687273, 0.812724325423183, 0.1326589750154965, 0.054670132935181304, 0.055346153509382656, 0.8039442695404772, 0.3276168958360183, 0.6561718697940482, 0.6214102617950452, 0.3046829516703813, 0.7853649284745584, 0.7303620793003476, 0.6719087507962026, 0.16000678121984613, 0.579612101366232, 0.6347749924714103, 0.41894393066564606, 0.06936532322770372, 0.28322834609079706, 0.343263893078516, 0.4450860003239352, 0.3090838478611311, 0.408095736797927, 0.11529682880263803, 0.13359771811640497, 0.2417229185475579, 0.10092265889692065, 0.8181934133883563, 0.3777834313813965, 0.8273808576462511, 0.18439353202429143, 0.5148786056082297, 0.11287077888712382, 0.16015059460472458, 0.29672938182784603, 0.36944561074938853, 0.2505850522824452, 0.8467591712977676, 0.3840267097226593, 0.261779448872241, 0.1645479955558209, 0.14631295673285594, 0.4248523287309329, 0.09222807982804315, 0.2121484308544801, 0.33273366741371935, 0.5470626312455473, 0.8294144697045585, 0.25206662215500397, 0.15998368749433245, 0.548322128117227, 0.3917329141436472, 0.15981565308588508, 0.23631147082452741, 0.21082920466209698, 0.1871387197916503, 0.24774693401855818, 0.1913242313933492, 0.16437448769677154, 0.07582203648947516, 0.032541140295091364, 0.06311143057978008, 0.5009235508757715, 0.12343879567504301, 0.445735807756371, 0.40322837553658053, 0.09397553936597514, 0.1598391281143201, 0.26702494168661406, 0.19782301216908982, 0.06831823449824892, 0.5451167746582685, 0.20142160156100697, 0.25747632252511843, 0.4257317671215596, 0.5062318064185062, 0.10278357133077332, 0.10857266292312517, 0.06223864817381186, 0.11377411494697365, 0.14082424186384768, 0.2589321903149734, 0.31776639873426016, 0.07983414941561229, 0.30174211068680845, 0.42532907678292176, 0.23734670470511587, 0.2862296469110084, 0.24790288035387664, 0.5526146374040077, 0.20425399436950087, 0.5166825128498294, 0.12415322942140417, 0.5310696157212036, 0.3866387435262121, 0.14313186082947948, 0.31648660326859934, 0.026792916001305622, 0.7856428374245099, 0.42383310375799566, 0.5944566396871084, 0.6256605001243821, 0.08813642250468567, 0.03544811528140901, 0.06935406654889886, 0.15751976448865512, 0.22608551288474832, 0.3127311228465576, 0.1409438166611655, 0.3285615524533705, 0.3591330499592894, 0.47964497307801546, 0.7143146030302826, 0.14223944449319303, 0.06929054967731618, 0.32120711190509066, 0.16913647442041335, 0.707286257884667, 0.3230684446475647, 0.7616845263358343, 0.4104900542879092, 0.10053249234255524, 0.1106599594415556, 0.1543174595222413, 0.46003879185641183, 0.3811350878514418, 0.07185070571861518, 0.23882593985771994, 0.5344976262521839, 0.11031385635331636, 0.09610989844306939, 0.4955559099445003, 0.07845190603324759, 0.30697262074812925, 0.12767551958037127, 0.4375661224395835, 0.07737023387634634, 0.15307682457740834, 0.05694427046787409, 0.09028836937410878, 0.4011292297732457, 0.6186146927451245, 0.11561676905211238, 0.0993047499370594, 0.08102401279833105, 0.8100206966555492, 0.10768932514586738, 0.15386113005635593, 0.4026560765644126, 0.045535707525545144, 0.08229583319403, 0.08227601457953415, 0.8241544781987433, 0.0759900855540333, 0.5147505197509459, 0.11103147778198663, 0.42144961755966015, 0.24880465403270857, 0.3112403223054312, 0.3282460941643247, 0.28312386083977936, 0.2865521931047814, 0.16537364909659502, 0.4284132019637321, 0.34116073112729894, 0.051142721309942685, 0.10794707492381372, 0.1108646816717751, 0.29201805921023904, 0.07365131996157204, 0.36851051207096197, 0.2556143611338999, 0.07392456180697715, 0.045535707525545144, 0.15025986810093994, 0.4395989822566938, 0.19636656988846957, 0.21018464628148859, 0.15085686628779282, 0.3429118439192298, 0.16104008564300487, 0.2055862423584408, 0.18673310211333727, 0.5528531989583015, 0.20219789553586287, 0.5807830339134155, 0.6112381610839525, 0.07515362639458067, 0.5722084734915175, 0.3654892991508686, 0.1991057466826236, 0.4912569401667811, 0.05850610073101081, 0.3077884117234785, 0.17038242498240874, 0.14066607718466684, 0.10248584652416493, 0.4022873718442217, 0.07205214632436985, 0.35142291824287475, 0.10941760034103376, 0.06679271580157364, 0.05675388891699207, 0.058987921856350156, 0.3660303223369904, 0.28790374422385034, 0.4158290962648631, 0.40710291595796666, 0.09934102670994882, 0.06362846635195196, 0.30921476208988685, 0.23242198019285765, 0.055541210656895434, 0.5297663836663529, 0.10744632778983743, 0.18410212910939194, 0.17721960751489196, 0.1962664672709783, 0.1617648996714035, 0.10584426414108294, 0.5203501665477333, 0.07365131996157204, 0.31578819840495265, 0.35364190165315845, 0.1707951928721818, 0.41655733121321636, 0.15801546378512366, 0.7568436608419439, 0.22368578646300386, 0.0609449253562836, 0.2225096762928218, 0.18587673368692093, 0.05559101133196209, 0.569598540521716, 0.08073228430722412, 0.15724041301590164, 0.12879141548479, 0.4306817897420764, 0.17998791969802397, 0.41280880088413996, 0.5723062335690389, 0.6457404130724687, 0.10420061808672998, 0.12564769853034463, 0.21795029564941848, 0.4720930498870375, 0.11304202998506685, 0.545112257205237, 0.14852188644910969, 0.17217029085021085, 0.336250902618187, 0.48671482860553816, 0.5093433434984792, 0.35847801144896685, 0.3008706318705062, 0.18494609259573758, 0.4199330463236065, 0.04162287990776414, 0.2633909944023186, 0.4252182303976608, 0.4684623303117058, 0.1925553058603695, 0.09610989844306939, 0.09129843496680234, 0.3302708189676917, 0.4199330463236065, 0.11927294568859859, 0.4864154015695107, 0.06472081497616611, 0.6387929002666255, 0.37932906694235924, 0.093713747684541, 0.20627971812824875], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (curr)\", \"type\": \"scatter\", \"x\": [0.49, 0.12, 0.36, 0.29, 0.4, 0.4, 0.18, 0.04, 0.24, 0.65, 0.25, 0.39, 0.4, 0.26, 0.45, 0.36, 0.32, 0.49, 0.34, 0.07, 0.39, 0.13, 0.36, 0.64, 0.37, 0.31, 0.3, 0.23, 0.29, 0.74, 0.79, 0.2, 0.0, 0.17, 0.33, 0.21, 0.32, 0.11, 0.19, 0.06, 0.29, 0.2, 0.74, 0.29, 0.32, 0.25, 0.24, 0.25, 0.29, 0.35, 0.54, 0.26, 0.49, 0.22, 0.1, 0.23, 0.01, 0.49, 0.29, 0.2, 0.49, 0.34, 0.18, 0.4, 0.21, 0.06, 0.59, 0.0, 0.0, 0.03, 0.02, 0.25, 0.14, 0.26, 0.35, 0.28, 0.46, 0.52, 0.21, 0.3, 0.34, 0.18, 0.2, 0.33, 0.49, 0.27, 0.3, 0.34, 0.13, 0.36, 0.49, 0.26, 0.41, 0.42, 0.01, 0.0, 0.49, 0.19, 0.08, 0.55, 0.45, 0.32, 0.36, 0.11, 0.32, 0.09, 0.04, 0.0, 0.26, 0.41, 0.06, 0.5, 0.02, 0.29, 0.28, 0.34, 0.22, 0.24, 0.45, 0.08, 0.2, 0.28, 0.26, 0.17, 0.13, 0.18, 0.32, 0.38, 0.13, 0.37, 0.41, 0.32, 0.42, 0.49, 0.28, 0.62, 0.24, 0.17, 0.2, 0.2, 0.39, 0.49, 0.33, 0.42, 0.44, 0.28, 0.39, 0.23, 0.26, 0.23, 0.0, 0.22, 0.42, 0.19, 0.27, 0.24, 0.25, 0.44, 0.22, 0.42, 0.36, 0.47, 0.35, 0.48, 0.08, 0.26, 0.29, 0.46, 0.34, 0.38, 0.38, 0.32, 0.26, 0.28, 0.21, 0.0, 0.24, 0.35, 0.27, 0.35, 0.36, 0.23, 0.49, 0.1, 0.34, 0.32, 0.3, 0.22, 0.49, 0.22, 0.03, 0.46, 0.3, 0.28, 0.62, 0.21, 0.27, 0.1, 0.39, 0.3, 0.02, 0.26, 0.2, 0.4, 0.28, 0.36, 0.42, 0.59, 0.16, 0.69, 0.49, 0.23, 0.08, 0.4, 0.49, 0.24, 0.28, 0.33, 0.86, 0.24, 0.56, 0.25, 0.43, 0.41, 0.37, 0.14, 0.49, 0.29, 0.34, 0.34, 0.2, 0.34, 0.25, 0.35, 0.11, 0.48, 0.33, 0.31, 0.42, 0.33, 0.18, 0.02, 0.39, 0.32, 0.33, 0.12, 0.37, 0.3, 0.48, 0.01, 0.31, 0.2, 0.32, 0.62, 0.25, 0.36, 0.32, 0.23, 0.23, 0.33, 0.14, 0.22, 0.74, 0.74, 0.33, 0.36, 0.24, 0.38, 0.34, 0.44, 0.31, 0.12, 0.74, 0.42, 0.49, 0.25, 0.26, 0.34, 0.07, 0.47, 0.1, 0.25, 0.38, 0.0, 0.18, 0.37, 0.3, 0.26, 0.49, 0.38, 0.35, 0.07, 0.24, 0.06, 0.33, 0.39, 0.16, 0.38, 0.44, 0.39, 0.28, 0.65, 0.54, 0.56, 0.24, 0.06, 0.48, 0.29, 0.46, 0.26, 0.18, 0.19, 0.44, 0.41, 0.33, 0.74, 0.26, 0.49, 0.29, 0.1, 0.68, 0.08, 0.24, 0.27, 0.13, 0.53, 0.2, 0.49, 0.45, 0.14, 0.06, 0.29, 0.39, 0.4, 0.21, 0.41, 0.28, 0.04, 0.25, 0.32, 0.15, 0.49, 0.25, 0.27, 0.49, 0.3, 0.41, 0.49, 0.25, 0.4, 0.28, 0.3], \"xaxis\": \"x2\", \"y\": [0.18579927887031134, 0.9274202256360236, 0.2569067617886446, 0.17851375722123963, 0.43011516789686843, 0.3951880410340851, 0.35333307802371594, 0.854899199395705, 0.7749695319329993, 0.7150752736216004, 0.5793836726576811, 0.17187478758168062, 0.503776006633781, 0.6517104478925241, 0.5321166645488455, 0.4291031613352281, 0.6295132227815239, 0.446367751604861, 0.12978626497489776, 0.578130474122496, 0.1303225049324246, 0.4589423036505589, 0.6028673022099313, 0.6724998803801079, 0.055171077290688375, 0.28900585249094113, 0.5807441942986169, 0.6324527530146118, 0.32780881811994433, 0.4437792729685527, 0.47375733914823626, 0.6755390392614542, 0.8494338455743565, 0.8432302027568838, 0.3962269303969661, 0.36574887203466033, 0.9780529644634413, 0.6757083557066426, 0.43212531492562845, 0.6428319532862445, 0.2244465690609686, 0.6759712108962084, 0.300575337785698, 0.4848467547623382, 0.24353241802821812, 0.6165640897352094, 0.801889943514816, 0.6831580296641933, 0.4684052737322374, 0.07309555507266852, 0.17397747102053363, 0.548208100621717, 0.16948307959681597, 0.5287139706981401, 0.8097217619362252, 0.48186532860504816, 0.7044722268129955, 0.5458559966555334, 0.6067015953642416, 0.5767206748937392, 0.5416109283549078, 0.7766135747357961, 0.6371580804073698, 0.3290646799011723, 0.53941953634433, 0.7444876216695655, 0.27658524567301757, 0.8518717737266248, 0.685064206005921, 0.7994946846943811, 0.6254668451144636, 0.29898447003196504, 0.36566585814722175, 0.8260679099411251, 0.265003746926769, 0.18277705216857454, 0.6401445853260315, 0.2878944788643705, 0.7379395090268356, 0.6578861964269485, 0.3048731186933995, 0.6479177870210828, 0.5479007895539181, 0.8109237991420157, 0.4555798348891207, 0.35159410271621183, 0.6741813074403022, 0.40366163192193316, 0.3797333752177462, 0.42326140605337403, 0.49450075158901585, 0.7027754368270075, 0.31556666432085356, 0.5737052492708005, 0.5594846166878963, 0.9879213229528466, 0.23907110553933086, 0.7604887601700165, 0.906894853259191, 0.49150798334893764, 0.6693239074263375, 0.635181004157038, 0.4291031613352281, 0.6805197940362542, 0.8579270215873258, 0.42231028799440284, 0.7973836574204367, 0.6209099995125147, 0.617932351579841, 0.5867531689564582, 0.8217385626893267, 0.5766058512754557, 0.6085190813519714, 0.6488649586424557, 0.19466062481522506, 0.4062994677131635, 0.31500574198466447, 0.6106996692323751, 0.48314991346809855, 0.4300926711133176, 0.4623912750166579, 0.18141675383529432, 0.7404949196358439, 0.7960551628311661, 0.6696955469146251, 0.7471897031921468, 0.15222801432328747, 0.4782875749995391, 0.6696955469146251, 0.4617114467660769, 0.0374236133971757, 0.34638250956587036, 0.5737052492708005, 0.35412183815676124, 0.5342599897609015, 0.6273126624389191, 0.1819914526651868, 0.6450640502472667, 0.7576359910572065, 0.6363669366758954, 0.35783776888428775, 0.4555798348891207, 0.2603691587203709, 0.09638465351539516, 0.7889843001267657, 0.3995975535535492, 0.2404138117262561, 0.5134503976671381, 0.7620160241108803, 0.4852174766770502, 0.7934067722809752, 0.5657371707019572, 0.40591517497640706, 0.5142806824729376, 0.4667389755277017, 0.4597803030361328, 0.14211531046105408, 0.4709774325404933, 0.39253304933110444, 0.8152160844894966, 0.6418608562675732, 0.5695619245525361, 0.15898796250578873, 0.4189913516486339, 0.8097376625536354, 0.2776505479619531, 0.14100712613869515, 0.1625374057836978, 0.21879614767173305, 0.26016804821119, 0.5884346274074399, 0.25171266030158634, 0.5556828679884147, 0.2886326125606653, 0.5013044750460076, 0.23728971353361283, 0.6280660923097139, 0.6281218947904323, 0.6226708394296439, 0.1280348372312241, 0.37812375401711507, 0.6218606462016874, 0.446367751604861, 0.5237591509200082, 0.22560064672115399, 0.4159575064805634, 0.43989745285902637, 0.38133093816728936, 0.379388299643832, 0.4244201113870294, 0.8495234946343055, 0.44699506619782237, 0.3402560380560977, 0.16997778820688525, 0.6509841470756508, 0.5589353890471914, 0.49320900326902484, 0.41485179365651337, 0.2850172536812061, 0.5150740024049856, 0.7905789411902706, 0.6660097546858721, 0.5916856454756931, 0.25029771644034415, 0.21820707607863943, 0.23625780462752244, 0.6174344585079109, 0.33885175059010386, 0.8097775874289167, 0.5502791542248897, 0.45232673966787307, 0.5168725346003686, 0.4922951659433321, 0.2710495410551712, 0.5620189509382074, 0.19827785442852286, 0.35653263682836045, 0.4940220265254579, 0.3934632807735441, 0.349631294967786, 0.6543252873397565, 0.6043841099981286, 0.6572212454398962, 0.5323595728841377, 0.4667716613599331, 0.5480891857555714, 0.5933716837007499, 0.5769442381274095, 0.7796710482718338, 0.4721284230669528, 0.5632051337005155, 0.25606657060722404, 0.47304849589761655, 0.4991199345133047, 0.785831825438318, 0.5512091114854263, 0.31651464458218903, 0.192246895102814, 0.5737052492708005, 0.14970485751781393, 0.8257882443178004, 0.7450862811651306, 0.2404138117262561, 0.3428275867057816, 0.2186811050870735, 0.43730933466596944, 0.1325711740116582, 0.33994853494016564, 0.5172250338280965, 0.4543852880840521, 0.6017244994332274, 0.7267617626256621, 0.304103470637073, 0.49511795227452726, 0.4577650902534979, 0.4389063253281036, 0.3428275867057816, 0.6911248892501751, 0.5457123873353599, 0.3395528272139201, 0.5662837862370104, 0.38281068028313525, 0.1899488449656659, 0.1899488449656659, 0.39416742153886597, 0.4473524415330049, 0.5724944828663213, 0.12652799787397961, 0.14917046216496987, 0.4192276293132746, 0.1727250451072272, 0.7329347521090118, 0.2979855805324535, 0.5384433083808008, 0.2944152049751758, 0.5661013076544325, 0.39283078357423706, 0.6503174362647687, 0.7632350838020857, 0.29422440231251745, 0.8446099855685041, 0.3812461384129847, 0.1264117171095669, 0.6995051325026098, 0.7680829457938805, 0.1086082602083136, 0.50228427853815, 0.8303888649041977, 0.15145052047802054, 0.5239967242043768, 0.49461569007297057, 0.7323984730128237, 0.6372335578763709, 0.8485373319296128, 0.21018203617182263, 0.3854703692354019, 0.6209619763202376, 0.6996467359659702, 0.3913887983225227, 0.600932061108284, 0.18141675383529432, 0.32841971343371723, 0.17397747102053363, 0.3943097935149382, 0.5998672378660981, 0.6052803835931642, 0.35501406908939237, 0.4362847089434372, 0.6005057903956104, 0.45095984485898877, 0.5601124581139871, 0.6908342266509375, 0.29066967723125237, 0.5437491575180791, 0.5955595524057149, 0.4226516353037165, 0.552222307965348, 0.5038457784615318, 0.6752568781943777, 0.7880730680059006, 0.09430965090665133, 0.4986183600001317, 0.24112389044610405, 0.3635071851353404, 0.7047195247497422, 0.5251048099479148, 0.5632051337005155, 0.4520037684813636, 0.5271857161160298, 0.36566585814722175, 0.8775119234978208, 0.49474741138534273, 0.17187478758168062, 0.1069918390347242, 0.6371627391106971, 0.19018032574493748, 0.34352259564225396, 0.806114950115292, 0.47304849589761655, 0.5014153035286022, 0.6721952796384192, 0.7507248720260316, 0.38512814216859315, 0.8930847268109882, 0.863224561659591, 0.15108072818859253, 0.7399796913917198, 0.18579927887031134, 0.47304849589761655, 0.2033384066370545, 0.43667652058029827, 0.23252054766636898], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [0.19, 0.38, 0.42, 0.21, 0.23, 0.27, 0.29, 0.25, 0.31, 0.12, 0.24, 0.35, 0.25, 0.23, 0.39, 0.34, 0.0, 0.31, 0.24, 0.34, 0.3, 0.31, 0.35, 0.39, 0.28, 0.49, 0.38, 0.28, 0.32, 0.3, 0.29, 0.27, 0.37, 0.34, 0.23, 0.99, 0.27, 0.37, 0.33, 0.02, 0.34, 0.33, 0.49, 0.3, 0.42, 0.09, 0.29, 0.18, 0.33, 0.37, 0.17, 0.39, 0.44, 0.41, 0.31, 0.44, 0.56, 0.0, 0.31, 0.68, 0.09, 0.26, 0.36, 0.27, 0.29, 0.33, 0.38, 0.33, 0.06, 0.34, 0.34, 0.28, 0.28, 0.24, 0.29, 0.19, 0.24, 0.28, 0.3, 0.49, 0.4, 0.33, 0.41, 0.27, 0.34, 0.29, 0.39, 0.24, 0.49, 0.34, 0.26, 0.49, 0.26, 0.28, 0.3, 0.28, 0.4, 1.23, 0.52, 0.08, 0.44, 0.27, 0.23, 0.24, 0.34, 0.09, 0.24, 0.32, 0.42, 0.29, 0.0, 0.28, 0.3, 0.27, 0.25, 0.53, 0.22, 0.27, 0.25, 0.39, 0.23, 0.36, 0.27, 0.47, 0.1, 0.46, 0.26, 0.46, 0.4, 0.35, 0.38, 0.34, 0.28, 0.27, 0.49, 0.58, 0.34, 0.38, 0.27, 0.29, 0.45, 0.03, 0.69, 0.37, 0.26, 0.33, 0.56, 0.32, 0.3, 0.34, 0.29, 0.33, 0.31, 0.61, 0.34, 0.35, 0.38, 0.32, 0.4, 0.39, 0.39, 0.24, 0.24, 0.91, 0.49, 0.36, 0.35, 0.05, 0.4, 0.81, 0.3, 0.4, 0.28, 0.4, 0.47, 0.3, 0.17, 0.38, 0.26, 0.39, 0.3, 0.25, 0.36, 0.49, 0.32, 0.15, 0.24, 0.24, 0.36, 0.33, 0.32, 0.26, 0.32, 0.45, 0.28, 0.28, 0.32, 0.22, 0.56, 0.26, 0.36, 0.25, 0.42, 0.52, 0.5, 0.3, 0.41, 0.73, 0.3, 0.41, 0.29, 0.34, 0.24, 0.45, 0.52, 0.29, 0.38, 0.24, 0.4, 0.4, 0.49, 0.29, 0.14, 0.42, 0.5, 0.2, 0.32, 0.3, 0.45, 0.26, 0.21, 0.4, 0.39, 0.36, 0.24, 0.38, 0.24, 0.18, 0.31, 0.49, 0.35, 0.32, 0.36, 0.34, 0.2, 0.5, 0.27, 0.31, 0.34, 0.11, 0.32, 0.28, 0.44, 0.29, 0.37, 0.26, 0.74, 0.3, 0.4, 0.31, 0.02, 0.31, 0.34, 0.19, 0.27, 0.36, 0.42, 0.2, 0.42, 0.46, 0.27, 0.32, 0.32, 0.59, 0.34, 0.16, 0.49, 0.32, 0.26, 0.1, 0.53, 0.27, 0.52, 0.15, 0.32, 0.49, 0.28, 0.31, 0.07, 0.27, 0.5, 0.44, 0.28, 0.26, 0.3, 0.3, 0.48, 0.3, 0.36, 0.32, 0.29, 0.44, 0.47, 0.26, 0.36, 0.46, 0.3, 0.35, 0.39, 0.3, 0.27, 0.31, 0.08, 0.61, 0.25, 0.29, 0.4, 0.34, 0.49, 0.33, 0.28, 0.27, 0.29, 0.49, 0.37, 0.34, 0.25, 0.52, 0.58, 0.3, 0.02, 0.32, 0.0, 0.32, 0.69, 0.3, 0.42, 0.28, 0.44, 0.3, 0.31, 0.33, 0.49, 0.0, 0.08, 0.28, 0.3, 0.38, 0.49, 0.27, 0.49, 0.38, 0.32, 0.61, 0.22, 0.31, 0.25, 0.26, 0.38, 0.08, 0.29, 0.24, 0.49, 0.46, 0.43, 0.49, 0.2, 0.49, 0.41, 0.33, 0.32, 0.29, 0.4, 0.38, 0.49, 0.09, 0.37, 0.29, 0.08, 0.0, 0.27, 0.43, 0.31, 0.42, 0.39, 0.41, 0.42, 0.31, 0.11, 0.24, 0.22, 0.24, 0.45, 0.39, 0.35, 0.02, 0.39, 0.54, 0.15, 0.37, 0.42, 0.24, 0.28, 0.71, 0.27, 0.33, 0.29, 0.26, 0.28, 0.27, 0.37, 0.36, 0.49, 0.71, 0.24, 0.12, 0.38, 0.34, 0.27, 0.24, 0.25, 0.36, 0.47, 0.18, 0.54, 0.26, 0.41, 0.22, 0.29, 0.5, 0.27, 0.32, 0.38, 0.33, 0.3, 0.25, 0.38, 0.36, 0.33, 0.3, 0.3, 0.01, 0.29, 0.23, 0.38, 0.45, 0.01, 0.2, 0.19, 0.18, 0.3, 0.08, 0.26, 0.21, 0.28, 0.2, 0.31, 0.28, 0.32, 0.32, 0.3, 0.32, 0.25, 0.29, 0.31, 0.29, 0.49, 0.3, 0.33, 0.0, 0.2, 0.36, 0.2, 0.27, 0.48, 0.3, 0.2, 0.39, 0.18, 0.34, 0.23, 0.34, 0.49, 0.45, 0.38, 0.49, 0.3, 0.29, 0.1, 0.0, 0.4, 0.4, 0.39, 0.33, 0.33, 0.47, 0.42, 0.31, 0.39, 0.55, 0.41, 0.38, 0.3, 0.18, 0.24, 0.2, 0.18, 0.24, 0.43, 0.43, 0.32, 0.34, 0.28, 0.29, 0.38, 0.31, 0.31, 0.53, 0.49, 0.37, 0.33, 0.2, 0.33, 0.26, 0.4, 0.27, 0.26, 0.36, 0.35, 0.53, 0.07, 0.26, 0.36, 0.53, 0.45, 0.22, 0.66, 0.33, 0.0, 0.29, 0.32, 0.3, 0.48, 0.28, 0.37, 0.32, 0.45, 0.4, 0.24, 0.3, 0.58, 0.3, 0.21, 0.37, 0.3, 0.19, 0.21, 0.32, 0.51, 0.27, 0.26, 0.33, 0.3, 0.42, 0.3, 0.24, 0.26, 0.3, 0.39, 0.27, 0.31, 0.26, 0.29, 1.0, 0.36, 0.31, 0.38, 0.28, 0.25, 0.35, 0.2, 0.51, 0.47, 0.22, 0.31, 0.5, 0.18, 0.45, 0.15, 0.14, 0.03, 0.32, 0.36, 0.23, 0.16, 0.49, 0.26, 0.36, 0.34, 0.3, 0.21, 0.58, 0.43, 0.26, 0.36, 0.27, 0.42, 0.49, 0.26, 0.35, 0.04, 0.4, 0.28, 0.28, 0.26, 0.25, 0.27, 0.31, 0.29, 0.54, 0.28, 0.26, 0.28, 0.28, 0.18, 0.26, 0.29, 0.38, 0.65, 0.32, 0.0, 0.68, 0.36, 0.34, 0.31, 0.35, 0.46, 0.24, 0.41, 0.24, 0.3, 0.49, 0.24, 0.22, 0.31, 0.37, 0.29, 0.34], \"xaxis\": \"x2\", \"y\": [0.6660328535674787, 0.4955559099445003, 0.11251030999551548, 0.5313240922219649, 0.7616845263358343, 0.42881839881496897, 0.22146723198036844, 0.2709448900825402, 0.04188686298684474, 0.3198999677935893, 0.586632325439729, 0.3332859260788763, 0.0891770245136605, 0.07249138429342028, 0.0813041402249215, 0.2808128557304226, 0.18155424903412543, 0.14020593233116785, 0.20529540916933675, 0.1755850319354616, 0.5722846846512241, 0.4684623303117058, 0.2863708053899042, 0.4489302200945696, 0.3606737334686688, 0.09834172337505831, 0.1439119889738254, 0.10526388551166177, 0.08976738859769384, 0.15927641460572795, 0.07353544332944184, 0.4894096639868448, 0.24735122968283396, 0.41440459167745447, 0.10107859516115147, 0.4809249647595707, 0.043928674649753696, 0.27268427565697984, 0.07203278686513981, 0.35989685204578803, 0.08410225657903847, 0.09640449279894714, 0.2859044620344169, 0.766491644508495, 0.27194216744256416, 0.11891721880979944, 0.6033870782914414, 0.8445823904457724, 0.4148378249676725, 0.09538880480821377, 0.5822786697287807, 0.2006236885231063, 0.30215903380660414, 0.3526626332448971, 0.22921561702294402, 0.3499358724503807, 0.451050436906263, 0.01968005574460141, 0.3849224947932618, 0.608666907839271, 0.30333177217190177, 0.05732515971384944, 0.08299070223644744, 0.155374347961305, 0.4378217303747408, 0.10641916767178827, 0.3207785913922725, 0.3280003244598044, 0.4747408725557203, 0.27229542413121455, 0.5314247042003052, 0.13834506443323813, 0.652508483608137, 0.1775869136191267, 0.4659209431511335, 0.3288332341233703, 0.47224603889779837, 0.2773569186284155, 0.18590272545123854, 0.6719763059805124, 0.04569198037744582, 0.22473444069733528, 0.0776074933333939, 0.1411968215808168, 0.3654892991508686, 0.06069899520469324, 0.21029328672965164, 0.13919371635861133, 0.16321149678759816, 0.6144435769482088, 0.1388055550317996, 0.0827658987104557, 0.0793107693477757, 0.04994940743047871, 0.46220165202879504, 0.08265172102971341, 0.5554564865761329, 0.10902951494304747, 0.26480674198345266, 0.31816712550642645, 0.20184400370343658, 0.23734670470511587, 0.19264674509953905, 0.03558879485690103, 0.5314247042003052, 0.3013473679880785, 0.8043030592862955, 0.07665185966197174, 0.17816243980233548, 0.14637302723887635, 0.43623195291339645, 0.5773286546676725, 0.06996409198491005, 0.0635191394270278, 0.11839391684253864, 0.03368970372860669, 0.16544292122901683, 0.5002106013252752, 0.20783967621931676, 0.4413184352618238, 0.1377753535318076, 0.017128038770129694, 0.09070427960766203, 0.05237321155563324, 0.46044782253877736, 0.09863911308639095, 0.6058955548956951, 0.07377868677997379, 0.33726125667837825, 0.03705661785513226, 0.03856885477325478, 0.01970319875133708, 0.06623921298607705, 0.655672818127978, 0.36403826442427, 0.375635621083512, 0.25822104517587474, 0.26990817233175546, 0.30316845466795117, 0.21597661143113533, 0.10411587283779344, 0.4582573305440075, 0.28974208538397184, 0.3995654588450376, 0.48407929824265805, 0.2412117545349558, 0.49704114689177337, 0.3112403223054312, 0.13571503940671914, 0.35304273602320047, 0.18963603484652192, 0.06023564559469896, 0.305863422303413, 0.34062746964654456, 0.03532029949184434, 0.20200996882548472, 0.207876095289533, 0.11304202998506685, 0.26487496820305634, 0.46674395287949066, 0.05931266843465788, 0.6063731497207538, 0.053339747820140615, 0.16056749669580483, 0.3366557342021428, 0.18735912995827353, 0.2667542380283816, 0.9197592959547904, 0.13322255285490225, 0.3533185668595151, 0.08763312389948397, 0.343329095265401, 0.1298321532292276, 0.11240742021865013, 0.03412749239977686, 0.23316671381479437, 0.13955591125269062, 0.065615492475942, 0.03940539431326806, 0.04874684240881699, 0.42507109047861347, 0.3720756994829524, 0.20627971812824875, 0.23346983492740092, 0.299872058778726, 0.14688925552714138, 0.20529540916933675, 0.11294333341234963, 0.4523771212155355, 0.15895981664313275, 0.12633289347617382, 0.34801013400503944, 0.063056887931354, 0.09222807982804315, 0.19281104432210028, 0.11843845992675284, 0.1064686731970873, 0.12171087020281346, 0.49704114689177337, 0.4202798549667376, 0.058322454167927695, 0.40418598015134155, 0.7514842711311043, 0.067978575311199, 0.1468497162592186, 0.3655805321171328, 0.36741292271676196, 0.08785516413846428, 0.4223454464089015, 0.09472348251934337, 0.14196098925812006, 0.10013555988874479, 0.32154631204965056, 0.05416575683382341, 0.786126361492164, 0.04696516601190348, 0.26926088858349784, 0.28123172687107445, 0.3094364396730669, 0.04307250962973752, 0.07126159086244754, 0.6143015945908075, 0.495586079448059, 0.46102608015166635, 0.40789311683600216, 0.8929715185951024, 0.1227006502272181, 0.3638055988942468, 0.10470002869891348, 0.29304213908849364, 0.8936703981375603, 0.3534407380188983, 0.0883666731866185, 0.07895584641700149, 0.05166417783587085, 0.4199775765299997, 0.10304865631077798, 0.1041340676595982, 0.11031385635331636, 0.22368578646300386, 0.22137255536682798, 0.0725394352715707, 0.08320759746190642, 0.3577905591727162, 0.36362749207413336, 0.13058702032609693, 0.4306817897420764, 0.4684623303117058, 0.3185463047756948, 0.6991046594229053, 0.33105510290791684, 0.35804773811787727, 0.3499358724503807, 0.17780319308126435, 0.07142366539796174, 0.1504846162366139, 0.28643330026545544, 0.11492102279820171, 0.08716328114311156, 0.12905574960179156, 0.5528531989583015, 0.2852168598030531, 0.3185463047756948, 0.41766807389819915, 0.22818770291371737, 0.10749415552266317, 0.07500089027222667, 0.2150933620687273, 0.4879833184669665, 0.21367083697314282, 0.18281788227943807, 0.11217648511765432, 0.01860460444149037, 0.4990100838788346, 0.3212979959143686, 0.7252893191599291, 0.30018855716775616, 0.2808216200321265, 0.24332849241566534, 0.22583693263898685, 0.307128141019565, 0.12930297020615966, 0.07734813107736227, 0.38078614076753503, 0.037937415915298756, 0.18389331462546077, 0.2015421194948802, 0.10121634311933059, 0.7209948827487924, 0.252131738577411, 0.19866278493931944, 0.5569604587758099, 0.19172534874952063, 0.07516041810443141, 0.18673310211333727, 0.20736440356309183, 0.27568985010185776, 0.1748501221961516, 0.134246332983591, 0.12151400729184814, 0.03860330573341564, 0.16198960071610413, 0.062309112953929935, 0.14943540958877521, 0.46827469198568006, 0.12435295831370408, 0.11768791031746062, 0.10794707492381372, 0.04347111427796346, 0.07423675680829, 0.1602542791395647, 0.19911642350143877, 0.2379444352717226, 0.36664322039668684, 0.10130143557253446, 0.17108028607870185, 0.6143194513817134, 0.5641235853966853, 0.29864316680665437, 0.44752301946823647, 0.13459844499503626, 0.037461465199631894, 0.5002964248569376, 0.4059565893810353, 0.7035957096210382, 0.0629603198376949, 0.25036415064992923, 0.14780834332950044, 0.24800647860056513, 0.10438723399855232, 0.24366911510822187, 0.4574644219698093, 0.8347014835967527, 0.42226245660703365, 0.4073158502222598, 0.47525484003715535, 0.37845934883934684, 0.35325777167774697, 0.4763432908647238, 0.18941100564626978, 0.23853527246002126, 0.27277355193056574, 0.5556171757583562, 0.19481513110659687, 0.7460207524242459, 0.12627308236197843, 0.2115813466591615, 0.4773837842994688, 0.22238536240250728, 0.1978655273089749, 0.32057959349203036, 0.1601330373243487, 0.6256605001243821, 0.34062746964654456, 0.5899158924001677, 0.1273375405407705, 0.6866376712310945, 0.3812864953771038, 0.07918534602430627, 0.10510921928053807, 0.052405178286905496, 0.29010285216427345, 0.5802968836962079, 0.4475494904811408, 0.33107045093633036, 0.6046547135519548, 0.33132995382553565, 0.3391582818855403, 0.37109937806185267, 0.18876467901964422, 0.03244681540368277, 0.6531311156123596, 0.18281848038190407, 0.06840545126676123, 0.23876166598551407, 0.5602062902528231, 0.05478334190217349, 0.18965009362393503, 0.502081053312289, 0.0945975060483667, 0.24937367783354814, 0.14040338921272166, 0.09582424632391484, 0.4879833184669665, 0.07536550594022651, 0.37763546052463404, 0.20240400638142053, 0.06234715971662652, 0.1729504208160284, 0.2536573606029918, 0.1491704939138675, 0.47224603889779837, 0.20734784509414073, 0.1656619584420439, 0.20263687678412212, 0.4576701693643329, 0.3746187330143109, 0.06578487521364562, 0.09359041291034786, 0.15714155813810793, 0.43198081216185935, 0.17693664965610134, 0.14200602748771296, 0.16878839641400256, 0.11131318694256087, 0.43040972974554736, 0.12494266711040569, 0.5286591337585229, 0.3917329141436472, 0.14284790216410748, 0.29931895876037384, 0.3998656181534954, 0.13198036366642862, 0.2166851793268345, 0.164669749255824, 0.3116999397838065, 0.5702002297218003, 0.2867818412254799, 0.05809024612643199, 0.0701620515557333, 0.10493669218879953, 0.03474255021640338, 0.14069518845012563, 0.7697788668098057, 0.44513161239284327, 0.12104291767226882, 0.2823656727566666, 0.28640273091276736, 0.09904459769556595, 0.10889384421684001, 0.1978655273089749, 0.6326587477498924, 0.0766186874204361, 0.07300117689776386, 0.3978521493117628, 0.7293533971641823, 0.24040337450518035, 0.46827469198568006, 0.03737110954461231, 0.48112847828662497, 0.5755848065786346, 0.12151472907643468, 0.332302417201758, 0.3208349144509022, 0.13406270144296106, 0.47820199098358873, 0.024219732643774528, 0.7923035912680444, 0.3099424932714111, 0.8494816644677875, 0.15230116664989468, 0.8795672599938588, 0.34536882843285344, 0.587897812361327, 0.3660303223369904, 0.3074082248441362, 0.1925553058603695, 0.1582957933341015, 0.5297945963993664, 0.1892543681582496, 0.06574637766643598, 0.03286461121245521, 0.6223124217546917, 0.48666930315350876, 0.17200815643270417, 0.27042696199957883, 0.16010429726024444, 0.25291734909108765, 0.22778758435893687, 0.6055190518965303, 0.41989528411161425, 0.2865861541738164, 0.17344095530188786, 0.4163761941495938, 0.24610426408478792, 0.029106329843254564, 0.5849270471051293, 0.09607886499379148, 0.4890296174547498, 0.11193395874659995, 0.3667485749721523, 0.29672938182784603, 0.13696827462710404, 0.03986507081677082, 0.41542023534722683, 0.1642424989032959, 0.041559354155004224, 0.1266666793707928, 0.5259198205822933, 0.42123490919744344, 0.6147437654518444, 0.42849246998341506, 0.04874684240881699, 0.16870816563337898, 0.35179373534084035, 0.4552463954734379, 0.1543174595222413, 0.4641274821418986, 0.1106599594415556, 0.40441066041397966, 0.05916303638108533, 0.24194101851814365, 0.5755848065786346, 0.23631147082452741, 0.04679471849088612, 0.33132995382553565, 0.6031606095022326, 0.16900214819844117, 0.9322526967181247, 0.1065938389205352, 0.0540586741766943, 0.14920224829950646, 0.03054451782098533, 0.13595064656866984, 0.15908339514281045, 0.09402391562754642, 0.27219479721363327, 0.10477531970828624, 0.6046547135519548, 0.04412971358840656, 0.0821245873848182, 0.24953715645213048, 0.24311299470472425, 0.679537413518331, 0.02875041056121841, 0.2874129658970298, 0.17131102264191878, 0.07042427222914205, 0.1577516063520068, 0.39934634677258996, 0.42249259173992826, 0.24940231538328683, 0.46827469198568006, 0.040988937643475554, 0.034828704291737345, 0.26663563965858417, 0.22421743312747255, 0.10716094829621758, 0.7421831263598226, 0.4644511163280224, 0.1591307416719686, 0.21502194578256428, 0.12883185373794437, 0.15520095945599266, 0.04280666734842442, 0.06928764484923078, 0.3578757504587543, 0.0760792945579073, 0.06637805380770656, 0.5755848065786346, 0.4326356954473739, 0.16985579355455038, 0.47152805642545803, 0.11644579282256762, 0.11790522998710073, 0.5438286352264949, 0.41561805514360906, 0.050606352251634235, 0.21836830194439782, 0.22298545275517268, 0.1504846162366139, 0.16819644397314482, 0.47796113776613436, 0.14100197907825862, 0.7878397890034206, 0.12176963827920351, 0.09814942480303201, 0.23162396036129984, 0.04400104962869911, 0.061588508633294015, 0.2774601068082493, 0.40816383821078206, 0.14036214651023216, 0.11837607594274324, 0.0703155477214753, 0.17002415827487982, 0.24611532014486182, 0.06874641727313702, 0.30975746960573625, 0.07004288447243323, 0.6453829176356538, 0.3880412370469972, 0.10205495289732236, 0.12171087020281346, 0.38550692709735157, 0.4398162761337091, 0.5769741243450848, 0.48842976274850136, 0.3866799681687785, 0.17129518728202664, 0.5711206597512044, 0.4456070955069118, 0.4585850027539752, 0.25462747480751524, 0.34771016550763867, 0.35548618548401445, 0.07878090041588082, 0.3008706318705062, 0.08117751180329491, 0.055511805197920094, 0.1600174453683395, 0.35597309965685686, 0.5473978930443646, 0.3321771897262046, 0.14643302530661162, 0.7653011157176768, 0.24188431843396252, 0.16704799028757666, 0.41136103198090634, 0.5749869949413896, 0.709238838470871, 0.09340318303147321, 0.602429869503323, 0.04154705947390969, 0.7519582179986716, 0.15993940416551844, 0.04372375151311325, 0.4076899811241429, 0.4644511163280224, 0.3133137248525114, 0.24628490675063597, 0.06972977174174444, 0.15949948541388637, 0.2241543425141257, 0.1729876202034616, 0.07290025122558275, 0.1220000714032804, 0.36493953208423235, 0.09420126302076737, 0.026726938234992392, 0.7199273032686843, 0.4606762448039463, 0.04906818437448113, 0.19446415942665518, 0.14876853598344464, 0.3247816953453747, 0.023320858692869595, 0.7310618090422621, 0.48944479260603346, 0.20357574295749958, 0.0840537250624015, 0.5368744051465595, 0.21101467800102214, 0.46682279298460017, 0.3749869638443927, 0.46592999202179275, 0.10188412989688433, 0.15751976448865512], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"citric.acid\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"citric.acid\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}}, {\"id\": \"All_residual.sugar\", \"params\": {\"data\": [{\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Reference<br>residual.sugar=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [1.3, 6.3, 2.6, 6.0, 1.2, 2.3, 2.2, 1.1, 2.7, 3.5, 0.9, 1.5, 5.7, 17.85, 4.55, 6.5, 1.0, 3.7, 1.7, 11.8, 8.2, 4.5, 1.5, 2.1, 7.2, 1.9, 1.2, 13.0, 4.6, 1.2, 1.2, 2.1, 1.9, 1.8, 2.0, 13.9, 10.7, 2.0, 4.3, 1.4, 1.1, 1.3, 1.8, 1.2, 11.0, 8.8, 2.5, 8.3, 2.4, 3.5, 16.4, 14.4, 1.4, 5.5, 1.1, 13.3, 2.5, 0.8, 1.2, 6.0, 2.2, 5.0, 2.7, 1.6, 2.6, 2.6, 2.4, 8.1, 7.4, 8.55, 1.5, 6.1, 5.9, 8.3, 5.7, 8.9, 3.6, 1.1, 2.1, 8.6, 2.3, 5.0, 1.1, 10.6, 7.7, 1.1, 1.2, 2.6, 4.2, 2.2, 1.5, 4.9, 1.8, 1.5, 6.2, 7.8, 13.7, 3.2, 1.3, 1.4, 1.1, 13.1, 2.2, 2.3, 1.2, 2.4, 7.7, 4.5, 1.2, 1.9, 1.2, 31.6, 1.2, 2.2, 3.9, 1.4, 2.0, 1.6, 16.5, 2.1, 12.8, 1.5, 10.5, 12.2, 2.2, 1.7, 2.1, 12.1, 1.5, 2.0, 4.0, 1.9, 14.75, 2.5, 4.5, 5.7, 2.6, 2.4, 2.8, 2.7, 0.9, 5.8, 8.6, 4.7, 2.2, 1.4, 6.4, 1.4, 1.7, 14.4, 14.7, 1.4, 1.6, 13.4, 14.9, 5.8, 1.0, 1.8, 8.8, 1.5, 11.4, 2.0, 1.4, 2.9, 6.6, 11.9, 9.9, 5.1, 11.2, 1.4, 2.0, 2.0, 1.6, 11.1, 3.0, 7.6, 1.7, 6.0, 4.8, 2.4, 6.1, 1.2, 1.7, 2.1, 7.0, 1.2, 1.7, 1.5, 3.6, 1.1, 1.8, 2.2, 8.3, 8.0, 2.3, 1.6, 1.3, 1.3, 2.0, 1.1, 2.0, 4.9, 6.5, 1.8, 2.3, 1.9, 5.1, 7.1, 13.9, 10.1, 0.9, 1.4, 3.6, 3.6, 4.2, 1.3, 5.35, 5.9, 6.5, 3.0, 1.1, 18.15, 1.6, 1.6, 2.1, 5.7, 14.4, 14.55, 1.3, 6.2, 4.8, 1.5, 2.9, 12.2, 4.5, 10.2, 1.8, 8.9, 2.8, 7.8, 8.1, 14.2, 1.1, 14.4, 1.8, 6.8, 1.3, 17.4, 6.5, 3.7, 14.6, 12.8, 2.1, 1.6, 1.9, 5.9, 3.6, 4.4, 1.8, 1.7, 12.2, 1.2, 2.6, 4.2, 1.4, 1.7, 4.6, 4.6, 2.0, 1.5, 1.7, 2.1, 7.4, 7.3, 2.2, 13.5, 10.2, 2.0, 2.2, 1.4, 7.0, 3.8, 1.6, 3.9, 1.6, 1.6, 18.4, 10.2, 2.5, 2.3, 1.5, 2.7, 2.1, 4.8, 10.8, 6.9, 1.8, 1.3, 1.2, 4.7, 2.4, 7.4, 5.7, 6.8, 1.5, 2.1, 9.25, 1.0, 18.95, 1.4, 1.8, 15.4, 2.4, 2.0, 1.2, 2.6, 1.5, 1.9, 2.1, 1.5, 1.7, 2.8, 6.3, 3.2, 1.6, 2.1, 10.7, 2.0, 8.2, 5.0, 8.3, 1.3, 3.6, 10.7, 1.9, 19.25, 4.7, 2.5, 15.55, 8.5, 12.4, 6.0, 1.3, 1.4, 2.0, 1.0, 12.2, 2.3, 1.5, 13.1, 10.4, 1.7, 10.2, 1.1, 13.0, 1.5, 2.2, 3.5, 4.0, 3.5, 14.1, 3.4, 1.9, 2.6, 2.2, 11.8, 1.2, 1.4, 2.2, 12.5, 5.4, 1.1, 1.4, 6.2, 4.4, 9.2, 1.8, 2.8, 1.6, 2.5, 11.0, 8.2, 2.9, 11.0, 7.3, 2.6, 15.4, 0.9, 6.9, 3.1, 4.25, 17.8, 4.8, 5.7, 8.6, 3.6, 1.9, 26.05, 4.5, 3.2, 1.9, 1.9, 2.5, 14.6, 7.25, 12.2, 4.7, 1.1, 1.6, 7.7, 1.6, 7.2, 1.2, 1.6, 1.3, 2.3, 6.3, 16.5, 3.3, 1.4, 6.2, 6.3, 7.7, 14.7, 9.8, 1.2, 1.0, 1.4, 5.3, 4.6, 8.65, 2.0, 4.9, 1.2, 1.0, 2.8, 4.2, 3.7, 4.1, 2.7, 2.9, 1.2, 1.2, 9.1, 6.3, 6.9, 13.6, 1.4, 2.1, 1.4, 5.0, 1.5, 1.55, 1.5, 10.4, 4.2, 6.7, 2.3, 9.9, 11.0, 3.2, 1.9, 3.3, 19.1, 1.2, 2.2, 4.9, 1.1, 9.3, 2.6, 1.9, 11.2, 8.0, 13.4, 5.1, 1.95, 4.7, 8.9, 4.8, 1.4, 2.2, 18.0, 17.3, 7.2, 4.1, 8.9, 1.7, 14.9, 1.1, 1.5, 14.6, 2.3, 1.1, 14.2, 1.2, 1.5, 9.6, 5.7, 2.7, 1.4, 12.7, 9.1, 10.5, 14.3, 6.5, 8.1, 1.1, 4.7, 1.0, 4.4, 1.6, 3.6, 7.4, 12.8, 0.8, 1.5, 2.2, 12.2, 1.6, 3.8, 2.8, 1.4, 8.2, 1.0, 1.9, 0.9, 12.15, 2.0, 4.3, 3.5, 5.6, 2.4, 4.2, 15.55, 2.3, 4.0, 8.7, 13.6, 5.4, 1.5, 6.4, 3.1, 15.15, 5.2, 4.8, 1.4, 2.4, 5.9, 2.7, 6.8, 1.1, 11.2, 3.3, 7.5, 2.8, 2.1, 1.1, 1.6, 9.5, 1.9, 1.4, 9.7, 1.3, 14.0, 1.8, 1.6, 3.5, 7.3, 1.1, 7.6, 1.1, 1.9, 1.6, 4.8, 1.5, 1.5, 17.55, 2.2, 15.6, 1.6, 1.6, 4.8, 7.4, 2.1, 12.8, 2.4, 2.7, 7.0, 1.1, 1.8, 1.9, 1.7, 7.9, 3.1, 18.6, 3.0, 6.9, 1.8, 7.4, 8.8, 1.2, 1.8, 14.9, 1.7, 2.8, 15.9, 4.2, 15.5, 1.7, 13.9, 9.65, 3.3, 7.5, 2.1, 2.5, 2.3, 3.3, 3.8, 2.0, 2.2, 10.9, 1.2, 1.6, 2.2, 10.4, 1.9, 12.7, 2.5, 8.1, 1.3, 9.6, 9.2, 14.5, 13.55, 10.5, 1.3, 1.6, 8.1, 1.0, 1.8, 1.1, 2.7, 3.5, 5.1, 1.3], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Current<br>residual.sugar=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [3.5, 14.3, 1.2, 2.2, 2.3, 1.2, 1.2, 8.0, 2.1, 1.6, 2.7, 1.3, 1.2, 9.65, 4.3, 1.2, 1.4, 2.8, 2.1, 3.2, 14.2, 14.5, 0.9, 1.1, 7.2, 1.2, 9.1, 3.95, 3.6, 4.7, 1.8, 6.2, 15.0, 6.4, 1.5, 1.2, 2.6, 7.9, 3.95, 1.9, 7.5, 2.5, 14.0, 13.0, 2.0, 2.3, 16.85, 1.9, 10.3, 1.7, 2.0, 3.9, 9.3, 1.0, 7.0, 14.1, 8.2, 1.8, 11.4, 1.7, 2.3, 20.3, 5.5, 9.7, 7.1, 2.1, 8.1, 6.7, 1.8, 1.3, 14.4, 2.4, 11.0, 7.4, 13.2, 12.3, 19.95, 1.7, 1.7, 1.9, 1.5, 1.0, 2.4, 2.1, 9.7, 3.1, 1.5, 14.5, 6.6, 1.6, 12.7, 7.4, 3.6, 1.4, 1.6, 6.5, 1.4, 4.6, 1.8, 2.1, 7.1, 9.9, 2.0, 2.1, 14.4, 10.9, 2.0, 9.0, 2.5, 2.8, 13.0, 31.6, 8.2, 1.7, 5.0, 2.2, 2.7, 1.4, 12.2, 3.2, 11.8, 1.5, 2.8, 1.4, 2.1, 2.1, 1.9, 4.7, 2.6, 1.8, 5.1, 1.8, 1.7, 17.5, 1.4, 17.1, 1.6, 2.5, 5.2, 1.6, 4.4, 3.2, 2.8, 8.5, 13.1, 1.2, 13.8, 5.6, 6.2, 1.1, 10.3, 1.0, 11.7, 16.2, 1.6, 2.8, 1.5, 2.0, 1.3, 14.2, 1.6, 2.0, 6.1, 8.2, 2.5, 1.2, 4.6, 2.2, 2.4, 1.1, 1.4, 1.1, 15.2, 4.7, 7.5, 4.2, 1.6, 7.8, 3.5, 2.4, 5.2, 10.8, 1.3, 3.4, 9.0, 1.8, 2.1, 4.8, 20.7, 2.2, 7.4, 17.3, 2.2, 2.3, 4.7, 4.9, 3.7, 1.6, 13.8, 8.2, 5.7, 1.7, 4.4, 5.9, 8.7, 2.1, 4.3, 6.55, 1.6, 12.9, 5.4, 2.2, 1.7, 2.9, 2.2, 7.6, 1.3, 3.3, 6.3, 1.8, 5.3, 7.3, 2.4, 7.1, 13.7, 10.2, 3.0, 5.3, 2.4, 1.5, 4.1, 6.9, 8.0, 7.1, 2.1, 11.8, 3.3, 1.4, 9.1, 1.2, 5.5, 7.9, 11.1, 1.8, 1.9, 2.3, 13.9, 14.5, 1.2, 2.7, 1.6, 12.0, 14.1, 2.7, 12.85, 14.8, 1.6, 1.1, 2.1, 2.7, 2.1, 7.2, 1.2, 5.4, 4.6, 2.0, 2.6, 12.6, 7.4, 10.2, 8.6, 4.2, 2.5, 2.6, 8.8, 1.8, 1.3, 7.2, 1.1, 2.2, 1.8, 1.7, 6.2, 10.8, 7.75, 2.7, 6.6, 1.0, 7.1, 1.5, 3.0, 2.4, 13.3, 2.1, 2.8, 7.75, 15.8, 5.0, 20.8, 6.4, 2.4, 1.4, 4.1, 6.0, 13.2, 2.1, 1.5, 5.4, 1.8, 2.6, 16.8, 5.0, 4.4, 13.0, 1.1, 1.2, 11.6, 1.3, 3.5, 2.9, 5.7, 15.5, 4.8, 15.55, 5.1, 2.7, 3.8, 1.8, 14.2, 5.3, 1.9, 12.5, 2.6, 10.4, 1.2, 4.1, 14.2, 12.5, 8.3, 2.0, 3.8, 10.7, 8.2, 2.1, 1.9, 9.8, 6.5, 0.9, 2.7, 2.6, 13.0, 1.4, 13.4, 16.2, 10.2, 4.9, 2.0, 7.0, 12.7, 2.4, 6.2, 8.6, 2.6, 15.55, 1.4, 7.3, 16.0, 7.0, 16.8, 3.2, 1.2, 6.2, 1.2, 1.0, 4.6, 5.5, 1.1, 10.8, 2.2, 10.2, 11.75, 6.0, 7.4, 7.4, 1.9, 2.1, 1.6, 1.2, 2.4, 5.1, 7.4, 19.95, 3.8, 16.1, 5.4, 2.6, 18.95, 2.3, 2.0, 1.5, 2.1, 4.4, 1.8, 17.5, 2.3, 12.8, 13.3, 1.4, 14.7, 4.7, 1.4, 2.5, 1.1, 1.5, 10.3, 3.0, 6.8, 2.4, 7.1, 7.0, 1.2, 1.8, 2.65, 2.4, 2.1, 2.8, 7.4, 11.5, 1.6, 1.3, 2.6, 1.2, 1.7, 1.4, 1.9, 1.9, 4.3, 13.2, 1.9, 12.8, 12.8, 1.7, 8.6, 5.7, 3.2, 2.0, 1.6, 2.4, 2.0, 2.5, 14.7, 1.8, 1.4, 1.5, 17.55, 1.8, 13.55, 1.0, 12.0, 3.6, 3.85, 4.0, 1.2, 15.4, 6.5, 1.4, 9.1, 1.1, 3.0, 2.5, 6.6, 8.1, 2.4, 15.5, 1.7, 11.3, 5.7, 1.4, 1.4, 2.0, 6.3, 4.7, 2.5, 1.8, 7.4, 9.3, 10.55, 2.9, 1.7, 2.2, 1.5, 14.75, 2.4, 2.4, 3.5, 1.8, 1.5, 2.8, 1.2, 2.0, 1.3, 10.5, 12.8, 1.2, 1.9, 16.0, 7.7, 2.3, 2.9, 1.6, 2.1, 1.1, 1.6, 3.7, 8.0, 1.9, 8.8, 6.7, 7.3, 2.5, 3.7, 2.6, 1.3, 8.3, 1.3, 11.2, 5.2, 4.7, 9.2, 12.7, 2.5, 7.4, 13.2, 1.8, 2.1, 5.25, 3.65, 15.75, 1.9, 13.65, 4.9, 9.15, 1.9, 2.5, 0.9, 14.0, 2.6, 2.8, 1.8, 12.8, 17.5, 8.25, 1.9, 1.6, 1.5, 6.9, 2.4, 1.3, 1.2, 6.7, 14.8, 12.7, 13.7, 2.0, 1.3, 1.6, 9.25, 12.9, 1.0, 4.7, 1.7, 10.8, 1.1, 19.95, 1.1, 1.2, 9.7, 6.7, 1.6, 2.3, 5.3, 13.6, 11.4, 1.6, 1.4, 2.6, 2.4, 10.6, 4.6, 2.2, 1.7, 2.0, 1.5, 5.0, 2.0, 2.6, 4.6, 12.7, 5.7, 6.3, 6.7, 8.2, 7.1, 2.0, 0.8, 2.0, 1.9, 1.3, 1.7, 1.1, 1.1, 9.85, 1.2, 1.1, 2.1, 9.5, 1.7, 8.0, 13.65, 7.9, 4.4, 9.55, 1.1, 7.9, 1.8, 2.2, 1.1, 5.9, 2.4, 6.0, 2.0, 2.9, 1.4, 2.1, 5.2, 5.8, 1.8, 2.0, 2.3, 15.1, 2.3, 16.8, 13.8, 1.5, 12.2, 8.2, 4.3, 8.9], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Reference<br>residual.sugar=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [10.4, 5.1, 1.1, 2.0, 2.6, 3.9, 6.9, 1.9, 8.9, 14.8, 4.5, 1.4, 13.5, 1.4, 2.7, 5.6, 2.4, 1.5, 18.15, 1.7, 1.4, 8.6, 3.1, 5.0, 1.9, 2.3, 6.4, 2.5, 13.0, 1.3, 2.5, 1.2, 9.1, 5.4, 13.5, 2.0, 1.6, 11.8, 3.4, 8.1, 13.1, 3.0, 1.3, 1.2, 1.8, 17.8, 1.1, 1.4, 7.0, 2.1, 2.4, 16.0, 4.8, 2.2, 11.8, 13.0, 7.1, 1.7, 1.4, 3.0, 11.0, 12.0, 3.75, 12.1, 2.1, 1.1, 8.9, 2.2, 2.0, 1.0, 8.4, 6.4, 10.8, 0.9, 1.8, 1.5, 13.0, 1.8, 8.1, 4.3, 2.3, 9.1, 7.5, 1.9, 2.0, 2.3, 9.5, 1.4, 12.5, 3.5, 6.4, 9.2, 2.2, 10.8, 19.8, 8.1, 14.5, 3.2, 7.1, 15.3, 13.3, 2.3, 2.7, 18.35, 1.8, 1.7, 14.5, 1.0, 6.4, 9.2, 1.8, 1.1, 1.6, 4.6, 1.8, 11.5, 11.0, 1.4, 2.8, 1.9, 16.05, 2.1, 9.2, 11.95, 13.1, 12.1, 4.8, 2.3, 1.9, 7.8, 1.4, 3.4, 6.5, 8.0, 1.6, 6.1, 8.8, 16.2, 1.2, 2.1, 17.8, 10.0, 0.9, 15.0, 1.4, 1.1, 1.7, 16.05, 2.0, 2.6, 2.0, 2.3, 1.1, 2.9, 1.1, 2.2, 3.3, 12.1, 1.2, 1.1, 3.2, 2.2, 4.5, 3.3, 1.8, 6.4, 7.5, 16.2, 10.4, 8.1, 7.8, 1.0, 7.2, 13.9, 2.7, 2.8, 2.0, 2.2, 2.4, 3.5, 1.5, 1.8, 2.3, 1.4, 13.2, 7.9, 8.6, 3.85, 10.0, 8.3, 4.5, 1.0, 10.7, 0.8, 7.6, 1.9, 8.95, 1.35, 15.6, 1.9, 5.0, 13.8, 13.8, 2.3, 2.4, 7.3, 1.4, 2.3, 1.7, 0.8, 4.8, 1.4, 6.7, 10.0, 15.6, 12.8, 13.7, 1.0, 12.1, 9.85, 1.4, 0.9, 14.8, 2.2, 1.8, 8.3, 2.7, 15.2, 5.7, 2.5, 5.7, 1.3, 6.3, 18.8, 1.4, 6.55, 19.35, 10.4, 2.6, 11.9, 2.5, 6.9, 14.9, 4.5, 0.9, 1.8, 2.5, 1.9, 6.2, 1.3, 2.5, 6.5, 9.1, 2.1, 1.3, 15.3, 6.1, 1.1, 3.2, 2.3, 1.6, 4.8, 12.6, 1.0, 1.7, 11.2, 1.3, 1.3, 2.3, 7.8, 17.8, 13.0, 2.1, 12.3, 6.5, 12.1, 1.9, 11.8, 10.5, 1.4, 2.3, 1.8, 1.3, 1.6, 6.9, 7.7, 1.3, 12.9, 1.2, 8.6, 1.3, 2.2, 2.0, 1.1, 2.6, 2.0, 5.0, 12.9, 12.1, 3.0, 2.1, 1.6, 2.4, 7.6, 3.2, 0.6, 18.35, 1.4, 2.2, 10.7, 4.0, 7.6, 1.8, 8.3, 2.3, 1.2, 16.45, 2.7, 11.5, 2.4, 2.2, 11.6, 2.0, 1.8, 8.0, 11.2, 7.5, 7.0, 2.1, 8.3, 22.0, 2.4, 1.6, 15.4, 1.0, 2.4, 14.9, 2.5, 0.8, 9.7, 1.5, 1.6, 6.1, 2.2, 15.8, 2.0, 7.4, 9.4, 1.3, 16.7, 10.5, 1.7, 13.1, 2.3, 2.0], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Current<br>residual.sugar=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [2.5, 4.7, 7.0, 2.3, 19.45, 22.0, 13.15, 1.6, 1.7, 2.3, 4.3, 1.2, 6.4, 7.2, 14.3, 18.1, 7.6, 2.7, 4.9, 1.1, 1.4, 17.2, 4.9, 11.8, 1.6, 1.7, 2.1, 14.8, 0.7, 0.8, 11.95, 1.1, 2.5, 2.3, 1.0, 1.7, 2.3, 1.5, 4.9, 1.4, 4.1, 2.0, 11.2, 15.2, 1.4, 1.7, 3.4, 2.2, 19.3, 6.1, 7.0, 18.35, 6.9, 2.4, 2.6, 1.8, 2.0, 4.2, 10.5, 15.4, 4.2, 8.3, 7.7, 2.9, 10.7, 2.0, 1.4, 1.9, 3.0, 1.6, 2.1, 2.5, 1.3, 1.6, 7.7, 1.2, 18.75, 1.7, 1.0, 1.9, 9.3, 1.6, 12.6, 2.0, 1.7, 1.7, 4.8, 13.7, 1.2, 6.1, 7.1, 1.9, 2.0, 14.3, 1.9, 2.1, 11.7, 3.9, 9.7, 8.1, 2.5, 6.5, 18.1, 1.8, 1.5, 2.1, 1.9, 1.4, 5.1, 13.7, 1.6, 14.5, 1.9, 1.3, 1.2, 10.7, 12.3, 4.9, 8.3, 2.1, 14.95, 1.8, 1.7, 1.6, 2.0, 7.0, 1.2, 11.1, 2.0, 5.1, 1.4, 15.6, 14.3, 1.0, 2.0, 11.0, 1.8, 3.0, 10.4, 6.6, 6.7, 1.7, 1.2, 5.1, 2.3, 12.1, 2.0, 1.6, 1.9, 9.5, 0.8, 13.3, 5.5, 7.7, 1.5, 1.4, 12.1, 8.2, 10.0, 12.6, 2.0, 15.6, 1.4, 13.5, 4.4, 7.8, 1.1, 1.6, 5.6, 8.6, 16.05, 10.4, 1.9, 1.8, 1.9, 1.4, 1.0, 11.6, 10.3, 15.8, 1.5, 5.1, 2.7, 1.1, 15.1, 1.4, 8.1, 17.8, 1.3, 7.9, 2.3, 3.75, 7.8, 1.4, 10.8, 2.0, 1.2, 6.4, 14.5, 11.8, 1.8, 13.2, 14.9, 15.4, 1.25, 15.7, 6.9, 2.2, 12.9, 10.2, 7.3, 5.0, 2.1, 1.1, 6.8, 2.7, 11.1, 9.7, 1.4, 1.6, 11.2, 8.0, 9.2, 6.8, 1.6, 10.4, 2.0, 3.9, 1.2, 1.0, 17.9, 1.6, 17.1, 10.7, 1.9, 8.8, 1.0, 1.4, 14.3, 2.0, 7.7, 2.3, 2.0, 9.6, 0.9, 5.9, 1.5, 5.4, 13.7, 6.1, 1.6, 16.0, 10.7, 10.6, 2.5, 16.3, 9.6, 4.6, 8.9, 2.5, 2.4, 1.6, 11.9, 11.9, 2.6, 1.3, 6.0, 1.6, 1.9, 8.9, 1.5, 2.6, 17.85, 6.4, 2.0, 1.8, 15.6, 2.7, 2.4, 11.2, 2.6, 17.75, 1.15, 1.3, 3.8, 1.2, 0.9, 4.5, 1.35, 2.5, 7.7, 7.0, 8.5, 2.7, 5.2, 2.2, 0.9, 7.8, 15.8, 2.3, 1.8, 2.6, 7.0, 11.9, 12.1, 1.0, 3.1, 10.1, 15.4, 8.1, 1.6, 2.0, 1.3, 17.8, 2.0, 13.6, 1.7, 8.1, 1.3, 2.8, 2.55, 1.7, 17.8, 5.6, 3.45, 10.1, 17.9, 1.4, 8.0, 1.3, 2.5, 11.4, 1.2, 1.6, 2.2, 1.3, 0.8, 1.3, 17.1, 5.2, 8.1, 2.4, 2.0, 2.0, 2.1, 1.3, 8.2, 2.5, 17.1, 1.3, 2.7, 2.0], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Reference\", \"x\": 0.245, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Current\", \"x\": 0.755, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"barmode\": \"overlay\", \"legend\": {\"title\": {\"text\": \"target\"}, \"tracegroupgap\": 0}, \"margin\": {\"t\": 60}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.49], \"title\": {\"text\": \"residual.sugar\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.51, 1.0], \"matches\": \"x\", \"title\": {\"text\": \"residual.sugar\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"count\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}}}}, {\"id\": \"residual.sugar_good\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (ref)\", \"type\": \"scatter\", \"x\": [1.3, 6.3, 2.6, 6.0, 1.2, 2.3, 2.2, 1.1, 2.7, 3.5, 0.9, 1.5, 5.7, 17.85, 4.55, 6.5, 1.0, 3.7, 1.7, 11.8, 8.2, 4.5, 1.5, 2.1, 7.2, 1.9, 1.2, 13.0, 4.6, 1.2, 1.2, 2.1, 1.9, 1.8, 2.0, 13.9, 10.7, 2.0, 4.3, 1.4, 1.1, 1.3, 1.8, 1.2, 11.0, 8.8, 2.5, 8.3, 2.4, 3.5, 16.4, 14.4, 1.4, 5.5, 1.1, 13.3, 2.5, 0.8, 1.2, 6.0, 2.2, 5.0, 2.7, 1.6, 2.6, 2.6, 2.4, 8.1, 7.4, 8.55, 1.5, 6.1, 5.9, 8.3, 5.7, 8.9, 3.6, 1.1, 2.1, 8.6, 2.3, 5.0, 1.1, 10.6, 7.7, 1.1, 1.2, 2.6, 4.2, 2.2, 1.5, 4.9, 1.8, 1.5, 6.2, 7.8, 13.7, 3.2, 1.3, 1.4, 1.1, 13.1, 2.2, 2.3, 1.2, 2.4, 7.7, 4.5, 1.2, 1.9, 1.2, 31.6, 1.2, 2.2, 3.9, 1.4, 2.0, 1.6, 16.5, 2.1, 12.8, 1.5, 10.5, 12.2, 2.2, 1.7, 2.1, 12.1, 1.5, 2.0, 4.0, 1.9, 14.75, 2.5, 4.5, 5.7, 2.6, 2.4, 2.8, 2.7, 0.9, 5.8, 8.6, 4.7, 2.2, 1.4, 6.4, 1.4, 1.7, 14.4, 14.7, 1.4, 1.6, 13.4, 14.9, 5.8, 1.0, 1.8, 8.8, 1.5, 11.4, 2.0, 1.4, 2.9, 6.6, 11.9, 9.9, 5.1, 11.2, 1.4, 2.0, 2.0, 1.6, 11.1, 3.0, 7.6, 1.7, 6.0, 4.8, 2.4, 6.1, 1.2, 1.7, 2.1, 7.0, 1.2, 1.7, 1.5, 3.6, 1.1, 1.8, 2.2, 8.3, 8.0, 2.3, 1.6, 1.3, 1.3, 2.0, 1.1, 2.0, 4.9, 6.5, 1.8, 2.3, 1.9, 5.1, 7.1, 13.9, 10.1, 0.9, 1.4, 3.6, 3.6, 4.2, 1.3, 5.35, 5.9, 6.5, 3.0, 1.1, 18.15, 1.6, 1.6, 2.1, 5.7, 14.4, 14.55, 1.3, 6.2, 4.8, 1.5, 2.9, 12.2, 4.5, 10.2, 1.8, 8.9, 2.8, 7.8, 8.1, 14.2, 1.1, 14.4, 1.8, 6.8, 1.3, 17.4, 6.5, 3.7, 14.6, 12.8, 2.1, 1.6, 1.9, 5.9, 3.6, 4.4, 1.8, 1.7, 12.2, 1.2, 2.6, 4.2, 1.4, 1.7, 4.6, 4.6, 2.0, 1.5, 1.7, 2.1, 7.4, 7.3, 2.2, 13.5, 10.2, 2.0, 2.2, 1.4, 7.0, 3.8, 1.6, 3.9, 1.6, 1.6, 18.4, 10.2, 2.5, 2.3, 1.5, 2.7, 2.1, 4.8, 10.8, 6.9, 1.8, 1.3, 1.2, 4.7, 2.4, 7.4, 5.7, 6.8, 1.5, 2.1, 9.25, 1.0, 18.95, 1.4, 1.8, 15.4, 2.4, 2.0, 1.2, 2.6, 1.5, 1.9, 2.1, 1.5, 1.7, 2.8, 6.3, 3.2, 1.6, 2.1, 10.7, 2.0, 8.2, 5.0, 8.3, 1.3, 3.6, 10.7, 1.9, 19.25, 4.7, 2.5, 15.55, 8.5, 12.4, 6.0, 1.3, 1.4, 2.0, 1.0, 12.2, 2.3, 1.5, 13.1, 10.4, 1.7, 10.2, 1.1, 13.0, 1.5, 2.2, 3.5, 4.0, 3.5, 14.1, 3.4, 1.9, 2.6, 2.2, 11.8, 1.2, 1.4, 2.2, 12.5, 5.4, 1.1, 1.4, 6.2, 4.4, 9.2, 1.8, 2.8, 1.6, 2.5, 11.0, 8.2, 2.9, 11.0, 7.3, 2.6, 15.4, 0.9, 6.9, 3.1, 4.25, 17.8, 4.8, 5.7, 8.6, 3.6, 1.9, 26.05, 4.5, 3.2, 1.9, 1.9, 2.5, 14.6, 7.25, 12.2, 4.7, 1.1, 1.6, 7.7, 1.6, 7.2, 1.2, 1.6, 1.3, 2.3, 6.3, 16.5, 3.3, 1.4, 6.2, 6.3, 7.7, 14.7, 9.8, 1.2, 1.0, 1.4, 5.3, 4.6, 8.65, 2.0, 4.9, 1.2, 1.0, 2.8, 4.2, 3.7, 4.1, 2.7, 2.9, 1.2, 1.2, 9.1, 6.3, 6.9, 13.6, 1.4, 2.1, 1.4, 5.0, 1.5, 1.55, 1.5, 10.4, 4.2, 6.7, 2.3, 9.9, 11.0, 3.2, 1.9, 3.3, 19.1, 1.2, 2.2, 4.9, 1.1, 9.3, 2.6, 1.9, 11.2, 8.0, 13.4, 5.1, 1.95, 4.7, 8.9, 4.8, 1.4, 2.2, 18.0, 17.3, 7.2, 4.1, 8.9, 1.7, 14.9, 1.1, 1.5, 14.6, 2.3, 1.1, 14.2, 1.2, 1.5, 9.6, 5.7, 2.7, 1.4, 12.7, 9.1, 10.5, 14.3, 6.5, 8.1, 1.1, 4.7, 1.0, 4.4, 1.6, 3.6, 7.4, 12.8, 0.8, 1.5, 2.2, 12.2, 1.6, 3.8, 2.8, 1.4, 8.2, 1.0, 1.9, 0.9, 12.15, 2.0, 4.3, 3.5, 5.6, 2.4, 4.2, 15.55, 2.3, 4.0, 8.7, 13.6, 5.4, 1.5, 6.4, 3.1, 15.15, 5.2, 4.8, 1.4, 2.4, 5.9, 2.7, 6.8, 1.1, 11.2, 3.3, 7.5, 2.8, 2.1, 1.1, 1.6, 9.5, 1.9, 1.4, 9.7, 1.3, 14.0, 1.8, 1.6, 3.5, 7.3, 1.1, 7.6, 1.1, 1.9, 1.6, 4.8, 1.5, 1.5, 17.55, 2.2, 15.6, 1.6, 1.6, 4.8, 7.4, 2.1, 12.8, 2.4, 2.7, 7.0, 1.1, 1.8, 1.9, 1.7, 7.9, 3.1, 18.6, 3.0, 6.9, 1.8, 7.4, 8.8, 1.2, 1.8, 14.9, 1.7, 2.8, 15.9, 4.2, 15.5, 1.7, 13.9, 9.65, 3.3, 7.5, 2.1, 2.5, 2.3, 3.3, 3.8, 2.0, 2.2, 10.9, 1.2, 1.6, 2.2, 10.4, 1.9, 12.7, 2.5, 8.1, 1.3, 9.6, 9.2, 14.5, 13.55, 10.5, 1.3, 1.6, 8.1, 1.0, 1.8, 1.1, 2.7, 3.5, 5.1, 1.3], \"xaxis\": \"x\", \"y\": [0.8156061324462894, 0.42491310922683634, 0.8867827646463432, 0.8014995238430205, 0.30499958310650876, 0.5817355832705369, 0.959171062334887, 0.7854416128369749, 0.9085690698200813, 0.8998600376511439, 0.6341165000693628, 0.412102187638673, 0.7643629411050379, 0.4710001938005606, 0.40182653035141874, 0.40438056362905367, 0.8870480016118494, 0.3650667978415713, 0.9064321709292111, 0.9327245345966092, 0.6458420185168736, 0.8821841129047617, 0.6704018506542557, 0.7655671181822064, 0.8616986618932058, 0.48774537944210006, 0.9637355036179479, 0.6794204065079696, 0.6044835155949141, 0.7867954023600708, 0.9137982268836646, 0.5867502063434873, 0.8048584290077971, 0.9718511071053526, 0.9627192884041744, 0.7978623718349598, 0.6091120966723917, 0.8943338178728011, 0.8853376735027229, 0.9045563504021151, 0.9264844632598176, 0.6342457655367447, 0.9414033426130164, 0.5636516403732365, 0.5172967922101196, 0.4836896337264441, 0.35199620689495453, 0.788779954566273, 0.9696552399248426, 0.772496554239754, 0.8132656157621138, 0.4539090261140653, 0.9333708926412786, 0.679765045723866, 0.48457442622955804, 0.4248820606938153, 0.6737819616086004, 0.8780741425819777, 0.38340602447337646, 0.90634085684919, 0.5574014604752268, 0.6804147683859246, 0.9077110088845216, 0.7718472635729894, 0.4717552048891654, 0.22222808308441652, 0.8616549355667619, 0.705749071892896, 0.4699129352300819, 0.9680524782819758, 0.8891353183282249, 0.9466602521798594, 0.8553382520847058, 0.7430243903066251, 0.6616131862201935, 0.6919609500216202, 0.96565744679506, 0.913108907487878, 0.5395521774612226, 0.9026238558501023, 0.6550941529376255, 0.9757876320152292, 0.8833495792027257, 0.6666029765862381, 0.8504582120840628, 0.9320215595878566, 0.7639947574915884, 0.6085229656221847, 0.9557131606798471, 0.46184432615952054, 0.5642658412077981, 0.8815615400732472, 0.7189203536918151, 0.9301020530176726, 0.7341394174346678, 0.7759189559372703, 0.8448078654733812, 0.9012666081120407, 0.8926028620066223, 0.5287492720273277, 0.6874206920638863, 0.37408584674942635, 0.8348370105186077, 0.8697567261320243, 0.9175759024810304, 0.44644098895981, 0.8874384748400057, 0.7787567487441118, 0.9416122482572158, 0.3265229243180111, 0.9308095750950773, 0.42267134533232753, 0.43068181214270274, 0.8727308285810839, 0.7201611177732586, 0.8430904589044517, 0.8140617541555761, 0.9456747441572588, 0.6672663325862807, 0.8756470416862959, 0.518871521713375, 0.7040615347784164, 0.4957960231649875, 0.6250130361556073, 0.27413726132188326, 0.5193133578087885, 0.37656641690434584, 0.5808048103476511, 0.7917827117482167, 0.36569143480873245, 0.7232542293832885, 0.9785934574433302, 0.5715075300165849, 0.8182555969893297, 0.5448461144048058, 0.9491291995847589, 0.4833587957991669, 0.3189279754564957, 0.9184825510014271, 0.5524830505676419, 0.9600429304649183, 0.7818180966165994, 0.7962710274484252, 0.7569429870375118, 0.46184432615952054, 0.7641514270390748, 0.9486763575522457, 0.8086368705092697, 0.6784536879503494, 0.6877019790624462, 0.6082670858563528, 0.6053794617794684, 0.6319330693089359, 0.4982105707488519, 0.6787928880949093, 0.9231980717613485, 0.8831230955067948, 0.6845485656817341, 0.8799204262605215, 0.9164563829924386, 0.7819268199067826, 0.23469888428232324, 0.9492377841603665, 0.8826092272015389, 0.6360541596480074, 0.5184081252698399, 0.6400126753125241, 0.542646305979658, 0.4479501208302092, 0.7783171875827786, 0.7867712153112567, 0.5236605417423803, 0.6959846197179591, 0.7925023358445066, 0.6683189355892497, 0.18737025221649042, 0.42506327048176057, 0.7272596040941706, 0.7314191754306454, 0.4827891324637794, 0.6649341228620356, 0.9038332731164471, 0.9588917860646077, 0.8945194928389463, 0.49833043835950624, 0.7997712594855277, 0.8577935987172323, 0.7622736922026153, 0.8039391974899521, 0.7396811504731934, 0.8115340233127679, 0.801728888664367, 0.738451208106372, 0.5859674792922007, 0.1865203674848816, 0.8773430435604171, 0.36888329310067386, 0.8651817982269884, 0.9067615420962557, 0.8594983988587351, 0.7437750884018276, 0.9145224932934428, 0.9135679891815164, 0.8001832456898428, 0.6860977766129374, 0.9377826008632761, 0.9300369611912853, 0.6997062971069969, 0.5693182102579236, 0.3404656140239559, 0.7160591142088384, 0.7953146078011, 0.8869803873277935, 0.7639982823097876, 0.8681285227071118, 0.576868797021353, 0.93035102563313, 0.8375600281828176, 0.8279918435672958, 0.9266689436294401, 0.7559862346636359, 0.5099889666930224, 0.6914445842613687, 0.9651950326885705, 0.87851968214492, 0.8499702807396289, 0.4685752957996948, 0.7241546992314323, 0.7848147251007912, 0.7341394174346678, 0.7008877443692281, 0.340588975625529, 0.5013021766499856, 0.8321174529331695, 0.8818378666553491, 0.9176909075187759, 0.8634678749265305, 0.7436082905772717, 0.9343776659412377, 0.7668809937296346, 0.6243383802582345, 0.5332560471205093, 0.6907315465649003, 0.16626803588025432, 0.1668542888532837, 0.7408943843163458, 0.5221312328975666, 0.7457559475413279, 0.46389636934606376, 0.9292627865919654, 0.5268311186840582, 0.4244151934213653, 0.643310536612302, 0.8577438313980266, 0.7816208399762355, 0.8553382520847058, 0.7010035672814305, 0.5242572272016158, 0.9187320011579697, 0.8703498177621264, 0.6713045345576062, 0.9137982268836646, 0.8614414457916845, 0.9445662266054761, 0.8808216590199034, 0.7386378115490353, 0.8873009977622293, 0.9157094897337859, 0.6606038558129893, 0.9296803968514485, 0.8864322240790464, 0.5146720135715994, 0.8720710714485208, 0.9415427660945741, 0.9138701141498735, 0.6527559092576063, 0.8751970040938668, 0.9249766460056568, 0.801728888664367, 0.6575848465963361, 0.6934824043184128, 0.8619113960143526, 0.9419078024651042, 0.9591721389341828, 0.8397407150753159, 0.9084383840076588, 0.4963969309336195, 0.7359588175524252, 0.3531961907069324, 0.9279819479140234, 0.7752976919572294, 0.8665226278427577, 0.9515211055933231, 0.7314191754306454, 0.890886918514299, 0.3235491032739525, 0.3719939405423586, 0.6323804178173072, 0.8398006965792015, 0.8239469134189235, 0.8592101816891015, 0.7615002907198236, 0.8688259750909261, 0.8718104001390852, 0.5838074755684882, 0.8756470416862959, 0.901850575196968, 0.9451930143658351, 0.6253812669856891, 0.5890764576710766, 0.4921052500998711, 0.4862070578416567, 0.9170647663398394, 0.7035583451969506, 0.8476385889092957, 0.5603058978573646, 0.5810606890504925, 0.9088604673919816, 0.8903252600075929, 0.944267921154058, 0.9435968591480925, 0.938237366988842, 0.9357286047893738, 0.7961386682142712, 0.7840233885688647, 0.2513590507613302, 0.7389284097502917, 0.9053472250810051, 0.44438282424164377, 0.862281110352348, 0.8021059248496223, 0.9152740930046814, 0.643737358401971, 0.8540304955499701, 0.8613418170006786, 0.6911084183178322, 0.8848367871057808, 0.8387883096682573, 0.5942651630821018, 0.65691393717736, 0.6369979527510315, 0.8280658524313272, 0.9640736168216585, 0.6546311715671466, 0.5599819536107853, 0.48348053317652906, 0.7668016587569692, 0.03620763244300767, 0.7364400865449663, 0.37408584674942635, 0.8767503774172, 0.8743962287172513, 0.8751970040938668, 0.8833495792027257, 0.7091886355621774, 0.87006937054451, 0.7904001815220257, 0.8761418339280951, 0.8306834851111597, 0.7531715889012326, 0.38181207472529843, 0.6490458991820136, 0.9138057013338913, 0.9046222904886461, 0.17956061692355052, 0.7506163079023257, 0.8963285795381793, 0.8848361664653354, 0.9283037217377402, 0.45996158699034445, 0.7290858434196763, 0.8319094967702583, 0.6578018675312727, 0.18727567457681707, 0.8673410249845035, 0.9453298670648187, 0.9446538464906173, 0.19605573045952288, 0.6723831041639817, 0.3438281302059518, 0.37858973820495484, 0.6953170483296187, 0.21463507152544156, 0.26963792069965237, 0.3280912492037974, 0.8399932187801539, 0.420387898633768, 0.36522500752858966, 0.5810560693343539, 0.9306346767722963, 0.7167716539092029, 0.656736106921484, 0.5549139996760648, 0.6909161521388689, 0.591904263202073, 0.884703171197362, 0.866402281883595, 0.7582770814524421, 0.8990773411030794, 0.1818065866116437, 0.6222165686186035, 0.17261914235374884, 0.8156064679757086, 0.4851213943917703, 0.8871292211128762, 0.8398494053952754, 0.703270618172154, 0.6305543892506115, 0.7494149477175548, 0.1532408287022325, 0.6159732902773407, 0.738220551127759, 0.8354520044441791, 0.8536870432671441, 0.5751476712690671, 0.9077719201719568, 0.7878515691455199, 0.6672663325862807, 0.45293736875445273, 0.17058553029544155, 0.747933377844996, 0.8400163125056676, 0.4516778718827729, 0.6082670858563528, 0.8401843469141149, 0.7636885291754726, 0.789170795337903, 0.8128612802083497, 0.7522530659814418, 0.8086757686066508, 0.8356255123032285, 0.9241779635105248, 0.9674588597049086, 0.9368885694202199, 0.4990764491242286, 0.876561204324957, 0.554264192243629, 0.5967716244634195, 0.9060244606340249, 0.8401608718856799, 0.7329750583133859, 0.8021769878309102, 0.9316817655017511, 0.45488322534173153, 0.798578398438993, 0.7425236774748816, 0.5742682328784404, 0.4937681935814938, 0.8972164286692267, 0.8914273370768748, 0.9377613518261881, 0.8862258850530264, 0.8591757581361523, 0.7410678096850266, 0.6822336012657398, 0.9201658505843877, 0.6982578893131915, 0.5746709232170782, 0.7626532952948841, 0.7137703530889916, 0.7520971196461234, 0.4473853625959922, 0.7957460056304991, 0.4833174871501707, 0.8758467705785958, 0.4689303842787964, 0.6133612564737879, 0.8568681391705205, 0.6835133967314007, 0.9732070839986944, 0.21435716257549006, 0.5761668962420043, 0.4055433603128916, 0.3743394998756179, 0.9118635774953143, 0.964551884718591, 0.9306459334511011, 0.8424802355113449, 0.7739144871152517, 0.6872688771534424, 0.8590561833388345, 0.6714384475466295, 0.6408669500407106, 0.5203550269219845, 0.2856853969697174, 0.857760555506807, 0.9307094503226838, 0.6787928880949093, 0.8308635255795866, 0.29271374211533296, 0.6769315553524353, 0.23831547366416572, 0.5895099457120908, 0.8994675076574448, 0.8893400405584444, 0.8456825404777587, 0.5399612081435882, 0.6188649121485582, 0.9281492942813848, 0.7611740601422801, 0.46550237374781617, 0.8896861436466836, 0.9038901015569306, 0.5044440900554997, 0.9215480939667524, 0.6930273792518707, 0.8723244804196287, 0.5624338775604165, 0.9226297661236537, 0.8469231754225917, 0.9430557295321259, 0.9097116306258912, 0.5988707702267543, 0.3813853072548755, 0.8843832309478876, 0.9006952500629406, 0.918975987201669, 0.18997930334445084, 0.8923106748541326, 0.8461388699436441, 0.5973439234355874, 0.9544642924744549, 0.91770416680597, 0.9177239854204658, 0.17584552180125673, 0.9240099144459667, 0.48524948024905407, 0.8889685222180134, 0.5785503824403398, 0.7511953459672914, 0.6887596776945688, 0.6717539058356753, 0.7168761391602206, 0.7134478068952186, 0.834626350903405, 0.5715867980362679, 0.6588392688727011, 0.9488572786900573, 0.8920529250761863, 0.8891353183282249, 0.707981940789761, 0.926348680038428, 0.631489487929038, 0.7443856388661001, 0.9260754381930228, 0.9544642924744549, 0.8497401318990601, 0.5604010177433062, 0.8036334301115304, 0.7898153537185114, 0.8491431337122072, 0.6570881560807702, 0.8389599143569951, 0.7944137576415592, 0.8132668978866627, 0.44714680104169846, 0.7978021044641371, 0.41921696608658454, 0.38876183891604754, 0.9248463736054193, 0.4277915265084825, 0.6345107008491314, 0.8008942533173764, 0.5087430598332189, 0.9414938992689892, 0.6922115882765215, 0.8296175750175913, 0.8593339228153332, 0.8975141534758351, 0.5977126281557783, 0.9279478536756302, 0.6485770817571253, 0.8905823996589662, 0.9332072841984264, 0.9432461110830079, 0.9410120781436498, 0.6339696776630096, 0.7120962557761497, 0.5841709037351369, 0.5928970840420333, 0.9006589732900512, 0.936371533648048, 0.6907852379101131, 0.7675780198071424, 0.9444587893431046, 0.4702336163336472, 0.8925536722101626, 0.8158978708906081, 0.822780392485108, 0.8037335327290217, 0.8382351003285965, 0.8941557358589171, 0.4796498334522667, 0.926348680038428, 0.6842118015950474, 0.6463580983468415, 0.8292048071278182, 0.5834426687867836, 0.8419845362148763, 0.2431563391580561, 0.7763142135369961, 0.9390550746437164, 0.7774903237071782, 0.8141232663130791, 0.9444089886680379, 0.430401459478284, 0.9192677156927759, 0.8427595869840984, 0.87120858451521, 0.5693182102579236, 0.820012080301976, 0.58719119911586, 0.42769376643096113, 0.3542595869275313, 0.89579938191327, 0.8743523014696554, 0.7820497043505815, 0.5279069501129625, 0.8869579700149332, 0.45488774279476296, 0.8514781135508903, 0.8278297091497892, 0.663749097381813, 0.5132851713944618, 0.4906566565015208, 0.6415219885510332, 0.6991293681294938, 0.8150539074042624, 0.5800669536763935, 0.9583771200922359, 0.7366090055976814, 0.5747817696023392, 0.5315376696882942, 0.8074446941396305, 0.9038901015569306, 0.9087015650331977, 0.6697291810323083, 0.5800669536763935, 0.8807270543114014, 0.5135845984304893, 0.9352791850238339, 0.36120709973337456, 0.6206709330576408, 0.906286252315459, 0.7937202818717513], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [10.4, 5.1, 1.1, 2.0, 2.6, 3.9, 6.9, 1.9, 8.9, 14.8, 4.5, 1.4, 13.5, 1.4, 2.7, 5.6, 2.4, 1.5, 18.15, 1.7, 1.4, 8.6, 3.1, 5.0, 1.9, 2.3, 6.4, 2.5, 13.0, 1.3, 2.5, 1.2, 9.1, 5.4, 13.5, 2.0, 1.6, 11.8, 3.4, 8.1, 13.1, 3.0, 1.3, 1.2, 1.8, 17.8, 1.1, 1.4, 7.0, 2.1, 2.4, 16.0, 4.8, 2.2, 11.8, 13.0, 7.1, 1.7, 1.4, 3.0, 11.0, 12.0, 3.75, 12.1, 2.1, 1.1, 8.9, 2.2, 2.0, 1.0, 8.4, 6.4, 10.8, 0.9, 1.8, 1.5, 13.0, 1.8, 8.1, 4.3, 2.3, 9.1, 7.5, 1.9, 2.0, 2.3, 9.5, 1.4, 12.5, 3.5, 6.4, 9.2, 2.2, 10.8, 19.8, 8.1, 14.5, 3.2, 7.1, 15.3, 13.3, 2.3, 2.7, 18.35, 1.8, 1.7, 14.5, 1.0, 6.4, 9.2, 1.8, 1.1, 1.6, 4.6, 1.8, 11.5, 11.0, 1.4, 2.8, 1.9, 16.05, 2.1, 9.2, 11.95, 13.1, 12.1, 4.8, 2.3, 1.9, 7.8, 1.4, 3.4, 6.5, 8.0, 1.6, 6.1, 8.8, 16.2, 1.2, 2.1, 17.8, 10.0, 0.9, 15.0, 1.4, 1.1, 1.7, 16.05, 2.0, 2.6, 2.0, 2.3, 1.1, 2.9, 1.1, 2.2, 3.3, 12.1, 1.2, 1.1, 3.2, 2.2, 4.5, 3.3, 1.8, 6.4, 7.5, 16.2, 10.4, 8.1, 7.8, 1.0, 7.2, 13.9, 2.7, 2.8, 2.0, 2.2, 2.4, 3.5, 1.5, 1.8, 2.3, 1.4, 13.2, 7.9, 8.6, 3.85, 10.0, 8.3, 4.5, 1.0, 10.7, 0.8, 7.6, 1.9, 8.95, 1.35, 15.6, 1.9, 5.0, 13.8, 13.8, 2.3, 2.4, 7.3, 1.4, 2.3, 1.7, 0.8, 4.8, 1.4, 6.7, 10.0, 15.6, 12.8, 13.7, 1.0, 12.1, 9.85, 1.4, 0.9, 14.8, 2.2, 1.8, 8.3, 2.7, 15.2, 5.7, 2.5, 5.7, 1.3, 6.3, 18.8, 1.4, 6.55, 19.35, 10.4, 2.6, 11.9, 2.5, 6.9, 14.9, 4.5, 0.9, 1.8, 2.5, 1.9, 6.2, 1.3, 2.5, 6.5, 9.1, 2.1, 1.3, 15.3, 6.1, 1.1, 3.2, 2.3, 1.6, 4.8, 12.6, 1.0, 1.7, 11.2, 1.3, 1.3, 2.3, 7.8, 17.8, 13.0, 2.1, 12.3, 6.5, 12.1, 1.9, 11.8, 10.5, 1.4, 2.3, 1.8, 1.3, 1.6, 6.9, 7.7, 1.3, 12.9, 1.2, 8.6, 1.3, 2.2, 2.0, 1.1, 2.6, 2.0, 5.0, 12.9, 12.1, 3.0, 2.1, 1.6, 2.4, 7.6, 3.2, 0.6, 18.35, 1.4, 2.2, 10.7, 4.0, 7.6, 1.8, 8.3, 2.3, 1.2, 16.45, 2.7, 11.5, 2.4, 2.2, 11.6, 2.0, 1.8, 8.0, 11.2, 7.5, 7.0, 2.1, 8.3, 22.0, 2.4, 1.6, 15.4, 1.0, 2.4, 14.9, 2.5, 0.8, 9.7, 1.5, 1.6, 6.1, 2.2, 15.8, 2.0, 7.4, 9.4, 1.3, 16.7, 10.5, 1.7, 13.1, 2.3, 2.0], \"xaxis\": \"x\", \"y\": [0.2802292104526322, 0.9455194119275858, 0.4978743212349556, 0.5289145624519528, 0.28439238707197784, 0.2033309570226689, 0.27345747478543325, 0.8322873304845451, 0.389055896812549, 0.3675472469853882, 0.5781933746273124, 0.7401955299744071, 0.44969671697605845, 0.4367887814338696, 0.31593955341667695, 0.3775624358859999, 0.19282181046294666, 0.048451763306065584, 0.6005928650583868, 0.032225376113695775, 0.427412413738938, 0.23973251442015217, 0.13890126550157303, 0.8613925272127, 0.329663916828638, 0.19359965390713213, 0.6827271716759634, 0.1960905505555538, 0.08135735686643118, 0.39737240301928484, 0.13902987396822816, 0.6514166433739288, 0.6994753721471061, 0.7140886736258081, 0.5021795028970708, 0.48743245558712556, 0.5731139673640956, 0.8820820642542792, 0.559972149724866, 0.5061565591493914, 0.5066810377847554, 0.833805652807593, 0.6979972163580744, 0.3177574231538272, 0.13068190592986567, 0.758876109553896, 0.5681062961269688, 0.715544821914063, 0.762062625203523, 0.4464438677531786, 0.20995974230910305, 0.5262622410710028, 0.39442669669188163, 0.2537324982988368, 0.6775437642744659, 0.23876321589577687, 0.6369158982934647, 0.38960060362966165, 0.6034323722874255, 0.7769991715799629, 0.15199748354041337, 0.5641412449951732, 0.7590466800561823, 0.5969347905931296, 0.1048362779837843, 0.7217824369593382, 0.2662339163773806, 0.16472378978351135, 0.37760124376932414, 0.7071736299639594, 0.3436862995931572, 0.8384434752264291, 0.3635333644877426, 0.7813188949129265, 0.7279369976219869, 0.5641098847382463, 0.3863964747623771, 0.9209913370067284, 0.1477144681640183, 0.8809374658555192, 0.6533168894759348, 0.8873477284758582, 0.3697306267878623, 0.28319023347825867, 0.5203701741750857, 0.5523747693308857, 0.6387521731780509, 0.3881380695009739, 0.8487896327149285, 0.4636606453307818, 0.8384434752264291, 0.558266603669778, 0.21657231888677728, 0.3635333644877426, 0.5512671313974766, 0.5051039398599867, 0.5827915753039158, 0.49441682850108926, 0.47309171914705017, 0.6262595591688196, 0.5508242483721094, 0.47332791509789995, 0.7117569366896692, 0.3933786516273859, 0.16465066549244003, 0.7490394132223248, 0.769261050002088, 0.7431932405995126, 0.3141000916210982, 0.723735045552473, 0.6484132891031948, 0.688519894019609, 0.40496704226994307, 0.5803736122960511, 0.6327801522745691, 0.45115706990411364, 0.37268733756108086, 0.9009693101135351, 0.06496389958099598, 0.44431713201158524, 0.39960831974332744, 0.8662156944598043, 0.31018081106061823, 0.5339551117365043, 0.33311273919547707, 0.400132762133902, 0.8528754522806217, 0.14419347879543085, 0.11672350429510901, 0.44556702529145975, 0.6160120899414699, 0.13766892845409207, 0.5517204028384314, 0.5232178919035022, 0.35483403305733974, 0.4900213704561591, 0.8854578072659228, 0.43084122675663034, 0.7601186327653665, 0.14072030431570776, 0.6186690618327106, 0.5245054232921349, 0.7326259458716644, 0.5690781983520095, 0.4018508815425063, 0.24877469563805235, 0.7952501197393639, 0.8766221356386195, 0.303451532996695, 0.5357745481647883, 0.7096524147827454, 0.20877177283968149, 0.8635610141758273, 0.46736762313881036, 0.6061151992073851, 0.113015272873705, 0.40446014603085867, 0.6332606063976143, 0.648705381890928, 0.42186952587750404, 0.8047913565308571, 0.3017058309841093, 0.38406990132164637, 0.33494193042999065, 0.19929939967121216, 0.8624919783238055, 0.528785836409086, 0.43084122675663034, 0.47042159929499583, 0.5061565591493914, 0.5759491569657543, 0.8468794444363914, 0.20342296359496542, 0.5170831534483544, 0.3666753044655067, 0.6131723001375537, 0.4410646109528086, 0.6903416342484309, 0.3866428492574258, 0.4636606453307818, 0.4525459302795702, 0.03199256040434073, 0.7029629492254846, 0.2433141614541866, 0.548755973819273, 0.3775060302547258, 0.06593060991448157, 0.8745624549148976, 0.22931948662359403, 0.27267688907931714, 0.589328430619086, 0.8007160756317941, 0.5525637789187225, 0.5008522318356121, 0.4556212410144909, 0.17391722008742402, 0.43574637053357784, 0.3237440077649342, 0.6071692164257629, 0.6925152430641841, 0.592675381607996, 0.43854150134957587, 0.43854150134957587, 0.42437112972565305, 0.8061118855433299, 0.35195592295594336, 0.7605370065149419, 0.38898578429124253, 0.67510953655807, 0.872979709380305, 0.710510994258769, 0.720290290780972, 0.4820787970895852, 0.42019280799979697, 0.4304380754474639, 0.25285023254778977, 0.3238056884730761, 0.39471961640683584, 0.09510031985475974, 0.367046376808582, 0.21500793651835448, 0.8705359023101334, 0.6100742529031461, 0.6226449432624995, 0.7279369976219869, 0.3643494054700089, 0.09992017521484964, 0.41475515148757036, 0.6462260464983366, 0.14102909592513518, 0.48949585696458414, 0.5239520436918008, 0.6084413884537807, 0.5655473856702703, 0.9517420512476797, 0.7489379515982664, 0.4647937384849751, 0.7915321263825208, 0.44112279258530757, 0.5734340256727429, 0.6604471727860799, 0.4845203185458914, 0.6968730453869196, 0.5315374962198609, 0.8685951485887234, 0.6242442748350044, 0.2912097196987059, 0.7725938221565348, 0.2067629769731588, 0.30221725334927335, 0.13129342562285412, 0.6467789443522378, 0.6994753721471061, 0.11825382206919556, 0.41022417118631593, 0.4882665226122541, 0.7732287086973071, 0.25374762405010176, 0.49441682850108926, 0.3723877205427743, 0.652330313245635, 0.43667799883041203, 0.5964718913578133, 0.55172276504346, 0.24113559934961917, 0.8243980268882987, 0.7263843594269437, 0.43535214809021755, 0.8721122798612579, 0.18723914490145582, 0.6486906676970999, 0.11576704656818047, 0.4328241622975616, 0.491481212420291, 0.5264345378086769, 0.33856526784971647, 0.2967410926251248, 0.581398831228375, 0.5973776665460488, 0.6195406102170065, 0.37782717658841725, 0.323061133240968, 0.17420808473594895, 0.19634770547538957, 0.46492234760650425, 0.49613167963272686, 0.5812209036149294, 0.6057291775435286, 0.63414717387345, 0.5702687187355167, 0.8604975146328253, 0.6309022132706124, 0.48732991249542923, 0.6887148870948692, 0.41581945293096145, 0.5706760596351739, 0.4831274653996314, 0.06684727567316755, 0.49090643211649887, 0.15191610726090596, 0.2711405311223577, 0.7653618545702112, 0.09266565137124261, 0.4554350627407873, 0.19698919164573708, 0.6930185080649685, 0.5227537922811563, 0.50434568709929, 0.7082092780767422, 0.46058046365566996, 0.6735723234187477, 0.4285936050615775, 0.323061133240968, 0.5168500865319015, 0.6161307914674419, 0.23456444218973552, 0.3192004782541023, 0.21968945907811915, 0.5028183230931117, 0.43371621376298963, 0.6744209213341115, 0.5940260419772637, 0.13783310426722128, 0.5136444387530009, 0.5508647999875032, 0.4955911012838212, 0.9814394195009358, 0.8260225289794664, 0.17965956338109995, 0.46844896472597397, 0.6048119589659149, 0.3289160319090978, 0.2454606394453749, 0.7497022835596558, 0.683485355417811, 0.20995974230910305, 0.23504578258460665, 0.37175956099497537, 0.4875530438829156, 0.24982584224249993, 0.6282829625348888, 0.4520795162158371, 0.8200372413039435, 0.12832513643528837, 0.5299630655130737, 0.29552777318700446, 0.24021937552346023, 0.5429028773737552, 0.6311869746243346, 0.4145977043912777, 0.39329840463575844, 0.39070335653410526, 0.4286990948130573, 0.846836560604146, 0.6880850122626078], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (curr)\", \"type\": \"scatter\", \"x\": [3.5, 14.3, 1.2, 2.2, 2.3, 1.2, 1.2, 8.0, 2.1, 1.6, 2.7, 1.3, 1.2, 9.65, 4.3, 1.2, 1.4, 2.8, 2.1, 3.2, 14.2, 14.5, 0.9, 1.1, 7.2, 1.2, 9.1, 3.95, 3.6, 4.7, 1.8, 6.2, 15.0, 6.4, 1.5, 1.2, 2.6, 7.9, 3.95, 1.9, 7.5, 2.5, 14.0, 13.0, 2.0, 2.3, 16.85, 1.9, 10.3, 1.7, 2.0, 3.9, 9.3, 1.0, 7.0, 14.1, 8.2, 1.8, 11.4, 1.7, 2.3, 20.3, 5.5, 9.7, 7.1, 2.1, 8.1, 6.7, 1.8, 1.3, 14.4, 2.4, 11.0, 7.4, 13.2, 12.3, 19.95, 1.7, 1.7, 1.9, 1.5, 1.0, 2.4, 2.1, 9.7, 3.1, 1.5, 14.5, 6.6, 1.6, 12.7, 7.4, 3.6, 1.4, 1.6, 6.5, 1.4, 4.6, 1.8, 2.1, 7.1, 9.9, 2.0, 2.1, 14.4, 10.9, 2.0, 9.0, 2.5, 2.8, 13.0, 31.6, 8.2, 1.7, 5.0, 2.2, 2.7, 1.4, 12.2, 3.2, 11.8, 1.5, 2.8, 1.4, 2.1, 2.1, 1.9, 4.7, 2.6, 1.8, 5.1, 1.8, 1.7, 17.5, 1.4, 17.1, 1.6, 2.5, 5.2, 1.6, 4.4, 3.2, 2.8, 8.5, 13.1, 1.2, 13.8, 5.6, 6.2, 1.1, 10.3, 1.0, 11.7, 16.2, 1.6, 2.8, 1.5, 2.0, 1.3, 14.2, 1.6, 2.0, 6.1, 8.2, 2.5, 1.2, 4.6, 2.2, 2.4, 1.1, 1.4, 1.1, 15.2, 4.7, 7.5, 4.2, 1.6, 7.8, 3.5, 2.4, 5.2, 10.8, 1.3, 3.4, 9.0, 1.8, 2.1, 4.8, 20.7, 2.2, 7.4, 17.3, 2.2, 2.3, 4.7, 4.9, 3.7, 1.6, 13.8, 8.2, 5.7, 1.7, 4.4, 5.9, 8.7, 2.1, 4.3, 6.55, 1.6, 12.9, 5.4, 2.2, 1.7, 2.9, 2.2, 7.6, 1.3, 3.3, 6.3, 1.8, 5.3, 7.3, 2.4, 7.1, 13.7, 10.2, 3.0, 5.3, 2.4, 1.5, 4.1, 6.9, 8.0, 7.1, 2.1, 11.8, 3.3, 1.4, 9.1, 1.2, 5.5, 7.9, 11.1, 1.8, 1.9, 2.3, 13.9, 14.5, 1.2, 2.7, 1.6, 12.0, 14.1, 2.7, 12.85, 14.8, 1.6, 1.1, 2.1, 2.7, 2.1, 7.2, 1.2, 5.4, 4.6, 2.0, 2.6, 12.6, 7.4, 10.2, 8.6, 4.2, 2.5, 2.6, 8.8, 1.8, 1.3, 7.2, 1.1, 2.2, 1.8, 1.7, 6.2, 10.8, 7.75, 2.7, 6.6, 1.0, 7.1, 1.5, 3.0, 2.4, 13.3, 2.1, 2.8, 7.75, 15.8, 5.0, 20.8, 6.4, 2.4, 1.4, 4.1, 6.0, 13.2, 2.1, 1.5, 5.4, 1.8, 2.6, 16.8, 5.0, 4.4, 13.0, 1.1, 1.2, 11.6, 1.3, 3.5, 2.9, 5.7, 15.5, 4.8, 15.55, 5.1, 2.7, 3.8, 1.8, 14.2, 5.3, 1.9, 12.5, 2.6, 10.4, 1.2, 4.1, 14.2, 12.5, 8.3, 2.0, 3.8, 10.7, 8.2, 2.1, 1.9, 9.8, 6.5, 0.9, 2.7, 2.6, 13.0, 1.4, 13.4, 16.2, 10.2, 4.9, 2.0, 7.0, 12.7, 2.4, 6.2, 8.6, 2.6, 15.55, 1.4, 7.3, 16.0, 7.0, 16.8, 3.2, 1.2, 6.2, 1.2, 1.0, 4.6, 5.5, 1.1, 10.8, 2.2, 10.2, 11.75, 6.0, 7.4, 7.4, 1.9, 2.1, 1.6, 1.2, 2.4, 5.1, 7.4, 19.95, 3.8, 16.1, 5.4, 2.6, 18.95, 2.3, 2.0, 1.5, 2.1, 4.4, 1.8, 17.5, 2.3, 12.8, 13.3, 1.4, 14.7, 4.7, 1.4, 2.5, 1.1, 1.5, 10.3, 3.0, 6.8, 2.4, 7.1, 7.0, 1.2, 1.8, 2.65, 2.4, 2.1, 2.8, 7.4, 11.5, 1.6, 1.3, 2.6, 1.2, 1.7, 1.4, 1.9, 1.9, 4.3, 13.2, 1.9, 12.8, 12.8, 1.7, 8.6, 5.7, 3.2, 2.0, 1.6, 2.4, 2.0, 2.5, 14.7, 1.8, 1.4, 1.5, 17.55, 1.8, 13.55, 1.0, 12.0, 3.6, 3.85, 4.0, 1.2, 15.4, 6.5, 1.4, 9.1, 1.1, 3.0, 2.5, 6.6, 8.1, 2.4, 15.5, 1.7, 11.3, 5.7, 1.4, 1.4, 2.0, 6.3, 4.7, 2.5, 1.8, 7.4, 9.3, 10.55, 2.9, 1.7, 2.2, 1.5, 14.75, 2.4, 2.4, 3.5, 1.8, 1.5, 2.8, 1.2, 2.0, 1.3, 10.5, 12.8, 1.2, 1.9, 16.0, 7.7, 2.3, 2.9, 1.6, 2.1, 1.1, 1.6, 3.7, 8.0, 1.9, 8.8, 6.7, 7.3, 2.5, 3.7, 2.6, 1.3, 8.3, 1.3, 11.2, 5.2, 4.7, 9.2, 12.7, 2.5, 7.4, 13.2, 1.8, 2.1, 5.25, 3.65, 15.75, 1.9, 13.65, 4.9, 9.15, 1.9, 2.5, 0.9, 14.0, 2.6, 2.8, 1.8, 12.8, 17.5, 8.25, 1.9, 1.6, 1.5, 6.9, 2.4, 1.3, 1.2, 6.7, 14.8, 12.7, 13.7, 2.0, 1.3, 1.6, 9.25, 12.9, 1.0, 4.7, 1.7, 10.8, 1.1, 19.95, 1.1, 1.2, 9.7, 6.7, 1.6, 2.3, 5.3, 13.6, 11.4, 1.6, 1.4, 2.6, 2.4, 10.6, 4.6, 2.2, 1.7, 2.0, 1.5, 5.0, 2.0, 2.6, 4.6, 12.7, 5.7, 6.3, 6.7, 8.2, 7.1, 2.0, 0.8, 2.0, 1.9, 1.3, 1.7, 1.1, 1.1, 9.85, 1.2, 1.1, 2.1, 9.5, 1.7, 8.0, 13.65, 7.9, 4.4, 9.55, 1.1, 7.9, 1.8, 2.2, 1.1, 5.9, 2.4, 6.0, 2.0, 2.9, 1.4, 2.1, 5.2, 5.8, 1.8, 2.0, 2.3, 15.1, 2.3, 16.8, 13.8, 1.5, 12.2, 8.2, 4.3, 8.9], \"xaxis\": \"x2\", \"y\": [0.33396714643252134, 0.5044440900554997, 0.8874896900044845, 0.4686759077780351, 0.23831547366416572, 0.571181601185031, 0.7785327680196316, 0.7290551099174598, 0.9581131370131553, 0.6801000322064107, 0.413367674560271, 0.6667140739211237, 0.9108229754863395, 0.9275086157065797, 0.9186958597750785, 0.7191871442695774, 0.8184457509658746, 0.8597940676688322, 0.7947045908306632, 0.8244149680645384, 0.42771531534877594, 0.5315376696882942, 0.7136291946100958, 0.5510697799054304, 0.6393262665313312, 0.9016582766249417, 0.8560880110261746, 0.8947361144883382, 0.9102326114023062, 0.840723585394272, 0.9264645566705582, 0.5105903360131552, 0.752648770317166, 0.5855954083225455, 0.8989214048388485, 0.5190750352404293, 0.9560713253502463, 0.7273157243430202, 0.9279672131348602, 0.640103147954212, 0.9158977434209615, 0.9035955072010529, 0.7140955379655831, 0.233508355491505, 0.7280578325574358, 0.8810827811902006, 0.3966129217085586, 0.15541760955422754, 0.5851621750323275, 0.9046111951917862, 0.4177213302712193, 0.7993763114768937, 0.6978409661933959, 0.6473373667551029, 0.770784382977056, 0.6500641275496193, 0.548949563093737, 0.9803199442553986, 0.6150775052067382, 0.391333092160729, 0.6966682278280982, 0.9426748402861506, 0.9170092977635526, 0.844625652038695, 0.5621782696252592, 0.8935808323282117, 0.6792214086077275, 0.6719996755401956, 0.5252591274442797, 0.7277045758687855, 0.4685752957996948, 0.8616549355667619, 0.347491516391863, 0.8224130863808733, 0.5340790568488665, 0.6711667658766297, 0.5277539611022016, 0.7226430813715845, 0.8140972745487615, 0.3280236940194876, 0.9543080196225542, 0.7752655593026647, 0.9223925066666061, 0.8588031784191832, 0.6345107008491314, 0.9393010047953068, 0.7897067132703484, 0.8608062836413887, 0.8367885032124018, 0.38555642305179116, 0.8611944449682004, 0.9172341012895443, 0.9206892306522243, 0.9500505925695213, 0.537798347971205, 0.9173482789702866, 0.44454351342386716, 0.8909704850569525, 0.7351932580165473, 0.6818328744935735, 0.7981559962965634, 0.7626532952948841, 0.807353254900461, 0.964411205143099, 0.4685752957996948, 0.6986526320119215, 0.1956969407137045, 0.9233481403380283, 0.8218375601976645, 0.8536269727611236, 0.5637680470866036, 0.42267134533232753, 0.93003590801509, 0.9364808605729722, 0.8816060831574614, 0.9663102962713933, 0.8345570787709832, 0.4997893986747249, 0.7921603237806832, 0.5586815647381762, 0.8622246464681924, 0.9828719612298703, 0.909295720392338, 0.9476267884443668, 0.5395521774612226, 0.901360886913609, 0.39410444510430487, 0.9262213132200262, 0.6627387433216217, 0.9629433821448677, 0.9614311452267452, 0.9802968012486629, 0.933760787013923, 0.34432718187202205, 0.63596173557573, 0.624364378916488, 0.7417789548241253, 0.7300918276682445, 0.6968315453320488, 0.7840233885688647, 0.8958841271622066, 0.5417426694559925, 0.7102579146160282, 0.6004345411549624, 0.515920701757342, 0.7587882454650442, 0.5029588531082266, 0.6887596776945688, 0.8642849605932809, 0.6469572639767995, 0.8103639651534781, 0.939764354405301, 0.694136577696587, 0.6593725303534554, 0.9646797005081557, 0.7979900311745153, 0.792123904710467, 0.8869579700149332, 0.7351250317969437, 0.5332560471205093, 0.9406873315653421, 0.39362685027924615, 0.9466602521798594, 0.8394325033041952, 0.6633442657978572, 0.8126408700417265, 0.7332457619716184, 0.08024070404520958, 0.8667774471450977, 0.6466814331404849, 0.912366876100516, 0.656670904734599, 0.8701678467707724, 0.8875925797813499, 0.9658725076002231, 0.7668332861852056, 0.8604440887473094, 0.934384507524058, 0.9605946056867319, 0.951253157591183, 0.5749289095213865, 0.6279243005170476, 0.7937202818717513, 0.7665301650725991, 0.700127941221274, 0.8531107444728586, 0.7947045908306632, 0.8870566665876504, 0.5476228787844645, 0.8410401833568673, 0.8736671065238262, 0.6519898659949606, 0.936943112068646, 0.9077719201719568, 0.8071889556778997, 0.8815615400732472, 0.8935313268029127, 0.8782891297971865, 0.5029588531082266, 0.5797201450332624, 0.9416775458320723, 0.5958140198486584, 0.2485157288688957, 0.932021424688801, 0.8531502837407814, 0.6344194678828672, 0.632587077283238, 0.9121448358615357, 0.5776545535910985, 0.9052765174806566, 0.8580390107418799, 0.8998644401112552, 0.6784536879503494, 0.9458342431661766, 0.21387363850783603, 0.9530348339880965, 0.7307391114165022, 0.7187682731289255, 0.6905635603269331, 0.9569274903702625, 0.9287384091375525, 0.3856984054091925, 0.504413920551941, 0.5389739198483336, 0.5921068831639978, 0.10702848140489757, 0.8772993497727819, 0.6361944011057532, 0.8952999713010865, 0.7069578609115064, 0.10632960186243966, 0.6465592619811017, 0.9116333268133815, 0.9210441535829985, 0.9483358221641291, 0.5800224234700003, 0.896951343689222, 0.8958659323404018, 0.8896861436466836, 0.7763142135369961, 0.778627444633172, 0.9274605647284293, 0.9167924025380936, 0.6422094408272838, 0.6363725079258666, 0.8694129796739031, 0.5693182102579236, 0.5315376696882942, 0.6814536952243052, 0.30089534057709466, 0.6689448970920832, 0.6419522618821227, 0.6500641275496193, 0.8221968069187356, 0.9285763346020383, 0.8495153837633861, 0.7135666997345446, 0.8850789772017983, 0.9128367188568884, 0.8709442503982084, 0.44714680104169846, 0.7147831401969469, 0.6814536952243052, 0.5823319261018008, 0.7718122970862826, 0.8925058444773368, 0.9249991097277733, 0.7849066379312727, 0.5120166815330335, 0.7863291630268572, 0.8171821177205619, 0.8878235148823457, 0.9813953955585096, 0.5009899161211654, 0.6787020040856314, 0.2747106808400709, 0.6998114428322438, 0.7191783799678735, 0.7566715075843347, 0.7741630673610131, 0.692871858980435, 0.8706970297938403, 0.9226518689226377, 0.619213859232465, 0.9620625840847012, 0.8161066853745392, 0.7984578805051198, 0.8987836568806694, 0.27900511725120763, 0.747868261422589, 0.8013372150606806, 0.4430395412241901, 0.8082746512504794, 0.9248395818955686, 0.8132668978866627, 0.7926355964369082, 0.7243101498981422, 0.8251498778038484, 0.865753667016409, 0.8784859927081519, 0.9613966942665844, 0.8380103992838959, 0.9376908870460701, 0.8505645904112248, 0.5317253080143199, 0.8756470416862959, 0.8823120896825394, 0.8920529250761863, 0.9565288857220365, 0.92576324319171, 0.8397457208604353, 0.8008835764985612, 0.7620555647282774, 0.6333567796033132, 0.8986985644274655, 0.8289197139212982, 0.38568054861828666, 0.4358764146033148, 0.7013568331933456, 0.5524769805317635, 0.8654015550049637, 0.9625385348003681, 0.4997035751430624, 0.5940434106189647, 0.29640429037896177, 0.9370396801623051, 0.7496358493500708, 0.8521916566704996, 0.7519935213994349, 0.8956127660014477, 0.7563308848917781, 0.5425355780301907, 0.1652985164032473, 0.5777375433929663, 0.5926841497777402, 0.5247451599628447, 0.6215406511606532, 0.646742228322253, 0.5236567091352762, 0.8105889943537302, 0.7614647275399787, 0.7272264480694343, 0.44438282424164377, 0.8051848688934031, 0.253979247575754, 0.8737269176380216, 0.7884186533408385, 0.5226162157005312, 0.7776146375974927, 0.8021344726910251, 0.6794204065079696, 0.8398669626756513, 0.3743394998756179, 0.6593725303534554, 0.41008410759983227, 0.8726624594592295, 0.31336232876890546, 0.6187135046228962, 0.9208146539756937, 0.8948907807194619, 0.9475948217130945, 0.7098971478357265, 0.41970311630379203, 0.5524505095188592, 0.6689295490636696, 0.39534528644804523, 0.6686700461744643, 0.6608417181144597, 0.6289006219381473, 0.8112353209803558, 0.9675531845963172, 0.3468688843876404, 0.8171815196180959, 0.9315945487332388, 0.7612383340144859, 0.43979370974717685, 0.9452166580978265, 0.810349906376065, 0.4979189466877109, 0.9054024939516333, 0.7506263221664519, 0.8595966107872783, 0.9041757536760852, 0.5120166815330335, 0.9246344940597735, 0.622364539475366, 0.7975959936185795, 0.9376528402833735, 0.8270495791839716, 0.7463426393970082, 0.8508295060861325, 0.5277539611022016, 0.7926521549058593, 0.8343380415579561, 0.7973631232158779, 0.5423298306356671, 0.6253812669856891, 0.9342151247863544, 0.9064095870896521, 0.8428584418618921, 0.5680191878381406, 0.8230633503438987, 0.857993972512287, 0.8312116035859974, 0.8886868130574391, 0.5695902702544526, 0.8750573328895943, 0.47134086624147714, 0.6082670858563528, 0.8571520978358925, 0.7006810412396262, 0.6001343818465046, 0.8680196363335714, 0.7833148206731655, 0.835330250744176, 0.6883000602161935, 0.4297997702781997, 0.7132181587745201, 0.941909753873568, 0.9298379484442667, 0.8950633078112005, 0.9652574497835966, 0.8593048115498744, 0.23022113319019433, 0.5548683876071567, 0.8789570823277312, 0.7176343272433334, 0.7135972690872326, 0.900955402304434, 0.89110615578316, 0.8021344726910251, 0.36734125225010755, 0.9233813125795639, 0.9269988231022361, 0.6021478506882372, 0.27064660283581765, 0.7595966254948197, 0.5317253080143199, 0.9626288904553877, 0.518871521713375, 0.4244151934213653, 0.8784852709235653, 0.667697582798242, 0.6791650855490978, 0.8659372985570389, 0.5217980090164113, 0.9757802673562255, 0.20769640873195563, 0.6900575067285889, 0.15051833553221247, 0.8476988333501053, 0.12043274000614122, 0.6546311715671466, 0.412102187638673, 0.6339696776630096, 0.6925917751558638, 0.8074446941396305, 0.8417042066658985, 0.4702054036006336, 0.8107456318417504, 0.934253622333564, 0.9671353887875448, 0.3776875782453083, 0.5133306968464912, 0.8279918435672958, 0.7295730380004212, 0.8398957027397556, 0.7470826509089123, 0.7722124156410631, 0.3944809481034696, 0.5801047158883857, 0.7134138458261836, 0.8265590446981121, 0.5836238058504062, 0.7538957359152121, 0.9708936701567454, 0.41507295289487073, 0.9039211350062085, 0.5109703825452502, 0.8880660412534, 0.6332514250278477, 0.703270618172154, 0.863031725372896, 0.9601349291832292, 0.5845797646527732, 0.8357575010967041, 0.9584406458449958, 0.8733333206292072, 0.4740801794177068, 0.5787650908025566, 0.38525623454815555, 0.5715075300165849, 0.951253157591183, 0.831291834366621, 0.6482062646591596, 0.5447536045265621, 0.8456825404777587, 0.5358725178581014, 0.8893400405584444, 0.5955893395860203, 0.9408369636189147, 0.7580589814818564, 0.4244151934213653, 0.7636885291754726, 0.9532052815091139, 0.6686700461744643, 0.39683939049776734, 0.8309978518015588, 0.06774730328187532, 0.8934061610794648, 0.9459413258233057, 0.8507977517004935, 0.9694554821790147, 0.8640493534313302, 0.8409166048571896, 0.9059760843724536, 0.7278052027863667, 0.8952246802917138, 0.39534528644804523, 0.9558702864115934, 0.9178754126151818, 0.7504628435478695, 0.7568870052952757, 0.32046258648166903, 0.9712495894387816, 0.7125870341029702, 0.8286889773580812, 0.929575727770858, 0.8422483936479932, 0.60065365322741, 0.5775074082600717, 0.7505976846167132, 0.5317253080143199, 0.9590110623565244, 0.9651712957082627, 0.7333643603414158, 0.7757825668725274, 0.8928390517037824, 0.2578168736401774, 0.5355488836719776, 0.8408692583280314, 0.7849780542174357, 0.8711681462620556, 0.8447990405440073, 0.9571933326515756, 0.9307123551507692, 0.6421242495412457, 0.9239207054420927, 0.9336219461922934, 0.4244151934213653, 0.5673643045526261, 0.8301442064454496, 0.528471943574542, 0.8835542071774324, 0.8820947700128993, 0.4561713647735051, 0.584381944856391, 0.9493936477483658, 0.7816316980556022, 0.7770145472448273, 0.8495153837633861, 0.8318035560268552, 0.5220388622338656, 0.8589980209217414, 0.21216021099657945, 0.8782303617207965, 0.901850575196968, 0.7683760396387002, 0.9559989503713009, 0.938411491366706, 0.7225398931917507, 0.5918361617892179, 0.8596378534897678, 0.8816239240572568, 0.9296844522785247, 0.8299758417251202, 0.7538846798551382, 0.931253582726863, 0.6902425303942638, 0.9299571155275668, 0.35461708236434614, 0.6119587629530028, 0.8979450471026776, 0.8782891297971865, 0.6144930729026484, 0.5601837238662909, 0.4230258756549153, 0.5115702372514986, 0.6133200318312215, 0.8287048127179734, 0.42887934024879554, 0.5543929044930882, 0.5414149972460248, 0.7453725251924848, 0.6522898344923613, 0.6445138145159856, 0.9212190995841192, 0.6991293681294938, 0.9188224881967051, 0.9444881948020799, 0.8399825546316605, 0.6440269003431431, 0.45260210695563535, 0.6678228102737954, 0.8535669746933884, 0.23469888428232324, 0.7581156815660375, 0.8329520097124233, 0.5886389680190937, 0.4250130050586104, 0.290761161529129, 0.9065968169685268, 0.39757013049667705, 0.9584529405260903, 0.24804178200132845, 0.8400605958344816, 0.9562762484868867, 0.5923100188758571, 0.5355488836719776, 0.6866862751474886, 0.753715093249364, 0.9302702282582556, 0.8405005145861136, 0.7758456574858743, 0.8270123797965384, 0.9270997487744173, 0.8779999285967196, 0.6350604679157676, 0.9057987369792326, 0.9732730617650076, 0.28007269673131574, 0.5393237551960537, 0.9509318156255189, 0.8055358405733448, 0.8512314640165554, 0.6752183046546253, 0.9766791413071304, 0.26893819095773785, 0.5105552073939665, 0.7964242570425004, 0.9159462749375985, 0.46312559485344046, 0.7889853219989779, 0.5331772070153998, 0.6250130361556073, 0.5340700079782073, 0.8981158701031157, 0.8424802355113449], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [2.5, 4.7, 7.0, 2.3, 19.45, 22.0, 13.15, 1.6, 1.7, 2.3, 4.3, 1.2, 6.4, 7.2, 14.3, 18.1, 7.6, 2.7, 4.9, 1.1, 1.4, 17.2, 4.9, 11.8, 1.6, 1.7, 2.1, 14.8, 0.7, 0.8, 11.95, 1.1, 2.5, 2.3, 1.0, 1.7, 2.3, 1.5, 4.9, 1.4, 4.1, 2.0, 11.2, 15.2, 1.4, 1.7, 3.4, 2.2, 19.3, 6.1, 7.0, 18.35, 6.9, 2.4, 2.6, 1.8, 2.0, 4.2, 10.5, 15.4, 4.2, 8.3, 7.7, 2.9, 10.7, 2.0, 1.4, 1.9, 3.0, 1.6, 2.1, 2.5, 1.3, 1.6, 7.7, 1.2, 18.75, 1.7, 1.0, 1.9, 9.3, 1.6, 12.6, 2.0, 1.7, 1.7, 4.8, 13.7, 1.2, 6.1, 7.1, 1.9, 2.0, 14.3, 1.9, 2.1, 11.7, 3.9, 9.7, 8.1, 2.5, 6.5, 18.1, 1.8, 1.5, 2.1, 1.9, 1.4, 5.1, 13.7, 1.6, 14.5, 1.9, 1.3, 1.2, 10.7, 12.3, 4.9, 8.3, 2.1, 14.95, 1.8, 1.7, 1.6, 2.0, 7.0, 1.2, 11.1, 2.0, 5.1, 1.4, 15.6, 14.3, 1.0, 2.0, 11.0, 1.8, 3.0, 10.4, 6.6, 6.7, 1.7, 1.2, 5.1, 2.3, 12.1, 2.0, 1.6, 1.9, 9.5, 0.8, 13.3, 5.5, 7.7, 1.5, 1.4, 12.1, 8.2, 10.0, 12.6, 2.0, 15.6, 1.4, 13.5, 4.4, 7.8, 1.1, 1.6, 5.6, 8.6, 16.05, 10.4, 1.9, 1.8, 1.9, 1.4, 1.0, 11.6, 10.3, 15.8, 1.5, 5.1, 2.7, 1.1, 15.1, 1.4, 8.1, 17.8, 1.3, 7.9, 2.3, 3.75, 7.8, 1.4, 10.8, 2.0, 1.2, 6.4, 14.5, 11.8, 1.8, 13.2, 14.9, 15.4, 1.25, 15.7, 6.9, 2.2, 12.9, 10.2, 7.3, 5.0, 2.1, 1.1, 6.8, 2.7, 11.1, 9.7, 1.4, 1.6, 11.2, 8.0, 9.2, 6.8, 1.6, 10.4, 2.0, 3.9, 1.2, 1.0, 17.9, 1.6, 17.1, 10.7, 1.9, 8.8, 1.0, 1.4, 14.3, 2.0, 7.7, 2.3, 2.0, 9.6, 0.9, 5.9, 1.5, 5.4, 13.7, 6.1, 1.6, 16.0, 10.7, 10.6, 2.5, 16.3, 9.6, 4.6, 8.9, 2.5, 2.4, 1.6, 11.9, 11.9, 2.6, 1.3, 6.0, 1.6, 1.9, 8.9, 1.5, 2.6, 17.85, 6.4, 2.0, 1.8, 15.6, 2.7, 2.4, 11.2, 2.6, 17.75, 1.15, 1.3, 3.8, 1.2, 0.9, 4.5, 1.35, 2.5, 7.7, 7.0, 8.5, 2.7, 5.2, 2.2, 0.9, 7.8, 15.8, 2.3, 1.8, 2.6, 7.0, 11.9, 12.1, 1.0, 3.1, 10.1, 15.4, 8.1, 1.6, 2.0, 1.3, 17.8, 2.0, 13.6, 1.7, 8.1, 1.3, 2.8, 2.55, 1.7, 17.8, 5.6, 3.45, 10.1, 17.9, 1.4, 8.0, 1.3, 2.5, 11.4, 1.2, 1.6, 2.2, 1.3, 0.8, 1.3, 17.1, 5.2, 8.1, 2.4, 2.0, 2.0, 2.1, 1.3, 8.2, 2.5, 17.1, 1.3, 2.7, 2.0], \"xaxis\": \"x2\", \"y\": [0.8142007211296887, 0.07257977436397642, 0.7430932382113554, 0.8214862427787604, 0.5698848321031316, 0.6048119589659149, 0.6466669219762841, 0.14510080060429495, 0.2250304680670007, 0.28492472637839966, 0.42061632734231896, 0.8281252124183194, 0.49622399336621903, 0.3482895521074759, 0.4678833354511545, 0.5708968386647719, 0.37048677721847617, 0.553632248395139, 0.8702137350251022, 0.42186952587750404, 0.8696774950675754, 0.5410576963494411, 0.3971326977900686, 0.3275001196198921, 0.9448289227093116, 0.7109941475090589, 0.41925580570138304, 0.3675472469853882, 0.6721911818800557, 0.5562207270314473, 0.5262426608517637, 0.3244609607385458, 0.15056615442564347, 0.15676979724311627, 0.6037730696030339, 0.6342511279653397, 0.021947035536558718, 0.32429164429335744, 0.5678746850743716, 0.3571680467137555, 0.7755534309390314, 0.3240287891037917, 0.699424662214302, 0.5151532452376618, 0.7564675819717819, 0.38343591026479057, 0.19811005648518398, 0.3168419703358067, 0.5315947262677626, 0.9269044449273315, 0.8260225289794664, 0.451791899378283, 0.830516920403184, 0.47128602930186, 0.19027823806377472, 0.5181346713949518, 0.29552777318700446, 0.45414400334446664, 0.39329840463575844, 0.42327932510626076, 0.45838907164509224, 0.2233864252642039, 0.3628419195926303, 0.6709353200988277, 0.46058046365566996, 0.25551237833043455, 0.7234147543269824, 0.1481282262733752, 0.314935793994079, 0.20050531530561894, 0.37453315488553635, 0.701015529968035, 0.6343341418527783, 0.1739320900588749, 0.734996253073231, 0.8172229478314255, 0.3598554146739685, 0.7121055211356295, 0.2620604909731644, 0.3421138035730516, 0.6951268813066005, 0.35208221297891723, 0.452099210446082, 0.18907620085798427, 0.5444201651108793, 0.6484058972837882, 0.3258186925596978, 0.5963383680780668, 0.6202666247822538, 0.576738593946626, 0.5054992484109841, 0.2972245631729925, 0.6844333356791464, 0.42629475072919953, 0.4405153833121037, 0.01207867704715336, 0.7609288944606691, 0.23951123982998349, 0.09310514674080905, 0.5084920166510624, 0.33067609257366243, 0.36481899584296196, 0.5708968386647719, 0.3194802059637459, 0.14207297841267416, 0.5776897120055972, 0.2026163425795633, 0.37909000048748537, 0.38206764842015895, 0.41324683104354176, 0.17826143731067332, 0.42339414872454434, 0.39148091864802853, 0.3511350413575442, 0.8053393751847749, 0.5937005322868365, 0.6849942580153355, 0.38930033076762494, 0.5168500865319015, 0.5699073288866824, 0.5376087249833421, 0.8185832461647057, 0.25950508036415604, 0.20394483716883388, 0.3303044530853749, 0.2528102968078532, 0.8477719856767125, 0.5217124250004609, 0.3303044530853749, 0.5382885532339231, 0.9625763866028243, 0.6536174904341296, 0.42629475072919953, 0.6458781618432388, 0.46574001023909845, 0.37268733756108086, 0.8180085473348132, 0.35493594975273335, 0.2423640089427935, 0.3636330633241046, 0.6421622311157122, 0.5444201651108793, 0.7396308412796291, 0.9036153464846048, 0.21101569987323432, 0.6004024464464508, 0.7595861882737439, 0.486549602332862, 0.2379839758891197, 0.5147825233229498, 0.2065932277190248, 0.4342628292980428, 0.5940848250235929, 0.4857193175270624, 0.5332610244722983, 0.5402196969638672, 0.8578846895389459, 0.5290225674595067, 0.6074669506688956, 0.1847839155105034, 0.3581391437324269, 0.4304380754474639, 0.8410120374942113, 0.5810086483513661, 0.19026233744636453, 0.7223494520380469, 0.8589928738613049, 0.8374625942163022, 0.781203852328267, 0.73983195178881, 0.41156537259256004, 0.7482873396984137, 0.44431713201158524, 0.7113673874393347, 0.49869552495399233, 0.7627102864663872, 0.37193390769028617, 0.37187810520956766, 0.3773291605703562, 0.8719651627687759, 0.6218762459828849, 0.3781393537983126, 0.553632248395139, 0.47624084907999176, 0.774399353278846, 0.5840424935194366, 0.5601025471409736, 0.6186690618327106, 0.620611700356168, 0.5755798886129706, 0.15047650536569443, 0.5530049338021776, 0.6597439619439023, 0.8300222117931148, 0.3490158529243493, 0.4410646109528086, 0.5067909967309752, 0.5851482063434866, 0.7149827463187939, 0.4849259975950144, 0.2094210588097294, 0.33399024531412796, 0.4083143545243069, 0.7497022835596558, 0.7817929239213606, 0.7637421953724776, 0.3825655414920891, 0.6611482494098961, 0.19022241257108333, 0.44972084577511023, 0.5476732603321269, 0.4831274653996314, 0.5077048340566679, 0.7289504589448288, 0.4379810490617926, 0.8017221455714771, 0.6434673631716396, 0.5059779734745421, 0.6065367192264559, 0.650368705032214, 0.34567471266024347, 0.39561589000187136, 0.3427787545601037, 0.4676404271158623, 0.5332283386400669, 0.4519108142444285, 0.40662831629925006, 0.42305576187259053, 0.22032895172816622, 0.5278715769330472, 0.43679486629948455, 0.743933429392776, 0.5269515041023835, 0.5008800654866953, 0.214168174561682, 0.44879088851457377, 0.683485355417811, 0.807753104897186, 0.42629475072919953, 0.8502951424821861, 0.17421175568219957, 0.25491371883486935, 0.7595861882737439, 0.6571724132942184, 0.7813188949129265, 0.5626906653340306, 0.8674288259883418, 0.6600514650598344, 0.4827749661719035, 0.5456147119159479, 0.39827550056677263, 0.27323823737433794, 0.695896529362927, 0.5048820477254727, 0.5422349097465021, 0.5610936746718964, 0.6571724132942184, 0.3088751107498249, 0.45428761266464013, 0.6604471727860799, 0.43371621376298963, 0.6171893197168647, 0.8100511550343341, 0.8100511550343341, 0.605832578461134, 0.5526475584669951, 0.4275055171336787, 0.8734720021260204, 0.8508295378350301, 0.5807723706867254, 0.8272749548927728, 0.2670652478909882, 0.7020144194675465, 0.4615566916191992, 0.7055847950248242, 0.43389869234556755, 0.6071692164257629, 0.3496825637352313, 0.23676491619791426, 0.7057755976874825, 0.15539001443149586, 0.6187538615870153, 0.8735882828904331, 0.30049486749739024, 0.23191705420611952, 0.8913917397916864, 0.4977157214618499, 0.16961113509580228, 0.8485494795219795, 0.4760032757956232, 0.5053843099270294, 0.2676015269871764, 0.3627664421236291, 0.15146266807038725, 0.7898179638281774, 0.6145296307645981, 0.3790380236797623, 0.3003532640340299, 0.6086112016774773, 0.39906793889171593, 0.8185832461647057, 0.6715802865662828, 0.8260225289794664, 0.6056902064850618, 0.400132762133902, 0.39471961640683584, 0.6449859309106076, 0.5637152910565628, 0.39949420960438964, 0.5490401551410112, 0.4398875418860128, 0.30916577334906253, 0.7093303227687476, 0.4562508424819209, 0.40444044759428516, 0.5773483646962835, 0.447777692034652, 0.4961542215384683, 0.32474312180562226, 0.21192693199409943, 0.9056903490933487, 0.5013816399998683, 0.758876109553896, 0.6364928148646596, 0.2952804752502578, 0.4748951900520853, 0.43679486629948455, 0.5479962315186364, 0.4728142838839701, 0.6343341418527783, 0.12248807650217919, 0.5052525886146573, 0.8281252124183194, 0.8930081609652758, 0.36283726088930296, 0.8098196742550625, 0.656477404357746, 0.193885049884708, 0.5269515041023835, 0.49858469647139786, 0.32780472036158087, 0.24927512797396847, 0.6148718578314069, 0.10691527318901187, 0.136775438340409, 0.8489192718114075, 0.2600203086082801, 0.8142007211296887, 0.5269515041023835, 0.7966615933629455, 0.5633234794197017, 0.767479452333631], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"residual.sugar\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"residual.sugar\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}}, {\"id\": \"residual.sugar_bad\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (ref)\", \"type\": \"scatter\", \"x\": [10.4, 5.1, 1.1, 2.0, 2.6, 3.9, 6.9, 1.9, 8.9, 14.8, 4.5, 1.4, 13.5, 1.4, 2.7, 5.6, 2.4, 1.5, 18.15, 1.7, 1.4, 8.6, 3.1, 5.0, 1.9, 2.3, 6.4, 2.5, 13.0, 1.3, 2.5, 1.2, 9.1, 5.4, 13.5, 2.0, 1.6, 11.8, 3.4, 8.1, 13.1, 3.0, 1.3, 1.2, 1.8, 17.8, 1.1, 1.4, 7.0, 2.1, 2.4, 16.0, 4.8, 2.2, 11.8, 13.0, 7.1, 1.7, 1.4, 3.0, 11.0, 12.0, 3.75, 12.1, 2.1, 1.1, 8.9, 2.2, 2.0, 1.0, 8.4, 6.4, 10.8, 0.9, 1.8, 1.5, 13.0, 1.8, 8.1, 4.3, 2.3, 9.1, 7.5, 1.9, 2.0, 2.3, 9.5, 1.4, 12.5, 3.5, 6.4, 9.2, 2.2, 10.8, 19.8, 8.1, 14.5, 3.2, 7.1, 15.3, 13.3, 2.3, 2.7, 18.35, 1.8, 1.7, 14.5, 1.0, 6.4, 9.2, 1.8, 1.1, 1.6, 4.6, 1.8, 11.5, 11.0, 1.4, 2.8, 1.9, 16.05, 2.1, 9.2, 11.95, 13.1, 12.1, 4.8, 2.3, 1.9, 7.8, 1.4, 3.4, 6.5, 8.0, 1.6, 6.1, 8.8, 16.2, 1.2, 2.1, 17.8, 10.0, 0.9, 15.0, 1.4, 1.1, 1.7, 16.05, 2.0, 2.6, 2.0, 2.3, 1.1, 2.9, 1.1, 2.2, 3.3, 12.1, 1.2, 1.1, 3.2, 2.2, 4.5, 3.3, 1.8, 6.4, 7.5, 16.2, 10.4, 8.1, 7.8, 1.0, 7.2, 13.9, 2.7, 2.8, 2.0, 2.2, 2.4, 3.5, 1.5, 1.8, 2.3, 1.4, 13.2, 7.9, 8.6, 3.85, 10.0, 8.3, 4.5, 1.0, 10.7, 0.8, 7.6, 1.9, 8.95, 1.35, 15.6, 1.9, 5.0, 13.8, 13.8, 2.3, 2.4, 7.3, 1.4, 2.3, 1.7, 0.8, 4.8, 1.4, 6.7, 10.0, 15.6, 12.8, 13.7, 1.0, 12.1, 9.85, 1.4, 0.9, 14.8, 2.2, 1.8, 8.3, 2.7, 15.2, 5.7, 2.5, 5.7, 1.3, 6.3, 18.8, 1.4, 6.55, 19.35, 10.4, 2.6, 11.9, 2.5, 6.9, 14.9, 4.5, 0.9, 1.8, 2.5, 1.9, 6.2, 1.3, 2.5, 6.5, 9.1, 2.1, 1.3, 15.3, 6.1, 1.1, 3.2, 2.3, 1.6, 4.8, 12.6, 1.0, 1.7, 11.2, 1.3, 1.3, 2.3, 7.8, 17.8, 13.0, 2.1, 12.3, 6.5, 12.1, 1.9, 11.8, 10.5, 1.4, 2.3, 1.8, 1.3, 1.6, 6.9, 7.7, 1.3, 12.9, 1.2, 8.6, 1.3, 2.2, 2.0, 1.1, 2.6, 2.0, 5.0, 12.9, 12.1, 3.0, 2.1, 1.6, 2.4, 7.6, 3.2, 0.6, 18.35, 1.4, 2.2, 10.7, 4.0, 7.6, 1.8, 8.3, 2.3, 1.2, 16.45, 2.7, 11.5, 2.4, 2.2, 11.6, 2.0, 1.8, 8.0, 11.2, 7.5, 7.0, 2.1, 8.3, 22.0, 2.4, 1.6, 15.4, 1.0, 2.4, 14.9, 2.5, 0.8, 9.7, 1.5, 1.6, 6.1, 2.2, 15.8, 2.0, 7.4, 9.4, 1.3, 16.7, 10.5, 1.7, 13.1, 2.3, 2.0], \"xaxis\": \"x\", \"y\": [0.7197707895473677, 0.05448058807241418, 0.5021256787650443, 0.4710854375480472, 0.7156076129280222, 0.7966690429773311, 0.7265425252145667, 0.16771266951545494, 0.610944103187451, 0.6324527530146118, 0.42180662537268765, 0.2598044700255929, 0.5503032830239416, 0.5632112185661304, 0.6840604465833231, 0.6224375641140001, 0.8071781895370533, 0.9515482366939344, 0.3994071349416132, 0.9677746238863042, 0.572587586261062, 0.7602674855798478, 0.861098734498427, 0.1386074727873, 0.6703360831713621, 0.8064003460928679, 0.3172728283240366, 0.8039094494444462, 0.9186426431335688, 0.6026275969807151, 0.8609701260317718, 0.3485833566260712, 0.3005246278528939, 0.2859113263741919, 0.4978204971029292, 0.5125675444128744, 0.4268860326359044, 0.11791793574572085, 0.440027850275134, 0.4938434408506086, 0.4933189622152446, 0.166194347192407, 0.30200278364192557, 0.6822425768461728, 0.8693180940701344, 0.24112389044610405, 0.43189370387303117, 0.284455178085937, 0.23793737479647703, 0.5535561322468214, 0.7900402576908969, 0.47373775892899717, 0.6055733033081183, 0.7462675017011632, 0.32245623572553406, 0.7612367841042231, 0.36308410170653527, 0.6103993963703384, 0.3965676277125745, 0.2230008284200371, 0.8480025164595866, 0.43585875500482685, 0.24095331994381775, 0.4030652094068704, 0.8951637220162157, 0.2782175630406618, 0.7337660836226194, 0.8352762102164887, 0.6223987562306759, 0.2928263700360406, 0.6563137004068428, 0.16155652477357085, 0.6364666355122575, 0.2186811050870735, 0.27206300237801306, 0.4358901152617537, 0.6136035252376228, 0.07900866299327158, 0.8522855318359817, 0.11906253414448076, 0.3466831105240652, 0.11265227152414181, 0.6302693732121377, 0.7168097665217413, 0.4796298258249143, 0.4476252306691143, 0.3612478268219491, 0.611861930499026, 0.15121036728507153, 0.5363393546692182, 0.16155652477357085, 0.441733396330222, 0.7834276811132227, 0.6364666355122575, 0.44873286860252337, 0.4948960601400133, 0.4172084246960842, 0.5055831714989107, 0.5269082808529498, 0.3737404408311804, 0.4491757516278906, 0.5266720849021, 0.2882430633103308, 0.6066213483726142, 0.83534933450756, 0.2509605867776752, 0.230738949997912, 0.25680675940048736, 0.6858999083789018, 0.27626495444752697, 0.35158671089680515, 0.311480105980391, 0.5950329577300569, 0.4196263877039489, 0.3672198477254309, 0.5488429300958864, 0.6273126624389191, 0.0990306898864649, 0.935036100419004, 0.5556828679884147, 0.6003916802566726, 0.1337843055401957, 0.6898191889393818, 0.46604488826349566, 0.6668872608045229, 0.5998672378660981, 0.14712454771937833, 0.8558065212045691, 0.883276495704891, 0.5544329747085402, 0.38398791005853006, 0.8623310715459079, 0.4482795971615686, 0.4767821080964978, 0.6451659669426603, 0.5099786295438409, 0.11454219273407718, 0.5691587732433696, 0.2398813672346335, 0.8592796956842923, 0.38133093816728936, 0.4754945767078651, 0.2673740541283356, 0.43092180164799054, 0.5981491184574936, 0.7512253043619477, 0.20474988026063612, 0.12337786436138054, 0.6965484670033051, 0.4642254518352117, 0.29034758521725457, 0.7912282271603185, 0.1364389858241727, 0.5326323768611896, 0.3938848007926149, 0.886984727126295, 0.5955398539691413, 0.3667393936023857, 0.35129461810907203, 0.578130474122496, 0.1952086434691429, 0.6982941690158907, 0.6159300986783536, 0.6650580695700093, 0.8007006003287879, 0.13750802167619447, 0.47121416359091395, 0.5691587732433696, 0.5295784007050042, 0.4938434408506086, 0.4240508430342457, 0.1531205555636086, 0.7965770364050346, 0.4829168465516456, 0.6333246955344933, 0.38682769986244625, 0.5589353890471914, 0.30965836575156913, 0.6133571507425741, 0.5363393546692182, 0.5474540697204298, 0.9680074395956593, 0.29703705077451537, 0.7566858385458134, 0.451244026180727, 0.6224939697452743, 0.9340693900855184, 0.1254375450851024, 0.770680513376406, 0.7273231109206828, 0.410671569380914, 0.19928392436820586, 0.44743622108127745, 0.4991477681643879, 0.5443787589855091, 0.826082779912576, 0.5642536294664222, 0.6762559922350657, 0.39283078357423706, 0.3074847569358159, 0.40732461839200396, 0.5614584986504241, 0.5614584986504241, 0.575628870274347, 0.1938881144566701, 0.6480440770440566, 0.23946299348505806, 0.6110142157087575, 0.32489046344192996, 0.127020290619695, 0.28948900574123104, 0.27970970921902805, 0.5179212029104148, 0.579807192000203, 0.5695619245525361, 0.7471497674522103, 0.6761943115269239, 0.6052803835931642, 0.9048996801452402, 0.632953623191418, 0.7849920634816455, 0.12946409768986655, 0.3899257470968539, 0.37735505673750047, 0.27206300237801306, 0.6356505945299911, 0.9000798247851504, 0.5852448485124296, 0.3537739535016634, 0.8589709040748648, 0.5105041430354158, 0.4760479563081992, 0.3915586115462193, 0.4344526143297297, 0.04825794875232026, 0.25106204840173363, 0.5352062615150248, 0.2084678736174792, 0.5588772074146924, 0.42656597432725707, 0.3395528272139201, 0.5154796814541086, 0.30312695461308037, 0.4684625037801391, 0.13140485141127656, 0.37575572516499556, 0.7087902803012941, 0.22740617784346517, 0.7932370230268412, 0.6977827466507267, 0.8687065743771458, 0.3532210556477622, 0.3005246278528939, 0.8817461779308045, 0.5897758288136841, 0.5117334773877459, 0.2267712913026929, 0.7462523759498982, 0.5055831714989107, 0.6276122794572256, 0.34766968675436505, 0.563322001169588, 0.4035281086421867, 0.44827723495654004, 0.7588644006503809, 0.17560197311170134, 0.2736156405730563, 0.5646478519097824, 0.12788772013874206, 0.8127608550985441, 0.35130933230290007, 0.8842329534318195, 0.5671758377024384, 0.508518787579709, 0.4735654621913231, 0.6614347321502836, 0.7032589073748752, 0.418601168771625, 0.40262233345395115, 0.38045938978299354, 0.6221728234115828, 0.6769388667590319, 0.825791915264051, 0.8036522945246104, 0.5350776523934957, 0.5038683203672731, 0.4187790963850706, 0.3942708224564714, 0.36585282612655, 0.42973128126448334, 0.1395024853671747, 0.36909778672938764, 0.5126700875045708, 0.31128511290513083, 0.5841805470690385, 0.42932394036482613, 0.5168725346003686, 0.9331527243268325, 0.5090935678835011, 0.848083892739094, 0.7288594688776423, 0.23463814542978878, 0.9073343486287574, 0.5445649372592127, 0.8030108083542629, 0.30698149193503155, 0.47724620771884374, 0.49565431290071005, 0.29179072192325783, 0.53941953634433, 0.32642767658125227, 0.5714063949384225, 0.6769388667590319, 0.48314991346809855, 0.3838692085325581, 0.7654355578102645, 0.6807995217458978, 0.7803105409218809, 0.4971816769068883, 0.5662837862370104, 0.32557907866588853, 0.4059739580227363, 0.8621668957327787, 0.4863555612469991, 0.44913520001249685, 0.5044088987161788, 0.018560580499064172, 0.17397747102053363, 0.8203404366189, 0.531551035274026, 0.3951880410340851, 0.6710839680909022, 0.7545393605546251, 0.25029771644034415, 0.31651464458218903, 0.7900402576908969, 0.7649542174153934, 0.6282404390050247, 0.5124469561170844, 0.7501741577575001, 0.3717170374651112, 0.5479204837841629, 0.1799627586960565, 0.8716748635647116, 0.4700369344869263, 0.7044722268129955, 0.7597806244765397, 0.4570971226262448, 0.3688130253756654, 0.5854022956087224, 0.6067015953642416, 0.6092966434658947, 0.5713009051869427, 0.15316343939585397, 0.31191498773739224], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [1.3, 6.3, 2.6, 6.0, 1.2, 2.3, 2.2, 1.1, 2.7, 3.5, 0.9, 1.5, 5.7, 17.85, 4.55, 6.5, 1.0, 3.7, 1.7, 11.8, 8.2, 4.5, 1.5, 2.1, 7.2, 1.9, 1.2, 13.0, 4.6, 1.2, 1.2, 2.1, 1.9, 1.8, 2.0, 13.9, 10.7, 2.0, 4.3, 1.4, 1.1, 1.3, 1.8, 1.2, 11.0, 8.8, 2.5, 8.3, 2.4, 3.5, 16.4, 14.4, 1.4, 5.5, 1.1, 13.3, 2.5, 0.8, 1.2, 6.0, 2.2, 5.0, 2.7, 1.6, 2.6, 2.6, 2.4, 8.1, 7.4, 8.55, 1.5, 6.1, 5.9, 8.3, 5.7, 8.9, 3.6, 1.1, 2.1, 8.6, 2.3, 5.0, 1.1, 10.6, 7.7, 1.1, 1.2, 2.6, 4.2, 2.2, 1.5, 4.9, 1.8, 1.5, 6.2, 7.8, 13.7, 3.2, 1.3, 1.4, 1.1, 13.1, 2.2, 2.3, 1.2, 2.4, 7.7, 4.5, 1.2, 1.9, 1.2, 31.6, 1.2, 2.2, 3.9, 1.4, 2.0, 1.6, 16.5, 2.1, 12.8, 1.5, 10.5, 12.2, 2.2, 1.7, 2.1, 12.1, 1.5, 2.0, 4.0, 1.9, 14.75, 2.5, 4.5, 5.7, 2.6, 2.4, 2.8, 2.7, 0.9, 5.8, 8.6, 4.7, 2.2, 1.4, 6.4, 1.4, 1.7, 14.4, 14.7, 1.4, 1.6, 13.4, 14.9, 5.8, 1.0, 1.8, 8.8, 1.5, 11.4, 2.0, 1.4, 2.9, 6.6, 11.9, 9.9, 5.1, 11.2, 1.4, 2.0, 2.0, 1.6, 11.1, 3.0, 7.6, 1.7, 6.0, 4.8, 2.4, 6.1, 1.2, 1.7, 2.1, 7.0, 1.2, 1.7, 1.5, 3.6, 1.1, 1.8, 2.2, 8.3, 8.0, 2.3, 1.6, 1.3, 1.3, 2.0, 1.1, 2.0, 4.9, 6.5, 1.8, 2.3, 1.9, 5.1, 7.1, 13.9, 10.1, 0.9, 1.4, 3.6, 3.6, 4.2, 1.3, 5.35, 5.9, 6.5, 3.0, 1.1, 18.15, 1.6, 1.6, 2.1, 5.7, 14.4, 14.55, 1.3, 6.2, 4.8, 1.5, 2.9, 12.2, 4.5, 10.2, 1.8, 8.9, 2.8, 7.8, 8.1, 14.2, 1.1, 14.4, 1.8, 6.8, 1.3, 17.4, 6.5, 3.7, 14.6, 12.8, 2.1, 1.6, 1.9, 5.9, 3.6, 4.4, 1.8, 1.7, 12.2, 1.2, 2.6, 4.2, 1.4, 1.7, 4.6, 4.6, 2.0, 1.5, 1.7, 2.1, 7.4, 7.3, 2.2, 13.5, 10.2, 2.0, 2.2, 1.4, 7.0, 3.8, 1.6, 3.9, 1.6, 1.6, 18.4, 10.2, 2.5, 2.3, 1.5, 2.7, 2.1, 4.8, 10.8, 6.9, 1.8, 1.3, 1.2, 4.7, 2.4, 7.4, 5.7, 6.8, 1.5, 2.1, 9.25, 1.0, 18.95, 1.4, 1.8, 15.4, 2.4, 2.0, 1.2, 2.6, 1.5, 1.9, 2.1, 1.5, 1.7, 2.8, 6.3, 3.2, 1.6, 2.1, 10.7, 2.0, 8.2, 5.0, 8.3, 1.3, 3.6, 10.7, 1.9, 19.25, 4.7, 2.5, 15.55, 8.5, 12.4, 6.0, 1.3, 1.4, 2.0, 1.0, 12.2, 2.3, 1.5, 13.1, 10.4, 1.7, 10.2, 1.1, 13.0, 1.5, 2.2, 3.5, 4.0, 3.5, 14.1, 3.4, 1.9, 2.6, 2.2, 11.8, 1.2, 1.4, 2.2, 12.5, 5.4, 1.1, 1.4, 6.2, 4.4, 9.2, 1.8, 2.8, 1.6, 2.5, 11.0, 8.2, 2.9, 11.0, 7.3, 2.6, 15.4, 0.9, 6.9, 3.1, 4.25, 17.8, 4.8, 5.7, 8.6, 3.6, 1.9, 26.05, 4.5, 3.2, 1.9, 1.9, 2.5, 14.6, 7.25, 12.2, 4.7, 1.1, 1.6, 7.7, 1.6, 7.2, 1.2, 1.6, 1.3, 2.3, 6.3, 16.5, 3.3, 1.4, 6.2, 6.3, 7.7, 14.7, 9.8, 1.2, 1.0, 1.4, 5.3, 4.6, 8.65, 2.0, 4.9, 1.2, 1.0, 2.8, 4.2, 3.7, 4.1, 2.7, 2.9, 1.2, 1.2, 9.1, 6.3, 6.9, 13.6, 1.4, 2.1, 1.4, 5.0, 1.5, 1.55, 1.5, 10.4, 4.2, 6.7, 2.3, 9.9, 11.0, 3.2, 1.9, 3.3, 19.1, 1.2, 2.2, 4.9, 1.1, 9.3, 2.6, 1.9, 11.2, 8.0, 13.4, 5.1, 1.95, 4.7, 8.9, 4.8, 1.4, 2.2, 18.0, 17.3, 7.2, 4.1, 8.9, 1.7, 14.9, 1.1, 1.5, 14.6, 2.3, 1.1, 14.2, 1.2, 1.5, 9.6, 5.7, 2.7, 1.4, 12.7, 9.1, 10.5, 14.3, 6.5, 8.1, 1.1, 4.7, 1.0, 4.4, 1.6, 3.6, 7.4, 12.8, 0.8, 1.5, 2.2, 12.2, 1.6, 3.8, 2.8, 1.4, 8.2, 1.0, 1.9, 0.9, 12.15, 2.0, 4.3, 3.5, 5.6, 2.4, 4.2, 15.55, 2.3, 4.0, 8.7, 13.6, 5.4, 1.5, 6.4, 3.1, 15.15, 5.2, 4.8, 1.4, 2.4, 5.9, 2.7, 6.8, 1.1, 11.2, 3.3, 7.5, 2.8, 2.1, 1.1, 1.6, 9.5, 1.9, 1.4, 9.7, 1.3, 14.0, 1.8, 1.6, 3.5, 7.3, 1.1, 7.6, 1.1, 1.9, 1.6, 4.8, 1.5, 1.5, 17.55, 2.2, 15.6, 1.6, 1.6, 4.8, 7.4, 2.1, 12.8, 2.4, 2.7, 7.0, 1.1, 1.8, 1.9, 1.7, 7.9, 3.1, 18.6, 3.0, 6.9, 1.8, 7.4, 8.8, 1.2, 1.8, 14.9, 1.7, 2.8, 15.9, 4.2, 15.5, 1.7, 13.9, 9.65, 3.3, 7.5, 2.1, 2.5, 2.3, 3.3, 3.8, 2.0, 2.2, 10.9, 1.2, 1.6, 2.2, 10.4, 1.9, 12.7, 2.5, 8.1, 1.3, 9.6, 9.2, 14.5, 13.55, 10.5, 1.3, 1.6, 8.1, 1.0, 1.8, 1.1, 2.7, 3.5, 5.1, 1.3], \"xaxis\": \"x\", \"y\": [0.18439386755371057, 0.5750868907731637, 0.1132172353536568, 0.19850047615697952, 0.6950004168934912, 0.41826441672946313, 0.040828937665112974, 0.2145583871630251, 0.09143093017991866, 0.10013996234885614, 0.3658834999306372, 0.587897812361327, 0.23563705889496211, 0.5289998061994394, 0.5981734696485812, 0.5956194363709464, 0.11295199838815062, 0.6349332021584286, 0.09356782907078887, 0.0672754654033908, 0.3541579814831264, 0.11781588709523827, 0.3295981493457443, 0.23443288181779365, 0.13830133810679424, 0.5122546205578999, 0.03626449638205209, 0.32057959349203036, 0.3955164844050859, 0.21320459763992916, 0.08620177311633537, 0.4132497936565127, 0.19514157099220286, 0.028148892894647393, 0.03728071159582558, 0.20213762816504022, 0.39088790332760825, 0.10566618212719892, 0.11466232649727714, 0.09544364959788487, 0.07351553674018241, 0.3657542344632553, 0.05859665738698361, 0.43634835962676355, 0.4827032077898804, 0.516310366273556, 0.6480037931050455, 0.21122004543372697, 0.030344760075157406, 0.22750344576024595, 0.18673438423788624, 0.5460909738859347, 0.0666291073587214, 0.320234954276134, 0.515425573770442, 0.5751179393061847, 0.3262180383913996, 0.12192585741802231, 0.6165939755266235, 0.09365914315081003, 0.44259853952477324, 0.31958523161407537, 0.09228899111547839, 0.22815273642701062, 0.5282447951108347, 0.7777719169155834, 0.13834506443323813, 0.29425092810710396, 0.5300870647699181, 0.031947521718024174, 0.1108646816717751, 0.053339747820140615, 0.14466174791529418, 0.25697560969337485, 0.3383868137798065, 0.30803904997837983, 0.03434255320493995, 0.08689109251212201, 0.46044782253877736, 0.0973761441498977, 0.3449058470623745, 0.024212367984770777, 0.11665042079727428, 0.3333970234137619, 0.1495417879159372, 0.0679784404121434, 0.2360052425084116, 0.39147703437781534, 0.04428683932015287, 0.5381556738404795, 0.4357341587922019, 0.11843845992675284, 0.28107964630818494, 0.06989794698232743, 0.2658605825653322, 0.22408104406272966, 0.15519213452661884, 0.09873339188795927, 0.10739713799337769, 0.4712507279726723, 0.31257930793611366, 0.6259141532505736, 0.1651629894813923, 0.13024327386797574, 0.08242409751896962, 0.55355901104019, 0.11256152515999429, 0.22124325125588817, 0.05838775174278421, 0.6734770756819889, 0.06919042490492266, 0.5773286546676725, 0.5693181878572973, 0.12726917141891614, 0.27983888222674136, 0.15690954109554833, 0.18593824584442387, 0.05432525584274117, 0.33273366741371935, 0.12435295831370408, 0.48112847828662497, 0.2959384652215836, 0.5042039768350125, 0.3749869638443927, 0.7258627386781167, 0.4806866421912115, 0.6234335830956541, 0.4191951896523489, 0.20821728825178332, 0.6343085651912675, 0.27674577061671146, 0.02140654255666985, 0.42849246998341506, 0.1817444030106703, 0.4551538855951942, 0.05087080041524106, 0.516641204200833, 0.6810720245435042, 0.08151744899857294, 0.4475169494323581, 0.03995706953508171, 0.2181819033834006, 0.20372897255157485, 0.24305701296248816, 0.5381556738404795, 0.2358485729609252, 0.051323642447754336, 0.1913631294907303, 0.32154631204965056, 0.31229802093755377, 0.3917329141436472, 0.39462053822053156, 0.3680669306910641, 0.5017894292511481, 0.32120711190509066, 0.0768019282386515, 0.1168769044932052, 0.31545143431826594, 0.12007957373947853, 0.08354361700756141, 0.2180731800932174, 0.7653011157176768, 0.05076221583963347, 0.11739077279846111, 0.3639458403519926, 0.4815918747301601, 0.35998732468747585, 0.457353694020342, 0.5520498791697908, 0.22168281241722143, 0.2132287846887433, 0.4763394582576197, 0.3040153802820409, 0.20749766415549342, 0.3316810644107503, 0.8126297477835096, 0.5749367295182395, 0.27274039590582944, 0.2685808245693546, 0.5172108675362206, 0.33506587713796443, 0.09616672688355288, 0.041108213935392324, 0.10548050716105373, 0.5016695616404938, 0.20022874051447226, 0.14220640128276774, 0.23772630779738468, 0.19606080251004787, 0.2603188495268066, 0.18846597668723208, 0.19827111133563302, 0.261548791893628, 0.4140325207077993, 0.8134796325151183, 0.12265695643958285, 0.6311167068993262, 0.13481820177301163, 0.0932384579037443, 0.14050160114126486, 0.2562249115981724, 0.08547750670655718, 0.08643201081848362, 0.19981675431015722, 0.31390222338706264, 0.06221739913672386, 0.06996303880871468, 0.30029370289300306, 0.4306817897420764, 0.6595343859760441, 0.2839408857911616, 0.20468539219890003, 0.1130196126722065, 0.2360017176902124, 0.13187147729288817, 0.42313120297864704, 0.06964897436687001, 0.1624399718171824, 0.17200815643270417, 0.07333105637055992, 0.2440137653363641, 0.4900110333069776, 0.3085554157386313, 0.03480496731142946, 0.12148031785507996, 0.15002971926037112, 0.5314247042003052, 0.2758453007685677, 0.2151852748992088, 0.2658605825653322, 0.29911225563077193, 0.6594110243744711, 0.49869782335001445, 0.16788254706683048, 0.11816213334465087, 0.08230909248122409, 0.13653212507346946, 0.25639170942272826, 0.06562233405876228, 0.23311900627036541, 0.3756616197417655, 0.46674395287949066, 0.3092684534350997, 0.8337319641197457, 0.8331457111467163, 0.2591056156836542, 0.4778687671024334, 0.2542440524586721, 0.5361036306539362, 0.07073721340803463, 0.4731688813159418, 0.5755848065786346, 0.356689463387698, 0.14225616860197343, 0.21837916002376445, 0.14466174791529418, 0.29899643271856946, 0.4757427727983842, 0.08126799884203029, 0.1296501822378736, 0.3286954654423938, 0.08620177311633537, 0.13855855420831553, 0.05543377339452393, 0.11917834098009661, 0.2613621884509647, 0.11269900223777074, 0.08429051026621415, 0.3393961441870107, 0.07031960314855146, 0.11356777592095357, 0.4853279864284006, 0.1279289285514792, 0.0584572339054259, 0.08612988585012649, 0.3472440907423937, 0.1248029959061332, 0.07502335399434323, 0.19827111133563302, 0.3424151534036639, 0.3065175956815872, 0.13808860398564737, 0.058092197534895806, 0.04082786106581715, 0.1602592849246841, 0.09156161599234125, 0.5036030690663805, 0.2640411824475748, 0.6468038092930676, 0.07201805208597656, 0.22470230804277058, 0.1334773721572423, 0.04847889440667685, 0.2685808245693546, 0.10911308148570098, 0.6764508967260475, 0.6280060594576413, 0.36761958218269275, 0.16019930342079847, 0.17605308658107655, 0.14078981831089854, 0.2384997092801764, 0.13117402490907393, 0.12818959986091483, 0.4161925244315118, 0.12435295831370408, 0.09814942480303201, 0.05480698563416486, 0.3746187330143109, 0.41092354232892336, 0.507894749900129, 0.5137929421583434, 0.08293523366016065, 0.2964416548030494, 0.15236141109070434, 0.4396941021426354, 0.41893931094950754, 0.09113953260801844, 0.10967473999240707, 0.055732078845942, 0.05640314085190745, 0.06176263301115803, 0.06427139521062619, 0.20386133178572885, 0.21597661143113533, 0.7486409492386699, 0.2610715902497083, 0.09465277491899493, 0.5556171757583562, 0.137718889647652, 0.1978940751503777, 0.08472590699531857, 0.356262641598029, 0.14596950445002987, 0.13865818299932142, 0.3088915816821678, 0.11516321289421916, 0.16121169033174265, 0.40573483691789825, 0.34308606282264, 0.36300204724896845, 0.17193414756867276, 0.035926383178341514, 0.34536882843285344, 0.4400180463892147, 0.5165194668234709, 0.23319834124303085, 0.9637923675569924, 0.2635599134550337, 0.6259141532505736, 0.12324962258280003, 0.1256037712827487, 0.1248029959061332, 0.11665042079727428, 0.29081136443782263, 0.12993062945549005, 0.20959981847797426, 0.12385816607190492, 0.16931651488884025, 0.2468284110987674, 0.6181879252747016, 0.3509541008179864, 0.08619429866610873, 0.09537770951135394, 0.8204393830764495, 0.2493836920976743, 0.10367142046182065, 0.11516383353466464, 0.07169627826225977, 0.5400384130096556, 0.2709141565803237, 0.16809050322974173, 0.3421981324687273, 0.812724325423183, 0.1326589750154965, 0.054670132935181304, 0.055346153509382656, 0.8039442695404772, 0.3276168958360183, 0.6561718697940482, 0.6214102617950452, 0.3046829516703813, 0.7853649284745584, 0.7303620793003476, 0.6719087507962026, 0.16000678121984613, 0.579612101366232, 0.6347749924714103, 0.41894393066564606, 0.06936532322770372, 0.28322834609079706, 0.343263893078516, 0.4450860003239352, 0.3090838478611311, 0.408095736797927, 0.11529682880263803, 0.13359771811640497, 0.2417229185475579, 0.10092265889692065, 0.8181934133883563, 0.3777834313813965, 0.8273808576462511, 0.18439353202429143, 0.5148786056082297, 0.11287077888712382, 0.16015059460472458, 0.29672938182784603, 0.36944561074938853, 0.2505850522824452, 0.8467591712977676, 0.3840267097226593, 0.261779448872241, 0.1645479955558209, 0.14631295673285594, 0.4248523287309329, 0.09222807982804315, 0.2121484308544801, 0.33273366741371935, 0.5470626312455473, 0.8294144697045585, 0.25206662215500397, 0.15998368749433245, 0.548322128117227, 0.3917329141436472, 0.15981565308588508, 0.23631147082452741, 0.21082920466209698, 0.1871387197916503, 0.24774693401855818, 0.1913242313933492, 0.16437448769677154, 0.07582203648947516, 0.032541140295091364, 0.06311143057978008, 0.5009235508757715, 0.12343879567504301, 0.445735807756371, 0.40322837553658053, 0.09397553936597514, 0.1598391281143201, 0.26702494168661406, 0.19782301216908982, 0.06831823449824892, 0.5451167746582685, 0.20142160156100697, 0.25747632252511843, 0.4257317671215596, 0.5062318064185062, 0.10278357133077332, 0.10857266292312517, 0.06223864817381186, 0.11377411494697365, 0.14082424186384768, 0.2589321903149734, 0.31776639873426016, 0.07983414941561229, 0.30174211068680845, 0.42532907678292176, 0.23734670470511587, 0.2862296469110084, 0.24790288035387664, 0.5526146374040077, 0.20425399436950087, 0.5166825128498294, 0.12415322942140417, 0.5310696157212036, 0.3866387435262121, 0.14313186082947948, 0.31648660326859934, 0.026792916001305622, 0.7856428374245099, 0.42383310375799566, 0.5944566396871084, 0.6256605001243821, 0.08813642250468567, 0.03544811528140901, 0.06935406654889886, 0.15751976448865512, 0.22608551288474832, 0.3127311228465576, 0.1409438166611655, 0.3285615524533705, 0.3591330499592894, 0.47964497307801546, 0.7143146030302826, 0.14223944449319303, 0.06929054967731618, 0.32120711190509066, 0.16913647442041335, 0.707286257884667, 0.3230684446475647, 0.7616845263358343, 0.4104900542879092, 0.10053249234255524, 0.1106599594415556, 0.1543174595222413, 0.46003879185641183, 0.3811350878514418, 0.07185070571861518, 0.23882593985771994, 0.5344976262521839, 0.11031385635331636, 0.09610989844306939, 0.4955559099445003, 0.07845190603324759, 0.30697262074812925, 0.12767551958037127, 0.4375661224395835, 0.07737023387634634, 0.15307682457740834, 0.05694427046787409, 0.09028836937410878, 0.4011292297732457, 0.6186146927451245, 0.11561676905211238, 0.0993047499370594, 0.08102401279833105, 0.8100206966555492, 0.10768932514586738, 0.15386113005635593, 0.4026560765644126, 0.045535707525545144, 0.08229583319403, 0.08227601457953415, 0.8241544781987433, 0.0759900855540333, 0.5147505197509459, 0.11103147778198663, 0.42144961755966015, 0.24880465403270857, 0.3112403223054312, 0.3282460941643247, 0.28312386083977936, 0.2865521931047814, 0.16537364909659502, 0.4284132019637321, 0.34116073112729894, 0.051142721309942685, 0.10794707492381372, 0.1108646816717751, 0.29201805921023904, 0.07365131996157204, 0.36851051207096197, 0.2556143611338999, 0.07392456180697715, 0.045535707525545144, 0.15025986810093994, 0.4395989822566938, 0.19636656988846957, 0.21018464628148859, 0.15085686628779282, 0.3429118439192298, 0.16104008564300487, 0.2055862423584408, 0.18673310211333727, 0.5528531989583015, 0.20219789553586287, 0.5807830339134155, 0.6112381610839525, 0.07515362639458067, 0.5722084734915175, 0.3654892991508686, 0.1991057466826236, 0.4912569401667811, 0.05850610073101081, 0.3077884117234785, 0.17038242498240874, 0.14066607718466684, 0.10248584652416493, 0.4022873718442217, 0.07205214632436985, 0.35142291824287475, 0.10941760034103376, 0.06679271580157364, 0.05675388891699207, 0.058987921856350156, 0.3660303223369904, 0.28790374422385034, 0.4158290962648631, 0.40710291595796666, 0.09934102670994882, 0.06362846635195196, 0.30921476208988685, 0.23242198019285765, 0.055541210656895434, 0.5297663836663529, 0.10744632778983743, 0.18410212910939194, 0.17721960751489196, 0.1962664672709783, 0.1617648996714035, 0.10584426414108294, 0.5203501665477333, 0.07365131996157204, 0.31578819840495265, 0.35364190165315845, 0.1707951928721818, 0.41655733121321636, 0.15801546378512366, 0.7568436608419439, 0.22368578646300386, 0.0609449253562836, 0.2225096762928218, 0.18587673368692093, 0.05559101133196209, 0.569598540521716, 0.08073228430722412, 0.15724041301590164, 0.12879141548479, 0.4306817897420764, 0.17998791969802397, 0.41280880088413996, 0.5723062335690389, 0.6457404130724687, 0.10420061808672998, 0.12564769853034463, 0.21795029564941848, 0.4720930498870375, 0.11304202998506685, 0.545112257205237, 0.14852188644910969, 0.17217029085021085, 0.336250902618187, 0.48671482860553816, 0.5093433434984792, 0.35847801144896685, 0.3008706318705062, 0.18494609259573758, 0.4199330463236065, 0.04162287990776414, 0.2633909944023186, 0.4252182303976608, 0.4684623303117058, 0.1925553058603695, 0.09610989844306939, 0.09129843496680234, 0.3302708189676917, 0.4199330463236065, 0.11927294568859859, 0.4864154015695107, 0.06472081497616611, 0.6387929002666255, 0.37932906694235924, 0.093713747684541, 0.20627971812824875], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (curr)\", \"type\": \"scatter\", \"x\": [2.5, 4.7, 7.0, 2.3, 19.45, 22.0, 13.15, 1.6, 1.7, 2.3, 4.3, 1.2, 6.4, 7.2, 14.3, 18.1, 7.6, 2.7, 4.9, 1.1, 1.4, 17.2, 4.9, 11.8, 1.6, 1.7, 2.1, 14.8, 0.7, 0.8, 11.95, 1.1, 2.5, 2.3, 1.0, 1.7, 2.3, 1.5, 4.9, 1.4, 4.1, 2.0, 11.2, 15.2, 1.4, 1.7, 3.4, 2.2, 19.3, 6.1, 7.0, 18.35, 6.9, 2.4, 2.6, 1.8, 2.0, 4.2, 10.5, 15.4, 4.2, 8.3, 7.7, 2.9, 10.7, 2.0, 1.4, 1.9, 3.0, 1.6, 2.1, 2.5, 1.3, 1.6, 7.7, 1.2, 18.75, 1.7, 1.0, 1.9, 9.3, 1.6, 12.6, 2.0, 1.7, 1.7, 4.8, 13.7, 1.2, 6.1, 7.1, 1.9, 2.0, 14.3, 1.9, 2.1, 11.7, 3.9, 9.7, 8.1, 2.5, 6.5, 18.1, 1.8, 1.5, 2.1, 1.9, 1.4, 5.1, 13.7, 1.6, 14.5, 1.9, 1.3, 1.2, 10.7, 12.3, 4.9, 8.3, 2.1, 14.95, 1.8, 1.7, 1.6, 2.0, 7.0, 1.2, 11.1, 2.0, 5.1, 1.4, 15.6, 14.3, 1.0, 2.0, 11.0, 1.8, 3.0, 10.4, 6.6, 6.7, 1.7, 1.2, 5.1, 2.3, 12.1, 2.0, 1.6, 1.9, 9.5, 0.8, 13.3, 5.5, 7.7, 1.5, 1.4, 12.1, 8.2, 10.0, 12.6, 2.0, 15.6, 1.4, 13.5, 4.4, 7.8, 1.1, 1.6, 5.6, 8.6, 16.05, 10.4, 1.9, 1.8, 1.9, 1.4, 1.0, 11.6, 10.3, 15.8, 1.5, 5.1, 2.7, 1.1, 15.1, 1.4, 8.1, 17.8, 1.3, 7.9, 2.3, 3.75, 7.8, 1.4, 10.8, 2.0, 1.2, 6.4, 14.5, 11.8, 1.8, 13.2, 14.9, 15.4, 1.25, 15.7, 6.9, 2.2, 12.9, 10.2, 7.3, 5.0, 2.1, 1.1, 6.8, 2.7, 11.1, 9.7, 1.4, 1.6, 11.2, 8.0, 9.2, 6.8, 1.6, 10.4, 2.0, 3.9, 1.2, 1.0, 17.9, 1.6, 17.1, 10.7, 1.9, 8.8, 1.0, 1.4, 14.3, 2.0, 7.7, 2.3, 2.0, 9.6, 0.9, 5.9, 1.5, 5.4, 13.7, 6.1, 1.6, 16.0, 10.7, 10.6, 2.5, 16.3, 9.6, 4.6, 8.9, 2.5, 2.4, 1.6, 11.9, 11.9, 2.6, 1.3, 6.0, 1.6, 1.9, 8.9, 1.5, 2.6, 17.85, 6.4, 2.0, 1.8, 15.6, 2.7, 2.4, 11.2, 2.6, 17.75, 1.15, 1.3, 3.8, 1.2, 0.9, 4.5, 1.35, 2.5, 7.7, 7.0, 8.5, 2.7, 5.2, 2.2, 0.9, 7.8, 15.8, 2.3, 1.8, 2.6, 7.0, 11.9, 12.1, 1.0, 3.1, 10.1, 15.4, 8.1, 1.6, 2.0, 1.3, 17.8, 2.0, 13.6, 1.7, 8.1, 1.3, 2.8, 2.55, 1.7, 17.8, 5.6, 3.45, 10.1, 17.9, 1.4, 8.0, 1.3, 2.5, 11.4, 1.2, 1.6, 2.2, 1.3, 0.8, 1.3, 17.1, 5.2, 8.1, 2.4, 2.0, 2.0, 2.1, 1.3, 8.2, 2.5, 17.1, 1.3, 2.7, 2.0], \"xaxis\": \"x2\", \"y\": [0.18579927887031134, 0.9274202256360236, 0.2569067617886446, 0.17851375722123963, 0.43011516789686843, 0.3951880410340851, 0.35333307802371594, 0.854899199395705, 0.7749695319329993, 0.7150752736216004, 0.5793836726576811, 0.17187478758168062, 0.503776006633781, 0.6517104478925241, 0.5321166645488455, 0.4291031613352281, 0.6295132227815239, 0.446367751604861, 0.12978626497489776, 0.578130474122496, 0.1303225049324246, 0.4589423036505589, 0.6028673022099313, 0.6724998803801079, 0.055171077290688375, 0.28900585249094113, 0.5807441942986169, 0.6324527530146118, 0.32780881811994433, 0.4437792729685527, 0.47375733914823626, 0.6755390392614542, 0.8494338455743565, 0.8432302027568838, 0.3962269303969661, 0.36574887203466033, 0.9780529644634413, 0.6757083557066426, 0.43212531492562845, 0.6428319532862445, 0.2244465690609686, 0.6759712108962084, 0.300575337785698, 0.4848467547623382, 0.24353241802821812, 0.6165640897352094, 0.801889943514816, 0.6831580296641933, 0.4684052737322374, 0.07309555507266852, 0.17397747102053363, 0.548208100621717, 0.16948307959681597, 0.5287139706981401, 0.8097217619362252, 0.48186532860504816, 0.7044722268129955, 0.5458559966555334, 0.6067015953642416, 0.5767206748937392, 0.5416109283549078, 0.7766135747357961, 0.6371580804073698, 0.3290646799011723, 0.53941953634433, 0.7444876216695655, 0.27658524567301757, 0.8518717737266248, 0.685064206005921, 0.7994946846943811, 0.6254668451144636, 0.29898447003196504, 0.36566585814722175, 0.8260679099411251, 0.265003746926769, 0.18277705216857454, 0.6401445853260315, 0.2878944788643705, 0.7379395090268356, 0.6578861964269485, 0.3048731186933995, 0.6479177870210828, 0.5479007895539181, 0.8109237991420157, 0.4555798348891207, 0.35159410271621183, 0.6741813074403022, 0.40366163192193316, 0.3797333752177462, 0.42326140605337403, 0.49450075158901585, 0.7027754368270075, 0.31556666432085356, 0.5737052492708005, 0.5594846166878963, 0.9879213229528466, 0.23907110553933086, 0.7604887601700165, 0.906894853259191, 0.49150798334893764, 0.6693239074263375, 0.635181004157038, 0.4291031613352281, 0.6805197940362542, 0.8579270215873258, 0.42231028799440284, 0.7973836574204367, 0.6209099995125147, 0.617932351579841, 0.5867531689564582, 0.8217385626893267, 0.5766058512754557, 0.6085190813519714, 0.6488649586424557, 0.19466062481522506, 0.4062994677131635, 0.31500574198466447, 0.6106996692323751, 0.48314991346809855, 0.4300926711133176, 0.4623912750166579, 0.18141675383529432, 0.7404949196358439, 0.7960551628311661, 0.6696955469146251, 0.7471897031921468, 0.15222801432328747, 0.4782875749995391, 0.6696955469146251, 0.4617114467660769, 0.0374236133971757, 0.34638250956587036, 0.5737052492708005, 0.35412183815676124, 0.5342599897609015, 0.6273126624389191, 0.1819914526651868, 0.6450640502472667, 0.7576359910572065, 0.6363669366758954, 0.35783776888428775, 0.4555798348891207, 0.2603691587203709, 0.09638465351539516, 0.7889843001267657, 0.3995975535535492, 0.2404138117262561, 0.5134503976671381, 0.7620160241108803, 0.4852174766770502, 0.7934067722809752, 0.5657371707019572, 0.40591517497640706, 0.5142806824729376, 0.4667389755277017, 0.4597803030361328, 0.14211531046105408, 0.4709774325404933, 0.39253304933110444, 0.8152160844894966, 0.6418608562675732, 0.5695619245525361, 0.15898796250578873, 0.4189913516486339, 0.8097376625536354, 0.2776505479619531, 0.14100712613869515, 0.1625374057836978, 0.21879614767173305, 0.26016804821119, 0.5884346274074399, 0.25171266030158634, 0.5556828679884147, 0.2886326125606653, 0.5013044750460076, 0.23728971353361283, 0.6280660923097139, 0.6281218947904323, 0.6226708394296439, 0.1280348372312241, 0.37812375401711507, 0.6218606462016874, 0.446367751604861, 0.5237591509200082, 0.22560064672115399, 0.4159575064805634, 0.43989745285902637, 0.38133093816728936, 0.379388299643832, 0.4244201113870294, 0.8495234946343055, 0.44699506619782237, 0.3402560380560977, 0.16997778820688525, 0.6509841470756508, 0.5589353890471914, 0.49320900326902484, 0.41485179365651337, 0.2850172536812061, 0.5150740024049856, 0.7905789411902706, 0.6660097546858721, 0.5916856454756931, 0.25029771644034415, 0.21820707607863943, 0.23625780462752244, 0.6174344585079109, 0.33885175059010386, 0.8097775874289167, 0.5502791542248897, 0.45232673966787307, 0.5168725346003686, 0.4922951659433321, 0.2710495410551712, 0.5620189509382074, 0.19827785442852286, 0.35653263682836045, 0.4940220265254579, 0.3934632807735441, 0.349631294967786, 0.6543252873397565, 0.6043841099981286, 0.6572212454398962, 0.5323595728841377, 0.4667716613599331, 0.5480891857555714, 0.5933716837007499, 0.5769442381274095, 0.7796710482718338, 0.4721284230669528, 0.5632051337005155, 0.25606657060722404, 0.47304849589761655, 0.4991199345133047, 0.785831825438318, 0.5512091114854263, 0.31651464458218903, 0.192246895102814, 0.5737052492708005, 0.14970485751781393, 0.8257882443178004, 0.7450862811651306, 0.2404138117262561, 0.3428275867057816, 0.2186811050870735, 0.43730933466596944, 0.1325711740116582, 0.33994853494016564, 0.5172250338280965, 0.4543852880840521, 0.6017244994332274, 0.7267617626256621, 0.304103470637073, 0.49511795227452726, 0.4577650902534979, 0.4389063253281036, 0.3428275867057816, 0.6911248892501751, 0.5457123873353599, 0.3395528272139201, 0.5662837862370104, 0.38281068028313525, 0.1899488449656659, 0.1899488449656659, 0.39416742153886597, 0.4473524415330049, 0.5724944828663213, 0.12652799787397961, 0.14917046216496987, 0.4192276293132746, 0.1727250451072272, 0.7329347521090118, 0.2979855805324535, 0.5384433083808008, 0.2944152049751758, 0.5661013076544325, 0.39283078357423706, 0.6503174362647687, 0.7632350838020857, 0.29422440231251745, 0.8446099855685041, 0.3812461384129847, 0.1264117171095669, 0.6995051325026098, 0.7680829457938805, 0.1086082602083136, 0.50228427853815, 0.8303888649041977, 0.15145052047802054, 0.5239967242043768, 0.49461569007297057, 0.7323984730128237, 0.6372335578763709, 0.8485373319296128, 0.21018203617182263, 0.3854703692354019, 0.6209619763202376, 0.6996467359659702, 0.3913887983225227, 0.600932061108284, 0.18141675383529432, 0.32841971343371723, 0.17397747102053363, 0.3943097935149382, 0.5998672378660981, 0.6052803835931642, 0.35501406908939237, 0.4362847089434372, 0.6005057903956104, 0.45095984485898877, 0.5601124581139871, 0.6908342266509375, 0.29066967723125237, 0.5437491575180791, 0.5955595524057149, 0.4226516353037165, 0.552222307965348, 0.5038457784615318, 0.6752568781943777, 0.7880730680059006, 0.09430965090665133, 0.4986183600001317, 0.24112389044610405, 0.3635071851353404, 0.7047195247497422, 0.5251048099479148, 0.5632051337005155, 0.4520037684813636, 0.5271857161160298, 0.36566585814722175, 0.8775119234978208, 0.49474741138534273, 0.17187478758168062, 0.1069918390347242, 0.6371627391106971, 0.19018032574493748, 0.34352259564225396, 0.806114950115292, 0.47304849589761655, 0.5014153035286022, 0.6721952796384192, 0.7507248720260316, 0.38512814216859315, 0.8930847268109882, 0.863224561659591, 0.15108072818859253, 0.7399796913917198, 0.18579927887031134, 0.47304849589761655, 0.2033384066370545, 0.43667652058029827, 0.23252054766636898], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [3.5, 14.3, 1.2, 2.2, 2.3, 1.2, 1.2, 8.0, 2.1, 1.6, 2.7, 1.3, 1.2, 9.65, 4.3, 1.2, 1.4, 2.8, 2.1, 3.2, 14.2, 14.5, 0.9, 1.1, 7.2, 1.2, 9.1, 3.95, 3.6, 4.7, 1.8, 6.2, 15.0, 6.4, 1.5, 1.2, 2.6, 7.9, 3.95, 1.9, 7.5, 2.5, 14.0, 13.0, 2.0, 2.3, 16.85, 1.9, 10.3, 1.7, 2.0, 3.9, 9.3, 1.0, 7.0, 14.1, 8.2, 1.8, 11.4, 1.7, 2.3, 20.3, 5.5, 9.7, 7.1, 2.1, 8.1, 6.7, 1.8, 1.3, 14.4, 2.4, 11.0, 7.4, 13.2, 12.3, 19.95, 1.7, 1.7, 1.9, 1.5, 1.0, 2.4, 2.1, 9.7, 3.1, 1.5, 14.5, 6.6, 1.6, 12.7, 7.4, 3.6, 1.4, 1.6, 6.5, 1.4, 4.6, 1.8, 2.1, 7.1, 9.9, 2.0, 2.1, 14.4, 10.9, 2.0, 9.0, 2.5, 2.8, 13.0, 31.6, 8.2, 1.7, 5.0, 2.2, 2.7, 1.4, 12.2, 3.2, 11.8, 1.5, 2.8, 1.4, 2.1, 2.1, 1.9, 4.7, 2.6, 1.8, 5.1, 1.8, 1.7, 17.5, 1.4, 17.1, 1.6, 2.5, 5.2, 1.6, 4.4, 3.2, 2.8, 8.5, 13.1, 1.2, 13.8, 5.6, 6.2, 1.1, 10.3, 1.0, 11.7, 16.2, 1.6, 2.8, 1.5, 2.0, 1.3, 14.2, 1.6, 2.0, 6.1, 8.2, 2.5, 1.2, 4.6, 2.2, 2.4, 1.1, 1.4, 1.1, 15.2, 4.7, 7.5, 4.2, 1.6, 7.8, 3.5, 2.4, 5.2, 10.8, 1.3, 3.4, 9.0, 1.8, 2.1, 4.8, 20.7, 2.2, 7.4, 17.3, 2.2, 2.3, 4.7, 4.9, 3.7, 1.6, 13.8, 8.2, 5.7, 1.7, 4.4, 5.9, 8.7, 2.1, 4.3, 6.55, 1.6, 12.9, 5.4, 2.2, 1.7, 2.9, 2.2, 7.6, 1.3, 3.3, 6.3, 1.8, 5.3, 7.3, 2.4, 7.1, 13.7, 10.2, 3.0, 5.3, 2.4, 1.5, 4.1, 6.9, 8.0, 7.1, 2.1, 11.8, 3.3, 1.4, 9.1, 1.2, 5.5, 7.9, 11.1, 1.8, 1.9, 2.3, 13.9, 14.5, 1.2, 2.7, 1.6, 12.0, 14.1, 2.7, 12.85, 14.8, 1.6, 1.1, 2.1, 2.7, 2.1, 7.2, 1.2, 5.4, 4.6, 2.0, 2.6, 12.6, 7.4, 10.2, 8.6, 4.2, 2.5, 2.6, 8.8, 1.8, 1.3, 7.2, 1.1, 2.2, 1.8, 1.7, 6.2, 10.8, 7.75, 2.7, 6.6, 1.0, 7.1, 1.5, 3.0, 2.4, 13.3, 2.1, 2.8, 7.75, 15.8, 5.0, 20.8, 6.4, 2.4, 1.4, 4.1, 6.0, 13.2, 2.1, 1.5, 5.4, 1.8, 2.6, 16.8, 5.0, 4.4, 13.0, 1.1, 1.2, 11.6, 1.3, 3.5, 2.9, 5.7, 15.5, 4.8, 15.55, 5.1, 2.7, 3.8, 1.8, 14.2, 5.3, 1.9, 12.5, 2.6, 10.4, 1.2, 4.1, 14.2, 12.5, 8.3, 2.0, 3.8, 10.7, 8.2, 2.1, 1.9, 9.8, 6.5, 0.9, 2.7, 2.6, 13.0, 1.4, 13.4, 16.2, 10.2, 4.9, 2.0, 7.0, 12.7, 2.4, 6.2, 8.6, 2.6, 15.55, 1.4, 7.3, 16.0, 7.0, 16.8, 3.2, 1.2, 6.2, 1.2, 1.0, 4.6, 5.5, 1.1, 10.8, 2.2, 10.2, 11.75, 6.0, 7.4, 7.4, 1.9, 2.1, 1.6, 1.2, 2.4, 5.1, 7.4, 19.95, 3.8, 16.1, 5.4, 2.6, 18.95, 2.3, 2.0, 1.5, 2.1, 4.4, 1.8, 17.5, 2.3, 12.8, 13.3, 1.4, 14.7, 4.7, 1.4, 2.5, 1.1, 1.5, 10.3, 3.0, 6.8, 2.4, 7.1, 7.0, 1.2, 1.8, 2.65, 2.4, 2.1, 2.8, 7.4, 11.5, 1.6, 1.3, 2.6, 1.2, 1.7, 1.4, 1.9, 1.9, 4.3, 13.2, 1.9, 12.8, 12.8, 1.7, 8.6, 5.7, 3.2, 2.0, 1.6, 2.4, 2.0, 2.5, 14.7, 1.8, 1.4, 1.5, 17.55, 1.8, 13.55, 1.0, 12.0, 3.6, 3.85, 4.0, 1.2, 15.4, 6.5, 1.4, 9.1, 1.1, 3.0, 2.5, 6.6, 8.1, 2.4, 15.5, 1.7, 11.3, 5.7, 1.4, 1.4, 2.0, 6.3, 4.7, 2.5, 1.8, 7.4, 9.3, 10.55, 2.9, 1.7, 2.2, 1.5, 14.75, 2.4, 2.4, 3.5, 1.8, 1.5, 2.8, 1.2, 2.0, 1.3, 10.5, 12.8, 1.2, 1.9, 16.0, 7.7, 2.3, 2.9, 1.6, 2.1, 1.1, 1.6, 3.7, 8.0, 1.9, 8.8, 6.7, 7.3, 2.5, 3.7, 2.6, 1.3, 8.3, 1.3, 11.2, 5.2, 4.7, 9.2, 12.7, 2.5, 7.4, 13.2, 1.8, 2.1, 5.25, 3.65, 15.75, 1.9, 13.65, 4.9, 9.15, 1.9, 2.5, 0.9, 14.0, 2.6, 2.8, 1.8, 12.8, 17.5, 8.25, 1.9, 1.6, 1.5, 6.9, 2.4, 1.3, 1.2, 6.7, 14.8, 12.7, 13.7, 2.0, 1.3, 1.6, 9.25, 12.9, 1.0, 4.7, 1.7, 10.8, 1.1, 19.95, 1.1, 1.2, 9.7, 6.7, 1.6, 2.3, 5.3, 13.6, 11.4, 1.6, 1.4, 2.6, 2.4, 10.6, 4.6, 2.2, 1.7, 2.0, 1.5, 5.0, 2.0, 2.6, 4.6, 12.7, 5.7, 6.3, 6.7, 8.2, 7.1, 2.0, 0.8, 2.0, 1.9, 1.3, 1.7, 1.1, 1.1, 9.85, 1.2, 1.1, 2.1, 9.5, 1.7, 8.0, 13.65, 7.9, 4.4, 9.55, 1.1, 7.9, 1.8, 2.2, 1.1, 5.9, 2.4, 6.0, 2.0, 2.9, 1.4, 2.1, 5.2, 5.8, 1.8, 2.0, 2.3, 15.1, 2.3, 16.8, 13.8, 1.5, 12.2, 8.2, 4.3, 8.9], \"xaxis\": \"x2\", \"y\": [0.6660328535674787, 0.4955559099445003, 0.11251030999551548, 0.5313240922219649, 0.7616845263358343, 0.42881839881496897, 0.22146723198036844, 0.2709448900825402, 0.04188686298684474, 0.3198999677935893, 0.586632325439729, 0.3332859260788763, 0.0891770245136605, 0.07249138429342028, 0.0813041402249215, 0.2808128557304226, 0.18155424903412543, 0.14020593233116785, 0.20529540916933675, 0.1755850319354616, 0.5722846846512241, 0.4684623303117058, 0.2863708053899042, 0.4489302200945696, 0.3606737334686688, 0.09834172337505831, 0.1439119889738254, 0.10526388551166177, 0.08976738859769384, 0.15927641460572795, 0.07353544332944184, 0.4894096639868448, 0.24735122968283396, 0.41440459167745447, 0.10107859516115147, 0.4809249647595707, 0.043928674649753696, 0.27268427565697984, 0.07203278686513981, 0.35989685204578803, 0.08410225657903847, 0.09640449279894714, 0.2859044620344169, 0.766491644508495, 0.27194216744256416, 0.11891721880979944, 0.6033870782914414, 0.8445823904457724, 0.4148378249676725, 0.09538880480821377, 0.5822786697287807, 0.2006236885231063, 0.30215903380660414, 0.3526626332448971, 0.22921561702294402, 0.3499358724503807, 0.451050436906263, 0.01968005574460141, 0.3849224947932618, 0.608666907839271, 0.30333177217190177, 0.05732515971384944, 0.08299070223644744, 0.155374347961305, 0.4378217303747408, 0.10641916767178827, 0.3207785913922725, 0.3280003244598044, 0.4747408725557203, 0.27229542413121455, 0.5314247042003052, 0.13834506443323813, 0.652508483608137, 0.1775869136191267, 0.4659209431511335, 0.3288332341233703, 0.47224603889779837, 0.2773569186284155, 0.18590272545123854, 0.6719763059805124, 0.04569198037744582, 0.22473444069733528, 0.0776074933333939, 0.1411968215808168, 0.3654892991508686, 0.06069899520469324, 0.21029328672965164, 0.13919371635861133, 0.16321149678759816, 0.6144435769482088, 0.1388055550317996, 0.0827658987104557, 0.0793107693477757, 0.04994940743047871, 0.46220165202879504, 0.08265172102971341, 0.5554564865761329, 0.10902951494304747, 0.26480674198345266, 0.31816712550642645, 0.20184400370343658, 0.23734670470511587, 0.19264674509953905, 0.03558879485690103, 0.5314247042003052, 0.3013473679880785, 0.8043030592862955, 0.07665185966197174, 0.17816243980233548, 0.14637302723887635, 0.43623195291339645, 0.5773286546676725, 0.06996409198491005, 0.0635191394270278, 0.11839391684253864, 0.03368970372860669, 0.16544292122901683, 0.5002106013252752, 0.20783967621931676, 0.4413184352618238, 0.1377753535318076, 0.017128038770129694, 0.09070427960766203, 0.05237321155563324, 0.46044782253877736, 0.09863911308639095, 0.6058955548956951, 0.07377868677997379, 0.33726125667837825, 0.03705661785513226, 0.03856885477325478, 0.01970319875133708, 0.06623921298607705, 0.655672818127978, 0.36403826442427, 0.375635621083512, 0.25822104517587474, 0.26990817233175546, 0.30316845466795117, 0.21597661143113533, 0.10411587283779344, 0.4582573305440075, 0.28974208538397184, 0.3995654588450376, 0.48407929824265805, 0.2412117545349558, 0.49704114689177337, 0.3112403223054312, 0.13571503940671914, 0.35304273602320047, 0.18963603484652192, 0.06023564559469896, 0.305863422303413, 0.34062746964654456, 0.03532029949184434, 0.20200996882548472, 0.207876095289533, 0.11304202998506685, 0.26487496820305634, 0.46674395287949066, 0.05931266843465788, 0.6063731497207538, 0.053339747820140615, 0.16056749669580483, 0.3366557342021428, 0.18735912995827353, 0.2667542380283816, 0.9197592959547904, 0.13322255285490225, 0.3533185668595151, 0.08763312389948397, 0.343329095265401, 0.1298321532292276, 0.11240742021865013, 0.03412749239977686, 0.23316671381479437, 0.13955591125269062, 0.065615492475942, 0.03940539431326806, 0.04874684240881699, 0.42507109047861347, 0.3720756994829524, 0.20627971812824875, 0.23346983492740092, 0.299872058778726, 0.14688925552714138, 0.20529540916933675, 0.11294333341234963, 0.4523771212155355, 0.15895981664313275, 0.12633289347617382, 0.34801013400503944, 0.063056887931354, 0.09222807982804315, 0.19281104432210028, 0.11843845992675284, 0.1064686731970873, 0.12171087020281346, 0.49704114689177337, 0.4202798549667376, 0.058322454167927695, 0.40418598015134155, 0.7514842711311043, 0.067978575311199, 0.1468497162592186, 0.3655805321171328, 0.36741292271676196, 0.08785516413846428, 0.4223454464089015, 0.09472348251934337, 0.14196098925812006, 0.10013555988874479, 0.32154631204965056, 0.05416575683382341, 0.786126361492164, 0.04696516601190348, 0.26926088858349784, 0.28123172687107445, 0.3094364396730669, 0.04307250962973752, 0.07126159086244754, 0.6143015945908075, 0.495586079448059, 0.46102608015166635, 0.40789311683600216, 0.8929715185951024, 0.1227006502272181, 0.3638055988942468, 0.10470002869891348, 0.29304213908849364, 0.8936703981375603, 0.3534407380188983, 0.0883666731866185, 0.07895584641700149, 0.05166417783587085, 0.4199775765299997, 0.10304865631077798, 0.1041340676595982, 0.11031385635331636, 0.22368578646300386, 0.22137255536682798, 0.0725394352715707, 0.08320759746190642, 0.3577905591727162, 0.36362749207413336, 0.13058702032609693, 0.4306817897420764, 0.4684623303117058, 0.3185463047756948, 0.6991046594229053, 0.33105510290791684, 0.35804773811787727, 0.3499358724503807, 0.17780319308126435, 0.07142366539796174, 0.1504846162366139, 0.28643330026545544, 0.11492102279820171, 0.08716328114311156, 0.12905574960179156, 0.5528531989583015, 0.2852168598030531, 0.3185463047756948, 0.41766807389819915, 0.22818770291371737, 0.10749415552266317, 0.07500089027222667, 0.2150933620687273, 0.4879833184669665, 0.21367083697314282, 0.18281788227943807, 0.11217648511765432, 0.01860460444149037, 0.4990100838788346, 0.3212979959143686, 0.7252893191599291, 0.30018855716775616, 0.2808216200321265, 0.24332849241566534, 0.22583693263898685, 0.307128141019565, 0.12930297020615966, 0.07734813107736227, 0.38078614076753503, 0.037937415915298756, 0.18389331462546077, 0.2015421194948802, 0.10121634311933059, 0.7209948827487924, 0.252131738577411, 0.19866278493931944, 0.5569604587758099, 0.19172534874952063, 0.07516041810443141, 0.18673310211333727, 0.20736440356309183, 0.27568985010185776, 0.1748501221961516, 0.134246332983591, 0.12151400729184814, 0.03860330573341564, 0.16198960071610413, 0.062309112953929935, 0.14943540958877521, 0.46827469198568006, 0.12435295831370408, 0.11768791031746062, 0.10794707492381372, 0.04347111427796346, 0.07423675680829, 0.1602542791395647, 0.19911642350143877, 0.2379444352717226, 0.36664322039668684, 0.10130143557253446, 0.17108028607870185, 0.6143194513817134, 0.5641235853966853, 0.29864316680665437, 0.44752301946823647, 0.13459844499503626, 0.037461465199631894, 0.5002964248569376, 0.4059565893810353, 0.7035957096210382, 0.0629603198376949, 0.25036415064992923, 0.14780834332950044, 0.24800647860056513, 0.10438723399855232, 0.24366911510822187, 0.4574644219698093, 0.8347014835967527, 0.42226245660703365, 0.4073158502222598, 0.47525484003715535, 0.37845934883934684, 0.35325777167774697, 0.4763432908647238, 0.18941100564626978, 0.23853527246002126, 0.27277355193056574, 0.5556171757583562, 0.19481513110659687, 0.7460207524242459, 0.12627308236197843, 0.2115813466591615, 0.4773837842994688, 0.22238536240250728, 0.1978655273089749, 0.32057959349203036, 0.1601330373243487, 0.6256605001243821, 0.34062746964654456, 0.5899158924001677, 0.1273375405407705, 0.6866376712310945, 0.3812864953771038, 0.07918534602430627, 0.10510921928053807, 0.052405178286905496, 0.29010285216427345, 0.5802968836962079, 0.4475494904811408, 0.33107045093633036, 0.6046547135519548, 0.33132995382553565, 0.3391582818855403, 0.37109937806185267, 0.18876467901964422, 0.03244681540368277, 0.6531311156123596, 0.18281848038190407, 0.06840545126676123, 0.23876166598551407, 0.5602062902528231, 0.05478334190217349, 0.18965009362393503, 0.502081053312289, 0.0945975060483667, 0.24937367783354814, 0.14040338921272166, 0.09582424632391484, 0.4879833184669665, 0.07536550594022651, 0.37763546052463404, 0.20240400638142053, 0.06234715971662652, 0.1729504208160284, 0.2536573606029918, 0.1491704939138675, 0.47224603889779837, 0.20734784509414073, 0.1656619584420439, 0.20263687678412212, 0.4576701693643329, 0.3746187330143109, 0.06578487521364562, 0.09359041291034786, 0.15714155813810793, 0.43198081216185935, 0.17693664965610134, 0.14200602748771296, 0.16878839641400256, 0.11131318694256087, 0.43040972974554736, 0.12494266711040569, 0.5286591337585229, 0.3917329141436472, 0.14284790216410748, 0.29931895876037384, 0.3998656181534954, 0.13198036366642862, 0.2166851793268345, 0.164669749255824, 0.3116999397838065, 0.5702002297218003, 0.2867818412254799, 0.05809024612643199, 0.0701620515557333, 0.10493669218879953, 0.03474255021640338, 0.14069518845012563, 0.7697788668098057, 0.44513161239284327, 0.12104291767226882, 0.2823656727566666, 0.28640273091276736, 0.09904459769556595, 0.10889384421684001, 0.1978655273089749, 0.6326587477498924, 0.0766186874204361, 0.07300117689776386, 0.3978521493117628, 0.7293533971641823, 0.24040337450518035, 0.46827469198568006, 0.03737110954461231, 0.48112847828662497, 0.5755848065786346, 0.12151472907643468, 0.332302417201758, 0.3208349144509022, 0.13406270144296106, 0.47820199098358873, 0.024219732643774528, 0.7923035912680444, 0.3099424932714111, 0.8494816644677875, 0.15230116664989468, 0.8795672599938588, 0.34536882843285344, 0.587897812361327, 0.3660303223369904, 0.3074082248441362, 0.1925553058603695, 0.1582957933341015, 0.5297945963993664, 0.1892543681582496, 0.06574637766643598, 0.03286461121245521, 0.6223124217546917, 0.48666930315350876, 0.17200815643270417, 0.27042696199957883, 0.16010429726024444, 0.25291734909108765, 0.22778758435893687, 0.6055190518965303, 0.41989528411161425, 0.2865861541738164, 0.17344095530188786, 0.4163761941495938, 0.24610426408478792, 0.029106329843254564, 0.5849270471051293, 0.09607886499379148, 0.4890296174547498, 0.11193395874659995, 0.3667485749721523, 0.29672938182784603, 0.13696827462710404, 0.03986507081677082, 0.41542023534722683, 0.1642424989032959, 0.041559354155004224, 0.1266666793707928, 0.5259198205822933, 0.42123490919744344, 0.6147437654518444, 0.42849246998341506, 0.04874684240881699, 0.16870816563337898, 0.35179373534084035, 0.4552463954734379, 0.1543174595222413, 0.4641274821418986, 0.1106599594415556, 0.40441066041397966, 0.05916303638108533, 0.24194101851814365, 0.5755848065786346, 0.23631147082452741, 0.04679471849088612, 0.33132995382553565, 0.6031606095022326, 0.16900214819844117, 0.9322526967181247, 0.1065938389205352, 0.0540586741766943, 0.14920224829950646, 0.03054451782098533, 0.13595064656866984, 0.15908339514281045, 0.09402391562754642, 0.27219479721363327, 0.10477531970828624, 0.6046547135519548, 0.04412971358840656, 0.0821245873848182, 0.24953715645213048, 0.24311299470472425, 0.679537413518331, 0.02875041056121841, 0.2874129658970298, 0.17131102264191878, 0.07042427222914205, 0.1577516063520068, 0.39934634677258996, 0.42249259173992826, 0.24940231538328683, 0.46827469198568006, 0.040988937643475554, 0.034828704291737345, 0.26663563965858417, 0.22421743312747255, 0.10716094829621758, 0.7421831263598226, 0.4644511163280224, 0.1591307416719686, 0.21502194578256428, 0.12883185373794437, 0.15520095945599266, 0.04280666734842442, 0.06928764484923078, 0.3578757504587543, 0.0760792945579073, 0.06637805380770656, 0.5755848065786346, 0.4326356954473739, 0.16985579355455038, 0.47152805642545803, 0.11644579282256762, 0.11790522998710073, 0.5438286352264949, 0.41561805514360906, 0.050606352251634235, 0.21836830194439782, 0.22298545275517268, 0.1504846162366139, 0.16819644397314482, 0.47796113776613436, 0.14100197907825862, 0.7878397890034206, 0.12176963827920351, 0.09814942480303201, 0.23162396036129984, 0.04400104962869911, 0.061588508633294015, 0.2774601068082493, 0.40816383821078206, 0.14036214651023216, 0.11837607594274324, 0.0703155477214753, 0.17002415827487982, 0.24611532014486182, 0.06874641727313702, 0.30975746960573625, 0.07004288447243323, 0.6453829176356538, 0.3880412370469972, 0.10205495289732236, 0.12171087020281346, 0.38550692709735157, 0.4398162761337091, 0.5769741243450848, 0.48842976274850136, 0.3866799681687785, 0.17129518728202664, 0.5711206597512044, 0.4456070955069118, 0.4585850027539752, 0.25462747480751524, 0.34771016550763867, 0.35548618548401445, 0.07878090041588082, 0.3008706318705062, 0.08117751180329491, 0.055511805197920094, 0.1600174453683395, 0.35597309965685686, 0.5473978930443646, 0.3321771897262046, 0.14643302530661162, 0.7653011157176768, 0.24188431843396252, 0.16704799028757666, 0.41136103198090634, 0.5749869949413896, 0.709238838470871, 0.09340318303147321, 0.602429869503323, 0.04154705947390969, 0.7519582179986716, 0.15993940416551844, 0.04372375151311325, 0.4076899811241429, 0.4644511163280224, 0.3133137248525114, 0.24628490675063597, 0.06972977174174444, 0.15949948541388637, 0.2241543425141257, 0.1729876202034616, 0.07290025122558275, 0.1220000714032804, 0.36493953208423235, 0.09420126302076737, 0.026726938234992392, 0.7199273032686843, 0.4606762448039463, 0.04906818437448113, 0.19446415942665518, 0.14876853598344464, 0.3247816953453747, 0.023320858692869595, 0.7310618090422621, 0.48944479260603346, 0.20357574295749958, 0.0840537250624015, 0.5368744051465595, 0.21101467800102214, 0.46682279298460017, 0.3749869638443927, 0.46592999202179275, 0.10188412989688433, 0.15751976448865512], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"residual.sugar\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"residual.sugar\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}}, {\"id\": \"All_chlorides\", \"params\": {\"data\": [{\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Reference<br>chlorides=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [0.037, 0.054, 0.051, 0.039, 0.046, 0.086, 0.033, 0.032, 0.032, 0.071, 0.037, 0.069, 0.044, 0.049, 0.053, 0.061, 0.036, 0.1, 0.033, 0.035, 0.038, 0.034, 0.051, 0.034, 0.039, 0.048, 0.029, 0.033, 0.05, 0.029, 0.063, 0.062, 0.032, 0.045, 0.029, 0.05, 0.038, 0.03, 0.032, 0.02, 0.033, 0.05, 0.046, 0.035, 0.043, 0.058, 0.08, 0.029, 0.074, 0.033, 0.058, 0.044, 0.039, 0.042, 0.037, 0.076, 0.03, 0.02, 0.04, 0.034, 0.064, 0.035, 0.044, 0.042, 0.088, 0.085, 0.012, 0.047, 0.069, 0.02, 0.039, 0.032, 0.047, 0.05, 0.061, 0.05, 0.078, 0.034, 0.073, 0.038, 0.047, 0.032, 0.033, 0.035, 0.034, 0.035, 0.044, 0.086, 0.04, 0.084, 0.037, 0.035, 0.04, 0.044, 0.046, 0.031, 0.035, 0.035, 0.04, 0.046, 0.042, 0.05, 0.091, 0.05, 0.037, 0.048, 0.053, 0.048, 0.036, 0.064, 0.05, 0.053, 0.024, 0.054, 0.043, 0.021, 0.042, 0.052, 0.04, 0.074, 0.062, 0.052, 0.043, 0.053, 0.078, 0.084, 0.074, 0.045, 0.031, 0.084, 0.034, 0.036, 0.042, 0.08, 0.062, 0.035, 0.092, 0.062, 0.038, 0.092, 0.049, 0.041, 0.046, 0.04, 0.084, 0.044, 0.036, 0.031, 0.077, 0.051, 0.051, 0.073, 0.036, 0.046, 0.051, 0.038, 0.043, 0.042, 0.027, 0.039, 0.036, 0.083, 0.044, 0.077, 0.033, 0.043, 0.041, 0.035, 0.036, 0.036, 0.071, 0.082, 0.039, 0.033, 0.087, 0.044, 0.076, 0.05, 0.037, 0.08, 0.046, 0.044, 0.054, 0.031, 0.045, 0.047, 0.037, 0.068, 0.04, 0.044, 0.026, 0.087, 0.032, 0.036, 0.082, 0.028, 0.06, 0.048, 0.019, 0.026, 0.056, 0.034, 0.041, 0.072, 0.043, 0.057, 0.062, 0.042, 0.057, 0.053, 0.057, 0.024, 0.04, 0.035, 0.031, 0.045, 0.029, 0.038, 0.029, 0.095, 0.039, 0.042, 0.044, 0.032, 0.074, 0.025, 0.067, 0.047, 0.047, 0.046, 0.041, 0.049, 0.072, 0.042, 0.051, 0.037, 0.034, 0.046, 0.028, 0.036, 0.024, 0.058, 0.154, 0.048, 0.114, 0.047, 0.043, 0.064, 0.039, 0.029, 0.044, 0.053, 0.171, 0.075, 0.081, 0.047, 0.046, 0.184, 0.038, 0.062, 0.05, 0.063, 0.041, 0.047, 0.036, 0.032, 0.028, 0.08, 0.063, 0.038, 0.042, 0.045, 0.041, 0.039, 0.021, 0.06, 0.039, 0.068, 0.087, 0.194, 0.042, 0.037, 0.028, 0.026, 0.024, 0.084, 0.051, 0.054, 0.114, 0.048, 0.038, 0.029, 0.093, 0.037, 0.048, 0.056, 0.074, 0.041, 0.046, 0.04, 0.069, 0.044, 0.039, 0.049, 0.033, 0.074, 0.034, 0.104, 0.038, 0.145, 0.073, 0.05, 0.056, 0.038, 0.043, 0.082, 0.049, 0.033, 0.042, 0.029, 0.014, 0.144, 0.035, 0.03, 0.034, 0.066, 0.042, 0.1, 0.055, 0.058, 0.026, 0.045, 0.071, 0.056, 0.035, 0.043, 0.03, 0.068, 0.039, 0.047, 0.051, 0.022, 0.035, 0.041, 0.058, 0.04, 0.048, 0.065, 0.02, 0.05, 0.046, 0.048, 0.039, 0.033, 0.047, 0.037, 0.081, 0.037, 0.104, 0.03, 0.053, 0.049, 0.067, 0.066, 0.08, 0.048, 0.048, 0.041, 0.079, 0.046, 0.043, 0.043, 0.041, 0.042, 0.032, 0.027, 0.033, 0.095, 0.057, 0.08, 0.071, 0.024, 0.096, 0.052, 0.045, 0.031, 0.214, 0.048, 0.041, 0.026, 0.032, 0.047, 0.034, 0.035, 0.045, 0.067, 0.052, 0.031, 0.032, 0.066, 0.068, 0.079, 0.044, 0.043, 0.028, 0.041, 0.031, 0.033, 0.063, 0.045, 0.039, 0.041, 0.052, 0.034, 0.046, 0.045, 0.034, 0.04, 0.054, 0.06, 0.05, 0.029, 0.047, 0.051, 0.055, 0.031, 0.057, 0.064, 0.036, 0.042, 0.033, 0.027, 0.03, 0.026, 0.052, 0.024, 0.075, 0.103, 0.035, 0.094, 0.038, 0.047, 0.028, 0.029, 0.042, 0.052, 0.045, 0.06, 0.066, 0.037, 0.035, 0.036, 0.026, 0.036, 0.045, 0.066, 0.036, 0.079, 0.047, 0.035, 0.066, 0.078, 0.07, 0.045, 0.034, 0.072, 0.036, 0.026, 0.05, 0.052, 0.079, 0.058, 0.051, 0.044, 0.026, 0.038, 0.036, 0.048, 0.056, 0.045, 0.095, 0.054, 0.047, 0.039, 0.061, 0.036, 0.031, 0.051, 0.029, 0.063, 0.048, 0.076, 0.058, 0.039, 0.059, 0.041, 0.057, 0.043, 0.044, 0.042, 0.049, 0.036, 0.031, 0.058, 0.027, 0.048, 0.027, 0.034, 0.027, 0.055, 0.039, 0.025, 0.053, 0.042, 0.034, 0.024, 0.033, 0.048, 0.028, 0.034, 0.054, 0.033, 0.028, 0.036, 0.097, 0.019, 0.039, 0.054, 0.045, 0.036, 0.087, 0.098, 0.044, 0.043, 0.037, 0.087, 0.047, 0.041, 0.054, 0.039, 0.048, 0.041, 0.04, 0.051, 0.029, 0.033, 0.104, 0.053, 0.042, 0.051, 0.022, 0.031, 0.044, 0.049, 0.034, 0.078, 0.045, 0.089, 0.056, 0.036, 0.18, 0.035, 0.031, 0.048, 0.044, 0.037, 0.038, 0.043, 0.034, 0.045, 0.039, 0.047, 0.028, 0.019, 0.039, 0.022, 0.05, 0.025, 0.072, 0.046, 0.032, 0.03, 0.034, 0.064, 0.045, 0.076, 0.036, 0.041, 0.041, 0.032, 0.11, 0.031, 0.047, 0.041, 0.039, 0.036, 0.038, 0.065, 0.037, 0.054, 0.055, 0.046, 0.047, 0.041, 0.08, 0.046, 0.037, 0.064, 0.031, 0.057, 0.041, 0.092, 0.04, 0.084, 0.039, 0.06, 0.04, 0.047, 0.062, 0.148, 0.045, 0.035, 0.062, 0.119, 0.031, 0.051, 0.04, 0.028, 0.046, 0.031, 0.119, 0.044, 0.045, 0.053, 0.031, 0.033, 0.063, 0.046, 0.043, 0.083, 0.023, 0.107, 0.039, 0.038, 0.036], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Current<br>chlorides=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [0.068, 0.058, 0.045, 0.044, 0.076, 0.041, 0.037, 0.036, 0.033, 0.036, 0.102, 0.039, 0.033, 0.026, 0.03, 0.04, 0.07, 0.032, 0.078, 0.028, 0.056, 0.045, 0.05, 0.04, 0.04, 0.031, 0.044, 0.038, 0.035, 0.029, 0.032, 0.059, 0.053, 0.034, 0.034, 0.122, 0.035, 0.05, 0.047, 0.096, 0.036, 0.026, 0.034, 0.043, 0.08, 0.065, 0.054, 0.079, 0.039, 0.036, 0.073, 0.034, 0.031, 0.042, 0.039, 0.053, 0.044, 0.05, 0.039, 0.414, 0.054, 0.037, 0.029, 0.036, 0.036, 0.042, 0.061, 0.037, 0.05, 0.055, 0.067, 0.012, 0.04, 0.038, 0.046, 0.048, 0.074, 0.041, 0.059, 0.171, 0.042, 0.037, 0.065, 0.03, 0.035, 0.194, 0.08, 0.048, 0.036, 0.049, 0.046, 0.039, 0.037, 0.035, 0.047, 0.037, 0.091, 0.035, 0.071, 0.071, 0.027, 0.047, 0.072, 0.034, 0.067, 0.051, 0.072, 0.023, 0.038, 0.025, 0.033, 0.053, 0.026, 0.024, 0.055, 0.23, 0.043, 0.057, 0.04, 0.083, 0.03, 0.03, 0.067, 0.029, 0.073, 0.074, 0.088, 0.029, 0.073, 0.04, 0.019, 0.075, 0.043, 0.045, 0.05, 0.049, 0.062, 0.094, 0.06, 0.034, 0.046, 0.071, 0.095, 0.036, 0.046, 0.036, 0.048, 0.087, 0.032, 0.043, 0.039, 0.031, 0.051, 0.043, 0.029, 0.038, 0.058, 0.062, 0.047, 0.058, 0.032, 0.078, 0.032, 0.034, 0.08, 0.034, 0.032, 0.084, 0.065, 0.137, 0.022, 0.04, 0.046, 0.055, 0.027, 0.04, 0.048, 0.031, 0.035, 0.078, 0.037, 0.042, 0.036, 0.093, 0.039, 0.077, 0.078, 0.042, 0.045, 0.081, 0.015, 0.051, 0.028, 0.045, 0.037, 0.035, 0.041, 0.027, 0.048, 0.042, 0.038, 0.038, 0.047, 0.017, 0.036, 0.038, 0.036, 0.074, 0.046, 0.044, 0.046, 0.037, 0.077, 0.029, 0.071, 0.025, 0.046, 0.041, 0.022, 0.047, 0.04, 0.044, 0.086, 0.045, 0.049, 0.071, 0.031, 0.054, 0.072, 0.04, 0.074, 0.05, 0.028, 0.028, 0.072, 0.055, 0.034, 0.047, 0.036, 0.055, 0.043, 0.031, 0.032, 0.057, 0.077, 0.068, 0.057, 0.045, 0.06, 0.077, 0.053, 0.056, 0.053, 0.038, 0.042, 0.053, 0.035, 0.031, 0.033, 0.049, 0.078, 0.04, 0.06, 0.042, 0.08, 0.031, 0.044, 0.032, 0.044, 0.055, 0.044, 0.04, 0.037, 0.087, 0.043, 0.078, 0.032, 0.047, 0.035, 0.062, 0.413, 0.034, 0.028, 0.033, 0.032, 0.077, 0.021, 0.031, 0.044, 0.056, 0.078, 0.214, 0.05, 0.062, 0.034, 0.031, 0.052, 0.04, 0.031, 0.034, 0.029, 0.043, 0.041, 0.034, 0.067, 0.074, 0.033, 0.054, 0.034, 0.043, 0.04, 0.027, 0.071, 0.053, 0.035, 0.045, 0.032, 0.035, 0.044, 0.057, 0.033, 0.036, 0.06, 0.058, 0.11, 0.032, 0.044, 0.132, 0.038, 0.038, 0.08, 0.035, 0.093, 0.043, 0.176, 0.054, 0.041, 0.046, 0.255, 0.085, 0.021, 0.036, 0.055, 0.079, 0.076, 0.039, 0.028, 0.051, 0.088, 0.033, 0.033, 0.047, 0.044, 0.043, 0.049, 0.031, 0.083, 0.04, 0.043, 0.07, 0.025, 0.034, 0.084, 0.037, 0.076, 0.046, 0.044, 0.063, 0.037, 0.049, 0.024, 0.046, 0.039, 0.041, 0.118, 0.117, 0.036, 0.028, 0.064, 0.038, 0.03, 0.022, 0.045, 0.044, 0.036, 0.054, 0.05, 0.026, 0.043, 0.036, 0.032, 0.074, 0.027, 0.053, 0.048, 0.077, 0.038, 0.065, 0.029, 0.027, 0.036, 0.027, 0.022, 0.042, 0.042, 0.056, 0.039, 0.027, 0.051, 0.035, 0.076, 0.048, 0.033, 0.152, 0.057, 0.092, 0.036, 0.085, 0.027, 0.023, 0.04, 0.041, 0.085, 0.243, 0.084, 0.039, 0.043, 0.036, 0.021, 0.045, 0.033, 0.046, 0.037, 0.029, 0.065, 0.081, 0.044, 0.067, 0.028, 0.062, 0.053, 0.054, 0.053, 0.123, 0.031, 0.082, 0.048, 0.059, 0.075, 0.077, 0.045, 0.097, 0.041, 0.069, 0.05, 0.031, 0.053, 0.037, 0.066, 0.061, 0.042, 0.036, 0.052, 0.073, 0.029, 0.047, 0.031, 0.037, 0.036, 0.105, 0.045, 0.035, 0.075, 0.05, 0.057, 0.026, 0.118, 0.034, 0.034, 0.042, 0.039, 0.031, 0.097, 0.075, 0.052, 0.03, 0.037, 0.035, 0.075, 0.078, 0.067, 0.042, 0.078, 0.076, 0.049, 0.118, 0.041, 0.089, 0.059, 0.073, 0.036, 0.044, 0.053, 0.031, 0.034, 0.044, 0.043, 0.034, 0.076, 0.035, 0.07, 0.046, 0.037, 0.048, 0.043, 0.03, 0.084, 0.097, 0.046, 0.063, 0.03, 0.332, 0.033, 0.053, 0.041, 0.061, 0.024, 0.035, 0.034, 0.047, 0.091, 0.052, 0.067, 0.021, 0.216, 0.053, 0.121, 0.035, 0.114, 0.048, 0.046, 0.051, 0.066, 0.046, 0.025, 0.031, 0.119, 0.109, 0.021, 0.053, 0.041, 0.02, 0.05, 0.067, 0.031, 0.041, 0.086, 0.036, 0.029, 0.022, 0.053, 0.038, 0.056, 0.086, 0.057, 0.026, 0.034, 0.033, 0.032, 0.03, 0.06, 0.039, 0.047, 0.032, 0.028, 0.043, 0.04, 0.032, 0.046, 0.042, 0.117, 0.05, 0.035, 0.027, 0.058, 0.049, 0.083, 0.032, 0.044, 0.038, 0.084, 0.051, 0.047, 0.045, 0.12, 0.079, 0.031, 0.04, 0.035, 0.039, 0.055, 0.032, 0.045, 0.026, 0.034, 0.083, 0.071, 0.037, 0.033, 0.045, 0.046, 0.055, 0.048, 0.034, 0.083, 0.03, 0.03, 0.05, 0.048, 0.036, 0.029, 0.036, 0.027, 0.057, 0.046, 0.035, 0.046, 0.045, 0.075, 0.033, 0.082, 0.085, 0.043, 0.049, 0.032, 0.055, 0.16, 0.079, 0.034, 0.03, 0.051, 0.048, 0.047, 0.038, 0.053, 0.055, 0.069, 0.048], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Reference<br>chlorides=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [0.05, 0.044, 0.031, 0.09, 0.091, 0.086, 0.043, 0.09, 0.053, 0.054, 0.068, 0.041, 0.039, 0.05, 0.052, 0.117, 0.08, 0.172, 0.05, 0.081, 0.049, 0.048, 0.086, 0.028, 0.067, 0.092, 0.041, 0.088, 0.044, 0.054, 0.068, 0.04, 0.039, 0.039, 0.06, 0.059, 0.039, 0.045, 0.07, 0.045, 0.112, 0.104, 0.047, 0.055, 0.107, 0.059, 0.051, 0.032, 0.047, 0.076, 0.077, 0.061, 0.138, 0.089, 0.053, 0.239, 0.045, 0.048, 0.142, 0.08, 0.05, 0.055, 0.067, 0.05, 0.097, 0.047, 0.043, 0.077, 0.076, 0.024, 0.045, 0.08, 0.051, 0.041, 0.044, 0.033, 0.039, 0.062, 0.098, 0.026, 0.05, 0.037, 0.049, 0.082, 0.068, 0.112, 0.041, 0.047, 0.044, 0.044, 0.08, 0.044, 0.085, 0.051, 0.066, 0.044, 0.055, 0.058, 0.048, 0.056, 0.056, 0.082, 0.034, 0.054, 0.069, 0.467, 0.042, 0.038, 0.045, 0.044, 0.066, 0.027, 0.069, 0.029, 0.082, 0.096, 0.047, 0.047, 0.08, 0.049, 0.047, 0.048, 0.049, 0.038, 0.05, 0.056, 0.041, 0.064, 0.092, 0.04, 0.037, 0.105, 0.209, 0.047, 0.045, 0.063, 0.026, 0.055, 0.05, 0.08, 0.034, 0.039, 0.037, 0.04, 0.041, 0.051, 0.093, 0.04, 0.084, 0.073, 0.052, 0.087, 0.04, 0.079, 0.06, 0.084, 0.105, 0.044, 0.036, 0.03, 0.035, 0.087, 0.07, 0.052, 0.078, 0.034, 0.05, 0.055, 0.108, 0.045, 0.046, 0.053, 0.07, 0.043, 0.1, 0.068, 0.08, 0.042, 0.074, 0.044, 0.05, 0.082, 0.053, 0.056, 0.047, 0.044, 0.052, 0.031, 0.037, 0.044, 0.096, 0.039, 0.047, 0.032, 0.049, 0.084, 0.055, 0.061, 0.049, 0.09, 0.046, 0.205, 0.205, 0.059, 0.046, 0.05, 0.046, 0.083, 0.049, 0.027, 0.05, 0.047, 0.054, 0.056, 0.063, 0.044, 0.045, 0.03, 0.301, 0.034, 0.084, 0.04, 0.039, 0.049, 0.044, 0.052, 0.043, 0.057, 0.046, 0.075, 0.034, 0.04, 0.057, 0.085, 0.04, 0.026, 0.07, 0.02, 0.051, 0.043, 0.099, 0.066, 0.053, 0.24, 0.04, 0.09, 0.085, 0.043, 0.052, 0.07, 0.104, 0.042, 0.039, 0.092, 0.056, 0.047, 0.067, 0.039, 0.058, 0.091, 0.052, 0.052, 0.051, 0.062, 0.05, 0.046, 0.044, 0.049, 0.071, 0.073, 0.058, 0.29, 0.058, 0.044, 0.048, 0.04, 0.091, 0.041, 0.06, 0.04, 0.103, 0.081, 0.041, 0.07, 0.069, 0.046, 0.039, 0.054, 0.026, 0.048, 0.031, 0.05, 0.047, 0.029, 0.083, 0.111, 0.053, 0.056, 0.046, 0.081, 0.041, 0.047, 0.081, 0.05, 0.087, 0.042, 0.05, 0.08, 0.152, 0.098, 0.186, 0.031, 0.081, 0.05, 0.099, 0.048, 0.063, 0.084, 0.04, 0.114, 0.114, 0.048, 0.047, 0.08, 0.047, 0.048, 0.096, 0.046, 0.077, 0.042, 0.048, 0.08, 0.049, 0.052, 0.038, 0.077, 0.048, 0.073, 0.037, 0.054, 0.051, 0.052, 0.037, 0.079, 0.035, 0.074, 0.095, 0.046, 0.046, 0.046, 0.04, 0.07, 0.042, 0.049, 0.047], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Current<br>chlorides=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [0.088, 0.06, 0.036, 0.04, 0.043, 0.048, 0.032, 0.078, 0.078, 0.063, 0.054, 0.036, 0.039, 0.048, 0.054, 0.046, 0.052, 0.098, 0.032, 0.03, 0.036, 0.036, 0.035, 0.065, 0.04, 0.035, 0.083, 0.054, 0.028, 0.044, 0.04, 0.077, 0.081, 0.072, 0.054, 0.045, 0.078, 0.079, 0.055, 0.066, 0.026, 0.073, 0.069, 0.047, 0.048, 0.048, 0.076, 0.118, 0.051, 0.025, 0.046, 0.084, 0.034, 0.094, 0.084, 0.077, 0.074, 0.095, 0.04, 0.043, 0.095, 0.037, 0.048, 0.098, 0.098, 0.06, 0.414, 0.076, 0.102, 0.072, 0.115, 0.046, 0.036, 0.088, 0.031, 0.04, 0.052, 0.029, 0.044, 0.074, 0.062, 0.078, 0.045, 0.084, 0.04, 0.028, 0.037, 0.044, 0.041, 0.071, 0.05, 0.043, 0.091, 0.045, 0.08, 0.137, 0.035, 0.17, 0.062, 0.04, 0.092, 0.027, 0.046, 0.073, 0.047, 0.062, 0.146, 0.057, 0.051, 0.045, 0.069, 0.059, 0.078, 0.053, 0.038, 0.029, 0.051, 0.158, 0.05, 0.105, 0.044, 0.028, 0.051, 0.082, 0.076, 0.088, 0.036, 0.034, 0.076, 0.047, 0.016, 0.054, 0.045, 0.036, 0.082, 0.047, 0.053, 0.077, 0.086, 0.041, 0.036, 0.04, 0.031, 0.036, 0.071, 0.049, 0.057, 0.066, 0.079, 0.057, 0.034, 0.048, 0.07, 0.045, 0.076, 0.057, 0.035, 0.046, 0.052, 0.211, 0.089, 0.063, 0.039, 0.038, 0.086, 0.031, 0.036, 0.036, 0.046, 0.052, 0.058, 0.062, 0.049, 0.042, 0.073, 0.033, 0.048, 0.044, 0.047, 0.042, 0.033, 0.041, 0.098, 0.048, 0.06, 0.032, 0.212, 0.034, 0.046, 0.053, 0.078, 0.05, 0.038, 0.039, 0.041, 0.08, 0.051, 0.043, 0.051, 0.094, 0.05, 0.051, 0.06, 0.052, 0.023, 0.045, 0.046, 0.077, 0.042, 0.041, 0.052, 0.053, 0.064, 0.046, 0.048, 0.017, 0.063, 0.036, 0.174, 0.046, 0.043, 0.053, 0.046, 0.045, 0.055, 0.037, 0.088, 0.059, 0.042, 0.068, 0.066, 0.043, 0.05, 0.037, 0.09, 0.056, 0.038, 0.039, 0.045, 0.045, 0.096, 0.094, 0.057, 0.054, 0.041, 0.041, 0.06, 0.045, 0.042, 0.048, 0.08, 0.065, 0.029, 0.045, 0.142, 0.038, 0.054, 0.061, 0.105, 0.099, 0.114, 0.044, 0.046, 0.046, 0.053, 0.053, 0.044, 0.044, 0.036, 0.055, 0.053, 0.092, 0.037, 0.057, 0.044, 0.042, 0.049, 0.082, 0.089, 0.071, 0.081, 0.044, 0.023, 0.044, 0.176, 0.032, 0.045, 0.053, 0.052, 0.081, 0.056, 0.044, 0.055, 0.077, 0.05, 0.064, 0.032, 0.046, 0.057, 0.095, 0.028, 0.093, 0.046, 0.043, 0.056, 0.03, 0.09, 0.05, 0.059, 0.054, 0.079, 0.084, 0.046, 0.046, 0.059, 0.05, 0.073, 0.052, 0.042, 0.042, 0.085, 0.066, 0.059, 0.043, 0.088, 0.053, 0.066, 0.075, 0.038, 0.036, 0.079, 0.051, 0.036, 0.033, 0.071, 0.036, 0.037, 0.058, 0.05, 0.043, 0.046, 0.078, 0.076, 0.08, 0.2, 0.036, 0.05, 0.088, 0.05, 0.036, 0.053, 0.031], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Reference\", \"x\": 0.245, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Current\", \"x\": 0.755, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"barmode\": \"overlay\", \"legend\": {\"title\": {\"text\": \"target\"}, \"tracegroupgap\": 0}, \"margin\": {\"t\": 60}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.49], \"title\": {\"text\": \"chlorides\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.51, 1.0], \"matches\": \"x\", \"title\": {\"text\": \"chlorides\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"count\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}}}}, {\"id\": \"chlorides_good\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (ref)\", \"type\": \"scatter\", \"x\": [0.037, 0.054, 0.051, 0.039, 0.046, 0.086, 0.033, 0.032, 0.032, 0.071, 0.037, 0.069, 0.044, 0.049, 0.053, 0.061, 0.036, 0.1, 0.033, 0.035, 0.038, 0.034, 0.051, 0.034, 0.039, 0.048, 0.029, 0.033, 0.05, 0.029, 0.063, 0.062, 0.032, 0.045, 0.029, 0.05, 0.038, 0.03, 0.032, 0.02, 0.033, 0.05, 0.046, 0.035, 0.043, 0.058, 0.08, 0.029, 0.074, 0.033, 0.058, 0.044, 0.039, 0.042, 0.037, 0.076, 0.03, 0.02, 0.04, 0.034, 0.064, 0.035, 0.044, 0.042, 0.088, 0.085, 0.012, 0.047, 0.069, 0.02, 0.039, 0.032, 0.047, 0.05, 0.061, 0.05, 0.078, 0.034, 0.073, 0.038, 0.047, 0.032, 0.033, 0.035, 0.034, 0.035, 0.044, 0.086, 0.04, 0.084, 0.037, 0.035, 0.04, 0.044, 0.046, 0.031, 0.035, 0.035, 0.04, 0.046, 0.042, 0.05, 0.091, 0.05, 0.037, 0.048, 0.053, 0.048, 0.036, 0.064, 0.05, 0.053, 0.024, 0.054, 0.043, 0.021, 0.042, 0.052, 0.04, 0.074, 0.062, 0.052, 0.043, 0.053, 0.078, 0.084, 0.074, 0.045, 0.031, 0.084, 0.034, 0.036, 0.042, 0.08, 0.062, 0.035, 0.092, 0.062, 0.038, 0.092, 0.049, 0.041, 0.046, 0.04, 0.084, 0.044, 0.036, 0.031, 0.077, 0.051, 0.051, 0.073, 0.036, 0.046, 0.051, 0.038, 0.043, 0.042, 0.027, 0.039, 0.036, 0.083, 0.044, 0.077, 0.033, 0.043, 0.041, 0.035, 0.036, 0.036, 0.071, 0.082, 0.039, 0.033, 0.087, 0.044, 0.076, 0.05, 0.037, 0.08, 0.046, 0.044, 0.054, 0.031, 0.045, 0.047, 0.037, 0.068, 0.04, 0.044, 0.026, 0.087, 0.032, 0.036, 0.082, 0.028, 0.06, 0.048, 0.019, 0.026, 0.056, 0.034, 0.041, 0.072, 0.043, 0.057, 0.062, 0.042, 0.057, 0.053, 0.057, 0.024, 0.04, 0.035, 0.031, 0.045, 0.029, 0.038, 0.029, 0.095, 0.039, 0.042, 0.044, 0.032, 0.074, 0.025, 0.067, 0.047, 0.047, 0.046, 0.041, 0.049, 0.072, 0.042, 0.051, 0.037, 0.034, 0.046, 0.028, 0.036, 0.024, 0.058, 0.154, 0.048, 0.114, 0.047, 0.043, 0.064, 0.039, 0.029, 0.044, 0.053, 0.171, 0.075, 0.081, 0.047, 0.046, 0.184, 0.038, 0.062, 0.05, 0.063, 0.041, 0.047, 0.036, 0.032, 0.028, 0.08, 0.063, 0.038, 0.042, 0.045, 0.041, 0.039, 0.021, 0.06, 0.039, 0.068, 0.087, 0.194, 0.042, 0.037, 0.028, 0.026, 0.024, 0.084, 0.051, 0.054, 0.114, 0.048, 0.038, 0.029, 0.093, 0.037, 0.048, 0.056, 0.074, 0.041, 0.046, 0.04, 0.069, 0.044, 0.039, 0.049, 0.033, 0.074, 0.034, 0.104, 0.038, 0.145, 0.073, 0.05, 0.056, 0.038, 0.043, 0.082, 0.049, 0.033, 0.042, 0.029, 0.014, 0.144, 0.035, 0.03, 0.034, 0.066, 0.042, 0.1, 0.055, 0.058, 0.026, 0.045, 0.071, 0.056, 0.035, 0.043, 0.03, 0.068, 0.039, 0.047, 0.051, 0.022, 0.035, 0.041, 0.058, 0.04, 0.048, 0.065, 0.02, 0.05, 0.046, 0.048, 0.039, 0.033, 0.047, 0.037, 0.081, 0.037, 0.104, 0.03, 0.053, 0.049, 0.067, 0.066, 0.08, 0.048, 0.048, 0.041, 0.079, 0.046, 0.043, 0.043, 0.041, 0.042, 0.032, 0.027, 0.033, 0.095, 0.057, 0.08, 0.071, 0.024, 0.096, 0.052, 0.045, 0.031, 0.214, 0.048, 0.041, 0.026, 0.032, 0.047, 0.034, 0.035, 0.045, 0.067, 0.052, 0.031, 0.032, 0.066, 0.068, 0.079, 0.044, 0.043, 0.028, 0.041, 0.031, 0.033, 0.063, 0.045, 0.039, 0.041, 0.052, 0.034, 0.046, 0.045, 0.034, 0.04, 0.054, 0.06, 0.05, 0.029, 0.047, 0.051, 0.055, 0.031, 0.057, 0.064, 0.036, 0.042, 0.033, 0.027, 0.03, 0.026, 0.052, 0.024, 0.075, 0.103, 0.035, 0.094, 0.038, 0.047, 0.028, 0.029, 0.042, 0.052, 0.045, 0.06, 0.066, 0.037, 0.035, 0.036, 0.026, 0.036, 0.045, 0.066, 0.036, 0.079, 0.047, 0.035, 0.066, 0.078, 0.07, 0.045, 0.034, 0.072, 0.036, 0.026, 0.05, 0.052, 0.079, 0.058, 0.051, 0.044, 0.026, 0.038, 0.036, 0.048, 0.056, 0.045, 0.095, 0.054, 0.047, 0.039, 0.061, 0.036, 0.031, 0.051, 0.029, 0.063, 0.048, 0.076, 0.058, 0.039, 0.059, 0.041, 0.057, 0.043, 0.044, 0.042, 0.049, 0.036, 0.031, 0.058, 0.027, 0.048, 0.027, 0.034, 0.027, 0.055, 0.039, 0.025, 0.053, 0.042, 0.034, 0.024, 0.033, 0.048, 0.028, 0.034, 0.054, 0.033, 0.028, 0.036, 0.097, 0.019, 0.039, 0.054, 0.045, 0.036, 0.087, 0.098, 0.044, 0.043, 0.037, 0.087, 0.047, 0.041, 0.054, 0.039, 0.048, 0.041, 0.04, 0.051, 0.029, 0.033, 0.104, 0.053, 0.042, 0.051, 0.022, 0.031, 0.044, 0.049, 0.034, 0.078, 0.045, 0.089, 0.056, 0.036, 0.18, 0.035, 0.031, 0.048, 0.044, 0.037, 0.038, 0.043, 0.034, 0.045, 0.039, 0.047, 0.028, 0.019, 0.039, 0.022, 0.05, 0.025, 0.072, 0.046, 0.032, 0.03, 0.034, 0.064, 0.045, 0.076, 0.036, 0.041, 0.041, 0.032, 0.11, 0.031, 0.047, 0.041, 0.039, 0.036, 0.038, 0.065, 0.037, 0.054, 0.055, 0.046, 0.047, 0.041, 0.08, 0.046, 0.037, 0.064, 0.031, 0.057, 0.041, 0.092, 0.04, 0.084, 0.039, 0.06, 0.04, 0.047, 0.062, 0.148, 0.045, 0.035, 0.062, 0.119, 0.031, 0.051, 0.04, 0.028, 0.046, 0.031, 0.119, 0.044, 0.045, 0.053, 0.031, 0.033, 0.063, 0.046, 0.043, 0.083, 0.023, 0.107, 0.039, 0.038, 0.036], \"xaxis\": \"x\", \"y\": [0.8156061324462894, 0.42491310922683634, 0.8867827646463432, 0.8014995238430205, 0.30499958310650876, 0.5817355832705369, 0.959171062334887, 0.7854416128369749, 0.9085690698200813, 0.8998600376511439, 0.6341165000693628, 0.412102187638673, 0.7643629411050379, 0.4710001938005606, 0.40182653035141874, 0.40438056362905367, 0.8870480016118494, 0.3650667978415713, 0.9064321709292111, 0.9327245345966092, 0.6458420185168736, 0.8821841129047617, 0.6704018506542557, 0.7655671181822064, 0.8616986618932058, 0.48774537944210006, 0.9637355036179479, 0.6794204065079696, 0.6044835155949141, 0.7867954023600708, 0.9137982268836646, 0.5867502063434873, 0.8048584290077971, 0.9718511071053526, 0.9627192884041744, 0.7978623718349598, 0.6091120966723917, 0.8943338178728011, 0.8853376735027229, 0.9045563504021151, 0.9264844632598176, 0.6342457655367447, 0.9414033426130164, 0.5636516403732365, 0.5172967922101196, 0.4836896337264441, 0.35199620689495453, 0.788779954566273, 0.9696552399248426, 0.772496554239754, 0.8132656157621138, 0.4539090261140653, 0.9333708926412786, 0.679765045723866, 0.48457442622955804, 0.4248820606938153, 0.6737819616086004, 0.8780741425819777, 0.38340602447337646, 0.90634085684919, 0.5574014604752268, 0.6804147683859246, 0.9077110088845216, 0.7718472635729894, 0.4717552048891654, 0.22222808308441652, 0.8616549355667619, 0.705749071892896, 0.4699129352300819, 0.9680524782819758, 0.8891353183282249, 0.9466602521798594, 0.8553382520847058, 0.7430243903066251, 0.6616131862201935, 0.6919609500216202, 0.96565744679506, 0.913108907487878, 0.5395521774612226, 0.9026238558501023, 0.6550941529376255, 0.9757876320152292, 0.8833495792027257, 0.6666029765862381, 0.8504582120840628, 0.9320215595878566, 0.7639947574915884, 0.6085229656221847, 0.9557131606798471, 0.46184432615952054, 0.5642658412077981, 0.8815615400732472, 0.7189203536918151, 0.9301020530176726, 0.7341394174346678, 0.7759189559372703, 0.8448078654733812, 0.9012666081120407, 0.8926028620066223, 0.5287492720273277, 0.6874206920638863, 0.37408584674942635, 0.8348370105186077, 0.8697567261320243, 0.9175759024810304, 0.44644098895981, 0.8874384748400057, 0.7787567487441118, 0.9416122482572158, 0.3265229243180111, 0.9308095750950773, 0.42267134533232753, 0.43068181214270274, 0.8727308285810839, 0.7201611177732586, 0.8430904589044517, 0.8140617541555761, 0.9456747441572588, 0.6672663325862807, 0.8756470416862959, 0.518871521713375, 0.7040615347784164, 0.4957960231649875, 0.6250130361556073, 0.27413726132188326, 0.5193133578087885, 0.37656641690434584, 0.5808048103476511, 0.7917827117482167, 0.36569143480873245, 0.7232542293832885, 0.9785934574433302, 0.5715075300165849, 0.8182555969893297, 0.5448461144048058, 0.9491291995847589, 0.4833587957991669, 0.3189279754564957, 0.9184825510014271, 0.5524830505676419, 0.9600429304649183, 0.7818180966165994, 0.7962710274484252, 0.7569429870375118, 0.46184432615952054, 0.7641514270390748, 0.9486763575522457, 0.8086368705092697, 0.6784536879503494, 0.6877019790624462, 0.6082670858563528, 0.6053794617794684, 0.6319330693089359, 0.4982105707488519, 0.6787928880949093, 0.9231980717613485, 0.8831230955067948, 0.6845485656817341, 0.8799204262605215, 0.9164563829924386, 0.7819268199067826, 0.23469888428232324, 0.9492377841603665, 0.8826092272015389, 0.6360541596480074, 0.5184081252698399, 0.6400126753125241, 0.542646305979658, 0.4479501208302092, 0.7783171875827786, 0.7867712153112567, 0.5236605417423803, 0.6959846197179591, 0.7925023358445066, 0.6683189355892497, 0.18737025221649042, 0.42506327048176057, 0.7272596040941706, 0.7314191754306454, 0.4827891324637794, 0.6649341228620356, 0.9038332731164471, 0.9588917860646077, 0.8945194928389463, 0.49833043835950624, 0.7997712594855277, 0.8577935987172323, 0.7622736922026153, 0.8039391974899521, 0.7396811504731934, 0.8115340233127679, 0.801728888664367, 0.738451208106372, 0.5859674792922007, 0.1865203674848816, 0.8773430435604171, 0.36888329310067386, 0.8651817982269884, 0.9067615420962557, 0.8594983988587351, 0.7437750884018276, 0.9145224932934428, 0.9135679891815164, 0.8001832456898428, 0.6860977766129374, 0.9377826008632761, 0.9300369611912853, 0.6997062971069969, 0.5693182102579236, 0.3404656140239559, 0.7160591142088384, 0.7953146078011, 0.8869803873277935, 0.7639982823097876, 0.8681285227071118, 0.576868797021353, 0.93035102563313, 0.8375600281828176, 0.8279918435672958, 0.9266689436294401, 0.7559862346636359, 0.5099889666930224, 0.6914445842613687, 0.9651950326885705, 0.87851968214492, 0.8499702807396289, 0.4685752957996948, 0.7241546992314323, 0.7848147251007912, 0.7341394174346678, 0.7008877443692281, 0.340588975625529, 0.5013021766499856, 0.8321174529331695, 0.8818378666553491, 0.9176909075187759, 0.8634678749265305, 0.7436082905772717, 0.9343776659412377, 0.7668809937296346, 0.6243383802582345, 0.5332560471205093, 0.6907315465649003, 0.16626803588025432, 0.1668542888532837, 0.7408943843163458, 0.5221312328975666, 0.7457559475413279, 0.46389636934606376, 0.9292627865919654, 0.5268311186840582, 0.4244151934213653, 0.643310536612302, 0.8577438313980266, 0.7816208399762355, 0.8553382520847058, 0.7010035672814305, 0.5242572272016158, 0.9187320011579697, 0.8703498177621264, 0.6713045345576062, 0.9137982268836646, 0.8614414457916845, 0.9445662266054761, 0.8808216590199034, 0.7386378115490353, 0.8873009977622293, 0.9157094897337859, 0.6606038558129893, 0.9296803968514485, 0.8864322240790464, 0.5146720135715994, 0.8720710714485208, 0.9415427660945741, 0.9138701141498735, 0.6527559092576063, 0.8751970040938668, 0.9249766460056568, 0.801728888664367, 0.6575848465963361, 0.6934824043184128, 0.8619113960143526, 0.9419078024651042, 0.9591721389341828, 0.8397407150753159, 0.9084383840076588, 0.4963969309336195, 0.7359588175524252, 0.3531961907069324, 0.9279819479140234, 0.7752976919572294, 0.8665226278427577, 0.9515211055933231, 0.7314191754306454, 0.890886918514299, 0.3235491032739525, 0.3719939405423586, 0.6323804178173072, 0.8398006965792015, 0.8239469134189235, 0.8592101816891015, 0.7615002907198236, 0.8688259750909261, 0.8718104001390852, 0.5838074755684882, 0.8756470416862959, 0.901850575196968, 0.9451930143658351, 0.6253812669856891, 0.5890764576710766, 0.4921052500998711, 0.4862070578416567, 0.9170647663398394, 0.7035583451969506, 0.8476385889092957, 0.5603058978573646, 0.5810606890504925, 0.9088604673919816, 0.8903252600075929, 0.944267921154058, 0.9435968591480925, 0.938237366988842, 0.9357286047893738, 0.7961386682142712, 0.7840233885688647, 0.2513590507613302, 0.7389284097502917, 0.9053472250810051, 0.44438282424164377, 0.862281110352348, 0.8021059248496223, 0.9152740930046814, 0.643737358401971, 0.8540304955499701, 0.8613418170006786, 0.6911084183178322, 0.8848367871057808, 0.8387883096682573, 0.5942651630821018, 0.65691393717736, 0.6369979527510315, 0.8280658524313272, 0.9640736168216585, 0.6546311715671466, 0.5599819536107853, 0.48348053317652906, 0.7668016587569692, 0.03620763244300767, 0.7364400865449663, 0.37408584674942635, 0.8767503774172, 0.8743962287172513, 0.8751970040938668, 0.8833495792027257, 0.7091886355621774, 0.87006937054451, 0.7904001815220257, 0.8761418339280951, 0.8306834851111597, 0.7531715889012326, 0.38181207472529843, 0.6490458991820136, 0.9138057013338913, 0.9046222904886461, 0.17956061692355052, 0.7506163079023257, 0.8963285795381793, 0.8848361664653354, 0.9283037217377402, 0.45996158699034445, 0.7290858434196763, 0.8319094967702583, 0.6578018675312727, 0.18727567457681707, 0.8673410249845035, 0.9453298670648187, 0.9446538464906173, 0.19605573045952288, 0.6723831041639817, 0.3438281302059518, 0.37858973820495484, 0.6953170483296187, 0.21463507152544156, 0.26963792069965237, 0.3280912492037974, 0.8399932187801539, 0.420387898633768, 0.36522500752858966, 0.5810560693343539, 0.9306346767722963, 0.7167716539092029, 0.656736106921484, 0.5549139996760648, 0.6909161521388689, 0.591904263202073, 0.884703171197362, 0.866402281883595, 0.7582770814524421, 0.8990773411030794, 0.1818065866116437, 0.6222165686186035, 0.17261914235374884, 0.8156064679757086, 0.4851213943917703, 0.8871292211128762, 0.8398494053952754, 0.703270618172154, 0.6305543892506115, 0.7494149477175548, 0.1532408287022325, 0.6159732902773407, 0.738220551127759, 0.8354520044441791, 0.8536870432671441, 0.5751476712690671, 0.9077719201719568, 0.7878515691455199, 0.6672663325862807, 0.45293736875445273, 0.17058553029544155, 0.747933377844996, 0.8400163125056676, 0.4516778718827729, 0.6082670858563528, 0.8401843469141149, 0.7636885291754726, 0.789170795337903, 0.8128612802083497, 0.7522530659814418, 0.8086757686066508, 0.8356255123032285, 0.9241779635105248, 0.9674588597049086, 0.9368885694202199, 0.4990764491242286, 0.876561204324957, 0.554264192243629, 0.5967716244634195, 0.9060244606340249, 0.8401608718856799, 0.7329750583133859, 0.8021769878309102, 0.9316817655017511, 0.45488322534173153, 0.798578398438993, 0.7425236774748816, 0.5742682328784404, 0.4937681935814938, 0.8972164286692267, 0.8914273370768748, 0.9377613518261881, 0.8862258850530264, 0.8591757581361523, 0.7410678096850266, 0.6822336012657398, 0.9201658505843877, 0.6982578893131915, 0.5746709232170782, 0.7626532952948841, 0.7137703530889916, 0.7520971196461234, 0.4473853625959922, 0.7957460056304991, 0.4833174871501707, 0.8758467705785958, 0.4689303842787964, 0.6133612564737879, 0.8568681391705205, 0.6835133967314007, 0.9732070839986944, 0.21435716257549006, 0.5761668962420043, 0.4055433603128916, 0.3743394998756179, 0.9118635774953143, 0.964551884718591, 0.9306459334511011, 0.8424802355113449, 0.7739144871152517, 0.6872688771534424, 0.8590561833388345, 0.6714384475466295, 0.6408669500407106, 0.5203550269219845, 0.2856853969697174, 0.857760555506807, 0.9307094503226838, 0.6787928880949093, 0.8308635255795866, 0.29271374211533296, 0.6769315553524353, 0.23831547366416572, 0.5895099457120908, 0.8994675076574448, 0.8893400405584444, 0.8456825404777587, 0.5399612081435882, 0.6188649121485582, 0.9281492942813848, 0.7611740601422801, 0.46550237374781617, 0.8896861436466836, 0.9038901015569306, 0.5044440900554997, 0.9215480939667524, 0.6930273792518707, 0.8723244804196287, 0.5624338775604165, 0.9226297661236537, 0.8469231754225917, 0.9430557295321259, 0.9097116306258912, 0.5988707702267543, 0.3813853072548755, 0.8843832309478876, 0.9006952500629406, 0.918975987201669, 0.18997930334445084, 0.8923106748541326, 0.8461388699436441, 0.5973439234355874, 0.9544642924744549, 0.91770416680597, 0.9177239854204658, 0.17584552180125673, 0.9240099144459667, 0.48524948024905407, 0.8889685222180134, 0.5785503824403398, 0.7511953459672914, 0.6887596776945688, 0.6717539058356753, 0.7168761391602206, 0.7134478068952186, 0.834626350903405, 0.5715867980362679, 0.6588392688727011, 0.9488572786900573, 0.8920529250761863, 0.8891353183282249, 0.707981940789761, 0.926348680038428, 0.631489487929038, 0.7443856388661001, 0.9260754381930228, 0.9544642924744549, 0.8497401318990601, 0.5604010177433062, 0.8036334301115304, 0.7898153537185114, 0.8491431337122072, 0.6570881560807702, 0.8389599143569951, 0.7944137576415592, 0.8132668978866627, 0.44714680104169846, 0.7978021044641371, 0.41921696608658454, 0.38876183891604754, 0.9248463736054193, 0.4277915265084825, 0.6345107008491314, 0.8008942533173764, 0.5087430598332189, 0.9414938992689892, 0.6922115882765215, 0.8296175750175913, 0.8593339228153332, 0.8975141534758351, 0.5977126281557783, 0.9279478536756302, 0.6485770817571253, 0.8905823996589662, 0.9332072841984264, 0.9432461110830079, 0.9410120781436498, 0.6339696776630096, 0.7120962557761497, 0.5841709037351369, 0.5928970840420333, 0.9006589732900512, 0.936371533648048, 0.6907852379101131, 0.7675780198071424, 0.9444587893431046, 0.4702336163336472, 0.8925536722101626, 0.8158978708906081, 0.822780392485108, 0.8037335327290217, 0.8382351003285965, 0.8941557358589171, 0.4796498334522667, 0.926348680038428, 0.6842118015950474, 0.6463580983468415, 0.8292048071278182, 0.5834426687867836, 0.8419845362148763, 0.2431563391580561, 0.7763142135369961, 0.9390550746437164, 0.7774903237071782, 0.8141232663130791, 0.9444089886680379, 0.430401459478284, 0.9192677156927759, 0.8427595869840984, 0.87120858451521, 0.5693182102579236, 0.820012080301976, 0.58719119911586, 0.42769376643096113, 0.3542595869275313, 0.89579938191327, 0.8743523014696554, 0.7820497043505815, 0.5279069501129625, 0.8869579700149332, 0.45488774279476296, 0.8514781135508903, 0.8278297091497892, 0.663749097381813, 0.5132851713944618, 0.4906566565015208, 0.6415219885510332, 0.6991293681294938, 0.8150539074042624, 0.5800669536763935, 0.9583771200922359, 0.7366090055976814, 0.5747817696023392, 0.5315376696882942, 0.8074446941396305, 0.9038901015569306, 0.9087015650331977, 0.6697291810323083, 0.5800669536763935, 0.8807270543114014, 0.5135845984304893, 0.9352791850238339, 0.36120709973337456, 0.6206709330576408, 0.906286252315459, 0.7937202818717513], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [0.05, 0.044, 0.031, 0.09, 0.091, 0.086, 0.043, 0.09, 0.053, 0.054, 0.068, 0.041, 0.039, 0.05, 0.052, 0.117, 0.08, 0.172, 0.05, 0.081, 0.049, 0.048, 0.086, 0.028, 0.067, 0.092, 0.041, 0.088, 0.044, 0.054, 0.068, 0.04, 0.039, 0.039, 0.06, 0.059, 0.039, 0.045, 0.07, 0.045, 0.112, 0.104, 0.047, 0.055, 0.107, 0.059, 0.051, 0.032, 0.047, 0.076, 0.077, 0.061, 0.138, 0.089, 0.053, 0.239, 0.045, 0.048, 0.142, 0.08, 0.05, 0.055, 0.067, 0.05, 0.097, 0.047, 0.043, 0.077, 0.076, 0.024, 0.045, 0.08, 0.051, 0.041, 0.044, 0.033, 0.039, 0.062, 0.098, 0.026, 0.05, 0.037, 0.049, 0.082, 0.068, 0.112, 0.041, 0.047, 0.044, 0.044, 0.08, 0.044, 0.085, 0.051, 0.066, 0.044, 0.055, 0.058, 0.048, 0.056, 0.056, 0.082, 0.034, 0.054, 0.069, 0.467, 0.042, 0.038, 0.045, 0.044, 0.066, 0.027, 0.069, 0.029, 0.082, 0.096, 0.047, 0.047, 0.08, 0.049, 0.047, 0.048, 0.049, 0.038, 0.05, 0.056, 0.041, 0.064, 0.092, 0.04, 0.037, 0.105, 0.209, 0.047, 0.045, 0.063, 0.026, 0.055, 0.05, 0.08, 0.034, 0.039, 0.037, 0.04, 0.041, 0.051, 0.093, 0.04, 0.084, 0.073, 0.052, 0.087, 0.04, 0.079, 0.06, 0.084, 0.105, 0.044, 0.036, 0.03, 0.035, 0.087, 0.07, 0.052, 0.078, 0.034, 0.05, 0.055, 0.108, 0.045, 0.046, 0.053, 0.07, 0.043, 0.1, 0.068, 0.08, 0.042, 0.074, 0.044, 0.05, 0.082, 0.053, 0.056, 0.047, 0.044, 0.052, 0.031, 0.037, 0.044, 0.096, 0.039, 0.047, 0.032, 0.049, 0.084, 0.055, 0.061, 0.049, 0.09, 0.046, 0.205, 0.205, 0.059, 0.046, 0.05, 0.046, 0.083, 0.049, 0.027, 0.05, 0.047, 0.054, 0.056, 0.063, 0.044, 0.045, 0.03, 0.301, 0.034, 0.084, 0.04, 0.039, 0.049, 0.044, 0.052, 0.043, 0.057, 0.046, 0.075, 0.034, 0.04, 0.057, 0.085, 0.04, 0.026, 0.07, 0.02, 0.051, 0.043, 0.099, 0.066, 0.053, 0.24, 0.04, 0.09, 0.085, 0.043, 0.052, 0.07, 0.104, 0.042, 0.039, 0.092, 0.056, 0.047, 0.067, 0.039, 0.058, 0.091, 0.052, 0.052, 0.051, 0.062, 0.05, 0.046, 0.044, 0.049, 0.071, 0.073, 0.058, 0.29, 0.058, 0.044, 0.048, 0.04, 0.091, 0.041, 0.06, 0.04, 0.103, 0.081, 0.041, 0.07, 0.069, 0.046, 0.039, 0.054, 0.026, 0.048, 0.031, 0.05, 0.047, 0.029, 0.083, 0.111, 0.053, 0.056, 0.046, 0.081, 0.041, 0.047, 0.081, 0.05, 0.087, 0.042, 0.05, 0.08, 0.152, 0.098, 0.186, 0.031, 0.081, 0.05, 0.099, 0.048, 0.063, 0.084, 0.04, 0.114, 0.114, 0.048, 0.047, 0.08, 0.047, 0.048, 0.096, 0.046, 0.077, 0.042, 0.048, 0.08, 0.049, 0.052, 0.038, 0.077, 0.048, 0.073, 0.037, 0.054, 0.051, 0.052, 0.037, 0.079, 0.035, 0.074, 0.095, 0.046, 0.046, 0.046, 0.04, 0.07, 0.042, 0.049, 0.047], \"xaxis\": \"x\", \"y\": [0.2802292104526322, 0.9455194119275858, 0.4978743212349556, 0.5289145624519528, 0.28439238707197784, 0.2033309570226689, 0.27345747478543325, 0.8322873304845451, 0.389055896812549, 0.3675472469853882, 0.5781933746273124, 0.7401955299744071, 0.44969671697605845, 0.4367887814338696, 0.31593955341667695, 0.3775624358859999, 0.19282181046294666, 0.048451763306065584, 0.6005928650583868, 0.032225376113695775, 0.427412413738938, 0.23973251442015217, 0.13890126550157303, 0.8613925272127, 0.329663916828638, 0.19359965390713213, 0.6827271716759634, 0.1960905505555538, 0.08135735686643118, 0.39737240301928484, 0.13902987396822816, 0.6514166433739288, 0.6994753721471061, 0.7140886736258081, 0.5021795028970708, 0.48743245558712556, 0.5731139673640956, 0.8820820642542792, 0.559972149724866, 0.5061565591493914, 0.5066810377847554, 0.833805652807593, 0.6979972163580744, 0.3177574231538272, 0.13068190592986567, 0.758876109553896, 0.5681062961269688, 0.715544821914063, 0.762062625203523, 0.4464438677531786, 0.20995974230910305, 0.5262622410710028, 0.39442669669188163, 0.2537324982988368, 0.6775437642744659, 0.23876321589577687, 0.6369158982934647, 0.38960060362966165, 0.6034323722874255, 0.7769991715799629, 0.15199748354041337, 0.5641412449951732, 0.7590466800561823, 0.5969347905931296, 0.1048362779837843, 0.7217824369593382, 0.2662339163773806, 0.16472378978351135, 0.37760124376932414, 0.7071736299639594, 0.3436862995931572, 0.8384434752264291, 0.3635333644877426, 0.7813188949129265, 0.7279369976219869, 0.5641098847382463, 0.3863964747623771, 0.9209913370067284, 0.1477144681640183, 0.8809374658555192, 0.6533168894759348, 0.8873477284758582, 0.3697306267878623, 0.28319023347825867, 0.5203701741750857, 0.5523747693308857, 0.6387521731780509, 0.3881380695009739, 0.8487896327149285, 0.4636606453307818, 0.8384434752264291, 0.558266603669778, 0.21657231888677728, 0.3635333644877426, 0.5512671313974766, 0.5051039398599867, 0.5827915753039158, 0.49441682850108926, 0.47309171914705017, 0.6262595591688196, 0.5508242483721094, 0.47332791509789995, 0.7117569366896692, 0.3933786516273859, 0.16465066549244003, 0.7490394132223248, 0.769261050002088, 0.7431932405995126, 0.3141000916210982, 0.723735045552473, 0.6484132891031948, 0.688519894019609, 0.40496704226994307, 0.5803736122960511, 0.6327801522745691, 0.45115706990411364, 0.37268733756108086, 0.9009693101135351, 0.06496389958099598, 0.44431713201158524, 0.39960831974332744, 0.8662156944598043, 0.31018081106061823, 0.5339551117365043, 0.33311273919547707, 0.400132762133902, 0.8528754522806217, 0.14419347879543085, 0.11672350429510901, 0.44556702529145975, 0.6160120899414699, 0.13766892845409207, 0.5517204028384314, 0.5232178919035022, 0.35483403305733974, 0.4900213704561591, 0.8854578072659228, 0.43084122675663034, 0.7601186327653665, 0.14072030431570776, 0.6186690618327106, 0.5245054232921349, 0.7326259458716644, 0.5690781983520095, 0.4018508815425063, 0.24877469563805235, 0.7952501197393639, 0.8766221356386195, 0.303451532996695, 0.5357745481647883, 0.7096524147827454, 0.20877177283968149, 0.8635610141758273, 0.46736762313881036, 0.6061151992073851, 0.113015272873705, 0.40446014603085867, 0.6332606063976143, 0.648705381890928, 0.42186952587750404, 0.8047913565308571, 0.3017058309841093, 0.38406990132164637, 0.33494193042999065, 0.19929939967121216, 0.8624919783238055, 0.528785836409086, 0.43084122675663034, 0.47042159929499583, 0.5061565591493914, 0.5759491569657543, 0.8468794444363914, 0.20342296359496542, 0.5170831534483544, 0.3666753044655067, 0.6131723001375537, 0.4410646109528086, 0.6903416342484309, 0.3866428492574258, 0.4636606453307818, 0.4525459302795702, 0.03199256040434073, 0.7029629492254846, 0.2433141614541866, 0.548755973819273, 0.3775060302547258, 0.06593060991448157, 0.8745624549148976, 0.22931948662359403, 0.27267688907931714, 0.589328430619086, 0.8007160756317941, 0.5525637789187225, 0.5008522318356121, 0.4556212410144909, 0.17391722008742402, 0.43574637053357784, 0.3237440077649342, 0.6071692164257629, 0.6925152430641841, 0.592675381607996, 0.43854150134957587, 0.43854150134957587, 0.42437112972565305, 0.8061118855433299, 0.35195592295594336, 0.7605370065149419, 0.38898578429124253, 0.67510953655807, 0.872979709380305, 0.710510994258769, 0.720290290780972, 0.4820787970895852, 0.42019280799979697, 0.4304380754474639, 0.25285023254778977, 0.3238056884730761, 0.39471961640683584, 0.09510031985475974, 0.367046376808582, 0.21500793651835448, 0.8705359023101334, 0.6100742529031461, 0.6226449432624995, 0.7279369976219869, 0.3643494054700089, 0.09992017521484964, 0.41475515148757036, 0.6462260464983366, 0.14102909592513518, 0.48949585696458414, 0.5239520436918008, 0.6084413884537807, 0.5655473856702703, 0.9517420512476797, 0.7489379515982664, 0.4647937384849751, 0.7915321263825208, 0.44112279258530757, 0.5734340256727429, 0.6604471727860799, 0.4845203185458914, 0.6968730453869196, 0.5315374962198609, 0.8685951485887234, 0.6242442748350044, 0.2912097196987059, 0.7725938221565348, 0.2067629769731588, 0.30221725334927335, 0.13129342562285412, 0.6467789443522378, 0.6994753721471061, 0.11825382206919556, 0.41022417118631593, 0.4882665226122541, 0.7732287086973071, 0.25374762405010176, 0.49441682850108926, 0.3723877205427743, 0.652330313245635, 0.43667799883041203, 0.5964718913578133, 0.55172276504346, 0.24113559934961917, 0.8243980268882987, 0.7263843594269437, 0.43535214809021755, 0.8721122798612579, 0.18723914490145582, 0.6486906676970999, 0.11576704656818047, 0.4328241622975616, 0.491481212420291, 0.5264345378086769, 0.33856526784971647, 0.2967410926251248, 0.581398831228375, 0.5973776665460488, 0.6195406102170065, 0.37782717658841725, 0.323061133240968, 0.17420808473594895, 0.19634770547538957, 0.46492234760650425, 0.49613167963272686, 0.5812209036149294, 0.6057291775435286, 0.63414717387345, 0.5702687187355167, 0.8604975146328253, 0.6309022132706124, 0.48732991249542923, 0.6887148870948692, 0.41581945293096145, 0.5706760596351739, 0.4831274653996314, 0.06684727567316755, 0.49090643211649887, 0.15191610726090596, 0.2711405311223577, 0.7653618545702112, 0.09266565137124261, 0.4554350627407873, 0.19698919164573708, 0.6930185080649685, 0.5227537922811563, 0.50434568709929, 0.7082092780767422, 0.46058046365566996, 0.6735723234187477, 0.4285936050615775, 0.323061133240968, 0.5168500865319015, 0.6161307914674419, 0.23456444218973552, 0.3192004782541023, 0.21968945907811915, 0.5028183230931117, 0.43371621376298963, 0.6744209213341115, 0.5940260419772637, 0.13783310426722128, 0.5136444387530009, 0.5508647999875032, 0.4955911012838212, 0.9814394195009358, 0.8260225289794664, 0.17965956338109995, 0.46844896472597397, 0.6048119589659149, 0.3289160319090978, 0.2454606394453749, 0.7497022835596558, 0.683485355417811, 0.20995974230910305, 0.23504578258460665, 0.37175956099497537, 0.4875530438829156, 0.24982584224249993, 0.6282829625348888, 0.4520795162158371, 0.8200372413039435, 0.12832513643528837, 0.5299630655130737, 0.29552777318700446, 0.24021937552346023, 0.5429028773737552, 0.6311869746243346, 0.4145977043912777, 0.39329840463575844, 0.39070335653410526, 0.4286990948130573, 0.846836560604146, 0.6880850122626078], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (curr)\", \"type\": \"scatter\", \"x\": [0.068, 0.058, 0.045, 0.044, 0.076, 0.041, 0.037, 0.036, 0.033, 0.036, 0.102, 0.039, 0.033, 0.026, 0.03, 0.04, 0.07, 0.032, 0.078, 0.028, 0.056, 0.045, 0.05, 0.04, 0.04, 0.031, 0.044, 0.038, 0.035, 0.029, 0.032, 0.059, 0.053, 0.034, 0.034, 0.122, 0.035, 0.05, 0.047, 0.096, 0.036, 0.026, 0.034, 0.043, 0.08, 0.065, 0.054, 0.079, 0.039, 0.036, 0.073, 0.034, 0.031, 0.042, 0.039, 0.053, 0.044, 0.05, 0.039, 0.414, 0.054, 0.037, 0.029, 0.036, 0.036, 0.042, 0.061, 0.037, 0.05, 0.055, 0.067, 0.012, 0.04, 0.038, 0.046, 0.048, 0.074, 0.041, 0.059, 0.171, 0.042, 0.037, 0.065, 0.03, 0.035, 0.194, 0.08, 0.048, 0.036, 0.049, 0.046, 0.039, 0.037, 0.035, 0.047, 0.037, 0.091, 0.035, 0.071, 0.071, 0.027, 0.047, 0.072, 0.034, 0.067, 0.051, 0.072, 0.023, 0.038, 0.025, 0.033, 0.053, 0.026, 0.024, 0.055, 0.23, 0.043, 0.057, 0.04, 0.083, 0.03, 0.03, 0.067, 0.029, 0.073, 0.074, 0.088, 0.029, 0.073, 0.04, 0.019, 0.075, 0.043, 0.045, 0.05, 0.049, 0.062, 0.094, 0.06, 0.034, 0.046, 0.071, 0.095, 0.036, 0.046, 0.036, 0.048, 0.087, 0.032, 0.043, 0.039, 0.031, 0.051, 0.043, 0.029, 0.038, 0.058, 0.062, 0.047, 0.058, 0.032, 0.078, 0.032, 0.034, 0.08, 0.034, 0.032, 0.084, 0.065, 0.137, 0.022, 0.04, 0.046, 0.055, 0.027, 0.04, 0.048, 0.031, 0.035, 0.078, 0.037, 0.042, 0.036, 0.093, 0.039, 0.077, 0.078, 0.042, 0.045, 0.081, 0.015, 0.051, 0.028, 0.045, 0.037, 0.035, 0.041, 0.027, 0.048, 0.042, 0.038, 0.038, 0.047, 0.017, 0.036, 0.038, 0.036, 0.074, 0.046, 0.044, 0.046, 0.037, 0.077, 0.029, 0.071, 0.025, 0.046, 0.041, 0.022, 0.047, 0.04, 0.044, 0.086, 0.045, 0.049, 0.071, 0.031, 0.054, 0.072, 0.04, 0.074, 0.05, 0.028, 0.028, 0.072, 0.055, 0.034, 0.047, 0.036, 0.055, 0.043, 0.031, 0.032, 0.057, 0.077, 0.068, 0.057, 0.045, 0.06, 0.077, 0.053, 0.056, 0.053, 0.038, 0.042, 0.053, 0.035, 0.031, 0.033, 0.049, 0.078, 0.04, 0.06, 0.042, 0.08, 0.031, 0.044, 0.032, 0.044, 0.055, 0.044, 0.04, 0.037, 0.087, 0.043, 0.078, 0.032, 0.047, 0.035, 0.062, 0.413, 0.034, 0.028, 0.033, 0.032, 0.077, 0.021, 0.031, 0.044, 0.056, 0.078, 0.214, 0.05, 0.062, 0.034, 0.031, 0.052, 0.04, 0.031, 0.034, 0.029, 0.043, 0.041, 0.034, 0.067, 0.074, 0.033, 0.054, 0.034, 0.043, 0.04, 0.027, 0.071, 0.053, 0.035, 0.045, 0.032, 0.035, 0.044, 0.057, 0.033, 0.036, 0.06, 0.058, 0.11, 0.032, 0.044, 0.132, 0.038, 0.038, 0.08, 0.035, 0.093, 0.043, 0.176, 0.054, 0.041, 0.046, 0.255, 0.085, 0.021, 0.036, 0.055, 0.079, 0.076, 0.039, 0.028, 0.051, 0.088, 0.033, 0.033, 0.047, 0.044, 0.043, 0.049, 0.031, 0.083, 0.04, 0.043, 0.07, 0.025, 0.034, 0.084, 0.037, 0.076, 0.046, 0.044, 0.063, 0.037, 0.049, 0.024, 0.046, 0.039, 0.041, 0.118, 0.117, 0.036, 0.028, 0.064, 0.038, 0.03, 0.022, 0.045, 0.044, 0.036, 0.054, 0.05, 0.026, 0.043, 0.036, 0.032, 0.074, 0.027, 0.053, 0.048, 0.077, 0.038, 0.065, 0.029, 0.027, 0.036, 0.027, 0.022, 0.042, 0.042, 0.056, 0.039, 0.027, 0.051, 0.035, 0.076, 0.048, 0.033, 0.152, 0.057, 0.092, 0.036, 0.085, 0.027, 0.023, 0.04, 0.041, 0.085, 0.243, 0.084, 0.039, 0.043, 0.036, 0.021, 0.045, 0.033, 0.046, 0.037, 0.029, 0.065, 0.081, 0.044, 0.067, 0.028, 0.062, 0.053, 0.054, 0.053, 0.123, 0.031, 0.082, 0.048, 0.059, 0.075, 0.077, 0.045, 0.097, 0.041, 0.069, 0.05, 0.031, 0.053, 0.037, 0.066, 0.061, 0.042, 0.036, 0.052, 0.073, 0.029, 0.047, 0.031, 0.037, 0.036, 0.105, 0.045, 0.035, 0.075, 0.05, 0.057, 0.026, 0.118, 0.034, 0.034, 0.042, 0.039, 0.031, 0.097, 0.075, 0.052, 0.03, 0.037, 0.035, 0.075, 0.078, 0.067, 0.042, 0.078, 0.076, 0.049, 0.118, 0.041, 0.089, 0.059, 0.073, 0.036, 0.044, 0.053, 0.031, 0.034, 0.044, 0.043, 0.034, 0.076, 0.035, 0.07, 0.046, 0.037, 0.048, 0.043, 0.03, 0.084, 0.097, 0.046, 0.063, 0.03, 0.332, 0.033, 0.053, 0.041, 0.061, 0.024, 0.035, 0.034, 0.047, 0.091, 0.052, 0.067, 0.021, 0.216, 0.053, 0.121, 0.035, 0.114, 0.048, 0.046, 0.051, 0.066, 0.046, 0.025, 0.031, 0.119, 0.109, 0.021, 0.053, 0.041, 0.02, 0.05, 0.067, 0.031, 0.041, 0.086, 0.036, 0.029, 0.022, 0.053, 0.038, 0.056, 0.086, 0.057, 0.026, 0.034, 0.033, 0.032, 0.03, 0.06, 0.039, 0.047, 0.032, 0.028, 0.043, 0.04, 0.032, 0.046, 0.042, 0.117, 0.05, 0.035, 0.027, 0.058, 0.049, 0.083, 0.032, 0.044, 0.038, 0.084, 0.051, 0.047, 0.045, 0.12, 0.079, 0.031, 0.04, 0.035, 0.039, 0.055, 0.032, 0.045, 0.026, 0.034, 0.083, 0.071, 0.037, 0.033, 0.045, 0.046, 0.055, 0.048, 0.034, 0.083, 0.03, 0.03, 0.05, 0.048, 0.036, 0.029, 0.036, 0.027, 0.057, 0.046, 0.035, 0.046, 0.045, 0.075, 0.033, 0.082, 0.085, 0.043, 0.049, 0.032, 0.055, 0.16, 0.079, 0.034, 0.03, 0.051, 0.048, 0.047, 0.038, 0.053, 0.055, 0.069, 0.048], \"xaxis\": \"x2\", \"y\": [0.33396714643252134, 0.5044440900554997, 0.8874896900044845, 0.4686759077780351, 0.23831547366416572, 0.571181601185031, 0.7785327680196316, 0.7290551099174598, 0.9581131370131553, 0.6801000322064107, 0.413367674560271, 0.6667140739211237, 0.9108229754863395, 0.9275086157065797, 0.9186958597750785, 0.7191871442695774, 0.8184457509658746, 0.8597940676688322, 0.7947045908306632, 0.8244149680645384, 0.42771531534877594, 0.5315376696882942, 0.7136291946100958, 0.5510697799054304, 0.6393262665313312, 0.9016582766249417, 0.8560880110261746, 0.8947361144883382, 0.9102326114023062, 0.840723585394272, 0.9264645566705582, 0.5105903360131552, 0.752648770317166, 0.5855954083225455, 0.8989214048388485, 0.5190750352404293, 0.9560713253502463, 0.7273157243430202, 0.9279672131348602, 0.640103147954212, 0.9158977434209615, 0.9035955072010529, 0.7140955379655831, 0.233508355491505, 0.7280578325574358, 0.8810827811902006, 0.3966129217085586, 0.15541760955422754, 0.5851621750323275, 0.9046111951917862, 0.4177213302712193, 0.7993763114768937, 0.6978409661933959, 0.6473373667551029, 0.770784382977056, 0.6500641275496193, 0.548949563093737, 0.9803199442553986, 0.6150775052067382, 0.391333092160729, 0.6966682278280982, 0.9426748402861506, 0.9170092977635526, 0.844625652038695, 0.5621782696252592, 0.8935808323282117, 0.6792214086077275, 0.6719996755401956, 0.5252591274442797, 0.7277045758687855, 0.4685752957996948, 0.8616549355667619, 0.347491516391863, 0.8224130863808733, 0.5340790568488665, 0.6711667658766297, 0.5277539611022016, 0.7226430813715845, 0.8140972745487615, 0.3280236940194876, 0.9543080196225542, 0.7752655593026647, 0.9223925066666061, 0.8588031784191832, 0.6345107008491314, 0.9393010047953068, 0.7897067132703484, 0.8608062836413887, 0.8367885032124018, 0.38555642305179116, 0.8611944449682004, 0.9172341012895443, 0.9206892306522243, 0.9500505925695213, 0.537798347971205, 0.9173482789702866, 0.44454351342386716, 0.8909704850569525, 0.7351932580165473, 0.6818328744935735, 0.7981559962965634, 0.7626532952948841, 0.807353254900461, 0.964411205143099, 0.4685752957996948, 0.6986526320119215, 0.1956969407137045, 0.9233481403380283, 0.8218375601976645, 0.8536269727611236, 0.5637680470866036, 0.42267134533232753, 0.93003590801509, 0.9364808605729722, 0.8816060831574614, 0.9663102962713933, 0.8345570787709832, 0.4997893986747249, 0.7921603237806832, 0.5586815647381762, 0.8622246464681924, 0.9828719612298703, 0.909295720392338, 0.9476267884443668, 0.5395521774612226, 0.901360886913609, 0.39410444510430487, 0.9262213132200262, 0.6627387433216217, 0.9629433821448677, 0.9614311452267452, 0.9802968012486629, 0.933760787013923, 0.34432718187202205, 0.63596173557573, 0.624364378916488, 0.7417789548241253, 0.7300918276682445, 0.6968315453320488, 0.7840233885688647, 0.8958841271622066, 0.5417426694559925, 0.7102579146160282, 0.6004345411549624, 0.515920701757342, 0.7587882454650442, 0.5029588531082266, 0.6887596776945688, 0.8642849605932809, 0.6469572639767995, 0.8103639651534781, 0.939764354405301, 0.694136577696587, 0.6593725303534554, 0.9646797005081557, 0.7979900311745153, 0.792123904710467, 0.8869579700149332, 0.7351250317969437, 0.5332560471205093, 0.9406873315653421, 0.39362685027924615, 0.9466602521798594, 0.8394325033041952, 0.6633442657978572, 0.8126408700417265, 0.7332457619716184, 0.08024070404520958, 0.8667774471450977, 0.6466814331404849, 0.912366876100516, 0.656670904734599, 0.8701678467707724, 0.8875925797813499, 0.9658725076002231, 0.7668332861852056, 0.8604440887473094, 0.934384507524058, 0.9605946056867319, 0.951253157591183, 0.5749289095213865, 0.6279243005170476, 0.7937202818717513, 0.7665301650725991, 0.700127941221274, 0.8531107444728586, 0.7947045908306632, 0.8870566665876504, 0.5476228787844645, 0.8410401833568673, 0.8736671065238262, 0.6519898659949606, 0.936943112068646, 0.9077719201719568, 0.8071889556778997, 0.8815615400732472, 0.8935313268029127, 0.8782891297971865, 0.5029588531082266, 0.5797201450332624, 0.9416775458320723, 0.5958140198486584, 0.2485157288688957, 0.932021424688801, 0.8531502837407814, 0.6344194678828672, 0.632587077283238, 0.9121448358615357, 0.5776545535910985, 0.9052765174806566, 0.8580390107418799, 0.8998644401112552, 0.6784536879503494, 0.9458342431661766, 0.21387363850783603, 0.9530348339880965, 0.7307391114165022, 0.7187682731289255, 0.6905635603269331, 0.9569274903702625, 0.9287384091375525, 0.3856984054091925, 0.504413920551941, 0.5389739198483336, 0.5921068831639978, 0.10702848140489757, 0.8772993497727819, 0.6361944011057532, 0.8952999713010865, 0.7069578609115064, 0.10632960186243966, 0.6465592619811017, 0.9116333268133815, 0.9210441535829985, 0.9483358221641291, 0.5800224234700003, 0.896951343689222, 0.8958659323404018, 0.8896861436466836, 0.7763142135369961, 0.778627444633172, 0.9274605647284293, 0.9167924025380936, 0.6422094408272838, 0.6363725079258666, 0.8694129796739031, 0.5693182102579236, 0.5315376696882942, 0.6814536952243052, 0.30089534057709466, 0.6689448970920832, 0.6419522618821227, 0.6500641275496193, 0.8221968069187356, 0.9285763346020383, 0.8495153837633861, 0.7135666997345446, 0.8850789772017983, 0.9128367188568884, 0.8709442503982084, 0.44714680104169846, 0.7147831401969469, 0.6814536952243052, 0.5823319261018008, 0.7718122970862826, 0.8925058444773368, 0.9249991097277733, 0.7849066379312727, 0.5120166815330335, 0.7863291630268572, 0.8171821177205619, 0.8878235148823457, 0.9813953955585096, 0.5009899161211654, 0.6787020040856314, 0.2747106808400709, 0.6998114428322438, 0.7191783799678735, 0.7566715075843347, 0.7741630673610131, 0.692871858980435, 0.8706970297938403, 0.9226518689226377, 0.619213859232465, 0.9620625840847012, 0.8161066853745392, 0.7984578805051198, 0.8987836568806694, 0.27900511725120763, 0.747868261422589, 0.8013372150606806, 0.4430395412241901, 0.8082746512504794, 0.9248395818955686, 0.8132668978866627, 0.7926355964369082, 0.7243101498981422, 0.8251498778038484, 0.865753667016409, 0.8784859927081519, 0.9613966942665844, 0.8380103992838959, 0.9376908870460701, 0.8505645904112248, 0.5317253080143199, 0.8756470416862959, 0.8823120896825394, 0.8920529250761863, 0.9565288857220365, 0.92576324319171, 0.8397457208604353, 0.8008835764985612, 0.7620555647282774, 0.6333567796033132, 0.8986985644274655, 0.8289197139212982, 0.38568054861828666, 0.4358764146033148, 0.7013568331933456, 0.5524769805317635, 0.8654015550049637, 0.9625385348003681, 0.4997035751430624, 0.5940434106189647, 0.29640429037896177, 0.9370396801623051, 0.7496358493500708, 0.8521916566704996, 0.7519935213994349, 0.8956127660014477, 0.7563308848917781, 0.5425355780301907, 0.1652985164032473, 0.5777375433929663, 0.5926841497777402, 0.5247451599628447, 0.6215406511606532, 0.646742228322253, 0.5236567091352762, 0.8105889943537302, 0.7614647275399787, 0.7272264480694343, 0.44438282424164377, 0.8051848688934031, 0.253979247575754, 0.8737269176380216, 0.7884186533408385, 0.5226162157005312, 0.7776146375974927, 0.8021344726910251, 0.6794204065079696, 0.8398669626756513, 0.3743394998756179, 0.6593725303534554, 0.41008410759983227, 0.8726624594592295, 0.31336232876890546, 0.6187135046228962, 0.9208146539756937, 0.8948907807194619, 0.9475948217130945, 0.7098971478357265, 0.41970311630379203, 0.5524505095188592, 0.6689295490636696, 0.39534528644804523, 0.6686700461744643, 0.6608417181144597, 0.6289006219381473, 0.8112353209803558, 0.9675531845963172, 0.3468688843876404, 0.8171815196180959, 0.9315945487332388, 0.7612383340144859, 0.43979370974717685, 0.9452166580978265, 0.810349906376065, 0.4979189466877109, 0.9054024939516333, 0.7506263221664519, 0.8595966107872783, 0.9041757536760852, 0.5120166815330335, 0.9246344940597735, 0.622364539475366, 0.7975959936185795, 0.9376528402833735, 0.8270495791839716, 0.7463426393970082, 0.8508295060861325, 0.5277539611022016, 0.7926521549058593, 0.8343380415579561, 0.7973631232158779, 0.5423298306356671, 0.6253812669856891, 0.9342151247863544, 0.9064095870896521, 0.8428584418618921, 0.5680191878381406, 0.8230633503438987, 0.857993972512287, 0.8312116035859974, 0.8886868130574391, 0.5695902702544526, 0.8750573328895943, 0.47134086624147714, 0.6082670858563528, 0.8571520978358925, 0.7006810412396262, 0.6001343818465046, 0.8680196363335714, 0.7833148206731655, 0.835330250744176, 0.6883000602161935, 0.4297997702781997, 0.7132181587745201, 0.941909753873568, 0.9298379484442667, 0.8950633078112005, 0.9652574497835966, 0.8593048115498744, 0.23022113319019433, 0.5548683876071567, 0.8789570823277312, 0.7176343272433334, 0.7135972690872326, 0.900955402304434, 0.89110615578316, 0.8021344726910251, 0.36734125225010755, 0.9233813125795639, 0.9269988231022361, 0.6021478506882372, 0.27064660283581765, 0.7595966254948197, 0.5317253080143199, 0.9626288904553877, 0.518871521713375, 0.4244151934213653, 0.8784852709235653, 0.667697582798242, 0.6791650855490978, 0.8659372985570389, 0.5217980090164113, 0.9757802673562255, 0.20769640873195563, 0.6900575067285889, 0.15051833553221247, 0.8476988333501053, 0.12043274000614122, 0.6546311715671466, 0.412102187638673, 0.6339696776630096, 0.6925917751558638, 0.8074446941396305, 0.8417042066658985, 0.4702054036006336, 0.8107456318417504, 0.934253622333564, 0.9671353887875448, 0.3776875782453083, 0.5133306968464912, 0.8279918435672958, 0.7295730380004212, 0.8398957027397556, 0.7470826509089123, 0.7722124156410631, 0.3944809481034696, 0.5801047158883857, 0.7134138458261836, 0.8265590446981121, 0.5836238058504062, 0.7538957359152121, 0.9708936701567454, 0.41507295289487073, 0.9039211350062085, 0.5109703825452502, 0.8880660412534, 0.6332514250278477, 0.703270618172154, 0.863031725372896, 0.9601349291832292, 0.5845797646527732, 0.8357575010967041, 0.9584406458449958, 0.8733333206292072, 0.4740801794177068, 0.5787650908025566, 0.38525623454815555, 0.5715075300165849, 0.951253157591183, 0.831291834366621, 0.6482062646591596, 0.5447536045265621, 0.8456825404777587, 0.5358725178581014, 0.8893400405584444, 0.5955893395860203, 0.9408369636189147, 0.7580589814818564, 0.4244151934213653, 0.7636885291754726, 0.9532052815091139, 0.6686700461744643, 0.39683939049776734, 0.8309978518015588, 0.06774730328187532, 0.8934061610794648, 0.9459413258233057, 0.8507977517004935, 0.9694554821790147, 0.8640493534313302, 0.8409166048571896, 0.9059760843724536, 0.7278052027863667, 0.8952246802917138, 0.39534528644804523, 0.9558702864115934, 0.9178754126151818, 0.7504628435478695, 0.7568870052952757, 0.32046258648166903, 0.9712495894387816, 0.7125870341029702, 0.8286889773580812, 0.929575727770858, 0.8422483936479932, 0.60065365322741, 0.5775074082600717, 0.7505976846167132, 0.5317253080143199, 0.9590110623565244, 0.9651712957082627, 0.7333643603414158, 0.7757825668725274, 0.8928390517037824, 0.2578168736401774, 0.5355488836719776, 0.8408692583280314, 0.7849780542174357, 0.8711681462620556, 0.8447990405440073, 0.9571933326515756, 0.9307123551507692, 0.6421242495412457, 0.9239207054420927, 0.9336219461922934, 0.4244151934213653, 0.5673643045526261, 0.8301442064454496, 0.528471943574542, 0.8835542071774324, 0.8820947700128993, 0.4561713647735051, 0.584381944856391, 0.9493936477483658, 0.7816316980556022, 0.7770145472448273, 0.8495153837633861, 0.8318035560268552, 0.5220388622338656, 0.8589980209217414, 0.21216021099657945, 0.8782303617207965, 0.901850575196968, 0.7683760396387002, 0.9559989503713009, 0.938411491366706, 0.7225398931917507, 0.5918361617892179, 0.8596378534897678, 0.8816239240572568, 0.9296844522785247, 0.8299758417251202, 0.7538846798551382, 0.931253582726863, 0.6902425303942638, 0.9299571155275668, 0.35461708236434614, 0.6119587629530028, 0.8979450471026776, 0.8782891297971865, 0.6144930729026484, 0.5601837238662909, 0.4230258756549153, 0.5115702372514986, 0.6133200318312215, 0.8287048127179734, 0.42887934024879554, 0.5543929044930882, 0.5414149972460248, 0.7453725251924848, 0.6522898344923613, 0.6445138145159856, 0.9212190995841192, 0.6991293681294938, 0.9188224881967051, 0.9444881948020799, 0.8399825546316605, 0.6440269003431431, 0.45260210695563535, 0.6678228102737954, 0.8535669746933884, 0.23469888428232324, 0.7581156815660375, 0.8329520097124233, 0.5886389680190937, 0.4250130050586104, 0.290761161529129, 0.9065968169685268, 0.39757013049667705, 0.9584529405260903, 0.24804178200132845, 0.8400605958344816, 0.9562762484868867, 0.5923100188758571, 0.5355488836719776, 0.6866862751474886, 0.753715093249364, 0.9302702282582556, 0.8405005145861136, 0.7758456574858743, 0.8270123797965384, 0.9270997487744173, 0.8779999285967196, 0.6350604679157676, 0.9057987369792326, 0.9732730617650076, 0.28007269673131574, 0.5393237551960537, 0.9509318156255189, 0.8055358405733448, 0.8512314640165554, 0.6752183046546253, 0.9766791413071304, 0.26893819095773785, 0.5105552073939665, 0.7964242570425004, 0.9159462749375985, 0.46312559485344046, 0.7889853219989779, 0.5331772070153998, 0.6250130361556073, 0.5340700079782073, 0.8981158701031157, 0.8424802355113449], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [0.088, 0.06, 0.036, 0.04, 0.043, 0.048, 0.032, 0.078, 0.078, 0.063, 0.054, 0.036, 0.039, 0.048, 0.054, 0.046, 0.052, 0.098, 0.032, 0.03, 0.036, 0.036, 0.035, 0.065, 0.04, 0.035, 0.083, 0.054, 0.028, 0.044, 0.04, 0.077, 0.081, 0.072, 0.054, 0.045, 0.078, 0.079, 0.055, 0.066, 0.026, 0.073, 0.069, 0.047, 0.048, 0.048, 0.076, 0.118, 0.051, 0.025, 0.046, 0.084, 0.034, 0.094, 0.084, 0.077, 0.074, 0.095, 0.04, 0.043, 0.095, 0.037, 0.048, 0.098, 0.098, 0.06, 0.414, 0.076, 0.102, 0.072, 0.115, 0.046, 0.036, 0.088, 0.031, 0.04, 0.052, 0.029, 0.044, 0.074, 0.062, 0.078, 0.045, 0.084, 0.04, 0.028, 0.037, 0.044, 0.041, 0.071, 0.05, 0.043, 0.091, 0.045, 0.08, 0.137, 0.035, 0.17, 0.062, 0.04, 0.092, 0.027, 0.046, 0.073, 0.047, 0.062, 0.146, 0.057, 0.051, 0.045, 0.069, 0.059, 0.078, 0.053, 0.038, 0.029, 0.051, 0.158, 0.05, 0.105, 0.044, 0.028, 0.051, 0.082, 0.076, 0.088, 0.036, 0.034, 0.076, 0.047, 0.016, 0.054, 0.045, 0.036, 0.082, 0.047, 0.053, 0.077, 0.086, 0.041, 0.036, 0.04, 0.031, 0.036, 0.071, 0.049, 0.057, 0.066, 0.079, 0.057, 0.034, 0.048, 0.07, 0.045, 0.076, 0.057, 0.035, 0.046, 0.052, 0.211, 0.089, 0.063, 0.039, 0.038, 0.086, 0.031, 0.036, 0.036, 0.046, 0.052, 0.058, 0.062, 0.049, 0.042, 0.073, 0.033, 0.048, 0.044, 0.047, 0.042, 0.033, 0.041, 0.098, 0.048, 0.06, 0.032, 0.212, 0.034, 0.046, 0.053, 0.078, 0.05, 0.038, 0.039, 0.041, 0.08, 0.051, 0.043, 0.051, 0.094, 0.05, 0.051, 0.06, 0.052, 0.023, 0.045, 0.046, 0.077, 0.042, 0.041, 0.052, 0.053, 0.064, 0.046, 0.048, 0.017, 0.063, 0.036, 0.174, 0.046, 0.043, 0.053, 0.046, 0.045, 0.055, 0.037, 0.088, 0.059, 0.042, 0.068, 0.066, 0.043, 0.05, 0.037, 0.09, 0.056, 0.038, 0.039, 0.045, 0.045, 0.096, 0.094, 0.057, 0.054, 0.041, 0.041, 0.06, 0.045, 0.042, 0.048, 0.08, 0.065, 0.029, 0.045, 0.142, 0.038, 0.054, 0.061, 0.105, 0.099, 0.114, 0.044, 0.046, 0.046, 0.053, 0.053, 0.044, 0.044, 0.036, 0.055, 0.053, 0.092, 0.037, 0.057, 0.044, 0.042, 0.049, 0.082, 0.089, 0.071, 0.081, 0.044, 0.023, 0.044, 0.176, 0.032, 0.045, 0.053, 0.052, 0.081, 0.056, 0.044, 0.055, 0.077, 0.05, 0.064, 0.032, 0.046, 0.057, 0.095, 0.028, 0.093, 0.046, 0.043, 0.056, 0.03, 0.09, 0.05, 0.059, 0.054, 0.079, 0.084, 0.046, 0.046, 0.059, 0.05, 0.073, 0.052, 0.042, 0.042, 0.085, 0.066, 0.059, 0.043, 0.088, 0.053, 0.066, 0.075, 0.038, 0.036, 0.079, 0.051, 0.036, 0.033, 0.071, 0.036, 0.037, 0.058, 0.05, 0.043, 0.046, 0.078, 0.076, 0.08, 0.2, 0.036, 0.05, 0.088, 0.05, 0.036, 0.053, 0.031], \"xaxis\": \"x2\", \"y\": [0.8142007211296887, 0.07257977436397642, 0.7430932382113554, 0.8214862427787604, 0.5698848321031316, 0.6048119589659149, 0.6466669219762841, 0.14510080060429495, 0.2250304680670007, 0.28492472637839966, 0.42061632734231896, 0.8281252124183194, 0.49622399336621903, 0.3482895521074759, 0.4678833354511545, 0.5708968386647719, 0.37048677721847617, 0.553632248395139, 0.8702137350251022, 0.42186952587750404, 0.8696774950675754, 0.5410576963494411, 0.3971326977900686, 0.3275001196198921, 0.9448289227093116, 0.7109941475090589, 0.41925580570138304, 0.3675472469853882, 0.6721911818800557, 0.5562207270314473, 0.5262426608517637, 0.3244609607385458, 0.15056615442564347, 0.15676979724311627, 0.6037730696030339, 0.6342511279653397, 0.021947035536558718, 0.32429164429335744, 0.5678746850743716, 0.3571680467137555, 0.7755534309390314, 0.3240287891037917, 0.699424662214302, 0.5151532452376618, 0.7564675819717819, 0.38343591026479057, 0.19811005648518398, 0.3168419703358067, 0.5315947262677626, 0.9269044449273315, 0.8260225289794664, 0.451791899378283, 0.830516920403184, 0.47128602930186, 0.19027823806377472, 0.5181346713949518, 0.29552777318700446, 0.45414400334446664, 0.39329840463575844, 0.42327932510626076, 0.45838907164509224, 0.2233864252642039, 0.3628419195926303, 0.6709353200988277, 0.46058046365566996, 0.25551237833043455, 0.7234147543269824, 0.1481282262733752, 0.314935793994079, 0.20050531530561894, 0.37453315488553635, 0.701015529968035, 0.6343341418527783, 0.1739320900588749, 0.734996253073231, 0.8172229478314255, 0.3598554146739685, 0.7121055211356295, 0.2620604909731644, 0.3421138035730516, 0.6951268813066005, 0.35208221297891723, 0.452099210446082, 0.18907620085798427, 0.5444201651108793, 0.6484058972837882, 0.3258186925596978, 0.5963383680780668, 0.6202666247822538, 0.576738593946626, 0.5054992484109841, 0.2972245631729925, 0.6844333356791464, 0.42629475072919953, 0.4405153833121037, 0.01207867704715336, 0.7609288944606691, 0.23951123982998349, 0.09310514674080905, 0.5084920166510624, 0.33067609257366243, 0.36481899584296196, 0.5708968386647719, 0.3194802059637459, 0.14207297841267416, 0.5776897120055972, 0.2026163425795633, 0.37909000048748537, 0.38206764842015895, 0.41324683104354176, 0.17826143731067332, 0.42339414872454434, 0.39148091864802853, 0.3511350413575442, 0.8053393751847749, 0.5937005322868365, 0.6849942580153355, 0.38930033076762494, 0.5168500865319015, 0.5699073288866824, 0.5376087249833421, 0.8185832461647057, 0.25950508036415604, 0.20394483716883388, 0.3303044530853749, 0.2528102968078532, 0.8477719856767125, 0.5217124250004609, 0.3303044530853749, 0.5382885532339231, 0.9625763866028243, 0.6536174904341296, 0.42629475072919953, 0.6458781618432388, 0.46574001023909845, 0.37268733756108086, 0.8180085473348132, 0.35493594975273335, 0.2423640089427935, 0.3636330633241046, 0.6421622311157122, 0.5444201651108793, 0.7396308412796291, 0.9036153464846048, 0.21101569987323432, 0.6004024464464508, 0.7595861882737439, 0.486549602332862, 0.2379839758891197, 0.5147825233229498, 0.2065932277190248, 0.4342628292980428, 0.5940848250235929, 0.4857193175270624, 0.5332610244722983, 0.5402196969638672, 0.8578846895389459, 0.5290225674595067, 0.6074669506688956, 0.1847839155105034, 0.3581391437324269, 0.4304380754474639, 0.8410120374942113, 0.5810086483513661, 0.19026233744636453, 0.7223494520380469, 0.8589928738613049, 0.8374625942163022, 0.781203852328267, 0.73983195178881, 0.41156537259256004, 0.7482873396984137, 0.44431713201158524, 0.7113673874393347, 0.49869552495399233, 0.7627102864663872, 0.37193390769028617, 0.37187810520956766, 0.3773291605703562, 0.8719651627687759, 0.6218762459828849, 0.3781393537983126, 0.553632248395139, 0.47624084907999176, 0.774399353278846, 0.5840424935194366, 0.5601025471409736, 0.6186690618327106, 0.620611700356168, 0.5755798886129706, 0.15047650536569443, 0.5530049338021776, 0.6597439619439023, 0.8300222117931148, 0.3490158529243493, 0.4410646109528086, 0.5067909967309752, 0.5851482063434866, 0.7149827463187939, 0.4849259975950144, 0.2094210588097294, 0.33399024531412796, 0.4083143545243069, 0.7497022835596558, 0.7817929239213606, 0.7637421953724776, 0.3825655414920891, 0.6611482494098961, 0.19022241257108333, 0.44972084577511023, 0.5476732603321269, 0.4831274653996314, 0.5077048340566679, 0.7289504589448288, 0.4379810490617926, 0.8017221455714771, 0.6434673631716396, 0.5059779734745421, 0.6065367192264559, 0.650368705032214, 0.34567471266024347, 0.39561589000187136, 0.3427787545601037, 0.4676404271158623, 0.5332283386400669, 0.4519108142444285, 0.40662831629925006, 0.42305576187259053, 0.22032895172816622, 0.5278715769330472, 0.43679486629948455, 0.743933429392776, 0.5269515041023835, 0.5008800654866953, 0.214168174561682, 0.44879088851457377, 0.683485355417811, 0.807753104897186, 0.42629475072919953, 0.8502951424821861, 0.17421175568219957, 0.25491371883486935, 0.7595861882737439, 0.6571724132942184, 0.7813188949129265, 0.5626906653340306, 0.8674288259883418, 0.6600514650598344, 0.4827749661719035, 0.5456147119159479, 0.39827550056677263, 0.27323823737433794, 0.695896529362927, 0.5048820477254727, 0.5422349097465021, 0.5610936746718964, 0.6571724132942184, 0.3088751107498249, 0.45428761266464013, 0.6604471727860799, 0.43371621376298963, 0.6171893197168647, 0.8100511550343341, 0.8100511550343341, 0.605832578461134, 0.5526475584669951, 0.4275055171336787, 0.8734720021260204, 0.8508295378350301, 0.5807723706867254, 0.8272749548927728, 0.2670652478909882, 0.7020144194675465, 0.4615566916191992, 0.7055847950248242, 0.43389869234556755, 0.6071692164257629, 0.3496825637352313, 0.23676491619791426, 0.7057755976874825, 0.15539001443149586, 0.6187538615870153, 0.8735882828904331, 0.30049486749739024, 0.23191705420611952, 0.8913917397916864, 0.4977157214618499, 0.16961113509580228, 0.8485494795219795, 0.4760032757956232, 0.5053843099270294, 0.2676015269871764, 0.3627664421236291, 0.15146266807038725, 0.7898179638281774, 0.6145296307645981, 0.3790380236797623, 0.3003532640340299, 0.6086112016774773, 0.39906793889171593, 0.8185832461647057, 0.6715802865662828, 0.8260225289794664, 0.6056902064850618, 0.400132762133902, 0.39471961640683584, 0.6449859309106076, 0.5637152910565628, 0.39949420960438964, 0.5490401551410112, 0.4398875418860128, 0.30916577334906253, 0.7093303227687476, 0.4562508424819209, 0.40444044759428516, 0.5773483646962835, 0.447777692034652, 0.4961542215384683, 0.32474312180562226, 0.21192693199409943, 0.9056903490933487, 0.5013816399998683, 0.758876109553896, 0.6364928148646596, 0.2952804752502578, 0.4748951900520853, 0.43679486629948455, 0.5479962315186364, 0.4728142838839701, 0.6343341418527783, 0.12248807650217919, 0.5052525886146573, 0.8281252124183194, 0.8930081609652758, 0.36283726088930296, 0.8098196742550625, 0.656477404357746, 0.193885049884708, 0.5269515041023835, 0.49858469647139786, 0.32780472036158087, 0.24927512797396847, 0.6148718578314069, 0.10691527318901187, 0.136775438340409, 0.8489192718114075, 0.2600203086082801, 0.8142007211296887, 0.5269515041023835, 0.7966615933629455, 0.5633234794197017, 0.767479452333631], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"chlorides\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"chlorides\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}}, {\"id\": \"chlorides_bad\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (ref)\", \"type\": \"scatter\", \"x\": [0.05, 0.044, 0.031, 0.09, 0.091, 0.086, 0.043, 0.09, 0.053, 0.054, 0.068, 0.041, 0.039, 0.05, 0.052, 0.117, 0.08, 0.172, 0.05, 0.081, 0.049, 0.048, 0.086, 0.028, 0.067, 0.092, 0.041, 0.088, 0.044, 0.054, 0.068, 0.04, 0.039, 0.039, 0.06, 0.059, 0.039, 0.045, 0.07, 0.045, 0.112, 0.104, 0.047, 0.055, 0.107, 0.059, 0.051, 0.032, 0.047, 0.076, 0.077, 0.061, 0.138, 0.089, 0.053, 0.239, 0.045, 0.048, 0.142, 0.08, 0.05, 0.055, 0.067, 0.05, 0.097, 0.047, 0.043, 0.077, 0.076, 0.024, 0.045, 0.08, 0.051, 0.041, 0.044, 0.033, 0.039, 0.062, 0.098, 0.026, 0.05, 0.037, 0.049, 0.082, 0.068, 0.112, 0.041, 0.047, 0.044, 0.044, 0.08, 0.044, 0.085, 0.051, 0.066, 0.044, 0.055, 0.058, 0.048, 0.056, 0.056, 0.082, 0.034, 0.054, 0.069, 0.467, 0.042, 0.038, 0.045, 0.044, 0.066, 0.027, 0.069, 0.029, 0.082, 0.096, 0.047, 0.047, 0.08, 0.049, 0.047, 0.048, 0.049, 0.038, 0.05, 0.056, 0.041, 0.064, 0.092, 0.04, 0.037, 0.105, 0.209, 0.047, 0.045, 0.063, 0.026, 0.055, 0.05, 0.08, 0.034, 0.039, 0.037, 0.04, 0.041, 0.051, 0.093, 0.04, 0.084, 0.073, 0.052, 0.087, 0.04, 0.079, 0.06, 0.084, 0.105, 0.044, 0.036, 0.03, 0.035, 0.087, 0.07, 0.052, 0.078, 0.034, 0.05, 0.055, 0.108, 0.045, 0.046, 0.053, 0.07, 0.043, 0.1, 0.068, 0.08, 0.042, 0.074, 0.044, 0.05, 0.082, 0.053, 0.056, 0.047, 0.044, 0.052, 0.031, 0.037, 0.044, 0.096, 0.039, 0.047, 0.032, 0.049, 0.084, 0.055, 0.061, 0.049, 0.09, 0.046, 0.205, 0.205, 0.059, 0.046, 0.05, 0.046, 0.083, 0.049, 0.027, 0.05, 0.047, 0.054, 0.056, 0.063, 0.044, 0.045, 0.03, 0.301, 0.034, 0.084, 0.04, 0.039, 0.049, 0.044, 0.052, 0.043, 0.057, 0.046, 0.075, 0.034, 0.04, 0.057, 0.085, 0.04, 0.026, 0.07, 0.02, 0.051, 0.043, 0.099, 0.066, 0.053, 0.24, 0.04, 0.09, 0.085, 0.043, 0.052, 0.07, 0.104, 0.042, 0.039, 0.092, 0.056, 0.047, 0.067, 0.039, 0.058, 0.091, 0.052, 0.052, 0.051, 0.062, 0.05, 0.046, 0.044, 0.049, 0.071, 0.073, 0.058, 0.29, 0.058, 0.044, 0.048, 0.04, 0.091, 0.041, 0.06, 0.04, 0.103, 0.081, 0.041, 0.07, 0.069, 0.046, 0.039, 0.054, 0.026, 0.048, 0.031, 0.05, 0.047, 0.029, 0.083, 0.111, 0.053, 0.056, 0.046, 0.081, 0.041, 0.047, 0.081, 0.05, 0.087, 0.042, 0.05, 0.08, 0.152, 0.098, 0.186, 0.031, 0.081, 0.05, 0.099, 0.048, 0.063, 0.084, 0.04, 0.114, 0.114, 0.048, 0.047, 0.08, 0.047, 0.048, 0.096, 0.046, 0.077, 0.042, 0.048, 0.08, 0.049, 0.052, 0.038, 0.077, 0.048, 0.073, 0.037, 0.054, 0.051, 0.052, 0.037, 0.079, 0.035, 0.074, 0.095, 0.046, 0.046, 0.046, 0.04, 0.07, 0.042, 0.049, 0.047], \"xaxis\": \"x\", \"y\": [0.7197707895473677, 0.05448058807241418, 0.5021256787650443, 0.4710854375480472, 0.7156076129280222, 0.7966690429773311, 0.7265425252145667, 0.16771266951545494, 0.610944103187451, 0.6324527530146118, 0.42180662537268765, 0.2598044700255929, 0.5503032830239416, 0.5632112185661304, 0.6840604465833231, 0.6224375641140001, 0.8071781895370533, 0.9515482366939344, 0.3994071349416132, 0.9677746238863042, 0.572587586261062, 0.7602674855798478, 0.861098734498427, 0.1386074727873, 0.6703360831713621, 0.8064003460928679, 0.3172728283240366, 0.8039094494444462, 0.9186426431335688, 0.6026275969807151, 0.8609701260317718, 0.3485833566260712, 0.3005246278528939, 0.2859113263741919, 0.4978204971029292, 0.5125675444128744, 0.4268860326359044, 0.11791793574572085, 0.440027850275134, 0.4938434408506086, 0.4933189622152446, 0.166194347192407, 0.30200278364192557, 0.6822425768461728, 0.8693180940701344, 0.24112389044610405, 0.43189370387303117, 0.284455178085937, 0.23793737479647703, 0.5535561322468214, 0.7900402576908969, 0.47373775892899717, 0.6055733033081183, 0.7462675017011632, 0.32245623572553406, 0.7612367841042231, 0.36308410170653527, 0.6103993963703384, 0.3965676277125745, 0.2230008284200371, 0.8480025164595866, 0.43585875500482685, 0.24095331994381775, 0.4030652094068704, 0.8951637220162157, 0.2782175630406618, 0.7337660836226194, 0.8352762102164887, 0.6223987562306759, 0.2928263700360406, 0.6563137004068428, 0.16155652477357085, 0.6364666355122575, 0.2186811050870735, 0.27206300237801306, 0.4358901152617537, 0.6136035252376228, 0.07900866299327158, 0.8522855318359817, 0.11906253414448076, 0.3466831105240652, 0.11265227152414181, 0.6302693732121377, 0.7168097665217413, 0.4796298258249143, 0.4476252306691143, 0.3612478268219491, 0.611861930499026, 0.15121036728507153, 0.5363393546692182, 0.16155652477357085, 0.441733396330222, 0.7834276811132227, 0.6364666355122575, 0.44873286860252337, 0.4948960601400133, 0.4172084246960842, 0.5055831714989107, 0.5269082808529498, 0.3737404408311804, 0.4491757516278906, 0.5266720849021, 0.2882430633103308, 0.6066213483726142, 0.83534933450756, 0.2509605867776752, 0.230738949997912, 0.25680675940048736, 0.6858999083789018, 0.27626495444752697, 0.35158671089680515, 0.311480105980391, 0.5950329577300569, 0.4196263877039489, 0.3672198477254309, 0.5488429300958864, 0.6273126624389191, 0.0990306898864649, 0.935036100419004, 0.5556828679884147, 0.6003916802566726, 0.1337843055401957, 0.6898191889393818, 0.46604488826349566, 0.6668872608045229, 0.5998672378660981, 0.14712454771937833, 0.8558065212045691, 0.883276495704891, 0.5544329747085402, 0.38398791005853006, 0.8623310715459079, 0.4482795971615686, 0.4767821080964978, 0.6451659669426603, 0.5099786295438409, 0.11454219273407718, 0.5691587732433696, 0.2398813672346335, 0.8592796956842923, 0.38133093816728936, 0.4754945767078651, 0.2673740541283356, 0.43092180164799054, 0.5981491184574936, 0.7512253043619477, 0.20474988026063612, 0.12337786436138054, 0.6965484670033051, 0.4642254518352117, 0.29034758521725457, 0.7912282271603185, 0.1364389858241727, 0.5326323768611896, 0.3938848007926149, 0.886984727126295, 0.5955398539691413, 0.3667393936023857, 0.35129461810907203, 0.578130474122496, 0.1952086434691429, 0.6982941690158907, 0.6159300986783536, 0.6650580695700093, 0.8007006003287879, 0.13750802167619447, 0.47121416359091395, 0.5691587732433696, 0.5295784007050042, 0.4938434408506086, 0.4240508430342457, 0.1531205555636086, 0.7965770364050346, 0.4829168465516456, 0.6333246955344933, 0.38682769986244625, 0.5589353890471914, 0.30965836575156913, 0.6133571507425741, 0.5363393546692182, 0.5474540697204298, 0.9680074395956593, 0.29703705077451537, 0.7566858385458134, 0.451244026180727, 0.6224939697452743, 0.9340693900855184, 0.1254375450851024, 0.770680513376406, 0.7273231109206828, 0.410671569380914, 0.19928392436820586, 0.44743622108127745, 0.4991477681643879, 0.5443787589855091, 0.826082779912576, 0.5642536294664222, 0.6762559922350657, 0.39283078357423706, 0.3074847569358159, 0.40732461839200396, 0.5614584986504241, 0.5614584986504241, 0.575628870274347, 0.1938881144566701, 0.6480440770440566, 0.23946299348505806, 0.6110142157087575, 0.32489046344192996, 0.127020290619695, 0.28948900574123104, 0.27970970921902805, 0.5179212029104148, 0.579807192000203, 0.5695619245525361, 0.7471497674522103, 0.6761943115269239, 0.6052803835931642, 0.9048996801452402, 0.632953623191418, 0.7849920634816455, 0.12946409768986655, 0.3899257470968539, 0.37735505673750047, 0.27206300237801306, 0.6356505945299911, 0.9000798247851504, 0.5852448485124296, 0.3537739535016634, 0.8589709040748648, 0.5105041430354158, 0.4760479563081992, 0.3915586115462193, 0.4344526143297297, 0.04825794875232026, 0.25106204840173363, 0.5352062615150248, 0.2084678736174792, 0.5588772074146924, 0.42656597432725707, 0.3395528272139201, 0.5154796814541086, 0.30312695461308037, 0.4684625037801391, 0.13140485141127656, 0.37575572516499556, 0.7087902803012941, 0.22740617784346517, 0.7932370230268412, 0.6977827466507267, 0.8687065743771458, 0.3532210556477622, 0.3005246278528939, 0.8817461779308045, 0.5897758288136841, 0.5117334773877459, 0.2267712913026929, 0.7462523759498982, 0.5055831714989107, 0.6276122794572256, 0.34766968675436505, 0.563322001169588, 0.4035281086421867, 0.44827723495654004, 0.7588644006503809, 0.17560197311170134, 0.2736156405730563, 0.5646478519097824, 0.12788772013874206, 0.8127608550985441, 0.35130933230290007, 0.8842329534318195, 0.5671758377024384, 0.508518787579709, 0.4735654621913231, 0.6614347321502836, 0.7032589073748752, 0.418601168771625, 0.40262233345395115, 0.38045938978299354, 0.6221728234115828, 0.6769388667590319, 0.825791915264051, 0.8036522945246104, 0.5350776523934957, 0.5038683203672731, 0.4187790963850706, 0.3942708224564714, 0.36585282612655, 0.42973128126448334, 0.1395024853671747, 0.36909778672938764, 0.5126700875045708, 0.31128511290513083, 0.5841805470690385, 0.42932394036482613, 0.5168725346003686, 0.9331527243268325, 0.5090935678835011, 0.848083892739094, 0.7288594688776423, 0.23463814542978878, 0.9073343486287574, 0.5445649372592127, 0.8030108083542629, 0.30698149193503155, 0.47724620771884374, 0.49565431290071005, 0.29179072192325783, 0.53941953634433, 0.32642767658125227, 0.5714063949384225, 0.6769388667590319, 0.48314991346809855, 0.3838692085325581, 0.7654355578102645, 0.6807995217458978, 0.7803105409218809, 0.4971816769068883, 0.5662837862370104, 0.32557907866588853, 0.4059739580227363, 0.8621668957327787, 0.4863555612469991, 0.44913520001249685, 0.5044088987161788, 0.018560580499064172, 0.17397747102053363, 0.8203404366189, 0.531551035274026, 0.3951880410340851, 0.6710839680909022, 0.7545393605546251, 0.25029771644034415, 0.31651464458218903, 0.7900402576908969, 0.7649542174153934, 0.6282404390050247, 0.5124469561170844, 0.7501741577575001, 0.3717170374651112, 0.5479204837841629, 0.1799627586960565, 0.8716748635647116, 0.4700369344869263, 0.7044722268129955, 0.7597806244765397, 0.4570971226262448, 0.3688130253756654, 0.5854022956087224, 0.6067015953642416, 0.6092966434658947, 0.5713009051869427, 0.15316343939585397, 0.31191498773739224], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [0.037, 0.054, 0.051, 0.039, 0.046, 0.086, 0.033, 0.032, 0.032, 0.071, 0.037, 0.069, 0.044, 0.049, 0.053, 0.061, 0.036, 0.1, 0.033, 0.035, 0.038, 0.034, 0.051, 0.034, 0.039, 0.048, 0.029, 0.033, 0.05, 0.029, 0.063, 0.062, 0.032, 0.045, 0.029, 0.05, 0.038, 0.03, 0.032, 0.02, 0.033, 0.05, 0.046, 0.035, 0.043, 0.058, 0.08, 0.029, 0.074, 0.033, 0.058, 0.044, 0.039, 0.042, 0.037, 0.076, 0.03, 0.02, 0.04, 0.034, 0.064, 0.035, 0.044, 0.042, 0.088, 0.085, 0.012, 0.047, 0.069, 0.02, 0.039, 0.032, 0.047, 0.05, 0.061, 0.05, 0.078, 0.034, 0.073, 0.038, 0.047, 0.032, 0.033, 0.035, 0.034, 0.035, 0.044, 0.086, 0.04, 0.084, 0.037, 0.035, 0.04, 0.044, 0.046, 0.031, 0.035, 0.035, 0.04, 0.046, 0.042, 0.05, 0.091, 0.05, 0.037, 0.048, 0.053, 0.048, 0.036, 0.064, 0.05, 0.053, 0.024, 0.054, 0.043, 0.021, 0.042, 0.052, 0.04, 0.074, 0.062, 0.052, 0.043, 0.053, 0.078, 0.084, 0.074, 0.045, 0.031, 0.084, 0.034, 0.036, 0.042, 0.08, 0.062, 0.035, 0.092, 0.062, 0.038, 0.092, 0.049, 0.041, 0.046, 0.04, 0.084, 0.044, 0.036, 0.031, 0.077, 0.051, 0.051, 0.073, 0.036, 0.046, 0.051, 0.038, 0.043, 0.042, 0.027, 0.039, 0.036, 0.083, 0.044, 0.077, 0.033, 0.043, 0.041, 0.035, 0.036, 0.036, 0.071, 0.082, 0.039, 0.033, 0.087, 0.044, 0.076, 0.05, 0.037, 0.08, 0.046, 0.044, 0.054, 0.031, 0.045, 0.047, 0.037, 0.068, 0.04, 0.044, 0.026, 0.087, 0.032, 0.036, 0.082, 0.028, 0.06, 0.048, 0.019, 0.026, 0.056, 0.034, 0.041, 0.072, 0.043, 0.057, 0.062, 0.042, 0.057, 0.053, 0.057, 0.024, 0.04, 0.035, 0.031, 0.045, 0.029, 0.038, 0.029, 0.095, 0.039, 0.042, 0.044, 0.032, 0.074, 0.025, 0.067, 0.047, 0.047, 0.046, 0.041, 0.049, 0.072, 0.042, 0.051, 0.037, 0.034, 0.046, 0.028, 0.036, 0.024, 0.058, 0.154, 0.048, 0.114, 0.047, 0.043, 0.064, 0.039, 0.029, 0.044, 0.053, 0.171, 0.075, 0.081, 0.047, 0.046, 0.184, 0.038, 0.062, 0.05, 0.063, 0.041, 0.047, 0.036, 0.032, 0.028, 0.08, 0.063, 0.038, 0.042, 0.045, 0.041, 0.039, 0.021, 0.06, 0.039, 0.068, 0.087, 0.194, 0.042, 0.037, 0.028, 0.026, 0.024, 0.084, 0.051, 0.054, 0.114, 0.048, 0.038, 0.029, 0.093, 0.037, 0.048, 0.056, 0.074, 0.041, 0.046, 0.04, 0.069, 0.044, 0.039, 0.049, 0.033, 0.074, 0.034, 0.104, 0.038, 0.145, 0.073, 0.05, 0.056, 0.038, 0.043, 0.082, 0.049, 0.033, 0.042, 0.029, 0.014, 0.144, 0.035, 0.03, 0.034, 0.066, 0.042, 0.1, 0.055, 0.058, 0.026, 0.045, 0.071, 0.056, 0.035, 0.043, 0.03, 0.068, 0.039, 0.047, 0.051, 0.022, 0.035, 0.041, 0.058, 0.04, 0.048, 0.065, 0.02, 0.05, 0.046, 0.048, 0.039, 0.033, 0.047, 0.037, 0.081, 0.037, 0.104, 0.03, 0.053, 0.049, 0.067, 0.066, 0.08, 0.048, 0.048, 0.041, 0.079, 0.046, 0.043, 0.043, 0.041, 0.042, 0.032, 0.027, 0.033, 0.095, 0.057, 0.08, 0.071, 0.024, 0.096, 0.052, 0.045, 0.031, 0.214, 0.048, 0.041, 0.026, 0.032, 0.047, 0.034, 0.035, 0.045, 0.067, 0.052, 0.031, 0.032, 0.066, 0.068, 0.079, 0.044, 0.043, 0.028, 0.041, 0.031, 0.033, 0.063, 0.045, 0.039, 0.041, 0.052, 0.034, 0.046, 0.045, 0.034, 0.04, 0.054, 0.06, 0.05, 0.029, 0.047, 0.051, 0.055, 0.031, 0.057, 0.064, 0.036, 0.042, 0.033, 0.027, 0.03, 0.026, 0.052, 0.024, 0.075, 0.103, 0.035, 0.094, 0.038, 0.047, 0.028, 0.029, 0.042, 0.052, 0.045, 0.06, 0.066, 0.037, 0.035, 0.036, 0.026, 0.036, 0.045, 0.066, 0.036, 0.079, 0.047, 0.035, 0.066, 0.078, 0.07, 0.045, 0.034, 0.072, 0.036, 0.026, 0.05, 0.052, 0.079, 0.058, 0.051, 0.044, 0.026, 0.038, 0.036, 0.048, 0.056, 0.045, 0.095, 0.054, 0.047, 0.039, 0.061, 0.036, 0.031, 0.051, 0.029, 0.063, 0.048, 0.076, 0.058, 0.039, 0.059, 0.041, 0.057, 0.043, 0.044, 0.042, 0.049, 0.036, 0.031, 0.058, 0.027, 0.048, 0.027, 0.034, 0.027, 0.055, 0.039, 0.025, 0.053, 0.042, 0.034, 0.024, 0.033, 0.048, 0.028, 0.034, 0.054, 0.033, 0.028, 0.036, 0.097, 0.019, 0.039, 0.054, 0.045, 0.036, 0.087, 0.098, 0.044, 0.043, 0.037, 0.087, 0.047, 0.041, 0.054, 0.039, 0.048, 0.041, 0.04, 0.051, 0.029, 0.033, 0.104, 0.053, 0.042, 0.051, 0.022, 0.031, 0.044, 0.049, 0.034, 0.078, 0.045, 0.089, 0.056, 0.036, 0.18, 0.035, 0.031, 0.048, 0.044, 0.037, 0.038, 0.043, 0.034, 0.045, 0.039, 0.047, 0.028, 0.019, 0.039, 0.022, 0.05, 0.025, 0.072, 0.046, 0.032, 0.03, 0.034, 0.064, 0.045, 0.076, 0.036, 0.041, 0.041, 0.032, 0.11, 0.031, 0.047, 0.041, 0.039, 0.036, 0.038, 0.065, 0.037, 0.054, 0.055, 0.046, 0.047, 0.041, 0.08, 0.046, 0.037, 0.064, 0.031, 0.057, 0.041, 0.092, 0.04, 0.084, 0.039, 0.06, 0.04, 0.047, 0.062, 0.148, 0.045, 0.035, 0.062, 0.119, 0.031, 0.051, 0.04, 0.028, 0.046, 0.031, 0.119, 0.044, 0.045, 0.053, 0.031, 0.033, 0.063, 0.046, 0.043, 0.083, 0.023, 0.107, 0.039, 0.038, 0.036], \"xaxis\": \"x\", \"y\": [0.18439386755371057, 0.5750868907731637, 0.1132172353536568, 0.19850047615697952, 0.6950004168934912, 0.41826441672946313, 0.040828937665112974, 0.2145583871630251, 0.09143093017991866, 0.10013996234885614, 0.3658834999306372, 0.587897812361327, 0.23563705889496211, 0.5289998061994394, 0.5981734696485812, 0.5956194363709464, 0.11295199838815062, 0.6349332021584286, 0.09356782907078887, 0.0672754654033908, 0.3541579814831264, 0.11781588709523827, 0.3295981493457443, 0.23443288181779365, 0.13830133810679424, 0.5122546205578999, 0.03626449638205209, 0.32057959349203036, 0.3955164844050859, 0.21320459763992916, 0.08620177311633537, 0.4132497936565127, 0.19514157099220286, 0.028148892894647393, 0.03728071159582558, 0.20213762816504022, 0.39088790332760825, 0.10566618212719892, 0.11466232649727714, 0.09544364959788487, 0.07351553674018241, 0.3657542344632553, 0.05859665738698361, 0.43634835962676355, 0.4827032077898804, 0.516310366273556, 0.6480037931050455, 0.21122004543372697, 0.030344760075157406, 0.22750344576024595, 0.18673438423788624, 0.5460909738859347, 0.0666291073587214, 0.320234954276134, 0.515425573770442, 0.5751179393061847, 0.3262180383913996, 0.12192585741802231, 0.6165939755266235, 0.09365914315081003, 0.44259853952477324, 0.31958523161407537, 0.09228899111547839, 0.22815273642701062, 0.5282447951108347, 0.7777719169155834, 0.13834506443323813, 0.29425092810710396, 0.5300870647699181, 0.031947521718024174, 0.1108646816717751, 0.053339747820140615, 0.14466174791529418, 0.25697560969337485, 0.3383868137798065, 0.30803904997837983, 0.03434255320493995, 0.08689109251212201, 0.46044782253877736, 0.0973761441498977, 0.3449058470623745, 0.024212367984770777, 0.11665042079727428, 0.3333970234137619, 0.1495417879159372, 0.0679784404121434, 0.2360052425084116, 0.39147703437781534, 0.04428683932015287, 0.5381556738404795, 0.4357341587922019, 0.11843845992675284, 0.28107964630818494, 0.06989794698232743, 0.2658605825653322, 0.22408104406272966, 0.15519213452661884, 0.09873339188795927, 0.10739713799337769, 0.4712507279726723, 0.31257930793611366, 0.6259141532505736, 0.1651629894813923, 0.13024327386797574, 0.08242409751896962, 0.55355901104019, 0.11256152515999429, 0.22124325125588817, 0.05838775174278421, 0.6734770756819889, 0.06919042490492266, 0.5773286546676725, 0.5693181878572973, 0.12726917141891614, 0.27983888222674136, 0.15690954109554833, 0.18593824584442387, 0.05432525584274117, 0.33273366741371935, 0.12435295831370408, 0.48112847828662497, 0.2959384652215836, 0.5042039768350125, 0.3749869638443927, 0.7258627386781167, 0.4806866421912115, 0.6234335830956541, 0.4191951896523489, 0.20821728825178332, 0.6343085651912675, 0.27674577061671146, 0.02140654255666985, 0.42849246998341506, 0.1817444030106703, 0.4551538855951942, 0.05087080041524106, 0.516641204200833, 0.6810720245435042, 0.08151744899857294, 0.4475169494323581, 0.03995706953508171, 0.2181819033834006, 0.20372897255157485, 0.24305701296248816, 0.5381556738404795, 0.2358485729609252, 0.051323642447754336, 0.1913631294907303, 0.32154631204965056, 0.31229802093755377, 0.3917329141436472, 0.39462053822053156, 0.3680669306910641, 0.5017894292511481, 0.32120711190509066, 0.0768019282386515, 0.1168769044932052, 0.31545143431826594, 0.12007957373947853, 0.08354361700756141, 0.2180731800932174, 0.7653011157176768, 0.05076221583963347, 0.11739077279846111, 0.3639458403519926, 0.4815918747301601, 0.35998732468747585, 0.457353694020342, 0.5520498791697908, 0.22168281241722143, 0.2132287846887433, 0.4763394582576197, 0.3040153802820409, 0.20749766415549342, 0.3316810644107503, 0.8126297477835096, 0.5749367295182395, 0.27274039590582944, 0.2685808245693546, 0.5172108675362206, 0.33506587713796443, 0.09616672688355288, 0.041108213935392324, 0.10548050716105373, 0.5016695616404938, 0.20022874051447226, 0.14220640128276774, 0.23772630779738468, 0.19606080251004787, 0.2603188495268066, 0.18846597668723208, 0.19827111133563302, 0.261548791893628, 0.4140325207077993, 0.8134796325151183, 0.12265695643958285, 0.6311167068993262, 0.13481820177301163, 0.0932384579037443, 0.14050160114126486, 0.2562249115981724, 0.08547750670655718, 0.08643201081848362, 0.19981675431015722, 0.31390222338706264, 0.06221739913672386, 0.06996303880871468, 0.30029370289300306, 0.4306817897420764, 0.6595343859760441, 0.2839408857911616, 0.20468539219890003, 0.1130196126722065, 0.2360017176902124, 0.13187147729288817, 0.42313120297864704, 0.06964897436687001, 0.1624399718171824, 0.17200815643270417, 0.07333105637055992, 0.2440137653363641, 0.4900110333069776, 0.3085554157386313, 0.03480496731142946, 0.12148031785507996, 0.15002971926037112, 0.5314247042003052, 0.2758453007685677, 0.2151852748992088, 0.2658605825653322, 0.29911225563077193, 0.6594110243744711, 0.49869782335001445, 0.16788254706683048, 0.11816213334465087, 0.08230909248122409, 0.13653212507346946, 0.25639170942272826, 0.06562233405876228, 0.23311900627036541, 0.3756616197417655, 0.46674395287949066, 0.3092684534350997, 0.8337319641197457, 0.8331457111467163, 0.2591056156836542, 0.4778687671024334, 0.2542440524586721, 0.5361036306539362, 0.07073721340803463, 0.4731688813159418, 0.5755848065786346, 0.356689463387698, 0.14225616860197343, 0.21837916002376445, 0.14466174791529418, 0.29899643271856946, 0.4757427727983842, 0.08126799884203029, 0.1296501822378736, 0.3286954654423938, 0.08620177311633537, 0.13855855420831553, 0.05543377339452393, 0.11917834098009661, 0.2613621884509647, 0.11269900223777074, 0.08429051026621415, 0.3393961441870107, 0.07031960314855146, 0.11356777592095357, 0.4853279864284006, 0.1279289285514792, 0.0584572339054259, 0.08612988585012649, 0.3472440907423937, 0.1248029959061332, 0.07502335399434323, 0.19827111133563302, 0.3424151534036639, 0.3065175956815872, 0.13808860398564737, 0.058092197534895806, 0.04082786106581715, 0.1602592849246841, 0.09156161599234125, 0.5036030690663805, 0.2640411824475748, 0.6468038092930676, 0.07201805208597656, 0.22470230804277058, 0.1334773721572423, 0.04847889440667685, 0.2685808245693546, 0.10911308148570098, 0.6764508967260475, 0.6280060594576413, 0.36761958218269275, 0.16019930342079847, 0.17605308658107655, 0.14078981831089854, 0.2384997092801764, 0.13117402490907393, 0.12818959986091483, 0.4161925244315118, 0.12435295831370408, 0.09814942480303201, 0.05480698563416486, 0.3746187330143109, 0.41092354232892336, 0.507894749900129, 0.5137929421583434, 0.08293523366016065, 0.2964416548030494, 0.15236141109070434, 0.4396941021426354, 0.41893931094950754, 0.09113953260801844, 0.10967473999240707, 0.055732078845942, 0.05640314085190745, 0.06176263301115803, 0.06427139521062619, 0.20386133178572885, 0.21597661143113533, 0.7486409492386699, 0.2610715902497083, 0.09465277491899493, 0.5556171757583562, 0.137718889647652, 0.1978940751503777, 0.08472590699531857, 0.356262641598029, 0.14596950445002987, 0.13865818299932142, 0.3088915816821678, 0.11516321289421916, 0.16121169033174265, 0.40573483691789825, 0.34308606282264, 0.36300204724896845, 0.17193414756867276, 0.035926383178341514, 0.34536882843285344, 0.4400180463892147, 0.5165194668234709, 0.23319834124303085, 0.9637923675569924, 0.2635599134550337, 0.6259141532505736, 0.12324962258280003, 0.1256037712827487, 0.1248029959061332, 0.11665042079727428, 0.29081136443782263, 0.12993062945549005, 0.20959981847797426, 0.12385816607190492, 0.16931651488884025, 0.2468284110987674, 0.6181879252747016, 0.3509541008179864, 0.08619429866610873, 0.09537770951135394, 0.8204393830764495, 0.2493836920976743, 0.10367142046182065, 0.11516383353466464, 0.07169627826225977, 0.5400384130096556, 0.2709141565803237, 0.16809050322974173, 0.3421981324687273, 0.812724325423183, 0.1326589750154965, 0.054670132935181304, 0.055346153509382656, 0.8039442695404772, 0.3276168958360183, 0.6561718697940482, 0.6214102617950452, 0.3046829516703813, 0.7853649284745584, 0.7303620793003476, 0.6719087507962026, 0.16000678121984613, 0.579612101366232, 0.6347749924714103, 0.41894393066564606, 0.06936532322770372, 0.28322834609079706, 0.343263893078516, 0.4450860003239352, 0.3090838478611311, 0.408095736797927, 0.11529682880263803, 0.13359771811640497, 0.2417229185475579, 0.10092265889692065, 0.8181934133883563, 0.3777834313813965, 0.8273808576462511, 0.18439353202429143, 0.5148786056082297, 0.11287077888712382, 0.16015059460472458, 0.29672938182784603, 0.36944561074938853, 0.2505850522824452, 0.8467591712977676, 0.3840267097226593, 0.261779448872241, 0.1645479955558209, 0.14631295673285594, 0.4248523287309329, 0.09222807982804315, 0.2121484308544801, 0.33273366741371935, 0.5470626312455473, 0.8294144697045585, 0.25206662215500397, 0.15998368749433245, 0.548322128117227, 0.3917329141436472, 0.15981565308588508, 0.23631147082452741, 0.21082920466209698, 0.1871387197916503, 0.24774693401855818, 0.1913242313933492, 0.16437448769677154, 0.07582203648947516, 0.032541140295091364, 0.06311143057978008, 0.5009235508757715, 0.12343879567504301, 0.445735807756371, 0.40322837553658053, 0.09397553936597514, 0.1598391281143201, 0.26702494168661406, 0.19782301216908982, 0.06831823449824892, 0.5451167746582685, 0.20142160156100697, 0.25747632252511843, 0.4257317671215596, 0.5062318064185062, 0.10278357133077332, 0.10857266292312517, 0.06223864817381186, 0.11377411494697365, 0.14082424186384768, 0.2589321903149734, 0.31776639873426016, 0.07983414941561229, 0.30174211068680845, 0.42532907678292176, 0.23734670470511587, 0.2862296469110084, 0.24790288035387664, 0.5526146374040077, 0.20425399436950087, 0.5166825128498294, 0.12415322942140417, 0.5310696157212036, 0.3866387435262121, 0.14313186082947948, 0.31648660326859934, 0.026792916001305622, 0.7856428374245099, 0.42383310375799566, 0.5944566396871084, 0.6256605001243821, 0.08813642250468567, 0.03544811528140901, 0.06935406654889886, 0.15751976448865512, 0.22608551288474832, 0.3127311228465576, 0.1409438166611655, 0.3285615524533705, 0.3591330499592894, 0.47964497307801546, 0.7143146030302826, 0.14223944449319303, 0.06929054967731618, 0.32120711190509066, 0.16913647442041335, 0.707286257884667, 0.3230684446475647, 0.7616845263358343, 0.4104900542879092, 0.10053249234255524, 0.1106599594415556, 0.1543174595222413, 0.46003879185641183, 0.3811350878514418, 0.07185070571861518, 0.23882593985771994, 0.5344976262521839, 0.11031385635331636, 0.09610989844306939, 0.4955559099445003, 0.07845190603324759, 0.30697262074812925, 0.12767551958037127, 0.4375661224395835, 0.07737023387634634, 0.15307682457740834, 0.05694427046787409, 0.09028836937410878, 0.4011292297732457, 0.6186146927451245, 0.11561676905211238, 0.0993047499370594, 0.08102401279833105, 0.8100206966555492, 0.10768932514586738, 0.15386113005635593, 0.4026560765644126, 0.045535707525545144, 0.08229583319403, 0.08227601457953415, 0.8241544781987433, 0.0759900855540333, 0.5147505197509459, 0.11103147778198663, 0.42144961755966015, 0.24880465403270857, 0.3112403223054312, 0.3282460941643247, 0.28312386083977936, 0.2865521931047814, 0.16537364909659502, 0.4284132019637321, 0.34116073112729894, 0.051142721309942685, 0.10794707492381372, 0.1108646816717751, 0.29201805921023904, 0.07365131996157204, 0.36851051207096197, 0.2556143611338999, 0.07392456180697715, 0.045535707525545144, 0.15025986810093994, 0.4395989822566938, 0.19636656988846957, 0.21018464628148859, 0.15085686628779282, 0.3429118439192298, 0.16104008564300487, 0.2055862423584408, 0.18673310211333727, 0.5528531989583015, 0.20219789553586287, 0.5807830339134155, 0.6112381610839525, 0.07515362639458067, 0.5722084734915175, 0.3654892991508686, 0.1991057466826236, 0.4912569401667811, 0.05850610073101081, 0.3077884117234785, 0.17038242498240874, 0.14066607718466684, 0.10248584652416493, 0.4022873718442217, 0.07205214632436985, 0.35142291824287475, 0.10941760034103376, 0.06679271580157364, 0.05675388891699207, 0.058987921856350156, 0.3660303223369904, 0.28790374422385034, 0.4158290962648631, 0.40710291595796666, 0.09934102670994882, 0.06362846635195196, 0.30921476208988685, 0.23242198019285765, 0.055541210656895434, 0.5297663836663529, 0.10744632778983743, 0.18410212910939194, 0.17721960751489196, 0.1962664672709783, 0.1617648996714035, 0.10584426414108294, 0.5203501665477333, 0.07365131996157204, 0.31578819840495265, 0.35364190165315845, 0.1707951928721818, 0.41655733121321636, 0.15801546378512366, 0.7568436608419439, 0.22368578646300386, 0.0609449253562836, 0.2225096762928218, 0.18587673368692093, 0.05559101133196209, 0.569598540521716, 0.08073228430722412, 0.15724041301590164, 0.12879141548479, 0.4306817897420764, 0.17998791969802397, 0.41280880088413996, 0.5723062335690389, 0.6457404130724687, 0.10420061808672998, 0.12564769853034463, 0.21795029564941848, 0.4720930498870375, 0.11304202998506685, 0.545112257205237, 0.14852188644910969, 0.17217029085021085, 0.336250902618187, 0.48671482860553816, 0.5093433434984792, 0.35847801144896685, 0.3008706318705062, 0.18494609259573758, 0.4199330463236065, 0.04162287990776414, 0.2633909944023186, 0.4252182303976608, 0.4684623303117058, 0.1925553058603695, 0.09610989844306939, 0.09129843496680234, 0.3302708189676917, 0.4199330463236065, 0.11927294568859859, 0.4864154015695107, 0.06472081497616611, 0.6387929002666255, 0.37932906694235924, 0.093713747684541, 0.20627971812824875], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (curr)\", \"type\": \"scatter\", \"x\": [0.088, 0.06, 0.036, 0.04, 0.043, 0.048, 0.032, 0.078, 0.078, 0.063, 0.054, 0.036, 0.039, 0.048, 0.054, 0.046, 0.052, 0.098, 0.032, 0.03, 0.036, 0.036, 0.035, 0.065, 0.04, 0.035, 0.083, 0.054, 0.028, 0.044, 0.04, 0.077, 0.081, 0.072, 0.054, 0.045, 0.078, 0.079, 0.055, 0.066, 0.026, 0.073, 0.069, 0.047, 0.048, 0.048, 0.076, 0.118, 0.051, 0.025, 0.046, 0.084, 0.034, 0.094, 0.084, 0.077, 0.074, 0.095, 0.04, 0.043, 0.095, 0.037, 0.048, 0.098, 0.098, 0.06, 0.414, 0.076, 0.102, 0.072, 0.115, 0.046, 0.036, 0.088, 0.031, 0.04, 0.052, 0.029, 0.044, 0.074, 0.062, 0.078, 0.045, 0.084, 0.04, 0.028, 0.037, 0.044, 0.041, 0.071, 0.05, 0.043, 0.091, 0.045, 0.08, 0.137, 0.035, 0.17, 0.062, 0.04, 0.092, 0.027, 0.046, 0.073, 0.047, 0.062, 0.146, 0.057, 0.051, 0.045, 0.069, 0.059, 0.078, 0.053, 0.038, 0.029, 0.051, 0.158, 0.05, 0.105, 0.044, 0.028, 0.051, 0.082, 0.076, 0.088, 0.036, 0.034, 0.076, 0.047, 0.016, 0.054, 0.045, 0.036, 0.082, 0.047, 0.053, 0.077, 0.086, 0.041, 0.036, 0.04, 0.031, 0.036, 0.071, 0.049, 0.057, 0.066, 0.079, 0.057, 0.034, 0.048, 0.07, 0.045, 0.076, 0.057, 0.035, 0.046, 0.052, 0.211, 0.089, 0.063, 0.039, 0.038, 0.086, 0.031, 0.036, 0.036, 0.046, 0.052, 0.058, 0.062, 0.049, 0.042, 0.073, 0.033, 0.048, 0.044, 0.047, 0.042, 0.033, 0.041, 0.098, 0.048, 0.06, 0.032, 0.212, 0.034, 0.046, 0.053, 0.078, 0.05, 0.038, 0.039, 0.041, 0.08, 0.051, 0.043, 0.051, 0.094, 0.05, 0.051, 0.06, 0.052, 0.023, 0.045, 0.046, 0.077, 0.042, 0.041, 0.052, 0.053, 0.064, 0.046, 0.048, 0.017, 0.063, 0.036, 0.174, 0.046, 0.043, 0.053, 0.046, 0.045, 0.055, 0.037, 0.088, 0.059, 0.042, 0.068, 0.066, 0.043, 0.05, 0.037, 0.09, 0.056, 0.038, 0.039, 0.045, 0.045, 0.096, 0.094, 0.057, 0.054, 0.041, 0.041, 0.06, 0.045, 0.042, 0.048, 0.08, 0.065, 0.029, 0.045, 0.142, 0.038, 0.054, 0.061, 0.105, 0.099, 0.114, 0.044, 0.046, 0.046, 0.053, 0.053, 0.044, 0.044, 0.036, 0.055, 0.053, 0.092, 0.037, 0.057, 0.044, 0.042, 0.049, 0.082, 0.089, 0.071, 0.081, 0.044, 0.023, 0.044, 0.176, 0.032, 0.045, 0.053, 0.052, 0.081, 0.056, 0.044, 0.055, 0.077, 0.05, 0.064, 0.032, 0.046, 0.057, 0.095, 0.028, 0.093, 0.046, 0.043, 0.056, 0.03, 0.09, 0.05, 0.059, 0.054, 0.079, 0.084, 0.046, 0.046, 0.059, 0.05, 0.073, 0.052, 0.042, 0.042, 0.085, 0.066, 0.059, 0.043, 0.088, 0.053, 0.066, 0.075, 0.038, 0.036, 0.079, 0.051, 0.036, 0.033, 0.071, 0.036, 0.037, 0.058, 0.05, 0.043, 0.046, 0.078, 0.076, 0.08, 0.2, 0.036, 0.05, 0.088, 0.05, 0.036, 0.053, 0.031], \"xaxis\": \"x2\", \"y\": [0.18579927887031134, 0.9274202256360236, 0.2569067617886446, 0.17851375722123963, 0.43011516789686843, 0.3951880410340851, 0.35333307802371594, 0.854899199395705, 0.7749695319329993, 0.7150752736216004, 0.5793836726576811, 0.17187478758168062, 0.503776006633781, 0.6517104478925241, 0.5321166645488455, 0.4291031613352281, 0.6295132227815239, 0.446367751604861, 0.12978626497489776, 0.578130474122496, 0.1303225049324246, 0.4589423036505589, 0.6028673022099313, 0.6724998803801079, 0.055171077290688375, 0.28900585249094113, 0.5807441942986169, 0.6324527530146118, 0.32780881811994433, 0.4437792729685527, 0.47375733914823626, 0.6755390392614542, 0.8494338455743565, 0.8432302027568838, 0.3962269303969661, 0.36574887203466033, 0.9780529644634413, 0.6757083557066426, 0.43212531492562845, 0.6428319532862445, 0.2244465690609686, 0.6759712108962084, 0.300575337785698, 0.4848467547623382, 0.24353241802821812, 0.6165640897352094, 0.801889943514816, 0.6831580296641933, 0.4684052737322374, 0.07309555507266852, 0.17397747102053363, 0.548208100621717, 0.16948307959681597, 0.5287139706981401, 0.8097217619362252, 0.48186532860504816, 0.7044722268129955, 0.5458559966555334, 0.6067015953642416, 0.5767206748937392, 0.5416109283549078, 0.7766135747357961, 0.6371580804073698, 0.3290646799011723, 0.53941953634433, 0.7444876216695655, 0.27658524567301757, 0.8518717737266248, 0.685064206005921, 0.7994946846943811, 0.6254668451144636, 0.29898447003196504, 0.36566585814722175, 0.8260679099411251, 0.265003746926769, 0.18277705216857454, 0.6401445853260315, 0.2878944788643705, 0.7379395090268356, 0.6578861964269485, 0.3048731186933995, 0.6479177870210828, 0.5479007895539181, 0.8109237991420157, 0.4555798348891207, 0.35159410271621183, 0.6741813074403022, 0.40366163192193316, 0.3797333752177462, 0.42326140605337403, 0.49450075158901585, 0.7027754368270075, 0.31556666432085356, 0.5737052492708005, 0.5594846166878963, 0.9879213229528466, 0.23907110553933086, 0.7604887601700165, 0.906894853259191, 0.49150798334893764, 0.6693239074263375, 0.635181004157038, 0.4291031613352281, 0.6805197940362542, 0.8579270215873258, 0.42231028799440284, 0.7973836574204367, 0.6209099995125147, 0.617932351579841, 0.5867531689564582, 0.8217385626893267, 0.5766058512754557, 0.6085190813519714, 0.6488649586424557, 0.19466062481522506, 0.4062994677131635, 0.31500574198466447, 0.6106996692323751, 0.48314991346809855, 0.4300926711133176, 0.4623912750166579, 0.18141675383529432, 0.7404949196358439, 0.7960551628311661, 0.6696955469146251, 0.7471897031921468, 0.15222801432328747, 0.4782875749995391, 0.6696955469146251, 0.4617114467660769, 0.0374236133971757, 0.34638250956587036, 0.5737052492708005, 0.35412183815676124, 0.5342599897609015, 0.6273126624389191, 0.1819914526651868, 0.6450640502472667, 0.7576359910572065, 0.6363669366758954, 0.35783776888428775, 0.4555798348891207, 0.2603691587203709, 0.09638465351539516, 0.7889843001267657, 0.3995975535535492, 0.2404138117262561, 0.5134503976671381, 0.7620160241108803, 0.4852174766770502, 0.7934067722809752, 0.5657371707019572, 0.40591517497640706, 0.5142806824729376, 0.4667389755277017, 0.4597803030361328, 0.14211531046105408, 0.4709774325404933, 0.39253304933110444, 0.8152160844894966, 0.6418608562675732, 0.5695619245525361, 0.15898796250578873, 0.4189913516486339, 0.8097376625536354, 0.2776505479619531, 0.14100712613869515, 0.1625374057836978, 0.21879614767173305, 0.26016804821119, 0.5884346274074399, 0.25171266030158634, 0.5556828679884147, 0.2886326125606653, 0.5013044750460076, 0.23728971353361283, 0.6280660923097139, 0.6281218947904323, 0.6226708394296439, 0.1280348372312241, 0.37812375401711507, 0.6218606462016874, 0.446367751604861, 0.5237591509200082, 0.22560064672115399, 0.4159575064805634, 0.43989745285902637, 0.38133093816728936, 0.379388299643832, 0.4244201113870294, 0.8495234946343055, 0.44699506619782237, 0.3402560380560977, 0.16997778820688525, 0.6509841470756508, 0.5589353890471914, 0.49320900326902484, 0.41485179365651337, 0.2850172536812061, 0.5150740024049856, 0.7905789411902706, 0.6660097546858721, 0.5916856454756931, 0.25029771644034415, 0.21820707607863943, 0.23625780462752244, 0.6174344585079109, 0.33885175059010386, 0.8097775874289167, 0.5502791542248897, 0.45232673966787307, 0.5168725346003686, 0.4922951659433321, 0.2710495410551712, 0.5620189509382074, 0.19827785442852286, 0.35653263682836045, 0.4940220265254579, 0.3934632807735441, 0.349631294967786, 0.6543252873397565, 0.6043841099981286, 0.6572212454398962, 0.5323595728841377, 0.4667716613599331, 0.5480891857555714, 0.5933716837007499, 0.5769442381274095, 0.7796710482718338, 0.4721284230669528, 0.5632051337005155, 0.25606657060722404, 0.47304849589761655, 0.4991199345133047, 0.785831825438318, 0.5512091114854263, 0.31651464458218903, 0.192246895102814, 0.5737052492708005, 0.14970485751781393, 0.8257882443178004, 0.7450862811651306, 0.2404138117262561, 0.3428275867057816, 0.2186811050870735, 0.43730933466596944, 0.1325711740116582, 0.33994853494016564, 0.5172250338280965, 0.4543852880840521, 0.6017244994332274, 0.7267617626256621, 0.304103470637073, 0.49511795227452726, 0.4577650902534979, 0.4389063253281036, 0.3428275867057816, 0.6911248892501751, 0.5457123873353599, 0.3395528272139201, 0.5662837862370104, 0.38281068028313525, 0.1899488449656659, 0.1899488449656659, 0.39416742153886597, 0.4473524415330049, 0.5724944828663213, 0.12652799787397961, 0.14917046216496987, 0.4192276293132746, 0.1727250451072272, 0.7329347521090118, 0.2979855805324535, 0.5384433083808008, 0.2944152049751758, 0.5661013076544325, 0.39283078357423706, 0.6503174362647687, 0.7632350838020857, 0.29422440231251745, 0.8446099855685041, 0.3812461384129847, 0.1264117171095669, 0.6995051325026098, 0.7680829457938805, 0.1086082602083136, 0.50228427853815, 0.8303888649041977, 0.15145052047802054, 0.5239967242043768, 0.49461569007297057, 0.7323984730128237, 0.6372335578763709, 0.8485373319296128, 0.21018203617182263, 0.3854703692354019, 0.6209619763202376, 0.6996467359659702, 0.3913887983225227, 0.600932061108284, 0.18141675383529432, 0.32841971343371723, 0.17397747102053363, 0.3943097935149382, 0.5998672378660981, 0.6052803835931642, 0.35501406908939237, 0.4362847089434372, 0.6005057903956104, 0.45095984485898877, 0.5601124581139871, 0.6908342266509375, 0.29066967723125237, 0.5437491575180791, 0.5955595524057149, 0.4226516353037165, 0.552222307965348, 0.5038457784615318, 0.6752568781943777, 0.7880730680059006, 0.09430965090665133, 0.4986183600001317, 0.24112389044610405, 0.3635071851353404, 0.7047195247497422, 0.5251048099479148, 0.5632051337005155, 0.4520037684813636, 0.5271857161160298, 0.36566585814722175, 0.8775119234978208, 0.49474741138534273, 0.17187478758168062, 0.1069918390347242, 0.6371627391106971, 0.19018032574493748, 0.34352259564225396, 0.806114950115292, 0.47304849589761655, 0.5014153035286022, 0.6721952796384192, 0.7507248720260316, 0.38512814216859315, 0.8930847268109882, 0.863224561659591, 0.15108072818859253, 0.7399796913917198, 0.18579927887031134, 0.47304849589761655, 0.2033384066370545, 0.43667652058029827, 0.23252054766636898], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [0.068, 0.058, 0.045, 0.044, 0.076, 0.041, 0.037, 0.036, 0.033, 0.036, 0.102, 0.039, 0.033, 0.026, 0.03, 0.04, 0.07, 0.032, 0.078, 0.028, 0.056, 0.045, 0.05, 0.04, 0.04, 0.031, 0.044, 0.038, 0.035, 0.029, 0.032, 0.059, 0.053, 0.034, 0.034, 0.122, 0.035, 0.05, 0.047, 0.096, 0.036, 0.026, 0.034, 0.043, 0.08, 0.065, 0.054, 0.079, 0.039, 0.036, 0.073, 0.034, 0.031, 0.042, 0.039, 0.053, 0.044, 0.05, 0.039, 0.414, 0.054, 0.037, 0.029, 0.036, 0.036, 0.042, 0.061, 0.037, 0.05, 0.055, 0.067, 0.012, 0.04, 0.038, 0.046, 0.048, 0.074, 0.041, 0.059, 0.171, 0.042, 0.037, 0.065, 0.03, 0.035, 0.194, 0.08, 0.048, 0.036, 0.049, 0.046, 0.039, 0.037, 0.035, 0.047, 0.037, 0.091, 0.035, 0.071, 0.071, 0.027, 0.047, 0.072, 0.034, 0.067, 0.051, 0.072, 0.023, 0.038, 0.025, 0.033, 0.053, 0.026, 0.024, 0.055, 0.23, 0.043, 0.057, 0.04, 0.083, 0.03, 0.03, 0.067, 0.029, 0.073, 0.074, 0.088, 0.029, 0.073, 0.04, 0.019, 0.075, 0.043, 0.045, 0.05, 0.049, 0.062, 0.094, 0.06, 0.034, 0.046, 0.071, 0.095, 0.036, 0.046, 0.036, 0.048, 0.087, 0.032, 0.043, 0.039, 0.031, 0.051, 0.043, 0.029, 0.038, 0.058, 0.062, 0.047, 0.058, 0.032, 0.078, 0.032, 0.034, 0.08, 0.034, 0.032, 0.084, 0.065, 0.137, 0.022, 0.04, 0.046, 0.055, 0.027, 0.04, 0.048, 0.031, 0.035, 0.078, 0.037, 0.042, 0.036, 0.093, 0.039, 0.077, 0.078, 0.042, 0.045, 0.081, 0.015, 0.051, 0.028, 0.045, 0.037, 0.035, 0.041, 0.027, 0.048, 0.042, 0.038, 0.038, 0.047, 0.017, 0.036, 0.038, 0.036, 0.074, 0.046, 0.044, 0.046, 0.037, 0.077, 0.029, 0.071, 0.025, 0.046, 0.041, 0.022, 0.047, 0.04, 0.044, 0.086, 0.045, 0.049, 0.071, 0.031, 0.054, 0.072, 0.04, 0.074, 0.05, 0.028, 0.028, 0.072, 0.055, 0.034, 0.047, 0.036, 0.055, 0.043, 0.031, 0.032, 0.057, 0.077, 0.068, 0.057, 0.045, 0.06, 0.077, 0.053, 0.056, 0.053, 0.038, 0.042, 0.053, 0.035, 0.031, 0.033, 0.049, 0.078, 0.04, 0.06, 0.042, 0.08, 0.031, 0.044, 0.032, 0.044, 0.055, 0.044, 0.04, 0.037, 0.087, 0.043, 0.078, 0.032, 0.047, 0.035, 0.062, 0.413, 0.034, 0.028, 0.033, 0.032, 0.077, 0.021, 0.031, 0.044, 0.056, 0.078, 0.214, 0.05, 0.062, 0.034, 0.031, 0.052, 0.04, 0.031, 0.034, 0.029, 0.043, 0.041, 0.034, 0.067, 0.074, 0.033, 0.054, 0.034, 0.043, 0.04, 0.027, 0.071, 0.053, 0.035, 0.045, 0.032, 0.035, 0.044, 0.057, 0.033, 0.036, 0.06, 0.058, 0.11, 0.032, 0.044, 0.132, 0.038, 0.038, 0.08, 0.035, 0.093, 0.043, 0.176, 0.054, 0.041, 0.046, 0.255, 0.085, 0.021, 0.036, 0.055, 0.079, 0.076, 0.039, 0.028, 0.051, 0.088, 0.033, 0.033, 0.047, 0.044, 0.043, 0.049, 0.031, 0.083, 0.04, 0.043, 0.07, 0.025, 0.034, 0.084, 0.037, 0.076, 0.046, 0.044, 0.063, 0.037, 0.049, 0.024, 0.046, 0.039, 0.041, 0.118, 0.117, 0.036, 0.028, 0.064, 0.038, 0.03, 0.022, 0.045, 0.044, 0.036, 0.054, 0.05, 0.026, 0.043, 0.036, 0.032, 0.074, 0.027, 0.053, 0.048, 0.077, 0.038, 0.065, 0.029, 0.027, 0.036, 0.027, 0.022, 0.042, 0.042, 0.056, 0.039, 0.027, 0.051, 0.035, 0.076, 0.048, 0.033, 0.152, 0.057, 0.092, 0.036, 0.085, 0.027, 0.023, 0.04, 0.041, 0.085, 0.243, 0.084, 0.039, 0.043, 0.036, 0.021, 0.045, 0.033, 0.046, 0.037, 0.029, 0.065, 0.081, 0.044, 0.067, 0.028, 0.062, 0.053, 0.054, 0.053, 0.123, 0.031, 0.082, 0.048, 0.059, 0.075, 0.077, 0.045, 0.097, 0.041, 0.069, 0.05, 0.031, 0.053, 0.037, 0.066, 0.061, 0.042, 0.036, 0.052, 0.073, 0.029, 0.047, 0.031, 0.037, 0.036, 0.105, 0.045, 0.035, 0.075, 0.05, 0.057, 0.026, 0.118, 0.034, 0.034, 0.042, 0.039, 0.031, 0.097, 0.075, 0.052, 0.03, 0.037, 0.035, 0.075, 0.078, 0.067, 0.042, 0.078, 0.076, 0.049, 0.118, 0.041, 0.089, 0.059, 0.073, 0.036, 0.044, 0.053, 0.031, 0.034, 0.044, 0.043, 0.034, 0.076, 0.035, 0.07, 0.046, 0.037, 0.048, 0.043, 0.03, 0.084, 0.097, 0.046, 0.063, 0.03, 0.332, 0.033, 0.053, 0.041, 0.061, 0.024, 0.035, 0.034, 0.047, 0.091, 0.052, 0.067, 0.021, 0.216, 0.053, 0.121, 0.035, 0.114, 0.048, 0.046, 0.051, 0.066, 0.046, 0.025, 0.031, 0.119, 0.109, 0.021, 0.053, 0.041, 0.02, 0.05, 0.067, 0.031, 0.041, 0.086, 0.036, 0.029, 0.022, 0.053, 0.038, 0.056, 0.086, 0.057, 0.026, 0.034, 0.033, 0.032, 0.03, 0.06, 0.039, 0.047, 0.032, 0.028, 0.043, 0.04, 0.032, 0.046, 0.042, 0.117, 0.05, 0.035, 0.027, 0.058, 0.049, 0.083, 0.032, 0.044, 0.038, 0.084, 0.051, 0.047, 0.045, 0.12, 0.079, 0.031, 0.04, 0.035, 0.039, 0.055, 0.032, 0.045, 0.026, 0.034, 0.083, 0.071, 0.037, 0.033, 0.045, 0.046, 0.055, 0.048, 0.034, 0.083, 0.03, 0.03, 0.05, 0.048, 0.036, 0.029, 0.036, 0.027, 0.057, 0.046, 0.035, 0.046, 0.045, 0.075, 0.033, 0.082, 0.085, 0.043, 0.049, 0.032, 0.055, 0.16, 0.079, 0.034, 0.03, 0.051, 0.048, 0.047, 0.038, 0.053, 0.055, 0.069, 0.048], \"xaxis\": \"x2\", \"y\": [0.6660328535674787, 0.4955559099445003, 0.11251030999551548, 0.5313240922219649, 0.7616845263358343, 0.42881839881496897, 0.22146723198036844, 0.2709448900825402, 0.04188686298684474, 0.3198999677935893, 0.586632325439729, 0.3332859260788763, 0.0891770245136605, 0.07249138429342028, 0.0813041402249215, 0.2808128557304226, 0.18155424903412543, 0.14020593233116785, 0.20529540916933675, 0.1755850319354616, 0.5722846846512241, 0.4684623303117058, 0.2863708053899042, 0.4489302200945696, 0.3606737334686688, 0.09834172337505831, 0.1439119889738254, 0.10526388551166177, 0.08976738859769384, 0.15927641460572795, 0.07353544332944184, 0.4894096639868448, 0.24735122968283396, 0.41440459167745447, 0.10107859516115147, 0.4809249647595707, 0.043928674649753696, 0.27268427565697984, 0.07203278686513981, 0.35989685204578803, 0.08410225657903847, 0.09640449279894714, 0.2859044620344169, 0.766491644508495, 0.27194216744256416, 0.11891721880979944, 0.6033870782914414, 0.8445823904457724, 0.4148378249676725, 0.09538880480821377, 0.5822786697287807, 0.2006236885231063, 0.30215903380660414, 0.3526626332448971, 0.22921561702294402, 0.3499358724503807, 0.451050436906263, 0.01968005574460141, 0.3849224947932618, 0.608666907839271, 0.30333177217190177, 0.05732515971384944, 0.08299070223644744, 0.155374347961305, 0.4378217303747408, 0.10641916767178827, 0.3207785913922725, 0.3280003244598044, 0.4747408725557203, 0.27229542413121455, 0.5314247042003052, 0.13834506443323813, 0.652508483608137, 0.1775869136191267, 0.4659209431511335, 0.3288332341233703, 0.47224603889779837, 0.2773569186284155, 0.18590272545123854, 0.6719763059805124, 0.04569198037744582, 0.22473444069733528, 0.0776074933333939, 0.1411968215808168, 0.3654892991508686, 0.06069899520469324, 0.21029328672965164, 0.13919371635861133, 0.16321149678759816, 0.6144435769482088, 0.1388055550317996, 0.0827658987104557, 0.0793107693477757, 0.04994940743047871, 0.46220165202879504, 0.08265172102971341, 0.5554564865761329, 0.10902951494304747, 0.26480674198345266, 0.31816712550642645, 0.20184400370343658, 0.23734670470511587, 0.19264674509953905, 0.03558879485690103, 0.5314247042003052, 0.3013473679880785, 0.8043030592862955, 0.07665185966197174, 0.17816243980233548, 0.14637302723887635, 0.43623195291339645, 0.5773286546676725, 0.06996409198491005, 0.0635191394270278, 0.11839391684253864, 0.03368970372860669, 0.16544292122901683, 0.5002106013252752, 0.20783967621931676, 0.4413184352618238, 0.1377753535318076, 0.017128038770129694, 0.09070427960766203, 0.05237321155563324, 0.46044782253877736, 0.09863911308639095, 0.6058955548956951, 0.07377868677997379, 0.33726125667837825, 0.03705661785513226, 0.03856885477325478, 0.01970319875133708, 0.06623921298607705, 0.655672818127978, 0.36403826442427, 0.375635621083512, 0.25822104517587474, 0.26990817233175546, 0.30316845466795117, 0.21597661143113533, 0.10411587283779344, 0.4582573305440075, 0.28974208538397184, 0.3995654588450376, 0.48407929824265805, 0.2412117545349558, 0.49704114689177337, 0.3112403223054312, 0.13571503940671914, 0.35304273602320047, 0.18963603484652192, 0.06023564559469896, 0.305863422303413, 0.34062746964654456, 0.03532029949184434, 0.20200996882548472, 0.207876095289533, 0.11304202998506685, 0.26487496820305634, 0.46674395287949066, 0.05931266843465788, 0.6063731497207538, 0.053339747820140615, 0.16056749669580483, 0.3366557342021428, 0.18735912995827353, 0.2667542380283816, 0.9197592959547904, 0.13322255285490225, 0.3533185668595151, 0.08763312389948397, 0.343329095265401, 0.1298321532292276, 0.11240742021865013, 0.03412749239977686, 0.23316671381479437, 0.13955591125269062, 0.065615492475942, 0.03940539431326806, 0.04874684240881699, 0.42507109047861347, 0.3720756994829524, 0.20627971812824875, 0.23346983492740092, 0.299872058778726, 0.14688925552714138, 0.20529540916933675, 0.11294333341234963, 0.4523771212155355, 0.15895981664313275, 0.12633289347617382, 0.34801013400503944, 0.063056887931354, 0.09222807982804315, 0.19281104432210028, 0.11843845992675284, 0.1064686731970873, 0.12171087020281346, 0.49704114689177337, 0.4202798549667376, 0.058322454167927695, 0.40418598015134155, 0.7514842711311043, 0.067978575311199, 0.1468497162592186, 0.3655805321171328, 0.36741292271676196, 0.08785516413846428, 0.4223454464089015, 0.09472348251934337, 0.14196098925812006, 0.10013555988874479, 0.32154631204965056, 0.05416575683382341, 0.786126361492164, 0.04696516601190348, 0.26926088858349784, 0.28123172687107445, 0.3094364396730669, 0.04307250962973752, 0.07126159086244754, 0.6143015945908075, 0.495586079448059, 0.46102608015166635, 0.40789311683600216, 0.8929715185951024, 0.1227006502272181, 0.3638055988942468, 0.10470002869891348, 0.29304213908849364, 0.8936703981375603, 0.3534407380188983, 0.0883666731866185, 0.07895584641700149, 0.05166417783587085, 0.4199775765299997, 0.10304865631077798, 0.1041340676595982, 0.11031385635331636, 0.22368578646300386, 0.22137255536682798, 0.0725394352715707, 0.08320759746190642, 0.3577905591727162, 0.36362749207413336, 0.13058702032609693, 0.4306817897420764, 0.4684623303117058, 0.3185463047756948, 0.6991046594229053, 0.33105510290791684, 0.35804773811787727, 0.3499358724503807, 0.17780319308126435, 0.07142366539796174, 0.1504846162366139, 0.28643330026545544, 0.11492102279820171, 0.08716328114311156, 0.12905574960179156, 0.5528531989583015, 0.2852168598030531, 0.3185463047756948, 0.41766807389819915, 0.22818770291371737, 0.10749415552266317, 0.07500089027222667, 0.2150933620687273, 0.4879833184669665, 0.21367083697314282, 0.18281788227943807, 0.11217648511765432, 0.01860460444149037, 0.4990100838788346, 0.3212979959143686, 0.7252893191599291, 0.30018855716775616, 0.2808216200321265, 0.24332849241566534, 0.22583693263898685, 0.307128141019565, 0.12930297020615966, 0.07734813107736227, 0.38078614076753503, 0.037937415915298756, 0.18389331462546077, 0.2015421194948802, 0.10121634311933059, 0.7209948827487924, 0.252131738577411, 0.19866278493931944, 0.5569604587758099, 0.19172534874952063, 0.07516041810443141, 0.18673310211333727, 0.20736440356309183, 0.27568985010185776, 0.1748501221961516, 0.134246332983591, 0.12151400729184814, 0.03860330573341564, 0.16198960071610413, 0.062309112953929935, 0.14943540958877521, 0.46827469198568006, 0.12435295831370408, 0.11768791031746062, 0.10794707492381372, 0.04347111427796346, 0.07423675680829, 0.1602542791395647, 0.19911642350143877, 0.2379444352717226, 0.36664322039668684, 0.10130143557253446, 0.17108028607870185, 0.6143194513817134, 0.5641235853966853, 0.29864316680665437, 0.44752301946823647, 0.13459844499503626, 0.037461465199631894, 0.5002964248569376, 0.4059565893810353, 0.7035957096210382, 0.0629603198376949, 0.25036415064992923, 0.14780834332950044, 0.24800647860056513, 0.10438723399855232, 0.24366911510822187, 0.4574644219698093, 0.8347014835967527, 0.42226245660703365, 0.4073158502222598, 0.47525484003715535, 0.37845934883934684, 0.35325777167774697, 0.4763432908647238, 0.18941100564626978, 0.23853527246002126, 0.27277355193056574, 0.5556171757583562, 0.19481513110659687, 0.7460207524242459, 0.12627308236197843, 0.2115813466591615, 0.4773837842994688, 0.22238536240250728, 0.1978655273089749, 0.32057959349203036, 0.1601330373243487, 0.6256605001243821, 0.34062746964654456, 0.5899158924001677, 0.1273375405407705, 0.6866376712310945, 0.3812864953771038, 0.07918534602430627, 0.10510921928053807, 0.052405178286905496, 0.29010285216427345, 0.5802968836962079, 0.4475494904811408, 0.33107045093633036, 0.6046547135519548, 0.33132995382553565, 0.3391582818855403, 0.37109937806185267, 0.18876467901964422, 0.03244681540368277, 0.6531311156123596, 0.18281848038190407, 0.06840545126676123, 0.23876166598551407, 0.5602062902528231, 0.05478334190217349, 0.18965009362393503, 0.502081053312289, 0.0945975060483667, 0.24937367783354814, 0.14040338921272166, 0.09582424632391484, 0.4879833184669665, 0.07536550594022651, 0.37763546052463404, 0.20240400638142053, 0.06234715971662652, 0.1729504208160284, 0.2536573606029918, 0.1491704939138675, 0.47224603889779837, 0.20734784509414073, 0.1656619584420439, 0.20263687678412212, 0.4576701693643329, 0.3746187330143109, 0.06578487521364562, 0.09359041291034786, 0.15714155813810793, 0.43198081216185935, 0.17693664965610134, 0.14200602748771296, 0.16878839641400256, 0.11131318694256087, 0.43040972974554736, 0.12494266711040569, 0.5286591337585229, 0.3917329141436472, 0.14284790216410748, 0.29931895876037384, 0.3998656181534954, 0.13198036366642862, 0.2166851793268345, 0.164669749255824, 0.3116999397838065, 0.5702002297218003, 0.2867818412254799, 0.05809024612643199, 0.0701620515557333, 0.10493669218879953, 0.03474255021640338, 0.14069518845012563, 0.7697788668098057, 0.44513161239284327, 0.12104291767226882, 0.2823656727566666, 0.28640273091276736, 0.09904459769556595, 0.10889384421684001, 0.1978655273089749, 0.6326587477498924, 0.0766186874204361, 0.07300117689776386, 0.3978521493117628, 0.7293533971641823, 0.24040337450518035, 0.46827469198568006, 0.03737110954461231, 0.48112847828662497, 0.5755848065786346, 0.12151472907643468, 0.332302417201758, 0.3208349144509022, 0.13406270144296106, 0.47820199098358873, 0.024219732643774528, 0.7923035912680444, 0.3099424932714111, 0.8494816644677875, 0.15230116664989468, 0.8795672599938588, 0.34536882843285344, 0.587897812361327, 0.3660303223369904, 0.3074082248441362, 0.1925553058603695, 0.1582957933341015, 0.5297945963993664, 0.1892543681582496, 0.06574637766643598, 0.03286461121245521, 0.6223124217546917, 0.48666930315350876, 0.17200815643270417, 0.27042696199957883, 0.16010429726024444, 0.25291734909108765, 0.22778758435893687, 0.6055190518965303, 0.41989528411161425, 0.2865861541738164, 0.17344095530188786, 0.4163761941495938, 0.24610426408478792, 0.029106329843254564, 0.5849270471051293, 0.09607886499379148, 0.4890296174547498, 0.11193395874659995, 0.3667485749721523, 0.29672938182784603, 0.13696827462710404, 0.03986507081677082, 0.41542023534722683, 0.1642424989032959, 0.041559354155004224, 0.1266666793707928, 0.5259198205822933, 0.42123490919744344, 0.6147437654518444, 0.42849246998341506, 0.04874684240881699, 0.16870816563337898, 0.35179373534084035, 0.4552463954734379, 0.1543174595222413, 0.4641274821418986, 0.1106599594415556, 0.40441066041397966, 0.05916303638108533, 0.24194101851814365, 0.5755848065786346, 0.23631147082452741, 0.04679471849088612, 0.33132995382553565, 0.6031606095022326, 0.16900214819844117, 0.9322526967181247, 0.1065938389205352, 0.0540586741766943, 0.14920224829950646, 0.03054451782098533, 0.13595064656866984, 0.15908339514281045, 0.09402391562754642, 0.27219479721363327, 0.10477531970828624, 0.6046547135519548, 0.04412971358840656, 0.0821245873848182, 0.24953715645213048, 0.24311299470472425, 0.679537413518331, 0.02875041056121841, 0.2874129658970298, 0.17131102264191878, 0.07042427222914205, 0.1577516063520068, 0.39934634677258996, 0.42249259173992826, 0.24940231538328683, 0.46827469198568006, 0.040988937643475554, 0.034828704291737345, 0.26663563965858417, 0.22421743312747255, 0.10716094829621758, 0.7421831263598226, 0.4644511163280224, 0.1591307416719686, 0.21502194578256428, 0.12883185373794437, 0.15520095945599266, 0.04280666734842442, 0.06928764484923078, 0.3578757504587543, 0.0760792945579073, 0.06637805380770656, 0.5755848065786346, 0.4326356954473739, 0.16985579355455038, 0.47152805642545803, 0.11644579282256762, 0.11790522998710073, 0.5438286352264949, 0.41561805514360906, 0.050606352251634235, 0.21836830194439782, 0.22298545275517268, 0.1504846162366139, 0.16819644397314482, 0.47796113776613436, 0.14100197907825862, 0.7878397890034206, 0.12176963827920351, 0.09814942480303201, 0.23162396036129984, 0.04400104962869911, 0.061588508633294015, 0.2774601068082493, 0.40816383821078206, 0.14036214651023216, 0.11837607594274324, 0.0703155477214753, 0.17002415827487982, 0.24611532014486182, 0.06874641727313702, 0.30975746960573625, 0.07004288447243323, 0.6453829176356538, 0.3880412370469972, 0.10205495289732236, 0.12171087020281346, 0.38550692709735157, 0.4398162761337091, 0.5769741243450848, 0.48842976274850136, 0.3866799681687785, 0.17129518728202664, 0.5711206597512044, 0.4456070955069118, 0.4585850027539752, 0.25462747480751524, 0.34771016550763867, 0.35548618548401445, 0.07878090041588082, 0.3008706318705062, 0.08117751180329491, 0.055511805197920094, 0.1600174453683395, 0.35597309965685686, 0.5473978930443646, 0.3321771897262046, 0.14643302530661162, 0.7653011157176768, 0.24188431843396252, 0.16704799028757666, 0.41136103198090634, 0.5749869949413896, 0.709238838470871, 0.09340318303147321, 0.602429869503323, 0.04154705947390969, 0.7519582179986716, 0.15993940416551844, 0.04372375151311325, 0.4076899811241429, 0.4644511163280224, 0.3133137248525114, 0.24628490675063597, 0.06972977174174444, 0.15949948541388637, 0.2241543425141257, 0.1729876202034616, 0.07290025122558275, 0.1220000714032804, 0.36493953208423235, 0.09420126302076737, 0.026726938234992392, 0.7199273032686843, 0.4606762448039463, 0.04906818437448113, 0.19446415942665518, 0.14876853598344464, 0.3247816953453747, 0.023320858692869595, 0.7310618090422621, 0.48944479260603346, 0.20357574295749958, 0.0840537250624015, 0.5368744051465595, 0.21101467800102214, 0.46682279298460017, 0.3749869638443927, 0.46592999202179275, 0.10188412989688433, 0.15751976448865512], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"chlorides\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"chlorides\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}}, {\"id\": \"All_free.sulfur.dioxide\", \"params\": {\"data\": [{\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Reference<br>free.sulfur.dioxide=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [39.0, 34.0, 26.0, 25.0, 34.0, 20.0, 39.0, 33.0, 24.0, 26.0, 73.0, 4.0, 56.0, 41.5, 41.0, 23.0, 26.0, 6.0, 17.0, 21.0, 72.0, 27.0, 46.0, 30.0, 32.0, 40.0, 25.0, 37.0, 33.0, 29.0, 35.0, 31.0, 30.0, 96.0, 21.0, 44.0, 59.0, 38.0, 19.0, 12.0, 38.0, 18.0, 23.0, 18.0, 41.0, 24.0, 12.0, 24.0, 6.0, 27.0, 45.0, 54.0, 30.0, 44.0, 33.0, 50.0, 12.0, 22.0, 10.0, 50.0, 14.0, 20.0, 42.0, 47.0, 10.0, 6.0, 36.0, 13.0, 28.0, 20.0, 24.0, 19.0, 29.0, 37.5, 12.0, 24.0, 15.0, 26.0, 25.0, 37.0, 60.0, 36.0, 20.0, 28.0, 27.0, 31.0, 12.0, 21.0, 21.0, 7.0, 12.0, 36.0, 39.0, 48.0, 39.0, 24.0, 53.0, 16.0, 28.0, 28.0, 7.0, 35.0, 10.0, 4.0, 11.0, 41.0, 20.0, 27.0, 36.0, 29.0, 41.0, 35.0, 20.0, 19.0, 52.0, 22.0, 12.0, 23.0, 60.0, 24.0, 19.0, 34.0, 49.0, 46.0, 33.0, 13.0, 9.0, 38.0, 38.0, 6.0, 17.0, 33.0, 44.5, 24.0, 20.0, 54.0, 13.0, 15.0, 28.0, 14.0, 36.0, 53.0, 47.0, 43.0, 7.0, 22.0, 17.0, 12.0, 18.0, 34.0, 29.0, 23.0, 28.0, 57.0, 33.0, 42.0, 45.0, 8.0, 23.0, 37.0, 31.0, 17.0, 22.0, 21.0, 25.0, 37.0, 63.0, 29.0, 44.0, 43.0, 7.0, 24.0, 38.0, 30.0, 21.0, 34.0, 17.0, 26.0, 45.0, 16.0, 29.0, 35.0, 7.0, 50.0, 30.0, 33.0, 24.0, 7.0, 50.0, 25.0, 35.0, 3.0, 35.0, 19.0, 24.0, 32.0, 36.0, 59.0, 23.5, 23.0, 20.0, 18.0, 28.0, 38.0, 61.0, 43.0, 8.0, 22.0, 45.0, 29.0, 15.0, 29.0, 29.0, 36.0, 20.0, 16.0, 43.0, 39.0, 53.0, 13.0, 25.0, 41.0, 12.0, 35.0, 17.0, 29.0, 35.0, 47.0, 33.0, 39.0, 40.0, 39.0, 26.0, 52.0, 14.0, 17.0, 43.0, 51.0, 45.0, 49.0, 47.0, 49.0, 46.0, 29.0, 15.0, 47.0, 47.0, 29.0, 43.0, 30.0, 45.0, 48.5, 27.0, 9.0, 17.0, 29.0, 19.0, 35.0, 44.0, 3.0, 57.0, 35.0, 24.0, 51.0, 42.0, 30.0, 17.0, 6.0, 29.0, 18.0, 14.0, 19.0, 7.0, 39.0, 31.0, 50.0, 29.0, 10.0, 3.0, 23.0, 38.0, 49.0, 12.0, 36.0, 26.0, 19.0, 28.0, 78.0, 14.0, 24.0, 16.0, 64.0, 6.0, 45.0, 55.0, 44.0, 16.0, 62.0, 9.0, 27.0, 19.0, 21.0, 24.0, 22.0, 16.0, 24.0, 73.0, 20.0, 42.0, 26.0, 31.0, 38.0, 14.0, 20.0, 21.0, 6.0, 48.0, 41.0, 35.0, 37.0, 45.0, 12.0, 33.0, 49.0, 29.0, 8.0, 26.0, 20.0, 49.0, 27.0, 27.0, 26.0, 6.0, 66.0, 30.0, 38.0, 25.0, 34.0, 28.0, 52.0, 86.0, 14.0, 40.0, 40.0, 18.0, 32.0, 36.0, 7.0, 33.0, 35.0, 59.0, 60.0, 29.0, 20.0, 69.0, 35.0, 32.0, 37.0, 4.0, 31.0, 37.0, 47.0, 25.0, 22.0, 17.0, 28.0, 19.0, 51.0, 11.0, 48.0, 41.0, 17.0, 15.0, 15.0, 19.0, 37.0, 45.0, 17.0, 45.0, 26.0, 13.0, 53.0, 14.0, 53.0, 61.0, 24.0, 55.0, 23.0, 29.0, 29.0, 43.0, 42.0, 36.0, 8.0, 37.0, 18.0, 10.0, 27.0, 58.0, 21.0, 24.0, 8.0, 16.0, 47.0, 14.0, 43.0, 34.0, 17.0, 36.0, 16.0, 29.0, 42.0, 39.0, 15.0, 25.0, 40.0, 45.0, 60.0, 18.0, 15.0, 21.0, 41.0, 60.0, 29.0, 74.0, 40.0, 24.0, 34.0, 27.0, 56.0, 42.0, 14.0, 29.0, 31.0, 35.0, 31.0, 12.0, 32.0, 26.0, 16.0, 19.0, 25.0, 28.0, 20.0, 7.0, 23.0, 66.0, 33.0, 6.0, 36.0, 42.0, 38.0, 15.0, 29.0, 44.0, 7.0, 88.0, 24.0, 26.0, 46.0, 6.0, 29.0, 10.0, 50.0, 53.0, 31.0, 30.0, 63.0, 35.0, 13.0, 17.0, 68.0, 16.0, 35.0, 17.0, 73.0, 17.0, 32.0, 39.0, 21.0, 19.0, 56.0, 37.0, 38.0, 20.0, 8.0, 44.0, 33.0, 24.0, 17.0, 73.0, 23.0, 30.0, 47.0, 7.0, 35.0, 50.0, 47.0, 34.0, 34.0, 59.0, 45.0, 53.0, 55.0, 47.0, 45.0, 46.0, 35.0, 31.0, 17.0, 27.0, 22.0, 32.0, 57.0, 32.0, 12.0, 19.0, 54.0, 24.0, 26.0, 16.0, 30.0, 29.0, 48.0, 14.0, 4.0, 21.0, 30.0, 33.0, 23.0, 10.0, 5.0, 52.0, 20.0, 18.0, 27.0, 52.0, 30.0, 53.0, 24.0, 44.0, 37.0, 38.0, 36.0, 54.0, 30.0, 6.0, 22.0, 28.0, 40.0, 48.0, 41.0, 18.0, 12.0, 33.0, 8.0, 20.0, 14.0, 44.0, 38.0, 36.0, 26.0, 20.0, 24.0, 18.0, 23.0, 23.0, 9.0, 24.0, 61.0, 24.0, 27.0, 13.0, 39.0, 36.0, 11.0, 33.0, 33.0, 44.0, 27.0, 36.0, 34.0, 33.0, 40.0, 24.0, 14.0, 34.0, 38.0, 15.0, 18.0, 20.0, 31.0, 58.0, 37.0, 38.0, 17.0, 23.0, 3.0, 25.0, 42.0, 18.0, 14.0, 54.0, 31.0, 6.0, 26.0, 69.0, 56.0, 48.0, 45.0, 36.0, 24.0, 70.0, 5.0, 34.0, 19.0, 10.0, 37.0, 15.0, 10.0, 53.0, 35.0, 13.0, 14.0, 47.0, 52.0, 38.0, 24.0, 68.0, 22.0, 56.0, 53.0, 39.0, 20.0, 53.0, 12.0, 16.0, 68.0, 46.0, 33.0, 42.0, 17.0, 55.0, 31.0, 40.0], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Current<br>free.sulfur.dioxide=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [18.0, 55.0, 24.0, 15.0, 23.0, 27.0, 37.0, 21.0, 32.0, 57.0, 13.0, 29.0, 36.0, 26.0, 31.0, 29.0, 32.0, 11.0, 1.0, 42.0, 53.0, 39.0, 12.0, 45.0, 46.0, 32.0, 35.0, 61.0, 22.0, 34.0, 26.0, 23.0, 59.0, 26.0, 37.0, 45.0, 32.0, 60.0, 16.0, 10.0, 39.0, 31.0, 37.0, 46.0, 11.0, 34.0, 23.0, 18.0, 73.0, 38.0, 6.0, 22.0, 35.0, 14.0, 37.0, 43.0, 37.0, 27.0, 46.0, 18.0, 34.0, 45.0, 30.0, 15.0, 28.0, 31.0, 49.0, 32.0, 38.0, 50.0, 35.0, 36.0, 31.0, 28.0, 26.0, 54.0, 32.0, 53.0, 20.0, 6.0, 23.0, 66.0, 34.0, 22.0, 26.0, 14.0, 41.0, 20.0, 49.0, 14.0, 60.0, 46.0, 18.0, 28.0, 30.0, 26.0, 6.0, 51.0, 6.0, 16.0, 25.0, 26.0, 13.0, 49.0, 35.0, 37.0, 15.0, 20.0, 34.0, 37.0, 32.0, 35.0, 35.0, 13.0, 28.0, 19.0, 46.0, 33.0, 29.0, 21.0, 23.0, 74.0, 8.0, 23.0, 25.0, 5.0, 23.0, 21.0, 10.0, 29.0, 22.0, 18.0, 24.0, 48.0, 20.0, 62.0, 5.0, 24.0, 14.0, 29.0, 57.0, 27.0, 17.0, 46.0, 55.0, 23.0, 55.0, 10.0, 24.0, 20.0, 41.0, 33.0, 24.0, 14.0, 39.0, 10.0, 31.0, 15.0, 23.0, 49.0, 12.0, 10.0, 19.0, 50.0, 8.0, 15.0, 32.0, 13.0, 24.0, 52.0, 38.0, 20.0, 6.0, 3.0, 12.0, 41.0, 46.0, 54.0, 38.0, 17.0, 29.0, 33.0, 40.0, 54.0, 54.0, 26.0, 1.0, 24.0, 45.0, 22.0, 47.0, 17.0, 36.0, 40.0, 39.0, 36.0, 26.0, 18.0, 55.0, 21.0, 26.0, 29.0, 38.5, 21.0, 41.0, 18.0, 24.0, 38.0, 32.0, 79.5, 34.0, 24.0, 18.0, 37.0, 12.0, 35.0, 24.0, 25.0, 23.0, 34.0, 34.0, 56.0, 3.0, 62.0, 56.0, 28.0, 26.0, 44.0, 32.0, 32.0, 16.0, 30.0, 22.0, 31.0, 15.0, 51.0, 29.0, 30.0, 45.0, 18.0, 21.0, 23.0, 21.0, 29.0, 28.0, 13.0, 45.0, 39.0, 26.0, 6.0, 47.0, 68.0, 43.0, 26.0, 36.0, 44.0, 21.0, 13.0, 34.0, 25.0, 8.0, 47.0, 26.0, 67.0, 34.0, 27.0, 29.0, 54.0, 56.0, 58.0, 45.0, 37.0, 10.0, 13.0, 41.0, 12.0, 35.0, 17.0, 40.0, 39.0, 9.0, 25.0, 37.0, 26.0, 30.0, 11.0, 29.0, 22.0, 34.0, 45.0, 19.0, 5.0, 47.0, 26.0, 33.0, 33.0, 25.0, 40.0, 40.0, 28.0, 52.0, 25.0, 95.0, 42.0, 53.0, 24.0, 35.0, 53.0, 62.0, 34.0, 48.0, 15.0, 11.0, 31.0, 26.0, 69.0, 34.0, 11.0, 29.0, 52.0, 39.0, 31.0, 27.0, 50.0, 11.0, 49.0, 30.0, 17.0, 51.0, 20.0, 15.0, 18.0, 11.0, 63.0, 36.0, 23.0, 57.0, 80.0, 28.0, 6.0, 40.0, 27.0, 49.0, 39.0, 15.0, 29.0, 27.0, 7.0, 15.0, 25.0, 37.0, 30.0, 35.0, 14.0, 57.0, 20.0, 8.0, 18.0, 70.5, 13.0, 29.0, 25.0, 32.0, 61.0, 12.0, 53.0, 41.0, 50.0, 58.0, 68.0, 29.0, 29.0, 38.0, 22.0, 10.0, 9.0, 31.0, 17.0, 18.0, 13.0, 34.0, 22.0, 34.0, 56.0, 41.0, 24.0, 35.0, 31.0, 6.0, 43.0, 53.0, 32.0, 21.0, 71.0, 36.0, 11.0, 42.0, 7.0, 27.0, 37.0, 33.0, 37.0, 28.0, 21.0, 19.0, 44.0, 49.0, 23.0, 29.0, 17.0, 8.0, 16.0, 28.0, 9.0, 64.0, 29.0, 64.0, 5.0, 37.0, 19.0, 18.0, 38.0, 9.0, 5.5, 5.0, 50.0, 29.0, 27.0, 24.0, 35.0, 25.0, 20.0, 20.0, 29.0, 8.0, 14.0, 49.0, 53.0, 23.0, 19.0, 48.5, 5.0, 65.0, 27.0, 20.0, 6.0, 26.0, 19.0, 22.0, 15.0, 50.0, 22.0, 40.0, 4.0, 33.0, 49.0, 20.0, 24.0, 57.0, 9.0, 105.0, 44.0, 34.0, 56.0, 53.0, 23.0, 46.0, 14.0, 35.0, 22.0, 42.0, 60.0, 15.0, 25.0, 31.0, 11.0, 61.0, 19.0, 18.0, 63.0, 37.0, 34.0, 33.0, 10.0, 49.0, 26.0, 4.0, 15.0, 6.0, 26.0, 17.0, 44.5, 17.0, 11.0, 10.0, 6.0, 35.0, 15.0, 7.0, 25.0, 42.0, 33.0, 48.5, 40.0, 10.0, 41.0, 57.0, 25.0, 26.0, 31.0, 51.0, 25.0, 31.0, 14.0, 46.0, 41.0, 26.0, 6.0, 53.0, 11.0, 54.0, 8.0, 25.0, 32.0, 81.0, 46.0, 36.0, 36.0, 42.0, 60.5, 15.0, 45.0, 53.0, 41.0, 5.0, 33.0, 6.0, 16.0, 3.0, 52.0, 50.0, 25.0, 6.0, 40.0, 11.0, 16.0, 34.0, 7.0, 17.0, 48.5, 51.0, 14.0, 29.0, 6.0, 21.0, 62.0, 24.0, 19.0, 10.0, 44.0, 44.0, 33.0, 33.0, 8.0, 25.0, 26.0, 73.0, 31.0, 14.0, 56.0, 34.0, 37.0, 67.0, 42.0, 42.0, 30.0, 29.0, 26.0, 50.0, 16.0, 57.0, 40.0, 49.0, 18.0, 38.0, 17.0, 6.0, 56.0, 25.0, 15.0, 18.0, 29.0, 17.0, 10.0, 3.0, 27.0, 26.0, 38.0, 32.0, 47.0, 43.0, 29.0, 60.0, 40.0, 48.0, 17.0, 5.0, 27.0, 36.0, 14.0, 30.0, 41.0, 36.0, 55.0, 17.0, 15.0, 31.0, 29.0, 52.0, 23.0, 14.0, 35.0, 32.0, 21.0, 31.0, 10.0, 34.0, 52.0, 6.0, 59.0, 8.0, 17.0, 31.0, 12.0, 36.0, 25.0, 34.0, 16.0, 22.0, 34.0, 20.0, 50.0, 44.0, 38.0, 46.0, 52.0, 20.0, 32.0], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Reference<br>free.sulfur.dioxide=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [76.0, 19.0, 15.0, 32.0, 18.0, 17.0, 34.0, 9.0, 36.0, 28.0, 20.0, 15.0, 46.0, 8.0, 30.0, 61.0, 24.0, 7.0, 23.0, 3.0, 50.0, 47.0, 5.0, 34.0, 40.0, 15.0, 28.0, 22.0, 44.0, 27.0, 7.0, 25.0, 26.0, 60.0, 52.0, 10.0, 24.0, 58.0, 4.0, 54.0, 14.0, 10.0, 21.0, 24.0, 20.0, 23.0, 25.0, 39.0, 18.0, 22.0, 6.0, 26.0, 41.0, 5.0, 55.0, 42.0, 41.0, 39.0, 5.0, 29.0, 50.0, 47.0, 8.0, 55.0, 23.0, 36.0, 31.0, 32.0, 15.0, 13.0, 52.0, 3.0, 77.0, 20.0, 21.0, 55.0, 64.0, 7.0, 30.0, 15.0, 23.0, 16.0, 65.0, 9.0, 28.0, 11.0, 38.0, 5.0, 26.0, 17.0, 3.0, 55.0, 14.0, 77.0, 53.0, 53.0, 27.0, 39.0, 49.0, 31.0, 68.0, 23.0, 23.0, 44.0, 26.0, 18.0, 37.0, 6.0, 12.0, 25.0, 18.0, 16.0, 3.0, 22.0, 27.0, 18.0, 66.0, 20.0, 21.0, 12.0, 26.0, 13.0, 29.0, 22.0, 52.0, 68.0, 110.0, 9.0, 8.0, 48.0, 5.0, 11.0, 62.0, 61.0, 36.0, 47.0, 13.0, 36.0, 36.0, 33.0, 16.0, 74.0, 3.0, 21.0, 40.0, 61.0, 40.0, 56.0, 25.0, 22.0, 23.0, 17.0, 38.0, 7.0, 36.0, 10.0, 33.0, 53.0, 15.0, 10.0, 14.0, 5.0, 26.0, 34.0, 7.0, 8.0, 44.0, 36.0, 43.0, 54.0, 52.0, 13.0, 35.0, 22.0, 18.0, 6.0, 7.0, 21.0, 15.0, 17.0, 56.0, 3.0, 36.0, 14.0, 64.0, 48.0, 34.0, 5.0, 38.0, 45.0, 16.0, 19.0, 57.0, 8.0, 35.0, 6.0, 20.0, 30.5, 67.0, 44.0, 48.0, 48.0, 48.0, 15.0, 27.0, 37.0, 51.0, 11.0, 5.0, 3.0, 33.0, 48.0, 29.0, 36.0, 27.0, 26.0, 44.0, 9.0, 24.0, 5.0, 8.0, 52.0, 62.0, 29.0, 21.0, 44.0, 27.0, 40.0, 21.0, 3.0, 18.0, 16.0, 17.0, 19.0, 35.0, 33.0, 67.0, 7.0, 40.5, 66.0, 20.0, 43.0, 55.0, 61.0, 52.0, 20.0, 38.0, 70.0, 13.0, 9.0, 35.0, 32.0, 26.0, 10.0, 34.0, 54.0, 20.0, 6.0, 39.0, 6.0, 46.0, 49.0, 59.0, 21.0, 28.0, 53.0, 38.0, 25.0, 23.0, 29.0, 128.0, 22.0, 14.0, 24.0, 61.0, 61.0, 34.0, 66.0, 15.0, 11.0, 6.0, 14.0, 12.0, 16.0, 9.0, 51.0, 21.0, 57.0, 17.0, 54.0, 8.0, 17.0, 146.5, 6.0, 16.0, 7.0, 29.0, 58.0, 60.0, 15.0, 17.0, 22.0, 26.0, 53.0, 18.0, 11.0, 33.0, 11.0, 6.0, 13.0, 64.0, 49.0, 14.0, 52.0, 47.0, 22.0, 52.5, 24.0, 58.0, 9.0, 7.0, 62.0, 15.0, 4.0, 57.0, 32.0, 22.0, 58.0, 12.0, 61.0, 48.0, 23.0, 10.0, 81.0, 23.0, 6.0, 59.0, 5.0, 30.0, 67.0, 18.0, 48.0, 31.0, 12.0, 46.0, 13.0, 28.0, 47.0, 9.0, 50.0, 21.0, 10.0, 29.0, 17.0, 16.0], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Current<br>free.sulfur.dioxide=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [39.0, 33.0, 45.0, 5.0, 36.0, 48.0, 25.0, 4.0, 10.0, 6.0, 22.0, 32.0, 39.0, 52.0, 30.0, 32.0, 35.0, 12.0, 9.0, 10.0, 15.0, 49.0, 31.0, 65.0, 31.0, 23.0, 35.0, 28.0, 11.0, 19.0, 51.0, 48.0, 12.0, 11.0, 24.0, 57.0, 35.0, 11.0, 27.0, 27.0, 19.0, 34.0, 44.0, 40.0, 10.0, 39.0, 16.0, 9.0, 36.0, 10.0, 58.0, 33.0, 26.0, 5.0, 9.0, 23.0, 13.0, 10.0, 21.0, 57.0, 10.0, 33.0, 45.0, 10.0, 13.0, 4.0, 16.0, 11.0, 8.0, 17.0, 6.0, 47.0, 69.0, 16.0, 36.0, 31.0, 45.0, 5.0, 13.0, 32.0, 40.0, 10.0, 45.0, 15.0, 34.0, 10.0, 37.0, 66.0, 81.0, 17.0, 67.0, 15.0, 6.0, 45.0, 40.0, 5.0, 40.0, 51.0, 26.0, 67.0, 20.0, 20.0, 32.0, 13.0, 11.0, 4.0, 27.0, 15.0, 16.0, 44.0, 15.0, 6.0, 18.0, 24.0, 12.0, 19.5, 35.0, 47.0, 52.0, 16.0, 22.0, 39.0, 25.0, 21.0, 12.0, 27.0, 7.0, 15.0, 12.0, 46.0, 6.0, 62.0, 45.0, 14.0, 31.0, 66.0, 6.0, 5.0, 17.0, 9.0, 6.0, 34.0, 38.0, 7.0, 21.0, 31.0, 21.0, 5.0, 42.0, 54.0, 46.0, 46.0, 29.0, 53.0, 24.0, 17.0, 54.0, 52.0, 36.0, 37.0, 15.0, 27.0, 24.0, 44.0, 6.0, 23.0, 23.0, 15.0, 30.0, 41.0, 16.0, 23.0, 12.0, 62.0, 46.0, 40.0, 8.0, 57.0, 54.0, 55.0, 14.0, 64.0, 12.0, 19.0, 42.0, 31.0, 60.0, 16.0, 27.0, 45.0, 16.0, 14.0, 67.0, 12.0, 70.0, 7.0, 20.0, 34.0, 48.0, 23.0, 5.0, 54.0, 37.0, 81.0, 3.0, 68.0, 50.0, 3.0, 26.0, 58.0, 30.0, 29.0, 18.0, 31.0, 61.0, 22.0, 66.0, 46.0, 36.0, 15.0, 40.0, 54.0, 22.0, 61.0, 47.0, 18.0, 16.0, 28.0, 18.0, 32.0, 36.0, 24.0, 44.0, 34.0, 16.0, 35.0, 23.0, 40.0, 45.0, 31.0, 28.0, 5.0, 21.0, 64.0, 20.0, 34.0, 18.0, 26.0, 59.0, 20.0, 15.0, 61.0, 14.0, 51.0, 8.0, 43.0, 64.0, 50.5, 22.0, 20.0, 9.0, 17.0, 54.0, 54.0, 11.0, 28.0, 11.0, 12.0, 4.0, 52.0, 20.0, 12.0, 52.0, 25.0, 18.0, 8.0, 67.0, 16.0, 17.0, 44.0, 45.0, 48.0, 30.0, 72.0, 52.0, 63.0, 16.0, 17.0, 6.0, 34.0, 45.0, 33.0, 45.0, 15.0, 30.0, 12.0, 25.0, 35.0, 39.0, 5.0, 39.0, 15.0, 58.0, 64.0, 68.0, 9.0, 5.0, 21.0, 32.0, 47.0, 24.0, 21.0, 7.0, 39.0, 19.0, 56.0, 40.0, 48.0, 26.0, 26.0, 10.0, 3.0, 23.0, 43.0, 4.0, 37.0, 36.0, 3.0, 54.0, 69.0, 5.0, 32.0, 32.0, 59.0, 7.0, 33.0, 43.0, 25.0, 44.0, 18.0, 51.0, 26.0, 29.0, 11.0, 5.0, 7.0, 15.0, 39.0, 44.0, 24.0, 16.0, 13.0], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Reference\", \"x\": 0.245, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Current\", \"x\": 0.755, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"barmode\": \"overlay\", \"legend\": {\"title\": {\"text\": \"target\"}, \"tracegroupgap\": 0}, \"margin\": {\"t\": 60}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.49], \"title\": {\"text\": \"free.sulfur.dioxide\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.51, 1.0], \"matches\": \"x\", \"title\": {\"text\": \"free.sulfur.dioxide\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"count\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}}}}, {\"id\": \"free.sulfur.dioxide_good\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (ref)\", \"type\": \"scatter\", \"x\": [39.0, 34.0, 26.0, 25.0, 34.0, 20.0, 39.0, 33.0, 24.0, 26.0, 73.0, 4.0, 56.0, 41.5, 41.0, 23.0, 26.0, 6.0, 17.0, 21.0, 72.0, 27.0, 46.0, 30.0, 32.0, 40.0, 25.0, 37.0, 33.0, 29.0, 35.0, 31.0, 30.0, 96.0, 21.0, 44.0, 59.0, 38.0, 19.0, 12.0, 38.0, 18.0, 23.0, 18.0, 41.0, 24.0, 12.0, 24.0, 6.0, 27.0, 45.0, 54.0, 30.0, 44.0, 33.0, 50.0, 12.0, 22.0, 10.0, 50.0, 14.0, 20.0, 42.0, 47.0, 10.0, 6.0, 36.0, 13.0, 28.0, 20.0, 24.0, 19.0, 29.0, 37.5, 12.0, 24.0, 15.0, 26.0, 25.0, 37.0, 60.0, 36.0, 20.0, 28.0, 27.0, 31.0, 12.0, 21.0, 21.0, 7.0, 12.0, 36.0, 39.0, 48.0, 39.0, 24.0, 53.0, 16.0, 28.0, 28.0, 7.0, 35.0, 10.0, 4.0, 11.0, 41.0, 20.0, 27.0, 36.0, 29.0, 41.0, 35.0, 20.0, 19.0, 52.0, 22.0, 12.0, 23.0, 60.0, 24.0, 19.0, 34.0, 49.0, 46.0, 33.0, 13.0, 9.0, 38.0, 38.0, 6.0, 17.0, 33.0, 44.5, 24.0, 20.0, 54.0, 13.0, 15.0, 28.0, 14.0, 36.0, 53.0, 47.0, 43.0, 7.0, 22.0, 17.0, 12.0, 18.0, 34.0, 29.0, 23.0, 28.0, 57.0, 33.0, 42.0, 45.0, 8.0, 23.0, 37.0, 31.0, 17.0, 22.0, 21.0, 25.0, 37.0, 63.0, 29.0, 44.0, 43.0, 7.0, 24.0, 38.0, 30.0, 21.0, 34.0, 17.0, 26.0, 45.0, 16.0, 29.0, 35.0, 7.0, 50.0, 30.0, 33.0, 24.0, 7.0, 50.0, 25.0, 35.0, 3.0, 35.0, 19.0, 24.0, 32.0, 36.0, 59.0, 23.5, 23.0, 20.0, 18.0, 28.0, 38.0, 61.0, 43.0, 8.0, 22.0, 45.0, 29.0, 15.0, 29.0, 29.0, 36.0, 20.0, 16.0, 43.0, 39.0, 53.0, 13.0, 25.0, 41.0, 12.0, 35.0, 17.0, 29.0, 35.0, 47.0, 33.0, 39.0, 40.0, 39.0, 26.0, 52.0, 14.0, 17.0, 43.0, 51.0, 45.0, 49.0, 47.0, 49.0, 46.0, 29.0, 15.0, 47.0, 47.0, 29.0, 43.0, 30.0, 45.0, 48.5, 27.0, 9.0, 17.0, 29.0, 19.0, 35.0, 44.0, 3.0, 57.0, 35.0, 24.0, 51.0, 42.0, 30.0, 17.0, 6.0, 29.0, 18.0, 14.0, 19.0, 7.0, 39.0, 31.0, 50.0, 29.0, 10.0, 3.0, 23.0, 38.0, 49.0, 12.0, 36.0, 26.0, 19.0, 28.0, 78.0, 14.0, 24.0, 16.0, 64.0, 6.0, 45.0, 55.0, 44.0, 16.0, 62.0, 9.0, 27.0, 19.0, 21.0, 24.0, 22.0, 16.0, 24.0, 73.0, 20.0, 42.0, 26.0, 31.0, 38.0, 14.0, 20.0, 21.0, 6.0, 48.0, 41.0, 35.0, 37.0, 45.0, 12.0, 33.0, 49.0, 29.0, 8.0, 26.0, 20.0, 49.0, 27.0, 27.0, 26.0, 6.0, 66.0, 30.0, 38.0, 25.0, 34.0, 28.0, 52.0, 86.0, 14.0, 40.0, 40.0, 18.0, 32.0, 36.0, 7.0, 33.0, 35.0, 59.0, 60.0, 29.0, 20.0, 69.0, 35.0, 32.0, 37.0, 4.0, 31.0, 37.0, 47.0, 25.0, 22.0, 17.0, 28.0, 19.0, 51.0, 11.0, 48.0, 41.0, 17.0, 15.0, 15.0, 19.0, 37.0, 45.0, 17.0, 45.0, 26.0, 13.0, 53.0, 14.0, 53.0, 61.0, 24.0, 55.0, 23.0, 29.0, 29.0, 43.0, 42.0, 36.0, 8.0, 37.0, 18.0, 10.0, 27.0, 58.0, 21.0, 24.0, 8.0, 16.0, 47.0, 14.0, 43.0, 34.0, 17.0, 36.0, 16.0, 29.0, 42.0, 39.0, 15.0, 25.0, 40.0, 45.0, 60.0, 18.0, 15.0, 21.0, 41.0, 60.0, 29.0, 74.0, 40.0, 24.0, 34.0, 27.0, 56.0, 42.0, 14.0, 29.0, 31.0, 35.0, 31.0, 12.0, 32.0, 26.0, 16.0, 19.0, 25.0, 28.0, 20.0, 7.0, 23.0, 66.0, 33.0, 6.0, 36.0, 42.0, 38.0, 15.0, 29.0, 44.0, 7.0, 88.0, 24.0, 26.0, 46.0, 6.0, 29.0, 10.0, 50.0, 53.0, 31.0, 30.0, 63.0, 35.0, 13.0, 17.0, 68.0, 16.0, 35.0, 17.0, 73.0, 17.0, 32.0, 39.0, 21.0, 19.0, 56.0, 37.0, 38.0, 20.0, 8.0, 44.0, 33.0, 24.0, 17.0, 73.0, 23.0, 30.0, 47.0, 7.0, 35.0, 50.0, 47.0, 34.0, 34.0, 59.0, 45.0, 53.0, 55.0, 47.0, 45.0, 46.0, 35.0, 31.0, 17.0, 27.0, 22.0, 32.0, 57.0, 32.0, 12.0, 19.0, 54.0, 24.0, 26.0, 16.0, 30.0, 29.0, 48.0, 14.0, 4.0, 21.0, 30.0, 33.0, 23.0, 10.0, 5.0, 52.0, 20.0, 18.0, 27.0, 52.0, 30.0, 53.0, 24.0, 44.0, 37.0, 38.0, 36.0, 54.0, 30.0, 6.0, 22.0, 28.0, 40.0, 48.0, 41.0, 18.0, 12.0, 33.0, 8.0, 20.0, 14.0, 44.0, 38.0, 36.0, 26.0, 20.0, 24.0, 18.0, 23.0, 23.0, 9.0, 24.0, 61.0, 24.0, 27.0, 13.0, 39.0, 36.0, 11.0, 33.0, 33.0, 44.0, 27.0, 36.0, 34.0, 33.0, 40.0, 24.0, 14.0, 34.0, 38.0, 15.0, 18.0, 20.0, 31.0, 58.0, 37.0, 38.0, 17.0, 23.0, 3.0, 25.0, 42.0, 18.0, 14.0, 54.0, 31.0, 6.0, 26.0, 69.0, 56.0, 48.0, 45.0, 36.0, 24.0, 70.0, 5.0, 34.0, 19.0, 10.0, 37.0, 15.0, 10.0, 53.0, 35.0, 13.0, 14.0, 47.0, 52.0, 38.0, 24.0, 68.0, 22.0, 56.0, 53.0, 39.0, 20.0, 53.0, 12.0, 16.0, 68.0, 46.0, 33.0, 42.0, 17.0, 55.0, 31.0, 40.0], \"xaxis\": \"x\", \"y\": [0.8156061324462894, 0.42491310922683634, 0.8867827646463432, 0.8014995238430205, 0.30499958310650876, 0.5817355832705369, 0.959171062334887, 0.7854416128369749, 0.9085690698200813, 0.8998600376511439, 0.6341165000693628, 0.412102187638673, 0.7643629411050379, 0.4710001938005606, 0.40182653035141874, 0.40438056362905367, 0.8870480016118494, 0.3650667978415713, 0.9064321709292111, 0.9327245345966092, 0.6458420185168736, 0.8821841129047617, 0.6704018506542557, 0.7655671181822064, 0.8616986618932058, 0.48774537944210006, 0.9637355036179479, 0.6794204065079696, 0.6044835155949141, 0.7867954023600708, 0.9137982268836646, 0.5867502063434873, 0.8048584290077971, 0.9718511071053526, 0.9627192884041744, 0.7978623718349598, 0.6091120966723917, 0.8943338178728011, 0.8853376735027229, 0.9045563504021151, 0.9264844632598176, 0.6342457655367447, 0.9414033426130164, 0.5636516403732365, 0.5172967922101196, 0.4836896337264441, 0.35199620689495453, 0.788779954566273, 0.9696552399248426, 0.772496554239754, 0.8132656157621138, 0.4539090261140653, 0.9333708926412786, 0.679765045723866, 0.48457442622955804, 0.4248820606938153, 0.6737819616086004, 0.8780741425819777, 0.38340602447337646, 0.90634085684919, 0.5574014604752268, 0.6804147683859246, 0.9077110088845216, 0.7718472635729894, 0.4717552048891654, 0.22222808308441652, 0.8616549355667619, 0.705749071892896, 0.4699129352300819, 0.9680524782819758, 0.8891353183282249, 0.9466602521798594, 0.8553382520847058, 0.7430243903066251, 0.6616131862201935, 0.6919609500216202, 0.96565744679506, 0.913108907487878, 0.5395521774612226, 0.9026238558501023, 0.6550941529376255, 0.9757876320152292, 0.8833495792027257, 0.6666029765862381, 0.8504582120840628, 0.9320215595878566, 0.7639947574915884, 0.6085229656221847, 0.9557131606798471, 0.46184432615952054, 0.5642658412077981, 0.8815615400732472, 0.7189203536918151, 0.9301020530176726, 0.7341394174346678, 0.7759189559372703, 0.8448078654733812, 0.9012666081120407, 0.8926028620066223, 0.5287492720273277, 0.6874206920638863, 0.37408584674942635, 0.8348370105186077, 0.8697567261320243, 0.9175759024810304, 0.44644098895981, 0.8874384748400057, 0.7787567487441118, 0.9416122482572158, 0.3265229243180111, 0.9308095750950773, 0.42267134533232753, 0.43068181214270274, 0.8727308285810839, 0.7201611177732586, 0.8430904589044517, 0.8140617541555761, 0.9456747441572588, 0.6672663325862807, 0.8756470416862959, 0.518871521713375, 0.7040615347784164, 0.4957960231649875, 0.6250130361556073, 0.27413726132188326, 0.5193133578087885, 0.37656641690434584, 0.5808048103476511, 0.7917827117482167, 0.36569143480873245, 0.7232542293832885, 0.9785934574433302, 0.5715075300165849, 0.8182555969893297, 0.5448461144048058, 0.9491291995847589, 0.4833587957991669, 0.3189279754564957, 0.9184825510014271, 0.5524830505676419, 0.9600429304649183, 0.7818180966165994, 0.7962710274484252, 0.7569429870375118, 0.46184432615952054, 0.7641514270390748, 0.9486763575522457, 0.8086368705092697, 0.6784536879503494, 0.6877019790624462, 0.6082670858563528, 0.6053794617794684, 0.6319330693089359, 0.4982105707488519, 0.6787928880949093, 0.9231980717613485, 0.8831230955067948, 0.6845485656817341, 0.8799204262605215, 0.9164563829924386, 0.7819268199067826, 0.23469888428232324, 0.9492377841603665, 0.8826092272015389, 0.6360541596480074, 0.5184081252698399, 0.6400126753125241, 0.542646305979658, 0.4479501208302092, 0.7783171875827786, 0.7867712153112567, 0.5236605417423803, 0.6959846197179591, 0.7925023358445066, 0.6683189355892497, 0.18737025221649042, 0.42506327048176057, 0.7272596040941706, 0.7314191754306454, 0.4827891324637794, 0.6649341228620356, 0.9038332731164471, 0.9588917860646077, 0.8945194928389463, 0.49833043835950624, 0.7997712594855277, 0.8577935987172323, 0.7622736922026153, 0.8039391974899521, 0.7396811504731934, 0.8115340233127679, 0.801728888664367, 0.738451208106372, 0.5859674792922007, 0.1865203674848816, 0.8773430435604171, 0.36888329310067386, 0.8651817982269884, 0.9067615420962557, 0.8594983988587351, 0.7437750884018276, 0.9145224932934428, 0.9135679891815164, 0.8001832456898428, 0.6860977766129374, 0.9377826008632761, 0.9300369611912853, 0.6997062971069969, 0.5693182102579236, 0.3404656140239559, 0.7160591142088384, 0.7953146078011, 0.8869803873277935, 0.7639982823097876, 0.8681285227071118, 0.576868797021353, 0.93035102563313, 0.8375600281828176, 0.8279918435672958, 0.9266689436294401, 0.7559862346636359, 0.5099889666930224, 0.6914445842613687, 0.9651950326885705, 0.87851968214492, 0.8499702807396289, 0.4685752957996948, 0.7241546992314323, 0.7848147251007912, 0.7341394174346678, 0.7008877443692281, 0.340588975625529, 0.5013021766499856, 0.8321174529331695, 0.8818378666553491, 0.9176909075187759, 0.8634678749265305, 0.7436082905772717, 0.9343776659412377, 0.7668809937296346, 0.6243383802582345, 0.5332560471205093, 0.6907315465649003, 0.16626803588025432, 0.1668542888532837, 0.7408943843163458, 0.5221312328975666, 0.7457559475413279, 0.46389636934606376, 0.9292627865919654, 0.5268311186840582, 0.4244151934213653, 0.643310536612302, 0.8577438313980266, 0.7816208399762355, 0.8553382520847058, 0.7010035672814305, 0.5242572272016158, 0.9187320011579697, 0.8703498177621264, 0.6713045345576062, 0.9137982268836646, 0.8614414457916845, 0.9445662266054761, 0.8808216590199034, 0.7386378115490353, 0.8873009977622293, 0.9157094897337859, 0.6606038558129893, 0.9296803968514485, 0.8864322240790464, 0.5146720135715994, 0.8720710714485208, 0.9415427660945741, 0.9138701141498735, 0.6527559092576063, 0.8751970040938668, 0.9249766460056568, 0.801728888664367, 0.6575848465963361, 0.6934824043184128, 0.8619113960143526, 0.9419078024651042, 0.9591721389341828, 0.8397407150753159, 0.9084383840076588, 0.4963969309336195, 0.7359588175524252, 0.3531961907069324, 0.9279819479140234, 0.7752976919572294, 0.8665226278427577, 0.9515211055933231, 0.7314191754306454, 0.890886918514299, 0.3235491032739525, 0.3719939405423586, 0.6323804178173072, 0.8398006965792015, 0.8239469134189235, 0.8592101816891015, 0.7615002907198236, 0.8688259750909261, 0.8718104001390852, 0.5838074755684882, 0.8756470416862959, 0.901850575196968, 0.9451930143658351, 0.6253812669856891, 0.5890764576710766, 0.4921052500998711, 0.4862070578416567, 0.9170647663398394, 0.7035583451969506, 0.8476385889092957, 0.5603058978573646, 0.5810606890504925, 0.9088604673919816, 0.8903252600075929, 0.944267921154058, 0.9435968591480925, 0.938237366988842, 0.9357286047893738, 0.7961386682142712, 0.7840233885688647, 0.2513590507613302, 0.7389284097502917, 0.9053472250810051, 0.44438282424164377, 0.862281110352348, 0.8021059248496223, 0.9152740930046814, 0.643737358401971, 0.8540304955499701, 0.8613418170006786, 0.6911084183178322, 0.8848367871057808, 0.8387883096682573, 0.5942651630821018, 0.65691393717736, 0.6369979527510315, 0.8280658524313272, 0.9640736168216585, 0.6546311715671466, 0.5599819536107853, 0.48348053317652906, 0.7668016587569692, 0.03620763244300767, 0.7364400865449663, 0.37408584674942635, 0.8767503774172, 0.8743962287172513, 0.8751970040938668, 0.8833495792027257, 0.7091886355621774, 0.87006937054451, 0.7904001815220257, 0.8761418339280951, 0.8306834851111597, 0.7531715889012326, 0.38181207472529843, 0.6490458991820136, 0.9138057013338913, 0.9046222904886461, 0.17956061692355052, 0.7506163079023257, 0.8963285795381793, 0.8848361664653354, 0.9283037217377402, 0.45996158699034445, 0.7290858434196763, 0.8319094967702583, 0.6578018675312727, 0.18727567457681707, 0.8673410249845035, 0.9453298670648187, 0.9446538464906173, 0.19605573045952288, 0.6723831041639817, 0.3438281302059518, 0.37858973820495484, 0.6953170483296187, 0.21463507152544156, 0.26963792069965237, 0.3280912492037974, 0.8399932187801539, 0.420387898633768, 0.36522500752858966, 0.5810560693343539, 0.9306346767722963, 0.7167716539092029, 0.656736106921484, 0.5549139996760648, 0.6909161521388689, 0.591904263202073, 0.884703171197362, 0.866402281883595, 0.7582770814524421, 0.8990773411030794, 0.1818065866116437, 0.6222165686186035, 0.17261914235374884, 0.8156064679757086, 0.4851213943917703, 0.8871292211128762, 0.8398494053952754, 0.703270618172154, 0.6305543892506115, 0.7494149477175548, 0.1532408287022325, 0.6159732902773407, 0.738220551127759, 0.8354520044441791, 0.8536870432671441, 0.5751476712690671, 0.9077719201719568, 0.7878515691455199, 0.6672663325862807, 0.45293736875445273, 0.17058553029544155, 0.747933377844996, 0.8400163125056676, 0.4516778718827729, 0.6082670858563528, 0.8401843469141149, 0.7636885291754726, 0.789170795337903, 0.8128612802083497, 0.7522530659814418, 0.8086757686066508, 0.8356255123032285, 0.9241779635105248, 0.9674588597049086, 0.9368885694202199, 0.4990764491242286, 0.876561204324957, 0.554264192243629, 0.5967716244634195, 0.9060244606340249, 0.8401608718856799, 0.7329750583133859, 0.8021769878309102, 0.9316817655017511, 0.45488322534173153, 0.798578398438993, 0.7425236774748816, 0.5742682328784404, 0.4937681935814938, 0.8972164286692267, 0.8914273370768748, 0.9377613518261881, 0.8862258850530264, 0.8591757581361523, 0.7410678096850266, 0.6822336012657398, 0.9201658505843877, 0.6982578893131915, 0.5746709232170782, 0.7626532952948841, 0.7137703530889916, 0.7520971196461234, 0.4473853625959922, 0.7957460056304991, 0.4833174871501707, 0.8758467705785958, 0.4689303842787964, 0.6133612564737879, 0.8568681391705205, 0.6835133967314007, 0.9732070839986944, 0.21435716257549006, 0.5761668962420043, 0.4055433603128916, 0.3743394998756179, 0.9118635774953143, 0.964551884718591, 0.9306459334511011, 0.8424802355113449, 0.7739144871152517, 0.6872688771534424, 0.8590561833388345, 0.6714384475466295, 0.6408669500407106, 0.5203550269219845, 0.2856853969697174, 0.857760555506807, 0.9307094503226838, 0.6787928880949093, 0.8308635255795866, 0.29271374211533296, 0.6769315553524353, 0.23831547366416572, 0.5895099457120908, 0.8994675076574448, 0.8893400405584444, 0.8456825404777587, 0.5399612081435882, 0.6188649121485582, 0.9281492942813848, 0.7611740601422801, 0.46550237374781617, 0.8896861436466836, 0.9038901015569306, 0.5044440900554997, 0.9215480939667524, 0.6930273792518707, 0.8723244804196287, 0.5624338775604165, 0.9226297661236537, 0.8469231754225917, 0.9430557295321259, 0.9097116306258912, 0.5988707702267543, 0.3813853072548755, 0.8843832309478876, 0.9006952500629406, 0.918975987201669, 0.18997930334445084, 0.8923106748541326, 0.8461388699436441, 0.5973439234355874, 0.9544642924744549, 0.91770416680597, 0.9177239854204658, 0.17584552180125673, 0.9240099144459667, 0.48524948024905407, 0.8889685222180134, 0.5785503824403398, 0.7511953459672914, 0.6887596776945688, 0.6717539058356753, 0.7168761391602206, 0.7134478068952186, 0.834626350903405, 0.5715867980362679, 0.6588392688727011, 0.9488572786900573, 0.8920529250761863, 0.8891353183282249, 0.707981940789761, 0.926348680038428, 0.631489487929038, 0.7443856388661001, 0.9260754381930228, 0.9544642924744549, 0.8497401318990601, 0.5604010177433062, 0.8036334301115304, 0.7898153537185114, 0.8491431337122072, 0.6570881560807702, 0.8389599143569951, 0.7944137576415592, 0.8132668978866627, 0.44714680104169846, 0.7978021044641371, 0.41921696608658454, 0.38876183891604754, 0.9248463736054193, 0.4277915265084825, 0.6345107008491314, 0.8008942533173764, 0.5087430598332189, 0.9414938992689892, 0.6922115882765215, 0.8296175750175913, 0.8593339228153332, 0.8975141534758351, 0.5977126281557783, 0.9279478536756302, 0.6485770817571253, 0.8905823996589662, 0.9332072841984264, 0.9432461110830079, 0.9410120781436498, 0.6339696776630096, 0.7120962557761497, 0.5841709037351369, 0.5928970840420333, 0.9006589732900512, 0.936371533648048, 0.6907852379101131, 0.7675780198071424, 0.9444587893431046, 0.4702336163336472, 0.8925536722101626, 0.8158978708906081, 0.822780392485108, 0.8037335327290217, 0.8382351003285965, 0.8941557358589171, 0.4796498334522667, 0.926348680038428, 0.6842118015950474, 0.6463580983468415, 0.8292048071278182, 0.5834426687867836, 0.8419845362148763, 0.2431563391580561, 0.7763142135369961, 0.9390550746437164, 0.7774903237071782, 0.8141232663130791, 0.9444089886680379, 0.430401459478284, 0.9192677156927759, 0.8427595869840984, 0.87120858451521, 0.5693182102579236, 0.820012080301976, 0.58719119911586, 0.42769376643096113, 0.3542595869275313, 0.89579938191327, 0.8743523014696554, 0.7820497043505815, 0.5279069501129625, 0.8869579700149332, 0.45488774279476296, 0.8514781135508903, 0.8278297091497892, 0.663749097381813, 0.5132851713944618, 0.4906566565015208, 0.6415219885510332, 0.6991293681294938, 0.8150539074042624, 0.5800669536763935, 0.9583771200922359, 0.7366090055976814, 0.5747817696023392, 0.5315376696882942, 0.8074446941396305, 0.9038901015569306, 0.9087015650331977, 0.6697291810323083, 0.5800669536763935, 0.8807270543114014, 0.5135845984304893, 0.9352791850238339, 0.36120709973337456, 0.6206709330576408, 0.906286252315459, 0.7937202818717513], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [76.0, 19.0, 15.0, 32.0, 18.0, 17.0, 34.0, 9.0, 36.0, 28.0, 20.0, 15.0, 46.0, 8.0, 30.0, 61.0, 24.0, 7.0, 23.0, 3.0, 50.0, 47.0, 5.0, 34.0, 40.0, 15.0, 28.0, 22.0, 44.0, 27.0, 7.0, 25.0, 26.0, 60.0, 52.0, 10.0, 24.0, 58.0, 4.0, 54.0, 14.0, 10.0, 21.0, 24.0, 20.0, 23.0, 25.0, 39.0, 18.0, 22.0, 6.0, 26.0, 41.0, 5.0, 55.0, 42.0, 41.0, 39.0, 5.0, 29.0, 50.0, 47.0, 8.0, 55.0, 23.0, 36.0, 31.0, 32.0, 15.0, 13.0, 52.0, 3.0, 77.0, 20.0, 21.0, 55.0, 64.0, 7.0, 30.0, 15.0, 23.0, 16.0, 65.0, 9.0, 28.0, 11.0, 38.0, 5.0, 26.0, 17.0, 3.0, 55.0, 14.0, 77.0, 53.0, 53.0, 27.0, 39.0, 49.0, 31.0, 68.0, 23.0, 23.0, 44.0, 26.0, 18.0, 37.0, 6.0, 12.0, 25.0, 18.0, 16.0, 3.0, 22.0, 27.0, 18.0, 66.0, 20.0, 21.0, 12.0, 26.0, 13.0, 29.0, 22.0, 52.0, 68.0, 110.0, 9.0, 8.0, 48.0, 5.0, 11.0, 62.0, 61.0, 36.0, 47.0, 13.0, 36.0, 36.0, 33.0, 16.0, 74.0, 3.0, 21.0, 40.0, 61.0, 40.0, 56.0, 25.0, 22.0, 23.0, 17.0, 38.0, 7.0, 36.0, 10.0, 33.0, 53.0, 15.0, 10.0, 14.0, 5.0, 26.0, 34.0, 7.0, 8.0, 44.0, 36.0, 43.0, 54.0, 52.0, 13.0, 35.0, 22.0, 18.0, 6.0, 7.0, 21.0, 15.0, 17.0, 56.0, 3.0, 36.0, 14.0, 64.0, 48.0, 34.0, 5.0, 38.0, 45.0, 16.0, 19.0, 57.0, 8.0, 35.0, 6.0, 20.0, 30.5, 67.0, 44.0, 48.0, 48.0, 48.0, 15.0, 27.0, 37.0, 51.0, 11.0, 5.0, 3.0, 33.0, 48.0, 29.0, 36.0, 27.0, 26.0, 44.0, 9.0, 24.0, 5.0, 8.0, 52.0, 62.0, 29.0, 21.0, 44.0, 27.0, 40.0, 21.0, 3.0, 18.0, 16.0, 17.0, 19.0, 35.0, 33.0, 67.0, 7.0, 40.5, 66.0, 20.0, 43.0, 55.0, 61.0, 52.0, 20.0, 38.0, 70.0, 13.0, 9.0, 35.0, 32.0, 26.0, 10.0, 34.0, 54.0, 20.0, 6.0, 39.0, 6.0, 46.0, 49.0, 59.0, 21.0, 28.0, 53.0, 38.0, 25.0, 23.0, 29.0, 128.0, 22.0, 14.0, 24.0, 61.0, 61.0, 34.0, 66.0, 15.0, 11.0, 6.0, 14.0, 12.0, 16.0, 9.0, 51.0, 21.0, 57.0, 17.0, 54.0, 8.0, 17.0, 146.5, 6.0, 16.0, 7.0, 29.0, 58.0, 60.0, 15.0, 17.0, 22.0, 26.0, 53.0, 18.0, 11.0, 33.0, 11.0, 6.0, 13.0, 64.0, 49.0, 14.0, 52.0, 47.0, 22.0, 52.5, 24.0, 58.0, 9.0, 7.0, 62.0, 15.0, 4.0, 57.0, 32.0, 22.0, 58.0, 12.0, 61.0, 48.0, 23.0, 10.0, 81.0, 23.0, 6.0, 59.0, 5.0, 30.0, 67.0, 18.0, 48.0, 31.0, 12.0, 46.0, 13.0, 28.0, 47.0, 9.0, 50.0, 21.0, 10.0, 29.0, 17.0, 16.0], \"xaxis\": \"x\", \"y\": [0.2802292104526322, 0.9455194119275858, 0.4978743212349556, 0.5289145624519528, 0.28439238707197784, 0.2033309570226689, 0.27345747478543325, 0.8322873304845451, 0.389055896812549, 0.3675472469853882, 0.5781933746273124, 0.7401955299744071, 0.44969671697605845, 0.4367887814338696, 0.31593955341667695, 0.3775624358859999, 0.19282181046294666, 0.048451763306065584, 0.6005928650583868, 0.032225376113695775, 0.427412413738938, 0.23973251442015217, 0.13890126550157303, 0.8613925272127, 0.329663916828638, 0.19359965390713213, 0.6827271716759634, 0.1960905505555538, 0.08135735686643118, 0.39737240301928484, 0.13902987396822816, 0.6514166433739288, 0.6994753721471061, 0.7140886736258081, 0.5021795028970708, 0.48743245558712556, 0.5731139673640956, 0.8820820642542792, 0.559972149724866, 0.5061565591493914, 0.5066810377847554, 0.833805652807593, 0.6979972163580744, 0.3177574231538272, 0.13068190592986567, 0.758876109553896, 0.5681062961269688, 0.715544821914063, 0.762062625203523, 0.4464438677531786, 0.20995974230910305, 0.5262622410710028, 0.39442669669188163, 0.2537324982988368, 0.6775437642744659, 0.23876321589577687, 0.6369158982934647, 0.38960060362966165, 0.6034323722874255, 0.7769991715799629, 0.15199748354041337, 0.5641412449951732, 0.7590466800561823, 0.5969347905931296, 0.1048362779837843, 0.7217824369593382, 0.2662339163773806, 0.16472378978351135, 0.37760124376932414, 0.7071736299639594, 0.3436862995931572, 0.8384434752264291, 0.3635333644877426, 0.7813188949129265, 0.7279369976219869, 0.5641098847382463, 0.3863964747623771, 0.9209913370067284, 0.1477144681640183, 0.8809374658555192, 0.6533168894759348, 0.8873477284758582, 0.3697306267878623, 0.28319023347825867, 0.5203701741750857, 0.5523747693308857, 0.6387521731780509, 0.3881380695009739, 0.8487896327149285, 0.4636606453307818, 0.8384434752264291, 0.558266603669778, 0.21657231888677728, 0.3635333644877426, 0.5512671313974766, 0.5051039398599867, 0.5827915753039158, 0.49441682850108926, 0.47309171914705017, 0.6262595591688196, 0.5508242483721094, 0.47332791509789995, 0.7117569366896692, 0.3933786516273859, 0.16465066549244003, 0.7490394132223248, 0.769261050002088, 0.7431932405995126, 0.3141000916210982, 0.723735045552473, 0.6484132891031948, 0.688519894019609, 0.40496704226994307, 0.5803736122960511, 0.6327801522745691, 0.45115706990411364, 0.37268733756108086, 0.9009693101135351, 0.06496389958099598, 0.44431713201158524, 0.39960831974332744, 0.8662156944598043, 0.31018081106061823, 0.5339551117365043, 0.33311273919547707, 0.400132762133902, 0.8528754522806217, 0.14419347879543085, 0.11672350429510901, 0.44556702529145975, 0.6160120899414699, 0.13766892845409207, 0.5517204028384314, 0.5232178919035022, 0.35483403305733974, 0.4900213704561591, 0.8854578072659228, 0.43084122675663034, 0.7601186327653665, 0.14072030431570776, 0.6186690618327106, 0.5245054232921349, 0.7326259458716644, 0.5690781983520095, 0.4018508815425063, 0.24877469563805235, 0.7952501197393639, 0.8766221356386195, 0.303451532996695, 0.5357745481647883, 0.7096524147827454, 0.20877177283968149, 0.8635610141758273, 0.46736762313881036, 0.6061151992073851, 0.113015272873705, 0.40446014603085867, 0.6332606063976143, 0.648705381890928, 0.42186952587750404, 0.8047913565308571, 0.3017058309841093, 0.38406990132164637, 0.33494193042999065, 0.19929939967121216, 0.8624919783238055, 0.528785836409086, 0.43084122675663034, 0.47042159929499583, 0.5061565591493914, 0.5759491569657543, 0.8468794444363914, 0.20342296359496542, 0.5170831534483544, 0.3666753044655067, 0.6131723001375537, 0.4410646109528086, 0.6903416342484309, 0.3866428492574258, 0.4636606453307818, 0.4525459302795702, 0.03199256040434073, 0.7029629492254846, 0.2433141614541866, 0.548755973819273, 0.3775060302547258, 0.06593060991448157, 0.8745624549148976, 0.22931948662359403, 0.27267688907931714, 0.589328430619086, 0.8007160756317941, 0.5525637789187225, 0.5008522318356121, 0.4556212410144909, 0.17391722008742402, 0.43574637053357784, 0.3237440077649342, 0.6071692164257629, 0.6925152430641841, 0.592675381607996, 0.43854150134957587, 0.43854150134957587, 0.42437112972565305, 0.8061118855433299, 0.35195592295594336, 0.7605370065149419, 0.38898578429124253, 0.67510953655807, 0.872979709380305, 0.710510994258769, 0.720290290780972, 0.4820787970895852, 0.42019280799979697, 0.4304380754474639, 0.25285023254778977, 0.3238056884730761, 0.39471961640683584, 0.09510031985475974, 0.367046376808582, 0.21500793651835448, 0.8705359023101334, 0.6100742529031461, 0.6226449432624995, 0.7279369976219869, 0.3643494054700089, 0.09992017521484964, 0.41475515148757036, 0.6462260464983366, 0.14102909592513518, 0.48949585696458414, 0.5239520436918008, 0.6084413884537807, 0.5655473856702703, 0.9517420512476797, 0.7489379515982664, 0.4647937384849751, 0.7915321263825208, 0.44112279258530757, 0.5734340256727429, 0.6604471727860799, 0.4845203185458914, 0.6968730453869196, 0.5315374962198609, 0.8685951485887234, 0.6242442748350044, 0.2912097196987059, 0.7725938221565348, 0.2067629769731588, 0.30221725334927335, 0.13129342562285412, 0.6467789443522378, 0.6994753721471061, 0.11825382206919556, 0.41022417118631593, 0.4882665226122541, 0.7732287086973071, 0.25374762405010176, 0.49441682850108926, 0.3723877205427743, 0.652330313245635, 0.43667799883041203, 0.5964718913578133, 0.55172276504346, 0.24113559934961917, 0.8243980268882987, 0.7263843594269437, 0.43535214809021755, 0.8721122798612579, 0.18723914490145582, 0.6486906676970999, 0.11576704656818047, 0.4328241622975616, 0.491481212420291, 0.5264345378086769, 0.33856526784971647, 0.2967410926251248, 0.581398831228375, 0.5973776665460488, 0.6195406102170065, 0.37782717658841725, 0.323061133240968, 0.17420808473594895, 0.19634770547538957, 0.46492234760650425, 0.49613167963272686, 0.5812209036149294, 0.6057291775435286, 0.63414717387345, 0.5702687187355167, 0.8604975146328253, 0.6309022132706124, 0.48732991249542923, 0.6887148870948692, 0.41581945293096145, 0.5706760596351739, 0.4831274653996314, 0.06684727567316755, 0.49090643211649887, 0.15191610726090596, 0.2711405311223577, 0.7653618545702112, 0.09266565137124261, 0.4554350627407873, 0.19698919164573708, 0.6930185080649685, 0.5227537922811563, 0.50434568709929, 0.7082092780767422, 0.46058046365566996, 0.6735723234187477, 0.4285936050615775, 0.323061133240968, 0.5168500865319015, 0.6161307914674419, 0.23456444218973552, 0.3192004782541023, 0.21968945907811915, 0.5028183230931117, 0.43371621376298963, 0.6744209213341115, 0.5940260419772637, 0.13783310426722128, 0.5136444387530009, 0.5508647999875032, 0.4955911012838212, 0.9814394195009358, 0.8260225289794664, 0.17965956338109995, 0.46844896472597397, 0.6048119589659149, 0.3289160319090978, 0.2454606394453749, 0.7497022835596558, 0.683485355417811, 0.20995974230910305, 0.23504578258460665, 0.37175956099497537, 0.4875530438829156, 0.24982584224249993, 0.6282829625348888, 0.4520795162158371, 0.8200372413039435, 0.12832513643528837, 0.5299630655130737, 0.29552777318700446, 0.24021937552346023, 0.5429028773737552, 0.6311869746243346, 0.4145977043912777, 0.39329840463575844, 0.39070335653410526, 0.4286990948130573, 0.846836560604146, 0.6880850122626078], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (curr)\", \"type\": \"scatter\", \"x\": [18.0, 55.0, 24.0, 15.0, 23.0, 27.0, 37.0, 21.0, 32.0, 57.0, 13.0, 29.0, 36.0, 26.0, 31.0, 29.0, 32.0, 11.0, 1.0, 42.0, 53.0, 39.0, 12.0, 45.0, 46.0, 32.0, 35.0, 61.0, 22.0, 34.0, 26.0, 23.0, 59.0, 26.0, 37.0, 45.0, 32.0, 60.0, 16.0, 10.0, 39.0, 31.0, 37.0, 46.0, 11.0, 34.0, 23.0, 18.0, 73.0, 38.0, 6.0, 22.0, 35.0, 14.0, 37.0, 43.0, 37.0, 27.0, 46.0, 18.0, 34.0, 45.0, 30.0, 15.0, 28.0, 31.0, 49.0, 32.0, 38.0, 50.0, 35.0, 36.0, 31.0, 28.0, 26.0, 54.0, 32.0, 53.0, 20.0, 6.0, 23.0, 66.0, 34.0, 22.0, 26.0, 14.0, 41.0, 20.0, 49.0, 14.0, 60.0, 46.0, 18.0, 28.0, 30.0, 26.0, 6.0, 51.0, 6.0, 16.0, 25.0, 26.0, 13.0, 49.0, 35.0, 37.0, 15.0, 20.0, 34.0, 37.0, 32.0, 35.0, 35.0, 13.0, 28.0, 19.0, 46.0, 33.0, 29.0, 21.0, 23.0, 74.0, 8.0, 23.0, 25.0, 5.0, 23.0, 21.0, 10.0, 29.0, 22.0, 18.0, 24.0, 48.0, 20.0, 62.0, 5.0, 24.0, 14.0, 29.0, 57.0, 27.0, 17.0, 46.0, 55.0, 23.0, 55.0, 10.0, 24.0, 20.0, 41.0, 33.0, 24.0, 14.0, 39.0, 10.0, 31.0, 15.0, 23.0, 49.0, 12.0, 10.0, 19.0, 50.0, 8.0, 15.0, 32.0, 13.0, 24.0, 52.0, 38.0, 20.0, 6.0, 3.0, 12.0, 41.0, 46.0, 54.0, 38.0, 17.0, 29.0, 33.0, 40.0, 54.0, 54.0, 26.0, 1.0, 24.0, 45.0, 22.0, 47.0, 17.0, 36.0, 40.0, 39.0, 36.0, 26.0, 18.0, 55.0, 21.0, 26.0, 29.0, 38.5, 21.0, 41.0, 18.0, 24.0, 38.0, 32.0, 79.5, 34.0, 24.0, 18.0, 37.0, 12.0, 35.0, 24.0, 25.0, 23.0, 34.0, 34.0, 56.0, 3.0, 62.0, 56.0, 28.0, 26.0, 44.0, 32.0, 32.0, 16.0, 30.0, 22.0, 31.0, 15.0, 51.0, 29.0, 30.0, 45.0, 18.0, 21.0, 23.0, 21.0, 29.0, 28.0, 13.0, 45.0, 39.0, 26.0, 6.0, 47.0, 68.0, 43.0, 26.0, 36.0, 44.0, 21.0, 13.0, 34.0, 25.0, 8.0, 47.0, 26.0, 67.0, 34.0, 27.0, 29.0, 54.0, 56.0, 58.0, 45.0, 37.0, 10.0, 13.0, 41.0, 12.0, 35.0, 17.0, 40.0, 39.0, 9.0, 25.0, 37.0, 26.0, 30.0, 11.0, 29.0, 22.0, 34.0, 45.0, 19.0, 5.0, 47.0, 26.0, 33.0, 33.0, 25.0, 40.0, 40.0, 28.0, 52.0, 25.0, 95.0, 42.0, 53.0, 24.0, 35.0, 53.0, 62.0, 34.0, 48.0, 15.0, 11.0, 31.0, 26.0, 69.0, 34.0, 11.0, 29.0, 52.0, 39.0, 31.0, 27.0, 50.0, 11.0, 49.0, 30.0, 17.0, 51.0, 20.0, 15.0, 18.0, 11.0, 63.0, 36.0, 23.0, 57.0, 80.0, 28.0, 6.0, 40.0, 27.0, 49.0, 39.0, 15.0, 29.0, 27.0, 7.0, 15.0, 25.0, 37.0, 30.0, 35.0, 14.0, 57.0, 20.0, 8.0, 18.0, 70.5, 13.0, 29.0, 25.0, 32.0, 61.0, 12.0, 53.0, 41.0, 50.0, 58.0, 68.0, 29.0, 29.0, 38.0, 22.0, 10.0, 9.0, 31.0, 17.0, 18.0, 13.0, 34.0, 22.0, 34.0, 56.0, 41.0, 24.0, 35.0, 31.0, 6.0, 43.0, 53.0, 32.0, 21.0, 71.0, 36.0, 11.0, 42.0, 7.0, 27.0, 37.0, 33.0, 37.0, 28.0, 21.0, 19.0, 44.0, 49.0, 23.0, 29.0, 17.0, 8.0, 16.0, 28.0, 9.0, 64.0, 29.0, 64.0, 5.0, 37.0, 19.0, 18.0, 38.0, 9.0, 5.5, 5.0, 50.0, 29.0, 27.0, 24.0, 35.0, 25.0, 20.0, 20.0, 29.0, 8.0, 14.0, 49.0, 53.0, 23.0, 19.0, 48.5, 5.0, 65.0, 27.0, 20.0, 6.0, 26.0, 19.0, 22.0, 15.0, 50.0, 22.0, 40.0, 4.0, 33.0, 49.0, 20.0, 24.0, 57.0, 9.0, 105.0, 44.0, 34.0, 56.0, 53.0, 23.0, 46.0, 14.0, 35.0, 22.0, 42.0, 60.0, 15.0, 25.0, 31.0, 11.0, 61.0, 19.0, 18.0, 63.0, 37.0, 34.0, 33.0, 10.0, 49.0, 26.0, 4.0, 15.0, 6.0, 26.0, 17.0, 44.5, 17.0, 11.0, 10.0, 6.0, 35.0, 15.0, 7.0, 25.0, 42.0, 33.0, 48.5, 40.0, 10.0, 41.0, 57.0, 25.0, 26.0, 31.0, 51.0, 25.0, 31.0, 14.0, 46.0, 41.0, 26.0, 6.0, 53.0, 11.0, 54.0, 8.0, 25.0, 32.0, 81.0, 46.0, 36.0, 36.0, 42.0, 60.5, 15.0, 45.0, 53.0, 41.0, 5.0, 33.0, 6.0, 16.0, 3.0, 52.0, 50.0, 25.0, 6.0, 40.0, 11.0, 16.0, 34.0, 7.0, 17.0, 48.5, 51.0, 14.0, 29.0, 6.0, 21.0, 62.0, 24.0, 19.0, 10.0, 44.0, 44.0, 33.0, 33.0, 8.0, 25.0, 26.0, 73.0, 31.0, 14.0, 56.0, 34.0, 37.0, 67.0, 42.0, 42.0, 30.0, 29.0, 26.0, 50.0, 16.0, 57.0, 40.0, 49.0, 18.0, 38.0, 17.0, 6.0, 56.0, 25.0, 15.0, 18.0, 29.0, 17.0, 10.0, 3.0, 27.0, 26.0, 38.0, 32.0, 47.0, 43.0, 29.0, 60.0, 40.0, 48.0, 17.0, 5.0, 27.0, 36.0, 14.0, 30.0, 41.0, 36.0, 55.0, 17.0, 15.0, 31.0, 29.0, 52.0, 23.0, 14.0, 35.0, 32.0, 21.0, 31.0, 10.0, 34.0, 52.0, 6.0, 59.0, 8.0, 17.0, 31.0, 12.0, 36.0, 25.0, 34.0, 16.0, 22.0, 34.0, 20.0, 50.0, 44.0, 38.0, 46.0, 52.0, 20.0, 32.0], \"xaxis\": \"x2\", \"y\": [0.33396714643252134, 0.5044440900554997, 0.8874896900044845, 0.4686759077780351, 0.23831547366416572, 0.571181601185031, 0.7785327680196316, 0.7290551099174598, 0.9581131370131553, 0.6801000322064107, 0.413367674560271, 0.6667140739211237, 0.9108229754863395, 0.9275086157065797, 0.9186958597750785, 0.7191871442695774, 0.8184457509658746, 0.8597940676688322, 0.7947045908306632, 0.8244149680645384, 0.42771531534877594, 0.5315376696882942, 0.7136291946100958, 0.5510697799054304, 0.6393262665313312, 0.9016582766249417, 0.8560880110261746, 0.8947361144883382, 0.9102326114023062, 0.840723585394272, 0.9264645566705582, 0.5105903360131552, 0.752648770317166, 0.5855954083225455, 0.8989214048388485, 0.5190750352404293, 0.9560713253502463, 0.7273157243430202, 0.9279672131348602, 0.640103147954212, 0.9158977434209615, 0.9035955072010529, 0.7140955379655831, 0.233508355491505, 0.7280578325574358, 0.8810827811902006, 0.3966129217085586, 0.15541760955422754, 0.5851621750323275, 0.9046111951917862, 0.4177213302712193, 0.7993763114768937, 0.6978409661933959, 0.6473373667551029, 0.770784382977056, 0.6500641275496193, 0.548949563093737, 0.9803199442553986, 0.6150775052067382, 0.391333092160729, 0.6966682278280982, 0.9426748402861506, 0.9170092977635526, 0.844625652038695, 0.5621782696252592, 0.8935808323282117, 0.6792214086077275, 0.6719996755401956, 0.5252591274442797, 0.7277045758687855, 0.4685752957996948, 0.8616549355667619, 0.347491516391863, 0.8224130863808733, 0.5340790568488665, 0.6711667658766297, 0.5277539611022016, 0.7226430813715845, 0.8140972745487615, 0.3280236940194876, 0.9543080196225542, 0.7752655593026647, 0.9223925066666061, 0.8588031784191832, 0.6345107008491314, 0.9393010047953068, 0.7897067132703484, 0.8608062836413887, 0.8367885032124018, 0.38555642305179116, 0.8611944449682004, 0.9172341012895443, 0.9206892306522243, 0.9500505925695213, 0.537798347971205, 0.9173482789702866, 0.44454351342386716, 0.8909704850569525, 0.7351932580165473, 0.6818328744935735, 0.7981559962965634, 0.7626532952948841, 0.807353254900461, 0.964411205143099, 0.4685752957996948, 0.6986526320119215, 0.1956969407137045, 0.9233481403380283, 0.8218375601976645, 0.8536269727611236, 0.5637680470866036, 0.42267134533232753, 0.93003590801509, 0.9364808605729722, 0.8816060831574614, 0.9663102962713933, 0.8345570787709832, 0.4997893986747249, 0.7921603237806832, 0.5586815647381762, 0.8622246464681924, 0.9828719612298703, 0.909295720392338, 0.9476267884443668, 0.5395521774612226, 0.901360886913609, 0.39410444510430487, 0.9262213132200262, 0.6627387433216217, 0.9629433821448677, 0.9614311452267452, 0.9802968012486629, 0.933760787013923, 0.34432718187202205, 0.63596173557573, 0.624364378916488, 0.7417789548241253, 0.7300918276682445, 0.6968315453320488, 0.7840233885688647, 0.8958841271622066, 0.5417426694559925, 0.7102579146160282, 0.6004345411549624, 0.515920701757342, 0.7587882454650442, 0.5029588531082266, 0.6887596776945688, 0.8642849605932809, 0.6469572639767995, 0.8103639651534781, 0.939764354405301, 0.694136577696587, 0.6593725303534554, 0.9646797005081557, 0.7979900311745153, 0.792123904710467, 0.8869579700149332, 0.7351250317969437, 0.5332560471205093, 0.9406873315653421, 0.39362685027924615, 0.9466602521798594, 0.8394325033041952, 0.6633442657978572, 0.8126408700417265, 0.7332457619716184, 0.08024070404520958, 0.8667774471450977, 0.6466814331404849, 0.912366876100516, 0.656670904734599, 0.8701678467707724, 0.8875925797813499, 0.9658725076002231, 0.7668332861852056, 0.8604440887473094, 0.934384507524058, 0.9605946056867319, 0.951253157591183, 0.5749289095213865, 0.6279243005170476, 0.7937202818717513, 0.7665301650725991, 0.700127941221274, 0.8531107444728586, 0.7947045908306632, 0.8870566665876504, 0.5476228787844645, 0.8410401833568673, 0.8736671065238262, 0.6519898659949606, 0.936943112068646, 0.9077719201719568, 0.8071889556778997, 0.8815615400732472, 0.8935313268029127, 0.8782891297971865, 0.5029588531082266, 0.5797201450332624, 0.9416775458320723, 0.5958140198486584, 0.2485157288688957, 0.932021424688801, 0.8531502837407814, 0.6344194678828672, 0.632587077283238, 0.9121448358615357, 0.5776545535910985, 0.9052765174806566, 0.8580390107418799, 0.8998644401112552, 0.6784536879503494, 0.9458342431661766, 0.21387363850783603, 0.9530348339880965, 0.7307391114165022, 0.7187682731289255, 0.6905635603269331, 0.9569274903702625, 0.9287384091375525, 0.3856984054091925, 0.504413920551941, 0.5389739198483336, 0.5921068831639978, 0.10702848140489757, 0.8772993497727819, 0.6361944011057532, 0.8952999713010865, 0.7069578609115064, 0.10632960186243966, 0.6465592619811017, 0.9116333268133815, 0.9210441535829985, 0.9483358221641291, 0.5800224234700003, 0.896951343689222, 0.8958659323404018, 0.8896861436466836, 0.7763142135369961, 0.778627444633172, 0.9274605647284293, 0.9167924025380936, 0.6422094408272838, 0.6363725079258666, 0.8694129796739031, 0.5693182102579236, 0.5315376696882942, 0.6814536952243052, 0.30089534057709466, 0.6689448970920832, 0.6419522618821227, 0.6500641275496193, 0.8221968069187356, 0.9285763346020383, 0.8495153837633861, 0.7135666997345446, 0.8850789772017983, 0.9128367188568884, 0.8709442503982084, 0.44714680104169846, 0.7147831401969469, 0.6814536952243052, 0.5823319261018008, 0.7718122970862826, 0.8925058444773368, 0.9249991097277733, 0.7849066379312727, 0.5120166815330335, 0.7863291630268572, 0.8171821177205619, 0.8878235148823457, 0.9813953955585096, 0.5009899161211654, 0.6787020040856314, 0.2747106808400709, 0.6998114428322438, 0.7191783799678735, 0.7566715075843347, 0.7741630673610131, 0.692871858980435, 0.8706970297938403, 0.9226518689226377, 0.619213859232465, 0.9620625840847012, 0.8161066853745392, 0.7984578805051198, 0.8987836568806694, 0.27900511725120763, 0.747868261422589, 0.8013372150606806, 0.4430395412241901, 0.8082746512504794, 0.9248395818955686, 0.8132668978866627, 0.7926355964369082, 0.7243101498981422, 0.8251498778038484, 0.865753667016409, 0.8784859927081519, 0.9613966942665844, 0.8380103992838959, 0.9376908870460701, 0.8505645904112248, 0.5317253080143199, 0.8756470416862959, 0.8823120896825394, 0.8920529250761863, 0.9565288857220365, 0.92576324319171, 0.8397457208604353, 0.8008835764985612, 0.7620555647282774, 0.6333567796033132, 0.8986985644274655, 0.8289197139212982, 0.38568054861828666, 0.4358764146033148, 0.7013568331933456, 0.5524769805317635, 0.8654015550049637, 0.9625385348003681, 0.4997035751430624, 0.5940434106189647, 0.29640429037896177, 0.9370396801623051, 0.7496358493500708, 0.8521916566704996, 0.7519935213994349, 0.8956127660014477, 0.7563308848917781, 0.5425355780301907, 0.1652985164032473, 0.5777375433929663, 0.5926841497777402, 0.5247451599628447, 0.6215406511606532, 0.646742228322253, 0.5236567091352762, 0.8105889943537302, 0.7614647275399787, 0.7272264480694343, 0.44438282424164377, 0.8051848688934031, 0.253979247575754, 0.8737269176380216, 0.7884186533408385, 0.5226162157005312, 0.7776146375974927, 0.8021344726910251, 0.6794204065079696, 0.8398669626756513, 0.3743394998756179, 0.6593725303534554, 0.41008410759983227, 0.8726624594592295, 0.31336232876890546, 0.6187135046228962, 0.9208146539756937, 0.8948907807194619, 0.9475948217130945, 0.7098971478357265, 0.41970311630379203, 0.5524505095188592, 0.6689295490636696, 0.39534528644804523, 0.6686700461744643, 0.6608417181144597, 0.6289006219381473, 0.8112353209803558, 0.9675531845963172, 0.3468688843876404, 0.8171815196180959, 0.9315945487332388, 0.7612383340144859, 0.43979370974717685, 0.9452166580978265, 0.810349906376065, 0.4979189466877109, 0.9054024939516333, 0.7506263221664519, 0.8595966107872783, 0.9041757536760852, 0.5120166815330335, 0.9246344940597735, 0.622364539475366, 0.7975959936185795, 0.9376528402833735, 0.8270495791839716, 0.7463426393970082, 0.8508295060861325, 0.5277539611022016, 0.7926521549058593, 0.8343380415579561, 0.7973631232158779, 0.5423298306356671, 0.6253812669856891, 0.9342151247863544, 0.9064095870896521, 0.8428584418618921, 0.5680191878381406, 0.8230633503438987, 0.857993972512287, 0.8312116035859974, 0.8886868130574391, 0.5695902702544526, 0.8750573328895943, 0.47134086624147714, 0.6082670858563528, 0.8571520978358925, 0.7006810412396262, 0.6001343818465046, 0.8680196363335714, 0.7833148206731655, 0.835330250744176, 0.6883000602161935, 0.4297997702781997, 0.7132181587745201, 0.941909753873568, 0.9298379484442667, 0.8950633078112005, 0.9652574497835966, 0.8593048115498744, 0.23022113319019433, 0.5548683876071567, 0.8789570823277312, 0.7176343272433334, 0.7135972690872326, 0.900955402304434, 0.89110615578316, 0.8021344726910251, 0.36734125225010755, 0.9233813125795639, 0.9269988231022361, 0.6021478506882372, 0.27064660283581765, 0.7595966254948197, 0.5317253080143199, 0.9626288904553877, 0.518871521713375, 0.4244151934213653, 0.8784852709235653, 0.667697582798242, 0.6791650855490978, 0.8659372985570389, 0.5217980090164113, 0.9757802673562255, 0.20769640873195563, 0.6900575067285889, 0.15051833553221247, 0.8476988333501053, 0.12043274000614122, 0.6546311715671466, 0.412102187638673, 0.6339696776630096, 0.6925917751558638, 0.8074446941396305, 0.8417042066658985, 0.4702054036006336, 0.8107456318417504, 0.934253622333564, 0.9671353887875448, 0.3776875782453083, 0.5133306968464912, 0.8279918435672958, 0.7295730380004212, 0.8398957027397556, 0.7470826509089123, 0.7722124156410631, 0.3944809481034696, 0.5801047158883857, 0.7134138458261836, 0.8265590446981121, 0.5836238058504062, 0.7538957359152121, 0.9708936701567454, 0.41507295289487073, 0.9039211350062085, 0.5109703825452502, 0.8880660412534, 0.6332514250278477, 0.703270618172154, 0.863031725372896, 0.9601349291832292, 0.5845797646527732, 0.8357575010967041, 0.9584406458449958, 0.8733333206292072, 0.4740801794177068, 0.5787650908025566, 0.38525623454815555, 0.5715075300165849, 0.951253157591183, 0.831291834366621, 0.6482062646591596, 0.5447536045265621, 0.8456825404777587, 0.5358725178581014, 0.8893400405584444, 0.5955893395860203, 0.9408369636189147, 0.7580589814818564, 0.4244151934213653, 0.7636885291754726, 0.9532052815091139, 0.6686700461744643, 0.39683939049776734, 0.8309978518015588, 0.06774730328187532, 0.8934061610794648, 0.9459413258233057, 0.8507977517004935, 0.9694554821790147, 0.8640493534313302, 0.8409166048571896, 0.9059760843724536, 0.7278052027863667, 0.8952246802917138, 0.39534528644804523, 0.9558702864115934, 0.9178754126151818, 0.7504628435478695, 0.7568870052952757, 0.32046258648166903, 0.9712495894387816, 0.7125870341029702, 0.8286889773580812, 0.929575727770858, 0.8422483936479932, 0.60065365322741, 0.5775074082600717, 0.7505976846167132, 0.5317253080143199, 0.9590110623565244, 0.9651712957082627, 0.7333643603414158, 0.7757825668725274, 0.8928390517037824, 0.2578168736401774, 0.5355488836719776, 0.8408692583280314, 0.7849780542174357, 0.8711681462620556, 0.8447990405440073, 0.9571933326515756, 0.9307123551507692, 0.6421242495412457, 0.9239207054420927, 0.9336219461922934, 0.4244151934213653, 0.5673643045526261, 0.8301442064454496, 0.528471943574542, 0.8835542071774324, 0.8820947700128993, 0.4561713647735051, 0.584381944856391, 0.9493936477483658, 0.7816316980556022, 0.7770145472448273, 0.8495153837633861, 0.8318035560268552, 0.5220388622338656, 0.8589980209217414, 0.21216021099657945, 0.8782303617207965, 0.901850575196968, 0.7683760396387002, 0.9559989503713009, 0.938411491366706, 0.7225398931917507, 0.5918361617892179, 0.8596378534897678, 0.8816239240572568, 0.9296844522785247, 0.8299758417251202, 0.7538846798551382, 0.931253582726863, 0.6902425303942638, 0.9299571155275668, 0.35461708236434614, 0.6119587629530028, 0.8979450471026776, 0.8782891297971865, 0.6144930729026484, 0.5601837238662909, 0.4230258756549153, 0.5115702372514986, 0.6133200318312215, 0.8287048127179734, 0.42887934024879554, 0.5543929044930882, 0.5414149972460248, 0.7453725251924848, 0.6522898344923613, 0.6445138145159856, 0.9212190995841192, 0.6991293681294938, 0.9188224881967051, 0.9444881948020799, 0.8399825546316605, 0.6440269003431431, 0.45260210695563535, 0.6678228102737954, 0.8535669746933884, 0.23469888428232324, 0.7581156815660375, 0.8329520097124233, 0.5886389680190937, 0.4250130050586104, 0.290761161529129, 0.9065968169685268, 0.39757013049667705, 0.9584529405260903, 0.24804178200132845, 0.8400605958344816, 0.9562762484868867, 0.5923100188758571, 0.5355488836719776, 0.6866862751474886, 0.753715093249364, 0.9302702282582556, 0.8405005145861136, 0.7758456574858743, 0.8270123797965384, 0.9270997487744173, 0.8779999285967196, 0.6350604679157676, 0.9057987369792326, 0.9732730617650076, 0.28007269673131574, 0.5393237551960537, 0.9509318156255189, 0.8055358405733448, 0.8512314640165554, 0.6752183046546253, 0.9766791413071304, 0.26893819095773785, 0.5105552073939665, 0.7964242570425004, 0.9159462749375985, 0.46312559485344046, 0.7889853219989779, 0.5331772070153998, 0.6250130361556073, 0.5340700079782073, 0.8981158701031157, 0.8424802355113449], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [39.0, 33.0, 45.0, 5.0, 36.0, 48.0, 25.0, 4.0, 10.0, 6.0, 22.0, 32.0, 39.0, 52.0, 30.0, 32.0, 35.0, 12.0, 9.0, 10.0, 15.0, 49.0, 31.0, 65.0, 31.0, 23.0, 35.0, 28.0, 11.0, 19.0, 51.0, 48.0, 12.0, 11.0, 24.0, 57.0, 35.0, 11.0, 27.0, 27.0, 19.0, 34.0, 44.0, 40.0, 10.0, 39.0, 16.0, 9.0, 36.0, 10.0, 58.0, 33.0, 26.0, 5.0, 9.0, 23.0, 13.0, 10.0, 21.0, 57.0, 10.0, 33.0, 45.0, 10.0, 13.0, 4.0, 16.0, 11.0, 8.0, 17.0, 6.0, 47.0, 69.0, 16.0, 36.0, 31.0, 45.0, 5.0, 13.0, 32.0, 40.0, 10.0, 45.0, 15.0, 34.0, 10.0, 37.0, 66.0, 81.0, 17.0, 67.0, 15.0, 6.0, 45.0, 40.0, 5.0, 40.0, 51.0, 26.0, 67.0, 20.0, 20.0, 32.0, 13.0, 11.0, 4.0, 27.0, 15.0, 16.0, 44.0, 15.0, 6.0, 18.0, 24.0, 12.0, 19.5, 35.0, 47.0, 52.0, 16.0, 22.0, 39.0, 25.0, 21.0, 12.0, 27.0, 7.0, 15.0, 12.0, 46.0, 6.0, 62.0, 45.0, 14.0, 31.0, 66.0, 6.0, 5.0, 17.0, 9.0, 6.0, 34.0, 38.0, 7.0, 21.0, 31.0, 21.0, 5.0, 42.0, 54.0, 46.0, 46.0, 29.0, 53.0, 24.0, 17.0, 54.0, 52.0, 36.0, 37.0, 15.0, 27.0, 24.0, 44.0, 6.0, 23.0, 23.0, 15.0, 30.0, 41.0, 16.0, 23.0, 12.0, 62.0, 46.0, 40.0, 8.0, 57.0, 54.0, 55.0, 14.0, 64.0, 12.0, 19.0, 42.0, 31.0, 60.0, 16.0, 27.0, 45.0, 16.0, 14.0, 67.0, 12.0, 70.0, 7.0, 20.0, 34.0, 48.0, 23.0, 5.0, 54.0, 37.0, 81.0, 3.0, 68.0, 50.0, 3.0, 26.0, 58.0, 30.0, 29.0, 18.0, 31.0, 61.0, 22.0, 66.0, 46.0, 36.0, 15.0, 40.0, 54.0, 22.0, 61.0, 47.0, 18.0, 16.0, 28.0, 18.0, 32.0, 36.0, 24.0, 44.0, 34.0, 16.0, 35.0, 23.0, 40.0, 45.0, 31.0, 28.0, 5.0, 21.0, 64.0, 20.0, 34.0, 18.0, 26.0, 59.0, 20.0, 15.0, 61.0, 14.0, 51.0, 8.0, 43.0, 64.0, 50.5, 22.0, 20.0, 9.0, 17.0, 54.0, 54.0, 11.0, 28.0, 11.0, 12.0, 4.0, 52.0, 20.0, 12.0, 52.0, 25.0, 18.0, 8.0, 67.0, 16.0, 17.0, 44.0, 45.0, 48.0, 30.0, 72.0, 52.0, 63.0, 16.0, 17.0, 6.0, 34.0, 45.0, 33.0, 45.0, 15.0, 30.0, 12.0, 25.0, 35.0, 39.0, 5.0, 39.0, 15.0, 58.0, 64.0, 68.0, 9.0, 5.0, 21.0, 32.0, 47.0, 24.0, 21.0, 7.0, 39.0, 19.0, 56.0, 40.0, 48.0, 26.0, 26.0, 10.0, 3.0, 23.0, 43.0, 4.0, 37.0, 36.0, 3.0, 54.0, 69.0, 5.0, 32.0, 32.0, 59.0, 7.0, 33.0, 43.0, 25.0, 44.0, 18.0, 51.0, 26.0, 29.0, 11.0, 5.0, 7.0, 15.0, 39.0, 44.0, 24.0, 16.0, 13.0], \"xaxis\": \"x2\", \"y\": [0.8142007211296887, 0.07257977436397642, 0.7430932382113554, 0.8214862427787604, 0.5698848321031316, 0.6048119589659149, 0.6466669219762841, 0.14510080060429495, 0.2250304680670007, 0.28492472637839966, 0.42061632734231896, 0.8281252124183194, 0.49622399336621903, 0.3482895521074759, 0.4678833354511545, 0.5708968386647719, 0.37048677721847617, 0.553632248395139, 0.8702137350251022, 0.42186952587750404, 0.8696774950675754, 0.5410576963494411, 0.3971326977900686, 0.3275001196198921, 0.9448289227093116, 0.7109941475090589, 0.41925580570138304, 0.3675472469853882, 0.6721911818800557, 0.5562207270314473, 0.5262426608517637, 0.3244609607385458, 0.15056615442564347, 0.15676979724311627, 0.6037730696030339, 0.6342511279653397, 0.021947035536558718, 0.32429164429335744, 0.5678746850743716, 0.3571680467137555, 0.7755534309390314, 0.3240287891037917, 0.699424662214302, 0.5151532452376618, 0.7564675819717819, 0.38343591026479057, 0.19811005648518398, 0.3168419703358067, 0.5315947262677626, 0.9269044449273315, 0.8260225289794664, 0.451791899378283, 0.830516920403184, 0.47128602930186, 0.19027823806377472, 0.5181346713949518, 0.29552777318700446, 0.45414400334446664, 0.39329840463575844, 0.42327932510626076, 0.45838907164509224, 0.2233864252642039, 0.3628419195926303, 0.6709353200988277, 0.46058046365566996, 0.25551237833043455, 0.7234147543269824, 0.1481282262733752, 0.314935793994079, 0.20050531530561894, 0.37453315488553635, 0.701015529968035, 0.6343341418527783, 0.1739320900588749, 0.734996253073231, 0.8172229478314255, 0.3598554146739685, 0.7121055211356295, 0.2620604909731644, 0.3421138035730516, 0.6951268813066005, 0.35208221297891723, 0.452099210446082, 0.18907620085798427, 0.5444201651108793, 0.6484058972837882, 0.3258186925596978, 0.5963383680780668, 0.6202666247822538, 0.576738593946626, 0.5054992484109841, 0.2972245631729925, 0.6844333356791464, 0.42629475072919953, 0.4405153833121037, 0.01207867704715336, 0.7609288944606691, 0.23951123982998349, 0.09310514674080905, 0.5084920166510624, 0.33067609257366243, 0.36481899584296196, 0.5708968386647719, 0.3194802059637459, 0.14207297841267416, 0.5776897120055972, 0.2026163425795633, 0.37909000048748537, 0.38206764842015895, 0.41324683104354176, 0.17826143731067332, 0.42339414872454434, 0.39148091864802853, 0.3511350413575442, 0.8053393751847749, 0.5937005322868365, 0.6849942580153355, 0.38930033076762494, 0.5168500865319015, 0.5699073288866824, 0.5376087249833421, 0.8185832461647057, 0.25950508036415604, 0.20394483716883388, 0.3303044530853749, 0.2528102968078532, 0.8477719856767125, 0.5217124250004609, 0.3303044530853749, 0.5382885532339231, 0.9625763866028243, 0.6536174904341296, 0.42629475072919953, 0.6458781618432388, 0.46574001023909845, 0.37268733756108086, 0.8180085473348132, 0.35493594975273335, 0.2423640089427935, 0.3636330633241046, 0.6421622311157122, 0.5444201651108793, 0.7396308412796291, 0.9036153464846048, 0.21101569987323432, 0.6004024464464508, 0.7595861882737439, 0.486549602332862, 0.2379839758891197, 0.5147825233229498, 0.2065932277190248, 0.4342628292980428, 0.5940848250235929, 0.4857193175270624, 0.5332610244722983, 0.5402196969638672, 0.8578846895389459, 0.5290225674595067, 0.6074669506688956, 0.1847839155105034, 0.3581391437324269, 0.4304380754474639, 0.8410120374942113, 0.5810086483513661, 0.19026233744636453, 0.7223494520380469, 0.8589928738613049, 0.8374625942163022, 0.781203852328267, 0.73983195178881, 0.41156537259256004, 0.7482873396984137, 0.44431713201158524, 0.7113673874393347, 0.49869552495399233, 0.7627102864663872, 0.37193390769028617, 0.37187810520956766, 0.3773291605703562, 0.8719651627687759, 0.6218762459828849, 0.3781393537983126, 0.553632248395139, 0.47624084907999176, 0.774399353278846, 0.5840424935194366, 0.5601025471409736, 0.6186690618327106, 0.620611700356168, 0.5755798886129706, 0.15047650536569443, 0.5530049338021776, 0.6597439619439023, 0.8300222117931148, 0.3490158529243493, 0.4410646109528086, 0.5067909967309752, 0.5851482063434866, 0.7149827463187939, 0.4849259975950144, 0.2094210588097294, 0.33399024531412796, 0.4083143545243069, 0.7497022835596558, 0.7817929239213606, 0.7637421953724776, 0.3825655414920891, 0.6611482494098961, 0.19022241257108333, 0.44972084577511023, 0.5476732603321269, 0.4831274653996314, 0.5077048340566679, 0.7289504589448288, 0.4379810490617926, 0.8017221455714771, 0.6434673631716396, 0.5059779734745421, 0.6065367192264559, 0.650368705032214, 0.34567471266024347, 0.39561589000187136, 0.3427787545601037, 0.4676404271158623, 0.5332283386400669, 0.4519108142444285, 0.40662831629925006, 0.42305576187259053, 0.22032895172816622, 0.5278715769330472, 0.43679486629948455, 0.743933429392776, 0.5269515041023835, 0.5008800654866953, 0.214168174561682, 0.44879088851457377, 0.683485355417811, 0.807753104897186, 0.42629475072919953, 0.8502951424821861, 0.17421175568219957, 0.25491371883486935, 0.7595861882737439, 0.6571724132942184, 0.7813188949129265, 0.5626906653340306, 0.8674288259883418, 0.6600514650598344, 0.4827749661719035, 0.5456147119159479, 0.39827550056677263, 0.27323823737433794, 0.695896529362927, 0.5048820477254727, 0.5422349097465021, 0.5610936746718964, 0.6571724132942184, 0.3088751107498249, 0.45428761266464013, 0.6604471727860799, 0.43371621376298963, 0.6171893197168647, 0.8100511550343341, 0.8100511550343341, 0.605832578461134, 0.5526475584669951, 0.4275055171336787, 0.8734720021260204, 0.8508295378350301, 0.5807723706867254, 0.8272749548927728, 0.2670652478909882, 0.7020144194675465, 0.4615566916191992, 0.7055847950248242, 0.43389869234556755, 0.6071692164257629, 0.3496825637352313, 0.23676491619791426, 0.7057755976874825, 0.15539001443149586, 0.6187538615870153, 0.8735882828904331, 0.30049486749739024, 0.23191705420611952, 0.8913917397916864, 0.4977157214618499, 0.16961113509580228, 0.8485494795219795, 0.4760032757956232, 0.5053843099270294, 0.2676015269871764, 0.3627664421236291, 0.15146266807038725, 0.7898179638281774, 0.6145296307645981, 0.3790380236797623, 0.3003532640340299, 0.6086112016774773, 0.39906793889171593, 0.8185832461647057, 0.6715802865662828, 0.8260225289794664, 0.6056902064850618, 0.400132762133902, 0.39471961640683584, 0.6449859309106076, 0.5637152910565628, 0.39949420960438964, 0.5490401551410112, 0.4398875418860128, 0.30916577334906253, 0.7093303227687476, 0.4562508424819209, 0.40444044759428516, 0.5773483646962835, 0.447777692034652, 0.4961542215384683, 0.32474312180562226, 0.21192693199409943, 0.9056903490933487, 0.5013816399998683, 0.758876109553896, 0.6364928148646596, 0.2952804752502578, 0.4748951900520853, 0.43679486629948455, 0.5479962315186364, 0.4728142838839701, 0.6343341418527783, 0.12248807650217919, 0.5052525886146573, 0.8281252124183194, 0.8930081609652758, 0.36283726088930296, 0.8098196742550625, 0.656477404357746, 0.193885049884708, 0.5269515041023835, 0.49858469647139786, 0.32780472036158087, 0.24927512797396847, 0.6148718578314069, 0.10691527318901187, 0.136775438340409, 0.8489192718114075, 0.2600203086082801, 0.8142007211296887, 0.5269515041023835, 0.7966615933629455, 0.5633234794197017, 0.767479452333631], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"free.sulfur.dioxide\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"free.sulfur.dioxide\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}}, {\"id\": \"free.sulfur.dioxide_bad\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (ref)\", \"type\": \"scatter\", \"x\": [76.0, 19.0, 15.0, 32.0, 18.0, 17.0, 34.0, 9.0, 36.0, 28.0, 20.0, 15.0, 46.0, 8.0, 30.0, 61.0, 24.0, 7.0, 23.0, 3.0, 50.0, 47.0, 5.0, 34.0, 40.0, 15.0, 28.0, 22.0, 44.0, 27.0, 7.0, 25.0, 26.0, 60.0, 52.0, 10.0, 24.0, 58.0, 4.0, 54.0, 14.0, 10.0, 21.0, 24.0, 20.0, 23.0, 25.0, 39.0, 18.0, 22.0, 6.0, 26.0, 41.0, 5.0, 55.0, 42.0, 41.0, 39.0, 5.0, 29.0, 50.0, 47.0, 8.0, 55.0, 23.0, 36.0, 31.0, 32.0, 15.0, 13.0, 52.0, 3.0, 77.0, 20.0, 21.0, 55.0, 64.0, 7.0, 30.0, 15.0, 23.0, 16.0, 65.0, 9.0, 28.0, 11.0, 38.0, 5.0, 26.0, 17.0, 3.0, 55.0, 14.0, 77.0, 53.0, 53.0, 27.0, 39.0, 49.0, 31.0, 68.0, 23.0, 23.0, 44.0, 26.0, 18.0, 37.0, 6.0, 12.0, 25.0, 18.0, 16.0, 3.0, 22.0, 27.0, 18.0, 66.0, 20.0, 21.0, 12.0, 26.0, 13.0, 29.0, 22.0, 52.0, 68.0, 110.0, 9.0, 8.0, 48.0, 5.0, 11.0, 62.0, 61.0, 36.0, 47.0, 13.0, 36.0, 36.0, 33.0, 16.0, 74.0, 3.0, 21.0, 40.0, 61.0, 40.0, 56.0, 25.0, 22.0, 23.0, 17.0, 38.0, 7.0, 36.0, 10.0, 33.0, 53.0, 15.0, 10.0, 14.0, 5.0, 26.0, 34.0, 7.0, 8.0, 44.0, 36.0, 43.0, 54.0, 52.0, 13.0, 35.0, 22.0, 18.0, 6.0, 7.0, 21.0, 15.0, 17.0, 56.0, 3.0, 36.0, 14.0, 64.0, 48.0, 34.0, 5.0, 38.0, 45.0, 16.0, 19.0, 57.0, 8.0, 35.0, 6.0, 20.0, 30.5, 67.0, 44.0, 48.0, 48.0, 48.0, 15.0, 27.0, 37.0, 51.0, 11.0, 5.0, 3.0, 33.0, 48.0, 29.0, 36.0, 27.0, 26.0, 44.0, 9.0, 24.0, 5.0, 8.0, 52.0, 62.0, 29.0, 21.0, 44.0, 27.0, 40.0, 21.0, 3.0, 18.0, 16.0, 17.0, 19.0, 35.0, 33.0, 67.0, 7.0, 40.5, 66.0, 20.0, 43.0, 55.0, 61.0, 52.0, 20.0, 38.0, 70.0, 13.0, 9.0, 35.0, 32.0, 26.0, 10.0, 34.0, 54.0, 20.0, 6.0, 39.0, 6.0, 46.0, 49.0, 59.0, 21.0, 28.0, 53.0, 38.0, 25.0, 23.0, 29.0, 128.0, 22.0, 14.0, 24.0, 61.0, 61.0, 34.0, 66.0, 15.0, 11.0, 6.0, 14.0, 12.0, 16.0, 9.0, 51.0, 21.0, 57.0, 17.0, 54.0, 8.0, 17.0, 146.5, 6.0, 16.0, 7.0, 29.0, 58.0, 60.0, 15.0, 17.0, 22.0, 26.0, 53.0, 18.0, 11.0, 33.0, 11.0, 6.0, 13.0, 64.0, 49.0, 14.0, 52.0, 47.0, 22.0, 52.5, 24.0, 58.0, 9.0, 7.0, 62.0, 15.0, 4.0, 57.0, 32.0, 22.0, 58.0, 12.0, 61.0, 48.0, 23.0, 10.0, 81.0, 23.0, 6.0, 59.0, 5.0, 30.0, 67.0, 18.0, 48.0, 31.0, 12.0, 46.0, 13.0, 28.0, 47.0, 9.0, 50.0, 21.0, 10.0, 29.0, 17.0, 16.0], \"xaxis\": \"x\", \"y\": [0.7197707895473677, 0.05448058807241418, 0.5021256787650443, 0.4710854375480472, 0.7156076129280222, 0.7966690429773311, 0.7265425252145667, 0.16771266951545494, 0.610944103187451, 0.6324527530146118, 0.42180662537268765, 0.2598044700255929, 0.5503032830239416, 0.5632112185661304, 0.6840604465833231, 0.6224375641140001, 0.8071781895370533, 0.9515482366939344, 0.3994071349416132, 0.9677746238863042, 0.572587586261062, 0.7602674855798478, 0.861098734498427, 0.1386074727873, 0.6703360831713621, 0.8064003460928679, 0.3172728283240366, 0.8039094494444462, 0.9186426431335688, 0.6026275969807151, 0.8609701260317718, 0.3485833566260712, 0.3005246278528939, 0.2859113263741919, 0.4978204971029292, 0.5125675444128744, 0.4268860326359044, 0.11791793574572085, 0.440027850275134, 0.4938434408506086, 0.4933189622152446, 0.166194347192407, 0.30200278364192557, 0.6822425768461728, 0.8693180940701344, 0.24112389044610405, 0.43189370387303117, 0.284455178085937, 0.23793737479647703, 0.5535561322468214, 0.7900402576908969, 0.47373775892899717, 0.6055733033081183, 0.7462675017011632, 0.32245623572553406, 0.7612367841042231, 0.36308410170653527, 0.6103993963703384, 0.3965676277125745, 0.2230008284200371, 0.8480025164595866, 0.43585875500482685, 0.24095331994381775, 0.4030652094068704, 0.8951637220162157, 0.2782175630406618, 0.7337660836226194, 0.8352762102164887, 0.6223987562306759, 0.2928263700360406, 0.6563137004068428, 0.16155652477357085, 0.6364666355122575, 0.2186811050870735, 0.27206300237801306, 0.4358901152617537, 0.6136035252376228, 0.07900866299327158, 0.8522855318359817, 0.11906253414448076, 0.3466831105240652, 0.11265227152414181, 0.6302693732121377, 0.7168097665217413, 0.4796298258249143, 0.4476252306691143, 0.3612478268219491, 0.611861930499026, 0.15121036728507153, 0.5363393546692182, 0.16155652477357085, 0.441733396330222, 0.7834276811132227, 0.6364666355122575, 0.44873286860252337, 0.4948960601400133, 0.4172084246960842, 0.5055831714989107, 0.5269082808529498, 0.3737404408311804, 0.4491757516278906, 0.5266720849021, 0.2882430633103308, 0.6066213483726142, 0.83534933450756, 0.2509605867776752, 0.230738949997912, 0.25680675940048736, 0.6858999083789018, 0.27626495444752697, 0.35158671089680515, 0.311480105980391, 0.5950329577300569, 0.4196263877039489, 0.3672198477254309, 0.5488429300958864, 0.6273126624389191, 0.0990306898864649, 0.935036100419004, 0.5556828679884147, 0.6003916802566726, 0.1337843055401957, 0.6898191889393818, 0.46604488826349566, 0.6668872608045229, 0.5998672378660981, 0.14712454771937833, 0.8558065212045691, 0.883276495704891, 0.5544329747085402, 0.38398791005853006, 0.8623310715459079, 0.4482795971615686, 0.4767821080964978, 0.6451659669426603, 0.5099786295438409, 0.11454219273407718, 0.5691587732433696, 0.2398813672346335, 0.8592796956842923, 0.38133093816728936, 0.4754945767078651, 0.2673740541283356, 0.43092180164799054, 0.5981491184574936, 0.7512253043619477, 0.20474988026063612, 0.12337786436138054, 0.6965484670033051, 0.4642254518352117, 0.29034758521725457, 0.7912282271603185, 0.1364389858241727, 0.5326323768611896, 0.3938848007926149, 0.886984727126295, 0.5955398539691413, 0.3667393936023857, 0.35129461810907203, 0.578130474122496, 0.1952086434691429, 0.6982941690158907, 0.6159300986783536, 0.6650580695700093, 0.8007006003287879, 0.13750802167619447, 0.47121416359091395, 0.5691587732433696, 0.5295784007050042, 0.4938434408506086, 0.4240508430342457, 0.1531205555636086, 0.7965770364050346, 0.4829168465516456, 0.6333246955344933, 0.38682769986244625, 0.5589353890471914, 0.30965836575156913, 0.6133571507425741, 0.5363393546692182, 0.5474540697204298, 0.9680074395956593, 0.29703705077451537, 0.7566858385458134, 0.451244026180727, 0.6224939697452743, 0.9340693900855184, 0.1254375450851024, 0.770680513376406, 0.7273231109206828, 0.410671569380914, 0.19928392436820586, 0.44743622108127745, 0.4991477681643879, 0.5443787589855091, 0.826082779912576, 0.5642536294664222, 0.6762559922350657, 0.39283078357423706, 0.3074847569358159, 0.40732461839200396, 0.5614584986504241, 0.5614584986504241, 0.575628870274347, 0.1938881144566701, 0.6480440770440566, 0.23946299348505806, 0.6110142157087575, 0.32489046344192996, 0.127020290619695, 0.28948900574123104, 0.27970970921902805, 0.5179212029104148, 0.579807192000203, 0.5695619245525361, 0.7471497674522103, 0.6761943115269239, 0.6052803835931642, 0.9048996801452402, 0.632953623191418, 0.7849920634816455, 0.12946409768986655, 0.3899257470968539, 0.37735505673750047, 0.27206300237801306, 0.6356505945299911, 0.9000798247851504, 0.5852448485124296, 0.3537739535016634, 0.8589709040748648, 0.5105041430354158, 0.4760479563081992, 0.3915586115462193, 0.4344526143297297, 0.04825794875232026, 0.25106204840173363, 0.5352062615150248, 0.2084678736174792, 0.5588772074146924, 0.42656597432725707, 0.3395528272139201, 0.5154796814541086, 0.30312695461308037, 0.4684625037801391, 0.13140485141127656, 0.37575572516499556, 0.7087902803012941, 0.22740617784346517, 0.7932370230268412, 0.6977827466507267, 0.8687065743771458, 0.3532210556477622, 0.3005246278528939, 0.8817461779308045, 0.5897758288136841, 0.5117334773877459, 0.2267712913026929, 0.7462523759498982, 0.5055831714989107, 0.6276122794572256, 0.34766968675436505, 0.563322001169588, 0.4035281086421867, 0.44827723495654004, 0.7588644006503809, 0.17560197311170134, 0.2736156405730563, 0.5646478519097824, 0.12788772013874206, 0.8127608550985441, 0.35130933230290007, 0.8842329534318195, 0.5671758377024384, 0.508518787579709, 0.4735654621913231, 0.6614347321502836, 0.7032589073748752, 0.418601168771625, 0.40262233345395115, 0.38045938978299354, 0.6221728234115828, 0.6769388667590319, 0.825791915264051, 0.8036522945246104, 0.5350776523934957, 0.5038683203672731, 0.4187790963850706, 0.3942708224564714, 0.36585282612655, 0.42973128126448334, 0.1395024853671747, 0.36909778672938764, 0.5126700875045708, 0.31128511290513083, 0.5841805470690385, 0.42932394036482613, 0.5168725346003686, 0.9331527243268325, 0.5090935678835011, 0.848083892739094, 0.7288594688776423, 0.23463814542978878, 0.9073343486287574, 0.5445649372592127, 0.8030108083542629, 0.30698149193503155, 0.47724620771884374, 0.49565431290071005, 0.29179072192325783, 0.53941953634433, 0.32642767658125227, 0.5714063949384225, 0.6769388667590319, 0.48314991346809855, 0.3838692085325581, 0.7654355578102645, 0.6807995217458978, 0.7803105409218809, 0.4971816769068883, 0.5662837862370104, 0.32557907866588853, 0.4059739580227363, 0.8621668957327787, 0.4863555612469991, 0.44913520001249685, 0.5044088987161788, 0.018560580499064172, 0.17397747102053363, 0.8203404366189, 0.531551035274026, 0.3951880410340851, 0.6710839680909022, 0.7545393605546251, 0.25029771644034415, 0.31651464458218903, 0.7900402576908969, 0.7649542174153934, 0.6282404390050247, 0.5124469561170844, 0.7501741577575001, 0.3717170374651112, 0.5479204837841629, 0.1799627586960565, 0.8716748635647116, 0.4700369344869263, 0.7044722268129955, 0.7597806244765397, 0.4570971226262448, 0.3688130253756654, 0.5854022956087224, 0.6067015953642416, 0.6092966434658947, 0.5713009051869427, 0.15316343939585397, 0.31191498773739224], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [39.0, 34.0, 26.0, 25.0, 34.0, 20.0, 39.0, 33.0, 24.0, 26.0, 73.0, 4.0, 56.0, 41.5, 41.0, 23.0, 26.0, 6.0, 17.0, 21.0, 72.0, 27.0, 46.0, 30.0, 32.0, 40.0, 25.0, 37.0, 33.0, 29.0, 35.0, 31.0, 30.0, 96.0, 21.0, 44.0, 59.0, 38.0, 19.0, 12.0, 38.0, 18.0, 23.0, 18.0, 41.0, 24.0, 12.0, 24.0, 6.0, 27.0, 45.0, 54.0, 30.0, 44.0, 33.0, 50.0, 12.0, 22.0, 10.0, 50.0, 14.0, 20.0, 42.0, 47.0, 10.0, 6.0, 36.0, 13.0, 28.0, 20.0, 24.0, 19.0, 29.0, 37.5, 12.0, 24.0, 15.0, 26.0, 25.0, 37.0, 60.0, 36.0, 20.0, 28.0, 27.0, 31.0, 12.0, 21.0, 21.0, 7.0, 12.0, 36.0, 39.0, 48.0, 39.0, 24.0, 53.0, 16.0, 28.0, 28.0, 7.0, 35.0, 10.0, 4.0, 11.0, 41.0, 20.0, 27.0, 36.0, 29.0, 41.0, 35.0, 20.0, 19.0, 52.0, 22.0, 12.0, 23.0, 60.0, 24.0, 19.0, 34.0, 49.0, 46.0, 33.0, 13.0, 9.0, 38.0, 38.0, 6.0, 17.0, 33.0, 44.5, 24.0, 20.0, 54.0, 13.0, 15.0, 28.0, 14.0, 36.0, 53.0, 47.0, 43.0, 7.0, 22.0, 17.0, 12.0, 18.0, 34.0, 29.0, 23.0, 28.0, 57.0, 33.0, 42.0, 45.0, 8.0, 23.0, 37.0, 31.0, 17.0, 22.0, 21.0, 25.0, 37.0, 63.0, 29.0, 44.0, 43.0, 7.0, 24.0, 38.0, 30.0, 21.0, 34.0, 17.0, 26.0, 45.0, 16.0, 29.0, 35.0, 7.0, 50.0, 30.0, 33.0, 24.0, 7.0, 50.0, 25.0, 35.0, 3.0, 35.0, 19.0, 24.0, 32.0, 36.0, 59.0, 23.5, 23.0, 20.0, 18.0, 28.0, 38.0, 61.0, 43.0, 8.0, 22.0, 45.0, 29.0, 15.0, 29.0, 29.0, 36.0, 20.0, 16.0, 43.0, 39.0, 53.0, 13.0, 25.0, 41.0, 12.0, 35.0, 17.0, 29.0, 35.0, 47.0, 33.0, 39.0, 40.0, 39.0, 26.0, 52.0, 14.0, 17.0, 43.0, 51.0, 45.0, 49.0, 47.0, 49.0, 46.0, 29.0, 15.0, 47.0, 47.0, 29.0, 43.0, 30.0, 45.0, 48.5, 27.0, 9.0, 17.0, 29.0, 19.0, 35.0, 44.0, 3.0, 57.0, 35.0, 24.0, 51.0, 42.0, 30.0, 17.0, 6.0, 29.0, 18.0, 14.0, 19.0, 7.0, 39.0, 31.0, 50.0, 29.0, 10.0, 3.0, 23.0, 38.0, 49.0, 12.0, 36.0, 26.0, 19.0, 28.0, 78.0, 14.0, 24.0, 16.0, 64.0, 6.0, 45.0, 55.0, 44.0, 16.0, 62.0, 9.0, 27.0, 19.0, 21.0, 24.0, 22.0, 16.0, 24.0, 73.0, 20.0, 42.0, 26.0, 31.0, 38.0, 14.0, 20.0, 21.0, 6.0, 48.0, 41.0, 35.0, 37.0, 45.0, 12.0, 33.0, 49.0, 29.0, 8.0, 26.0, 20.0, 49.0, 27.0, 27.0, 26.0, 6.0, 66.0, 30.0, 38.0, 25.0, 34.0, 28.0, 52.0, 86.0, 14.0, 40.0, 40.0, 18.0, 32.0, 36.0, 7.0, 33.0, 35.0, 59.0, 60.0, 29.0, 20.0, 69.0, 35.0, 32.0, 37.0, 4.0, 31.0, 37.0, 47.0, 25.0, 22.0, 17.0, 28.0, 19.0, 51.0, 11.0, 48.0, 41.0, 17.0, 15.0, 15.0, 19.0, 37.0, 45.0, 17.0, 45.0, 26.0, 13.0, 53.0, 14.0, 53.0, 61.0, 24.0, 55.0, 23.0, 29.0, 29.0, 43.0, 42.0, 36.0, 8.0, 37.0, 18.0, 10.0, 27.0, 58.0, 21.0, 24.0, 8.0, 16.0, 47.0, 14.0, 43.0, 34.0, 17.0, 36.0, 16.0, 29.0, 42.0, 39.0, 15.0, 25.0, 40.0, 45.0, 60.0, 18.0, 15.0, 21.0, 41.0, 60.0, 29.0, 74.0, 40.0, 24.0, 34.0, 27.0, 56.0, 42.0, 14.0, 29.0, 31.0, 35.0, 31.0, 12.0, 32.0, 26.0, 16.0, 19.0, 25.0, 28.0, 20.0, 7.0, 23.0, 66.0, 33.0, 6.0, 36.0, 42.0, 38.0, 15.0, 29.0, 44.0, 7.0, 88.0, 24.0, 26.0, 46.0, 6.0, 29.0, 10.0, 50.0, 53.0, 31.0, 30.0, 63.0, 35.0, 13.0, 17.0, 68.0, 16.0, 35.0, 17.0, 73.0, 17.0, 32.0, 39.0, 21.0, 19.0, 56.0, 37.0, 38.0, 20.0, 8.0, 44.0, 33.0, 24.0, 17.0, 73.0, 23.0, 30.0, 47.0, 7.0, 35.0, 50.0, 47.0, 34.0, 34.0, 59.0, 45.0, 53.0, 55.0, 47.0, 45.0, 46.0, 35.0, 31.0, 17.0, 27.0, 22.0, 32.0, 57.0, 32.0, 12.0, 19.0, 54.0, 24.0, 26.0, 16.0, 30.0, 29.0, 48.0, 14.0, 4.0, 21.0, 30.0, 33.0, 23.0, 10.0, 5.0, 52.0, 20.0, 18.0, 27.0, 52.0, 30.0, 53.0, 24.0, 44.0, 37.0, 38.0, 36.0, 54.0, 30.0, 6.0, 22.0, 28.0, 40.0, 48.0, 41.0, 18.0, 12.0, 33.0, 8.0, 20.0, 14.0, 44.0, 38.0, 36.0, 26.0, 20.0, 24.0, 18.0, 23.0, 23.0, 9.0, 24.0, 61.0, 24.0, 27.0, 13.0, 39.0, 36.0, 11.0, 33.0, 33.0, 44.0, 27.0, 36.0, 34.0, 33.0, 40.0, 24.0, 14.0, 34.0, 38.0, 15.0, 18.0, 20.0, 31.0, 58.0, 37.0, 38.0, 17.0, 23.0, 3.0, 25.0, 42.0, 18.0, 14.0, 54.0, 31.0, 6.0, 26.0, 69.0, 56.0, 48.0, 45.0, 36.0, 24.0, 70.0, 5.0, 34.0, 19.0, 10.0, 37.0, 15.0, 10.0, 53.0, 35.0, 13.0, 14.0, 47.0, 52.0, 38.0, 24.0, 68.0, 22.0, 56.0, 53.0, 39.0, 20.0, 53.0, 12.0, 16.0, 68.0, 46.0, 33.0, 42.0, 17.0, 55.0, 31.0, 40.0], \"xaxis\": \"x\", \"y\": [0.18439386755371057, 0.5750868907731637, 0.1132172353536568, 0.19850047615697952, 0.6950004168934912, 0.41826441672946313, 0.040828937665112974, 0.2145583871630251, 0.09143093017991866, 0.10013996234885614, 0.3658834999306372, 0.587897812361327, 0.23563705889496211, 0.5289998061994394, 0.5981734696485812, 0.5956194363709464, 0.11295199838815062, 0.6349332021584286, 0.09356782907078887, 0.0672754654033908, 0.3541579814831264, 0.11781588709523827, 0.3295981493457443, 0.23443288181779365, 0.13830133810679424, 0.5122546205578999, 0.03626449638205209, 0.32057959349203036, 0.3955164844050859, 0.21320459763992916, 0.08620177311633537, 0.4132497936565127, 0.19514157099220286, 0.028148892894647393, 0.03728071159582558, 0.20213762816504022, 0.39088790332760825, 0.10566618212719892, 0.11466232649727714, 0.09544364959788487, 0.07351553674018241, 0.3657542344632553, 0.05859665738698361, 0.43634835962676355, 0.4827032077898804, 0.516310366273556, 0.6480037931050455, 0.21122004543372697, 0.030344760075157406, 0.22750344576024595, 0.18673438423788624, 0.5460909738859347, 0.0666291073587214, 0.320234954276134, 0.515425573770442, 0.5751179393061847, 0.3262180383913996, 0.12192585741802231, 0.6165939755266235, 0.09365914315081003, 0.44259853952477324, 0.31958523161407537, 0.09228899111547839, 0.22815273642701062, 0.5282447951108347, 0.7777719169155834, 0.13834506443323813, 0.29425092810710396, 0.5300870647699181, 0.031947521718024174, 0.1108646816717751, 0.053339747820140615, 0.14466174791529418, 0.25697560969337485, 0.3383868137798065, 0.30803904997837983, 0.03434255320493995, 0.08689109251212201, 0.46044782253877736, 0.0973761441498977, 0.3449058470623745, 0.024212367984770777, 0.11665042079727428, 0.3333970234137619, 0.1495417879159372, 0.0679784404121434, 0.2360052425084116, 0.39147703437781534, 0.04428683932015287, 0.5381556738404795, 0.4357341587922019, 0.11843845992675284, 0.28107964630818494, 0.06989794698232743, 0.2658605825653322, 0.22408104406272966, 0.15519213452661884, 0.09873339188795927, 0.10739713799337769, 0.4712507279726723, 0.31257930793611366, 0.6259141532505736, 0.1651629894813923, 0.13024327386797574, 0.08242409751896962, 0.55355901104019, 0.11256152515999429, 0.22124325125588817, 0.05838775174278421, 0.6734770756819889, 0.06919042490492266, 0.5773286546676725, 0.5693181878572973, 0.12726917141891614, 0.27983888222674136, 0.15690954109554833, 0.18593824584442387, 0.05432525584274117, 0.33273366741371935, 0.12435295831370408, 0.48112847828662497, 0.2959384652215836, 0.5042039768350125, 0.3749869638443927, 0.7258627386781167, 0.4806866421912115, 0.6234335830956541, 0.4191951896523489, 0.20821728825178332, 0.6343085651912675, 0.27674577061671146, 0.02140654255666985, 0.42849246998341506, 0.1817444030106703, 0.4551538855951942, 0.05087080041524106, 0.516641204200833, 0.6810720245435042, 0.08151744899857294, 0.4475169494323581, 0.03995706953508171, 0.2181819033834006, 0.20372897255157485, 0.24305701296248816, 0.5381556738404795, 0.2358485729609252, 0.051323642447754336, 0.1913631294907303, 0.32154631204965056, 0.31229802093755377, 0.3917329141436472, 0.39462053822053156, 0.3680669306910641, 0.5017894292511481, 0.32120711190509066, 0.0768019282386515, 0.1168769044932052, 0.31545143431826594, 0.12007957373947853, 0.08354361700756141, 0.2180731800932174, 0.7653011157176768, 0.05076221583963347, 0.11739077279846111, 0.3639458403519926, 0.4815918747301601, 0.35998732468747585, 0.457353694020342, 0.5520498791697908, 0.22168281241722143, 0.2132287846887433, 0.4763394582576197, 0.3040153802820409, 0.20749766415549342, 0.3316810644107503, 0.8126297477835096, 0.5749367295182395, 0.27274039590582944, 0.2685808245693546, 0.5172108675362206, 0.33506587713796443, 0.09616672688355288, 0.041108213935392324, 0.10548050716105373, 0.5016695616404938, 0.20022874051447226, 0.14220640128276774, 0.23772630779738468, 0.19606080251004787, 0.2603188495268066, 0.18846597668723208, 0.19827111133563302, 0.261548791893628, 0.4140325207077993, 0.8134796325151183, 0.12265695643958285, 0.6311167068993262, 0.13481820177301163, 0.0932384579037443, 0.14050160114126486, 0.2562249115981724, 0.08547750670655718, 0.08643201081848362, 0.19981675431015722, 0.31390222338706264, 0.06221739913672386, 0.06996303880871468, 0.30029370289300306, 0.4306817897420764, 0.6595343859760441, 0.2839408857911616, 0.20468539219890003, 0.1130196126722065, 0.2360017176902124, 0.13187147729288817, 0.42313120297864704, 0.06964897436687001, 0.1624399718171824, 0.17200815643270417, 0.07333105637055992, 0.2440137653363641, 0.4900110333069776, 0.3085554157386313, 0.03480496731142946, 0.12148031785507996, 0.15002971926037112, 0.5314247042003052, 0.2758453007685677, 0.2151852748992088, 0.2658605825653322, 0.29911225563077193, 0.6594110243744711, 0.49869782335001445, 0.16788254706683048, 0.11816213334465087, 0.08230909248122409, 0.13653212507346946, 0.25639170942272826, 0.06562233405876228, 0.23311900627036541, 0.3756616197417655, 0.46674395287949066, 0.3092684534350997, 0.8337319641197457, 0.8331457111467163, 0.2591056156836542, 0.4778687671024334, 0.2542440524586721, 0.5361036306539362, 0.07073721340803463, 0.4731688813159418, 0.5755848065786346, 0.356689463387698, 0.14225616860197343, 0.21837916002376445, 0.14466174791529418, 0.29899643271856946, 0.4757427727983842, 0.08126799884203029, 0.1296501822378736, 0.3286954654423938, 0.08620177311633537, 0.13855855420831553, 0.05543377339452393, 0.11917834098009661, 0.2613621884509647, 0.11269900223777074, 0.08429051026621415, 0.3393961441870107, 0.07031960314855146, 0.11356777592095357, 0.4853279864284006, 0.1279289285514792, 0.0584572339054259, 0.08612988585012649, 0.3472440907423937, 0.1248029959061332, 0.07502335399434323, 0.19827111133563302, 0.3424151534036639, 0.3065175956815872, 0.13808860398564737, 0.058092197534895806, 0.04082786106581715, 0.1602592849246841, 0.09156161599234125, 0.5036030690663805, 0.2640411824475748, 0.6468038092930676, 0.07201805208597656, 0.22470230804277058, 0.1334773721572423, 0.04847889440667685, 0.2685808245693546, 0.10911308148570098, 0.6764508967260475, 0.6280060594576413, 0.36761958218269275, 0.16019930342079847, 0.17605308658107655, 0.14078981831089854, 0.2384997092801764, 0.13117402490907393, 0.12818959986091483, 0.4161925244315118, 0.12435295831370408, 0.09814942480303201, 0.05480698563416486, 0.3746187330143109, 0.41092354232892336, 0.507894749900129, 0.5137929421583434, 0.08293523366016065, 0.2964416548030494, 0.15236141109070434, 0.4396941021426354, 0.41893931094950754, 0.09113953260801844, 0.10967473999240707, 0.055732078845942, 0.05640314085190745, 0.06176263301115803, 0.06427139521062619, 0.20386133178572885, 0.21597661143113533, 0.7486409492386699, 0.2610715902497083, 0.09465277491899493, 0.5556171757583562, 0.137718889647652, 0.1978940751503777, 0.08472590699531857, 0.356262641598029, 0.14596950445002987, 0.13865818299932142, 0.3088915816821678, 0.11516321289421916, 0.16121169033174265, 0.40573483691789825, 0.34308606282264, 0.36300204724896845, 0.17193414756867276, 0.035926383178341514, 0.34536882843285344, 0.4400180463892147, 0.5165194668234709, 0.23319834124303085, 0.9637923675569924, 0.2635599134550337, 0.6259141532505736, 0.12324962258280003, 0.1256037712827487, 0.1248029959061332, 0.11665042079727428, 0.29081136443782263, 0.12993062945549005, 0.20959981847797426, 0.12385816607190492, 0.16931651488884025, 0.2468284110987674, 0.6181879252747016, 0.3509541008179864, 0.08619429866610873, 0.09537770951135394, 0.8204393830764495, 0.2493836920976743, 0.10367142046182065, 0.11516383353466464, 0.07169627826225977, 0.5400384130096556, 0.2709141565803237, 0.16809050322974173, 0.3421981324687273, 0.812724325423183, 0.1326589750154965, 0.054670132935181304, 0.055346153509382656, 0.8039442695404772, 0.3276168958360183, 0.6561718697940482, 0.6214102617950452, 0.3046829516703813, 0.7853649284745584, 0.7303620793003476, 0.6719087507962026, 0.16000678121984613, 0.579612101366232, 0.6347749924714103, 0.41894393066564606, 0.06936532322770372, 0.28322834609079706, 0.343263893078516, 0.4450860003239352, 0.3090838478611311, 0.408095736797927, 0.11529682880263803, 0.13359771811640497, 0.2417229185475579, 0.10092265889692065, 0.8181934133883563, 0.3777834313813965, 0.8273808576462511, 0.18439353202429143, 0.5148786056082297, 0.11287077888712382, 0.16015059460472458, 0.29672938182784603, 0.36944561074938853, 0.2505850522824452, 0.8467591712977676, 0.3840267097226593, 0.261779448872241, 0.1645479955558209, 0.14631295673285594, 0.4248523287309329, 0.09222807982804315, 0.2121484308544801, 0.33273366741371935, 0.5470626312455473, 0.8294144697045585, 0.25206662215500397, 0.15998368749433245, 0.548322128117227, 0.3917329141436472, 0.15981565308588508, 0.23631147082452741, 0.21082920466209698, 0.1871387197916503, 0.24774693401855818, 0.1913242313933492, 0.16437448769677154, 0.07582203648947516, 0.032541140295091364, 0.06311143057978008, 0.5009235508757715, 0.12343879567504301, 0.445735807756371, 0.40322837553658053, 0.09397553936597514, 0.1598391281143201, 0.26702494168661406, 0.19782301216908982, 0.06831823449824892, 0.5451167746582685, 0.20142160156100697, 0.25747632252511843, 0.4257317671215596, 0.5062318064185062, 0.10278357133077332, 0.10857266292312517, 0.06223864817381186, 0.11377411494697365, 0.14082424186384768, 0.2589321903149734, 0.31776639873426016, 0.07983414941561229, 0.30174211068680845, 0.42532907678292176, 0.23734670470511587, 0.2862296469110084, 0.24790288035387664, 0.5526146374040077, 0.20425399436950087, 0.5166825128498294, 0.12415322942140417, 0.5310696157212036, 0.3866387435262121, 0.14313186082947948, 0.31648660326859934, 0.026792916001305622, 0.7856428374245099, 0.42383310375799566, 0.5944566396871084, 0.6256605001243821, 0.08813642250468567, 0.03544811528140901, 0.06935406654889886, 0.15751976448865512, 0.22608551288474832, 0.3127311228465576, 0.1409438166611655, 0.3285615524533705, 0.3591330499592894, 0.47964497307801546, 0.7143146030302826, 0.14223944449319303, 0.06929054967731618, 0.32120711190509066, 0.16913647442041335, 0.707286257884667, 0.3230684446475647, 0.7616845263358343, 0.4104900542879092, 0.10053249234255524, 0.1106599594415556, 0.1543174595222413, 0.46003879185641183, 0.3811350878514418, 0.07185070571861518, 0.23882593985771994, 0.5344976262521839, 0.11031385635331636, 0.09610989844306939, 0.4955559099445003, 0.07845190603324759, 0.30697262074812925, 0.12767551958037127, 0.4375661224395835, 0.07737023387634634, 0.15307682457740834, 0.05694427046787409, 0.09028836937410878, 0.4011292297732457, 0.6186146927451245, 0.11561676905211238, 0.0993047499370594, 0.08102401279833105, 0.8100206966555492, 0.10768932514586738, 0.15386113005635593, 0.4026560765644126, 0.045535707525545144, 0.08229583319403, 0.08227601457953415, 0.8241544781987433, 0.0759900855540333, 0.5147505197509459, 0.11103147778198663, 0.42144961755966015, 0.24880465403270857, 0.3112403223054312, 0.3282460941643247, 0.28312386083977936, 0.2865521931047814, 0.16537364909659502, 0.4284132019637321, 0.34116073112729894, 0.051142721309942685, 0.10794707492381372, 0.1108646816717751, 0.29201805921023904, 0.07365131996157204, 0.36851051207096197, 0.2556143611338999, 0.07392456180697715, 0.045535707525545144, 0.15025986810093994, 0.4395989822566938, 0.19636656988846957, 0.21018464628148859, 0.15085686628779282, 0.3429118439192298, 0.16104008564300487, 0.2055862423584408, 0.18673310211333727, 0.5528531989583015, 0.20219789553586287, 0.5807830339134155, 0.6112381610839525, 0.07515362639458067, 0.5722084734915175, 0.3654892991508686, 0.1991057466826236, 0.4912569401667811, 0.05850610073101081, 0.3077884117234785, 0.17038242498240874, 0.14066607718466684, 0.10248584652416493, 0.4022873718442217, 0.07205214632436985, 0.35142291824287475, 0.10941760034103376, 0.06679271580157364, 0.05675388891699207, 0.058987921856350156, 0.3660303223369904, 0.28790374422385034, 0.4158290962648631, 0.40710291595796666, 0.09934102670994882, 0.06362846635195196, 0.30921476208988685, 0.23242198019285765, 0.055541210656895434, 0.5297663836663529, 0.10744632778983743, 0.18410212910939194, 0.17721960751489196, 0.1962664672709783, 0.1617648996714035, 0.10584426414108294, 0.5203501665477333, 0.07365131996157204, 0.31578819840495265, 0.35364190165315845, 0.1707951928721818, 0.41655733121321636, 0.15801546378512366, 0.7568436608419439, 0.22368578646300386, 0.0609449253562836, 0.2225096762928218, 0.18587673368692093, 0.05559101133196209, 0.569598540521716, 0.08073228430722412, 0.15724041301590164, 0.12879141548479, 0.4306817897420764, 0.17998791969802397, 0.41280880088413996, 0.5723062335690389, 0.6457404130724687, 0.10420061808672998, 0.12564769853034463, 0.21795029564941848, 0.4720930498870375, 0.11304202998506685, 0.545112257205237, 0.14852188644910969, 0.17217029085021085, 0.336250902618187, 0.48671482860553816, 0.5093433434984792, 0.35847801144896685, 0.3008706318705062, 0.18494609259573758, 0.4199330463236065, 0.04162287990776414, 0.2633909944023186, 0.4252182303976608, 0.4684623303117058, 0.1925553058603695, 0.09610989844306939, 0.09129843496680234, 0.3302708189676917, 0.4199330463236065, 0.11927294568859859, 0.4864154015695107, 0.06472081497616611, 0.6387929002666255, 0.37932906694235924, 0.093713747684541, 0.20627971812824875], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (curr)\", \"type\": \"scatter\", \"x\": [39.0, 33.0, 45.0, 5.0, 36.0, 48.0, 25.0, 4.0, 10.0, 6.0, 22.0, 32.0, 39.0, 52.0, 30.0, 32.0, 35.0, 12.0, 9.0, 10.0, 15.0, 49.0, 31.0, 65.0, 31.0, 23.0, 35.0, 28.0, 11.0, 19.0, 51.0, 48.0, 12.0, 11.0, 24.0, 57.0, 35.0, 11.0, 27.0, 27.0, 19.0, 34.0, 44.0, 40.0, 10.0, 39.0, 16.0, 9.0, 36.0, 10.0, 58.0, 33.0, 26.0, 5.0, 9.0, 23.0, 13.0, 10.0, 21.0, 57.0, 10.0, 33.0, 45.0, 10.0, 13.0, 4.0, 16.0, 11.0, 8.0, 17.0, 6.0, 47.0, 69.0, 16.0, 36.0, 31.0, 45.0, 5.0, 13.0, 32.0, 40.0, 10.0, 45.0, 15.0, 34.0, 10.0, 37.0, 66.0, 81.0, 17.0, 67.0, 15.0, 6.0, 45.0, 40.0, 5.0, 40.0, 51.0, 26.0, 67.0, 20.0, 20.0, 32.0, 13.0, 11.0, 4.0, 27.0, 15.0, 16.0, 44.0, 15.0, 6.0, 18.0, 24.0, 12.0, 19.5, 35.0, 47.0, 52.0, 16.0, 22.0, 39.0, 25.0, 21.0, 12.0, 27.0, 7.0, 15.0, 12.0, 46.0, 6.0, 62.0, 45.0, 14.0, 31.0, 66.0, 6.0, 5.0, 17.0, 9.0, 6.0, 34.0, 38.0, 7.0, 21.0, 31.0, 21.0, 5.0, 42.0, 54.0, 46.0, 46.0, 29.0, 53.0, 24.0, 17.0, 54.0, 52.0, 36.0, 37.0, 15.0, 27.0, 24.0, 44.0, 6.0, 23.0, 23.0, 15.0, 30.0, 41.0, 16.0, 23.0, 12.0, 62.0, 46.0, 40.0, 8.0, 57.0, 54.0, 55.0, 14.0, 64.0, 12.0, 19.0, 42.0, 31.0, 60.0, 16.0, 27.0, 45.0, 16.0, 14.0, 67.0, 12.0, 70.0, 7.0, 20.0, 34.0, 48.0, 23.0, 5.0, 54.0, 37.0, 81.0, 3.0, 68.0, 50.0, 3.0, 26.0, 58.0, 30.0, 29.0, 18.0, 31.0, 61.0, 22.0, 66.0, 46.0, 36.0, 15.0, 40.0, 54.0, 22.0, 61.0, 47.0, 18.0, 16.0, 28.0, 18.0, 32.0, 36.0, 24.0, 44.0, 34.0, 16.0, 35.0, 23.0, 40.0, 45.0, 31.0, 28.0, 5.0, 21.0, 64.0, 20.0, 34.0, 18.0, 26.0, 59.0, 20.0, 15.0, 61.0, 14.0, 51.0, 8.0, 43.0, 64.0, 50.5, 22.0, 20.0, 9.0, 17.0, 54.0, 54.0, 11.0, 28.0, 11.0, 12.0, 4.0, 52.0, 20.0, 12.0, 52.0, 25.0, 18.0, 8.0, 67.0, 16.0, 17.0, 44.0, 45.0, 48.0, 30.0, 72.0, 52.0, 63.0, 16.0, 17.0, 6.0, 34.0, 45.0, 33.0, 45.0, 15.0, 30.0, 12.0, 25.0, 35.0, 39.0, 5.0, 39.0, 15.0, 58.0, 64.0, 68.0, 9.0, 5.0, 21.0, 32.0, 47.0, 24.0, 21.0, 7.0, 39.0, 19.0, 56.0, 40.0, 48.0, 26.0, 26.0, 10.0, 3.0, 23.0, 43.0, 4.0, 37.0, 36.0, 3.0, 54.0, 69.0, 5.0, 32.0, 32.0, 59.0, 7.0, 33.0, 43.0, 25.0, 44.0, 18.0, 51.0, 26.0, 29.0, 11.0, 5.0, 7.0, 15.0, 39.0, 44.0, 24.0, 16.0, 13.0], \"xaxis\": \"x2\", \"y\": [0.18579927887031134, 0.9274202256360236, 0.2569067617886446, 0.17851375722123963, 0.43011516789686843, 0.3951880410340851, 0.35333307802371594, 0.854899199395705, 0.7749695319329993, 0.7150752736216004, 0.5793836726576811, 0.17187478758168062, 0.503776006633781, 0.6517104478925241, 0.5321166645488455, 0.4291031613352281, 0.6295132227815239, 0.446367751604861, 0.12978626497489776, 0.578130474122496, 0.1303225049324246, 0.4589423036505589, 0.6028673022099313, 0.6724998803801079, 0.055171077290688375, 0.28900585249094113, 0.5807441942986169, 0.6324527530146118, 0.32780881811994433, 0.4437792729685527, 0.47375733914823626, 0.6755390392614542, 0.8494338455743565, 0.8432302027568838, 0.3962269303969661, 0.36574887203466033, 0.9780529644634413, 0.6757083557066426, 0.43212531492562845, 0.6428319532862445, 0.2244465690609686, 0.6759712108962084, 0.300575337785698, 0.4848467547623382, 0.24353241802821812, 0.6165640897352094, 0.801889943514816, 0.6831580296641933, 0.4684052737322374, 0.07309555507266852, 0.17397747102053363, 0.548208100621717, 0.16948307959681597, 0.5287139706981401, 0.8097217619362252, 0.48186532860504816, 0.7044722268129955, 0.5458559966555334, 0.6067015953642416, 0.5767206748937392, 0.5416109283549078, 0.7766135747357961, 0.6371580804073698, 0.3290646799011723, 0.53941953634433, 0.7444876216695655, 0.27658524567301757, 0.8518717737266248, 0.685064206005921, 0.7994946846943811, 0.6254668451144636, 0.29898447003196504, 0.36566585814722175, 0.8260679099411251, 0.265003746926769, 0.18277705216857454, 0.6401445853260315, 0.2878944788643705, 0.7379395090268356, 0.6578861964269485, 0.3048731186933995, 0.6479177870210828, 0.5479007895539181, 0.8109237991420157, 0.4555798348891207, 0.35159410271621183, 0.6741813074403022, 0.40366163192193316, 0.3797333752177462, 0.42326140605337403, 0.49450075158901585, 0.7027754368270075, 0.31556666432085356, 0.5737052492708005, 0.5594846166878963, 0.9879213229528466, 0.23907110553933086, 0.7604887601700165, 0.906894853259191, 0.49150798334893764, 0.6693239074263375, 0.635181004157038, 0.4291031613352281, 0.6805197940362542, 0.8579270215873258, 0.42231028799440284, 0.7973836574204367, 0.6209099995125147, 0.617932351579841, 0.5867531689564582, 0.8217385626893267, 0.5766058512754557, 0.6085190813519714, 0.6488649586424557, 0.19466062481522506, 0.4062994677131635, 0.31500574198466447, 0.6106996692323751, 0.48314991346809855, 0.4300926711133176, 0.4623912750166579, 0.18141675383529432, 0.7404949196358439, 0.7960551628311661, 0.6696955469146251, 0.7471897031921468, 0.15222801432328747, 0.4782875749995391, 0.6696955469146251, 0.4617114467660769, 0.0374236133971757, 0.34638250956587036, 0.5737052492708005, 0.35412183815676124, 0.5342599897609015, 0.6273126624389191, 0.1819914526651868, 0.6450640502472667, 0.7576359910572065, 0.6363669366758954, 0.35783776888428775, 0.4555798348891207, 0.2603691587203709, 0.09638465351539516, 0.7889843001267657, 0.3995975535535492, 0.2404138117262561, 0.5134503976671381, 0.7620160241108803, 0.4852174766770502, 0.7934067722809752, 0.5657371707019572, 0.40591517497640706, 0.5142806824729376, 0.4667389755277017, 0.4597803030361328, 0.14211531046105408, 0.4709774325404933, 0.39253304933110444, 0.8152160844894966, 0.6418608562675732, 0.5695619245525361, 0.15898796250578873, 0.4189913516486339, 0.8097376625536354, 0.2776505479619531, 0.14100712613869515, 0.1625374057836978, 0.21879614767173305, 0.26016804821119, 0.5884346274074399, 0.25171266030158634, 0.5556828679884147, 0.2886326125606653, 0.5013044750460076, 0.23728971353361283, 0.6280660923097139, 0.6281218947904323, 0.6226708394296439, 0.1280348372312241, 0.37812375401711507, 0.6218606462016874, 0.446367751604861, 0.5237591509200082, 0.22560064672115399, 0.4159575064805634, 0.43989745285902637, 0.38133093816728936, 0.379388299643832, 0.4244201113870294, 0.8495234946343055, 0.44699506619782237, 0.3402560380560977, 0.16997778820688525, 0.6509841470756508, 0.5589353890471914, 0.49320900326902484, 0.41485179365651337, 0.2850172536812061, 0.5150740024049856, 0.7905789411902706, 0.6660097546858721, 0.5916856454756931, 0.25029771644034415, 0.21820707607863943, 0.23625780462752244, 0.6174344585079109, 0.33885175059010386, 0.8097775874289167, 0.5502791542248897, 0.45232673966787307, 0.5168725346003686, 0.4922951659433321, 0.2710495410551712, 0.5620189509382074, 0.19827785442852286, 0.35653263682836045, 0.4940220265254579, 0.3934632807735441, 0.349631294967786, 0.6543252873397565, 0.6043841099981286, 0.6572212454398962, 0.5323595728841377, 0.4667716613599331, 0.5480891857555714, 0.5933716837007499, 0.5769442381274095, 0.7796710482718338, 0.4721284230669528, 0.5632051337005155, 0.25606657060722404, 0.47304849589761655, 0.4991199345133047, 0.785831825438318, 0.5512091114854263, 0.31651464458218903, 0.192246895102814, 0.5737052492708005, 0.14970485751781393, 0.8257882443178004, 0.7450862811651306, 0.2404138117262561, 0.3428275867057816, 0.2186811050870735, 0.43730933466596944, 0.1325711740116582, 0.33994853494016564, 0.5172250338280965, 0.4543852880840521, 0.6017244994332274, 0.7267617626256621, 0.304103470637073, 0.49511795227452726, 0.4577650902534979, 0.4389063253281036, 0.3428275867057816, 0.6911248892501751, 0.5457123873353599, 0.3395528272139201, 0.5662837862370104, 0.38281068028313525, 0.1899488449656659, 0.1899488449656659, 0.39416742153886597, 0.4473524415330049, 0.5724944828663213, 0.12652799787397961, 0.14917046216496987, 0.4192276293132746, 0.1727250451072272, 0.7329347521090118, 0.2979855805324535, 0.5384433083808008, 0.2944152049751758, 0.5661013076544325, 0.39283078357423706, 0.6503174362647687, 0.7632350838020857, 0.29422440231251745, 0.8446099855685041, 0.3812461384129847, 0.1264117171095669, 0.6995051325026098, 0.7680829457938805, 0.1086082602083136, 0.50228427853815, 0.8303888649041977, 0.15145052047802054, 0.5239967242043768, 0.49461569007297057, 0.7323984730128237, 0.6372335578763709, 0.8485373319296128, 0.21018203617182263, 0.3854703692354019, 0.6209619763202376, 0.6996467359659702, 0.3913887983225227, 0.600932061108284, 0.18141675383529432, 0.32841971343371723, 0.17397747102053363, 0.3943097935149382, 0.5998672378660981, 0.6052803835931642, 0.35501406908939237, 0.4362847089434372, 0.6005057903956104, 0.45095984485898877, 0.5601124581139871, 0.6908342266509375, 0.29066967723125237, 0.5437491575180791, 0.5955595524057149, 0.4226516353037165, 0.552222307965348, 0.5038457784615318, 0.6752568781943777, 0.7880730680059006, 0.09430965090665133, 0.4986183600001317, 0.24112389044610405, 0.3635071851353404, 0.7047195247497422, 0.5251048099479148, 0.5632051337005155, 0.4520037684813636, 0.5271857161160298, 0.36566585814722175, 0.8775119234978208, 0.49474741138534273, 0.17187478758168062, 0.1069918390347242, 0.6371627391106971, 0.19018032574493748, 0.34352259564225396, 0.806114950115292, 0.47304849589761655, 0.5014153035286022, 0.6721952796384192, 0.7507248720260316, 0.38512814216859315, 0.8930847268109882, 0.863224561659591, 0.15108072818859253, 0.7399796913917198, 0.18579927887031134, 0.47304849589761655, 0.2033384066370545, 0.43667652058029827, 0.23252054766636898], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [18.0, 55.0, 24.0, 15.0, 23.0, 27.0, 37.0, 21.0, 32.0, 57.0, 13.0, 29.0, 36.0, 26.0, 31.0, 29.0, 32.0, 11.0, 1.0, 42.0, 53.0, 39.0, 12.0, 45.0, 46.0, 32.0, 35.0, 61.0, 22.0, 34.0, 26.0, 23.0, 59.0, 26.0, 37.0, 45.0, 32.0, 60.0, 16.0, 10.0, 39.0, 31.0, 37.0, 46.0, 11.0, 34.0, 23.0, 18.0, 73.0, 38.0, 6.0, 22.0, 35.0, 14.0, 37.0, 43.0, 37.0, 27.0, 46.0, 18.0, 34.0, 45.0, 30.0, 15.0, 28.0, 31.0, 49.0, 32.0, 38.0, 50.0, 35.0, 36.0, 31.0, 28.0, 26.0, 54.0, 32.0, 53.0, 20.0, 6.0, 23.0, 66.0, 34.0, 22.0, 26.0, 14.0, 41.0, 20.0, 49.0, 14.0, 60.0, 46.0, 18.0, 28.0, 30.0, 26.0, 6.0, 51.0, 6.0, 16.0, 25.0, 26.0, 13.0, 49.0, 35.0, 37.0, 15.0, 20.0, 34.0, 37.0, 32.0, 35.0, 35.0, 13.0, 28.0, 19.0, 46.0, 33.0, 29.0, 21.0, 23.0, 74.0, 8.0, 23.0, 25.0, 5.0, 23.0, 21.0, 10.0, 29.0, 22.0, 18.0, 24.0, 48.0, 20.0, 62.0, 5.0, 24.0, 14.0, 29.0, 57.0, 27.0, 17.0, 46.0, 55.0, 23.0, 55.0, 10.0, 24.0, 20.0, 41.0, 33.0, 24.0, 14.0, 39.0, 10.0, 31.0, 15.0, 23.0, 49.0, 12.0, 10.0, 19.0, 50.0, 8.0, 15.0, 32.0, 13.0, 24.0, 52.0, 38.0, 20.0, 6.0, 3.0, 12.0, 41.0, 46.0, 54.0, 38.0, 17.0, 29.0, 33.0, 40.0, 54.0, 54.0, 26.0, 1.0, 24.0, 45.0, 22.0, 47.0, 17.0, 36.0, 40.0, 39.0, 36.0, 26.0, 18.0, 55.0, 21.0, 26.0, 29.0, 38.5, 21.0, 41.0, 18.0, 24.0, 38.0, 32.0, 79.5, 34.0, 24.0, 18.0, 37.0, 12.0, 35.0, 24.0, 25.0, 23.0, 34.0, 34.0, 56.0, 3.0, 62.0, 56.0, 28.0, 26.0, 44.0, 32.0, 32.0, 16.0, 30.0, 22.0, 31.0, 15.0, 51.0, 29.0, 30.0, 45.0, 18.0, 21.0, 23.0, 21.0, 29.0, 28.0, 13.0, 45.0, 39.0, 26.0, 6.0, 47.0, 68.0, 43.0, 26.0, 36.0, 44.0, 21.0, 13.0, 34.0, 25.0, 8.0, 47.0, 26.0, 67.0, 34.0, 27.0, 29.0, 54.0, 56.0, 58.0, 45.0, 37.0, 10.0, 13.0, 41.0, 12.0, 35.0, 17.0, 40.0, 39.0, 9.0, 25.0, 37.0, 26.0, 30.0, 11.0, 29.0, 22.0, 34.0, 45.0, 19.0, 5.0, 47.0, 26.0, 33.0, 33.0, 25.0, 40.0, 40.0, 28.0, 52.0, 25.0, 95.0, 42.0, 53.0, 24.0, 35.0, 53.0, 62.0, 34.0, 48.0, 15.0, 11.0, 31.0, 26.0, 69.0, 34.0, 11.0, 29.0, 52.0, 39.0, 31.0, 27.0, 50.0, 11.0, 49.0, 30.0, 17.0, 51.0, 20.0, 15.0, 18.0, 11.0, 63.0, 36.0, 23.0, 57.0, 80.0, 28.0, 6.0, 40.0, 27.0, 49.0, 39.0, 15.0, 29.0, 27.0, 7.0, 15.0, 25.0, 37.0, 30.0, 35.0, 14.0, 57.0, 20.0, 8.0, 18.0, 70.5, 13.0, 29.0, 25.0, 32.0, 61.0, 12.0, 53.0, 41.0, 50.0, 58.0, 68.0, 29.0, 29.0, 38.0, 22.0, 10.0, 9.0, 31.0, 17.0, 18.0, 13.0, 34.0, 22.0, 34.0, 56.0, 41.0, 24.0, 35.0, 31.0, 6.0, 43.0, 53.0, 32.0, 21.0, 71.0, 36.0, 11.0, 42.0, 7.0, 27.0, 37.0, 33.0, 37.0, 28.0, 21.0, 19.0, 44.0, 49.0, 23.0, 29.0, 17.0, 8.0, 16.0, 28.0, 9.0, 64.0, 29.0, 64.0, 5.0, 37.0, 19.0, 18.0, 38.0, 9.0, 5.5, 5.0, 50.0, 29.0, 27.0, 24.0, 35.0, 25.0, 20.0, 20.0, 29.0, 8.0, 14.0, 49.0, 53.0, 23.0, 19.0, 48.5, 5.0, 65.0, 27.0, 20.0, 6.0, 26.0, 19.0, 22.0, 15.0, 50.0, 22.0, 40.0, 4.0, 33.0, 49.0, 20.0, 24.0, 57.0, 9.0, 105.0, 44.0, 34.0, 56.0, 53.0, 23.0, 46.0, 14.0, 35.0, 22.0, 42.0, 60.0, 15.0, 25.0, 31.0, 11.0, 61.0, 19.0, 18.0, 63.0, 37.0, 34.0, 33.0, 10.0, 49.0, 26.0, 4.0, 15.0, 6.0, 26.0, 17.0, 44.5, 17.0, 11.0, 10.0, 6.0, 35.0, 15.0, 7.0, 25.0, 42.0, 33.0, 48.5, 40.0, 10.0, 41.0, 57.0, 25.0, 26.0, 31.0, 51.0, 25.0, 31.0, 14.0, 46.0, 41.0, 26.0, 6.0, 53.0, 11.0, 54.0, 8.0, 25.0, 32.0, 81.0, 46.0, 36.0, 36.0, 42.0, 60.5, 15.0, 45.0, 53.0, 41.0, 5.0, 33.0, 6.0, 16.0, 3.0, 52.0, 50.0, 25.0, 6.0, 40.0, 11.0, 16.0, 34.0, 7.0, 17.0, 48.5, 51.0, 14.0, 29.0, 6.0, 21.0, 62.0, 24.0, 19.0, 10.0, 44.0, 44.0, 33.0, 33.0, 8.0, 25.0, 26.0, 73.0, 31.0, 14.0, 56.0, 34.0, 37.0, 67.0, 42.0, 42.0, 30.0, 29.0, 26.0, 50.0, 16.0, 57.0, 40.0, 49.0, 18.0, 38.0, 17.0, 6.0, 56.0, 25.0, 15.0, 18.0, 29.0, 17.0, 10.0, 3.0, 27.0, 26.0, 38.0, 32.0, 47.0, 43.0, 29.0, 60.0, 40.0, 48.0, 17.0, 5.0, 27.0, 36.0, 14.0, 30.0, 41.0, 36.0, 55.0, 17.0, 15.0, 31.0, 29.0, 52.0, 23.0, 14.0, 35.0, 32.0, 21.0, 31.0, 10.0, 34.0, 52.0, 6.0, 59.0, 8.0, 17.0, 31.0, 12.0, 36.0, 25.0, 34.0, 16.0, 22.0, 34.0, 20.0, 50.0, 44.0, 38.0, 46.0, 52.0, 20.0, 32.0], \"xaxis\": \"x2\", \"y\": [0.6660328535674787, 0.4955559099445003, 0.11251030999551548, 0.5313240922219649, 0.7616845263358343, 0.42881839881496897, 0.22146723198036844, 0.2709448900825402, 0.04188686298684474, 0.3198999677935893, 0.586632325439729, 0.3332859260788763, 0.0891770245136605, 0.07249138429342028, 0.0813041402249215, 0.2808128557304226, 0.18155424903412543, 0.14020593233116785, 0.20529540916933675, 0.1755850319354616, 0.5722846846512241, 0.4684623303117058, 0.2863708053899042, 0.4489302200945696, 0.3606737334686688, 0.09834172337505831, 0.1439119889738254, 0.10526388551166177, 0.08976738859769384, 0.15927641460572795, 0.07353544332944184, 0.4894096639868448, 0.24735122968283396, 0.41440459167745447, 0.10107859516115147, 0.4809249647595707, 0.043928674649753696, 0.27268427565697984, 0.07203278686513981, 0.35989685204578803, 0.08410225657903847, 0.09640449279894714, 0.2859044620344169, 0.766491644508495, 0.27194216744256416, 0.11891721880979944, 0.6033870782914414, 0.8445823904457724, 0.4148378249676725, 0.09538880480821377, 0.5822786697287807, 0.2006236885231063, 0.30215903380660414, 0.3526626332448971, 0.22921561702294402, 0.3499358724503807, 0.451050436906263, 0.01968005574460141, 0.3849224947932618, 0.608666907839271, 0.30333177217190177, 0.05732515971384944, 0.08299070223644744, 0.155374347961305, 0.4378217303747408, 0.10641916767178827, 0.3207785913922725, 0.3280003244598044, 0.4747408725557203, 0.27229542413121455, 0.5314247042003052, 0.13834506443323813, 0.652508483608137, 0.1775869136191267, 0.4659209431511335, 0.3288332341233703, 0.47224603889779837, 0.2773569186284155, 0.18590272545123854, 0.6719763059805124, 0.04569198037744582, 0.22473444069733528, 0.0776074933333939, 0.1411968215808168, 0.3654892991508686, 0.06069899520469324, 0.21029328672965164, 0.13919371635861133, 0.16321149678759816, 0.6144435769482088, 0.1388055550317996, 0.0827658987104557, 0.0793107693477757, 0.04994940743047871, 0.46220165202879504, 0.08265172102971341, 0.5554564865761329, 0.10902951494304747, 0.26480674198345266, 0.31816712550642645, 0.20184400370343658, 0.23734670470511587, 0.19264674509953905, 0.03558879485690103, 0.5314247042003052, 0.3013473679880785, 0.8043030592862955, 0.07665185966197174, 0.17816243980233548, 0.14637302723887635, 0.43623195291339645, 0.5773286546676725, 0.06996409198491005, 0.0635191394270278, 0.11839391684253864, 0.03368970372860669, 0.16544292122901683, 0.5002106013252752, 0.20783967621931676, 0.4413184352618238, 0.1377753535318076, 0.017128038770129694, 0.09070427960766203, 0.05237321155563324, 0.46044782253877736, 0.09863911308639095, 0.6058955548956951, 0.07377868677997379, 0.33726125667837825, 0.03705661785513226, 0.03856885477325478, 0.01970319875133708, 0.06623921298607705, 0.655672818127978, 0.36403826442427, 0.375635621083512, 0.25822104517587474, 0.26990817233175546, 0.30316845466795117, 0.21597661143113533, 0.10411587283779344, 0.4582573305440075, 0.28974208538397184, 0.3995654588450376, 0.48407929824265805, 0.2412117545349558, 0.49704114689177337, 0.3112403223054312, 0.13571503940671914, 0.35304273602320047, 0.18963603484652192, 0.06023564559469896, 0.305863422303413, 0.34062746964654456, 0.03532029949184434, 0.20200996882548472, 0.207876095289533, 0.11304202998506685, 0.26487496820305634, 0.46674395287949066, 0.05931266843465788, 0.6063731497207538, 0.053339747820140615, 0.16056749669580483, 0.3366557342021428, 0.18735912995827353, 0.2667542380283816, 0.9197592959547904, 0.13322255285490225, 0.3533185668595151, 0.08763312389948397, 0.343329095265401, 0.1298321532292276, 0.11240742021865013, 0.03412749239977686, 0.23316671381479437, 0.13955591125269062, 0.065615492475942, 0.03940539431326806, 0.04874684240881699, 0.42507109047861347, 0.3720756994829524, 0.20627971812824875, 0.23346983492740092, 0.299872058778726, 0.14688925552714138, 0.20529540916933675, 0.11294333341234963, 0.4523771212155355, 0.15895981664313275, 0.12633289347617382, 0.34801013400503944, 0.063056887931354, 0.09222807982804315, 0.19281104432210028, 0.11843845992675284, 0.1064686731970873, 0.12171087020281346, 0.49704114689177337, 0.4202798549667376, 0.058322454167927695, 0.40418598015134155, 0.7514842711311043, 0.067978575311199, 0.1468497162592186, 0.3655805321171328, 0.36741292271676196, 0.08785516413846428, 0.4223454464089015, 0.09472348251934337, 0.14196098925812006, 0.10013555988874479, 0.32154631204965056, 0.05416575683382341, 0.786126361492164, 0.04696516601190348, 0.26926088858349784, 0.28123172687107445, 0.3094364396730669, 0.04307250962973752, 0.07126159086244754, 0.6143015945908075, 0.495586079448059, 0.46102608015166635, 0.40789311683600216, 0.8929715185951024, 0.1227006502272181, 0.3638055988942468, 0.10470002869891348, 0.29304213908849364, 0.8936703981375603, 0.3534407380188983, 0.0883666731866185, 0.07895584641700149, 0.05166417783587085, 0.4199775765299997, 0.10304865631077798, 0.1041340676595982, 0.11031385635331636, 0.22368578646300386, 0.22137255536682798, 0.0725394352715707, 0.08320759746190642, 0.3577905591727162, 0.36362749207413336, 0.13058702032609693, 0.4306817897420764, 0.4684623303117058, 0.3185463047756948, 0.6991046594229053, 0.33105510290791684, 0.35804773811787727, 0.3499358724503807, 0.17780319308126435, 0.07142366539796174, 0.1504846162366139, 0.28643330026545544, 0.11492102279820171, 0.08716328114311156, 0.12905574960179156, 0.5528531989583015, 0.2852168598030531, 0.3185463047756948, 0.41766807389819915, 0.22818770291371737, 0.10749415552266317, 0.07500089027222667, 0.2150933620687273, 0.4879833184669665, 0.21367083697314282, 0.18281788227943807, 0.11217648511765432, 0.01860460444149037, 0.4990100838788346, 0.3212979959143686, 0.7252893191599291, 0.30018855716775616, 0.2808216200321265, 0.24332849241566534, 0.22583693263898685, 0.307128141019565, 0.12930297020615966, 0.07734813107736227, 0.38078614076753503, 0.037937415915298756, 0.18389331462546077, 0.2015421194948802, 0.10121634311933059, 0.7209948827487924, 0.252131738577411, 0.19866278493931944, 0.5569604587758099, 0.19172534874952063, 0.07516041810443141, 0.18673310211333727, 0.20736440356309183, 0.27568985010185776, 0.1748501221961516, 0.134246332983591, 0.12151400729184814, 0.03860330573341564, 0.16198960071610413, 0.062309112953929935, 0.14943540958877521, 0.46827469198568006, 0.12435295831370408, 0.11768791031746062, 0.10794707492381372, 0.04347111427796346, 0.07423675680829, 0.1602542791395647, 0.19911642350143877, 0.2379444352717226, 0.36664322039668684, 0.10130143557253446, 0.17108028607870185, 0.6143194513817134, 0.5641235853966853, 0.29864316680665437, 0.44752301946823647, 0.13459844499503626, 0.037461465199631894, 0.5002964248569376, 0.4059565893810353, 0.7035957096210382, 0.0629603198376949, 0.25036415064992923, 0.14780834332950044, 0.24800647860056513, 0.10438723399855232, 0.24366911510822187, 0.4574644219698093, 0.8347014835967527, 0.42226245660703365, 0.4073158502222598, 0.47525484003715535, 0.37845934883934684, 0.35325777167774697, 0.4763432908647238, 0.18941100564626978, 0.23853527246002126, 0.27277355193056574, 0.5556171757583562, 0.19481513110659687, 0.7460207524242459, 0.12627308236197843, 0.2115813466591615, 0.4773837842994688, 0.22238536240250728, 0.1978655273089749, 0.32057959349203036, 0.1601330373243487, 0.6256605001243821, 0.34062746964654456, 0.5899158924001677, 0.1273375405407705, 0.6866376712310945, 0.3812864953771038, 0.07918534602430627, 0.10510921928053807, 0.052405178286905496, 0.29010285216427345, 0.5802968836962079, 0.4475494904811408, 0.33107045093633036, 0.6046547135519548, 0.33132995382553565, 0.3391582818855403, 0.37109937806185267, 0.18876467901964422, 0.03244681540368277, 0.6531311156123596, 0.18281848038190407, 0.06840545126676123, 0.23876166598551407, 0.5602062902528231, 0.05478334190217349, 0.18965009362393503, 0.502081053312289, 0.0945975060483667, 0.24937367783354814, 0.14040338921272166, 0.09582424632391484, 0.4879833184669665, 0.07536550594022651, 0.37763546052463404, 0.20240400638142053, 0.06234715971662652, 0.1729504208160284, 0.2536573606029918, 0.1491704939138675, 0.47224603889779837, 0.20734784509414073, 0.1656619584420439, 0.20263687678412212, 0.4576701693643329, 0.3746187330143109, 0.06578487521364562, 0.09359041291034786, 0.15714155813810793, 0.43198081216185935, 0.17693664965610134, 0.14200602748771296, 0.16878839641400256, 0.11131318694256087, 0.43040972974554736, 0.12494266711040569, 0.5286591337585229, 0.3917329141436472, 0.14284790216410748, 0.29931895876037384, 0.3998656181534954, 0.13198036366642862, 0.2166851793268345, 0.164669749255824, 0.3116999397838065, 0.5702002297218003, 0.2867818412254799, 0.05809024612643199, 0.0701620515557333, 0.10493669218879953, 0.03474255021640338, 0.14069518845012563, 0.7697788668098057, 0.44513161239284327, 0.12104291767226882, 0.2823656727566666, 0.28640273091276736, 0.09904459769556595, 0.10889384421684001, 0.1978655273089749, 0.6326587477498924, 0.0766186874204361, 0.07300117689776386, 0.3978521493117628, 0.7293533971641823, 0.24040337450518035, 0.46827469198568006, 0.03737110954461231, 0.48112847828662497, 0.5755848065786346, 0.12151472907643468, 0.332302417201758, 0.3208349144509022, 0.13406270144296106, 0.47820199098358873, 0.024219732643774528, 0.7923035912680444, 0.3099424932714111, 0.8494816644677875, 0.15230116664989468, 0.8795672599938588, 0.34536882843285344, 0.587897812361327, 0.3660303223369904, 0.3074082248441362, 0.1925553058603695, 0.1582957933341015, 0.5297945963993664, 0.1892543681582496, 0.06574637766643598, 0.03286461121245521, 0.6223124217546917, 0.48666930315350876, 0.17200815643270417, 0.27042696199957883, 0.16010429726024444, 0.25291734909108765, 0.22778758435893687, 0.6055190518965303, 0.41989528411161425, 0.2865861541738164, 0.17344095530188786, 0.4163761941495938, 0.24610426408478792, 0.029106329843254564, 0.5849270471051293, 0.09607886499379148, 0.4890296174547498, 0.11193395874659995, 0.3667485749721523, 0.29672938182784603, 0.13696827462710404, 0.03986507081677082, 0.41542023534722683, 0.1642424989032959, 0.041559354155004224, 0.1266666793707928, 0.5259198205822933, 0.42123490919744344, 0.6147437654518444, 0.42849246998341506, 0.04874684240881699, 0.16870816563337898, 0.35179373534084035, 0.4552463954734379, 0.1543174595222413, 0.4641274821418986, 0.1106599594415556, 0.40441066041397966, 0.05916303638108533, 0.24194101851814365, 0.5755848065786346, 0.23631147082452741, 0.04679471849088612, 0.33132995382553565, 0.6031606095022326, 0.16900214819844117, 0.9322526967181247, 0.1065938389205352, 0.0540586741766943, 0.14920224829950646, 0.03054451782098533, 0.13595064656866984, 0.15908339514281045, 0.09402391562754642, 0.27219479721363327, 0.10477531970828624, 0.6046547135519548, 0.04412971358840656, 0.0821245873848182, 0.24953715645213048, 0.24311299470472425, 0.679537413518331, 0.02875041056121841, 0.2874129658970298, 0.17131102264191878, 0.07042427222914205, 0.1577516063520068, 0.39934634677258996, 0.42249259173992826, 0.24940231538328683, 0.46827469198568006, 0.040988937643475554, 0.034828704291737345, 0.26663563965858417, 0.22421743312747255, 0.10716094829621758, 0.7421831263598226, 0.4644511163280224, 0.1591307416719686, 0.21502194578256428, 0.12883185373794437, 0.15520095945599266, 0.04280666734842442, 0.06928764484923078, 0.3578757504587543, 0.0760792945579073, 0.06637805380770656, 0.5755848065786346, 0.4326356954473739, 0.16985579355455038, 0.47152805642545803, 0.11644579282256762, 0.11790522998710073, 0.5438286352264949, 0.41561805514360906, 0.050606352251634235, 0.21836830194439782, 0.22298545275517268, 0.1504846162366139, 0.16819644397314482, 0.47796113776613436, 0.14100197907825862, 0.7878397890034206, 0.12176963827920351, 0.09814942480303201, 0.23162396036129984, 0.04400104962869911, 0.061588508633294015, 0.2774601068082493, 0.40816383821078206, 0.14036214651023216, 0.11837607594274324, 0.0703155477214753, 0.17002415827487982, 0.24611532014486182, 0.06874641727313702, 0.30975746960573625, 0.07004288447243323, 0.6453829176356538, 0.3880412370469972, 0.10205495289732236, 0.12171087020281346, 0.38550692709735157, 0.4398162761337091, 0.5769741243450848, 0.48842976274850136, 0.3866799681687785, 0.17129518728202664, 0.5711206597512044, 0.4456070955069118, 0.4585850027539752, 0.25462747480751524, 0.34771016550763867, 0.35548618548401445, 0.07878090041588082, 0.3008706318705062, 0.08117751180329491, 0.055511805197920094, 0.1600174453683395, 0.35597309965685686, 0.5473978930443646, 0.3321771897262046, 0.14643302530661162, 0.7653011157176768, 0.24188431843396252, 0.16704799028757666, 0.41136103198090634, 0.5749869949413896, 0.709238838470871, 0.09340318303147321, 0.602429869503323, 0.04154705947390969, 0.7519582179986716, 0.15993940416551844, 0.04372375151311325, 0.4076899811241429, 0.4644511163280224, 0.3133137248525114, 0.24628490675063597, 0.06972977174174444, 0.15949948541388637, 0.2241543425141257, 0.1729876202034616, 0.07290025122558275, 0.1220000714032804, 0.36493953208423235, 0.09420126302076737, 0.026726938234992392, 0.7199273032686843, 0.4606762448039463, 0.04906818437448113, 0.19446415942665518, 0.14876853598344464, 0.3247816953453747, 0.023320858692869595, 0.7310618090422621, 0.48944479260603346, 0.20357574295749958, 0.0840537250624015, 0.5368744051465595, 0.21101467800102214, 0.46682279298460017, 0.3749869638443927, 0.46592999202179275, 0.10188412989688433, 0.15751976448865512], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"free.sulfur.dioxide\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"free.sulfur.dioxide\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}}, {\"id\": \"All_total.sulfur.dioxide\", \"params\": {\"data\": [{\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Reference<br>total.sulfur.dioxide=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [123.0, 231.0, 126.0, 107.0, 175.0, 65.0, 107.0, 115.0, 121.0, 69.0, 180.0, 9.0, 158.0, 195.0, 211.0, 150.0, 101.0, 43.0, 74.0, 93.0, 202.0, 95.0, 142.0, 177.0, 84.0, 170.0, 93.0, 158.0, 131.0, 75.0, 92.0, 54.0, 92.0, 170.0, 63.0, 130.0, 186.0, 142.0, 99.0, 66.0, 67.0, 148.0, 60.0, 97.0, 211.0, 110.0, 57.0, 142.0, 18.0, 135.0, 110.0, 177.0, 104.0, 189.0, 156.0, 163.0, 73.0, 98.0, 104.0, 127.0, 19.0, 128.0, 144.0, 140.0, 41.0, 24.0, 100.0, 114.0, 160.0, 86.0, 125.0, 86.0, 101.0, 289.0, 94.0, 90.0, 37.0, 83.0, 60.0, 125.0, 189.0, 93.0, 57.0, 124.0, 98.0, 93.0, 143.0, 50.0, 93.0, 17.0, 119.0, 109.0, 148.0, 143.0, 151.0, 116.0, 134.0, 117.0, 85.0, 157.0, 47.0, 200.0, 41.0, 8.0, 95.0, 200.0, 103.0, 133.0, 86.0, 38.0, 103.0, 176.0, 166.0, 49.0, 158.0, 121.0, 110.0, 72.0, 171.0, 44.0, 171.0, 134.0, 228.0, 140.0, 89.0, 31.0, 25.0, 127.0, 147.0, 23.0, 127.0, 106.0, 129.5, 71.0, 115.0, 155.0, 52.0, 23.0, 109.0, 44.0, 109.0, 155.0, 159.0, 161.0, 17.0, 113.0, 85.0, 77.0, 34.0, 109.0, 149.0, 42.0, 143.0, 206.0, 118.0, 111.0, 100.0, 167.0, 112.0, 122.0, 115.0, 91.0, 68.0, 45.0, 137.0, 213.0, 192.0, 142.0, 161.0, 119.0, 20.0, 58.0, 123.0, 97.0, 43.0, 144.0, 31.0, 134.0, 138.0, 33.0, 134.0, 126.0, 15.0, 163.0, 136.0, 127.0, 118.0, 15.0, 194.0, 96.0, 128.0, 11.0, 164.0, 164.0, 94.0, 118.0, 126.0, 113.0, 72.0, 58.0, 124.0, 122.0, 111.0, 46.0, 181.0, 74.0, 22.0, 124.0, 155.0, 146.0, 73.0, 101.0, 121.0, 133.0, 80.0, 128.0, 106.0, 128.0, 160.0, 75.0, 78.0, 158.0, 87.0, 110.0, 25.0, 111.0, 189.0, 156.0, 106.0, 151.0, 186.0, 184.0, 52.0, 139.0, 92.0, 112.0, 150.0, 169.0, 107.0, 128.0, 202.0, 192.0, 114.0, 228.0, 64.0, 193.0, 155.0, 140.0, 167.0, 88.0, 163.0, 229.0, 66.0, 28.0, 29.0, 101.0, 143.0, 168.0, 152.0, 9.0, 146.0, 92.0, 99.0, 144.0, 109.0, 130.0, 114.0, 20.0, 44.0, 96.0, 61.0, 48.0, 81.0, 104.0, 119.0, 156.0, 115.0, 24.0, 11.0, 90.0, 161.0, 146.0, 90.0, 105.0, 93.0, 27.0, 182.0, 186.0, 46.0, 87.0, 84.0, 158.0, 12.0, 138.0, 149.0, 201.0, 34.0, 138.0, 71.0, 103.0, 40.0, 113.0, 98.0, 93.0, 98.0, 44.0, 142.0, 54.0, 155.0, 124.0, 70.0, 174.0, 28.0, 249.5, 90.0, 21.0, 153.0, 142.0, 100.0, 81.0, 104.0, 65.0, 170.0, 164.0, 118.0, 25.0, 81.0, 27.0, 188.0, 151.0, 107.0, 100.0, 19.0, 171.0, 96.0, 167.0, 76.0, 102.0, 159.0, 242.0, 213.0, 49.0, 78.0, 141.0, 22.0, 148.0, 125.0, 37.0, 96.0, 200.0, 143.0, 173.0, 115.0, 57.0, 160.0, 107.0, 79.0, 155.0, 23.0, 135.0, 194.0, 172.0, 57.0, 48.0, 88.0, 112.0, 125.0, 117.0, 31.0, 179.0, 149.0, 67.0, 102.0, 93.0, 78.0, 122.0, 142.0, 43.0, 98.0, 86.0, 50.0, 209.0, 63.0, 247.0, 206.0, 98.0, 95.0, 170.0, 163.0, 93.0, 132.0, 111.0, 158.0, 97.0, 221.0, 42.0, 87.0, 122.0, 178.0, 114.0, 42.0, 62.0, 70.0, 168.0, 78.0, 127.0, 134.0, 171.0, 87.0, 169.0, 140.0, 168.0, 141.0, 78.0, 102.0, 118.0, 152.0, 171.0, 143.0, 168.0, 138.0, 131.0, 206.0, 149.0, 134.0, 114.0, 111.0, 166.0, 165.0, 178.0, 186.0, 79.0, 98.0, 68.0, 146.0, 111.0, 16.0, 54.0, 155.0, 47.0, 102.0, 111.0, 89.0, 125.0, 109.0, 118.0, 231.0, 154.0, 24.0, 83.0, 126.0, 124.0, 70.0, 108.0, 174.0, 38.0, 223.0, 37.0, 101.0, 116.0, 22.0, 66.0, 37.0, 208.0, 138.0, 92.0, 134.0, 143.0, 154.0, 27.0, 42.0, 215.0, 131.0, 169.0, 113.0, 166.0, 105.0, 111.0, 113.0, 98.0, 42.0, 183.0, 118.0, 172.0, 134.0, 117.0, 109.0, 118.0, 88.0, 120.0, 223.0, 94.0, 93.0, 129.0, 11.0, 125.0, 185.0, 197.0, 108.0, 101.0, 195.0, 140.0, 140.0, 194.0, 126.0, 176.0, 113.0, 156.0, 90.0, 135.0, 98.0, 100.0, 211.0, 184.0, 111.0, 76.0, 111.0, 245.0, 102.0, 109.0, 89.0, 114.0, 142.0, 114.0, 38.0, 28.0, 158.0, 121.0, 126.0, 92.0, 47.0, 16.0, 158.0, 142.0, 102.0, 61.0, 242.0, 137.0, 143.0, 125.0, 172.0, 144.0, 216.0, 157.0, 128.0, 114.0, 13.0, 118.0, 83.0, 143.0, 116.0, 167.0, 91.0, 76.0, 125.0, 15.0, 73.0, 37.0, 213.0, 110.0, 160.0, 143.0, 68.0, 113.0, 88.0, 124.0, 112.0, 63.0, 110.0, 204.0, 78.0, 151.0, 168.0, 114.0, 110.0, 82.0, 154.0, 134.0, 229.0, 154.0, 109.0, 101.0, 123.0, 54.0, 126.0, 39.0, 128.0, 118.0, 65.0, 130.0, 136.0, 114.0, 215.0, 144.0, 128.0, 117.0, 89.0, 16.0, 95.0, 215.0, 150.0, 114.0, 162.0, 110.0, 17.0, 164.0, 144.0, 115.5, 134.0, 155.0, 119.0, 70.0, 230.0, 13.0, 137.0, 72.0, 69.0, 136.0, 28.0, 103.0, 154.0, 158.0, 33.0, 56.0, 194.0, 195.0, 140.0, 84.0, 170.0, 87.0, 178.0, 186.0, 193.0, 113.0, 140.0, 72.0, 37.0, 170.0, 110.0, 75.0, 104.0, 34.0, 152.0, 99.0, 117.0], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Current<br>total.sulfur.dioxide=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [101.0, 194.0, 126.0, 68.0, 94.0, 99.0, 97.0, 124.0, 95.0, 163.0, 32.0, 191.0, 111.0, 119.0, 127.0, 118.0, 38.0, 61.0, 28.0, 162.0, 212.5, 193.0, 74.0, 147.0, 179.0, 99.0, 127.0, 134.0, 93.0, 148.0, 74.0, 136.0, 178.0, 99.0, 121.0, 129.0, 76.0, 150.0, 81.0, 31.0, 124.0, 85.0, 156.0, 238.0, 27.0, 45.0, 135.0, 86.0, 212.0, 195.0, 18.0, 122.0, 137.0, 59.0, 175.0, 145.0, 181.0, 63.0, 165.0, 64.0, 64.0, 150.0, 105.0, 85.0, 100.0, 127.0, 144.0, 155.0, 89.0, 153.0, 189.0, 100.0, 117.0, 114.0, 113.0, 145.0, 174.0, 161.0, 38.0, 25.0, 87.0, 144.0, 60.0, 162.0, 143.0, 26.0, 55.0, 96.0, 172.0, 132.0, 143.0, 108.0, 115.0, 107.0, 117.0, 97.0, 28.0, 294.0, 10.0, 24.0, 126.0, 101.0, 22.0, 121.0, 189.0, 131.0, 105.0, 109.0, 117.0, 107.0, 75.0, 176.0, 112.0, 76.0, 138.0, 35.0, 153.0, 152.0, 136.0, 59.0, 158.0, 121.0, 44.0, 81.0, 60.0, 16.0, 53.0, 94.0, 26.0, 84.0, 82.0, 38.0, 98.0, 253.0, 74.0, 213.0, 12.0, 60.0, 169.0, 118.0, 166.0, 58.0, 35.0, 153.0, 204.0, 99.0, 190.0, 47.0, 134.0, 116.0, 98.0, 93.0, 94.0, 103.0, 116.0, 164.0, 47.0, 28.0, 92.0, 192.0, 65.0, 28.0, 86.0, 199.0, 20.0, 80.0, 148.0, 29.0, 48.0, 123.0, 100.0, 107.0, 41.0, 9.0, 88.0, 213.0, 129.0, 216.0, 111.0, 43.0, 131.0, 124.0, 117.0, 80.0, 141.0, 35.0, 28.0, 72.0, 170.0, 36.0, 124.0, 149.0, 92.0, 118.0, 133.0, 109.0, 76.0, 89.0, 190.0, 133.0, 98.0, 129.0, 245.0, 84.0, 191.0, 130.0, 99.0, 76.0, 134.0, 183.0, 116.0, 125.0, 34.0, 94.0, 35.0, 124.0, 90.0, 143.0, 174.0, 105.0, 125.0, 244.0, 15.0, 209.0, 189.0, 212.0, 118.0, 161.0, 59.0, 172.0, 65.0, 97.0, 84.0, 104.0, 33.0, 170.0, 99.0, 90.0, 140.0, 150.0, 114.0, 118.0, 132.0, 104.0, 54.0, 19.0, 155.0, 193.0, 111.0, 31.0, 150.0, 143.0, 145.0, 107.0, 105.0, 95.0, 126.0, 73.0, 111.0, 153.0, 15.0, 168.0, 111.0, 181.0, 172.0, 139.0, 110.0, 136.0, 189.0, 135.0, 104.0, 117.0, 51.0, 49.0, 113.0, 39.0, 148.0, 109.0, 102.0, 51.0, 26.0, 122.0, 104.0, 120.0, 114.0, 19.0, 132.0, 73.0, 145.0, 135.0, 47.0, 12.0, 132.0, 87.0, 125.0, 139.0, 94.0, 143.0, 139.0, 97.0, 119.0, 109.0, 163.0, 134.0, 178.0, 44.0, 95.0, 143.0, 180.0, 90.0, 129.0, 72.0, 32.0, 123.0, 81.0, 152.0, 214.0, 126.0, 117.0, 173.0, 204.0, 134.0, 156.0, 134.0, 65.0, 151.0, 114.0, 44.0, 164.0, 125.0, 28.0, 156.0, 28.0, 201.0, 106.0, 116.0, 182.0, 225.0, 142.0, 39.0, 142.0, 98.0, 188.0, 55.0, 27.0, 113.0, 87.0, 140.0, 33.0, 85.0, 158.0, 95.0, 169.0, 103.0, 191.0, 151.0, 28.0, 113.0, 163.0, 26.0, 95.0, 135.0, 55.0, 171.0, 21.0, 206.0, 113.0, 168.0, 173.0, 161.0, 97.0, 227.0, 107.0, 81.0, 17.0, 17.0, 96.0, 118.0, 38.0, 111.0, 118.0, 125.0, 143.0, 189.0, 98.0, 166.0, 135.0, 68.0, 12.0, 131.0, 172.0, 174.0, 128.0, 194.0, 108.0, 35.0, 155.0, 26.0, 87.0, 93.0, 187.0, 150.0, 158.0, 114.0, 120.0, 169.0, 130.0, 109.0, 149.0, 80.0, 23.0, 125.0, 81.0, 55.0, 185.0, 53.0, 245.0, 17.0, 122.0, 130.0, 75.0, 90.0, 34.0, 48.0, 15.0, 118.0, 151.0, 150.0, 85.0, 140.0, 85.0, 155.0, 84.0, 109.0, 17.0, 38.0, 172.0, 178.0, 93.0, 171.0, 229.0, 27.0, 146.0, 104.0, 89.0, 15.0, 60.0, 112.0, 47.0, 48.0, 136.0, 89.0, 141.0, 9.0, 154.0, 159.0, 113.0, 88.0, 158.0, 29.0, 179.0, 92.0, 181.0, 173.0, 160.0, 107.0, 151.0, 79.0, 132.0, 37.0, 170.0, 163.0, 50.0, 135.0, 98.0, 77.0, 172.0, 102.0, 135.0, 123.0, 143.0, 134.0, 85.0, 21.0, 182.0, 132.0, 28.0, 101.0, 25.0, 44.0, 100.0, 129.5, 43.0, 47.0, 40.0, 14.0, 125.0, 46.0, 11.0, 49.0, 118.0, 139.0, 229.0, 114.0, 53.0, 113.0, 200.0, 133.0, 88.0, 128.0, 70.0, 80.0, 113.0, 73.0, 152.0, 104.0, 45.0, 19.0, 206.0, 41.0, 173.0, 14.0, 97.0, 180.0, 147.0, 149.0, 135.0, 116.0, 150.0, 164.5, 21.0, 128.0, 178.0, 101.0, 16.0, 180.0, 14.0, 132.0, 10.0, 189.0, 156.0, 166.0, 10.0, 153.0, 49.0, 99.0, 68.0, 16.0, 80.0, 229.0, 225.0, 104.0, 122.0, 10.0, 57.0, 150.0, 69.0, 76.0, 102.0, 129.0, 95.0, 116.0, 168.0, 19.0, 173.0, 189.0, 142.0, 177.0, 71.0, 140.0, 110.0, 184.0, 152.0, 164.0, 105.0, 117.0, 124.0, 91.0, 181.0, 85.0, 181.0, 168.0, 128.0, 89.0, 167.0, 155.0, 20.0, 212.0, 78.0, 25.0, 35.0, 130.0, 129.0, 122.0, 7.0, 69.0, 120.0, 140.0, 83.0, 136.0, 157.0, 169.0, 221.0, 190.0, 113.0, 91.0, 13.0, 104.0, 136.0, 167.0, 99.0, 103.0, 159.0, 108.0, 91.0, 136.0, 103.0, 213.0, 189.0, 169.0, 107.0, 91.0, 112.0, 82.0, 114.0, 72.0, 84.0, 159.0, 17.0, 128.0, 16.0, 43.0, 87.0, 136.0, 140.0, 144.0, 74.0, 86.0, 145.0, 153.0, 127.0, 228.0, 112.0, 157.0, 140.0, 192.0, 114.0, 111.0], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Reference<br>total.sulfur.dioxide=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [192.0, 65.0, 151.0, 44.0, 77.0, 45.0, 149.0, 23.0, 148.0, 174.0, 110.0, 164.0, 165.0, 163.0, 79.0, 183.0, 144.0, 19.0, 139.0, 12.0, 187.0, 206.0, 12.0, 120.0, 63.0, 54.0, 120.0, 91.0, 214.0, 183.0, 20.0, 106.0, 159.0, 196.0, 192.0, 112.0, 147.0, 130.0, 10.0, 180.0, 94.0, 22.0, 100.0, 84.0, 84.0, 124.0, 105.0, 149.0, 87.0, 53.0, 33.0, 141.0, 168.0, 14.0, 173.0, 220.0, 169.0, 177.0, 69.0, 55.0, 245.0, 179.0, 16.0, 164.0, 113.0, 131.0, 172.0, 133.0, 36.0, 91.0, 183.0, 8.0, 194.0, 117.0, 115.0, 144.0, 233.0, 20.0, 92.0, 87.0, 106.0, 76.0, 243.0, 23.0, 138.0, 38.0, 201.0, 26.0, 72.0, 63.0, 8.0, 152.0, 111.0, 194.0, 195.0, 202.0, 159.0, 133.0, 179.0, 117.0, 195.0, 71.0, 111.0, 197.0, 120.0, 69.0, 115.0, 72.0, 115.0, 150.0, 47.0, 63.0, 15.0, 104.0, 51.0, 92.0, 178.0, 77.0, 84.0, 86.0, 166.0, 49.0, 150.0, 111.0, 204.0, 210.0, 198.0, 42.0, 86.0, 184.0, 33.0, 86.0, 156.0, 189.0, 139.0, 164.0, 60.0, 176.0, 140.0, 141.0, 116.0, 227.0, 75.0, 116.0, 177.0, 197.0, 161.0, 142.0, 48.0, 84.0, 156.0, 26.0, 143.0, 22.0, 104.0, 31.0, 98.0, 165.0, 73.0, 131.0, 101.0, 28.0, 49.0, 113.0, 12.0, 84.0, 179.0, 176.0, 187.0, 180.0, 171.0, 99.0, 121.0, 171.0, 95.0, 16.0, 35.0, 177.0, 55.0, 63.0, 189.0, 12.0, 114.0, 171.0, 179.0, 197.0, 187.0, 34.0, 157.0, 227.0, 115.0, 75.0, 206.0, 50.0, 200.0, 12.0, 151.0, 218.0, 210.0, 130.0, 198.0, 82.0, 82.0, 31.0, 132.0, 157.0, 131.0, 61.0, 13.0, 21.0, 87.0, 148.0, 160.0, 225.0, 173.0, 158.0, 192.0, 131.0, 220.0, 110.0, 24.0, 103.0, 204.0, 111.0, 115.0, 168.0, 93.0, 234.0, 87.0, 13.0, 117.0, 160.0, 103.0, 111.0, 106.0, 143.0, 207.0, 57.0, 210.0, 230.0, 38.0, 162.0, 136.0, 174.0, 103.0, 47.0, 142.0, 154.0, 164.0, 30.0, 155.0, 160.0, 159.0, 19.0, 176.0, 171.0, 90.0, 62.0, 133.0, 18.0, 169.0, 142.0, 173.0, 122.0, 178.0, 149.0, 128.0, 155.0, 58.0, 79.0, 212.0, 193.0, 167.0, 205.0, 186.0, 248.0, 124.0, 188.0, 82.0, 64.0, 14.0, 31.0, 188.0, 61.0, 117.0, 174.0, 123.0, 170.0, 73.0, 198.0, 97.0, 119.0, 307.5, 51.0, 68.0, 60.0, 106.0, 252.0, 177.0, 115.0, 78.0, 102.0, 96.0, 189.0, 72.0, 71.0, 184.0, 23.0, 18.0, 91.0, 150.0, 170.0, 31.0, 196.0, 133.0, 184.0, 282.0, 125.0, 223.0, 37.0, 20.0, 210.0, 60.0, 11.0, 168.0, 136.0, 71.0, 176.0, 65.0, 195.0, 167.0, 78.0, 164.0, 198.0, 131.0, 33.0, 240.0, 27.0, 95.0, 234.0, 87.0, 185.0, 120.0, 48.0, 188.0, 38.0, 195.0, 188.0, 62.0, 184.0, 145.0, 35.0, 197.0, 99.0, 104.0], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Current<br>total.sulfur.dioxide=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [106.0, 196.0, 164.0, 47.0, 156.0, 167.0, 131.0, 14.0, 21.0, 25.0, 111.0, 85.0, 191.0, 207.0, 181.0, 133.0, 143.0, 42.0, 125.0, 131.0, 115.0, 219.0, 185.0, 225.0, 101.0, 110.0, 72.0, 174.0, 66.0, 163.0, 159.0, 166.0, 24.0, 73.0, 164.0, 135.0, 152.0, 39.0, 127.0, 128.0, 101.0, 44.0, 150.0, 171.0, 67.0, 177.0, 112.0, 38.0, 174.0, 40.0, 176.0, 139.0, 91.0, 33.0, 26.0, 49.0, 38.0, 23.0, 145.0, 201.0, 23.0, 216.0, 186.0, 26.0, 91.0, 11.0, 45.0, 34.0, 23.0, 42.0, 16.0, 182.0, 168.0, 23.0, 135.0, 111.0, 255.0, 61.0, 98.0, 84.0, 126.0, 21.0, 187.0, 143.0, 169.0, 59.0, 171.0, 184.0, 174.0, 102.0, 210.0, 134.0, 16.0, 213.0, 54.0, 9.0, 131.0, 148.0, 142.0, 216.0, 88.0, 167.0, 133.0, 38.0, 200.0, 9.0, 90.0, 26.0, 119.0, 197.0, 59.0, 148.0, 30.0, 189.0, 53.0, 166.0, 146.0, 144.0, 196.0, 44.0, 179.0, 132.0, 161.0, 102.0, 20.0, 94.0, 89.0, 123.0, 20.0, 201.0, 55.0, 227.0, 213.0, 56.0, 68.0, 178.0, 121.0, 13.0, 94.0, 126.0, 117.0, 169.0, 95.0, 77.0, 68.0, 149.0, 138.0, 12.0, 140.0, 166.0, 114.0, 212.0, 129.0, 176.0, 145.0, 117.0, 135.0, 183.0, 131.0, 213.0, 55.0, 173.0, 128.0, 116.0, 29.0, 90.0, 56.0, 92.0, 140.0, 150.0, 165.0, 114.0, 86.0, 178.0, 102.0, 107.0, 119.0, 220.0, 219.0, 158.0, 122.0, 157.0, 42.0, 84.0, 162.0, 161.0, 150.0, 116.0, 142.0, 149.0, 86.0, 102.0, 196.0, 83.0, 189.0, 35.0, 89.0, 142.0, 156.0, 97.0, 11.0, 201.0, 162.0, 198.0, 89.0, 183.0, 173.0, 15.0, 138.0, 160.0, 146.0, 106.0, 34.0, 106.0, 222.0, 80.0, 169.0, 172.0, 99.0, 60.0, 142.0, 202.0, 126.0, 216.0, 154.0, 119.0, 43.0, 199.0, 167.0, 143.0, 161.0, 129.0, 138.0, 145.0, 63.0, 167.0, 131.0, 129.0, 213.0, 101.0, 210.0, 31.0, 138.0, 162.0, 117.0, 190.0, 75.0, 105.0, 169.0, 70.0, 42.0, 186.0, 111.0, 153.0, 111.0, 133.0, 162.0, 238.5, 155.0, 38.0, 37.0, 101.0, 168.0, 168.0, 71.0, 186.0, 77.0, 113.0, 117.0, 164.0, 98.0, 28.0, 187.0, 148.0, 107.0, 108.0, 210.0, 72.0, 82.0, 136.0, 87.0, 161.0, 105.0, 197.0, 145.0, 148.0, 109.0, 126.0, 48.0, 66.0, 191.0, 147.0, 151.0, 85.0, 137.0, 31.0, 98.0, 192.0, 167.0, 22.0, 132.0, 47.0, 176.0, 226.0, 210.0, 131.0, 21.0, 105.0, 177.0, 181.0, 58.0, 191.0, 69.0, 145.0, 175.0, 162.0, 157.0, 197.0, 138.0, 80.0, 25.0, 20.0, 124.0, 164.0, 14.0, 151.0, 161.0, 6.0, 200.0, 168.0, 10.0, 166.0, 85.0, 148.0, 28.0, 85.0, 127.0, 133.0, 138.0, 104.0, 180.0, 121.0, 61.0, 63.0, 16.0, 49.0, 122.0, 106.0, 138.0, 112.0, 92.0, 128.0], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Reference\", \"x\": 0.245, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Current\", \"x\": 0.755, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"barmode\": \"overlay\", \"legend\": {\"title\": {\"text\": \"target\"}, \"tracegroupgap\": 0}, \"margin\": {\"t\": 60}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.49], \"title\": {\"text\": \"total.sulfur.dioxide\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.51, 1.0], \"matches\": \"x\", \"title\": {\"text\": \"total.sulfur.dioxide\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"count\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}}}}, {\"id\": \"total.sulfur.dioxide_good\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (ref)\", \"type\": \"scatter\", \"x\": [123.0, 231.0, 126.0, 107.0, 175.0, 65.0, 107.0, 115.0, 121.0, 69.0, 180.0, 9.0, 158.0, 195.0, 211.0, 150.0, 101.0, 43.0, 74.0, 93.0, 202.0, 95.0, 142.0, 177.0, 84.0, 170.0, 93.0, 158.0, 131.0, 75.0, 92.0, 54.0, 92.0, 170.0, 63.0, 130.0, 186.0, 142.0, 99.0, 66.0, 67.0, 148.0, 60.0, 97.0, 211.0, 110.0, 57.0, 142.0, 18.0, 135.0, 110.0, 177.0, 104.0, 189.0, 156.0, 163.0, 73.0, 98.0, 104.0, 127.0, 19.0, 128.0, 144.0, 140.0, 41.0, 24.0, 100.0, 114.0, 160.0, 86.0, 125.0, 86.0, 101.0, 289.0, 94.0, 90.0, 37.0, 83.0, 60.0, 125.0, 189.0, 93.0, 57.0, 124.0, 98.0, 93.0, 143.0, 50.0, 93.0, 17.0, 119.0, 109.0, 148.0, 143.0, 151.0, 116.0, 134.0, 117.0, 85.0, 157.0, 47.0, 200.0, 41.0, 8.0, 95.0, 200.0, 103.0, 133.0, 86.0, 38.0, 103.0, 176.0, 166.0, 49.0, 158.0, 121.0, 110.0, 72.0, 171.0, 44.0, 171.0, 134.0, 228.0, 140.0, 89.0, 31.0, 25.0, 127.0, 147.0, 23.0, 127.0, 106.0, 129.5, 71.0, 115.0, 155.0, 52.0, 23.0, 109.0, 44.0, 109.0, 155.0, 159.0, 161.0, 17.0, 113.0, 85.0, 77.0, 34.0, 109.0, 149.0, 42.0, 143.0, 206.0, 118.0, 111.0, 100.0, 167.0, 112.0, 122.0, 115.0, 91.0, 68.0, 45.0, 137.0, 213.0, 192.0, 142.0, 161.0, 119.0, 20.0, 58.0, 123.0, 97.0, 43.0, 144.0, 31.0, 134.0, 138.0, 33.0, 134.0, 126.0, 15.0, 163.0, 136.0, 127.0, 118.0, 15.0, 194.0, 96.0, 128.0, 11.0, 164.0, 164.0, 94.0, 118.0, 126.0, 113.0, 72.0, 58.0, 124.0, 122.0, 111.0, 46.0, 181.0, 74.0, 22.0, 124.0, 155.0, 146.0, 73.0, 101.0, 121.0, 133.0, 80.0, 128.0, 106.0, 128.0, 160.0, 75.0, 78.0, 158.0, 87.0, 110.0, 25.0, 111.0, 189.0, 156.0, 106.0, 151.0, 186.0, 184.0, 52.0, 139.0, 92.0, 112.0, 150.0, 169.0, 107.0, 128.0, 202.0, 192.0, 114.0, 228.0, 64.0, 193.0, 155.0, 140.0, 167.0, 88.0, 163.0, 229.0, 66.0, 28.0, 29.0, 101.0, 143.0, 168.0, 152.0, 9.0, 146.0, 92.0, 99.0, 144.0, 109.0, 130.0, 114.0, 20.0, 44.0, 96.0, 61.0, 48.0, 81.0, 104.0, 119.0, 156.0, 115.0, 24.0, 11.0, 90.0, 161.0, 146.0, 90.0, 105.0, 93.0, 27.0, 182.0, 186.0, 46.0, 87.0, 84.0, 158.0, 12.0, 138.0, 149.0, 201.0, 34.0, 138.0, 71.0, 103.0, 40.0, 113.0, 98.0, 93.0, 98.0, 44.0, 142.0, 54.0, 155.0, 124.0, 70.0, 174.0, 28.0, 249.5, 90.0, 21.0, 153.0, 142.0, 100.0, 81.0, 104.0, 65.0, 170.0, 164.0, 118.0, 25.0, 81.0, 27.0, 188.0, 151.0, 107.0, 100.0, 19.0, 171.0, 96.0, 167.0, 76.0, 102.0, 159.0, 242.0, 213.0, 49.0, 78.0, 141.0, 22.0, 148.0, 125.0, 37.0, 96.0, 200.0, 143.0, 173.0, 115.0, 57.0, 160.0, 107.0, 79.0, 155.0, 23.0, 135.0, 194.0, 172.0, 57.0, 48.0, 88.0, 112.0, 125.0, 117.0, 31.0, 179.0, 149.0, 67.0, 102.0, 93.0, 78.0, 122.0, 142.0, 43.0, 98.0, 86.0, 50.0, 209.0, 63.0, 247.0, 206.0, 98.0, 95.0, 170.0, 163.0, 93.0, 132.0, 111.0, 158.0, 97.0, 221.0, 42.0, 87.0, 122.0, 178.0, 114.0, 42.0, 62.0, 70.0, 168.0, 78.0, 127.0, 134.0, 171.0, 87.0, 169.0, 140.0, 168.0, 141.0, 78.0, 102.0, 118.0, 152.0, 171.0, 143.0, 168.0, 138.0, 131.0, 206.0, 149.0, 134.0, 114.0, 111.0, 166.0, 165.0, 178.0, 186.0, 79.0, 98.0, 68.0, 146.0, 111.0, 16.0, 54.0, 155.0, 47.0, 102.0, 111.0, 89.0, 125.0, 109.0, 118.0, 231.0, 154.0, 24.0, 83.0, 126.0, 124.0, 70.0, 108.0, 174.0, 38.0, 223.0, 37.0, 101.0, 116.0, 22.0, 66.0, 37.0, 208.0, 138.0, 92.0, 134.0, 143.0, 154.0, 27.0, 42.0, 215.0, 131.0, 169.0, 113.0, 166.0, 105.0, 111.0, 113.0, 98.0, 42.0, 183.0, 118.0, 172.0, 134.0, 117.0, 109.0, 118.0, 88.0, 120.0, 223.0, 94.0, 93.0, 129.0, 11.0, 125.0, 185.0, 197.0, 108.0, 101.0, 195.0, 140.0, 140.0, 194.0, 126.0, 176.0, 113.0, 156.0, 90.0, 135.0, 98.0, 100.0, 211.0, 184.0, 111.0, 76.0, 111.0, 245.0, 102.0, 109.0, 89.0, 114.0, 142.0, 114.0, 38.0, 28.0, 158.0, 121.0, 126.0, 92.0, 47.0, 16.0, 158.0, 142.0, 102.0, 61.0, 242.0, 137.0, 143.0, 125.0, 172.0, 144.0, 216.0, 157.0, 128.0, 114.0, 13.0, 118.0, 83.0, 143.0, 116.0, 167.0, 91.0, 76.0, 125.0, 15.0, 73.0, 37.0, 213.0, 110.0, 160.0, 143.0, 68.0, 113.0, 88.0, 124.0, 112.0, 63.0, 110.0, 204.0, 78.0, 151.0, 168.0, 114.0, 110.0, 82.0, 154.0, 134.0, 229.0, 154.0, 109.0, 101.0, 123.0, 54.0, 126.0, 39.0, 128.0, 118.0, 65.0, 130.0, 136.0, 114.0, 215.0, 144.0, 128.0, 117.0, 89.0, 16.0, 95.0, 215.0, 150.0, 114.0, 162.0, 110.0, 17.0, 164.0, 144.0, 115.5, 134.0, 155.0, 119.0, 70.0, 230.0, 13.0, 137.0, 72.0, 69.0, 136.0, 28.0, 103.0, 154.0, 158.0, 33.0, 56.0, 194.0, 195.0, 140.0, 84.0, 170.0, 87.0, 178.0, 186.0, 193.0, 113.0, 140.0, 72.0, 37.0, 170.0, 110.0, 75.0, 104.0, 34.0, 152.0, 99.0, 117.0], \"xaxis\": \"x\", \"y\": [0.8156061324462894, 0.42491310922683634, 0.8867827646463432, 0.8014995238430205, 0.30499958310650876, 0.5817355832705369, 0.959171062334887, 0.7854416128369749, 0.9085690698200813, 0.8998600376511439, 0.6341165000693628, 0.412102187638673, 0.7643629411050379, 0.4710001938005606, 0.40182653035141874, 0.40438056362905367, 0.8870480016118494, 0.3650667978415713, 0.9064321709292111, 0.9327245345966092, 0.6458420185168736, 0.8821841129047617, 0.6704018506542557, 0.7655671181822064, 0.8616986618932058, 0.48774537944210006, 0.9637355036179479, 0.6794204065079696, 0.6044835155949141, 0.7867954023600708, 0.9137982268836646, 0.5867502063434873, 0.8048584290077971, 0.9718511071053526, 0.9627192884041744, 0.7978623718349598, 0.6091120966723917, 0.8943338178728011, 0.8853376735027229, 0.9045563504021151, 0.9264844632598176, 0.6342457655367447, 0.9414033426130164, 0.5636516403732365, 0.5172967922101196, 0.4836896337264441, 0.35199620689495453, 0.788779954566273, 0.9696552399248426, 0.772496554239754, 0.8132656157621138, 0.4539090261140653, 0.9333708926412786, 0.679765045723866, 0.48457442622955804, 0.4248820606938153, 0.6737819616086004, 0.8780741425819777, 0.38340602447337646, 0.90634085684919, 0.5574014604752268, 0.6804147683859246, 0.9077110088845216, 0.7718472635729894, 0.4717552048891654, 0.22222808308441652, 0.8616549355667619, 0.705749071892896, 0.4699129352300819, 0.9680524782819758, 0.8891353183282249, 0.9466602521798594, 0.8553382520847058, 0.7430243903066251, 0.6616131862201935, 0.6919609500216202, 0.96565744679506, 0.913108907487878, 0.5395521774612226, 0.9026238558501023, 0.6550941529376255, 0.9757876320152292, 0.8833495792027257, 0.6666029765862381, 0.8504582120840628, 0.9320215595878566, 0.7639947574915884, 0.6085229656221847, 0.9557131606798471, 0.46184432615952054, 0.5642658412077981, 0.8815615400732472, 0.7189203536918151, 0.9301020530176726, 0.7341394174346678, 0.7759189559372703, 0.8448078654733812, 0.9012666081120407, 0.8926028620066223, 0.5287492720273277, 0.6874206920638863, 0.37408584674942635, 0.8348370105186077, 0.8697567261320243, 0.9175759024810304, 0.44644098895981, 0.8874384748400057, 0.7787567487441118, 0.9416122482572158, 0.3265229243180111, 0.9308095750950773, 0.42267134533232753, 0.43068181214270274, 0.8727308285810839, 0.7201611177732586, 0.8430904589044517, 0.8140617541555761, 0.9456747441572588, 0.6672663325862807, 0.8756470416862959, 0.518871521713375, 0.7040615347784164, 0.4957960231649875, 0.6250130361556073, 0.27413726132188326, 0.5193133578087885, 0.37656641690434584, 0.5808048103476511, 0.7917827117482167, 0.36569143480873245, 0.7232542293832885, 0.9785934574433302, 0.5715075300165849, 0.8182555969893297, 0.5448461144048058, 0.9491291995847589, 0.4833587957991669, 0.3189279754564957, 0.9184825510014271, 0.5524830505676419, 0.9600429304649183, 0.7818180966165994, 0.7962710274484252, 0.7569429870375118, 0.46184432615952054, 0.7641514270390748, 0.9486763575522457, 0.8086368705092697, 0.6784536879503494, 0.6877019790624462, 0.6082670858563528, 0.6053794617794684, 0.6319330693089359, 0.4982105707488519, 0.6787928880949093, 0.9231980717613485, 0.8831230955067948, 0.6845485656817341, 0.8799204262605215, 0.9164563829924386, 0.7819268199067826, 0.23469888428232324, 0.9492377841603665, 0.8826092272015389, 0.6360541596480074, 0.5184081252698399, 0.6400126753125241, 0.542646305979658, 0.4479501208302092, 0.7783171875827786, 0.7867712153112567, 0.5236605417423803, 0.6959846197179591, 0.7925023358445066, 0.6683189355892497, 0.18737025221649042, 0.42506327048176057, 0.7272596040941706, 0.7314191754306454, 0.4827891324637794, 0.6649341228620356, 0.9038332731164471, 0.9588917860646077, 0.8945194928389463, 0.49833043835950624, 0.7997712594855277, 0.8577935987172323, 0.7622736922026153, 0.8039391974899521, 0.7396811504731934, 0.8115340233127679, 0.801728888664367, 0.738451208106372, 0.5859674792922007, 0.1865203674848816, 0.8773430435604171, 0.36888329310067386, 0.8651817982269884, 0.9067615420962557, 0.8594983988587351, 0.7437750884018276, 0.9145224932934428, 0.9135679891815164, 0.8001832456898428, 0.6860977766129374, 0.9377826008632761, 0.9300369611912853, 0.6997062971069969, 0.5693182102579236, 0.3404656140239559, 0.7160591142088384, 0.7953146078011, 0.8869803873277935, 0.7639982823097876, 0.8681285227071118, 0.576868797021353, 0.93035102563313, 0.8375600281828176, 0.8279918435672958, 0.9266689436294401, 0.7559862346636359, 0.5099889666930224, 0.6914445842613687, 0.9651950326885705, 0.87851968214492, 0.8499702807396289, 0.4685752957996948, 0.7241546992314323, 0.7848147251007912, 0.7341394174346678, 0.7008877443692281, 0.340588975625529, 0.5013021766499856, 0.8321174529331695, 0.8818378666553491, 0.9176909075187759, 0.8634678749265305, 0.7436082905772717, 0.9343776659412377, 0.7668809937296346, 0.6243383802582345, 0.5332560471205093, 0.6907315465649003, 0.16626803588025432, 0.1668542888532837, 0.7408943843163458, 0.5221312328975666, 0.7457559475413279, 0.46389636934606376, 0.9292627865919654, 0.5268311186840582, 0.4244151934213653, 0.643310536612302, 0.8577438313980266, 0.7816208399762355, 0.8553382520847058, 0.7010035672814305, 0.5242572272016158, 0.9187320011579697, 0.8703498177621264, 0.6713045345576062, 0.9137982268836646, 0.8614414457916845, 0.9445662266054761, 0.8808216590199034, 0.7386378115490353, 0.8873009977622293, 0.9157094897337859, 0.6606038558129893, 0.9296803968514485, 0.8864322240790464, 0.5146720135715994, 0.8720710714485208, 0.9415427660945741, 0.9138701141498735, 0.6527559092576063, 0.8751970040938668, 0.9249766460056568, 0.801728888664367, 0.6575848465963361, 0.6934824043184128, 0.8619113960143526, 0.9419078024651042, 0.9591721389341828, 0.8397407150753159, 0.9084383840076588, 0.4963969309336195, 0.7359588175524252, 0.3531961907069324, 0.9279819479140234, 0.7752976919572294, 0.8665226278427577, 0.9515211055933231, 0.7314191754306454, 0.890886918514299, 0.3235491032739525, 0.3719939405423586, 0.6323804178173072, 0.8398006965792015, 0.8239469134189235, 0.8592101816891015, 0.7615002907198236, 0.8688259750909261, 0.8718104001390852, 0.5838074755684882, 0.8756470416862959, 0.901850575196968, 0.9451930143658351, 0.6253812669856891, 0.5890764576710766, 0.4921052500998711, 0.4862070578416567, 0.9170647663398394, 0.7035583451969506, 0.8476385889092957, 0.5603058978573646, 0.5810606890504925, 0.9088604673919816, 0.8903252600075929, 0.944267921154058, 0.9435968591480925, 0.938237366988842, 0.9357286047893738, 0.7961386682142712, 0.7840233885688647, 0.2513590507613302, 0.7389284097502917, 0.9053472250810051, 0.44438282424164377, 0.862281110352348, 0.8021059248496223, 0.9152740930046814, 0.643737358401971, 0.8540304955499701, 0.8613418170006786, 0.6911084183178322, 0.8848367871057808, 0.8387883096682573, 0.5942651630821018, 0.65691393717736, 0.6369979527510315, 0.8280658524313272, 0.9640736168216585, 0.6546311715671466, 0.5599819536107853, 0.48348053317652906, 0.7668016587569692, 0.03620763244300767, 0.7364400865449663, 0.37408584674942635, 0.8767503774172, 0.8743962287172513, 0.8751970040938668, 0.8833495792027257, 0.7091886355621774, 0.87006937054451, 0.7904001815220257, 0.8761418339280951, 0.8306834851111597, 0.7531715889012326, 0.38181207472529843, 0.6490458991820136, 0.9138057013338913, 0.9046222904886461, 0.17956061692355052, 0.7506163079023257, 0.8963285795381793, 0.8848361664653354, 0.9283037217377402, 0.45996158699034445, 0.7290858434196763, 0.8319094967702583, 0.6578018675312727, 0.18727567457681707, 0.8673410249845035, 0.9453298670648187, 0.9446538464906173, 0.19605573045952288, 0.6723831041639817, 0.3438281302059518, 0.37858973820495484, 0.6953170483296187, 0.21463507152544156, 0.26963792069965237, 0.3280912492037974, 0.8399932187801539, 0.420387898633768, 0.36522500752858966, 0.5810560693343539, 0.9306346767722963, 0.7167716539092029, 0.656736106921484, 0.5549139996760648, 0.6909161521388689, 0.591904263202073, 0.884703171197362, 0.866402281883595, 0.7582770814524421, 0.8990773411030794, 0.1818065866116437, 0.6222165686186035, 0.17261914235374884, 0.8156064679757086, 0.4851213943917703, 0.8871292211128762, 0.8398494053952754, 0.703270618172154, 0.6305543892506115, 0.7494149477175548, 0.1532408287022325, 0.6159732902773407, 0.738220551127759, 0.8354520044441791, 0.8536870432671441, 0.5751476712690671, 0.9077719201719568, 0.7878515691455199, 0.6672663325862807, 0.45293736875445273, 0.17058553029544155, 0.747933377844996, 0.8400163125056676, 0.4516778718827729, 0.6082670858563528, 0.8401843469141149, 0.7636885291754726, 0.789170795337903, 0.8128612802083497, 0.7522530659814418, 0.8086757686066508, 0.8356255123032285, 0.9241779635105248, 0.9674588597049086, 0.9368885694202199, 0.4990764491242286, 0.876561204324957, 0.554264192243629, 0.5967716244634195, 0.9060244606340249, 0.8401608718856799, 0.7329750583133859, 0.8021769878309102, 0.9316817655017511, 0.45488322534173153, 0.798578398438993, 0.7425236774748816, 0.5742682328784404, 0.4937681935814938, 0.8972164286692267, 0.8914273370768748, 0.9377613518261881, 0.8862258850530264, 0.8591757581361523, 0.7410678096850266, 0.6822336012657398, 0.9201658505843877, 0.6982578893131915, 0.5746709232170782, 0.7626532952948841, 0.7137703530889916, 0.7520971196461234, 0.4473853625959922, 0.7957460056304991, 0.4833174871501707, 0.8758467705785958, 0.4689303842787964, 0.6133612564737879, 0.8568681391705205, 0.6835133967314007, 0.9732070839986944, 0.21435716257549006, 0.5761668962420043, 0.4055433603128916, 0.3743394998756179, 0.9118635774953143, 0.964551884718591, 0.9306459334511011, 0.8424802355113449, 0.7739144871152517, 0.6872688771534424, 0.8590561833388345, 0.6714384475466295, 0.6408669500407106, 0.5203550269219845, 0.2856853969697174, 0.857760555506807, 0.9307094503226838, 0.6787928880949093, 0.8308635255795866, 0.29271374211533296, 0.6769315553524353, 0.23831547366416572, 0.5895099457120908, 0.8994675076574448, 0.8893400405584444, 0.8456825404777587, 0.5399612081435882, 0.6188649121485582, 0.9281492942813848, 0.7611740601422801, 0.46550237374781617, 0.8896861436466836, 0.9038901015569306, 0.5044440900554997, 0.9215480939667524, 0.6930273792518707, 0.8723244804196287, 0.5624338775604165, 0.9226297661236537, 0.8469231754225917, 0.9430557295321259, 0.9097116306258912, 0.5988707702267543, 0.3813853072548755, 0.8843832309478876, 0.9006952500629406, 0.918975987201669, 0.18997930334445084, 0.8923106748541326, 0.8461388699436441, 0.5973439234355874, 0.9544642924744549, 0.91770416680597, 0.9177239854204658, 0.17584552180125673, 0.9240099144459667, 0.48524948024905407, 0.8889685222180134, 0.5785503824403398, 0.7511953459672914, 0.6887596776945688, 0.6717539058356753, 0.7168761391602206, 0.7134478068952186, 0.834626350903405, 0.5715867980362679, 0.6588392688727011, 0.9488572786900573, 0.8920529250761863, 0.8891353183282249, 0.707981940789761, 0.926348680038428, 0.631489487929038, 0.7443856388661001, 0.9260754381930228, 0.9544642924744549, 0.8497401318990601, 0.5604010177433062, 0.8036334301115304, 0.7898153537185114, 0.8491431337122072, 0.6570881560807702, 0.8389599143569951, 0.7944137576415592, 0.8132668978866627, 0.44714680104169846, 0.7978021044641371, 0.41921696608658454, 0.38876183891604754, 0.9248463736054193, 0.4277915265084825, 0.6345107008491314, 0.8008942533173764, 0.5087430598332189, 0.9414938992689892, 0.6922115882765215, 0.8296175750175913, 0.8593339228153332, 0.8975141534758351, 0.5977126281557783, 0.9279478536756302, 0.6485770817571253, 0.8905823996589662, 0.9332072841984264, 0.9432461110830079, 0.9410120781436498, 0.6339696776630096, 0.7120962557761497, 0.5841709037351369, 0.5928970840420333, 0.9006589732900512, 0.936371533648048, 0.6907852379101131, 0.7675780198071424, 0.9444587893431046, 0.4702336163336472, 0.8925536722101626, 0.8158978708906081, 0.822780392485108, 0.8037335327290217, 0.8382351003285965, 0.8941557358589171, 0.4796498334522667, 0.926348680038428, 0.6842118015950474, 0.6463580983468415, 0.8292048071278182, 0.5834426687867836, 0.8419845362148763, 0.2431563391580561, 0.7763142135369961, 0.9390550746437164, 0.7774903237071782, 0.8141232663130791, 0.9444089886680379, 0.430401459478284, 0.9192677156927759, 0.8427595869840984, 0.87120858451521, 0.5693182102579236, 0.820012080301976, 0.58719119911586, 0.42769376643096113, 0.3542595869275313, 0.89579938191327, 0.8743523014696554, 0.7820497043505815, 0.5279069501129625, 0.8869579700149332, 0.45488774279476296, 0.8514781135508903, 0.8278297091497892, 0.663749097381813, 0.5132851713944618, 0.4906566565015208, 0.6415219885510332, 0.6991293681294938, 0.8150539074042624, 0.5800669536763935, 0.9583771200922359, 0.7366090055976814, 0.5747817696023392, 0.5315376696882942, 0.8074446941396305, 0.9038901015569306, 0.9087015650331977, 0.6697291810323083, 0.5800669536763935, 0.8807270543114014, 0.5135845984304893, 0.9352791850238339, 0.36120709973337456, 0.6206709330576408, 0.906286252315459, 0.7937202818717513], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [192.0, 65.0, 151.0, 44.0, 77.0, 45.0, 149.0, 23.0, 148.0, 174.0, 110.0, 164.0, 165.0, 163.0, 79.0, 183.0, 144.0, 19.0, 139.0, 12.0, 187.0, 206.0, 12.0, 120.0, 63.0, 54.0, 120.0, 91.0, 214.0, 183.0, 20.0, 106.0, 159.0, 196.0, 192.0, 112.0, 147.0, 130.0, 10.0, 180.0, 94.0, 22.0, 100.0, 84.0, 84.0, 124.0, 105.0, 149.0, 87.0, 53.0, 33.0, 141.0, 168.0, 14.0, 173.0, 220.0, 169.0, 177.0, 69.0, 55.0, 245.0, 179.0, 16.0, 164.0, 113.0, 131.0, 172.0, 133.0, 36.0, 91.0, 183.0, 8.0, 194.0, 117.0, 115.0, 144.0, 233.0, 20.0, 92.0, 87.0, 106.0, 76.0, 243.0, 23.0, 138.0, 38.0, 201.0, 26.0, 72.0, 63.0, 8.0, 152.0, 111.0, 194.0, 195.0, 202.0, 159.0, 133.0, 179.0, 117.0, 195.0, 71.0, 111.0, 197.0, 120.0, 69.0, 115.0, 72.0, 115.0, 150.0, 47.0, 63.0, 15.0, 104.0, 51.0, 92.0, 178.0, 77.0, 84.0, 86.0, 166.0, 49.0, 150.0, 111.0, 204.0, 210.0, 198.0, 42.0, 86.0, 184.0, 33.0, 86.0, 156.0, 189.0, 139.0, 164.0, 60.0, 176.0, 140.0, 141.0, 116.0, 227.0, 75.0, 116.0, 177.0, 197.0, 161.0, 142.0, 48.0, 84.0, 156.0, 26.0, 143.0, 22.0, 104.0, 31.0, 98.0, 165.0, 73.0, 131.0, 101.0, 28.0, 49.0, 113.0, 12.0, 84.0, 179.0, 176.0, 187.0, 180.0, 171.0, 99.0, 121.0, 171.0, 95.0, 16.0, 35.0, 177.0, 55.0, 63.0, 189.0, 12.0, 114.0, 171.0, 179.0, 197.0, 187.0, 34.0, 157.0, 227.0, 115.0, 75.0, 206.0, 50.0, 200.0, 12.0, 151.0, 218.0, 210.0, 130.0, 198.0, 82.0, 82.0, 31.0, 132.0, 157.0, 131.0, 61.0, 13.0, 21.0, 87.0, 148.0, 160.0, 225.0, 173.0, 158.0, 192.0, 131.0, 220.0, 110.0, 24.0, 103.0, 204.0, 111.0, 115.0, 168.0, 93.0, 234.0, 87.0, 13.0, 117.0, 160.0, 103.0, 111.0, 106.0, 143.0, 207.0, 57.0, 210.0, 230.0, 38.0, 162.0, 136.0, 174.0, 103.0, 47.0, 142.0, 154.0, 164.0, 30.0, 155.0, 160.0, 159.0, 19.0, 176.0, 171.0, 90.0, 62.0, 133.0, 18.0, 169.0, 142.0, 173.0, 122.0, 178.0, 149.0, 128.0, 155.0, 58.0, 79.0, 212.0, 193.0, 167.0, 205.0, 186.0, 248.0, 124.0, 188.0, 82.0, 64.0, 14.0, 31.0, 188.0, 61.0, 117.0, 174.0, 123.0, 170.0, 73.0, 198.0, 97.0, 119.0, 307.5, 51.0, 68.0, 60.0, 106.0, 252.0, 177.0, 115.0, 78.0, 102.0, 96.0, 189.0, 72.0, 71.0, 184.0, 23.0, 18.0, 91.0, 150.0, 170.0, 31.0, 196.0, 133.0, 184.0, 282.0, 125.0, 223.0, 37.0, 20.0, 210.0, 60.0, 11.0, 168.0, 136.0, 71.0, 176.0, 65.0, 195.0, 167.0, 78.0, 164.0, 198.0, 131.0, 33.0, 240.0, 27.0, 95.0, 234.0, 87.0, 185.0, 120.0, 48.0, 188.0, 38.0, 195.0, 188.0, 62.0, 184.0, 145.0, 35.0, 197.0, 99.0, 104.0], \"xaxis\": \"x\", \"y\": [0.2802292104526322, 0.9455194119275858, 0.4978743212349556, 0.5289145624519528, 0.28439238707197784, 0.2033309570226689, 0.27345747478543325, 0.8322873304845451, 0.389055896812549, 0.3675472469853882, 0.5781933746273124, 0.7401955299744071, 0.44969671697605845, 0.4367887814338696, 0.31593955341667695, 0.3775624358859999, 0.19282181046294666, 0.048451763306065584, 0.6005928650583868, 0.032225376113695775, 0.427412413738938, 0.23973251442015217, 0.13890126550157303, 0.8613925272127, 0.329663916828638, 0.19359965390713213, 0.6827271716759634, 0.1960905505555538, 0.08135735686643118, 0.39737240301928484, 0.13902987396822816, 0.6514166433739288, 0.6994753721471061, 0.7140886736258081, 0.5021795028970708, 0.48743245558712556, 0.5731139673640956, 0.8820820642542792, 0.559972149724866, 0.5061565591493914, 0.5066810377847554, 0.833805652807593, 0.6979972163580744, 0.3177574231538272, 0.13068190592986567, 0.758876109553896, 0.5681062961269688, 0.715544821914063, 0.762062625203523, 0.4464438677531786, 0.20995974230910305, 0.5262622410710028, 0.39442669669188163, 0.2537324982988368, 0.6775437642744659, 0.23876321589577687, 0.6369158982934647, 0.38960060362966165, 0.6034323722874255, 0.7769991715799629, 0.15199748354041337, 0.5641412449951732, 0.7590466800561823, 0.5969347905931296, 0.1048362779837843, 0.7217824369593382, 0.2662339163773806, 0.16472378978351135, 0.37760124376932414, 0.7071736299639594, 0.3436862995931572, 0.8384434752264291, 0.3635333644877426, 0.7813188949129265, 0.7279369976219869, 0.5641098847382463, 0.3863964747623771, 0.9209913370067284, 0.1477144681640183, 0.8809374658555192, 0.6533168894759348, 0.8873477284758582, 0.3697306267878623, 0.28319023347825867, 0.5203701741750857, 0.5523747693308857, 0.6387521731780509, 0.3881380695009739, 0.8487896327149285, 0.4636606453307818, 0.8384434752264291, 0.558266603669778, 0.21657231888677728, 0.3635333644877426, 0.5512671313974766, 0.5051039398599867, 0.5827915753039158, 0.49441682850108926, 0.47309171914705017, 0.6262595591688196, 0.5508242483721094, 0.47332791509789995, 0.7117569366896692, 0.3933786516273859, 0.16465066549244003, 0.7490394132223248, 0.769261050002088, 0.7431932405995126, 0.3141000916210982, 0.723735045552473, 0.6484132891031948, 0.688519894019609, 0.40496704226994307, 0.5803736122960511, 0.6327801522745691, 0.45115706990411364, 0.37268733756108086, 0.9009693101135351, 0.06496389958099598, 0.44431713201158524, 0.39960831974332744, 0.8662156944598043, 0.31018081106061823, 0.5339551117365043, 0.33311273919547707, 0.400132762133902, 0.8528754522806217, 0.14419347879543085, 0.11672350429510901, 0.44556702529145975, 0.6160120899414699, 0.13766892845409207, 0.5517204028384314, 0.5232178919035022, 0.35483403305733974, 0.4900213704561591, 0.8854578072659228, 0.43084122675663034, 0.7601186327653665, 0.14072030431570776, 0.6186690618327106, 0.5245054232921349, 0.7326259458716644, 0.5690781983520095, 0.4018508815425063, 0.24877469563805235, 0.7952501197393639, 0.8766221356386195, 0.303451532996695, 0.5357745481647883, 0.7096524147827454, 0.20877177283968149, 0.8635610141758273, 0.46736762313881036, 0.6061151992073851, 0.113015272873705, 0.40446014603085867, 0.6332606063976143, 0.648705381890928, 0.42186952587750404, 0.8047913565308571, 0.3017058309841093, 0.38406990132164637, 0.33494193042999065, 0.19929939967121216, 0.8624919783238055, 0.528785836409086, 0.43084122675663034, 0.47042159929499583, 0.5061565591493914, 0.5759491569657543, 0.8468794444363914, 0.20342296359496542, 0.5170831534483544, 0.3666753044655067, 0.6131723001375537, 0.4410646109528086, 0.6903416342484309, 0.3866428492574258, 0.4636606453307818, 0.4525459302795702, 0.03199256040434073, 0.7029629492254846, 0.2433141614541866, 0.548755973819273, 0.3775060302547258, 0.06593060991448157, 0.8745624549148976, 0.22931948662359403, 0.27267688907931714, 0.589328430619086, 0.8007160756317941, 0.5525637789187225, 0.5008522318356121, 0.4556212410144909, 0.17391722008742402, 0.43574637053357784, 0.3237440077649342, 0.6071692164257629, 0.6925152430641841, 0.592675381607996, 0.43854150134957587, 0.43854150134957587, 0.42437112972565305, 0.8061118855433299, 0.35195592295594336, 0.7605370065149419, 0.38898578429124253, 0.67510953655807, 0.872979709380305, 0.710510994258769, 0.720290290780972, 0.4820787970895852, 0.42019280799979697, 0.4304380754474639, 0.25285023254778977, 0.3238056884730761, 0.39471961640683584, 0.09510031985475974, 0.367046376808582, 0.21500793651835448, 0.8705359023101334, 0.6100742529031461, 0.6226449432624995, 0.7279369976219869, 0.3643494054700089, 0.09992017521484964, 0.41475515148757036, 0.6462260464983366, 0.14102909592513518, 0.48949585696458414, 0.5239520436918008, 0.6084413884537807, 0.5655473856702703, 0.9517420512476797, 0.7489379515982664, 0.4647937384849751, 0.7915321263825208, 0.44112279258530757, 0.5734340256727429, 0.6604471727860799, 0.4845203185458914, 0.6968730453869196, 0.5315374962198609, 0.8685951485887234, 0.6242442748350044, 0.2912097196987059, 0.7725938221565348, 0.2067629769731588, 0.30221725334927335, 0.13129342562285412, 0.6467789443522378, 0.6994753721471061, 0.11825382206919556, 0.41022417118631593, 0.4882665226122541, 0.7732287086973071, 0.25374762405010176, 0.49441682850108926, 0.3723877205427743, 0.652330313245635, 0.43667799883041203, 0.5964718913578133, 0.55172276504346, 0.24113559934961917, 0.8243980268882987, 0.7263843594269437, 0.43535214809021755, 0.8721122798612579, 0.18723914490145582, 0.6486906676970999, 0.11576704656818047, 0.4328241622975616, 0.491481212420291, 0.5264345378086769, 0.33856526784971647, 0.2967410926251248, 0.581398831228375, 0.5973776665460488, 0.6195406102170065, 0.37782717658841725, 0.323061133240968, 0.17420808473594895, 0.19634770547538957, 0.46492234760650425, 0.49613167963272686, 0.5812209036149294, 0.6057291775435286, 0.63414717387345, 0.5702687187355167, 0.8604975146328253, 0.6309022132706124, 0.48732991249542923, 0.6887148870948692, 0.41581945293096145, 0.5706760596351739, 0.4831274653996314, 0.06684727567316755, 0.49090643211649887, 0.15191610726090596, 0.2711405311223577, 0.7653618545702112, 0.09266565137124261, 0.4554350627407873, 0.19698919164573708, 0.6930185080649685, 0.5227537922811563, 0.50434568709929, 0.7082092780767422, 0.46058046365566996, 0.6735723234187477, 0.4285936050615775, 0.323061133240968, 0.5168500865319015, 0.6161307914674419, 0.23456444218973552, 0.3192004782541023, 0.21968945907811915, 0.5028183230931117, 0.43371621376298963, 0.6744209213341115, 0.5940260419772637, 0.13783310426722128, 0.5136444387530009, 0.5508647999875032, 0.4955911012838212, 0.9814394195009358, 0.8260225289794664, 0.17965956338109995, 0.46844896472597397, 0.6048119589659149, 0.3289160319090978, 0.2454606394453749, 0.7497022835596558, 0.683485355417811, 0.20995974230910305, 0.23504578258460665, 0.37175956099497537, 0.4875530438829156, 0.24982584224249993, 0.6282829625348888, 0.4520795162158371, 0.8200372413039435, 0.12832513643528837, 0.5299630655130737, 0.29552777318700446, 0.24021937552346023, 0.5429028773737552, 0.6311869746243346, 0.4145977043912777, 0.39329840463575844, 0.39070335653410526, 0.4286990948130573, 0.846836560604146, 0.6880850122626078], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (curr)\", \"type\": \"scatter\", \"x\": [101.0, 194.0, 126.0, 68.0, 94.0, 99.0, 97.0, 124.0, 95.0, 163.0, 32.0, 191.0, 111.0, 119.0, 127.0, 118.0, 38.0, 61.0, 28.0, 162.0, 212.5, 193.0, 74.0, 147.0, 179.0, 99.0, 127.0, 134.0, 93.0, 148.0, 74.0, 136.0, 178.0, 99.0, 121.0, 129.0, 76.0, 150.0, 81.0, 31.0, 124.0, 85.0, 156.0, 238.0, 27.0, 45.0, 135.0, 86.0, 212.0, 195.0, 18.0, 122.0, 137.0, 59.0, 175.0, 145.0, 181.0, 63.0, 165.0, 64.0, 64.0, 150.0, 105.0, 85.0, 100.0, 127.0, 144.0, 155.0, 89.0, 153.0, 189.0, 100.0, 117.0, 114.0, 113.0, 145.0, 174.0, 161.0, 38.0, 25.0, 87.0, 144.0, 60.0, 162.0, 143.0, 26.0, 55.0, 96.0, 172.0, 132.0, 143.0, 108.0, 115.0, 107.0, 117.0, 97.0, 28.0, 294.0, 10.0, 24.0, 126.0, 101.0, 22.0, 121.0, 189.0, 131.0, 105.0, 109.0, 117.0, 107.0, 75.0, 176.0, 112.0, 76.0, 138.0, 35.0, 153.0, 152.0, 136.0, 59.0, 158.0, 121.0, 44.0, 81.0, 60.0, 16.0, 53.0, 94.0, 26.0, 84.0, 82.0, 38.0, 98.0, 253.0, 74.0, 213.0, 12.0, 60.0, 169.0, 118.0, 166.0, 58.0, 35.0, 153.0, 204.0, 99.0, 190.0, 47.0, 134.0, 116.0, 98.0, 93.0, 94.0, 103.0, 116.0, 164.0, 47.0, 28.0, 92.0, 192.0, 65.0, 28.0, 86.0, 199.0, 20.0, 80.0, 148.0, 29.0, 48.0, 123.0, 100.0, 107.0, 41.0, 9.0, 88.0, 213.0, 129.0, 216.0, 111.0, 43.0, 131.0, 124.0, 117.0, 80.0, 141.0, 35.0, 28.0, 72.0, 170.0, 36.0, 124.0, 149.0, 92.0, 118.0, 133.0, 109.0, 76.0, 89.0, 190.0, 133.0, 98.0, 129.0, 245.0, 84.0, 191.0, 130.0, 99.0, 76.0, 134.0, 183.0, 116.0, 125.0, 34.0, 94.0, 35.0, 124.0, 90.0, 143.0, 174.0, 105.0, 125.0, 244.0, 15.0, 209.0, 189.0, 212.0, 118.0, 161.0, 59.0, 172.0, 65.0, 97.0, 84.0, 104.0, 33.0, 170.0, 99.0, 90.0, 140.0, 150.0, 114.0, 118.0, 132.0, 104.0, 54.0, 19.0, 155.0, 193.0, 111.0, 31.0, 150.0, 143.0, 145.0, 107.0, 105.0, 95.0, 126.0, 73.0, 111.0, 153.0, 15.0, 168.0, 111.0, 181.0, 172.0, 139.0, 110.0, 136.0, 189.0, 135.0, 104.0, 117.0, 51.0, 49.0, 113.0, 39.0, 148.0, 109.0, 102.0, 51.0, 26.0, 122.0, 104.0, 120.0, 114.0, 19.0, 132.0, 73.0, 145.0, 135.0, 47.0, 12.0, 132.0, 87.0, 125.0, 139.0, 94.0, 143.0, 139.0, 97.0, 119.0, 109.0, 163.0, 134.0, 178.0, 44.0, 95.0, 143.0, 180.0, 90.0, 129.0, 72.0, 32.0, 123.0, 81.0, 152.0, 214.0, 126.0, 117.0, 173.0, 204.0, 134.0, 156.0, 134.0, 65.0, 151.0, 114.0, 44.0, 164.0, 125.0, 28.0, 156.0, 28.0, 201.0, 106.0, 116.0, 182.0, 225.0, 142.0, 39.0, 142.0, 98.0, 188.0, 55.0, 27.0, 113.0, 87.0, 140.0, 33.0, 85.0, 158.0, 95.0, 169.0, 103.0, 191.0, 151.0, 28.0, 113.0, 163.0, 26.0, 95.0, 135.0, 55.0, 171.0, 21.0, 206.0, 113.0, 168.0, 173.0, 161.0, 97.0, 227.0, 107.0, 81.0, 17.0, 17.0, 96.0, 118.0, 38.0, 111.0, 118.0, 125.0, 143.0, 189.0, 98.0, 166.0, 135.0, 68.0, 12.0, 131.0, 172.0, 174.0, 128.0, 194.0, 108.0, 35.0, 155.0, 26.0, 87.0, 93.0, 187.0, 150.0, 158.0, 114.0, 120.0, 169.0, 130.0, 109.0, 149.0, 80.0, 23.0, 125.0, 81.0, 55.0, 185.0, 53.0, 245.0, 17.0, 122.0, 130.0, 75.0, 90.0, 34.0, 48.0, 15.0, 118.0, 151.0, 150.0, 85.0, 140.0, 85.0, 155.0, 84.0, 109.0, 17.0, 38.0, 172.0, 178.0, 93.0, 171.0, 229.0, 27.0, 146.0, 104.0, 89.0, 15.0, 60.0, 112.0, 47.0, 48.0, 136.0, 89.0, 141.0, 9.0, 154.0, 159.0, 113.0, 88.0, 158.0, 29.0, 179.0, 92.0, 181.0, 173.0, 160.0, 107.0, 151.0, 79.0, 132.0, 37.0, 170.0, 163.0, 50.0, 135.0, 98.0, 77.0, 172.0, 102.0, 135.0, 123.0, 143.0, 134.0, 85.0, 21.0, 182.0, 132.0, 28.0, 101.0, 25.0, 44.0, 100.0, 129.5, 43.0, 47.0, 40.0, 14.0, 125.0, 46.0, 11.0, 49.0, 118.0, 139.0, 229.0, 114.0, 53.0, 113.0, 200.0, 133.0, 88.0, 128.0, 70.0, 80.0, 113.0, 73.0, 152.0, 104.0, 45.0, 19.0, 206.0, 41.0, 173.0, 14.0, 97.0, 180.0, 147.0, 149.0, 135.0, 116.0, 150.0, 164.5, 21.0, 128.0, 178.0, 101.0, 16.0, 180.0, 14.0, 132.0, 10.0, 189.0, 156.0, 166.0, 10.0, 153.0, 49.0, 99.0, 68.0, 16.0, 80.0, 229.0, 225.0, 104.0, 122.0, 10.0, 57.0, 150.0, 69.0, 76.0, 102.0, 129.0, 95.0, 116.0, 168.0, 19.0, 173.0, 189.0, 142.0, 177.0, 71.0, 140.0, 110.0, 184.0, 152.0, 164.0, 105.0, 117.0, 124.0, 91.0, 181.0, 85.0, 181.0, 168.0, 128.0, 89.0, 167.0, 155.0, 20.0, 212.0, 78.0, 25.0, 35.0, 130.0, 129.0, 122.0, 7.0, 69.0, 120.0, 140.0, 83.0, 136.0, 157.0, 169.0, 221.0, 190.0, 113.0, 91.0, 13.0, 104.0, 136.0, 167.0, 99.0, 103.0, 159.0, 108.0, 91.0, 136.0, 103.0, 213.0, 189.0, 169.0, 107.0, 91.0, 112.0, 82.0, 114.0, 72.0, 84.0, 159.0, 17.0, 128.0, 16.0, 43.0, 87.0, 136.0, 140.0, 144.0, 74.0, 86.0, 145.0, 153.0, 127.0, 228.0, 112.0, 157.0, 140.0, 192.0, 114.0, 111.0], \"xaxis\": \"x2\", \"y\": [0.33396714643252134, 0.5044440900554997, 0.8874896900044845, 0.4686759077780351, 0.23831547366416572, 0.571181601185031, 0.7785327680196316, 0.7290551099174598, 0.9581131370131553, 0.6801000322064107, 0.413367674560271, 0.6667140739211237, 0.9108229754863395, 0.9275086157065797, 0.9186958597750785, 0.7191871442695774, 0.8184457509658746, 0.8597940676688322, 0.7947045908306632, 0.8244149680645384, 0.42771531534877594, 0.5315376696882942, 0.7136291946100958, 0.5510697799054304, 0.6393262665313312, 0.9016582766249417, 0.8560880110261746, 0.8947361144883382, 0.9102326114023062, 0.840723585394272, 0.9264645566705582, 0.5105903360131552, 0.752648770317166, 0.5855954083225455, 0.8989214048388485, 0.5190750352404293, 0.9560713253502463, 0.7273157243430202, 0.9279672131348602, 0.640103147954212, 0.9158977434209615, 0.9035955072010529, 0.7140955379655831, 0.233508355491505, 0.7280578325574358, 0.8810827811902006, 0.3966129217085586, 0.15541760955422754, 0.5851621750323275, 0.9046111951917862, 0.4177213302712193, 0.7993763114768937, 0.6978409661933959, 0.6473373667551029, 0.770784382977056, 0.6500641275496193, 0.548949563093737, 0.9803199442553986, 0.6150775052067382, 0.391333092160729, 0.6966682278280982, 0.9426748402861506, 0.9170092977635526, 0.844625652038695, 0.5621782696252592, 0.8935808323282117, 0.6792214086077275, 0.6719996755401956, 0.5252591274442797, 0.7277045758687855, 0.4685752957996948, 0.8616549355667619, 0.347491516391863, 0.8224130863808733, 0.5340790568488665, 0.6711667658766297, 0.5277539611022016, 0.7226430813715845, 0.8140972745487615, 0.3280236940194876, 0.9543080196225542, 0.7752655593026647, 0.9223925066666061, 0.8588031784191832, 0.6345107008491314, 0.9393010047953068, 0.7897067132703484, 0.8608062836413887, 0.8367885032124018, 0.38555642305179116, 0.8611944449682004, 0.9172341012895443, 0.9206892306522243, 0.9500505925695213, 0.537798347971205, 0.9173482789702866, 0.44454351342386716, 0.8909704850569525, 0.7351932580165473, 0.6818328744935735, 0.7981559962965634, 0.7626532952948841, 0.807353254900461, 0.964411205143099, 0.4685752957996948, 0.6986526320119215, 0.1956969407137045, 0.9233481403380283, 0.8218375601976645, 0.8536269727611236, 0.5637680470866036, 0.42267134533232753, 0.93003590801509, 0.9364808605729722, 0.8816060831574614, 0.9663102962713933, 0.8345570787709832, 0.4997893986747249, 0.7921603237806832, 0.5586815647381762, 0.8622246464681924, 0.9828719612298703, 0.909295720392338, 0.9476267884443668, 0.5395521774612226, 0.901360886913609, 0.39410444510430487, 0.9262213132200262, 0.6627387433216217, 0.9629433821448677, 0.9614311452267452, 0.9802968012486629, 0.933760787013923, 0.34432718187202205, 0.63596173557573, 0.624364378916488, 0.7417789548241253, 0.7300918276682445, 0.6968315453320488, 0.7840233885688647, 0.8958841271622066, 0.5417426694559925, 0.7102579146160282, 0.6004345411549624, 0.515920701757342, 0.7587882454650442, 0.5029588531082266, 0.6887596776945688, 0.8642849605932809, 0.6469572639767995, 0.8103639651534781, 0.939764354405301, 0.694136577696587, 0.6593725303534554, 0.9646797005081557, 0.7979900311745153, 0.792123904710467, 0.8869579700149332, 0.7351250317969437, 0.5332560471205093, 0.9406873315653421, 0.39362685027924615, 0.9466602521798594, 0.8394325033041952, 0.6633442657978572, 0.8126408700417265, 0.7332457619716184, 0.08024070404520958, 0.8667774471450977, 0.6466814331404849, 0.912366876100516, 0.656670904734599, 0.8701678467707724, 0.8875925797813499, 0.9658725076002231, 0.7668332861852056, 0.8604440887473094, 0.934384507524058, 0.9605946056867319, 0.951253157591183, 0.5749289095213865, 0.6279243005170476, 0.7937202818717513, 0.7665301650725991, 0.700127941221274, 0.8531107444728586, 0.7947045908306632, 0.8870566665876504, 0.5476228787844645, 0.8410401833568673, 0.8736671065238262, 0.6519898659949606, 0.936943112068646, 0.9077719201719568, 0.8071889556778997, 0.8815615400732472, 0.8935313268029127, 0.8782891297971865, 0.5029588531082266, 0.5797201450332624, 0.9416775458320723, 0.5958140198486584, 0.2485157288688957, 0.932021424688801, 0.8531502837407814, 0.6344194678828672, 0.632587077283238, 0.9121448358615357, 0.5776545535910985, 0.9052765174806566, 0.8580390107418799, 0.8998644401112552, 0.6784536879503494, 0.9458342431661766, 0.21387363850783603, 0.9530348339880965, 0.7307391114165022, 0.7187682731289255, 0.6905635603269331, 0.9569274903702625, 0.9287384091375525, 0.3856984054091925, 0.504413920551941, 0.5389739198483336, 0.5921068831639978, 0.10702848140489757, 0.8772993497727819, 0.6361944011057532, 0.8952999713010865, 0.7069578609115064, 0.10632960186243966, 0.6465592619811017, 0.9116333268133815, 0.9210441535829985, 0.9483358221641291, 0.5800224234700003, 0.896951343689222, 0.8958659323404018, 0.8896861436466836, 0.7763142135369961, 0.778627444633172, 0.9274605647284293, 0.9167924025380936, 0.6422094408272838, 0.6363725079258666, 0.8694129796739031, 0.5693182102579236, 0.5315376696882942, 0.6814536952243052, 0.30089534057709466, 0.6689448970920832, 0.6419522618821227, 0.6500641275496193, 0.8221968069187356, 0.9285763346020383, 0.8495153837633861, 0.7135666997345446, 0.8850789772017983, 0.9128367188568884, 0.8709442503982084, 0.44714680104169846, 0.7147831401969469, 0.6814536952243052, 0.5823319261018008, 0.7718122970862826, 0.8925058444773368, 0.9249991097277733, 0.7849066379312727, 0.5120166815330335, 0.7863291630268572, 0.8171821177205619, 0.8878235148823457, 0.9813953955585096, 0.5009899161211654, 0.6787020040856314, 0.2747106808400709, 0.6998114428322438, 0.7191783799678735, 0.7566715075843347, 0.7741630673610131, 0.692871858980435, 0.8706970297938403, 0.9226518689226377, 0.619213859232465, 0.9620625840847012, 0.8161066853745392, 0.7984578805051198, 0.8987836568806694, 0.27900511725120763, 0.747868261422589, 0.8013372150606806, 0.4430395412241901, 0.8082746512504794, 0.9248395818955686, 0.8132668978866627, 0.7926355964369082, 0.7243101498981422, 0.8251498778038484, 0.865753667016409, 0.8784859927081519, 0.9613966942665844, 0.8380103992838959, 0.9376908870460701, 0.8505645904112248, 0.5317253080143199, 0.8756470416862959, 0.8823120896825394, 0.8920529250761863, 0.9565288857220365, 0.92576324319171, 0.8397457208604353, 0.8008835764985612, 0.7620555647282774, 0.6333567796033132, 0.8986985644274655, 0.8289197139212982, 0.38568054861828666, 0.4358764146033148, 0.7013568331933456, 0.5524769805317635, 0.8654015550049637, 0.9625385348003681, 0.4997035751430624, 0.5940434106189647, 0.29640429037896177, 0.9370396801623051, 0.7496358493500708, 0.8521916566704996, 0.7519935213994349, 0.8956127660014477, 0.7563308848917781, 0.5425355780301907, 0.1652985164032473, 0.5777375433929663, 0.5926841497777402, 0.5247451599628447, 0.6215406511606532, 0.646742228322253, 0.5236567091352762, 0.8105889943537302, 0.7614647275399787, 0.7272264480694343, 0.44438282424164377, 0.8051848688934031, 0.253979247575754, 0.8737269176380216, 0.7884186533408385, 0.5226162157005312, 0.7776146375974927, 0.8021344726910251, 0.6794204065079696, 0.8398669626756513, 0.3743394998756179, 0.6593725303534554, 0.41008410759983227, 0.8726624594592295, 0.31336232876890546, 0.6187135046228962, 0.9208146539756937, 0.8948907807194619, 0.9475948217130945, 0.7098971478357265, 0.41970311630379203, 0.5524505095188592, 0.6689295490636696, 0.39534528644804523, 0.6686700461744643, 0.6608417181144597, 0.6289006219381473, 0.8112353209803558, 0.9675531845963172, 0.3468688843876404, 0.8171815196180959, 0.9315945487332388, 0.7612383340144859, 0.43979370974717685, 0.9452166580978265, 0.810349906376065, 0.4979189466877109, 0.9054024939516333, 0.7506263221664519, 0.8595966107872783, 0.9041757536760852, 0.5120166815330335, 0.9246344940597735, 0.622364539475366, 0.7975959936185795, 0.9376528402833735, 0.8270495791839716, 0.7463426393970082, 0.8508295060861325, 0.5277539611022016, 0.7926521549058593, 0.8343380415579561, 0.7973631232158779, 0.5423298306356671, 0.6253812669856891, 0.9342151247863544, 0.9064095870896521, 0.8428584418618921, 0.5680191878381406, 0.8230633503438987, 0.857993972512287, 0.8312116035859974, 0.8886868130574391, 0.5695902702544526, 0.8750573328895943, 0.47134086624147714, 0.6082670858563528, 0.8571520978358925, 0.7006810412396262, 0.6001343818465046, 0.8680196363335714, 0.7833148206731655, 0.835330250744176, 0.6883000602161935, 0.4297997702781997, 0.7132181587745201, 0.941909753873568, 0.9298379484442667, 0.8950633078112005, 0.9652574497835966, 0.8593048115498744, 0.23022113319019433, 0.5548683876071567, 0.8789570823277312, 0.7176343272433334, 0.7135972690872326, 0.900955402304434, 0.89110615578316, 0.8021344726910251, 0.36734125225010755, 0.9233813125795639, 0.9269988231022361, 0.6021478506882372, 0.27064660283581765, 0.7595966254948197, 0.5317253080143199, 0.9626288904553877, 0.518871521713375, 0.4244151934213653, 0.8784852709235653, 0.667697582798242, 0.6791650855490978, 0.8659372985570389, 0.5217980090164113, 0.9757802673562255, 0.20769640873195563, 0.6900575067285889, 0.15051833553221247, 0.8476988333501053, 0.12043274000614122, 0.6546311715671466, 0.412102187638673, 0.6339696776630096, 0.6925917751558638, 0.8074446941396305, 0.8417042066658985, 0.4702054036006336, 0.8107456318417504, 0.934253622333564, 0.9671353887875448, 0.3776875782453083, 0.5133306968464912, 0.8279918435672958, 0.7295730380004212, 0.8398957027397556, 0.7470826509089123, 0.7722124156410631, 0.3944809481034696, 0.5801047158883857, 0.7134138458261836, 0.8265590446981121, 0.5836238058504062, 0.7538957359152121, 0.9708936701567454, 0.41507295289487073, 0.9039211350062085, 0.5109703825452502, 0.8880660412534, 0.6332514250278477, 0.703270618172154, 0.863031725372896, 0.9601349291832292, 0.5845797646527732, 0.8357575010967041, 0.9584406458449958, 0.8733333206292072, 0.4740801794177068, 0.5787650908025566, 0.38525623454815555, 0.5715075300165849, 0.951253157591183, 0.831291834366621, 0.6482062646591596, 0.5447536045265621, 0.8456825404777587, 0.5358725178581014, 0.8893400405584444, 0.5955893395860203, 0.9408369636189147, 0.7580589814818564, 0.4244151934213653, 0.7636885291754726, 0.9532052815091139, 0.6686700461744643, 0.39683939049776734, 0.8309978518015588, 0.06774730328187532, 0.8934061610794648, 0.9459413258233057, 0.8507977517004935, 0.9694554821790147, 0.8640493534313302, 0.8409166048571896, 0.9059760843724536, 0.7278052027863667, 0.8952246802917138, 0.39534528644804523, 0.9558702864115934, 0.9178754126151818, 0.7504628435478695, 0.7568870052952757, 0.32046258648166903, 0.9712495894387816, 0.7125870341029702, 0.8286889773580812, 0.929575727770858, 0.8422483936479932, 0.60065365322741, 0.5775074082600717, 0.7505976846167132, 0.5317253080143199, 0.9590110623565244, 0.9651712957082627, 0.7333643603414158, 0.7757825668725274, 0.8928390517037824, 0.2578168736401774, 0.5355488836719776, 0.8408692583280314, 0.7849780542174357, 0.8711681462620556, 0.8447990405440073, 0.9571933326515756, 0.9307123551507692, 0.6421242495412457, 0.9239207054420927, 0.9336219461922934, 0.4244151934213653, 0.5673643045526261, 0.8301442064454496, 0.528471943574542, 0.8835542071774324, 0.8820947700128993, 0.4561713647735051, 0.584381944856391, 0.9493936477483658, 0.7816316980556022, 0.7770145472448273, 0.8495153837633861, 0.8318035560268552, 0.5220388622338656, 0.8589980209217414, 0.21216021099657945, 0.8782303617207965, 0.901850575196968, 0.7683760396387002, 0.9559989503713009, 0.938411491366706, 0.7225398931917507, 0.5918361617892179, 0.8596378534897678, 0.8816239240572568, 0.9296844522785247, 0.8299758417251202, 0.7538846798551382, 0.931253582726863, 0.6902425303942638, 0.9299571155275668, 0.35461708236434614, 0.6119587629530028, 0.8979450471026776, 0.8782891297971865, 0.6144930729026484, 0.5601837238662909, 0.4230258756549153, 0.5115702372514986, 0.6133200318312215, 0.8287048127179734, 0.42887934024879554, 0.5543929044930882, 0.5414149972460248, 0.7453725251924848, 0.6522898344923613, 0.6445138145159856, 0.9212190995841192, 0.6991293681294938, 0.9188224881967051, 0.9444881948020799, 0.8399825546316605, 0.6440269003431431, 0.45260210695563535, 0.6678228102737954, 0.8535669746933884, 0.23469888428232324, 0.7581156815660375, 0.8329520097124233, 0.5886389680190937, 0.4250130050586104, 0.290761161529129, 0.9065968169685268, 0.39757013049667705, 0.9584529405260903, 0.24804178200132845, 0.8400605958344816, 0.9562762484868867, 0.5923100188758571, 0.5355488836719776, 0.6866862751474886, 0.753715093249364, 0.9302702282582556, 0.8405005145861136, 0.7758456574858743, 0.8270123797965384, 0.9270997487744173, 0.8779999285967196, 0.6350604679157676, 0.9057987369792326, 0.9732730617650076, 0.28007269673131574, 0.5393237551960537, 0.9509318156255189, 0.8055358405733448, 0.8512314640165554, 0.6752183046546253, 0.9766791413071304, 0.26893819095773785, 0.5105552073939665, 0.7964242570425004, 0.9159462749375985, 0.46312559485344046, 0.7889853219989779, 0.5331772070153998, 0.6250130361556073, 0.5340700079782073, 0.8981158701031157, 0.8424802355113449], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [106.0, 196.0, 164.0, 47.0, 156.0, 167.0, 131.0, 14.0, 21.0, 25.0, 111.0, 85.0, 191.0, 207.0, 181.0, 133.0, 143.0, 42.0, 125.0, 131.0, 115.0, 219.0, 185.0, 225.0, 101.0, 110.0, 72.0, 174.0, 66.0, 163.0, 159.0, 166.0, 24.0, 73.0, 164.0, 135.0, 152.0, 39.0, 127.0, 128.0, 101.0, 44.0, 150.0, 171.0, 67.0, 177.0, 112.0, 38.0, 174.0, 40.0, 176.0, 139.0, 91.0, 33.0, 26.0, 49.0, 38.0, 23.0, 145.0, 201.0, 23.0, 216.0, 186.0, 26.0, 91.0, 11.0, 45.0, 34.0, 23.0, 42.0, 16.0, 182.0, 168.0, 23.0, 135.0, 111.0, 255.0, 61.0, 98.0, 84.0, 126.0, 21.0, 187.0, 143.0, 169.0, 59.0, 171.0, 184.0, 174.0, 102.0, 210.0, 134.0, 16.0, 213.0, 54.0, 9.0, 131.0, 148.0, 142.0, 216.0, 88.0, 167.0, 133.0, 38.0, 200.0, 9.0, 90.0, 26.0, 119.0, 197.0, 59.0, 148.0, 30.0, 189.0, 53.0, 166.0, 146.0, 144.0, 196.0, 44.0, 179.0, 132.0, 161.0, 102.0, 20.0, 94.0, 89.0, 123.0, 20.0, 201.0, 55.0, 227.0, 213.0, 56.0, 68.0, 178.0, 121.0, 13.0, 94.0, 126.0, 117.0, 169.0, 95.0, 77.0, 68.0, 149.0, 138.0, 12.0, 140.0, 166.0, 114.0, 212.0, 129.0, 176.0, 145.0, 117.0, 135.0, 183.0, 131.0, 213.0, 55.0, 173.0, 128.0, 116.0, 29.0, 90.0, 56.0, 92.0, 140.0, 150.0, 165.0, 114.0, 86.0, 178.0, 102.0, 107.0, 119.0, 220.0, 219.0, 158.0, 122.0, 157.0, 42.0, 84.0, 162.0, 161.0, 150.0, 116.0, 142.0, 149.0, 86.0, 102.0, 196.0, 83.0, 189.0, 35.0, 89.0, 142.0, 156.0, 97.0, 11.0, 201.0, 162.0, 198.0, 89.0, 183.0, 173.0, 15.0, 138.0, 160.0, 146.0, 106.0, 34.0, 106.0, 222.0, 80.0, 169.0, 172.0, 99.0, 60.0, 142.0, 202.0, 126.0, 216.0, 154.0, 119.0, 43.0, 199.0, 167.0, 143.0, 161.0, 129.0, 138.0, 145.0, 63.0, 167.0, 131.0, 129.0, 213.0, 101.0, 210.0, 31.0, 138.0, 162.0, 117.0, 190.0, 75.0, 105.0, 169.0, 70.0, 42.0, 186.0, 111.0, 153.0, 111.0, 133.0, 162.0, 238.5, 155.0, 38.0, 37.0, 101.0, 168.0, 168.0, 71.0, 186.0, 77.0, 113.0, 117.0, 164.0, 98.0, 28.0, 187.0, 148.0, 107.0, 108.0, 210.0, 72.0, 82.0, 136.0, 87.0, 161.0, 105.0, 197.0, 145.0, 148.0, 109.0, 126.0, 48.0, 66.0, 191.0, 147.0, 151.0, 85.0, 137.0, 31.0, 98.0, 192.0, 167.0, 22.0, 132.0, 47.0, 176.0, 226.0, 210.0, 131.0, 21.0, 105.0, 177.0, 181.0, 58.0, 191.0, 69.0, 145.0, 175.0, 162.0, 157.0, 197.0, 138.0, 80.0, 25.0, 20.0, 124.0, 164.0, 14.0, 151.0, 161.0, 6.0, 200.0, 168.0, 10.0, 166.0, 85.0, 148.0, 28.0, 85.0, 127.0, 133.0, 138.0, 104.0, 180.0, 121.0, 61.0, 63.0, 16.0, 49.0, 122.0, 106.0, 138.0, 112.0, 92.0, 128.0], \"xaxis\": \"x2\", \"y\": [0.8142007211296887, 0.07257977436397642, 0.7430932382113554, 0.8214862427787604, 0.5698848321031316, 0.6048119589659149, 0.6466669219762841, 0.14510080060429495, 0.2250304680670007, 0.28492472637839966, 0.42061632734231896, 0.8281252124183194, 0.49622399336621903, 0.3482895521074759, 0.4678833354511545, 0.5708968386647719, 0.37048677721847617, 0.553632248395139, 0.8702137350251022, 0.42186952587750404, 0.8696774950675754, 0.5410576963494411, 0.3971326977900686, 0.3275001196198921, 0.9448289227093116, 0.7109941475090589, 0.41925580570138304, 0.3675472469853882, 0.6721911818800557, 0.5562207270314473, 0.5262426608517637, 0.3244609607385458, 0.15056615442564347, 0.15676979724311627, 0.6037730696030339, 0.6342511279653397, 0.021947035536558718, 0.32429164429335744, 0.5678746850743716, 0.3571680467137555, 0.7755534309390314, 0.3240287891037917, 0.699424662214302, 0.5151532452376618, 0.7564675819717819, 0.38343591026479057, 0.19811005648518398, 0.3168419703358067, 0.5315947262677626, 0.9269044449273315, 0.8260225289794664, 0.451791899378283, 0.830516920403184, 0.47128602930186, 0.19027823806377472, 0.5181346713949518, 0.29552777318700446, 0.45414400334446664, 0.39329840463575844, 0.42327932510626076, 0.45838907164509224, 0.2233864252642039, 0.3628419195926303, 0.6709353200988277, 0.46058046365566996, 0.25551237833043455, 0.7234147543269824, 0.1481282262733752, 0.314935793994079, 0.20050531530561894, 0.37453315488553635, 0.701015529968035, 0.6343341418527783, 0.1739320900588749, 0.734996253073231, 0.8172229478314255, 0.3598554146739685, 0.7121055211356295, 0.2620604909731644, 0.3421138035730516, 0.6951268813066005, 0.35208221297891723, 0.452099210446082, 0.18907620085798427, 0.5444201651108793, 0.6484058972837882, 0.3258186925596978, 0.5963383680780668, 0.6202666247822538, 0.576738593946626, 0.5054992484109841, 0.2972245631729925, 0.6844333356791464, 0.42629475072919953, 0.4405153833121037, 0.01207867704715336, 0.7609288944606691, 0.23951123982998349, 0.09310514674080905, 0.5084920166510624, 0.33067609257366243, 0.36481899584296196, 0.5708968386647719, 0.3194802059637459, 0.14207297841267416, 0.5776897120055972, 0.2026163425795633, 0.37909000048748537, 0.38206764842015895, 0.41324683104354176, 0.17826143731067332, 0.42339414872454434, 0.39148091864802853, 0.3511350413575442, 0.8053393751847749, 0.5937005322868365, 0.6849942580153355, 0.38930033076762494, 0.5168500865319015, 0.5699073288866824, 0.5376087249833421, 0.8185832461647057, 0.25950508036415604, 0.20394483716883388, 0.3303044530853749, 0.2528102968078532, 0.8477719856767125, 0.5217124250004609, 0.3303044530853749, 0.5382885532339231, 0.9625763866028243, 0.6536174904341296, 0.42629475072919953, 0.6458781618432388, 0.46574001023909845, 0.37268733756108086, 0.8180085473348132, 0.35493594975273335, 0.2423640089427935, 0.3636330633241046, 0.6421622311157122, 0.5444201651108793, 0.7396308412796291, 0.9036153464846048, 0.21101569987323432, 0.6004024464464508, 0.7595861882737439, 0.486549602332862, 0.2379839758891197, 0.5147825233229498, 0.2065932277190248, 0.4342628292980428, 0.5940848250235929, 0.4857193175270624, 0.5332610244722983, 0.5402196969638672, 0.8578846895389459, 0.5290225674595067, 0.6074669506688956, 0.1847839155105034, 0.3581391437324269, 0.4304380754474639, 0.8410120374942113, 0.5810086483513661, 0.19026233744636453, 0.7223494520380469, 0.8589928738613049, 0.8374625942163022, 0.781203852328267, 0.73983195178881, 0.41156537259256004, 0.7482873396984137, 0.44431713201158524, 0.7113673874393347, 0.49869552495399233, 0.7627102864663872, 0.37193390769028617, 0.37187810520956766, 0.3773291605703562, 0.8719651627687759, 0.6218762459828849, 0.3781393537983126, 0.553632248395139, 0.47624084907999176, 0.774399353278846, 0.5840424935194366, 0.5601025471409736, 0.6186690618327106, 0.620611700356168, 0.5755798886129706, 0.15047650536569443, 0.5530049338021776, 0.6597439619439023, 0.8300222117931148, 0.3490158529243493, 0.4410646109528086, 0.5067909967309752, 0.5851482063434866, 0.7149827463187939, 0.4849259975950144, 0.2094210588097294, 0.33399024531412796, 0.4083143545243069, 0.7497022835596558, 0.7817929239213606, 0.7637421953724776, 0.3825655414920891, 0.6611482494098961, 0.19022241257108333, 0.44972084577511023, 0.5476732603321269, 0.4831274653996314, 0.5077048340566679, 0.7289504589448288, 0.4379810490617926, 0.8017221455714771, 0.6434673631716396, 0.5059779734745421, 0.6065367192264559, 0.650368705032214, 0.34567471266024347, 0.39561589000187136, 0.3427787545601037, 0.4676404271158623, 0.5332283386400669, 0.4519108142444285, 0.40662831629925006, 0.42305576187259053, 0.22032895172816622, 0.5278715769330472, 0.43679486629948455, 0.743933429392776, 0.5269515041023835, 0.5008800654866953, 0.214168174561682, 0.44879088851457377, 0.683485355417811, 0.807753104897186, 0.42629475072919953, 0.8502951424821861, 0.17421175568219957, 0.25491371883486935, 0.7595861882737439, 0.6571724132942184, 0.7813188949129265, 0.5626906653340306, 0.8674288259883418, 0.6600514650598344, 0.4827749661719035, 0.5456147119159479, 0.39827550056677263, 0.27323823737433794, 0.695896529362927, 0.5048820477254727, 0.5422349097465021, 0.5610936746718964, 0.6571724132942184, 0.3088751107498249, 0.45428761266464013, 0.6604471727860799, 0.43371621376298963, 0.6171893197168647, 0.8100511550343341, 0.8100511550343341, 0.605832578461134, 0.5526475584669951, 0.4275055171336787, 0.8734720021260204, 0.8508295378350301, 0.5807723706867254, 0.8272749548927728, 0.2670652478909882, 0.7020144194675465, 0.4615566916191992, 0.7055847950248242, 0.43389869234556755, 0.6071692164257629, 0.3496825637352313, 0.23676491619791426, 0.7057755976874825, 0.15539001443149586, 0.6187538615870153, 0.8735882828904331, 0.30049486749739024, 0.23191705420611952, 0.8913917397916864, 0.4977157214618499, 0.16961113509580228, 0.8485494795219795, 0.4760032757956232, 0.5053843099270294, 0.2676015269871764, 0.3627664421236291, 0.15146266807038725, 0.7898179638281774, 0.6145296307645981, 0.3790380236797623, 0.3003532640340299, 0.6086112016774773, 0.39906793889171593, 0.8185832461647057, 0.6715802865662828, 0.8260225289794664, 0.6056902064850618, 0.400132762133902, 0.39471961640683584, 0.6449859309106076, 0.5637152910565628, 0.39949420960438964, 0.5490401551410112, 0.4398875418860128, 0.30916577334906253, 0.7093303227687476, 0.4562508424819209, 0.40444044759428516, 0.5773483646962835, 0.447777692034652, 0.4961542215384683, 0.32474312180562226, 0.21192693199409943, 0.9056903490933487, 0.5013816399998683, 0.758876109553896, 0.6364928148646596, 0.2952804752502578, 0.4748951900520853, 0.43679486629948455, 0.5479962315186364, 0.4728142838839701, 0.6343341418527783, 0.12248807650217919, 0.5052525886146573, 0.8281252124183194, 0.8930081609652758, 0.36283726088930296, 0.8098196742550625, 0.656477404357746, 0.193885049884708, 0.5269515041023835, 0.49858469647139786, 0.32780472036158087, 0.24927512797396847, 0.6148718578314069, 0.10691527318901187, 0.136775438340409, 0.8489192718114075, 0.2600203086082801, 0.8142007211296887, 0.5269515041023835, 0.7966615933629455, 0.5633234794197017, 0.767479452333631], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"total.sulfur.dioxide\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"total.sulfur.dioxide\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}}, {\"id\": \"total.sulfur.dioxide_bad\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (ref)\", \"type\": \"scatter\", \"x\": [192.0, 65.0, 151.0, 44.0, 77.0, 45.0, 149.0, 23.0, 148.0, 174.0, 110.0, 164.0, 165.0, 163.0, 79.0, 183.0, 144.0, 19.0, 139.0, 12.0, 187.0, 206.0, 12.0, 120.0, 63.0, 54.0, 120.0, 91.0, 214.0, 183.0, 20.0, 106.0, 159.0, 196.0, 192.0, 112.0, 147.0, 130.0, 10.0, 180.0, 94.0, 22.0, 100.0, 84.0, 84.0, 124.0, 105.0, 149.0, 87.0, 53.0, 33.0, 141.0, 168.0, 14.0, 173.0, 220.0, 169.0, 177.0, 69.0, 55.0, 245.0, 179.0, 16.0, 164.0, 113.0, 131.0, 172.0, 133.0, 36.0, 91.0, 183.0, 8.0, 194.0, 117.0, 115.0, 144.0, 233.0, 20.0, 92.0, 87.0, 106.0, 76.0, 243.0, 23.0, 138.0, 38.0, 201.0, 26.0, 72.0, 63.0, 8.0, 152.0, 111.0, 194.0, 195.0, 202.0, 159.0, 133.0, 179.0, 117.0, 195.0, 71.0, 111.0, 197.0, 120.0, 69.0, 115.0, 72.0, 115.0, 150.0, 47.0, 63.0, 15.0, 104.0, 51.0, 92.0, 178.0, 77.0, 84.0, 86.0, 166.0, 49.0, 150.0, 111.0, 204.0, 210.0, 198.0, 42.0, 86.0, 184.0, 33.0, 86.0, 156.0, 189.0, 139.0, 164.0, 60.0, 176.0, 140.0, 141.0, 116.0, 227.0, 75.0, 116.0, 177.0, 197.0, 161.0, 142.0, 48.0, 84.0, 156.0, 26.0, 143.0, 22.0, 104.0, 31.0, 98.0, 165.0, 73.0, 131.0, 101.0, 28.0, 49.0, 113.0, 12.0, 84.0, 179.0, 176.0, 187.0, 180.0, 171.0, 99.0, 121.0, 171.0, 95.0, 16.0, 35.0, 177.0, 55.0, 63.0, 189.0, 12.0, 114.0, 171.0, 179.0, 197.0, 187.0, 34.0, 157.0, 227.0, 115.0, 75.0, 206.0, 50.0, 200.0, 12.0, 151.0, 218.0, 210.0, 130.0, 198.0, 82.0, 82.0, 31.0, 132.0, 157.0, 131.0, 61.0, 13.0, 21.0, 87.0, 148.0, 160.0, 225.0, 173.0, 158.0, 192.0, 131.0, 220.0, 110.0, 24.0, 103.0, 204.0, 111.0, 115.0, 168.0, 93.0, 234.0, 87.0, 13.0, 117.0, 160.0, 103.0, 111.0, 106.0, 143.0, 207.0, 57.0, 210.0, 230.0, 38.0, 162.0, 136.0, 174.0, 103.0, 47.0, 142.0, 154.0, 164.0, 30.0, 155.0, 160.0, 159.0, 19.0, 176.0, 171.0, 90.0, 62.0, 133.0, 18.0, 169.0, 142.0, 173.0, 122.0, 178.0, 149.0, 128.0, 155.0, 58.0, 79.0, 212.0, 193.0, 167.0, 205.0, 186.0, 248.0, 124.0, 188.0, 82.0, 64.0, 14.0, 31.0, 188.0, 61.0, 117.0, 174.0, 123.0, 170.0, 73.0, 198.0, 97.0, 119.0, 307.5, 51.0, 68.0, 60.0, 106.0, 252.0, 177.0, 115.0, 78.0, 102.0, 96.0, 189.0, 72.0, 71.0, 184.0, 23.0, 18.0, 91.0, 150.0, 170.0, 31.0, 196.0, 133.0, 184.0, 282.0, 125.0, 223.0, 37.0, 20.0, 210.0, 60.0, 11.0, 168.0, 136.0, 71.0, 176.0, 65.0, 195.0, 167.0, 78.0, 164.0, 198.0, 131.0, 33.0, 240.0, 27.0, 95.0, 234.0, 87.0, 185.0, 120.0, 48.0, 188.0, 38.0, 195.0, 188.0, 62.0, 184.0, 145.0, 35.0, 197.0, 99.0, 104.0], \"xaxis\": \"x\", \"y\": [0.7197707895473677, 0.05448058807241418, 0.5021256787650443, 0.4710854375480472, 0.7156076129280222, 0.7966690429773311, 0.7265425252145667, 0.16771266951545494, 0.610944103187451, 0.6324527530146118, 0.42180662537268765, 0.2598044700255929, 0.5503032830239416, 0.5632112185661304, 0.6840604465833231, 0.6224375641140001, 0.8071781895370533, 0.9515482366939344, 0.3994071349416132, 0.9677746238863042, 0.572587586261062, 0.7602674855798478, 0.861098734498427, 0.1386074727873, 0.6703360831713621, 0.8064003460928679, 0.3172728283240366, 0.8039094494444462, 0.9186426431335688, 0.6026275969807151, 0.8609701260317718, 0.3485833566260712, 0.3005246278528939, 0.2859113263741919, 0.4978204971029292, 0.5125675444128744, 0.4268860326359044, 0.11791793574572085, 0.440027850275134, 0.4938434408506086, 0.4933189622152446, 0.166194347192407, 0.30200278364192557, 0.6822425768461728, 0.8693180940701344, 0.24112389044610405, 0.43189370387303117, 0.284455178085937, 0.23793737479647703, 0.5535561322468214, 0.7900402576908969, 0.47373775892899717, 0.6055733033081183, 0.7462675017011632, 0.32245623572553406, 0.7612367841042231, 0.36308410170653527, 0.6103993963703384, 0.3965676277125745, 0.2230008284200371, 0.8480025164595866, 0.43585875500482685, 0.24095331994381775, 0.4030652094068704, 0.8951637220162157, 0.2782175630406618, 0.7337660836226194, 0.8352762102164887, 0.6223987562306759, 0.2928263700360406, 0.6563137004068428, 0.16155652477357085, 0.6364666355122575, 0.2186811050870735, 0.27206300237801306, 0.4358901152617537, 0.6136035252376228, 0.07900866299327158, 0.8522855318359817, 0.11906253414448076, 0.3466831105240652, 0.11265227152414181, 0.6302693732121377, 0.7168097665217413, 0.4796298258249143, 0.4476252306691143, 0.3612478268219491, 0.611861930499026, 0.15121036728507153, 0.5363393546692182, 0.16155652477357085, 0.441733396330222, 0.7834276811132227, 0.6364666355122575, 0.44873286860252337, 0.4948960601400133, 0.4172084246960842, 0.5055831714989107, 0.5269082808529498, 0.3737404408311804, 0.4491757516278906, 0.5266720849021, 0.2882430633103308, 0.6066213483726142, 0.83534933450756, 0.2509605867776752, 0.230738949997912, 0.25680675940048736, 0.6858999083789018, 0.27626495444752697, 0.35158671089680515, 0.311480105980391, 0.5950329577300569, 0.4196263877039489, 0.3672198477254309, 0.5488429300958864, 0.6273126624389191, 0.0990306898864649, 0.935036100419004, 0.5556828679884147, 0.6003916802566726, 0.1337843055401957, 0.6898191889393818, 0.46604488826349566, 0.6668872608045229, 0.5998672378660981, 0.14712454771937833, 0.8558065212045691, 0.883276495704891, 0.5544329747085402, 0.38398791005853006, 0.8623310715459079, 0.4482795971615686, 0.4767821080964978, 0.6451659669426603, 0.5099786295438409, 0.11454219273407718, 0.5691587732433696, 0.2398813672346335, 0.8592796956842923, 0.38133093816728936, 0.4754945767078651, 0.2673740541283356, 0.43092180164799054, 0.5981491184574936, 0.7512253043619477, 0.20474988026063612, 0.12337786436138054, 0.6965484670033051, 0.4642254518352117, 0.29034758521725457, 0.7912282271603185, 0.1364389858241727, 0.5326323768611896, 0.3938848007926149, 0.886984727126295, 0.5955398539691413, 0.3667393936023857, 0.35129461810907203, 0.578130474122496, 0.1952086434691429, 0.6982941690158907, 0.6159300986783536, 0.6650580695700093, 0.8007006003287879, 0.13750802167619447, 0.47121416359091395, 0.5691587732433696, 0.5295784007050042, 0.4938434408506086, 0.4240508430342457, 0.1531205555636086, 0.7965770364050346, 0.4829168465516456, 0.6333246955344933, 0.38682769986244625, 0.5589353890471914, 0.30965836575156913, 0.6133571507425741, 0.5363393546692182, 0.5474540697204298, 0.9680074395956593, 0.29703705077451537, 0.7566858385458134, 0.451244026180727, 0.6224939697452743, 0.9340693900855184, 0.1254375450851024, 0.770680513376406, 0.7273231109206828, 0.410671569380914, 0.19928392436820586, 0.44743622108127745, 0.4991477681643879, 0.5443787589855091, 0.826082779912576, 0.5642536294664222, 0.6762559922350657, 0.39283078357423706, 0.3074847569358159, 0.40732461839200396, 0.5614584986504241, 0.5614584986504241, 0.575628870274347, 0.1938881144566701, 0.6480440770440566, 0.23946299348505806, 0.6110142157087575, 0.32489046344192996, 0.127020290619695, 0.28948900574123104, 0.27970970921902805, 0.5179212029104148, 0.579807192000203, 0.5695619245525361, 0.7471497674522103, 0.6761943115269239, 0.6052803835931642, 0.9048996801452402, 0.632953623191418, 0.7849920634816455, 0.12946409768986655, 0.3899257470968539, 0.37735505673750047, 0.27206300237801306, 0.6356505945299911, 0.9000798247851504, 0.5852448485124296, 0.3537739535016634, 0.8589709040748648, 0.5105041430354158, 0.4760479563081992, 0.3915586115462193, 0.4344526143297297, 0.04825794875232026, 0.25106204840173363, 0.5352062615150248, 0.2084678736174792, 0.5588772074146924, 0.42656597432725707, 0.3395528272139201, 0.5154796814541086, 0.30312695461308037, 0.4684625037801391, 0.13140485141127656, 0.37575572516499556, 0.7087902803012941, 0.22740617784346517, 0.7932370230268412, 0.6977827466507267, 0.8687065743771458, 0.3532210556477622, 0.3005246278528939, 0.8817461779308045, 0.5897758288136841, 0.5117334773877459, 0.2267712913026929, 0.7462523759498982, 0.5055831714989107, 0.6276122794572256, 0.34766968675436505, 0.563322001169588, 0.4035281086421867, 0.44827723495654004, 0.7588644006503809, 0.17560197311170134, 0.2736156405730563, 0.5646478519097824, 0.12788772013874206, 0.8127608550985441, 0.35130933230290007, 0.8842329534318195, 0.5671758377024384, 0.508518787579709, 0.4735654621913231, 0.6614347321502836, 0.7032589073748752, 0.418601168771625, 0.40262233345395115, 0.38045938978299354, 0.6221728234115828, 0.6769388667590319, 0.825791915264051, 0.8036522945246104, 0.5350776523934957, 0.5038683203672731, 0.4187790963850706, 0.3942708224564714, 0.36585282612655, 0.42973128126448334, 0.1395024853671747, 0.36909778672938764, 0.5126700875045708, 0.31128511290513083, 0.5841805470690385, 0.42932394036482613, 0.5168725346003686, 0.9331527243268325, 0.5090935678835011, 0.848083892739094, 0.7288594688776423, 0.23463814542978878, 0.9073343486287574, 0.5445649372592127, 0.8030108083542629, 0.30698149193503155, 0.47724620771884374, 0.49565431290071005, 0.29179072192325783, 0.53941953634433, 0.32642767658125227, 0.5714063949384225, 0.6769388667590319, 0.48314991346809855, 0.3838692085325581, 0.7654355578102645, 0.6807995217458978, 0.7803105409218809, 0.4971816769068883, 0.5662837862370104, 0.32557907866588853, 0.4059739580227363, 0.8621668957327787, 0.4863555612469991, 0.44913520001249685, 0.5044088987161788, 0.018560580499064172, 0.17397747102053363, 0.8203404366189, 0.531551035274026, 0.3951880410340851, 0.6710839680909022, 0.7545393605546251, 0.25029771644034415, 0.31651464458218903, 0.7900402576908969, 0.7649542174153934, 0.6282404390050247, 0.5124469561170844, 0.7501741577575001, 0.3717170374651112, 0.5479204837841629, 0.1799627586960565, 0.8716748635647116, 0.4700369344869263, 0.7044722268129955, 0.7597806244765397, 0.4570971226262448, 0.3688130253756654, 0.5854022956087224, 0.6067015953642416, 0.6092966434658947, 0.5713009051869427, 0.15316343939585397, 0.31191498773739224], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [123.0, 231.0, 126.0, 107.0, 175.0, 65.0, 107.0, 115.0, 121.0, 69.0, 180.0, 9.0, 158.0, 195.0, 211.0, 150.0, 101.0, 43.0, 74.0, 93.0, 202.0, 95.0, 142.0, 177.0, 84.0, 170.0, 93.0, 158.0, 131.0, 75.0, 92.0, 54.0, 92.0, 170.0, 63.0, 130.0, 186.0, 142.0, 99.0, 66.0, 67.0, 148.0, 60.0, 97.0, 211.0, 110.0, 57.0, 142.0, 18.0, 135.0, 110.0, 177.0, 104.0, 189.0, 156.0, 163.0, 73.0, 98.0, 104.0, 127.0, 19.0, 128.0, 144.0, 140.0, 41.0, 24.0, 100.0, 114.0, 160.0, 86.0, 125.0, 86.0, 101.0, 289.0, 94.0, 90.0, 37.0, 83.0, 60.0, 125.0, 189.0, 93.0, 57.0, 124.0, 98.0, 93.0, 143.0, 50.0, 93.0, 17.0, 119.0, 109.0, 148.0, 143.0, 151.0, 116.0, 134.0, 117.0, 85.0, 157.0, 47.0, 200.0, 41.0, 8.0, 95.0, 200.0, 103.0, 133.0, 86.0, 38.0, 103.0, 176.0, 166.0, 49.0, 158.0, 121.0, 110.0, 72.0, 171.0, 44.0, 171.0, 134.0, 228.0, 140.0, 89.0, 31.0, 25.0, 127.0, 147.0, 23.0, 127.0, 106.0, 129.5, 71.0, 115.0, 155.0, 52.0, 23.0, 109.0, 44.0, 109.0, 155.0, 159.0, 161.0, 17.0, 113.0, 85.0, 77.0, 34.0, 109.0, 149.0, 42.0, 143.0, 206.0, 118.0, 111.0, 100.0, 167.0, 112.0, 122.0, 115.0, 91.0, 68.0, 45.0, 137.0, 213.0, 192.0, 142.0, 161.0, 119.0, 20.0, 58.0, 123.0, 97.0, 43.0, 144.0, 31.0, 134.0, 138.0, 33.0, 134.0, 126.0, 15.0, 163.0, 136.0, 127.0, 118.0, 15.0, 194.0, 96.0, 128.0, 11.0, 164.0, 164.0, 94.0, 118.0, 126.0, 113.0, 72.0, 58.0, 124.0, 122.0, 111.0, 46.0, 181.0, 74.0, 22.0, 124.0, 155.0, 146.0, 73.0, 101.0, 121.0, 133.0, 80.0, 128.0, 106.0, 128.0, 160.0, 75.0, 78.0, 158.0, 87.0, 110.0, 25.0, 111.0, 189.0, 156.0, 106.0, 151.0, 186.0, 184.0, 52.0, 139.0, 92.0, 112.0, 150.0, 169.0, 107.0, 128.0, 202.0, 192.0, 114.0, 228.0, 64.0, 193.0, 155.0, 140.0, 167.0, 88.0, 163.0, 229.0, 66.0, 28.0, 29.0, 101.0, 143.0, 168.0, 152.0, 9.0, 146.0, 92.0, 99.0, 144.0, 109.0, 130.0, 114.0, 20.0, 44.0, 96.0, 61.0, 48.0, 81.0, 104.0, 119.0, 156.0, 115.0, 24.0, 11.0, 90.0, 161.0, 146.0, 90.0, 105.0, 93.0, 27.0, 182.0, 186.0, 46.0, 87.0, 84.0, 158.0, 12.0, 138.0, 149.0, 201.0, 34.0, 138.0, 71.0, 103.0, 40.0, 113.0, 98.0, 93.0, 98.0, 44.0, 142.0, 54.0, 155.0, 124.0, 70.0, 174.0, 28.0, 249.5, 90.0, 21.0, 153.0, 142.0, 100.0, 81.0, 104.0, 65.0, 170.0, 164.0, 118.0, 25.0, 81.0, 27.0, 188.0, 151.0, 107.0, 100.0, 19.0, 171.0, 96.0, 167.0, 76.0, 102.0, 159.0, 242.0, 213.0, 49.0, 78.0, 141.0, 22.0, 148.0, 125.0, 37.0, 96.0, 200.0, 143.0, 173.0, 115.0, 57.0, 160.0, 107.0, 79.0, 155.0, 23.0, 135.0, 194.0, 172.0, 57.0, 48.0, 88.0, 112.0, 125.0, 117.0, 31.0, 179.0, 149.0, 67.0, 102.0, 93.0, 78.0, 122.0, 142.0, 43.0, 98.0, 86.0, 50.0, 209.0, 63.0, 247.0, 206.0, 98.0, 95.0, 170.0, 163.0, 93.0, 132.0, 111.0, 158.0, 97.0, 221.0, 42.0, 87.0, 122.0, 178.0, 114.0, 42.0, 62.0, 70.0, 168.0, 78.0, 127.0, 134.0, 171.0, 87.0, 169.0, 140.0, 168.0, 141.0, 78.0, 102.0, 118.0, 152.0, 171.0, 143.0, 168.0, 138.0, 131.0, 206.0, 149.0, 134.0, 114.0, 111.0, 166.0, 165.0, 178.0, 186.0, 79.0, 98.0, 68.0, 146.0, 111.0, 16.0, 54.0, 155.0, 47.0, 102.0, 111.0, 89.0, 125.0, 109.0, 118.0, 231.0, 154.0, 24.0, 83.0, 126.0, 124.0, 70.0, 108.0, 174.0, 38.0, 223.0, 37.0, 101.0, 116.0, 22.0, 66.0, 37.0, 208.0, 138.0, 92.0, 134.0, 143.0, 154.0, 27.0, 42.0, 215.0, 131.0, 169.0, 113.0, 166.0, 105.0, 111.0, 113.0, 98.0, 42.0, 183.0, 118.0, 172.0, 134.0, 117.0, 109.0, 118.0, 88.0, 120.0, 223.0, 94.0, 93.0, 129.0, 11.0, 125.0, 185.0, 197.0, 108.0, 101.0, 195.0, 140.0, 140.0, 194.0, 126.0, 176.0, 113.0, 156.0, 90.0, 135.0, 98.0, 100.0, 211.0, 184.0, 111.0, 76.0, 111.0, 245.0, 102.0, 109.0, 89.0, 114.0, 142.0, 114.0, 38.0, 28.0, 158.0, 121.0, 126.0, 92.0, 47.0, 16.0, 158.0, 142.0, 102.0, 61.0, 242.0, 137.0, 143.0, 125.0, 172.0, 144.0, 216.0, 157.0, 128.0, 114.0, 13.0, 118.0, 83.0, 143.0, 116.0, 167.0, 91.0, 76.0, 125.0, 15.0, 73.0, 37.0, 213.0, 110.0, 160.0, 143.0, 68.0, 113.0, 88.0, 124.0, 112.0, 63.0, 110.0, 204.0, 78.0, 151.0, 168.0, 114.0, 110.0, 82.0, 154.0, 134.0, 229.0, 154.0, 109.0, 101.0, 123.0, 54.0, 126.0, 39.0, 128.0, 118.0, 65.0, 130.0, 136.0, 114.0, 215.0, 144.0, 128.0, 117.0, 89.0, 16.0, 95.0, 215.0, 150.0, 114.0, 162.0, 110.0, 17.0, 164.0, 144.0, 115.5, 134.0, 155.0, 119.0, 70.0, 230.0, 13.0, 137.0, 72.0, 69.0, 136.0, 28.0, 103.0, 154.0, 158.0, 33.0, 56.0, 194.0, 195.0, 140.0, 84.0, 170.0, 87.0, 178.0, 186.0, 193.0, 113.0, 140.0, 72.0, 37.0, 170.0, 110.0, 75.0, 104.0, 34.0, 152.0, 99.0, 117.0], \"xaxis\": \"x\", \"y\": [0.18439386755371057, 0.5750868907731637, 0.1132172353536568, 0.19850047615697952, 0.6950004168934912, 0.41826441672946313, 0.040828937665112974, 0.2145583871630251, 0.09143093017991866, 0.10013996234885614, 0.3658834999306372, 0.587897812361327, 0.23563705889496211, 0.5289998061994394, 0.5981734696485812, 0.5956194363709464, 0.11295199838815062, 0.6349332021584286, 0.09356782907078887, 0.0672754654033908, 0.3541579814831264, 0.11781588709523827, 0.3295981493457443, 0.23443288181779365, 0.13830133810679424, 0.5122546205578999, 0.03626449638205209, 0.32057959349203036, 0.3955164844050859, 0.21320459763992916, 0.08620177311633537, 0.4132497936565127, 0.19514157099220286, 0.028148892894647393, 0.03728071159582558, 0.20213762816504022, 0.39088790332760825, 0.10566618212719892, 0.11466232649727714, 0.09544364959788487, 0.07351553674018241, 0.3657542344632553, 0.05859665738698361, 0.43634835962676355, 0.4827032077898804, 0.516310366273556, 0.6480037931050455, 0.21122004543372697, 0.030344760075157406, 0.22750344576024595, 0.18673438423788624, 0.5460909738859347, 0.0666291073587214, 0.320234954276134, 0.515425573770442, 0.5751179393061847, 0.3262180383913996, 0.12192585741802231, 0.6165939755266235, 0.09365914315081003, 0.44259853952477324, 0.31958523161407537, 0.09228899111547839, 0.22815273642701062, 0.5282447951108347, 0.7777719169155834, 0.13834506443323813, 0.29425092810710396, 0.5300870647699181, 0.031947521718024174, 0.1108646816717751, 0.053339747820140615, 0.14466174791529418, 0.25697560969337485, 0.3383868137798065, 0.30803904997837983, 0.03434255320493995, 0.08689109251212201, 0.46044782253877736, 0.0973761441498977, 0.3449058470623745, 0.024212367984770777, 0.11665042079727428, 0.3333970234137619, 0.1495417879159372, 0.0679784404121434, 0.2360052425084116, 0.39147703437781534, 0.04428683932015287, 0.5381556738404795, 0.4357341587922019, 0.11843845992675284, 0.28107964630818494, 0.06989794698232743, 0.2658605825653322, 0.22408104406272966, 0.15519213452661884, 0.09873339188795927, 0.10739713799337769, 0.4712507279726723, 0.31257930793611366, 0.6259141532505736, 0.1651629894813923, 0.13024327386797574, 0.08242409751896962, 0.55355901104019, 0.11256152515999429, 0.22124325125588817, 0.05838775174278421, 0.6734770756819889, 0.06919042490492266, 0.5773286546676725, 0.5693181878572973, 0.12726917141891614, 0.27983888222674136, 0.15690954109554833, 0.18593824584442387, 0.05432525584274117, 0.33273366741371935, 0.12435295831370408, 0.48112847828662497, 0.2959384652215836, 0.5042039768350125, 0.3749869638443927, 0.7258627386781167, 0.4806866421912115, 0.6234335830956541, 0.4191951896523489, 0.20821728825178332, 0.6343085651912675, 0.27674577061671146, 0.02140654255666985, 0.42849246998341506, 0.1817444030106703, 0.4551538855951942, 0.05087080041524106, 0.516641204200833, 0.6810720245435042, 0.08151744899857294, 0.4475169494323581, 0.03995706953508171, 0.2181819033834006, 0.20372897255157485, 0.24305701296248816, 0.5381556738404795, 0.2358485729609252, 0.051323642447754336, 0.1913631294907303, 0.32154631204965056, 0.31229802093755377, 0.3917329141436472, 0.39462053822053156, 0.3680669306910641, 0.5017894292511481, 0.32120711190509066, 0.0768019282386515, 0.1168769044932052, 0.31545143431826594, 0.12007957373947853, 0.08354361700756141, 0.2180731800932174, 0.7653011157176768, 0.05076221583963347, 0.11739077279846111, 0.3639458403519926, 0.4815918747301601, 0.35998732468747585, 0.457353694020342, 0.5520498791697908, 0.22168281241722143, 0.2132287846887433, 0.4763394582576197, 0.3040153802820409, 0.20749766415549342, 0.3316810644107503, 0.8126297477835096, 0.5749367295182395, 0.27274039590582944, 0.2685808245693546, 0.5172108675362206, 0.33506587713796443, 0.09616672688355288, 0.041108213935392324, 0.10548050716105373, 0.5016695616404938, 0.20022874051447226, 0.14220640128276774, 0.23772630779738468, 0.19606080251004787, 0.2603188495268066, 0.18846597668723208, 0.19827111133563302, 0.261548791893628, 0.4140325207077993, 0.8134796325151183, 0.12265695643958285, 0.6311167068993262, 0.13481820177301163, 0.0932384579037443, 0.14050160114126486, 0.2562249115981724, 0.08547750670655718, 0.08643201081848362, 0.19981675431015722, 0.31390222338706264, 0.06221739913672386, 0.06996303880871468, 0.30029370289300306, 0.4306817897420764, 0.6595343859760441, 0.2839408857911616, 0.20468539219890003, 0.1130196126722065, 0.2360017176902124, 0.13187147729288817, 0.42313120297864704, 0.06964897436687001, 0.1624399718171824, 0.17200815643270417, 0.07333105637055992, 0.2440137653363641, 0.4900110333069776, 0.3085554157386313, 0.03480496731142946, 0.12148031785507996, 0.15002971926037112, 0.5314247042003052, 0.2758453007685677, 0.2151852748992088, 0.2658605825653322, 0.29911225563077193, 0.6594110243744711, 0.49869782335001445, 0.16788254706683048, 0.11816213334465087, 0.08230909248122409, 0.13653212507346946, 0.25639170942272826, 0.06562233405876228, 0.23311900627036541, 0.3756616197417655, 0.46674395287949066, 0.3092684534350997, 0.8337319641197457, 0.8331457111467163, 0.2591056156836542, 0.4778687671024334, 0.2542440524586721, 0.5361036306539362, 0.07073721340803463, 0.4731688813159418, 0.5755848065786346, 0.356689463387698, 0.14225616860197343, 0.21837916002376445, 0.14466174791529418, 0.29899643271856946, 0.4757427727983842, 0.08126799884203029, 0.1296501822378736, 0.3286954654423938, 0.08620177311633537, 0.13855855420831553, 0.05543377339452393, 0.11917834098009661, 0.2613621884509647, 0.11269900223777074, 0.08429051026621415, 0.3393961441870107, 0.07031960314855146, 0.11356777592095357, 0.4853279864284006, 0.1279289285514792, 0.0584572339054259, 0.08612988585012649, 0.3472440907423937, 0.1248029959061332, 0.07502335399434323, 0.19827111133563302, 0.3424151534036639, 0.3065175956815872, 0.13808860398564737, 0.058092197534895806, 0.04082786106581715, 0.1602592849246841, 0.09156161599234125, 0.5036030690663805, 0.2640411824475748, 0.6468038092930676, 0.07201805208597656, 0.22470230804277058, 0.1334773721572423, 0.04847889440667685, 0.2685808245693546, 0.10911308148570098, 0.6764508967260475, 0.6280060594576413, 0.36761958218269275, 0.16019930342079847, 0.17605308658107655, 0.14078981831089854, 0.2384997092801764, 0.13117402490907393, 0.12818959986091483, 0.4161925244315118, 0.12435295831370408, 0.09814942480303201, 0.05480698563416486, 0.3746187330143109, 0.41092354232892336, 0.507894749900129, 0.5137929421583434, 0.08293523366016065, 0.2964416548030494, 0.15236141109070434, 0.4396941021426354, 0.41893931094950754, 0.09113953260801844, 0.10967473999240707, 0.055732078845942, 0.05640314085190745, 0.06176263301115803, 0.06427139521062619, 0.20386133178572885, 0.21597661143113533, 0.7486409492386699, 0.2610715902497083, 0.09465277491899493, 0.5556171757583562, 0.137718889647652, 0.1978940751503777, 0.08472590699531857, 0.356262641598029, 0.14596950445002987, 0.13865818299932142, 0.3088915816821678, 0.11516321289421916, 0.16121169033174265, 0.40573483691789825, 0.34308606282264, 0.36300204724896845, 0.17193414756867276, 0.035926383178341514, 0.34536882843285344, 0.4400180463892147, 0.5165194668234709, 0.23319834124303085, 0.9637923675569924, 0.2635599134550337, 0.6259141532505736, 0.12324962258280003, 0.1256037712827487, 0.1248029959061332, 0.11665042079727428, 0.29081136443782263, 0.12993062945549005, 0.20959981847797426, 0.12385816607190492, 0.16931651488884025, 0.2468284110987674, 0.6181879252747016, 0.3509541008179864, 0.08619429866610873, 0.09537770951135394, 0.8204393830764495, 0.2493836920976743, 0.10367142046182065, 0.11516383353466464, 0.07169627826225977, 0.5400384130096556, 0.2709141565803237, 0.16809050322974173, 0.3421981324687273, 0.812724325423183, 0.1326589750154965, 0.054670132935181304, 0.055346153509382656, 0.8039442695404772, 0.3276168958360183, 0.6561718697940482, 0.6214102617950452, 0.3046829516703813, 0.7853649284745584, 0.7303620793003476, 0.6719087507962026, 0.16000678121984613, 0.579612101366232, 0.6347749924714103, 0.41894393066564606, 0.06936532322770372, 0.28322834609079706, 0.343263893078516, 0.4450860003239352, 0.3090838478611311, 0.408095736797927, 0.11529682880263803, 0.13359771811640497, 0.2417229185475579, 0.10092265889692065, 0.8181934133883563, 0.3777834313813965, 0.8273808576462511, 0.18439353202429143, 0.5148786056082297, 0.11287077888712382, 0.16015059460472458, 0.29672938182784603, 0.36944561074938853, 0.2505850522824452, 0.8467591712977676, 0.3840267097226593, 0.261779448872241, 0.1645479955558209, 0.14631295673285594, 0.4248523287309329, 0.09222807982804315, 0.2121484308544801, 0.33273366741371935, 0.5470626312455473, 0.8294144697045585, 0.25206662215500397, 0.15998368749433245, 0.548322128117227, 0.3917329141436472, 0.15981565308588508, 0.23631147082452741, 0.21082920466209698, 0.1871387197916503, 0.24774693401855818, 0.1913242313933492, 0.16437448769677154, 0.07582203648947516, 0.032541140295091364, 0.06311143057978008, 0.5009235508757715, 0.12343879567504301, 0.445735807756371, 0.40322837553658053, 0.09397553936597514, 0.1598391281143201, 0.26702494168661406, 0.19782301216908982, 0.06831823449824892, 0.5451167746582685, 0.20142160156100697, 0.25747632252511843, 0.4257317671215596, 0.5062318064185062, 0.10278357133077332, 0.10857266292312517, 0.06223864817381186, 0.11377411494697365, 0.14082424186384768, 0.2589321903149734, 0.31776639873426016, 0.07983414941561229, 0.30174211068680845, 0.42532907678292176, 0.23734670470511587, 0.2862296469110084, 0.24790288035387664, 0.5526146374040077, 0.20425399436950087, 0.5166825128498294, 0.12415322942140417, 0.5310696157212036, 0.3866387435262121, 0.14313186082947948, 0.31648660326859934, 0.026792916001305622, 0.7856428374245099, 0.42383310375799566, 0.5944566396871084, 0.6256605001243821, 0.08813642250468567, 0.03544811528140901, 0.06935406654889886, 0.15751976448865512, 0.22608551288474832, 0.3127311228465576, 0.1409438166611655, 0.3285615524533705, 0.3591330499592894, 0.47964497307801546, 0.7143146030302826, 0.14223944449319303, 0.06929054967731618, 0.32120711190509066, 0.16913647442041335, 0.707286257884667, 0.3230684446475647, 0.7616845263358343, 0.4104900542879092, 0.10053249234255524, 0.1106599594415556, 0.1543174595222413, 0.46003879185641183, 0.3811350878514418, 0.07185070571861518, 0.23882593985771994, 0.5344976262521839, 0.11031385635331636, 0.09610989844306939, 0.4955559099445003, 0.07845190603324759, 0.30697262074812925, 0.12767551958037127, 0.4375661224395835, 0.07737023387634634, 0.15307682457740834, 0.05694427046787409, 0.09028836937410878, 0.4011292297732457, 0.6186146927451245, 0.11561676905211238, 0.0993047499370594, 0.08102401279833105, 0.8100206966555492, 0.10768932514586738, 0.15386113005635593, 0.4026560765644126, 0.045535707525545144, 0.08229583319403, 0.08227601457953415, 0.8241544781987433, 0.0759900855540333, 0.5147505197509459, 0.11103147778198663, 0.42144961755966015, 0.24880465403270857, 0.3112403223054312, 0.3282460941643247, 0.28312386083977936, 0.2865521931047814, 0.16537364909659502, 0.4284132019637321, 0.34116073112729894, 0.051142721309942685, 0.10794707492381372, 0.1108646816717751, 0.29201805921023904, 0.07365131996157204, 0.36851051207096197, 0.2556143611338999, 0.07392456180697715, 0.045535707525545144, 0.15025986810093994, 0.4395989822566938, 0.19636656988846957, 0.21018464628148859, 0.15085686628779282, 0.3429118439192298, 0.16104008564300487, 0.2055862423584408, 0.18673310211333727, 0.5528531989583015, 0.20219789553586287, 0.5807830339134155, 0.6112381610839525, 0.07515362639458067, 0.5722084734915175, 0.3654892991508686, 0.1991057466826236, 0.4912569401667811, 0.05850610073101081, 0.3077884117234785, 0.17038242498240874, 0.14066607718466684, 0.10248584652416493, 0.4022873718442217, 0.07205214632436985, 0.35142291824287475, 0.10941760034103376, 0.06679271580157364, 0.05675388891699207, 0.058987921856350156, 0.3660303223369904, 0.28790374422385034, 0.4158290962648631, 0.40710291595796666, 0.09934102670994882, 0.06362846635195196, 0.30921476208988685, 0.23242198019285765, 0.055541210656895434, 0.5297663836663529, 0.10744632778983743, 0.18410212910939194, 0.17721960751489196, 0.1962664672709783, 0.1617648996714035, 0.10584426414108294, 0.5203501665477333, 0.07365131996157204, 0.31578819840495265, 0.35364190165315845, 0.1707951928721818, 0.41655733121321636, 0.15801546378512366, 0.7568436608419439, 0.22368578646300386, 0.0609449253562836, 0.2225096762928218, 0.18587673368692093, 0.05559101133196209, 0.569598540521716, 0.08073228430722412, 0.15724041301590164, 0.12879141548479, 0.4306817897420764, 0.17998791969802397, 0.41280880088413996, 0.5723062335690389, 0.6457404130724687, 0.10420061808672998, 0.12564769853034463, 0.21795029564941848, 0.4720930498870375, 0.11304202998506685, 0.545112257205237, 0.14852188644910969, 0.17217029085021085, 0.336250902618187, 0.48671482860553816, 0.5093433434984792, 0.35847801144896685, 0.3008706318705062, 0.18494609259573758, 0.4199330463236065, 0.04162287990776414, 0.2633909944023186, 0.4252182303976608, 0.4684623303117058, 0.1925553058603695, 0.09610989844306939, 0.09129843496680234, 0.3302708189676917, 0.4199330463236065, 0.11927294568859859, 0.4864154015695107, 0.06472081497616611, 0.6387929002666255, 0.37932906694235924, 0.093713747684541, 0.20627971812824875], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (curr)\", \"type\": \"scatter\", \"x\": [106.0, 196.0, 164.0, 47.0, 156.0, 167.0, 131.0, 14.0, 21.0, 25.0, 111.0, 85.0, 191.0, 207.0, 181.0, 133.0, 143.0, 42.0, 125.0, 131.0, 115.0, 219.0, 185.0, 225.0, 101.0, 110.0, 72.0, 174.0, 66.0, 163.0, 159.0, 166.0, 24.0, 73.0, 164.0, 135.0, 152.0, 39.0, 127.0, 128.0, 101.0, 44.0, 150.0, 171.0, 67.0, 177.0, 112.0, 38.0, 174.0, 40.0, 176.0, 139.0, 91.0, 33.0, 26.0, 49.0, 38.0, 23.0, 145.0, 201.0, 23.0, 216.0, 186.0, 26.0, 91.0, 11.0, 45.0, 34.0, 23.0, 42.0, 16.0, 182.0, 168.0, 23.0, 135.0, 111.0, 255.0, 61.0, 98.0, 84.0, 126.0, 21.0, 187.0, 143.0, 169.0, 59.0, 171.0, 184.0, 174.0, 102.0, 210.0, 134.0, 16.0, 213.0, 54.0, 9.0, 131.0, 148.0, 142.0, 216.0, 88.0, 167.0, 133.0, 38.0, 200.0, 9.0, 90.0, 26.0, 119.0, 197.0, 59.0, 148.0, 30.0, 189.0, 53.0, 166.0, 146.0, 144.0, 196.0, 44.0, 179.0, 132.0, 161.0, 102.0, 20.0, 94.0, 89.0, 123.0, 20.0, 201.0, 55.0, 227.0, 213.0, 56.0, 68.0, 178.0, 121.0, 13.0, 94.0, 126.0, 117.0, 169.0, 95.0, 77.0, 68.0, 149.0, 138.0, 12.0, 140.0, 166.0, 114.0, 212.0, 129.0, 176.0, 145.0, 117.0, 135.0, 183.0, 131.0, 213.0, 55.0, 173.0, 128.0, 116.0, 29.0, 90.0, 56.0, 92.0, 140.0, 150.0, 165.0, 114.0, 86.0, 178.0, 102.0, 107.0, 119.0, 220.0, 219.0, 158.0, 122.0, 157.0, 42.0, 84.0, 162.0, 161.0, 150.0, 116.0, 142.0, 149.0, 86.0, 102.0, 196.0, 83.0, 189.0, 35.0, 89.0, 142.0, 156.0, 97.0, 11.0, 201.0, 162.0, 198.0, 89.0, 183.0, 173.0, 15.0, 138.0, 160.0, 146.0, 106.0, 34.0, 106.0, 222.0, 80.0, 169.0, 172.0, 99.0, 60.0, 142.0, 202.0, 126.0, 216.0, 154.0, 119.0, 43.0, 199.0, 167.0, 143.0, 161.0, 129.0, 138.0, 145.0, 63.0, 167.0, 131.0, 129.0, 213.0, 101.0, 210.0, 31.0, 138.0, 162.0, 117.0, 190.0, 75.0, 105.0, 169.0, 70.0, 42.0, 186.0, 111.0, 153.0, 111.0, 133.0, 162.0, 238.5, 155.0, 38.0, 37.0, 101.0, 168.0, 168.0, 71.0, 186.0, 77.0, 113.0, 117.0, 164.0, 98.0, 28.0, 187.0, 148.0, 107.0, 108.0, 210.0, 72.0, 82.0, 136.0, 87.0, 161.0, 105.0, 197.0, 145.0, 148.0, 109.0, 126.0, 48.0, 66.0, 191.0, 147.0, 151.0, 85.0, 137.0, 31.0, 98.0, 192.0, 167.0, 22.0, 132.0, 47.0, 176.0, 226.0, 210.0, 131.0, 21.0, 105.0, 177.0, 181.0, 58.0, 191.0, 69.0, 145.0, 175.0, 162.0, 157.0, 197.0, 138.0, 80.0, 25.0, 20.0, 124.0, 164.0, 14.0, 151.0, 161.0, 6.0, 200.0, 168.0, 10.0, 166.0, 85.0, 148.0, 28.0, 85.0, 127.0, 133.0, 138.0, 104.0, 180.0, 121.0, 61.0, 63.0, 16.0, 49.0, 122.0, 106.0, 138.0, 112.0, 92.0, 128.0], \"xaxis\": \"x2\", \"y\": [0.18579927887031134, 0.9274202256360236, 0.2569067617886446, 0.17851375722123963, 0.43011516789686843, 0.3951880410340851, 0.35333307802371594, 0.854899199395705, 0.7749695319329993, 0.7150752736216004, 0.5793836726576811, 0.17187478758168062, 0.503776006633781, 0.6517104478925241, 0.5321166645488455, 0.4291031613352281, 0.6295132227815239, 0.446367751604861, 0.12978626497489776, 0.578130474122496, 0.1303225049324246, 0.4589423036505589, 0.6028673022099313, 0.6724998803801079, 0.055171077290688375, 0.28900585249094113, 0.5807441942986169, 0.6324527530146118, 0.32780881811994433, 0.4437792729685527, 0.47375733914823626, 0.6755390392614542, 0.8494338455743565, 0.8432302027568838, 0.3962269303969661, 0.36574887203466033, 0.9780529644634413, 0.6757083557066426, 0.43212531492562845, 0.6428319532862445, 0.2244465690609686, 0.6759712108962084, 0.300575337785698, 0.4848467547623382, 0.24353241802821812, 0.6165640897352094, 0.801889943514816, 0.6831580296641933, 0.4684052737322374, 0.07309555507266852, 0.17397747102053363, 0.548208100621717, 0.16948307959681597, 0.5287139706981401, 0.8097217619362252, 0.48186532860504816, 0.7044722268129955, 0.5458559966555334, 0.6067015953642416, 0.5767206748937392, 0.5416109283549078, 0.7766135747357961, 0.6371580804073698, 0.3290646799011723, 0.53941953634433, 0.7444876216695655, 0.27658524567301757, 0.8518717737266248, 0.685064206005921, 0.7994946846943811, 0.6254668451144636, 0.29898447003196504, 0.36566585814722175, 0.8260679099411251, 0.265003746926769, 0.18277705216857454, 0.6401445853260315, 0.2878944788643705, 0.7379395090268356, 0.6578861964269485, 0.3048731186933995, 0.6479177870210828, 0.5479007895539181, 0.8109237991420157, 0.4555798348891207, 0.35159410271621183, 0.6741813074403022, 0.40366163192193316, 0.3797333752177462, 0.42326140605337403, 0.49450075158901585, 0.7027754368270075, 0.31556666432085356, 0.5737052492708005, 0.5594846166878963, 0.9879213229528466, 0.23907110553933086, 0.7604887601700165, 0.906894853259191, 0.49150798334893764, 0.6693239074263375, 0.635181004157038, 0.4291031613352281, 0.6805197940362542, 0.8579270215873258, 0.42231028799440284, 0.7973836574204367, 0.6209099995125147, 0.617932351579841, 0.5867531689564582, 0.8217385626893267, 0.5766058512754557, 0.6085190813519714, 0.6488649586424557, 0.19466062481522506, 0.4062994677131635, 0.31500574198466447, 0.6106996692323751, 0.48314991346809855, 0.4300926711133176, 0.4623912750166579, 0.18141675383529432, 0.7404949196358439, 0.7960551628311661, 0.6696955469146251, 0.7471897031921468, 0.15222801432328747, 0.4782875749995391, 0.6696955469146251, 0.4617114467660769, 0.0374236133971757, 0.34638250956587036, 0.5737052492708005, 0.35412183815676124, 0.5342599897609015, 0.6273126624389191, 0.1819914526651868, 0.6450640502472667, 0.7576359910572065, 0.6363669366758954, 0.35783776888428775, 0.4555798348891207, 0.2603691587203709, 0.09638465351539516, 0.7889843001267657, 0.3995975535535492, 0.2404138117262561, 0.5134503976671381, 0.7620160241108803, 0.4852174766770502, 0.7934067722809752, 0.5657371707019572, 0.40591517497640706, 0.5142806824729376, 0.4667389755277017, 0.4597803030361328, 0.14211531046105408, 0.4709774325404933, 0.39253304933110444, 0.8152160844894966, 0.6418608562675732, 0.5695619245525361, 0.15898796250578873, 0.4189913516486339, 0.8097376625536354, 0.2776505479619531, 0.14100712613869515, 0.1625374057836978, 0.21879614767173305, 0.26016804821119, 0.5884346274074399, 0.25171266030158634, 0.5556828679884147, 0.2886326125606653, 0.5013044750460076, 0.23728971353361283, 0.6280660923097139, 0.6281218947904323, 0.6226708394296439, 0.1280348372312241, 0.37812375401711507, 0.6218606462016874, 0.446367751604861, 0.5237591509200082, 0.22560064672115399, 0.4159575064805634, 0.43989745285902637, 0.38133093816728936, 0.379388299643832, 0.4244201113870294, 0.8495234946343055, 0.44699506619782237, 0.3402560380560977, 0.16997778820688525, 0.6509841470756508, 0.5589353890471914, 0.49320900326902484, 0.41485179365651337, 0.2850172536812061, 0.5150740024049856, 0.7905789411902706, 0.6660097546858721, 0.5916856454756931, 0.25029771644034415, 0.21820707607863943, 0.23625780462752244, 0.6174344585079109, 0.33885175059010386, 0.8097775874289167, 0.5502791542248897, 0.45232673966787307, 0.5168725346003686, 0.4922951659433321, 0.2710495410551712, 0.5620189509382074, 0.19827785442852286, 0.35653263682836045, 0.4940220265254579, 0.3934632807735441, 0.349631294967786, 0.6543252873397565, 0.6043841099981286, 0.6572212454398962, 0.5323595728841377, 0.4667716613599331, 0.5480891857555714, 0.5933716837007499, 0.5769442381274095, 0.7796710482718338, 0.4721284230669528, 0.5632051337005155, 0.25606657060722404, 0.47304849589761655, 0.4991199345133047, 0.785831825438318, 0.5512091114854263, 0.31651464458218903, 0.192246895102814, 0.5737052492708005, 0.14970485751781393, 0.8257882443178004, 0.7450862811651306, 0.2404138117262561, 0.3428275867057816, 0.2186811050870735, 0.43730933466596944, 0.1325711740116582, 0.33994853494016564, 0.5172250338280965, 0.4543852880840521, 0.6017244994332274, 0.7267617626256621, 0.304103470637073, 0.49511795227452726, 0.4577650902534979, 0.4389063253281036, 0.3428275867057816, 0.6911248892501751, 0.5457123873353599, 0.3395528272139201, 0.5662837862370104, 0.38281068028313525, 0.1899488449656659, 0.1899488449656659, 0.39416742153886597, 0.4473524415330049, 0.5724944828663213, 0.12652799787397961, 0.14917046216496987, 0.4192276293132746, 0.1727250451072272, 0.7329347521090118, 0.2979855805324535, 0.5384433083808008, 0.2944152049751758, 0.5661013076544325, 0.39283078357423706, 0.6503174362647687, 0.7632350838020857, 0.29422440231251745, 0.8446099855685041, 0.3812461384129847, 0.1264117171095669, 0.6995051325026098, 0.7680829457938805, 0.1086082602083136, 0.50228427853815, 0.8303888649041977, 0.15145052047802054, 0.5239967242043768, 0.49461569007297057, 0.7323984730128237, 0.6372335578763709, 0.8485373319296128, 0.21018203617182263, 0.3854703692354019, 0.6209619763202376, 0.6996467359659702, 0.3913887983225227, 0.600932061108284, 0.18141675383529432, 0.32841971343371723, 0.17397747102053363, 0.3943097935149382, 0.5998672378660981, 0.6052803835931642, 0.35501406908939237, 0.4362847089434372, 0.6005057903956104, 0.45095984485898877, 0.5601124581139871, 0.6908342266509375, 0.29066967723125237, 0.5437491575180791, 0.5955595524057149, 0.4226516353037165, 0.552222307965348, 0.5038457784615318, 0.6752568781943777, 0.7880730680059006, 0.09430965090665133, 0.4986183600001317, 0.24112389044610405, 0.3635071851353404, 0.7047195247497422, 0.5251048099479148, 0.5632051337005155, 0.4520037684813636, 0.5271857161160298, 0.36566585814722175, 0.8775119234978208, 0.49474741138534273, 0.17187478758168062, 0.1069918390347242, 0.6371627391106971, 0.19018032574493748, 0.34352259564225396, 0.806114950115292, 0.47304849589761655, 0.5014153035286022, 0.6721952796384192, 0.7507248720260316, 0.38512814216859315, 0.8930847268109882, 0.863224561659591, 0.15108072818859253, 0.7399796913917198, 0.18579927887031134, 0.47304849589761655, 0.2033384066370545, 0.43667652058029827, 0.23252054766636898], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [101.0, 194.0, 126.0, 68.0, 94.0, 99.0, 97.0, 124.0, 95.0, 163.0, 32.0, 191.0, 111.0, 119.0, 127.0, 118.0, 38.0, 61.0, 28.0, 162.0, 212.5, 193.0, 74.0, 147.0, 179.0, 99.0, 127.0, 134.0, 93.0, 148.0, 74.0, 136.0, 178.0, 99.0, 121.0, 129.0, 76.0, 150.0, 81.0, 31.0, 124.0, 85.0, 156.0, 238.0, 27.0, 45.0, 135.0, 86.0, 212.0, 195.0, 18.0, 122.0, 137.0, 59.0, 175.0, 145.0, 181.0, 63.0, 165.0, 64.0, 64.0, 150.0, 105.0, 85.0, 100.0, 127.0, 144.0, 155.0, 89.0, 153.0, 189.0, 100.0, 117.0, 114.0, 113.0, 145.0, 174.0, 161.0, 38.0, 25.0, 87.0, 144.0, 60.0, 162.0, 143.0, 26.0, 55.0, 96.0, 172.0, 132.0, 143.0, 108.0, 115.0, 107.0, 117.0, 97.0, 28.0, 294.0, 10.0, 24.0, 126.0, 101.0, 22.0, 121.0, 189.0, 131.0, 105.0, 109.0, 117.0, 107.0, 75.0, 176.0, 112.0, 76.0, 138.0, 35.0, 153.0, 152.0, 136.0, 59.0, 158.0, 121.0, 44.0, 81.0, 60.0, 16.0, 53.0, 94.0, 26.0, 84.0, 82.0, 38.0, 98.0, 253.0, 74.0, 213.0, 12.0, 60.0, 169.0, 118.0, 166.0, 58.0, 35.0, 153.0, 204.0, 99.0, 190.0, 47.0, 134.0, 116.0, 98.0, 93.0, 94.0, 103.0, 116.0, 164.0, 47.0, 28.0, 92.0, 192.0, 65.0, 28.0, 86.0, 199.0, 20.0, 80.0, 148.0, 29.0, 48.0, 123.0, 100.0, 107.0, 41.0, 9.0, 88.0, 213.0, 129.0, 216.0, 111.0, 43.0, 131.0, 124.0, 117.0, 80.0, 141.0, 35.0, 28.0, 72.0, 170.0, 36.0, 124.0, 149.0, 92.0, 118.0, 133.0, 109.0, 76.0, 89.0, 190.0, 133.0, 98.0, 129.0, 245.0, 84.0, 191.0, 130.0, 99.0, 76.0, 134.0, 183.0, 116.0, 125.0, 34.0, 94.0, 35.0, 124.0, 90.0, 143.0, 174.0, 105.0, 125.0, 244.0, 15.0, 209.0, 189.0, 212.0, 118.0, 161.0, 59.0, 172.0, 65.0, 97.0, 84.0, 104.0, 33.0, 170.0, 99.0, 90.0, 140.0, 150.0, 114.0, 118.0, 132.0, 104.0, 54.0, 19.0, 155.0, 193.0, 111.0, 31.0, 150.0, 143.0, 145.0, 107.0, 105.0, 95.0, 126.0, 73.0, 111.0, 153.0, 15.0, 168.0, 111.0, 181.0, 172.0, 139.0, 110.0, 136.0, 189.0, 135.0, 104.0, 117.0, 51.0, 49.0, 113.0, 39.0, 148.0, 109.0, 102.0, 51.0, 26.0, 122.0, 104.0, 120.0, 114.0, 19.0, 132.0, 73.0, 145.0, 135.0, 47.0, 12.0, 132.0, 87.0, 125.0, 139.0, 94.0, 143.0, 139.0, 97.0, 119.0, 109.0, 163.0, 134.0, 178.0, 44.0, 95.0, 143.0, 180.0, 90.0, 129.0, 72.0, 32.0, 123.0, 81.0, 152.0, 214.0, 126.0, 117.0, 173.0, 204.0, 134.0, 156.0, 134.0, 65.0, 151.0, 114.0, 44.0, 164.0, 125.0, 28.0, 156.0, 28.0, 201.0, 106.0, 116.0, 182.0, 225.0, 142.0, 39.0, 142.0, 98.0, 188.0, 55.0, 27.0, 113.0, 87.0, 140.0, 33.0, 85.0, 158.0, 95.0, 169.0, 103.0, 191.0, 151.0, 28.0, 113.0, 163.0, 26.0, 95.0, 135.0, 55.0, 171.0, 21.0, 206.0, 113.0, 168.0, 173.0, 161.0, 97.0, 227.0, 107.0, 81.0, 17.0, 17.0, 96.0, 118.0, 38.0, 111.0, 118.0, 125.0, 143.0, 189.0, 98.0, 166.0, 135.0, 68.0, 12.0, 131.0, 172.0, 174.0, 128.0, 194.0, 108.0, 35.0, 155.0, 26.0, 87.0, 93.0, 187.0, 150.0, 158.0, 114.0, 120.0, 169.0, 130.0, 109.0, 149.0, 80.0, 23.0, 125.0, 81.0, 55.0, 185.0, 53.0, 245.0, 17.0, 122.0, 130.0, 75.0, 90.0, 34.0, 48.0, 15.0, 118.0, 151.0, 150.0, 85.0, 140.0, 85.0, 155.0, 84.0, 109.0, 17.0, 38.0, 172.0, 178.0, 93.0, 171.0, 229.0, 27.0, 146.0, 104.0, 89.0, 15.0, 60.0, 112.0, 47.0, 48.0, 136.0, 89.0, 141.0, 9.0, 154.0, 159.0, 113.0, 88.0, 158.0, 29.0, 179.0, 92.0, 181.0, 173.0, 160.0, 107.0, 151.0, 79.0, 132.0, 37.0, 170.0, 163.0, 50.0, 135.0, 98.0, 77.0, 172.0, 102.0, 135.0, 123.0, 143.0, 134.0, 85.0, 21.0, 182.0, 132.0, 28.0, 101.0, 25.0, 44.0, 100.0, 129.5, 43.0, 47.0, 40.0, 14.0, 125.0, 46.0, 11.0, 49.0, 118.0, 139.0, 229.0, 114.0, 53.0, 113.0, 200.0, 133.0, 88.0, 128.0, 70.0, 80.0, 113.0, 73.0, 152.0, 104.0, 45.0, 19.0, 206.0, 41.0, 173.0, 14.0, 97.0, 180.0, 147.0, 149.0, 135.0, 116.0, 150.0, 164.5, 21.0, 128.0, 178.0, 101.0, 16.0, 180.0, 14.0, 132.0, 10.0, 189.0, 156.0, 166.0, 10.0, 153.0, 49.0, 99.0, 68.0, 16.0, 80.0, 229.0, 225.0, 104.0, 122.0, 10.0, 57.0, 150.0, 69.0, 76.0, 102.0, 129.0, 95.0, 116.0, 168.0, 19.0, 173.0, 189.0, 142.0, 177.0, 71.0, 140.0, 110.0, 184.0, 152.0, 164.0, 105.0, 117.0, 124.0, 91.0, 181.0, 85.0, 181.0, 168.0, 128.0, 89.0, 167.0, 155.0, 20.0, 212.0, 78.0, 25.0, 35.0, 130.0, 129.0, 122.0, 7.0, 69.0, 120.0, 140.0, 83.0, 136.0, 157.0, 169.0, 221.0, 190.0, 113.0, 91.0, 13.0, 104.0, 136.0, 167.0, 99.0, 103.0, 159.0, 108.0, 91.0, 136.0, 103.0, 213.0, 189.0, 169.0, 107.0, 91.0, 112.0, 82.0, 114.0, 72.0, 84.0, 159.0, 17.0, 128.0, 16.0, 43.0, 87.0, 136.0, 140.0, 144.0, 74.0, 86.0, 145.0, 153.0, 127.0, 228.0, 112.0, 157.0, 140.0, 192.0, 114.0, 111.0], \"xaxis\": \"x2\", \"y\": [0.6660328535674787, 0.4955559099445003, 0.11251030999551548, 0.5313240922219649, 0.7616845263358343, 0.42881839881496897, 0.22146723198036844, 0.2709448900825402, 0.04188686298684474, 0.3198999677935893, 0.586632325439729, 0.3332859260788763, 0.0891770245136605, 0.07249138429342028, 0.0813041402249215, 0.2808128557304226, 0.18155424903412543, 0.14020593233116785, 0.20529540916933675, 0.1755850319354616, 0.5722846846512241, 0.4684623303117058, 0.2863708053899042, 0.4489302200945696, 0.3606737334686688, 0.09834172337505831, 0.1439119889738254, 0.10526388551166177, 0.08976738859769384, 0.15927641460572795, 0.07353544332944184, 0.4894096639868448, 0.24735122968283396, 0.41440459167745447, 0.10107859516115147, 0.4809249647595707, 0.043928674649753696, 0.27268427565697984, 0.07203278686513981, 0.35989685204578803, 0.08410225657903847, 0.09640449279894714, 0.2859044620344169, 0.766491644508495, 0.27194216744256416, 0.11891721880979944, 0.6033870782914414, 0.8445823904457724, 0.4148378249676725, 0.09538880480821377, 0.5822786697287807, 0.2006236885231063, 0.30215903380660414, 0.3526626332448971, 0.22921561702294402, 0.3499358724503807, 0.451050436906263, 0.01968005574460141, 0.3849224947932618, 0.608666907839271, 0.30333177217190177, 0.05732515971384944, 0.08299070223644744, 0.155374347961305, 0.4378217303747408, 0.10641916767178827, 0.3207785913922725, 0.3280003244598044, 0.4747408725557203, 0.27229542413121455, 0.5314247042003052, 0.13834506443323813, 0.652508483608137, 0.1775869136191267, 0.4659209431511335, 0.3288332341233703, 0.47224603889779837, 0.2773569186284155, 0.18590272545123854, 0.6719763059805124, 0.04569198037744582, 0.22473444069733528, 0.0776074933333939, 0.1411968215808168, 0.3654892991508686, 0.06069899520469324, 0.21029328672965164, 0.13919371635861133, 0.16321149678759816, 0.6144435769482088, 0.1388055550317996, 0.0827658987104557, 0.0793107693477757, 0.04994940743047871, 0.46220165202879504, 0.08265172102971341, 0.5554564865761329, 0.10902951494304747, 0.26480674198345266, 0.31816712550642645, 0.20184400370343658, 0.23734670470511587, 0.19264674509953905, 0.03558879485690103, 0.5314247042003052, 0.3013473679880785, 0.8043030592862955, 0.07665185966197174, 0.17816243980233548, 0.14637302723887635, 0.43623195291339645, 0.5773286546676725, 0.06996409198491005, 0.0635191394270278, 0.11839391684253864, 0.03368970372860669, 0.16544292122901683, 0.5002106013252752, 0.20783967621931676, 0.4413184352618238, 0.1377753535318076, 0.017128038770129694, 0.09070427960766203, 0.05237321155563324, 0.46044782253877736, 0.09863911308639095, 0.6058955548956951, 0.07377868677997379, 0.33726125667837825, 0.03705661785513226, 0.03856885477325478, 0.01970319875133708, 0.06623921298607705, 0.655672818127978, 0.36403826442427, 0.375635621083512, 0.25822104517587474, 0.26990817233175546, 0.30316845466795117, 0.21597661143113533, 0.10411587283779344, 0.4582573305440075, 0.28974208538397184, 0.3995654588450376, 0.48407929824265805, 0.2412117545349558, 0.49704114689177337, 0.3112403223054312, 0.13571503940671914, 0.35304273602320047, 0.18963603484652192, 0.06023564559469896, 0.305863422303413, 0.34062746964654456, 0.03532029949184434, 0.20200996882548472, 0.207876095289533, 0.11304202998506685, 0.26487496820305634, 0.46674395287949066, 0.05931266843465788, 0.6063731497207538, 0.053339747820140615, 0.16056749669580483, 0.3366557342021428, 0.18735912995827353, 0.2667542380283816, 0.9197592959547904, 0.13322255285490225, 0.3533185668595151, 0.08763312389948397, 0.343329095265401, 0.1298321532292276, 0.11240742021865013, 0.03412749239977686, 0.23316671381479437, 0.13955591125269062, 0.065615492475942, 0.03940539431326806, 0.04874684240881699, 0.42507109047861347, 0.3720756994829524, 0.20627971812824875, 0.23346983492740092, 0.299872058778726, 0.14688925552714138, 0.20529540916933675, 0.11294333341234963, 0.4523771212155355, 0.15895981664313275, 0.12633289347617382, 0.34801013400503944, 0.063056887931354, 0.09222807982804315, 0.19281104432210028, 0.11843845992675284, 0.1064686731970873, 0.12171087020281346, 0.49704114689177337, 0.4202798549667376, 0.058322454167927695, 0.40418598015134155, 0.7514842711311043, 0.067978575311199, 0.1468497162592186, 0.3655805321171328, 0.36741292271676196, 0.08785516413846428, 0.4223454464089015, 0.09472348251934337, 0.14196098925812006, 0.10013555988874479, 0.32154631204965056, 0.05416575683382341, 0.786126361492164, 0.04696516601190348, 0.26926088858349784, 0.28123172687107445, 0.3094364396730669, 0.04307250962973752, 0.07126159086244754, 0.6143015945908075, 0.495586079448059, 0.46102608015166635, 0.40789311683600216, 0.8929715185951024, 0.1227006502272181, 0.3638055988942468, 0.10470002869891348, 0.29304213908849364, 0.8936703981375603, 0.3534407380188983, 0.0883666731866185, 0.07895584641700149, 0.05166417783587085, 0.4199775765299997, 0.10304865631077798, 0.1041340676595982, 0.11031385635331636, 0.22368578646300386, 0.22137255536682798, 0.0725394352715707, 0.08320759746190642, 0.3577905591727162, 0.36362749207413336, 0.13058702032609693, 0.4306817897420764, 0.4684623303117058, 0.3185463047756948, 0.6991046594229053, 0.33105510290791684, 0.35804773811787727, 0.3499358724503807, 0.17780319308126435, 0.07142366539796174, 0.1504846162366139, 0.28643330026545544, 0.11492102279820171, 0.08716328114311156, 0.12905574960179156, 0.5528531989583015, 0.2852168598030531, 0.3185463047756948, 0.41766807389819915, 0.22818770291371737, 0.10749415552266317, 0.07500089027222667, 0.2150933620687273, 0.4879833184669665, 0.21367083697314282, 0.18281788227943807, 0.11217648511765432, 0.01860460444149037, 0.4990100838788346, 0.3212979959143686, 0.7252893191599291, 0.30018855716775616, 0.2808216200321265, 0.24332849241566534, 0.22583693263898685, 0.307128141019565, 0.12930297020615966, 0.07734813107736227, 0.38078614076753503, 0.037937415915298756, 0.18389331462546077, 0.2015421194948802, 0.10121634311933059, 0.7209948827487924, 0.252131738577411, 0.19866278493931944, 0.5569604587758099, 0.19172534874952063, 0.07516041810443141, 0.18673310211333727, 0.20736440356309183, 0.27568985010185776, 0.1748501221961516, 0.134246332983591, 0.12151400729184814, 0.03860330573341564, 0.16198960071610413, 0.062309112953929935, 0.14943540958877521, 0.46827469198568006, 0.12435295831370408, 0.11768791031746062, 0.10794707492381372, 0.04347111427796346, 0.07423675680829, 0.1602542791395647, 0.19911642350143877, 0.2379444352717226, 0.36664322039668684, 0.10130143557253446, 0.17108028607870185, 0.6143194513817134, 0.5641235853966853, 0.29864316680665437, 0.44752301946823647, 0.13459844499503626, 0.037461465199631894, 0.5002964248569376, 0.4059565893810353, 0.7035957096210382, 0.0629603198376949, 0.25036415064992923, 0.14780834332950044, 0.24800647860056513, 0.10438723399855232, 0.24366911510822187, 0.4574644219698093, 0.8347014835967527, 0.42226245660703365, 0.4073158502222598, 0.47525484003715535, 0.37845934883934684, 0.35325777167774697, 0.4763432908647238, 0.18941100564626978, 0.23853527246002126, 0.27277355193056574, 0.5556171757583562, 0.19481513110659687, 0.7460207524242459, 0.12627308236197843, 0.2115813466591615, 0.4773837842994688, 0.22238536240250728, 0.1978655273089749, 0.32057959349203036, 0.1601330373243487, 0.6256605001243821, 0.34062746964654456, 0.5899158924001677, 0.1273375405407705, 0.6866376712310945, 0.3812864953771038, 0.07918534602430627, 0.10510921928053807, 0.052405178286905496, 0.29010285216427345, 0.5802968836962079, 0.4475494904811408, 0.33107045093633036, 0.6046547135519548, 0.33132995382553565, 0.3391582818855403, 0.37109937806185267, 0.18876467901964422, 0.03244681540368277, 0.6531311156123596, 0.18281848038190407, 0.06840545126676123, 0.23876166598551407, 0.5602062902528231, 0.05478334190217349, 0.18965009362393503, 0.502081053312289, 0.0945975060483667, 0.24937367783354814, 0.14040338921272166, 0.09582424632391484, 0.4879833184669665, 0.07536550594022651, 0.37763546052463404, 0.20240400638142053, 0.06234715971662652, 0.1729504208160284, 0.2536573606029918, 0.1491704939138675, 0.47224603889779837, 0.20734784509414073, 0.1656619584420439, 0.20263687678412212, 0.4576701693643329, 0.3746187330143109, 0.06578487521364562, 0.09359041291034786, 0.15714155813810793, 0.43198081216185935, 0.17693664965610134, 0.14200602748771296, 0.16878839641400256, 0.11131318694256087, 0.43040972974554736, 0.12494266711040569, 0.5286591337585229, 0.3917329141436472, 0.14284790216410748, 0.29931895876037384, 0.3998656181534954, 0.13198036366642862, 0.2166851793268345, 0.164669749255824, 0.3116999397838065, 0.5702002297218003, 0.2867818412254799, 0.05809024612643199, 0.0701620515557333, 0.10493669218879953, 0.03474255021640338, 0.14069518845012563, 0.7697788668098057, 0.44513161239284327, 0.12104291767226882, 0.2823656727566666, 0.28640273091276736, 0.09904459769556595, 0.10889384421684001, 0.1978655273089749, 0.6326587477498924, 0.0766186874204361, 0.07300117689776386, 0.3978521493117628, 0.7293533971641823, 0.24040337450518035, 0.46827469198568006, 0.03737110954461231, 0.48112847828662497, 0.5755848065786346, 0.12151472907643468, 0.332302417201758, 0.3208349144509022, 0.13406270144296106, 0.47820199098358873, 0.024219732643774528, 0.7923035912680444, 0.3099424932714111, 0.8494816644677875, 0.15230116664989468, 0.8795672599938588, 0.34536882843285344, 0.587897812361327, 0.3660303223369904, 0.3074082248441362, 0.1925553058603695, 0.1582957933341015, 0.5297945963993664, 0.1892543681582496, 0.06574637766643598, 0.03286461121245521, 0.6223124217546917, 0.48666930315350876, 0.17200815643270417, 0.27042696199957883, 0.16010429726024444, 0.25291734909108765, 0.22778758435893687, 0.6055190518965303, 0.41989528411161425, 0.2865861541738164, 0.17344095530188786, 0.4163761941495938, 0.24610426408478792, 0.029106329843254564, 0.5849270471051293, 0.09607886499379148, 0.4890296174547498, 0.11193395874659995, 0.3667485749721523, 0.29672938182784603, 0.13696827462710404, 0.03986507081677082, 0.41542023534722683, 0.1642424989032959, 0.041559354155004224, 0.1266666793707928, 0.5259198205822933, 0.42123490919744344, 0.6147437654518444, 0.42849246998341506, 0.04874684240881699, 0.16870816563337898, 0.35179373534084035, 0.4552463954734379, 0.1543174595222413, 0.4641274821418986, 0.1106599594415556, 0.40441066041397966, 0.05916303638108533, 0.24194101851814365, 0.5755848065786346, 0.23631147082452741, 0.04679471849088612, 0.33132995382553565, 0.6031606095022326, 0.16900214819844117, 0.9322526967181247, 0.1065938389205352, 0.0540586741766943, 0.14920224829950646, 0.03054451782098533, 0.13595064656866984, 0.15908339514281045, 0.09402391562754642, 0.27219479721363327, 0.10477531970828624, 0.6046547135519548, 0.04412971358840656, 0.0821245873848182, 0.24953715645213048, 0.24311299470472425, 0.679537413518331, 0.02875041056121841, 0.2874129658970298, 0.17131102264191878, 0.07042427222914205, 0.1577516063520068, 0.39934634677258996, 0.42249259173992826, 0.24940231538328683, 0.46827469198568006, 0.040988937643475554, 0.034828704291737345, 0.26663563965858417, 0.22421743312747255, 0.10716094829621758, 0.7421831263598226, 0.4644511163280224, 0.1591307416719686, 0.21502194578256428, 0.12883185373794437, 0.15520095945599266, 0.04280666734842442, 0.06928764484923078, 0.3578757504587543, 0.0760792945579073, 0.06637805380770656, 0.5755848065786346, 0.4326356954473739, 0.16985579355455038, 0.47152805642545803, 0.11644579282256762, 0.11790522998710073, 0.5438286352264949, 0.41561805514360906, 0.050606352251634235, 0.21836830194439782, 0.22298545275517268, 0.1504846162366139, 0.16819644397314482, 0.47796113776613436, 0.14100197907825862, 0.7878397890034206, 0.12176963827920351, 0.09814942480303201, 0.23162396036129984, 0.04400104962869911, 0.061588508633294015, 0.2774601068082493, 0.40816383821078206, 0.14036214651023216, 0.11837607594274324, 0.0703155477214753, 0.17002415827487982, 0.24611532014486182, 0.06874641727313702, 0.30975746960573625, 0.07004288447243323, 0.6453829176356538, 0.3880412370469972, 0.10205495289732236, 0.12171087020281346, 0.38550692709735157, 0.4398162761337091, 0.5769741243450848, 0.48842976274850136, 0.3866799681687785, 0.17129518728202664, 0.5711206597512044, 0.4456070955069118, 0.4585850027539752, 0.25462747480751524, 0.34771016550763867, 0.35548618548401445, 0.07878090041588082, 0.3008706318705062, 0.08117751180329491, 0.055511805197920094, 0.1600174453683395, 0.35597309965685686, 0.5473978930443646, 0.3321771897262046, 0.14643302530661162, 0.7653011157176768, 0.24188431843396252, 0.16704799028757666, 0.41136103198090634, 0.5749869949413896, 0.709238838470871, 0.09340318303147321, 0.602429869503323, 0.04154705947390969, 0.7519582179986716, 0.15993940416551844, 0.04372375151311325, 0.4076899811241429, 0.4644511163280224, 0.3133137248525114, 0.24628490675063597, 0.06972977174174444, 0.15949948541388637, 0.2241543425141257, 0.1729876202034616, 0.07290025122558275, 0.1220000714032804, 0.36493953208423235, 0.09420126302076737, 0.026726938234992392, 0.7199273032686843, 0.4606762448039463, 0.04906818437448113, 0.19446415942665518, 0.14876853598344464, 0.3247816953453747, 0.023320858692869595, 0.7310618090422621, 0.48944479260603346, 0.20357574295749958, 0.0840537250624015, 0.5368744051465595, 0.21101467800102214, 0.46682279298460017, 0.3749869638443927, 0.46592999202179275, 0.10188412989688433, 0.15751976448865512], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"total.sulfur.dioxide\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"total.sulfur.dioxide\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}}, {\"id\": \"All_density\", \"params\": {\"data\": [{\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Reference<br>density=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [0.992, 0.9964, 0.99097, 0.99511, 0.9934, 0.99558, 0.98894, 0.9909, 0.9902, 0.98994, 0.9926, 0.99458, 0.9951, 1.0, 0.9955, 0.9954, 0.99, 1.0032, 0.99002, 0.99364, 0.99566, 0.99175, 0.9928, 0.99085, 0.9938, 0.9938, 0.98742, 0.9955, 0.9942, 0.9892, 0.9911, 0.99728, 0.9914, 0.99035, 0.99076, 0.99855, 0.9969, 0.98892, 0.99015, 0.99089, 0.98954, 0.9945, 0.9971, 0.99245, 0.99676, 0.9972, 0.9978, 0.992, 0.9962, 0.9906, 0.9978, 0.9991, 0.98998, 0.99304, 0.992, 0.9979, 0.99201, 0.98941, 0.992, 0.992, 0.99758, 0.99016, 0.991, 0.993, 1.001, 0.9984, 0.99064, 0.9941, 0.9954, 0.99146, 0.9918, 0.98934, 0.99278, 0.99316, 0.9965, 0.99556, 0.9973, 0.98928, 0.99638, 0.9916, 0.995, 0.99012, 0.99109, 0.997, 0.9935, 0.99096, 0.9918, 0.9982, 0.9896, 0.9984, 0.9919, 0.9918, 0.9942, 0.9912, 0.99471, 0.99241, 0.99567, 0.98959, 0.98984, 0.9946, 0.9934, 0.9986, 0.99638, 0.9951, 0.98914, 0.9938, 0.9925, 0.9946, 0.99058, 0.99472, 0.99002, 1.0103, 0.99208, 0.99666, 0.99202, 0.9889, 0.99034, 0.98974, 0.999, 0.99534, 0.99808, 0.9924, 0.9974, 0.998, 0.99678, 0.99538, 0.9958, 0.9974, 0.9931, 0.9983, 0.9934, 0.98746, 0.9998, 0.99624, 0.9966, 0.98976, 0.99834, 0.99627, 0.98968, 0.998, 0.99007, 0.9945, 0.99452, 0.9935, 0.9984, 0.9938, 0.99279, 0.9905, 0.9948, 0.9974, 0.99792, 0.998, 0.99256, 0.99775, 0.99835, 0.99189, 0.99033, 0.9908, 0.9931, 0.98972, 0.9949, 0.99616, 0.99014, 0.9974, 0.9938, 0.9962, 0.99642, 0.9942, 0.9977, 0.9894, 0.99566, 0.9964, 0.993, 0.99507, 0.9964, 0.9948, 0.9964, 0.9939, 0.99174, 0.99736, 0.99462, 0.99, 0.99458, 0.9895, 0.9949, 0.991, 0.98758, 0.9973, 0.9912, 0.9932, 0.99183, 0.99378, 0.9918, 0.99269, 0.99744, 0.9901, 0.99353, 0.99178, 0.99041, 0.99184, 0.9948, 0.9916, 0.9926, 0.99504, 0.99394, 0.99408, 0.9974, 0.9944, 0.99807, 0.9982, 0.9928, 0.9916, 0.99111, 0.99215, 0.99089, 0.9934, 0.99112, 0.9938, 0.99276, 0.98954, 0.9926, 0.9997, 0.9923, 0.9907, 0.99814, 0.9938, 0.9986, 0.99945, 0.993, 0.99471, 0.99235, 0.9928, 0.99379, 0.99522, 0.99224, 0.99324, 0.9922, 0.9954, 0.9908, 0.99397, 0.99558, 0.9979, 0.9931, 0.99955, 0.99588, 0.9938, 0.9937, 0.99776, 0.9953, 0.98994, 1.0003, 0.9986, 0.9982, 0.99672, 0.99674, 0.99278, 0.99022, 0.99396, 0.9912, 0.9948, 0.9973, 0.9911, 0.99153, 0.991, 0.99119, 0.9911, 0.991, 0.99652, 0.99489, 0.98942, 0.99144, 0.9949, 0.99254, 0.99252, 0.98919, 0.99784, 0.99469, 0.99523, 0.99378, 0.99212, 0.9941, 0.9911, 0.99008, 0.98963, 0.99116, 0.99545, 0.99946, 0.997, 0.9971, 0.99044, 0.9924, 0.9916, 0.99408, 0.99174, 0.9937, 0.9955, 0.9972, 0.9921, 0.99199, 0.994, 0.99387, 0.99462, 0.992, 0.9928, 0.994, 0.99534, 0.9945, 0.99057, 0.9999, 0.99274, 0.99685, 0.9983, 0.99362, 0.9923, 0.9925, 1.0002, 0.9942, 0.98912, 0.99094, 0.9892, 0.98914, 0.9908, 0.9918, 0.9927, 0.9917, 0.9972, 0.9954, 0.99546, 0.9974, 0.99198, 0.99308, 0.99066, 0.9986, 0.99464, 0.9917, 0.99954, 0.99202, 0.99414, 0.9982, 0.9952, 0.9962, 0.9934, 0.9891, 0.9941, 0.99573, 0.9936, 0.9967, 0.99685, 0.98918, 0.9986, 0.99518, 0.9932, 0.99469, 0.99109, 0.99705, 0.9917, 0.9964, 0.98987, 0.9996, 0.9904, 0.99886, 0.9924, 0.997, 0.99494, 0.99745, 0.99606, 0.98999, 0.9909, 0.99615, 0.9975, 0.9926, 0.9918, 0.9929, 0.9948, 0.99036, 0.99228, 0.98984, 0.99822, 0.99299, 0.9987, 1.0015, 0.99563, 0.9984, 0.9984, 0.9957, 0.99194, 1.00369, 0.993, 0.9952, 0.99035, 0.9916, 0.99896, 0.9945, 0.9927, 0.9954, 0.99549, 0.9922, 1.00295, 0.98956, 0.9973, 0.9961, 0.997, 0.99352, 0.9994, 0.99238, 0.99524, 0.9927, 0.9917, 0.9914, 0.9957, 0.99304, 0.99331, 0.99108, 0.992, 0.9923, 0.99064, 0.9921, 0.999, 0.99392, 0.9944, 0.99546, 0.99326, 0.995, 0.99792, 0.99534, 0.9908, 0.99158, 0.99136, 0.99122, 0.9928, 0.9931, 0.99063, 0.99024, 0.9898, 0.993, 0.98816, 0.9965, 0.99586, 0.9925, 0.9986, 0.9912, 0.9916, 0.99132, 0.996, 0.99358, 0.9938, 0.9977, 0.9934, 0.9978, 0.99074, 0.99048, 0.9898, 0.98994, 0.99342, 0.9966, 1.0004, 0.9948, 0.99514, 0.99596, 0.99602, 0.9986, 0.9971, 1.0003, 1.00051, 0.99084, 0.99566, 0.9927, 0.9912, 0.99581, 0.995, 0.9972, 0.99656, 0.9965, 0.99975, 0.99052, 0.989, 0.9916, 0.99455, 0.99393, 0.9924, 0.9946, 1.00038, 0.99906, 0.9958, 0.99475, 0.9935, 0.9906, 0.99835, 0.98883, 0.9932, 0.99863, 0.99686, 0.99322, 0.99678, 0.99331, 0.9925, 0.9978, 0.99392, 0.99105, 0.99384, 0.99596, 0.99216, 0.99321, 0.9979, 0.99124, 0.99472, 0.98946, 0.9945, 0.98926, 0.9925, 0.9898, 0.99066, 0.99587, 0.9984, 0.98942, 0.98876, 0.99045, 0.9975, 0.9913, 0.9906, 0.99416, 0.98794, 0.9925, 0.9911, 0.99675, 0.98931, 0.9983, 0.992, 0.99658, 0.99136, 0.9991, 0.9964, 0.992, 0.99658, 0.9923, 0.9965, 0.9952, 0.99461, 0.99287, 0.9918, 0.9944, 0.98944, 0.9976, 0.9953, 0.99074, 0.98794, 0.99643, 0.9954, 0.99114, 0.99374, 0.99218, 0.9948, 0.993, 0.9966, 0.99152, 0.99498, 0.9925, 0.99615, 0.99715, 0.99056, 0.9937, 0.9965, 0.9906, 0.9982, 0.99157, 0.9919, 0.99157, 0.9953, 0.9898, 0.99543, 0.9899, 0.9937, 0.99203, 0.99036, 0.99008, 0.9892, 0.99971, 0.992, 0.99785, 0.9927, 0.99044, 0.9912, 0.995, 0.995, 0.9942, 0.99522, 0.98856, 0.9939, 0.9927, 0.99095, 0.9972, 0.98946, 0.99542, 0.98944, 0.9985, 0.99411, 0.99266, 0.9962, 0.99268, 0.9971, 0.9917, 0.9925, 0.9968, 0.99142, 0.9964, 0.9979, 0.99214, 0.99737, 0.9917, 0.99807, 0.99334, 0.99798, 0.99558, 0.9972, 0.98946, 0.99543, 0.9934, 0.9938, 0.9947, 0.9969, 0.99752, 0.99082, 0.9983, 0.9962, 0.99692, 0.9928, 0.998, 0.9909, 0.99494, 0.98987, 0.99578, 0.997, 0.9986, 0.99544, 0.99321, 0.99072, 0.9985, 0.99494, 0.99118, 0.9968, 0.99112, 1.0004, 0.9907, 0.9921, 0.9934], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Current<br>density=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [0.9934, 0.9979, 0.99234, 0.9932, 0.99686, 0.9927, 0.9926, 0.99362, 0.989435, 0.99239, 1.0, 0.9908, 0.98918, 0.99168, 0.98904, 0.9932, 0.99438, 0.99189, 0.999, 0.9903, 0.999, 0.9986, 0.992, 0.9935, 0.99541, 0.9893, 0.99326, 0.99146, 0.99144, 0.99165, 0.98889, 0.9957, 0.9992, 0.99449, 0.98871, 0.9936, 0.9914, 0.99488, 0.98988, 0.995, 0.99123, 0.99014, 0.9958, 0.9986, 0.9974, 0.99417, 0.9998, 0.9968, 0.9969, 0.9908, 0.9972, 0.9917, 0.9946, 0.9922, 0.99376, 1.0006, 0.998, 0.9916, 0.99795, 0.99652, 0.99724, 0.99727, 0.99206, 0.99406, 0.99534, 0.98964, 0.9966, 0.9951, 0.99236, 0.9945, 0.9986, 0.99064, 0.99815, 0.99313, 0.9983, 0.99668, 0.99922, 0.99207, 0.9949, 0.9975, 0.98972, 0.9923, 0.99492, 0.9914, 0.9965, 0.99536, 0.99652, 0.99456, 0.9932, 0.994, 0.99526, 0.9934, 0.9904, 0.98836, 0.9931, 0.99148, 0.99704, 0.99018, 0.9968, 0.99376, 0.993, 0.99596, 0.99438, 0.98882, 0.9986, 0.99566, 0.996, 0.99262, 0.99132, 0.99159, 0.99551, 1.0103, 0.99144, 0.9893, 0.99171, 0.9934, 0.99238, 0.9934, 0.99552, 0.9989, 0.99322, 0.98976, 0.99384, 0.99, 0.99638, 0.99649, 0.9981, 0.991, 0.9984, 0.98961, 0.98961, 0.9933, 0.98918, 1.00014, 0.9931, 1.0006, 0.99667, 0.9979, 0.99252, 0.9917, 0.9943, 0.995, 0.9994, 0.99576, 0.99745, 0.9916, 0.9993, 0.9991, 0.993, 0.9927, 0.99564, 0.99094, 0.997, 0.9987, 0.98954, 0.9912, 0.99676, 0.9947, 0.99232, 0.9979, 0.9898, 0.9983, 0.98934, 0.99394, 0.9992, 0.9913, 0.99458, 0.9959, 0.99554, 0.9932, 0.99099, 0.9923, 0.99665, 0.99738, 0.9907, 0.9927, 0.991, 0.99154, 0.98872, 0.99444, 0.9943, 0.99646, 0.9934, 1.0002, 0.9956, 0.99314, 0.999, 0.9908, 1.001, 0.9949, 0.99278, 0.9984, 0.99076, 0.99064, 0.9931, 0.9918, 0.99173, 0.9893, 0.9993, 0.99612, 0.9914, 0.99312, 0.9937, 0.9929, 0.99294, 0.9928, 0.9947, 0.999, 0.993, 0.99742, 0.99224, 0.98986, 0.9948, 0.98998, 1.0006, 0.99162, 0.99232, 0.9914, 0.9922, 0.99, 0.9914, 0.9956, 0.9975, 0.99544, 0.9994, 0.9971, 0.99134, 0.9941, 0.99617, 0.99194, 0.99842, 0.9951, 0.994, 0.9922, 0.9956, 1.0004, 0.99031, 0.99164, 0.99216, 0.9917, 0.9938, 0.99176, 0.99313, 0.9959, 0.9956, 0.996, 0.99807, 0.9986, 0.9931, 0.9984, 0.9948, 0.9983, 1.0006, 0.9912, 0.99581, 0.99676, 0.9933, 0.99095, 0.98924, 0.99067, 0.99498, 0.9946, 0.9931, 0.99435, 0.9938, 0.99055, 0.9912, 0.99516, 0.9958, 0.9968, 0.99454, 0.99182, 0.98878, 0.9988, 0.9962, 0.9977, 0.9932, 0.99498, 0.99154, 0.99512, 0.9979, 0.99088, 0.99161, 0.99494, 0.99158, 0.9963, 0.99188, 0.99035, 0.9945, 0.9924, 1.0003, 0.9994, 0.99655, 0.98974, 0.99152, 0.99296, 0.99782, 0.99173, 0.9975, 0.9924, 0.98944, 0.9932, 0.99184, 0.9912, 0.9976, 0.99534, 0.98986, 0.99287, 0.991, 0.99047, 0.99691, 0.99165, 0.99646, 0.99708, 0.9902, 0.99178, 0.9963, 0.99232, 0.9938, 0.9934, 0.99176, 0.99408, 0.99572, 0.9998, 1.0026, 0.99, 0.992, 0.99734, 0.9975, 0.99204, 0.99492, 0.99666, 0.9994, 0.997, 0.99288, 0.994, 0.9996, 0.99685, 0.9958, 0.99346, 0.99215, 0.99521, 0.9974, 0.9956, 0.9967, 0.99406, 0.9936, 0.9926, 0.9982, 0.99086, 0.9955, 0.99158, 0.99975, 0.9987, 0.9966, 0.9926, 0.99815, 0.99366, 0.99706, 0.99358, 0.99071, 0.99582, 0.9988, 0.9986, 0.99551, 0.9956, 0.99862, 0.9957, 0.99882, 0.99324, 0.98823, 0.9952, 0.992, 0.99043, 1.0002, 0.99655, 0.98942, 0.99356, 0.99553, 0.99315, 0.9954, 0.9928, 0.99226, 0.9958, 0.99, 0.9948, 0.992, 0.9898, 0.99354, 0.99186, 0.99404, 0.99922, 0.992, 0.9988, 0.9939, 0.99557, 0.9999, 0.99531, 0.9903, 0.992, 0.9938, 0.991, 0.9907, 0.99784, 0.98952, 0.998, 0.9952, 0.99148, 0.99792, 0.99058, 0.9974, 0.99282, 0.9923, 0.9927, 0.99519, 0.9967, 0.9951, 0.99683, 0.99165, 0.99176, 0.99006, 0.99002, 0.99736, 0.99612, 0.9987, 0.9908, 0.9946, 0.99445, 0.98965, 0.9904, 0.99086, 0.9934, 0.99046, 0.9902, 0.99774, 0.9984, 0.996, 0.9976, 0.991, 0.99808, 0.9986, 0.9934, 0.9963, 0.9954, 0.98956, 0.9988, 0.99084, 0.99314, 0.99522, 0.99739, 0.99704, 0.9959, 0.9941, 0.99458, 0.99971, 0.9919, 0.99544, 0.99094, 0.9992, 0.99416, 0.99189, 0.98936, 0.99352, 0.9984, 0.99276, 0.9939, 0.9926, 0.993, 0.9928, 0.9966, 0.9944, 0.9952, 0.99467, 0.9984, 0.9943, 0.99381, 0.9946, 0.99121, 0.99174, 0.99052, 0.9944, 0.9927, 0.9962, 0.99552, 0.9958, 0.994, 0.99184, 0.98916, 0.99581, 0.99522, 0.9957, 0.9998, 0.99444, 0.99599, 0.9944, 0.9982, 0.9925, 0.9979, 0.99331, 0.9997, 0.99018, 0.99517, 0.9986, 0.9908, 0.98815, 0.99862, 0.99566, 0.9906, 0.9984, 0.9916, 0.99418, 0.992, 0.98779, 0.9915, 0.9934, 0.99, 0.99824, 0.9986, 0.9956, 0.99439, 0.9887, 0.9968, 0.9906, 0.9965, 0.9901, 0.99772, 0.9948, 0.991, 0.9947, 0.9984, 0.99572, 0.99388, 0.9976, 0.989315, 0.99358, 0.9926, 0.9978, 0.996, 0.99636, 0.99784, 0.99316, 0.99339, 0.99724, 0.9921, 0.98845, 0.99437, 0.99708, 0.99614, 0.98992, 0.9986, 0.9997, 0.99362, 0.9928, 0.99552, 0.99115, 0.99508, 0.99556, 0.98964, 0.9903, 0.99221, 0.99676, 0.9954, 0.99825, 0.99546, 0.9948, 0.991, 0.9945, 0.99479, 0.98912, 0.99042, 0.9963, 0.99787, 0.9916, 0.99742, 0.9893, 0.99158, 0.9954, 0.99172, 0.9925, 0.9906, 0.99459, 0.9976, 0.99456, 0.9893, 0.9931, 0.9927, 0.9963, 0.997, 0.9931, 0.99514, 0.9968, 0.99354, 0.9948, 0.99261, 0.99454, 0.9994, 0.99198, 0.998, 0.9928, 0.99068, 0.99384, 0.99275, 0.9952, 0.9932, 0.99165, 0.99616, 0.99659, 0.9924, 0.99316, 0.992, 0.9928, 0.99532, 0.9936, 0.98939, 0.99616, 0.99367, 0.98892, 0.99596, 0.99784, 0.99267, 0.99347, 0.9919, 0.99089, 0.99425, 0.99226, 0.989465, 0.9902, 0.995, 0.99565, 0.99192, 0.9964, 1.0014, 0.9898, 0.9922, 0.99166, 0.99576, 0.9884, 0.99764, 0.9951, 0.9953, 0.98964, 1.0001, 0.99837, 0.9934, 0.998, 0.99586, 0.99014, 0.99455], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Reference<br>density=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [0.9976, 0.991, 0.9936, 0.9949, 0.99922, 0.9976, 0.9944, 0.99648, 0.996, 0.99898, 0.99914, 0.9927, 0.9982, 0.99244, 0.9932, 0.99459, 0.99655, 0.994, 0.99904, 0.9964, 0.9927, 0.9964, 0.9958, 0.99242, 0.9979, 0.997, 0.99403, 0.9979, 0.99741, 0.99266, 0.9969, 0.9932, 0.9965, 0.9948, 0.9975, 0.9958, 0.9935, 0.99519, 0.9971, 0.9958, 0.99792, 0.99828, 0.9928, 0.9941, 0.99593, 0.99773, 0.9925, 0.99254, 0.99628, 0.9957, 0.9974, 0.99824, 0.9951, 1.0002, 0.99699, 0.9988, 0.9959, 0.99212, 0.9926, 1.0001, 0.9972, 0.998, 0.99334, 0.997, 0.99733, 0.992, 0.9964, 0.9956, 0.9973, 0.993, 0.9963, 0.99817, 0.9976, 0.99048, 0.99166, 0.99208, 0.99745, 0.9941, 0.99892, 0.99152, 0.99397, 0.9948, 0.9957, 0.99585, 0.99382, 0.99699, 0.995, 0.9932, 0.9941, 0.9937, 0.99817, 0.9961, 0.9964, 0.9976, 1.0, 0.99548, 0.998, 0.996, 0.99528, 0.9998, 0.9982, 0.9982, 0.99405, 1.0008, 0.99625, 0.9973, 0.99684, 0.9902, 0.9963, 0.99502, 0.9956, 0.9937, 0.9958, 0.9949, 0.99634, 0.99642, 0.9976, 0.99001, 0.9985, 0.9934, 0.9976, 0.99374, 0.9968, 0.99687, 0.998, 0.99718, 0.99437, 0.9963, 0.9959, 0.99579, 0.9939, 1.001, 0.99478, 0.99604, 0.99534, 0.9946, 0.9956, 0.9986, 0.99138, 0.9962, 0.9989, 0.99582, 0.9904, 0.99736, 0.99287, 0.9932, 0.9924, 0.99678, 0.9981, 0.9972, 0.9912, 0.99783, 0.9907, 0.99669, 0.99317, 0.99656, 1.001, 0.9969, 0.9938, 0.9905, 0.9928, 0.9988, 0.9981, 0.99429, 0.99587, 0.9942, 0.99504, 0.9986, 0.99738, 0.9958, 0.99537, 0.98956, 0.9981, 0.99873, 0.9966, 0.99682, 0.9961, 0.99166, 0.9968, 0.9937, 0.99308, 0.9964, 0.9924, 0.9946, 0.9982, 0.99512, 0.9994, 0.99098, 0.99642, 0.9966, 0.9937, 0.992, 0.9968, 0.99036, 0.99548, 0.99672, 0.9968, 0.99388, 0.99907, 0.99255, 0.9937, 1.00242, 1.00242, 0.9966, 0.99234, 0.99625, 0.99184, 0.9982, 0.9942, 0.9897, 0.994, 0.99168, 0.9952, 0.9977, 0.99872, 0.99772, 0.9981, 0.9904, 0.9993, 0.9958, 0.99578, 0.99026, 0.9982, 0.9941, 0.99166, 0.99627, 0.9932, 1.0005, 0.9934, 0.998, 0.9944, 0.9938, 0.9957, 1.00044, 0.99026, 0.99244, 1.00118, 0.994, 0.99314, 0.9972, 0.99818, 0.99561, 0.99839, 0.9948, 0.99026, 0.99734, 0.9978, 0.99273, 0.99602, 0.9978, 1.001, 0.9944, 0.9965, 0.9966, 0.99434, 0.9987, 0.99496, 0.9934, 0.996, 1.0004, 0.9926, 0.9946, 0.998, 0.99238, 0.9954, 0.99479, 0.99362, 0.99296, 0.99633, 0.9977, 1.00241, 0.9984, 0.994, 0.99611, 0.9948, 0.99794, 0.9956, 0.99794, 0.99588, 0.9922, 0.9978, 0.99689, 0.9953, 0.99572, 0.9942, 0.99582, 0.9959, 0.9972, 0.9921, 0.9955, 0.9918, 0.9962, 0.9924, 0.99076, 0.99782, 0.99709, 0.99458, 0.99806, 0.9983, 0.998, 0.99346, 0.9937, 0.99814, 0.9966, 1.0001, 0.9926, 0.99943, 0.9955, 0.9986, 0.99657, 0.9945, 0.99558, 0.99689, 0.9955, 0.9979, 0.9938, 1.00098, 0.9984, 0.9969, 0.99732, 0.99647, 0.9968, 0.9955, 0.9962, 0.9949, 0.99663, 0.9976, 0.99454, 0.9967, 0.99577, 1.001, 0.9987, 0.99516, 0.9986, 0.99164, 0.9974, 0.99902, 1.0001, 0.99032, 0.99848, 0.9928, 0.9934, 0.9939, 0.9976, 0.9982, 0.99748, 0.99773, 0.9964, 0.994, 0.99898, 0.9966, 0.99575, 0.998, 0.9937, 0.99517], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Current<br>density=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [0.9966, 0.99556, 0.9939, 0.99126, 0.9996, 1.001, 0.99565, 0.998, 0.99692, 0.9997, 0.9956, 0.9918, 0.99513, 0.99587, 0.99869, 1.0, 0.9959, 1.0004, 0.99253, 0.9905, 0.9918, 0.9996, 0.9946, 0.9978, 0.99009, 0.9926, 0.997, 0.99898, 0.99215, 0.9931, 0.99839, 0.9944, 0.99798, 0.9963, 0.9926, 0.99341, 0.998, 0.9968, 0.9953, 0.9934, 0.9918, 0.99494, 0.9968, 0.9982, 0.992, 0.99212, 0.9976, 0.99616, 0.99911, 0.99244, 0.99454, 1.0011, 0.9937, 0.99612, 0.9976, 0.9963, 0.99748, 1.00315, 0.9966, 0.99848, 1.00315, 0.9976, 0.9962, 1.0006, 0.99657, 0.99592, 0.99702, 0.9978, 0.9965, 0.9956, 0.99654, 0.99093, 0.99212, 0.99694, 0.9938, 0.99174, 1.0, 0.9918, 0.99345, 0.99717, 0.9966, 0.99576, 0.9972, 0.9968, 0.9938, 0.9923, 0.9967, 0.99976, 0.992, 0.9978, 0.9951, 0.9936, 0.998, 0.9991, 0.99683, 0.99476, 0.9958, 0.9986, 0.9972, 0.99596, 0.99918, 0.99479, 1.0, 0.9955, 0.9954, 0.99584, 0.9984, 0.99448, 0.99416, 0.9989, 0.9964, 0.9983, 0.99712, 0.99362, 0.9926, 0.99669, 0.99676, 0.99471, 0.9955, 0.9958, 0.9962, 0.99182, 0.9946, 0.996, 0.99546, 0.99915, 0.99111, 0.9997, 0.99546, 0.9938, 0.98876, 0.99734, 0.9991, 0.992, 0.99694, 0.9976, 0.993, 0.9976, 0.99681, 0.99494, 0.9938, 0.9938, 0.99239, 0.9939, 0.9992, 0.99677, 0.99176, 0.9958, 0.9964, 0.99568, 0.9932, 0.99942, 0.9973, 0.9958, 0.99344, 0.9928, 0.99481, 0.99584, 0.99696, 0.9988, 0.99745, 0.99872, 0.99212, 0.9982, 0.9974, 0.9944, 0.9904, 0.99264, 0.99299, 0.99534, 0.9997, 0.9966, 0.9934, 0.99204, 0.9964, 0.98918, 0.9923, 0.99775, 0.99742, 0.99642, 0.9941, 0.99688, 1.0004, 0.9927, 0.99705, 0.99154, 0.9958, 0.9989, 0.9936, 0.99545, 0.99743, 0.99524, 0.99555, 0.99173, 0.9976, 0.9961, 0.9936, 0.99382, 0.99947, 0.997, 0.9962, 0.9976, 0.9983, 0.9986, 0.98993, 0.99922, 0.9958, 0.9994, 0.9974, 0.9977, 0.998, 0.99458, 0.99552, 0.99194, 0.9953, 0.99084, 0.9973, 0.9966, 0.99288, 0.9928, 0.9975, 0.9961, 0.9982, 0.9952, 0.9934, 0.996, 0.998, 0.9961, 0.99366, 0.99138, 0.9991, 0.99305, 1.0001, 0.9981, 0.9965, 0.99628, 0.99164, 0.99193, 0.9991, 0.9931, 0.99771, 0.9993, 0.99176, 0.9962, 0.99048, 0.9944, 0.9936, 0.99469, 0.9986, 0.99362, 0.9978, 0.99884, 0.9958, 0.99779, 0.9927, 0.99924, 0.9962, 0.9958, 0.99692, 0.99818, 0.99732, 0.99471, 0.9978, 0.9978, 0.99402, 0.99211, 0.9956, 0.99176, 0.99032, 0.99488, 0.99069, 0.9994, 0.9998, 0.9955, 0.99514, 0.9929, 0.99907, 0.998, 0.9958, 0.9968, 0.9983, 0.9993, 0.99047, 0.99202, 0.9986, 0.99185, 0.99249, 0.9943, 0.9911, 0.99726, 0.99527, 0.9944, 0.99626, 0.99746, 0.99304, 0.9984, 0.99274, 0.9955, 0.99804, 0.9986, 0.99182, 0.9996, 0.99454, 0.997, 0.99718, 0.9904, 0.9986, 0.9962, 1.0004, 0.9954, 0.9965, 0.99516, 0.9944, 0.9998, 0.9944, 0.998, 0.9938, 0.99558, 0.9956, 0.9932, 0.997, 0.9954, 0.99773, 0.9953, 0.9994, 0.9963, 0.9991, 0.9969, 0.9956, 0.99212, 0.9967, 0.9968, 0.9918, 0.9914, 0.9964, 0.992, 0.99198, 0.99271, 1.0001, 0.9952, 0.9958, 0.9978, 0.9953, 0.99652, 0.9994, 0.99242, 0.9979, 0.9966, 1.0001, 0.9932, 0.99372, 0.9917], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Reference\", \"x\": 0.245, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Current\", \"x\": 0.755, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"barmode\": \"overlay\", \"legend\": {\"title\": {\"text\": \"target\"}, \"tracegroupgap\": 0}, \"margin\": {\"t\": 60}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.49], \"title\": {\"text\": \"density\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.51, 1.0], \"matches\": \"x\", \"title\": {\"text\": \"density\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"count\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}}}}, {\"id\": \"density_good\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (ref)\", \"type\": \"scatter\", \"x\": [0.992, 0.9964, 0.99097, 0.99511, 0.9934, 0.99558, 0.98894, 0.9909, 0.9902, 0.98994, 0.9926, 0.99458, 0.9951, 1.0, 0.9955, 0.9954, 0.99, 1.0032, 0.99002, 0.99364, 0.99566, 0.99175, 0.9928, 0.99085, 0.9938, 0.9938, 0.98742, 0.9955, 0.9942, 0.9892, 0.9911, 0.99728, 0.9914, 0.99035, 0.99076, 0.99855, 0.9969, 0.98892, 0.99015, 0.99089, 0.98954, 0.9945, 0.9971, 0.99245, 0.99676, 0.9972, 0.9978, 0.992, 0.9962, 0.9906, 0.9978, 0.9991, 0.98998, 0.99304, 0.992, 0.9979, 0.99201, 0.98941, 0.992, 0.992, 0.99758, 0.99016, 0.991, 0.993, 1.001, 0.9984, 0.99064, 0.9941, 0.9954, 0.99146, 0.9918, 0.98934, 0.99278, 0.99316, 0.9965, 0.99556, 0.9973, 0.98928, 0.99638, 0.9916, 0.995, 0.99012, 0.99109, 0.997, 0.9935, 0.99096, 0.9918, 0.9982, 0.9896, 0.9984, 0.9919, 0.9918, 0.9942, 0.9912, 0.99471, 0.99241, 0.99567, 0.98959, 0.98984, 0.9946, 0.9934, 0.9986, 0.99638, 0.9951, 0.98914, 0.9938, 0.9925, 0.9946, 0.99058, 0.99472, 0.99002, 1.0103, 0.99208, 0.99666, 0.99202, 0.9889, 0.99034, 0.98974, 0.999, 0.99534, 0.99808, 0.9924, 0.9974, 0.998, 0.99678, 0.99538, 0.9958, 0.9974, 0.9931, 0.9983, 0.9934, 0.98746, 0.9998, 0.99624, 0.9966, 0.98976, 0.99834, 0.99627, 0.98968, 0.998, 0.99007, 0.9945, 0.99452, 0.9935, 0.9984, 0.9938, 0.99279, 0.9905, 0.9948, 0.9974, 0.99792, 0.998, 0.99256, 0.99775, 0.99835, 0.99189, 0.99033, 0.9908, 0.9931, 0.98972, 0.9949, 0.99616, 0.99014, 0.9974, 0.9938, 0.9962, 0.99642, 0.9942, 0.9977, 0.9894, 0.99566, 0.9964, 0.993, 0.99507, 0.9964, 0.9948, 0.9964, 0.9939, 0.99174, 0.99736, 0.99462, 0.99, 0.99458, 0.9895, 0.9949, 0.991, 0.98758, 0.9973, 0.9912, 0.9932, 0.99183, 0.99378, 0.9918, 0.99269, 0.99744, 0.9901, 0.99353, 0.99178, 0.99041, 0.99184, 0.9948, 0.9916, 0.9926, 0.99504, 0.99394, 0.99408, 0.9974, 0.9944, 0.99807, 0.9982, 0.9928, 0.9916, 0.99111, 0.99215, 0.99089, 0.9934, 0.99112, 0.9938, 0.99276, 0.98954, 0.9926, 0.9997, 0.9923, 0.9907, 0.99814, 0.9938, 0.9986, 0.99945, 0.993, 0.99471, 0.99235, 0.9928, 0.99379, 0.99522, 0.99224, 0.99324, 0.9922, 0.9954, 0.9908, 0.99397, 0.99558, 0.9979, 0.9931, 0.99955, 0.99588, 0.9938, 0.9937, 0.99776, 0.9953, 0.98994, 1.0003, 0.9986, 0.9982, 0.99672, 0.99674, 0.99278, 0.99022, 0.99396, 0.9912, 0.9948, 0.9973, 0.9911, 0.99153, 0.991, 0.99119, 0.9911, 0.991, 0.99652, 0.99489, 0.98942, 0.99144, 0.9949, 0.99254, 0.99252, 0.98919, 0.99784, 0.99469, 0.99523, 0.99378, 0.99212, 0.9941, 0.9911, 0.99008, 0.98963, 0.99116, 0.99545, 0.99946, 0.997, 0.9971, 0.99044, 0.9924, 0.9916, 0.99408, 0.99174, 0.9937, 0.9955, 0.9972, 0.9921, 0.99199, 0.994, 0.99387, 0.99462, 0.992, 0.9928, 0.994, 0.99534, 0.9945, 0.99057, 0.9999, 0.99274, 0.99685, 0.9983, 0.99362, 0.9923, 0.9925, 1.0002, 0.9942, 0.98912, 0.99094, 0.9892, 0.98914, 0.9908, 0.9918, 0.9927, 0.9917, 0.9972, 0.9954, 0.99546, 0.9974, 0.99198, 0.99308, 0.99066, 0.9986, 0.99464, 0.9917, 0.99954, 0.99202, 0.99414, 0.9982, 0.9952, 0.9962, 0.9934, 0.9891, 0.9941, 0.99573, 0.9936, 0.9967, 0.99685, 0.98918, 0.9986, 0.99518, 0.9932, 0.99469, 0.99109, 0.99705, 0.9917, 0.9964, 0.98987, 0.9996, 0.9904, 0.99886, 0.9924, 0.997, 0.99494, 0.99745, 0.99606, 0.98999, 0.9909, 0.99615, 0.9975, 0.9926, 0.9918, 0.9929, 0.9948, 0.99036, 0.99228, 0.98984, 0.99822, 0.99299, 0.9987, 1.0015, 0.99563, 0.9984, 0.9984, 0.9957, 0.99194, 1.00369, 0.993, 0.9952, 0.99035, 0.9916, 0.99896, 0.9945, 0.9927, 0.9954, 0.99549, 0.9922, 1.00295, 0.98956, 0.9973, 0.9961, 0.997, 0.99352, 0.9994, 0.99238, 0.99524, 0.9927, 0.9917, 0.9914, 0.9957, 0.99304, 0.99331, 0.99108, 0.992, 0.9923, 0.99064, 0.9921, 0.999, 0.99392, 0.9944, 0.99546, 0.99326, 0.995, 0.99792, 0.99534, 0.9908, 0.99158, 0.99136, 0.99122, 0.9928, 0.9931, 0.99063, 0.99024, 0.9898, 0.993, 0.98816, 0.9965, 0.99586, 0.9925, 0.9986, 0.9912, 0.9916, 0.99132, 0.996, 0.99358, 0.9938, 0.9977, 0.9934, 0.9978, 0.99074, 0.99048, 0.9898, 0.98994, 0.99342, 0.9966, 1.0004, 0.9948, 0.99514, 0.99596, 0.99602, 0.9986, 0.9971, 1.0003, 1.00051, 0.99084, 0.99566, 0.9927, 0.9912, 0.99581, 0.995, 0.9972, 0.99656, 0.9965, 0.99975, 0.99052, 0.989, 0.9916, 0.99455, 0.99393, 0.9924, 0.9946, 1.00038, 0.99906, 0.9958, 0.99475, 0.9935, 0.9906, 0.99835, 0.98883, 0.9932, 0.99863, 0.99686, 0.99322, 0.99678, 0.99331, 0.9925, 0.9978, 0.99392, 0.99105, 0.99384, 0.99596, 0.99216, 0.99321, 0.9979, 0.99124, 0.99472, 0.98946, 0.9945, 0.98926, 0.9925, 0.9898, 0.99066, 0.99587, 0.9984, 0.98942, 0.98876, 0.99045, 0.9975, 0.9913, 0.9906, 0.99416, 0.98794, 0.9925, 0.9911, 0.99675, 0.98931, 0.9983, 0.992, 0.99658, 0.99136, 0.9991, 0.9964, 0.992, 0.99658, 0.9923, 0.9965, 0.9952, 0.99461, 0.99287, 0.9918, 0.9944, 0.98944, 0.9976, 0.9953, 0.99074, 0.98794, 0.99643, 0.9954, 0.99114, 0.99374, 0.99218, 0.9948, 0.993, 0.9966, 0.99152, 0.99498, 0.9925, 0.99615, 0.99715, 0.99056, 0.9937, 0.9965, 0.9906, 0.9982, 0.99157, 0.9919, 0.99157, 0.9953, 0.9898, 0.99543, 0.9899, 0.9937, 0.99203, 0.99036, 0.99008, 0.9892, 0.99971, 0.992, 0.99785, 0.9927, 0.99044, 0.9912, 0.995, 0.995, 0.9942, 0.99522, 0.98856, 0.9939, 0.9927, 0.99095, 0.9972, 0.98946, 0.99542, 0.98944, 0.9985, 0.99411, 0.99266, 0.9962, 0.99268, 0.9971, 0.9917, 0.9925, 0.9968, 0.99142, 0.9964, 0.9979, 0.99214, 0.99737, 0.9917, 0.99807, 0.99334, 0.99798, 0.99558, 0.9972, 0.98946, 0.99543, 0.9934, 0.9938, 0.9947, 0.9969, 0.99752, 0.99082, 0.9983, 0.9962, 0.99692, 0.9928, 0.998, 0.9909, 0.99494, 0.98987, 0.99578, 0.997, 0.9986, 0.99544, 0.99321, 0.99072, 0.9985, 0.99494, 0.99118, 0.9968, 0.99112, 1.0004, 0.9907, 0.9921, 0.9934], \"xaxis\": \"x\", \"y\": [0.8156061324462894, 0.42491310922683634, 0.8867827646463432, 0.8014995238430205, 0.30499958310650876, 0.5817355832705369, 0.959171062334887, 0.7854416128369749, 0.9085690698200813, 0.8998600376511439, 0.6341165000693628, 0.412102187638673, 0.7643629411050379, 0.4710001938005606, 0.40182653035141874, 0.40438056362905367, 0.8870480016118494, 0.3650667978415713, 0.9064321709292111, 0.9327245345966092, 0.6458420185168736, 0.8821841129047617, 0.6704018506542557, 0.7655671181822064, 0.8616986618932058, 0.48774537944210006, 0.9637355036179479, 0.6794204065079696, 0.6044835155949141, 0.7867954023600708, 0.9137982268836646, 0.5867502063434873, 0.8048584290077971, 0.9718511071053526, 0.9627192884041744, 0.7978623718349598, 0.6091120966723917, 0.8943338178728011, 0.8853376735027229, 0.9045563504021151, 0.9264844632598176, 0.6342457655367447, 0.9414033426130164, 0.5636516403732365, 0.5172967922101196, 0.4836896337264441, 0.35199620689495453, 0.788779954566273, 0.9696552399248426, 0.772496554239754, 0.8132656157621138, 0.4539090261140653, 0.9333708926412786, 0.679765045723866, 0.48457442622955804, 0.4248820606938153, 0.6737819616086004, 0.8780741425819777, 0.38340602447337646, 0.90634085684919, 0.5574014604752268, 0.6804147683859246, 0.9077110088845216, 0.7718472635729894, 0.4717552048891654, 0.22222808308441652, 0.8616549355667619, 0.705749071892896, 0.4699129352300819, 0.9680524782819758, 0.8891353183282249, 0.9466602521798594, 0.8553382520847058, 0.7430243903066251, 0.6616131862201935, 0.6919609500216202, 0.96565744679506, 0.913108907487878, 0.5395521774612226, 0.9026238558501023, 0.6550941529376255, 0.9757876320152292, 0.8833495792027257, 0.6666029765862381, 0.8504582120840628, 0.9320215595878566, 0.7639947574915884, 0.6085229656221847, 0.9557131606798471, 0.46184432615952054, 0.5642658412077981, 0.8815615400732472, 0.7189203536918151, 0.9301020530176726, 0.7341394174346678, 0.7759189559372703, 0.8448078654733812, 0.9012666081120407, 0.8926028620066223, 0.5287492720273277, 0.6874206920638863, 0.37408584674942635, 0.8348370105186077, 0.8697567261320243, 0.9175759024810304, 0.44644098895981, 0.8874384748400057, 0.7787567487441118, 0.9416122482572158, 0.3265229243180111, 0.9308095750950773, 0.42267134533232753, 0.43068181214270274, 0.8727308285810839, 0.7201611177732586, 0.8430904589044517, 0.8140617541555761, 0.9456747441572588, 0.6672663325862807, 0.8756470416862959, 0.518871521713375, 0.7040615347784164, 0.4957960231649875, 0.6250130361556073, 0.27413726132188326, 0.5193133578087885, 0.37656641690434584, 0.5808048103476511, 0.7917827117482167, 0.36569143480873245, 0.7232542293832885, 0.9785934574433302, 0.5715075300165849, 0.8182555969893297, 0.5448461144048058, 0.9491291995847589, 0.4833587957991669, 0.3189279754564957, 0.9184825510014271, 0.5524830505676419, 0.9600429304649183, 0.7818180966165994, 0.7962710274484252, 0.7569429870375118, 0.46184432615952054, 0.7641514270390748, 0.9486763575522457, 0.8086368705092697, 0.6784536879503494, 0.6877019790624462, 0.6082670858563528, 0.6053794617794684, 0.6319330693089359, 0.4982105707488519, 0.6787928880949093, 0.9231980717613485, 0.8831230955067948, 0.6845485656817341, 0.8799204262605215, 0.9164563829924386, 0.7819268199067826, 0.23469888428232324, 0.9492377841603665, 0.8826092272015389, 0.6360541596480074, 0.5184081252698399, 0.6400126753125241, 0.542646305979658, 0.4479501208302092, 0.7783171875827786, 0.7867712153112567, 0.5236605417423803, 0.6959846197179591, 0.7925023358445066, 0.6683189355892497, 0.18737025221649042, 0.42506327048176057, 0.7272596040941706, 0.7314191754306454, 0.4827891324637794, 0.6649341228620356, 0.9038332731164471, 0.9588917860646077, 0.8945194928389463, 0.49833043835950624, 0.7997712594855277, 0.8577935987172323, 0.7622736922026153, 0.8039391974899521, 0.7396811504731934, 0.8115340233127679, 0.801728888664367, 0.738451208106372, 0.5859674792922007, 0.1865203674848816, 0.8773430435604171, 0.36888329310067386, 0.8651817982269884, 0.9067615420962557, 0.8594983988587351, 0.7437750884018276, 0.9145224932934428, 0.9135679891815164, 0.8001832456898428, 0.6860977766129374, 0.9377826008632761, 0.9300369611912853, 0.6997062971069969, 0.5693182102579236, 0.3404656140239559, 0.7160591142088384, 0.7953146078011, 0.8869803873277935, 0.7639982823097876, 0.8681285227071118, 0.576868797021353, 0.93035102563313, 0.8375600281828176, 0.8279918435672958, 0.9266689436294401, 0.7559862346636359, 0.5099889666930224, 0.6914445842613687, 0.9651950326885705, 0.87851968214492, 0.8499702807396289, 0.4685752957996948, 0.7241546992314323, 0.7848147251007912, 0.7341394174346678, 0.7008877443692281, 0.340588975625529, 0.5013021766499856, 0.8321174529331695, 0.8818378666553491, 0.9176909075187759, 0.8634678749265305, 0.7436082905772717, 0.9343776659412377, 0.7668809937296346, 0.6243383802582345, 0.5332560471205093, 0.6907315465649003, 0.16626803588025432, 0.1668542888532837, 0.7408943843163458, 0.5221312328975666, 0.7457559475413279, 0.46389636934606376, 0.9292627865919654, 0.5268311186840582, 0.4244151934213653, 0.643310536612302, 0.8577438313980266, 0.7816208399762355, 0.8553382520847058, 0.7010035672814305, 0.5242572272016158, 0.9187320011579697, 0.8703498177621264, 0.6713045345576062, 0.9137982268836646, 0.8614414457916845, 0.9445662266054761, 0.8808216590199034, 0.7386378115490353, 0.8873009977622293, 0.9157094897337859, 0.6606038558129893, 0.9296803968514485, 0.8864322240790464, 0.5146720135715994, 0.8720710714485208, 0.9415427660945741, 0.9138701141498735, 0.6527559092576063, 0.8751970040938668, 0.9249766460056568, 0.801728888664367, 0.6575848465963361, 0.6934824043184128, 0.8619113960143526, 0.9419078024651042, 0.9591721389341828, 0.8397407150753159, 0.9084383840076588, 0.4963969309336195, 0.7359588175524252, 0.3531961907069324, 0.9279819479140234, 0.7752976919572294, 0.8665226278427577, 0.9515211055933231, 0.7314191754306454, 0.890886918514299, 0.3235491032739525, 0.3719939405423586, 0.6323804178173072, 0.8398006965792015, 0.8239469134189235, 0.8592101816891015, 0.7615002907198236, 0.8688259750909261, 0.8718104001390852, 0.5838074755684882, 0.8756470416862959, 0.901850575196968, 0.9451930143658351, 0.6253812669856891, 0.5890764576710766, 0.4921052500998711, 0.4862070578416567, 0.9170647663398394, 0.7035583451969506, 0.8476385889092957, 0.5603058978573646, 0.5810606890504925, 0.9088604673919816, 0.8903252600075929, 0.944267921154058, 0.9435968591480925, 0.938237366988842, 0.9357286047893738, 0.7961386682142712, 0.7840233885688647, 0.2513590507613302, 0.7389284097502917, 0.9053472250810051, 0.44438282424164377, 0.862281110352348, 0.8021059248496223, 0.9152740930046814, 0.643737358401971, 0.8540304955499701, 0.8613418170006786, 0.6911084183178322, 0.8848367871057808, 0.8387883096682573, 0.5942651630821018, 0.65691393717736, 0.6369979527510315, 0.8280658524313272, 0.9640736168216585, 0.6546311715671466, 0.5599819536107853, 0.48348053317652906, 0.7668016587569692, 0.03620763244300767, 0.7364400865449663, 0.37408584674942635, 0.8767503774172, 0.8743962287172513, 0.8751970040938668, 0.8833495792027257, 0.7091886355621774, 0.87006937054451, 0.7904001815220257, 0.8761418339280951, 0.8306834851111597, 0.7531715889012326, 0.38181207472529843, 0.6490458991820136, 0.9138057013338913, 0.9046222904886461, 0.17956061692355052, 0.7506163079023257, 0.8963285795381793, 0.8848361664653354, 0.9283037217377402, 0.45996158699034445, 0.7290858434196763, 0.8319094967702583, 0.6578018675312727, 0.18727567457681707, 0.8673410249845035, 0.9453298670648187, 0.9446538464906173, 0.19605573045952288, 0.6723831041639817, 0.3438281302059518, 0.37858973820495484, 0.6953170483296187, 0.21463507152544156, 0.26963792069965237, 0.3280912492037974, 0.8399932187801539, 0.420387898633768, 0.36522500752858966, 0.5810560693343539, 0.9306346767722963, 0.7167716539092029, 0.656736106921484, 0.5549139996760648, 0.6909161521388689, 0.591904263202073, 0.884703171197362, 0.866402281883595, 0.7582770814524421, 0.8990773411030794, 0.1818065866116437, 0.6222165686186035, 0.17261914235374884, 0.8156064679757086, 0.4851213943917703, 0.8871292211128762, 0.8398494053952754, 0.703270618172154, 0.6305543892506115, 0.7494149477175548, 0.1532408287022325, 0.6159732902773407, 0.738220551127759, 0.8354520044441791, 0.8536870432671441, 0.5751476712690671, 0.9077719201719568, 0.7878515691455199, 0.6672663325862807, 0.45293736875445273, 0.17058553029544155, 0.747933377844996, 0.8400163125056676, 0.4516778718827729, 0.6082670858563528, 0.8401843469141149, 0.7636885291754726, 0.789170795337903, 0.8128612802083497, 0.7522530659814418, 0.8086757686066508, 0.8356255123032285, 0.9241779635105248, 0.9674588597049086, 0.9368885694202199, 0.4990764491242286, 0.876561204324957, 0.554264192243629, 0.5967716244634195, 0.9060244606340249, 0.8401608718856799, 0.7329750583133859, 0.8021769878309102, 0.9316817655017511, 0.45488322534173153, 0.798578398438993, 0.7425236774748816, 0.5742682328784404, 0.4937681935814938, 0.8972164286692267, 0.8914273370768748, 0.9377613518261881, 0.8862258850530264, 0.8591757581361523, 0.7410678096850266, 0.6822336012657398, 0.9201658505843877, 0.6982578893131915, 0.5746709232170782, 0.7626532952948841, 0.7137703530889916, 0.7520971196461234, 0.4473853625959922, 0.7957460056304991, 0.4833174871501707, 0.8758467705785958, 0.4689303842787964, 0.6133612564737879, 0.8568681391705205, 0.6835133967314007, 0.9732070839986944, 0.21435716257549006, 0.5761668962420043, 0.4055433603128916, 0.3743394998756179, 0.9118635774953143, 0.964551884718591, 0.9306459334511011, 0.8424802355113449, 0.7739144871152517, 0.6872688771534424, 0.8590561833388345, 0.6714384475466295, 0.6408669500407106, 0.5203550269219845, 0.2856853969697174, 0.857760555506807, 0.9307094503226838, 0.6787928880949093, 0.8308635255795866, 0.29271374211533296, 0.6769315553524353, 0.23831547366416572, 0.5895099457120908, 0.8994675076574448, 0.8893400405584444, 0.8456825404777587, 0.5399612081435882, 0.6188649121485582, 0.9281492942813848, 0.7611740601422801, 0.46550237374781617, 0.8896861436466836, 0.9038901015569306, 0.5044440900554997, 0.9215480939667524, 0.6930273792518707, 0.8723244804196287, 0.5624338775604165, 0.9226297661236537, 0.8469231754225917, 0.9430557295321259, 0.9097116306258912, 0.5988707702267543, 0.3813853072548755, 0.8843832309478876, 0.9006952500629406, 0.918975987201669, 0.18997930334445084, 0.8923106748541326, 0.8461388699436441, 0.5973439234355874, 0.9544642924744549, 0.91770416680597, 0.9177239854204658, 0.17584552180125673, 0.9240099144459667, 0.48524948024905407, 0.8889685222180134, 0.5785503824403398, 0.7511953459672914, 0.6887596776945688, 0.6717539058356753, 0.7168761391602206, 0.7134478068952186, 0.834626350903405, 0.5715867980362679, 0.6588392688727011, 0.9488572786900573, 0.8920529250761863, 0.8891353183282249, 0.707981940789761, 0.926348680038428, 0.631489487929038, 0.7443856388661001, 0.9260754381930228, 0.9544642924744549, 0.8497401318990601, 0.5604010177433062, 0.8036334301115304, 0.7898153537185114, 0.8491431337122072, 0.6570881560807702, 0.8389599143569951, 0.7944137576415592, 0.8132668978866627, 0.44714680104169846, 0.7978021044641371, 0.41921696608658454, 0.38876183891604754, 0.9248463736054193, 0.4277915265084825, 0.6345107008491314, 0.8008942533173764, 0.5087430598332189, 0.9414938992689892, 0.6922115882765215, 0.8296175750175913, 0.8593339228153332, 0.8975141534758351, 0.5977126281557783, 0.9279478536756302, 0.6485770817571253, 0.8905823996589662, 0.9332072841984264, 0.9432461110830079, 0.9410120781436498, 0.6339696776630096, 0.7120962557761497, 0.5841709037351369, 0.5928970840420333, 0.9006589732900512, 0.936371533648048, 0.6907852379101131, 0.7675780198071424, 0.9444587893431046, 0.4702336163336472, 0.8925536722101626, 0.8158978708906081, 0.822780392485108, 0.8037335327290217, 0.8382351003285965, 0.8941557358589171, 0.4796498334522667, 0.926348680038428, 0.6842118015950474, 0.6463580983468415, 0.8292048071278182, 0.5834426687867836, 0.8419845362148763, 0.2431563391580561, 0.7763142135369961, 0.9390550746437164, 0.7774903237071782, 0.8141232663130791, 0.9444089886680379, 0.430401459478284, 0.9192677156927759, 0.8427595869840984, 0.87120858451521, 0.5693182102579236, 0.820012080301976, 0.58719119911586, 0.42769376643096113, 0.3542595869275313, 0.89579938191327, 0.8743523014696554, 0.7820497043505815, 0.5279069501129625, 0.8869579700149332, 0.45488774279476296, 0.8514781135508903, 0.8278297091497892, 0.663749097381813, 0.5132851713944618, 0.4906566565015208, 0.6415219885510332, 0.6991293681294938, 0.8150539074042624, 0.5800669536763935, 0.9583771200922359, 0.7366090055976814, 0.5747817696023392, 0.5315376696882942, 0.8074446941396305, 0.9038901015569306, 0.9087015650331977, 0.6697291810323083, 0.5800669536763935, 0.8807270543114014, 0.5135845984304893, 0.9352791850238339, 0.36120709973337456, 0.6206709330576408, 0.906286252315459, 0.7937202818717513], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [0.9976, 0.991, 0.9936, 0.9949, 0.99922, 0.9976, 0.9944, 0.99648, 0.996, 0.99898, 0.99914, 0.9927, 0.9982, 0.99244, 0.9932, 0.99459, 0.99655, 0.994, 0.99904, 0.9964, 0.9927, 0.9964, 0.9958, 0.99242, 0.9979, 0.997, 0.99403, 0.9979, 0.99741, 0.99266, 0.9969, 0.9932, 0.9965, 0.9948, 0.9975, 0.9958, 0.9935, 0.99519, 0.9971, 0.9958, 0.99792, 0.99828, 0.9928, 0.9941, 0.99593, 0.99773, 0.9925, 0.99254, 0.99628, 0.9957, 0.9974, 0.99824, 0.9951, 1.0002, 0.99699, 0.9988, 0.9959, 0.99212, 0.9926, 1.0001, 0.9972, 0.998, 0.99334, 0.997, 0.99733, 0.992, 0.9964, 0.9956, 0.9973, 0.993, 0.9963, 0.99817, 0.9976, 0.99048, 0.99166, 0.99208, 0.99745, 0.9941, 0.99892, 0.99152, 0.99397, 0.9948, 0.9957, 0.99585, 0.99382, 0.99699, 0.995, 0.9932, 0.9941, 0.9937, 0.99817, 0.9961, 0.9964, 0.9976, 1.0, 0.99548, 0.998, 0.996, 0.99528, 0.9998, 0.9982, 0.9982, 0.99405, 1.0008, 0.99625, 0.9973, 0.99684, 0.9902, 0.9963, 0.99502, 0.9956, 0.9937, 0.9958, 0.9949, 0.99634, 0.99642, 0.9976, 0.99001, 0.9985, 0.9934, 0.9976, 0.99374, 0.9968, 0.99687, 0.998, 0.99718, 0.99437, 0.9963, 0.9959, 0.99579, 0.9939, 1.001, 0.99478, 0.99604, 0.99534, 0.9946, 0.9956, 0.9986, 0.99138, 0.9962, 0.9989, 0.99582, 0.9904, 0.99736, 0.99287, 0.9932, 0.9924, 0.99678, 0.9981, 0.9972, 0.9912, 0.99783, 0.9907, 0.99669, 0.99317, 0.99656, 1.001, 0.9969, 0.9938, 0.9905, 0.9928, 0.9988, 0.9981, 0.99429, 0.99587, 0.9942, 0.99504, 0.9986, 0.99738, 0.9958, 0.99537, 0.98956, 0.9981, 0.99873, 0.9966, 0.99682, 0.9961, 0.99166, 0.9968, 0.9937, 0.99308, 0.9964, 0.9924, 0.9946, 0.9982, 0.99512, 0.9994, 0.99098, 0.99642, 0.9966, 0.9937, 0.992, 0.9968, 0.99036, 0.99548, 0.99672, 0.9968, 0.99388, 0.99907, 0.99255, 0.9937, 1.00242, 1.00242, 0.9966, 0.99234, 0.99625, 0.99184, 0.9982, 0.9942, 0.9897, 0.994, 0.99168, 0.9952, 0.9977, 0.99872, 0.99772, 0.9981, 0.9904, 0.9993, 0.9958, 0.99578, 0.99026, 0.9982, 0.9941, 0.99166, 0.99627, 0.9932, 1.0005, 0.9934, 0.998, 0.9944, 0.9938, 0.9957, 1.00044, 0.99026, 0.99244, 1.00118, 0.994, 0.99314, 0.9972, 0.99818, 0.99561, 0.99839, 0.9948, 0.99026, 0.99734, 0.9978, 0.99273, 0.99602, 0.9978, 1.001, 0.9944, 0.9965, 0.9966, 0.99434, 0.9987, 0.99496, 0.9934, 0.996, 1.0004, 0.9926, 0.9946, 0.998, 0.99238, 0.9954, 0.99479, 0.99362, 0.99296, 0.99633, 0.9977, 1.00241, 0.9984, 0.994, 0.99611, 0.9948, 0.99794, 0.9956, 0.99794, 0.99588, 0.9922, 0.9978, 0.99689, 0.9953, 0.99572, 0.9942, 0.99582, 0.9959, 0.9972, 0.9921, 0.9955, 0.9918, 0.9962, 0.9924, 0.99076, 0.99782, 0.99709, 0.99458, 0.99806, 0.9983, 0.998, 0.99346, 0.9937, 0.99814, 0.9966, 1.0001, 0.9926, 0.99943, 0.9955, 0.9986, 0.99657, 0.9945, 0.99558, 0.99689, 0.9955, 0.9979, 0.9938, 1.00098, 0.9984, 0.9969, 0.99732, 0.99647, 0.9968, 0.9955, 0.9962, 0.9949, 0.99663, 0.9976, 0.99454, 0.9967, 0.99577, 1.001, 0.9987, 0.99516, 0.9986, 0.99164, 0.9974, 0.99902, 1.0001, 0.99032, 0.99848, 0.9928, 0.9934, 0.9939, 0.9976, 0.9982, 0.99748, 0.99773, 0.9964, 0.994, 0.99898, 0.9966, 0.99575, 0.998, 0.9937, 0.99517], \"xaxis\": \"x\", \"y\": [0.2802292104526322, 0.9455194119275858, 0.4978743212349556, 0.5289145624519528, 0.28439238707197784, 0.2033309570226689, 0.27345747478543325, 0.8322873304845451, 0.389055896812549, 0.3675472469853882, 0.5781933746273124, 0.7401955299744071, 0.44969671697605845, 0.4367887814338696, 0.31593955341667695, 0.3775624358859999, 0.19282181046294666, 0.048451763306065584, 0.6005928650583868, 0.032225376113695775, 0.427412413738938, 0.23973251442015217, 0.13890126550157303, 0.8613925272127, 0.329663916828638, 0.19359965390713213, 0.6827271716759634, 0.1960905505555538, 0.08135735686643118, 0.39737240301928484, 0.13902987396822816, 0.6514166433739288, 0.6994753721471061, 0.7140886736258081, 0.5021795028970708, 0.48743245558712556, 0.5731139673640956, 0.8820820642542792, 0.559972149724866, 0.5061565591493914, 0.5066810377847554, 0.833805652807593, 0.6979972163580744, 0.3177574231538272, 0.13068190592986567, 0.758876109553896, 0.5681062961269688, 0.715544821914063, 0.762062625203523, 0.4464438677531786, 0.20995974230910305, 0.5262622410710028, 0.39442669669188163, 0.2537324982988368, 0.6775437642744659, 0.23876321589577687, 0.6369158982934647, 0.38960060362966165, 0.6034323722874255, 0.7769991715799629, 0.15199748354041337, 0.5641412449951732, 0.7590466800561823, 0.5969347905931296, 0.1048362779837843, 0.7217824369593382, 0.2662339163773806, 0.16472378978351135, 0.37760124376932414, 0.7071736299639594, 0.3436862995931572, 0.8384434752264291, 0.3635333644877426, 0.7813188949129265, 0.7279369976219869, 0.5641098847382463, 0.3863964747623771, 0.9209913370067284, 0.1477144681640183, 0.8809374658555192, 0.6533168894759348, 0.8873477284758582, 0.3697306267878623, 0.28319023347825867, 0.5203701741750857, 0.5523747693308857, 0.6387521731780509, 0.3881380695009739, 0.8487896327149285, 0.4636606453307818, 0.8384434752264291, 0.558266603669778, 0.21657231888677728, 0.3635333644877426, 0.5512671313974766, 0.5051039398599867, 0.5827915753039158, 0.49441682850108926, 0.47309171914705017, 0.6262595591688196, 0.5508242483721094, 0.47332791509789995, 0.7117569366896692, 0.3933786516273859, 0.16465066549244003, 0.7490394132223248, 0.769261050002088, 0.7431932405995126, 0.3141000916210982, 0.723735045552473, 0.6484132891031948, 0.688519894019609, 0.40496704226994307, 0.5803736122960511, 0.6327801522745691, 0.45115706990411364, 0.37268733756108086, 0.9009693101135351, 0.06496389958099598, 0.44431713201158524, 0.39960831974332744, 0.8662156944598043, 0.31018081106061823, 0.5339551117365043, 0.33311273919547707, 0.400132762133902, 0.8528754522806217, 0.14419347879543085, 0.11672350429510901, 0.44556702529145975, 0.6160120899414699, 0.13766892845409207, 0.5517204028384314, 0.5232178919035022, 0.35483403305733974, 0.4900213704561591, 0.8854578072659228, 0.43084122675663034, 0.7601186327653665, 0.14072030431570776, 0.6186690618327106, 0.5245054232921349, 0.7326259458716644, 0.5690781983520095, 0.4018508815425063, 0.24877469563805235, 0.7952501197393639, 0.8766221356386195, 0.303451532996695, 0.5357745481647883, 0.7096524147827454, 0.20877177283968149, 0.8635610141758273, 0.46736762313881036, 0.6061151992073851, 0.113015272873705, 0.40446014603085867, 0.6332606063976143, 0.648705381890928, 0.42186952587750404, 0.8047913565308571, 0.3017058309841093, 0.38406990132164637, 0.33494193042999065, 0.19929939967121216, 0.8624919783238055, 0.528785836409086, 0.43084122675663034, 0.47042159929499583, 0.5061565591493914, 0.5759491569657543, 0.8468794444363914, 0.20342296359496542, 0.5170831534483544, 0.3666753044655067, 0.6131723001375537, 0.4410646109528086, 0.6903416342484309, 0.3866428492574258, 0.4636606453307818, 0.4525459302795702, 0.03199256040434073, 0.7029629492254846, 0.2433141614541866, 0.548755973819273, 0.3775060302547258, 0.06593060991448157, 0.8745624549148976, 0.22931948662359403, 0.27267688907931714, 0.589328430619086, 0.8007160756317941, 0.5525637789187225, 0.5008522318356121, 0.4556212410144909, 0.17391722008742402, 0.43574637053357784, 0.3237440077649342, 0.6071692164257629, 0.6925152430641841, 0.592675381607996, 0.43854150134957587, 0.43854150134957587, 0.42437112972565305, 0.8061118855433299, 0.35195592295594336, 0.7605370065149419, 0.38898578429124253, 0.67510953655807, 0.872979709380305, 0.710510994258769, 0.720290290780972, 0.4820787970895852, 0.42019280799979697, 0.4304380754474639, 0.25285023254778977, 0.3238056884730761, 0.39471961640683584, 0.09510031985475974, 0.367046376808582, 0.21500793651835448, 0.8705359023101334, 0.6100742529031461, 0.6226449432624995, 0.7279369976219869, 0.3643494054700089, 0.09992017521484964, 0.41475515148757036, 0.6462260464983366, 0.14102909592513518, 0.48949585696458414, 0.5239520436918008, 0.6084413884537807, 0.5655473856702703, 0.9517420512476797, 0.7489379515982664, 0.4647937384849751, 0.7915321263825208, 0.44112279258530757, 0.5734340256727429, 0.6604471727860799, 0.4845203185458914, 0.6968730453869196, 0.5315374962198609, 0.8685951485887234, 0.6242442748350044, 0.2912097196987059, 0.7725938221565348, 0.2067629769731588, 0.30221725334927335, 0.13129342562285412, 0.6467789443522378, 0.6994753721471061, 0.11825382206919556, 0.41022417118631593, 0.4882665226122541, 0.7732287086973071, 0.25374762405010176, 0.49441682850108926, 0.3723877205427743, 0.652330313245635, 0.43667799883041203, 0.5964718913578133, 0.55172276504346, 0.24113559934961917, 0.8243980268882987, 0.7263843594269437, 0.43535214809021755, 0.8721122798612579, 0.18723914490145582, 0.6486906676970999, 0.11576704656818047, 0.4328241622975616, 0.491481212420291, 0.5264345378086769, 0.33856526784971647, 0.2967410926251248, 0.581398831228375, 0.5973776665460488, 0.6195406102170065, 0.37782717658841725, 0.323061133240968, 0.17420808473594895, 0.19634770547538957, 0.46492234760650425, 0.49613167963272686, 0.5812209036149294, 0.6057291775435286, 0.63414717387345, 0.5702687187355167, 0.8604975146328253, 0.6309022132706124, 0.48732991249542923, 0.6887148870948692, 0.41581945293096145, 0.5706760596351739, 0.4831274653996314, 0.06684727567316755, 0.49090643211649887, 0.15191610726090596, 0.2711405311223577, 0.7653618545702112, 0.09266565137124261, 0.4554350627407873, 0.19698919164573708, 0.6930185080649685, 0.5227537922811563, 0.50434568709929, 0.7082092780767422, 0.46058046365566996, 0.6735723234187477, 0.4285936050615775, 0.323061133240968, 0.5168500865319015, 0.6161307914674419, 0.23456444218973552, 0.3192004782541023, 0.21968945907811915, 0.5028183230931117, 0.43371621376298963, 0.6744209213341115, 0.5940260419772637, 0.13783310426722128, 0.5136444387530009, 0.5508647999875032, 0.4955911012838212, 0.9814394195009358, 0.8260225289794664, 0.17965956338109995, 0.46844896472597397, 0.6048119589659149, 0.3289160319090978, 0.2454606394453749, 0.7497022835596558, 0.683485355417811, 0.20995974230910305, 0.23504578258460665, 0.37175956099497537, 0.4875530438829156, 0.24982584224249993, 0.6282829625348888, 0.4520795162158371, 0.8200372413039435, 0.12832513643528837, 0.5299630655130737, 0.29552777318700446, 0.24021937552346023, 0.5429028773737552, 0.6311869746243346, 0.4145977043912777, 0.39329840463575844, 0.39070335653410526, 0.4286990948130573, 0.846836560604146, 0.6880850122626078], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (curr)\", \"type\": \"scatter\", \"x\": [0.9934, 0.9979, 0.99234, 0.9932, 0.99686, 0.9927, 0.9926, 0.99362, 0.989435, 0.99239, 1.0, 0.9908, 0.98918, 0.99168, 0.98904, 0.9932, 0.99438, 0.99189, 0.999, 0.9903, 0.999, 0.9986, 0.992, 0.9935, 0.99541, 0.9893, 0.99326, 0.99146, 0.99144, 0.99165, 0.98889, 0.9957, 0.9992, 0.99449, 0.98871, 0.9936, 0.9914, 0.99488, 0.98988, 0.995, 0.99123, 0.99014, 0.9958, 0.9986, 0.9974, 0.99417, 0.9998, 0.9968, 0.9969, 0.9908, 0.9972, 0.9917, 0.9946, 0.9922, 0.99376, 1.0006, 0.998, 0.9916, 0.99795, 0.99652, 0.99724, 0.99727, 0.99206, 0.99406, 0.99534, 0.98964, 0.9966, 0.9951, 0.99236, 0.9945, 0.9986, 0.99064, 0.99815, 0.99313, 0.9983, 0.99668, 0.99922, 0.99207, 0.9949, 0.9975, 0.98972, 0.9923, 0.99492, 0.9914, 0.9965, 0.99536, 0.99652, 0.99456, 0.9932, 0.994, 0.99526, 0.9934, 0.9904, 0.98836, 0.9931, 0.99148, 0.99704, 0.99018, 0.9968, 0.99376, 0.993, 0.99596, 0.99438, 0.98882, 0.9986, 0.99566, 0.996, 0.99262, 0.99132, 0.99159, 0.99551, 1.0103, 0.99144, 0.9893, 0.99171, 0.9934, 0.99238, 0.9934, 0.99552, 0.9989, 0.99322, 0.98976, 0.99384, 0.99, 0.99638, 0.99649, 0.9981, 0.991, 0.9984, 0.98961, 0.98961, 0.9933, 0.98918, 1.00014, 0.9931, 1.0006, 0.99667, 0.9979, 0.99252, 0.9917, 0.9943, 0.995, 0.9994, 0.99576, 0.99745, 0.9916, 0.9993, 0.9991, 0.993, 0.9927, 0.99564, 0.99094, 0.997, 0.9987, 0.98954, 0.9912, 0.99676, 0.9947, 0.99232, 0.9979, 0.9898, 0.9983, 0.98934, 0.99394, 0.9992, 0.9913, 0.99458, 0.9959, 0.99554, 0.9932, 0.99099, 0.9923, 0.99665, 0.99738, 0.9907, 0.9927, 0.991, 0.99154, 0.98872, 0.99444, 0.9943, 0.99646, 0.9934, 1.0002, 0.9956, 0.99314, 0.999, 0.9908, 1.001, 0.9949, 0.99278, 0.9984, 0.99076, 0.99064, 0.9931, 0.9918, 0.99173, 0.9893, 0.9993, 0.99612, 0.9914, 0.99312, 0.9937, 0.9929, 0.99294, 0.9928, 0.9947, 0.999, 0.993, 0.99742, 0.99224, 0.98986, 0.9948, 0.98998, 1.0006, 0.99162, 0.99232, 0.9914, 0.9922, 0.99, 0.9914, 0.9956, 0.9975, 0.99544, 0.9994, 0.9971, 0.99134, 0.9941, 0.99617, 0.99194, 0.99842, 0.9951, 0.994, 0.9922, 0.9956, 1.0004, 0.99031, 0.99164, 0.99216, 0.9917, 0.9938, 0.99176, 0.99313, 0.9959, 0.9956, 0.996, 0.99807, 0.9986, 0.9931, 0.9984, 0.9948, 0.9983, 1.0006, 0.9912, 0.99581, 0.99676, 0.9933, 0.99095, 0.98924, 0.99067, 0.99498, 0.9946, 0.9931, 0.99435, 0.9938, 0.99055, 0.9912, 0.99516, 0.9958, 0.9968, 0.99454, 0.99182, 0.98878, 0.9988, 0.9962, 0.9977, 0.9932, 0.99498, 0.99154, 0.99512, 0.9979, 0.99088, 0.99161, 0.99494, 0.99158, 0.9963, 0.99188, 0.99035, 0.9945, 0.9924, 1.0003, 0.9994, 0.99655, 0.98974, 0.99152, 0.99296, 0.99782, 0.99173, 0.9975, 0.9924, 0.98944, 0.9932, 0.99184, 0.9912, 0.9976, 0.99534, 0.98986, 0.99287, 0.991, 0.99047, 0.99691, 0.99165, 0.99646, 0.99708, 0.9902, 0.99178, 0.9963, 0.99232, 0.9938, 0.9934, 0.99176, 0.99408, 0.99572, 0.9998, 1.0026, 0.99, 0.992, 0.99734, 0.9975, 0.99204, 0.99492, 0.99666, 0.9994, 0.997, 0.99288, 0.994, 0.9996, 0.99685, 0.9958, 0.99346, 0.99215, 0.99521, 0.9974, 0.9956, 0.9967, 0.99406, 0.9936, 0.9926, 0.9982, 0.99086, 0.9955, 0.99158, 0.99975, 0.9987, 0.9966, 0.9926, 0.99815, 0.99366, 0.99706, 0.99358, 0.99071, 0.99582, 0.9988, 0.9986, 0.99551, 0.9956, 0.99862, 0.9957, 0.99882, 0.99324, 0.98823, 0.9952, 0.992, 0.99043, 1.0002, 0.99655, 0.98942, 0.99356, 0.99553, 0.99315, 0.9954, 0.9928, 0.99226, 0.9958, 0.99, 0.9948, 0.992, 0.9898, 0.99354, 0.99186, 0.99404, 0.99922, 0.992, 0.9988, 0.9939, 0.99557, 0.9999, 0.99531, 0.9903, 0.992, 0.9938, 0.991, 0.9907, 0.99784, 0.98952, 0.998, 0.9952, 0.99148, 0.99792, 0.99058, 0.9974, 0.99282, 0.9923, 0.9927, 0.99519, 0.9967, 0.9951, 0.99683, 0.99165, 0.99176, 0.99006, 0.99002, 0.99736, 0.99612, 0.9987, 0.9908, 0.9946, 0.99445, 0.98965, 0.9904, 0.99086, 0.9934, 0.99046, 0.9902, 0.99774, 0.9984, 0.996, 0.9976, 0.991, 0.99808, 0.9986, 0.9934, 0.9963, 0.9954, 0.98956, 0.9988, 0.99084, 0.99314, 0.99522, 0.99739, 0.99704, 0.9959, 0.9941, 0.99458, 0.99971, 0.9919, 0.99544, 0.99094, 0.9992, 0.99416, 0.99189, 0.98936, 0.99352, 0.9984, 0.99276, 0.9939, 0.9926, 0.993, 0.9928, 0.9966, 0.9944, 0.9952, 0.99467, 0.9984, 0.9943, 0.99381, 0.9946, 0.99121, 0.99174, 0.99052, 0.9944, 0.9927, 0.9962, 0.99552, 0.9958, 0.994, 0.99184, 0.98916, 0.99581, 0.99522, 0.9957, 0.9998, 0.99444, 0.99599, 0.9944, 0.9982, 0.9925, 0.9979, 0.99331, 0.9997, 0.99018, 0.99517, 0.9986, 0.9908, 0.98815, 0.99862, 0.99566, 0.9906, 0.9984, 0.9916, 0.99418, 0.992, 0.98779, 0.9915, 0.9934, 0.99, 0.99824, 0.9986, 0.9956, 0.99439, 0.9887, 0.9968, 0.9906, 0.9965, 0.9901, 0.99772, 0.9948, 0.991, 0.9947, 0.9984, 0.99572, 0.99388, 0.9976, 0.989315, 0.99358, 0.9926, 0.9978, 0.996, 0.99636, 0.99784, 0.99316, 0.99339, 0.99724, 0.9921, 0.98845, 0.99437, 0.99708, 0.99614, 0.98992, 0.9986, 0.9997, 0.99362, 0.9928, 0.99552, 0.99115, 0.99508, 0.99556, 0.98964, 0.9903, 0.99221, 0.99676, 0.9954, 0.99825, 0.99546, 0.9948, 0.991, 0.9945, 0.99479, 0.98912, 0.99042, 0.9963, 0.99787, 0.9916, 0.99742, 0.9893, 0.99158, 0.9954, 0.99172, 0.9925, 0.9906, 0.99459, 0.9976, 0.99456, 0.9893, 0.9931, 0.9927, 0.9963, 0.997, 0.9931, 0.99514, 0.9968, 0.99354, 0.9948, 0.99261, 0.99454, 0.9994, 0.99198, 0.998, 0.9928, 0.99068, 0.99384, 0.99275, 0.9952, 0.9932, 0.99165, 0.99616, 0.99659, 0.9924, 0.99316, 0.992, 0.9928, 0.99532, 0.9936, 0.98939, 0.99616, 0.99367, 0.98892, 0.99596, 0.99784, 0.99267, 0.99347, 0.9919, 0.99089, 0.99425, 0.99226, 0.989465, 0.9902, 0.995, 0.99565, 0.99192, 0.9964, 1.0014, 0.9898, 0.9922, 0.99166, 0.99576, 0.9884, 0.99764, 0.9951, 0.9953, 0.98964, 1.0001, 0.99837, 0.9934, 0.998, 0.99586, 0.99014, 0.99455], \"xaxis\": \"x2\", \"y\": [0.33396714643252134, 0.5044440900554997, 0.8874896900044845, 0.4686759077780351, 0.23831547366416572, 0.571181601185031, 0.7785327680196316, 0.7290551099174598, 0.9581131370131553, 0.6801000322064107, 0.413367674560271, 0.6667140739211237, 0.9108229754863395, 0.9275086157065797, 0.9186958597750785, 0.7191871442695774, 0.8184457509658746, 0.8597940676688322, 0.7947045908306632, 0.8244149680645384, 0.42771531534877594, 0.5315376696882942, 0.7136291946100958, 0.5510697799054304, 0.6393262665313312, 0.9016582766249417, 0.8560880110261746, 0.8947361144883382, 0.9102326114023062, 0.840723585394272, 0.9264645566705582, 0.5105903360131552, 0.752648770317166, 0.5855954083225455, 0.8989214048388485, 0.5190750352404293, 0.9560713253502463, 0.7273157243430202, 0.9279672131348602, 0.640103147954212, 0.9158977434209615, 0.9035955072010529, 0.7140955379655831, 0.233508355491505, 0.7280578325574358, 0.8810827811902006, 0.3966129217085586, 0.15541760955422754, 0.5851621750323275, 0.9046111951917862, 0.4177213302712193, 0.7993763114768937, 0.6978409661933959, 0.6473373667551029, 0.770784382977056, 0.6500641275496193, 0.548949563093737, 0.9803199442553986, 0.6150775052067382, 0.391333092160729, 0.6966682278280982, 0.9426748402861506, 0.9170092977635526, 0.844625652038695, 0.5621782696252592, 0.8935808323282117, 0.6792214086077275, 0.6719996755401956, 0.5252591274442797, 0.7277045758687855, 0.4685752957996948, 0.8616549355667619, 0.347491516391863, 0.8224130863808733, 0.5340790568488665, 0.6711667658766297, 0.5277539611022016, 0.7226430813715845, 0.8140972745487615, 0.3280236940194876, 0.9543080196225542, 0.7752655593026647, 0.9223925066666061, 0.8588031784191832, 0.6345107008491314, 0.9393010047953068, 0.7897067132703484, 0.8608062836413887, 0.8367885032124018, 0.38555642305179116, 0.8611944449682004, 0.9172341012895443, 0.9206892306522243, 0.9500505925695213, 0.537798347971205, 0.9173482789702866, 0.44454351342386716, 0.8909704850569525, 0.7351932580165473, 0.6818328744935735, 0.7981559962965634, 0.7626532952948841, 0.807353254900461, 0.964411205143099, 0.4685752957996948, 0.6986526320119215, 0.1956969407137045, 0.9233481403380283, 0.8218375601976645, 0.8536269727611236, 0.5637680470866036, 0.42267134533232753, 0.93003590801509, 0.9364808605729722, 0.8816060831574614, 0.9663102962713933, 0.8345570787709832, 0.4997893986747249, 0.7921603237806832, 0.5586815647381762, 0.8622246464681924, 0.9828719612298703, 0.909295720392338, 0.9476267884443668, 0.5395521774612226, 0.901360886913609, 0.39410444510430487, 0.9262213132200262, 0.6627387433216217, 0.9629433821448677, 0.9614311452267452, 0.9802968012486629, 0.933760787013923, 0.34432718187202205, 0.63596173557573, 0.624364378916488, 0.7417789548241253, 0.7300918276682445, 0.6968315453320488, 0.7840233885688647, 0.8958841271622066, 0.5417426694559925, 0.7102579146160282, 0.6004345411549624, 0.515920701757342, 0.7587882454650442, 0.5029588531082266, 0.6887596776945688, 0.8642849605932809, 0.6469572639767995, 0.8103639651534781, 0.939764354405301, 0.694136577696587, 0.6593725303534554, 0.9646797005081557, 0.7979900311745153, 0.792123904710467, 0.8869579700149332, 0.7351250317969437, 0.5332560471205093, 0.9406873315653421, 0.39362685027924615, 0.9466602521798594, 0.8394325033041952, 0.6633442657978572, 0.8126408700417265, 0.7332457619716184, 0.08024070404520958, 0.8667774471450977, 0.6466814331404849, 0.912366876100516, 0.656670904734599, 0.8701678467707724, 0.8875925797813499, 0.9658725076002231, 0.7668332861852056, 0.8604440887473094, 0.934384507524058, 0.9605946056867319, 0.951253157591183, 0.5749289095213865, 0.6279243005170476, 0.7937202818717513, 0.7665301650725991, 0.700127941221274, 0.8531107444728586, 0.7947045908306632, 0.8870566665876504, 0.5476228787844645, 0.8410401833568673, 0.8736671065238262, 0.6519898659949606, 0.936943112068646, 0.9077719201719568, 0.8071889556778997, 0.8815615400732472, 0.8935313268029127, 0.8782891297971865, 0.5029588531082266, 0.5797201450332624, 0.9416775458320723, 0.5958140198486584, 0.2485157288688957, 0.932021424688801, 0.8531502837407814, 0.6344194678828672, 0.632587077283238, 0.9121448358615357, 0.5776545535910985, 0.9052765174806566, 0.8580390107418799, 0.8998644401112552, 0.6784536879503494, 0.9458342431661766, 0.21387363850783603, 0.9530348339880965, 0.7307391114165022, 0.7187682731289255, 0.6905635603269331, 0.9569274903702625, 0.9287384091375525, 0.3856984054091925, 0.504413920551941, 0.5389739198483336, 0.5921068831639978, 0.10702848140489757, 0.8772993497727819, 0.6361944011057532, 0.8952999713010865, 0.7069578609115064, 0.10632960186243966, 0.6465592619811017, 0.9116333268133815, 0.9210441535829985, 0.9483358221641291, 0.5800224234700003, 0.896951343689222, 0.8958659323404018, 0.8896861436466836, 0.7763142135369961, 0.778627444633172, 0.9274605647284293, 0.9167924025380936, 0.6422094408272838, 0.6363725079258666, 0.8694129796739031, 0.5693182102579236, 0.5315376696882942, 0.6814536952243052, 0.30089534057709466, 0.6689448970920832, 0.6419522618821227, 0.6500641275496193, 0.8221968069187356, 0.9285763346020383, 0.8495153837633861, 0.7135666997345446, 0.8850789772017983, 0.9128367188568884, 0.8709442503982084, 0.44714680104169846, 0.7147831401969469, 0.6814536952243052, 0.5823319261018008, 0.7718122970862826, 0.8925058444773368, 0.9249991097277733, 0.7849066379312727, 0.5120166815330335, 0.7863291630268572, 0.8171821177205619, 0.8878235148823457, 0.9813953955585096, 0.5009899161211654, 0.6787020040856314, 0.2747106808400709, 0.6998114428322438, 0.7191783799678735, 0.7566715075843347, 0.7741630673610131, 0.692871858980435, 0.8706970297938403, 0.9226518689226377, 0.619213859232465, 0.9620625840847012, 0.8161066853745392, 0.7984578805051198, 0.8987836568806694, 0.27900511725120763, 0.747868261422589, 0.8013372150606806, 0.4430395412241901, 0.8082746512504794, 0.9248395818955686, 0.8132668978866627, 0.7926355964369082, 0.7243101498981422, 0.8251498778038484, 0.865753667016409, 0.8784859927081519, 0.9613966942665844, 0.8380103992838959, 0.9376908870460701, 0.8505645904112248, 0.5317253080143199, 0.8756470416862959, 0.8823120896825394, 0.8920529250761863, 0.9565288857220365, 0.92576324319171, 0.8397457208604353, 0.8008835764985612, 0.7620555647282774, 0.6333567796033132, 0.8986985644274655, 0.8289197139212982, 0.38568054861828666, 0.4358764146033148, 0.7013568331933456, 0.5524769805317635, 0.8654015550049637, 0.9625385348003681, 0.4997035751430624, 0.5940434106189647, 0.29640429037896177, 0.9370396801623051, 0.7496358493500708, 0.8521916566704996, 0.7519935213994349, 0.8956127660014477, 0.7563308848917781, 0.5425355780301907, 0.1652985164032473, 0.5777375433929663, 0.5926841497777402, 0.5247451599628447, 0.6215406511606532, 0.646742228322253, 0.5236567091352762, 0.8105889943537302, 0.7614647275399787, 0.7272264480694343, 0.44438282424164377, 0.8051848688934031, 0.253979247575754, 0.8737269176380216, 0.7884186533408385, 0.5226162157005312, 0.7776146375974927, 0.8021344726910251, 0.6794204065079696, 0.8398669626756513, 0.3743394998756179, 0.6593725303534554, 0.41008410759983227, 0.8726624594592295, 0.31336232876890546, 0.6187135046228962, 0.9208146539756937, 0.8948907807194619, 0.9475948217130945, 0.7098971478357265, 0.41970311630379203, 0.5524505095188592, 0.6689295490636696, 0.39534528644804523, 0.6686700461744643, 0.6608417181144597, 0.6289006219381473, 0.8112353209803558, 0.9675531845963172, 0.3468688843876404, 0.8171815196180959, 0.9315945487332388, 0.7612383340144859, 0.43979370974717685, 0.9452166580978265, 0.810349906376065, 0.4979189466877109, 0.9054024939516333, 0.7506263221664519, 0.8595966107872783, 0.9041757536760852, 0.5120166815330335, 0.9246344940597735, 0.622364539475366, 0.7975959936185795, 0.9376528402833735, 0.8270495791839716, 0.7463426393970082, 0.8508295060861325, 0.5277539611022016, 0.7926521549058593, 0.8343380415579561, 0.7973631232158779, 0.5423298306356671, 0.6253812669856891, 0.9342151247863544, 0.9064095870896521, 0.8428584418618921, 0.5680191878381406, 0.8230633503438987, 0.857993972512287, 0.8312116035859974, 0.8886868130574391, 0.5695902702544526, 0.8750573328895943, 0.47134086624147714, 0.6082670858563528, 0.8571520978358925, 0.7006810412396262, 0.6001343818465046, 0.8680196363335714, 0.7833148206731655, 0.835330250744176, 0.6883000602161935, 0.4297997702781997, 0.7132181587745201, 0.941909753873568, 0.9298379484442667, 0.8950633078112005, 0.9652574497835966, 0.8593048115498744, 0.23022113319019433, 0.5548683876071567, 0.8789570823277312, 0.7176343272433334, 0.7135972690872326, 0.900955402304434, 0.89110615578316, 0.8021344726910251, 0.36734125225010755, 0.9233813125795639, 0.9269988231022361, 0.6021478506882372, 0.27064660283581765, 0.7595966254948197, 0.5317253080143199, 0.9626288904553877, 0.518871521713375, 0.4244151934213653, 0.8784852709235653, 0.667697582798242, 0.6791650855490978, 0.8659372985570389, 0.5217980090164113, 0.9757802673562255, 0.20769640873195563, 0.6900575067285889, 0.15051833553221247, 0.8476988333501053, 0.12043274000614122, 0.6546311715671466, 0.412102187638673, 0.6339696776630096, 0.6925917751558638, 0.8074446941396305, 0.8417042066658985, 0.4702054036006336, 0.8107456318417504, 0.934253622333564, 0.9671353887875448, 0.3776875782453083, 0.5133306968464912, 0.8279918435672958, 0.7295730380004212, 0.8398957027397556, 0.7470826509089123, 0.7722124156410631, 0.3944809481034696, 0.5801047158883857, 0.7134138458261836, 0.8265590446981121, 0.5836238058504062, 0.7538957359152121, 0.9708936701567454, 0.41507295289487073, 0.9039211350062085, 0.5109703825452502, 0.8880660412534, 0.6332514250278477, 0.703270618172154, 0.863031725372896, 0.9601349291832292, 0.5845797646527732, 0.8357575010967041, 0.9584406458449958, 0.8733333206292072, 0.4740801794177068, 0.5787650908025566, 0.38525623454815555, 0.5715075300165849, 0.951253157591183, 0.831291834366621, 0.6482062646591596, 0.5447536045265621, 0.8456825404777587, 0.5358725178581014, 0.8893400405584444, 0.5955893395860203, 0.9408369636189147, 0.7580589814818564, 0.4244151934213653, 0.7636885291754726, 0.9532052815091139, 0.6686700461744643, 0.39683939049776734, 0.8309978518015588, 0.06774730328187532, 0.8934061610794648, 0.9459413258233057, 0.8507977517004935, 0.9694554821790147, 0.8640493534313302, 0.8409166048571896, 0.9059760843724536, 0.7278052027863667, 0.8952246802917138, 0.39534528644804523, 0.9558702864115934, 0.9178754126151818, 0.7504628435478695, 0.7568870052952757, 0.32046258648166903, 0.9712495894387816, 0.7125870341029702, 0.8286889773580812, 0.929575727770858, 0.8422483936479932, 0.60065365322741, 0.5775074082600717, 0.7505976846167132, 0.5317253080143199, 0.9590110623565244, 0.9651712957082627, 0.7333643603414158, 0.7757825668725274, 0.8928390517037824, 0.2578168736401774, 0.5355488836719776, 0.8408692583280314, 0.7849780542174357, 0.8711681462620556, 0.8447990405440073, 0.9571933326515756, 0.9307123551507692, 0.6421242495412457, 0.9239207054420927, 0.9336219461922934, 0.4244151934213653, 0.5673643045526261, 0.8301442064454496, 0.528471943574542, 0.8835542071774324, 0.8820947700128993, 0.4561713647735051, 0.584381944856391, 0.9493936477483658, 0.7816316980556022, 0.7770145472448273, 0.8495153837633861, 0.8318035560268552, 0.5220388622338656, 0.8589980209217414, 0.21216021099657945, 0.8782303617207965, 0.901850575196968, 0.7683760396387002, 0.9559989503713009, 0.938411491366706, 0.7225398931917507, 0.5918361617892179, 0.8596378534897678, 0.8816239240572568, 0.9296844522785247, 0.8299758417251202, 0.7538846798551382, 0.931253582726863, 0.6902425303942638, 0.9299571155275668, 0.35461708236434614, 0.6119587629530028, 0.8979450471026776, 0.8782891297971865, 0.6144930729026484, 0.5601837238662909, 0.4230258756549153, 0.5115702372514986, 0.6133200318312215, 0.8287048127179734, 0.42887934024879554, 0.5543929044930882, 0.5414149972460248, 0.7453725251924848, 0.6522898344923613, 0.6445138145159856, 0.9212190995841192, 0.6991293681294938, 0.9188224881967051, 0.9444881948020799, 0.8399825546316605, 0.6440269003431431, 0.45260210695563535, 0.6678228102737954, 0.8535669746933884, 0.23469888428232324, 0.7581156815660375, 0.8329520097124233, 0.5886389680190937, 0.4250130050586104, 0.290761161529129, 0.9065968169685268, 0.39757013049667705, 0.9584529405260903, 0.24804178200132845, 0.8400605958344816, 0.9562762484868867, 0.5923100188758571, 0.5355488836719776, 0.6866862751474886, 0.753715093249364, 0.9302702282582556, 0.8405005145861136, 0.7758456574858743, 0.8270123797965384, 0.9270997487744173, 0.8779999285967196, 0.6350604679157676, 0.9057987369792326, 0.9732730617650076, 0.28007269673131574, 0.5393237551960537, 0.9509318156255189, 0.8055358405733448, 0.8512314640165554, 0.6752183046546253, 0.9766791413071304, 0.26893819095773785, 0.5105552073939665, 0.7964242570425004, 0.9159462749375985, 0.46312559485344046, 0.7889853219989779, 0.5331772070153998, 0.6250130361556073, 0.5340700079782073, 0.8981158701031157, 0.8424802355113449], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [0.9966, 0.99556, 0.9939, 0.99126, 0.9996, 1.001, 0.99565, 0.998, 0.99692, 0.9997, 0.9956, 0.9918, 0.99513, 0.99587, 0.99869, 1.0, 0.9959, 1.0004, 0.99253, 0.9905, 0.9918, 0.9996, 0.9946, 0.9978, 0.99009, 0.9926, 0.997, 0.99898, 0.99215, 0.9931, 0.99839, 0.9944, 0.99798, 0.9963, 0.9926, 0.99341, 0.998, 0.9968, 0.9953, 0.9934, 0.9918, 0.99494, 0.9968, 0.9982, 0.992, 0.99212, 0.9976, 0.99616, 0.99911, 0.99244, 0.99454, 1.0011, 0.9937, 0.99612, 0.9976, 0.9963, 0.99748, 1.00315, 0.9966, 0.99848, 1.00315, 0.9976, 0.9962, 1.0006, 0.99657, 0.99592, 0.99702, 0.9978, 0.9965, 0.9956, 0.99654, 0.99093, 0.99212, 0.99694, 0.9938, 0.99174, 1.0, 0.9918, 0.99345, 0.99717, 0.9966, 0.99576, 0.9972, 0.9968, 0.9938, 0.9923, 0.9967, 0.99976, 0.992, 0.9978, 0.9951, 0.9936, 0.998, 0.9991, 0.99683, 0.99476, 0.9958, 0.9986, 0.9972, 0.99596, 0.99918, 0.99479, 1.0, 0.9955, 0.9954, 0.99584, 0.9984, 0.99448, 0.99416, 0.9989, 0.9964, 0.9983, 0.99712, 0.99362, 0.9926, 0.99669, 0.99676, 0.99471, 0.9955, 0.9958, 0.9962, 0.99182, 0.9946, 0.996, 0.99546, 0.99915, 0.99111, 0.9997, 0.99546, 0.9938, 0.98876, 0.99734, 0.9991, 0.992, 0.99694, 0.9976, 0.993, 0.9976, 0.99681, 0.99494, 0.9938, 0.9938, 0.99239, 0.9939, 0.9992, 0.99677, 0.99176, 0.9958, 0.9964, 0.99568, 0.9932, 0.99942, 0.9973, 0.9958, 0.99344, 0.9928, 0.99481, 0.99584, 0.99696, 0.9988, 0.99745, 0.99872, 0.99212, 0.9982, 0.9974, 0.9944, 0.9904, 0.99264, 0.99299, 0.99534, 0.9997, 0.9966, 0.9934, 0.99204, 0.9964, 0.98918, 0.9923, 0.99775, 0.99742, 0.99642, 0.9941, 0.99688, 1.0004, 0.9927, 0.99705, 0.99154, 0.9958, 0.9989, 0.9936, 0.99545, 0.99743, 0.99524, 0.99555, 0.99173, 0.9976, 0.9961, 0.9936, 0.99382, 0.99947, 0.997, 0.9962, 0.9976, 0.9983, 0.9986, 0.98993, 0.99922, 0.9958, 0.9994, 0.9974, 0.9977, 0.998, 0.99458, 0.99552, 0.99194, 0.9953, 0.99084, 0.9973, 0.9966, 0.99288, 0.9928, 0.9975, 0.9961, 0.9982, 0.9952, 0.9934, 0.996, 0.998, 0.9961, 0.99366, 0.99138, 0.9991, 0.99305, 1.0001, 0.9981, 0.9965, 0.99628, 0.99164, 0.99193, 0.9991, 0.9931, 0.99771, 0.9993, 0.99176, 0.9962, 0.99048, 0.9944, 0.9936, 0.99469, 0.9986, 0.99362, 0.9978, 0.99884, 0.9958, 0.99779, 0.9927, 0.99924, 0.9962, 0.9958, 0.99692, 0.99818, 0.99732, 0.99471, 0.9978, 0.9978, 0.99402, 0.99211, 0.9956, 0.99176, 0.99032, 0.99488, 0.99069, 0.9994, 0.9998, 0.9955, 0.99514, 0.9929, 0.99907, 0.998, 0.9958, 0.9968, 0.9983, 0.9993, 0.99047, 0.99202, 0.9986, 0.99185, 0.99249, 0.9943, 0.9911, 0.99726, 0.99527, 0.9944, 0.99626, 0.99746, 0.99304, 0.9984, 0.99274, 0.9955, 0.99804, 0.9986, 0.99182, 0.9996, 0.99454, 0.997, 0.99718, 0.9904, 0.9986, 0.9962, 1.0004, 0.9954, 0.9965, 0.99516, 0.9944, 0.9998, 0.9944, 0.998, 0.9938, 0.99558, 0.9956, 0.9932, 0.997, 0.9954, 0.99773, 0.9953, 0.9994, 0.9963, 0.9991, 0.9969, 0.9956, 0.99212, 0.9967, 0.9968, 0.9918, 0.9914, 0.9964, 0.992, 0.99198, 0.99271, 1.0001, 0.9952, 0.9958, 0.9978, 0.9953, 0.99652, 0.9994, 0.99242, 0.9979, 0.9966, 1.0001, 0.9932, 0.99372, 0.9917], \"xaxis\": \"x2\", \"y\": [0.8142007211296887, 0.07257977436397642, 0.7430932382113554, 0.8214862427787604, 0.5698848321031316, 0.6048119589659149, 0.6466669219762841, 0.14510080060429495, 0.2250304680670007, 0.28492472637839966, 0.42061632734231896, 0.8281252124183194, 0.49622399336621903, 0.3482895521074759, 0.4678833354511545, 0.5708968386647719, 0.37048677721847617, 0.553632248395139, 0.8702137350251022, 0.42186952587750404, 0.8696774950675754, 0.5410576963494411, 0.3971326977900686, 0.3275001196198921, 0.9448289227093116, 0.7109941475090589, 0.41925580570138304, 0.3675472469853882, 0.6721911818800557, 0.5562207270314473, 0.5262426608517637, 0.3244609607385458, 0.15056615442564347, 0.15676979724311627, 0.6037730696030339, 0.6342511279653397, 0.021947035536558718, 0.32429164429335744, 0.5678746850743716, 0.3571680467137555, 0.7755534309390314, 0.3240287891037917, 0.699424662214302, 0.5151532452376618, 0.7564675819717819, 0.38343591026479057, 0.19811005648518398, 0.3168419703358067, 0.5315947262677626, 0.9269044449273315, 0.8260225289794664, 0.451791899378283, 0.830516920403184, 0.47128602930186, 0.19027823806377472, 0.5181346713949518, 0.29552777318700446, 0.45414400334446664, 0.39329840463575844, 0.42327932510626076, 0.45838907164509224, 0.2233864252642039, 0.3628419195926303, 0.6709353200988277, 0.46058046365566996, 0.25551237833043455, 0.7234147543269824, 0.1481282262733752, 0.314935793994079, 0.20050531530561894, 0.37453315488553635, 0.701015529968035, 0.6343341418527783, 0.1739320900588749, 0.734996253073231, 0.8172229478314255, 0.3598554146739685, 0.7121055211356295, 0.2620604909731644, 0.3421138035730516, 0.6951268813066005, 0.35208221297891723, 0.452099210446082, 0.18907620085798427, 0.5444201651108793, 0.6484058972837882, 0.3258186925596978, 0.5963383680780668, 0.6202666247822538, 0.576738593946626, 0.5054992484109841, 0.2972245631729925, 0.6844333356791464, 0.42629475072919953, 0.4405153833121037, 0.01207867704715336, 0.7609288944606691, 0.23951123982998349, 0.09310514674080905, 0.5084920166510624, 0.33067609257366243, 0.36481899584296196, 0.5708968386647719, 0.3194802059637459, 0.14207297841267416, 0.5776897120055972, 0.2026163425795633, 0.37909000048748537, 0.38206764842015895, 0.41324683104354176, 0.17826143731067332, 0.42339414872454434, 0.39148091864802853, 0.3511350413575442, 0.8053393751847749, 0.5937005322868365, 0.6849942580153355, 0.38930033076762494, 0.5168500865319015, 0.5699073288866824, 0.5376087249833421, 0.8185832461647057, 0.25950508036415604, 0.20394483716883388, 0.3303044530853749, 0.2528102968078532, 0.8477719856767125, 0.5217124250004609, 0.3303044530853749, 0.5382885532339231, 0.9625763866028243, 0.6536174904341296, 0.42629475072919953, 0.6458781618432388, 0.46574001023909845, 0.37268733756108086, 0.8180085473348132, 0.35493594975273335, 0.2423640089427935, 0.3636330633241046, 0.6421622311157122, 0.5444201651108793, 0.7396308412796291, 0.9036153464846048, 0.21101569987323432, 0.6004024464464508, 0.7595861882737439, 0.486549602332862, 0.2379839758891197, 0.5147825233229498, 0.2065932277190248, 0.4342628292980428, 0.5940848250235929, 0.4857193175270624, 0.5332610244722983, 0.5402196969638672, 0.8578846895389459, 0.5290225674595067, 0.6074669506688956, 0.1847839155105034, 0.3581391437324269, 0.4304380754474639, 0.8410120374942113, 0.5810086483513661, 0.19026233744636453, 0.7223494520380469, 0.8589928738613049, 0.8374625942163022, 0.781203852328267, 0.73983195178881, 0.41156537259256004, 0.7482873396984137, 0.44431713201158524, 0.7113673874393347, 0.49869552495399233, 0.7627102864663872, 0.37193390769028617, 0.37187810520956766, 0.3773291605703562, 0.8719651627687759, 0.6218762459828849, 0.3781393537983126, 0.553632248395139, 0.47624084907999176, 0.774399353278846, 0.5840424935194366, 0.5601025471409736, 0.6186690618327106, 0.620611700356168, 0.5755798886129706, 0.15047650536569443, 0.5530049338021776, 0.6597439619439023, 0.8300222117931148, 0.3490158529243493, 0.4410646109528086, 0.5067909967309752, 0.5851482063434866, 0.7149827463187939, 0.4849259975950144, 0.2094210588097294, 0.33399024531412796, 0.4083143545243069, 0.7497022835596558, 0.7817929239213606, 0.7637421953724776, 0.3825655414920891, 0.6611482494098961, 0.19022241257108333, 0.44972084577511023, 0.5476732603321269, 0.4831274653996314, 0.5077048340566679, 0.7289504589448288, 0.4379810490617926, 0.8017221455714771, 0.6434673631716396, 0.5059779734745421, 0.6065367192264559, 0.650368705032214, 0.34567471266024347, 0.39561589000187136, 0.3427787545601037, 0.4676404271158623, 0.5332283386400669, 0.4519108142444285, 0.40662831629925006, 0.42305576187259053, 0.22032895172816622, 0.5278715769330472, 0.43679486629948455, 0.743933429392776, 0.5269515041023835, 0.5008800654866953, 0.214168174561682, 0.44879088851457377, 0.683485355417811, 0.807753104897186, 0.42629475072919953, 0.8502951424821861, 0.17421175568219957, 0.25491371883486935, 0.7595861882737439, 0.6571724132942184, 0.7813188949129265, 0.5626906653340306, 0.8674288259883418, 0.6600514650598344, 0.4827749661719035, 0.5456147119159479, 0.39827550056677263, 0.27323823737433794, 0.695896529362927, 0.5048820477254727, 0.5422349097465021, 0.5610936746718964, 0.6571724132942184, 0.3088751107498249, 0.45428761266464013, 0.6604471727860799, 0.43371621376298963, 0.6171893197168647, 0.8100511550343341, 0.8100511550343341, 0.605832578461134, 0.5526475584669951, 0.4275055171336787, 0.8734720021260204, 0.8508295378350301, 0.5807723706867254, 0.8272749548927728, 0.2670652478909882, 0.7020144194675465, 0.4615566916191992, 0.7055847950248242, 0.43389869234556755, 0.6071692164257629, 0.3496825637352313, 0.23676491619791426, 0.7057755976874825, 0.15539001443149586, 0.6187538615870153, 0.8735882828904331, 0.30049486749739024, 0.23191705420611952, 0.8913917397916864, 0.4977157214618499, 0.16961113509580228, 0.8485494795219795, 0.4760032757956232, 0.5053843099270294, 0.2676015269871764, 0.3627664421236291, 0.15146266807038725, 0.7898179638281774, 0.6145296307645981, 0.3790380236797623, 0.3003532640340299, 0.6086112016774773, 0.39906793889171593, 0.8185832461647057, 0.6715802865662828, 0.8260225289794664, 0.6056902064850618, 0.400132762133902, 0.39471961640683584, 0.6449859309106076, 0.5637152910565628, 0.39949420960438964, 0.5490401551410112, 0.4398875418860128, 0.30916577334906253, 0.7093303227687476, 0.4562508424819209, 0.40444044759428516, 0.5773483646962835, 0.447777692034652, 0.4961542215384683, 0.32474312180562226, 0.21192693199409943, 0.9056903490933487, 0.5013816399998683, 0.758876109553896, 0.6364928148646596, 0.2952804752502578, 0.4748951900520853, 0.43679486629948455, 0.5479962315186364, 0.4728142838839701, 0.6343341418527783, 0.12248807650217919, 0.5052525886146573, 0.8281252124183194, 0.8930081609652758, 0.36283726088930296, 0.8098196742550625, 0.656477404357746, 0.193885049884708, 0.5269515041023835, 0.49858469647139786, 0.32780472036158087, 0.24927512797396847, 0.6148718578314069, 0.10691527318901187, 0.136775438340409, 0.8489192718114075, 0.2600203086082801, 0.8142007211296887, 0.5269515041023835, 0.7966615933629455, 0.5633234794197017, 0.767479452333631], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"density\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"density\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}}, {\"id\": \"density_bad\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (ref)\", \"type\": \"scatter\", \"x\": [0.9976, 0.991, 0.9936, 0.9949, 0.99922, 0.9976, 0.9944, 0.99648, 0.996, 0.99898, 0.99914, 0.9927, 0.9982, 0.99244, 0.9932, 0.99459, 0.99655, 0.994, 0.99904, 0.9964, 0.9927, 0.9964, 0.9958, 0.99242, 0.9979, 0.997, 0.99403, 0.9979, 0.99741, 0.99266, 0.9969, 0.9932, 0.9965, 0.9948, 0.9975, 0.9958, 0.9935, 0.99519, 0.9971, 0.9958, 0.99792, 0.99828, 0.9928, 0.9941, 0.99593, 0.99773, 0.9925, 0.99254, 0.99628, 0.9957, 0.9974, 0.99824, 0.9951, 1.0002, 0.99699, 0.9988, 0.9959, 0.99212, 0.9926, 1.0001, 0.9972, 0.998, 0.99334, 0.997, 0.99733, 0.992, 0.9964, 0.9956, 0.9973, 0.993, 0.9963, 0.99817, 0.9976, 0.99048, 0.99166, 0.99208, 0.99745, 0.9941, 0.99892, 0.99152, 0.99397, 0.9948, 0.9957, 0.99585, 0.99382, 0.99699, 0.995, 0.9932, 0.9941, 0.9937, 0.99817, 0.9961, 0.9964, 0.9976, 1.0, 0.99548, 0.998, 0.996, 0.99528, 0.9998, 0.9982, 0.9982, 0.99405, 1.0008, 0.99625, 0.9973, 0.99684, 0.9902, 0.9963, 0.99502, 0.9956, 0.9937, 0.9958, 0.9949, 0.99634, 0.99642, 0.9976, 0.99001, 0.9985, 0.9934, 0.9976, 0.99374, 0.9968, 0.99687, 0.998, 0.99718, 0.99437, 0.9963, 0.9959, 0.99579, 0.9939, 1.001, 0.99478, 0.99604, 0.99534, 0.9946, 0.9956, 0.9986, 0.99138, 0.9962, 0.9989, 0.99582, 0.9904, 0.99736, 0.99287, 0.9932, 0.9924, 0.99678, 0.9981, 0.9972, 0.9912, 0.99783, 0.9907, 0.99669, 0.99317, 0.99656, 1.001, 0.9969, 0.9938, 0.9905, 0.9928, 0.9988, 0.9981, 0.99429, 0.99587, 0.9942, 0.99504, 0.9986, 0.99738, 0.9958, 0.99537, 0.98956, 0.9981, 0.99873, 0.9966, 0.99682, 0.9961, 0.99166, 0.9968, 0.9937, 0.99308, 0.9964, 0.9924, 0.9946, 0.9982, 0.99512, 0.9994, 0.99098, 0.99642, 0.9966, 0.9937, 0.992, 0.9968, 0.99036, 0.99548, 0.99672, 0.9968, 0.99388, 0.99907, 0.99255, 0.9937, 1.00242, 1.00242, 0.9966, 0.99234, 0.99625, 0.99184, 0.9982, 0.9942, 0.9897, 0.994, 0.99168, 0.9952, 0.9977, 0.99872, 0.99772, 0.9981, 0.9904, 0.9993, 0.9958, 0.99578, 0.99026, 0.9982, 0.9941, 0.99166, 0.99627, 0.9932, 1.0005, 0.9934, 0.998, 0.9944, 0.9938, 0.9957, 1.00044, 0.99026, 0.99244, 1.00118, 0.994, 0.99314, 0.9972, 0.99818, 0.99561, 0.99839, 0.9948, 0.99026, 0.99734, 0.9978, 0.99273, 0.99602, 0.9978, 1.001, 0.9944, 0.9965, 0.9966, 0.99434, 0.9987, 0.99496, 0.9934, 0.996, 1.0004, 0.9926, 0.9946, 0.998, 0.99238, 0.9954, 0.99479, 0.99362, 0.99296, 0.99633, 0.9977, 1.00241, 0.9984, 0.994, 0.99611, 0.9948, 0.99794, 0.9956, 0.99794, 0.99588, 0.9922, 0.9978, 0.99689, 0.9953, 0.99572, 0.9942, 0.99582, 0.9959, 0.9972, 0.9921, 0.9955, 0.9918, 0.9962, 0.9924, 0.99076, 0.99782, 0.99709, 0.99458, 0.99806, 0.9983, 0.998, 0.99346, 0.9937, 0.99814, 0.9966, 1.0001, 0.9926, 0.99943, 0.9955, 0.9986, 0.99657, 0.9945, 0.99558, 0.99689, 0.9955, 0.9979, 0.9938, 1.00098, 0.9984, 0.9969, 0.99732, 0.99647, 0.9968, 0.9955, 0.9962, 0.9949, 0.99663, 0.9976, 0.99454, 0.9967, 0.99577, 1.001, 0.9987, 0.99516, 0.9986, 0.99164, 0.9974, 0.99902, 1.0001, 0.99032, 0.99848, 0.9928, 0.9934, 0.9939, 0.9976, 0.9982, 0.99748, 0.99773, 0.9964, 0.994, 0.99898, 0.9966, 0.99575, 0.998, 0.9937, 0.99517], \"xaxis\": \"x\", \"y\": [0.7197707895473677, 0.05448058807241418, 0.5021256787650443, 0.4710854375480472, 0.7156076129280222, 0.7966690429773311, 0.7265425252145667, 0.16771266951545494, 0.610944103187451, 0.6324527530146118, 0.42180662537268765, 0.2598044700255929, 0.5503032830239416, 0.5632112185661304, 0.6840604465833231, 0.6224375641140001, 0.8071781895370533, 0.9515482366939344, 0.3994071349416132, 0.9677746238863042, 0.572587586261062, 0.7602674855798478, 0.861098734498427, 0.1386074727873, 0.6703360831713621, 0.8064003460928679, 0.3172728283240366, 0.8039094494444462, 0.9186426431335688, 0.6026275969807151, 0.8609701260317718, 0.3485833566260712, 0.3005246278528939, 0.2859113263741919, 0.4978204971029292, 0.5125675444128744, 0.4268860326359044, 0.11791793574572085, 0.440027850275134, 0.4938434408506086, 0.4933189622152446, 0.166194347192407, 0.30200278364192557, 0.6822425768461728, 0.8693180940701344, 0.24112389044610405, 0.43189370387303117, 0.284455178085937, 0.23793737479647703, 0.5535561322468214, 0.7900402576908969, 0.47373775892899717, 0.6055733033081183, 0.7462675017011632, 0.32245623572553406, 0.7612367841042231, 0.36308410170653527, 0.6103993963703384, 0.3965676277125745, 0.2230008284200371, 0.8480025164595866, 0.43585875500482685, 0.24095331994381775, 0.4030652094068704, 0.8951637220162157, 0.2782175630406618, 0.7337660836226194, 0.8352762102164887, 0.6223987562306759, 0.2928263700360406, 0.6563137004068428, 0.16155652477357085, 0.6364666355122575, 0.2186811050870735, 0.27206300237801306, 0.4358901152617537, 0.6136035252376228, 0.07900866299327158, 0.8522855318359817, 0.11906253414448076, 0.3466831105240652, 0.11265227152414181, 0.6302693732121377, 0.7168097665217413, 0.4796298258249143, 0.4476252306691143, 0.3612478268219491, 0.611861930499026, 0.15121036728507153, 0.5363393546692182, 0.16155652477357085, 0.441733396330222, 0.7834276811132227, 0.6364666355122575, 0.44873286860252337, 0.4948960601400133, 0.4172084246960842, 0.5055831714989107, 0.5269082808529498, 0.3737404408311804, 0.4491757516278906, 0.5266720849021, 0.2882430633103308, 0.6066213483726142, 0.83534933450756, 0.2509605867776752, 0.230738949997912, 0.25680675940048736, 0.6858999083789018, 0.27626495444752697, 0.35158671089680515, 0.311480105980391, 0.5950329577300569, 0.4196263877039489, 0.3672198477254309, 0.5488429300958864, 0.6273126624389191, 0.0990306898864649, 0.935036100419004, 0.5556828679884147, 0.6003916802566726, 0.1337843055401957, 0.6898191889393818, 0.46604488826349566, 0.6668872608045229, 0.5998672378660981, 0.14712454771937833, 0.8558065212045691, 0.883276495704891, 0.5544329747085402, 0.38398791005853006, 0.8623310715459079, 0.4482795971615686, 0.4767821080964978, 0.6451659669426603, 0.5099786295438409, 0.11454219273407718, 0.5691587732433696, 0.2398813672346335, 0.8592796956842923, 0.38133093816728936, 0.4754945767078651, 0.2673740541283356, 0.43092180164799054, 0.5981491184574936, 0.7512253043619477, 0.20474988026063612, 0.12337786436138054, 0.6965484670033051, 0.4642254518352117, 0.29034758521725457, 0.7912282271603185, 0.1364389858241727, 0.5326323768611896, 0.3938848007926149, 0.886984727126295, 0.5955398539691413, 0.3667393936023857, 0.35129461810907203, 0.578130474122496, 0.1952086434691429, 0.6982941690158907, 0.6159300986783536, 0.6650580695700093, 0.8007006003287879, 0.13750802167619447, 0.47121416359091395, 0.5691587732433696, 0.5295784007050042, 0.4938434408506086, 0.4240508430342457, 0.1531205555636086, 0.7965770364050346, 0.4829168465516456, 0.6333246955344933, 0.38682769986244625, 0.5589353890471914, 0.30965836575156913, 0.6133571507425741, 0.5363393546692182, 0.5474540697204298, 0.9680074395956593, 0.29703705077451537, 0.7566858385458134, 0.451244026180727, 0.6224939697452743, 0.9340693900855184, 0.1254375450851024, 0.770680513376406, 0.7273231109206828, 0.410671569380914, 0.19928392436820586, 0.44743622108127745, 0.4991477681643879, 0.5443787589855091, 0.826082779912576, 0.5642536294664222, 0.6762559922350657, 0.39283078357423706, 0.3074847569358159, 0.40732461839200396, 0.5614584986504241, 0.5614584986504241, 0.575628870274347, 0.1938881144566701, 0.6480440770440566, 0.23946299348505806, 0.6110142157087575, 0.32489046344192996, 0.127020290619695, 0.28948900574123104, 0.27970970921902805, 0.5179212029104148, 0.579807192000203, 0.5695619245525361, 0.7471497674522103, 0.6761943115269239, 0.6052803835931642, 0.9048996801452402, 0.632953623191418, 0.7849920634816455, 0.12946409768986655, 0.3899257470968539, 0.37735505673750047, 0.27206300237801306, 0.6356505945299911, 0.9000798247851504, 0.5852448485124296, 0.3537739535016634, 0.8589709040748648, 0.5105041430354158, 0.4760479563081992, 0.3915586115462193, 0.4344526143297297, 0.04825794875232026, 0.25106204840173363, 0.5352062615150248, 0.2084678736174792, 0.5588772074146924, 0.42656597432725707, 0.3395528272139201, 0.5154796814541086, 0.30312695461308037, 0.4684625037801391, 0.13140485141127656, 0.37575572516499556, 0.7087902803012941, 0.22740617784346517, 0.7932370230268412, 0.6977827466507267, 0.8687065743771458, 0.3532210556477622, 0.3005246278528939, 0.8817461779308045, 0.5897758288136841, 0.5117334773877459, 0.2267712913026929, 0.7462523759498982, 0.5055831714989107, 0.6276122794572256, 0.34766968675436505, 0.563322001169588, 0.4035281086421867, 0.44827723495654004, 0.7588644006503809, 0.17560197311170134, 0.2736156405730563, 0.5646478519097824, 0.12788772013874206, 0.8127608550985441, 0.35130933230290007, 0.8842329534318195, 0.5671758377024384, 0.508518787579709, 0.4735654621913231, 0.6614347321502836, 0.7032589073748752, 0.418601168771625, 0.40262233345395115, 0.38045938978299354, 0.6221728234115828, 0.6769388667590319, 0.825791915264051, 0.8036522945246104, 0.5350776523934957, 0.5038683203672731, 0.4187790963850706, 0.3942708224564714, 0.36585282612655, 0.42973128126448334, 0.1395024853671747, 0.36909778672938764, 0.5126700875045708, 0.31128511290513083, 0.5841805470690385, 0.42932394036482613, 0.5168725346003686, 0.9331527243268325, 0.5090935678835011, 0.848083892739094, 0.7288594688776423, 0.23463814542978878, 0.9073343486287574, 0.5445649372592127, 0.8030108083542629, 0.30698149193503155, 0.47724620771884374, 0.49565431290071005, 0.29179072192325783, 0.53941953634433, 0.32642767658125227, 0.5714063949384225, 0.6769388667590319, 0.48314991346809855, 0.3838692085325581, 0.7654355578102645, 0.6807995217458978, 0.7803105409218809, 0.4971816769068883, 0.5662837862370104, 0.32557907866588853, 0.4059739580227363, 0.8621668957327787, 0.4863555612469991, 0.44913520001249685, 0.5044088987161788, 0.018560580499064172, 0.17397747102053363, 0.8203404366189, 0.531551035274026, 0.3951880410340851, 0.6710839680909022, 0.7545393605546251, 0.25029771644034415, 0.31651464458218903, 0.7900402576908969, 0.7649542174153934, 0.6282404390050247, 0.5124469561170844, 0.7501741577575001, 0.3717170374651112, 0.5479204837841629, 0.1799627586960565, 0.8716748635647116, 0.4700369344869263, 0.7044722268129955, 0.7597806244765397, 0.4570971226262448, 0.3688130253756654, 0.5854022956087224, 0.6067015953642416, 0.6092966434658947, 0.5713009051869427, 0.15316343939585397, 0.31191498773739224], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [0.992, 0.9964, 0.99097, 0.99511, 0.9934, 0.99558, 0.98894, 0.9909, 0.9902, 0.98994, 0.9926, 0.99458, 0.9951, 1.0, 0.9955, 0.9954, 0.99, 1.0032, 0.99002, 0.99364, 0.99566, 0.99175, 0.9928, 0.99085, 0.9938, 0.9938, 0.98742, 0.9955, 0.9942, 0.9892, 0.9911, 0.99728, 0.9914, 0.99035, 0.99076, 0.99855, 0.9969, 0.98892, 0.99015, 0.99089, 0.98954, 0.9945, 0.9971, 0.99245, 0.99676, 0.9972, 0.9978, 0.992, 0.9962, 0.9906, 0.9978, 0.9991, 0.98998, 0.99304, 0.992, 0.9979, 0.99201, 0.98941, 0.992, 0.992, 0.99758, 0.99016, 0.991, 0.993, 1.001, 0.9984, 0.99064, 0.9941, 0.9954, 0.99146, 0.9918, 0.98934, 0.99278, 0.99316, 0.9965, 0.99556, 0.9973, 0.98928, 0.99638, 0.9916, 0.995, 0.99012, 0.99109, 0.997, 0.9935, 0.99096, 0.9918, 0.9982, 0.9896, 0.9984, 0.9919, 0.9918, 0.9942, 0.9912, 0.99471, 0.99241, 0.99567, 0.98959, 0.98984, 0.9946, 0.9934, 0.9986, 0.99638, 0.9951, 0.98914, 0.9938, 0.9925, 0.9946, 0.99058, 0.99472, 0.99002, 1.0103, 0.99208, 0.99666, 0.99202, 0.9889, 0.99034, 0.98974, 0.999, 0.99534, 0.99808, 0.9924, 0.9974, 0.998, 0.99678, 0.99538, 0.9958, 0.9974, 0.9931, 0.9983, 0.9934, 0.98746, 0.9998, 0.99624, 0.9966, 0.98976, 0.99834, 0.99627, 0.98968, 0.998, 0.99007, 0.9945, 0.99452, 0.9935, 0.9984, 0.9938, 0.99279, 0.9905, 0.9948, 0.9974, 0.99792, 0.998, 0.99256, 0.99775, 0.99835, 0.99189, 0.99033, 0.9908, 0.9931, 0.98972, 0.9949, 0.99616, 0.99014, 0.9974, 0.9938, 0.9962, 0.99642, 0.9942, 0.9977, 0.9894, 0.99566, 0.9964, 0.993, 0.99507, 0.9964, 0.9948, 0.9964, 0.9939, 0.99174, 0.99736, 0.99462, 0.99, 0.99458, 0.9895, 0.9949, 0.991, 0.98758, 0.9973, 0.9912, 0.9932, 0.99183, 0.99378, 0.9918, 0.99269, 0.99744, 0.9901, 0.99353, 0.99178, 0.99041, 0.99184, 0.9948, 0.9916, 0.9926, 0.99504, 0.99394, 0.99408, 0.9974, 0.9944, 0.99807, 0.9982, 0.9928, 0.9916, 0.99111, 0.99215, 0.99089, 0.9934, 0.99112, 0.9938, 0.99276, 0.98954, 0.9926, 0.9997, 0.9923, 0.9907, 0.99814, 0.9938, 0.9986, 0.99945, 0.993, 0.99471, 0.99235, 0.9928, 0.99379, 0.99522, 0.99224, 0.99324, 0.9922, 0.9954, 0.9908, 0.99397, 0.99558, 0.9979, 0.9931, 0.99955, 0.99588, 0.9938, 0.9937, 0.99776, 0.9953, 0.98994, 1.0003, 0.9986, 0.9982, 0.99672, 0.99674, 0.99278, 0.99022, 0.99396, 0.9912, 0.9948, 0.9973, 0.9911, 0.99153, 0.991, 0.99119, 0.9911, 0.991, 0.99652, 0.99489, 0.98942, 0.99144, 0.9949, 0.99254, 0.99252, 0.98919, 0.99784, 0.99469, 0.99523, 0.99378, 0.99212, 0.9941, 0.9911, 0.99008, 0.98963, 0.99116, 0.99545, 0.99946, 0.997, 0.9971, 0.99044, 0.9924, 0.9916, 0.99408, 0.99174, 0.9937, 0.9955, 0.9972, 0.9921, 0.99199, 0.994, 0.99387, 0.99462, 0.992, 0.9928, 0.994, 0.99534, 0.9945, 0.99057, 0.9999, 0.99274, 0.99685, 0.9983, 0.99362, 0.9923, 0.9925, 1.0002, 0.9942, 0.98912, 0.99094, 0.9892, 0.98914, 0.9908, 0.9918, 0.9927, 0.9917, 0.9972, 0.9954, 0.99546, 0.9974, 0.99198, 0.99308, 0.99066, 0.9986, 0.99464, 0.9917, 0.99954, 0.99202, 0.99414, 0.9982, 0.9952, 0.9962, 0.9934, 0.9891, 0.9941, 0.99573, 0.9936, 0.9967, 0.99685, 0.98918, 0.9986, 0.99518, 0.9932, 0.99469, 0.99109, 0.99705, 0.9917, 0.9964, 0.98987, 0.9996, 0.9904, 0.99886, 0.9924, 0.997, 0.99494, 0.99745, 0.99606, 0.98999, 0.9909, 0.99615, 0.9975, 0.9926, 0.9918, 0.9929, 0.9948, 0.99036, 0.99228, 0.98984, 0.99822, 0.99299, 0.9987, 1.0015, 0.99563, 0.9984, 0.9984, 0.9957, 0.99194, 1.00369, 0.993, 0.9952, 0.99035, 0.9916, 0.99896, 0.9945, 0.9927, 0.9954, 0.99549, 0.9922, 1.00295, 0.98956, 0.9973, 0.9961, 0.997, 0.99352, 0.9994, 0.99238, 0.99524, 0.9927, 0.9917, 0.9914, 0.9957, 0.99304, 0.99331, 0.99108, 0.992, 0.9923, 0.99064, 0.9921, 0.999, 0.99392, 0.9944, 0.99546, 0.99326, 0.995, 0.99792, 0.99534, 0.9908, 0.99158, 0.99136, 0.99122, 0.9928, 0.9931, 0.99063, 0.99024, 0.9898, 0.993, 0.98816, 0.9965, 0.99586, 0.9925, 0.9986, 0.9912, 0.9916, 0.99132, 0.996, 0.99358, 0.9938, 0.9977, 0.9934, 0.9978, 0.99074, 0.99048, 0.9898, 0.98994, 0.99342, 0.9966, 1.0004, 0.9948, 0.99514, 0.99596, 0.99602, 0.9986, 0.9971, 1.0003, 1.00051, 0.99084, 0.99566, 0.9927, 0.9912, 0.99581, 0.995, 0.9972, 0.99656, 0.9965, 0.99975, 0.99052, 0.989, 0.9916, 0.99455, 0.99393, 0.9924, 0.9946, 1.00038, 0.99906, 0.9958, 0.99475, 0.9935, 0.9906, 0.99835, 0.98883, 0.9932, 0.99863, 0.99686, 0.99322, 0.99678, 0.99331, 0.9925, 0.9978, 0.99392, 0.99105, 0.99384, 0.99596, 0.99216, 0.99321, 0.9979, 0.99124, 0.99472, 0.98946, 0.9945, 0.98926, 0.9925, 0.9898, 0.99066, 0.99587, 0.9984, 0.98942, 0.98876, 0.99045, 0.9975, 0.9913, 0.9906, 0.99416, 0.98794, 0.9925, 0.9911, 0.99675, 0.98931, 0.9983, 0.992, 0.99658, 0.99136, 0.9991, 0.9964, 0.992, 0.99658, 0.9923, 0.9965, 0.9952, 0.99461, 0.99287, 0.9918, 0.9944, 0.98944, 0.9976, 0.9953, 0.99074, 0.98794, 0.99643, 0.9954, 0.99114, 0.99374, 0.99218, 0.9948, 0.993, 0.9966, 0.99152, 0.99498, 0.9925, 0.99615, 0.99715, 0.99056, 0.9937, 0.9965, 0.9906, 0.9982, 0.99157, 0.9919, 0.99157, 0.9953, 0.9898, 0.99543, 0.9899, 0.9937, 0.99203, 0.99036, 0.99008, 0.9892, 0.99971, 0.992, 0.99785, 0.9927, 0.99044, 0.9912, 0.995, 0.995, 0.9942, 0.99522, 0.98856, 0.9939, 0.9927, 0.99095, 0.9972, 0.98946, 0.99542, 0.98944, 0.9985, 0.99411, 0.99266, 0.9962, 0.99268, 0.9971, 0.9917, 0.9925, 0.9968, 0.99142, 0.9964, 0.9979, 0.99214, 0.99737, 0.9917, 0.99807, 0.99334, 0.99798, 0.99558, 0.9972, 0.98946, 0.99543, 0.9934, 0.9938, 0.9947, 0.9969, 0.99752, 0.99082, 0.9983, 0.9962, 0.99692, 0.9928, 0.998, 0.9909, 0.99494, 0.98987, 0.99578, 0.997, 0.9986, 0.99544, 0.99321, 0.99072, 0.9985, 0.99494, 0.99118, 0.9968, 0.99112, 1.0004, 0.9907, 0.9921, 0.9934], \"xaxis\": \"x\", \"y\": [0.18439386755371057, 0.5750868907731637, 0.1132172353536568, 0.19850047615697952, 0.6950004168934912, 0.41826441672946313, 0.040828937665112974, 0.2145583871630251, 0.09143093017991866, 0.10013996234885614, 0.3658834999306372, 0.587897812361327, 0.23563705889496211, 0.5289998061994394, 0.5981734696485812, 0.5956194363709464, 0.11295199838815062, 0.6349332021584286, 0.09356782907078887, 0.0672754654033908, 0.3541579814831264, 0.11781588709523827, 0.3295981493457443, 0.23443288181779365, 0.13830133810679424, 0.5122546205578999, 0.03626449638205209, 0.32057959349203036, 0.3955164844050859, 0.21320459763992916, 0.08620177311633537, 0.4132497936565127, 0.19514157099220286, 0.028148892894647393, 0.03728071159582558, 0.20213762816504022, 0.39088790332760825, 0.10566618212719892, 0.11466232649727714, 0.09544364959788487, 0.07351553674018241, 0.3657542344632553, 0.05859665738698361, 0.43634835962676355, 0.4827032077898804, 0.516310366273556, 0.6480037931050455, 0.21122004543372697, 0.030344760075157406, 0.22750344576024595, 0.18673438423788624, 0.5460909738859347, 0.0666291073587214, 0.320234954276134, 0.515425573770442, 0.5751179393061847, 0.3262180383913996, 0.12192585741802231, 0.6165939755266235, 0.09365914315081003, 0.44259853952477324, 0.31958523161407537, 0.09228899111547839, 0.22815273642701062, 0.5282447951108347, 0.7777719169155834, 0.13834506443323813, 0.29425092810710396, 0.5300870647699181, 0.031947521718024174, 0.1108646816717751, 0.053339747820140615, 0.14466174791529418, 0.25697560969337485, 0.3383868137798065, 0.30803904997837983, 0.03434255320493995, 0.08689109251212201, 0.46044782253877736, 0.0973761441498977, 0.3449058470623745, 0.024212367984770777, 0.11665042079727428, 0.3333970234137619, 0.1495417879159372, 0.0679784404121434, 0.2360052425084116, 0.39147703437781534, 0.04428683932015287, 0.5381556738404795, 0.4357341587922019, 0.11843845992675284, 0.28107964630818494, 0.06989794698232743, 0.2658605825653322, 0.22408104406272966, 0.15519213452661884, 0.09873339188795927, 0.10739713799337769, 0.4712507279726723, 0.31257930793611366, 0.6259141532505736, 0.1651629894813923, 0.13024327386797574, 0.08242409751896962, 0.55355901104019, 0.11256152515999429, 0.22124325125588817, 0.05838775174278421, 0.6734770756819889, 0.06919042490492266, 0.5773286546676725, 0.5693181878572973, 0.12726917141891614, 0.27983888222674136, 0.15690954109554833, 0.18593824584442387, 0.05432525584274117, 0.33273366741371935, 0.12435295831370408, 0.48112847828662497, 0.2959384652215836, 0.5042039768350125, 0.3749869638443927, 0.7258627386781167, 0.4806866421912115, 0.6234335830956541, 0.4191951896523489, 0.20821728825178332, 0.6343085651912675, 0.27674577061671146, 0.02140654255666985, 0.42849246998341506, 0.1817444030106703, 0.4551538855951942, 0.05087080041524106, 0.516641204200833, 0.6810720245435042, 0.08151744899857294, 0.4475169494323581, 0.03995706953508171, 0.2181819033834006, 0.20372897255157485, 0.24305701296248816, 0.5381556738404795, 0.2358485729609252, 0.051323642447754336, 0.1913631294907303, 0.32154631204965056, 0.31229802093755377, 0.3917329141436472, 0.39462053822053156, 0.3680669306910641, 0.5017894292511481, 0.32120711190509066, 0.0768019282386515, 0.1168769044932052, 0.31545143431826594, 0.12007957373947853, 0.08354361700756141, 0.2180731800932174, 0.7653011157176768, 0.05076221583963347, 0.11739077279846111, 0.3639458403519926, 0.4815918747301601, 0.35998732468747585, 0.457353694020342, 0.5520498791697908, 0.22168281241722143, 0.2132287846887433, 0.4763394582576197, 0.3040153802820409, 0.20749766415549342, 0.3316810644107503, 0.8126297477835096, 0.5749367295182395, 0.27274039590582944, 0.2685808245693546, 0.5172108675362206, 0.33506587713796443, 0.09616672688355288, 0.041108213935392324, 0.10548050716105373, 0.5016695616404938, 0.20022874051447226, 0.14220640128276774, 0.23772630779738468, 0.19606080251004787, 0.2603188495268066, 0.18846597668723208, 0.19827111133563302, 0.261548791893628, 0.4140325207077993, 0.8134796325151183, 0.12265695643958285, 0.6311167068993262, 0.13481820177301163, 0.0932384579037443, 0.14050160114126486, 0.2562249115981724, 0.08547750670655718, 0.08643201081848362, 0.19981675431015722, 0.31390222338706264, 0.06221739913672386, 0.06996303880871468, 0.30029370289300306, 0.4306817897420764, 0.6595343859760441, 0.2839408857911616, 0.20468539219890003, 0.1130196126722065, 0.2360017176902124, 0.13187147729288817, 0.42313120297864704, 0.06964897436687001, 0.1624399718171824, 0.17200815643270417, 0.07333105637055992, 0.2440137653363641, 0.4900110333069776, 0.3085554157386313, 0.03480496731142946, 0.12148031785507996, 0.15002971926037112, 0.5314247042003052, 0.2758453007685677, 0.2151852748992088, 0.2658605825653322, 0.29911225563077193, 0.6594110243744711, 0.49869782335001445, 0.16788254706683048, 0.11816213334465087, 0.08230909248122409, 0.13653212507346946, 0.25639170942272826, 0.06562233405876228, 0.23311900627036541, 0.3756616197417655, 0.46674395287949066, 0.3092684534350997, 0.8337319641197457, 0.8331457111467163, 0.2591056156836542, 0.4778687671024334, 0.2542440524586721, 0.5361036306539362, 0.07073721340803463, 0.4731688813159418, 0.5755848065786346, 0.356689463387698, 0.14225616860197343, 0.21837916002376445, 0.14466174791529418, 0.29899643271856946, 0.4757427727983842, 0.08126799884203029, 0.1296501822378736, 0.3286954654423938, 0.08620177311633537, 0.13855855420831553, 0.05543377339452393, 0.11917834098009661, 0.2613621884509647, 0.11269900223777074, 0.08429051026621415, 0.3393961441870107, 0.07031960314855146, 0.11356777592095357, 0.4853279864284006, 0.1279289285514792, 0.0584572339054259, 0.08612988585012649, 0.3472440907423937, 0.1248029959061332, 0.07502335399434323, 0.19827111133563302, 0.3424151534036639, 0.3065175956815872, 0.13808860398564737, 0.058092197534895806, 0.04082786106581715, 0.1602592849246841, 0.09156161599234125, 0.5036030690663805, 0.2640411824475748, 0.6468038092930676, 0.07201805208597656, 0.22470230804277058, 0.1334773721572423, 0.04847889440667685, 0.2685808245693546, 0.10911308148570098, 0.6764508967260475, 0.6280060594576413, 0.36761958218269275, 0.16019930342079847, 0.17605308658107655, 0.14078981831089854, 0.2384997092801764, 0.13117402490907393, 0.12818959986091483, 0.4161925244315118, 0.12435295831370408, 0.09814942480303201, 0.05480698563416486, 0.3746187330143109, 0.41092354232892336, 0.507894749900129, 0.5137929421583434, 0.08293523366016065, 0.2964416548030494, 0.15236141109070434, 0.4396941021426354, 0.41893931094950754, 0.09113953260801844, 0.10967473999240707, 0.055732078845942, 0.05640314085190745, 0.06176263301115803, 0.06427139521062619, 0.20386133178572885, 0.21597661143113533, 0.7486409492386699, 0.2610715902497083, 0.09465277491899493, 0.5556171757583562, 0.137718889647652, 0.1978940751503777, 0.08472590699531857, 0.356262641598029, 0.14596950445002987, 0.13865818299932142, 0.3088915816821678, 0.11516321289421916, 0.16121169033174265, 0.40573483691789825, 0.34308606282264, 0.36300204724896845, 0.17193414756867276, 0.035926383178341514, 0.34536882843285344, 0.4400180463892147, 0.5165194668234709, 0.23319834124303085, 0.9637923675569924, 0.2635599134550337, 0.6259141532505736, 0.12324962258280003, 0.1256037712827487, 0.1248029959061332, 0.11665042079727428, 0.29081136443782263, 0.12993062945549005, 0.20959981847797426, 0.12385816607190492, 0.16931651488884025, 0.2468284110987674, 0.6181879252747016, 0.3509541008179864, 0.08619429866610873, 0.09537770951135394, 0.8204393830764495, 0.2493836920976743, 0.10367142046182065, 0.11516383353466464, 0.07169627826225977, 0.5400384130096556, 0.2709141565803237, 0.16809050322974173, 0.3421981324687273, 0.812724325423183, 0.1326589750154965, 0.054670132935181304, 0.055346153509382656, 0.8039442695404772, 0.3276168958360183, 0.6561718697940482, 0.6214102617950452, 0.3046829516703813, 0.7853649284745584, 0.7303620793003476, 0.6719087507962026, 0.16000678121984613, 0.579612101366232, 0.6347749924714103, 0.41894393066564606, 0.06936532322770372, 0.28322834609079706, 0.343263893078516, 0.4450860003239352, 0.3090838478611311, 0.408095736797927, 0.11529682880263803, 0.13359771811640497, 0.2417229185475579, 0.10092265889692065, 0.8181934133883563, 0.3777834313813965, 0.8273808576462511, 0.18439353202429143, 0.5148786056082297, 0.11287077888712382, 0.16015059460472458, 0.29672938182784603, 0.36944561074938853, 0.2505850522824452, 0.8467591712977676, 0.3840267097226593, 0.261779448872241, 0.1645479955558209, 0.14631295673285594, 0.4248523287309329, 0.09222807982804315, 0.2121484308544801, 0.33273366741371935, 0.5470626312455473, 0.8294144697045585, 0.25206662215500397, 0.15998368749433245, 0.548322128117227, 0.3917329141436472, 0.15981565308588508, 0.23631147082452741, 0.21082920466209698, 0.1871387197916503, 0.24774693401855818, 0.1913242313933492, 0.16437448769677154, 0.07582203648947516, 0.032541140295091364, 0.06311143057978008, 0.5009235508757715, 0.12343879567504301, 0.445735807756371, 0.40322837553658053, 0.09397553936597514, 0.1598391281143201, 0.26702494168661406, 0.19782301216908982, 0.06831823449824892, 0.5451167746582685, 0.20142160156100697, 0.25747632252511843, 0.4257317671215596, 0.5062318064185062, 0.10278357133077332, 0.10857266292312517, 0.06223864817381186, 0.11377411494697365, 0.14082424186384768, 0.2589321903149734, 0.31776639873426016, 0.07983414941561229, 0.30174211068680845, 0.42532907678292176, 0.23734670470511587, 0.2862296469110084, 0.24790288035387664, 0.5526146374040077, 0.20425399436950087, 0.5166825128498294, 0.12415322942140417, 0.5310696157212036, 0.3866387435262121, 0.14313186082947948, 0.31648660326859934, 0.026792916001305622, 0.7856428374245099, 0.42383310375799566, 0.5944566396871084, 0.6256605001243821, 0.08813642250468567, 0.03544811528140901, 0.06935406654889886, 0.15751976448865512, 0.22608551288474832, 0.3127311228465576, 0.1409438166611655, 0.3285615524533705, 0.3591330499592894, 0.47964497307801546, 0.7143146030302826, 0.14223944449319303, 0.06929054967731618, 0.32120711190509066, 0.16913647442041335, 0.707286257884667, 0.3230684446475647, 0.7616845263358343, 0.4104900542879092, 0.10053249234255524, 0.1106599594415556, 0.1543174595222413, 0.46003879185641183, 0.3811350878514418, 0.07185070571861518, 0.23882593985771994, 0.5344976262521839, 0.11031385635331636, 0.09610989844306939, 0.4955559099445003, 0.07845190603324759, 0.30697262074812925, 0.12767551958037127, 0.4375661224395835, 0.07737023387634634, 0.15307682457740834, 0.05694427046787409, 0.09028836937410878, 0.4011292297732457, 0.6186146927451245, 0.11561676905211238, 0.0993047499370594, 0.08102401279833105, 0.8100206966555492, 0.10768932514586738, 0.15386113005635593, 0.4026560765644126, 0.045535707525545144, 0.08229583319403, 0.08227601457953415, 0.8241544781987433, 0.0759900855540333, 0.5147505197509459, 0.11103147778198663, 0.42144961755966015, 0.24880465403270857, 0.3112403223054312, 0.3282460941643247, 0.28312386083977936, 0.2865521931047814, 0.16537364909659502, 0.4284132019637321, 0.34116073112729894, 0.051142721309942685, 0.10794707492381372, 0.1108646816717751, 0.29201805921023904, 0.07365131996157204, 0.36851051207096197, 0.2556143611338999, 0.07392456180697715, 0.045535707525545144, 0.15025986810093994, 0.4395989822566938, 0.19636656988846957, 0.21018464628148859, 0.15085686628779282, 0.3429118439192298, 0.16104008564300487, 0.2055862423584408, 0.18673310211333727, 0.5528531989583015, 0.20219789553586287, 0.5807830339134155, 0.6112381610839525, 0.07515362639458067, 0.5722084734915175, 0.3654892991508686, 0.1991057466826236, 0.4912569401667811, 0.05850610073101081, 0.3077884117234785, 0.17038242498240874, 0.14066607718466684, 0.10248584652416493, 0.4022873718442217, 0.07205214632436985, 0.35142291824287475, 0.10941760034103376, 0.06679271580157364, 0.05675388891699207, 0.058987921856350156, 0.3660303223369904, 0.28790374422385034, 0.4158290962648631, 0.40710291595796666, 0.09934102670994882, 0.06362846635195196, 0.30921476208988685, 0.23242198019285765, 0.055541210656895434, 0.5297663836663529, 0.10744632778983743, 0.18410212910939194, 0.17721960751489196, 0.1962664672709783, 0.1617648996714035, 0.10584426414108294, 0.5203501665477333, 0.07365131996157204, 0.31578819840495265, 0.35364190165315845, 0.1707951928721818, 0.41655733121321636, 0.15801546378512366, 0.7568436608419439, 0.22368578646300386, 0.0609449253562836, 0.2225096762928218, 0.18587673368692093, 0.05559101133196209, 0.569598540521716, 0.08073228430722412, 0.15724041301590164, 0.12879141548479, 0.4306817897420764, 0.17998791969802397, 0.41280880088413996, 0.5723062335690389, 0.6457404130724687, 0.10420061808672998, 0.12564769853034463, 0.21795029564941848, 0.4720930498870375, 0.11304202998506685, 0.545112257205237, 0.14852188644910969, 0.17217029085021085, 0.336250902618187, 0.48671482860553816, 0.5093433434984792, 0.35847801144896685, 0.3008706318705062, 0.18494609259573758, 0.4199330463236065, 0.04162287990776414, 0.2633909944023186, 0.4252182303976608, 0.4684623303117058, 0.1925553058603695, 0.09610989844306939, 0.09129843496680234, 0.3302708189676917, 0.4199330463236065, 0.11927294568859859, 0.4864154015695107, 0.06472081497616611, 0.6387929002666255, 0.37932906694235924, 0.093713747684541, 0.20627971812824875], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (curr)\", \"type\": \"scatter\", \"x\": [0.9966, 0.99556, 0.9939, 0.99126, 0.9996, 1.001, 0.99565, 0.998, 0.99692, 0.9997, 0.9956, 0.9918, 0.99513, 0.99587, 0.99869, 1.0, 0.9959, 1.0004, 0.99253, 0.9905, 0.9918, 0.9996, 0.9946, 0.9978, 0.99009, 0.9926, 0.997, 0.99898, 0.99215, 0.9931, 0.99839, 0.9944, 0.99798, 0.9963, 0.9926, 0.99341, 0.998, 0.9968, 0.9953, 0.9934, 0.9918, 0.99494, 0.9968, 0.9982, 0.992, 0.99212, 0.9976, 0.99616, 0.99911, 0.99244, 0.99454, 1.0011, 0.9937, 0.99612, 0.9976, 0.9963, 0.99748, 1.00315, 0.9966, 0.99848, 1.00315, 0.9976, 0.9962, 1.0006, 0.99657, 0.99592, 0.99702, 0.9978, 0.9965, 0.9956, 0.99654, 0.99093, 0.99212, 0.99694, 0.9938, 0.99174, 1.0, 0.9918, 0.99345, 0.99717, 0.9966, 0.99576, 0.9972, 0.9968, 0.9938, 0.9923, 0.9967, 0.99976, 0.992, 0.9978, 0.9951, 0.9936, 0.998, 0.9991, 0.99683, 0.99476, 0.9958, 0.9986, 0.9972, 0.99596, 0.99918, 0.99479, 1.0, 0.9955, 0.9954, 0.99584, 0.9984, 0.99448, 0.99416, 0.9989, 0.9964, 0.9983, 0.99712, 0.99362, 0.9926, 0.99669, 0.99676, 0.99471, 0.9955, 0.9958, 0.9962, 0.99182, 0.9946, 0.996, 0.99546, 0.99915, 0.99111, 0.9997, 0.99546, 0.9938, 0.98876, 0.99734, 0.9991, 0.992, 0.99694, 0.9976, 0.993, 0.9976, 0.99681, 0.99494, 0.9938, 0.9938, 0.99239, 0.9939, 0.9992, 0.99677, 0.99176, 0.9958, 0.9964, 0.99568, 0.9932, 0.99942, 0.9973, 0.9958, 0.99344, 0.9928, 0.99481, 0.99584, 0.99696, 0.9988, 0.99745, 0.99872, 0.99212, 0.9982, 0.9974, 0.9944, 0.9904, 0.99264, 0.99299, 0.99534, 0.9997, 0.9966, 0.9934, 0.99204, 0.9964, 0.98918, 0.9923, 0.99775, 0.99742, 0.99642, 0.9941, 0.99688, 1.0004, 0.9927, 0.99705, 0.99154, 0.9958, 0.9989, 0.9936, 0.99545, 0.99743, 0.99524, 0.99555, 0.99173, 0.9976, 0.9961, 0.9936, 0.99382, 0.99947, 0.997, 0.9962, 0.9976, 0.9983, 0.9986, 0.98993, 0.99922, 0.9958, 0.9994, 0.9974, 0.9977, 0.998, 0.99458, 0.99552, 0.99194, 0.9953, 0.99084, 0.9973, 0.9966, 0.99288, 0.9928, 0.9975, 0.9961, 0.9982, 0.9952, 0.9934, 0.996, 0.998, 0.9961, 0.99366, 0.99138, 0.9991, 0.99305, 1.0001, 0.9981, 0.9965, 0.99628, 0.99164, 0.99193, 0.9991, 0.9931, 0.99771, 0.9993, 0.99176, 0.9962, 0.99048, 0.9944, 0.9936, 0.99469, 0.9986, 0.99362, 0.9978, 0.99884, 0.9958, 0.99779, 0.9927, 0.99924, 0.9962, 0.9958, 0.99692, 0.99818, 0.99732, 0.99471, 0.9978, 0.9978, 0.99402, 0.99211, 0.9956, 0.99176, 0.99032, 0.99488, 0.99069, 0.9994, 0.9998, 0.9955, 0.99514, 0.9929, 0.99907, 0.998, 0.9958, 0.9968, 0.9983, 0.9993, 0.99047, 0.99202, 0.9986, 0.99185, 0.99249, 0.9943, 0.9911, 0.99726, 0.99527, 0.9944, 0.99626, 0.99746, 0.99304, 0.9984, 0.99274, 0.9955, 0.99804, 0.9986, 0.99182, 0.9996, 0.99454, 0.997, 0.99718, 0.9904, 0.9986, 0.9962, 1.0004, 0.9954, 0.9965, 0.99516, 0.9944, 0.9998, 0.9944, 0.998, 0.9938, 0.99558, 0.9956, 0.9932, 0.997, 0.9954, 0.99773, 0.9953, 0.9994, 0.9963, 0.9991, 0.9969, 0.9956, 0.99212, 0.9967, 0.9968, 0.9918, 0.9914, 0.9964, 0.992, 0.99198, 0.99271, 1.0001, 0.9952, 0.9958, 0.9978, 0.9953, 0.99652, 0.9994, 0.99242, 0.9979, 0.9966, 1.0001, 0.9932, 0.99372, 0.9917], \"xaxis\": \"x2\", \"y\": [0.18579927887031134, 0.9274202256360236, 0.2569067617886446, 0.17851375722123963, 0.43011516789686843, 0.3951880410340851, 0.35333307802371594, 0.854899199395705, 0.7749695319329993, 0.7150752736216004, 0.5793836726576811, 0.17187478758168062, 0.503776006633781, 0.6517104478925241, 0.5321166645488455, 0.4291031613352281, 0.6295132227815239, 0.446367751604861, 0.12978626497489776, 0.578130474122496, 0.1303225049324246, 0.4589423036505589, 0.6028673022099313, 0.6724998803801079, 0.055171077290688375, 0.28900585249094113, 0.5807441942986169, 0.6324527530146118, 0.32780881811994433, 0.4437792729685527, 0.47375733914823626, 0.6755390392614542, 0.8494338455743565, 0.8432302027568838, 0.3962269303969661, 0.36574887203466033, 0.9780529644634413, 0.6757083557066426, 0.43212531492562845, 0.6428319532862445, 0.2244465690609686, 0.6759712108962084, 0.300575337785698, 0.4848467547623382, 0.24353241802821812, 0.6165640897352094, 0.801889943514816, 0.6831580296641933, 0.4684052737322374, 0.07309555507266852, 0.17397747102053363, 0.548208100621717, 0.16948307959681597, 0.5287139706981401, 0.8097217619362252, 0.48186532860504816, 0.7044722268129955, 0.5458559966555334, 0.6067015953642416, 0.5767206748937392, 0.5416109283549078, 0.7766135747357961, 0.6371580804073698, 0.3290646799011723, 0.53941953634433, 0.7444876216695655, 0.27658524567301757, 0.8518717737266248, 0.685064206005921, 0.7994946846943811, 0.6254668451144636, 0.29898447003196504, 0.36566585814722175, 0.8260679099411251, 0.265003746926769, 0.18277705216857454, 0.6401445853260315, 0.2878944788643705, 0.7379395090268356, 0.6578861964269485, 0.3048731186933995, 0.6479177870210828, 0.5479007895539181, 0.8109237991420157, 0.4555798348891207, 0.35159410271621183, 0.6741813074403022, 0.40366163192193316, 0.3797333752177462, 0.42326140605337403, 0.49450075158901585, 0.7027754368270075, 0.31556666432085356, 0.5737052492708005, 0.5594846166878963, 0.9879213229528466, 0.23907110553933086, 0.7604887601700165, 0.906894853259191, 0.49150798334893764, 0.6693239074263375, 0.635181004157038, 0.4291031613352281, 0.6805197940362542, 0.8579270215873258, 0.42231028799440284, 0.7973836574204367, 0.6209099995125147, 0.617932351579841, 0.5867531689564582, 0.8217385626893267, 0.5766058512754557, 0.6085190813519714, 0.6488649586424557, 0.19466062481522506, 0.4062994677131635, 0.31500574198466447, 0.6106996692323751, 0.48314991346809855, 0.4300926711133176, 0.4623912750166579, 0.18141675383529432, 0.7404949196358439, 0.7960551628311661, 0.6696955469146251, 0.7471897031921468, 0.15222801432328747, 0.4782875749995391, 0.6696955469146251, 0.4617114467660769, 0.0374236133971757, 0.34638250956587036, 0.5737052492708005, 0.35412183815676124, 0.5342599897609015, 0.6273126624389191, 0.1819914526651868, 0.6450640502472667, 0.7576359910572065, 0.6363669366758954, 0.35783776888428775, 0.4555798348891207, 0.2603691587203709, 0.09638465351539516, 0.7889843001267657, 0.3995975535535492, 0.2404138117262561, 0.5134503976671381, 0.7620160241108803, 0.4852174766770502, 0.7934067722809752, 0.5657371707019572, 0.40591517497640706, 0.5142806824729376, 0.4667389755277017, 0.4597803030361328, 0.14211531046105408, 0.4709774325404933, 0.39253304933110444, 0.8152160844894966, 0.6418608562675732, 0.5695619245525361, 0.15898796250578873, 0.4189913516486339, 0.8097376625536354, 0.2776505479619531, 0.14100712613869515, 0.1625374057836978, 0.21879614767173305, 0.26016804821119, 0.5884346274074399, 0.25171266030158634, 0.5556828679884147, 0.2886326125606653, 0.5013044750460076, 0.23728971353361283, 0.6280660923097139, 0.6281218947904323, 0.6226708394296439, 0.1280348372312241, 0.37812375401711507, 0.6218606462016874, 0.446367751604861, 0.5237591509200082, 0.22560064672115399, 0.4159575064805634, 0.43989745285902637, 0.38133093816728936, 0.379388299643832, 0.4244201113870294, 0.8495234946343055, 0.44699506619782237, 0.3402560380560977, 0.16997778820688525, 0.6509841470756508, 0.5589353890471914, 0.49320900326902484, 0.41485179365651337, 0.2850172536812061, 0.5150740024049856, 0.7905789411902706, 0.6660097546858721, 0.5916856454756931, 0.25029771644034415, 0.21820707607863943, 0.23625780462752244, 0.6174344585079109, 0.33885175059010386, 0.8097775874289167, 0.5502791542248897, 0.45232673966787307, 0.5168725346003686, 0.4922951659433321, 0.2710495410551712, 0.5620189509382074, 0.19827785442852286, 0.35653263682836045, 0.4940220265254579, 0.3934632807735441, 0.349631294967786, 0.6543252873397565, 0.6043841099981286, 0.6572212454398962, 0.5323595728841377, 0.4667716613599331, 0.5480891857555714, 0.5933716837007499, 0.5769442381274095, 0.7796710482718338, 0.4721284230669528, 0.5632051337005155, 0.25606657060722404, 0.47304849589761655, 0.4991199345133047, 0.785831825438318, 0.5512091114854263, 0.31651464458218903, 0.192246895102814, 0.5737052492708005, 0.14970485751781393, 0.8257882443178004, 0.7450862811651306, 0.2404138117262561, 0.3428275867057816, 0.2186811050870735, 0.43730933466596944, 0.1325711740116582, 0.33994853494016564, 0.5172250338280965, 0.4543852880840521, 0.6017244994332274, 0.7267617626256621, 0.304103470637073, 0.49511795227452726, 0.4577650902534979, 0.4389063253281036, 0.3428275867057816, 0.6911248892501751, 0.5457123873353599, 0.3395528272139201, 0.5662837862370104, 0.38281068028313525, 0.1899488449656659, 0.1899488449656659, 0.39416742153886597, 0.4473524415330049, 0.5724944828663213, 0.12652799787397961, 0.14917046216496987, 0.4192276293132746, 0.1727250451072272, 0.7329347521090118, 0.2979855805324535, 0.5384433083808008, 0.2944152049751758, 0.5661013076544325, 0.39283078357423706, 0.6503174362647687, 0.7632350838020857, 0.29422440231251745, 0.8446099855685041, 0.3812461384129847, 0.1264117171095669, 0.6995051325026098, 0.7680829457938805, 0.1086082602083136, 0.50228427853815, 0.8303888649041977, 0.15145052047802054, 0.5239967242043768, 0.49461569007297057, 0.7323984730128237, 0.6372335578763709, 0.8485373319296128, 0.21018203617182263, 0.3854703692354019, 0.6209619763202376, 0.6996467359659702, 0.3913887983225227, 0.600932061108284, 0.18141675383529432, 0.32841971343371723, 0.17397747102053363, 0.3943097935149382, 0.5998672378660981, 0.6052803835931642, 0.35501406908939237, 0.4362847089434372, 0.6005057903956104, 0.45095984485898877, 0.5601124581139871, 0.6908342266509375, 0.29066967723125237, 0.5437491575180791, 0.5955595524057149, 0.4226516353037165, 0.552222307965348, 0.5038457784615318, 0.6752568781943777, 0.7880730680059006, 0.09430965090665133, 0.4986183600001317, 0.24112389044610405, 0.3635071851353404, 0.7047195247497422, 0.5251048099479148, 0.5632051337005155, 0.4520037684813636, 0.5271857161160298, 0.36566585814722175, 0.8775119234978208, 0.49474741138534273, 0.17187478758168062, 0.1069918390347242, 0.6371627391106971, 0.19018032574493748, 0.34352259564225396, 0.806114950115292, 0.47304849589761655, 0.5014153035286022, 0.6721952796384192, 0.7507248720260316, 0.38512814216859315, 0.8930847268109882, 0.863224561659591, 0.15108072818859253, 0.7399796913917198, 0.18579927887031134, 0.47304849589761655, 0.2033384066370545, 0.43667652058029827, 0.23252054766636898], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [0.9934, 0.9979, 0.99234, 0.9932, 0.99686, 0.9927, 0.9926, 0.99362, 0.989435, 0.99239, 1.0, 0.9908, 0.98918, 0.99168, 0.98904, 0.9932, 0.99438, 0.99189, 0.999, 0.9903, 0.999, 0.9986, 0.992, 0.9935, 0.99541, 0.9893, 0.99326, 0.99146, 0.99144, 0.99165, 0.98889, 0.9957, 0.9992, 0.99449, 0.98871, 0.9936, 0.9914, 0.99488, 0.98988, 0.995, 0.99123, 0.99014, 0.9958, 0.9986, 0.9974, 0.99417, 0.9998, 0.9968, 0.9969, 0.9908, 0.9972, 0.9917, 0.9946, 0.9922, 0.99376, 1.0006, 0.998, 0.9916, 0.99795, 0.99652, 0.99724, 0.99727, 0.99206, 0.99406, 0.99534, 0.98964, 0.9966, 0.9951, 0.99236, 0.9945, 0.9986, 0.99064, 0.99815, 0.99313, 0.9983, 0.99668, 0.99922, 0.99207, 0.9949, 0.9975, 0.98972, 0.9923, 0.99492, 0.9914, 0.9965, 0.99536, 0.99652, 0.99456, 0.9932, 0.994, 0.99526, 0.9934, 0.9904, 0.98836, 0.9931, 0.99148, 0.99704, 0.99018, 0.9968, 0.99376, 0.993, 0.99596, 0.99438, 0.98882, 0.9986, 0.99566, 0.996, 0.99262, 0.99132, 0.99159, 0.99551, 1.0103, 0.99144, 0.9893, 0.99171, 0.9934, 0.99238, 0.9934, 0.99552, 0.9989, 0.99322, 0.98976, 0.99384, 0.99, 0.99638, 0.99649, 0.9981, 0.991, 0.9984, 0.98961, 0.98961, 0.9933, 0.98918, 1.00014, 0.9931, 1.0006, 0.99667, 0.9979, 0.99252, 0.9917, 0.9943, 0.995, 0.9994, 0.99576, 0.99745, 0.9916, 0.9993, 0.9991, 0.993, 0.9927, 0.99564, 0.99094, 0.997, 0.9987, 0.98954, 0.9912, 0.99676, 0.9947, 0.99232, 0.9979, 0.9898, 0.9983, 0.98934, 0.99394, 0.9992, 0.9913, 0.99458, 0.9959, 0.99554, 0.9932, 0.99099, 0.9923, 0.99665, 0.99738, 0.9907, 0.9927, 0.991, 0.99154, 0.98872, 0.99444, 0.9943, 0.99646, 0.9934, 1.0002, 0.9956, 0.99314, 0.999, 0.9908, 1.001, 0.9949, 0.99278, 0.9984, 0.99076, 0.99064, 0.9931, 0.9918, 0.99173, 0.9893, 0.9993, 0.99612, 0.9914, 0.99312, 0.9937, 0.9929, 0.99294, 0.9928, 0.9947, 0.999, 0.993, 0.99742, 0.99224, 0.98986, 0.9948, 0.98998, 1.0006, 0.99162, 0.99232, 0.9914, 0.9922, 0.99, 0.9914, 0.9956, 0.9975, 0.99544, 0.9994, 0.9971, 0.99134, 0.9941, 0.99617, 0.99194, 0.99842, 0.9951, 0.994, 0.9922, 0.9956, 1.0004, 0.99031, 0.99164, 0.99216, 0.9917, 0.9938, 0.99176, 0.99313, 0.9959, 0.9956, 0.996, 0.99807, 0.9986, 0.9931, 0.9984, 0.9948, 0.9983, 1.0006, 0.9912, 0.99581, 0.99676, 0.9933, 0.99095, 0.98924, 0.99067, 0.99498, 0.9946, 0.9931, 0.99435, 0.9938, 0.99055, 0.9912, 0.99516, 0.9958, 0.9968, 0.99454, 0.99182, 0.98878, 0.9988, 0.9962, 0.9977, 0.9932, 0.99498, 0.99154, 0.99512, 0.9979, 0.99088, 0.99161, 0.99494, 0.99158, 0.9963, 0.99188, 0.99035, 0.9945, 0.9924, 1.0003, 0.9994, 0.99655, 0.98974, 0.99152, 0.99296, 0.99782, 0.99173, 0.9975, 0.9924, 0.98944, 0.9932, 0.99184, 0.9912, 0.9976, 0.99534, 0.98986, 0.99287, 0.991, 0.99047, 0.99691, 0.99165, 0.99646, 0.99708, 0.9902, 0.99178, 0.9963, 0.99232, 0.9938, 0.9934, 0.99176, 0.99408, 0.99572, 0.9998, 1.0026, 0.99, 0.992, 0.99734, 0.9975, 0.99204, 0.99492, 0.99666, 0.9994, 0.997, 0.99288, 0.994, 0.9996, 0.99685, 0.9958, 0.99346, 0.99215, 0.99521, 0.9974, 0.9956, 0.9967, 0.99406, 0.9936, 0.9926, 0.9982, 0.99086, 0.9955, 0.99158, 0.99975, 0.9987, 0.9966, 0.9926, 0.99815, 0.99366, 0.99706, 0.99358, 0.99071, 0.99582, 0.9988, 0.9986, 0.99551, 0.9956, 0.99862, 0.9957, 0.99882, 0.99324, 0.98823, 0.9952, 0.992, 0.99043, 1.0002, 0.99655, 0.98942, 0.99356, 0.99553, 0.99315, 0.9954, 0.9928, 0.99226, 0.9958, 0.99, 0.9948, 0.992, 0.9898, 0.99354, 0.99186, 0.99404, 0.99922, 0.992, 0.9988, 0.9939, 0.99557, 0.9999, 0.99531, 0.9903, 0.992, 0.9938, 0.991, 0.9907, 0.99784, 0.98952, 0.998, 0.9952, 0.99148, 0.99792, 0.99058, 0.9974, 0.99282, 0.9923, 0.9927, 0.99519, 0.9967, 0.9951, 0.99683, 0.99165, 0.99176, 0.99006, 0.99002, 0.99736, 0.99612, 0.9987, 0.9908, 0.9946, 0.99445, 0.98965, 0.9904, 0.99086, 0.9934, 0.99046, 0.9902, 0.99774, 0.9984, 0.996, 0.9976, 0.991, 0.99808, 0.9986, 0.9934, 0.9963, 0.9954, 0.98956, 0.9988, 0.99084, 0.99314, 0.99522, 0.99739, 0.99704, 0.9959, 0.9941, 0.99458, 0.99971, 0.9919, 0.99544, 0.99094, 0.9992, 0.99416, 0.99189, 0.98936, 0.99352, 0.9984, 0.99276, 0.9939, 0.9926, 0.993, 0.9928, 0.9966, 0.9944, 0.9952, 0.99467, 0.9984, 0.9943, 0.99381, 0.9946, 0.99121, 0.99174, 0.99052, 0.9944, 0.9927, 0.9962, 0.99552, 0.9958, 0.994, 0.99184, 0.98916, 0.99581, 0.99522, 0.9957, 0.9998, 0.99444, 0.99599, 0.9944, 0.9982, 0.9925, 0.9979, 0.99331, 0.9997, 0.99018, 0.99517, 0.9986, 0.9908, 0.98815, 0.99862, 0.99566, 0.9906, 0.9984, 0.9916, 0.99418, 0.992, 0.98779, 0.9915, 0.9934, 0.99, 0.99824, 0.9986, 0.9956, 0.99439, 0.9887, 0.9968, 0.9906, 0.9965, 0.9901, 0.99772, 0.9948, 0.991, 0.9947, 0.9984, 0.99572, 0.99388, 0.9976, 0.989315, 0.99358, 0.9926, 0.9978, 0.996, 0.99636, 0.99784, 0.99316, 0.99339, 0.99724, 0.9921, 0.98845, 0.99437, 0.99708, 0.99614, 0.98992, 0.9986, 0.9997, 0.99362, 0.9928, 0.99552, 0.99115, 0.99508, 0.99556, 0.98964, 0.9903, 0.99221, 0.99676, 0.9954, 0.99825, 0.99546, 0.9948, 0.991, 0.9945, 0.99479, 0.98912, 0.99042, 0.9963, 0.99787, 0.9916, 0.99742, 0.9893, 0.99158, 0.9954, 0.99172, 0.9925, 0.9906, 0.99459, 0.9976, 0.99456, 0.9893, 0.9931, 0.9927, 0.9963, 0.997, 0.9931, 0.99514, 0.9968, 0.99354, 0.9948, 0.99261, 0.99454, 0.9994, 0.99198, 0.998, 0.9928, 0.99068, 0.99384, 0.99275, 0.9952, 0.9932, 0.99165, 0.99616, 0.99659, 0.9924, 0.99316, 0.992, 0.9928, 0.99532, 0.9936, 0.98939, 0.99616, 0.99367, 0.98892, 0.99596, 0.99784, 0.99267, 0.99347, 0.9919, 0.99089, 0.99425, 0.99226, 0.989465, 0.9902, 0.995, 0.99565, 0.99192, 0.9964, 1.0014, 0.9898, 0.9922, 0.99166, 0.99576, 0.9884, 0.99764, 0.9951, 0.9953, 0.98964, 1.0001, 0.99837, 0.9934, 0.998, 0.99586, 0.99014, 0.99455], \"xaxis\": \"x2\", \"y\": [0.6660328535674787, 0.4955559099445003, 0.11251030999551548, 0.5313240922219649, 0.7616845263358343, 0.42881839881496897, 0.22146723198036844, 0.2709448900825402, 0.04188686298684474, 0.3198999677935893, 0.586632325439729, 0.3332859260788763, 0.0891770245136605, 0.07249138429342028, 0.0813041402249215, 0.2808128557304226, 0.18155424903412543, 0.14020593233116785, 0.20529540916933675, 0.1755850319354616, 0.5722846846512241, 0.4684623303117058, 0.2863708053899042, 0.4489302200945696, 0.3606737334686688, 0.09834172337505831, 0.1439119889738254, 0.10526388551166177, 0.08976738859769384, 0.15927641460572795, 0.07353544332944184, 0.4894096639868448, 0.24735122968283396, 0.41440459167745447, 0.10107859516115147, 0.4809249647595707, 0.043928674649753696, 0.27268427565697984, 0.07203278686513981, 0.35989685204578803, 0.08410225657903847, 0.09640449279894714, 0.2859044620344169, 0.766491644508495, 0.27194216744256416, 0.11891721880979944, 0.6033870782914414, 0.8445823904457724, 0.4148378249676725, 0.09538880480821377, 0.5822786697287807, 0.2006236885231063, 0.30215903380660414, 0.3526626332448971, 0.22921561702294402, 0.3499358724503807, 0.451050436906263, 0.01968005574460141, 0.3849224947932618, 0.608666907839271, 0.30333177217190177, 0.05732515971384944, 0.08299070223644744, 0.155374347961305, 0.4378217303747408, 0.10641916767178827, 0.3207785913922725, 0.3280003244598044, 0.4747408725557203, 0.27229542413121455, 0.5314247042003052, 0.13834506443323813, 0.652508483608137, 0.1775869136191267, 0.4659209431511335, 0.3288332341233703, 0.47224603889779837, 0.2773569186284155, 0.18590272545123854, 0.6719763059805124, 0.04569198037744582, 0.22473444069733528, 0.0776074933333939, 0.1411968215808168, 0.3654892991508686, 0.06069899520469324, 0.21029328672965164, 0.13919371635861133, 0.16321149678759816, 0.6144435769482088, 0.1388055550317996, 0.0827658987104557, 0.0793107693477757, 0.04994940743047871, 0.46220165202879504, 0.08265172102971341, 0.5554564865761329, 0.10902951494304747, 0.26480674198345266, 0.31816712550642645, 0.20184400370343658, 0.23734670470511587, 0.19264674509953905, 0.03558879485690103, 0.5314247042003052, 0.3013473679880785, 0.8043030592862955, 0.07665185966197174, 0.17816243980233548, 0.14637302723887635, 0.43623195291339645, 0.5773286546676725, 0.06996409198491005, 0.0635191394270278, 0.11839391684253864, 0.03368970372860669, 0.16544292122901683, 0.5002106013252752, 0.20783967621931676, 0.4413184352618238, 0.1377753535318076, 0.017128038770129694, 0.09070427960766203, 0.05237321155563324, 0.46044782253877736, 0.09863911308639095, 0.6058955548956951, 0.07377868677997379, 0.33726125667837825, 0.03705661785513226, 0.03856885477325478, 0.01970319875133708, 0.06623921298607705, 0.655672818127978, 0.36403826442427, 0.375635621083512, 0.25822104517587474, 0.26990817233175546, 0.30316845466795117, 0.21597661143113533, 0.10411587283779344, 0.4582573305440075, 0.28974208538397184, 0.3995654588450376, 0.48407929824265805, 0.2412117545349558, 0.49704114689177337, 0.3112403223054312, 0.13571503940671914, 0.35304273602320047, 0.18963603484652192, 0.06023564559469896, 0.305863422303413, 0.34062746964654456, 0.03532029949184434, 0.20200996882548472, 0.207876095289533, 0.11304202998506685, 0.26487496820305634, 0.46674395287949066, 0.05931266843465788, 0.6063731497207538, 0.053339747820140615, 0.16056749669580483, 0.3366557342021428, 0.18735912995827353, 0.2667542380283816, 0.9197592959547904, 0.13322255285490225, 0.3533185668595151, 0.08763312389948397, 0.343329095265401, 0.1298321532292276, 0.11240742021865013, 0.03412749239977686, 0.23316671381479437, 0.13955591125269062, 0.065615492475942, 0.03940539431326806, 0.04874684240881699, 0.42507109047861347, 0.3720756994829524, 0.20627971812824875, 0.23346983492740092, 0.299872058778726, 0.14688925552714138, 0.20529540916933675, 0.11294333341234963, 0.4523771212155355, 0.15895981664313275, 0.12633289347617382, 0.34801013400503944, 0.063056887931354, 0.09222807982804315, 0.19281104432210028, 0.11843845992675284, 0.1064686731970873, 0.12171087020281346, 0.49704114689177337, 0.4202798549667376, 0.058322454167927695, 0.40418598015134155, 0.7514842711311043, 0.067978575311199, 0.1468497162592186, 0.3655805321171328, 0.36741292271676196, 0.08785516413846428, 0.4223454464089015, 0.09472348251934337, 0.14196098925812006, 0.10013555988874479, 0.32154631204965056, 0.05416575683382341, 0.786126361492164, 0.04696516601190348, 0.26926088858349784, 0.28123172687107445, 0.3094364396730669, 0.04307250962973752, 0.07126159086244754, 0.6143015945908075, 0.495586079448059, 0.46102608015166635, 0.40789311683600216, 0.8929715185951024, 0.1227006502272181, 0.3638055988942468, 0.10470002869891348, 0.29304213908849364, 0.8936703981375603, 0.3534407380188983, 0.0883666731866185, 0.07895584641700149, 0.05166417783587085, 0.4199775765299997, 0.10304865631077798, 0.1041340676595982, 0.11031385635331636, 0.22368578646300386, 0.22137255536682798, 0.0725394352715707, 0.08320759746190642, 0.3577905591727162, 0.36362749207413336, 0.13058702032609693, 0.4306817897420764, 0.4684623303117058, 0.3185463047756948, 0.6991046594229053, 0.33105510290791684, 0.35804773811787727, 0.3499358724503807, 0.17780319308126435, 0.07142366539796174, 0.1504846162366139, 0.28643330026545544, 0.11492102279820171, 0.08716328114311156, 0.12905574960179156, 0.5528531989583015, 0.2852168598030531, 0.3185463047756948, 0.41766807389819915, 0.22818770291371737, 0.10749415552266317, 0.07500089027222667, 0.2150933620687273, 0.4879833184669665, 0.21367083697314282, 0.18281788227943807, 0.11217648511765432, 0.01860460444149037, 0.4990100838788346, 0.3212979959143686, 0.7252893191599291, 0.30018855716775616, 0.2808216200321265, 0.24332849241566534, 0.22583693263898685, 0.307128141019565, 0.12930297020615966, 0.07734813107736227, 0.38078614076753503, 0.037937415915298756, 0.18389331462546077, 0.2015421194948802, 0.10121634311933059, 0.7209948827487924, 0.252131738577411, 0.19866278493931944, 0.5569604587758099, 0.19172534874952063, 0.07516041810443141, 0.18673310211333727, 0.20736440356309183, 0.27568985010185776, 0.1748501221961516, 0.134246332983591, 0.12151400729184814, 0.03860330573341564, 0.16198960071610413, 0.062309112953929935, 0.14943540958877521, 0.46827469198568006, 0.12435295831370408, 0.11768791031746062, 0.10794707492381372, 0.04347111427796346, 0.07423675680829, 0.1602542791395647, 0.19911642350143877, 0.2379444352717226, 0.36664322039668684, 0.10130143557253446, 0.17108028607870185, 0.6143194513817134, 0.5641235853966853, 0.29864316680665437, 0.44752301946823647, 0.13459844499503626, 0.037461465199631894, 0.5002964248569376, 0.4059565893810353, 0.7035957096210382, 0.0629603198376949, 0.25036415064992923, 0.14780834332950044, 0.24800647860056513, 0.10438723399855232, 0.24366911510822187, 0.4574644219698093, 0.8347014835967527, 0.42226245660703365, 0.4073158502222598, 0.47525484003715535, 0.37845934883934684, 0.35325777167774697, 0.4763432908647238, 0.18941100564626978, 0.23853527246002126, 0.27277355193056574, 0.5556171757583562, 0.19481513110659687, 0.7460207524242459, 0.12627308236197843, 0.2115813466591615, 0.4773837842994688, 0.22238536240250728, 0.1978655273089749, 0.32057959349203036, 0.1601330373243487, 0.6256605001243821, 0.34062746964654456, 0.5899158924001677, 0.1273375405407705, 0.6866376712310945, 0.3812864953771038, 0.07918534602430627, 0.10510921928053807, 0.052405178286905496, 0.29010285216427345, 0.5802968836962079, 0.4475494904811408, 0.33107045093633036, 0.6046547135519548, 0.33132995382553565, 0.3391582818855403, 0.37109937806185267, 0.18876467901964422, 0.03244681540368277, 0.6531311156123596, 0.18281848038190407, 0.06840545126676123, 0.23876166598551407, 0.5602062902528231, 0.05478334190217349, 0.18965009362393503, 0.502081053312289, 0.0945975060483667, 0.24937367783354814, 0.14040338921272166, 0.09582424632391484, 0.4879833184669665, 0.07536550594022651, 0.37763546052463404, 0.20240400638142053, 0.06234715971662652, 0.1729504208160284, 0.2536573606029918, 0.1491704939138675, 0.47224603889779837, 0.20734784509414073, 0.1656619584420439, 0.20263687678412212, 0.4576701693643329, 0.3746187330143109, 0.06578487521364562, 0.09359041291034786, 0.15714155813810793, 0.43198081216185935, 0.17693664965610134, 0.14200602748771296, 0.16878839641400256, 0.11131318694256087, 0.43040972974554736, 0.12494266711040569, 0.5286591337585229, 0.3917329141436472, 0.14284790216410748, 0.29931895876037384, 0.3998656181534954, 0.13198036366642862, 0.2166851793268345, 0.164669749255824, 0.3116999397838065, 0.5702002297218003, 0.2867818412254799, 0.05809024612643199, 0.0701620515557333, 0.10493669218879953, 0.03474255021640338, 0.14069518845012563, 0.7697788668098057, 0.44513161239284327, 0.12104291767226882, 0.2823656727566666, 0.28640273091276736, 0.09904459769556595, 0.10889384421684001, 0.1978655273089749, 0.6326587477498924, 0.0766186874204361, 0.07300117689776386, 0.3978521493117628, 0.7293533971641823, 0.24040337450518035, 0.46827469198568006, 0.03737110954461231, 0.48112847828662497, 0.5755848065786346, 0.12151472907643468, 0.332302417201758, 0.3208349144509022, 0.13406270144296106, 0.47820199098358873, 0.024219732643774528, 0.7923035912680444, 0.3099424932714111, 0.8494816644677875, 0.15230116664989468, 0.8795672599938588, 0.34536882843285344, 0.587897812361327, 0.3660303223369904, 0.3074082248441362, 0.1925553058603695, 0.1582957933341015, 0.5297945963993664, 0.1892543681582496, 0.06574637766643598, 0.03286461121245521, 0.6223124217546917, 0.48666930315350876, 0.17200815643270417, 0.27042696199957883, 0.16010429726024444, 0.25291734909108765, 0.22778758435893687, 0.6055190518965303, 0.41989528411161425, 0.2865861541738164, 0.17344095530188786, 0.4163761941495938, 0.24610426408478792, 0.029106329843254564, 0.5849270471051293, 0.09607886499379148, 0.4890296174547498, 0.11193395874659995, 0.3667485749721523, 0.29672938182784603, 0.13696827462710404, 0.03986507081677082, 0.41542023534722683, 0.1642424989032959, 0.041559354155004224, 0.1266666793707928, 0.5259198205822933, 0.42123490919744344, 0.6147437654518444, 0.42849246998341506, 0.04874684240881699, 0.16870816563337898, 0.35179373534084035, 0.4552463954734379, 0.1543174595222413, 0.4641274821418986, 0.1106599594415556, 0.40441066041397966, 0.05916303638108533, 0.24194101851814365, 0.5755848065786346, 0.23631147082452741, 0.04679471849088612, 0.33132995382553565, 0.6031606095022326, 0.16900214819844117, 0.9322526967181247, 0.1065938389205352, 0.0540586741766943, 0.14920224829950646, 0.03054451782098533, 0.13595064656866984, 0.15908339514281045, 0.09402391562754642, 0.27219479721363327, 0.10477531970828624, 0.6046547135519548, 0.04412971358840656, 0.0821245873848182, 0.24953715645213048, 0.24311299470472425, 0.679537413518331, 0.02875041056121841, 0.2874129658970298, 0.17131102264191878, 0.07042427222914205, 0.1577516063520068, 0.39934634677258996, 0.42249259173992826, 0.24940231538328683, 0.46827469198568006, 0.040988937643475554, 0.034828704291737345, 0.26663563965858417, 0.22421743312747255, 0.10716094829621758, 0.7421831263598226, 0.4644511163280224, 0.1591307416719686, 0.21502194578256428, 0.12883185373794437, 0.15520095945599266, 0.04280666734842442, 0.06928764484923078, 0.3578757504587543, 0.0760792945579073, 0.06637805380770656, 0.5755848065786346, 0.4326356954473739, 0.16985579355455038, 0.47152805642545803, 0.11644579282256762, 0.11790522998710073, 0.5438286352264949, 0.41561805514360906, 0.050606352251634235, 0.21836830194439782, 0.22298545275517268, 0.1504846162366139, 0.16819644397314482, 0.47796113776613436, 0.14100197907825862, 0.7878397890034206, 0.12176963827920351, 0.09814942480303201, 0.23162396036129984, 0.04400104962869911, 0.061588508633294015, 0.2774601068082493, 0.40816383821078206, 0.14036214651023216, 0.11837607594274324, 0.0703155477214753, 0.17002415827487982, 0.24611532014486182, 0.06874641727313702, 0.30975746960573625, 0.07004288447243323, 0.6453829176356538, 0.3880412370469972, 0.10205495289732236, 0.12171087020281346, 0.38550692709735157, 0.4398162761337091, 0.5769741243450848, 0.48842976274850136, 0.3866799681687785, 0.17129518728202664, 0.5711206597512044, 0.4456070955069118, 0.4585850027539752, 0.25462747480751524, 0.34771016550763867, 0.35548618548401445, 0.07878090041588082, 0.3008706318705062, 0.08117751180329491, 0.055511805197920094, 0.1600174453683395, 0.35597309965685686, 0.5473978930443646, 0.3321771897262046, 0.14643302530661162, 0.7653011157176768, 0.24188431843396252, 0.16704799028757666, 0.41136103198090634, 0.5749869949413896, 0.709238838470871, 0.09340318303147321, 0.602429869503323, 0.04154705947390969, 0.7519582179986716, 0.15993940416551844, 0.04372375151311325, 0.4076899811241429, 0.4644511163280224, 0.3133137248525114, 0.24628490675063597, 0.06972977174174444, 0.15949948541388637, 0.2241543425141257, 0.1729876202034616, 0.07290025122558275, 0.1220000714032804, 0.36493953208423235, 0.09420126302076737, 0.026726938234992392, 0.7199273032686843, 0.4606762448039463, 0.04906818437448113, 0.19446415942665518, 0.14876853598344464, 0.3247816953453747, 0.023320858692869595, 0.7310618090422621, 0.48944479260603346, 0.20357574295749958, 0.0840537250624015, 0.5368744051465595, 0.21101467800102214, 0.46682279298460017, 0.3749869638443927, 0.46592999202179275, 0.10188412989688433, 0.15751976448865512], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"density\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"density\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}}, {\"id\": \"All_pH\", \"params\": {\"data\": [{\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Reference<br>pH=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [3.17, 3.36, 3.32, 3.59, 3.37, 3.4, 3.22, 3.36, 3.14, 3.1, 3.06, 3.16, 3.52, 3.06, 3.37, 3.14, 3.09, 2.95, 3.34, 3.18, 3.12, 3.21, 3.23, 3.25, 2.94, 3.64, 3.31, 3.14, 3.28, 3.33, 3.38, 3.3, 3.1, 3.38, 3.13, 3.11, 3.12, 3.4, 3.26, 3.25, 3.14, 3.46, 3.41, 3.12, 3.11, 3.4, 3.3, 3.22, 3.2, 3.0, 3.15, 3.17, 3.32, 3.19, 3.15, 3.03, 3.22, 3.26, 3.05, 3.51, 3.25, 3.46, 3.31, 3.32, 3.17, 3.31, 3.26, 3.12, 3.13, 3.19, 3.17, 3.04, 3.15, 3.01, 3.48, 3.29, 3.35, 3.25, 3.29, 3.0, 3.65, 3.27, 3.02, 3.2, 3.18, 3.07, 3.2, 3.37, 3.18, 3.08, 3.32, 3.19, 3.16, 3.54, 3.6, 3.39, 3.17, 3.26, 2.87, 3.33, 3.47, 3.04, 3.18, 3.4, 2.96, 3.5, 3.27, 3.24, 3.1, 3.3, 3.0, 3.15, 3.05, 3.4, 3.35, 3.15, 3.02, 3.1, 3.16, 3.4, 3.0, 2.99, 3.04, 3.06, 3.26, 3.36, 3.33, 3.04, 3.35, 3.61, 3.19, 3.21, 3.36, 3.27, 3.38, 3.27, 3.22, 3.54, 3.23, 3.12, 2.89, 3.52, 3.08, 3.2, 3.08, 3.22, 3.1, 3.25, 3.39, 3.2, 2.96, 2.92, 3.3, 3.17, 3.04, 3.18, 3.4, 3.11, 2.98, 3.2, 3.35, 3.26, 3.15, 3.49, 3.3, 3.09, 3.12, 3.36, 3.06, 3.36, 3.14, 3.34, 3.38, 3.03, 3.32, 3.26, 3.33, 3.08, 3.23, 3.58, 3.48, 3.13, 3.32, 3.39, 3.18, 3.34, 3.15, 3.22, 3.31, 3.54, 3.37, 3.71, 3.53, 3.26, 3.55, 3.0, 3.13, 3.1, 3.16, 2.9, 3.32, 3.36, 3.41, 3.38, 3.45, 3.23, 3.22, 3.14, 2.94, 3.4, 3.07, 3.24, 3.28, 3.23, 3.12, 3.36, 2.93, 3.21, 3.03, 3.1, 3.39, 3.28, 3.08, 3.02, 3.38, 3.2, 3.07, 3.34, 3.22, 3.6, 3.22, 3.18, 3.51, 3.03, 3.36, 3.66, 3.42, 3.14, 3.27, 3.21, 3.13, 2.98, 2.95, 3.26, 3.22, 3.23, 3.42, 3.2, 3.15, 3.25, 3.21, 3.14, 3.17, 3.24, 3.12, 3.15, 3.15, 2.93, 3.32, 3.14, 3.16, 3.38, 3.18, 3.01, 3.31, 3.28, 3.23, 3.28, 3.38, 3.56, 3.22, 3.49, 3.04, 2.91, 3.55, 3.39, 3.11, 3.27, 3.71, 3.17, 3.26, 3.06, 3.57, 3.26, 3.15, 3.28, 3.13, 3.14, 3.24, 2.94, 3.34, 3.12, 3.26, 3.23, 3.09, 3.19, 3.47, 3.21, 3.7, 3.37, 3.38, 3.38, 3.54, 3.15, 3.14, 3.4, 3.05, 3.19, 2.97, 3.09, 3.42, 3.03, 3.62, 3.37, 3.16, 3.16, 3.12, 3.29, 3.03, 3.2, 3.4, 2.95, 3.24, 3.53, 3.3, 3.47, 2.86, 3.15, 3.52, 3.22, 3.36, 2.98, 3.12, 3.25, 3.15, 2.93, 2.88, 3.27, 3.48, 3.22, 3.16, 3.01, 3.23, 3.34, 3.21, 3.13, 2.92, 3.32, 3.29, 3.04, 3.2, 3.24, 3.11, 3.02, 3.16, 3.46, 3.3, 3.18, 3.28, 3.14, 3.2, 3.14, 3.18, 3.3, 3.53, 2.87, 3.32, 3.28, 3.33, 3.1, 3.33, 3.23, 3.26, 2.89, 3.11, 3.06, 3.35, 3.33, 3.29, 3.38, 3.16, 3.12, 3.17, 3.44, 3.09, 3.0, 3.18, 3.22, 3.44, 3.14, 3.26, 3.1, 3.12, 3.27, 3.25, 3.39, 3.3, 3.06, 3.45, 3.22, 3.42, 3.52, 3.46, 3.34, 2.94, 3.23, 3.21, 3.12, 3.27, 3.11, 3.35, 3.22, 3.44, 3.38, 3.24, 3.16, 3.29, 3.16, 3.12, 3.06, 3.2, 3.08, 3.2, 2.96, 3.16, 3.42, 3.09, 3.11, 3.12, 3.29, 3.14, 3.27, 3.09, 3.33, 3.45, 3.48, 3.45, 3.51, 3.25, 3.12, 3.17, 3.13, 3.14, 3.12, 2.96, 3.23, 3.08, 3.24, 3.15, 3.33, 3.12, 3.29, 3.37, 3.27, 3.11, 3.22, 3.28, 3.4, 3.34, 3.12, 3.17, 3.45, 3.32, 3.05, 3.38, 3.32, 3.2, 3.27, 3.21, 3.32, 3.31, 3.19, 3.28, 3.12, 3.18, 3.12, 3.26, 3.25, 3.11, 3.15, 3.57, 2.98, 3.08, 3.49, 3.18, 3.06, 3.07, 3.04, 3.18, 3.21, 3.16, 3.21, 3.03, 3.28, 3.29, 3.11, 3.39, 3.24, 3.36, 3.54, 3.26, 2.98, 3.34, 3.09, 2.96, 3.11, 3.35, 3.13, 3.24, 3.23, 3.09, 2.99, 3.31, 3.09, 3.11, 2.94, 3.1, 3.26, 3.29, 3.26, 2.96, 3.08, 3.01, 3.41, 3.37, 3.2, 3.0, 3.09, 3.18, 3.18, 3.38, 3.41, 3.35, 3.11, 3.49, 3.36, 3.22, 3.02, 3.1, 3.17, 3.29, 3.22, 2.96, 3.18, 3.17, 3.08, 3.22, 3.36, 3.38, 3.43, 3.04, 3.12, 3.42, 3.06, 3.03, 3.35, 3.32, 3.34, 3.08, 3.05, 3.11, 3.08, 3.36, 3.44, 3.68, 2.93, 3.05, 3.13, 3.36, 3.1, 3.36, 3.2, 3.17, 3.08, 3.22, 3.3, 2.94, 3.21, 3.03, 3.05, 2.97, 3.36, 3.49, 3.54, 3.26, 3.34, 3.2, 3.25, 3.61, 3.05, 2.93, 3.12, 3.19, 3.22, 3.37, 3.36, 3.25, 3.42, 3.25, 3.02, 3.23, 3.32, 3.28, 3.2, 3.15, 3.14, 3.13, 3.16, 3.42, 2.94, 2.99, 3.21, 3.14, 3.37, 3.22, 3.39, 3.54, 2.95, 3.23, 2.87, 3.52, 3.02, 3.27, 3.21, 3.07, 3.23, 3.3, 3.14, 3.15, 3.08, 3.15, 3.09, 3.1, 3.2, 3.34, 3.05, 3.22, 3.15, 3.04, 3.4, 3.28, 3.28, 3.44, 3.24, 3.27], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Current<br>pH=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [3.03, 3.09, 3.09, 3.17, 3.21, 3.19, 3.19, 3.06, 2.96, 3.38, 3.28, 3.13, 3.16, 3.18, 3.46, 3.14, 3.32, 3.06, 3.41, 3.01, 3.14, 3.1, 3.13, 3.32, 3.14, 3.07, 2.97, 3.3, 3.08, 3.36, 2.96, 3.3, 3.37, 3.23, 2.96, 3.09, 3.21, 2.86, 3.23, 3.46, 2.99, 3.13, 3.14, 3.06, 3.21, 3.46, 3.16, 3.59, 2.93, 3.35, 3.29, 3.29, 3.16, 2.96, 3.32, 3.28, 2.87, 3.68, 3.41, 2.9, 3.41, 3.04, 3.2, 2.99, 3.08, 3.32, 3.4, 3.39, 3.3, 3.29, 3.07, 3.26, 3.27, 3.38, 3.25, 3.16, 3.19, 3.13, 3.29, 3.27, 3.11, 3.11, 3.34, 2.99, 3.08, 3.22, 3.47, 3.06, 3.2, 3.3, 3.26, 3.03, 3.42, 3.0, 3.17, 3.16, 3.07, 3.03, 3.2, 3.56, 3.02, 3.34, 3.4, 2.98, 3.07, 2.93, 3.27, 3.34, 3.36, 3.31, 3.15, 3.15, 3.0, 3.21, 3.27, 3.37, 3.75, 3.22, 3.05, 3.37, 3.41, 3.24, 3.21, 3.26, 3.29, 3.27, 3.43, 3.29, 3.34, 2.91, 3.05, 3.38, 3.14, 3.02, 3.32, 3.01, 3.2, 3.31, 3.27, 3.3, 3.13, 3.61, 3.1, 3.2, 3.16, 3.18, 3.07, 3.38, 2.99, 3.0, 3.19, 3.06, 3.19, 3.06, 3.21, 3.09, 3.26, 3.23, 3.2, 2.98, 3.25, 3.45, 3.04, 3.39, 3.07, 2.95, 3.15, 3.22, 3.34, 3.03, 3.42, 2.94, 3.17, 3.38, 3.38, 3.28, 3.3, 3.03, 3.18, 3.31, 3.38, 3.22, 3.27, 3.3, 3.22, 3.32, 3.41, 3.29, 3.0, 3.41, 2.99, 3.0, 3.27, 3.16, 3.41, 3.19, 2.9, 3.51, 3.07, 3.43, 2.93, 3.45, 3.25, 3.14, 2.96, 3.36, 3.18, 3.17, 3.42, 3.24, 3.24, 3.36, 3.39, 3.25, 3.1, 3.15, 3.2, 3.31, 3.54, 3.13, 3.24, 3.36, 3.42, 3.2, 3.24, 2.96, 3.38, 3.12, 3.33, 3.27, 3.53, 3.26, 3.11, 3.35, 3.22, 3.34, 3.1, 3.27, 2.98, 3.23, 3.3, 3.05, 2.95, 3.81, 3.37, 3.1, 2.94, 3.1, 3.51, 3.19, 3.29, 2.99, 3.28, 3.32, 3.05, 3.2, 3.26, 3.17, 2.97, 3.44, 3.35, 3.29, 3.51, 3.31, 3.23, 3.28, 3.31, 2.91, 3.22, 3.14, 3.2, 3.24, 3.04, 3.18, 3.42, 3.5, 3.45, 3.42, 3.47, 3.52, 3.06, 2.97, 3.28, 3.25, 3.12, 3.23, 3.15, 3.24, 3.34, 3.2, 3.26, 3.19, 3.34, 3.1, 3.03, 3.22, 3.07, 3.33, 3.2, 3.23, 3.03, 3.11, 2.92, 3.38, 3.01, 3.4, 3.36, 3.1, 3.09, 2.88, 3.23, 3.26, 3.56, 3.09, 3.31, 3.76, 3.1, 3.14, 3.14, 3.02, 3.17, 3.19, 3.49, 3.42, 3.32, 3.16, 3.11, 3.28, 3.12, 3.36, 3.35, 2.88, 3.36, 3.11, 2.96, 2.99, 3.29, 3.18, 3.12, 3.33, 3.17, 3.34, 3.52, 3.39, 3.32, 3.11, 3.4, 3.45, 3.42, 3.05, 3.14, 3.22, 3.12, 3.06, 3.08, 3.36, 3.28, 3.17, 3.15, 3.4, 3.03, 3.33, 3.34, 2.94, 3.21, 3.24, 3.22, 3.54, 3.25, 3.1, 3.2, 3.29, 3.21, 3.03, 3.07, 3.35, 3.16, 3.18, 3.3, 3.44, 3.07, 3.13, 3.06, 3.22, 3.19, 3.48, 2.94, 3.33, 3.3, 3.24, 3.24, 3.19, 3.55, 3.18, 3.32, 3.36, 2.97, 3.17, 3.3, 3.3, 3.4, 3.3, 3.2, 2.85, 3.32, 3.42, 3.33, 3.3, 2.96, 3.12, 3.26, 3.49, 3.0, 3.12, 3.12, 3.37, 3.06, 3.17, 3.15, 3.14, 3.31, 3.27, 3.24, 3.4, 2.98, 3.06, 3.15, 3.0, 3.41, 3.16, 3.05, 3.8, 3.09, 3.15, 3.32, 3.43, 3.37, 3.01, 3.34, 3.0, 3.14, 3.57, 3.11, 3.04, 3.06, 2.94, 3.7, 3.18, 3.39, 3.2, 3.14, 3.34, 3.34, 3.16, 2.94, 3.41, 3.2, 3.29, 3.6, 3.28, 3.04, 3.2, 3.3, 3.06, 3.03, 3.52, 3.16, 3.5, 3.25, 3.46, 3.36, 3.05, 3.58, 2.9, 3.15, 3.13, 3.24, 3.23, 3.32, 3.44, 3.19, 3.21, 3.39, 3.41, 3.35, 2.99, 3.07, 3.04, 3.09, 3.42, 3.27, 3.36, 3.31, 3.27, 3.14, 3.3, 3.11, 3.11, 3.29, 3.1, 3.04, 3.06, 3.14, 3.42, 3.32, 3.22, 3.17, 3.34, 3.08, 3.1, 3.34, 3.25, 3.12, 3.06, 3.12, 3.29, 3.38, 3.27, 3.24, 3.52, 3.36, 3.21, 3.59, 3.25, 3.22, 2.99, 3.16, 3.31, 3.21, 3.06, 3.38, 3.16, 3.01, 3.19, 3.15, 3.13, 3.05, 3.0, 3.35, 3.0, 3.38, 3.24, 3.33, 3.38, 3.29, 3.26, 3.23, 3.31, 3.15, 3.14, 3.16, 2.99, 3.42, 3.23, 3.44, 3.23, 3.4, 3.18, 3.46, 3.36, 3.2, 3.04, 2.9, 3.35, 3.26, 3.08, 3.05, 3.12, 3.31, 3.16, 3.72, 3.47, 3.54, 3.29, 2.99, 3.49, 3.47, 3.13, 3.2, 3.19, 3.24, 3.07, 3.03, 3.51, 3.16, 3.22, 3.29, 3.22, 3.11, 3.44, 3.44, 3.3, 3.2, 2.94, 3.22, 3.12, 3.4, 3.3, 3.19, 3.27, 3.15, 3.28, 3.09, 3.04, 3.24, 3.26, 3.15, 3.23, 3.44, 3.34, 3.24, 2.98, 3.19, 3.0, 3.29, 3.1, 3.35, 3.28, 3.0, 3.26, 3.24, 2.98, 3.15, 3.26, 3.27, 3.11, 3.04, 2.93, 3.22, 3.19, 3.38, 3.06, 3.26, 3.25, 3.35, 3.24, 3.19, 3.34, 3.06, 3.13, 3.13, 3.03, 2.97, 3.41, 3.06, 3.11, 3.22, 3.25], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Reference<br>pH=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [3.16, 3.03, 3.03, 3.45, 3.15, 3.46, 3.34, 3.36, 3.16, 3.18, 3.3, 3.25, 3.02, 3.24, 3.32, 3.24, 3.3, 3.5, 3.06, 3.53, 3.19, 3.26, 3.54, 2.94, 3.6, 3.26, 3.27, 3.29, 3.1, 3.3, 3.48, 3.01, 3.66, 3.19, 3.0, 3.15, 2.96, 3.2, 3.04, 3.08, 3.02, 3.39, 3.27, 3.15, 3.19, 3.3, 3.32, 3.4, 3.23, 3.32, 3.09, 3.08, 3.2, 3.19, 3.11, 2.96, 3.17, 3.28, 3.14, 3.26, 3.19, 3.58, 3.43, 3.34, 3.13, 3.26, 3.22, 3.27, 3.61, 2.79, 3.09, 3.27, 3.05, 3.21, 3.1, 3.16, 3.08, 3.28, 3.2, 3.11, 2.98, 3.05, 3.12, 3.39, 3.11, 3.24, 3.14, 3.26, 3.17, 3.01, 3.27, 3.31, 3.15, 3.05, 2.96, 3.18, 2.98, 3.14, 3.15, 3.27, 3.01, 3.52, 3.35, 3.22, 3.29, 3.08, 3.16, 3.37, 3.27, 3.22, 3.37, 3.37, 3.41, 3.34, 3.49, 3.11, 3.16, 3.32, 3.06, 3.15, 3.09, 3.41, 3.22, 3.11, 3.1, 3.05, 3.29, 3.1, 3.23, 3.16, 2.89, 3.43, 3.1, 3.22, 3.11, 3.17, 3.13, 3.26, 3.09, 3.25, 3.07, 3.18, 3.28, 3.14, 3.14, 3.02, 3.44, 3.11, 3.14, 3.32, 3.13, 3.45, 2.92, 3.46, 2.99, 3.25, 3.2, 3.25, 3.46, 2.97, 3.15, 3.14, 3.05, 3.16, 3.34, 3.18, 3.18, 3.26, 2.96, 3.08, 3.12, 3.22, 3.37, 2.99, 3.22, 3.24, 3.33, 3.2, 3.46, 3.01, 3.24, 3.54, 3.28, 3.13, 3.1, 3.21, 3.12, 3.01, 3.28, 3.12, 3.02, 3.01, 3.08, 3.14, 3.16, 3.34, 3.08, 3.16, 3.06, 3.07, 3.3, 3.16, 3.16, 3.15, 3.63, 3.09, 3.22, 3.21, 3.72, 3.09, 3.14, 3.5, 3.04, 3.06, 3.18, 3.24, 3.11, 2.97, 2.94, 2.87, 2.88, 3.5, 3.06, 2.96, 3.1, 3.11, 3.34, 3.02, 3.22, 3.49, 3.33, 2.94, 3.5, 3.1, 3.16, 2.92, 3.39, 3.39, 3.15, 3.02, 3.24, 3.11, 3.03, 3.12, 3.5, 3.15, 3.22, 3.18, 3.24, 3.24, 3.41, 3.14, 3.66, 3.39, 3.1, 3.09, 3.17, 3.41, 3.14, 3.16, 3.05, 3.14, 3.39, 3.0, 3.16, 3.21, 3.77, 3.74, 3.42, 3.29, 3.44, 3.08, 3.21, 3.11, 3.19, 3.31, 3.44, 3.0, 3.13, 3.29, 3.34, 3.59, 3.17, 3.29, 3.15, 3.16, 2.9, 3.28, 3.08, 3.25, 3.06, 3.12, 3.24, 3.51, 3.3, 2.94, 3.13, 3.29, 3.08, 3.23, 3.68, 3.28, 3.36, 3.25, 3.31, 3.08, 3.12, 3.34, 3.04, 3.03, 3.06, 3.22, 3.59, 3.18, 3.38, 3.09, 3.1, 3.31, 3.22, 3.66, 3.32, 3.19, 3.36, 3.28, 3.15, 3.14, 2.98, 3.19, 3.29, 3.22, 2.93, 3.38, 3.35, 3.2, 3.25, 3.09, 3.13, 3.05, 3.1, 3.23, 3.3, 3.21, 3.24, 3.18, 3.24, 3.48, 3.53, 3.14, 3.38, 3.08, 3.04, 3.34, 3.06, 3.63, 3.09], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Current<br>pH=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [3.36, 3.22, 3.03, 3.07, 2.93, 2.93, 3.23, 3.29, 3.29, 3.03, 3.12, 3.16, 3.14, 3.12, 3.14, 3.27, 3.14, 3.16, 3.32, 2.97, 3.27, 2.96, 3.15, 3.12, 3.15, 3.07, 3.44, 3.18, 3.3, 3.46, 2.98, 3.3, 3.38, 3.2, 3.42, 3.32, 3.25, 3.42, 3.29, 3.26, 3.01, 3.1, 3.0, 3.22, 3.08, 3.28, 3.27, 3.15, 3.14, 2.79, 3.19, 3.17, 2.99, 3.37, 3.39, 3.28, 3.48, 2.92, 3.04, 3.08, 2.92, 3.31, 3.23, 3.48, 3.03, 3.53, 3.03, 3.51, 3.45, 3.37, 3.38, 3.21, 3.47, 3.32, 3.19, 3.18, 3.04, 3.07, 3.14, 3.39, 3.21, 3.15, 3.33, 3.2, 3.05, 2.97, 3.47, 3.22, 3.14, 3.35, 3.23, 3.08, 3.28, 3.18, 3.4, 3.5, 3.14, 3.17, 3.37, 3.24, 3.15, 3.08, 3.27, 3.34, 3.19, 3.35, 3.16, 3.36, 3.15, 3.18, 3.3, 2.94, 3.4, 3.29, 2.8, 3.13, 3.1, 3.17, 3.18, 3.13, 3.37, 3.34, 3.36, 3.39, 3.29, 3.38, 3.26, 2.93, 3.29, 3.08, 3.16, 3.25, 3.18, 2.96, 3.45, 3.16, 3.23, 3.29, 3.13, 2.94, 3.12, 3.05, 2.83, 3.16, 3.46, 3.22, 3.05, 3.34, 3.23, 3.23, 3.19, 3.47, 3.42, 3.17, 3.1, 3.16, 3.21, 3.2, 3.08, 2.99, 3.31, 3.18, 2.97, 3.04, 3.38, 3.13, 3.19, 3.37, 3.22, 3.06, 3.38, 3.23, 3.15, 3.15, 3.27, 3.26, 3.0, 3.07, 3.04, 3.24, 3.2, 3.42, 3.16, 3.21, 3.24, 2.95, 3.1, 3.07, 3.09, 3.23, 3.53, 3.28, 3.1, 3.18, 3.08, 3.33, 3.06, 3.14, 3.35, 3.09, 3.48, 3.25, 3.13, 3.2, 2.95, 3.25, 3.19, 3.2, 3.28, 3.06, 3.17, 3.13, 3.33, 3.0, 3.19, 3.03, 2.89, 3.08, 2.92, 3.19, 3.14, 3.22, 3.38, 3.09, 3.08, 3.38, 3.48, 3.54, 3.24, 3.24, 3.14, 3.12, 3.3, 3.09, 3.19, 3.04, 3.25, 3.45, 3.18, 3.42, 3.56, 3.67, 3.05, 3.4, 3.21, 3.16, 3.54, 3.32, 3.1, 3.19, 3.31, 3.13, 2.85, 3.16, 3.0, 3.26, 3.4, 3.32, 3.01, 3.24, 3.66, 3.37, 3.58, 3.58, 2.89, 3.31, 3.21, 3.3, 3.4, 3.1, 3.15, 3.51, 2.99, 3.16, 3.1, 3.08, 3.06, 3.55, 3.35, 2.98, 3.48, 3.34, 3.11, 3.56, 3.16, 3.32, 2.95, 3.24, 3.15, 3.15, 3.16, 3.33, 3.2, 3.51, 3.26, 3.26, 3.16, 3.1, 3.14, 3.37, 3.34, 3.05, 3.19, 3.02, 3.05, 2.97, 3.17, 3.13, 3.27, 3.12, 3.34, 3.49, 3.14, 3.32, 3.22, 3.03, 3.1, 3.19, 3.77, 3.36, 3.18, 3.34, 3.3, 3.27, 3.44, 3.07, 3.14, 3.13, 3.18, 3.47, 3.39, 3.31, 3.16, 3.44, 3.28, 3.17, 3.24, 3.17, 3.3, 3.24, 3.13, 3.23, 3.34, 3.29, 3.16, 2.99, 3.39, 3.36, 3.3, 3.14, 3.18, 3.19], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Reference\", \"x\": 0.245, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Current\", \"x\": 0.755, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"barmode\": \"overlay\", \"legend\": {\"title\": {\"text\": \"target\"}, \"tracegroupgap\": 0}, \"margin\": {\"t\": 60}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.49], \"title\": {\"text\": \"pH\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.51, 1.0], \"matches\": \"x\", \"title\": {\"text\": \"pH\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"count\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}}}}, {\"id\": \"pH_good\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (ref)\", \"type\": \"scatter\", \"x\": [3.17, 3.36, 3.32, 3.59, 3.37, 3.4, 3.22, 3.36, 3.14, 3.1, 3.06, 3.16, 3.52, 3.06, 3.37, 3.14, 3.09, 2.95, 3.34, 3.18, 3.12, 3.21, 3.23, 3.25, 2.94, 3.64, 3.31, 3.14, 3.28, 3.33, 3.38, 3.3, 3.1, 3.38, 3.13, 3.11, 3.12, 3.4, 3.26, 3.25, 3.14, 3.46, 3.41, 3.12, 3.11, 3.4, 3.3, 3.22, 3.2, 3.0, 3.15, 3.17, 3.32, 3.19, 3.15, 3.03, 3.22, 3.26, 3.05, 3.51, 3.25, 3.46, 3.31, 3.32, 3.17, 3.31, 3.26, 3.12, 3.13, 3.19, 3.17, 3.04, 3.15, 3.01, 3.48, 3.29, 3.35, 3.25, 3.29, 3.0, 3.65, 3.27, 3.02, 3.2, 3.18, 3.07, 3.2, 3.37, 3.18, 3.08, 3.32, 3.19, 3.16, 3.54, 3.6, 3.39, 3.17, 3.26, 2.87, 3.33, 3.47, 3.04, 3.18, 3.4, 2.96, 3.5, 3.27, 3.24, 3.1, 3.3, 3.0, 3.15, 3.05, 3.4, 3.35, 3.15, 3.02, 3.1, 3.16, 3.4, 3.0, 2.99, 3.04, 3.06, 3.26, 3.36, 3.33, 3.04, 3.35, 3.61, 3.19, 3.21, 3.36, 3.27, 3.38, 3.27, 3.22, 3.54, 3.23, 3.12, 2.89, 3.52, 3.08, 3.2, 3.08, 3.22, 3.1, 3.25, 3.39, 3.2, 2.96, 2.92, 3.3, 3.17, 3.04, 3.18, 3.4, 3.11, 2.98, 3.2, 3.35, 3.26, 3.15, 3.49, 3.3, 3.09, 3.12, 3.36, 3.06, 3.36, 3.14, 3.34, 3.38, 3.03, 3.32, 3.26, 3.33, 3.08, 3.23, 3.58, 3.48, 3.13, 3.32, 3.39, 3.18, 3.34, 3.15, 3.22, 3.31, 3.54, 3.37, 3.71, 3.53, 3.26, 3.55, 3.0, 3.13, 3.1, 3.16, 2.9, 3.32, 3.36, 3.41, 3.38, 3.45, 3.23, 3.22, 3.14, 2.94, 3.4, 3.07, 3.24, 3.28, 3.23, 3.12, 3.36, 2.93, 3.21, 3.03, 3.1, 3.39, 3.28, 3.08, 3.02, 3.38, 3.2, 3.07, 3.34, 3.22, 3.6, 3.22, 3.18, 3.51, 3.03, 3.36, 3.66, 3.42, 3.14, 3.27, 3.21, 3.13, 2.98, 2.95, 3.26, 3.22, 3.23, 3.42, 3.2, 3.15, 3.25, 3.21, 3.14, 3.17, 3.24, 3.12, 3.15, 3.15, 2.93, 3.32, 3.14, 3.16, 3.38, 3.18, 3.01, 3.31, 3.28, 3.23, 3.28, 3.38, 3.56, 3.22, 3.49, 3.04, 2.91, 3.55, 3.39, 3.11, 3.27, 3.71, 3.17, 3.26, 3.06, 3.57, 3.26, 3.15, 3.28, 3.13, 3.14, 3.24, 2.94, 3.34, 3.12, 3.26, 3.23, 3.09, 3.19, 3.47, 3.21, 3.7, 3.37, 3.38, 3.38, 3.54, 3.15, 3.14, 3.4, 3.05, 3.19, 2.97, 3.09, 3.42, 3.03, 3.62, 3.37, 3.16, 3.16, 3.12, 3.29, 3.03, 3.2, 3.4, 2.95, 3.24, 3.53, 3.3, 3.47, 2.86, 3.15, 3.52, 3.22, 3.36, 2.98, 3.12, 3.25, 3.15, 2.93, 2.88, 3.27, 3.48, 3.22, 3.16, 3.01, 3.23, 3.34, 3.21, 3.13, 2.92, 3.32, 3.29, 3.04, 3.2, 3.24, 3.11, 3.02, 3.16, 3.46, 3.3, 3.18, 3.28, 3.14, 3.2, 3.14, 3.18, 3.3, 3.53, 2.87, 3.32, 3.28, 3.33, 3.1, 3.33, 3.23, 3.26, 2.89, 3.11, 3.06, 3.35, 3.33, 3.29, 3.38, 3.16, 3.12, 3.17, 3.44, 3.09, 3.0, 3.18, 3.22, 3.44, 3.14, 3.26, 3.1, 3.12, 3.27, 3.25, 3.39, 3.3, 3.06, 3.45, 3.22, 3.42, 3.52, 3.46, 3.34, 2.94, 3.23, 3.21, 3.12, 3.27, 3.11, 3.35, 3.22, 3.44, 3.38, 3.24, 3.16, 3.29, 3.16, 3.12, 3.06, 3.2, 3.08, 3.2, 2.96, 3.16, 3.42, 3.09, 3.11, 3.12, 3.29, 3.14, 3.27, 3.09, 3.33, 3.45, 3.48, 3.45, 3.51, 3.25, 3.12, 3.17, 3.13, 3.14, 3.12, 2.96, 3.23, 3.08, 3.24, 3.15, 3.33, 3.12, 3.29, 3.37, 3.27, 3.11, 3.22, 3.28, 3.4, 3.34, 3.12, 3.17, 3.45, 3.32, 3.05, 3.38, 3.32, 3.2, 3.27, 3.21, 3.32, 3.31, 3.19, 3.28, 3.12, 3.18, 3.12, 3.26, 3.25, 3.11, 3.15, 3.57, 2.98, 3.08, 3.49, 3.18, 3.06, 3.07, 3.04, 3.18, 3.21, 3.16, 3.21, 3.03, 3.28, 3.29, 3.11, 3.39, 3.24, 3.36, 3.54, 3.26, 2.98, 3.34, 3.09, 2.96, 3.11, 3.35, 3.13, 3.24, 3.23, 3.09, 2.99, 3.31, 3.09, 3.11, 2.94, 3.1, 3.26, 3.29, 3.26, 2.96, 3.08, 3.01, 3.41, 3.37, 3.2, 3.0, 3.09, 3.18, 3.18, 3.38, 3.41, 3.35, 3.11, 3.49, 3.36, 3.22, 3.02, 3.1, 3.17, 3.29, 3.22, 2.96, 3.18, 3.17, 3.08, 3.22, 3.36, 3.38, 3.43, 3.04, 3.12, 3.42, 3.06, 3.03, 3.35, 3.32, 3.34, 3.08, 3.05, 3.11, 3.08, 3.36, 3.44, 3.68, 2.93, 3.05, 3.13, 3.36, 3.1, 3.36, 3.2, 3.17, 3.08, 3.22, 3.3, 2.94, 3.21, 3.03, 3.05, 2.97, 3.36, 3.49, 3.54, 3.26, 3.34, 3.2, 3.25, 3.61, 3.05, 2.93, 3.12, 3.19, 3.22, 3.37, 3.36, 3.25, 3.42, 3.25, 3.02, 3.23, 3.32, 3.28, 3.2, 3.15, 3.14, 3.13, 3.16, 3.42, 2.94, 2.99, 3.21, 3.14, 3.37, 3.22, 3.39, 3.54, 2.95, 3.23, 2.87, 3.52, 3.02, 3.27, 3.21, 3.07, 3.23, 3.3, 3.14, 3.15, 3.08, 3.15, 3.09, 3.1, 3.2, 3.34, 3.05, 3.22, 3.15, 3.04, 3.4, 3.28, 3.28, 3.44, 3.24, 3.27], \"xaxis\": \"x\", \"y\": [0.8156061324462894, 0.42491310922683634, 0.8867827646463432, 0.8014995238430205, 0.30499958310650876, 0.5817355832705369, 0.959171062334887, 0.7854416128369749, 0.9085690698200813, 0.8998600376511439, 0.6341165000693628, 0.412102187638673, 0.7643629411050379, 0.4710001938005606, 0.40182653035141874, 0.40438056362905367, 0.8870480016118494, 0.3650667978415713, 0.9064321709292111, 0.9327245345966092, 0.6458420185168736, 0.8821841129047617, 0.6704018506542557, 0.7655671181822064, 0.8616986618932058, 0.48774537944210006, 0.9637355036179479, 0.6794204065079696, 0.6044835155949141, 0.7867954023600708, 0.9137982268836646, 0.5867502063434873, 0.8048584290077971, 0.9718511071053526, 0.9627192884041744, 0.7978623718349598, 0.6091120966723917, 0.8943338178728011, 0.8853376735027229, 0.9045563504021151, 0.9264844632598176, 0.6342457655367447, 0.9414033426130164, 0.5636516403732365, 0.5172967922101196, 0.4836896337264441, 0.35199620689495453, 0.788779954566273, 0.9696552399248426, 0.772496554239754, 0.8132656157621138, 0.4539090261140653, 0.9333708926412786, 0.679765045723866, 0.48457442622955804, 0.4248820606938153, 0.6737819616086004, 0.8780741425819777, 0.38340602447337646, 0.90634085684919, 0.5574014604752268, 0.6804147683859246, 0.9077110088845216, 0.7718472635729894, 0.4717552048891654, 0.22222808308441652, 0.8616549355667619, 0.705749071892896, 0.4699129352300819, 0.9680524782819758, 0.8891353183282249, 0.9466602521798594, 0.8553382520847058, 0.7430243903066251, 0.6616131862201935, 0.6919609500216202, 0.96565744679506, 0.913108907487878, 0.5395521774612226, 0.9026238558501023, 0.6550941529376255, 0.9757876320152292, 0.8833495792027257, 0.6666029765862381, 0.8504582120840628, 0.9320215595878566, 0.7639947574915884, 0.6085229656221847, 0.9557131606798471, 0.46184432615952054, 0.5642658412077981, 0.8815615400732472, 0.7189203536918151, 0.9301020530176726, 0.7341394174346678, 0.7759189559372703, 0.8448078654733812, 0.9012666081120407, 0.8926028620066223, 0.5287492720273277, 0.6874206920638863, 0.37408584674942635, 0.8348370105186077, 0.8697567261320243, 0.9175759024810304, 0.44644098895981, 0.8874384748400057, 0.7787567487441118, 0.9416122482572158, 0.3265229243180111, 0.9308095750950773, 0.42267134533232753, 0.43068181214270274, 0.8727308285810839, 0.7201611177732586, 0.8430904589044517, 0.8140617541555761, 0.9456747441572588, 0.6672663325862807, 0.8756470416862959, 0.518871521713375, 0.7040615347784164, 0.4957960231649875, 0.6250130361556073, 0.27413726132188326, 0.5193133578087885, 0.37656641690434584, 0.5808048103476511, 0.7917827117482167, 0.36569143480873245, 0.7232542293832885, 0.9785934574433302, 0.5715075300165849, 0.8182555969893297, 0.5448461144048058, 0.9491291995847589, 0.4833587957991669, 0.3189279754564957, 0.9184825510014271, 0.5524830505676419, 0.9600429304649183, 0.7818180966165994, 0.7962710274484252, 0.7569429870375118, 0.46184432615952054, 0.7641514270390748, 0.9486763575522457, 0.8086368705092697, 0.6784536879503494, 0.6877019790624462, 0.6082670858563528, 0.6053794617794684, 0.6319330693089359, 0.4982105707488519, 0.6787928880949093, 0.9231980717613485, 0.8831230955067948, 0.6845485656817341, 0.8799204262605215, 0.9164563829924386, 0.7819268199067826, 0.23469888428232324, 0.9492377841603665, 0.8826092272015389, 0.6360541596480074, 0.5184081252698399, 0.6400126753125241, 0.542646305979658, 0.4479501208302092, 0.7783171875827786, 0.7867712153112567, 0.5236605417423803, 0.6959846197179591, 0.7925023358445066, 0.6683189355892497, 0.18737025221649042, 0.42506327048176057, 0.7272596040941706, 0.7314191754306454, 0.4827891324637794, 0.6649341228620356, 0.9038332731164471, 0.9588917860646077, 0.8945194928389463, 0.49833043835950624, 0.7997712594855277, 0.8577935987172323, 0.7622736922026153, 0.8039391974899521, 0.7396811504731934, 0.8115340233127679, 0.801728888664367, 0.738451208106372, 0.5859674792922007, 0.1865203674848816, 0.8773430435604171, 0.36888329310067386, 0.8651817982269884, 0.9067615420962557, 0.8594983988587351, 0.7437750884018276, 0.9145224932934428, 0.9135679891815164, 0.8001832456898428, 0.6860977766129374, 0.9377826008632761, 0.9300369611912853, 0.6997062971069969, 0.5693182102579236, 0.3404656140239559, 0.7160591142088384, 0.7953146078011, 0.8869803873277935, 0.7639982823097876, 0.8681285227071118, 0.576868797021353, 0.93035102563313, 0.8375600281828176, 0.8279918435672958, 0.9266689436294401, 0.7559862346636359, 0.5099889666930224, 0.6914445842613687, 0.9651950326885705, 0.87851968214492, 0.8499702807396289, 0.4685752957996948, 0.7241546992314323, 0.7848147251007912, 0.7341394174346678, 0.7008877443692281, 0.340588975625529, 0.5013021766499856, 0.8321174529331695, 0.8818378666553491, 0.9176909075187759, 0.8634678749265305, 0.7436082905772717, 0.9343776659412377, 0.7668809937296346, 0.6243383802582345, 0.5332560471205093, 0.6907315465649003, 0.16626803588025432, 0.1668542888532837, 0.7408943843163458, 0.5221312328975666, 0.7457559475413279, 0.46389636934606376, 0.9292627865919654, 0.5268311186840582, 0.4244151934213653, 0.643310536612302, 0.8577438313980266, 0.7816208399762355, 0.8553382520847058, 0.7010035672814305, 0.5242572272016158, 0.9187320011579697, 0.8703498177621264, 0.6713045345576062, 0.9137982268836646, 0.8614414457916845, 0.9445662266054761, 0.8808216590199034, 0.7386378115490353, 0.8873009977622293, 0.9157094897337859, 0.6606038558129893, 0.9296803968514485, 0.8864322240790464, 0.5146720135715994, 0.8720710714485208, 0.9415427660945741, 0.9138701141498735, 0.6527559092576063, 0.8751970040938668, 0.9249766460056568, 0.801728888664367, 0.6575848465963361, 0.6934824043184128, 0.8619113960143526, 0.9419078024651042, 0.9591721389341828, 0.8397407150753159, 0.9084383840076588, 0.4963969309336195, 0.7359588175524252, 0.3531961907069324, 0.9279819479140234, 0.7752976919572294, 0.8665226278427577, 0.9515211055933231, 0.7314191754306454, 0.890886918514299, 0.3235491032739525, 0.3719939405423586, 0.6323804178173072, 0.8398006965792015, 0.8239469134189235, 0.8592101816891015, 0.7615002907198236, 0.8688259750909261, 0.8718104001390852, 0.5838074755684882, 0.8756470416862959, 0.901850575196968, 0.9451930143658351, 0.6253812669856891, 0.5890764576710766, 0.4921052500998711, 0.4862070578416567, 0.9170647663398394, 0.7035583451969506, 0.8476385889092957, 0.5603058978573646, 0.5810606890504925, 0.9088604673919816, 0.8903252600075929, 0.944267921154058, 0.9435968591480925, 0.938237366988842, 0.9357286047893738, 0.7961386682142712, 0.7840233885688647, 0.2513590507613302, 0.7389284097502917, 0.9053472250810051, 0.44438282424164377, 0.862281110352348, 0.8021059248496223, 0.9152740930046814, 0.643737358401971, 0.8540304955499701, 0.8613418170006786, 0.6911084183178322, 0.8848367871057808, 0.8387883096682573, 0.5942651630821018, 0.65691393717736, 0.6369979527510315, 0.8280658524313272, 0.9640736168216585, 0.6546311715671466, 0.5599819536107853, 0.48348053317652906, 0.7668016587569692, 0.03620763244300767, 0.7364400865449663, 0.37408584674942635, 0.8767503774172, 0.8743962287172513, 0.8751970040938668, 0.8833495792027257, 0.7091886355621774, 0.87006937054451, 0.7904001815220257, 0.8761418339280951, 0.8306834851111597, 0.7531715889012326, 0.38181207472529843, 0.6490458991820136, 0.9138057013338913, 0.9046222904886461, 0.17956061692355052, 0.7506163079023257, 0.8963285795381793, 0.8848361664653354, 0.9283037217377402, 0.45996158699034445, 0.7290858434196763, 0.8319094967702583, 0.6578018675312727, 0.18727567457681707, 0.8673410249845035, 0.9453298670648187, 0.9446538464906173, 0.19605573045952288, 0.6723831041639817, 0.3438281302059518, 0.37858973820495484, 0.6953170483296187, 0.21463507152544156, 0.26963792069965237, 0.3280912492037974, 0.8399932187801539, 0.420387898633768, 0.36522500752858966, 0.5810560693343539, 0.9306346767722963, 0.7167716539092029, 0.656736106921484, 0.5549139996760648, 0.6909161521388689, 0.591904263202073, 0.884703171197362, 0.866402281883595, 0.7582770814524421, 0.8990773411030794, 0.1818065866116437, 0.6222165686186035, 0.17261914235374884, 0.8156064679757086, 0.4851213943917703, 0.8871292211128762, 0.8398494053952754, 0.703270618172154, 0.6305543892506115, 0.7494149477175548, 0.1532408287022325, 0.6159732902773407, 0.738220551127759, 0.8354520044441791, 0.8536870432671441, 0.5751476712690671, 0.9077719201719568, 0.7878515691455199, 0.6672663325862807, 0.45293736875445273, 0.17058553029544155, 0.747933377844996, 0.8400163125056676, 0.4516778718827729, 0.6082670858563528, 0.8401843469141149, 0.7636885291754726, 0.789170795337903, 0.8128612802083497, 0.7522530659814418, 0.8086757686066508, 0.8356255123032285, 0.9241779635105248, 0.9674588597049086, 0.9368885694202199, 0.4990764491242286, 0.876561204324957, 0.554264192243629, 0.5967716244634195, 0.9060244606340249, 0.8401608718856799, 0.7329750583133859, 0.8021769878309102, 0.9316817655017511, 0.45488322534173153, 0.798578398438993, 0.7425236774748816, 0.5742682328784404, 0.4937681935814938, 0.8972164286692267, 0.8914273370768748, 0.9377613518261881, 0.8862258850530264, 0.8591757581361523, 0.7410678096850266, 0.6822336012657398, 0.9201658505843877, 0.6982578893131915, 0.5746709232170782, 0.7626532952948841, 0.7137703530889916, 0.7520971196461234, 0.4473853625959922, 0.7957460056304991, 0.4833174871501707, 0.8758467705785958, 0.4689303842787964, 0.6133612564737879, 0.8568681391705205, 0.6835133967314007, 0.9732070839986944, 0.21435716257549006, 0.5761668962420043, 0.4055433603128916, 0.3743394998756179, 0.9118635774953143, 0.964551884718591, 0.9306459334511011, 0.8424802355113449, 0.7739144871152517, 0.6872688771534424, 0.8590561833388345, 0.6714384475466295, 0.6408669500407106, 0.5203550269219845, 0.2856853969697174, 0.857760555506807, 0.9307094503226838, 0.6787928880949093, 0.8308635255795866, 0.29271374211533296, 0.6769315553524353, 0.23831547366416572, 0.5895099457120908, 0.8994675076574448, 0.8893400405584444, 0.8456825404777587, 0.5399612081435882, 0.6188649121485582, 0.9281492942813848, 0.7611740601422801, 0.46550237374781617, 0.8896861436466836, 0.9038901015569306, 0.5044440900554997, 0.9215480939667524, 0.6930273792518707, 0.8723244804196287, 0.5624338775604165, 0.9226297661236537, 0.8469231754225917, 0.9430557295321259, 0.9097116306258912, 0.5988707702267543, 0.3813853072548755, 0.8843832309478876, 0.9006952500629406, 0.918975987201669, 0.18997930334445084, 0.8923106748541326, 0.8461388699436441, 0.5973439234355874, 0.9544642924744549, 0.91770416680597, 0.9177239854204658, 0.17584552180125673, 0.9240099144459667, 0.48524948024905407, 0.8889685222180134, 0.5785503824403398, 0.7511953459672914, 0.6887596776945688, 0.6717539058356753, 0.7168761391602206, 0.7134478068952186, 0.834626350903405, 0.5715867980362679, 0.6588392688727011, 0.9488572786900573, 0.8920529250761863, 0.8891353183282249, 0.707981940789761, 0.926348680038428, 0.631489487929038, 0.7443856388661001, 0.9260754381930228, 0.9544642924744549, 0.8497401318990601, 0.5604010177433062, 0.8036334301115304, 0.7898153537185114, 0.8491431337122072, 0.6570881560807702, 0.8389599143569951, 0.7944137576415592, 0.8132668978866627, 0.44714680104169846, 0.7978021044641371, 0.41921696608658454, 0.38876183891604754, 0.9248463736054193, 0.4277915265084825, 0.6345107008491314, 0.8008942533173764, 0.5087430598332189, 0.9414938992689892, 0.6922115882765215, 0.8296175750175913, 0.8593339228153332, 0.8975141534758351, 0.5977126281557783, 0.9279478536756302, 0.6485770817571253, 0.8905823996589662, 0.9332072841984264, 0.9432461110830079, 0.9410120781436498, 0.6339696776630096, 0.7120962557761497, 0.5841709037351369, 0.5928970840420333, 0.9006589732900512, 0.936371533648048, 0.6907852379101131, 0.7675780198071424, 0.9444587893431046, 0.4702336163336472, 0.8925536722101626, 0.8158978708906081, 0.822780392485108, 0.8037335327290217, 0.8382351003285965, 0.8941557358589171, 0.4796498334522667, 0.926348680038428, 0.6842118015950474, 0.6463580983468415, 0.8292048071278182, 0.5834426687867836, 0.8419845362148763, 0.2431563391580561, 0.7763142135369961, 0.9390550746437164, 0.7774903237071782, 0.8141232663130791, 0.9444089886680379, 0.430401459478284, 0.9192677156927759, 0.8427595869840984, 0.87120858451521, 0.5693182102579236, 0.820012080301976, 0.58719119911586, 0.42769376643096113, 0.3542595869275313, 0.89579938191327, 0.8743523014696554, 0.7820497043505815, 0.5279069501129625, 0.8869579700149332, 0.45488774279476296, 0.8514781135508903, 0.8278297091497892, 0.663749097381813, 0.5132851713944618, 0.4906566565015208, 0.6415219885510332, 0.6991293681294938, 0.8150539074042624, 0.5800669536763935, 0.9583771200922359, 0.7366090055976814, 0.5747817696023392, 0.5315376696882942, 0.8074446941396305, 0.9038901015569306, 0.9087015650331977, 0.6697291810323083, 0.5800669536763935, 0.8807270543114014, 0.5135845984304893, 0.9352791850238339, 0.36120709973337456, 0.6206709330576408, 0.906286252315459, 0.7937202818717513], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [3.16, 3.03, 3.03, 3.45, 3.15, 3.46, 3.34, 3.36, 3.16, 3.18, 3.3, 3.25, 3.02, 3.24, 3.32, 3.24, 3.3, 3.5, 3.06, 3.53, 3.19, 3.26, 3.54, 2.94, 3.6, 3.26, 3.27, 3.29, 3.1, 3.3, 3.48, 3.01, 3.66, 3.19, 3.0, 3.15, 2.96, 3.2, 3.04, 3.08, 3.02, 3.39, 3.27, 3.15, 3.19, 3.3, 3.32, 3.4, 3.23, 3.32, 3.09, 3.08, 3.2, 3.19, 3.11, 2.96, 3.17, 3.28, 3.14, 3.26, 3.19, 3.58, 3.43, 3.34, 3.13, 3.26, 3.22, 3.27, 3.61, 2.79, 3.09, 3.27, 3.05, 3.21, 3.1, 3.16, 3.08, 3.28, 3.2, 3.11, 2.98, 3.05, 3.12, 3.39, 3.11, 3.24, 3.14, 3.26, 3.17, 3.01, 3.27, 3.31, 3.15, 3.05, 2.96, 3.18, 2.98, 3.14, 3.15, 3.27, 3.01, 3.52, 3.35, 3.22, 3.29, 3.08, 3.16, 3.37, 3.27, 3.22, 3.37, 3.37, 3.41, 3.34, 3.49, 3.11, 3.16, 3.32, 3.06, 3.15, 3.09, 3.41, 3.22, 3.11, 3.1, 3.05, 3.29, 3.1, 3.23, 3.16, 2.89, 3.43, 3.1, 3.22, 3.11, 3.17, 3.13, 3.26, 3.09, 3.25, 3.07, 3.18, 3.28, 3.14, 3.14, 3.02, 3.44, 3.11, 3.14, 3.32, 3.13, 3.45, 2.92, 3.46, 2.99, 3.25, 3.2, 3.25, 3.46, 2.97, 3.15, 3.14, 3.05, 3.16, 3.34, 3.18, 3.18, 3.26, 2.96, 3.08, 3.12, 3.22, 3.37, 2.99, 3.22, 3.24, 3.33, 3.2, 3.46, 3.01, 3.24, 3.54, 3.28, 3.13, 3.1, 3.21, 3.12, 3.01, 3.28, 3.12, 3.02, 3.01, 3.08, 3.14, 3.16, 3.34, 3.08, 3.16, 3.06, 3.07, 3.3, 3.16, 3.16, 3.15, 3.63, 3.09, 3.22, 3.21, 3.72, 3.09, 3.14, 3.5, 3.04, 3.06, 3.18, 3.24, 3.11, 2.97, 2.94, 2.87, 2.88, 3.5, 3.06, 2.96, 3.1, 3.11, 3.34, 3.02, 3.22, 3.49, 3.33, 2.94, 3.5, 3.1, 3.16, 2.92, 3.39, 3.39, 3.15, 3.02, 3.24, 3.11, 3.03, 3.12, 3.5, 3.15, 3.22, 3.18, 3.24, 3.24, 3.41, 3.14, 3.66, 3.39, 3.1, 3.09, 3.17, 3.41, 3.14, 3.16, 3.05, 3.14, 3.39, 3.0, 3.16, 3.21, 3.77, 3.74, 3.42, 3.29, 3.44, 3.08, 3.21, 3.11, 3.19, 3.31, 3.44, 3.0, 3.13, 3.29, 3.34, 3.59, 3.17, 3.29, 3.15, 3.16, 2.9, 3.28, 3.08, 3.25, 3.06, 3.12, 3.24, 3.51, 3.3, 2.94, 3.13, 3.29, 3.08, 3.23, 3.68, 3.28, 3.36, 3.25, 3.31, 3.08, 3.12, 3.34, 3.04, 3.03, 3.06, 3.22, 3.59, 3.18, 3.38, 3.09, 3.1, 3.31, 3.22, 3.66, 3.32, 3.19, 3.36, 3.28, 3.15, 3.14, 2.98, 3.19, 3.29, 3.22, 2.93, 3.38, 3.35, 3.2, 3.25, 3.09, 3.13, 3.05, 3.1, 3.23, 3.3, 3.21, 3.24, 3.18, 3.24, 3.48, 3.53, 3.14, 3.38, 3.08, 3.04, 3.34, 3.06, 3.63, 3.09], \"xaxis\": \"x\", \"y\": [0.2802292104526322, 0.9455194119275858, 0.4978743212349556, 0.5289145624519528, 0.28439238707197784, 0.2033309570226689, 0.27345747478543325, 0.8322873304845451, 0.389055896812549, 0.3675472469853882, 0.5781933746273124, 0.7401955299744071, 0.44969671697605845, 0.4367887814338696, 0.31593955341667695, 0.3775624358859999, 0.19282181046294666, 0.048451763306065584, 0.6005928650583868, 0.032225376113695775, 0.427412413738938, 0.23973251442015217, 0.13890126550157303, 0.8613925272127, 0.329663916828638, 0.19359965390713213, 0.6827271716759634, 0.1960905505555538, 0.08135735686643118, 0.39737240301928484, 0.13902987396822816, 0.6514166433739288, 0.6994753721471061, 0.7140886736258081, 0.5021795028970708, 0.48743245558712556, 0.5731139673640956, 0.8820820642542792, 0.559972149724866, 0.5061565591493914, 0.5066810377847554, 0.833805652807593, 0.6979972163580744, 0.3177574231538272, 0.13068190592986567, 0.758876109553896, 0.5681062961269688, 0.715544821914063, 0.762062625203523, 0.4464438677531786, 0.20995974230910305, 0.5262622410710028, 0.39442669669188163, 0.2537324982988368, 0.6775437642744659, 0.23876321589577687, 0.6369158982934647, 0.38960060362966165, 0.6034323722874255, 0.7769991715799629, 0.15199748354041337, 0.5641412449951732, 0.7590466800561823, 0.5969347905931296, 0.1048362779837843, 0.7217824369593382, 0.2662339163773806, 0.16472378978351135, 0.37760124376932414, 0.7071736299639594, 0.3436862995931572, 0.8384434752264291, 0.3635333644877426, 0.7813188949129265, 0.7279369976219869, 0.5641098847382463, 0.3863964747623771, 0.9209913370067284, 0.1477144681640183, 0.8809374658555192, 0.6533168894759348, 0.8873477284758582, 0.3697306267878623, 0.28319023347825867, 0.5203701741750857, 0.5523747693308857, 0.6387521731780509, 0.3881380695009739, 0.8487896327149285, 0.4636606453307818, 0.8384434752264291, 0.558266603669778, 0.21657231888677728, 0.3635333644877426, 0.5512671313974766, 0.5051039398599867, 0.5827915753039158, 0.49441682850108926, 0.47309171914705017, 0.6262595591688196, 0.5508242483721094, 0.47332791509789995, 0.7117569366896692, 0.3933786516273859, 0.16465066549244003, 0.7490394132223248, 0.769261050002088, 0.7431932405995126, 0.3141000916210982, 0.723735045552473, 0.6484132891031948, 0.688519894019609, 0.40496704226994307, 0.5803736122960511, 0.6327801522745691, 0.45115706990411364, 0.37268733756108086, 0.9009693101135351, 0.06496389958099598, 0.44431713201158524, 0.39960831974332744, 0.8662156944598043, 0.31018081106061823, 0.5339551117365043, 0.33311273919547707, 0.400132762133902, 0.8528754522806217, 0.14419347879543085, 0.11672350429510901, 0.44556702529145975, 0.6160120899414699, 0.13766892845409207, 0.5517204028384314, 0.5232178919035022, 0.35483403305733974, 0.4900213704561591, 0.8854578072659228, 0.43084122675663034, 0.7601186327653665, 0.14072030431570776, 0.6186690618327106, 0.5245054232921349, 0.7326259458716644, 0.5690781983520095, 0.4018508815425063, 0.24877469563805235, 0.7952501197393639, 0.8766221356386195, 0.303451532996695, 0.5357745481647883, 0.7096524147827454, 0.20877177283968149, 0.8635610141758273, 0.46736762313881036, 0.6061151992073851, 0.113015272873705, 0.40446014603085867, 0.6332606063976143, 0.648705381890928, 0.42186952587750404, 0.8047913565308571, 0.3017058309841093, 0.38406990132164637, 0.33494193042999065, 0.19929939967121216, 0.8624919783238055, 0.528785836409086, 0.43084122675663034, 0.47042159929499583, 0.5061565591493914, 0.5759491569657543, 0.8468794444363914, 0.20342296359496542, 0.5170831534483544, 0.3666753044655067, 0.6131723001375537, 0.4410646109528086, 0.6903416342484309, 0.3866428492574258, 0.4636606453307818, 0.4525459302795702, 0.03199256040434073, 0.7029629492254846, 0.2433141614541866, 0.548755973819273, 0.3775060302547258, 0.06593060991448157, 0.8745624549148976, 0.22931948662359403, 0.27267688907931714, 0.589328430619086, 0.8007160756317941, 0.5525637789187225, 0.5008522318356121, 0.4556212410144909, 0.17391722008742402, 0.43574637053357784, 0.3237440077649342, 0.6071692164257629, 0.6925152430641841, 0.592675381607996, 0.43854150134957587, 0.43854150134957587, 0.42437112972565305, 0.8061118855433299, 0.35195592295594336, 0.7605370065149419, 0.38898578429124253, 0.67510953655807, 0.872979709380305, 0.710510994258769, 0.720290290780972, 0.4820787970895852, 0.42019280799979697, 0.4304380754474639, 0.25285023254778977, 0.3238056884730761, 0.39471961640683584, 0.09510031985475974, 0.367046376808582, 0.21500793651835448, 0.8705359023101334, 0.6100742529031461, 0.6226449432624995, 0.7279369976219869, 0.3643494054700089, 0.09992017521484964, 0.41475515148757036, 0.6462260464983366, 0.14102909592513518, 0.48949585696458414, 0.5239520436918008, 0.6084413884537807, 0.5655473856702703, 0.9517420512476797, 0.7489379515982664, 0.4647937384849751, 0.7915321263825208, 0.44112279258530757, 0.5734340256727429, 0.6604471727860799, 0.4845203185458914, 0.6968730453869196, 0.5315374962198609, 0.8685951485887234, 0.6242442748350044, 0.2912097196987059, 0.7725938221565348, 0.2067629769731588, 0.30221725334927335, 0.13129342562285412, 0.6467789443522378, 0.6994753721471061, 0.11825382206919556, 0.41022417118631593, 0.4882665226122541, 0.7732287086973071, 0.25374762405010176, 0.49441682850108926, 0.3723877205427743, 0.652330313245635, 0.43667799883041203, 0.5964718913578133, 0.55172276504346, 0.24113559934961917, 0.8243980268882987, 0.7263843594269437, 0.43535214809021755, 0.8721122798612579, 0.18723914490145582, 0.6486906676970999, 0.11576704656818047, 0.4328241622975616, 0.491481212420291, 0.5264345378086769, 0.33856526784971647, 0.2967410926251248, 0.581398831228375, 0.5973776665460488, 0.6195406102170065, 0.37782717658841725, 0.323061133240968, 0.17420808473594895, 0.19634770547538957, 0.46492234760650425, 0.49613167963272686, 0.5812209036149294, 0.6057291775435286, 0.63414717387345, 0.5702687187355167, 0.8604975146328253, 0.6309022132706124, 0.48732991249542923, 0.6887148870948692, 0.41581945293096145, 0.5706760596351739, 0.4831274653996314, 0.06684727567316755, 0.49090643211649887, 0.15191610726090596, 0.2711405311223577, 0.7653618545702112, 0.09266565137124261, 0.4554350627407873, 0.19698919164573708, 0.6930185080649685, 0.5227537922811563, 0.50434568709929, 0.7082092780767422, 0.46058046365566996, 0.6735723234187477, 0.4285936050615775, 0.323061133240968, 0.5168500865319015, 0.6161307914674419, 0.23456444218973552, 0.3192004782541023, 0.21968945907811915, 0.5028183230931117, 0.43371621376298963, 0.6744209213341115, 0.5940260419772637, 0.13783310426722128, 0.5136444387530009, 0.5508647999875032, 0.4955911012838212, 0.9814394195009358, 0.8260225289794664, 0.17965956338109995, 0.46844896472597397, 0.6048119589659149, 0.3289160319090978, 0.2454606394453749, 0.7497022835596558, 0.683485355417811, 0.20995974230910305, 0.23504578258460665, 0.37175956099497537, 0.4875530438829156, 0.24982584224249993, 0.6282829625348888, 0.4520795162158371, 0.8200372413039435, 0.12832513643528837, 0.5299630655130737, 0.29552777318700446, 0.24021937552346023, 0.5429028773737552, 0.6311869746243346, 0.4145977043912777, 0.39329840463575844, 0.39070335653410526, 0.4286990948130573, 0.846836560604146, 0.6880850122626078], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (curr)\", \"type\": \"scatter\", \"x\": [3.03, 3.09, 3.09, 3.17, 3.21, 3.19, 3.19, 3.06, 2.96, 3.38, 3.28, 3.13, 3.16, 3.18, 3.46, 3.14, 3.32, 3.06, 3.41, 3.01, 3.14, 3.1, 3.13, 3.32, 3.14, 3.07, 2.97, 3.3, 3.08, 3.36, 2.96, 3.3, 3.37, 3.23, 2.96, 3.09, 3.21, 2.86, 3.23, 3.46, 2.99, 3.13, 3.14, 3.06, 3.21, 3.46, 3.16, 3.59, 2.93, 3.35, 3.29, 3.29, 3.16, 2.96, 3.32, 3.28, 2.87, 3.68, 3.41, 2.9, 3.41, 3.04, 3.2, 2.99, 3.08, 3.32, 3.4, 3.39, 3.3, 3.29, 3.07, 3.26, 3.27, 3.38, 3.25, 3.16, 3.19, 3.13, 3.29, 3.27, 3.11, 3.11, 3.34, 2.99, 3.08, 3.22, 3.47, 3.06, 3.2, 3.3, 3.26, 3.03, 3.42, 3.0, 3.17, 3.16, 3.07, 3.03, 3.2, 3.56, 3.02, 3.34, 3.4, 2.98, 3.07, 2.93, 3.27, 3.34, 3.36, 3.31, 3.15, 3.15, 3.0, 3.21, 3.27, 3.37, 3.75, 3.22, 3.05, 3.37, 3.41, 3.24, 3.21, 3.26, 3.29, 3.27, 3.43, 3.29, 3.34, 2.91, 3.05, 3.38, 3.14, 3.02, 3.32, 3.01, 3.2, 3.31, 3.27, 3.3, 3.13, 3.61, 3.1, 3.2, 3.16, 3.18, 3.07, 3.38, 2.99, 3.0, 3.19, 3.06, 3.19, 3.06, 3.21, 3.09, 3.26, 3.23, 3.2, 2.98, 3.25, 3.45, 3.04, 3.39, 3.07, 2.95, 3.15, 3.22, 3.34, 3.03, 3.42, 2.94, 3.17, 3.38, 3.38, 3.28, 3.3, 3.03, 3.18, 3.31, 3.38, 3.22, 3.27, 3.3, 3.22, 3.32, 3.41, 3.29, 3.0, 3.41, 2.99, 3.0, 3.27, 3.16, 3.41, 3.19, 2.9, 3.51, 3.07, 3.43, 2.93, 3.45, 3.25, 3.14, 2.96, 3.36, 3.18, 3.17, 3.42, 3.24, 3.24, 3.36, 3.39, 3.25, 3.1, 3.15, 3.2, 3.31, 3.54, 3.13, 3.24, 3.36, 3.42, 3.2, 3.24, 2.96, 3.38, 3.12, 3.33, 3.27, 3.53, 3.26, 3.11, 3.35, 3.22, 3.34, 3.1, 3.27, 2.98, 3.23, 3.3, 3.05, 2.95, 3.81, 3.37, 3.1, 2.94, 3.1, 3.51, 3.19, 3.29, 2.99, 3.28, 3.32, 3.05, 3.2, 3.26, 3.17, 2.97, 3.44, 3.35, 3.29, 3.51, 3.31, 3.23, 3.28, 3.31, 2.91, 3.22, 3.14, 3.2, 3.24, 3.04, 3.18, 3.42, 3.5, 3.45, 3.42, 3.47, 3.52, 3.06, 2.97, 3.28, 3.25, 3.12, 3.23, 3.15, 3.24, 3.34, 3.2, 3.26, 3.19, 3.34, 3.1, 3.03, 3.22, 3.07, 3.33, 3.2, 3.23, 3.03, 3.11, 2.92, 3.38, 3.01, 3.4, 3.36, 3.1, 3.09, 2.88, 3.23, 3.26, 3.56, 3.09, 3.31, 3.76, 3.1, 3.14, 3.14, 3.02, 3.17, 3.19, 3.49, 3.42, 3.32, 3.16, 3.11, 3.28, 3.12, 3.36, 3.35, 2.88, 3.36, 3.11, 2.96, 2.99, 3.29, 3.18, 3.12, 3.33, 3.17, 3.34, 3.52, 3.39, 3.32, 3.11, 3.4, 3.45, 3.42, 3.05, 3.14, 3.22, 3.12, 3.06, 3.08, 3.36, 3.28, 3.17, 3.15, 3.4, 3.03, 3.33, 3.34, 2.94, 3.21, 3.24, 3.22, 3.54, 3.25, 3.1, 3.2, 3.29, 3.21, 3.03, 3.07, 3.35, 3.16, 3.18, 3.3, 3.44, 3.07, 3.13, 3.06, 3.22, 3.19, 3.48, 2.94, 3.33, 3.3, 3.24, 3.24, 3.19, 3.55, 3.18, 3.32, 3.36, 2.97, 3.17, 3.3, 3.3, 3.4, 3.3, 3.2, 2.85, 3.32, 3.42, 3.33, 3.3, 2.96, 3.12, 3.26, 3.49, 3.0, 3.12, 3.12, 3.37, 3.06, 3.17, 3.15, 3.14, 3.31, 3.27, 3.24, 3.4, 2.98, 3.06, 3.15, 3.0, 3.41, 3.16, 3.05, 3.8, 3.09, 3.15, 3.32, 3.43, 3.37, 3.01, 3.34, 3.0, 3.14, 3.57, 3.11, 3.04, 3.06, 2.94, 3.7, 3.18, 3.39, 3.2, 3.14, 3.34, 3.34, 3.16, 2.94, 3.41, 3.2, 3.29, 3.6, 3.28, 3.04, 3.2, 3.3, 3.06, 3.03, 3.52, 3.16, 3.5, 3.25, 3.46, 3.36, 3.05, 3.58, 2.9, 3.15, 3.13, 3.24, 3.23, 3.32, 3.44, 3.19, 3.21, 3.39, 3.41, 3.35, 2.99, 3.07, 3.04, 3.09, 3.42, 3.27, 3.36, 3.31, 3.27, 3.14, 3.3, 3.11, 3.11, 3.29, 3.1, 3.04, 3.06, 3.14, 3.42, 3.32, 3.22, 3.17, 3.34, 3.08, 3.1, 3.34, 3.25, 3.12, 3.06, 3.12, 3.29, 3.38, 3.27, 3.24, 3.52, 3.36, 3.21, 3.59, 3.25, 3.22, 2.99, 3.16, 3.31, 3.21, 3.06, 3.38, 3.16, 3.01, 3.19, 3.15, 3.13, 3.05, 3.0, 3.35, 3.0, 3.38, 3.24, 3.33, 3.38, 3.29, 3.26, 3.23, 3.31, 3.15, 3.14, 3.16, 2.99, 3.42, 3.23, 3.44, 3.23, 3.4, 3.18, 3.46, 3.36, 3.2, 3.04, 2.9, 3.35, 3.26, 3.08, 3.05, 3.12, 3.31, 3.16, 3.72, 3.47, 3.54, 3.29, 2.99, 3.49, 3.47, 3.13, 3.2, 3.19, 3.24, 3.07, 3.03, 3.51, 3.16, 3.22, 3.29, 3.22, 3.11, 3.44, 3.44, 3.3, 3.2, 2.94, 3.22, 3.12, 3.4, 3.3, 3.19, 3.27, 3.15, 3.28, 3.09, 3.04, 3.24, 3.26, 3.15, 3.23, 3.44, 3.34, 3.24, 2.98, 3.19, 3.0, 3.29, 3.1, 3.35, 3.28, 3.0, 3.26, 3.24, 2.98, 3.15, 3.26, 3.27, 3.11, 3.04, 2.93, 3.22, 3.19, 3.38, 3.06, 3.26, 3.25, 3.35, 3.24, 3.19, 3.34, 3.06, 3.13, 3.13, 3.03, 2.97, 3.41, 3.06, 3.11, 3.22, 3.25], \"xaxis\": \"x2\", \"y\": [0.33396714643252134, 0.5044440900554997, 0.8874896900044845, 0.4686759077780351, 0.23831547366416572, 0.571181601185031, 0.7785327680196316, 0.7290551099174598, 0.9581131370131553, 0.6801000322064107, 0.413367674560271, 0.6667140739211237, 0.9108229754863395, 0.9275086157065797, 0.9186958597750785, 0.7191871442695774, 0.8184457509658746, 0.8597940676688322, 0.7947045908306632, 0.8244149680645384, 0.42771531534877594, 0.5315376696882942, 0.7136291946100958, 0.5510697799054304, 0.6393262665313312, 0.9016582766249417, 0.8560880110261746, 0.8947361144883382, 0.9102326114023062, 0.840723585394272, 0.9264645566705582, 0.5105903360131552, 0.752648770317166, 0.5855954083225455, 0.8989214048388485, 0.5190750352404293, 0.9560713253502463, 0.7273157243430202, 0.9279672131348602, 0.640103147954212, 0.9158977434209615, 0.9035955072010529, 0.7140955379655831, 0.233508355491505, 0.7280578325574358, 0.8810827811902006, 0.3966129217085586, 0.15541760955422754, 0.5851621750323275, 0.9046111951917862, 0.4177213302712193, 0.7993763114768937, 0.6978409661933959, 0.6473373667551029, 0.770784382977056, 0.6500641275496193, 0.548949563093737, 0.9803199442553986, 0.6150775052067382, 0.391333092160729, 0.6966682278280982, 0.9426748402861506, 0.9170092977635526, 0.844625652038695, 0.5621782696252592, 0.8935808323282117, 0.6792214086077275, 0.6719996755401956, 0.5252591274442797, 0.7277045758687855, 0.4685752957996948, 0.8616549355667619, 0.347491516391863, 0.8224130863808733, 0.5340790568488665, 0.6711667658766297, 0.5277539611022016, 0.7226430813715845, 0.8140972745487615, 0.3280236940194876, 0.9543080196225542, 0.7752655593026647, 0.9223925066666061, 0.8588031784191832, 0.6345107008491314, 0.9393010047953068, 0.7897067132703484, 0.8608062836413887, 0.8367885032124018, 0.38555642305179116, 0.8611944449682004, 0.9172341012895443, 0.9206892306522243, 0.9500505925695213, 0.537798347971205, 0.9173482789702866, 0.44454351342386716, 0.8909704850569525, 0.7351932580165473, 0.6818328744935735, 0.7981559962965634, 0.7626532952948841, 0.807353254900461, 0.964411205143099, 0.4685752957996948, 0.6986526320119215, 0.1956969407137045, 0.9233481403380283, 0.8218375601976645, 0.8536269727611236, 0.5637680470866036, 0.42267134533232753, 0.93003590801509, 0.9364808605729722, 0.8816060831574614, 0.9663102962713933, 0.8345570787709832, 0.4997893986747249, 0.7921603237806832, 0.5586815647381762, 0.8622246464681924, 0.9828719612298703, 0.909295720392338, 0.9476267884443668, 0.5395521774612226, 0.901360886913609, 0.39410444510430487, 0.9262213132200262, 0.6627387433216217, 0.9629433821448677, 0.9614311452267452, 0.9802968012486629, 0.933760787013923, 0.34432718187202205, 0.63596173557573, 0.624364378916488, 0.7417789548241253, 0.7300918276682445, 0.6968315453320488, 0.7840233885688647, 0.8958841271622066, 0.5417426694559925, 0.7102579146160282, 0.6004345411549624, 0.515920701757342, 0.7587882454650442, 0.5029588531082266, 0.6887596776945688, 0.8642849605932809, 0.6469572639767995, 0.8103639651534781, 0.939764354405301, 0.694136577696587, 0.6593725303534554, 0.9646797005081557, 0.7979900311745153, 0.792123904710467, 0.8869579700149332, 0.7351250317969437, 0.5332560471205093, 0.9406873315653421, 0.39362685027924615, 0.9466602521798594, 0.8394325033041952, 0.6633442657978572, 0.8126408700417265, 0.7332457619716184, 0.08024070404520958, 0.8667774471450977, 0.6466814331404849, 0.912366876100516, 0.656670904734599, 0.8701678467707724, 0.8875925797813499, 0.9658725076002231, 0.7668332861852056, 0.8604440887473094, 0.934384507524058, 0.9605946056867319, 0.951253157591183, 0.5749289095213865, 0.6279243005170476, 0.7937202818717513, 0.7665301650725991, 0.700127941221274, 0.8531107444728586, 0.7947045908306632, 0.8870566665876504, 0.5476228787844645, 0.8410401833568673, 0.8736671065238262, 0.6519898659949606, 0.936943112068646, 0.9077719201719568, 0.8071889556778997, 0.8815615400732472, 0.8935313268029127, 0.8782891297971865, 0.5029588531082266, 0.5797201450332624, 0.9416775458320723, 0.5958140198486584, 0.2485157288688957, 0.932021424688801, 0.8531502837407814, 0.6344194678828672, 0.632587077283238, 0.9121448358615357, 0.5776545535910985, 0.9052765174806566, 0.8580390107418799, 0.8998644401112552, 0.6784536879503494, 0.9458342431661766, 0.21387363850783603, 0.9530348339880965, 0.7307391114165022, 0.7187682731289255, 0.6905635603269331, 0.9569274903702625, 0.9287384091375525, 0.3856984054091925, 0.504413920551941, 0.5389739198483336, 0.5921068831639978, 0.10702848140489757, 0.8772993497727819, 0.6361944011057532, 0.8952999713010865, 0.7069578609115064, 0.10632960186243966, 0.6465592619811017, 0.9116333268133815, 0.9210441535829985, 0.9483358221641291, 0.5800224234700003, 0.896951343689222, 0.8958659323404018, 0.8896861436466836, 0.7763142135369961, 0.778627444633172, 0.9274605647284293, 0.9167924025380936, 0.6422094408272838, 0.6363725079258666, 0.8694129796739031, 0.5693182102579236, 0.5315376696882942, 0.6814536952243052, 0.30089534057709466, 0.6689448970920832, 0.6419522618821227, 0.6500641275496193, 0.8221968069187356, 0.9285763346020383, 0.8495153837633861, 0.7135666997345446, 0.8850789772017983, 0.9128367188568884, 0.8709442503982084, 0.44714680104169846, 0.7147831401969469, 0.6814536952243052, 0.5823319261018008, 0.7718122970862826, 0.8925058444773368, 0.9249991097277733, 0.7849066379312727, 0.5120166815330335, 0.7863291630268572, 0.8171821177205619, 0.8878235148823457, 0.9813953955585096, 0.5009899161211654, 0.6787020040856314, 0.2747106808400709, 0.6998114428322438, 0.7191783799678735, 0.7566715075843347, 0.7741630673610131, 0.692871858980435, 0.8706970297938403, 0.9226518689226377, 0.619213859232465, 0.9620625840847012, 0.8161066853745392, 0.7984578805051198, 0.8987836568806694, 0.27900511725120763, 0.747868261422589, 0.8013372150606806, 0.4430395412241901, 0.8082746512504794, 0.9248395818955686, 0.8132668978866627, 0.7926355964369082, 0.7243101498981422, 0.8251498778038484, 0.865753667016409, 0.8784859927081519, 0.9613966942665844, 0.8380103992838959, 0.9376908870460701, 0.8505645904112248, 0.5317253080143199, 0.8756470416862959, 0.8823120896825394, 0.8920529250761863, 0.9565288857220365, 0.92576324319171, 0.8397457208604353, 0.8008835764985612, 0.7620555647282774, 0.6333567796033132, 0.8986985644274655, 0.8289197139212982, 0.38568054861828666, 0.4358764146033148, 0.7013568331933456, 0.5524769805317635, 0.8654015550049637, 0.9625385348003681, 0.4997035751430624, 0.5940434106189647, 0.29640429037896177, 0.9370396801623051, 0.7496358493500708, 0.8521916566704996, 0.7519935213994349, 0.8956127660014477, 0.7563308848917781, 0.5425355780301907, 0.1652985164032473, 0.5777375433929663, 0.5926841497777402, 0.5247451599628447, 0.6215406511606532, 0.646742228322253, 0.5236567091352762, 0.8105889943537302, 0.7614647275399787, 0.7272264480694343, 0.44438282424164377, 0.8051848688934031, 0.253979247575754, 0.8737269176380216, 0.7884186533408385, 0.5226162157005312, 0.7776146375974927, 0.8021344726910251, 0.6794204065079696, 0.8398669626756513, 0.3743394998756179, 0.6593725303534554, 0.41008410759983227, 0.8726624594592295, 0.31336232876890546, 0.6187135046228962, 0.9208146539756937, 0.8948907807194619, 0.9475948217130945, 0.7098971478357265, 0.41970311630379203, 0.5524505095188592, 0.6689295490636696, 0.39534528644804523, 0.6686700461744643, 0.6608417181144597, 0.6289006219381473, 0.8112353209803558, 0.9675531845963172, 0.3468688843876404, 0.8171815196180959, 0.9315945487332388, 0.7612383340144859, 0.43979370974717685, 0.9452166580978265, 0.810349906376065, 0.4979189466877109, 0.9054024939516333, 0.7506263221664519, 0.8595966107872783, 0.9041757536760852, 0.5120166815330335, 0.9246344940597735, 0.622364539475366, 0.7975959936185795, 0.9376528402833735, 0.8270495791839716, 0.7463426393970082, 0.8508295060861325, 0.5277539611022016, 0.7926521549058593, 0.8343380415579561, 0.7973631232158779, 0.5423298306356671, 0.6253812669856891, 0.9342151247863544, 0.9064095870896521, 0.8428584418618921, 0.5680191878381406, 0.8230633503438987, 0.857993972512287, 0.8312116035859974, 0.8886868130574391, 0.5695902702544526, 0.8750573328895943, 0.47134086624147714, 0.6082670858563528, 0.8571520978358925, 0.7006810412396262, 0.6001343818465046, 0.8680196363335714, 0.7833148206731655, 0.835330250744176, 0.6883000602161935, 0.4297997702781997, 0.7132181587745201, 0.941909753873568, 0.9298379484442667, 0.8950633078112005, 0.9652574497835966, 0.8593048115498744, 0.23022113319019433, 0.5548683876071567, 0.8789570823277312, 0.7176343272433334, 0.7135972690872326, 0.900955402304434, 0.89110615578316, 0.8021344726910251, 0.36734125225010755, 0.9233813125795639, 0.9269988231022361, 0.6021478506882372, 0.27064660283581765, 0.7595966254948197, 0.5317253080143199, 0.9626288904553877, 0.518871521713375, 0.4244151934213653, 0.8784852709235653, 0.667697582798242, 0.6791650855490978, 0.8659372985570389, 0.5217980090164113, 0.9757802673562255, 0.20769640873195563, 0.6900575067285889, 0.15051833553221247, 0.8476988333501053, 0.12043274000614122, 0.6546311715671466, 0.412102187638673, 0.6339696776630096, 0.6925917751558638, 0.8074446941396305, 0.8417042066658985, 0.4702054036006336, 0.8107456318417504, 0.934253622333564, 0.9671353887875448, 0.3776875782453083, 0.5133306968464912, 0.8279918435672958, 0.7295730380004212, 0.8398957027397556, 0.7470826509089123, 0.7722124156410631, 0.3944809481034696, 0.5801047158883857, 0.7134138458261836, 0.8265590446981121, 0.5836238058504062, 0.7538957359152121, 0.9708936701567454, 0.41507295289487073, 0.9039211350062085, 0.5109703825452502, 0.8880660412534, 0.6332514250278477, 0.703270618172154, 0.863031725372896, 0.9601349291832292, 0.5845797646527732, 0.8357575010967041, 0.9584406458449958, 0.8733333206292072, 0.4740801794177068, 0.5787650908025566, 0.38525623454815555, 0.5715075300165849, 0.951253157591183, 0.831291834366621, 0.6482062646591596, 0.5447536045265621, 0.8456825404777587, 0.5358725178581014, 0.8893400405584444, 0.5955893395860203, 0.9408369636189147, 0.7580589814818564, 0.4244151934213653, 0.7636885291754726, 0.9532052815091139, 0.6686700461744643, 0.39683939049776734, 0.8309978518015588, 0.06774730328187532, 0.8934061610794648, 0.9459413258233057, 0.8507977517004935, 0.9694554821790147, 0.8640493534313302, 0.8409166048571896, 0.9059760843724536, 0.7278052027863667, 0.8952246802917138, 0.39534528644804523, 0.9558702864115934, 0.9178754126151818, 0.7504628435478695, 0.7568870052952757, 0.32046258648166903, 0.9712495894387816, 0.7125870341029702, 0.8286889773580812, 0.929575727770858, 0.8422483936479932, 0.60065365322741, 0.5775074082600717, 0.7505976846167132, 0.5317253080143199, 0.9590110623565244, 0.9651712957082627, 0.7333643603414158, 0.7757825668725274, 0.8928390517037824, 0.2578168736401774, 0.5355488836719776, 0.8408692583280314, 0.7849780542174357, 0.8711681462620556, 0.8447990405440073, 0.9571933326515756, 0.9307123551507692, 0.6421242495412457, 0.9239207054420927, 0.9336219461922934, 0.4244151934213653, 0.5673643045526261, 0.8301442064454496, 0.528471943574542, 0.8835542071774324, 0.8820947700128993, 0.4561713647735051, 0.584381944856391, 0.9493936477483658, 0.7816316980556022, 0.7770145472448273, 0.8495153837633861, 0.8318035560268552, 0.5220388622338656, 0.8589980209217414, 0.21216021099657945, 0.8782303617207965, 0.901850575196968, 0.7683760396387002, 0.9559989503713009, 0.938411491366706, 0.7225398931917507, 0.5918361617892179, 0.8596378534897678, 0.8816239240572568, 0.9296844522785247, 0.8299758417251202, 0.7538846798551382, 0.931253582726863, 0.6902425303942638, 0.9299571155275668, 0.35461708236434614, 0.6119587629530028, 0.8979450471026776, 0.8782891297971865, 0.6144930729026484, 0.5601837238662909, 0.4230258756549153, 0.5115702372514986, 0.6133200318312215, 0.8287048127179734, 0.42887934024879554, 0.5543929044930882, 0.5414149972460248, 0.7453725251924848, 0.6522898344923613, 0.6445138145159856, 0.9212190995841192, 0.6991293681294938, 0.9188224881967051, 0.9444881948020799, 0.8399825546316605, 0.6440269003431431, 0.45260210695563535, 0.6678228102737954, 0.8535669746933884, 0.23469888428232324, 0.7581156815660375, 0.8329520097124233, 0.5886389680190937, 0.4250130050586104, 0.290761161529129, 0.9065968169685268, 0.39757013049667705, 0.9584529405260903, 0.24804178200132845, 0.8400605958344816, 0.9562762484868867, 0.5923100188758571, 0.5355488836719776, 0.6866862751474886, 0.753715093249364, 0.9302702282582556, 0.8405005145861136, 0.7758456574858743, 0.8270123797965384, 0.9270997487744173, 0.8779999285967196, 0.6350604679157676, 0.9057987369792326, 0.9732730617650076, 0.28007269673131574, 0.5393237551960537, 0.9509318156255189, 0.8055358405733448, 0.8512314640165554, 0.6752183046546253, 0.9766791413071304, 0.26893819095773785, 0.5105552073939665, 0.7964242570425004, 0.9159462749375985, 0.46312559485344046, 0.7889853219989779, 0.5331772070153998, 0.6250130361556073, 0.5340700079782073, 0.8981158701031157, 0.8424802355113449], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [3.36, 3.22, 3.03, 3.07, 2.93, 2.93, 3.23, 3.29, 3.29, 3.03, 3.12, 3.16, 3.14, 3.12, 3.14, 3.27, 3.14, 3.16, 3.32, 2.97, 3.27, 2.96, 3.15, 3.12, 3.15, 3.07, 3.44, 3.18, 3.3, 3.46, 2.98, 3.3, 3.38, 3.2, 3.42, 3.32, 3.25, 3.42, 3.29, 3.26, 3.01, 3.1, 3.0, 3.22, 3.08, 3.28, 3.27, 3.15, 3.14, 2.79, 3.19, 3.17, 2.99, 3.37, 3.39, 3.28, 3.48, 2.92, 3.04, 3.08, 2.92, 3.31, 3.23, 3.48, 3.03, 3.53, 3.03, 3.51, 3.45, 3.37, 3.38, 3.21, 3.47, 3.32, 3.19, 3.18, 3.04, 3.07, 3.14, 3.39, 3.21, 3.15, 3.33, 3.2, 3.05, 2.97, 3.47, 3.22, 3.14, 3.35, 3.23, 3.08, 3.28, 3.18, 3.4, 3.5, 3.14, 3.17, 3.37, 3.24, 3.15, 3.08, 3.27, 3.34, 3.19, 3.35, 3.16, 3.36, 3.15, 3.18, 3.3, 2.94, 3.4, 3.29, 2.8, 3.13, 3.1, 3.17, 3.18, 3.13, 3.37, 3.34, 3.36, 3.39, 3.29, 3.38, 3.26, 2.93, 3.29, 3.08, 3.16, 3.25, 3.18, 2.96, 3.45, 3.16, 3.23, 3.29, 3.13, 2.94, 3.12, 3.05, 2.83, 3.16, 3.46, 3.22, 3.05, 3.34, 3.23, 3.23, 3.19, 3.47, 3.42, 3.17, 3.1, 3.16, 3.21, 3.2, 3.08, 2.99, 3.31, 3.18, 2.97, 3.04, 3.38, 3.13, 3.19, 3.37, 3.22, 3.06, 3.38, 3.23, 3.15, 3.15, 3.27, 3.26, 3.0, 3.07, 3.04, 3.24, 3.2, 3.42, 3.16, 3.21, 3.24, 2.95, 3.1, 3.07, 3.09, 3.23, 3.53, 3.28, 3.1, 3.18, 3.08, 3.33, 3.06, 3.14, 3.35, 3.09, 3.48, 3.25, 3.13, 3.2, 2.95, 3.25, 3.19, 3.2, 3.28, 3.06, 3.17, 3.13, 3.33, 3.0, 3.19, 3.03, 2.89, 3.08, 2.92, 3.19, 3.14, 3.22, 3.38, 3.09, 3.08, 3.38, 3.48, 3.54, 3.24, 3.24, 3.14, 3.12, 3.3, 3.09, 3.19, 3.04, 3.25, 3.45, 3.18, 3.42, 3.56, 3.67, 3.05, 3.4, 3.21, 3.16, 3.54, 3.32, 3.1, 3.19, 3.31, 3.13, 2.85, 3.16, 3.0, 3.26, 3.4, 3.32, 3.01, 3.24, 3.66, 3.37, 3.58, 3.58, 2.89, 3.31, 3.21, 3.3, 3.4, 3.1, 3.15, 3.51, 2.99, 3.16, 3.1, 3.08, 3.06, 3.55, 3.35, 2.98, 3.48, 3.34, 3.11, 3.56, 3.16, 3.32, 2.95, 3.24, 3.15, 3.15, 3.16, 3.33, 3.2, 3.51, 3.26, 3.26, 3.16, 3.1, 3.14, 3.37, 3.34, 3.05, 3.19, 3.02, 3.05, 2.97, 3.17, 3.13, 3.27, 3.12, 3.34, 3.49, 3.14, 3.32, 3.22, 3.03, 3.1, 3.19, 3.77, 3.36, 3.18, 3.34, 3.3, 3.27, 3.44, 3.07, 3.14, 3.13, 3.18, 3.47, 3.39, 3.31, 3.16, 3.44, 3.28, 3.17, 3.24, 3.17, 3.3, 3.24, 3.13, 3.23, 3.34, 3.29, 3.16, 2.99, 3.39, 3.36, 3.3, 3.14, 3.18, 3.19], \"xaxis\": \"x2\", \"y\": [0.8142007211296887, 0.07257977436397642, 0.7430932382113554, 0.8214862427787604, 0.5698848321031316, 0.6048119589659149, 0.6466669219762841, 0.14510080060429495, 0.2250304680670007, 0.28492472637839966, 0.42061632734231896, 0.8281252124183194, 0.49622399336621903, 0.3482895521074759, 0.4678833354511545, 0.5708968386647719, 0.37048677721847617, 0.553632248395139, 0.8702137350251022, 0.42186952587750404, 0.8696774950675754, 0.5410576963494411, 0.3971326977900686, 0.3275001196198921, 0.9448289227093116, 0.7109941475090589, 0.41925580570138304, 0.3675472469853882, 0.6721911818800557, 0.5562207270314473, 0.5262426608517637, 0.3244609607385458, 0.15056615442564347, 0.15676979724311627, 0.6037730696030339, 0.6342511279653397, 0.021947035536558718, 0.32429164429335744, 0.5678746850743716, 0.3571680467137555, 0.7755534309390314, 0.3240287891037917, 0.699424662214302, 0.5151532452376618, 0.7564675819717819, 0.38343591026479057, 0.19811005648518398, 0.3168419703358067, 0.5315947262677626, 0.9269044449273315, 0.8260225289794664, 0.451791899378283, 0.830516920403184, 0.47128602930186, 0.19027823806377472, 0.5181346713949518, 0.29552777318700446, 0.45414400334446664, 0.39329840463575844, 0.42327932510626076, 0.45838907164509224, 0.2233864252642039, 0.3628419195926303, 0.6709353200988277, 0.46058046365566996, 0.25551237833043455, 0.7234147543269824, 0.1481282262733752, 0.314935793994079, 0.20050531530561894, 0.37453315488553635, 0.701015529968035, 0.6343341418527783, 0.1739320900588749, 0.734996253073231, 0.8172229478314255, 0.3598554146739685, 0.7121055211356295, 0.2620604909731644, 0.3421138035730516, 0.6951268813066005, 0.35208221297891723, 0.452099210446082, 0.18907620085798427, 0.5444201651108793, 0.6484058972837882, 0.3258186925596978, 0.5963383680780668, 0.6202666247822538, 0.576738593946626, 0.5054992484109841, 0.2972245631729925, 0.6844333356791464, 0.42629475072919953, 0.4405153833121037, 0.01207867704715336, 0.7609288944606691, 0.23951123982998349, 0.09310514674080905, 0.5084920166510624, 0.33067609257366243, 0.36481899584296196, 0.5708968386647719, 0.3194802059637459, 0.14207297841267416, 0.5776897120055972, 0.2026163425795633, 0.37909000048748537, 0.38206764842015895, 0.41324683104354176, 0.17826143731067332, 0.42339414872454434, 0.39148091864802853, 0.3511350413575442, 0.8053393751847749, 0.5937005322868365, 0.6849942580153355, 0.38930033076762494, 0.5168500865319015, 0.5699073288866824, 0.5376087249833421, 0.8185832461647057, 0.25950508036415604, 0.20394483716883388, 0.3303044530853749, 0.2528102968078532, 0.8477719856767125, 0.5217124250004609, 0.3303044530853749, 0.5382885532339231, 0.9625763866028243, 0.6536174904341296, 0.42629475072919953, 0.6458781618432388, 0.46574001023909845, 0.37268733756108086, 0.8180085473348132, 0.35493594975273335, 0.2423640089427935, 0.3636330633241046, 0.6421622311157122, 0.5444201651108793, 0.7396308412796291, 0.9036153464846048, 0.21101569987323432, 0.6004024464464508, 0.7595861882737439, 0.486549602332862, 0.2379839758891197, 0.5147825233229498, 0.2065932277190248, 0.4342628292980428, 0.5940848250235929, 0.4857193175270624, 0.5332610244722983, 0.5402196969638672, 0.8578846895389459, 0.5290225674595067, 0.6074669506688956, 0.1847839155105034, 0.3581391437324269, 0.4304380754474639, 0.8410120374942113, 0.5810086483513661, 0.19026233744636453, 0.7223494520380469, 0.8589928738613049, 0.8374625942163022, 0.781203852328267, 0.73983195178881, 0.41156537259256004, 0.7482873396984137, 0.44431713201158524, 0.7113673874393347, 0.49869552495399233, 0.7627102864663872, 0.37193390769028617, 0.37187810520956766, 0.3773291605703562, 0.8719651627687759, 0.6218762459828849, 0.3781393537983126, 0.553632248395139, 0.47624084907999176, 0.774399353278846, 0.5840424935194366, 0.5601025471409736, 0.6186690618327106, 0.620611700356168, 0.5755798886129706, 0.15047650536569443, 0.5530049338021776, 0.6597439619439023, 0.8300222117931148, 0.3490158529243493, 0.4410646109528086, 0.5067909967309752, 0.5851482063434866, 0.7149827463187939, 0.4849259975950144, 0.2094210588097294, 0.33399024531412796, 0.4083143545243069, 0.7497022835596558, 0.7817929239213606, 0.7637421953724776, 0.3825655414920891, 0.6611482494098961, 0.19022241257108333, 0.44972084577511023, 0.5476732603321269, 0.4831274653996314, 0.5077048340566679, 0.7289504589448288, 0.4379810490617926, 0.8017221455714771, 0.6434673631716396, 0.5059779734745421, 0.6065367192264559, 0.650368705032214, 0.34567471266024347, 0.39561589000187136, 0.3427787545601037, 0.4676404271158623, 0.5332283386400669, 0.4519108142444285, 0.40662831629925006, 0.42305576187259053, 0.22032895172816622, 0.5278715769330472, 0.43679486629948455, 0.743933429392776, 0.5269515041023835, 0.5008800654866953, 0.214168174561682, 0.44879088851457377, 0.683485355417811, 0.807753104897186, 0.42629475072919953, 0.8502951424821861, 0.17421175568219957, 0.25491371883486935, 0.7595861882737439, 0.6571724132942184, 0.7813188949129265, 0.5626906653340306, 0.8674288259883418, 0.6600514650598344, 0.4827749661719035, 0.5456147119159479, 0.39827550056677263, 0.27323823737433794, 0.695896529362927, 0.5048820477254727, 0.5422349097465021, 0.5610936746718964, 0.6571724132942184, 0.3088751107498249, 0.45428761266464013, 0.6604471727860799, 0.43371621376298963, 0.6171893197168647, 0.8100511550343341, 0.8100511550343341, 0.605832578461134, 0.5526475584669951, 0.4275055171336787, 0.8734720021260204, 0.8508295378350301, 0.5807723706867254, 0.8272749548927728, 0.2670652478909882, 0.7020144194675465, 0.4615566916191992, 0.7055847950248242, 0.43389869234556755, 0.6071692164257629, 0.3496825637352313, 0.23676491619791426, 0.7057755976874825, 0.15539001443149586, 0.6187538615870153, 0.8735882828904331, 0.30049486749739024, 0.23191705420611952, 0.8913917397916864, 0.4977157214618499, 0.16961113509580228, 0.8485494795219795, 0.4760032757956232, 0.5053843099270294, 0.2676015269871764, 0.3627664421236291, 0.15146266807038725, 0.7898179638281774, 0.6145296307645981, 0.3790380236797623, 0.3003532640340299, 0.6086112016774773, 0.39906793889171593, 0.8185832461647057, 0.6715802865662828, 0.8260225289794664, 0.6056902064850618, 0.400132762133902, 0.39471961640683584, 0.6449859309106076, 0.5637152910565628, 0.39949420960438964, 0.5490401551410112, 0.4398875418860128, 0.30916577334906253, 0.7093303227687476, 0.4562508424819209, 0.40444044759428516, 0.5773483646962835, 0.447777692034652, 0.4961542215384683, 0.32474312180562226, 0.21192693199409943, 0.9056903490933487, 0.5013816399998683, 0.758876109553896, 0.6364928148646596, 0.2952804752502578, 0.4748951900520853, 0.43679486629948455, 0.5479962315186364, 0.4728142838839701, 0.6343341418527783, 0.12248807650217919, 0.5052525886146573, 0.8281252124183194, 0.8930081609652758, 0.36283726088930296, 0.8098196742550625, 0.656477404357746, 0.193885049884708, 0.5269515041023835, 0.49858469647139786, 0.32780472036158087, 0.24927512797396847, 0.6148718578314069, 0.10691527318901187, 0.136775438340409, 0.8489192718114075, 0.2600203086082801, 0.8142007211296887, 0.5269515041023835, 0.7966615933629455, 0.5633234794197017, 0.767479452333631], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"pH\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"pH\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}}, {\"id\": \"pH_bad\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (ref)\", \"type\": \"scatter\", \"x\": [3.16, 3.03, 3.03, 3.45, 3.15, 3.46, 3.34, 3.36, 3.16, 3.18, 3.3, 3.25, 3.02, 3.24, 3.32, 3.24, 3.3, 3.5, 3.06, 3.53, 3.19, 3.26, 3.54, 2.94, 3.6, 3.26, 3.27, 3.29, 3.1, 3.3, 3.48, 3.01, 3.66, 3.19, 3.0, 3.15, 2.96, 3.2, 3.04, 3.08, 3.02, 3.39, 3.27, 3.15, 3.19, 3.3, 3.32, 3.4, 3.23, 3.32, 3.09, 3.08, 3.2, 3.19, 3.11, 2.96, 3.17, 3.28, 3.14, 3.26, 3.19, 3.58, 3.43, 3.34, 3.13, 3.26, 3.22, 3.27, 3.61, 2.79, 3.09, 3.27, 3.05, 3.21, 3.1, 3.16, 3.08, 3.28, 3.2, 3.11, 2.98, 3.05, 3.12, 3.39, 3.11, 3.24, 3.14, 3.26, 3.17, 3.01, 3.27, 3.31, 3.15, 3.05, 2.96, 3.18, 2.98, 3.14, 3.15, 3.27, 3.01, 3.52, 3.35, 3.22, 3.29, 3.08, 3.16, 3.37, 3.27, 3.22, 3.37, 3.37, 3.41, 3.34, 3.49, 3.11, 3.16, 3.32, 3.06, 3.15, 3.09, 3.41, 3.22, 3.11, 3.1, 3.05, 3.29, 3.1, 3.23, 3.16, 2.89, 3.43, 3.1, 3.22, 3.11, 3.17, 3.13, 3.26, 3.09, 3.25, 3.07, 3.18, 3.28, 3.14, 3.14, 3.02, 3.44, 3.11, 3.14, 3.32, 3.13, 3.45, 2.92, 3.46, 2.99, 3.25, 3.2, 3.25, 3.46, 2.97, 3.15, 3.14, 3.05, 3.16, 3.34, 3.18, 3.18, 3.26, 2.96, 3.08, 3.12, 3.22, 3.37, 2.99, 3.22, 3.24, 3.33, 3.2, 3.46, 3.01, 3.24, 3.54, 3.28, 3.13, 3.1, 3.21, 3.12, 3.01, 3.28, 3.12, 3.02, 3.01, 3.08, 3.14, 3.16, 3.34, 3.08, 3.16, 3.06, 3.07, 3.3, 3.16, 3.16, 3.15, 3.63, 3.09, 3.22, 3.21, 3.72, 3.09, 3.14, 3.5, 3.04, 3.06, 3.18, 3.24, 3.11, 2.97, 2.94, 2.87, 2.88, 3.5, 3.06, 2.96, 3.1, 3.11, 3.34, 3.02, 3.22, 3.49, 3.33, 2.94, 3.5, 3.1, 3.16, 2.92, 3.39, 3.39, 3.15, 3.02, 3.24, 3.11, 3.03, 3.12, 3.5, 3.15, 3.22, 3.18, 3.24, 3.24, 3.41, 3.14, 3.66, 3.39, 3.1, 3.09, 3.17, 3.41, 3.14, 3.16, 3.05, 3.14, 3.39, 3.0, 3.16, 3.21, 3.77, 3.74, 3.42, 3.29, 3.44, 3.08, 3.21, 3.11, 3.19, 3.31, 3.44, 3.0, 3.13, 3.29, 3.34, 3.59, 3.17, 3.29, 3.15, 3.16, 2.9, 3.28, 3.08, 3.25, 3.06, 3.12, 3.24, 3.51, 3.3, 2.94, 3.13, 3.29, 3.08, 3.23, 3.68, 3.28, 3.36, 3.25, 3.31, 3.08, 3.12, 3.34, 3.04, 3.03, 3.06, 3.22, 3.59, 3.18, 3.38, 3.09, 3.1, 3.31, 3.22, 3.66, 3.32, 3.19, 3.36, 3.28, 3.15, 3.14, 2.98, 3.19, 3.29, 3.22, 2.93, 3.38, 3.35, 3.2, 3.25, 3.09, 3.13, 3.05, 3.1, 3.23, 3.3, 3.21, 3.24, 3.18, 3.24, 3.48, 3.53, 3.14, 3.38, 3.08, 3.04, 3.34, 3.06, 3.63, 3.09], \"xaxis\": \"x\", \"y\": [0.7197707895473677, 0.05448058807241418, 0.5021256787650443, 0.4710854375480472, 0.7156076129280222, 0.7966690429773311, 0.7265425252145667, 0.16771266951545494, 0.610944103187451, 0.6324527530146118, 0.42180662537268765, 0.2598044700255929, 0.5503032830239416, 0.5632112185661304, 0.6840604465833231, 0.6224375641140001, 0.8071781895370533, 0.9515482366939344, 0.3994071349416132, 0.9677746238863042, 0.572587586261062, 0.7602674855798478, 0.861098734498427, 0.1386074727873, 0.6703360831713621, 0.8064003460928679, 0.3172728283240366, 0.8039094494444462, 0.9186426431335688, 0.6026275969807151, 0.8609701260317718, 0.3485833566260712, 0.3005246278528939, 0.2859113263741919, 0.4978204971029292, 0.5125675444128744, 0.4268860326359044, 0.11791793574572085, 0.440027850275134, 0.4938434408506086, 0.4933189622152446, 0.166194347192407, 0.30200278364192557, 0.6822425768461728, 0.8693180940701344, 0.24112389044610405, 0.43189370387303117, 0.284455178085937, 0.23793737479647703, 0.5535561322468214, 0.7900402576908969, 0.47373775892899717, 0.6055733033081183, 0.7462675017011632, 0.32245623572553406, 0.7612367841042231, 0.36308410170653527, 0.6103993963703384, 0.3965676277125745, 0.2230008284200371, 0.8480025164595866, 0.43585875500482685, 0.24095331994381775, 0.4030652094068704, 0.8951637220162157, 0.2782175630406618, 0.7337660836226194, 0.8352762102164887, 0.6223987562306759, 0.2928263700360406, 0.6563137004068428, 0.16155652477357085, 0.6364666355122575, 0.2186811050870735, 0.27206300237801306, 0.4358901152617537, 0.6136035252376228, 0.07900866299327158, 0.8522855318359817, 0.11906253414448076, 0.3466831105240652, 0.11265227152414181, 0.6302693732121377, 0.7168097665217413, 0.4796298258249143, 0.4476252306691143, 0.3612478268219491, 0.611861930499026, 0.15121036728507153, 0.5363393546692182, 0.16155652477357085, 0.441733396330222, 0.7834276811132227, 0.6364666355122575, 0.44873286860252337, 0.4948960601400133, 0.4172084246960842, 0.5055831714989107, 0.5269082808529498, 0.3737404408311804, 0.4491757516278906, 0.5266720849021, 0.2882430633103308, 0.6066213483726142, 0.83534933450756, 0.2509605867776752, 0.230738949997912, 0.25680675940048736, 0.6858999083789018, 0.27626495444752697, 0.35158671089680515, 0.311480105980391, 0.5950329577300569, 0.4196263877039489, 0.3672198477254309, 0.5488429300958864, 0.6273126624389191, 0.0990306898864649, 0.935036100419004, 0.5556828679884147, 0.6003916802566726, 0.1337843055401957, 0.6898191889393818, 0.46604488826349566, 0.6668872608045229, 0.5998672378660981, 0.14712454771937833, 0.8558065212045691, 0.883276495704891, 0.5544329747085402, 0.38398791005853006, 0.8623310715459079, 0.4482795971615686, 0.4767821080964978, 0.6451659669426603, 0.5099786295438409, 0.11454219273407718, 0.5691587732433696, 0.2398813672346335, 0.8592796956842923, 0.38133093816728936, 0.4754945767078651, 0.2673740541283356, 0.43092180164799054, 0.5981491184574936, 0.7512253043619477, 0.20474988026063612, 0.12337786436138054, 0.6965484670033051, 0.4642254518352117, 0.29034758521725457, 0.7912282271603185, 0.1364389858241727, 0.5326323768611896, 0.3938848007926149, 0.886984727126295, 0.5955398539691413, 0.3667393936023857, 0.35129461810907203, 0.578130474122496, 0.1952086434691429, 0.6982941690158907, 0.6159300986783536, 0.6650580695700093, 0.8007006003287879, 0.13750802167619447, 0.47121416359091395, 0.5691587732433696, 0.5295784007050042, 0.4938434408506086, 0.4240508430342457, 0.1531205555636086, 0.7965770364050346, 0.4829168465516456, 0.6333246955344933, 0.38682769986244625, 0.5589353890471914, 0.30965836575156913, 0.6133571507425741, 0.5363393546692182, 0.5474540697204298, 0.9680074395956593, 0.29703705077451537, 0.7566858385458134, 0.451244026180727, 0.6224939697452743, 0.9340693900855184, 0.1254375450851024, 0.770680513376406, 0.7273231109206828, 0.410671569380914, 0.19928392436820586, 0.44743622108127745, 0.4991477681643879, 0.5443787589855091, 0.826082779912576, 0.5642536294664222, 0.6762559922350657, 0.39283078357423706, 0.3074847569358159, 0.40732461839200396, 0.5614584986504241, 0.5614584986504241, 0.575628870274347, 0.1938881144566701, 0.6480440770440566, 0.23946299348505806, 0.6110142157087575, 0.32489046344192996, 0.127020290619695, 0.28948900574123104, 0.27970970921902805, 0.5179212029104148, 0.579807192000203, 0.5695619245525361, 0.7471497674522103, 0.6761943115269239, 0.6052803835931642, 0.9048996801452402, 0.632953623191418, 0.7849920634816455, 0.12946409768986655, 0.3899257470968539, 0.37735505673750047, 0.27206300237801306, 0.6356505945299911, 0.9000798247851504, 0.5852448485124296, 0.3537739535016634, 0.8589709040748648, 0.5105041430354158, 0.4760479563081992, 0.3915586115462193, 0.4344526143297297, 0.04825794875232026, 0.25106204840173363, 0.5352062615150248, 0.2084678736174792, 0.5588772074146924, 0.42656597432725707, 0.3395528272139201, 0.5154796814541086, 0.30312695461308037, 0.4684625037801391, 0.13140485141127656, 0.37575572516499556, 0.7087902803012941, 0.22740617784346517, 0.7932370230268412, 0.6977827466507267, 0.8687065743771458, 0.3532210556477622, 0.3005246278528939, 0.8817461779308045, 0.5897758288136841, 0.5117334773877459, 0.2267712913026929, 0.7462523759498982, 0.5055831714989107, 0.6276122794572256, 0.34766968675436505, 0.563322001169588, 0.4035281086421867, 0.44827723495654004, 0.7588644006503809, 0.17560197311170134, 0.2736156405730563, 0.5646478519097824, 0.12788772013874206, 0.8127608550985441, 0.35130933230290007, 0.8842329534318195, 0.5671758377024384, 0.508518787579709, 0.4735654621913231, 0.6614347321502836, 0.7032589073748752, 0.418601168771625, 0.40262233345395115, 0.38045938978299354, 0.6221728234115828, 0.6769388667590319, 0.825791915264051, 0.8036522945246104, 0.5350776523934957, 0.5038683203672731, 0.4187790963850706, 0.3942708224564714, 0.36585282612655, 0.42973128126448334, 0.1395024853671747, 0.36909778672938764, 0.5126700875045708, 0.31128511290513083, 0.5841805470690385, 0.42932394036482613, 0.5168725346003686, 0.9331527243268325, 0.5090935678835011, 0.848083892739094, 0.7288594688776423, 0.23463814542978878, 0.9073343486287574, 0.5445649372592127, 0.8030108083542629, 0.30698149193503155, 0.47724620771884374, 0.49565431290071005, 0.29179072192325783, 0.53941953634433, 0.32642767658125227, 0.5714063949384225, 0.6769388667590319, 0.48314991346809855, 0.3838692085325581, 0.7654355578102645, 0.6807995217458978, 0.7803105409218809, 0.4971816769068883, 0.5662837862370104, 0.32557907866588853, 0.4059739580227363, 0.8621668957327787, 0.4863555612469991, 0.44913520001249685, 0.5044088987161788, 0.018560580499064172, 0.17397747102053363, 0.8203404366189, 0.531551035274026, 0.3951880410340851, 0.6710839680909022, 0.7545393605546251, 0.25029771644034415, 0.31651464458218903, 0.7900402576908969, 0.7649542174153934, 0.6282404390050247, 0.5124469561170844, 0.7501741577575001, 0.3717170374651112, 0.5479204837841629, 0.1799627586960565, 0.8716748635647116, 0.4700369344869263, 0.7044722268129955, 0.7597806244765397, 0.4570971226262448, 0.3688130253756654, 0.5854022956087224, 0.6067015953642416, 0.6092966434658947, 0.5713009051869427, 0.15316343939585397, 0.31191498773739224], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [3.17, 3.36, 3.32, 3.59, 3.37, 3.4, 3.22, 3.36, 3.14, 3.1, 3.06, 3.16, 3.52, 3.06, 3.37, 3.14, 3.09, 2.95, 3.34, 3.18, 3.12, 3.21, 3.23, 3.25, 2.94, 3.64, 3.31, 3.14, 3.28, 3.33, 3.38, 3.3, 3.1, 3.38, 3.13, 3.11, 3.12, 3.4, 3.26, 3.25, 3.14, 3.46, 3.41, 3.12, 3.11, 3.4, 3.3, 3.22, 3.2, 3.0, 3.15, 3.17, 3.32, 3.19, 3.15, 3.03, 3.22, 3.26, 3.05, 3.51, 3.25, 3.46, 3.31, 3.32, 3.17, 3.31, 3.26, 3.12, 3.13, 3.19, 3.17, 3.04, 3.15, 3.01, 3.48, 3.29, 3.35, 3.25, 3.29, 3.0, 3.65, 3.27, 3.02, 3.2, 3.18, 3.07, 3.2, 3.37, 3.18, 3.08, 3.32, 3.19, 3.16, 3.54, 3.6, 3.39, 3.17, 3.26, 2.87, 3.33, 3.47, 3.04, 3.18, 3.4, 2.96, 3.5, 3.27, 3.24, 3.1, 3.3, 3.0, 3.15, 3.05, 3.4, 3.35, 3.15, 3.02, 3.1, 3.16, 3.4, 3.0, 2.99, 3.04, 3.06, 3.26, 3.36, 3.33, 3.04, 3.35, 3.61, 3.19, 3.21, 3.36, 3.27, 3.38, 3.27, 3.22, 3.54, 3.23, 3.12, 2.89, 3.52, 3.08, 3.2, 3.08, 3.22, 3.1, 3.25, 3.39, 3.2, 2.96, 2.92, 3.3, 3.17, 3.04, 3.18, 3.4, 3.11, 2.98, 3.2, 3.35, 3.26, 3.15, 3.49, 3.3, 3.09, 3.12, 3.36, 3.06, 3.36, 3.14, 3.34, 3.38, 3.03, 3.32, 3.26, 3.33, 3.08, 3.23, 3.58, 3.48, 3.13, 3.32, 3.39, 3.18, 3.34, 3.15, 3.22, 3.31, 3.54, 3.37, 3.71, 3.53, 3.26, 3.55, 3.0, 3.13, 3.1, 3.16, 2.9, 3.32, 3.36, 3.41, 3.38, 3.45, 3.23, 3.22, 3.14, 2.94, 3.4, 3.07, 3.24, 3.28, 3.23, 3.12, 3.36, 2.93, 3.21, 3.03, 3.1, 3.39, 3.28, 3.08, 3.02, 3.38, 3.2, 3.07, 3.34, 3.22, 3.6, 3.22, 3.18, 3.51, 3.03, 3.36, 3.66, 3.42, 3.14, 3.27, 3.21, 3.13, 2.98, 2.95, 3.26, 3.22, 3.23, 3.42, 3.2, 3.15, 3.25, 3.21, 3.14, 3.17, 3.24, 3.12, 3.15, 3.15, 2.93, 3.32, 3.14, 3.16, 3.38, 3.18, 3.01, 3.31, 3.28, 3.23, 3.28, 3.38, 3.56, 3.22, 3.49, 3.04, 2.91, 3.55, 3.39, 3.11, 3.27, 3.71, 3.17, 3.26, 3.06, 3.57, 3.26, 3.15, 3.28, 3.13, 3.14, 3.24, 2.94, 3.34, 3.12, 3.26, 3.23, 3.09, 3.19, 3.47, 3.21, 3.7, 3.37, 3.38, 3.38, 3.54, 3.15, 3.14, 3.4, 3.05, 3.19, 2.97, 3.09, 3.42, 3.03, 3.62, 3.37, 3.16, 3.16, 3.12, 3.29, 3.03, 3.2, 3.4, 2.95, 3.24, 3.53, 3.3, 3.47, 2.86, 3.15, 3.52, 3.22, 3.36, 2.98, 3.12, 3.25, 3.15, 2.93, 2.88, 3.27, 3.48, 3.22, 3.16, 3.01, 3.23, 3.34, 3.21, 3.13, 2.92, 3.32, 3.29, 3.04, 3.2, 3.24, 3.11, 3.02, 3.16, 3.46, 3.3, 3.18, 3.28, 3.14, 3.2, 3.14, 3.18, 3.3, 3.53, 2.87, 3.32, 3.28, 3.33, 3.1, 3.33, 3.23, 3.26, 2.89, 3.11, 3.06, 3.35, 3.33, 3.29, 3.38, 3.16, 3.12, 3.17, 3.44, 3.09, 3.0, 3.18, 3.22, 3.44, 3.14, 3.26, 3.1, 3.12, 3.27, 3.25, 3.39, 3.3, 3.06, 3.45, 3.22, 3.42, 3.52, 3.46, 3.34, 2.94, 3.23, 3.21, 3.12, 3.27, 3.11, 3.35, 3.22, 3.44, 3.38, 3.24, 3.16, 3.29, 3.16, 3.12, 3.06, 3.2, 3.08, 3.2, 2.96, 3.16, 3.42, 3.09, 3.11, 3.12, 3.29, 3.14, 3.27, 3.09, 3.33, 3.45, 3.48, 3.45, 3.51, 3.25, 3.12, 3.17, 3.13, 3.14, 3.12, 2.96, 3.23, 3.08, 3.24, 3.15, 3.33, 3.12, 3.29, 3.37, 3.27, 3.11, 3.22, 3.28, 3.4, 3.34, 3.12, 3.17, 3.45, 3.32, 3.05, 3.38, 3.32, 3.2, 3.27, 3.21, 3.32, 3.31, 3.19, 3.28, 3.12, 3.18, 3.12, 3.26, 3.25, 3.11, 3.15, 3.57, 2.98, 3.08, 3.49, 3.18, 3.06, 3.07, 3.04, 3.18, 3.21, 3.16, 3.21, 3.03, 3.28, 3.29, 3.11, 3.39, 3.24, 3.36, 3.54, 3.26, 2.98, 3.34, 3.09, 2.96, 3.11, 3.35, 3.13, 3.24, 3.23, 3.09, 2.99, 3.31, 3.09, 3.11, 2.94, 3.1, 3.26, 3.29, 3.26, 2.96, 3.08, 3.01, 3.41, 3.37, 3.2, 3.0, 3.09, 3.18, 3.18, 3.38, 3.41, 3.35, 3.11, 3.49, 3.36, 3.22, 3.02, 3.1, 3.17, 3.29, 3.22, 2.96, 3.18, 3.17, 3.08, 3.22, 3.36, 3.38, 3.43, 3.04, 3.12, 3.42, 3.06, 3.03, 3.35, 3.32, 3.34, 3.08, 3.05, 3.11, 3.08, 3.36, 3.44, 3.68, 2.93, 3.05, 3.13, 3.36, 3.1, 3.36, 3.2, 3.17, 3.08, 3.22, 3.3, 2.94, 3.21, 3.03, 3.05, 2.97, 3.36, 3.49, 3.54, 3.26, 3.34, 3.2, 3.25, 3.61, 3.05, 2.93, 3.12, 3.19, 3.22, 3.37, 3.36, 3.25, 3.42, 3.25, 3.02, 3.23, 3.32, 3.28, 3.2, 3.15, 3.14, 3.13, 3.16, 3.42, 2.94, 2.99, 3.21, 3.14, 3.37, 3.22, 3.39, 3.54, 2.95, 3.23, 2.87, 3.52, 3.02, 3.27, 3.21, 3.07, 3.23, 3.3, 3.14, 3.15, 3.08, 3.15, 3.09, 3.1, 3.2, 3.34, 3.05, 3.22, 3.15, 3.04, 3.4, 3.28, 3.28, 3.44, 3.24, 3.27], \"xaxis\": \"x\", \"y\": [0.18439386755371057, 0.5750868907731637, 0.1132172353536568, 0.19850047615697952, 0.6950004168934912, 0.41826441672946313, 0.040828937665112974, 0.2145583871630251, 0.09143093017991866, 0.10013996234885614, 0.3658834999306372, 0.587897812361327, 0.23563705889496211, 0.5289998061994394, 0.5981734696485812, 0.5956194363709464, 0.11295199838815062, 0.6349332021584286, 0.09356782907078887, 0.0672754654033908, 0.3541579814831264, 0.11781588709523827, 0.3295981493457443, 0.23443288181779365, 0.13830133810679424, 0.5122546205578999, 0.03626449638205209, 0.32057959349203036, 0.3955164844050859, 0.21320459763992916, 0.08620177311633537, 0.4132497936565127, 0.19514157099220286, 0.028148892894647393, 0.03728071159582558, 0.20213762816504022, 0.39088790332760825, 0.10566618212719892, 0.11466232649727714, 0.09544364959788487, 0.07351553674018241, 0.3657542344632553, 0.05859665738698361, 0.43634835962676355, 0.4827032077898804, 0.516310366273556, 0.6480037931050455, 0.21122004543372697, 0.030344760075157406, 0.22750344576024595, 0.18673438423788624, 0.5460909738859347, 0.0666291073587214, 0.320234954276134, 0.515425573770442, 0.5751179393061847, 0.3262180383913996, 0.12192585741802231, 0.6165939755266235, 0.09365914315081003, 0.44259853952477324, 0.31958523161407537, 0.09228899111547839, 0.22815273642701062, 0.5282447951108347, 0.7777719169155834, 0.13834506443323813, 0.29425092810710396, 0.5300870647699181, 0.031947521718024174, 0.1108646816717751, 0.053339747820140615, 0.14466174791529418, 0.25697560969337485, 0.3383868137798065, 0.30803904997837983, 0.03434255320493995, 0.08689109251212201, 0.46044782253877736, 0.0973761441498977, 0.3449058470623745, 0.024212367984770777, 0.11665042079727428, 0.3333970234137619, 0.1495417879159372, 0.0679784404121434, 0.2360052425084116, 0.39147703437781534, 0.04428683932015287, 0.5381556738404795, 0.4357341587922019, 0.11843845992675284, 0.28107964630818494, 0.06989794698232743, 0.2658605825653322, 0.22408104406272966, 0.15519213452661884, 0.09873339188795927, 0.10739713799337769, 0.4712507279726723, 0.31257930793611366, 0.6259141532505736, 0.1651629894813923, 0.13024327386797574, 0.08242409751896962, 0.55355901104019, 0.11256152515999429, 0.22124325125588817, 0.05838775174278421, 0.6734770756819889, 0.06919042490492266, 0.5773286546676725, 0.5693181878572973, 0.12726917141891614, 0.27983888222674136, 0.15690954109554833, 0.18593824584442387, 0.05432525584274117, 0.33273366741371935, 0.12435295831370408, 0.48112847828662497, 0.2959384652215836, 0.5042039768350125, 0.3749869638443927, 0.7258627386781167, 0.4806866421912115, 0.6234335830956541, 0.4191951896523489, 0.20821728825178332, 0.6343085651912675, 0.27674577061671146, 0.02140654255666985, 0.42849246998341506, 0.1817444030106703, 0.4551538855951942, 0.05087080041524106, 0.516641204200833, 0.6810720245435042, 0.08151744899857294, 0.4475169494323581, 0.03995706953508171, 0.2181819033834006, 0.20372897255157485, 0.24305701296248816, 0.5381556738404795, 0.2358485729609252, 0.051323642447754336, 0.1913631294907303, 0.32154631204965056, 0.31229802093755377, 0.3917329141436472, 0.39462053822053156, 0.3680669306910641, 0.5017894292511481, 0.32120711190509066, 0.0768019282386515, 0.1168769044932052, 0.31545143431826594, 0.12007957373947853, 0.08354361700756141, 0.2180731800932174, 0.7653011157176768, 0.05076221583963347, 0.11739077279846111, 0.3639458403519926, 0.4815918747301601, 0.35998732468747585, 0.457353694020342, 0.5520498791697908, 0.22168281241722143, 0.2132287846887433, 0.4763394582576197, 0.3040153802820409, 0.20749766415549342, 0.3316810644107503, 0.8126297477835096, 0.5749367295182395, 0.27274039590582944, 0.2685808245693546, 0.5172108675362206, 0.33506587713796443, 0.09616672688355288, 0.041108213935392324, 0.10548050716105373, 0.5016695616404938, 0.20022874051447226, 0.14220640128276774, 0.23772630779738468, 0.19606080251004787, 0.2603188495268066, 0.18846597668723208, 0.19827111133563302, 0.261548791893628, 0.4140325207077993, 0.8134796325151183, 0.12265695643958285, 0.6311167068993262, 0.13481820177301163, 0.0932384579037443, 0.14050160114126486, 0.2562249115981724, 0.08547750670655718, 0.08643201081848362, 0.19981675431015722, 0.31390222338706264, 0.06221739913672386, 0.06996303880871468, 0.30029370289300306, 0.4306817897420764, 0.6595343859760441, 0.2839408857911616, 0.20468539219890003, 0.1130196126722065, 0.2360017176902124, 0.13187147729288817, 0.42313120297864704, 0.06964897436687001, 0.1624399718171824, 0.17200815643270417, 0.07333105637055992, 0.2440137653363641, 0.4900110333069776, 0.3085554157386313, 0.03480496731142946, 0.12148031785507996, 0.15002971926037112, 0.5314247042003052, 0.2758453007685677, 0.2151852748992088, 0.2658605825653322, 0.29911225563077193, 0.6594110243744711, 0.49869782335001445, 0.16788254706683048, 0.11816213334465087, 0.08230909248122409, 0.13653212507346946, 0.25639170942272826, 0.06562233405876228, 0.23311900627036541, 0.3756616197417655, 0.46674395287949066, 0.3092684534350997, 0.8337319641197457, 0.8331457111467163, 0.2591056156836542, 0.4778687671024334, 0.2542440524586721, 0.5361036306539362, 0.07073721340803463, 0.4731688813159418, 0.5755848065786346, 0.356689463387698, 0.14225616860197343, 0.21837916002376445, 0.14466174791529418, 0.29899643271856946, 0.4757427727983842, 0.08126799884203029, 0.1296501822378736, 0.3286954654423938, 0.08620177311633537, 0.13855855420831553, 0.05543377339452393, 0.11917834098009661, 0.2613621884509647, 0.11269900223777074, 0.08429051026621415, 0.3393961441870107, 0.07031960314855146, 0.11356777592095357, 0.4853279864284006, 0.1279289285514792, 0.0584572339054259, 0.08612988585012649, 0.3472440907423937, 0.1248029959061332, 0.07502335399434323, 0.19827111133563302, 0.3424151534036639, 0.3065175956815872, 0.13808860398564737, 0.058092197534895806, 0.04082786106581715, 0.1602592849246841, 0.09156161599234125, 0.5036030690663805, 0.2640411824475748, 0.6468038092930676, 0.07201805208597656, 0.22470230804277058, 0.1334773721572423, 0.04847889440667685, 0.2685808245693546, 0.10911308148570098, 0.6764508967260475, 0.6280060594576413, 0.36761958218269275, 0.16019930342079847, 0.17605308658107655, 0.14078981831089854, 0.2384997092801764, 0.13117402490907393, 0.12818959986091483, 0.4161925244315118, 0.12435295831370408, 0.09814942480303201, 0.05480698563416486, 0.3746187330143109, 0.41092354232892336, 0.507894749900129, 0.5137929421583434, 0.08293523366016065, 0.2964416548030494, 0.15236141109070434, 0.4396941021426354, 0.41893931094950754, 0.09113953260801844, 0.10967473999240707, 0.055732078845942, 0.05640314085190745, 0.06176263301115803, 0.06427139521062619, 0.20386133178572885, 0.21597661143113533, 0.7486409492386699, 0.2610715902497083, 0.09465277491899493, 0.5556171757583562, 0.137718889647652, 0.1978940751503777, 0.08472590699531857, 0.356262641598029, 0.14596950445002987, 0.13865818299932142, 0.3088915816821678, 0.11516321289421916, 0.16121169033174265, 0.40573483691789825, 0.34308606282264, 0.36300204724896845, 0.17193414756867276, 0.035926383178341514, 0.34536882843285344, 0.4400180463892147, 0.5165194668234709, 0.23319834124303085, 0.9637923675569924, 0.2635599134550337, 0.6259141532505736, 0.12324962258280003, 0.1256037712827487, 0.1248029959061332, 0.11665042079727428, 0.29081136443782263, 0.12993062945549005, 0.20959981847797426, 0.12385816607190492, 0.16931651488884025, 0.2468284110987674, 0.6181879252747016, 0.3509541008179864, 0.08619429866610873, 0.09537770951135394, 0.8204393830764495, 0.2493836920976743, 0.10367142046182065, 0.11516383353466464, 0.07169627826225977, 0.5400384130096556, 0.2709141565803237, 0.16809050322974173, 0.3421981324687273, 0.812724325423183, 0.1326589750154965, 0.054670132935181304, 0.055346153509382656, 0.8039442695404772, 0.3276168958360183, 0.6561718697940482, 0.6214102617950452, 0.3046829516703813, 0.7853649284745584, 0.7303620793003476, 0.6719087507962026, 0.16000678121984613, 0.579612101366232, 0.6347749924714103, 0.41894393066564606, 0.06936532322770372, 0.28322834609079706, 0.343263893078516, 0.4450860003239352, 0.3090838478611311, 0.408095736797927, 0.11529682880263803, 0.13359771811640497, 0.2417229185475579, 0.10092265889692065, 0.8181934133883563, 0.3777834313813965, 0.8273808576462511, 0.18439353202429143, 0.5148786056082297, 0.11287077888712382, 0.16015059460472458, 0.29672938182784603, 0.36944561074938853, 0.2505850522824452, 0.8467591712977676, 0.3840267097226593, 0.261779448872241, 0.1645479955558209, 0.14631295673285594, 0.4248523287309329, 0.09222807982804315, 0.2121484308544801, 0.33273366741371935, 0.5470626312455473, 0.8294144697045585, 0.25206662215500397, 0.15998368749433245, 0.548322128117227, 0.3917329141436472, 0.15981565308588508, 0.23631147082452741, 0.21082920466209698, 0.1871387197916503, 0.24774693401855818, 0.1913242313933492, 0.16437448769677154, 0.07582203648947516, 0.032541140295091364, 0.06311143057978008, 0.5009235508757715, 0.12343879567504301, 0.445735807756371, 0.40322837553658053, 0.09397553936597514, 0.1598391281143201, 0.26702494168661406, 0.19782301216908982, 0.06831823449824892, 0.5451167746582685, 0.20142160156100697, 0.25747632252511843, 0.4257317671215596, 0.5062318064185062, 0.10278357133077332, 0.10857266292312517, 0.06223864817381186, 0.11377411494697365, 0.14082424186384768, 0.2589321903149734, 0.31776639873426016, 0.07983414941561229, 0.30174211068680845, 0.42532907678292176, 0.23734670470511587, 0.2862296469110084, 0.24790288035387664, 0.5526146374040077, 0.20425399436950087, 0.5166825128498294, 0.12415322942140417, 0.5310696157212036, 0.3866387435262121, 0.14313186082947948, 0.31648660326859934, 0.026792916001305622, 0.7856428374245099, 0.42383310375799566, 0.5944566396871084, 0.6256605001243821, 0.08813642250468567, 0.03544811528140901, 0.06935406654889886, 0.15751976448865512, 0.22608551288474832, 0.3127311228465576, 0.1409438166611655, 0.3285615524533705, 0.3591330499592894, 0.47964497307801546, 0.7143146030302826, 0.14223944449319303, 0.06929054967731618, 0.32120711190509066, 0.16913647442041335, 0.707286257884667, 0.3230684446475647, 0.7616845263358343, 0.4104900542879092, 0.10053249234255524, 0.1106599594415556, 0.1543174595222413, 0.46003879185641183, 0.3811350878514418, 0.07185070571861518, 0.23882593985771994, 0.5344976262521839, 0.11031385635331636, 0.09610989844306939, 0.4955559099445003, 0.07845190603324759, 0.30697262074812925, 0.12767551958037127, 0.4375661224395835, 0.07737023387634634, 0.15307682457740834, 0.05694427046787409, 0.09028836937410878, 0.4011292297732457, 0.6186146927451245, 0.11561676905211238, 0.0993047499370594, 0.08102401279833105, 0.8100206966555492, 0.10768932514586738, 0.15386113005635593, 0.4026560765644126, 0.045535707525545144, 0.08229583319403, 0.08227601457953415, 0.8241544781987433, 0.0759900855540333, 0.5147505197509459, 0.11103147778198663, 0.42144961755966015, 0.24880465403270857, 0.3112403223054312, 0.3282460941643247, 0.28312386083977936, 0.2865521931047814, 0.16537364909659502, 0.4284132019637321, 0.34116073112729894, 0.051142721309942685, 0.10794707492381372, 0.1108646816717751, 0.29201805921023904, 0.07365131996157204, 0.36851051207096197, 0.2556143611338999, 0.07392456180697715, 0.045535707525545144, 0.15025986810093994, 0.4395989822566938, 0.19636656988846957, 0.21018464628148859, 0.15085686628779282, 0.3429118439192298, 0.16104008564300487, 0.2055862423584408, 0.18673310211333727, 0.5528531989583015, 0.20219789553586287, 0.5807830339134155, 0.6112381610839525, 0.07515362639458067, 0.5722084734915175, 0.3654892991508686, 0.1991057466826236, 0.4912569401667811, 0.05850610073101081, 0.3077884117234785, 0.17038242498240874, 0.14066607718466684, 0.10248584652416493, 0.4022873718442217, 0.07205214632436985, 0.35142291824287475, 0.10941760034103376, 0.06679271580157364, 0.05675388891699207, 0.058987921856350156, 0.3660303223369904, 0.28790374422385034, 0.4158290962648631, 0.40710291595796666, 0.09934102670994882, 0.06362846635195196, 0.30921476208988685, 0.23242198019285765, 0.055541210656895434, 0.5297663836663529, 0.10744632778983743, 0.18410212910939194, 0.17721960751489196, 0.1962664672709783, 0.1617648996714035, 0.10584426414108294, 0.5203501665477333, 0.07365131996157204, 0.31578819840495265, 0.35364190165315845, 0.1707951928721818, 0.41655733121321636, 0.15801546378512366, 0.7568436608419439, 0.22368578646300386, 0.0609449253562836, 0.2225096762928218, 0.18587673368692093, 0.05559101133196209, 0.569598540521716, 0.08073228430722412, 0.15724041301590164, 0.12879141548479, 0.4306817897420764, 0.17998791969802397, 0.41280880088413996, 0.5723062335690389, 0.6457404130724687, 0.10420061808672998, 0.12564769853034463, 0.21795029564941848, 0.4720930498870375, 0.11304202998506685, 0.545112257205237, 0.14852188644910969, 0.17217029085021085, 0.336250902618187, 0.48671482860553816, 0.5093433434984792, 0.35847801144896685, 0.3008706318705062, 0.18494609259573758, 0.4199330463236065, 0.04162287990776414, 0.2633909944023186, 0.4252182303976608, 0.4684623303117058, 0.1925553058603695, 0.09610989844306939, 0.09129843496680234, 0.3302708189676917, 0.4199330463236065, 0.11927294568859859, 0.4864154015695107, 0.06472081497616611, 0.6387929002666255, 0.37932906694235924, 0.093713747684541, 0.20627971812824875], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (curr)\", \"type\": \"scatter\", \"x\": [3.36, 3.22, 3.03, 3.07, 2.93, 2.93, 3.23, 3.29, 3.29, 3.03, 3.12, 3.16, 3.14, 3.12, 3.14, 3.27, 3.14, 3.16, 3.32, 2.97, 3.27, 2.96, 3.15, 3.12, 3.15, 3.07, 3.44, 3.18, 3.3, 3.46, 2.98, 3.3, 3.38, 3.2, 3.42, 3.32, 3.25, 3.42, 3.29, 3.26, 3.01, 3.1, 3.0, 3.22, 3.08, 3.28, 3.27, 3.15, 3.14, 2.79, 3.19, 3.17, 2.99, 3.37, 3.39, 3.28, 3.48, 2.92, 3.04, 3.08, 2.92, 3.31, 3.23, 3.48, 3.03, 3.53, 3.03, 3.51, 3.45, 3.37, 3.38, 3.21, 3.47, 3.32, 3.19, 3.18, 3.04, 3.07, 3.14, 3.39, 3.21, 3.15, 3.33, 3.2, 3.05, 2.97, 3.47, 3.22, 3.14, 3.35, 3.23, 3.08, 3.28, 3.18, 3.4, 3.5, 3.14, 3.17, 3.37, 3.24, 3.15, 3.08, 3.27, 3.34, 3.19, 3.35, 3.16, 3.36, 3.15, 3.18, 3.3, 2.94, 3.4, 3.29, 2.8, 3.13, 3.1, 3.17, 3.18, 3.13, 3.37, 3.34, 3.36, 3.39, 3.29, 3.38, 3.26, 2.93, 3.29, 3.08, 3.16, 3.25, 3.18, 2.96, 3.45, 3.16, 3.23, 3.29, 3.13, 2.94, 3.12, 3.05, 2.83, 3.16, 3.46, 3.22, 3.05, 3.34, 3.23, 3.23, 3.19, 3.47, 3.42, 3.17, 3.1, 3.16, 3.21, 3.2, 3.08, 2.99, 3.31, 3.18, 2.97, 3.04, 3.38, 3.13, 3.19, 3.37, 3.22, 3.06, 3.38, 3.23, 3.15, 3.15, 3.27, 3.26, 3.0, 3.07, 3.04, 3.24, 3.2, 3.42, 3.16, 3.21, 3.24, 2.95, 3.1, 3.07, 3.09, 3.23, 3.53, 3.28, 3.1, 3.18, 3.08, 3.33, 3.06, 3.14, 3.35, 3.09, 3.48, 3.25, 3.13, 3.2, 2.95, 3.25, 3.19, 3.2, 3.28, 3.06, 3.17, 3.13, 3.33, 3.0, 3.19, 3.03, 2.89, 3.08, 2.92, 3.19, 3.14, 3.22, 3.38, 3.09, 3.08, 3.38, 3.48, 3.54, 3.24, 3.24, 3.14, 3.12, 3.3, 3.09, 3.19, 3.04, 3.25, 3.45, 3.18, 3.42, 3.56, 3.67, 3.05, 3.4, 3.21, 3.16, 3.54, 3.32, 3.1, 3.19, 3.31, 3.13, 2.85, 3.16, 3.0, 3.26, 3.4, 3.32, 3.01, 3.24, 3.66, 3.37, 3.58, 3.58, 2.89, 3.31, 3.21, 3.3, 3.4, 3.1, 3.15, 3.51, 2.99, 3.16, 3.1, 3.08, 3.06, 3.55, 3.35, 2.98, 3.48, 3.34, 3.11, 3.56, 3.16, 3.32, 2.95, 3.24, 3.15, 3.15, 3.16, 3.33, 3.2, 3.51, 3.26, 3.26, 3.16, 3.1, 3.14, 3.37, 3.34, 3.05, 3.19, 3.02, 3.05, 2.97, 3.17, 3.13, 3.27, 3.12, 3.34, 3.49, 3.14, 3.32, 3.22, 3.03, 3.1, 3.19, 3.77, 3.36, 3.18, 3.34, 3.3, 3.27, 3.44, 3.07, 3.14, 3.13, 3.18, 3.47, 3.39, 3.31, 3.16, 3.44, 3.28, 3.17, 3.24, 3.17, 3.3, 3.24, 3.13, 3.23, 3.34, 3.29, 3.16, 2.99, 3.39, 3.36, 3.3, 3.14, 3.18, 3.19], \"xaxis\": \"x2\", \"y\": [0.18579927887031134, 0.9274202256360236, 0.2569067617886446, 0.17851375722123963, 0.43011516789686843, 0.3951880410340851, 0.35333307802371594, 0.854899199395705, 0.7749695319329993, 0.7150752736216004, 0.5793836726576811, 0.17187478758168062, 0.503776006633781, 0.6517104478925241, 0.5321166645488455, 0.4291031613352281, 0.6295132227815239, 0.446367751604861, 0.12978626497489776, 0.578130474122496, 0.1303225049324246, 0.4589423036505589, 0.6028673022099313, 0.6724998803801079, 0.055171077290688375, 0.28900585249094113, 0.5807441942986169, 0.6324527530146118, 0.32780881811994433, 0.4437792729685527, 0.47375733914823626, 0.6755390392614542, 0.8494338455743565, 0.8432302027568838, 0.3962269303969661, 0.36574887203466033, 0.9780529644634413, 0.6757083557066426, 0.43212531492562845, 0.6428319532862445, 0.2244465690609686, 0.6759712108962084, 0.300575337785698, 0.4848467547623382, 0.24353241802821812, 0.6165640897352094, 0.801889943514816, 0.6831580296641933, 0.4684052737322374, 0.07309555507266852, 0.17397747102053363, 0.548208100621717, 0.16948307959681597, 0.5287139706981401, 0.8097217619362252, 0.48186532860504816, 0.7044722268129955, 0.5458559966555334, 0.6067015953642416, 0.5767206748937392, 0.5416109283549078, 0.7766135747357961, 0.6371580804073698, 0.3290646799011723, 0.53941953634433, 0.7444876216695655, 0.27658524567301757, 0.8518717737266248, 0.685064206005921, 0.7994946846943811, 0.6254668451144636, 0.29898447003196504, 0.36566585814722175, 0.8260679099411251, 0.265003746926769, 0.18277705216857454, 0.6401445853260315, 0.2878944788643705, 0.7379395090268356, 0.6578861964269485, 0.3048731186933995, 0.6479177870210828, 0.5479007895539181, 0.8109237991420157, 0.4555798348891207, 0.35159410271621183, 0.6741813074403022, 0.40366163192193316, 0.3797333752177462, 0.42326140605337403, 0.49450075158901585, 0.7027754368270075, 0.31556666432085356, 0.5737052492708005, 0.5594846166878963, 0.9879213229528466, 0.23907110553933086, 0.7604887601700165, 0.906894853259191, 0.49150798334893764, 0.6693239074263375, 0.635181004157038, 0.4291031613352281, 0.6805197940362542, 0.8579270215873258, 0.42231028799440284, 0.7973836574204367, 0.6209099995125147, 0.617932351579841, 0.5867531689564582, 0.8217385626893267, 0.5766058512754557, 0.6085190813519714, 0.6488649586424557, 0.19466062481522506, 0.4062994677131635, 0.31500574198466447, 0.6106996692323751, 0.48314991346809855, 0.4300926711133176, 0.4623912750166579, 0.18141675383529432, 0.7404949196358439, 0.7960551628311661, 0.6696955469146251, 0.7471897031921468, 0.15222801432328747, 0.4782875749995391, 0.6696955469146251, 0.4617114467660769, 0.0374236133971757, 0.34638250956587036, 0.5737052492708005, 0.35412183815676124, 0.5342599897609015, 0.6273126624389191, 0.1819914526651868, 0.6450640502472667, 0.7576359910572065, 0.6363669366758954, 0.35783776888428775, 0.4555798348891207, 0.2603691587203709, 0.09638465351539516, 0.7889843001267657, 0.3995975535535492, 0.2404138117262561, 0.5134503976671381, 0.7620160241108803, 0.4852174766770502, 0.7934067722809752, 0.5657371707019572, 0.40591517497640706, 0.5142806824729376, 0.4667389755277017, 0.4597803030361328, 0.14211531046105408, 0.4709774325404933, 0.39253304933110444, 0.8152160844894966, 0.6418608562675732, 0.5695619245525361, 0.15898796250578873, 0.4189913516486339, 0.8097376625536354, 0.2776505479619531, 0.14100712613869515, 0.1625374057836978, 0.21879614767173305, 0.26016804821119, 0.5884346274074399, 0.25171266030158634, 0.5556828679884147, 0.2886326125606653, 0.5013044750460076, 0.23728971353361283, 0.6280660923097139, 0.6281218947904323, 0.6226708394296439, 0.1280348372312241, 0.37812375401711507, 0.6218606462016874, 0.446367751604861, 0.5237591509200082, 0.22560064672115399, 0.4159575064805634, 0.43989745285902637, 0.38133093816728936, 0.379388299643832, 0.4244201113870294, 0.8495234946343055, 0.44699506619782237, 0.3402560380560977, 0.16997778820688525, 0.6509841470756508, 0.5589353890471914, 0.49320900326902484, 0.41485179365651337, 0.2850172536812061, 0.5150740024049856, 0.7905789411902706, 0.6660097546858721, 0.5916856454756931, 0.25029771644034415, 0.21820707607863943, 0.23625780462752244, 0.6174344585079109, 0.33885175059010386, 0.8097775874289167, 0.5502791542248897, 0.45232673966787307, 0.5168725346003686, 0.4922951659433321, 0.2710495410551712, 0.5620189509382074, 0.19827785442852286, 0.35653263682836045, 0.4940220265254579, 0.3934632807735441, 0.349631294967786, 0.6543252873397565, 0.6043841099981286, 0.6572212454398962, 0.5323595728841377, 0.4667716613599331, 0.5480891857555714, 0.5933716837007499, 0.5769442381274095, 0.7796710482718338, 0.4721284230669528, 0.5632051337005155, 0.25606657060722404, 0.47304849589761655, 0.4991199345133047, 0.785831825438318, 0.5512091114854263, 0.31651464458218903, 0.192246895102814, 0.5737052492708005, 0.14970485751781393, 0.8257882443178004, 0.7450862811651306, 0.2404138117262561, 0.3428275867057816, 0.2186811050870735, 0.43730933466596944, 0.1325711740116582, 0.33994853494016564, 0.5172250338280965, 0.4543852880840521, 0.6017244994332274, 0.7267617626256621, 0.304103470637073, 0.49511795227452726, 0.4577650902534979, 0.4389063253281036, 0.3428275867057816, 0.6911248892501751, 0.5457123873353599, 0.3395528272139201, 0.5662837862370104, 0.38281068028313525, 0.1899488449656659, 0.1899488449656659, 0.39416742153886597, 0.4473524415330049, 0.5724944828663213, 0.12652799787397961, 0.14917046216496987, 0.4192276293132746, 0.1727250451072272, 0.7329347521090118, 0.2979855805324535, 0.5384433083808008, 0.2944152049751758, 0.5661013076544325, 0.39283078357423706, 0.6503174362647687, 0.7632350838020857, 0.29422440231251745, 0.8446099855685041, 0.3812461384129847, 0.1264117171095669, 0.6995051325026098, 0.7680829457938805, 0.1086082602083136, 0.50228427853815, 0.8303888649041977, 0.15145052047802054, 0.5239967242043768, 0.49461569007297057, 0.7323984730128237, 0.6372335578763709, 0.8485373319296128, 0.21018203617182263, 0.3854703692354019, 0.6209619763202376, 0.6996467359659702, 0.3913887983225227, 0.600932061108284, 0.18141675383529432, 0.32841971343371723, 0.17397747102053363, 0.3943097935149382, 0.5998672378660981, 0.6052803835931642, 0.35501406908939237, 0.4362847089434372, 0.6005057903956104, 0.45095984485898877, 0.5601124581139871, 0.6908342266509375, 0.29066967723125237, 0.5437491575180791, 0.5955595524057149, 0.4226516353037165, 0.552222307965348, 0.5038457784615318, 0.6752568781943777, 0.7880730680059006, 0.09430965090665133, 0.4986183600001317, 0.24112389044610405, 0.3635071851353404, 0.7047195247497422, 0.5251048099479148, 0.5632051337005155, 0.4520037684813636, 0.5271857161160298, 0.36566585814722175, 0.8775119234978208, 0.49474741138534273, 0.17187478758168062, 0.1069918390347242, 0.6371627391106971, 0.19018032574493748, 0.34352259564225396, 0.806114950115292, 0.47304849589761655, 0.5014153035286022, 0.6721952796384192, 0.7507248720260316, 0.38512814216859315, 0.8930847268109882, 0.863224561659591, 0.15108072818859253, 0.7399796913917198, 0.18579927887031134, 0.47304849589761655, 0.2033384066370545, 0.43667652058029827, 0.23252054766636898], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [3.03, 3.09, 3.09, 3.17, 3.21, 3.19, 3.19, 3.06, 2.96, 3.38, 3.28, 3.13, 3.16, 3.18, 3.46, 3.14, 3.32, 3.06, 3.41, 3.01, 3.14, 3.1, 3.13, 3.32, 3.14, 3.07, 2.97, 3.3, 3.08, 3.36, 2.96, 3.3, 3.37, 3.23, 2.96, 3.09, 3.21, 2.86, 3.23, 3.46, 2.99, 3.13, 3.14, 3.06, 3.21, 3.46, 3.16, 3.59, 2.93, 3.35, 3.29, 3.29, 3.16, 2.96, 3.32, 3.28, 2.87, 3.68, 3.41, 2.9, 3.41, 3.04, 3.2, 2.99, 3.08, 3.32, 3.4, 3.39, 3.3, 3.29, 3.07, 3.26, 3.27, 3.38, 3.25, 3.16, 3.19, 3.13, 3.29, 3.27, 3.11, 3.11, 3.34, 2.99, 3.08, 3.22, 3.47, 3.06, 3.2, 3.3, 3.26, 3.03, 3.42, 3.0, 3.17, 3.16, 3.07, 3.03, 3.2, 3.56, 3.02, 3.34, 3.4, 2.98, 3.07, 2.93, 3.27, 3.34, 3.36, 3.31, 3.15, 3.15, 3.0, 3.21, 3.27, 3.37, 3.75, 3.22, 3.05, 3.37, 3.41, 3.24, 3.21, 3.26, 3.29, 3.27, 3.43, 3.29, 3.34, 2.91, 3.05, 3.38, 3.14, 3.02, 3.32, 3.01, 3.2, 3.31, 3.27, 3.3, 3.13, 3.61, 3.1, 3.2, 3.16, 3.18, 3.07, 3.38, 2.99, 3.0, 3.19, 3.06, 3.19, 3.06, 3.21, 3.09, 3.26, 3.23, 3.2, 2.98, 3.25, 3.45, 3.04, 3.39, 3.07, 2.95, 3.15, 3.22, 3.34, 3.03, 3.42, 2.94, 3.17, 3.38, 3.38, 3.28, 3.3, 3.03, 3.18, 3.31, 3.38, 3.22, 3.27, 3.3, 3.22, 3.32, 3.41, 3.29, 3.0, 3.41, 2.99, 3.0, 3.27, 3.16, 3.41, 3.19, 2.9, 3.51, 3.07, 3.43, 2.93, 3.45, 3.25, 3.14, 2.96, 3.36, 3.18, 3.17, 3.42, 3.24, 3.24, 3.36, 3.39, 3.25, 3.1, 3.15, 3.2, 3.31, 3.54, 3.13, 3.24, 3.36, 3.42, 3.2, 3.24, 2.96, 3.38, 3.12, 3.33, 3.27, 3.53, 3.26, 3.11, 3.35, 3.22, 3.34, 3.1, 3.27, 2.98, 3.23, 3.3, 3.05, 2.95, 3.81, 3.37, 3.1, 2.94, 3.1, 3.51, 3.19, 3.29, 2.99, 3.28, 3.32, 3.05, 3.2, 3.26, 3.17, 2.97, 3.44, 3.35, 3.29, 3.51, 3.31, 3.23, 3.28, 3.31, 2.91, 3.22, 3.14, 3.2, 3.24, 3.04, 3.18, 3.42, 3.5, 3.45, 3.42, 3.47, 3.52, 3.06, 2.97, 3.28, 3.25, 3.12, 3.23, 3.15, 3.24, 3.34, 3.2, 3.26, 3.19, 3.34, 3.1, 3.03, 3.22, 3.07, 3.33, 3.2, 3.23, 3.03, 3.11, 2.92, 3.38, 3.01, 3.4, 3.36, 3.1, 3.09, 2.88, 3.23, 3.26, 3.56, 3.09, 3.31, 3.76, 3.1, 3.14, 3.14, 3.02, 3.17, 3.19, 3.49, 3.42, 3.32, 3.16, 3.11, 3.28, 3.12, 3.36, 3.35, 2.88, 3.36, 3.11, 2.96, 2.99, 3.29, 3.18, 3.12, 3.33, 3.17, 3.34, 3.52, 3.39, 3.32, 3.11, 3.4, 3.45, 3.42, 3.05, 3.14, 3.22, 3.12, 3.06, 3.08, 3.36, 3.28, 3.17, 3.15, 3.4, 3.03, 3.33, 3.34, 2.94, 3.21, 3.24, 3.22, 3.54, 3.25, 3.1, 3.2, 3.29, 3.21, 3.03, 3.07, 3.35, 3.16, 3.18, 3.3, 3.44, 3.07, 3.13, 3.06, 3.22, 3.19, 3.48, 2.94, 3.33, 3.3, 3.24, 3.24, 3.19, 3.55, 3.18, 3.32, 3.36, 2.97, 3.17, 3.3, 3.3, 3.4, 3.3, 3.2, 2.85, 3.32, 3.42, 3.33, 3.3, 2.96, 3.12, 3.26, 3.49, 3.0, 3.12, 3.12, 3.37, 3.06, 3.17, 3.15, 3.14, 3.31, 3.27, 3.24, 3.4, 2.98, 3.06, 3.15, 3.0, 3.41, 3.16, 3.05, 3.8, 3.09, 3.15, 3.32, 3.43, 3.37, 3.01, 3.34, 3.0, 3.14, 3.57, 3.11, 3.04, 3.06, 2.94, 3.7, 3.18, 3.39, 3.2, 3.14, 3.34, 3.34, 3.16, 2.94, 3.41, 3.2, 3.29, 3.6, 3.28, 3.04, 3.2, 3.3, 3.06, 3.03, 3.52, 3.16, 3.5, 3.25, 3.46, 3.36, 3.05, 3.58, 2.9, 3.15, 3.13, 3.24, 3.23, 3.32, 3.44, 3.19, 3.21, 3.39, 3.41, 3.35, 2.99, 3.07, 3.04, 3.09, 3.42, 3.27, 3.36, 3.31, 3.27, 3.14, 3.3, 3.11, 3.11, 3.29, 3.1, 3.04, 3.06, 3.14, 3.42, 3.32, 3.22, 3.17, 3.34, 3.08, 3.1, 3.34, 3.25, 3.12, 3.06, 3.12, 3.29, 3.38, 3.27, 3.24, 3.52, 3.36, 3.21, 3.59, 3.25, 3.22, 2.99, 3.16, 3.31, 3.21, 3.06, 3.38, 3.16, 3.01, 3.19, 3.15, 3.13, 3.05, 3.0, 3.35, 3.0, 3.38, 3.24, 3.33, 3.38, 3.29, 3.26, 3.23, 3.31, 3.15, 3.14, 3.16, 2.99, 3.42, 3.23, 3.44, 3.23, 3.4, 3.18, 3.46, 3.36, 3.2, 3.04, 2.9, 3.35, 3.26, 3.08, 3.05, 3.12, 3.31, 3.16, 3.72, 3.47, 3.54, 3.29, 2.99, 3.49, 3.47, 3.13, 3.2, 3.19, 3.24, 3.07, 3.03, 3.51, 3.16, 3.22, 3.29, 3.22, 3.11, 3.44, 3.44, 3.3, 3.2, 2.94, 3.22, 3.12, 3.4, 3.3, 3.19, 3.27, 3.15, 3.28, 3.09, 3.04, 3.24, 3.26, 3.15, 3.23, 3.44, 3.34, 3.24, 2.98, 3.19, 3.0, 3.29, 3.1, 3.35, 3.28, 3.0, 3.26, 3.24, 2.98, 3.15, 3.26, 3.27, 3.11, 3.04, 2.93, 3.22, 3.19, 3.38, 3.06, 3.26, 3.25, 3.35, 3.24, 3.19, 3.34, 3.06, 3.13, 3.13, 3.03, 2.97, 3.41, 3.06, 3.11, 3.22, 3.25], \"xaxis\": \"x2\", \"y\": [0.6660328535674787, 0.4955559099445003, 0.11251030999551548, 0.5313240922219649, 0.7616845263358343, 0.42881839881496897, 0.22146723198036844, 0.2709448900825402, 0.04188686298684474, 0.3198999677935893, 0.586632325439729, 0.3332859260788763, 0.0891770245136605, 0.07249138429342028, 0.0813041402249215, 0.2808128557304226, 0.18155424903412543, 0.14020593233116785, 0.20529540916933675, 0.1755850319354616, 0.5722846846512241, 0.4684623303117058, 0.2863708053899042, 0.4489302200945696, 0.3606737334686688, 0.09834172337505831, 0.1439119889738254, 0.10526388551166177, 0.08976738859769384, 0.15927641460572795, 0.07353544332944184, 0.4894096639868448, 0.24735122968283396, 0.41440459167745447, 0.10107859516115147, 0.4809249647595707, 0.043928674649753696, 0.27268427565697984, 0.07203278686513981, 0.35989685204578803, 0.08410225657903847, 0.09640449279894714, 0.2859044620344169, 0.766491644508495, 0.27194216744256416, 0.11891721880979944, 0.6033870782914414, 0.8445823904457724, 0.4148378249676725, 0.09538880480821377, 0.5822786697287807, 0.2006236885231063, 0.30215903380660414, 0.3526626332448971, 0.22921561702294402, 0.3499358724503807, 0.451050436906263, 0.01968005574460141, 0.3849224947932618, 0.608666907839271, 0.30333177217190177, 0.05732515971384944, 0.08299070223644744, 0.155374347961305, 0.4378217303747408, 0.10641916767178827, 0.3207785913922725, 0.3280003244598044, 0.4747408725557203, 0.27229542413121455, 0.5314247042003052, 0.13834506443323813, 0.652508483608137, 0.1775869136191267, 0.4659209431511335, 0.3288332341233703, 0.47224603889779837, 0.2773569186284155, 0.18590272545123854, 0.6719763059805124, 0.04569198037744582, 0.22473444069733528, 0.0776074933333939, 0.1411968215808168, 0.3654892991508686, 0.06069899520469324, 0.21029328672965164, 0.13919371635861133, 0.16321149678759816, 0.6144435769482088, 0.1388055550317996, 0.0827658987104557, 0.0793107693477757, 0.04994940743047871, 0.46220165202879504, 0.08265172102971341, 0.5554564865761329, 0.10902951494304747, 0.26480674198345266, 0.31816712550642645, 0.20184400370343658, 0.23734670470511587, 0.19264674509953905, 0.03558879485690103, 0.5314247042003052, 0.3013473679880785, 0.8043030592862955, 0.07665185966197174, 0.17816243980233548, 0.14637302723887635, 0.43623195291339645, 0.5773286546676725, 0.06996409198491005, 0.0635191394270278, 0.11839391684253864, 0.03368970372860669, 0.16544292122901683, 0.5002106013252752, 0.20783967621931676, 0.4413184352618238, 0.1377753535318076, 0.017128038770129694, 0.09070427960766203, 0.05237321155563324, 0.46044782253877736, 0.09863911308639095, 0.6058955548956951, 0.07377868677997379, 0.33726125667837825, 0.03705661785513226, 0.03856885477325478, 0.01970319875133708, 0.06623921298607705, 0.655672818127978, 0.36403826442427, 0.375635621083512, 0.25822104517587474, 0.26990817233175546, 0.30316845466795117, 0.21597661143113533, 0.10411587283779344, 0.4582573305440075, 0.28974208538397184, 0.3995654588450376, 0.48407929824265805, 0.2412117545349558, 0.49704114689177337, 0.3112403223054312, 0.13571503940671914, 0.35304273602320047, 0.18963603484652192, 0.06023564559469896, 0.305863422303413, 0.34062746964654456, 0.03532029949184434, 0.20200996882548472, 0.207876095289533, 0.11304202998506685, 0.26487496820305634, 0.46674395287949066, 0.05931266843465788, 0.6063731497207538, 0.053339747820140615, 0.16056749669580483, 0.3366557342021428, 0.18735912995827353, 0.2667542380283816, 0.9197592959547904, 0.13322255285490225, 0.3533185668595151, 0.08763312389948397, 0.343329095265401, 0.1298321532292276, 0.11240742021865013, 0.03412749239977686, 0.23316671381479437, 0.13955591125269062, 0.065615492475942, 0.03940539431326806, 0.04874684240881699, 0.42507109047861347, 0.3720756994829524, 0.20627971812824875, 0.23346983492740092, 0.299872058778726, 0.14688925552714138, 0.20529540916933675, 0.11294333341234963, 0.4523771212155355, 0.15895981664313275, 0.12633289347617382, 0.34801013400503944, 0.063056887931354, 0.09222807982804315, 0.19281104432210028, 0.11843845992675284, 0.1064686731970873, 0.12171087020281346, 0.49704114689177337, 0.4202798549667376, 0.058322454167927695, 0.40418598015134155, 0.7514842711311043, 0.067978575311199, 0.1468497162592186, 0.3655805321171328, 0.36741292271676196, 0.08785516413846428, 0.4223454464089015, 0.09472348251934337, 0.14196098925812006, 0.10013555988874479, 0.32154631204965056, 0.05416575683382341, 0.786126361492164, 0.04696516601190348, 0.26926088858349784, 0.28123172687107445, 0.3094364396730669, 0.04307250962973752, 0.07126159086244754, 0.6143015945908075, 0.495586079448059, 0.46102608015166635, 0.40789311683600216, 0.8929715185951024, 0.1227006502272181, 0.3638055988942468, 0.10470002869891348, 0.29304213908849364, 0.8936703981375603, 0.3534407380188983, 0.0883666731866185, 0.07895584641700149, 0.05166417783587085, 0.4199775765299997, 0.10304865631077798, 0.1041340676595982, 0.11031385635331636, 0.22368578646300386, 0.22137255536682798, 0.0725394352715707, 0.08320759746190642, 0.3577905591727162, 0.36362749207413336, 0.13058702032609693, 0.4306817897420764, 0.4684623303117058, 0.3185463047756948, 0.6991046594229053, 0.33105510290791684, 0.35804773811787727, 0.3499358724503807, 0.17780319308126435, 0.07142366539796174, 0.1504846162366139, 0.28643330026545544, 0.11492102279820171, 0.08716328114311156, 0.12905574960179156, 0.5528531989583015, 0.2852168598030531, 0.3185463047756948, 0.41766807389819915, 0.22818770291371737, 0.10749415552266317, 0.07500089027222667, 0.2150933620687273, 0.4879833184669665, 0.21367083697314282, 0.18281788227943807, 0.11217648511765432, 0.01860460444149037, 0.4990100838788346, 0.3212979959143686, 0.7252893191599291, 0.30018855716775616, 0.2808216200321265, 0.24332849241566534, 0.22583693263898685, 0.307128141019565, 0.12930297020615966, 0.07734813107736227, 0.38078614076753503, 0.037937415915298756, 0.18389331462546077, 0.2015421194948802, 0.10121634311933059, 0.7209948827487924, 0.252131738577411, 0.19866278493931944, 0.5569604587758099, 0.19172534874952063, 0.07516041810443141, 0.18673310211333727, 0.20736440356309183, 0.27568985010185776, 0.1748501221961516, 0.134246332983591, 0.12151400729184814, 0.03860330573341564, 0.16198960071610413, 0.062309112953929935, 0.14943540958877521, 0.46827469198568006, 0.12435295831370408, 0.11768791031746062, 0.10794707492381372, 0.04347111427796346, 0.07423675680829, 0.1602542791395647, 0.19911642350143877, 0.2379444352717226, 0.36664322039668684, 0.10130143557253446, 0.17108028607870185, 0.6143194513817134, 0.5641235853966853, 0.29864316680665437, 0.44752301946823647, 0.13459844499503626, 0.037461465199631894, 0.5002964248569376, 0.4059565893810353, 0.7035957096210382, 0.0629603198376949, 0.25036415064992923, 0.14780834332950044, 0.24800647860056513, 0.10438723399855232, 0.24366911510822187, 0.4574644219698093, 0.8347014835967527, 0.42226245660703365, 0.4073158502222598, 0.47525484003715535, 0.37845934883934684, 0.35325777167774697, 0.4763432908647238, 0.18941100564626978, 0.23853527246002126, 0.27277355193056574, 0.5556171757583562, 0.19481513110659687, 0.7460207524242459, 0.12627308236197843, 0.2115813466591615, 0.4773837842994688, 0.22238536240250728, 0.1978655273089749, 0.32057959349203036, 0.1601330373243487, 0.6256605001243821, 0.34062746964654456, 0.5899158924001677, 0.1273375405407705, 0.6866376712310945, 0.3812864953771038, 0.07918534602430627, 0.10510921928053807, 0.052405178286905496, 0.29010285216427345, 0.5802968836962079, 0.4475494904811408, 0.33107045093633036, 0.6046547135519548, 0.33132995382553565, 0.3391582818855403, 0.37109937806185267, 0.18876467901964422, 0.03244681540368277, 0.6531311156123596, 0.18281848038190407, 0.06840545126676123, 0.23876166598551407, 0.5602062902528231, 0.05478334190217349, 0.18965009362393503, 0.502081053312289, 0.0945975060483667, 0.24937367783354814, 0.14040338921272166, 0.09582424632391484, 0.4879833184669665, 0.07536550594022651, 0.37763546052463404, 0.20240400638142053, 0.06234715971662652, 0.1729504208160284, 0.2536573606029918, 0.1491704939138675, 0.47224603889779837, 0.20734784509414073, 0.1656619584420439, 0.20263687678412212, 0.4576701693643329, 0.3746187330143109, 0.06578487521364562, 0.09359041291034786, 0.15714155813810793, 0.43198081216185935, 0.17693664965610134, 0.14200602748771296, 0.16878839641400256, 0.11131318694256087, 0.43040972974554736, 0.12494266711040569, 0.5286591337585229, 0.3917329141436472, 0.14284790216410748, 0.29931895876037384, 0.3998656181534954, 0.13198036366642862, 0.2166851793268345, 0.164669749255824, 0.3116999397838065, 0.5702002297218003, 0.2867818412254799, 0.05809024612643199, 0.0701620515557333, 0.10493669218879953, 0.03474255021640338, 0.14069518845012563, 0.7697788668098057, 0.44513161239284327, 0.12104291767226882, 0.2823656727566666, 0.28640273091276736, 0.09904459769556595, 0.10889384421684001, 0.1978655273089749, 0.6326587477498924, 0.0766186874204361, 0.07300117689776386, 0.3978521493117628, 0.7293533971641823, 0.24040337450518035, 0.46827469198568006, 0.03737110954461231, 0.48112847828662497, 0.5755848065786346, 0.12151472907643468, 0.332302417201758, 0.3208349144509022, 0.13406270144296106, 0.47820199098358873, 0.024219732643774528, 0.7923035912680444, 0.3099424932714111, 0.8494816644677875, 0.15230116664989468, 0.8795672599938588, 0.34536882843285344, 0.587897812361327, 0.3660303223369904, 0.3074082248441362, 0.1925553058603695, 0.1582957933341015, 0.5297945963993664, 0.1892543681582496, 0.06574637766643598, 0.03286461121245521, 0.6223124217546917, 0.48666930315350876, 0.17200815643270417, 0.27042696199957883, 0.16010429726024444, 0.25291734909108765, 0.22778758435893687, 0.6055190518965303, 0.41989528411161425, 0.2865861541738164, 0.17344095530188786, 0.4163761941495938, 0.24610426408478792, 0.029106329843254564, 0.5849270471051293, 0.09607886499379148, 0.4890296174547498, 0.11193395874659995, 0.3667485749721523, 0.29672938182784603, 0.13696827462710404, 0.03986507081677082, 0.41542023534722683, 0.1642424989032959, 0.041559354155004224, 0.1266666793707928, 0.5259198205822933, 0.42123490919744344, 0.6147437654518444, 0.42849246998341506, 0.04874684240881699, 0.16870816563337898, 0.35179373534084035, 0.4552463954734379, 0.1543174595222413, 0.4641274821418986, 0.1106599594415556, 0.40441066041397966, 0.05916303638108533, 0.24194101851814365, 0.5755848065786346, 0.23631147082452741, 0.04679471849088612, 0.33132995382553565, 0.6031606095022326, 0.16900214819844117, 0.9322526967181247, 0.1065938389205352, 0.0540586741766943, 0.14920224829950646, 0.03054451782098533, 0.13595064656866984, 0.15908339514281045, 0.09402391562754642, 0.27219479721363327, 0.10477531970828624, 0.6046547135519548, 0.04412971358840656, 0.0821245873848182, 0.24953715645213048, 0.24311299470472425, 0.679537413518331, 0.02875041056121841, 0.2874129658970298, 0.17131102264191878, 0.07042427222914205, 0.1577516063520068, 0.39934634677258996, 0.42249259173992826, 0.24940231538328683, 0.46827469198568006, 0.040988937643475554, 0.034828704291737345, 0.26663563965858417, 0.22421743312747255, 0.10716094829621758, 0.7421831263598226, 0.4644511163280224, 0.1591307416719686, 0.21502194578256428, 0.12883185373794437, 0.15520095945599266, 0.04280666734842442, 0.06928764484923078, 0.3578757504587543, 0.0760792945579073, 0.06637805380770656, 0.5755848065786346, 0.4326356954473739, 0.16985579355455038, 0.47152805642545803, 0.11644579282256762, 0.11790522998710073, 0.5438286352264949, 0.41561805514360906, 0.050606352251634235, 0.21836830194439782, 0.22298545275517268, 0.1504846162366139, 0.16819644397314482, 0.47796113776613436, 0.14100197907825862, 0.7878397890034206, 0.12176963827920351, 0.09814942480303201, 0.23162396036129984, 0.04400104962869911, 0.061588508633294015, 0.2774601068082493, 0.40816383821078206, 0.14036214651023216, 0.11837607594274324, 0.0703155477214753, 0.17002415827487982, 0.24611532014486182, 0.06874641727313702, 0.30975746960573625, 0.07004288447243323, 0.6453829176356538, 0.3880412370469972, 0.10205495289732236, 0.12171087020281346, 0.38550692709735157, 0.4398162761337091, 0.5769741243450848, 0.48842976274850136, 0.3866799681687785, 0.17129518728202664, 0.5711206597512044, 0.4456070955069118, 0.4585850027539752, 0.25462747480751524, 0.34771016550763867, 0.35548618548401445, 0.07878090041588082, 0.3008706318705062, 0.08117751180329491, 0.055511805197920094, 0.1600174453683395, 0.35597309965685686, 0.5473978930443646, 0.3321771897262046, 0.14643302530661162, 0.7653011157176768, 0.24188431843396252, 0.16704799028757666, 0.41136103198090634, 0.5749869949413896, 0.709238838470871, 0.09340318303147321, 0.602429869503323, 0.04154705947390969, 0.7519582179986716, 0.15993940416551844, 0.04372375151311325, 0.4076899811241429, 0.4644511163280224, 0.3133137248525114, 0.24628490675063597, 0.06972977174174444, 0.15949948541388637, 0.2241543425141257, 0.1729876202034616, 0.07290025122558275, 0.1220000714032804, 0.36493953208423235, 0.09420126302076737, 0.026726938234992392, 0.7199273032686843, 0.4606762448039463, 0.04906818437448113, 0.19446415942665518, 0.14876853598344464, 0.3247816953453747, 0.023320858692869595, 0.7310618090422621, 0.48944479260603346, 0.20357574295749958, 0.0840537250624015, 0.5368744051465595, 0.21101467800102214, 0.46682279298460017, 0.3749869638443927, 0.46592999202179275, 0.10188412989688433, 0.15751976448865512], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"pH\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"pH\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}}, {\"id\": \"All_sulphates\", \"params\": {\"data\": [{\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Reference<br>sulphates=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [0.42, 0.54, 0.53, 0.49, 0.54, 0.54, 0.53, 0.5, 0.38, 0.38, 0.34, 0.54, 0.37, 0.44, 0.67, 0.45, 0.37, 0.68, 0.48, 0.34, 0.56, 0.59, 0.42, 0.4, 0.32, 0.54, 0.4, 0.35, 0.4, 0.39, 0.42, 0.65, 0.39, 0.9, 0.63, 0.48, 0.55, 0.41, 0.53, 0.75, 0.38, 0.44, 0.71, 0.41, 0.49, 0.4, 0.47, 0.45, 1.13, 0.37, 0.37, 0.58, 0.41, 0.47, 0.54, 0.38, 0.48, 0.32, 0.29, 0.58, 0.57, 0.48, 0.41, 0.51, 0.68, 0.59, 0.39, 0.35, 0.46, 0.22, 0.64, 0.26, 0.4, 0.51, 0.69, 0.46, 0.86, 0.33, 0.75, 0.32, 0.72, 0.36, 0.51, 0.46, 0.41, 0.72, 0.48, 0.91, 0.48, 0.67, 0.51, 0.58, 0.67, 0.52, 0.44, 0.4, 0.38, 0.42, 0.48, 0.62, 0.4, 0.46, 0.69, 0.64, 0.36, 0.5, 0.45, 0.42, 0.76, 0.56, 0.45, 0.38, 0.54, 0.76, 0.44, 0.53, 0.54, 0.5, 0.59, 0.85, 0.52, 0.61, 0.41, 0.53, 0.46, 0.54, 0.56, 0.53, 0.56, 0.96, 0.39, 0.83, 0.41, 0.85, 0.5, 0.34, 0.64, 0.6, 0.47, 0.74, 0.44, 0.46, 0.52, 0.59, 0.67, 0.62, 0.78, 0.36, 0.6, 0.35, 0.39, 0.68, 0.54, 0.43, 0.54, 0.53, 0.41, 0.41, 0.41, 0.43, 0.48, 0.58, 0.5, 0.96, 0.69, 0.5, 0.49, 0.33, 0.41, 0.33, 0.79, 0.59, 0.51, 0.39, 0.57, 0.38, 0.56, 0.54, 0.43, 0.69, 0.57, 0.48, 0.8, 0.43, 0.47, 0.5, 0.39, 0.64, 0.52, 0.51, 0.48, 0.63, 0.51, 0.46, 0.53, 0.38, 0.46, 0.55, 0.47, 0.5, 0.49, 0.71, 0.58, 0.89, 0.63, 0.81, 0.94, 0.41, 0.41, 0.46, 0.38, 0.54, 0.48, 0.46, 0.39, 0.6, 0.43, 0.48, 0.38, 0.63, 0.54, 0.39, 0.46, 0.6, 0.72, 0.49, 0.53, 0.78, 0.55, 0.44, 0.54, 0.41, 0.6, 0.56, 0.58, 0.48, 0.69, 0.57, 0.43, 0.4, 0.46, 0.48, 0.43, 0.54, 0.59, 0.39, 0.5, 0.49, 0.44, 0.42, 0.69, 0.49, 0.76, 0.83, 0.65, 0.4, 0.34, 0.45, 0.44, 0.57, 0.37, 0.42, 0.5, 0.76, 0.62, 0.41, 0.43, 0.57, 0.83, 0.48, 0.54, 0.49, 0.47, 0.57, 0.49, 0.46, 0.45, 0.85, 0.63, 0.46, 0.37, 0.37, 0.52, 0.58, 0.49, 0.73, 0.62, 0.46, 0.66, 0.35, 0.58, 0.59, 0.62, 0.43, 0.59, 0.4, 0.7, 0.42, 0.68, 0.58, 0.66, 0.58, 0.61, 0.42, 0.42, 0.85, 0.37, 0.64, 0.47, 0.56, 0.59, 0.42, 0.67, 0.79, 0.42, 0.67, 0.58, 0.42, 0.63, 0.46, 0.56, 0.64, 0.66, 0.79, 0.5, 0.67, 0.36, 0.69, 0.58, 0.49, 0.37, 0.44, 0.82, 0.61, 0.54, 0.52, 0.54, 0.78, 0.64, 0.53, 0.51, 0.33, 0.64, 0.72, 0.68, 0.41, 0.54, 0.55, 0.38, 0.46, 0.4, 0.66, 0.45, 0.51, 0.5, 0.5, 0.72, 0.37, 0.97, 0.38, 0.63, 0.43, 1.36, 0.84, 0.58, 0.49, 0.54, 0.38, 0.86, 0.52, 0.42, 0.53, 0.53, 0.34, 0.62, 0.34, 0.5, 0.6, 0.44, 0.62, 0.69, 0.46, 0.62, 0.55, 0.4, 0.54, 0.77, 0.77, 0.6, 0.45, 0.47, 0.45, 0.45, 0.41, 0.54, 0.66, 0.49, 0.42, 0.31, 0.54, 0.57, 0.58, 0.65, 0.67, 0.37, 0.53, 0.38, 0.53, 0.67, 0.37, 0.61, 0.49, 0.69, 0.44, 0.33, 0.48, 0.46, 0.59, 0.51, 0.4, 0.55, 0.49, 0.39, 0.39, 0.4, 0.4, 0.32, 0.42, 0.46, 0.47, 0.38, 0.63, 0.58, 0.44, 0.44, 0.34, 0.68, 0.66, 0.79, 1.02, 0.35, 0.41, 0.61, 0.36, 0.59, 0.46, 0.59, 0.56, 0.9, 0.42, 0.38, 0.42, 0.4, 0.51, 0.57, 0.6, 0.35, 0.61, 0.5, 0.38, 0.66, 0.59, 0.91, 0.5, 0.35, 0.68, 0.42, 0.48, 0.5, 0.9, 0.54, 0.6, 0.44, 0.47, 0.67, 0.25, 0.68, 0.54, 0.52, 0.46, 0.57, 0.61, 0.46, 0.64, 0.45, 0.38, 0.46, 0.54, 0.39, 0.56, 0.71, 0.58, 0.38, 0.72, 0.52, 0.49, 0.38, 0.5, 0.53, 0.6, 0.54, 0.31, 0.46, 0.44, 0.37, 0.52, 0.43, 0.45, 0.36, 0.44, 0.46, 0.47, 0.59, 0.46, 0.5, 0.39, 0.62, 0.54, 0.59, 0.57, 0.45, 0.43, 0.34, 0.51, 0.58, 0.36, 0.73, 0.72, 0.42, 0.38, 0.77, 0.6, 0.44, 0.54, 0.42, 0.67, 0.53, 0.96, 0.54, 0.64, 0.55, 0.39, 0.6, 0.48, 0.44, 0.43, 0.65, 0.36, 0.51, 0.59, 0.67, 0.43, 0.64, 0.84, 0.49, 0.62, 0.4, 0.56, 0.61, 0.54, 0.54, 0.49, 0.51, 0.53, 0.73, 0.33, 0.37, 0.59, 0.4, 0.55, 0.47, 0.53, 1.06, 0.49, 0.65, 0.4, 0.43, 0.47, 0.59, 0.45, 0.43, 0.6, 0.42, 0.93, 0.38, 0.53, 0.53, 0.52, 0.61, 0.62, 1.95, 0.35, 0.48, 0.39, 0.57, 0.68, 0.49, 0.92, 0.49, 0.58, 0.47, 0.9, 0.5, 0.53, 0.92, 0.5, 0.74, 0.41, 0.49, 0.41, 0.34, 0.69, 0.55, 0.77, 0.38, 0.72, 0.59, 0.4, 0.73, 1.36, 0.77, 0.58, 0.66, 0.6, 0.58, 0.5, 0.79, 0.36, 0.5, 0.62, 0.44, 0.56, 0.5, 0.56, 0.46, 0.53, 0.78, 0.5, 0.65, 0.58, 0.53, 0.98, 0.44, 0.46, 0.95], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Current<br>sulphates=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [0.38, 0.44, 0.87, 0.39, 0.58, 0.33, 0.7, 0.38, 0.61, 0.59, 0.56, 0.52, 0.37, 0.53, 0.36, 0.41, 0.58, 0.44, 0.87, 0.33, 0.46, 0.5, 0.38, 0.58, 0.6, 0.33, 0.3, 0.54, 0.6, 0.49, 0.35, 0.49, 0.82, 0.41, 0.34, 0.31, 0.76, 0.49, 0.53, 0.53, 0.32, 0.5, 0.38, 0.41, 0.8, 0.74, 0.38, 0.57, 0.49, 0.72, 0.61, 0.67, 0.36, 0.25, 0.49, 0.75, 0.68, 0.79, 0.44, 1.33, 0.68, 0.38, 0.47, 0.36, 0.36, 0.42, 0.58, 0.62, 0.5, 0.8, 0.53, 0.39, 0.29, 0.51, 0.37, 0.42, 0.44, 0.45, 0.47, 0.61, 0.46, 0.52, 0.85, 0.68, 0.49, 0.78, 0.73, 0.3, 0.27, 0.49, 0.35, 0.33, 0.5, 0.4, 0.48, 0.58, 0.65, 0.43, 0.72, 0.77, 0.34, 0.5, 0.84, 0.43, 0.53, 0.62, 0.54, 0.35, 0.59, 0.63, 0.5, 0.38, 0.37, 0.51, 0.5, 0.93, 0.76, 0.56, 0.65, 0.71, 0.64, 0.99, 0.56, 0.42, 0.75, 0.74, 0.74, 0.62, 0.75, 0.57, 0.36, 0.88, 0.44, 0.56, 0.44, 0.51, 0.67, 0.7, 0.57, 0.5, 0.62, 0.49, 0.61, 0.48, 0.41, 0.6, 0.58, 0.77, 0.39, 0.47, 0.38, 0.68, 0.44, 0.36, 0.68, 0.53, 0.82, 0.73, 0.45, 0.48, 0.4, 0.78, 0.26, 0.49, 0.82, 0.36, 0.45, 0.55, 0.86, 0.39, 0.57, 0.32, 0.39, 0.66, 0.45, 0.49, 0.43, 0.42, 0.47, 0.77, 0.44, 0.41, 0.95, 0.76, 0.43, 0.82, 0.87, 0.37, 0.45, 0.75, 0.39, 0.43, 0.59, 0.48, 0.46, 0.58, 0.57, 0.38, 0.58, 0.64, 0.59, 0.56, 0.57, 0.4, 0.56, 0.63, 0.53, 0.85, 0.51, 0.78, 0.41, 0.33, 0.6, 0.6, 0.56, 0.65, 0.47, 0.44, 0.5, 0.49, 0.4, 0.55, 0.6, 0.53, 0.66, 0.58, 0.68, 0.48, 0.77, 0.48, 0.72, 0.44, 0.66, 0.47, 0.66, 0.82, 0.4, 0.54, 0.31, 0.47, 0.53, 0.46, 0.39, 0.57, 0.64, 0.87, 0.41, 0.5, 0.47, 0.7, 0.76, 0.3, 0.75, 0.41, 0.55, 0.35, 0.45, 0.58, 0.48, 0.73, 0.62, 0.57, 0.47, 0.35, 0.39, 0.48, 0.51, 0.43, 0.48, 0.43, 0.37, 0.43, 0.58, 0.65, 0.4, 0.7, 0.57, 0.44, 0.56, 0.76, 1.06, 0.51, 0.51, 0.49, 0.64, 0.63, 0.36, 0.52, 0.57, 0.43, 1.11, 0.63, 0.42, 0.47, 0.49, 0.46, 0.45, 0.42, 0.33, 0.44, 0.33, 0.75, 0.59, 0.38, 0.48, 0.85, 0.56, 0.54, 0.75, 0.47, 0.38, 0.6, 0.63, 0.5, 0.52, 0.63, 0.51, 0.5, 0.51, 0.48, 0.64, 0.44, 0.59, 0.36, 0.64, 0.39, 0.4, 0.77, 0.48, 0.73, 0.81, 0.36, 0.86, 0.53, 0.43, 0.38, 0.75, 0.41, 0.43, 0.46, 0.39, 0.52, 0.58, 0.84, 0.54, 0.45, 0.42, 0.5, 0.9, 0.34, 0.35, 0.52, 0.47, 0.36, 0.4, 0.82, 0.6, 0.38, 0.82, 0.72, 0.32, 0.59, 0.75, 0.35, 0.75, 0.43, 0.46, 0.5, 0.57, 0.69, 0.46, 0.53, 0.54, 0.54, 0.56, 0.49, 0.48, 0.37, 0.65, 0.46, 0.5, 0.55, 0.55, 0.48, 0.43, 0.62, 0.46, 0.44, 0.65, 0.44, 0.58, 0.44, 0.49, 0.64, 0.42, 0.62, 0.47, 0.53, 0.59, 0.45, 0.41, 0.31, 0.64, 0.5, 0.41, 0.42, 0.46, 0.36, 0.39, 0.36, 0.7, 0.49, 0.68, 0.46, 0.5, 0.7, 0.36, 0.65, 0.6, 0.49, 0.56, 0.98, 0.77, 0.6, 0.7, 0.59, 0.6, 0.33, 0.61, 0.4, 0.34, 0.41, 0.53, 0.51, 0.71, 0.65, 0.74, 0.48, 0.7, 0.52, 0.49, 0.84, 0.32, 0.54, 0.33, 0.66, 0.75, 0.4, 0.78, 0.47, 0.37, 0.54, 0.72, 0.54, 0.43, 0.53, 0.56, 0.55, 0.43, 0.49, 0.59, 0.5, 0.42, 0.41, 0.38, 0.65, 0.27, 0.54, 0.4, 0.57, 0.45, 0.3, 0.67, 0.43, 0.41, 0.55, 0.43, 0.6, 0.35, 0.42, 0.65, 0.38, 0.77, 0.76, 0.52, 0.32, 0.32, 0.37, 0.43, 0.68, 0.57, 0.41, 0.77, 0.81, 0.36, 0.75, 0.49, 0.92, 0.52, 0.76, 0.64, 0.5, 0.49, 0.4, 0.5, 0.46, 0.44, 0.59, 0.57, 0.5, 0.82, 0.4, 0.4, 0.45, 0.32, 0.62, 0.64, 0.82, 0.43, 0.8, 0.3, 0.9, 0.38, 0.51, 0.95, 0.59, 0.72, 0.62, 0.36, 0.45, 0.6, 0.37, 0.48, 0.31, 0.81, 0.45, 0.74, 0.37, 0.6, 0.6, 0.55, 0.56, 0.87, 0.51, 0.33, 0.38, 0.72, 0.79, 0.46, 0.49, 0.66, 0.44, 0.52, 0.58, 0.55, 0.37, 0.53, 0.41, 0.42, 0.39, 0.35, 0.65, 0.44, 0.6, 0.51, 0.74, 0.37, 0.39, 0.38, 0.42, 0.69, 0.58, 0.59, 0.5, 0.39, 0.68, 0.48, 0.32, 0.42, 0.56, 0.43, 0.52, 0.34, 0.38, 0.53, 0.64, 0.6, 0.59, 0.38, 0.65, 0.63, 0.5, 0.54, 0.63, 0.58, 0.75, 0.73, 0.79, 0.46, 0.31, 0.52, 0.44, 0.45, 0.39, 0.68, 0.58, 0.75, 0.57, 0.51, 0.68, 0.36, 0.56, 0.43, 0.52, 0.56, 0.44, 0.37, 0.57, 0.6, 0.47, 0.46, 0.37, 0.45, 0.36, 0.55, 0.48, 0.39, 0.35, 0.63, 0.71, 0.59, 0.8, 0.37, 0.46, 0.47, 0.54, 0.33, 0.64, 0.52, 0.51, 0.52, 0.52, 0.66, 0.55, 0.53, 0.52, 0.59, 0.54], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Reference<br>sulphates=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [0.42, 0.41, 0.41, 0.58, 0.51, 0.54, 0.57, 0.67, 0.5, 0.49, 1.17, 0.63, 0.4, 0.42, 0.43, 0.43, 0.6, 0.48, 0.5, 0.49, 0.45, 0.36, 0.6, 0.47, 0.81, 0.65, 0.5, 0.62, 0.5, 0.43, 0.56, 0.55, 0.55, 0.78, 0.44, 0.46, 0.36, 0.35, 0.63, 0.42, 0.48, 0.68, 0.46, 0.43, 0.5, 0.5, 0.47, 0.52, 0.64, 0.62, 0.57, 0.5, 0.38, 0.44, 0.6, 0.51, 0.43, 0.57, 0.52, 0.88, 0.57, 0.47, 0.52, 0.39, 0.48, 0.45, 0.6, 0.45, 0.64, 0.37, 0.32, 0.58, 0.46, 0.5, 0.38, 0.42, 0.38, 0.7, 0.58, 0.48, 0.5, 0.54, 0.47, 0.43, 0.62, 0.56, 0.44, 0.32, 0.29, 0.39, 0.58, 0.38, 0.66, 0.46, 0.44, 0.48, 0.4, 0.58, 0.48, 0.5, 0.47, 0.65, 0.64, 0.55, 0.53, 1.31, 0.43, 0.34, 0.57, 0.44, 0.62, 0.4, 0.56, 0.44, 0.64, 0.49, 0.5, 0.62, 0.57, 0.38, 0.46, 0.6, 0.51, 0.29, 0.49, 0.5, 0.67, 0.55, 0.59, 0.5, 0.28, 0.64, 0.4, 0.49, 0.49, 0.42, 0.35, 0.54, 0.45, 0.51, 0.53, 0.5, 0.34, 0.5, 0.48, 0.4, 0.66, 0.38, 0.56, 0.7, 0.52, 0.53, 0.42, 0.61, 0.39, 0.5, 0.95, 0.39, 0.39, 0.28, 0.36, 0.6, 0.57, 0.48, 0.39, 0.46, 0.48, 0.54, 0.57, 0.42, 0.51, 0.39, 0.49, 0.8, 0.67, 0.53, 0.47, 0.57, 0.59, 0.39, 0.49, 0.48, 0.5, 0.47, 0.46, 0.36, 0.59, 0.36, 0.52, 0.47, 0.44, 0.56, 0.6, 0.4, 0.54, 0.49, 0.54, 0.53, 0.68, 0.41, 0.71, 0.75, 0.75, 0.57, 0.73, 0.43, 0.39, 0.5, 0.58, 0.31, 0.42, 0.49, 0.44, 0.43, 0.56, 0.47, 0.53, 0.29, 0.48, 0.29, 0.47, 0.39, 0.6, 0.44, 0.38, 0.52, 0.38, 0.66, 0.51, 0.52, 0.43, 0.43, 0.44, 0.51, 0.66, 0.35, 0.53, 0.37, 0.61, 0.63, 0.71, 0.53, 0.52, 0.48, 0.39, 0.57, 0.55, 0.52, 0.39, 0.6, 0.67, 0.47, 0.55, 0.47, 0.51, 0.51, 0.79, 0.32, 0.58, 0.49, 0.41, 0.62, 0.38, 0.4, 0.43, 0.34, 0.6, 0.43, 0.97, 0.54, 0.43, 0.67, 0.55, 0.58, 0.45, 0.58, 0.48, 0.54, 0.38, 0.52, 0.52, 0.66, 0.49, 0.6, 0.35, 0.52, 0.64, 0.39, 0.39, 0.41, 0.62, 0.69, 0.37, 0.48, 0.48, 0.98, 0.52, 0.49, 0.46, 0.59, 0.73, 0.44, 0.53, 0.49, 0.53, 0.38, 0.61, 0.56, 1.05, 0.47, 0.4, 0.48, 0.66, 0.48, 0.99, 0.43, 0.51, 0.61, 0.56, 0.65, 0.63, 0.5, 0.44, 0.59, 0.46, 0.4, 0.84, 0.7, 0.51, 0.46, 0.5, 0.62, 0.51, 0.69, 0.45, 0.57, 0.45, 0.64, 0.4, 0.5, 0.46, 0.5, 0.51, 0.51, 0.51, 0.65, 0.71, 0.48, 0.47, 0.56, 0.35, 0.57, 0.64, 0.63, 0.66], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Current<br>sulphates=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [0.78, 0.48, 0.33, 0.45, 0.47, 0.5, 0.51, 0.54, 0.67, 0.57, 0.49, 0.5, 0.52, 0.37, 0.57, 0.48, 0.38, 0.61, 0.81, 0.28, 0.72, 0.46, 0.49, 0.51, 0.66, 0.38, 0.52, 0.49, 0.4, 0.53, 0.44, 0.54, 0.46, 0.45, 0.51, 0.44, 0.48, 0.58, 0.41, 0.55, 0.38, 0.43, 0.81, 0.45, 0.41, 0.57, 0.61, 0.53, 0.5, 0.52, 0.7, 0.39, 0.34, 0.58, 0.49, 0.67, 0.65, 0.74, 0.35, 0.54, 0.74, 0.64, 0.47, 0.91, 0.47, 0.64, 1.34, 0.56, 0.56, 0.48, 0.69, 0.4, 0.46, 0.47, 0.37, 0.53, 0.52, 0.43, 0.46, 0.61, 0.39, 0.49, 0.42, 0.55, 0.37, 0.48, 0.44, 0.75, 0.42, 0.8, 0.34, 0.38, 0.7, 0.63, 0.73, 0.4, 0.34, 0.93, 0.46, 0.5, 0.43, 0.43, 0.48, 0.52, 0.46, 0.54, 0.7, 0.45, 0.41, 0.64, 0.46, 0.44, 0.75, 0.54, 0.46, 0.48, 0.67, 0.49, 0.48, 0.52, 0.37, 0.46, 0.6, 0.48, 0.54, 0.77, 0.48, 0.55, 0.54, 0.65, 0.4, 0.56, 0.63, 0.33, 0.48, 0.5, 0.7, 0.55, 0.4, 0.51, 0.42, 0.37, 0.31, 0.52, 0.63, 0.49, 0.52, 0.56, 0.54, 0.42, 0.34, 0.59, 0.72, 0.38, 0.52, 0.35, 0.4, 0.51, 0.46, 0.56, 0.57, 0.56, 0.68, 0.48, 0.5, 0.5, 0.38, 0.49, 0.38, 0.46, 0.6, 0.49, 0.38, 0.42, 0.58, 0.35, 0.31, 0.53, 0.45, 0.37, 0.39, 0.44, 0.61, 0.38, 0.52, 0.42, 0.4, 0.53, 0.59, 0.52, 0.57, 0.58, 0.5, 0.65, 0.49, 0.47, 0.46, 0.48, 0.78, 0.44, 0.52, 0.46, 0.45, 0.69, 0.3, 0.76, 0.46, 0.78, 0.33, 0.45, 0.61, 0.52, 0.64, 0.35, 0.47, 0.37, 0.57, 0.4, 0.5, 0.39, 0.46, 0.43, 0.47, 0.46, 0.45, 0.45, 0.64, 0.59, 0.39, 0.4, 0.51, 0.7, 0.37, 0.32, 0.82, 0.47, 0.45, 0.59, 0.63, 0.55, 0.72, 0.8, 0.52, 0.41, 0.5, 0.72, 0.88, 0.45, 0.52, 0.42, 0.64, 0.45, 0.42, 0.44, 0.44, 0.41, 0.41, 0.6, 0.58, 0.71, 0.65, 0.53, 0.68, 0.68, 0.49, 0.45, 0.56, 0.73, 0.44, 0.48, 0.5, 0.72, 0.41, 0.45, 0.53, 0.55, 0.68, 0.6, 0.54, 0.88, 0.53, 0.48, 0.38, 0.43, 0.88, 0.44, 0.39, 0.46, 0.28, 0.58, 0.5, 0.58, 0.52, 0.54, 0.58, 0.65, 0.42, 0.37, 0.51, 0.58, 0.46, 0.61, 0.7, 0.63, 0.5, 0.29, 0.53, 0.35, 0.58, 0.49, 0.58, 0.63, 0.62, 0.39, 0.56, 0.44, 0.46, 0.48, 0.64, 0.38, 0.61, 0.58, 0.5, 0.76, 0.52, 0.4, 0.51, 0.63, 0.48, 0.46, 0.56, 0.45, 0.5, 0.53, 0.55, 0.51, 0.51, 0.39, 0.37, 0.45, 0.45, 0.58, 0.6, 0.48, 0.63, 0.73, 0.49, 0.78, 0.37, 0.76, 0.56, 0.49], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Reference\", \"x\": 0.245, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Current\", \"x\": 0.755, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"barmode\": \"overlay\", \"legend\": {\"title\": {\"text\": \"target\"}, \"tracegroupgap\": 0}, \"margin\": {\"t\": 60}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.49], \"title\": {\"text\": \"sulphates\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.51, 1.0], \"matches\": \"x\", \"title\": {\"text\": \"sulphates\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"count\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}}}}, {\"id\": \"sulphates_good\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (ref)\", \"type\": \"scatter\", \"x\": [0.42, 0.54, 0.53, 0.49, 0.54, 0.54, 0.53, 0.5, 0.38, 0.38, 0.34, 0.54, 0.37, 0.44, 0.67, 0.45, 0.37, 0.68, 0.48, 0.34, 0.56, 0.59, 0.42, 0.4, 0.32, 0.54, 0.4, 0.35, 0.4, 0.39, 0.42, 0.65, 0.39, 0.9, 0.63, 0.48, 0.55, 0.41, 0.53, 0.75, 0.38, 0.44, 0.71, 0.41, 0.49, 0.4, 0.47, 0.45, 1.13, 0.37, 0.37, 0.58, 0.41, 0.47, 0.54, 0.38, 0.48, 0.32, 0.29, 0.58, 0.57, 0.48, 0.41, 0.51, 0.68, 0.59, 0.39, 0.35, 0.46, 0.22, 0.64, 0.26, 0.4, 0.51, 0.69, 0.46, 0.86, 0.33, 0.75, 0.32, 0.72, 0.36, 0.51, 0.46, 0.41, 0.72, 0.48, 0.91, 0.48, 0.67, 0.51, 0.58, 0.67, 0.52, 0.44, 0.4, 0.38, 0.42, 0.48, 0.62, 0.4, 0.46, 0.69, 0.64, 0.36, 0.5, 0.45, 0.42, 0.76, 0.56, 0.45, 0.38, 0.54, 0.76, 0.44, 0.53, 0.54, 0.5, 0.59, 0.85, 0.52, 0.61, 0.41, 0.53, 0.46, 0.54, 0.56, 0.53, 0.56, 0.96, 0.39, 0.83, 0.41, 0.85, 0.5, 0.34, 0.64, 0.6, 0.47, 0.74, 0.44, 0.46, 0.52, 0.59, 0.67, 0.62, 0.78, 0.36, 0.6, 0.35, 0.39, 0.68, 0.54, 0.43, 0.54, 0.53, 0.41, 0.41, 0.41, 0.43, 0.48, 0.58, 0.5, 0.96, 0.69, 0.5, 0.49, 0.33, 0.41, 0.33, 0.79, 0.59, 0.51, 0.39, 0.57, 0.38, 0.56, 0.54, 0.43, 0.69, 0.57, 0.48, 0.8, 0.43, 0.47, 0.5, 0.39, 0.64, 0.52, 0.51, 0.48, 0.63, 0.51, 0.46, 0.53, 0.38, 0.46, 0.55, 0.47, 0.5, 0.49, 0.71, 0.58, 0.89, 0.63, 0.81, 0.94, 0.41, 0.41, 0.46, 0.38, 0.54, 0.48, 0.46, 0.39, 0.6, 0.43, 0.48, 0.38, 0.63, 0.54, 0.39, 0.46, 0.6, 0.72, 0.49, 0.53, 0.78, 0.55, 0.44, 0.54, 0.41, 0.6, 0.56, 0.58, 0.48, 0.69, 0.57, 0.43, 0.4, 0.46, 0.48, 0.43, 0.54, 0.59, 0.39, 0.5, 0.49, 0.44, 0.42, 0.69, 0.49, 0.76, 0.83, 0.65, 0.4, 0.34, 0.45, 0.44, 0.57, 0.37, 0.42, 0.5, 0.76, 0.62, 0.41, 0.43, 0.57, 0.83, 0.48, 0.54, 0.49, 0.47, 0.57, 0.49, 0.46, 0.45, 0.85, 0.63, 0.46, 0.37, 0.37, 0.52, 0.58, 0.49, 0.73, 0.62, 0.46, 0.66, 0.35, 0.58, 0.59, 0.62, 0.43, 0.59, 0.4, 0.7, 0.42, 0.68, 0.58, 0.66, 0.58, 0.61, 0.42, 0.42, 0.85, 0.37, 0.64, 0.47, 0.56, 0.59, 0.42, 0.67, 0.79, 0.42, 0.67, 0.58, 0.42, 0.63, 0.46, 0.56, 0.64, 0.66, 0.79, 0.5, 0.67, 0.36, 0.69, 0.58, 0.49, 0.37, 0.44, 0.82, 0.61, 0.54, 0.52, 0.54, 0.78, 0.64, 0.53, 0.51, 0.33, 0.64, 0.72, 0.68, 0.41, 0.54, 0.55, 0.38, 0.46, 0.4, 0.66, 0.45, 0.51, 0.5, 0.5, 0.72, 0.37, 0.97, 0.38, 0.63, 0.43, 1.36, 0.84, 0.58, 0.49, 0.54, 0.38, 0.86, 0.52, 0.42, 0.53, 0.53, 0.34, 0.62, 0.34, 0.5, 0.6, 0.44, 0.62, 0.69, 0.46, 0.62, 0.55, 0.4, 0.54, 0.77, 0.77, 0.6, 0.45, 0.47, 0.45, 0.45, 0.41, 0.54, 0.66, 0.49, 0.42, 0.31, 0.54, 0.57, 0.58, 0.65, 0.67, 0.37, 0.53, 0.38, 0.53, 0.67, 0.37, 0.61, 0.49, 0.69, 0.44, 0.33, 0.48, 0.46, 0.59, 0.51, 0.4, 0.55, 0.49, 0.39, 0.39, 0.4, 0.4, 0.32, 0.42, 0.46, 0.47, 0.38, 0.63, 0.58, 0.44, 0.44, 0.34, 0.68, 0.66, 0.79, 1.02, 0.35, 0.41, 0.61, 0.36, 0.59, 0.46, 0.59, 0.56, 0.9, 0.42, 0.38, 0.42, 0.4, 0.51, 0.57, 0.6, 0.35, 0.61, 0.5, 0.38, 0.66, 0.59, 0.91, 0.5, 0.35, 0.68, 0.42, 0.48, 0.5, 0.9, 0.54, 0.6, 0.44, 0.47, 0.67, 0.25, 0.68, 0.54, 0.52, 0.46, 0.57, 0.61, 0.46, 0.64, 0.45, 0.38, 0.46, 0.54, 0.39, 0.56, 0.71, 0.58, 0.38, 0.72, 0.52, 0.49, 0.38, 0.5, 0.53, 0.6, 0.54, 0.31, 0.46, 0.44, 0.37, 0.52, 0.43, 0.45, 0.36, 0.44, 0.46, 0.47, 0.59, 0.46, 0.5, 0.39, 0.62, 0.54, 0.59, 0.57, 0.45, 0.43, 0.34, 0.51, 0.58, 0.36, 0.73, 0.72, 0.42, 0.38, 0.77, 0.6, 0.44, 0.54, 0.42, 0.67, 0.53, 0.96, 0.54, 0.64, 0.55, 0.39, 0.6, 0.48, 0.44, 0.43, 0.65, 0.36, 0.51, 0.59, 0.67, 0.43, 0.64, 0.84, 0.49, 0.62, 0.4, 0.56, 0.61, 0.54, 0.54, 0.49, 0.51, 0.53, 0.73, 0.33, 0.37, 0.59, 0.4, 0.55, 0.47, 0.53, 1.06, 0.49, 0.65, 0.4, 0.43, 0.47, 0.59, 0.45, 0.43, 0.6, 0.42, 0.93, 0.38, 0.53, 0.53, 0.52, 0.61, 0.62, 1.95, 0.35, 0.48, 0.39, 0.57, 0.68, 0.49, 0.92, 0.49, 0.58, 0.47, 0.9, 0.5, 0.53, 0.92, 0.5, 0.74, 0.41, 0.49, 0.41, 0.34, 0.69, 0.55, 0.77, 0.38, 0.72, 0.59, 0.4, 0.73, 1.36, 0.77, 0.58, 0.66, 0.6, 0.58, 0.5, 0.79, 0.36, 0.5, 0.62, 0.44, 0.56, 0.5, 0.56, 0.46, 0.53, 0.78, 0.5, 0.65, 0.58, 0.53, 0.98, 0.44, 0.46, 0.95], \"xaxis\": \"x\", \"y\": [0.8156061324462894, 0.42491310922683634, 0.8867827646463432, 0.8014995238430205, 0.30499958310650876, 0.5817355832705369, 0.959171062334887, 0.7854416128369749, 0.9085690698200813, 0.8998600376511439, 0.6341165000693628, 0.412102187638673, 0.7643629411050379, 0.4710001938005606, 0.40182653035141874, 0.40438056362905367, 0.8870480016118494, 0.3650667978415713, 0.9064321709292111, 0.9327245345966092, 0.6458420185168736, 0.8821841129047617, 0.6704018506542557, 0.7655671181822064, 0.8616986618932058, 0.48774537944210006, 0.9637355036179479, 0.6794204065079696, 0.6044835155949141, 0.7867954023600708, 0.9137982268836646, 0.5867502063434873, 0.8048584290077971, 0.9718511071053526, 0.9627192884041744, 0.7978623718349598, 0.6091120966723917, 0.8943338178728011, 0.8853376735027229, 0.9045563504021151, 0.9264844632598176, 0.6342457655367447, 0.9414033426130164, 0.5636516403732365, 0.5172967922101196, 0.4836896337264441, 0.35199620689495453, 0.788779954566273, 0.9696552399248426, 0.772496554239754, 0.8132656157621138, 0.4539090261140653, 0.9333708926412786, 0.679765045723866, 0.48457442622955804, 0.4248820606938153, 0.6737819616086004, 0.8780741425819777, 0.38340602447337646, 0.90634085684919, 0.5574014604752268, 0.6804147683859246, 0.9077110088845216, 0.7718472635729894, 0.4717552048891654, 0.22222808308441652, 0.8616549355667619, 0.705749071892896, 0.4699129352300819, 0.9680524782819758, 0.8891353183282249, 0.9466602521798594, 0.8553382520847058, 0.7430243903066251, 0.6616131862201935, 0.6919609500216202, 0.96565744679506, 0.913108907487878, 0.5395521774612226, 0.9026238558501023, 0.6550941529376255, 0.9757876320152292, 0.8833495792027257, 0.6666029765862381, 0.8504582120840628, 0.9320215595878566, 0.7639947574915884, 0.6085229656221847, 0.9557131606798471, 0.46184432615952054, 0.5642658412077981, 0.8815615400732472, 0.7189203536918151, 0.9301020530176726, 0.7341394174346678, 0.7759189559372703, 0.8448078654733812, 0.9012666081120407, 0.8926028620066223, 0.5287492720273277, 0.6874206920638863, 0.37408584674942635, 0.8348370105186077, 0.8697567261320243, 0.9175759024810304, 0.44644098895981, 0.8874384748400057, 0.7787567487441118, 0.9416122482572158, 0.3265229243180111, 0.9308095750950773, 0.42267134533232753, 0.43068181214270274, 0.8727308285810839, 0.7201611177732586, 0.8430904589044517, 0.8140617541555761, 0.9456747441572588, 0.6672663325862807, 0.8756470416862959, 0.518871521713375, 0.7040615347784164, 0.4957960231649875, 0.6250130361556073, 0.27413726132188326, 0.5193133578087885, 0.37656641690434584, 0.5808048103476511, 0.7917827117482167, 0.36569143480873245, 0.7232542293832885, 0.9785934574433302, 0.5715075300165849, 0.8182555969893297, 0.5448461144048058, 0.9491291995847589, 0.4833587957991669, 0.3189279754564957, 0.9184825510014271, 0.5524830505676419, 0.9600429304649183, 0.7818180966165994, 0.7962710274484252, 0.7569429870375118, 0.46184432615952054, 0.7641514270390748, 0.9486763575522457, 0.8086368705092697, 0.6784536879503494, 0.6877019790624462, 0.6082670858563528, 0.6053794617794684, 0.6319330693089359, 0.4982105707488519, 0.6787928880949093, 0.9231980717613485, 0.8831230955067948, 0.6845485656817341, 0.8799204262605215, 0.9164563829924386, 0.7819268199067826, 0.23469888428232324, 0.9492377841603665, 0.8826092272015389, 0.6360541596480074, 0.5184081252698399, 0.6400126753125241, 0.542646305979658, 0.4479501208302092, 0.7783171875827786, 0.7867712153112567, 0.5236605417423803, 0.6959846197179591, 0.7925023358445066, 0.6683189355892497, 0.18737025221649042, 0.42506327048176057, 0.7272596040941706, 0.7314191754306454, 0.4827891324637794, 0.6649341228620356, 0.9038332731164471, 0.9588917860646077, 0.8945194928389463, 0.49833043835950624, 0.7997712594855277, 0.8577935987172323, 0.7622736922026153, 0.8039391974899521, 0.7396811504731934, 0.8115340233127679, 0.801728888664367, 0.738451208106372, 0.5859674792922007, 0.1865203674848816, 0.8773430435604171, 0.36888329310067386, 0.8651817982269884, 0.9067615420962557, 0.8594983988587351, 0.7437750884018276, 0.9145224932934428, 0.9135679891815164, 0.8001832456898428, 0.6860977766129374, 0.9377826008632761, 0.9300369611912853, 0.6997062971069969, 0.5693182102579236, 0.3404656140239559, 0.7160591142088384, 0.7953146078011, 0.8869803873277935, 0.7639982823097876, 0.8681285227071118, 0.576868797021353, 0.93035102563313, 0.8375600281828176, 0.8279918435672958, 0.9266689436294401, 0.7559862346636359, 0.5099889666930224, 0.6914445842613687, 0.9651950326885705, 0.87851968214492, 0.8499702807396289, 0.4685752957996948, 0.7241546992314323, 0.7848147251007912, 0.7341394174346678, 0.7008877443692281, 0.340588975625529, 0.5013021766499856, 0.8321174529331695, 0.8818378666553491, 0.9176909075187759, 0.8634678749265305, 0.7436082905772717, 0.9343776659412377, 0.7668809937296346, 0.6243383802582345, 0.5332560471205093, 0.6907315465649003, 0.16626803588025432, 0.1668542888532837, 0.7408943843163458, 0.5221312328975666, 0.7457559475413279, 0.46389636934606376, 0.9292627865919654, 0.5268311186840582, 0.4244151934213653, 0.643310536612302, 0.8577438313980266, 0.7816208399762355, 0.8553382520847058, 0.7010035672814305, 0.5242572272016158, 0.9187320011579697, 0.8703498177621264, 0.6713045345576062, 0.9137982268836646, 0.8614414457916845, 0.9445662266054761, 0.8808216590199034, 0.7386378115490353, 0.8873009977622293, 0.9157094897337859, 0.6606038558129893, 0.9296803968514485, 0.8864322240790464, 0.5146720135715994, 0.8720710714485208, 0.9415427660945741, 0.9138701141498735, 0.6527559092576063, 0.8751970040938668, 0.9249766460056568, 0.801728888664367, 0.6575848465963361, 0.6934824043184128, 0.8619113960143526, 0.9419078024651042, 0.9591721389341828, 0.8397407150753159, 0.9084383840076588, 0.4963969309336195, 0.7359588175524252, 0.3531961907069324, 0.9279819479140234, 0.7752976919572294, 0.8665226278427577, 0.9515211055933231, 0.7314191754306454, 0.890886918514299, 0.3235491032739525, 0.3719939405423586, 0.6323804178173072, 0.8398006965792015, 0.8239469134189235, 0.8592101816891015, 0.7615002907198236, 0.8688259750909261, 0.8718104001390852, 0.5838074755684882, 0.8756470416862959, 0.901850575196968, 0.9451930143658351, 0.6253812669856891, 0.5890764576710766, 0.4921052500998711, 0.4862070578416567, 0.9170647663398394, 0.7035583451969506, 0.8476385889092957, 0.5603058978573646, 0.5810606890504925, 0.9088604673919816, 0.8903252600075929, 0.944267921154058, 0.9435968591480925, 0.938237366988842, 0.9357286047893738, 0.7961386682142712, 0.7840233885688647, 0.2513590507613302, 0.7389284097502917, 0.9053472250810051, 0.44438282424164377, 0.862281110352348, 0.8021059248496223, 0.9152740930046814, 0.643737358401971, 0.8540304955499701, 0.8613418170006786, 0.6911084183178322, 0.8848367871057808, 0.8387883096682573, 0.5942651630821018, 0.65691393717736, 0.6369979527510315, 0.8280658524313272, 0.9640736168216585, 0.6546311715671466, 0.5599819536107853, 0.48348053317652906, 0.7668016587569692, 0.03620763244300767, 0.7364400865449663, 0.37408584674942635, 0.8767503774172, 0.8743962287172513, 0.8751970040938668, 0.8833495792027257, 0.7091886355621774, 0.87006937054451, 0.7904001815220257, 0.8761418339280951, 0.8306834851111597, 0.7531715889012326, 0.38181207472529843, 0.6490458991820136, 0.9138057013338913, 0.9046222904886461, 0.17956061692355052, 0.7506163079023257, 0.8963285795381793, 0.8848361664653354, 0.9283037217377402, 0.45996158699034445, 0.7290858434196763, 0.8319094967702583, 0.6578018675312727, 0.18727567457681707, 0.8673410249845035, 0.9453298670648187, 0.9446538464906173, 0.19605573045952288, 0.6723831041639817, 0.3438281302059518, 0.37858973820495484, 0.6953170483296187, 0.21463507152544156, 0.26963792069965237, 0.3280912492037974, 0.8399932187801539, 0.420387898633768, 0.36522500752858966, 0.5810560693343539, 0.9306346767722963, 0.7167716539092029, 0.656736106921484, 0.5549139996760648, 0.6909161521388689, 0.591904263202073, 0.884703171197362, 0.866402281883595, 0.7582770814524421, 0.8990773411030794, 0.1818065866116437, 0.6222165686186035, 0.17261914235374884, 0.8156064679757086, 0.4851213943917703, 0.8871292211128762, 0.8398494053952754, 0.703270618172154, 0.6305543892506115, 0.7494149477175548, 0.1532408287022325, 0.6159732902773407, 0.738220551127759, 0.8354520044441791, 0.8536870432671441, 0.5751476712690671, 0.9077719201719568, 0.7878515691455199, 0.6672663325862807, 0.45293736875445273, 0.17058553029544155, 0.747933377844996, 0.8400163125056676, 0.4516778718827729, 0.6082670858563528, 0.8401843469141149, 0.7636885291754726, 0.789170795337903, 0.8128612802083497, 0.7522530659814418, 0.8086757686066508, 0.8356255123032285, 0.9241779635105248, 0.9674588597049086, 0.9368885694202199, 0.4990764491242286, 0.876561204324957, 0.554264192243629, 0.5967716244634195, 0.9060244606340249, 0.8401608718856799, 0.7329750583133859, 0.8021769878309102, 0.9316817655017511, 0.45488322534173153, 0.798578398438993, 0.7425236774748816, 0.5742682328784404, 0.4937681935814938, 0.8972164286692267, 0.8914273370768748, 0.9377613518261881, 0.8862258850530264, 0.8591757581361523, 0.7410678096850266, 0.6822336012657398, 0.9201658505843877, 0.6982578893131915, 0.5746709232170782, 0.7626532952948841, 0.7137703530889916, 0.7520971196461234, 0.4473853625959922, 0.7957460056304991, 0.4833174871501707, 0.8758467705785958, 0.4689303842787964, 0.6133612564737879, 0.8568681391705205, 0.6835133967314007, 0.9732070839986944, 0.21435716257549006, 0.5761668962420043, 0.4055433603128916, 0.3743394998756179, 0.9118635774953143, 0.964551884718591, 0.9306459334511011, 0.8424802355113449, 0.7739144871152517, 0.6872688771534424, 0.8590561833388345, 0.6714384475466295, 0.6408669500407106, 0.5203550269219845, 0.2856853969697174, 0.857760555506807, 0.9307094503226838, 0.6787928880949093, 0.8308635255795866, 0.29271374211533296, 0.6769315553524353, 0.23831547366416572, 0.5895099457120908, 0.8994675076574448, 0.8893400405584444, 0.8456825404777587, 0.5399612081435882, 0.6188649121485582, 0.9281492942813848, 0.7611740601422801, 0.46550237374781617, 0.8896861436466836, 0.9038901015569306, 0.5044440900554997, 0.9215480939667524, 0.6930273792518707, 0.8723244804196287, 0.5624338775604165, 0.9226297661236537, 0.8469231754225917, 0.9430557295321259, 0.9097116306258912, 0.5988707702267543, 0.3813853072548755, 0.8843832309478876, 0.9006952500629406, 0.918975987201669, 0.18997930334445084, 0.8923106748541326, 0.8461388699436441, 0.5973439234355874, 0.9544642924744549, 0.91770416680597, 0.9177239854204658, 0.17584552180125673, 0.9240099144459667, 0.48524948024905407, 0.8889685222180134, 0.5785503824403398, 0.7511953459672914, 0.6887596776945688, 0.6717539058356753, 0.7168761391602206, 0.7134478068952186, 0.834626350903405, 0.5715867980362679, 0.6588392688727011, 0.9488572786900573, 0.8920529250761863, 0.8891353183282249, 0.707981940789761, 0.926348680038428, 0.631489487929038, 0.7443856388661001, 0.9260754381930228, 0.9544642924744549, 0.8497401318990601, 0.5604010177433062, 0.8036334301115304, 0.7898153537185114, 0.8491431337122072, 0.6570881560807702, 0.8389599143569951, 0.7944137576415592, 0.8132668978866627, 0.44714680104169846, 0.7978021044641371, 0.41921696608658454, 0.38876183891604754, 0.9248463736054193, 0.4277915265084825, 0.6345107008491314, 0.8008942533173764, 0.5087430598332189, 0.9414938992689892, 0.6922115882765215, 0.8296175750175913, 0.8593339228153332, 0.8975141534758351, 0.5977126281557783, 0.9279478536756302, 0.6485770817571253, 0.8905823996589662, 0.9332072841984264, 0.9432461110830079, 0.9410120781436498, 0.6339696776630096, 0.7120962557761497, 0.5841709037351369, 0.5928970840420333, 0.9006589732900512, 0.936371533648048, 0.6907852379101131, 0.7675780198071424, 0.9444587893431046, 0.4702336163336472, 0.8925536722101626, 0.8158978708906081, 0.822780392485108, 0.8037335327290217, 0.8382351003285965, 0.8941557358589171, 0.4796498334522667, 0.926348680038428, 0.6842118015950474, 0.6463580983468415, 0.8292048071278182, 0.5834426687867836, 0.8419845362148763, 0.2431563391580561, 0.7763142135369961, 0.9390550746437164, 0.7774903237071782, 0.8141232663130791, 0.9444089886680379, 0.430401459478284, 0.9192677156927759, 0.8427595869840984, 0.87120858451521, 0.5693182102579236, 0.820012080301976, 0.58719119911586, 0.42769376643096113, 0.3542595869275313, 0.89579938191327, 0.8743523014696554, 0.7820497043505815, 0.5279069501129625, 0.8869579700149332, 0.45488774279476296, 0.8514781135508903, 0.8278297091497892, 0.663749097381813, 0.5132851713944618, 0.4906566565015208, 0.6415219885510332, 0.6991293681294938, 0.8150539074042624, 0.5800669536763935, 0.9583771200922359, 0.7366090055976814, 0.5747817696023392, 0.5315376696882942, 0.8074446941396305, 0.9038901015569306, 0.9087015650331977, 0.6697291810323083, 0.5800669536763935, 0.8807270543114014, 0.5135845984304893, 0.9352791850238339, 0.36120709973337456, 0.6206709330576408, 0.906286252315459, 0.7937202818717513], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [0.42, 0.41, 0.41, 0.58, 0.51, 0.54, 0.57, 0.67, 0.5, 0.49, 1.17, 0.63, 0.4, 0.42, 0.43, 0.43, 0.6, 0.48, 0.5, 0.49, 0.45, 0.36, 0.6, 0.47, 0.81, 0.65, 0.5, 0.62, 0.5, 0.43, 0.56, 0.55, 0.55, 0.78, 0.44, 0.46, 0.36, 0.35, 0.63, 0.42, 0.48, 0.68, 0.46, 0.43, 0.5, 0.5, 0.47, 0.52, 0.64, 0.62, 0.57, 0.5, 0.38, 0.44, 0.6, 0.51, 0.43, 0.57, 0.52, 0.88, 0.57, 0.47, 0.52, 0.39, 0.48, 0.45, 0.6, 0.45, 0.64, 0.37, 0.32, 0.58, 0.46, 0.5, 0.38, 0.42, 0.38, 0.7, 0.58, 0.48, 0.5, 0.54, 0.47, 0.43, 0.62, 0.56, 0.44, 0.32, 0.29, 0.39, 0.58, 0.38, 0.66, 0.46, 0.44, 0.48, 0.4, 0.58, 0.48, 0.5, 0.47, 0.65, 0.64, 0.55, 0.53, 1.31, 0.43, 0.34, 0.57, 0.44, 0.62, 0.4, 0.56, 0.44, 0.64, 0.49, 0.5, 0.62, 0.57, 0.38, 0.46, 0.6, 0.51, 0.29, 0.49, 0.5, 0.67, 0.55, 0.59, 0.5, 0.28, 0.64, 0.4, 0.49, 0.49, 0.42, 0.35, 0.54, 0.45, 0.51, 0.53, 0.5, 0.34, 0.5, 0.48, 0.4, 0.66, 0.38, 0.56, 0.7, 0.52, 0.53, 0.42, 0.61, 0.39, 0.5, 0.95, 0.39, 0.39, 0.28, 0.36, 0.6, 0.57, 0.48, 0.39, 0.46, 0.48, 0.54, 0.57, 0.42, 0.51, 0.39, 0.49, 0.8, 0.67, 0.53, 0.47, 0.57, 0.59, 0.39, 0.49, 0.48, 0.5, 0.47, 0.46, 0.36, 0.59, 0.36, 0.52, 0.47, 0.44, 0.56, 0.6, 0.4, 0.54, 0.49, 0.54, 0.53, 0.68, 0.41, 0.71, 0.75, 0.75, 0.57, 0.73, 0.43, 0.39, 0.5, 0.58, 0.31, 0.42, 0.49, 0.44, 0.43, 0.56, 0.47, 0.53, 0.29, 0.48, 0.29, 0.47, 0.39, 0.6, 0.44, 0.38, 0.52, 0.38, 0.66, 0.51, 0.52, 0.43, 0.43, 0.44, 0.51, 0.66, 0.35, 0.53, 0.37, 0.61, 0.63, 0.71, 0.53, 0.52, 0.48, 0.39, 0.57, 0.55, 0.52, 0.39, 0.6, 0.67, 0.47, 0.55, 0.47, 0.51, 0.51, 0.79, 0.32, 0.58, 0.49, 0.41, 0.62, 0.38, 0.4, 0.43, 0.34, 0.6, 0.43, 0.97, 0.54, 0.43, 0.67, 0.55, 0.58, 0.45, 0.58, 0.48, 0.54, 0.38, 0.52, 0.52, 0.66, 0.49, 0.6, 0.35, 0.52, 0.64, 0.39, 0.39, 0.41, 0.62, 0.69, 0.37, 0.48, 0.48, 0.98, 0.52, 0.49, 0.46, 0.59, 0.73, 0.44, 0.53, 0.49, 0.53, 0.38, 0.61, 0.56, 1.05, 0.47, 0.4, 0.48, 0.66, 0.48, 0.99, 0.43, 0.51, 0.61, 0.56, 0.65, 0.63, 0.5, 0.44, 0.59, 0.46, 0.4, 0.84, 0.7, 0.51, 0.46, 0.5, 0.62, 0.51, 0.69, 0.45, 0.57, 0.45, 0.64, 0.4, 0.5, 0.46, 0.5, 0.51, 0.51, 0.51, 0.65, 0.71, 0.48, 0.47, 0.56, 0.35, 0.57, 0.64, 0.63, 0.66], \"xaxis\": \"x\", \"y\": [0.2802292104526322, 0.9455194119275858, 0.4978743212349556, 0.5289145624519528, 0.28439238707197784, 0.2033309570226689, 0.27345747478543325, 0.8322873304845451, 0.389055896812549, 0.3675472469853882, 0.5781933746273124, 0.7401955299744071, 0.44969671697605845, 0.4367887814338696, 0.31593955341667695, 0.3775624358859999, 0.19282181046294666, 0.048451763306065584, 0.6005928650583868, 0.032225376113695775, 0.427412413738938, 0.23973251442015217, 0.13890126550157303, 0.8613925272127, 0.329663916828638, 0.19359965390713213, 0.6827271716759634, 0.1960905505555538, 0.08135735686643118, 0.39737240301928484, 0.13902987396822816, 0.6514166433739288, 0.6994753721471061, 0.7140886736258081, 0.5021795028970708, 0.48743245558712556, 0.5731139673640956, 0.8820820642542792, 0.559972149724866, 0.5061565591493914, 0.5066810377847554, 0.833805652807593, 0.6979972163580744, 0.3177574231538272, 0.13068190592986567, 0.758876109553896, 0.5681062961269688, 0.715544821914063, 0.762062625203523, 0.4464438677531786, 0.20995974230910305, 0.5262622410710028, 0.39442669669188163, 0.2537324982988368, 0.6775437642744659, 0.23876321589577687, 0.6369158982934647, 0.38960060362966165, 0.6034323722874255, 0.7769991715799629, 0.15199748354041337, 0.5641412449951732, 0.7590466800561823, 0.5969347905931296, 0.1048362779837843, 0.7217824369593382, 0.2662339163773806, 0.16472378978351135, 0.37760124376932414, 0.7071736299639594, 0.3436862995931572, 0.8384434752264291, 0.3635333644877426, 0.7813188949129265, 0.7279369976219869, 0.5641098847382463, 0.3863964747623771, 0.9209913370067284, 0.1477144681640183, 0.8809374658555192, 0.6533168894759348, 0.8873477284758582, 0.3697306267878623, 0.28319023347825867, 0.5203701741750857, 0.5523747693308857, 0.6387521731780509, 0.3881380695009739, 0.8487896327149285, 0.4636606453307818, 0.8384434752264291, 0.558266603669778, 0.21657231888677728, 0.3635333644877426, 0.5512671313974766, 0.5051039398599867, 0.5827915753039158, 0.49441682850108926, 0.47309171914705017, 0.6262595591688196, 0.5508242483721094, 0.47332791509789995, 0.7117569366896692, 0.3933786516273859, 0.16465066549244003, 0.7490394132223248, 0.769261050002088, 0.7431932405995126, 0.3141000916210982, 0.723735045552473, 0.6484132891031948, 0.688519894019609, 0.40496704226994307, 0.5803736122960511, 0.6327801522745691, 0.45115706990411364, 0.37268733756108086, 0.9009693101135351, 0.06496389958099598, 0.44431713201158524, 0.39960831974332744, 0.8662156944598043, 0.31018081106061823, 0.5339551117365043, 0.33311273919547707, 0.400132762133902, 0.8528754522806217, 0.14419347879543085, 0.11672350429510901, 0.44556702529145975, 0.6160120899414699, 0.13766892845409207, 0.5517204028384314, 0.5232178919035022, 0.35483403305733974, 0.4900213704561591, 0.8854578072659228, 0.43084122675663034, 0.7601186327653665, 0.14072030431570776, 0.6186690618327106, 0.5245054232921349, 0.7326259458716644, 0.5690781983520095, 0.4018508815425063, 0.24877469563805235, 0.7952501197393639, 0.8766221356386195, 0.303451532996695, 0.5357745481647883, 0.7096524147827454, 0.20877177283968149, 0.8635610141758273, 0.46736762313881036, 0.6061151992073851, 0.113015272873705, 0.40446014603085867, 0.6332606063976143, 0.648705381890928, 0.42186952587750404, 0.8047913565308571, 0.3017058309841093, 0.38406990132164637, 0.33494193042999065, 0.19929939967121216, 0.8624919783238055, 0.528785836409086, 0.43084122675663034, 0.47042159929499583, 0.5061565591493914, 0.5759491569657543, 0.8468794444363914, 0.20342296359496542, 0.5170831534483544, 0.3666753044655067, 0.6131723001375537, 0.4410646109528086, 0.6903416342484309, 0.3866428492574258, 0.4636606453307818, 0.4525459302795702, 0.03199256040434073, 0.7029629492254846, 0.2433141614541866, 0.548755973819273, 0.3775060302547258, 0.06593060991448157, 0.8745624549148976, 0.22931948662359403, 0.27267688907931714, 0.589328430619086, 0.8007160756317941, 0.5525637789187225, 0.5008522318356121, 0.4556212410144909, 0.17391722008742402, 0.43574637053357784, 0.3237440077649342, 0.6071692164257629, 0.6925152430641841, 0.592675381607996, 0.43854150134957587, 0.43854150134957587, 0.42437112972565305, 0.8061118855433299, 0.35195592295594336, 0.7605370065149419, 0.38898578429124253, 0.67510953655807, 0.872979709380305, 0.710510994258769, 0.720290290780972, 0.4820787970895852, 0.42019280799979697, 0.4304380754474639, 0.25285023254778977, 0.3238056884730761, 0.39471961640683584, 0.09510031985475974, 0.367046376808582, 0.21500793651835448, 0.8705359023101334, 0.6100742529031461, 0.6226449432624995, 0.7279369976219869, 0.3643494054700089, 0.09992017521484964, 0.41475515148757036, 0.6462260464983366, 0.14102909592513518, 0.48949585696458414, 0.5239520436918008, 0.6084413884537807, 0.5655473856702703, 0.9517420512476797, 0.7489379515982664, 0.4647937384849751, 0.7915321263825208, 0.44112279258530757, 0.5734340256727429, 0.6604471727860799, 0.4845203185458914, 0.6968730453869196, 0.5315374962198609, 0.8685951485887234, 0.6242442748350044, 0.2912097196987059, 0.7725938221565348, 0.2067629769731588, 0.30221725334927335, 0.13129342562285412, 0.6467789443522378, 0.6994753721471061, 0.11825382206919556, 0.41022417118631593, 0.4882665226122541, 0.7732287086973071, 0.25374762405010176, 0.49441682850108926, 0.3723877205427743, 0.652330313245635, 0.43667799883041203, 0.5964718913578133, 0.55172276504346, 0.24113559934961917, 0.8243980268882987, 0.7263843594269437, 0.43535214809021755, 0.8721122798612579, 0.18723914490145582, 0.6486906676970999, 0.11576704656818047, 0.4328241622975616, 0.491481212420291, 0.5264345378086769, 0.33856526784971647, 0.2967410926251248, 0.581398831228375, 0.5973776665460488, 0.6195406102170065, 0.37782717658841725, 0.323061133240968, 0.17420808473594895, 0.19634770547538957, 0.46492234760650425, 0.49613167963272686, 0.5812209036149294, 0.6057291775435286, 0.63414717387345, 0.5702687187355167, 0.8604975146328253, 0.6309022132706124, 0.48732991249542923, 0.6887148870948692, 0.41581945293096145, 0.5706760596351739, 0.4831274653996314, 0.06684727567316755, 0.49090643211649887, 0.15191610726090596, 0.2711405311223577, 0.7653618545702112, 0.09266565137124261, 0.4554350627407873, 0.19698919164573708, 0.6930185080649685, 0.5227537922811563, 0.50434568709929, 0.7082092780767422, 0.46058046365566996, 0.6735723234187477, 0.4285936050615775, 0.323061133240968, 0.5168500865319015, 0.6161307914674419, 0.23456444218973552, 0.3192004782541023, 0.21968945907811915, 0.5028183230931117, 0.43371621376298963, 0.6744209213341115, 0.5940260419772637, 0.13783310426722128, 0.5136444387530009, 0.5508647999875032, 0.4955911012838212, 0.9814394195009358, 0.8260225289794664, 0.17965956338109995, 0.46844896472597397, 0.6048119589659149, 0.3289160319090978, 0.2454606394453749, 0.7497022835596558, 0.683485355417811, 0.20995974230910305, 0.23504578258460665, 0.37175956099497537, 0.4875530438829156, 0.24982584224249993, 0.6282829625348888, 0.4520795162158371, 0.8200372413039435, 0.12832513643528837, 0.5299630655130737, 0.29552777318700446, 0.24021937552346023, 0.5429028773737552, 0.6311869746243346, 0.4145977043912777, 0.39329840463575844, 0.39070335653410526, 0.4286990948130573, 0.846836560604146, 0.6880850122626078], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (curr)\", \"type\": \"scatter\", \"x\": [0.38, 0.44, 0.87, 0.39, 0.58, 0.33, 0.7, 0.38, 0.61, 0.59, 0.56, 0.52, 0.37, 0.53, 0.36, 0.41, 0.58, 0.44, 0.87, 0.33, 0.46, 0.5, 0.38, 0.58, 0.6, 0.33, 0.3, 0.54, 0.6, 0.49, 0.35, 0.49, 0.82, 0.41, 0.34, 0.31, 0.76, 0.49, 0.53, 0.53, 0.32, 0.5, 0.38, 0.41, 0.8, 0.74, 0.38, 0.57, 0.49, 0.72, 0.61, 0.67, 0.36, 0.25, 0.49, 0.75, 0.68, 0.79, 0.44, 1.33, 0.68, 0.38, 0.47, 0.36, 0.36, 0.42, 0.58, 0.62, 0.5, 0.8, 0.53, 0.39, 0.29, 0.51, 0.37, 0.42, 0.44, 0.45, 0.47, 0.61, 0.46, 0.52, 0.85, 0.68, 0.49, 0.78, 0.73, 0.3, 0.27, 0.49, 0.35, 0.33, 0.5, 0.4, 0.48, 0.58, 0.65, 0.43, 0.72, 0.77, 0.34, 0.5, 0.84, 0.43, 0.53, 0.62, 0.54, 0.35, 0.59, 0.63, 0.5, 0.38, 0.37, 0.51, 0.5, 0.93, 0.76, 0.56, 0.65, 0.71, 0.64, 0.99, 0.56, 0.42, 0.75, 0.74, 0.74, 0.62, 0.75, 0.57, 0.36, 0.88, 0.44, 0.56, 0.44, 0.51, 0.67, 0.7, 0.57, 0.5, 0.62, 0.49, 0.61, 0.48, 0.41, 0.6, 0.58, 0.77, 0.39, 0.47, 0.38, 0.68, 0.44, 0.36, 0.68, 0.53, 0.82, 0.73, 0.45, 0.48, 0.4, 0.78, 0.26, 0.49, 0.82, 0.36, 0.45, 0.55, 0.86, 0.39, 0.57, 0.32, 0.39, 0.66, 0.45, 0.49, 0.43, 0.42, 0.47, 0.77, 0.44, 0.41, 0.95, 0.76, 0.43, 0.82, 0.87, 0.37, 0.45, 0.75, 0.39, 0.43, 0.59, 0.48, 0.46, 0.58, 0.57, 0.38, 0.58, 0.64, 0.59, 0.56, 0.57, 0.4, 0.56, 0.63, 0.53, 0.85, 0.51, 0.78, 0.41, 0.33, 0.6, 0.6, 0.56, 0.65, 0.47, 0.44, 0.5, 0.49, 0.4, 0.55, 0.6, 0.53, 0.66, 0.58, 0.68, 0.48, 0.77, 0.48, 0.72, 0.44, 0.66, 0.47, 0.66, 0.82, 0.4, 0.54, 0.31, 0.47, 0.53, 0.46, 0.39, 0.57, 0.64, 0.87, 0.41, 0.5, 0.47, 0.7, 0.76, 0.3, 0.75, 0.41, 0.55, 0.35, 0.45, 0.58, 0.48, 0.73, 0.62, 0.57, 0.47, 0.35, 0.39, 0.48, 0.51, 0.43, 0.48, 0.43, 0.37, 0.43, 0.58, 0.65, 0.4, 0.7, 0.57, 0.44, 0.56, 0.76, 1.06, 0.51, 0.51, 0.49, 0.64, 0.63, 0.36, 0.52, 0.57, 0.43, 1.11, 0.63, 0.42, 0.47, 0.49, 0.46, 0.45, 0.42, 0.33, 0.44, 0.33, 0.75, 0.59, 0.38, 0.48, 0.85, 0.56, 0.54, 0.75, 0.47, 0.38, 0.6, 0.63, 0.5, 0.52, 0.63, 0.51, 0.5, 0.51, 0.48, 0.64, 0.44, 0.59, 0.36, 0.64, 0.39, 0.4, 0.77, 0.48, 0.73, 0.81, 0.36, 0.86, 0.53, 0.43, 0.38, 0.75, 0.41, 0.43, 0.46, 0.39, 0.52, 0.58, 0.84, 0.54, 0.45, 0.42, 0.5, 0.9, 0.34, 0.35, 0.52, 0.47, 0.36, 0.4, 0.82, 0.6, 0.38, 0.82, 0.72, 0.32, 0.59, 0.75, 0.35, 0.75, 0.43, 0.46, 0.5, 0.57, 0.69, 0.46, 0.53, 0.54, 0.54, 0.56, 0.49, 0.48, 0.37, 0.65, 0.46, 0.5, 0.55, 0.55, 0.48, 0.43, 0.62, 0.46, 0.44, 0.65, 0.44, 0.58, 0.44, 0.49, 0.64, 0.42, 0.62, 0.47, 0.53, 0.59, 0.45, 0.41, 0.31, 0.64, 0.5, 0.41, 0.42, 0.46, 0.36, 0.39, 0.36, 0.7, 0.49, 0.68, 0.46, 0.5, 0.7, 0.36, 0.65, 0.6, 0.49, 0.56, 0.98, 0.77, 0.6, 0.7, 0.59, 0.6, 0.33, 0.61, 0.4, 0.34, 0.41, 0.53, 0.51, 0.71, 0.65, 0.74, 0.48, 0.7, 0.52, 0.49, 0.84, 0.32, 0.54, 0.33, 0.66, 0.75, 0.4, 0.78, 0.47, 0.37, 0.54, 0.72, 0.54, 0.43, 0.53, 0.56, 0.55, 0.43, 0.49, 0.59, 0.5, 0.42, 0.41, 0.38, 0.65, 0.27, 0.54, 0.4, 0.57, 0.45, 0.3, 0.67, 0.43, 0.41, 0.55, 0.43, 0.6, 0.35, 0.42, 0.65, 0.38, 0.77, 0.76, 0.52, 0.32, 0.32, 0.37, 0.43, 0.68, 0.57, 0.41, 0.77, 0.81, 0.36, 0.75, 0.49, 0.92, 0.52, 0.76, 0.64, 0.5, 0.49, 0.4, 0.5, 0.46, 0.44, 0.59, 0.57, 0.5, 0.82, 0.4, 0.4, 0.45, 0.32, 0.62, 0.64, 0.82, 0.43, 0.8, 0.3, 0.9, 0.38, 0.51, 0.95, 0.59, 0.72, 0.62, 0.36, 0.45, 0.6, 0.37, 0.48, 0.31, 0.81, 0.45, 0.74, 0.37, 0.6, 0.6, 0.55, 0.56, 0.87, 0.51, 0.33, 0.38, 0.72, 0.79, 0.46, 0.49, 0.66, 0.44, 0.52, 0.58, 0.55, 0.37, 0.53, 0.41, 0.42, 0.39, 0.35, 0.65, 0.44, 0.6, 0.51, 0.74, 0.37, 0.39, 0.38, 0.42, 0.69, 0.58, 0.59, 0.5, 0.39, 0.68, 0.48, 0.32, 0.42, 0.56, 0.43, 0.52, 0.34, 0.38, 0.53, 0.64, 0.6, 0.59, 0.38, 0.65, 0.63, 0.5, 0.54, 0.63, 0.58, 0.75, 0.73, 0.79, 0.46, 0.31, 0.52, 0.44, 0.45, 0.39, 0.68, 0.58, 0.75, 0.57, 0.51, 0.68, 0.36, 0.56, 0.43, 0.52, 0.56, 0.44, 0.37, 0.57, 0.6, 0.47, 0.46, 0.37, 0.45, 0.36, 0.55, 0.48, 0.39, 0.35, 0.63, 0.71, 0.59, 0.8, 0.37, 0.46, 0.47, 0.54, 0.33, 0.64, 0.52, 0.51, 0.52, 0.52, 0.66, 0.55, 0.53, 0.52, 0.59, 0.54], \"xaxis\": \"x2\", \"y\": [0.33396714643252134, 0.5044440900554997, 0.8874896900044845, 0.4686759077780351, 0.23831547366416572, 0.571181601185031, 0.7785327680196316, 0.7290551099174598, 0.9581131370131553, 0.6801000322064107, 0.413367674560271, 0.6667140739211237, 0.9108229754863395, 0.9275086157065797, 0.9186958597750785, 0.7191871442695774, 0.8184457509658746, 0.8597940676688322, 0.7947045908306632, 0.8244149680645384, 0.42771531534877594, 0.5315376696882942, 0.7136291946100958, 0.5510697799054304, 0.6393262665313312, 0.9016582766249417, 0.8560880110261746, 0.8947361144883382, 0.9102326114023062, 0.840723585394272, 0.9264645566705582, 0.5105903360131552, 0.752648770317166, 0.5855954083225455, 0.8989214048388485, 0.5190750352404293, 0.9560713253502463, 0.7273157243430202, 0.9279672131348602, 0.640103147954212, 0.9158977434209615, 0.9035955072010529, 0.7140955379655831, 0.233508355491505, 0.7280578325574358, 0.8810827811902006, 0.3966129217085586, 0.15541760955422754, 0.5851621750323275, 0.9046111951917862, 0.4177213302712193, 0.7993763114768937, 0.6978409661933959, 0.6473373667551029, 0.770784382977056, 0.6500641275496193, 0.548949563093737, 0.9803199442553986, 0.6150775052067382, 0.391333092160729, 0.6966682278280982, 0.9426748402861506, 0.9170092977635526, 0.844625652038695, 0.5621782696252592, 0.8935808323282117, 0.6792214086077275, 0.6719996755401956, 0.5252591274442797, 0.7277045758687855, 0.4685752957996948, 0.8616549355667619, 0.347491516391863, 0.8224130863808733, 0.5340790568488665, 0.6711667658766297, 0.5277539611022016, 0.7226430813715845, 0.8140972745487615, 0.3280236940194876, 0.9543080196225542, 0.7752655593026647, 0.9223925066666061, 0.8588031784191832, 0.6345107008491314, 0.9393010047953068, 0.7897067132703484, 0.8608062836413887, 0.8367885032124018, 0.38555642305179116, 0.8611944449682004, 0.9172341012895443, 0.9206892306522243, 0.9500505925695213, 0.537798347971205, 0.9173482789702866, 0.44454351342386716, 0.8909704850569525, 0.7351932580165473, 0.6818328744935735, 0.7981559962965634, 0.7626532952948841, 0.807353254900461, 0.964411205143099, 0.4685752957996948, 0.6986526320119215, 0.1956969407137045, 0.9233481403380283, 0.8218375601976645, 0.8536269727611236, 0.5637680470866036, 0.42267134533232753, 0.93003590801509, 0.9364808605729722, 0.8816060831574614, 0.9663102962713933, 0.8345570787709832, 0.4997893986747249, 0.7921603237806832, 0.5586815647381762, 0.8622246464681924, 0.9828719612298703, 0.909295720392338, 0.9476267884443668, 0.5395521774612226, 0.901360886913609, 0.39410444510430487, 0.9262213132200262, 0.6627387433216217, 0.9629433821448677, 0.9614311452267452, 0.9802968012486629, 0.933760787013923, 0.34432718187202205, 0.63596173557573, 0.624364378916488, 0.7417789548241253, 0.7300918276682445, 0.6968315453320488, 0.7840233885688647, 0.8958841271622066, 0.5417426694559925, 0.7102579146160282, 0.6004345411549624, 0.515920701757342, 0.7587882454650442, 0.5029588531082266, 0.6887596776945688, 0.8642849605932809, 0.6469572639767995, 0.8103639651534781, 0.939764354405301, 0.694136577696587, 0.6593725303534554, 0.9646797005081557, 0.7979900311745153, 0.792123904710467, 0.8869579700149332, 0.7351250317969437, 0.5332560471205093, 0.9406873315653421, 0.39362685027924615, 0.9466602521798594, 0.8394325033041952, 0.6633442657978572, 0.8126408700417265, 0.7332457619716184, 0.08024070404520958, 0.8667774471450977, 0.6466814331404849, 0.912366876100516, 0.656670904734599, 0.8701678467707724, 0.8875925797813499, 0.9658725076002231, 0.7668332861852056, 0.8604440887473094, 0.934384507524058, 0.9605946056867319, 0.951253157591183, 0.5749289095213865, 0.6279243005170476, 0.7937202818717513, 0.7665301650725991, 0.700127941221274, 0.8531107444728586, 0.7947045908306632, 0.8870566665876504, 0.5476228787844645, 0.8410401833568673, 0.8736671065238262, 0.6519898659949606, 0.936943112068646, 0.9077719201719568, 0.8071889556778997, 0.8815615400732472, 0.8935313268029127, 0.8782891297971865, 0.5029588531082266, 0.5797201450332624, 0.9416775458320723, 0.5958140198486584, 0.2485157288688957, 0.932021424688801, 0.8531502837407814, 0.6344194678828672, 0.632587077283238, 0.9121448358615357, 0.5776545535910985, 0.9052765174806566, 0.8580390107418799, 0.8998644401112552, 0.6784536879503494, 0.9458342431661766, 0.21387363850783603, 0.9530348339880965, 0.7307391114165022, 0.7187682731289255, 0.6905635603269331, 0.9569274903702625, 0.9287384091375525, 0.3856984054091925, 0.504413920551941, 0.5389739198483336, 0.5921068831639978, 0.10702848140489757, 0.8772993497727819, 0.6361944011057532, 0.8952999713010865, 0.7069578609115064, 0.10632960186243966, 0.6465592619811017, 0.9116333268133815, 0.9210441535829985, 0.9483358221641291, 0.5800224234700003, 0.896951343689222, 0.8958659323404018, 0.8896861436466836, 0.7763142135369961, 0.778627444633172, 0.9274605647284293, 0.9167924025380936, 0.6422094408272838, 0.6363725079258666, 0.8694129796739031, 0.5693182102579236, 0.5315376696882942, 0.6814536952243052, 0.30089534057709466, 0.6689448970920832, 0.6419522618821227, 0.6500641275496193, 0.8221968069187356, 0.9285763346020383, 0.8495153837633861, 0.7135666997345446, 0.8850789772017983, 0.9128367188568884, 0.8709442503982084, 0.44714680104169846, 0.7147831401969469, 0.6814536952243052, 0.5823319261018008, 0.7718122970862826, 0.8925058444773368, 0.9249991097277733, 0.7849066379312727, 0.5120166815330335, 0.7863291630268572, 0.8171821177205619, 0.8878235148823457, 0.9813953955585096, 0.5009899161211654, 0.6787020040856314, 0.2747106808400709, 0.6998114428322438, 0.7191783799678735, 0.7566715075843347, 0.7741630673610131, 0.692871858980435, 0.8706970297938403, 0.9226518689226377, 0.619213859232465, 0.9620625840847012, 0.8161066853745392, 0.7984578805051198, 0.8987836568806694, 0.27900511725120763, 0.747868261422589, 0.8013372150606806, 0.4430395412241901, 0.8082746512504794, 0.9248395818955686, 0.8132668978866627, 0.7926355964369082, 0.7243101498981422, 0.8251498778038484, 0.865753667016409, 0.8784859927081519, 0.9613966942665844, 0.8380103992838959, 0.9376908870460701, 0.8505645904112248, 0.5317253080143199, 0.8756470416862959, 0.8823120896825394, 0.8920529250761863, 0.9565288857220365, 0.92576324319171, 0.8397457208604353, 0.8008835764985612, 0.7620555647282774, 0.6333567796033132, 0.8986985644274655, 0.8289197139212982, 0.38568054861828666, 0.4358764146033148, 0.7013568331933456, 0.5524769805317635, 0.8654015550049637, 0.9625385348003681, 0.4997035751430624, 0.5940434106189647, 0.29640429037896177, 0.9370396801623051, 0.7496358493500708, 0.8521916566704996, 0.7519935213994349, 0.8956127660014477, 0.7563308848917781, 0.5425355780301907, 0.1652985164032473, 0.5777375433929663, 0.5926841497777402, 0.5247451599628447, 0.6215406511606532, 0.646742228322253, 0.5236567091352762, 0.8105889943537302, 0.7614647275399787, 0.7272264480694343, 0.44438282424164377, 0.8051848688934031, 0.253979247575754, 0.8737269176380216, 0.7884186533408385, 0.5226162157005312, 0.7776146375974927, 0.8021344726910251, 0.6794204065079696, 0.8398669626756513, 0.3743394998756179, 0.6593725303534554, 0.41008410759983227, 0.8726624594592295, 0.31336232876890546, 0.6187135046228962, 0.9208146539756937, 0.8948907807194619, 0.9475948217130945, 0.7098971478357265, 0.41970311630379203, 0.5524505095188592, 0.6689295490636696, 0.39534528644804523, 0.6686700461744643, 0.6608417181144597, 0.6289006219381473, 0.8112353209803558, 0.9675531845963172, 0.3468688843876404, 0.8171815196180959, 0.9315945487332388, 0.7612383340144859, 0.43979370974717685, 0.9452166580978265, 0.810349906376065, 0.4979189466877109, 0.9054024939516333, 0.7506263221664519, 0.8595966107872783, 0.9041757536760852, 0.5120166815330335, 0.9246344940597735, 0.622364539475366, 0.7975959936185795, 0.9376528402833735, 0.8270495791839716, 0.7463426393970082, 0.8508295060861325, 0.5277539611022016, 0.7926521549058593, 0.8343380415579561, 0.7973631232158779, 0.5423298306356671, 0.6253812669856891, 0.9342151247863544, 0.9064095870896521, 0.8428584418618921, 0.5680191878381406, 0.8230633503438987, 0.857993972512287, 0.8312116035859974, 0.8886868130574391, 0.5695902702544526, 0.8750573328895943, 0.47134086624147714, 0.6082670858563528, 0.8571520978358925, 0.7006810412396262, 0.6001343818465046, 0.8680196363335714, 0.7833148206731655, 0.835330250744176, 0.6883000602161935, 0.4297997702781997, 0.7132181587745201, 0.941909753873568, 0.9298379484442667, 0.8950633078112005, 0.9652574497835966, 0.8593048115498744, 0.23022113319019433, 0.5548683876071567, 0.8789570823277312, 0.7176343272433334, 0.7135972690872326, 0.900955402304434, 0.89110615578316, 0.8021344726910251, 0.36734125225010755, 0.9233813125795639, 0.9269988231022361, 0.6021478506882372, 0.27064660283581765, 0.7595966254948197, 0.5317253080143199, 0.9626288904553877, 0.518871521713375, 0.4244151934213653, 0.8784852709235653, 0.667697582798242, 0.6791650855490978, 0.8659372985570389, 0.5217980090164113, 0.9757802673562255, 0.20769640873195563, 0.6900575067285889, 0.15051833553221247, 0.8476988333501053, 0.12043274000614122, 0.6546311715671466, 0.412102187638673, 0.6339696776630096, 0.6925917751558638, 0.8074446941396305, 0.8417042066658985, 0.4702054036006336, 0.8107456318417504, 0.934253622333564, 0.9671353887875448, 0.3776875782453083, 0.5133306968464912, 0.8279918435672958, 0.7295730380004212, 0.8398957027397556, 0.7470826509089123, 0.7722124156410631, 0.3944809481034696, 0.5801047158883857, 0.7134138458261836, 0.8265590446981121, 0.5836238058504062, 0.7538957359152121, 0.9708936701567454, 0.41507295289487073, 0.9039211350062085, 0.5109703825452502, 0.8880660412534, 0.6332514250278477, 0.703270618172154, 0.863031725372896, 0.9601349291832292, 0.5845797646527732, 0.8357575010967041, 0.9584406458449958, 0.8733333206292072, 0.4740801794177068, 0.5787650908025566, 0.38525623454815555, 0.5715075300165849, 0.951253157591183, 0.831291834366621, 0.6482062646591596, 0.5447536045265621, 0.8456825404777587, 0.5358725178581014, 0.8893400405584444, 0.5955893395860203, 0.9408369636189147, 0.7580589814818564, 0.4244151934213653, 0.7636885291754726, 0.9532052815091139, 0.6686700461744643, 0.39683939049776734, 0.8309978518015588, 0.06774730328187532, 0.8934061610794648, 0.9459413258233057, 0.8507977517004935, 0.9694554821790147, 0.8640493534313302, 0.8409166048571896, 0.9059760843724536, 0.7278052027863667, 0.8952246802917138, 0.39534528644804523, 0.9558702864115934, 0.9178754126151818, 0.7504628435478695, 0.7568870052952757, 0.32046258648166903, 0.9712495894387816, 0.7125870341029702, 0.8286889773580812, 0.929575727770858, 0.8422483936479932, 0.60065365322741, 0.5775074082600717, 0.7505976846167132, 0.5317253080143199, 0.9590110623565244, 0.9651712957082627, 0.7333643603414158, 0.7757825668725274, 0.8928390517037824, 0.2578168736401774, 0.5355488836719776, 0.8408692583280314, 0.7849780542174357, 0.8711681462620556, 0.8447990405440073, 0.9571933326515756, 0.9307123551507692, 0.6421242495412457, 0.9239207054420927, 0.9336219461922934, 0.4244151934213653, 0.5673643045526261, 0.8301442064454496, 0.528471943574542, 0.8835542071774324, 0.8820947700128993, 0.4561713647735051, 0.584381944856391, 0.9493936477483658, 0.7816316980556022, 0.7770145472448273, 0.8495153837633861, 0.8318035560268552, 0.5220388622338656, 0.8589980209217414, 0.21216021099657945, 0.8782303617207965, 0.901850575196968, 0.7683760396387002, 0.9559989503713009, 0.938411491366706, 0.7225398931917507, 0.5918361617892179, 0.8596378534897678, 0.8816239240572568, 0.9296844522785247, 0.8299758417251202, 0.7538846798551382, 0.931253582726863, 0.6902425303942638, 0.9299571155275668, 0.35461708236434614, 0.6119587629530028, 0.8979450471026776, 0.8782891297971865, 0.6144930729026484, 0.5601837238662909, 0.4230258756549153, 0.5115702372514986, 0.6133200318312215, 0.8287048127179734, 0.42887934024879554, 0.5543929044930882, 0.5414149972460248, 0.7453725251924848, 0.6522898344923613, 0.6445138145159856, 0.9212190995841192, 0.6991293681294938, 0.9188224881967051, 0.9444881948020799, 0.8399825546316605, 0.6440269003431431, 0.45260210695563535, 0.6678228102737954, 0.8535669746933884, 0.23469888428232324, 0.7581156815660375, 0.8329520097124233, 0.5886389680190937, 0.4250130050586104, 0.290761161529129, 0.9065968169685268, 0.39757013049667705, 0.9584529405260903, 0.24804178200132845, 0.8400605958344816, 0.9562762484868867, 0.5923100188758571, 0.5355488836719776, 0.6866862751474886, 0.753715093249364, 0.9302702282582556, 0.8405005145861136, 0.7758456574858743, 0.8270123797965384, 0.9270997487744173, 0.8779999285967196, 0.6350604679157676, 0.9057987369792326, 0.9732730617650076, 0.28007269673131574, 0.5393237551960537, 0.9509318156255189, 0.8055358405733448, 0.8512314640165554, 0.6752183046546253, 0.9766791413071304, 0.26893819095773785, 0.5105552073939665, 0.7964242570425004, 0.9159462749375985, 0.46312559485344046, 0.7889853219989779, 0.5331772070153998, 0.6250130361556073, 0.5340700079782073, 0.8981158701031157, 0.8424802355113449], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [0.78, 0.48, 0.33, 0.45, 0.47, 0.5, 0.51, 0.54, 0.67, 0.57, 0.49, 0.5, 0.52, 0.37, 0.57, 0.48, 0.38, 0.61, 0.81, 0.28, 0.72, 0.46, 0.49, 0.51, 0.66, 0.38, 0.52, 0.49, 0.4, 0.53, 0.44, 0.54, 0.46, 0.45, 0.51, 0.44, 0.48, 0.58, 0.41, 0.55, 0.38, 0.43, 0.81, 0.45, 0.41, 0.57, 0.61, 0.53, 0.5, 0.52, 0.7, 0.39, 0.34, 0.58, 0.49, 0.67, 0.65, 0.74, 0.35, 0.54, 0.74, 0.64, 0.47, 0.91, 0.47, 0.64, 1.34, 0.56, 0.56, 0.48, 0.69, 0.4, 0.46, 0.47, 0.37, 0.53, 0.52, 0.43, 0.46, 0.61, 0.39, 0.49, 0.42, 0.55, 0.37, 0.48, 0.44, 0.75, 0.42, 0.8, 0.34, 0.38, 0.7, 0.63, 0.73, 0.4, 0.34, 0.93, 0.46, 0.5, 0.43, 0.43, 0.48, 0.52, 0.46, 0.54, 0.7, 0.45, 0.41, 0.64, 0.46, 0.44, 0.75, 0.54, 0.46, 0.48, 0.67, 0.49, 0.48, 0.52, 0.37, 0.46, 0.6, 0.48, 0.54, 0.77, 0.48, 0.55, 0.54, 0.65, 0.4, 0.56, 0.63, 0.33, 0.48, 0.5, 0.7, 0.55, 0.4, 0.51, 0.42, 0.37, 0.31, 0.52, 0.63, 0.49, 0.52, 0.56, 0.54, 0.42, 0.34, 0.59, 0.72, 0.38, 0.52, 0.35, 0.4, 0.51, 0.46, 0.56, 0.57, 0.56, 0.68, 0.48, 0.5, 0.5, 0.38, 0.49, 0.38, 0.46, 0.6, 0.49, 0.38, 0.42, 0.58, 0.35, 0.31, 0.53, 0.45, 0.37, 0.39, 0.44, 0.61, 0.38, 0.52, 0.42, 0.4, 0.53, 0.59, 0.52, 0.57, 0.58, 0.5, 0.65, 0.49, 0.47, 0.46, 0.48, 0.78, 0.44, 0.52, 0.46, 0.45, 0.69, 0.3, 0.76, 0.46, 0.78, 0.33, 0.45, 0.61, 0.52, 0.64, 0.35, 0.47, 0.37, 0.57, 0.4, 0.5, 0.39, 0.46, 0.43, 0.47, 0.46, 0.45, 0.45, 0.64, 0.59, 0.39, 0.4, 0.51, 0.7, 0.37, 0.32, 0.82, 0.47, 0.45, 0.59, 0.63, 0.55, 0.72, 0.8, 0.52, 0.41, 0.5, 0.72, 0.88, 0.45, 0.52, 0.42, 0.64, 0.45, 0.42, 0.44, 0.44, 0.41, 0.41, 0.6, 0.58, 0.71, 0.65, 0.53, 0.68, 0.68, 0.49, 0.45, 0.56, 0.73, 0.44, 0.48, 0.5, 0.72, 0.41, 0.45, 0.53, 0.55, 0.68, 0.6, 0.54, 0.88, 0.53, 0.48, 0.38, 0.43, 0.88, 0.44, 0.39, 0.46, 0.28, 0.58, 0.5, 0.58, 0.52, 0.54, 0.58, 0.65, 0.42, 0.37, 0.51, 0.58, 0.46, 0.61, 0.7, 0.63, 0.5, 0.29, 0.53, 0.35, 0.58, 0.49, 0.58, 0.63, 0.62, 0.39, 0.56, 0.44, 0.46, 0.48, 0.64, 0.38, 0.61, 0.58, 0.5, 0.76, 0.52, 0.4, 0.51, 0.63, 0.48, 0.46, 0.56, 0.45, 0.5, 0.53, 0.55, 0.51, 0.51, 0.39, 0.37, 0.45, 0.45, 0.58, 0.6, 0.48, 0.63, 0.73, 0.49, 0.78, 0.37, 0.76, 0.56, 0.49], \"xaxis\": \"x2\", \"y\": [0.8142007211296887, 0.07257977436397642, 0.7430932382113554, 0.8214862427787604, 0.5698848321031316, 0.6048119589659149, 0.6466669219762841, 0.14510080060429495, 0.2250304680670007, 0.28492472637839966, 0.42061632734231896, 0.8281252124183194, 0.49622399336621903, 0.3482895521074759, 0.4678833354511545, 0.5708968386647719, 0.37048677721847617, 0.553632248395139, 0.8702137350251022, 0.42186952587750404, 0.8696774950675754, 0.5410576963494411, 0.3971326977900686, 0.3275001196198921, 0.9448289227093116, 0.7109941475090589, 0.41925580570138304, 0.3675472469853882, 0.6721911818800557, 0.5562207270314473, 0.5262426608517637, 0.3244609607385458, 0.15056615442564347, 0.15676979724311627, 0.6037730696030339, 0.6342511279653397, 0.021947035536558718, 0.32429164429335744, 0.5678746850743716, 0.3571680467137555, 0.7755534309390314, 0.3240287891037917, 0.699424662214302, 0.5151532452376618, 0.7564675819717819, 0.38343591026479057, 0.19811005648518398, 0.3168419703358067, 0.5315947262677626, 0.9269044449273315, 0.8260225289794664, 0.451791899378283, 0.830516920403184, 0.47128602930186, 0.19027823806377472, 0.5181346713949518, 0.29552777318700446, 0.45414400334446664, 0.39329840463575844, 0.42327932510626076, 0.45838907164509224, 0.2233864252642039, 0.3628419195926303, 0.6709353200988277, 0.46058046365566996, 0.25551237833043455, 0.7234147543269824, 0.1481282262733752, 0.314935793994079, 0.20050531530561894, 0.37453315488553635, 0.701015529968035, 0.6343341418527783, 0.1739320900588749, 0.734996253073231, 0.8172229478314255, 0.3598554146739685, 0.7121055211356295, 0.2620604909731644, 0.3421138035730516, 0.6951268813066005, 0.35208221297891723, 0.452099210446082, 0.18907620085798427, 0.5444201651108793, 0.6484058972837882, 0.3258186925596978, 0.5963383680780668, 0.6202666247822538, 0.576738593946626, 0.5054992484109841, 0.2972245631729925, 0.6844333356791464, 0.42629475072919953, 0.4405153833121037, 0.01207867704715336, 0.7609288944606691, 0.23951123982998349, 0.09310514674080905, 0.5084920166510624, 0.33067609257366243, 0.36481899584296196, 0.5708968386647719, 0.3194802059637459, 0.14207297841267416, 0.5776897120055972, 0.2026163425795633, 0.37909000048748537, 0.38206764842015895, 0.41324683104354176, 0.17826143731067332, 0.42339414872454434, 0.39148091864802853, 0.3511350413575442, 0.8053393751847749, 0.5937005322868365, 0.6849942580153355, 0.38930033076762494, 0.5168500865319015, 0.5699073288866824, 0.5376087249833421, 0.8185832461647057, 0.25950508036415604, 0.20394483716883388, 0.3303044530853749, 0.2528102968078532, 0.8477719856767125, 0.5217124250004609, 0.3303044530853749, 0.5382885532339231, 0.9625763866028243, 0.6536174904341296, 0.42629475072919953, 0.6458781618432388, 0.46574001023909845, 0.37268733756108086, 0.8180085473348132, 0.35493594975273335, 0.2423640089427935, 0.3636330633241046, 0.6421622311157122, 0.5444201651108793, 0.7396308412796291, 0.9036153464846048, 0.21101569987323432, 0.6004024464464508, 0.7595861882737439, 0.486549602332862, 0.2379839758891197, 0.5147825233229498, 0.2065932277190248, 0.4342628292980428, 0.5940848250235929, 0.4857193175270624, 0.5332610244722983, 0.5402196969638672, 0.8578846895389459, 0.5290225674595067, 0.6074669506688956, 0.1847839155105034, 0.3581391437324269, 0.4304380754474639, 0.8410120374942113, 0.5810086483513661, 0.19026233744636453, 0.7223494520380469, 0.8589928738613049, 0.8374625942163022, 0.781203852328267, 0.73983195178881, 0.41156537259256004, 0.7482873396984137, 0.44431713201158524, 0.7113673874393347, 0.49869552495399233, 0.7627102864663872, 0.37193390769028617, 0.37187810520956766, 0.3773291605703562, 0.8719651627687759, 0.6218762459828849, 0.3781393537983126, 0.553632248395139, 0.47624084907999176, 0.774399353278846, 0.5840424935194366, 0.5601025471409736, 0.6186690618327106, 0.620611700356168, 0.5755798886129706, 0.15047650536569443, 0.5530049338021776, 0.6597439619439023, 0.8300222117931148, 0.3490158529243493, 0.4410646109528086, 0.5067909967309752, 0.5851482063434866, 0.7149827463187939, 0.4849259975950144, 0.2094210588097294, 0.33399024531412796, 0.4083143545243069, 0.7497022835596558, 0.7817929239213606, 0.7637421953724776, 0.3825655414920891, 0.6611482494098961, 0.19022241257108333, 0.44972084577511023, 0.5476732603321269, 0.4831274653996314, 0.5077048340566679, 0.7289504589448288, 0.4379810490617926, 0.8017221455714771, 0.6434673631716396, 0.5059779734745421, 0.6065367192264559, 0.650368705032214, 0.34567471266024347, 0.39561589000187136, 0.3427787545601037, 0.4676404271158623, 0.5332283386400669, 0.4519108142444285, 0.40662831629925006, 0.42305576187259053, 0.22032895172816622, 0.5278715769330472, 0.43679486629948455, 0.743933429392776, 0.5269515041023835, 0.5008800654866953, 0.214168174561682, 0.44879088851457377, 0.683485355417811, 0.807753104897186, 0.42629475072919953, 0.8502951424821861, 0.17421175568219957, 0.25491371883486935, 0.7595861882737439, 0.6571724132942184, 0.7813188949129265, 0.5626906653340306, 0.8674288259883418, 0.6600514650598344, 0.4827749661719035, 0.5456147119159479, 0.39827550056677263, 0.27323823737433794, 0.695896529362927, 0.5048820477254727, 0.5422349097465021, 0.5610936746718964, 0.6571724132942184, 0.3088751107498249, 0.45428761266464013, 0.6604471727860799, 0.43371621376298963, 0.6171893197168647, 0.8100511550343341, 0.8100511550343341, 0.605832578461134, 0.5526475584669951, 0.4275055171336787, 0.8734720021260204, 0.8508295378350301, 0.5807723706867254, 0.8272749548927728, 0.2670652478909882, 0.7020144194675465, 0.4615566916191992, 0.7055847950248242, 0.43389869234556755, 0.6071692164257629, 0.3496825637352313, 0.23676491619791426, 0.7057755976874825, 0.15539001443149586, 0.6187538615870153, 0.8735882828904331, 0.30049486749739024, 0.23191705420611952, 0.8913917397916864, 0.4977157214618499, 0.16961113509580228, 0.8485494795219795, 0.4760032757956232, 0.5053843099270294, 0.2676015269871764, 0.3627664421236291, 0.15146266807038725, 0.7898179638281774, 0.6145296307645981, 0.3790380236797623, 0.3003532640340299, 0.6086112016774773, 0.39906793889171593, 0.8185832461647057, 0.6715802865662828, 0.8260225289794664, 0.6056902064850618, 0.400132762133902, 0.39471961640683584, 0.6449859309106076, 0.5637152910565628, 0.39949420960438964, 0.5490401551410112, 0.4398875418860128, 0.30916577334906253, 0.7093303227687476, 0.4562508424819209, 0.40444044759428516, 0.5773483646962835, 0.447777692034652, 0.4961542215384683, 0.32474312180562226, 0.21192693199409943, 0.9056903490933487, 0.5013816399998683, 0.758876109553896, 0.6364928148646596, 0.2952804752502578, 0.4748951900520853, 0.43679486629948455, 0.5479962315186364, 0.4728142838839701, 0.6343341418527783, 0.12248807650217919, 0.5052525886146573, 0.8281252124183194, 0.8930081609652758, 0.36283726088930296, 0.8098196742550625, 0.656477404357746, 0.193885049884708, 0.5269515041023835, 0.49858469647139786, 0.32780472036158087, 0.24927512797396847, 0.6148718578314069, 0.10691527318901187, 0.136775438340409, 0.8489192718114075, 0.2600203086082801, 0.8142007211296887, 0.5269515041023835, 0.7966615933629455, 0.5633234794197017, 0.767479452333631], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"sulphates\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"sulphates\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}}, {\"id\": \"sulphates_bad\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (ref)\", \"type\": \"scatter\", \"x\": [0.42, 0.41, 0.41, 0.58, 0.51, 0.54, 0.57, 0.67, 0.5, 0.49, 1.17, 0.63, 0.4, 0.42, 0.43, 0.43, 0.6, 0.48, 0.5, 0.49, 0.45, 0.36, 0.6, 0.47, 0.81, 0.65, 0.5, 0.62, 0.5, 0.43, 0.56, 0.55, 0.55, 0.78, 0.44, 0.46, 0.36, 0.35, 0.63, 0.42, 0.48, 0.68, 0.46, 0.43, 0.5, 0.5, 0.47, 0.52, 0.64, 0.62, 0.57, 0.5, 0.38, 0.44, 0.6, 0.51, 0.43, 0.57, 0.52, 0.88, 0.57, 0.47, 0.52, 0.39, 0.48, 0.45, 0.6, 0.45, 0.64, 0.37, 0.32, 0.58, 0.46, 0.5, 0.38, 0.42, 0.38, 0.7, 0.58, 0.48, 0.5, 0.54, 0.47, 0.43, 0.62, 0.56, 0.44, 0.32, 0.29, 0.39, 0.58, 0.38, 0.66, 0.46, 0.44, 0.48, 0.4, 0.58, 0.48, 0.5, 0.47, 0.65, 0.64, 0.55, 0.53, 1.31, 0.43, 0.34, 0.57, 0.44, 0.62, 0.4, 0.56, 0.44, 0.64, 0.49, 0.5, 0.62, 0.57, 0.38, 0.46, 0.6, 0.51, 0.29, 0.49, 0.5, 0.67, 0.55, 0.59, 0.5, 0.28, 0.64, 0.4, 0.49, 0.49, 0.42, 0.35, 0.54, 0.45, 0.51, 0.53, 0.5, 0.34, 0.5, 0.48, 0.4, 0.66, 0.38, 0.56, 0.7, 0.52, 0.53, 0.42, 0.61, 0.39, 0.5, 0.95, 0.39, 0.39, 0.28, 0.36, 0.6, 0.57, 0.48, 0.39, 0.46, 0.48, 0.54, 0.57, 0.42, 0.51, 0.39, 0.49, 0.8, 0.67, 0.53, 0.47, 0.57, 0.59, 0.39, 0.49, 0.48, 0.5, 0.47, 0.46, 0.36, 0.59, 0.36, 0.52, 0.47, 0.44, 0.56, 0.6, 0.4, 0.54, 0.49, 0.54, 0.53, 0.68, 0.41, 0.71, 0.75, 0.75, 0.57, 0.73, 0.43, 0.39, 0.5, 0.58, 0.31, 0.42, 0.49, 0.44, 0.43, 0.56, 0.47, 0.53, 0.29, 0.48, 0.29, 0.47, 0.39, 0.6, 0.44, 0.38, 0.52, 0.38, 0.66, 0.51, 0.52, 0.43, 0.43, 0.44, 0.51, 0.66, 0.35, 0.53, 0.37, 0.61, 0.63, 0.71, 0.53, 0.52, 0.48, 0.39, 0.57, 0.55, 0.52, 0.39, 0.6, 0.67, 0.47, 0.55, 0.47, 0.51, 0.51, 0.79, 0.32, 0.58, 0.49, 0.41, 0.62, 0.38, 0.4, 0.43, 0.34, 0.6, 0.43, 0.97, 0.54, 0.43, 0.67, 0.55, 0.58, 0.45, 0.58, 0.48, 0.54, 0.38, 0.52, 0.52, 0.66, 0.49, 0.6, 0.35, 0.52, 0.64, 0.39, 0.39, 0.41, 0.62, 0.69, 0.37, 0.48, 0.48, 0.98, 0.52, 0.49, 0.46, 0.59, 0.73, 0.44, 0.53, 0.49, 0.53, 0.38, 0.61, 0.56, 1.05, 0.47, 0.4, 0.48, 0.66, 0.48, 0.99, 0.43, 0.51, 0.61, 0.56, 0.65, 0.63, 0.5, 0.44, 0.59, 0.46, 0.4, 0.84, 0.7, 0.51, 0.46, 0.5, 0.62, 0.51, 0.69, 0.45, 0.57, 0.45, 0.64, 0.4, 0.5, 0.46, 0.5, 0.51, 0.51, 0.51, 0.65, 0.71, 0.48, 0.47, 0.56, 0.35, 0.57, 0.64, 0.63, 0.66], \"xaxis\": \"x\", \"y\": [0.7197707895473677, 0.05448058807241418, 0.5021256787650443, 0.4710854375480472, 0.7156076129280222, 0.7966690429773311, 0.7265425252145667, 0.16771266951545494, 0.610944103187451, 0.6324527530146118, 0.42180662537268765, 0.2598044700255929, 0.5503032830239416, 0.5632112185661304, 0.6840604465833231, 0.6224375641140001, 0.8071781895370533, 0.9515482366939344, 0.3994071349416132, 0.9677746238863042, 0.572587586261062, 0.7602674855798478, 0.861098734498427, 0.1386074727873, 0.6703360831713621, 0.8064003460928679, 0.3172728283240366, 0.8039094494444462, 0.9186426431335688, 0.6026275969807151, 0.8609701260317718, 0.3485833566260712, 0.3005246278528939, 0.2859113263741919, 0.4978204971029292, 0.5125675444128744, 0.4268860326359044, 0.11791793574572085, 0.440027850275134, 0.4938434408506086, 0.4933189622152446, 0.166194347192407, 0.30200278364192557, 0.6822425768461728, 0.8693180940701344, 0.24112389044610405, 0.43189370387303117, 0.284455178085937, 0.23793737479647703, 0.5535561322468214, 0.7900402576908969, 0.47373775892899717, 0.6055733033081183, 0.7462675017011632, 0.32245623572553406, 0.7612367841042231, 0.36308410170653527, 0.6103993963703384, 0.3965676277125745, 0.2230008284200371, 0.8480025164595866, 0.43585875500482685, 0.24095331994381775, 0.4030652094068704, 0.8951637220162157, 0.2782175630406618, 0.7337660836226194, 0.8352762102164887, 0.6223987562306759, 0.2928263700360406, 0.6563137004068428, 0.16155652477357085, 0.6364666355122575, 0.2186811050870735, 0.27206300237801306, 0.4358901152617537, 0.6136035252376228, 0.07900866299327158, 0.8522855318359817, 0.11906253414448076, 0.3466831105240652, 0.11265227152414181, 0.6302693732121377, 0.7168097665217413, 0.4796298258249143, 0.4476252306691143, 0.3612478268219491, 0.611861930499026, 0.15121036728507153, 0.5363393546692182, 0.16155652477357085, 0.441733396330222, 0.7834276811132227, 0.6364666355122575, 0.44873286860252337, 0.4948960601400133, 0.4172084246960842, 0.5055831714989107, 0.5269082808529498, 0.3737404408311804, 0.4491757516278906, 0.5266720849021, 0.2882430633103308, 0.6066213483726142, 0.83534933450756, 0.2509605867776752, 0.230738949997912, 0.25680675940048736, 0.6858999083789018, 0.27626495444752697, 0.35158671089680515, 0.311480105980391, 0.5950329577300569, 0.4196263877039489, 0.3672198477254309, 0.5488429300958864, 0.6273126624389191, 0.0990306898864649, 0.935036100419004, 0.5556828679884147, 0.6003916802566726, 0.1337843055401957, 0.6898191889393818, 0.46604488826349566, 0.6668872608045229, 0.5998672378660981, 0.14712454771937833, 0.8558065212045691, 0.883276495704891, 0.5544329747085402, 0.38398791005853006, 0.8623310715459079, 0.4482795971615686, 0.4767821080964978, 0.6451659669426603, 0.5099786295438409, 0.11454219273407718, 0.5691587732433696, 0.2398813672346335, 0.8592796956842923, 0.38133093816728936, 0.4754945767078651, 0.2673740541283356, 0.43092180164799054, 0.5981491184574936, 0.7512253043619477, 0.20474988026063612, 0.12337786436138054, 0.6965484670033051, 0.4642254518352117, 0.29034758521725457, 0.7912282271603185, 0.1364389858241727, 0.5326323768611896, 0.3938848007926149, 0.886984727126295, 0.5955398539691413, 0.3667393936023857, 0.35129461810907203, 0.578130474122496, 0.1952086434691429, 0.6982941690158907, 0.6159300986783536, 0.6650580695700093, 0.8007006003287879, 0.13750802167619447, 0.47121416359091395, 0.5691587732433696, 0.5295784007050042, 0.4938434408506086, 0.4240508430342457, 0.1531205555636086, 0.7965770364050346, 0.4829168465516456, 0.6333246955344933, 0.38682769986244625, 0.5589353890471914, 0.30965836575156913, 0.6133571507425741, 0.5363393546692182, 0.5474540697204298, 0.9680074395956593, 0.29703705077451537, 0.7566858385458134, 0.451244026180727, 0.6224939697452743, 0.9340693900855184, 0.1254375450851024, 0.770680513376406, 0.7273231109206828, 0.410671569380914, 0.19928392436820586, 0.44743622108127745, 0.4991477681643879, 0.5443787589855091, 0.826082779912576, 0.5642536294664222, 0.6762559922350657, 0.39283078357423706, 0.3074847569358159, 0.40732461839200396, 0.5614584986504241, 0.5614584986504241, 0.575628870274347, 0.1938881144566701, 0.6480440770440566, 0.23946299348505806, 0.6110142157087575, 0.32489046344192996, 0.127020290619695, 0.28948900574123104, 0.27970970921902805, 0.5179212029104148, 0.579807192000203, 0.5695619245525361, 0.7471497674522103, 0.6761943115269239, 0.6052803835931642, 0.9048996801452402, 0.632953623191418, 0.7849920634816455, 0.12946409768986655, 0.3899257470968539, 0.37735505673750047, 0.27206300237801306, 0.6356505945299911, 0.9000798247851504, 0.5852448485124296, 0.3537739535016634, 0.8589709040748648, 0.5105041430354158, 0.4760479563081992, 0.3915586115462193, 0.4344526143297297, 0.04825794875232026, 0.25106204840173363, 0.5352062615150248, 0.2084678736174792, 0.5588772074146924, 0.42656597432725707, 0.3395528272139201, 0.5154796814541086, 0.30312695461308037, 0.4684625037801391, 0.13140485141127656, 0.37575572516499556, 0.7087902803012941, 0.22740617784346517, 0.7932370230268412, 0.6977827466507267, 0.8687065743771458, 0.3532210556477622, 0.3005246278528939, 0.8817461779308045, 0.5897758288136841, 0.5117334773877459, 0.2267712913026929, 0.7462523759498982, 0.5055831714989107, 0.6276122794572256, 0.34766968675436505, 0.563322001169588, 0.4035281086421867, 0.44827723495654004, 0.7588644006503809, 0.17560197311170134, 0.2736156405730563, 0.5646478519097824, 0.12788772013874206, 0.8127608550985441, 0.35130933230290007, 0.8842329534318195, 0.5671758377024384, 0.508518787579709, 0.4735654621913231, 0.6614347321502836, 0.7032589073748752, 0.418601168771625, 0.40262233345395115, 0.38045938978299354, 0.6221728234115828, 0.6769388667590319, 0.825791915264051, 0.8036522945246104, 0.5350776523934957, 0.5038683203672731, 0.4187790963850706, 0.3942708224564714, 0.36585282612655, 0.42973128126448334, 0.1395024853671747, 0.36909778672938764, 0.5126700875045708, 0.31128511290513083, 0.5841805470690385, 0.42932394036482613, 0.5168725346003686, 0.9331527243268325, 0.5090935678835011, 0.848083892739094, 0.7288594688776423, 0.23463814542978878, 0.9073343486287574, 0.5445649372592127, 0.8030108083542629, 0.30698149193503155, 0.47724620771884374, 0.49565431290071005, 0.29179072192325783, 0.53941953634433, 0.32642767658125227, 0.5714063949384225, 0.6769388667590319, 0.48314991346809855, 0.3838692085325581, 0.7654355578102645, 0.6807995217458978, 0.7803105409218809, 0.4971816769068883, 0.5662837862370104, 0.32557907866588853, 0.4059739580227363, 0.8621668957327787, 0.4863555612469991, 0.44913520001249685, 0.5044088987161788, 0.018560580499064172, 0.17397747102053363, 0.8203404366189, 0.531551035274026, 0.3951880410340851, 0.6710839680909022, 0.7545393605546251, 0.25029771644034415, 0.31651464458218903, 0.7900402576908969, 0.7649542174153934, 0.6282404390050247, 0.5124469561170844, 0.7501741577575001, 0.3717170374651112, 0.5479204837841629, 0.1799627586960565, 0.8716748635647116, 0.4700369344869263, 0.7044722268129955, 0.7597806244765397, 0.4570971226262448, 0.3688130253756654, 0.5854022956087224, 0.6067015953642416, 0.6092966434658947, 0.5713009051869427, 0.15316343939585397, 0.31191498773739224], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [0.42, 0.54, 0.53, 0.49, 0.54, 0.54, 0.53, 0.5, 0.38, 0.38, 0.34, 0.54, 0.37, 0.44, 0.67, 0.45, 0.37, 0.68, 0.48, 0.34, 0.56, 0.59, 0.42, 0.4, 0.32, 0.54, 0.4, 0.35, 0.4, 0.39, 0.42, 0.65, 0.39, 0.9, 0.63, 0.48, 0.55, 0.41, 0.53, 0.75, 0.38, 0.44, 0.71, 0.41, 0.49, 0.4, 0.47, 0.45, 1.13, 0.37, 0.37, 0.58, 0.41, 0.47, 0.54, 0.38, 0.48, 0.32, 0.29, 0.58, 0.57, 0.48, 0.41, 0.51, 0.68, 0.59, 0.39, 0.35, 0.46, 0.22, 0.64, 0.26, 0.4, 0.51, 0.69, 0.46, 0.86, 0.33, 0.75, 0.32, 0.72, 0.36, 0.51, 0.46, 0.41, 0.72, 0.48, 0.91, 0.48, 0.67, 0.51, 0.58, 0.67, 0.52, 0.44, 0.4, 0.38, 0.42, 0.48, 0.62, 0.4, 0.46, 0.69, 0.64, 0.36, 0.5, 0.45, 0.42, 0.76, 0.56, 0.45, 0.38, 0.54, 0.76, 0.44, 0.53, 0.54, 0.5, 0.59, 0.85, 0.52, 0.61, 0.41, 0.53, 0.46, 0.54, 0.56, 0.53, 0.56, 0.96, 0.39, 0.83, 0.41, 0.85, 0.5, 0.34, 0.64, 0.6, 0.47, 0.74, 0.44, 0.46, 0.52, 0.59, 0.67, 0.62, 0.78, 0.36, 0.6, 0.35, 0.39, 0.68, 0.54, 0.43, 0.54, 0.53, 0.41, 0.41, 0.41, 0.43, 0.48, 0.58, 0.5, 0.96, 0.69, 0.5, 0.49, 0.33, 0.41, 0.33, 0.79, 0.59, 0.51, 0.39, 0.57, 0.38, 0.56, 0.54, 0.43, 0.69, 0.57, 0.48, 0.8, 0.43, 0.47, 0.5, 0.39, 0.64, 0.52, 0.51, 0.48, 0.63, 0.51, 0.46, 0.53, 0.38, 0.46, 0.55, 0.47, 0.5, 0.49, 0.71, 0.58, 0.89, 0.63, 0.81, 0.94, 0.41, 0.41, 0.46, 0.38, 0.54, 0.48, 0.46, 0.39, 0.6, 0.43, 0.48, 0.38, 0.63, 0.54, 0.39, 0.46, 0.6, 0.72, 0.49, 0.53, 0.78, 0.55, 0.44, 0.54, 0.41, 0.6, 0.56, 0.58, 0.48, 0.69, 0.57, 0.43, 0.4, 0.46, 0.48, 0.43, 0.54, 0.59, 0.39, 0.5, 0.49, 0.44, 0.42, 0.69, 0.49, 0.76, 0.83, 0.65, 0.4, 0.34, 0.45, 0.44, 0.57, 0.37, 0.42, 0.5, 0.76, 0.62, 0.41, 0.43, 0.57, 0.83, 0.48, 0.54, 0.49, 0.47, 0.57, 0.49, 0.46, 0.45, 0.85, 0.63, 0.46, 0.37, 0.37, 0.52, 0.58, 0.49, 0.73, 0.62, 0.46, 0.66, 0.35, 0.58, 0.59, 0.62, 0.43, 0.59, 0.4, 0.7, 0.42, 0.68, 0.58, 0.66, 0.58, 0.61, 0.42, 0.42, 0.85, 0.37, 0.64, 0.47, 0.56, 0.59, 0.42, 0.67, 0.79, 0.42, 0.67, 0.58, 0.42, 0.63, 0.46, 0.56, 0.64, 0.66, 0.79, 0.5, 0.67, 0.36, 0.69, 0.58, 0.49, 0.37, 0.44, 0.82, 0.61, 0.54, 0.52, 0.54, 0.78, 0.64, 0.53, 0.51, 0.33, 0.64, 0.72, 0.68, 0.41, 0.54, 0.55, 0.38, 0.46, 0.4, 0.66, 0.45, 0.51, 0.5, 0.5, 0.72, 0.37, 0.97, 0.38, 0.63, 0.43, 1.36, 0.84, 0.58, 0.49, 0.54, 0.38, 0.86, 0.52, 0.42, 0.53, 0.53, 0.34, 0.62, 0.34, 0.5, 0.6, 0.44, 0.62, 0.69, 0.46, 0.62, 0.55, 0.4, 0.54, 0.77, 0.77, 0.6, 0.45, 0.47, 0.45, 0.45, 0.41, 0.54, 0.66, 0.49, 0.42, 0.31, 0.54, 0.57, 0.58, 0.65, 0.67, 0.37, 0.53, 0.38, 0.53, 0.67, 0.37, 0.61, 0.49, 0.69, 0.44, 0.33, 0.48, 0.46, 0.59, 0.51, 0.4, 0.55, 0.49, 0.39, 0.39, 0.4, 0.4, 0.32, 0.42, 0.46, 0.47, 0.38, 0.63, 0.58, 0.44, 0.44, 0.34, 0.68, 0.66, 0.79, 1.02, 0.35, 0.41, 0.61, 0.36, 0.59, 0.46, 0.59, 0.56, 0.9, 0.42, 0.38, 0.42, 0.4, 0.51, 0.57, 0.6, 0.35, 0.61, 0.5, 0.38, 0.66, 0.59, 0.91, 0.5, 0.35, 0.68, 0.42, 0.48, 0.5, 0.9, 0.54, 0.6, 0.44, 0.47, 0.67, 0.25, 0.68, 0.54, 0.52, 0.46, 0.57, 0.61, 0.46, 0.64, 0.45, 0.38, 0.46, 0.54, 0.39, 0.56, 0.71, 0.58, 0.38, 0.72, 0.52, 0.49, 0.38, 0.5, 0.53, 0.6, 0.54, 0.31, 0.46, 0.44, 0.37, 0.52, 0.43, 0.45, 0.36, 0.44, 0.46, 0.47, 0.59, 0.46, 0.5, 0.39, 0.62, 0.54, 0.59, 0.57, 0.45, 0.43, 0.34, 0.51, 0.58, 0.36, 0.73, 0.72, 0.42, 0.38, 0.77, 0.6, 0.44, 0.54, 0.42, 0.67, 0.53, 0.96, 0.54, 0.64, 0.55, 0.39, 0.6, 0.48, 0.44, 0.43, 0.65, 0.36, 0.51, 0.59, 0.67, 0.43, 0.64, 0.84, 0.49, 0.62, 0.4, 0.56, 0.61, 0.54, 0.54, 0.49, 0.51, 0.53, 0.73, 0.33, 0.37, 0.59, 0.4, 0.55, 0.47, 0.53, 1.06, 0.49, 0.65, 0.4, 0.43, 0.47, 0.59, 0.45, 0.43, 0.6, 0.42, 0.93, 0.38, 0.53, 0.53, 0.52, 0.61, 0.62, 1.95, 0.35, 0.48, 0.39, 0.57, 0.68, 0.49, 0.92, 0.49, 0.58, 0.47, 0.9, 0.5, 0.53, 0.92, 0.5, 0.74, 0.41, 0.49, 0.41, 0.34, 0.69, 0.55, 0.77, 0.38, 0.72, 0.59, 0.4, 0.73, 1.36, 0.77, 0.58, 0.66, 0.6, 0.58, 0.5, 0.79, 0.36, 0.5, 0.62, 0.44, 0.56, 0.5, 0.56, 0.46, 0.53, 0.78, 0.5, 0.65, 0.58, 0.53, 0.98, 0.44, 0.46, 0.95], \"xaxis\": \"x\", \"y\": [0.18439386755371057, 0.5750868907731637, 0.1132172353536568, 0.19850047615697952, 0.6950004168934912, 0.41826441672946313, 0.040828937665112974, 0.2145583871630251, 0.09143093017991866, 0.10013996234885614, 0.3658834999306372, 0.587897812361327, 0.23563705889496211, 0.5289998061994394, 0.5981734696485812, 0.5956194363709464, 0.11295199838815062, 0.6349332021584286, 0.09356782907078887, 0.0672754654033908, 0.3541579814831264, 0.11781588709523827, 0.3295981493457443, 0.23443288181779365, 0.13830133810679424, 0.5122546205578999, 0.03626449638205209, 0.32057959349203036, 0.3955164844050859, 0.21320459763992916, 0.08620177311633537, 0.4132497936565127, 0.19514157099220286, 0.028148892894647393, 0.03728071159582558, 0.20213762816504022, 0.39088790332760825, 0.10566618212719892, 0.11466232649727714, 0.09544364959788487, 0.07351553674018241, 0.3657542344632553, 0.05859665738698361, 0.43634835962676355, 0.4827032077898804, 0.516310366273556, 0.6480037931050455, 0.21122004543372697, 0.030344760075157406, 0.22750344576024595, 0.18673438423788624, 0.5460909738859347, 0.0666291073587214, 0.320234954276134, 0.515425573770442, 0.5751179393061847, 0.3262180383913996, 0.12192585741802231, 0.6165939755266235, 0.09365914315081003, 0.44259853952477324, 0.31958523161407537, 0.09228899111547839, 0.22815273642701062, 0.5282447951108347, 0.7777719169155834, 0.13834506443323813, 0.29425092810710396, 0.5300870647699181, 0.031947521718024174, 0.1108646816717751, 0.053339747820140615, 0.14466174791529418, 0.25697560969337485, 0.3383868137798065, 0.30803904997837983, 0.03434255320493995, 0.08689109251212201, 0.46044782253877736, 0.0973761441498977, 0.3449058470623745, 0.024212367984770777, 0.11665042079727428, 0.3333970234137619, 0.1495417879159372, 0.0679784404121434, 0.2360052425084116, 0.39147703437781534, 0.04428683932015287, 0.5381556738404795, 0.4357341587922019, 0.11843845992675284, 0.28107964630818494, 0.06989794698232743, 0.2658605825653322, 0.22408104406272966, 0.15519213452661884, 0.09873339188795927, 0.10739713799337769, 0.4712507279726723, 0.31257930793611366, 0.6259141532505736, 0.1651629894813923, 0.13024327386797574, 0.08242409751896962, 0.55355901104019, 0.11256152515999429, 0.22124325125588817, 0.05838775174278421, 0.6734770756819889, 0.06919042490492266, 0.5773286546676725, 0.5693181878572973, 0.12726917141891614, 0.27983888222674136, 0.15690954109554833, 0.18593824584442387, 0.05432525584274117, 0.33273366741371935, 0.12435295831370408, 0.48112847828662497, 0.2959384652215836, 0.5042039768350125, 0.3749869638443927, 0.7258627386781167, 0.4806866421912115, 0.6234335830956541, 0.4191951896523489, 0.20821728825178332, 0.6343085651912675, 0.27674577061671146, 0.02140654255666985, 0.42849246998341506, 0.1817444030106703, 0.4551538855951942, 0.05087080041524106, 0.516641204200833, 0.6810720245435042, 0.08151744899857294, 0.4475169494323581, 0.03995706953508171, 0.2181819033834006, 0.20372897255157485, 0.24305701296248816, 0.5381556738404795, 0.2358485729609252, 0.051323642447754336, 0.1913631294907303, 0.32154631204965056, 0.31229802093755377, 0.3917329141436472, 0.39462053822053156, 0.3680669306910641, 0.5017894292511481, 0.32120711190509066, 0.0768019282386515, 0.1168769044932052, 0.31545143431826594, 0.12007957373947853, 0.08354361700756141, 0.2180731800932174, 0.7653011157176768, 0.05076221583963347, 0.11739077279846111, 0.3639458403519926, 0.4815918747301601, 0.35998732468747585, 0.457353694020342, 0.5520498791697908, 0.22168281241722143, 0.2132287846887433, 0.4763394582576197, 0.3040153802820409, 0.20749766415549342, 0.3316810644107503, 0.8126297477835096, 0.5749367295182395, 0.27274039590582944, 0.2685808245693546, 0.5172108675362206, 0.33506587713796443, 0.09616672688355288, 0.041108213935392324, 0.10548050716105373, 0.5016695616404938, 0.20022874051447226, 0.14220640128276774, 0.23772630779738468, 0.19606080251004787, 0.2603188495268066, 0.18846597668723208, 0.19827111133563302, 0.261548791893628, 0.4140325207077993, 0.8134796325151183, 0.12265695643958285, 0.6311167068993262, 0.13481820177301163, 0.0932384579037443, 0.14050160114126486, 0.2562249115981724, 0.08547750670655718, 0.08643201081848362, 0.19981675431015722, 0.31390222338706264, 0.06221739913672386, 0.06996303880871468, 0.30029370289300306, 0.4306817897420764, 0.6595343859760441, 0.2839408857911616, 0.20468539219890003, 0.1130196126722065, 0.2360017176902124, 0.13187147729288817, 0.42313120297864704, 0.06964897436687001, 0.1624399718171824, 0.17200815643270417, 0.07333105637055992, 0.2440137653363641, 0.4900110333069776, 0.3085554157386313, 0.03480496731142946, 0.12148031785507996, 0.15002971926037112, 0.5314247042003052, 0.2758453007685677, 0.2151852748992088, 0.2658605825653322, 0.29911225563077193, 0.6594110243744711, 0.49869782335001445, 0.16788254706683048, 0.11816213334465087, 0.08230909248122409, 0.13653212507346946, 0.25639170942272826, 0.06562233405876228, 0.23311900627036541, 0.3756616197417655, 0.46674395287949066, 0.3092684534350997, 0.8337319641197457, 0.8331457111467163, 0.2591056156836542, 0.4778687671024334, 0.2542440524586721, 0.5361036306539362, 0.07073721340803463, 0.4731688813159418, 0.5755848065786346, 0.356689463387698, 0.14225616860197343, 0.21837916002376445, 0.14466174791529418, 0.29899643271856946, 0.4757427727983842, 0.08126799884203029, 0.1296501822378736, 0.3286954654423938, 0.08620177311633537, 0.13855855420831553, 0.05543377339452393, 0.11917834098009661, 0.2613621884509647, 0.11269900223777074, 0.08429051026621415, 0.3393961441870107, 0.07031960314855146, 0.11356777592095357, 0.4853279864284006, 0.1279289285514792, 0.0584572339054259, 0.08612988585012649, 0.3472440907423937, 0.1248029959061332, 0.07502335399434323, 0.19827111133563302, 0.3424151534036639, 0.3065175956815872, 0.13808860398564737, 0.058092197534895806, 0.04082786106581715, 0.1602592849246841, 0.09156161599234125, 0.5036030690663805, 0.2640411824475748, 0.6468038092930676, 0.07201805208597656, 0.22470230804277058, 0.1334773721572423, 0.04847889440667685, 0.2685808245693546, 0.10911308148570098, 0.6764508967260475, 0.6280060594576413, 0.36761958218269275, 0.16019930342079847, 0.17605308658107655, 0.14078981831089854, 0.2384997092801764, 0.13117402490907393, 0.12818959986091483, 0.4161925244315118, 0.12435295831370408, 0.09814942480303201, 0.05480698563416486, 0.3746187330143109, 0.41092354232892336, 0.507894749900129, 0.5137929421583434, 0.08293523366016065, 0.2964416548030494, 0.15236141109070434, 0.4396941021426354, 0.41893931094950754, 0.09113953260801844, 0.10967473999240707, 0.055732078845942, 0.05640314085190745, 0.06176263301115803, 0.06427139521062619, 0.20386133178572885, 0.21597661143113533, 0.7486409492386699, 0.2610715902497083, 0.09465277491899493, 0.5556171757583562, 0.137718889647652, 0.1978940751503777, 0.08472590699531857, 0.356262641598029, 0.14596950445002987, 0.13865818299932142, 0.3088915816821678, 0.11516321289421916, 0.16121169033174265, 0.40573483691789825, 0.34308606282264, 0.36300204724896845, 0.17193414756867276, 0.035926383178341514, 0.34536882843285344, 0.4400180463892147, 0.5165194668234709, 0.23319834124303085, 0.9637923675569924, 0.2635599134550337, 0.6259141532505736, 0.12324962258280003, 0.1256037712827487, 0.1248029959061332, 0.11665042079727428, 0.29081136443782263, 0.12993062945549005, 0.20959981847797426, 0.12385816607190492, 0.16931651488884025, 0.2468284110987674, 0.6181879252747016, 0.3509541008179864, 0.08619429866610873, 0.09537770951135394, 0.8204393830764495, 0.2493836920976743, 0.10367142046182065, 0.11516383353466464, 0.07169627826225977, 0.5400384130096556, 0.2709141565803237, 0.16809050322974173, 0.3421981324687273, 0.812724325423183, 0.1326589750154965, 0.054670132935181304, 0.055346153509382656, 0.8039442695404772, 0.3276168958360183, 0.6561718697940482, 0.6214102617950452, 0.3046829516703813, 0.7853649284745584, 0.7303620793003476, 0.6719087507962026, 0.16000678121984613, 0.579612101366232, 0.6347749924714103, 0.41894393066564606, 0.06936532322770372, 0.28322834609079706, 0.343263893078516, 0.4450860003239352, 0.3090838478611311, 0.408095736797927, 0.11529682880263803, 0.13359771811640497, 0.2417229185475579, 0.10092265889692065, 0.8181934133883563, 0.3777834313813965, 0.8273808576462511, 0.18439353202429143, 0.5148786056082297, 0.11287077888712382, 0.16015059460472458, 0.29672938182784603, 0.36944561074938853, 0.2505850522824452, 0.8467591712977676, 0.3840267097226593, 0.261779448872241, 0.1645479955558209, 0.14631295673285594, 0.4248523287309329, 0.09222807982804315, 0.2121484308544801, 0.33273366741371935, 0.5470626312455473, 0.8294144697045585, 0.25206662215500397, 0.15998368749433245, 0.548322128117227, 0.3917329141436472, 0.15981565308588508, 0.23631147082452741, 0.21082920466209698, 0.1871387197916503, 0.24774693401855818, 0.1913242313933492, 0.16437448769677154, 0.07582203648947516, 0.032541140295091364, 0.06311143057978008, 0.5009235508757715, 0.12343879567504301, 0.445735807756371, 0.40322837553658053, 0.09397553936597514, 0.1598391281143201, 0.26702494168661406, 0.19782301216908982, 0.06831823449824892, 0.5451167746582685, 0.20142160156100697, 0.25747632252511843, 0.4257317671215596, 0.5062318064185062, 0.10278357133077332, 0.10857266292312517, 0.06223864817381186, 0.11377411494697365, 0.14082424186384768, 0.2589321903149734, 0.31776639873426016, 0.07983414941561229, 0.30174211068680845, 0.42532907678292176, 0.23734670470511587, 0.2862296469110084, 0.24790288035387664, 0.5526146374040077, 0.20425399436950087, 0.5166825128498294, 0.12415322942140417, 0.5310696157212036, 0.3866387435262121, 0.14313186082947948, 0.31648660326859934, 0.026792916001305622, 0.7856428374245099, 0.42383310375799566, 0.5944566396871084, 0.6256605001243821, 0.08813642250468567, 0.03544811528140901, 0.06935406654889886, 0.15751976448865512, 0.22608551288474832, 0.3127311228465576, 0.1409438166611655, 0.3285615524533705, 0.3591330499592894, 0.47964497307801546, 0.7143146030302826, 0.14223944449319303, 0.06929054967731618, 0.32120711190509066, 0.16913647442041335, 0.707286257884667, 0.3230684446475647, 0.7616845263358343, 0.4104900542879092, 0.10053249234255524, 0.1106599594415556, 0.1543174595222413, 0.46003879185641183, 0.3811350878514418, 0.07185070571861518, 0.23882593985771994, 0.5344976262521839, 0.11031385635331636, 0.09610989844306939, 0.4955559099445003, 0.07845190603324759, 0.30697262074812925, 0.12767551958037127, 0.4375661224395835, 0.07737023387634634, 0.15307682457740834, 0.05694427046787409, 0.09028836937410878, 0.4011292297732457, 0.6186146927451245, 0.11561676905211238, 0.0993047499370594, 0.08102401279833105, 0.8100206966555492, 0.10768932514586738, 0.15386113005635593, 0.4026560765644126, 0.045535707525545144, 0.08229583319403, 0.08227601457953415, 0.8241544781987433, 0.0759900855540333, 0.5147505197509459, 0.11103147778198663, 0.42144961755966015, 0.24880465403270857, 0.3112403223054312, 0.3282460941643247, 0.28312386083977936, 0.2865521931047814, 0.16537364909659502, 0.4284132019637321, 0.34116073112729894, 0.051142721309942685, 0.10794707492381372, 0.1108646816717751, 0.29201805921023904, 0.07365131996157204, 0.36851051207096197, 0.2556143611338999, 0.07392456180697715, 0.045535707525545144, 0.15025986810093994, 0.4395989822566938, 0.19636656988846957, 0.21018464628148859, 0.15085686628779282, 0.3429118439192298, 0.16104008564300487, 0.2055862423584408, 0.18673310211333727, 0.5528531989583015, 0.20219789553586287, 0.5807830339134155, 0.6112381610839525, 0.07515362639458067, 0.5722084734915175, 0.3654892991508686, 0.1991057466826236, 0.4912569401667811, 0.05850610073101081, 0.3077884117234785, 0.17038242498240874, 0.14066607718466684, 0.10248584652416493, 0.4022873718442217, 0.07205214632436985, 0.35142291824287475, 0.10941760034103376, 0.06679271580157364, 0.05675388891699207, 0.058987921856350156, 0.3660303223369904, 0.28790374422385034, 0.4158290962648631, 0.40710291595796666, 0.09934102670994882, 0.06362846635195196, 0.30921476208988685, 0.23242198019285765, 0.055541210656895434, 0.5297663836663529, 0.10744632778983743, 0.18410212910939194, 0.17721960751489196, 0.1962664672709783, 0.1617648996714035, 0.10584426414108294, 0.5203501665477333, 0.07365131996157204, 0.31578819840495265, 0.35364190165315845, 0.1707951928721818, 0.41655733121321636, 0.15801546378512366, 0.7568436608419439, 0.22368578646300386, 0.0609449253562836, 0.2225096762928218, 0.18587673368692093, 0.05559101133196209, 0.569598540521716, 0.08073228430722412, 0.15724041301590164, 0.12879141548479, 0.4306817897420764, 0.17998791969802397, 0.41280880088413996, 0.5723062335690389, 0.6457404130724687, 0.10420061808672998, 0.12564769853034463, 0.21795029564941848, 0.4720930498870375, 0.11304202998506685, 0.545112257205237, 0.14852188644910969, 0.17217029085021085, 0.336250902618187, 0.48671482860553816, 0.5093433434984792, 0.35847801144896685, 0.3008706318705062, 0.18494609259573758, 0.4199330463236065, 0.04162287990776414, 0.2633909944023186, 0.4252182303976608, 0.4684623303117058, 0.1925553058603695, 0.09610989844306939, 0.09129843496680234, 0.3302708189676917, 0.4199330463236065, 0.11927294568859859, 0.4864154015695107, 0.06472081497616611, 0.6387929002666255, 0.37932906694235924, 0.093713747684541, 0.20627971812824875], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (curr)\", \"type\": \"scatter\", \"x\": [0.78, 0.48, 0.33, 0.45, 0.47, 0.5, 0.51, 0.54, 0.67, 0.57, 0.49, 0.5, 0.52, 0.37, 0.57, 0.48, 0.38, 0.61, 0.81, 0.28, 0.72, 0.46, 0.49, 0.51, 0.66, 0.38, 0.52, 0.49, 0.4, 0.53, 0.44, 0.54, 0.46, 0.45, 0.51, 0.44, 0.48, 0.58, 0.41, 0.55, 0.38, 0.43, 0.81, 0.45, 0.41, 0.57, 0.61, 0.53, 0.5, 0.52, 0.7, 0.39, 0.34, 0.58, 0.49, 0.67, 0.65, 0.74, 0.35, 0.54, 0.74, 0.64, 0.47, 0.91, 0.47, 0.64, 1.34, 0.56, 0.56, 0.48, 0.69, 0.4, 0.46, 0.47, 0.37, 0.53, 0.52, 0.43, 0.46, 0.61, 0.39, 0.49, 0.42, 0.55, 0.37, 0.48, 0.44, 0.75, 0.42, 0.8, 0.34, 0.38, 0.7, 0.63, 0.73, 0.4, 0.34, 0.93, 0.46, 0.5, 0.43, 0.43, 0.48, 0.52, 0.46, 0.54, 0.7, 0.45, 0.41, 0.64, 0.46, 0.44, 0.75, 0.54, 0.46, 0.48, 0.67, 0.49, 0.48, 0.52, 0.37, 0.46, 0.6, 0.48, 0.54, 0.77, 0.48, 0.55, 0.54, 0.65, 0.4, 0.56, 0.63, 0.33, 0.48, 0.5, 0.7, 0.55, 0.4, 0.51, 0.42, 0.37, 0.31, 0.52, 0.63, 0.49, 0.52, 0.56, 0.54, 0.42, 0.34, 0.59, 0.72, 0.38, 0.52, 0.35, 0.4, 0.51, 0.46, 0.56, 0.57, 0.56, 0.68, 0.48, 0.5, 0.5, 0.38, 0.49, 0.38, 0.46, 0.6, 0.49, 0.38, 0.42, 0.58, 0.35, 0.31, 0.53, 0.45, 0.37, 0.39, 0.44, 0.61, 0.38, 0.52, 0.42, 0.4, 0.53, 0.59, 0.52, 0.57, 0.58, 0.5, 0.65, 0.49, 0.47, 0.46, 0.48, 0.78, 0.44, 0.52, 0.46, 0.45, 0.69, 0.3, 0.76, 0.46, 0.78, 0.33, 0.45, 0.61, 0.52, 0.64, 0.35, 0.47, 0.37, 0.57, 0.4, 0.5, 0.39, 0.46, 0.43, 0.47, 0.46, 0.45, 0.45, 0.64, 0.59, 0.39, 0.4, 0.51, 0.7, 0.37, 0.32, 0.82, 0.47, 0.45, 0.59, 0.63, 0.55, 0.72, 0.8, 0.52, 0.41, 0.5, 0.72, 0.88, 0.45, 0.52, 0.42, 0.64, 0.45, 0.42, 0.44, 0.44, 0.41, 0.41, 0.6, 0.58, 0.71, 0.65, 0.53, 0.68, 0.68, 0.49, 0.45, 0.56, 0.73, 0.44, 0.48, 0.5, 0.72, 0.41, 0.45, 0.53, 0.55, 0.68, 0.6, 0.54, 0.88, 0.53, 0.48, 0.38, 0.43, 0.88, 0.44, 0.39, 0.46, 0.28, 0.58, 0.5, 0.58, 0.52, 0.54, 0.58, 0.65, 0.42, 0.37, 0.51, 0.58, 0.46, 0.61, 0.7, 0.63, 0.5, 0.29, 0.53, 0.35, 0.58, 0.49, 0.58, 0.63, 0.62, 0.39, 0.56, 0.44, 0.46, 0.48, 0.64, 0.38, 0.61, 0.58, 0.5, 0.76, 0.52, 0.4, 0.51, 0.63, 0.48, 0.46, 0.56, 0.45, 0.5, 0.53, 0.55, 0.51, 0.51, 0.39, 0.37, 0.45, 0.45, 0.58, 0.6, 0.48, 0.63, 0.73, 0.49, 0.78, 0.37, 0.76, 0.56, 0.49], \"xaxis\": \"x2\", \"y\": [0.18579927887031134, 0.9274202256360236, 0.2569067617886446, 0.17851375722123963, 0.43011516789686843, 0.3951880410340851, 0.35333307802371594, 0.854899199395705, 0.7749695319329993, 0.7150752736216004, 0.5793836726576811, 0.17187478758168062, 0.503776006633781, 0.6517104478925241, 0.5321166645488455, 0.4291031613352281, 0.6295132227815239, 0.446367751604861, 0.12978626497489776, 0.578130474122496, 0.1303225049324246, 0.4589423036505589, 0.6028673022099313, 0.6724998803801079, 0.055171077290688375, 0.28900585249094113, 0.5807441942986169, 0.6324527530146118, 0.32780881811994433, 0.4437792729685527, 0.47375733914823626, 0.6755390392614542, 0.8494338455743565, 0.8432302027568838, 0.3962269303969661, 0.36574887203466033, 0.9780529644634413, 0.6757083557066426, 0.43212531492562845, 0.6428319532862445, 0.2244465690609686, 0.6759712108962084, 0.300575337785698, 0.4848467547623382, 0.24353241802821812, 0.6165640897352094, 0.801889943514816, 0.6831580296641933, 0.4684052737322374, 0.07309555507266852, 0.17397747102053363, 0.548208100621717, 0.16948307959681597, 0.5287139706981401, 0.8097217619362252, 0.48186532860504816, 0.7044722268129955, 0.5458559966555334, 0.6067015953642416, 0.5767206748937392, 0.5416109283549078, 0.7766135747357961, 0.6371580804073698, 0.3290646799011723, 0.53941953634433, 0.7444876216695655, 0.27658524567301757, 0.8518717737266248, 0.685064206005921, 0.7994946846943811, 0.6254668451144636, 0.29898447003196504, 0.36566585814722175, 0.8260679099411251, 0.265003746926769, 0.18277705216857454, 0.6401445853260315, 0.2878944788643705, 0.7379395090268356, 0.6578861964269485, 0.3048731186933995, 0.6479177870210828, 0.5479007895539181, 0.8109237991420157, 0.4555798348891207, 0.35159410271621183, 0.6741813074403022, 0.40366163192193316, 0.3797333752177462, 0.42326140605337403, 0.49450075158901585, 0.7027754368270075, 0.31556666432085356, 0.5737052492708005, 0.5594846166878963, 0.9879213229528466, 0.23907110553933086, 0.7604887601700165, 0.906894853259191, 0.49150798334893764, 0.6693239074263375, 0.635181004157038, 0.4291031613352281, 0.6805197940362542, 0.8579270215873258, 0.42231028799440284, 0.7973836574204367, 0.6209099995125147, 0.617932351579841, 0.5867531689564582, 0.8217385626893267, 0.5766058512754557, 0.6085190813519714, 0.6488649586424557, 0.19466062481522506, 0.4062994677131635, 0.31500574198466447, 0.6106996692323751, 0.48314991346809855, 0.4300926711133176, 0.4623912750166579, 0.18141675383529432, 0.7404949196358439, 0.7960551628311661, 0.6696955469146251, 0.7471897031921468, 0.15222801432328747, 0.4782875749995391, 0.6696955469146251, 0.4617114467660769, 0.0374236133971757, 0.34638250956587036, 0.5737052492708005, 0.35412183815676124, 0.5342599897609015, 0.6273126624389191, 0.1819914526651868, 0.6450640502472667, 0.7576359910572065, 0.6363669366758954, 0.35783776888428775, 0.4555798348891207, 0.2603691587203709, 0.09638465351539516, 0.7889843001267657, 0.3995975535535492, 0.2404138117262561, 0.5134503976671381, 0.7620160241108803, 0.4852174766770502, 0.7934067722809752, 0.5657371707019572, 0.40591517497640706, 0.5142806824729376, 0.4667389755277017, 0.4597803030361328, 0.14211531046105408, 0.4709774325404933, 0.39253304933110444, 0.8152160844894966, 0.6418608562675732, 0.5695619245525361, 0.15898796250578873, 0.4189913516486339, 0.8097376625536354, 0.2776505479619531, 0.14100712613869515, 0.1625374057836978, 0.21879614767173305, 0.26016804821119, 0.5884346274074399, 0.25171266030158634, 0.5556828679884147, 0.2886326125606653, 0.5013044750460076, 0.23728971353361283, 0.6280660923097139, 0.6281218947904323, 0.6226708394296439, 0.1280348372312241, 0.37812375401711507, 0.6218606462016874, 0.446367751604861, 0.5237591509200082, 0.22560064672115399, 0.4159575064805634, 0.43989745285902637, 0.38133093816728936, 0.379388299643832, 0.4244201113870294, 0.8495234946343055, 0.44699506619782237, 0.3402560380560977, 0.16997778820688525, 0.6509841470756508, 0.5589353890471914, 0.49320900326902484, 0.41485179365651337, 0.2850172536812061, 0.5150740024049856, 0.7905789411902706, 0.6660097546858721, 0.5916856454756931, 0.25029771644034415, 0.21820707607863943, 0.23625780462752244, 0.6174344585079109, 0.33885175059010386, 0.8097775874289167, 0.5502791542248897, 0.45232673966787307, 0.5168725346003686, 0.4922951659433321, 0.2710495410551712, 0.5620189509382074, 0.19827785442852286, 0.35653263682836045, 0.4940220265254579, 0.3934632807735441, 0.349631294967786, 0.6543252873397565, 0.6043841099981286, 0.6572212454398962, 0.5323595728841377, 0.4667716613599331, 0.5480891857555714, 0.5933716837007499, 0.5769442381274095, 0.7796710482718338, 0.4721284230669528, 0.5632051337005155, 0.25606657060722404, 0.47304849589761655, 0.4991199345133047, 0.785831825438318, 0.5512091114854263, 0.31651464458218903, 0.192246895102814, 0.5737052492708005, 0.14970485751781393, 0.8257882443178004, 0.7450862811651306, 0.2404138117262561, 0.3428275867057816, 0.2186811050870735, 0.43730933466596944, 0.1325711740116582, 0.33994853494016564, 0.5172250338280965, 0.4543852880840521, 0.6017244994332274, 0.7267617626256621, 0.304103470637073, 0.49511795227452726, 0.4577650902534979, 0.4389063253281036, 0.3428275867057816, 0.6911248892501751, 0.5457123873353599, 0.3395528272139201, 0.5662837862370104, 0.38281068028313525, 0.1899488449656659, 0.1899488449656659, 0.39416742153886597, 0.4473524415330049, 0.5724944828663213, 0.12652799787397961, 0.14917046216496987, 0.4192276293132746, 0.1727250451072272, 0.7329347521090118, 0.2979855805324535, 0.5384433083808008, 0.2944152049751758, 0.5661013076544325, 0.39283078357423706, 0.6503174362647687, 0.7632350838020857, 0.29422440231251745, 0.8446099855685041, 0.3812461384129847, 0.1264117171095669, 0.6995051325026098, 0.7680829457938805, 0.1086082602083136, 0.50228427853815, 0.8303888649041977, 0.15145052047802054, 0.5239967242043768, 0.49461569007297057, 0.7323984730128237, 0.6372335578763709, 0.8485373319296128, 0.21018203617182263, 0.3854703692354019, 0.6209619763202376, 0.6996467359659702, 0.3913887983225227, 0.600932061108284, 0.18141675383529432, 0.32841971343371723, 0.17397747102053363, 0.3943097935149382, 0.5998672378660981, 0.6052803835931642, 0.35501406908939237, 0.4362847089434372, 0.6005057903956104, 0.45095984485898877, 0.5601124581139871, 0.6908342266509375, 0.29066967723125237, 0.5437491575180791, 0.5955595524057149, 0.4226516353037165, 0.552222307965348, 0.5038457784615318, 0.6752568781943777, 0.7880730680059006, 0.09430965090665133, 0.4986183600001317, 0.24112389044610405, 0.3635071851353404, 0.7047195247497422, 0.5251048099479148, 0.5632051337005155, 0.4520037684813636, 0.5271857161160298, 0.36566585814722175, 0.8775119234978208, 0.49474741138534273, 0.17187478758168062, 0.1069918390347242, 0.6371627391106971, 0.19018032574493748, 0.34352259564225396, 0.806114950115292, 0.47304849589761655, 0.5014153035286022, 0.6721952796384192, 0.7507248720260316, 0.38512814216859315, 0.8930847268109882, 0.863224561659591, 0.15108072818859253, 0.7399796913917198, 0.18579927887031134, 0.47304849589761655, 0.2033384066370545, 0.43667652058029827, 0.23252054766636898], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [0.38, 0.44, 0.87, 0.39, 0.58, 0.33, 0.7, 0.38, 0.61, 0.59, 0.56, 0.52, 0.37, 0.53, 0.36, 0.41, 0.58, 0.44, 0.87, 0.33, 0.46, 0.5, 0.38, 0.58, 0.6, 0.33, 0.3, 0.54, 0.6, 0.49, 0.35, 0.49, 0.82, 0.41, 0.34, 0.31, 0.76, 0.49, 0.53, 0.53, 0.32, 0.5, 0.38, 0.41, 0.8, 0.74, 0.38, 0.57, 0.49, 0.72, 0.61, 0.67, 0.36, 0.25, 0.49, 0.75, 0.68, 0.79, 0.44, 1.33, 0.68, 0.38, 0.47, 0.36, 0.36, 0.42, 0.58, 0.62, 0.5, 0.8, 0.53, 0.39, 0.29, 0.51, 0.37, 0.42, 0.44, 0.45, 0.47, 0.61, 0.46, 0.52, 0.85, 0.68, 0.49, 0.78, 0.73, 0.3, 0.27, 0.49, 0.35, 0.33, 0.5, 0.4, 0.48, 0.58, 0.65, 0.43, 0.72, 0.77, 0.34, 0.5, 0.84, 0.43, 0.53, 0.62, 0.54, 0.35, 0.59, 0.63, 0.5, 0.38, 0.37, 0.51, 0.5, 0.93, 0.76, 0.56, 0.65, 0.71, 0.64, 0.99, 0.56, 0.42, 0.75, 0.74, 0.74, 0.62, 0.75, 0.57, 0.36, 0.88, 0.44, 0.56, 0.44, 0.51, 0.67, 0.7, 0.57, 0.5, 0.62, 0.49, 0.61, 0.48, 0.41, 0.6, 0.58, 0.77, 0.39, 0.47, 0.38, 0.68, 0.44, 0.36, 0.68, 0.53, 0.82, 0.73, 0.45, 0.48, 0.4, 0.78, 0.26, 0.49, 0.82, 0.36, 0.45, 0.55, 0.86, 0.39, 0.57, 0.32, 0.39, 0.66, 0.45, 0.49, 0.43, 0.42, 0.47, 0.77, 0.44, 0.41, 0.95, 0.76, 0.43, 0.82, 0.87, 0.37, 0.45, 0.75, 0.39, 0.43, 0.59, 0.48, 0.46, 0.58, 0.57, 0.38, 0.58, 0.64, 0.59, 0.56, 0.57, 0.4, 0.56, 0.63, 0.53, 0.85, 0.51, 0.78, 0.41, 0.33, 0.6, 0.6, 0.56, 0.65, 0.47, 0.44, 0.5, 0.49, 0.4, 0.55, 0.6, 0.53, 0.66, 0.58, 0.68, 0.48, 0.77, 0.48, 0.72, 0.44, 0.66, 0.47, 0.66, 0.82, 0.4, 0.54, 0.31, 0.47, 0.53, 0.46, 0.39, 0.57, 0.64, 0.87, 0.41, 0.5, 0.47, 0.7, 0.76, 0.3, 0.75, 0.41, 0.55, 0.35, 0.45, 0.58, 0.48, 0.73, 0.62, 0.57, 0.47, 0.35, 0.39, 0.48, 0.51, 0.43, 0.48, 0.43, 0.37, 0.43, 0.58, 0.65, 0.4, 0.7, 0.57, 0.44, 0.56, 0.76, 1.06, 0.51, 0.51, 0.49, 0.64, 0.63, 0.36, 0.52, 0.57, 0.43, 1.11, 0.63, 0.42, 0.47, 0.49, 0.46, 0.45, 0.42, 0.33, 0.44, 0.33, 0.75, 0.59, 0.38, 0.48, 0.85, 0.56, 0.54, 0.75, 0.47, 0.38, 0.6, 0.63, 0.5, 0.52, 0.63, 0.51, 0.5, 0.51, 0.48, 0.64, 0.44, 0.59, 0.36, 0.64, 0.39, 0.4, 0.77, 0.48, 0.73, 0.81, 0.36, 0.86, 0.53, 0.43, 0.38, 0.75, 0.41, 0.43, 0.46, 0.39, 0.52, 0.58, 0.84, 0.54, 0.45, 0.42, 0.5, 0.9, 0.34, 0.35, 0.52, 0.47, 0.36, 0.4, 0.82, 0.6, 0.38, 0.82, 0.72, 0.32, 0.59, 0.75, 0.35, 0.75, 0.43, 0.46, 0.5, 0.57, 0.69, 0.46, 0.53, 0.54, 0.54, 0.56, 0.49, 0.48, 0.37, 0.65, 0.46, 0.5, 0.55, 0.55, 0.48, 0.43, 0.62, 0.46, 0.44, 0.65, 0.44, 0.58, 0.44, 0.49, 0.64, 0.42, 0.62, 0.47, 0.53, 0.59, 0.45, 0.41, 0.31, 0.64, 0.5, 0.41, 0.42, 0.46, 0.36, 0.39, 0.36, 0.7, 0.49, 0.68, 0.46, 0.5, 0.7, 0.36, 0.65, 0.6, 0.49, 0.56, 0.98, 0.77, 0.6, 0.7, 0.59, 0.6, 0.33, 0.61, 0.4, 0.34, 0.41, 0.53, 0.51, 0.71, 0.65, 0.74, 0.48, 0.7, 0.52, 0.49, 0.84, 0.32, 0.54, 0.33, 0.66, 0.75, 0.4, 0.78, 0.47, 0.37, 0.54, 0.72, 0.54, 0.43, 0.53, 0.56, 0.55, 0.43, 0.49, 0.59, 0.5, 0.42, 0.41, 0.38, 0.65, 0.27, 0.54, 0.4, 0.57, 0.45, 0.3, 0.67, 0.43, 0.41, 0.55, 0.43, 0.6, 0.35, 0.42, 0.65, 0.38, 0.77, 0.76, 0.52, 0.32, 0.32, 0.37, 0.43, 0.68, 0.57, 0.41, 0.77, 0.81, 0.36, 0.75, 0.49, 0.92, 0.52, 0.76, 0.64, 0.5, 0.49, 0.4, 0.5, 0.46, 0.44, 0.59, 0.57, 0.5, 0.82, 0.4, 0.4, 0.45, 0.32, 0.62, 0.64, 0.82, 0.43, 0.8, 0.3, 0.9, 0.38, 0.51, 0.95, 0.59, 0.72, 0.62, 0.36, 0.45, 0.6, 0.37, 0.48, 0.31, 0.81, 0.45, 0.74, 0.37, 0.6, 0.6, 0.55, 0.56, 0.87, 0.51, 0.33, 0.38, 0.72, 0.79, 0.46, 0.49, 0.66, 0.44, 0.52, 0.58, 0.55, 0.37, 0.53, 0.41, 0.42, 0.39, 0.35, 0.65, 0.44, 0.6, 0.51, 0.74, 0.37, 0.39, 0.38, 0.42, 0.69, 0.58, 0.59, 0.5, 0.39, 0.68, 0.48, 0.32, 0.42, 0.56, 0.43, 0.52, 0.34, 0.38, 0.53, 0.64, 0.6, 0.59, 0.38, 0.65, 0.63, 0.5, 0.54, 0.63, 0.58, 0.75, 0.73, 0.79, 0.46, 0.31, 0.52, 0.44, 0.45, 0.39, 0.68, 0.58, 0.75, 0.57, 0.51, 0.68, 0.36, 0.56, 0.43, 0.52, 0.56, 0.44, 0.37, 0.57, 0.6, 0.47, 0.46, 0.37, 0.45, 0.36, 0.55, 0.48, 0.39, 0.35, 0.63, 0.71, 0.59, 0.8, 0.37, 0.46, 0.47, 0.54, 0.33, 0.64, 0.52, 0.51, 0.52, 0.52, 0.66, 0.55, 0.53, 0.52, 0.59, 0.54], \"xaxis\": \"x2\", \"y\": [0.6660328535674787, 0.4955559099445003, 0.11251030999551548, 0.5313240922219649, 0.7616845263358343, 0.42881839881496897, 0.22146723198036844, 0.2709448900825402, 0.04188686298684474, 0.3198999677935893, 0.586632325439729, 0.3332859260788763, 0.0891770245136605, 0.07249138429342028, 0.0813041402249215, 0.2808128557304226, 0.18155424903412543, 0.14020593233116785, 0.20529540916933675, 0.1755850319354616, 0.5722846846512241, 0.4684623303117058, 0.2863708053899042, 0.4489302200945696, 0.3606737334686688, 0.09834172337505831, 0.1439119889738254, 0.10526388551166177, 0.08976738859769384, 0.15927641460572795, 0.07353544332944184, 0.4894096639868448, 0.24735122968283396, 0.41440459167745447, 0.10107859516115147, 0.4809249647595707, 0.043928674649753696, 0.27268427565697984, 0.07203278686513981, 0.35989685204578803, 0.08410225657903847, 0.09640449279894714, 0.2859044620344169, 0.766491644508495, 0.27194216744256416, 0.11891721880979944, 0.6033870782914414, 0.8445823904457724, 0.4148378249676725, 0.09538880480821377, 0.5822786697287807, 0.2006236885231063, 0.30215903380660414, 0.3526626332448971, 0.22921561702294402, 0.3499358724503807, 0.451050436906263, 0.01968005574460141, 0.3849224947932618, 0.608666907839271, 0.30333177217190177, 0.05732515971384944, 0.08299070223644744, 0.155374347961305, 0.4378217303747408, 0.10641916767178827, 0.3207785913922725, 0.3280003244598044, 0.4747408725557203, 0.27229542413121455, 0.5314247042003052, 0.13834506443323813, 0.652508483608137, 0.1775869136191267, 0.4659209431511335, 0.3288332341233703, 0.47224603889779837, 0.2773569186284155, 0.18590272545123854, 0.6719763059805124, 0.04569198037744582, 0.22473444069733528, 0.0776074933333939, 0.1411968215808168, 0.3654892991508686, 0.06069899520469324, 0.21029328672965164, 0.13919371635861133, 0.16321149678759816, 0.6144435769482088, 0.1388055550317996, 0.0827658987104557, 0.0793107693477757, 0.04994940743047871, 0.46220165202879504, 0.08265172102971341, 0.5554564865761329, 0.10902951494304747, 0.26480674198345266, 0.31816712550642645, 0.20184400370343658, 0.23734670470511587, 0.19264674509953905, 0.03558879485690103, 0.5314247042003052, 0.3013473679880785, 0.8043030592862955, 0.07665185966197174, 0.17816243980233548, 0.14637302723887635, 0.43623195291339645, 0.5773286546676725, 0.06996409198491005, 0.0635191394270278, 0.11839391684253864, 0.03368970372860669, 0.16544292122901683, 0.5002106013252752, 0.20783967621931676, 0.4413184352618238, 0.1377753535318076, 0.017128038770129694, 0.09070427960766203, 0.05237321155563324, 0.46044782253877736, 0.09863911308639095, 0.6058955548956951, 0.07377868677997379, 0.33726125667837825, 0.03705661785513226, 0.03856885477325478, 0.01970319875133708, 0.06623921298607705, 0.655672818127978, 0.36403826442427, 0.375635621083512, 0.25822104517587474, 0.26990817233175546, 0.30316845466795117, 0.21597661143113533, 0.10411587283779344, 0.4582573305440075, 0.28974208538397184, 0.3995654588450376, 0.48407929824265805, 0.2412117545349558, 0.49704114689177337, 0.3112403223054312, 0.13571503940671914, 0.35304273602320047, 0.18963603484652192, 0.06023564559469896, 0.305863422303413, 0.34062746964654456, 0.03532029949184434, 0.20200996882548472, 0.207876095289533, 0.11304202998506685, 0.26487496820305634, 0.46674395287949066, 0.05931266843465788, 0.6063731497207538, 0.053339747820140615, 0.16056749669580483, 0.3366557342021428, 0.18735912995827353, 0.2667542380283816, 0.9197592959547904, 0.13322255285490225, 0.3533185668595151, 0.08763312389948397, 0.343329095265401, 0.1298321532292276, 0.11240742021865013, 0.03412749239977686, 0.23316671381479437, 0.13955591125269062, 0.065615492475942, 0.03940539431326806, 0.04874684240881699, 0.42507109047861347, 0.3720756994829524, 0.20627971812824875, 0.23346983492740092, 0.299872058778726, 0.14688925552714138, 0.20529540916933675, 0.11294333341234963, 0.4523771212155355, 0.15895981664313275, 0.12633289347617382, 0.34801013400503944, 0.063056887931354, 0.09222807982804315, 0.19281104432210028, 0.11843845992675284, 0.1064686731970873, 0.12171087020281346, 0.49704114689177337, 0.4202798549667376, 0.058322454167927695, 0.40418598015134155, 0.7514842711311043, 0.067978575311199, 0.1468497162592186, 0.3655805321171328, 0.36741292271676196, 0.08785516413846428, 0.4223454464089015, 0.09472348251934337, 0.14196098925812006, 0.10013555988874479, 0.32154631204965056, 0.05416575683382341, 0.786126361492164, 0.04696516601190348, 0.26926088858349784, 0.28123172687107445, 0.3094364396730669, 0.04307250962973752, 0.07126159086244754, 0.6143015945908075, 0.495586079448059, 0.46102608015166635, 0.40789311683600216, 0.8929715185951024, 0.1227006502272181, 0.3638055988942468, 0.10470002869891348, 0.29304213908849364, 0.8936703981375603, 0.3534407380188983, 0.0883666731866185, 0.07895584641700149, 0.05166417783587085, 0.4199775765299997, 0.10304865631077798, 0.1041340676595982, 0.11031385635331636, 0.22368578646300386, 0.22137255536682798, 0.0725394352715707, 0.08320759746190642, 0.3577905591727162, 0.36362749207413336, 0.13058702032609693, 0.4306817897420764, 0.4684623303117058, 0.3185463047756948, 0.6991046594229053, 0.33105510290791684, 0.35804773811787727, 0.3499358724503807, 0.17780319308126435, 0.07142366539796174, 0.1504846162366139, 0.28643330026545544, 0.11492102279820171, 0.08716328114311156, 0.12905574960179156, 0.5528531989583015, 0.2852168598030531, 0.3185463047756948, 0.41766807389819915, 0.22818770291371737, 0.10749415552266317, 0.07500089027222667, 0.2150933620687273, 0.4879833184669665, 0.21367083697314282, 0.18281788227943807, 0.11217648511765432, 0.01860460444149037, 0.4990100838788346, 0.3212979959143686, 0.7252893191599291, 0.30018855716775616, 0.2808216200321265, 0.24332849241566534, 0.22583693263898685, 0.307128141019565, 0.12930297020615966, 0.07734813107736227, 0.38078614076753503, 0.037937415915298756, 0.18389331462546077, 0.2015421194948802, 0.10121634311933059, 0.7209948827487924, 0.252131738577411, 0.19866278493931944, 0.5569604587758099, 0.19172534874952063, 0.07516041810443141, 0.18673310211333727, 0.20736440356309183, 0.27568985010185776, 0.1748501221961516, 0.134246332983591, 0.12151400729184814, 0.03860330573341564, 0.16198960071610413, 0.062309112953929935, 0.14943540958877521, 0.46827469198568006, 0.12435295831370408, 0.11768791031746062, 0.10794707492381372, 0.04347111427796346, 0.07423675680829, 0.1602542791395647, 0.19911642350143877, 0.2379444352717226, 0.36664322039668684, 0.10130143557253446, 0.17108028607870185, 0.6143194513817134, 0.5641235853966853, 0.29864316680665437, 0.44752301946823647, 0.13459844499503626, 0.037461465199631894, 0.5002964248569376, 0.4059565893810353, 0.7035957096210382, 0.0629603198376949, 0.25036415064992923, 0.14780834332950044, 0.24800647860056513, 0.10438723399855232, 0.24366911510822187, 0.4574644219698093, 0.8347014835967527, 0.42226245660703365, 0.4073158502222598, 0.47525484003715535, 0.37845934883934684, 0.35325777167774697, 0.4763432908647238, 0.18941100564626978, 0.23853527246002126, 0.27277355193056574, 0.5556171757583562, 0.19481513110659687, 0.7460207524242459, 0.12627308236197843, 0.2115813466591615, 0.4773837842994688, 0.22238536240250728, 0.1978655273089749, 0.32057959349203036, 0.1601330373243487, 0.6256605001243821, 0.34062746964654456, 0.5899158924001677, 0.1273375405407705, 0.6866376712310945, 0.3812864953771038, 0.07918534602430627, 0.10510921928053807, 0.052405178286905496, 0.29010285216427345, 0.5802968836962079, 0.4475494904811408, 0.33107045093633036, 0.6046547135519548, 0.33132995382553565, 0.3391582818855403, 0.37109937806185267, 0.18876467901964422, 0.03244681540368277, 0.6531311156123596, 0.18281848038190407, 0.06840545126676123, 0.23876166598551407, 0.5602062902528231, 0.05478334190217349, 0.18965009362393503, 0.502081053312289, 0.0945975060483667, 0.24937367783354814, 0.14040338921272166, 0.09582424632391484, 0.4879833184669665, 0.07536550594022651, 0.37763546052463404, 0.20240400638142053, 0.06234715971662652, 0.1729504208160284, 0.2536573606029918, 0.1491704939138675, 0.47224603889779837, 0.20734784509414073, 0.1656619584420439, 0.20263687678412212, 0.4576701693643329, 0.3746187330143109, 0.06578487521364562, 0.09359041291034786, 0.15714155813810793, 0.43198081216185935, 0.17693664965610134, 0.14200602748771296, 0.16878839641400256, 0.11131318694256087, 0.43040972974554736, 0.12494266711040569, 0.5286591337585229, 0.3917329141436472, 0.14284790216410748, 0.29931895876037384, 0.3998656181534954, 0.13198036366642862, 0.2166851793268345, 0.164669749255824, 0.3116999397838065, 0.5702002297218003, 0.2867818412254799, 0.05809024612643199, 0.0701620515557333, 0.10493669218879953, 0.03474255021640338, 0.14069518845012563, 0.7697788668098057, 0.44513161239284327, 0.12104291767226882, 0.2823656727566666, 0.28640273091276736, 0.09904459769556595, 0.10889384421684001, 0.1978655273089749, 0.6326587477498924, 0.0766186874204361, 0.07300117689776386, 0.3978521493117628, 0.7293533971641823, 0.24040337450518035, 0.46827469198568006, 0.03737110954461231, 0.48112847828662497, 0.5755848065786346, 0.12151472907643468, 0.332302417201758, 0.3208349144509022, 0.13406270144296106, 0.47820199098358873, 0.024219732643774528, 0.7923035912680444, 0.3099424932714111, 0.8494816644677875, 0.15230116664989468, 0.8795672599938588, 0.34536882843285344, 0.587897812361327, 0.3660303223369904, 0.3074082248441362, 0.1925553058603695, 0.1582957933341015, 0.5297945963993664, 0.1892543681582496, 0.06574637766643598, 0.03286461121245521, 0.6223124217546917, 0.48666930315350876, 0.17200815643270417, 0.27042696199957883, 0.16010429726024444, 0.25291734909108765, 0.22778758435893687, 0.6055190518965303, 0.41989528411161425, 0.2865861541738164, 0.17344095530188786, 0.4163761941495938, 0.24610426408478792, 0.029106329843254564, 0.5849270471051293, 0.09607886499379148, 0.4890296174547498, 0.11193395874659995, 0.3667485749721523, 0.29672938182784603, 0.13696827462710404, 0.03986507081677082, 0.41542023534722683, 0.1642424989032959, 0.041559354155004224, 0.1266666793707928, 0.5259198205822933, 0.42123490919744344, 0.6147437654518444, 0.42849246998341506, 0.04874684240881699, 0.16870816563337898, 0.35179373534084035, 0.4552463954734379, 0.1543174595222413, 0.4641274821418986, 0.1106599594415556, 0.40441066041397966, 0.05916303638108533, 0.24194101851814365, 0.5755848065786346, 0.23631147082452741, 0.04679471849088612, 0.33132995382553565, 0.6031606095022326, 0.16900214819844117, 0.9322526967181247, 0.1065938389205352, 0.0540586741766943, 0.14920224829950646, 0.03054451782098533, 0.13595064656866984, 0.15908339514281045, 0.09402391562754642, 0.27219479721363327, 0.10477531970828624, 0.6046547135519548, 0.04412971358840656, 0.0821245873848182, 0.24953715645213048, 0.24311299470472425, 0.679537413518331, 0.02875041056121841, 0.2874129658970298, 0.17131102264191878, 0.07042427222914205, 0.1577516063520068, 0.39934634677258996, 0.42249259173992826, 0.24940231538328683, 0.46827469198568006, 0.040988937643475554, 0.034828704291737345, 0.26663563965858417, 0.22421743312747255, 0.10716094829621758, 0.7421831263598226, 0.4644511163280224, 0.1591307416719686, 0.21502194578256428, 0.12883185373794437, 0.15520095945599266, 0.04280666734842442, 0.06928764484923078, 0.3578757504587543, 0.0760792945579073, 0.06637805380770656, 0.5755848065786346, 0.4326356954473739, 0.16985579355455038, 0.47152805642545803, 0.11644579282256762, 0.11790522998710073, 0.5438286352264949, 0.41561805514360906, 0.050606352251634235, 0.21836830194439782, 0.22298545275517268, 0.1504846162366139, 0.16819644397314482, 0.47796113776613436, 0.14100197907825862, 0.7878397890034206, 0.12176963827920351, 0.09814942480303201, 0.23162396036129984, 0.04400104962869911, 0.061588508633294015, 0.2774601068082493, 0.40816383821078206, 0.14036214651023216, 0.11837607594274324, 0.0703155477214753, 0.17002415827487982, 0.24611532014486182, 0.06874641727313702, 0.30975746960573625, 0.07004288447243323, 0.6453829176356538, 0.3880412370469972, 0.10205495289732236, 0.12171087020281346, 0.38550692709735157, 0.4398162761337091, 0.5769741243450848, 0.48842976274850136, 0.3866799681687785, 0.17129518728202664, 0.5711206597512044, 0.4456070955069118, 0.4585850027539752, 0.25462747480751524, 0.34771016550763867, 0.35548618548401445, 0.07878090041588082, 0.3008706318705062, 0.08117751180329491, 0.055511805197920094, 0.1600174453683395, 0.35597309965685686, 0.5473978930443646, 0.3321771897262046, 0.14643302530661162, 0.7653011157176768, 0.24188431843396252, 0.16704799028757666, 0.41136103198090634, 0.5749869949413896, 0.709238838470871, 0.09340318303147321, 0.602429869503323, 0.04154705947390969, 0.7519582179986716, 0.15993940416551844, 0.04372375151311325, 0.4076899811241429, 0.4644511163280224, 0.3133137248525114, 0.24628490675063597, 0.06972977174174444, 0.15949948541388637, 0.2241543425141257, 0.1729876202034616, 0.07290025122558275, 0.1220000714032804, 0.36493953208423235, 0.09420126302076737, 0.026726938234992392, 0.7199273032686843, 0.4606762448039463, 0.04906818437448113, 0.19446415942665518, 0.14876853598344464, 0.3247816953453747, 0.023320858692869595, 0.7310618090422621, 0.48944479260603346, 0.20357574295749958, 0.0840537250624015, 0.5368744051465595, 0.21101467800102214, 0.46682279298460017, 0.3749869638443927, 0.46592999202179275, 0.10188412989688433, 0.15751976448865512], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"sulphates\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"sulphates\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}}, {\"id\": \"All_alcohol\", \"params\": {\"data\": [{\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Reference<br>alcohol=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [11.2, 10.0, 12.7, 10.5, 9.4, 10.1, 13.5, 10.4, 12.4, 11.5, 10.0, 9.8, 10.5, 9.1, 9.5, 9.6, 11.7, 11.2, 12.3, 11.9, 10.0, 12.3, 10.1, 11.9, 11.5, 10.0, 13.6, 11.3, 9.6, 12.8, 12.2, 10.0, 10.9, 11.8, 12.5, 10.0, 9.5, 12.9, 12.8, 11.3, 11.5, 10.2, 12.1, 9.7, 10.0, 8.8, 9.0, 12.3, 12.0, 12.0, 9.7, 8.9, 12.4, 10.3, 11.1, 8.6, 10.8, 11.8, 10.8, 12.5, 10.4, 12.8, 12.2, 10.2, 9.8, 9.2, 11.7, 10.5, 9.8, 13.4, 12.2, 13.4, 11.0, 12.3, 10.7, 9.8, 12.8, 12.3, 10.9, 12.4, 10.1, 13.5, 11.0, 10.4, 12.2, 11.3, 11.3, 9.9, 13.4, 9.3, 10.4, 12.2, 10.2, 12.4, 10.6, 11.3, 10.6, 12.6, 11.2, 9.4, 10.2, 8.9, 11.9, 11.0, 12.5, 9.7, 12.2, 10.6, 11.4, 10.75, 12.4, 8.8, 9.8, 10.9, 10.7, 12.7, 11.4, 11.5, 9.1, 11.0, 9.0, 9.8, 10.4, 8.9, 9.6, 10.5, 9.5, 8.9, 11.0, 9.9, 10.6, 14.0, 9.1, 11.0, 9.9, 12.9, 10.0, 11.0, 13.4, 10.0, 12.7, 10.5, 10.5, 10.6, 9.3, 10.6, 11.7, 10.9, 10.6, 9.2, 9.0, 10.5, 10.3, 9.5, 9.0, 11.9, 11.4, 12.1, 11.4, 12.0, 10.5, 9.8, 11.7, 12.1, 10.4, 9.6, 10.2, 10.1, 8.9, 12.1, 11.1, 9.4, 9.7, 10.5, 10.5, 10.1, 10.0, 9.8, 11.2, 10.8, 10.7, 12.1, 11.9, 12.7, 9.6, 11.0, 13.55, 10.1, 11.6, 10.3, 11.2, 12.8, 12.5, 12.2, 9.7, 12.1, 8.7, 11.0, 11.8, 10.5, 10.7, 12.5, 12.2, 11.8, 10.6, 12.0, 10.9, 10.8, 8.8, 9.5, 10.4, 10.8, 12.1, 10.8, 11.5, 10.0, 11.5, 10.8, 10.9, 12.8, 10.2, 8.7, 10.5, 12.9, 10.6, 10.8, 9.1, 9.1, 10.8, 10.6, 11.0, 9.9, 11.5, 10.4, 11.9, 12.2, 11.0, 9.8, 11.8, 10.7, 10.8, 9.0, 9.2, 8.8, 9.5, 11.4, 10.1, 10.1, 9.3, 12.3, 8.6, 9.1, 10.8, 11.2, 11.2, 11.0, 12.0, 9.4, 12.6, 11.5, 9.0, 12.2, 10.9, 12.3, 11.6, 11.2, 13.2, 12.5, 10.3, 13.0, 10.8, 11.4, 11.4, 11.0, 13.0, 9.9, 10.9, 11.7, 12.8, 10.5, 11.2, 11.6, 12.2, 12.75, 11.9, 11.9, 9.3, 10.0, 9.6, 12.0, 10.1, 12.0, 12.4, 11.2, 10.9666666666667, 9.1, 9.9, 10.0, 10.9, 10.7, 12.6, 10.5, 12.3, 11.0, 9.7, 11.0, 11.4, 11.5, 9.0, 10.1, 9.5, 9.0, 12.4, 11.3, 11.0, 9.7, 9.4, 12.8, 10.9, 12.2, 12.6, 11.4, 12.6, 11.7, 11.0, 9.5, 9.7, 11.2, 9.7, 12.2, 11.0, 12.4, 9.3, 10.4, 10.8, 9.1, 10.5, 12.8, 9.6, 10.5, 9.9, 11.1, 12.1, 9.5, 9.9, 10.0, 9.4, 9.0, 12.4, 8.9, 10.8, 11.2, 10.9, 11.0, 9.6, 11.4, 11.0, 12.4, 10.1, 12.2, 9.4, 10.4, 10.3, 11.5, 9.8, 9.7, 12.6, 11.2, 12.0, 9.0, 10.8, 10.3, 10.4, 10.1, 12.9, 12.5, 12.7, 10.4, 9.9, 9.5, 9.2, 10.8, 9.1, 9.3, 9.0, 10.9, 9.0, 9.5, 10.5, 12.2, 11.2666666666667, 8.9, 9.9, 11.0, 10.4, 11.0, 11.8, 10.6, 12.6, 9.4, 11.5, 9.3, 12.5, 8.8, 11.5, 10.4, 10.6, 11.3, 10.8, 8.7, 10.4, 11.1, 11.3, 11.2, 10.5, 11.9, 11.6, 9.1, 10.8, 9.4, 10.5, 10.8, 9.6, 9.0, 10.2, 11.0, 11.2, 11.4333333333333, 12.2, 12.0, 12.4, 12.4, 12.8, 11.6333333333333, 10.0, 13.1, 11.5, 11.3, 12.3, 10.6, 11.0, 10.7, 11.8, 10.1, 10.2, 10.4, 9.6, 9.5, 11.0, 10.9, 12.6, 12.4, 11.9, 10.2, 9.7, 13.0, 10.2, 10.9, 9.9, 9.1, 11.2, 9.5, 11.0, 9.2, 11.5, 11.0666666666667, 10.4, 11.0, 10.4, 13.4, 9.6, 9.4, 8.7, 8.8, 12.4, 12.9, 12.4, 11.0, 10.2, 10.0, 11.7, 8.5, 8.8, 9.7, 9.0, 12.0, 12.5, 9.0, 11.7, 9.2, 9.4, 9.5, 9.2, 10.3, 11.5, 11.4, 9.6, 10.1, 12.8, 10.5, 10.5, 12.0, 11.7, 9.0, 12.5, 10.1, 11.4, 9.9, 12.3, 12.2, 12.3, 12.1, 10.4, 9.0, 12.1, 12.3, 11.9, 9.3, 11.6, 12.7, 9.5, 13.2, 13.0, 11.5, 9.0, 12.0, 9.3, 11.6, 9.3, 11.2, 10.5, 10.1, 10.7, 10.1, 11.4, 10.7, 10.5, 12.1, 11.0, 12.2, 10.5, 12.8, 10.0, 10.6, 12.2, 13.2, 11.6, 9.4, 12.0, 11.0, 10.0, 11.3, 10.8, 9.7, 10.4, 10.4, 10.8, 9.2, 9.3, 11.4, 9.4, 9.8, 11.2, 9.8, 13.6, 11.0, 11.3666666666667, 10.5, 12.5, 10.1, 12.1, 10.1, 11.5, 12.7, 12.0, 12.9, 9.0, 10.6, 10.5, 10.5, 11.9, 12.5, 10.1, 10.7, 12.2, 10.8, 13.2, 10.8, 10.3, 11.2, 9.9, 12.5, 9.5, 12.8, 10.2, 10.1, 11.1, 10.5, 11.1, 9.2, 11.2, 11.7, 10.2, 11.0, 11.7, 8.8, 10.8, 9.7, 11.5, 8.8, 10.9333333333333, 10.5, 9.8, 10.7, 12.7, 11.8, 10.1, 9.4, 11.3, 10.2, 10.4, 11.3, 10.0, 10.9, 9.6, 10.9, 9.6, 11.7, 9.53333333333333, 12.3, 10.2, 9.5, 9.2, 11.0, 11.7, 11.3, 10.0, 9.53333333333333, 10.8, 9.5, 11.8, 9.9, 12.0, 11.8, 9.5], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Current<br>alcohol=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [9.0, 9.0, 10.9, 9.4, 9.5, 9.8, 10.1, 10.8, 12.0, 10.5, 10.0, 11.0, 12.4, 12.2, 12.8, 10.6, 11.4, 11.5, 10.3, 12.4, 8.9, 9.2, 10.5, 9.6, 10.1, 12.2, 11.0, 11.3, 12.5, 12.3, 13.0, 10.1, 9.5, 9.2, 12.1, 8.7, 11.3333333333333, 9.3, 13.4, 11.8, 12.4, 11.3, 11.8, 8.7, 9.4, 12.7, 9.0, 9.3, 9.5, 12.5, 9.2, 12.8, 10.4, 10.5, 11.4, 8.8, 9.5, 14.0, 9.8, 9.1, 10.4, 12.3, 11.8, 11.2, 9.3, 12.5, 11.0, 10.7, 10.55, 9.6, 9.1, 11.7, 9.2, 11.0, 9.7, 9.3, 9.3, 10.2, 10.8, 9.4, 12.2, 10.2, 11.4, 11.9, 9.8, 12.0, 10.9, 11.5, 11.5, 9.5, 10.8, 11.9, 12.6, 13.2, 10.1, 12.6, 10.0333333333333, 13.1, 10.2, 11.1, 11.1, 9.9, 11.2, 13.2, 9.1, 9.5, 9.4, 12.6, 11.6, 11.3, 10.7, 8.8, 12.3, 12.6, 12.4, 12.4, 11.3, 9.5, 10.4, 11.5, 11.8, 12.1, 12.0, 12.2, 10.9, 12.3, 9.2, 12.3, 10.2, 12.0, 12.5, 13.6, 12.5, 9.1, 9.8, 9.3, 10.5, 10.8, 11.6, 11.0, 11.2, 12.7, 10.8, 9.4, 9.6, 10.5, 9.4, 10.5, 10.9, 10.2, 9.8, 11.2, 9.5, 9.2, 12.5, 12.0, 10.6, 11.3, 10.0, 9.0, 12.7, 9.5, 13.4, 11.7, 10.3, 11.4, 11.5, 9.9, 11.0, 9.2, 11.4, 10.2, 10.9, 11.6, 14.0, 11.8, 11.4, 13.1, 13.6, 12.5, 11.0, 9.2, 9.5, 10.7, 9.4, 11.6, 10.3, 12.6, 8.8, 11.1, 11.0, 9.4, 11.9, 11.9, 10.8, 12.2, 10.5, 12.5, 9.4, 9.8, 12.5, 10.4, 9.6, 11.9, 11.0, 10.6, 9.7, 12.0, 10.1, 10.2, 11.4, 12.8, 10.6, 12.4, 9.0, 12.8, 10.0, 11.3, 11.6, 12.8, 12.2, 10.0, 10.8, 9.5, 9.0, 9.2, 11.2, 10.3, 12.0, 11.2, 9.25, 10.1, 10.8, 12.1, 12.8, 8.9, 12.3, 11.2, 12.0, 11.2, 10.7, 13.3, 13.0, 10.3, 10.4, 11.4, 8.8, 9.2, 10.7, 10.1, 9.6, 9.2, 8.8, 11.6, 10.7, 9.8, 10.2, 11.0, 12.2, 12.2, 10.4, 10.6, 10.7, 10.2, 11.1, 12.5, 12.7, 10.6, 9.3, 9.9, 9.9, 11.3, 12.6, 11.0, 9.3, 9.9, 10.7, 10.4, 10.6, 11.2, 9.1, 11.9, 11.8, 10.0, 12.8, 11.6, 11.45, 11.3, 9.7, 10.2, 11.0, 9.5, 10.1, 12.8, 10.4, 11.0, 9.2, 12.2, 11.0, 11.8, 12.9, 10.3, 11.3, 12.3, 9.0, 11.0, 12.0, 11.0, 12.6, 11.2, 10.5, 11.5, 11.6, 9.3, 11.4, 11.0, 9.8, 9.8, 10.1, 9.5, 12.5, 13.0, 10.3, 9.1, 10.4, 12.7, 11.0, 11.5, 9.6, 12.6, 10.6, 9.0, 9.4, 9.5, 9.2, 9.4, 9.1, 10.0, 10.2, 11.9, 10.8, 10.2, 9.7, 11.4, 9.5, 10.9, 11.4, 10.5, 10.0, 11.7, 11.3, 11.5, 8.8, 9.2, 9.3, 12.0, 10.0, 10.2, 10.4, 12.5, 12.9, 10.3, 8.7, 8.8, 10.2, 9.2, 8.9, 10.3, 9.4, 10.2, 13.05, 10.1, 10.8, 11.4, 11.7, 10.8, 12.0, 11.2, 9.6, 12.4, 9.4, 11.5, 12.2, 9.3, 11.9, 10.5, 11.0, 11.65, 11.4, 11.3, 11.0, 9.3, 11.2, 10.2, 10.2, 10.8, 9.0, 12.5, 12.6, 10.8, 10.6, 11.5, 11.4, 9.5, 12.7, 9.8, 11.0, 10.5, 9.0, 12.5, 9.6, 10.0, 10.4, 9.8, 10.6, 10.3, 9.3, 10.6, 12.6, 12.8, 11.3, 11.9, 12.1, 10.3, 9.2, 11.2, 10.2, 10.6, 12.4, 12.0, 11.7, 10.2, 11.4, 12.8, 10.5, 9.0, 10.8, 9.0, 12.0, 9.0, 9.1, 12.5, 9.8, 9.4, 12.0, 9.2, 14.0, 9.2, 10.0, 9.7, 10.6, 9.2, 9.5, 9.8, 9.0, 11.0, 11.0, 10.65, 9.0, 11.3, 11.3, 13.3, 9.4, 8.7, 10.9, 10.4, 12.7, 10.3, 11.0, 10.6, 10.4, 10.3, 12.5, 8.7, 10.3, 12.8, 9.5, 11.3, 10.2, 11.4, 10.0, 10.6, 11.4, 11.9, 9.6, 11.0, 12.7, 12.5, 9.7, 10.8, 10.1, 9.1, 12.5, 11.0, 9.8, 9.8, 11.4, 10.0, 11.5, 10.3, 11.75, 10.3, 9.1, 11.0, 13.5, 8.9, 9.4, 12.0, 10.1, 12.3, 12.9, 11.3, 14.2, 11.4, 11.5, 12.6, 10.1, 11.7, 9.2, 12.4, 13.0, 10.5, 11.0, 9.2, 11.6, 9.3, 10.7, 12.6, 11.5, 9.1, 11.3, 10.0, 9.0, 13.0, 12.5, 11.6, 11.5, 12.1, 9.7, 9.5, 11.2, 11.3333333333333, 10.9, 11.4, 13.1, 11.5, 10.9, 11.8, 12.3, 9.1, 9.5, 11.4, 10.5, 11.1, 11.0, 10.0, 10.1, 12.3, 11.9, 11.0, 9.8, 10.4, 8.7, 11.4, 9.1, 12.1, 11.4, 11.2, 13.0, 12.5, 10.5, 10.3, 11.1, 12.0, 12.4, 11.0, 11.0, 12.3, 11.0, 12.4, 9.5, 9.6, 10.5, 12.5, 10.0, 10.0, 10.2, 9.5, 10.2, 11.1, 10.0, 10.4, 10.0, 10.0, 11.2, 10.4, 12.5, 9.6, 11.5, 12.7, 10.8, 12.2, 9.4, 11.2, 10.5, 9.8, 10.5, 10.6, 10.4, 9.9, 9.6, 10.5, 9.1, 11.9, 9.8, 12.1, 12.9, 10.4, 9.5, 12.2, 10.4, 12.4, 11.0, 10.0, 10.8, 12.15, 11.45, 10.2, 11.8, 12.1, 9.8, 10.0, 12.7, 11.6, 12.3, 10.2, 13.4, 9.5, 11.0, 12.0, 12.8, 9.2, 8.8, 9.9, 8.9, 9.5, 13.4, 11.0], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Reference<br>alcohol=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [8.7, 12.6, 10.6, 10.5, 9.4, 9.5, 9.7, 10.4, 9.3, 9.7, 10.2, 11.0, 8.7, 10.7, 9.3, 9.5, 9.5, 9.8, 9.2, 10.9, 9.5, 9.1, 11.2, 11.2, 9.9, 9.8, 9.9, 10.1, 9.1, 10.1, 9.6, 10.4, 10.8, 10.0, 9.1, 10.1, 10.0, 10.8, 9.6, 9.2, 9.2, 10.6, 9.5, 8.9, 9.5, 10.1, 9.1, 10.5, 10.6, 9.3, 9.4, 9.1, 9.3, 9.6, 9.8, 9.2, 10.6, 10.6, 10.1, 11.0, 9.3, 10.0, 12.6, 9.4, 9.2, 10.4, 9.2, 9.9, 9.8, 10.1, 8.8, 11.0, 8.7, 11.4, 10.2, 10.0, 8.9, 11.1, 9.2, 12.0, 10.0, 11.1, 9.0, 9.05, 9.8, 10.9, 10.1, 10.0, 11.6, 9.2, 11.0, 9.4, 9.8, 8.7, 9.1, 9.5, 9.1, 9.5, 9.2, 9.6, 9.2, 9.7, 10.2, 9.0, 9.3, 9.3, 10.3, 11.4, 9.0, 10.5, 10.4, 9.9, 9.2, 9.0, 10.4, 9.6, 8.7, 11.4, 10.1, 9.4, 8.9, 12.8, 9.1, 9.7, 8.8, 9.5, 10.6, 9.4, 9.5, 9.4, 9.6, 11.3, 9.4, 9.2, 9.3, 10.0, 11.05, 9.1, 11.2, 9.9, 9.2, 9.4, 11.4, 9.2, 9.9, 9.0, 11.0, 10.6, 9.7, 9.6, 11.1, 9.5, 11.4, 10.2, 9.2, 9.8, 9.2, 9.5, 9.9, 10.8, 11.5, 10.2, 9.6, 8.4, 9.5, 11.5, 9.53333333333333, 9.1, 9.4, 9.2, 9.6, 11.5, 9.4, 9.3, 9.4, 10.3, 9.5, 11.4, 10.2, 9.2, 9.6, 10.9, 10.2, 9.7, 9.0, 9.4, 10.2, 11.8, 9.4, 9.0, 9.6, 10.7, 9.4, 11.0, 9.4, 9.7, 9.3, 9.5, 9.5, 9.7, 10.3, 8.8, 8.8, 11.0, 11.3, 9.0, 10.5, 9.5, 11.4, 10.8, 9.9, 10.4, 9.6, 10.0, 9.0, 9.0, 9.4, 10.8, 9.2, 10.0, 9.7, 11.2, 9.5, 10.0, 10.2, 9.2, 9.2, 9.0, 10.2, 9.2, 10.1, 10.5, 9.6, 8.7, 12.0, 11.1, 9.1, 10.6, 10.0, 9.3, 10.8, 9.5, 9.0, 9.4, 11.2, 10.5, 9.4, 10.5, 8.8, 9.3, 11.2, 10.7, 10.8, 9.6, 9.5, 9.1, 9.7, 10.4, 9.5, 9.5, 10.5, 9.2, 9.9, 9.5, 9.0, 10.8, 10.6, 10.0, 10.6, 9.2, 8.9, 9.0, 9.9, 9.9, 9.6, 9.7, 10.5, 9.3, 9.9, 10.5, 10.0, 9.8, 9.5, 9.3, 10.2, 9.5, 9.5, 9.4, 10.8, 10.2, 11.1, 10.3, 11.0, 11.2, 9.4, 10.2, 9.0, 8.7, 8.9, 9.5, 11.4, 10.7, 10.0, 8.6, 9.7, 10.6, 9.3, 9.3, 9.4, 9.3, 9.3, 9.5, 9.8, 9.5, 9.8, 9.3, 9.3, 9.4, 9.5, 9.8, 10.5, 9.5, 10.9, 9.5, 9.6, 9.5, 14.9, 10.4, 9.2, 9.4, 8.7, 9.5, 9.7, 9.4, 9.8, 9.4, 8.9, 9.5, 10.9, 9.0, 9.6, 9.4, 10.8, 9.6, 9.2, 9.8, 9.2, 10.0, 10.1, 9.4, 9.4, 10.0, 9.7, 13.0, 10.0], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Current<br>alcohol=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [11.0, 8.9, 11.0, 10.1, 8.9, 8.7, 10.7, 9.7, 10.0, 9.9, 9.2, 10.5, 9.8, 9.2, 9.1, 8.8, 9.0, 10.3, 12.0, 10.8, 11.7, 9.7, 9.7, 8.9, 12.0, 10.9, 9.4, 9.7, 9.8, 10.2, 8.7, 8.7, 9.6, 9.3, 10.5, 9.5, 9.4, 9.6, 9.4, 9.3, 12.4, 9.3, 9.2, 9.3, 11.4, 10.5666666666667, 9.4, 9.8, 9.0, 10.9, 10.4, 8.8, 11.5, 11.0, 9.7, 9.3, 9.8, 11.1, 9.4, 9.4, 11.1, 9.7, 9.0, 9.7, 9.3, 10.9, 9.2, 9.4, 10.7, 9.0, 9.5, 11.3, 10.4666666666667, 9.4, 10.5, 11.1, 8.9, 10.4, 9.2, 9.0, 9.6, 9.9, 9.5, 9.5, 10.1, 10.4, 9.0, 8.9, 9.8, 10.5, 9.5, 9.5, 9.7, 9.2, 9.7, 10.9, 10.8, 9.2, 8.9, 9.2, 9.4, 10.6, 8.8, 9.3, 9.4, 10.5, 9.4, 9.5, 9.2, 9.1, 9.4, 9.1, 9.8, 9.9, 10.6, 10.6, 9.4, 9.4, 9.5, 11.0, 10.2, 11.4, 10.6, 9.5, 10.1, 9.4, 11.0, 9.7, 10.1, 10.5, 13.4, 10.4, 9.2, 10.5, 9.4, 8.7, 11.4, 10.4, 9.4, 8.8, 10.7, 10.1, 10.3, 11.7, 9.5, 10.3, 10.9, 9.2, 9.5, 10.0, 9.2, 10.0, 10.5, 9.5, 10.1, 10.5, 10.7, 9.4, 9.6, 9.3, 10.4, 9.0, 10.4, 9.2, 9.0, 10.4, 11.3, 10.9, 11.0, 10.3, 9.2, 10.5, 9.4, 10.2, 9.5, 12.4, 10.1, 9.3, 8.8, 10.6, 10.3, 8.0, 10.3, 9.8, 10.5, 10.5, 9.3, 9.2, 10.2, 9.3, 9.7, 9.7, 10.1, 11.1, 8.6, 9.5, 9.1, 9.8, 9.1, 9.6, 9.5, 9.0, 9.0, 9.4, 11.4, 9.4, 9.0, 9.6, 9.0, 8.6, 10.2, 9.0, 9.7, 10.5, 9.3, 11.5, 9.0, 10.2, 9.3, 9.8, 8.7, 9.3, 9.3, 9.4, 9.1, 10.0, 9.1, 10.3, 10.6, 10.1, 8.8, 10.4, 8.8, 9.7, 9.6, 9.4, 9.8, 10.9, 9.2, 11.4, 9.2, 9.7, 10.9, 9.4, 11.4, 10.0, 10.7, 9.3, 9.4, 10.0, 9.0, 8.6, 10.6, 8.8, 9.9, 8.8, 9.4, 9.5, 9.5, 10.8, 9.8, 10.0, 10.1, 10.1, 9.5, 10.8, 9.7, 11.4, 12.2, 9.6, 11.4, 10.0, 9.3, 9.6, 10.2, 9.0, 9.5, 9.5, 10.1, 9.2, 10.0, 9.5, 11.4, 10.9, 9.2, 11.2, 10.1, 9.1, 11.4, 9.8, 9.5, 9.7, 9.2, 9.5, 11.1, 10.2, 9.5, 9.0, 9.2, 10.3, 11.4, 10.6, 10.4, 9.3, 9.5, 10.8, 10.5, 9.5, 9.0, 9.4, 9.4, 9.6, 10.2, 8.7, 9.9, 8.8, 9.8, 9.5, 9.5, 9.3, 11.8, 9.4, 10.1, 9.5, 11.5, 9.4, 8.8, 10.4, 9.5, 10.4666666666667, 9.8, 9.5, 10.5, 11.4, 9.7, 10.4, 9.3, 10.2, 8.8, 10.7, 8.9, 9.2, 10.4, 9.8, 8.4, 10.3, 9.3, 11.0, 8.8, 10.0, 9.3, 11.4], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Reference\", \"x\": 0.245, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Current\", \"x\": 0.755, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"barmode\": \"overlay\", \"legend\": {\"title\": {\"text\": \"target\"}, \"tracegroupgap\": 0}, \"margin\": {\"t\": 60}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.49], \"title\": {\"text\": \"alcohol\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.51, 1.0], \"matches\": \"x\", \"title\": {\"text\": \"alcohol\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"count\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}}}}, {\"id\": \"alcohol_good\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (ref)\", \"type\": \"scatter\", \"x\": [11.2, 10.0, 12.7, 10.5, 9.4, 10.1, 13.5, 10.4, 12.4, 11.5, 10.0, 9.8, 10.5, 9.1, 9.5, 9.6, 11.7, 11.2, 12.3, 11.9, 10.0, 12.3, 10.1, 11.9, 11.5, 10.0, 13.6, 11.3, 9.6, 12.8, 12.2, 10.0, 10.9, 11.8, 12.5, 10.0, 9.5, 12.9, 12.8, 11.3, 11.5, 10.2, 12.1, 9.7, 10.0, 8.8, 9.0, 12.3, 12.0, 12.0, 9.7, 8.9, 12.4, 10.3, 11.1, 8.6, 10.8, 11.8, 10.8, 12.5, 10.4, 12.8, 12.2, 10.2, 9.8, 9.2, 11.7, 10.5, 9.8, 13.4, 12.2, 13.4, 11.0, 12.3, 10.7, 9.8, 12.8, 12.3, 10.9, 12.4, 10.1, 13.5, 11.0, 10.4, 12.2, 11.3, 11.3, 9.9, 13.4, 9.3, 10.4, 12.2, 10.2, 12.4, 10.6, 11.3, 10.6, 12.6, 11.2, 9.4, 10.2, 8.9, 11.9, 11.0, 12.5, 9.7, 12.2, 10.6, 11.4, 10.75, 12.4, 8.8, 9.8, 10.9, 10.7, 12.7, 11.4, 11.5, 9.1, 11.0, 9.0, 9.8, 10.4, 8.9, 9.6, 10.5, 9.5, 8.9, 11.0, 9.9, 10.6, 14.0, 9.1, 11.0, 9.9, 12.9, 10.0, 11.0, 13.4, 10.0, 12.7, 10.5, 10.5, 10.6, 9.3, 10.6, 11.7, 10.9, 10.6, 9.2, 9.0, 10.5, 10.3, 9.5, 9.0, 11.9, 11.4, 12.1, 11.4, 12.0, 10.5, 9.8, 11.7, 12.1, 10.4, 9.6, 10.2, 10.1, 8.9, 12.1, 11.1, 9.4, 9.7, 10.5, 10.5, 10.1, 10.0, 9.8, 11.2, 10.8, 10.7, 12.1, 11.9, 12.7, 9.6, 11.0, 13.55, 10.1, 11.6, 10.3, 11.2, 12.8, 12.5, 12.2, 9.7, 12.1, 8.7, 11.0, 11.8, 10.5, 10.7, 12.5, 12.2, 11.8, 10.6, 12.0, 10.9, 10.8, 8.8, 9.5, 10.4, 10.8, 12.1, 10.8, 11.5, 10.0, 11.5, 10.8, 10.9, 12.8, 10.2, 8.7, 10.5, 12.9, 10.6, 10.8, 9.1, 9.1, 10.8, 10.6, 11.0, 9.9, 11.5, 10.4, 11.9, 12.2, 11.0, 9.8, 11.8, 10.7, 10.8, 9.0, 9.2, 8.8, 9.5, 11.4, 10.1, 10.1, 9.3, 12.3, 8.6, 9.1, 10.8, 11.2, 11.2, 11.0, 12.0, 9.4, 12.6, 11.5, 9.0, 12.2, 10.9, 12.3, 11.6, 11.2, 13.2, 12.5, 10.3, 13.0, 10.8, 11.4, 11.4, 11.0, 13.0, 9.9, 10.9, 11.7, 12.8, 10.5, 11.2, 11.6, 12.2, 12.75, 11.9, 11.9, 9.3, 10.0, 9.6, 12.0, 10.1, 12.0, 12.4, 11.2, 10.9666666666667, 9.1, 9.9, 10.0, 10.9, 10.7, 12.6, 10.5, 12.3, 11.0, 9.7, 11.0, 11.4, 11.5, 9.0, 10.1, 9.5, 9.0, 12.4, 11.3, 11.0, 9.7, 9.4, 12.8, 10.9, 12.2, 12.6, 11.4, 12.6, 11.7, 11.0, 9.5, 9.7, 11.2, 9.7, 12.2, 11.0, 12.4, 9.3, 10.4, 10.8, 9.1, 10.5, 12.8, 9.6, 10.5, 9.9, 11.1, 12.1, 9.5, 9.9, 10.0, 9.4, 9.0, 12.4, 8.9, 10.8, 11.2, 10.9, 11.0, 9.6, 11.4, 11.0, 12.4, 10.1, 12.2, 9.4, 10.4, 10.3, 11.5, 9.8, 9.7, 12.6, 11.2, 12.0, 9.0, 10.8, 10.3, 10.4, 10.1, 12.9, 12.5, 12.7, 10.4, 9.9, 9.5, 9.2, 10.8, 9.1, 9.3, 9.0, 10.9, 9.0, 9.5, 10.5, 12.2, 11.2666666666667, 8.9, 9.9, 11.0, 10.4, 11.0, 11.8, 10.6, 12.6, 9.4, 11.5, 9.3, 12.5, 8.8, 11.5, 10.4, 10.6, 11.3, 10.8, 8.7, 10.4, 11.1, 11.3, 11.2, 10.5, 11.9, 11.6, 9.1, 10.8, 9.4, 10.5, 10.8, 9.6, 9.0, 10.2, 11.0, 11.2, 11.4333333333333, 12.2, 12.0, 12.4, 12.4, 12.8, 11.6333333333333, 10.0, 13.1, 11.5, 11.3, 12.3, 10.6, 11.0, 10.7, 11.8, 10.1, 10.2, 10.4, 9.6, 9.5, 11.0, 10.9, 12.6, 12.4, 11.9, 10.2, 9.7, 13.0, 10.2, 10.9, 9.9, 9.1, 11.2, 9.5, 11.0, 9.2, 11.5, 11.0666666666667, 10.4, 11.0, 10.4, 13.4, 9.6, 9.4, 8.7, 8.8, 12.4, 12.9, 12.4, 11.0, 10.2, 10.0, 11.7, 8.5, 8.8, 9.7, 9.0, 12.0, 12.5, 9.0, 11.7, 9.2, 9.4, 9.5, 9.2, 10.3, 11.5, 11.4, 9.6, 10.1, 12.8, 10.5, 10.5, 12.0, 11.7, 9.0, 12.5, 10.1, 11.4, 9.9, 12.3, 12.2, 12.3, 12.1, 10.4, 9.0, 12.1, 12.3, 11.9, 9.3, 11.6, 12.7, 9.5, 13.2, 13.0, 11.5, 9.0, 12.0, 9.3, 11.6, 9.3, 11.2, 10.5, 10.1, 10.7, 10.1, 11.4, 10.7, 10.5, 12.1, 11.0, 12.2, 10.5, 12.8, 10.0, 10.6, 12.2, 13.2, 11.6, 9.4, 12.0, 11.0, 10.0, 11.3, 10.8, 9.7, 10.4, 10.4, 10.8, 9.2, 9.3, 11.4, 9.4, 9.8, 11.2, 9.8, 13.6, 11.0, 11.3666666666667, 10.5, 12.5, 10.1, 12.1, 10.1, 11.5, 12.7, 12.0, 12.9, 9.0, 10.6, 10.5, 10.5, 11.9, 12.5, 10.1, 10.7, 12.2, 10.8, 13.2, 10.8, 10.3, 11.2, 9.9, 12.5, 9.5, 12.8, 10.2, 10.1, 11.1, 10.5, 11.1, 9.2, 11.2, 11.7, 10.2, 11.0, 11.7, 8.8, 10.8, 9.7, 11.5, 8.8, 10.9333333333333, 10.5, 9.8, 10.7, 12.7, 11.8, 10.1, 9.4, 11.3, 10.2, 10.4, 11.3, 10.0, 10.9, 9.6, 10.9, 9.6, 11.7, 9.53333333333333, 12.3, 10.2, 9.5, 9.2, 11.0, 11.7, 11.3, 10.0, 9.53333333333333, 10.8, 9.5, 11.8, 9.9, 12.0, 11.8, 9.5], \"xaxis\": \"x\", \"y\": [0.8156061324462894, 0.42491310922683634, 0.8867827646463432, 0.8014995238430205, 0.30499958310650876, 0.5817355832705369, 0.959171062334887, 0.7854416128369749, 0.9085690698200813, 0.8998600376511439, 0.6341165000693628, 0.412102187638673, 0.7643629411050379, 0.4710001938005606, 0.40182653035141874, 0.40438056362905367, 0.8870480016118494, 0.3650667978415713, 0.9064321709292111, 0.9327245345966092, 0.6458420185168736, 0.8821841129047617, 0.6704018506542557, 0.7655671181822064, 0.8616986618932058, 0.48774537944210006, 0.9637355036179479, 0.6794204065079696, 0.6044835155949141, 0.7867954023600708, 0.9137982268836646, 0.5867502063434873, 0.8048584290077971, 0.9718511071053526, 0.9627192884041744, 0.7978623718349598, 0.6091120966723917, 0.8943338178728011, 0.8853376735027229, 0.9045563504021151, 0.9264844632598176, 0.6342457655367447, 0.9414033426130164, 0.5636516403732365, 0.5172967922101196, 0.4836896337264441, 0.35199620689495453, 0.788779954566273, 0.9696552399248426, 0.772496554239754, 0.8132656157621138, 0.4539090261140653, 0.9333708926412786, 0.679765045723866, 0.48457442622955804, 0.4248820606938153, 0.6737819616086004, 0.8780741425819777, 0.38340602447337646, 0.90634085684919, 0.5574014604752268, 0.6804147683859246, 0.9077110088845216, 0.7718472635729894, 0.4717552048891654, 0.22222808308441652, 0.8616549355667619, 0.705749071892896, 0.4699129352300819, 0.9680524782819758, 0.8891353183282249, 0.9466602521798594, 0.8553382520847058, 0.7430243903066251, 0.6616131862201935, 0.6919609500216202, 0.96565744679506, 0.913108907487878, 0.5395521774612226, 0.9026238558501023, 0.6550941529376255, 0.9757876320152292, 0.8833495792027257, 0.6666029765862381, 0.8504582120840628, 0.9320215595878566, 0.7639947574915884, 0.6085229656221847, 0.9557131606798471, 0.46184432615952054, 0.5642658412077981, 0.8815615400732472, 0.7189203536918151, 0.9301020530176726, 0.7341394174346678, 0.7759189559372703, 0.8448078654733812, 0.9012666081120407, 0.8926028620066223, 0.5287492720273277, 0.6874206920638863, 0.37408584674942635, 0.8348370105186077, 0.8697567261320243, 0.9175759024810304, 0.44644098895981, 0.8874384748400057, 0.7787567487441118, 0.9416122482572158, 0.3265229243180111, 0.9308095750950773, 0.42267134533232753, 0.43068181214270274, 0.8727308285810839, 0.7201611177732586, 0.8430904589044517, 0.8140617541555761, 0.9456747441572588, 0.6672663325862807, 0.8756470416862959, 0.518871521713375, 0.7040615347784164, 0.4957960231649875, 0.6250130361556073, 0.27413726132188326, 0.5193133578087885, 0.37656641690434584, 0.5808048103476511, 0.7917827117482167, 0.36569143480873245, 0.7232542293832885, 0.9785934574433302, 0.5715075300165849, 0.8182555969893297, 0.5448461144048058, 0.9491291995847589, 0.4833587957991669, 0.3189279754564957, 0.9184825510014271, 0.5524830505676419, 0.9600429304649183, 0.7818180966165994, 0.7962710274484252, 0.7569429870375118, 0.46184432615952054, 0.7641514270390748, 0.9486763575522457, 0.8086368705092697, 0.6784536879503494, 0.6877019790624462, 0.6082670858563528, 0.6053794617794684, 0.6319330693089359, 0.4982105707488519, 0.6787928880949093, 0.9231980717613485, 0.8831230955067948, 0.6845485656817341, 0.8799204262605215, 0.9164563829924386, 0.7819268199067826, 0.23469888428232324, 0.9492377841603665, 0.8826092272015389, 0.6360541596480074, 0.5184081252698399, 0.6400126753125241, 0.542646305979658, 0.4479501208302092, 0.7783171875827786, 0.7867712153112567, 0.5236605417423803, 0.6959846197179591, 0.7925023358445066, 0.6683189355892497, 0.18737025221649042, 0.42506327048176057, 0.7272596040941706, 0.7314191754306454, 0.4827891324637794, 0.6649341228620356, 0.9038332731164471, 0.9588917860646077, 0.8945194928389463, 0.49833043835950624, 0.7997712594855277, 0.8577935987172323, 0.7622736922026153, 0.8039391974899521, 0.7396811504731934, 0.8115340233127679, 0.801728888664367, 0.738451208106372, 0.5859674792922007, 0.1865203674848816, 0.8773430435604171, 0.36888329310067386, 0.8651817982269884, 0.9067615420962557, 0.8594983988587351, 0.7437750884018276, 0.9145224932934428, 0.9135679891815164, 0.8001832456898428, 0.6860977766129374, 0.9377826008632761, 0.9300369611912853, 0.6997062971069969, 0.5693182102579236, 0.3404656140239559, 0.7160591142088384, 0.7953146078011, 0.8869803873277935, 0.7639982823097876, 0.8681285227071118, 0.576868797021353, 0.93035102563313, 0.8375600281828176, 0.8279918435672958, 0.9266689436294401, 0.7559862346636359, 0.5099889666930224, 0.6914445842613687, 0.9651950326885705, 0.87851968214492, 0.8499702807396289, 0.4685752957996948, 0.7241546992314323, 0.7848147251007912, 0.7341394174346678, 0.7008877443692281, 0.340588975625529, 0.5013021766499856, 0.8321174529331695, 0.8818378666553491, 0.9176909075187759, 0.8634678749265305, 0.7436082905772717, 0.9343776659412377, 0.7668809937296346, 0.6243383802582345, 0.5332560471205093, 0.6907315465649003, 0.16626803588025432, 0.1668542888532837, 0.7408943843163458, 0.5221312328975666, 0.7457559475413279, 0.46389636934606376, 0.9292627865919654, 0.5268311186840582, 0.4244151934213653, 0.643310536612302, 0.8577438313980266, 0.7816208399762355, 0.8553382520847058, 0.7010035672814305, 0.5242572272016158, 0.9187320011579697, 0.8703498177621264, 0.6713045345576062, 0.9137982268836646, 0.8614414457916845, 0.9445662266054761, 0.8808216590199034, 0.7386378115490353, 0.8873009977622293, 0.9157094897337859, 0.6606038558129893, 0.9296803968514485, 0.8864322240790464, 0.5146720135715994, 0.8720710714485208, 0.9415427660945741, 0.9138701141498735, 0.6527559092576063, 0.8751970040938668, 0.9249766460056568, 0.801728888664367, 0.6575848465963361, 0.6934824043184128, 0.8619113960143526, 0.9419078024651042, 0.9591721389341828, 0.8397407150753159, 0.9084383840076588, 0.4963969309336195, 0.7359588175524252, 0.3531961907069324, 0.9279819479140234, 0.7752976919572294, 0.8665226278427577, 0.9515211055933231, 0.7314191754306454, 0.890886918514299, 0.3235491032739525, 0.3719939405423586, 0.6323804178173072, 0.8398006965792015, 0.8239469134189235, 0.8592101816891015, 0.7615002907198236, 0.8688259750909261, 0.8718104001390852, 0.5838074755684882, 0.8756470416862959, 0.901850575196968, 0.9451930143658351, 0.6253812669856891, 0.5890764576710766, 0.4921052500998711, 0.4862070578416567, 0.9170647663398394, 0.7035583451969506, 0.8476385889092957, 0.5603058978573646, 0.5810606890504925, 0.9088604673919816, 0.8903252600075929, 0.944267921154058, 0.9435968591480925, 0.938237366988842, 0.9357286047893738, 0.7961386682142712, 0.7840233885688647, 0.2513590507613302, 0.7389284097502917, 0.9053472250810051, 0.44438282424164377, 0.862281110352348, 0.8021059248496223, 0.9152740930046814, 0.643737358401971, 0.8540304955499701, 0.8613418170006786, 0.6911084183178322, 0.8848367871057808, 0.8387883096682573, 0.5942651630821018, 0.65691393717736, 0.6369979527510315, 0.8280658524313272, 0.9640736168216585, 0.6546311715671466, 0.5599819536107853, 0.48348053317652906, 0.7668016587569692, 0.03620763244300767, 0.7364400865449663, 0.37408584674942635, 0.8767503774172, 0.8743962287172513, 0.8751970040938668, 0.8833495792027257, 0.7091886355621774, 0.87006937054451, 0.7904001815220257, 0.8761418339280951, 0.8306834851111597, 0.7531715889012326, 0.38181207472529843, 0.6490458991820136, 0.9138057013338913, 0.9046222904886461, 0.17956061692355052, 0.7506163079023257, 0.8963285795381793, 0.8848361664653354, 0.9283037217377402, 0.45996158699034445, 0.7290858434196763, 0.8319094967702583, 0.6578018675312727, 0.18727567457681707, 0.8673410249845035, 0.9453298670648187, 0.9446538464906173, 0.19605573045952288, 0.6723831041639817, 0.3438281302059518, 0.37858973820495484, 0.6953170483296187, 0.21463507152544156, 0.26963792069965237, 0.3280912492037974, 0.8399932187801539, 0.420387898633768, 0.36522500752858966, 0.5810560693343539, 0.9306346767722963, 0.7167716539092029, 0.656736106921484, 0.5549139996760648, 0.6909161521388689, 0.591904263202073, 0.884703171197362, 0.866402281883595, 0.7582770814524421, 0.8990773411030794, 0.1818065866116437, 0.6222165686186035, 0.17261914235374884, 0.8156064679757086, 0.4851213943917703, 0.8871292211128762, 0.8398494053952754, 0.703270618172154, 0.6305543892506115, 0.7494149477175548, 0.1532408287022325, 0.6159732902773407, 0.738220551127759, 0.8354520044441791, 0.8536870432671441, 0.5751476712690671, 0.9077719201719568, 0.7878515691455199, 0.6672663325862807, 0.45293736875445273, 0.17058553029544155, 0.747933377844996, 0.8400163125056676, 0.4516778718827729, 0.6082670858563528, 0.8401843469141149, 0.7636885291754726, 0.789170795337903, 0.8128612802083497, 0.7522530659814418, 0.8086757686066508, 0.8356255123032285, 0.9241779635105248, 0.9674588597049086, 0.9368885694202199, 0.4990764491242286, 0.876561204324957, 0.554264192243629, 0.5967716244634195, 0.9060244606340249, 0.8401608718856799, 0.7329750583133859, 0.8021769878309102, 0.9316817655017511, 0.45488322534173153, 0.798578398438993, 0.7425236774748816, 0.5742682328784404, 0.4937681935814938, 0.8972164286692267, 0.8914273370768748, 0.9377613518261881, 0.8862258850530264, 0.8591757581361523, 0.7410678096850266, 0.6822336012657398, 0.9201658505843877, 0.6982578893131915, 0.5746709232170782, 0.7626532952948841, 0.7137703530889916, 0.7520971196461234, 0.4473853625959922, 0.7957460056304991, 0.4833174871501707, 0.8758467705785958, 0.4689303842787964, 0.6133612564737879, 0.8568681391705205, 0.6835133967314007, 0.9732070839986944, 0.21435716257549006, 0.5761668962420043, 0.4055433603128916, 0.3743394998756179, 0.9118635774953143, 0.964551884718591, 0.9306459334511011, 0.8424802355113449, 0.7739144871152517, 0.6872688771534424, 0.8590561833388345, 0.6714384475466295, 0.6408669500407106, 0.5203550269219845, 0.2856853969697174, 0.857760555506807, 0.9307094503226838, 0.6787928880949093, 0.8308635255795866, 0.29271374211533296, 0.6769315553524353, 0.23831547366416572, 0.5895099457120908, 0.8994675076574448, 0.8893400405584444, 0.8456825404777587, 0.5399612081435882, 0.6188649121485582, 0.9281492942813848, 0.7611740601422801, 0.46550237374781617, 0.8896861436466836, 0.9038901015569306, 0.5044440900554997, 0.9215480939667524, 0.6930273792518707, 0.8723244804196287, 0.5624338775604165, 0.9226297661236537, 0.8469231754225917, 0.9430557295321259, 0.9097116306258912, 0.5988707702267543, 0.3813853072548755, 0.8843832309478876, 0.9006952500629406, 0.918975987201669, 0.18997930334445084, 0.8923106748541326, 0.8461388699436441, 0.5973439234355874, 0.9544642924744549, 0.91770416680597, 0.9177239854204658, 0.17584552180125673, 0.9240099144459667, 0.48524948024905407, 0.8889685222180134, 0.5785503824403398, 0.7511953459672914, 0.6887596776945688, 0.6717539058356753, 0.7168761391602206, 0.7134478068952186, 0.834626350903405, 0.5715867980362679, 0.6588392688727011, 0.9488572786900573, 0.8920529250761863, 0.8891353183282249, 0.707981940789761, 0.926348680038428, 0.631489487929038, 0.7443856388661001, 0.9260754381930228, 0.9544642924744549, 0.8497401318990601, 0.5604010177433062, 0.8036334301115304, 0.7898153537185114, 0.8491431337122072, 0.6570881560807702, 0.8389599143569951, 0.7944137576415592, 0.8132668978866627, 0.44714680104169846, 0.7978021044641371, 0.41921696608658454, 0.38876183891604754, 0.9248463736054193, 0.4277915265084825, 0.6345107008491314, 0.8008942533173764, 0.5087430598332189, 0.9414938992689892, 0.6922115882765215, 0.8296175750175913, 0.8593339228153332, 0.8975141534758351, 0.5977126281557783, 0.9279478536756302, 0.6485770817571253, 0.8905823996589662, 0.9332072841984264, 0.9432461110830079, 0.9410120781436498, 0.6339696776630096, 0.7120962557761497, 0.5841709037351369, 0.5928970840420333, 0.9006589732900512, 0.936371533648048, 0.6907852379101131, 0.7675780198071424, 0.9444587893431046, 0.4702336163336472, 0.8925536722101626, 0.8158978708906081, 0.822780392485108, 0.8037335327290217, 0.8382351003285965, 0.8941557358589171, 0.4796498334522667, 0.926348680038428, 0.6842118015950474, 0.6463580983468415, 0.8292048071278182, 0.5834426687867836, 0.8419845362148763, 0.2431563391580561, 0.7763142135369961, 0.9390550746437164, 0.7774903237071782, 0.8141232663130791, 0.9444089886680379, 0.430401459478284, 0.9192677156927759, 0.8427595869840984, 0.87120858451521, 0.5693182102579236, 0.820012080301976, 0.58719119911586, 0.42769376643096113, 0.3542595869275313, 0.89579938191327, 0.8743523014696554, 0.7820497043505815, 0.5279069501129625, 0.8869579700149332, 0.45488774279476296, 0.8514781135508903, 0.8278297091497892, 0.663749097381813, 0.5132851713944618, 0.4906566565015208, 0.6415219885510332, 0.6991293681294938, 0.8150539074042624, 0.5800669536763935, 0.9583771200922359, 0.7366090055976814, 0.5747817696023392, 0.5315376696882942, 0.8074446941396305, 0.9038901015569306, 0.9087015650331977, 0.6697291810323083, 0.5800669536763935, 0.8807270543114014, 0.5135845984304893, 0.9352791850238339, 0.36120709973337456, 0.6206709330576408, 0.906286252315459, 0.7937202818717513], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [8.7, 12.6, 10.6, 10.5, 9.4, 9.5, 9.7, 10.4, 9.3, 9.7, 10.2, 11.0, 8.7, 10.7, 9.3, 9.5, 9.5, 9.8, 9.2, 10.9, 9.5, 9.1, 11.2, 11.2, 9.9, 9.8, 9.9, 10.1, 9.1, 10.1, 9.6, 10.4, 10.8, 10.0, 9.1, 10.1, 10.0, 10.8, 9.6, 9.2, 9.2, 10.6, 9.5, 8.9, 9.5, 10.1, 9.1, 10.5, 10.6, 9.3, 9.4, 9.1, 9.3, 9.6, 9.8, 9.2, 10.6, 10.6, 10.1, 11.0, 9.3, 10.0, 12.6, 9.4, 9.2, 10.4, 9.2, 9.9, 9.8, 10.1, 8.8, 11.0, 8.7, 11.4, 10.2, 10.0, 8.9, 11.1, 9.2, 12.0, 10.0, 11.1, 9.0, 9.05, 9.8, 10.9, 10.1, 10.0, 11.6, 9.2, 11.0, 9.4, 9.8, 8.7, 9.1, 9.5, 9.1, 9.5, 9.2, 9.6, 9.2, 9.7, 10.2, 9.0, 9.3, 9.3, 10.3, 11.4, 9.0, 10.5, 10.4, 9.9, 9.2, 9.0, 10.4, 9.6, 8.7, 11.4, 10.1, 9.4, 8.9, 12.8, 9.1, 9.7, 8.8, 9.5, 10.6, 9.4, 9.5, 9.4, 9.6, 11.3, 9.4, 9.2, 9.3, 10.0, 11.05, 9.1, 11.2, 9.9, 9.2, 9.4, 11.4, 9.2, 9.9, 9.0, 11.0, 10.6, 9.7, 9.6, 11.1, 9.5, 11.4, 10.2, 9.2, 9.8, 9.2, 9.5, 9.9, 10.8, 11.5, 10.2, 9.6, 8.4, 9.5, 11.5, 9.53333333333333, 9.1, 9.4, 9.2, 9.6, 11.5, 9.4, 9.3, 9.4, 10.3, 9.5, 11.4, 10.2, 9.2, 9.6, 10.9, 10.2, 9.7, 9.0, 9.4, 10.2, 11.8, 9.4, 9.0, 9.6, 10.7, 9.4, 11.0, 9.4, 9.7, 9.3, 9.5, 9.5, 9.7, 10.3, 8.8, 8.8, 11.0, 11.3, 9.0, 10.5, 9.5, 11.4, 10.8, 9.9, 10.4, 9.6, 10.0, 9.0, 9.0, 9.4, 10.8, 9.2, 10.0, 9.7, 11.2, 9.5, 10.0, 10.2, 9.2, 9.2, 9.0, 10.2, 9.2, 10.1, 10.5, 9.6, 8.7, 12.0, 11.1, 9.1, 10.6, 10.0, 9.3, 10.8, 9.5, 9.0, 9.4, 11.2, 10.5, 9.4, 10.5, 8.8, 9.3, 11.2, 10.7, 10.8, 9.6, 9.5, 9.1, 9.7, 10.4, 9.5, 9.5, 10.5, 9.2, 9.9, 9.5, 9.0, 10.8, 10.6, 10.0, 10.6, 9.2, 8.9, 9.0, 9.9, 9.9, 9.6, 9.7, 10.5, 9.3, 9.9, 10.5, 10.0, 9.8, 9.5, 9.3, 10.2, 9.5, 9.5, 9.4, 10.8, 10.2, 11.1, 10.3, 11.0, 11.2, 9.4, 10.2, 9.0, 8.7, 8.9, 9.5, 11.4, 10.7, 10.0, 8.6, 9.7, 10.6, 9.3, 9.3, 9.4, 9.3, 9.3, 9.5, 9.8, 9.5, 9.8, 9.3, 9.3, 9.4, 9.5, 9.8, 10.5, 9.5, 10.9, 9.5, 9.6, 9.5, 14.9, 10.4, 9.2, 9.4, 8.7, 9.5, 9.7, 9.4, 9.8, 9.4, 8.9, 9.5, 10.9, 9.0, 9.6, 9.4, 10.8, 9.6, 9.2, 9.8, 9.2, 10.0, 10.1, 9.4, 9.4, 10.0, 9.7, 13.0, 10.0], \"xaxis\": \"x\", \"y\": [0.2802292104526322, 0.9455194119275858, 0.4978743212349556, 0.5289145624519528, 0.28439238707197784, 0.2033309570226689, 0.27345747478543325, 0.8322873304845451, 0.389055896812549, 0.3675472469853882, 0.5781933746273124, 0.7401955299744071, 0.44969671697605845, 0.4367887814338696, 0.31593955341667695, 0.3775624358859999, 0.19282181046294666, 0.048451763306065584, 0.6005928650583868, 0.032225376113695775, 0.427412413738938, 0.23973251442015217, 0.13890126550157303, 0.8613925272127, 0.329663916828638, 0.19359965390713213, 0.6827271716759634, 0.1960905505555538, 0.08135735686643118, 0.39737240301928484, 0.13902987396822816, 0.6514166433739288, 0.6994753721471061, 0.7140886736258081, 0.5021795028970708, 0.48743245558712556, 0.5731139673640956, 0.8820820642542792, 0.559972149724866, 0.5061565591493914, 0.5066810377847554, 0.833805652807593, 0.6979972163580744, 0.3177574231538272, 0.13068190592986567, 0.758876109553896, 0.5681062961269688, 0.715544821914063, 0.762062625203523, 0.4464438677531786, 0.20995974230910305, 0.5262622410710028, 0.39442669669188163, 0.2537324982988368, 0.6775437642744659, 0.23876321589577687, 0.6369158982934647, 0.38960060362966165, 0.6034323722874255, 0.7769991715799629, 0.15199748354041337, 0.5641412449951732, 0.7590466800561823, 0.5969347905931296, 0.1048362779837843, 0.7217824369593382, 0.2662339163773806, 0.16472378978351135, 0.37760124376932414, 0.7071736299639594, 0.3436862995931572, 0.8384434752264291, 0.3635333644877426, 0.7813188949129265, 0.7279369976219869, 0.5641098847382463, 0.3863964747623771, 0.9209913370067284, 0.1477144681640183, 0.8809374658555192, 0.6533168894759348, 0.8873477284758582, 0.3697306267878623, 0.28319023347825867, 0.5203701741750857, 0.5523747693308857, 0.6387521731780509, 0.3881380695009739, 0.8487896327149285, 0.4636606453307818, 0.8384434752264291, 0.558266603669778, 0.21657231888677728, 0.3635333644877426, 0.5512671313974766, 0.5051039398599867, 0.5827915753039158, 0.49441682850108926, 0.47309171914705017, 0.6262595591688196, 0.5508242483721094, 0.47332791509789995, 0.7117569366896692, 0.3933786516273859, 0.16465066549244003, 0.7490394132223248, 0.769261050002088, 0.7431932405995126, 0.3141000916210982, 0.723735045552473, 0.6484132891031948, 0.688519894019609, 0.40496704226994307, 0.5803736122960511, 0.6327801522745691, 0.45115706990411364, 0.37268733756108086, 0.9009693101135351, 0.06496389958099598, 0.44431713201158524, 0.39960831974332744, 0.8662156944598043, 0.31018081106061823, 0.5339551117365043, 0.33311273919547707, 0.400132762133902, 0.8528754522806217, 0.14419347879543085, 0.11672350429510901, 0.44556702529145975, 0.6160120899414699, 0.13766892845409207, 0.5517204028384314, 0.5232178919035022, 0.35483403305733974, 0.4900213704561591, 0.8854578072659228, 0.43084122675663034, 0.7601186327653665, 0.14072030431570776, 0.6186690618327106, 0.5245054232921349, 0.7326259458716644, 0.5690781983520095, 0.4018508815425063, 0.24877469563805235, 0.7952501197393639, 0.8766221356386195, 0.303451532996695, 0.5357745481647883, 0.7096524147827454, 0.20877177283968149, 0.8635610141758273, 0.46736762313881036, 0.6061151992073851, 0.113015272873705, 0.40446014603085867, 0.6332606063976143, 0.648705381890928, 0.42186952587750404, 0.8047913565308571, 0.3017058309841093, 0.38406990132164637, 0.33494193042999065, 0.19929939967121216, 0.8624919783238055, 0.528785836409086, 0.43084122675663034, 0.47042159929499583, 0.5061565591493914, 0.5759491569657543, 0.8468794444363914, 0.20342296359496542, 0.5170831534483544, 0.3666753044655067, 0.6131723001375537, 0.4410646109528086, 0.6903416342484309, 0.3866428492574258, 0.4636606453307818, 0.4525459302795702, 0.03199256040434073, 0.7029629492254846, 0.2433141614541866, 0.548755973819273, 0.3775060302547258, 0.06593060991448157, 0.8745624549148976, 0.22931948662359403, 0.27267688907931714, 0.589328430619086, 0.8007160756317941, 0.5525637789187225, 0.5008522318356121, 0.4556212410144909, 0.17391722008742402, 0.43574637053357784, 0.3237440077649342, 0.6071692164257629, 0.6925152430641841, 0.592675381607996, 0.43854150134957587, 0.43854150134957587, 0.42437112972565305, 0.8061118855433299, 0.35195592295594336, 0.7605370065149419, 0.38898578429124253, 0.67510953655807, 0.872979709380305, 0.710510994258769, 0.720290290780972, 0.4820787970895852, 0.42019280799979697, 0.4304380754474639, 0.25285023254778977, 0.3238056884730761, 0.39471961640683584, 0.09510031985475974, 0.367046376808582, 0.21500793651835448, 0.8705359023101334, 0.6100742529031461, 0.6226449432624995, 0.7279369976219869, 0.3643494054700089, 0.09992017521484964, 0.41475515148757036, 0.6462260464983366, 0.14102909592513518, 0.48949585696458414, 0.5239520436918008, 0.6084413884537807, 0.5655473856702703, 0.9517420512476797, 0.7489379515982664, 0.4647937384849751, 0.7915321263825208, 0.44112279258530757, 0.5734340256727429, 0.6604471727860799, 0.4845203185458914, 0.6968730453869196, 0.5315374962198609, 0.8685951485887234, 0.6242442748350044, 0.2912097196987059, 0.7725938221565348, 0.2067629769731588, 0.30221725334927335, 0.13129342562285412, 0.6467789443522378, 0.6994753721471061, 0.11825382206919556, 0.41022417118631593, 0.4882665226122541, 0.7732287086973071, 0.25374762405010176, 0.49441682850108926, 0.3723877205427743, 0.652330313245635, 0.43667799883041203, 0.5964718913578133, 0.55172276504346, 0.24113559934961917, 0.8243980268882987, 0.7263843594269437, 0.43535214809021755, 0.8721122798612579, 0.18723914490145582, 0.6486906676970999, 0.11576704656818047, 0.4328241622975616, 0.491481212420291, 0.5264345378086769, 0.33856526784971647, 0.2967410926251248, 0.581398831228375, 0.5973776665460488, 0.6195406102170065, 0.37782717658841725, 0.323061133240968, 0.17420808473594895, 0.19634770547538957, 0.46492234760650425, 0.49613167963272686, 0.5812209036149294, 0.6057291775435286, 0.63414717387345, 0.5702687187355167, 0.8604975146328253, 0.6309022132706124, 0.48732991249542923, 0.6887148870948692, 0.41581945293096145, 0.5706760596351739, 0.4831274653996314, 0.06684727567316755, 0.49090643211649887, 0.15191610726090596, 0.2711405311223577, 0.7653618545702112, 0.09266565137124261, 0.4554350627407873, 0.19698919164573708, 0.6930185080649685, 0.5227537922811563, 0.50434568709929, 0.7082092780767422, 0.46058046365566996, 0.6735723234187477, 0.4285936050615775, 0.323061133240968, 0.5168500865319015, 0.6161307914674419, 0.23456444218973552, 0.3192004782541023, 0.21968945907811915, 0.5028183230931117, 0.43371621376298963, 0.6744209213341115, 0.5940260419772637, 0.13783310426722128, 0.5136444387530009, 0.5508647999875032, 0.4955911012838212, 0.9814394195009358, 0.8260225289794664, 0.17965956338109995, 0.46844896472597397, 0.6048119589659149, 0.3289160319090978, 0.2454606394453749, 0.7497022835596558, 0.683485355417811, 0.20995974230910305, 0.23504578258460665, 0.37175956099497537, 0.4875530438829156, 0.24982584224249993, 0.6282829625348888, 0.4520795162158371, 0.8200372413039435, 0.12832513643528837, 0.5299630655130737, 0.29552777318700446, 0.24021937552346023, 0.5429028773737552, 0.6311869746243346, 0.4145977043912777, 0.39329840463575844, 0.39070335653410526, 0.4286990948130573, 0.846836560604146, 0.6880850122626078], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (curr)\", \"type\": \"scatter\", \"x\": [9.0, 9.0, 10.9, 9.4, 9.5, 9.8, 10.1, 10.8, 12.0, 10.5, 10.0, 11.0, 12.4, 12.2, 12.8, 10.6, 11.4, 11.5, 10.3, 12.4, 8.9, 9.2, 10.5, 9.6, 10.1, 12.2, 11.0, 11.3, 12.5, 12.3, 13.0, 10.1, 9.5, 9.2, 12.1, 8.7, 11.3333333333333, 9.3, 13.4, 11.8, 12.4, 11.3, 11.8, 8.7, 9.4, 12.7, 9.0, 9.3, 9.5, 12.5, 9.2, 12.8, 10.4, 10.5, 11.4, 8.8, 9.5, 14.0, 9.8, 9.1, 10.4, 12.3, 11.8, 11.2, 9.3, 12.5, 11.0, 10.7, 10.55, 9.6, 9.1, 11.7, 9.2, 11.0, 9.7, 9.3, 9.3, 10.2, 10.8, 9.4, 12.2, 10.2, 11.4, 11.9, 9.8, 12.0, 10.9, 11.5, 11.5, 9.5, 10.8, 11.9, 12.6, 13.2, 10.1, 12.6, 10.0333333333333, 13.1, 10.2, 11.1, 11.1, 9.9, 11.2, 13.2, 9.1, 9.5, 9.4, 12.6, 11.6, 11.3, 10.7, 8.8, 12.3, 12.6, 12.4, 12.4, 11.3, 9.5, 10.4, 11.5, 11.8, 12.1, 12.0, 12.2, 10.9, 12.3, 9.2, 12.3, 10.2, 12.0, 12.5, 13.6, 12.5, 9.1, 9.8, 9.3, 10.5, 10.8, 11.6, 11.0, 11.2, 12.7, 10.8, 9.4, 9.6, 10.5, 9.4, 10.5, 10.9, 10.2, 9.8, 11.2, 9.5, 9.2, 12.5, 12.0, 10.6, 11.3, 10.0, 9.0, 12.7, 9.5, 13.4, 11.7, 10.3, 11.4, 11.5, 9.9, 11.0, 9.2, 11.4, 10.2, 10.9, 11.6, 14.0, 11.8, 11.4, 13.1, 13.6, 12.5, 11.0, 9.2, 9.5, 10.7, 9.4, 11.6, 10.3, 12.6, 8.8, 11.1, 11.0, 9.4, 11.9, 11.9, 10.8, 12.2, 10.5, 12.5, 9.4, 9.8, 12.5, 10.4, 9.6, 11.9, 11.0, 10.6, 9.7, 12.0, 10.1, 10.2, 11.4, 12.8, 10.6, 12.4, 9.0, 12.8, 10.0, 11.3, 11.6, 12.8, 12.2, 10.0, 10.8, 9.5, 9.0, 9.2, 11.2, 10.3, 12.0, 11.2, 9.25, 10.1, 10.8, 12.1, 12.8, 8.9, 12.3, 11.2, 12.0, 11.2, 10.7, 13.3, 13.0, 10.3, 10.4, 11.4, 8.8, 9.2, 10.7, 10.1, 9.6, 9.2, 8.8, 11.6, 10.7, 9.8, 10.2, 11.0, 12.2, 12.2, 10.4, 10.6, 10.7, 10.2, 11.1, 12.5, 12.7, 10.6, 9.3, 9.9, 9.9, 11.3, 12.6, 11.0, 9.3, 9.9, 10.7, 10.4, 10.6, 11.2, 9.1, 11.9, 11.8, 10.0, 12.8, 11.6, 11.45, 11.3, 9.7, 10.2, 11.0, 9.5, 10.1, 12.8, 10.4, 11.0, 9.2, 12.2, 11.0, 11.8, 12.9, 10.3, 11.3, 12.3, 9.0, 11.0, 12.0, 11.0, 12.6, 11.2, 10.5, 11.5, 11.6, 9.3, 11.4, 11.0, 9.8, 9.8, 10.1, 9.5, 12.5, 13.0, 10.3, 9.1, 10.4, 12.7, 11.0, 11.5, 9.6, 12.6, 10.6, 9.0, 9.4, 9.5, 9.2, 9.4, 9.1, 10.0, 10.2, 11.9, 10.8, 10.2, 9.7, 11.4, 9.5, 10.9, 11.4, 10.5, 10.0, 11.7, 11.3, 11.5, 8.8, 9.2, 9.3, 12.0, 10.0, 10.2, 10.4, 12.5, 12.9, 10.3, 8.7, 8.8, 10.2, 9.2, 8.9, 10.3, 9.4, 10.2, 13.05, 10.1, 10.8, 11.4, 11.7, 10.8, 12.0, 11.2, 9.6, 12.4, 9.4, 11.5, 12.2, 9.3, 11.9, 10.5, 11.0, 11.65, 11.4, 11.3, 11.0, 9.3, 11.2, 10.2, 10.2, 10.8, 9.0, 12.5, 12.6, 10.8, 10.6, 11.5, 11.4, 9.5, 12.7, 9.8, 11.0, 10.5, 9.0, 12.5, 9.6, 10.0, 10.4, 9.8, 10.6, 10.3, 9.3, 10.6, 12.6, 12.8, 11.3, 11.9, 12.1, 10.3, 9.2, 11.2, 10.2, 10.6, 12.4, 12.0, 11.7, 10.2, 11.4, 12.8, 10.5, 9.0, 10.8, 9.0, 12.0, 9.0, 9.1, 12.5, 9.8, 9.4, 12.0, 9.2, 14.0, 9.2, 10.0, 9.7, 10.6, 9.2, 9.5, 9.8, 9.0, 11.0, 11.0, 10.65, 9.0, 11.3, 11.3, 13.3, 9.4, 8.7, 10.9, 10.4, 12.7, 10.3, 11.0, 10.6, 10.4, 10.3, 12.5, 8.7, 10.3, 12.8, 9.5, 11.3, 10.2, 11.4, 10.0, 10.6, 11.4, 11.9, 9.6, 11.0, 12.7, 12.5, 9.7, 10.8, 10.1, 9.1, 12.5, 11.0, 9.8, 9.8, 11.4, 10.0, 11.5, 10.3, 11.75, 10.3, 9.1, 11.0, 13.5, 8.9, 9.4, 12.0, 10.1, 12.3, 12.9, 11.3, 14.2, 11.4, 11.5, 12.6, 10.1, 11.7, 9.2, 12.4, 13.0, 10.5, 11.0, 9.2, 11.6, 9.3, 10.7, 12.6, 11.5, 9.1, 11.3, 10.0, 9.0, 13.0, 12.5, 11.6, 11.5, 12.1, 9.7, 9.5, 11.2, 11.3333333333333, 10.9, 11.4, 13.1, 11.5, 10.9, 11.8, 12.3, 9.1, 9.5, 11.4, 10.5, 11.1, 11.0, 10.0, 10.1, 12.3, 11.9, 11.0, 9.8, 10.4, 8.7, 11.4, 9.1, 12.1, 11.4, 11.2, 13.0, 12.5, 10.5, 10.3, 11.1, 12.0, 12.4, 11.0, 11.0, 12.3, 11.0, 12.4, 9.5, 9.6, 10.5, 12.5, 10.0, 10.0, 10.2, 9.5, 10.2, 11.1, 10.0, 10.4, 10.0, 10.0, 11.2, 10.4, 12.5, 9.6, 11.5, 12.7, 10.8, 12.2, 9.4, 11.2, 10.5, 9.8, 10.5, 10.6, 10.4, 9.9, 9.6, 10.5, 9.1, 11.9, 9.8, 12.1, 12.9, 10.4, 9.5, 12.2, 10.4, 12.4, 11.0, 10.0, 10.8, 12.15, 11.45, 10.2, 11.8, 12.1, 9.8, 10.0, 12.7, 11.6, 12.3, 10.2, 13.4, 9.5, 11.0, 12.0, 12.8, 9.2, 8.8, 9.9, 8.9, 9.5, 13.4, 11.0], \"xaxis\": \"x2\", \"y\": [0.33396714643252134, 0.5044440900554997, 0.8874896900044845, 0.4686759077780351, 0.23831547366416572, 0.571181601185031, 0.7785327680196316, 0.7290551099174598, 0.9581131370131553, 0.6801000322064107, 0.413367674560271, 0.6667140739211237, 0.9108229754863395, 0.9275086157065797, 0.9186958597750785, 0.7191871442695774, 0.8184457509658746, 0.8597940676688322, 0.7947045908306632, 0.8244149680645384, 0.42771531534877594, 0.5315376696882942, 0.7136291946100958, 0.5510697799054304, 0.6393262665313312, 0.9016582766249417, 0.8560880110261746, 0.8947361144883382, 0.9102326114023062, 0.840723585394272, 0.9264645566705582, 0.5105903360131552, 0.752648770317166, 0.5855954083225455, 0.8989214048388485, 0.5190750352404293, 0.9560713253502463, 0.7273157243430202, 0.9279672131348602, 0.640103147954212, 0.9158977434209615, 0.9035955072010529, 0.7140955379655831, 0.233508355491505, 0.7280578325574358, 0.8810827811902006, 0.3966129217085586, 0.15541760955422754, 0.5851621750323275, 0.9046111951917862, 0.4177213302712193, 0.7993763114768937, 0.6978409661933959, 0.6473373667551029, 0.770784382977056, 0.6500641275496193, 0.548949563093737, 0.9803199442553986, 0.6150775052067382, 0.391333092160729, 0.6966682278280982, 0.9426748402861506, 0.9170092977635526, 0.844625652038695, 0.5621782696252592, 0.8935808323282117, 0.6792214086077275, 0.6719996755401956, 0.5252591274442797, 0.7277045758687855, 0.4685752957996948, 0.8616549355667619, 0.347491516391863, 0.8224130863808733, 0.5340790568488665, 0.6711667658766297, 0.5277539611022016, 0.7226430813715845, 0.8140972745487615, 0.3280236940194876, 0.9543080196225542, 0.7752655593026647, 0.9223925066666061, 0.8588031784191832, 0.6345107008491314, 0.9393010047953068, 0.7897067132703484, 0.8608062836413887, 0.8367885032124018, 0.38555642305179116, 0.8611944449682004, 0.9172341012895443, 0.9206892306522243, 0.9500505925695213, 0.537798347971205, 0.9173482789702866, 0.44454351342386716, 0.8909704850569525, 0.7351932580165473, 0.6818328744935735, 0.7981559962965634, 0.7626532952948841, 0.807353254900461, 0.964411205143099, 0.4685752957996948, 0.6986526320119215, 0.1956969407137045, 0.9233481403380283, 0.8218375601976645, 0.8536269727611236, 0.5637680470866036, 0.42267134533232753, 0.93003590801509, 0.9364808605729722, 0.8816060831574614, 0.9663102962713933, 0.8345570787709832, 0.4997893986747249, 0.7921603237806832, 0.5586815647381762, 0.8622246464681924, 0.9828719612298703, 0.909295720392338, 0.9476267884443668, 0.5395521774612226, 0.901360886913609, 0.39410444510430487, 0.9262213132200262, 0.6627387433216217, 0.9629433821448677, 0.9614311452267452, 0.9802968012486629, 0.933760787013923, 0.34432718187202205, 0.63596173557573, 0.624364378916488, 0.7417789548241253, 0.7300918276682445, 0.6968315453320488, 0.7840233885688647, 0.8958841271622066, 0.5417426694559925, 0.7102579146160282, 0.6004345411549624, 0.515920701757342, 0.7587882454650442, 0.5029588531082266, 0.6887596776945688, 0.8642849605932809, 0.6469572639767995, 0.8103639651534781, 0.939764354405301, 0.694136577696587, 0.6593725303534554, 0.9646797005081557, 0.7979900311745153, 0.792123904710467, 0.8869579700149332, 0.7351250317969437, 0.5332560471205093, 0.9406873315653421, 0.39362685027924615, 0.9466602521798594, 0.8394325033041952, 0.6633442657978572, 0.8126408700417265, 0.7332457619716184, 0.08024070404520958, 0.8667774471450977, 0.6466814331404849, 0.912366876100516, 0.656670904734599, 0.8701678467707724, 0.8875925797813499, 0.9658725076002231, 0.7668332861852056, 0.8604440887473094, 0.934384507524058, 0.9605946056867319, 0.951253157591183, 0.5749289095213865, 0.6279243005170476, 0.7937202818717513, 0.7665301650725991, 0.700127941221274, 0.8531107444728586, 0.7947045908306632, 0.8870566665876504, 0.5476228787844645, 0.8410401833568673, 0.8736671065238262, 0.6519898659949606, 0.936943112068646, 0.9077719201719568, 0.8071889556778997, 0.8815615400732472, 0.8935313268029127, 0.8782891297971865, 0.5029588531082266, 0.5797201450332624, 0.9416775458320723, 0.5958140198486584, 0.2485157288688957, 0.932021424688801, 0.8531502837407814, 0.6344194678828672, 0.632587077283238, 0.9121448358615357, 0.5776545535910985, 0.9052765174806566, 0.8580390107418799, 0.8998644401112552, 0.6784536879503494, 0.9458342431661766, 0.21387363850783603, 0.9530348339880965, 0.7307391114165022, 0.7187682731289255, 0.6905635603269331, 0.9569274903702625, 0.9287384091375525, 0.3856984054091925, 0.504413920551941, 0.5389739198483336, 0.5921068831639978, 0.10702848140489757, 0.8772993497727819, 0.6361944011057532, 0.8952999713010865, 0.7069578609115064, 0.10632960186243966, 0.6465592619811017, 0.9116333268133815, 0.9210441535829985, 0.9483358221641291, 0.5800224234700003, 0.896951343689222, 0.8958659323404018, 0.8896861436466836, 0.7763142135369961, 0.778627444633172, 0.9274605647284293, 0.9167924025380936, 0.6422094408272838, 0.6363725079258666, 0.8694129796739031, 0.5693182102579236, 0.5315376696882942, 0.6814536952243052, 0.30089534057709466, 0.6689448970920832, 0.6419522618821227, 0.6500641275496193, 0.8221968069187356, 0.9285763346020383, 0.8495153837633861, 0.7135666997345446, 0.8850789772017983, 0.9128367188568884, 0.8709442503982084, 0.44714680104169846, 0.7147831401969469, 0.6814536952243052, 0.5823319261018008, 0.7718122970862826, 0.8925058444773368, 0.9249991097277733, 0.7849066379312727, 0.5120166815330335, 0.7863291630268572, 0.8171821177205619, 0.8878235148823457, 0.9813953955585096, 0.5009899161211654, 0.6787020040856314, 0.2747106808400709, 0.6998114428322438, 0.7191783799678735, 0.7566715075843347, 0.7741630673610131, 0.692871858980435, 0.8706970297938403, 0.9226518689226377, 0.619213859232465, 0.9620625840847012, 0.8161066853745392, 0.7984578805051198, 0.8987836568806694, 0.27900511725120763, 0.747868261422589, 0.8013372150606806, 0.4430395412241901, 0.8082746512504794, 0.9248395818955686, 0.8132668978866627, 0.7926355964369082, 0.7243101498981422, 0.8251498778038484, 0.865753667016409, 0.8784859927081519, 0.9613966942665844, 0.8380103992838959, 0.9376908870460701, 0.8505645904112248, 0.5317253080143199, 0.8756470416862959, 0.8823120896825394, 0.8920529250761863, 0.9565288857220365, 0.92576324319171, 0.8397457208604353, 0.8008835764985612, 0.7620555647282774, 0.6333567796033132, 0.8986985644274655, 0.8289197139212982, 0.38568054861828666, 0.4358764146033148, 0.7013568331933456, 0.5524769805317635, 0.8654015550049637, 0.9625385348003681, 0.4997035751430624, 0.5940434106189647, 0.29640429037896177, 0.9370396801623051, 0.7496358493500708, 0.8521916566704996, 0.7519935213994349, 0.8956127660014477, 0.7563308848917781, 0.5425355780301907, 0.1652985164032473, 0.5777375433929663, 0.5926841497777402, 0.5247451599628447, 0.6215406511606532, 0.646742228322253, 0.5236567091352762, 0.8105889943537302, 0.7614647275399787, 0.7272264480694343, 0.44438282424164377, 0.8051848688934031, 0.253979247575754, 0.8737269176380216, 0.7884186533408385, 0.5226162157005312, 0.7776146375974927, 0.8021344726910251, 0.6794204065079696, 0.8398669626756513, 0.3743394998756179, 0.6593725303534554, 0.41008410759983227, 0.8726624594592295, 0.31336232876890546, 0.6187135046228962, 0.9208146539756937, 0.8948907807194619, 0.9475948217130945, 0.7098971478357265, 0.41970311630379203, 0.5524505095188592, 0.6689295490636696, 0.39534528644804523, 0.6686700461744643, 0.6608417181144597, 0.6289006219381473, 0.8112353209803558, 0.9675531845963172, 0.3468688843876404, 0.8171815196180959, 0.9315945487332388, 0.7612383340144859, 0.43979370974717685, 0.9452166580978265, 0.810349906376065, 0.4979189466877109, 0.9054024939516333, 0.7506263221664519, 0.8595966107872783, 0.9041757536760852, 0.5120166815330335, 0.9246344940597735, 0.622364539475366, 0.7975959936185795, 0.9376528402833735, 0.8270495791839716, 0.7463426393970082, 0.8508295060861325, 0.5277539611022016, 0.7926521549058593, 0.8343380415579561, 0.7973631232158779, 0.5423298306356671, 0.6253812669856891, 0.9342151247863544, 0.9064095870896521, 0.8428584418618921, 0.5680191878381406, 0.8230633503438987, 0.857993972512287, 0.8312116035859974, 0.8886868130574391, 0.5695902702544526, 0.8750573328895943, 0.47134086624147714, 0.6082670858563528, 0.8571520978358925, 0.7006810412396262, 0.6001343818465046, 0.8680196363335714, 0.7833148206731655, 0.835330250744176, 0.6883000602161935, 0.4297997702781997, 0.7132181587745201, 0.941909753873568, 0.9298379484442667, 0.8950633078112005, 0.9652574497835966, 0.8593048115498744, 0.23022113319019433, 0.5548683876071567, 0.8789570823277312, 0.7176343272433334, 0.7135972690872326, 0.900955402304434, 0.89110615578316, 0.8021344726910251, 0.36734125225010755, 0.9233813125795639, 0.9269988231022361, 0.6021478506882372, 0.27064660283581765, 0.7595966254948197, 0.5317253080143199, 0.9626288904553877, 0.518871521713375, 0.4244151934213653, 0.8784852709235653, 0.667697582798242, 0.6791650855490978, 0.8659372985570389, 0.5217980090164113, 0.9757802673562255, 0.20769640873195563, 0.6900575067285889, 0.15051833553221247, 0.8476988333501053, 0.12043274000614122, 0.6546311715671466, 0.412102187638673, 0.6339696776630096, 0.6925917751558638, 0.8074446941396305, 0.8417042066658985, 0.4702054036006336, 0.8107456318417504, 0.934253622333564, 0.9671353887875448, 0.3776875782453083, 0.5133306968464912, 0.8279918435672958, 0.7295730380004212, 0.8398957027397556, 0.7470826509089123, 0.7722124156410631, 0.3944809481034696, 0.5801047158883857, 0.7134138458261836, 0.8265590446981121, 0.5836238058504062, 0.7538957359152121, 0.9708936701567454, 0.41507295289487073, 0.9039211350062085, 0.5109703825452502, 0.8880660412534, 0.6332514250278477, 0.703270618172154, 0.863031725372896, 0.9601349291832292, 0.5845797646527732, 0.8357575010967041, 0.9584406458449958, 0.8733333206292072, 0.4740801794177068, 0.5787650908025566, 0.38525623454815555, 0.5715075300165849, 0.951253157591183, 0.831291834366621, 0.6482062646591596, 0.5447536045265621, 0.8456825404777587, 0.5358725178581014, 0.8893400405584444, 0.5955893395860203, 0.9408369636189147, 0.7580589814818564, 0.4244151934213653, 0.7636885291754726, 0.9532052815091139, 0.6686700461744643, 0.39683939049776734, 0.8309978518015588, 0.06774730328187532, 0.8934061610794648, 0.9459413258233057, 0.8507977517004935, 0.9694554821790147, 0.8640493534313302, 0.8409166048571896, 0.9059760843724536, 0.7278052027863667, 0.8952246802917138, 0.39534528644804523, 0.9558702864115934, 0.9178754126151818, 0.7504628435478695, 0.7568870052952757, 0.32046258648166903, 0.9712495894387816, 0.7125870341029702, 0.8286889773580812, 0.929575727770858, 0.8422483936479932, 0.60065365322741, 0.5775074082600717, 0.7505976846167132, 0.5317253080143199, 0.9590110623565244, 0.9651712957082627, 0.7333643603414158, 0.7757825668725274, 0.8928390517037824, 0.2578168736401774, 0.5355488836719776, 0.8408692583280314, 0.7849780542174357, 0.8711681462620556, 0.8447990405440073, 0.9571933326515756, 0.9307123551507692, 0.6421242495412457, 0.9239207054420927, 0.9336219461922934, 0.4244151934213653, 0.5673643045526261, 0.8301442064454496, 0.528471943574542, 0.8835542071774324, 0.8820947700128993, 0.4561713647735051, 0.584381944856391, 0.9493936477483658, 0.7816316980556022, 0.7770145472448273, 0.8495153837633861, 0.8318035560268552, 0.5220388622338656, 0.8589980209217414, 0.21216021099657945, 0.8782303617207965, 0.901850575196968, 0.7683760396387002, 0.9559989503713009, 0.938411491366706, 0.7225398931917507, 0.5918361617892179, 0.8596378534897678, 0.8816239240572568, 0.9296844522785247, 0.8299758417251202, 0.7538846798551382, 0.931253582726863, 0.6902425303942638, 0.9299571155275668, 0.35461708236434614, 0.6119587629530028, 0.8979450471026776, 0.8782891297971865, 0.6144930729026484, 0.5601837238662909, 0.4230258756549153, 0.5115702372514986, 0.6133200318312215, 0.8287048127179734, 0.42887934024879554, 0.5543929044930882, 0.5414149972460248, 0.7453725251924848, 0.6522898344923613, 0.6445138145159856, 0.9212190995841192, 0.6991293681294938, 0.9188224881967051, 0.9444881948020799, 0.8399825546316605, 0.6440269003431431, 0.45260210695563535, 0.6678228102737954, 0.8535669746933884, 0.23469888428232324, 0.7581156815660375, 0.8329520097124233, 0.5886389680190937, 0.4250130050586104, 0.290761161529129, 0.9065968169685268, 0.39757013049667705, 0.9584529405260903, 0.24804178200132845, 0.8400605958344816, 0.9562762484868867, 0.5923100188758571, 0.5355488836719776, 0.6866862751474886, 0.753715093249364, 0.9302702282582556, 0.8405005145861136, 0.7758456574858743, 0.8270123797965384, 0.9270997487744173, 0.8779999285967196, 0.6350604679157676, 0.9057987369792326, 0.9732730617650076, 0.28007269673131574, 0.5393237551960537, 0.9509318156255189, 0.8055358405733448, 0.8512314640165554, 0.6752183046546253, 0.9766791413071304, 0.26893819095773785, 0.5105552073939665, 0.7964242570425004, 0.9159462749375985, 0.46312559485344046, 0.7889853219989779, 0.5331772070153998, 0.6250130361556073, 0.5340700079782073, 0.8981158701031157, 0.8424802355113449], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [11.0, 8.9, 11.0, 10.1, 8.9, 8.7, 10.7, 9.7, 10.0, 9.9, 9.2, 10.5, 9.8, 9.2, 9.1, 8.8, 9.0, 10.3, 12.0, 10.8, 11.7, 9.7, 9.7, 8.9, 12.0, 10.9, 9.4, 9.7, 9.8, 10.2, 8.7, 8.7, 9.6, 9.3, 10.5, 9.5, 9.4, 9.6, 9.4, 9.3, 12.4, 9.3, 9.2, 9.3, 11.4, 10.5666666666667, 9.4, 9.8, 9.0, 10.9, 10.4, 8.8, 11.5, 11.0, 9.7, 9.3, 9.8, 11.1, 9.4, 9.4, 11.1, 9.7, 9.0, 9.7, 9.3, 10.9, 9.2, 9.4, 10.7, 9.0, 9.5, 11.3, 10.4666666666667, 9.4, 10.5, 11.1, 8.9, 10.4, 9.2, 9.0, 9.6, 9.9, 9.5, 9.5, 10.1, 10.4, 9.0, 8.9, 9.8, 10.5, 9.5, 9.5, 9.7, 9.2, 9.7, 10.9, 10.8, 9.2, 8.9, 9.2, 9.4, 10.6, 8.8, 9.3, 9.4, 10.5, 9.4, 9.5, 9.2, 9.1, 9.4, 9.1, 9.8, 9.9, 10.6, 10.6, 9.4, 9.4, 9.5, 11.0, 10.2, 11.4, 10.6, 9.5, 10.1, 9.4, 11.0, 9.7, 10.1, 10.5, 13.4, 10.4, 9.2, 10.5, 9.4, 8.7, 11.4, 10.4, 9.4, 8.8, 10.7, 10.1, 10.3, 11.7, 9.5, 10.3, 10.9, 9.2, 9.5, 10.0, 9.2, 10.0, 10.5, 9.5, 10.1, 10.5, 10.7, 9.4, 9.6, 9.3, 10.4, 9.0, 10.4, 9.2, 9.0, 10.4, 11.3, 10.9, 11.0, 10.3, 9.2, 10.5, 9.4, 10.2, 9.5, 12.4, 10.1, 9.3, 8.8, 10.6, 10.3, 8.0, 10.3, 9.8, 10.5, 10.5, 9.3, 9.2, 10.2, 9.3, 9.7, 9.7, 10.1, 11.1, 8.6, 9.5, 9.1, 9.8, 9.1, 9.6, 9.5, 9.0, 9.0, 9.4, 11.4, 9.4, 9.0, 9.6, 9.0, 8.6, 10.2, 9.0, 9.7, 10.5, 9.3, 11.5, 9.0, 10.2, 9.3, 9.8, 8.7, 9.3, 9.3, 9.4, 9.1, 10.0, 9.1, 10.3, 10.6, 10.1, 8.8, 10.4, 8.8, 9.7, 9.6, 9.4, 9.8, 10.9, 9.2, 11.4, 9.2, 9.7, 10.9, 9.4, 11.4, 10.0, 10.7, 9.3, 9.4, 10.0, 9.0, 8.6, 10.6, 8.8, 9.9, 8.8, 9.4, 9.5, 9.5, 10.8, 9.8, 10.0, 10.1, 10.1, 9.5, 10.8, 9.7, 11.4, 12.2, 9.6, 11.4, 10.0, 9.3, 9.6, 10.2, 9.0, 9.5, 9.5, 10.1, 9.2, 10.0, 9.5, 11.4, 10.9, 9.2, 11.2, 10.1, 9.1, 11.4, 9.8, 9.5, 9.7, 9.2, 9.5, 11.1, 10.2, 9.5, 9.0, 9.2, 10.3, 11.4, 10.6, 10.4, 9.3, 9.5, 10.8, 10.5, 9.5, 9.0, 9.4, 9.4, 9.6, 10.2, 8.7, 9.9, 8.8, 9.8, 9.5, 9.5, 9.3, 11.8, 9.4, 10.1, 9.5, 11.5, 9.4, 8.8, 10.4, 9.5, 10.4666666666667, 9.8, 9.5, 10.5, 11.4, 9.7, 10.4, 9.3, 10.2, 8.8, 10.7, 8.9, 9.2, 10.4, 9.8, 8.4, 10.3, 9.3, 11.0, 8.8, 10.0, 9.3, 11.4], \"xaxis\": \"x2\", \"y\": [0.8142007211296887, 0.07257977436397642, 0.7430932382113554, 0.8214862427787604, 0.5698848321031316, 0.6048119589659149, 0.6466669219762841, 0.14510080060429495, 0.2250304680670007, 0.28492472637839966, 0.42061632734231896, 0.8281252124183194, 0.49622399336621903, 0.3482895521074759, 0.4678833354511545, 0.5708968386647719, 0.37048677721847617, 0.553632248395139, 0.8702137350251022, 0.42186952587750404, 0.8696774950675754, 0.5410576963494411, 0.3971326977900686, 0.3275001196198921, 0.9448289227093116, 0.7109941475090589, 0.41925580570138304, 0.3675472469853882, 0.6721911818800557, 0.5562207270314473, 0.5262426608517637, 0.3244609607385458, 0.15056615442564347, 0.15676979724311627, 0.6037730696030339, 0.6342511279653397, 0.021947035536558718, 0.32429164429335744, 0.5678746850743716, 0.3571680467137555, 0.7755534309390314, 0.3240287891037917, 0.699424662214302, 0.5151532452376618, 0.7564675819717819, 0.38343591026479057, 0.19811005648518398, 0.3168419703358067, 0.5315947262677626, 0.9269044449273315, 0.8260225289794664, 0.451791899378283, 0.830516920403184, 0.47128602930186, 0.19027823806377472, 0.5181346713949518, 0.29552777318700446, 0.45414400334446664, 0.39329840463575844, 0.42327932510626076, 0.45838907164509224, 0.2233864252642039, 0.3628419195926303, 0.6709353200988277, 0.46058046365566996, 0.25551237833043455, 0.7234147543269824, 0.1481282262733752, 0.314935793994079, 0.20050531530561894, 0.37453315488553635, 0.701015529968035, 0.6343341418527783, 0.1739320900588749, 0.734996253073231, 0.8172229478314255, 0.3598554146739685, 0.7121055211356295, 0.2620604909731644, 0.3421138035730516, 0.6951268813066005, 0.35208221297891723, 0.452099210446082, 0.18907620085798427, 0.5444201651108793, 0.6484058972837882, 0.3258186925596978, 0.5963383680780668, 0.6202666247822538, 0.576738593946626, 0.5054992484109841, 0.2972245631729925, 0.6844333356791464, 0.42629475072919953, 0.4405153833121037, 0.01207867704715336, 0.7609288944606691, 0.23951123982998349, 0.09310514674080905, 0.5084920166510624, 0.33067609257366243, 0.36481899584296196, 0.5708968386647719, 0.3194802059637459, 0.14207297841267416, 0.5776897120055972, 0.2026163425795633, 0.37909000048748537, 0.38206764842015895, 0.41324683104354176, 0.17826143731067332, 0.42339414872454434, 0.39148091864802853, 0.3511350413575442, 0.8053393751847749, 0.5937005322868365, 0.6849942580153355, 0.38930033076762494, 0.5168500865319015, 0.5699073288866824, 0.5376087249833421, 0.8185832461647057, 0.25950508036415604, 0.20394483716883388, 0.3303044530853749, 0.2528102968078532, 0.8477719856767125, 0.5217124250004609, 0.3303044530853749, 0.5382885532339231, 0.9625763866028243, 0.6536174904341296, 0.42629475072919953, 0.6458781618432388, 0.46574001023909845, 0.37268733756108086, 0.8180085473348132, 0.35493594975273335, 0.2423640089427935, 0.3636330633241046, 0.6421622311157122, 0.5444201651108793, 0.7396308412796291, 0.9036153464846048, 0.21101569987323432, 0.6004024464464508, 0.7595861882737439, 0.486549602332862, 0.2379839758891197, 0.5147825233229498, 0.2065932277190248, 0.4342628292980428, 0.5940848250235929, 0.4857193175270624, 0.5332610244722983, 0.5402196969638672, 0.8578846895389459, 0.5290225674595067, 0.6074669506688956, 0.1847839155105034, 0.3581391437324269, 0.4304380754474639, 0.8410120374942113, 0.5810086483513661, 0.19026233744636453, 0.7223494520380469, 0.8589928738613049, 0.8374625942163022, 0.781203852328267, 0.73983195178881, 0.41156537259256004, 0.7482873396984137, 0.44431713201158524, 0.7113673874393347, 0.49869552495399233, 0.7627102864663872, 0.37193390769028617, 0.37187810520956766, 0.3773291605703562, 0.8719651627687759, 0.6218762459828849, 0.3781393537983126, 0.553632248395139, 0.47624084907999176, 0.774399353278846, 0.5840424935194366, 0.5601025471409736, 0.6186690618327106, 0.620611700356168, 0.5755798886129706, 0.15047650536569443, 0.5530049338021776, 0.6597439619439023, 0.8300222117931148, 0.3490158529243493, 0.4410646109528086, 0.5067909967309752, 0.5851482063434866, 0.7149827463187939, 0.4849259975950144, 0.2094210588097294, 0.33399024531412796, 0.4083143545243069, 0.7497022835596558, 0.7817929239213606, 0.7637421953724776, 0.3825655414920891, 0.6611482494098961, 0.19022241257108333, 0.44972084577511023, 0.5476732603321269, 0.4831274653996314, 0.5077048340566679, 0.7289504589448288, 0.4379810490617926, 0.8017221455714771, 0.6434673631716396, 0.5059779734745421, 0.6065367192264559, 0.650368705032214, 0.34567471266024347, 0.39561589000187136, 0.3427787545601037, 0.4676404271158623, 0.5332283386400669, 0.4519108142444285, 0.40662831629925006, 0.42305576187259053, 0.22032895172816622, 0.5278715769330472, 0.43679486629948455, 0.743933429392776, 0.5269515041023835, 0.5008800654866953, 0.214168174561682, 0.44879088851457377, 0.683485355417811, 0.807753104897186, 0.42629475072919953, 0.8502951424821861, 0.17421175568219957, 0.25491371883486935, 0.7595861882737439, 0.6571724132942184, 0.7813188949129265, 0.5626906653340306, 0.8674288259883418, 0.6600514650598344, 0.4827749661719035, 0.5456147119159479, 0.39827550056677263, 0.27323823737433794, 0.695896529362927, 0.5048820477254727, 0.5422349097465021, 0.5610936746718964, 0.6571724132942184, 0.3088751107498249, 0.45428761266464013, 0.6604471727860799, 0.43371621376298963, 0.6171893197168647, 0.8100511550343341, 0.8100511550343341, 0.605832578461134, 0.5526475584669951, 0.4275055171336787, 0.8734720021260204, 0.8508295378350301, 0.5807723706867254, 0.8272749548927728, 0.2670652478909882, 0.7020144194675465, 0.4615566916191992, 0.7055847950248242, 0.43389869234556755, 0.6071692164257629, 0.3496825637352313, 0.23676491619791426, 0.7057755976874825, 0.15539001443149586, 0.6187538615870153, 0.8735882828904331, 0.30049486749739024, 0.23191705420611952, 0.8913917397916864, 0.4977157214618499, 0.16961113509580228, 0.8485494795219795, 0.4760032757956232, 0.5053843099270294, 0.2676015269871764, 0.3627664421236291, 0.15146266807038725, 0.7898179638281774, 0.6145296307645981, 0.3790380236797623, 0.3003532640340299, 0.6086112016774773, 0.39906793889171593, 0.8185832461647057, 0.6715802865662828, 0.8260225289794664, 0.6056902064850618, 0.400132762133902, 0.39471961640683584, 0.6449859309106076, 0.5637152910565628, 0.39949420960438964, 0.5490401551410112, 0.4398875418860128, 0.30916577334906253, 0.7093303227687476, 0.4562508424819209, 0.40444044759428516, 0.5773483646962835, 0.447777692034652, 0.4961542215384683, 0.32474312180562226, 0.21192693199409943, 0.9056903490933487, 0.5013816399998683, 0.758876109553896, 0.6364928148646596, 0.2952804752502578, 0.4748951900520853, 0.43679486629948455, 0.5479962315186364, 0.4728142838839701, 0.6343341418527783, 0.12248807650217919, 0.5052525886146573, 0.8281252124183194, 0.8930081609652758, 0.36283726088930296, 0.8098196742550625, 0.656477404357746, 0.193885049884708, 0.5269515041023835, 0.49858469647139786, 0.32780472036158087, 0.24927512797396847, 0.6148718578314069, 0.10691527318901187, 0.136775438340409, 0.8489192718114075, 0.2600203086082801, 0.8142007211296887, 0.5269515041023835, 0.7966615933629455, 0.5633234794197017, 0.767479452333631], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"alcohol\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"alcohol\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}}, {\"id\": \"alcohol_bad\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (ref)\", \"type\": \"scatter\", \"x\": [8.7, 12.6, 10.6, 10.5, 9.4, 9.5, 9.7, 10.4, 9.3, 9.7, 10.2, 11.0, 8.7, 10.7, 9.3, 9.5, 9.5, 9.8, 9.2, 10.9, 9.5, 9.1, 11.2, 11.2, 9.9, 9.8, 9.9, 10.1, 9.1, 10.1, 9.6, 10.4, 10.8, 10.0, 9.1, 10.1, 10.0, 10.8, 9.6, 9.2, 9.2, 10.6, 9.5, 8.9, 9.5, 10.1, 9.1, 10.5, 10.6, 9.3, 9.4, 9.1, 9.3, 9.6, 9.8, 9.2, 10.6, 10.6, 10.1, 11.0, 9.3, 10.0, 12.6, 9.4, 9.2, 10.4, 9.2, 9.9, 9.8, 10.1, 8.8, 11.0, 8.7, 11.4, 10.2, 10.0, 8.9, 11.1, 9.2, 12.0, 10.0, 11.1, 9.0, 9.05, 9.8, 10.9, 10.1, 10.0, 11.6, 9.2, 11.0, 9.4, 9.8, 8.7, 9.1, 9.5, 9.1, 9.5, 9.2, 9.6, 9.2, 9.7, 10.2, 9.0, 9.3, 9.3, 10.3, 11.4, 9.0, 10.5, 10.4, 9.9, 9.2, 9.0, 10.4, 9.6, 8.7, 11.4, 10.1, 9.4, 8.9, 12.8, 9.1, 9.7, 8.8, 9.5, 10.6, 9.4, 9.5, 9.4, 9.6, 11.3, 9.4, 9.2, 9.3, 10.0, 11.05, 9.1, 11.2, 9.9, 9.2, 9.4, 11.4, 9.2, 9.9, 9.0, 11.0, 10.6, 9.7, 9.6, 11.1, 9.5, 11.4, 10.2, 9.2, 9.8, 9.2, 9.5, 9.9, 10.8, 11.5, 10.2, 9.6, 8.4, 9.5, 11.5, 9.53333333333333, 9.1, 9.4, 9.2, 9.6, 11.5, 9.4, 9.3, 9.4, 10.3, 9.5, 11.4, 10.2, 9.2, 9.6, 10.9, 10.2, 9.7, 9.0, 9.4, 10.2, 11.8, 9.4, 9.0, 9.6, 10.7, 9.4, 11.0, 9.4, 9.7, 9.3, 9.5, 9.5, 9.7, 10.3, 8.8, 8.8, 11.0, 11.3, 9.0, 10.5, 9.5, 11.4, 10.8, 9.9, 10.4, 9.6, 10.0, 9.0, 9.0, 9.4, 10.8, 9.2, 10.0, 9.7, 11.2, 9.5, 10.0, 10.2, 9.2, 9.2, 9.0, 10.2, 9.2, 10.1, 10.5, 9.6, 8.7, 12.0, 11.1, 9.1, 10.6, 10.0, 9.3, 10.8, 9.5, 9.0, 9.4, 11.2, 10.5, 9.4, 10.5, 8.8, 9.3, 11.2, 10.7, 10.8, 9.6, 9.5, 9.1, 9.7, 10.4, 9.5, 9.5, 10.5, 9.2, 9.9, 9.5, 9.0, 10.8, 10.6, 10.0, 10.6, 9.2, 8.9, 9.0, 9.9, 9.9, 9.6, 9.7, 10.5, 9.3, 9.9, 10.5, 10.0, 9.8, 9.5, 9.3, 10.2, 9.5, 9.5, 9.4, 10.8, 10.2, 11.1, 10.3, 11.0, 11.2, 9.4, 10.2, 9.0, 8.7, 8.9, 9.5, 11.4, 10.7, 10.0, 8.6, 9.7, 10.6, 9.3, 9.3, 9.4, 9.3, 9.3, 9.5, 9.8, 9.5, 9.8, 9.3, 9.3, 9.4, 9.5, 9.8, 10.5, 9.5, 10.9, 9.5, 9.6, 9.5, 14.9, 10.4, 9.2, 9.4, 8.7, 9.5, 9.7, 9.4, 9.8, 9.4, 8.9, 9.5, 10.9, 9.0, 9.6, 9.4, 10.8, 9.6, 9.2, 9.8, 9.2, 10.0, 10.1, 9.4, 9.4, 10.0, 9.7, 13.0, 10.0], \"xaxis\": \"x\", \"y\": [0.7197707895473677, 0.05448058807241418, 0.5021256787650443, 0.4710854375480472, 0.7156076129280222, 0.7966690429773311, 0.7265425252145667, 0.16771266951545494, 0.610944103187451, 0.6324527530146118, 0.42180662537268765, 0.2598044700255929, 0.5503032830239416, 0.5632112185661304, 0.6840604465833231, 0.6224375641140001, 0.8071781895370533, 0.9515482366939344, 0.3994071349416132, 0.9677746238863042, 0.572587586261062, 0.7602674855798478, 0.861098734498427, 0.1386074727873, 0.6703360831713621, 0.8064003460928679, 0.3172728283240366, 0.8039094494444462, 0.9186426431335688, 0.6026275969807151, 0.8609701260317718, 0.3485833566260712, 0.3005246278528939, 0.2859113263741919, 0.4978204971029292, 0.5125675444128744, 0.4268860326359044, 0.11791793574572085, 0.440027850275134, 0.4938434408506086, 0.4933189622152446, 0.166194347192407, 0.30200278364192557, 0.6822425768461728, 0.8693180940701344, 0.24112389044610405, 0.43189370387303117, 0.284455178085937, 0.23793737479647703, 0.5535561322468214, 0.7900402576908969, 0.47373775892899717, 0.6055733033081183, 0.7462675017011632, 0.32245623572553406, 0.7612367841042231, 0.36308410170653527, 0.6103993963703384, 0.3965676277125745, 0.2230008284200371, 0.8480025164595866, 0.43585875500482685, 0.24095331994381775, 0.4030652094068704, 0.8951637220162157, 0.2782175630406618, 0.7337660836226194, 0.8352762102164887, 0.6223987562306759, 0.2928263700360406, 0.6563137004068428, 0.16155652477357085, 0.6364666355122575, 0.2186811050870735, 0.27206300237801306, 0.4358901152617537, 0.6136035252376228, 0.07900866299327158, 0.8522855318359817, 0.11906253414448076, 0.3466831105240652, 0.11265227152414181, 0.6302693732121377, 0.7168097665217413, 0.4796298258249143, 0.4476252306691143, 0.3612478268219491, 0.611861930499026, 0.15121036728507153, 0.5363393546692182, 0.16155652477357085, 0.441733396330222, 0.7834276811132227, 0.6364666355122575, 0.44873286860252337, 0.4948960601400133, 0.4172084246960842, 0.5055831714989107, 0.5269082808529498, 0.3737404408311804, 0.4491757516278906, 0.5266720849021, 0.2882430633103308, 0.6066213483726142, 0.83534933450756, 0.2509605867776752, 0.230738949997912, 0.25680675940048736, 0.6858999083789018, 0.27626495444752697, 0.35158671089680515, 0.311480105980391, 0.5950329577300569, 0.4196263877039489, 0.3672198477254309, 0.5488429300958864, 0.6273126624389191, 0.0990306898864649, 0.935036100419004, 0.5556828679884147, 0.6003916802566726, 0.1337843055401957, 0.6898191889393818, 0.46604488826349566, 0.6668872608045229, 0.5998672378660981, 0.14712454771937833, 0.8558065212045691, 0.883276495704891, 0.5544329747085402, 0.38398791005853006, 0.8623310715459079, 0.4482795971615686, 0.4767821080964978, 0.6451659669426603, 0.5099786295438409, 0.11454219273407718, 0.5691587732433696, 0.2398813672346335, 0.8592796956842923, 0.38133093816728936, 0.4754945767078651, 0.2673740541283356, 0.43092180164799054, 0.5981491184574936, 0.7512253043619477, 0.20474988026063612, 0.12337786436138054, 0.6965484670033051, 0.4642254518352117, 0.29034758521725457, 0.7912282271603185, 0.1364389858241727, 0.5326323768611896, 0.3938848007926149, 0.886984727126295, 0.5955398539691413, 0.3667393936023857, 0.35129461810907203, 0.578130474122496, 0.1952086434691429, 0.6982941690158907, 0.6159300986783536, 0.6650580695700093, 0.8007006003287879, 0.13750802167619447, 0.47121416359091395, 0.5691587732433696, 0.5295784007050042, 0.4938434408506086, 0.4240508430342457, 0.1531205555636086, 0.7965770364050346, 0.4829168465516456, 0.6333246955344933, 0.38682769986244625, 0.5589353890471914, 0.30965836575156913, 0.6133571507425741, 0.5363393546692182, 0.5474540697204298, 0.9680074395956593, 0.29703705077451537, 0.7566858385458134, 0.451244026180727, 0.6224939697452743, 0.9340693900855184, 0.1254375450851024, 0.770680513376406, 0.7273231109206828, 0.410671569380914, 0.19928392436820586, 0.44743622108127745, 0.4991477681643879, 0.5443787589855091, 0.826082779912576, 0.5642536294664222, 0.6762559922350657, 0.39283078357423706, 0.3074847569358159, 0.40732461839200396, 0.5614584986504241, 0.5614584986504241, 0.575628870274347, 0.1938881144566701, 0.6480440770440566, 0.23946299348505806, 0.6110142157087575, 0.32489046344192996, 0.127020290619695, 0.28948900574123104, 0.27970970921902805, 0.5179212029104148, 0.579807192000203, 0.5695619245525361, 0.7471497674522103, 0.6761943115269239, 0.6052803835931642, 0.9048996801452402, 0.632953623191418, 0.7849920634816455, 0.12946409768986655, 0.3899257470968539, 0.37735505673750047, 0.27206300237801306, 0.6356505945299911, 0.9000798247851504, 0.5852448485124296, 0.3537739535016634, 0.8589709040748648, 0.5105041430354158, 0.4760479563081992, 0.3915586115462193, 0.4344526143297297, 0.04825794875232026, 0.25106204840173363, 0.5352062615150248, 0.2084678736174792, 0.5588772074146924, 0.42656597432725707, 0.3395528272139201, 0.5154796814541086, 0.30312695461308037, 0.4684625037801391, 0.13140485141127656, 0.37575572516499556, 0.7087902803012941, 0.22740617784346517, 0.7932370230268412, 0.6977827466507267, 0.8687065743771458, 0.3532210556477622, 0.3005246278528939, 0.8817461779308045, 0.5897758288136841, 0.5117334773877459, 0.2267712913026929, 0.7462523759498982, 0.5055831714989107, 0.6276122794572256, 0.34766968675436505, 0.563322001169588, 0.4035281086421867, 0.44827723495654004, 0.7588644006503809, 0.17560197311170134, 0.2736156405730563, 0.5646478519097824, 0.12788772013874206, 0.8127608550985441, 0.35130933230290007, 0.8842329534318195, 0.5671758377024384, 0.508518787579709, 0.4735654621913231, 0.6614347321502836, 0.7032589073748752, 0.418601168771625, 0.40262233345395115, 0.38045938978299354, 0.6221728234115828, 0.6769388667590319, 0.825791915264051, 0.8036522945246104, 0.5350776523934957, 0.5038683203672731, 0.4187790963850706, 0.3942708224564714, 0.36585282612655, 0.42973128126448334, 0.1395024853671747, 0.36909778672938764, 0.5126700875045708, 0.31128511290513083, 0.5841805470690385, 0.42932394036482613, 0.5168725346003686, 0.9331527243268325, 0.5090935678835011, 0.848083892739094, 0.7288594688776423, 0.23463814542978878, 0.9073343486287574, 0.5445649372592127, 0.8030108083542629, 0.30698149193503155, 0.47724620771884374, 0.49565431290071005, 0.29179072192325783, 0.53941953634433, 0.32642767658125227, 0.5714063949384225, 0.6769388667590319, 0.48314991346809855, 0.3838692085325581, 0.7654355578102645, 0.6807995217458978, 0.7803105409218809, 0.4971816769068883, 0.5662837862370104, 0.32557907866588853, 0.4059739580227363, 0.8621668957327787, 0.4863555612469991, 0.44913520001249685, 0.5044088987161788, 0.018560580499064172, 0.17397747102053363, 0.8203404366189, 0.531551035274026, 0.3951880410340851, 0.6710839680909022, 0.7545393605546251, 0.25029771644034415, 0.31651464458218903, 0.7900402576908969, 0.7649542174153934, 0.6282404390050247, 0.5124469561170844, 0.7501741577575001, 0.3717170374651112, 0.5479204837841629, 0.1799627586960565, 0.8716748635647116, 0.4700369344869263, 0.7044722268129955, 0.7597806244765397, 0.4570971226262448, 0.3688130253756654, 0.5854022956087224, 0.6067015953642416, 0.6092966434658947, 0.5713009051869427, 0.15316343939585397, 0.31191498773739224], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [11.2, 10.0, 12.7, 10.5, 9.4, 10.1, 13.5, 10.4, 12.4, 11.5, 10.0, 9.8, 10.5, 9.1, 9.5, 9.6, 11.7, 11.2, 12.3, 11.9, 10.0, 12.3, 10.1, 11.9, 11.5, 10.0, 13.6, 11.3, 9.6, 12.8, 12.2, 10.0, 10.9, 11.8, 12.5, 10.0, 9.5, 12.9, 12.8, 11.3, 11.5, 10.2, 12.1, 9.7, 10.0, 8.8, 9.0, 12.3, 12.0, 12.0, 9.7, 8.9, 12.4, 10.3, 11.1, 8.6, 10.8, 11.8, 10.8, 12.5, 10.4, 12.8, 12.2, 10.2, 9.8, 9.2, 11.7, 10.5, 9.8, 13.4, 12.2, 13.4, 11.0, 12.3, 10.7, 9.8, 12.8, 12.3, 10.9, 12.4, 10.1, 13.5, 11.0, 10.4, 12.2, 11.3, 11.3, 9.9, 13.4, 9.3, 10.4, 12.2, 10.2, 12.4, 10.6, 11.3, 10.6, 12.6, 11.2, 9.4, 10.2, 8.9, 11.9, 11.0, 12.5, 9.7, 12.2, 10.6, 11.4, 10.75, 12.4, 8.8, 9.8, 10.9, 10.7, 12.7, 11.4, 11.5, 9.1, 11.0, 9.0, 9.8, 10.4, 8.9, 9.6, 10.5, 9.5, 8.9, 11.0, 9.9, 10.6, 14.0, 9.1, 11.0, 9.9, 12.9, 10.0, 11.0, 13.4, 10.0, 12.7, 10.5, 10.5, 10.6, 9.3, 10.6, 11.7, 10.9, 10.6, 9.2, 9.0, 10.5, 10.3, 9.5, 9.0, 11.9, 11.4, 12.1, 11.4, 12.0, 10.5, 9.8, 11.7, 12.1, 10.4, 9.6, 10.2, 10.1, 8.9, 12.1, 11.1, 9.4, 9.7, 10.5, 10.5, 10.1, 10.0, 9.8, 11.2, 10.8, 10.7, 12.1, 11.9, 12.7, 9.6, 11.0, 13.55, 10.1, 11.6, 10.3, 11.2, 12.8, 12.5, 12.2, 9.7, 12.1, 8.7, 11.0, 11.8, 10.5, 10.7, 12.5, 12.2, 11.8, 10.6, 12.0, 10.9, 10.8, 8.8, 9.5, 10.4, 10.8, 12.1, 10.8, 11.5, 10.0, 11.5, 10.8, 10.9, 12.8, 10.2, 8.7, 10.5, 12.9, 10.6, 10.8, 9.1, 9.1, 10.8, 10.6, 11.0, 9.9, 11.5, 10.4, 11.9, 12.2, 11.0, 9.8, 11.8, 10.7, 10.8, 9.0, 9.2, 8.8, 9.5, 11.4, 10.1, 10.1, 9.3, 12.3, 8.6, 9.1, 10.8, 11.2, 11.2, 11.0, 12.0, 9.4, 12.6, 11.5, 9.0, 12.2, 10.9, 12.3, 11.6, 11.2, 13.2, 12.5, 10.3, 13.0, 10.8, 11.4, 11.4, 11.0, 13.0, 9.9, 10.9, 11.7, 12.8, 10.5, 11.2, 11.6, 12.2, 12.75, 11.9, 11.9, 9.3, 10.0, 9.6, 12.0, 10.1, 12.0, 12.4, 11.2, 10.9666666666667, 9.1, 9.9, 10.0, 10.9, 10.7, 12.6, 10.5, 12.3, 11.0, 9.7, 11.0, 11.4, 11.5, 9.0, 10.1, 9.5, 9.0, 12.4, 11.3, 11.0, 9.7, 9.4, 12.8, 10.9, 12.2, 12.6, 11.4, 12.6, 11.7, 11.0, 9.5, 9.7, 11.2, 9.7, 12.2, 11.0, 12.4, 9.3, 10.4, 10.8, 9.1, 10.5, 12.8, 9.6, 10.5, 9.9, 11.1, 12.1, 9.5, 9.9, 10.0, 9.4, 9.0, 12.4, 8.9, 10.8, 11.2, 10.9, 11.0, 9.6, 11.4, 11.0, 12.4, 10.1, 12.2, 9.4, 10.4, 10.3, 11.5, 9.8, 9.7, 12.6, 11.2, 12.0, 9.0, 10.8, 10.3, 10.4, 10.1, 12.9, 12.5, 12.7, 10.4, 9.9, 9.5, 9.2, 10.8, 9.1, 9.3, 9.0, 10.9, 9.0, 9.5, 10.5, 12.2, 11.2666666666667, 8.9, 9.9, 11.0, 10.4, 11.0, 11.8, 10.6, 12.6, 9.4, 11.5, 9.3, 12.5, 8.8, 11.5, 10.4, 10.6, 11.3, 10.8, 8.7, 10.4, 11.1, 11.3, 11.2, 10.5, 11.9, 11.6, 9.1, 10.8, 9.4, 10.5, 10.8, 9.6, 9.0, 10.2, 11.0, 11.2, 11.4333333333333, 12.2, 12.0, 12.4, 12.4, 12.8, 11.6333333333333, 10.0, 13.1, 11.5, 11.3, 12.3, 10.6, 11.0, 10.7, 11.8, 10.1, 10.2, 10.4, 9.6, 9.5, 11.0, 10.9, 12.6, 12.4, 11.9, 10.2, 9.7, 13.0, 10.2, 10.9, 9.9, 9.1, 11.2, 9.5, 11.0, 9.2, 11.5, 11.0666666666667, 10.4, 11.0, 10.4, 13.4, 9.6, 9.4, 8.7, 8.8, 12.4, 12.9, 12.4, 11.0, 10.2, 10.0, 11.7, 8.5, 8.8, 9.7, 9.0, 12.0, 12.5, 9.0, 11.7, 9.2, 9.4, 9.5, 9.2, 10.3, 11.5, 11.4, 9.6, 10.1, 12.8, 10.5, 10.5, 12.0, 11.7, 9.0, 12.5, 10.1, 11.4, 9.9, 12.3, 12.2, 12.3, 12.1, 10.4, 9.0, 12.1, 12.3, 11.9, 9.3, 11.6, 12.7, 9.5, 13.2, 13.0, 11.5, 9.0, 12.0, 9.3, 11.6, 9.3, 11.2, 10.5, 10.1, 10.7, 10.1, 11.4, 10.7, 10.5, 12.1, 11.0, 12.2, 10.5, 12.8, 10.0, 10.6, 12.2, 13.2, 11.6, 9.4, 12.0, 11.0, 10.0, 11.3, 10.8, 9.7, 10.4, 10.4, 10.8, 9.2, 9.3, 11.4, 9.4, 9.8, 11.2, 9.8, 13.6, 11.0, 11.3666666666667, 10.5, 12.5, 10.1, 12.1, 10.1, 11.5, 12.7, 12.0, 12.9, 9.0, 10.6, 10.5, 10.5, 11.9, 12.5, 10.1, 10.7, 12.2, 10.8, 13.2, 10.8, 10.3, 11.2, 9.9, 12.5, 9.5, 12.8, 10.2, 10.1, 11.1, 10.5, 11.1, 9.2, 11.2, 11.7, 10.2, 11.0, 11.7, 8.8, 10.8, 9.7, 11.5, 8.8, 10.9333333333333, 10.5, 9.8, 10.7, 12.7, 11.8, 10.1, 9.4, 11.3, 10.2, 10.4, 11.3, 10.0, 10.9, 9.6, 10.9, 9.6, 11.7, 9.53333333333333, 12.3, 10.2, 9.5, 9.2, 11.0, 11.7, 11.3, 10.0, 9.53333333333333, 10.8, 9.5, 11.8, 9.9, 12.0, 11.8, 9.5], \"xaxis\": \"x\", \"y\": [0.18439386755371057, 0.5750868907731637, 0.1132172353536568, 0.19850047615697952, 0.6950004168934912, 0.41826441672946313, 0.040828937665112974, 0.2145583871630251, 0.09143093017991866, 0.10013996234885614, 0.3658834999306372, 0.587897812361327, 0.23563705889496211, 0.5289998061994394, 0.5981734696485812, 0.5956194363709464, 0.11295199838815062, 0.6349332021584286, 0.09356782907078887, 0.0672754654033908, 0.3541579814831264, 0.11781588709523827, 0.3295981493457443, 0.23443288181779365, 0.13830133810679424, 0.5122546205578999, 0.03626449638205209, 0.32057959349203036, 0.3955164844050859, 0.21320459763992916, 0.08620177311633537, 0.4132497936565127, 0.19514157099220286, 0.028148892894647393, 0.03728071159582558, 0.20213762816504022, 0.39088790332760825, 0.10566618212719892, 0.11466232649727714, 0.09544364959788487, 0.07351553674018241, 0.3657542344632553, 0.05859665738698361, 0.43634835962676355, 0.4827032077898804, 0.516310366273556, 0.6480037931050455, 0.21122004543372697, 0.030344760075157406, 0.22750344576024595, 0.18673438423788624, 0.5460909738859347, 0.0666291073587214, 0.320234954276134, 0.515425573770442, 0.5751179393061847, 0.3262180383913996, 0.12192585741802231, 0.6165939755266235, 0.09365914315081003, 0.44259853952477324, 0.31958523161407537, 0.09228899111547839, 0.22815273642701062, 0.5282447951108347, 0.7777719169155834, 0.13834506443323813, 0.29425092810710396, 0.5300870647699181, 0.031947521718024174, 0.1108646816717751, 0.053339747820140615, 0.14466174791529418, 0.25697560969337485, 0.3383868137798065, 0.30803904997837983, 0.03434255320493995, 0.08689109251212201, 0.46044782253877736, 0.0973761441498977, 0.3449058470623745, 0.024212367984770777, 0.11665042079727428, 0.3333970234137619, 0.1495417879159372, 0.0679784404121434, 0.2360052425084116, 0.39147703437781534, 0.04428683932015287, 0.5381556738404795, 0.4357341587922019, 0.11843845992675284, 0.28107964630818494, 0.06989794698232743, 0.2658605825653322, 0.22408104406272966, 0.15519213452661884, 0.09873339188795927, 0.10739713799337769, 0.4712507279726723, 0.31257930793611366, 0.6259141532505736, 0.1651629894813923, 0.13024327386797574, 0.08242409751896962, 0.55355901104019, 0.11256152515999429, 0.22124325125588817, 0.05838775174278421, 0.6734770756819889, 0.06919042490492266, 0.5773286546676725, 0.5693181878572973, 0.12726917141891614, 0.27983888222674136, 0.15690954109554833, 0.18593824584442387, 0.05432525584274117, 0.33273366741371935, 0.12435295831370408, 0.48112847828662497, 0.2959384652215836, 0.5042039768350125, 0.3749869638443927, 0.7258627386781167, 0.4806866421912115, 0.6234335830956541, 0.4191951896523489, 0.20821728825178332, 0.6343085651912675, 0.27674577061671146, 0.02140654255666985, 0.42849246998341506, 0.1817444030106703, 0.4551538855951942, 0.05087080041524106, 0.516641204200833, 0.6810720245435042, 0.08151744899857294, 0.4475169494323581, 0.03995706953508171, 0.2181819033834006, 0.20372897255157485, 0.24305701296248816, 0.5381556738404795, 0.2358485729609252, 0.051323642447754336, 0.1913631294907303, 0.32154631204965056, 0.31229802093755377, 0.3917329141436472, 0.39462053822053156, 0.3680669306910641, 0.5017894292511481, 0.32120711190509066, 0.0768019282386515, 0.1168769044932052, 0.31545143431826594, 0.12007957373947853, 0.08354361700756141, 0.2180731800932174, 0.7653011157176768, 0.05076221583963347, 0.11739077279846111, 0.3639458403519926, 0.4815918747301601, 0.35998732468747585, 0.457353694020342, 0.5520498791697908, 0.22168281241722143, 0.2132287846887433, 0.4763394582576197, 0.3040153802820409, 0.20749766415549342, 0.3316810644107503, 0.8126297477835096, 0.5749367295182395, 0.27274039590582944, 0.2685808245693546, 0.5172108675362206, 0.33506587713796443, 0.09616672688355288, 0.041108213935392324, 0.10548050716105373, 0.5016695616404938, 0.20022874051447226, 0.14220640128276774, 0.23772630779738468, 0.19606080251004787, 0.2603188495268066, 0.18846597668723208, 0.19827111133563302, 0.261548791893628, 0.4140325207077993, 0.8134796325151183, 0.12265695643958285, 0.6311167068993262, 0.13481820177301163, 0.0932384579037443, 0.14050160114126486, 0.2562249115981724, 0.08547750670655718, 0.08643201081848362, 0.19981675431015722, 0.31390222338706264, 0.06221739913672386, 0.06996303880871468, 0.30029370289300306, 0.4306817897420764, 0.6595343859760441, 0.2839408857911616, 0.20468539219890003, 0.1130196126722065, 0.2360017176902124, 0.13187147729288817, 0.42313120297864704, 0.06964897436687001, 0.1624399718171824, 0.17200815643270417, 0.07333105637055992, 0.2440137653363641, 0.4900110333069776, 0.3085554157386313, 0.03480496731142946, 0.12148031785507996, 0.15002971926037112, 0.5314247042003052, 0.2758453007685677, 0.2151852748992088, 0.2658605825653322, 0.29911225563077193, 0.6594110243744711, 0.49869782335001445, 0.16788254706683048, 0.11816213334465087, 0.08230909248122409, 0.13653212507346946, 0.25639170942272826, 0.06562233405876228, 0.23311900627036541, 0.3756616197417655, 0.46674395287949066, 0.3092684534350997, 0.8337319641197457, 0.8331457111467163, 0.2591056156836542, 0.4778687671024334, 0.2542440524586721, 0.5361036306539362, 0.07073721340803463, 0.4731688813159418, 0.5755848065786346, 0.356689463387698, 0.14225616860197343, 0.21837916002376445, 0.14466174791529418, 0.29899643271856946, 0.4757427727983842, 0.08126799884203029, 0.1296501822378736, 0.3286954654423938, 0.08620177311633537, 0.13855855420831553, 0.05543377339452393, 0.11917834098009661, 0.2613621884509647, 0.11269900223777074, 0.08429051026621415, 0.3393961441870107, 0.07031960314855146, 0.11356777592095357, 0.4853279864284006, 0.1279289285514792, 0.0584572339054259, 0.08612988585012649, 0.3472440907423937, 0.1248029959061332, 0.07502335399434323, 0.19827111133563302, 0.3424151534036639, 0.3065175956815872, 0.13808860398564737, 0.058092197534895806, 0.04082786106581715, 0.1602592849246841, 0.09156161599234125, 0.5036030690663805, 0.2640411824475748, 0.6468038092930676, 0.07201805208597656, 0.22470230804277058, 0.1334773721572423, 0.04847889440667685, 0.2685808245693546, 0.10911308148570098, 0.6764508967260475, 0.6280060594576413, 0.36761958218269275, 0.16019930342079847, 0.17605308658107655, 0.14078981831089854, 0.2384997092801764, 0.13117402490907393, 0.12818959986091483, 0.4161925244315118, 0.12435295831370408, 0.09814942480303201, 0.05480698563416486, 0.3746187330143109, 0.41092354232892336, 0.507894749900129, 0.5137929421583434, 0.08293523366016065, 0.2964416548030494, 0.15236141109070434, 0.4396941021426354, 0.41893931094950754, 0.09113953260801844, 0.10967473999240707, 0.055732078845942, 0.05640314085190745, 0.06176263301115803, 0.06427139521062619, 0.20386133178572885, 0.21597661143113533, 0.7486409492386699, 0.2610715902497083, 0.09465277491899493, 0.5556171757583562, 0.137718889647652, 0.1978940751503777, 0.08472590699531857, 0.356262641598029, 0.14596950445002987, 0.13865818299932142, 0.3088915816821678, 0.11516321289421916, 0.16121169033174265, 0.40573483691789825, 0.34308606282264, 0.36300204724896845, 0.17193414756867276, 0.035926383178341514, 0.34536882843285344, 0.4400180463892147, 0.5165194668234709, 0.23319834124303085, 0.9637923675569924, 0.2635599134550337, 0.6259141532505736, 0.12324962258280003, 0.1256037712827487, 0.1248029959061332, 0.11665042079727428, 0.29081136443782263, 0.12993062945549005, 0.20959981847797426, 0.12385816607190492, 0.16931651488884025, 0.2468284110987674, 0.6181879252747016, 0.3509541008179864, 0.08619429866610873, 0.09537770951135394, 0.8204393830764495, 0.2493836920976743, 0.10367142046182065, 0.11516383353466464, 0.07169627826225977, 0.5400384130096556, 0.2709141565803237, 0.16809050322974173, 0.3421981324687273, 0.812724325423183, 0.1326589750154965, 0.054670132935181304, 0.055346153509382656, 0.8039442695404772, 0.3276168958360183, 0.6561718697940482, 0.6214102617950452, 0.3046829516703813, 0.7853649284745584, 0.7303620793003476, 0.6719087507962026, 0.16000678121984613, 0.579612101366232, 0.6347749924714103, 0.41894393066564606, 0.06936532322770372, 0.28322834609079706, 0.343263893078516, 0.4450860003239352, 0.3090838478611311, 0.408095736797927, 0.11529682880263803, 0.13359771811640497, 0.2417229185475579, 0.10092265889692065, 0.8181934133883563, 0.3777834313813965, 0.8273808576462511, 0.18439353202429143, 0.5148786056082297, 0.11287077888712382, 0.16015059460472458, 0.29672938182784603, 0.36944561074938853, 0.2505850522824452, 0.8467591712977676, 0.3840267097226593, 0.261779448872241, 0.1645479955558209, 0.14631295673285594, 0.4248523287309329, 0.09222807982804315, 0.2121484308544801, 0.33273366741371935, 0.5470626312455473, 0.8294144697045585, 0.25206662215500397, 0.15998368749433245, 0.548322128117227, 0.3917329141436472, 0.15981565308588508, 0.23631147082452741, 0.21082920466209698, 0.1871387197916503, 0.24774693401855818, 0.1913242313933492, 0.16437448769677154, 0.07582203648947516, 0.032541140295091364, 0.06311143057978008, 0.5009235508757715, 0.12343879567504301, 0.445735807756371, 0.40322837553658053, 0.09397553936597514, 0.1598391281143201, 0.26702494168661406, 0.19782301216908982, 0.06831823449824892, 0.5451167746582685, 0.20142160156100697, 0.25747632252511843, 0.4257317671215596, 0.5062318064185062, 0.10278357133077332, 0.10857266292312517, 0.06223864817381186, 0.11377411494697365, 0.14082424186384768, 0.2589321903149734, 0.31776639873426016, 0.07983414941561229, 0.30174211068680845, 0.42532907678292176, 0.23734670470511587, 0.2862296469110084, 0.24790288035387664, 0.5526146374040077, 0.20425399436950087, 0.5166825128498294, 0.12415322942140417, 0.5310696157212036, 0.3866387435262121, 0.14313186082947948, 0.31648660326859934, 0.026792916001305622, 0.7856428374245099, 0.42383310375799566, 0.5944566396871084, 0.6256605001243821, 0.08813642250468567, 0.03544811528140901, 0.06935406654889886, 0.15751976448865512, 0.22608551288474832, 0.3127311228465576, 0.1409438166611655, 0.3285615524533705, 0.3591330499592894, 0.47964497307801546, 0.7143146030302826, 0.14223944449319303, 0.06929054967731618, 0.32120711190509066, 0.16913647442041335, 0.707286257884667, 0.3230684446475647, 0.7616845263358343, 0.4104900542879092, 0.10053249234255524, 0.1106599594415556, 0.1543174595222413, 0.46003879185641183, 0.3811350878514418, 0.07185070571861518, 0.23882593985771994, 0.5344976262521839, 0.11031385635331636, 0.09610989844306939, 0.4955559099445003, 0.07845190603324759, 0.30697262074812925, 0.12767551958037127, 0.4375661224395835, 0.07737023387634634, 0.15307682457740834, 0.05694427046787409, 0.09028836937410878, 0.4011292297732457, 0.6186146927451245, 0.11561676905211238, 0.0993047499370594, 0.08102401279833105, 0.8100206966555492, 0.10768932514586738, 0.15386113005635593, 0.4026560765644126, 0.045535707525545144, 0.08229583319403, 0.08227601457953415, 0.8241544781987433, 0.0759900855540333, 0.5147505197509459, 0.11103147778198663, 0.42144961755966015, 0.24880465403270857, 0.3112403223054312, 0.3282460941643247, 0.28312386083977936, 0.2865521931047814, 0.16537364909659502, 0.4284132019637321, 0.34116073112729894, 0.051142721309942685, 0.10794707492381372, 0.1108646816717751, 0.29201805921023904, 0.07365131996157204, 0.36851051207096197, 0.2556143611338999, 0.07392456180697715, 0.045535707525545144, 0.15025986810093994, 0.4395989822566938, 0.19636656988846957, 0.21018464628148859, 0.15085686628779282, 0.3429118439192298, 0.16104008564300487, 0.2055862423584408, 0.18673310211333727, 0.5528531989583015, 0.20219789553586287, 0.5807830339134155, 0.6112381610839525, 0.07515362639458067, 0.5722084734915175, 0.3654892991508686, 0.1991057466826236, 0.4912569401667811, 0.05850610073101081, 0.3077884117234785, 0.17038242498240874, 0.14066607718466684, 0.10248584652416493, 0.4022873718442217, 0.07205214632436985, 0.35142291824287475, 0.10941760034103376, 0.06679271580157364, 0.05675388891699207, 0.058987921856350156, 0.3660303223369904, 0.28790374422385034, 0.4158290962648631, 0.40710291595796666, 0.09934102670994882, 0.06362846635195196, 0.30921476208988685, 0.23242198019285765, 0.055541210656895434, 0.5297663836663529, 0.10744632778983743, 0.18410212910939194, 0.17721960751489196, 0.1962664672709783, 0.1617648996714035, 0.10584426414108294, 0.5203501665477333, 0.07365131996157204, 0.31578819840495265, 0.35364190165315845, 0.1707951928721818, 0.41655733121321636, 0.15801546378512366, 0.7568436608419439, 0.22368578646300386, 0.0609449253562836, 0.2225096762928218, 0.18587673368692093, 0.05559101133196209, 0.569598540521716, 0.08073228430722412, 0.15724041301590164, 0.12879141548479, 0.4306817897420764, 0.17998791969802397, 0.41280880088413996, 0.5723062335690389, 0.6457404130724687, 0.10420061808672998, 0.12564769853034463, 0.21795029564941848, 0.4720930498870375, 0.11304202998506685, 0.545112257205237, 0.14852188644910969, 0.17217029085021085, 0.336250902618187, 0.48671482860553816, 0.5093433434984792, 0.35847801144896685, 0.3008706318705062, 0.18494609259573758, 0.4199330463236065, 0.04162287990776414, 0.2633909944023186, 0.4252182303976608, 0.4684623303117058, 0.1925553058603695, 0.09610989844306939, 0.09129843496680234, 0.3302708189676917, 0.4199330463236065, 0.11927294568859859, 0.4864154015695107, 0.06472081497616611, 0.6387929002666255, 0.37932906694235924, 0.093713747684541, 0.20627971812824875], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (curr)\", \"type\": \"scatter\", \"x\": [11.0, 8.9, 11.0, 10.1, 8.9, 8.7, 10.7, 9.7, 10.0, 9.9, 9.2, 10.5, 9.8, 9.2, 9.1, 8.8, 9.0, 10.3, 12.0, 10.8, 11.7, 9.7, 9.7, 8.9, 12.0, 10.9, 9.4, 9.7, 9.8, 10.2, 8.7, 8.7, 9.6, 9.3, 10.5, 9.5, 9.4, 9.6, 9.4, 9.3, 12.4, 9.3, 9.2, 9.3, 11.4, 10.5666666666667, 9.4, 9.8, 9.0, 10.9, 10.4, 8.8, 11.5, 11.0, 9.7, 9.3, 9.8, 11.1, 9.4, 9.4, 11.1, 9.7, 9.0, 9.7, 9.3, 10.9, 9.2, 9.4, 10.7, 9.0, 9.5, 11.3, 10.4666666666667, 9.4, 10.5, 11.1, 8.9, 10.4, 9.2, 9.0, 9.6, 9.9, 9.5, 9.5, 10.1, 10.4, 9.0, 8.9, 9.8, 10.5, 9.5, 9.5, 9.7, 9.2, 9.7, 10.9, 10.8, 9.2, 8.9, 9.2, 9.4, 10.6, 8.8, 9.3, 9.4, 10.5, 9.4, 9.5, 9.2, 9.1, 9.4, 9.1, 9.8, 9.9, 10.6, 10.6, 9.4, 9.4, 9.5, 11.0, 10.2, 11.4, 10.6, 9.5, 10.1, 9.4, 11.0, 9.7, 10.1, 10.5, 13.4, 10.4, 9.2, 10.5, 9.4, 8.7, 11.4, 10.4, 9.4, 8.8, 10.7, 10.1, 10.3, 11.7, 9.5, 10.3, 10.9, 9.2, 9.5, 10.0, 9.2, 10.0, 10.5, 9.5, 10.1, 10.5, 10.7, 9.4, 9.6, 9.3, 10.4, 9.0, 10.4, 9.2, 9.0, 10.4, 11.3, 10.9, 11.0, 10.3, 9.2, 10.5, 9.4, 10.2, 9.5, 12.4, 10.1, 9.3, 8.8, 10.6, 10.3, 8.0, 10.3, 9.8, 10.5, 10.5, 9.3, 9.2, 10.2, 9.3, 9.7, 9.7, 10.1, 11.1, 8.6, 9.5, 9.1, 9.8, 9.1, 9.6, 9.5, 9.0, 9.0, 9.4, 11.4, 9.4, 9.0, 9.6, 9.0, 8.6, 10.2, 9.0, 9.7, 10.5, 9.3, 11.5, 9.0, 10.2, 9.3, 9.8, 8.7, 9.3, 9.3, 9.4, 9.1, 10.0, 9.1, 10.3, 10.6, 10.1, 8.8, 10.4, 8.8, 9.7, 9.6, 9.4, 9.8, 10.9, 9.2, 11.4, 9.2, 9.7, 10.9, 9.4, 11.4, 10.0, 10.7, 9.3, 9.4, 10.0, 9.0, 8.6, 10.6, 8.8, 9.9, 8.8, 9.4, 9.5, 9.5, 10.8, 9.8, 10.0, 10.1, 10.1, 9.5, 10.8, 9.7, 11.4, 12.2, 9.6, 11.4, 10.0, 9.3, 9.6, 10.2, 9.0, 9.5, 9.5, 10.1, 9.2, 10.0, 9.5, 11.4, 10.9, 9.2, 11.2, 10.1, 9.1, 11.4, 9.8, 9.5, 9.7, 9.2, 9.5, 11.1, 10.2, 9.5, 9.0, 9.2, 10.3, 11.4, 10.6, 10.4, 9.3, 9.5, 10.8, 10.5, 9.5, 9.0, 9.4, 9.4, 9.6, 10.2, 8.7, 9.9, 8.8, 9.8, 9.5, 9.5, 9.3, 11.8, 9.4, 10.1, 9.5, 11.5, 9.4, 8.8, 10.4, 9.5, 10.4666666666667, 9.8, 9.5, 10.5, 11.4, 9.7, 10.4, 9.3, 10.2, 8.8, 10.7, 8.9, 9.2, 10.4, 9.8, 8.4, 10.3, 9.3, 11.0, 8.8, 10.0, 9.3, 11.4], \"xaxis\": \"x2\", \"y\": [0.18579927887031134, 0.9274202256360236, 0.2569067617886446, 0.17851375722123963, 0.43011516789686843, 0.3951880410340851, 0.35333307802371594, 0.854899199395705, 0.7749695319329993, 0.7150752736216004, 0.5793836726576811, 0.17187478758168062, 0.503776006633781, 0.6517104478925241, 0.5321166645488455, 0.4291031613352281, 0.6295132227815239, 0.446367751604861, 0.12978626497489776, 0.578130474122496, 0.1303225049324246, 0.4589423036505589, 0.6028673022099313, 0.6724998803801079, 0.055171077290688375, 0.28900585249094113, 0.5807441942986169, 0.6324527530146118, 0.32780881811994433, 0.4437792729685527, 0.47375733914823626, 0.6755390392614542, 0.8494338455743565, 0.8432302027568838, 0.3962269303969661, 0.36574887203466033, 0.9780529644634413, 0.6757083557066426, 0.43212531492562845, 0.6428319532862445, 0.2244465690609686, 0.6759712108962084, 0.300575337785698, 0.4848467547623382, 0.24353241802821812, 0.6165640897352094, 0.801889943514816, 0.6831580296641933, 0.4684052737322374, 0.07309555507266852, 0.17397747102053363, 0.548208100621717, 0.16948307959681597, 0.5287139706981401, 0.8097217619362252, 0.48186532860504816, 0.7044722268129955, 0.5458559966555334, 0.6067015953642416, 0.5767206748937392, 0.5416109283549078, 0.7766135747357961, 0.6371580804073698, 0.3290646799011723, 0.53941953634433, 0.7444876216695655, 0.27658524567301757, 0.8518717737266248, 0.685064206005921, 0.7994946846943811, 0.6254668451144636, 0.29898447003196504, 0.36566585814722175, 0.8260679099411251, 0.265003746926769, 0.18277705216857454, 0.6401445853260315, 0.2878944788643705, 0.7379395090268356, 0.6578861964269485, 0.3048731186933995, 0.6479177870210828, 0.5479007895539181, 0.8109237991420157, 0.4555798348891207, 0.35159410271621183, 0.6741813074403022, 0.40366163192193316, 0.3797333752177462, 0.42326140605337403, 0.49450075158901585, 0.7027754368270075, 0.31556666432085356, 0.5737052492708005, 0.5594846166878963, 0.9879213229528466, 0.23907110553933086, 0.7604887601700165, 0.906894853259191, 0.49150798334893764, 0.6693239074263375, 0.635181004157038, 0.4291031613352281, 0.6805197940362542, 0.8579270215873258, 0.42231028799440284, 0.7973836574204367, 0.6209099995125147, 0.617932351579841, 0.5867531689564582, 0.8217385626893267, 0.5766058512754557, 0.6085190813519714, 0.6488649586424557, 0.19466062481522506, 0.4062994677131635, 0.31500574198466447, 0.6106996692323751, 0.48314991346809855, 0.4300926711133176, 0.4623912750166579, 0.18141675383529432, 0.7404949196358439, 0.7960551628311661, 0.6696955469146251, 0.7471897031921468, 0.15222801432328747, 0.4782875749995391, 0.6696955469146251, 0.4617114467660769, 0.0374236133971757, 0.34638250956587036, 0.5737052492708005, 0.35412183815676124, 0.5342599897609015, 0.6273126624389191, 0.1819914526651868, 0.6450640502472667, 0.7576359910572065, 0.6363669366758954, 0.35783776888428775, 0.4555798348891207, 0.2603691587203709, 0.09638465351539516, 0.7889843001267657, 0.3995975535535492, 0.2404138117262561, 0.5134503976671381, 0.7620160241108803, 0.4852174766770502, 0.7934067722809752, 0.5657371707019572, 0.40591517497640706, 0.5142806824729376, 0.4667389755277017, 0.4597803030361328, 0.14211531046105408, 0.4709774325404933, 0.39253304933110444, 0.8152160844894966, 0.6418608562675732, 0.5695619245525361, 0.15898796250578873, 0.4189913516486339, 0.8097376625536354, 0.2776505479619531, 0.14100712613869515, 0.1625374057836978, 0.21879614767173305, 0.26016804821119, 0.5884346274074399, 0.25171266030158634, 0.5556828679884147, 0.2886326125606653, 0.5013044750460076, 0.23728971353361283, 0.6280660923097139, 0.6281218947904323, 0.6226708394296439, 0.1280348372312241, 0.37812375401711507, 0.6218606462016874, 0.446367751604861, 0.5237591509200082, 0.22560064672115399, 0.4159575064805634, 0.43989745285902637, 0.38133093816728936, 0.379388299643832, 0.4244201113870294, 0.8495234946343055, 0.44699506619782237, 0.3402560380560977, 0.16997778820688525, 0.6509841470756508, 0.5589353890471914, 0.49320900326902484, 0.41485179365651337, 0.2850172536812061, 0.5150740024049856, 0.7905789411902706, 0.6660097546858721, 0.5916856454756931, 0.25029771644034415, 0.21820707607863943, 0.23625780462752244, 0.6174344585079109, 0.33885175059010386, 0.8097775874289167, 0.5502791542248897, 0.45232673966787307, 0.5168725346003686, 0.4922951659433321, 0.2710495410551712, 0.5620189509382074, 0.19827785442852286, 0.35653263682836045, 0.4940220265254579, 0.3934632807735441, 0.349631294967786, 0.6543252873397565, 0.6043841099981286, 0.6572212454398962, 0.5323595728841377, 0.4667716613599331, 0.5480891857555714, 0.5933716837007499, 0.5769442381274095, 0.7796710482718338, 0.4721284230669528, 0.5632051337005155, 0.25606657060722404, 0.47304849589761655, 0.4991199345133047, 0.785831825438318, 0.5512091114854263, 0.31651464458218903, 0.192246895102814, 0.5737052492708005, 0.14970485751781393, 0.8257882443178004, 0.7450862811651306, 0.2404138117262561, 0.3428275867057816, 0.2186811050870735, 0.43730933466596944, 0.1325711740116582, 0.33994853494016564, 0.5172250338280965, 0.4543852880840521, 0.6017244994332274, 0.7267617626256621, 0.304103470637073, 0.49511795227452726, 0.4577650902534979, 0.4389063253281036, 0.3428275867057816, 0.6911248892501751, 0.5457123873353599, 0.3395528272139201, 0.5662837862370104, 0.38281068028313525, 0.1899488449656659, 0.1899488449656659, 0.39416742153886597, 0.4473524415330049, 0.5724944828663213, 0.12652799787397961, 0.14917046216496987, 0.4192276293132746, 0.1727250451072272, 0.7329347521090118, 0.2979855805324535, 0.5384433083808008, 0.2944152049751758, 0.5661013076544325, 0.39283078357423706, 0.6503174362647687, 0.7632350838020857, 0.29422440231251745, 0.8446099855685041, 0.3812461384129847, 0.1264117171095669, 0.6995051325026098, 0.7680829457938805, 0.1086082602083136, 0.50228427853815, 0.8303888649041977, 0.15145052047802054, 0.5239967242043768, 0.49461569007297057, 0.7323984730128237, 0.6372335578763709, 0.8485373319296128, 0.21018203617182263, 0.3854703692354019, 0.6209619763202376, 0.6996467359659702, 0.3913887983225227, 0.600932061108284, 0.18141675383529432, 0.32841971343371723, 0.17397747102053363, 0.3943097935149382, 0.5998672378660981, 0.6052803835931642, 0.35501406908939237, 0.4362847089434372, 0.6005057903956104, 0.45095984485898877, 0.5601124581139871, 0.6908342266509375, 0.29066967723125237, 0.5437491575180791, 0.5955595524057149, 0.4226516353037165, 0.552222307965348, 0.5038457784615318, 0.6752568781943777, 0.7880730680059006, 0.09430965090665133, 0.4986183600001317, 0.24112389044610405, 0.3635071851353404, 0.7047195247497422, 0.5251048099479148, 0.5632051337005155, 0.4520037684813636, 0.5271857161160298, 0.36566585814722175, 0.8775119234978208, 0.49474741138534273, 0.17187478758168062, 0.1069918390347242, 0.6371627391106971, 0.19018032574493748, 0.34352259564225396, 0.806114950115292, 0.47304849589761655, 0.5014153035286022, 0.6721952796384192, 0.7507248720260316, 0.38512814216859315, 0.8930847268109882, 0.863224561659591, 0.15108072818859253, 0.7399796913917198, 0.18579927887031134, 0.47304849589761655, 0.2033384066370545, 0.43667652058029827, 0.23252054766636898], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [9.0, 9.0, 10.9, 9.4, 9.5, 9.8, 10.1, 10.8, 12.0, 10.5, 10.0, 11.0, 12.4, 12.2, 12.8, 10.6, 11.4, 11.5, 10.3, 12.4, 8.9, 9.2, 10.5, 9.6, 10.1, 12.2, 11.0, 11.3, 12.5, 12.3, 13.0, 10.1, 9.5, 9.2, 12.1, 8.7, 11.3333333333333, 9.3, 13.4, 11.8, 12.4, 11.3, 11.8, 8.7, 9.4, 12.7, 9.0, 9.3, 9.5, 12.5, 9.2, 12.8, 10.4, 10.5, 11.4, 8.8, 9.5, 14.0, 9.8, 9.1, 10.4, 12.3, 11.8, 11.2, 9.3, 12.5, 11.0, 10.7, 10.55, 9.6, 9.1, 11.7, 9.2, 11.0, 9.7, 9.3, 9.3, 10.2, 10.8, 9.4, 12.2, 10.2, 11.4, 11.9, 9.8, 12.0, 10.9, 11.5, 11.5, 9.5, 10.8, 11.9, 12.6, 13.2, 10.1, 12.6, 10.0333333333333, 13.1, 10.2, 11.1, 11.1, 9.9, 11.2, 13.2, 9.1, 9.5, 9.4, 12.6, 11.6, 11.3, 10.7, 8.8, 12.3, 12.6, 12.4, 12.4, 11.3, 9.5, 10.4, 11.5, 11.8, 12.1, 12.0, 12.2, 10.9, 12.3, 9.2, 12.3, 10.2, 12.0, 12.5, 13.6, 12.5, 9.1, 9.8, 9.3, 10.5, 10.8, 11.6, 11.0, 11.2, 12.7, 10.8, 9.4, 9.6, 10.5, 9.4, 10.5, 10.9, 10.2, 9.8, 11.2, 9.5, 9.2, 12.5, 12.0, 10.6, 11.3, 10.0, 9.0, 12.7, 9.5, 13.4, 11.7, 10.3, 11.4, 11.5, 9.9, 11.0, 9.2, 11.4, 10.2, 10.9, 11.6, 14.0, 11.8, 11.4, 13.1, 13.6, 12.5, 11.0, 9.2, 9.5, 10.7, 9.4, 11.6, 10.3, 12.6, 8.8, 11.1, 11.0, 9.4, 11.9, 11.9, 10.8, 12.2, 10.5, 12.5, 9.4, 9.8, 12.5, 10.4, 9.6, 11.9, 11.0, 10.6, 9.7, 12.0, 10.1, 10.2, 11.4, 12.8, 10.6, 12.4, 9.0, 12.8, 10.0, 11.3, 11.6, 12.8, 12.2, 10.0, 10.8, 9.5, 9.0, 9.2, 11.2, 10.3, 12.0, 11.2, 9.25, 10.1, 10.8, 12.1, 12.8, 8.9, 12.3, 11.2, 12.0, 11.2, 10.7, 13.3, 13.0, 10.3, 10.4, 11.4, 8.8, 9.2, 10.7, 10.1, 9.6, 9.2, 8.8, 11.6, 10.7, 9.8, 10.2, 11.0, 12.2, 12.2, 10.4, 10.6, 10.7, 10.2, 11.1, 12.5, 12.7, 10.6, 9.3, 9.9, 9.9, 11.3, 12.6, 11.0, 9.3, 9.9, 10.7, 10.4, 10.6, 11.2, 9.1, 11.9, 11.8, 10.0, 12.8, 11.6, 11.45, 11.3, 9.7, 10.2, 11.0, 9.5, 10.1, 12.8, 10.4, 11.0, 9.2, 12.2, 11.0, 11.8, 12.9, 10.3, 11.3, 12.3, 9.0, 11.0, 12.0, 11.0, 12.6, 11.2, 10.5, 11.5, 11.6, 9.3, 11.4, 11.0, 9.8, 9.8, 10.1, 9.5, 12.5, 13.0, 10.3, 9.1, 10.4, 12.7, 11.0, 11.5, 9.6, 12.6, 10.6, 9.0, 9.4, 9.5, 9.2, 9.4, 9.1, 10.0, 10.2, 11.9, 10.8, 10.2, 9.7, 11.4, 9.5, 10.9, 11.4, 10.5, 10.0, 11.7, 11.3, 11.5, 8.8, 9.2, 9.3, 12.0, 10.0, 10.2, 10.4, 12.5, 12.9, 10.3, 8.7, 8.8, 10.2, 9.2, 8.9, 10.3, 9.4, 10.2, 13.05, 10.1, 10.8, 11.4, 11.7, 10.8, 12.0, 11.2, 9.6, 12.4, 9.4, 11.5, 12.2, 9.3, 11.9, 10.5, 11.0, 11.65, 11.4, 11.3, 11.0, 9.3, 11.2, 10.2, 10.2, 10.8, 9.0, 12.5, 12.6, 10.8, 10.6, 11.5, 11.4, 9.5, 12.7, 9.8, 11.0, 10.5, 9.0, 12.5, 9.6, 10.0, 10.4, 9.8, 10.6, 10.3, 9.3, 10.6, 12.6, 12.8, 11.3, 11.9, 12.1, 10.3, 9.2, 11.2, 10.2, 10.6, 12.4, 12.0, 11.7, 10.2, 11.4, 12.8, 10.5, 9.0, 10.8, 9.0, 12.0, 9.0, 9.1, 12.5, 9.8, 9.4, 12.0, 9.2, 14.0, 9.2, 10.0, 9.7, 10.6, 9.2, 9.5, 9.8, 9.0, 11.0, 11.0, 10.65, 9.0, 11.3, 11.3, 13.3, 9.4, 8.7, 10.9, 10.4, 12.7, 10.3, 11.0, 10.6, 10.4, 10.3, 12.5, 8.7, 10.3, 12.8, 9.5, 11.3, 10.2, 11.4, 10.0, 10.6, 11.4, 11.9, 9.6, 11.0, 12.7, 12.5, 9.7, 10.8, 10.1, 9.1, 12.5, 11.0, 9.8, 9.8, 11.4, 10.0, 11.5, 10.3, 11.75, 10.3, 9.1, 11.0, 13.5, 8.9, 9.4, 12.0, 10.1, 12.3, 12.9, 11.3, 14.2, 11.4, 11.5, 12.6, 10.1, 11.7, 9.2, 12.4, 13.0, 10.5, 11.0, 9.2, 11.6, 9.3, 10.7, 12.6, 11.5, 9.1, 11.3, 10.0, 9.0, 13.0, 12.5, 11.6, 11.5, 12.1, 9.7, 9.5, 11.2, 11.3333333333333, 10.9, 11.4, 13.1, 11.5, 10.9, 11.8, 12.3, 9.1, 9.5, 11.4, 10.5, 11.1, 11.0, 10.0, 10.1, 12.3, 11.9, 11.0, 9.8, 10.4, 8.7, 11.4, 9.1, 12.1, 11.4, 11.2, 13.0, 12.5, 10.5, 10.3, 11.1, 12.0, 12.4, 11.0, 11.0, 12.3, 11.0, 12.4, 9.5, 9.6, 10.5, 12.5, 10.0, 10.0, 10.2, 9.5, 10.2, 11.1, 10.0, 10.4, 10.0, 10.0, 11.2, 10.4, 12.5, 9.6, 11.5, 12.7, 10.8, 12.2, 9.4, 11.2, 10.5, 9.8, 10.5, 10.6, 10.4, 9.9, 9.6, 10.5, 9.1, 11.9, 9.8, 12.1, 12.9, 10.4, 9.5, 12.2, 10.4, 12.4, 11.0, 10.0, 10.8, 12.15, 11.45, 10.2, 11.8, 12.1, 9.8, 10.0, 12.7, 11.6, 12.3, 10.2, 13.4, 9.5, 11.0, 12.0, 12.8, 9.2, 8.8, 9.9, 8.9, 9.5, 13.4, 11.0], \"xaxis\": \"x2\", \"y\": [0.6660328535674787, 0.4955559099445003, 0.11251030999551548, 0.5313240922219649, 0.7616845263358343, 0.42881839881496897, 0.22146723198036844, 0.2709448900825402, 0.04188686298684474, 0.3198999677935893, 0.586632325439729, 0.3332859260788763, 0.0891770245136605, 0.07249138429342028, 0.0813041402249215, 0.2808128557304226, 0.18155424903412543, 0.14020593233116785, 0.20529540916933675, 0.1755850319354616, 0.5722846846512241, 0.4684623303117058, 0.2863708053899042, 0.4489302200945696, 0.3606737334686688, 0.09834172337505831, 0.1439119889738254, 0.10526388551166177, 0.08976738859769384, 0.15927641460572795, 0.07353544332944184, 0.4894096639868448, 0.24735122968283396, 0.41440459167745447, 0.10107859516115147, 0.4809249647595707, 0.043928674649753696, 0.27268427565697984, 0.07203278686513981, 0.35989685204578803, 0.08410225657903847, 0.09640449279894714, 0.2859044620344169, 0.766491644508495, 0.27194216744256416, 0.11891721880979944, 0.6033870782914414, 0.8445823904457724, 0.4148378249676725, 0.09538880480821377, 0.5822786697287807, 0.2006236885231063, 0.30215903380660414, 0.3526626332448971, 0.22921561702294402, 0.3499358724503807, 0.451050436906263, 0.01968005574460141, 0.3849224947932618, 0.608666907839271, 0.30333177217190177, 0.05732515971384944, 0.08299070223644744, 0.155374347961305, 0.4378217303747408, 0.10641916767178827, 0.3207785913922725, 0.3280003244598044, 0.4747408725557203, 0.27229542413121455, 0.5314247042003052, 0.13834506443323813, 0.652508483608137, 0.1775869136191267, 0.4659209431511335, 0.3288332341233703, 0.47224603889779837, 0.2773569186284155, 0.18590272545123854, 0.6719763059805124, 0.04569198037744582, 0.22473444069733528, 0.0776074933333939, 0.1411968215808168, 0.3654892991508686, 0.06069899520469324, 0.21029328672965164, 0.13919371635861133, 0.16321149678759816, 0.6144435769482088, 0.1388055550317996, 0.0827658987104557, 0.0793107693477757, 0.04994940743047871, 0.46220165202879504, 0.08265172102971341, 0.5554564865761329, 0.10902951494304747, 0.26480674198345266, 0.31816712550642645, 0.20184400370343658, 0.23734670470511587, 0.19264674509953905, 0.03558879485690103, 0.5314247042003052, 0.3013473679880785, 0.8043030592862955, 0.07665185966197174, 0.17816243980233548, 0.14637302723887635, 0.43623195291339645, 0.5773286546676725, 0.06996409198491005, 0.0635191394270278, 0.11839391684253864, 0.03368970372860669, 0.16544292122901683, 0.5002106013252752, 0.20783967621931676, 0.4413184352618238, 0.1377753535318076, 0.017128038770129694, 0.09070427960766203, 0.05237321155563324, 0.46044782253877736, 0.09863911308639095, 0.6058955548956951, 0.07377868677997379, 0.33726125667837825, 0.03705661785513226, 0.03856885477325478, 0.01970319875133708, 0.06623921298607705, 0.655672818127978, 0.36403826442427, 0.375635621083512, 0.25822104517587474, 0.26990817233175546, 0.30316845466795117, 0.21597661143113533, 0.10411587283779344, 0.4582573305440075, 0.28974208538397184, 0.3995654588450376, 0.48407929824265805, 0.2412117545349558, 0.49704114689177337, 0.3112403223054312, 0.13571503940671914, 0.35304273602320047, 0.18963603484652192, 0.06023564559469896, 0.305863422303413, 0.34062746964654456, 0.03532029949184434, 0.20200996882548472, 0.207876095289533, 0.11304202998506685, 0.26487496820305634, 0.46674395287949066, 0.05931266843465788, 0.6063731497207538, 0.053339747820140615, 0.16056749669580483, 0.3366557342021428, 0.18735912995827353, 0.2667542380283816, 0.9197592959547904, 0.13322255285490225, 0.3533185668595151, 0.08763312389948397, 0.343329095265401, 0.1298321532292276, 0.11240742021865013, 0.03412749239977686, 0.23316671381479437, 0.13955591125269062, 0.065615492475942, 0.03940539431326806, 0.04874684240881699, 0.42507109047861347, 0.3720756994829524, 0.20627971812824875, 0.23346983492740092, 0.299872058778726, 0.14688925552714138, 0.20529540916933675, 0.11294333341234963, 0.4523771212155355, 0.15895981664313275, 0.12633289347617382, 0.34801013400503944, 0.063056887931354, 0.09222807982804315, 0.19281104432210028, 0.11843845992675284, 0.1064686731970873, 0.12171087020281346, 0.49704114689177337, 0.4202798549667376, 0.058322454167927695, 0.40418598015134155, 0.7514842711311043, 0.067978575311199, 0.1468497162592186, 0.3655805321171328, 0.36741292271676196, 0.08785516413846428, 0.4223454464089015, 0.09472348251934337, 0.14196098925812006, 0.10013555988874479, 0.32154631204965056, 0.05416575683382341, 0.786126361492164, 0.04696516601190348, 0.26926088858349784, 0.28123172687107445, 0.3094364396730669, 0.04307250962973752, 0.07126159086244754, 0.6143015945908075, 0.495586079448059, 0.46102608015166635, 0.40789311683600216, 0.8929715185951024, 0.1227006502272181, 0.3638055988942468, 0.10470002869891348, 0.29304213908849364, 0.8936703981375603, 0.3534407380188983, 0.0883666731866185, 0.07895584641700149, 0.05166417783587085, 0.4199775765299997, 0.10304865631077798, 0.1041340676595982, 0.11031385635331636, 0.22368578646300386, 0.22137255536682798, 0.0725394352715707, 0.08320759746190642, 0.3577905591727162, 0.36362749207413336, 0.13058702032609693, 0.4306817897420764, 0.4684623303117058, 0.3185463047756948, 0.6991046594229053, 0.33105510290791684, 0.35804773811787727, 0.3499358724503807, 0.17780319308126435, 0.07142366539796174, 0.1504846162366139, 0.28643330026545544, 0.11492102279820171, 0.08716328114311156, 0.12905574960179156, 0.5528531989583015, 0.2852168598030531, 0.3185463047756948, 0.41766807389819915, 0.22818770291371737, 0.10749415552266317, 0.07500089027222667, 0.2150933620687273, 0.4879833184669665, 0.21367083697314282, 0.18281788227943807, 0.11217648511765432, 0.01860460444149037, 0.4990100838788346, 0.3212979959143686, 0.7252893191599291, 0.30018855716775616, 0.2808216200321265, 0.24332849241566534, 0.22583693263898685, 0.307128141019565, 0.12930297020615966, 0.07734813107736227, 0.38078614076753503, 0.037937415915298756, 0.18389331462546077, 0.2015421194948802, 0.10121634311933059, 0.7209948827487924, 0.252131738577411, 0.19866278493931944, 0.5569604587758099, 0.19172534874952063, 0.07516041810443141, 0.18673310211333727, 0.20736440356309183, 0.27568985010185776, 0.1748501221961516, 0.134246332983591, 0.12151400729184814, 0.03860330573341564, 0.16198960071610413, 0.062309112953929935, 0.14943540958877521, 0.46827469198568006, 0.12435295831370408, 0.11768791031746062, 0.10794707492381372, 0.04347111427796346, 0.07423675680829, 0.1602542791395647, 0.19911642350143877, 0.2379444352717226, 0.36664322039668684, 0.10130143557253446, 0.17108028607870185, 0.6143194513817134, 0.5641235853966853, 0.29864316680665437, 0.44752301946823647, 0.13459844499503626, 0.037461465199631894, 0.5002964248569376, 0.4059565893810353, 0.7035957096210382, 0.0629603198376949, 0.25036415064992923, 0.14780834332950044, 0.24800647860056513, 0.10438723399855232, 0.24366911510822187, 0.4574644219698093, 0.8347014835967527, 0.42226245660703365, 0.4073158502222598, 0.47525484003715535, 0.37845934883934684, 0.35325777167774697, 0.4763432908647238, 0.18941100564626978, 0.23853527246002126, 0.27277355193056574, 0.5556171757583562, 0.19481513110659687, 0.7460207524242459, 0.12627308236197843, 0.2115813466591615, 0.4773837842994688, 0.22238536240250728, 0.1978655273089749, 0.32057959349203036, 0.1601330373243487, 0.6256605001243821, 0.34062746964654456, 0.5899158924001677, 0.1273375405407705, 0.6866376712310945, 0.3812864953771038, 0.07918534602430627, 0.10510921928053807, 0.052405178286905496, 0.29010285216427345, 0.5802968836962079, 0.4475494904811408, 0.33107045093633036, 0.6046547135519548, 0.33132995382553565, 0.3391582818855403, 0.37109937806185267, 0.18876467901964422, 0.03244681540368277, 0.6531311156123596, 0.18281848038190407, 0.06840545126676123, 0.23876166598551407, 0.5602062902528231, 0.05478334190217349, 0.18965009362393503, 0.502081053312289, 0.0945975060483667, 0.24937367783354814, 0.14040338921272166, 0.09582424632391484, 0.4879833184669665, 0.07536550594022651, 0.37763546052463404, 0.20240400638142053, 0.06234715971662652, 0.1729504208160284, 0.2536573606029918, 0.1491704939138675, 0.47224603889779837, 0.20734784509414073, 0.1656619584420439, 0.20263687678412212, 0.4576701693643329, 0.3746187330143109, 0.06578487521364562, 0.09359041291034786, 0.15714155813810793, 0.43198081216185935, 0.17693664965610134, 0.14200602748771296, 0.16878839641400256, 0.11131318694256087, 0.43040972974554736, 0.12494266711040569, 0.5286591337585229, 0.3917329141436472, 0.14284790216410748, 0.29931895876037384, 0.3998656181534954, 0.13198036366642862, 0.2166851793268345, 0.164669749255824, 0.3116999397838065, 0.5702002297218003, 0.2867818412254799, 0.05809024612643199, 0.0701620515557333, 0.10493669218879953, 0.03474255021640338, 0.14069518845012563, 0.7697788668098057, 0.44513161239284327, 0.12104291767226882, 0.2823656727566666, 0.28640273091276736, 0.09904459769556595, 0.10889384421684001, 0.1978655273089749, 0.6326587477498924, 0.0766186874204361, 0.07300117689776386, 0.3978521493117628, 0.7293533971641823, 0.24040337450518035, 0.46827469198568006, 0.03737110954461231, 0.48112847828662497, 0.5755848065786346, 0.12151472907643468, 0.332302417201758, 0.3208349144509022, 0.13406270144296106, 0.47820199098358873, 0.024219732643774528, 0.7923035912680444, 0.3099424932714111, 0.8494816644677875, 0.15230116664989468, 0.8795672599938588, 0.34536882843285344, 0.587897812361327, 0.3660303223369904, 0.3074082248441362, 0.1925553058603695, 0.1582957933341015, 0.5297945963993664, 0.1892543681582496, 0.06574637766643598, 0.03286461121245521, 0.6223124217546917, 0.48666930315350876, 0.17200815643270417, 0.27042696199957883, 0.16010429726024444, 0.25291734909108765, 0.22778758435893687, 0.6055190518965303, 0.41989528411161425, 0.2865861541738164, 0.17344095530188786, 0.4163761941495938, 0.24610426408478792, 0.029106329843254564, 0.5849270471051293, 0.09607886499379148, 0.4890296174547498, 0.11193395874659995, 0.3667485749721523, 0.29672938182784603, 0.13696827462710404, 0.03986507081677082, 0.41542023534722683, 0.1642424989032959, 0.041559354155004224, 0.1266666793707928, 0.5259198205822933, 0.42123490919744344, 0.6147437654518444, 0.42849246998341506, 0.04874684240881699, 0.16870816563337898, 0.35179373534084035, 0.4552463954734379, 0.1543174595222413, 0.4641274821418986, 0.1106599594415556, 0.40441066041397966, 0.05916303638108533, 0.24194101851814365, 0.5755848065786346, 0.23631147082452741, 0.04679471849088612, 0.33132995382553565, 0.6031606095022326, 0.16900214819844117, 0.9322526967181247, 0.1065938389205352, 0.0540586741766943, 0.14920224829950646, 0.03054451782098533, 0.13595064656866984, 0.15908339514281045, 0.09402391562754642, 0.27219479721363327, 0.10477531970828624, 0.6046547135519548, 0.04412971358840656, 0.0821245873848182, 0.24953715645213048, 0.24311299470472425, 0.679537413518331, 0.02875041056121841, 0.2874129658970298, 0.17131102264191878, 0.07042427222914205, 0.1577516063520068, 0.39934634677258996, 0.42249259173992826, 0.24940231538328683, 0.46827469198568006, 0.040988937643475554, 0.034828704291737345, 0.26663563965858417, 0.22421743312747255, 0.10716094829621758, 0.7421831263598226, 0.4644511163280224, 0.1591307416719686, 0.21502194578256428, 0.12883185373794437, 0.15520095945599266, 0.04280666734842442, 0.06928764484923078, 0.3578757504587543, 0.0760792945579073, 0.06637805380770656, 0.5755848065786346, 0.4326356954473739, 0.16985579355455038, 0.47152805642545803, 0.11644579282256762, 0.11790522998710073, 0.5438286352264949, 0.41561805514360906, 0.050606352251634235, 0.21836830194439782, 0.22298545275517268, 0.1504846162366139, 0.16819644397314482, 0.47796113776613436, 0.14100197907825862, 0.7878397890034206, 0.12176963827920351, 0.09814942480303201, 0.23162396036129984, 0.04400104962869911, 0.061588508633294015, 0.2774601068082493, 0.40816383821078206, 0.14036214651023216, 0.11837607594274324, 0.0703155477214753, 0.17002415827487982, 0.24611532014486182, 0.06874641727313702, 0.30975746960573625, 0.07004288447243323, 0.6453829176356538, 0.3880412370469972, 0.10205495289732236, 0.12171087020281346, 0.38550692709735157, 0.4398162761337091, 0.5769741243450848, 0.48842976274850136, 0.3866799681687785, 0.17129518728202664, 0.5711206597512044, 0.4456070955069118, 0.4585850027539752, 0.25462747480751524, 0.34771016550763867, 0.35548618548401445, 0.07878090041588082, 0.3008706318705062, 0.08117751180329491, 0.055511805197920094, 0.1600174453683395, 0.35597309965685686, 0.5473978930443646, 0.3321771897262046, 0.14643302530661162, 0.7653011157176768, 0.24188431843396252, 0.16704799028757666, 0.41136103198090634, 0.5749869949413896, 0.709238838470871, 0.09340318303147321, 0.602429869503323, 0.04154705947390969, 0.7519582179986716, 0.15993940416551844, 0.04372375151311325, 0.4076899811241429, 0.4644511163280224, 0.3133137248525114, 0.24628490675063597, 0.06972977174174444, 0.15949948541388637, 0.2241543425141257, 0.1729876202034616, 0.07290025122558275, 0.1220000714032804, 0.36493953208423235, 0.09420126302076737, 0.026726938234992392, 0.7199273032686843, 0.4606762448039463, 0.04906818437448113, 0.19446415942665518, 0.14876853598344464, 0.3247816953453747, 0.023320858692869595, 0.7310618090422621, 0.48944479260603346, 0.20357574295749958, 0.0840537250624015, 0.5368744051465595, 0.21101467800102214, 0.46682279298460017, 0.3749869638443927, 0.46592999202179275, 0.10188412989688433, 0.15751976448865512], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"alcohol\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"alcohol\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}}], \"alerts\": [], \"tabs\": []}]};\n",
314         "    var additional_graphs_evidently_dashboard_522f08a9c3494994bcc173c8e0de5a16 = {\"All_fixed.acidity\": {\"data\": [{\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Reference<br>fixed.acidity=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [7.0, 7.3, 7.5, 6.3, 6.3, 7.0, 6.5, 5.6, 6.9, 5.8, 8.1, 7.7, 6.2, 7.3, 6.8, 6.6, 7.3, 15.6, 5.2, 6.2, 8.0, 7.7, 6.3, 7.3, 9.0, 6.0, 5.3, 7.8, 7.1, 6.2, 6.3, 7.3, 7.2, 5.8, 7.2, 7.7, 7.7, 5.9, 6.7, 6.5, 6.0, 7.2, 7.7, 7.4, 8.1, 6.8, 8.2, 6.2, 9.4, 6.8, 7.0, 6.6, 6.0, 6.3, 14.2, 6.8, 5.9, 6.0, 7.6, 5.9, 11.1, 5.9, 7.1, 6.6, 12.6, 8.3, 6.7, 7.4, 7.0, 6.7, 7.0, 6.2, 6.4, 7.9, 7.4, 7.0, 7.9, 6.5, 8.2, 6.9, 5.7, 6.3, 8.3, 9.1, 8.0, 7.8, 7.3, 8.6, 6.9, 10.8, 6.4, 7.7, 8.8, 6.6, 6.1, 5.0, 6.3, 5.9, 6.6, 7.3, 8.3, 7.3, 9.9, 7.5, 7.2, 6.4, 5.2, 7.9, 6.7, 6.7, 8.0, 7.9, 6.9, 7.4, 5.6, 6.7, 5.9, 6.0, 7.1, 7.2, 6.8, 6.3, 9.2, 7.8, 8.1, 7.5, 6.8, 6.7, 6.9, 7.3, 7.0, 5.0, 7.3, 8.2, 7.7, 5.0, 10.1, 6.6, 7.1, 9.5, 8.0, 5.9, 6.8, 6.9, 10.8, 7.4, 7.2, 5.8, 6.7, 7.3, 7.0, 12.0, 6.7, 6.2, 6.6, 6.4, 5.9, 7.8, 7.4, 6.1, 5.9, 7.5, 6.4, 7.9, 6.1, 7.2, 7.1, 6.3, 7.8, 5.2, 10.2, 7.8, 6.2, 8.5, 7.6, 6.4, 7.8, 6.0, 6.2, 7.4, 6.0, 6.8, 7.9, 6.1, 6.2, 5.6, 5.5, 11.1, 5.9, 6.4, 6.6, 5.6, 5.0, 7.0, 7.1, 7.8, 6.1, 8.4, 6.8, 8.5, 7.7, 6.4, 7.1, 8.4, 6.7, 8.2, 8.2, 8.1, 7.3, 8.0, 8.2, 6.5, 6.5, 6.0, 6.9, 6.6, 6.6, 7.0, 7.5, 6.6, 6.6, 6.6, 7.0, 8.3, 7.1, 7.0, 7.1, 7.1, 7.7, 6.1, 6.0, 6.6, 6.3, 6.9, 6.7, 4.8, 6.4, 6.6, 6.3, 7.1, 8.9, 7.2, 7.2, 6.4, 7.0, 7.0, 7.7, 6.5, 6.3, 5.8, 8.0, 7.4, 10.8, 10.1, 10.7, 6.4, 6.5, 6.6, 7.3, 9.8, 7.4, 6.3, 6.1, 7.2, 7.0, 6.2, 7.3, 9.1, 6.5, 5.2, 6.0, 6.4, 6.7, 6.0, 5.5, 6.7, 6.7, 9.1, 5.6, 7.1, 7.8, 7.6, 5.1, 5.8, 8.0, 10.8, 6.2, 7.8, 7.7, 7.3, 5.6, 7.9, 8.3, 6.2, 6.0, 6.1, 7.1, 6.7, 5.7, 6.8, 6.6, 5.9, 5.7, 6.0, 8.4, 7.2, 8.5, 7.1, 7.2, 6.6, 7.2, 7.3, 5.9, 6.1, 7.1, 13.4, 8.3, 6.0, 6.4, 5.9, 5.8, 6.1, 6.8, 6.3, 7.3, 7.0, 7.4, 8.8, 7.4, 6.4, 5.1, 8.1, 11.4, 5.6, 6.8, 6.9, 7.0, 7.2, 6.2, 6.8, 6.5, 8.8, 5.1, 6.5, 7.2, 8.1, 7.1, 8.2, 5.8, 7.3, 6.8, 7.7, 6.7, 8.3, 6.8, 6.3, 8.4, 6.2, 11.5, 6.9, 7.4, 6.2, 8.9, 7.2, 7.2, 6.6, 6.2, 6.2, 9.2, 7.2, 5.8, 5.6, 7.7, 9.2, 6.6, 7.0, 5.9, 8.6, 7.4, 9.0, 10.0, 7.5, 8.3, 6.5, 6.9, 7.5, 10.2, 6.1, 7.7, 6.8, 6.1, 6.0, 6.7, 6.3, 7.0, 6.0, 7.7, 6.8, 5.0, 8.0, 7.4, 6.7, 6.1, 7.0, 7.4, 5.7, 6.8, 7.4, 6.1, 6.5, 6.6, 6.4, 5.7, 6.6, 7.1, 7.0, 6.3, 7.1, 7.7, 7.5, 7.5, 6.9, 5.9, 7.0, 6.1, 5.8, 8.0, 7.4, 6.7, 8.0, 7.7, 6.6, 6.4, 5.5, 6.9, 4.4, 8.3, 6.3, 6.9, 11.1, 6.4, 6.8, 7.4, 7.5, 6.9, 6.3, 7.2, 6.7, 10.5, 5.9, 6.8, 6.1, 5.8, 7.3, 7.4, 12.0, 6.4, 7.1, 6.4, 6.2, 11.1, 7.6, 11.5, 8.0, 6.4, 7.3, 6.2, 6.7, 7.3, 8.9, 8.3, 6.2, 6.5, 8.7, 5.7, 6.5, 7.0, 6.7, 7.5, 7.3, 6.2, 6.5, 6.6, 6.3, 6.5, 7.7, 7.5, 6.6, 5.7, 6.0, 7.3, 7.9, 7.0, 6.5, 7.3, 8.6, 6.9, 6.5, 7.3, 7.4, 6.9, 7.0, 5.3, 7.2, 7.9, 6.7, 5.1, 6.7, 6.5, 6.4, 6.9, 7.8, 7.1, 7.5, 6.5, 6.3, 6.7, 6.6, 6.7, 6.8, 8.4, 6.0, 8.1, 6.5, 7.2, 7.1, 8.6, 8.0, 6.2, 6.5, 8.9, 6.9, 5.8, 6.0, 6.8, 7.9, 6.8, 7.1, 6.8, 7.0, 6.8, 6.0, 7.9, 7.9, 6.5, 6.0, 10.1, 7.0, 6.8, 6.3, 7.2, 7.7, 6.6, 8.2, 6.4, 6.8, 7.2, 7.0, 7.8, 6.6, 6.7, 7.6, 5.6, 6.4, 5.1, 7.7, 7.1, 8.6, 6.1, 8.0, 6.2, 7.6, 7.2, 7.1, 6.5, 6.3, 7.2, 6.4, 7.9, 7.8, 7.5, 6.4, 5.9, 6.0, 7.0, 6.9, 5.4, 6.8, 6.0, 6.8, 8.6, 6.7, 6.3, 6.0, 5.0, 7.2, 5.6, 8.0, 5.6, 7.8, 7.4, 7.1, 6.4, 7.0, 9.4, 6.0, 5.9, 7.1, 6.3, 7.3, 6.4, 10.5, 8.1, 8.1, 6.4, 8.8, 6.1, 7.0, 7.2, 9.2, 6.6, 6.9, 9.7, 8.8, 7.8, 7.8, 7.3, 6.7, 6.6, 6.8, 7.15, 8.0, 7.4, 6.5, 5.3, 7.1, 10.8, 6.6, 7.0, 7.2, 7.5, 10.7, 5.9, 6.8, 6.9], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Current<br>fixed.acidity=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [6.4, 7.2, 6.8, 6.8, 7.9, 7.4, 7.3, 6.6, 6.5, 5.8, 10.0, 6.9, 6.6, 5.3, 4.4, 7.9, 6.9, 8.5, 9.1, 7.6, 7.6, 7.4, 8.3, 6.7, 7.8, 7.1, 6.4, 6.0, 7.6, 6.9, 7.3, 6.6, 6.9, 5.1, 5.8, 6.6, 6.5, 6.4, 6.8, 7.2, 6.7, 6.0, 7.6, 7.3, 8.3, 7.8, 7.8, 6.8, 7.9, 6.8, 8.0, 8.0, 6.8, 9.2, 6.9, 8.1, 10.7, 5.2, 6.6, 9.1, 6.4, 6.8, 6.6, 8.0, 6.7, 6.0, 7.7, 7.7, 6.0, 7.5, 7.1, 6.7, 7.7, 5.3, 8.0, 6.3, 6.1, 6.6, 7.7, 9.0, 6.4, 7.3, 7.5, 8.3, 7.6, 8.4, 9.3, 6.5, 6.9, 6.3, 6.3, 8.4, 5.6, 6.6, 6.0, 7.3, 11.6, 7.6, 11.8, 5.9, 7.2, 6.4, 6.9, 6.9, 7.1, 6.6, 7.9, 6.7, 6.2, 6.7, 6.7, 7.9, 6.9, 6.1, 6.4, 6.4, 5.0, 6.6, 6.9, 9.8, 5.0, 5.4, 6.5, 6.2, 8.2, 9.7, 7.8, 6.1, 9.3, 6.8, 6.2, 7.4, 6.1, 8.3, 6.2, 8.3, 9.2, 8.3, 6.8, 7.3, 7.2, 6.4, 11.9, 6.6, 6.2, 5.8, 8.4, 8.9, 7.1, 8.3, 7.0, 7.6, 7.5, 7.2, 6.5, 6.8, 9.9, 7.2, 5.9, 7.2, 7.1, 7.5, 6.2, 6.3, 12.6, 8.6, 8.9, 7.9, 8.3, 6.9, 6.3, 8.6, 7.2, 8.5, 5.8, 7.0, 6.1, 6.5, 6.0, 8.3, 7.7, 5.8, 6.9, 11.8, 7.0, 6.3, 9.1, 5.6, 7.0, 6.9, 7.8, 6.6, 6.5, 7.0, 6.2, 7.7, 6.7, 5.1, 8.4, 6.5, 7.2, 7.5, 5.8, 7.7, 6.6, 6.7, 8.5, 10.4, 6.6, 6.8, 5.9, 5.8, 6.7, 6.2, 13.2, 7.0, 5.9, 6.0, 5.6, 6.8, 7.0, 6.2, 7.8, 6.3, 7.3, 7.3, 6.0, 7.4, 8.7, 7.3, 6.9, 8.1, 6.9, 7.0, 10.3, 8.4, 6.6, 6.8, 7.0, 7.4, 6.8, 8.1, 8.4, 6.4, 7.1, 10.4, 7.3, 7.4, 7.5, 9.4, 7.9, 7.6, 8.1, 6.5, 7.0, 6.7, 7.5, 6.6, 6.7, 5.8, 6.8, 6.9, 7.5, 6.4, 7.3, 7.4, 7.6, 6.1, 6.8, 7.6, 6.8, 6.3, 5.4, 11.5, 6.7, 7.4, 6.9, 6.8, 5.6, 5.9, 8.4, 7.9, 6.0, 5.8, 7.0, 10.0, 6.1, 6.2, 5.3, 6.1, 11.5, 10.3, 6.9, 8.2, 6.4, 6.1, 6.1, 7.0, 6.9, 7.0, 8.0, 7.6, 7.5, 6.0, 7.4, 7.2, 5.9, 6.8, 7.8, 7.0, 6.2, 6.5, 6.2, 6.5, 5.7, 5.4, 7.2, 8.1, 8.5, 6.7, 7.0, 6.0, 7.7, 7.3, 10.1, 7.2, 7.4, 10.9, 6.8, 6.6, 7.0, 6.7, 9.1, 8.0, 6.7, 6.9, 7.3, 6.5, 7.6, 7.0, 7.1, 6.1, 7.4, 7.0, 7.7, 6.8, 7.0, 6.3, 9.8, 6.7, 7.8, 7.5, 8.7, 7.2, 7.6, 6.7, 8.6, 6.5, 7.5, 6.6, 6.8, 6.6, 8.2, 7.0, 8.8, 6.4, 5.7, 6.9, 6.2, 6.8, 5.6, 6.3, 7.9, 6.9, 10.9, 6.6, 5.8, 6.4, 6.8, 5.6, 4.9, 7.4, 6.8, 6.8, 6.5, 7.1, 7.2, 5.5, 6.9, 6.3, 6.4, 6.1, 5.2, 6.8, 6.9, 7.5, 7.2, 10.1, 7.2, 6.8, 7.4, 5.6, 6.3, 6.8, 6.0, 6.9, 6.2, 5.9, 7.0, 6.9, 8.3, 5.6, 8.2, 6.0, 6.7, 7.5, 6.2, 10.1, 7.0, 7.2, 5.5, 5.7, 11.1, 6.9, 11.5, 7.1, 6.6, 6.3, 6.6, 7.8, 6.7, 5.7, 6.7, 7.2, 9.1, 7.8, 8.1, 7.4, 6.5, 6.8, 7.4, 5.3, 7.6, 7.0, 6.2, 11.3, 5.0, 6.4, 6.0, 8.9, 6.6, 7.0, 6.5, 7.7, 7.2, 6.0, 6.5, 5.9, 6.4, 7.0, 6.7, 6.2, 6.6, 6.8, 7.5, 7.4, 8.0, 6.2, 7.2, 6.9, 6.2, 8.2, 6.0, 7.4, 8.3, 6.6, 6.4, 6.8, 5.6, 6.0, 6.4, 6.8, 7.0, 8.9, 7.1, 7.4, 6.9, 6.6, 8.4, 7.1, 8.7, 7.3, 8.3, 8.2, 9.0, 10.9, 8.6, 9.6, 7.3, 12.0, 6.0, 6.9, 7.4, 5.8, 5.6, 5.7, 6.7, 6.1, 10.6, 8.2, 7.3, 7.2, 6.4, 7.4, 7.9, 6.7, 6.8, 9.9, 6.4, 7.2, 5.0, 7.5, 5.3, 6.9, 5.6, 7.2, 6.9, 6.1, 6.9, 7.3, 7.0, 6.6, 7.4, 6.3, 8.0, 7.4, 11.6, 8.9, 7.0, 6.9, 6.4, 6.5, 10.4, 6.7, 5.6, 5.5, 10.6, 8.8, 6.9, 7.4, 7.6, 7.2, 6.0, 9.1, 5.8, 7.5, 7.0, 6.5, 6.0, 5.1, 6.7, 6.9, 7.4, 7.9, 7.3, 7.8, 8.5, 6.6, 6.7, 6.1, 7.3, 7.0, 6.0, 7.7, 7.4, 6.3, 6.0, 6.6, 7.1, 6.8, 6.4, 7.0, 5.7, 5.1, 7.4, 5.7, 7.7, 6.7, 6.6, 6.4, 6.8, 7.1, 8.0, 6.0, 8.0, 12.4, 6.6, 7.3, 7.0, 6.1, 6.6, 6.9, 6.4, 7.9, 6.6, 7.5, 9.6, 7.2, 8.0, 5.5, 6.3, 6.8, 6.9, 6.6, 7.4, 7.6, 5.6, 7.0, 6.9, 6.9, 6.9, 6.7, 6.8, 6.4, 6.8, 6.0, 7.5, 9.0, 10.2, 6.6, 7.8, 13.7, 7.1, 7.0, 7.1, 7.7, 6.1, 8.2, 9.5, 7.4, 6.5, 8.3, 5.7, 6.4, 7.8, 6.8, 6.7, 6.7], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Reference<br>fixed.acidity=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [7.2, 7.2, 9.1, 6.2, 9.2, 7.1, 5.3, 8.5, 6.9, 7.5, 7.0, 6.9, 7.3, 7.3, 5.1, 6.4, 7.8, 5.7, 6.6, 8.2, 6.1, 7.4, 7.5, 8.8, 7.0, 7.8, 5.9, 9.7, 7.5, 6.2, 7.0, 7.8, 5.8, 7.1, 7.4, 9.1, 8.5, 6.3, 10.2, 6.6, 6.9, 8.2, 5.7, 7.1, 7.1, 5.7, 5.3, 6.7, 8.2, 6.6, 9.9, 6.3, 6.6, 12.3, 7.4, 7.6, 8.0, 6.5, 6.5, 11.5, 6.3, 6.5, 6.7, 6.0, 8.5, 5.8, 6.7, 7.7, 6.7, 8.5, 7.4, 8.6, 7.4, 7.0, 6.4, 6.6, 6.2, 7.9, 7.5, 7.7, 8.2, 6.9, 6.1, 6.9, 7.7, 9.2, 6.1, 6.5, 7.1, 7.0, 8.6, 5.8, 8.4, 7.4, 7.4, 6.6, 6.4, 9.2, 6.4, 7.7, 7.2, 7.6, 7.1, 7.6, 7.8, 7.8, 5.9, 5.6, 6.2, 6.5, 7.4, 7.2, 6.2, 5.5, 7.1, 6.7, 7.2, 5.2, 10.6, 7.1, 5.8, 6.3, 6.7, 6.9, 7.1, 7.0, 6.8, 8.7, 7.7, 7.1, 10.3, 10.1, 6.4, 6.6, 9.4, 7.1, 8.3, 6.4, 7.8, 7.9, 6.8, 6.5, 5.8, 6.4, 7.3, 5.7, 6.2, 6.4, 9.4, 7.5, 7.2, 7.1, 7.6, 6.7, 6.9, 8.1, 11.6, 5.9, 7.2, 6.4, 8.3, 9.6, 12.5, 6.2, 7.2, 7.3, 6.5, 6.4, 7.2, 6.6, 6.9, 5.1, 7.3, 8.2, 7.8, 7.1, 7.3, 7.0, 7.3, 7.0, 6.0, 8.1, 5.8, 8.9, 7.5, 5.9, 9.8, 7.5, 6.6, 7.3, 6.5, 7.7, 6.4, 6.0, 6.3, 7.5, 7.5, 6.7, 7.4, 6.1, 5.6, 9.9, 9.9, 10.0, 5.9, 7.2, 6.1, 9.9, 5.6, 5.9, 7.5, 5.1, 6.7, 9.8, 6.6, 6.6, 7.1, 6.4, 8.0, 9.8, 10.0, 5.5, 7.5, 8.6, 6.4, 7.4, 5.3, 8.5, 5.9, 7.3, 6.4, 9.6, 7.0, 7.2, 6.8, 7.5, 6.1, 5.7, 6.6, 6.8, 10.8, 7.0, 6.7, 6.4, 5.6, 11.3, 9.3, 6.8, 6.6, 9.1, 9.8, 7.6, 5.8, 7.3, 7.6, 7.9, 7.2, 6.7, 9.2, 12.3, 7.1, 6.5, 6.9, 6.4, 9.3, 6.4, 5.8, 5.6, 6.1, 6.6, 7.5, 6.8, 7.8, 6.3, 6.2, 6.7, 7.0, 7.7, 6.6, 5.9, 9.9, 6.4, 8.9, 6.8, 6.3, 7.2, 9.5, 5.9, 9.2, 6.7, 7.5, 9.4, 7.1, 5.3, 8.6, 9.9, 5.8, 6.3, 7.7, 9.2, 5.6, 7.4, 9.0, 6.5, 9.4, 8.7, 6.1, 6.3, 10.6, 7.0, 6.4, 6.1, 6.4, 6.4, 8.2, 7.5, 9.4, 9.0, 6.8, 6.5, 7.4, 6.2, 7.7, 7.6, 6.6, 7.1, 15.9, 6.2, 8.1, 6.4, 6.8, 9.1, 6.5, 6.9, 5.5, 9.9, 7.3, 10.8, 6.0, 6.7, 6.1, 6.3, 7.0, 9.1, 6.6, 7.4, 6.2, 8.0, 7.0, 7.0, 7.6, 8.0, 8.4, 5.6, 9.2], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Current<br>fixed.acidity=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [7.3, 6.4, 7.5, 5.6, 6.9, 6.8, 6.5, 9.1, 9.0, 12.7, 7.6, 7.2, 6.4, 7.3, 6.7, 6.8, 6.8, 11.9, 6.6, 6.4, 6.8, 8.0, 6.3, 6.5, 6.6, 7.4, 7.2, 7.5, 5.3, 7.0, 7.5, 5.3, 8.1, 8.2, 6.9, 5.9, 9.8, 7.5, 7.0, 6.0, 8.6, 7.5, 6.9, 7.0, 6.4, 6.5, 8.3, 8.3, 6.0, 7.4, 6.2, 7.5, 9.0, 8.0, 7.7, 7.9, 7.4, 15.6, 7.6, 6.9, 15.5, 8.1, 6.3, 10.0, 7.0, 6.8, 8.5, 7.4, 6.8, 7.3, 6.6, 5.6, 4.9, 8.8, 6.6, 7.1, 7.2, 7.0, 6.2, 8.0, 7.6, 9.2, 6.0, 7.9, 8.3, 8.2, 7.9, 7.8, 6.7, 7.5, 6.3, 7.6, 9.3, 7.7, 6.9, 7.6, 8.0, 8.9, 6.8, 6.3, 10.0, 9.4, 6.8, 6.5, 8.9, 7.0, 9.0, 6.0, 6.0, 7.6, 7.9, 7.1, 6.9, 6.9, 9.6, 8.9, 6.6, 6.6, 6.4, 8.4, 5.8, 6.6, 7.0, 7.8, 7.2, 7.5, 5.7, 11.8, 7.2, 6.8, 6.9, 6.6, 7.7, 8.8, 7.1, 7.2, 6.9, 9.0, 7.2, 6.5, 7.9, 8.3, 8.6, 8.4, 9.5, 7.4, 7.9, 6.4, 7.9, 6.9, 7.2, 7.9, 7.1, 7.2, 7.0, 7.2, 6.1, 6.8, 6.9, 8.0, 8.4, 6.6, 7.1, 7.6, 7.4, 7.7, 5.9, 6.7, 6.6, 7.4, 6.6, 7.2, 7.1, 6.6, 7.9, 5.8, 7.0, 6.8, 6.6, 6.1, 8.0, 4.2, 11.9, 6.4, 6.8, 7.5, 6.3, 6.8, 7.8, 6.2, 7.2, 8.2, 7.7, 7.0, 7.2, 7.3, 7.8, 5.6, 7.1, 6.8, 6.8, 6.2, 6.4, 6.9, 7.1, 7.2, 6.8, 10.0, 6.4, 7.3, 9.3, 5.8, 6.7, 8.5, 6.0, 6.7, 6.4, 8.8, 7.1, 6.5, 6.9, 6.7, 8.3, 6.4, 6.8, 6.1, 7.6, 7.0, 8.2, 4.9, 6.3, 7.6, 6.5, 9.2, 8.4, 6.7, 5.5, 6.1, 7.7, 7.4, 6.2, 7.2, 7.9, 7.1, 7.0, 6.0, 7.5, 5.7, 8.2, 6.4, 7.5, 6.8, 9.4, 7.5, 6.5, 6.5, 7.1, 6.8, 7.2, 10.8, 6.5, 7.2, 6.4, 6.4, 8.2, 6.4, 7.1, 6.2, 6.2, 6.4, 7.1, 8.3, 7.9, 6.7, 9.2, 6.0, 7.4, 7.0, 6.7, 6.8, 8.3, 6.1, 6.9, 5.8, 8.9, 6.0, 8.6, 6.0, 7.8, 9.8, 6.4, 5.2, 7.2, 7.2, 6.4, 9.3, 6.3, 6.4, 6.2, 8.9, 6.6, 13.0, 6.2, 6.8, 7.0, 6.4, 11.1, 7.4, 8.1, 6.4, 7.5, 6.4, 8.2, 7.1, 7.6, 7.2, 7.6, 6.7, 6.2, 5.4, 11.0, 6.3, 5.7, 6.6, 8.9, 6.8, 6.3, 12.2, 6.6, 4.9, 7.6, 6.4, 7.2, 6.3, 7.6, 7.2, 5.8, 6.8, 6.5, 7.3, 6.9, 9.0, 6.8, 8.0, 10.4, 8.1, 8.3, 7.3, 6.5, 7.6, 7.0, 7.1], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Reference\", \"x\": 0.245, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Current\", \"x\": 0.755, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"barmode\": \"overlay\", \"legend\": {\"title\": {\"text\": \"target\"}, \"tracegroupgap\": 0}, \"margin\": {\"t\": 60}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.49], \"title\": {\"text\": \"fixed.acidity\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.51, 1.0], \"matches\": \"x\", \"title\": {\"text\": \"fixed.acidity\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"count\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}}}, \"fixed.acidity_good\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (ref)\", \"type\": \"scatter\", \"x\": [7.0, 7.3, 7.5, 6.3, 6.3, 7.0, 6.5, 5.6, 6.9, 5.8, 8.1, 7.7, 6.2, 7.3, 6.8, 6.6, 7.3, 15.6, 5.2, 6.2, 8.0, 7.7, 6.3, 7.3, 9.0, 6.0, 5.3, 7.8, 7.1, 6.2, 6.3, 7.3, 7.2, 5.8, 7.2, 7.7, 7.7, 5.9, 6.7, 6.5, 6.0, 7.2, 7.7, 7.4, 8.1, 6.8, 8.2, 6.2, 9.4, 6.8, 7.0, 6.6, 6.0, 6.3, 14.2, 6.8, 5.9, 6.0, 7.6, 5.9, 11.1, 5.9, 7.1, 6.6, 12.6, 8.3, 6.7, 7.4, 7.0, 6.7, 7.0, 6.2, 6.4, 7.9, 7.4, 7.0, 7.9, 6.5, 8.2, 6.9, 5.7, 6.3, 8.3, 9.1, 8.0, 7.8, 7.3, 8.6, 6.9, 10.8, 6.4, 7.7, 8.8, 6.6, 6.1, 5.0, 6.3, 5.9, 6.6, 7.3, 8.3, 7.3, 9.9, 7.5, 7.2, 6.4, 5.2, 7.9, 6.7, 6.7, 8.0, 7.9, 6.9, 7.4, 5.6, 6.7, 5.9, 6.0, 7.1, 7.2, 6.8, 6.3, 9.2, 7.8, 8.1, 7.5, 6.8, 6.7, 6.9, 7.3, 7.0, 5.0, 7.3, 8.2, 7.7, 5.0, 10.1, 6.6, 7.1, 9.5, 8.0, 5.9, 6.8, 6.9, 10.8, 7.4, 7.2, 5.8, 6.7, 7.3, 7.0, 12.0, 6.7, 6.2, 6.6, 6.4, 5.9, 7.8, 7.4, 6.1, 5.9, 7.5, 6.4, 7.9, 6.1, 7.2, 7.1, 6.3, 7.8, 5.2, 10.2, 7.8, 6.2, 8.5, 7.6, 6.4, 7.8, 6.0, 6.2, 7.4, 6.0, 6.8, 7.9, 6.1, 6.2, 5.6, 5.5, 11.1, 5.9, 6.4, 6.6, 5.6, 5.0, 7.0, 7.1, 7.8, 6.1, 8.4, 6.8, 8.5, 7.7, 6.4, 7.1, 8.4, 6.7, 8.2, 8.2, 8.1, 7.3, 8.0, 8.2, 6.5, 6.5, 6.0, 6.9, 6.6, 6.6, 7.0, 7.5, 6.6, 6.6, 6.6, 7.0, 8.3, 7.1, 7.0, 7.1, 7.1, 7.7, 6.1, 6.0, 6.6, 6.3, 6.9, 6.7, 4.8, 6.4, 6.6, 6.3, 7.1, 8.9, 7.2, 7.2, 6.4, 7.0, 7.0, 7.7, 6.5, 6.3, 5.8, 8.0, 7.4, 10.8, 10.1, 10.7, 6.4, 6.5, 6.6, 7.3, 9.8, 7.4, 6.3, 6.1, 7.2, 7.0, 6.2, 7.3, 9.1, 6.5, 5.2, 6.0, 6.4, 6.7, 6.0, 5.5, 6.7, 6.7, 9.1, 5.6, 7.1, 7.8, 7.6, 5.1, 5.8, 8.0, 10.8, 6.2, 7.8, 7.7, 7.3, 5.6, 7.9, 8.3, 6.2, 6.0, 6.1, 7.1, 6.7, 5.7, 6.8, 6.6, 5.9, 5.7, 6.0, 8.4, 7.2, 8.5, 7.1, 7.2, 6.6, 7.2, 7.3, 5.9, 6.1, 7.1, 13.4, 8.3, 6.0, 6.4, 5.9, 5.8, 6.1, 6.8, 6.3, 7.3, 7.0, 7.4, 8.8, 7.4, 6.4, 5.1, 8.1, 11.4, 5.6, 6.8, 6.9, 7.0, 7.2, 6.2, 6.8, 6.5, 8.8, 5.1, 6.5, 7.2, 8.1, 7.1, 8.2, 5.8, 7.3, 6.8, 7.7, 6.7, 8.3, 6.8, 6.3, 8.4, 6.2, 11.5, 6.9, 7.4, 6.2, 8.9, 7.2, 7.2, 6.6, 6.2, 6.2, 9.2, 7.2, 5.8, 5.6, 7.7, 9.2, 6.6, 7.0, 5.9, 8.6, 7.4, 9.0, 10.0, 7.5, 8.3, 6.5, 6.9, 7.5, 10.2, 6.1, 7.7, 6.8, 6.1, 6.0, 6.7, 6.3, 7.0, 6.0, 7.7, 6.8, 5.0, 8.0, 7.4, 6.7, 6.1, 7.0, 7.4, 5.7, 6.8, 7.4, 6.1, 6.5, 6.6, 6.4, 5.7, 6.6, 7.1, 7.0, 6.3, 7.1, 7.7, 7.5, 7.5, 6.9, 5.9, 7.0, 6.1, 5.8, 8.0, 7.4, 6.7, 8.0, 7.7, 6.6, 6.4, 5.5, 6.9, 4.4, 8.3, 6.3, 6.9, 11.1, 6.4, 6.8, 7.4, 7.5, 6.9, 6.3, 7.2, 6.7, 10.5, 5.9, 6.8, 6.1, 5.8, 7.3, 7.4, 12.0, 6.4, 7.1, 6.4, 6.2, 11.1, 7.6, 11.5, 8.0, 6.4, 7.3, 6.2, 6.7, 7.3, 8.9, 8.3, 6.2, 6.5, 8.7, 5.7, 6.5, 7.0, 6.7, 7.5, 7.3, 6.2, 6.5, 6.6, 6.3, 6.5, 7.7, 7.5, 6.6, 5.7, 6.0, 7.3, 7.9, 7.0, 6.5, 7.3, 8.6, 6.9, 6.5, 7.3, 7.4, 6.9, 7.0, 5.3, 7.2, 7.9, 6.7, 5.1, 6.7, 6.5, 6.4, 6.9, 7.8, 7.1, 7.5, 6.5, 6.3, 6.7, 6.6, 6.7, 6.8, 8.4, 6.0, 8.1, 6.5, 7.2, 7.1, 8.6, 8.0, 6.2, 6.5, 8.9, 6.9, 5.8, 6.0, 6.8, 7.9, 6.8, 7.1, 6.8, 7.0, 6.8, 6.0, 7.9, 7.9, 6.5, 6.0, 10.1, 7.0, 6.8, 6.3, 7.2, 7.7, 6.6, 8.2, 6.4, 6.8, 7.2, 7.0, 7.8, 6.6, 6.7, 7.6, 5.6, 6.4, 5.1, 7.7, 7.1, 8.6, 6.1, 8.0, 6.2, 7.6, 7.2, 7.1, 6.5, 6.3, 7.2, 6.4, 7.9, 7.8, 7.5, 6.4, 5.9, 6.0, 7.0, 6.9, 5.4, 6.8, 6.0, 6.8, 8.6, 6.7, 6.3, 6.0, 5.0, 7.2, 5.6, 8.0, 5.6, 7.8, 7.4, 7.1, 6.4, 7.0, 9.4, 6.0, 5.9, 7.1, 6.3, 7.3, 6.4, 10.5, 8.1, 8.1, 6.4, 8.8, 6.1, 7.0, 7.2, 9.2, 6.6, 6.9, 9.7, 8.8, 7.8, 7.8, 7.3, 6.7, 6.6, 6.8, 7.15, 8.0, 7.4, 6.5, 5.3, 7.1, 10.8, 6.6, 7.0, 7.2, 7.5, 10.7, 5.9, 6.8, 6.9], \"xaxis\": \"x\", \"y\": [0.8156061324462894, 0.42491310922683634, 0.8867827646463432, 0.8014995238430205, 0.30499958310650876, 0.5817355832705369, 0.959171062334887, 0.7854416128369749, 0.9085690698200813, 0.8998600376511439, 0.6341165000693628, 0.412102187638673, 0.7643629411050379, 0.4710001938005606, 0.40182653035141874, 0.40438056362905367, 0.8870480016118494, 0.3650667978415713, 0.9064321709292111, 0.9327245345966092, 0.6458420185168736, 0.8821841129047617, 0.6704018506542557, 0.7655671181822064, 0.8616986618932058, 0.48774537944210006, 0.9637355036179479, 0.6794204065079696, 0.6044835155949141, 0.7867954023600708, 0.9137982268836646, 0.5867502063434873, 0.8048584290077971, 0.9718511071053526, 0.9627192884041744, 0.7978623718349598, 0.6091120966723917, 0.8943338178728011, 0.8853376735027229, 0.9045563504021151, 0.9264844632598176, 0.6342457655367447, 0.9414033426130164, 0.5636516403732365, 0.5172967922101196, 0.4836896337264441, 0.35199620689495453, 0.788779954566273, 0.9696552399248426, 0.772496554239754, 0.8132656157621138, 0.4539090261140653, 0.9333708926412786, 0.679765045723866, 0.48457442622955804, 0.4248820606938153, 0.6737819616086004, 0.8780741425819777, 0.38340602447337646, 0.90634085684919, 0.5574014604752268, 0.6804147683859246, 0.9077110088845216, 0.7718472635729894, 0.4717552048891654, 0.22222808308441652, 0.8616549355667619, 0.705749071892896, 0.4699129352300819, 0.9680524782819758, 0.8891353183282249, 0.9466602521798594, 0.8553382520847058, 0.7430243903066251, 0.6616131862201935, 0.6919609500216202, 0.96565744679506, 0.913108907487878, 0.5395521774612226, 0.9026238558501023, 0.6550941529376255, 0.9757876320152292, 0.8833495792027257, 0.6666029765862381, 0.8504582120840628, 0.9320215595878566, 0.7639947574915884, 0.6085229656221847, 0.9557131606798471, 0.46184432615952054, 0.5642658412077981, 0.8815615400732472, 0.7189203536918151, 0.9301020530176726, 0.7341394174346678, 0.7759189559372703, 0.8448078654733812, 0.9012666081120407, 0.8926028620066223, 0.5287492720273277, 0.6874206920638863, 0.37408584674942635, 0.8348370105186077, 0.8697567261320243, 0.9175759024810304, 0.44644098895981, 0.8874384748400057, 0.7787567487441118, 0.9416122482572158, 0.3265229243180111, 0.9308095750950773, 0.42267134533232753, 0.43068181214270274, 0.8727308285810839, 0.7201611177732586, 0.8430904589044517, 0.8140617541555761, 0.9456747441572588, 0.6672663325862807, 0.8756470416862959, 0.518871521713375, 0.7040615347784164, 0.4957960231649875, 0.6250130361556073, 0.27413726132188326, 0.5193133578087885, 0.37656641690434584, 0.5808048103476511, 0.7917827117482167, 0.36569143480873245, 0.7232542293832885, 0.9785934574433302, 0.5715075300165849, 0.8182555969893297, 0.5448461144048058, 0.9491291995847589, 0.4833587957991669, 0.3189279754564957, 0.9184825510014271, 0.5524830505676419, 0.9600429304649183, 0.7818180966165994, 0.7962710274484252, 0.7569429870375118, 0.46184432615952054, 0.7641514270390748, 0.9486763575522457, 0.8086368705092697, 0.6784536879503494, 0.6877019790624462, 0.6082670858563528, 0.6053794617794684, 0.6319330693089359, 0.4982105707488519, 0.6787928880949093, 0.9231980717613485, 0.8831230955067948, 0.6845485656817341, 0.8799204262605215, 0.9164563829924386, 0.7819268199067826, 0.23469888428232324, 0.9492377841603665, 0.8826092272015389, 0.6360541596480074, 0.5184081252698399, 0.6400126753125241, 0.542646305979658, 0.4479501208302092, 0.7783171875827786, 0.7867712153112567, 0.5236605417423803, 0.6959846197179591, 0.7925023358445066, 0.6683189355892497, 0.18737025221649042, 0.42506327048176057, 0.7272596040941706, 0.7314191754306454, 0.4827891324637794, 0.6649341228620356, 0.9038332731164471, 0.9588917860646077, 0.8945194928389463, 0.49833043835950624, 0.7997712594855277, 0.8577935987172323, 0.7622736922026153, 0.8039391974899521, 0.7396811504731934, 0.8115340233127679, 0.801728888664367, 0.738451208106372, 0.5859674792922007, 0.1865203674848816, 0.8773430435604171, 0.36888329310067386, 0.8651817982269884, 0.9067615420962557, 0.8594983988587351, 0.7437750884018276, 0.9145224932934428, 0.9135679891815164, 0.8001832456898428, 0.6860977766129374, 0.9377826008632761, 0.9300369611912853, 0.6997062971069969, 0.5693182102579236, 0.3404656140239559, 0.7160591142088384, 0.7953146078011, 0.8869803873277935, 0.7639982823097876, 0.8681285227071118, 0.576868797021353, 0.93035102563313, 0.8375600281828176, 0.8279918435672958, 0.9266689436294401, 0.7559862346636359, 0.5099889666930224, 0.6914445842613687, 0.9651950326885705, 0.87851968214492, 0.8499702807396289, 0.4685752957996948, 0.7241546992314323, 0.7848147251007912, 0.7341394174346678, 0.7008877443692281, 0.340588975625529, 0.5013021766499856, 0.8321174529331695, 0.8818378666553491, 0.9176909075187759, 0.8634678749265305, 0.7436082905772717, 0.9343776659412377, 0.7668809937296346, 0.6243383802582345, 0.5332560471205093, 0.6907315465649003, 0.16626803588025432, 0.1668542888532837, 0.7408943843163458, 0.5221312328975666, 0.7457559475413279, 0.46389636934606376, 0.9292627865919654, 0.5268311186840582, 0.4244151934213653, 0.643310536612302, 0.8577438313980266, 0.7816208399762355, 0.8553382520847058, 0.7010035672814305, 0.5242572272016158, 0.9187320011579697, 0.8703498177621264, 0.6713045345576062, 0.9137982268836646, 0.8614414457916845, 0.9445662266054761, 0.8808216590199034, 0.7386378115490353, 0.8873009977622293, 0.9157094897337859, 0.6606038558129893, 0.9296803968514485, 0.8864322240790464, 0.5146720135715994, 0.8720710714485208, 0.9415427660945741, 0.9138701141498735, 0.6527559092576063, 0.8751970040938668, 0.9249766460056568, 0.801728888664367, 0.6575848465963361, 0.6934824043184128, 0.8619113960143526, 0.9419078024651042, 0.9591721389341828, 0.8397407150753159, 0.9084383840076588, 0.4963969309336195, 0.7359588175524252, 0.3531961907069324, 0.9279819479140234, 0.7752976919572294, 0.8665226278427577, 0.9515211055933231, 0.7314191754306454, 0.890886918514299, 0.3235491032739525, 0.3719939405423586, 0.6323804178173072, 0.8398006965792015, 0.8239469134189235, 0.8592101816891015, 0.7615002907198236, 0.8688259750909261, 0.8718104001390852, 0.5838074755684882, 0.8756470416862959, 0.901850575196968, 0.9451930143658351, 0.6253812669856891, 0.5890764576710766, 0.4921052500998711, 0.4862070578416567, 0.9170647663398394, 0.7035583451969506, 0.8476385889092957, 0.5603058978573646, 0.5810606890504925, 0.9088604673919816, 0.8903252600075929, 0.944267921154058, 0.9435968591480925, 0.938237366988842, 0.9357286047893738, 0.7961386682142712, 0.7840233885688647, 0.2513590507613302, 0.7389284097502917, 0.9053472250810051, 0.44438282424164377, 0.862281110352348, 0.8021059248496223, 0.9152740930046814, 0.643737358401971, 0.8540304955499701, 0.8613418170006786, 0.6911084183178322, 0.8848367871057808, 0.8387883096682573, 0.5942651630821018, 0.65691393717736, 0.6369979527510315, 0.8280658524313272, 0.9640736168216585, 0.6546311715671466, 0.5599819536107853, 0.48348053317652906, 0.7668016587569692, 0.03620763244300767, 0.7364400865449663, 0.37408584674942635, 0.8767503774172, 0.8743962287172513, 0.8751970040938668, 0.8833495792027257, 0.7091886355621774, 0.87006937054451, 0.7904001815220257, 0.8761418339280951, 0.8306834851111597, 0.7531715889012326, 0.38181207472529843, 0.6490458991820136, 0.9138057013338913, 0.9046222904886461, 0.17956061692355052, 0.7506163079023257, 0.8963285795381793, 0.8848361664653354, 0.9283037217377402, 0.45996158699034445, 0.7290858434196763, 0.8319094967702583, 0.6578018675312727, 0.18727567457681707, 0.8673410249845035, 0.9453298670648187, 0.9446538464906173, 0.19605573045952288, 0.6723831041639817, 0.3438281302059518, 0.37858973820495484, 0.6953170483296187, 0.21463507152544156, 0.26963792069965237, 0.3280912492037974, 0.8399932187801539, 0.420387898633768, 0.36522500752858966, 0.5810560693343539, 0.9306346767722963, 0.7167716539092029, 0.656736106921484, 0.5549139996760648, 0.6909161521388689, 0.591904263202073, 0.884703171197362, 0.866402281883595, 0.7582770814524421, 0.8990773411030794, 0.1818065866116437, 0.6222165686186035, 0.17261914235374884, 0.8156064679757086, 0.4851213943917703, 0.8871292211128762, 0.8398494053952754, 0.703270618172154, 0.6305543892506115, 0.7494149477175548, 0.1532408287022325, 0.6159732902773407, 0.738220551127759, 0.8354520044441791, 0.8536870432671441, 0.5751476712690671, 0.9077719201719568, 0.7878515691455199, 0.6672663325862807, 0.45293736875445273, 0.17058553029544155, 0.747933377844996, 0.8400163125056676, 0.4516778718827729, 0.6082670858563528, 0.8401843469141149, 0.7636885291754726, 0.789170795337903, 0.8128612802083497, 0.7522530659814418, 0.8086757686066508, 0.8356255123032285, 0.9241779635105248, 0.9674588597049086, 0.9368885694202199, 0.4990764491242286, 0.876561204324957, 0.554264192243629, 0.5967716244634195, 0.9060244606340249, 0.8401608718856799, 0.7329750583133859, 0.8021769878309102, 0.9316817655017511, 0.45488322534173153, 0.798578398438993, 0.7425236774748816, 0.5742682328784404, 0.4937681935814938, 0.8972164286692267, 0.8914273370768748, 0.9377613518261881, 0.8862258850530264, 0.8591757581361523, 0.7410678096850266, 0.6822336012657398, 0.9201658505843877, 0.6982578893131915, 0.5746709232170782, 0.7626532952948841, 0.7137703530889916, 0.7520971196461234, 0.4473853625959922, 0.7957460056304991, 0.4833174871501707, 0.8758467705785958, 0.4689303842787964, 0.6133612564737879, 0.8568681391705205, 0.6835133967314007, 0.9732070839986944, 0.21435716257549006, 0.5761668962420043, 0.4055433603128916, 0.3743394998756179, 0.9118635774953143, 0.964551884718591, 0.9306459334511011, 0.8424802355113449, 0.7739144871152517, 0.6872688771534424, 0.8590561833388345, 0.6714384475466295, 0.6408669500407106, 0.5203550269219845, 0.2856853969697174, 0.857760555506807, 0.9307094503226838, 0.6787928880949093, 0.8308635255795866, 0.29271374211533296, 0.6769315553524353, 0.23831547366416572, 0.5895099457120908, 0.8994675076574448, 0.8893400405584444, 0.8456825404777587, 0.5399612081435882, 0.6188649121485582, 0.9281492942813848, 0.7611740601422801, 0.46550237374781617, 0.8896861436466836, 0.9038901015569306, 0.5044440900554997, 0.9215480939667524, 0.6930273792518707, 0.8723244804196287, 0.5624338775604165, 0.9226297661236537, 0.8469231754225917, 0.9430557295321259, 0.9097116306258912, 0.5988707702267543, 0.3813853072548755, 0.8843832309478876, 0.9006952500629406, 0.918975987201669, 0.18997930334445084, 0.8923106748541326, 0.8461388699436441, 0.5973439234355874, 0.9544642924744549, 0.91770416680597, 0.9177239854204658, 0.17584552180125673, 0.9240099144459667, 0.48524948024905407, 0.8889685222180134, 0.5785503824403398, 0.7511953459672914, 0.6887596776945688, 0.6717539058356753, 0.7168761391602206, 0.7134478068952186, 0.834626350903405, 0.5715867980362679, 0.6588392688727011, 0.9488572786900573, 0.8920529250761863, 0.8891353183282249, 0.707981940789761, 0.926348680038428, 0.631489487929038, 0.7443856388661001, 0.9260754381930228, 0.9544642924744549, 0.8497401318990601, 0.5604010177433062, 0.8036334301115304, 0.7898153537185114, 0.8491431337122072, 0.6570881560807702, 0.8389599143569951, 0.7944137576415592, 0.8132668978866627, 0.44714680104169846, 0.7978021044641371, 0.41921696608658454, 0.38876183891604754, 0.9248463736054193, 0.4277915265084825, 0.6345107008491314, 0.8008942533173764, 0.5087430598332189, 0.9414938992689892, 0.6922115882765215, 0.8296175750175913, 0.8593339228153332, 0.8975141534758351, 0.5977126281557783, 0.9279478536756302, 0.6485770817571253, 0.8905823996589662, 0.9332072841984264, 0.9432461110830079, 0.9410120781436498, 0.6339696776630096, 0.7120962557761497, 0.5841709037351369, 0.5928970840420333, 0.9006589732900512, 0.936371533648048, 0.6907852379101131, 0.7675780198071424, 0.9444587893431046, 0.4702336163336472, 0.8925536722101626, 0.8158978708906081, 0.822780392485108, 0.8037335327290217, 0.8382351003285965, 0.8941557358589171, 0.4796498334522667, 0.926348680038428, 0.6842118015950474, 0.6463580983468415, 0.8292048071278182, 0.5834426687867836, 0.8419845362148763, 0.2431563391580561, 0.7763142135369961, 0.9390550746437164, 0.7774903237071782, 0.8141232663130791, 0.9444089886680379, 0.430401459478284, 0.9192677156927759, 0.8427595869840984, 0.87120858451521, 0.5693182102579236, 0.820012080301976, 0.58719119911586, 0.42769376643096113, 0.3542595869275313, 0.89579938191327, 0.8743523014696554, 0.7820497043505815, 0.5279069501129625, 0.8869579700149332, 0.45488774279476296, 0.8514781135508903, 0.8278297091497892, 0.663749097381813, 0.5132851713944618, 0.4906566565015208, 0.6415219885510332, 0.6991293681294938, 0.8150539074042624, 0.5800669536763935, 0.9583771200922359, 0.7366090055976814, 0.5747817696023392, 0.5315376696882942, 0.8074446941396305, 0.9038901015569306, 0.9087015650331977, 0.6697291810323083, 0.5800669536763935, 0.8807270543114014, 0.5135845984304893, 0.9352791850238339, 0.36120709973337456, 0.6206709330576408, 0.906286252315459, 0.7937202818717513], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [7.2, 7.2, 9.1, 6.2, 9.2, 7.1, 5.3, 8.5, 6.9, 7.5, 7.0, 6.9, 7.3, 7.3, 5.1, 6.4, 7.8, 5.7, 6.6, 8.2, 6.1, 7.4, 7.5, 8.8, 7.0, 7.8, 5.9, 9.7, 7.5, 6.2, 7.0, 7.8, 5.8, 7.1, 7.4, 9.1, 8.5, 6.3, 10.2, 6.6, 6.9, 8.2, 5.7, 7.1, 7.1, 5.7, 5.3, 6.7, 8.2, 6.6, 9.9, 6.3, 6.6, 12.3, 7.4, 7.6, 8.0, 6.5, 6.5, 11.5, 6.3, 6.5, 6.7, 6.0, 8.5, 5.8, 6.7, 7.7, 6.7, 8.5, 7.4, 8.6, 7.4, 7.0, 6.4, 6.6, 6.2, 7.9, 7.5, 7.7, 8.2, 6.9, 6.1, 6.9, 7.7, 9.2, 6.1, 6.5, 7.1, 7.0, 8.6, 5.8, 8.4, 7.4, 7.4, 6.6, 6.4, 9.2, 6.4, 7.7, 7.2, 7.6, 7.1, 7.6, 7.8, 7.8, 5.9, 5.6, 6.2, 6.5, 7.4, 7.2, 6.2, 5.5, 7.1, 6.7, 7.2, 5.2, 10.6, 7.1, 5.8, 6.3, 6.7, 6.9, 7.1, 7.0, 6.8, 8.7, 7.7, 7.1, 10.3, 10.1, 6.4, 6.6, 9.4, 7.1, 8.3, 6.4, 7.8, 7.9, 6.8, 6.5, 5.8, 6.4, 7.3, 5.7, 6.2, 6.4, 9.4, 7.5, 7.2, 7.1, 7.6, 6.7, 6.9, 8.1, 11.6, 5.9, 7.2, 6.4, 8.3, 9.6, 12.5, 6.2, 7.2, 7.3, 6.5, 6.4, 7.2, 6.6, 6.9, 5.1, 7.3, 8.2, 7.8, 7.1, 7.3, 7.0, 7.3, 7.0, 6.0, 8.1, 5.8, 8.9, 7.5, 5.9, 9.8, 7.5, 6.6, 7.3, 6.5, 7.7, 6.4, 6.0, 6.3, 7.5, 7.5, 6.7, 7.4, 6.1, 5.6, 9.9, 9.9, 10.0, 5.9, 7.2, 6.1, 9.9, 5.6, 5.9, 7.5, 5.1, 6.7, 9.8, 6.6, 6.6, 7.1, 6.4, 8.0, 9.8, 10.0, 5.5, 7.5, 8.6, 6.4, 7.4, 5.3, 8.5, 5.9, 7.3, 6.4, 9.6, 7.0, 7.2, 6.8, 7.5, 6.1, 5.7, 6.6, 6.8, 10.8, 7.0, 6.7, 6.4, 5.6, 11.3, 9.3, 6.8, 6.6, 9.1, 9.8, 7.6, 5.8, 7.3, 7.6, 7.9, 7.2, 6.7, 9.2, 12.3, 7.1, 6.5, 6.9, 6.4, 9.3, 6.4, 5.8, 5.6, 6.1, 6.6, 7.5, 6.8, 7.8, 6.3, 6.2, 6.7, 7.0, 7.7, 6.6, 5.9, 9.9, 6.4, 8.9, 6.8, 6.3, 7.2, 9.5, 5.9, 9.2, 6.7, 7.5, 9.4, 7.1, 5.3, 8.6, 9.9, 5.8, 6.3, 7.7, 9.2, 5.6, 7.4, 9.0, 6.5, 9.4, 8.7, 6.1, 6.3, 10.6, 7.0, 6.4, 6.1, 6.4, 6.4, 8.2, 7.5, 9.4, 9.0, 6.8, 6.5, 7.4, 6.2, 7.7, 7.6, 6.6, 7.1, 15.9, 6.2, 8.1, 6.4, 6.8, 9.1, 6.5, 6.9, 5.5, 9.9, 7.3, 10.8, 6.0, 6.7, 6.1, 6.3, 7.0, 9.1, 6.6, 7.4, 6.2, 8.0, 7.0, 7.0, 7.6, 8.0, 8.4, 5.6, 9.2], \"xaxis\": \"x\", \"y\": [0.2802292104526322, 0.9455194119275858, 0.4978743212349556, 0.5289145624519528, 0.28439238707197784, 0.2033309570226689, 0.27345747478543325, 0.8322873304845451, 0.389055896812549, 0.3675472469853882, 0.5781933746273124, 0.7401955299744071, 0.44969671697605845, 0.4367887814338696, 0.31593955341667695, 0.3775624358859999, 0.19282181046294666, 0.048451763306065584, 0.6005928650583868, 0.032225376113695775, 0.427412413738938, 0.23973251442015217, 0.13890126550157303, 0.8613925272127, 0.329663916828638, 0.19359965390713213, 0.6827271716759634, 0.1960905505555538, 0.08135735686643118, 0.39737240301928484, 0.13902987396822816, 0.6514166433739288, 0.6994753721471061, 0.7140886736258081, 0.5021795028970708, 0.48743245558712556, 0.5731139673640956, 0.8820820642542792, 0.559972149724866, 0.5061565591493914, 0.5066810377847554, 0.833805652807593, 0.6979972163580744, 0.3177574231538272, 0.13068190592986567, 0.758876109553896, 0.5681062961269688, 0.715544821914063, 0.762062625203523, 0.4464438677531786, 0.20995974230910305, 0.5262622410710028, 0.39442669669188163, 0.2537324982988368, 0.6775437642744659, 0.23876321589577687, 0.6369158982934647, 0.38960060362966165, 0.6034323722874255, 0.7769991715799629, 0.15199748354041337, 0.5641412449951732, 0.7590466800561823, 0.5969347905931296, 0.1048362779837843, 0.7217824369593382, 0.2662339163773806, 0.16472378978351135, 0.37760124376932414, 0.7071736299639594, 0.3436862995931572, 0.8384434752264291, 0.3635333644877426, 0.7813188949129265, 0.7279369976219869, 0.5641098847382463, 0.3863964747623771, 0.9209913370067284, 0.1477144681640183, 0.8809374658555192, 0.6533168894759348, 0.8873477284758582, 0.3697306267878623, 0.28319023347825867, 0.5203701741750857, 0.5523747693308857, 0.6387521731780509, 0.3881380695009739, 0.8487896327149285, 0.4636606453307818, 0.8384434752264291, 0.558266603669778, 0.21657231888677728, 0.3635333644877426, 0.5512671313974766, 0.5051039398599867, 0.5827915753039158, 0.49441682850108926, 0.47309171914705017, 0.6262595591688196, 0.5508242483721094, 0.47332791509789995, 0.7117569366896692, 0.3933786516273859, 0.16465066549244003, 0.7490394132223248, 0.769261050002088, 0.7431932405995126, 0.3141000916210982, 0.723735045552473, 0.6484132891031948, 0.688519894019609, 0.40496704226994307, 0.5803736122960511, 0.6327801522745691, 0.45115706990411364, 0.37268733756108086, 0.9009693101135351, 0.06496389958099598, 0.44431713201158524, 0.39960831974332744, 0.8662156944598043, 0.31018081106061823, 0.5339551117365043, 0.33311273919547707, 0.400132762133902, 0.8528754522806217, 0.14419347879543085, 0.11672350429510901, 0.44556702529145975, 0.6160120899414699, 0.13766892845409207, 0.5517204028384314, 0.5232178919035022, 0.35483403305733974, 0.4900213704561591, 0.8854578072659228, 0.43084122675663034, 0.7601186327653665, 0.14072030431570776, 0.6186690618327106, 0.5245054232921349, 0.7326259458716644, 0.5690781983520095, 0.4018508815425063, 0.24877469563805235, 0.7952501197393639, 0.8766221356386195, 0.303451532996695, 0.5357745481647883, 0.7096524147827454, 0.20877177283968149, 0.8635610141758273, 0.46736762313881036, 0.6061151992073851, 0.113015272873705, 0.40446014603085867, 0.6332606063976143, 0.648705381890928, 0.42186952587750404, 0.8047913565308571, 0.3017058309841093, 0.38406990132164637, 0.33494193042999065, 0.19929939967121216, 0.8624919783238055, 0.528785836409086, 0.43084122675663034, 0.47042159929499583, 0.5061565591493914, 0.5759491569657543, 0.8468794444363914, 0.20342296359496542, 0.5170831534483544, 0.3666753044655067, 0.6131723001375537, 0.4410646109528086, 0.6903416342484309, 0.3866428492574258, 0.4636606453307818, 0.4525459302795702, 0.03199256040434073, 0.7029629492254846, 0.2433141614541866, 0.548755973819273, 0.3775060302547258, 0.06593060991448157, 0.8745624549148976, 0.22931948662359403, 0.27267688907931714, 0.589328430619086, 0.8007160756317941, 0.5525637789187225, 0.5008522318356121, 0.4556212410144909, 0.17391722008742402, 0.43574637053357784, 0.3237440077649342, 0.6071692164257629, 0.6925152430641841, 0.592675381607996, 0.43854150134957587, 0.43854150134957587, 0.42437112972565305, 0.8061118855433299, 0.35195592295594336, 0.7605370065149419, 0.38898578429124253, 0.67510953655807, 0.872979709380305, 0.710510994258769, 0.720290290780972, 0.4820787970895852, 0.42019280799979697, 0.4304380754474639, 0.25285023254778977, 0.3238056884730761, 0.39471961640683584, 0.09510031985475974, 0.367046376808582, 0.21500793651835448, 0.8705359023101334, 0.6100742529031461, 0.6226449432624995, 0.7279369976219869, 0.3643494054700089, 0.09992017521484964, 0.41475515148757036, 0.6462260464983366, 0.14102909592513518, 0.48949585696458414, 0.5239520436918008, 0.6084413884537807, 0.5655473856702703, 0.9517420512476797, 0.7489379515982664, 0.4647937384849751, 0.7915321263825208, 0.44112279258530757, 0.5734340256727429, 0.6604471727860799, 0.4845203185458914, 0.6968730453869196, 0.5315374962198609, 0.8685951485887234, 0.6242442748350044, 0.2912097196987059, 0.7725938221565348, 0.2067629769731588, 0.30221725334927335, 0.13129342562285412, 0.6467789443522378, 0.6994753721471061, 0.11825382206919556, 0.41022417118631593, 0.4882665226122541, 0.7732287086973071, 0.25374762405010176, 0.49441682850108926, 0.3723877205427743, 0.652330313245635, 0.43667799883041203, 0.5964718913578133, 0.55172276504346, 0.24113559934961917, 0.8243980268882987, 0.7263843594269437, 0.43535214809021755, 0.8721122798612579, 0.18723914490145582, 0.6486906676970999, 0.11576704656818047, 0.4328241622975616, 0.491481212420291, 0.5264345378086769, 0.33856526784971647, 0.2967410926251248, 0.581398831228375, 0.5973776665460488, 0.6195406102170065, 0.37782717658841725, 0.323061133240968, 0.17420808473594895, 0.19634770547538957, 0.46492234760650425, 0.49613167963272686, 0.5812209036149294, 0.6057291775435286, 0.63414717387345, 0.5702687187355167, 0.8604975146328253, 0.6309022132706124, 0.48732991249542923, 0.6887148870948692, 0.41581945293096145, 0.5706760596351739, 0.4831274653996314, 0.06684727567316755, 0.49090643211649887, 0.15191610726090596, 0.2711405311223577, 0.7653618545702112, 0.09266565137124261, 0.4554350627407873, 0.19698919164573708, 0.6930185080649685, 0.5227537922811563, 0.50434568709929, 0.7082092780767422, 0.46058046365566996, 0.6735723234187477, 0.4285936050615775, 0.323061133240968, 0.5168500865319015, 0.6161307914674419, 0.23456444218973552, 0.3192004782541023, 0.21968945907811915, 0.5028183230931117, 0.43371621376298963, 0.6744209213341115, 0.5940260419772637, 0.13783310426722128, 0.5136444387530009, 0.5508647999875032, 0.4955911012838212, 0.9814394195009358, 0.8260225289794664, 0.17965956338109995, 0.46844896472597397, 0.6048119589659149, 0.3289160319090978, 0.2454606394453749, 0.7497022835596558, 0.683485355417811, 0.20995974230910305, 0.23504578258460665, 0.37175956099497537, 0.4875530438829156, 0.24982584224249993, 0.6282829625348888, 0.4520795162158371, 0.8200372413039435, 0.12832513643528837, 0.5299630655130737, 0.29552777318700446, 0.24021937552346023, 0.5429028773737552, 0.6311869746243346, 0.4145977043912777, 0.39329840463575844, 0.39070335653410526, 0.4286990948130573, 0.846836560604146, 0.6880850122626078], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (curr)\", \"type\": \"scatter\", \"x\": [6.4, 7.2, 6.8, 6.8, 7.9, 7.4, 7.3, 6.6, 6.5, 5.8, 10.0, 6.9, 6.6, 5.3, 4.4, 7.9, 6.9, 8.5, 9.1, 7.6, 7.6, 7.4, 8.3, 6.7, 7.8, 7.1, 6.4, 6.0, 7.6, 6.9, 7.3, 6.6, 6.9, 5.1, 5.8, 6.6, 6.5, 6.4, 6.8, 7.2, 6.7, 6.0, 7.6, 7.3, 8.3, 7.8, 7.8, 6.8, 7.9, 6.8, 8.0, 8.0, 6.8, 9.2, 6.9, 8.1, 10.7, 5.2, 6.6, 9.1, 6.4, 6.8, 6.6, 8.0, 6.7, 6.0, 7.7, 7.7, 6.0, 7.5, 7.1, 6.7, 7.7, 5.3, 8.0, 6.3, 6.1, 6.6, 7.7, 9.0, 6.4, 7.3, 7.5, 8.3, 7.6, 8.4, 9.3, 6.5, 6.9, 6.3, 6.3, 8.4, 5.6, 6.6, 6.0, 7.3, 11.6, 7.6, 11.8, 5.9, 7.2, 6.4, 6.9, 6.9, 7.1, 6.6, 7.9, 6.7, 6.2, 6.7, 6.7, 7.9, 6.9, 6.1, 6.4, 6.4, 5.0, 6.6, 6.9, 9.8, 5.0, 5.4, 6.5, 6.2, 8.2, 9.7, 7.8, 6.1, 9.3, 6.8, 6.2, 7.4, 6.1, 8.3, 6.2, 8.3, 9.2, 8.3, 6.8, 7.3, 7.2, 6.4, 11.9, 6.6, 6.2, 5.8, 8.4, 8.9, 7.1, 8.3, 7.0, 7.6, 7.5, 7.2, 6.5, 6.8, 9.9, 7.2, 5.9, 7.2, 7.1, 7.5, 6.2, 6.3, 12.6, 8.6, 8.9, 7.9, 8.3, 6.9, 6.3, 8.6, 7.2, 8.5, 5.8, 7.0, 6.1, 6.5, 6.0, 8.3, 7.7, 5.8, 6.9, 11.8, 7.0, 6.3, 9.1, 5.6, 7.0, 6.9, 7.8, 6.6, 6.5, 7.0, 6.2, 7.7, 6.7, 5.1, 8.4, 6.5, 7.2, 7.5, 5.8, 7.7, 6.6, 6.7, 8.5, 10.4, 6.6, 6.8, 5.9, 5.8, 6.7, 6.2, 13.2, 7.0, 5.9, 6.0, 5.6, 6.8, 7.0, 6.2, 7.8, 6.3, 7.3, 7.3, 6.0, 7.4, 8.7, 7.3, 6.9, 8.1, 6.9, 7.0, 10.3, 8.4, 6.6, 6.8, 7.0, 7.4, 6.8, 8.1, 8.4, 6.4, 7.1, 10.4, 7.3, 7.4, 7.5, 9.4, 7.9, 7.6, 8.1, 6.5, 7.0, 6.7, 7.5, 6.6, 6.7, 5.8, 6.8, 6.9, 7.5, 6.4, 7.3, 7.4, 7.6, 6.1, 6.8, 7.6, 6.8, 6.3, 5.4, 11.5, 6.7, 7.4, 6.9, 6.8, 5.6, 5.9, 8.4, 7.9, 6.0, 5.8, 7.0, 10.0, 6.1, 6.2, 5.3, 6.1, 11.5, 10.3, 6.9, 8.2, 6.4, 6.1, 6.1, 7.0, 6.9, 7.0, 8.0, 7.6, 7.5, 6.0, 7.4, 7.2, 5.9, 6.8, 7.8, 7.0, 6.2, 6.5, 6.2, 6.5, 5.7, 5.4, 7.2, 8.1, 8.5, 6.7, 7.0, 6.0, 7.7, 7.3, 10.1, 7.2, 7.4, 10.9, 6.8, 6.6, 7.0, 6.7, 9.1, 8.0, 6.7, 6.9, 7.3, 6.5, 7.6, 7.0, 7.1, 6.1, 7.4, 7.0, 7.7, 6.8, 7.0, 6.3, 9.8, 6.7, 7.8, 7.5, 8.7, 7.2, 7.6, 6.7, 8.6, 6.5, 7.5, 6.6, 6.8, 6.6, 8.2, 7.0, 8.8, 6.4, 5.7, 6.9, 6.2, 6.8, 5.6, 6.3, 7.9, 6.9, 10.9, 6.6, 5.8, 6.4, 6.8, 5.6, 4.9, 7.4, 6.8, 6.8, 6.5, 7.1, 7.2, 5.5, 6.9, 6.3, 6.4, 6.1, 5.2, 6.8, 6.9, 7.5, 7.2, 10.1, 7.2, 6.8, 7.4, 5.6, 6.3, 6.8, 6.0, 6.9, 6.2, 5.9, 7.0, 6.9, 8.3, 5.6, 8.2, 6.0, 6.7, 7.5, 6.2, 10.1, 7.0, 7.2, 5.5, 5.7, 11.1, 6.9, 11.5, 7.1, 6.6, 6.3, 6.6, 7.8, 6.7, 5.7, 6.7, 7.2, 9.1, 7.8, 8.1, 7.4, 6.5, 6.8, 7.4, 5.3, 7.6, 7.0, 6.2, 11.3, 5.0, 6.4, 6.0, 8.9, 6.6, 7.0, 6.5, 7.7, 7.2, 6.0, 6.5, 5.9, 6.4, 7.0, 6.7, 6.2, 6.6, 6.8, 7.5, 7.4, 8.0, 6.2, 7.2, 6.9, 6.2, 8.2, 6.0, 7.4, 8.3, 6.6, 6.4, 6.8, 5.6, 6.0, 6.4, 6.8, 7.0, 8.9, 7.1, 7.4, 6.9, 6.6, 8.4, 7.1, 8.7, 7.3, 8.3, 8.2, 9.0, 10.9, 8.6, 9.6, 7.3, 12.0, 6.0, 6.9, 7.4, 5.8, 5.6, 5.7, 6.7, 6.1, 10.6, 8.2, 7.3, 7.2, 6.4, 7.4, 7.9, 6.7, 6.8, 9.9, 6.4, 7.2, 5.0, 7.5, 5.3, 6.9, 5.6, 7.2, 6.9, 6.1, 6.9, 7.3, 7.0, 6.6, 7.4, 6.3, 8.0, 7.4, 11.6, 8.9, 7.0, 6.9, 6.4, 6.5, 10.4, 6.7, 5.6, 5.5, 10.6, 8.8, 6.9, 7.4, 7.6, 7.2, 6.0, 9.1, 5.8, 7.5, 7.0, 6.5, 6.0, 5.1, 6.7, 6.9, 7.4, 7.9, 7.3, 7.8, 8.5, 6.6, 6.7, 6.1, 7.3, 7.0, 6.0, 7.7, 7.4, 6.3, 6.0, 6.6, 7.1, 6.8, 6.4, 7.0, 5.7, 5.1, 7.4, 5.7, 7.7, 6.7, 6.6, 6.4, 6.8, 7.1, 8.0, 6.0, 8.0, 12.4, 6.6, 7.3, 7.0, 6.1, 6.6, 6.9, 6.4, 7.9, 6.6, 7.5, 9.6, 7.2, 8.0, 5.5, 6.3, 6.8, 6.9, 6.6, 7.4, 7.6, 5.6, 7.0, 6.9, 6.9, 6.9, 6.7, 6.8, 6.4, 6.8, 6.0, 7.5, 9.0, 10.2, 6.6, 7.8, 13.7, 7.1, 7.0, 7.1, 7.7, 6.1, 8.2, 9.5, 7.4, 6.5, 8.3, 5.7, 6.4, 7.8, 6.8, 6.7, 6.7], \"xaxis\": \"x2\", \"y\": [0.33396714643252134, 0.5044440900554997, 0.8874896900044845, 0.4686759077780351, 0.23831547366416572, 0.571181601185031, 0.7785327680196316, 0.7290551099174598, 0.9581131370131553, 0.6801000322064107, 0.413367674560271, 0.6667140739211237, 0.9108229754863395, 0.9275086157065797, 0.9186958597750785, 0.7191871442695774, 0.8184457509658746, 0.8597940676688322, 0.7947045908306632, 0.8244149680645384, 0.42771531534877594, 0.5315376696882942, 0.7136291946100958, 0.5510697799054304, 0.6393262665313312, 0.9016582766249417, 0.8560880110261746, 0.8947361144883382, 0.9102326114023062, 0.840723585394272, 0.9264645566705582, 0.5105903360131552, 0.752648770317166, 0.5855954083225455, 0.8989214048388485, 0.5190750352404293, 0.9560713253502463, 0.7273157243430202, 0.9279672131348602, 0.640103147954212, 0.9158977434209615, 0.9035955072010529, 0.7140955379655831, 0.233508355491505, 0.7280578325574358, 0.8810827811902006, 0.3966129217085586, 0.15541760955422754, 0.5851621750323275, 0.9046111951917862, 0.4177213302712193, 0.7993763114768937, 0.6978409661933959, 0.6473373667551029, 0.770784382977056, 0.6500641275496193, 0.548949563093737, 0.9803199442553986, 0.6150775052067382, 0.391333092160729, 0.6966682278280982, 0.9426748402861506, 0.9170092977635526, 0.844625652038695, 0.5621782696252592, 0.8935808323282117, 0.6792214086077275, 0.6719996755401956, 0.5252591274442797, 0.7277045758687855, 0.4685752957996948, 0.8616549355667619, 0.347491516391863, 0.8224130863808733, 0.5340790568488665, 0.6711667658766297, 0.5277539611022016, 0.7226430813715845, 0.8140972745487615, 0.3280236940194876, 0.9543080196225542, 0.7752655593026647, 0.9223925066666061, 0.8588031784191832, 0.6345107008491314, 0.9393010047953068, 0.7897067132703484, 0.8608062836413887, 0.8367885032124018, 0.38555642305179116, 0.8611944449682004, 0.9172341012895443, 0.9206892306522243, 0.9500505925695213, 0.537798347971205, 0.9173482789702866, 0.44454351342386716, 0.8909704850569525, 0.7351932580165473, 0.6818328744935735, 0.7981559962965634, 0.7626532952948841, 0.807353254900461, 0.964411205143099, 0.4685752957996948, 0.6986526320119215, 0.1956969407137045, 0.9233481403380283, 0.8218375601976645, 0.8536269727611236, 0.5637680470866036, 0.42267134533232753, 0.93003590801509, 0.9364808605729722, 0.8816060831574614, 0.9663102962713933, 0.8345570787709832, 0.4997893986747249, 0.7921603237806832, 0.5586815647381762, 0.8622246464681924, 0.9828719612298703, 0.909295720392338, 0.9476267884443668, 0.5395521774612226, 0.901360886913609, 0.39410444510430487, 0.9262213132200262, 0.6627387433216217, 0.9629433821448677, 0.9614311452267452, 0.9802968012486629, 0.933760787013923, 0.34432718187202205, 0.63596173557573, 0.624364378916488, 0.7417789548241253, 0.7300918276682445, 0.6968315453320488, 0.7840233885688647, 0.8958841271622066, 0.5417426694559925, 0.7102579146160282, 0.6004345411549624, 0.515920701757342, 0.7587882454650442, 0.5029588531082266, 0.6887596776945688, 0.8642849605932809, 0.6469572639767995, 0.8103639651534781, 0.939764354405301, 0.694136577696587, 0.6593725303534554, 0.9646797005081557, 0.7979900311745153, 0.792123904710467, 0.8869579700149332, 0.7351250317969437, 0.5332560471205093, 0.9406873315653421, 0.39362685027924615, 0.9466602521798594, 0.8394325033041952, 0.6633442657978572, 0.8126408700417265, 0.7332457619716184, 0.08024070404520958, 0.8667774471450977, 0.6466814331404849, 0.912366876100516, 0.656670904734599, 0.8701678467707724, 0.8875925797813499, 0.9658725076002231, 0.7668332861852056, 0.8604440887473094, 0.934384507524058, 0.9605946056867319, 0.951253157591183, 0.5749289095213865, 0.6279243005170476, 0.7937202818717513, 0.7665301650725991, 0.700127941221274, 0.8531107444728586, 0.7947045908306632, 0.8870566665876504, 0.5476228787844645, 0.8410401833568673, 0.8736671065238262, 0.6519898659949606, 0.936943112068646, 0.9077719201719568, 0.8071889556778997, 0.8815615400732472, 0.8935313268029127, 0.8782891297971865, 0.5029588531082266, 0.5797201450332624, 0.9416775458320723, 0.5958140198486584, 0.2485157288688957, 0.932021424688801, 0.8531502837407814, 0.6344194678828672, 0.632587077283238, 0.9121448358615357, 0.5776545535910985, 0.9052765174806566, 0.8580390107418799, 0.8998644401112552, 0.6784536879503494, 0.9458342431661766, 0.21387363850783603, 0.9530348339880965, 0.7307391114165022, 0.7187682731289255, 0.6905635603269331, 0.9569274903702625, 0.9287384091375525, 0.3856984054091925, 0.504413920551941, 0.5389739198483336, 0.5921068831639978, 0.10702848140489757, 0.8772993497727819, 0.6361944011057532, 0.8952999713010865, 0.7069578609115064, 0.10632960186243966, 0.6465592619811017, 0.9116333268133815, 0.9210441535829985, 0.9483358221641291, 0.5800224234700003, 0.896951343689222, 0.8958659323404018, 0.8896861436466836, 0.7763142135369961, 0.778627444633172, 0.9274605647284293, 0.9167924025380936, 0.6422094408272838, 0.6363725079258666, 0.8694129796739031, 0.5693182102579236, 0.5315376696882942, 0.6814536952243052, 0.30089534057709466, 0.6689448970920832, 0.6419522618821227, 0.6500641275496193, 0.8221968069187356, 0.9285763346020383, 0.8495153837633861, 0.7135666997345446, 0.8850789772017983, 0.9128367188568884, 0.8709442503982084, 0.44714680104169846, 0.7147831401969469, 0.6814536952243052, 0.5823319261018008, 0.7718122970862826, 0.8925058444773368, 0.9249991097277733, 0.7849066379312727, 0.5120166815330335, 0.7863291630268572, 0.8171821177205619, 0.8878235148823457, 0.9813953955585096, 0.5009899161211654, 0.6787020040856314, 0.2747106808400709, 0.6998114428322438, 0.7191783799678735, 0.7566715075843347, 0.7741630673610131, 0.692871858980435, 0.8706970297938403, 0.9226518689226377, 0.619213859232465, 0.9620625840847012, 0.8161066853745392, 0.7984578805051198, 0.8987836568806694, 0.27900511725120763, 0.747868261422589, 0.8013372150606806, 0.4430395412241901, 0.8082746512504794, 0.9248395818955686, 0.8132668978866627, 0.7926355964369082, 0.7243101498981422, 0.8251498778038484, 0.865753667016409, 0.8784859927081519, 0.9613966942665844, 0.8380103992838959, 0.9376908870460701, 0.8505645904112248, 0.5317253080143199, 0.8756470416862959, 0.8823120896825394, 0.8920529250761863, 0.9565288857220365, 0.92576324319171, 0.8397457208604353, 0.8008835764985612, 0.7620555647282774, 0.6333567796033132, 0.8986985644274655, 0.8289197139212982, 0.38568054861828666, 0.4358764146033148, 0.7013568331933456, 0.5524769805317635, 0.8654015550049637, 0.9625385348003681, 0.4997035751430624, 0.5940434106189647, 0.29640429037896177, 0.9370396801623051, 0.7496358493500708, 0.8521916566704996, 0.7519935213994349, 0.8956127660014477, 0.7563308848917781, 0.5425355780301907, 0.1652985164032473, 0.5777375433929663, 0.5926841497777402, 0.5247451599628447, 0.6215406511606532, 0.646742228322253, 0.5236567091352762, 0.8105889943537302, 0.7614647275399787, 0.7272264480694343, 0.44438282424164377, 0.8051848688934031, 0.253979247575754, 0.8737269176380216, 0.7884186533408385, 0.5226162157005312, 0.7776146375974927, 0.8021344726910251, 0.6794204065079696, 0.8398669626756513, 0.3743394998756179, 0.6593725303534554, 0.41008410759983227, 0.8726624594592295, 0.31336232876890546, 0.6187135046228962, 0.9208146539756937, 0.8948907807194619, 0.9475948217130945, 0.7098971478357265, 0.41970311630379203, 0.5524505095188592, 0.6689295490636696, 0.39534528644804523, 0.6686700461744643, 0.6608417181144597, 0.6289006219381473, 0.8112353209803558, 0.9675531845963172, 0.3468688843876404, 0.8171815196180959, 0.9315945487332388, 0.7612383340144859, 0.43979370974717685, 0.9452166580978265, 0.810349906376065, 0.4979189466877109, 0.9054024939516333, 0.7506263221664519, 0.8595966107872783, 0.9041757536760852, 0.5120166815330335, 0.9246344940597735, 0.622364539475366, 0.7975959936185795, 0.9376528402833735, 0.8270495791839716, 0.7463426393970082, 0.8508295060861325, 0.5277539611022016, 0.7926521549058593, 0.8343380415579561, 0.7973631232158779, 0.5423298306356671, 0.6253812669856891, 0.9342151247863544, 0.9064095870896521, 0.8428584418618921, 0.5680191878381406, 0.8230633503438987, 0.857993972512287, 0.8312116035859974, 0.8886868130574391, 0.5695902702544526, 0.8750573328895943, 0.47134086624147714, 0.6082670858563528, 0.8571520978358925, 0.7006810412396262, 0.6001343818465046, 0.8680196363335714, 0.7833148206731655, 0.835330250744176, 0.6883000602161935, 0.4297997702781997, 0.7132181587745201, 0.941909753873568, 0.9298379484442667, 0.8950633078112005, 0.9652574497835966, 0.8593048115498744, 0.23022113319019433, 0.5548683876071567, 0.8789570823277312, 0.7176343272433334, 0.7135972690872326, 0.900955402304434, 0.89110615578316, 0.8021344726910251, 0.36734125225010755, 0.9233813125795639, 0.9269988231022361, 0.6021478506882372, 0.27064660283581765, 0.7595966254948197, 0.5317253080143199, 0.9626288904553877, 0.518871521713375, 0.4244151934213653, 0.8784852709235653, 0.667697582798242, 0.6791650855490978, 0.8659372985570389, 0.5217980090164113, 0.9757802673562255, 0.20769640873195563, 0.6900575067285889, 0.15051833553221247, 0.8476988333501053, 0.12043274000614122, 0.6546311715671466, 0.412102187638673, 0.6339696776630096, 0.6925917751558638, 0.8074446941396305, 0.8417042066658985, 0.4702054036006336, 0.8107456318417504, 0.934253622333564, 0.9671353887875448, 0.3776875782453083, 0.5133306968464912, 0.8279918435672958, 0.7295730380004212, 0.8398957027397556, 0.7470826509089123, 0.7722124156410631, 0.3944809481034696, 0.5801047158883857, 0.7134138458261836, 0.8265590446981121, 0.5836238058504062, 0.7538957359152121, 0.9708936701567454, 0.41507295289487073, 0.9039211350062085, 0.5109703825452502, 0.8880660412534, 0.6332514250278477, 0.703270618172154, 0.863031725372896, 0.9601349291832292, 0.5845797646527732, 0.8357575010967041, 0.9584406458449958, 0.8733333206292072, 0.4740801794177068, 0.5787650908025566, 0.38525623454815555, 0.5715075300165849, 0.951253157591183, 0.831291834366621, 0.6482062646591596, 0.5447536045265621, 0.8456825404777587, 0.5358725178581014, 0.8893400405584444, 0.5955893395860203, 0.9408369636189147, 0.7580589814818564, 0.4244151934213653, 0.7636885291754726, 0.9532052815091139, 0.6686700461744643, 0.39683939049776734, 0.8309978518015588, 0.06774730328187532, 0.8934061610794648, 0.9459413258233057, 0.8507977517004935, 0.9694554821790147, 0.8640493534313302, 0.8409166048571896, 0.9059760843724536, 0.7278052027863667, 0.8952246802917138, 0.39534528644804523, 0.9558702864115934, 0.9178754126151818, 0.7504628435478695, 0.7568870052952757, 0.32046258648166903, 0.9712495894387816, 0.7125870341029702, 0.8286889773580812, 0.929575727770858, 0.8422483936479932, 0.60065365322741, 0.5775074082600717, 0.7505976846167132, 0.5317253080143199, 0.9590110623565244, 0.9651712957082627, 0.7333643603414158, 0.7757825668725274, 0.8928390517037824, 0.2578168736401774, 0.5355488836719776, 0.8408692583280314, 0.7849780542174357, 0.8711681462620556, 0.8447990405440073, 0.9571933326515756, 0.9307123551507692, 0.6421242495412457, 0.9239207054420927, 0.9336219461922934, 0.4244151934213653, 0.5673643045526261, 0.8301442064454496, 0.528471943574542, 0.8835542071774324, 0.8820947700128993, 0.4561713647735051, 0.584381944856391, 0.9493936477483658, 0.7816316980556022, 0.7770145472448273, 0.8495153837633861, 0.8318035560268552, 0.5220388622338656, 0.8589980209217414, 0.21216021099657945, 0.8782303617207965, 0.901850575196968, 0.7683760396387002, 0.9559989503713009, 0.938411491366706, 0.7225398931917507, 0.5918361617892179, 0.8596378534897678, 0.8816239240572568, 0.9296844522785247, 0.8299758417251202, 0.7538846798551382, 0.931253582726863, 0.6902425303942638, 0.9299571155275668, 0.35461708236434614, 0.6119587629530028, 0.8979450471026776, 0.8782891297971865, 0.6144930729026484, 0.5601837238662909, 0.4230258756549153, 0.5115702372514986, 0.6133200318312215, 0.8287048127179734, 0.42887934024879554, 0.5543929044930882, 0.5414149972460248, 0.7453725251924848, 0.6522898344923613, 0.6445138145159856, 0.9212190995841192, 0.6991293681294938, 0.9188224881967051, 0.9444881948020799, 0.8399825546316605, 0.6440269003431431, 0.45260210695563535, 0.6678228102737954, 0.8535669746933884, 0.23469888428232324, 0.7581156815660375, 0.8329520097124233, 0.5886389680190937, 0.4250130050586104, 0.290761161529129, 0.9065968169685268, 0.39757013049667705, 0.9584529405260903, 0.24804178200132845, 0.8400605958344816, 0.9562762484868867, 0.5923100188758571, 0.5355488836719776, 0.6866862751474886, 0.753715093249364, 0.9302702282582556, 0.8405005145861136, 0.7758456574858743, 0.8270123797965384, 0.9270997487744173, 0.8779999285967196, 0.6350604679157676, 0.9057987369792326, 0.9732730617650076, 0.28007269673131574, 0.5393237551960537, 0.9509318156255189, 0.8055358405733448, 0.8512314640165554, 0.6752183046546253, 0.9766791413071304, 0.26893819095773785, 0.5105552073939665, 0.7964242570425004, 0.9159462749375985, 0.46312559485344046, 0.7889853219989779, 0.5331772070153998, 0.6250130361556073, 0.5340700079782073, 0.8981158701031157, 0.8424802355113449], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [7.3, 6.4, 7.5, 5.6, 6.9, 6.8, 6.5, 9.1, 9.0, 12.7, 7.6, 7.2, 6.4, 7.3, 6.7, 6.8, 6.8, 11.9, 6.6, 6.4, 6.8, 8.0, 6.3, 6.5, 6.6, 7.4, 7.2, 7.5, 5.3, 7.0, 7.5, 5.3, 8.1, 8.2, 6.9, 5.9, 9.8, 7.5, 7.0, 6.0, 8.6, 7.5, 6.9, 7.0, 6.4, 6.5, 8.3, 8.3, 6.0, 7.4, 6.2, 7.5, 9.0, 8.0, 7.7, 7.9, 7.4, 15.6, 7.6, 6.9, 15.5, 8.1, 6.3, 10.0, 7.0, 6.8, 8.5, 7.4, 6.8, 7.3, 6.6, 5.6, 4.9, 8.8, 6.6, 7.1, 7.2, 7.0, 6.2, 8.0, 7.6, 9.2, 6.0, 7.9, 8.3, 8.2, 7.9, 7.8, 6.7, 7.5, 6.3, 7.6, 9.3, 7.7, 6.9, 7.6, 8.0, 8.9, 6.8, 6.3, 10.0, 9.4, 6.8, 6.5, 8.9, 7.0, 9.0, 6.0, 6.0, 7.6, 7.9, 7.1, 6.9, 6.9, 9.6, 8.9, 6.6, 6.6, 6.4, 8.4, 5.8, 6.6, 7.0, 7.8, 7.2, 7.5, 5.7, 11.8, 7.2, 6.8, 6.9, 6.6, 7.7, 8.8, 7.1, 7.2, 6.9, 9.0, 7.2, 6.5, 7.9, 8.3, 8.6, 8.4, 9.5, 7.4, 7.9, 6.4, 7.9, 6.9, 7.2, 7.9, 7.1, 7.2, 7.0, 7.2, 6.1, 6.8, 6.9, 8.0, 8.4, 6.6, 7.1, 7.6, 7.4, 7.7, 5.9, 6.7, 6.6, 7.4, 6.6, 7.2, 7.1, 6.6, 7.9, 5.8, 7.0, 6.8, 6.6, 6.1, 8.0, 4.2, 11.9, 6.4, 6.8, 7.5, 6.3, 6.8, 7.8, 6.2, 7.2, 8.2, 7.7, 7.0, 7.2, 7.3, 7.8, 5.6, 7.1, 6.8, 6.8, 6.2, 6.4, 6.9, 7.1, 7.2, 6.8, 10.0, 6.4, 7.3, 9.3, 5.8, 6.7, 8.5, 6.0, 6.7, 6.4, 8.8, 7.1, 6.5, 6.9, 6.7, 8.3, 6.4, 6.8, 6.1, 7.6, 7.0, 8.2, 4.9, 6.3, 7.6, 6.5, 9.2, 8.4, 6.7, 5.5, 6.1, 7.7, 7.4, 6.2, 7.2, 7.9, 7.1, 7.0, 6.0, 7.5, 5.7, 8.2, 6.4, 7.5, 6.8, 9.4, 7.5, 6.5, 6.5, 7.1, 6.8, 7.2, 10.8, 6.5, 7.2, 6.4, 6.4, 8.2, 6.4, 7.1, 6.2, 6.2, 6.4, 7.1, 8.3, 7.9, 6.7, 9.2, 6.0, 7.4, 7.0, 6.7, 6.8, 8.3, 6.1, 6.9, 5.8, 8.9, 6.0, 8.6, 6.0, 7.8, 9.8, 6.4, 5.2, 7.2, 7.2, 6.4, 9.3, 6.3, 6.4, 6.2, 8.9, 6.6, 13.0, 6.2, 6.8, 7.0, 6.4, 11.1, 7.4, 8.1, 6.4, 7.5, 6.4, 8.2, 7.1, 7.6, 7.2, 7.6, 6.7, 6.2, 5.4, 11.0, 6.3, 5.7, 6.6, 8.9, 6.8, 6.3, 12.2, 6.6, 4.9, 7.6, 6.4, 7.2, 6.3, 7.6, 7.2, 5.8, 6.8, 6.5, 7.3, 6.9, 9.0, 6.8, 8.0, 10.4, 8.1, 8.3, 7.3, 6.5, 7.6, 7.0, 7.1], \"xaxis\": \"x2\", \"y\": [0.8142007211296887, 0.07257977436397642, 0.7430932382113554, 0.8214862427787604, 0.5698848321031316, 0.6048119589659149, 0.6466669219762841, 0.14510080060429495, 0.2250304680670007, 0.28492472637839966, 0.42061632734231896, 0.8281252124183194, 0.49622399336621903, 0.3482895521074759, 0.4678833354511545, 0.5708968386647719, 0.37048677721847617, 0.553632248395139, 0.8702137350251022, 0.42186952587750404, 0.8696774950675754, 0.5410576963494411, 0.3971326977900686, 0.3275001196198921, 0.9448289227093116, 0.7109941475090589, 0.41925580570138304, 0.3675472469853882, 0.6721911818800557, 0.5562207270314473, 0.5262426608517637, 0.3244609607385458, 0.15056615442564347, 0.15676979724311627, 0.6037730696030339, 0.6342511279653397, 0.021947035536558718, 0.32429164429335744, 0.5678746850743716, 0.3571680467137555, 0.7755534309390314, 0.3240287891037917, 0.699424662214302, 0.5151532452376618, 0.7564675819717819, 0.38343591026479057, 0.19811005648518398, 0.3168419703358067, 0.5315947262677626, 0.9269044449273315, 0.8260225289794664, 0.451791899378283, 0.830516920403184, 0.47128602930186, 0.19027823806377472, 0.5181346713949518, 0.29552777318700446, 0.45414400334446664, 0.39329840463575844, 0.42327932510626076, 0.45838907164509224, 0.2233864252642039, 0.3628419195926303, 0.6709353200988277, 0.46058046365566996, 0.25551237833043455, 0.7234147543269824, 0.1481282262733752, 0.314935793994079, 0.20050531530561894, 0.37453315488553635, 0.701015529968035, 0.6343341418527783, 0.1739320900588749, 0.734996253073231, 0.8172229478314255, 0.3598554146739685, 0.7121055211356295, 0.2620604909731644, 0.3421138035730516, 0.6951268813066005, 0.35208221297891723, 0.452099210446082, 0.18907620085798427, 0.5444201651108793, 0.6484058972837882, 0.3258186925596978, 0.5963383680780668, 0.6202666247822538, 0.576738593946626, 0.5054992484109841, 0.2972245631729925, 0.6844333356791464, 0.42629475072919953, 0.4405153833121037, 0.01207867704715336, 0.7609288944606691, 0.23951123982998349, 0.09310514674080905, 0.5084920166510624, 0.33067609257366243, 0.36481899584296196, 0.5708968386647719, 0.3194802059637459, 0.14207297841267416, 0.5776897120055972, 0.2026163425795633, 0.37909000048748537, 0.38206764842015895, 0.41324683104354176, 0.17826143731067332, 0.42339414872454434, 0.39148091864802853, 0.3511350413575442, 0.8053393751847749, 0.5937005322868365, 0.6849942580153355, 0.38930033076762494, 0.5168500865319015, 0.5699073288866824, 0.5376087249833421, 0.8185832461647057, 0.25950508036415604, 0.20394483716883388, 0.3303044530853749, 0.2528102968078532, 0.8477719856767125, 0.5217124250004609, 0.3303044530853749, 0.5382885532339231, 0.9625763866028243, 0.6536174904341296, 0.42629475072919953, 0.6458781618432388, 0.46574001023909845, 0.37268733756108086, 0.8180085473348132, 0.35493594975273335, 0.2423640089427935, 0.3636330633241046, 0.6421622311157122, 0.5444201651108793, 0.7396308412796291, 0.9036153464846048, 0.21101569987323432, 0.6004024464464508, 0.7595861882737439, 0.486549602332862, 0.2379839758891197, 0.5147825233229498, 0.2065932277190248, 0.4342628292980428, 0.5940848250235929, 0.4857193175270624, 0.5332610244722983, 0.5402196969638672, 0.8578846895389459, 0.5290225674595067, 0.6074669506688956, 0.1847839155105034, 0.3581391437324269, 0.4304380754474639, 0.8410120374942113, 0.5810086483513661, 0.19026233744636453, 0.7223494520380469, 0.8589928738613049, 0.8374625942163022, 0.781203852328267, 0.73983195178881, 0.41156537259256004, 0.7482873396984137, 0.44431713201158524, 0.7113673874393347, 0.49869552495399233, 0.7627102864663872, 0.37193390769028617, 0.37187810520956766, 0.3773291605703562, 0.8719651627687759, 0.6218762459828849, 0.3781393537983126, 0.553632248395139, 0.47624084907999176, 0.774399353278846, 0.5840424935194366, 0.5601025471409736, 0.6186690618327106, 0.620611700356168, 0.5755798886129706, 0.15047650536569443, 0.5530049338021776, 0.6597439619439023, 0.8300222117931148, 0.3490158529243493, 0.4410646109528086, 0.5067909967309752, 0.5851482063434866, 0.7149827463187939, 0.4849259975950144, 0.2094210588097294, 0.33399024531412796, 0.4083143545243069, 0.7497022835596558, 0.7817929239213606, 0.7637421953724776, 0.3825655414920891, 0.6611482494098961, 0.19022241257108333, 0.44972084577511023, 0.5476732603321269, 0.4831274653996314, 0.5077048340566679, 0.7289504589448288, 0.4379810490617926, 0.8017221455714771, 0.6434673631716396, 0.5059779734745421, 0.6065367192264559, 0.650368705032214, 0.34567471266024347, 0.39561589000187136, 0.3427787545601037, 0.4676404271158623, 0.5332283386400669, 0.4519108142444285, 0.40662831629925006, 0.42305576187259053, 0.22032895172816622, 0.5278715769330472, 0.43679486629948455, 0.743933429392776, 0.5269515041023835, 0.5008800654866953, 0.214168174561682, 0.44879088851457377, 0.683485355417811, 0.807753104897186, 0.42629475072919953, 0.8502951424821861, 0.17421175568219957, 0.25491371883486935, 0.7595861882737439, 0.6571724132942184, 0.7813188949129265, 0.5626906653340306, 0.8674288259883418, 0.6600514650598344, 0.4827749661719035, 0.5456147119159479, 0.39827550056677263, 0.27323823737433794, 0.695896529362927, 0.5048820477254727, 0.5422349097465021, 0.5610936746718964, 0.6571724132942184, 0.3088751107498249, 0.45428761266464013, 0.6604471727860799, 0.43371621376298963, 0.6171893197168647, 0.8100511550343341, 0.8100511550343341, 0.605832578461134, 0.5526475584669951, 0.4275055171336787, 0.8734720021260204, 0.8508295378350301, 0.5807723706867254, 0.8272749548927728, 0.2670652478909882, 0.7020144194675465, 0.4615566916191992, 0.7055847950248242, 0.43389869234556755, 0.6071692164257629, 0.3496825637352313, 0.23676491619791426, 0.7057755976874825, 0.15539001443149586, 0.6187538615870153, 0.8735882828904331, 0.30049486749739024, 0.23191705420611952, 0.8913917397916864, 0.4977157214618499, 0.16961113509580228, 0.8485494795219795, 0.4760032757956232, 0.5053843099270294, 0.2676015269871764, 0.3627664421236291, 0.15146266807038725, 0.7898179638281774, 0.6145296307645981, 0.3790380236797623, 0.3003532640340299, 0.6086112016774773, 0.39906793889171593, 0.8185832461647057, 0.6715802865662828, 0.8260225289794664, 0.6056902064850618, 0.400132762133902, 0.39471961640683584, 0.6449859309106076, 0.5637152910565628, 0.39949420960438964, 0.5490401551410112, 0.4398875418860128, 0.30916577334906253, 0.7093303227687476, 0.4562508424819209, 0.40444044759428516, 0.5773483646962835, 0.447777692034652, 0.4961542215384683, 0.32474312180562226, 0.21192693199409943, 0.9056903490933487, 0.5013816399998683, 0.758876109553896, 0.6364928148646596, 0.2952804752502578, 0.4748951900520853, 0.43679486629948455, 0.5479962315186364, 0.4728142838839701, 0.6343341418527783, 0.12248807650217919, 0.5052525886146573, 0.8281252124183194, 0.8930081609652758, 0.36283726088930296, 0.8098196742550625, 0.656477404357746, 0.193885049884708, 0.5269515041023835, 0.49858469647139786, 0.32780472036158087, 0.24927512797396847, 0.6148718578314069, 0.10691527318901187, 0.136775438340409, 0.8489192718114075, 0.2600203086082801, 0.8142007211296887, 0.5269515041023835, 0.7966615933629455, 0.5633234794197017, 0.767479452333631], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"fixed.acidity\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"fixed.acidity\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}, \"fixed.acidity_bad\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (ref)\", \"type\": \"scatter\", \"x\": [7.2, 7.2, 9.1, 6.2, 9.2, 7.1, 5.3, 8.5, 6.9, 7.5, 7.0, 6.9, 7.3, 7.3, 5.1, 6.4, 7.8, 5.7, 6.6, 8.2, 6.1, 7.4, 7.5, 8.8, 7.0, 7.8, 5.9, 9.7, 7.5, 6.2, 7.0, 7.8, 5.8, 7.1, 7.4, 9.1, 8.5, 6.3, 10.2, 6.6, 6.9, 8.2, 5.7, 7.1, 7.1, 5.7, 5.3, 6.7, 8.2, 6.6, 9.9, 6.3, 6.6, 12.3, 7.4, 7.6, 8.0, 6.5, 6.5, 11.5, 6.3, 6.5, 6.7, 6.0, 8.5, 5.8, 6.7, 7.7, 6.7, 8.5, 7.4, 8.6, 7.4, 7.0, 6.4, 6.6, 6.2, 7.9, 7.5, 7.7, 8.2, 6.9, 6.1, 6.9, 7.7, 9.2, 6.1, 6.5, 7.1, 7.0, 8.6, 5.8, 8.4, 7.4, 7.4, 6.6, 6.4, 9.2, 6.4, 7.7, 7.2, 7.6, 7.1, 7.6, 7.8, 7.8, 5.9, 5.6, 6.2, 6.5, 7.4, 7.2, 6.2, 5.5, 7.1, 6.7, 7.2, 5.2, 10.6, 7.1, 5.8, 6.3, 6.7, 6.9, 7.1, 7.0, 6.8, 8.7, 7.7, 7.1, 10.3, 10.1, 6.4, 6.6, 9.4, 7.1, 8.3, 6.4, 7.8, 7.9, 6.8, 6.5, 5.8, 6.4, 7.3, 5.7, 6.2, 6.4, 9.4, 7.5, 7.2, 7.1, 7.6, 6.7, 6.9, 8.1, 11.6, 5.9, 7.2, 6.4, 8.3, 9.6, 12.5, 6.2, 7.2, 7.3, 6.5, 6.4, 7.2, 6.6, 6.9, 5.1, 7.3, 8.2, 7.8, 7.1, 7.3, 7.0, 7.3, 7.0, 6.0, 8.1, 5.8, 8.9, 7.5, 5.9, 9.8, 7.5, 6.6, 7.3, 6.5, 7.7, 6.4, 6.0, 6.3, 7.5, 7.5, 6.7, 7.4, 6.1, 5.6, 9.9, 9.9, 10.0, 5.9, 7.2, 6.1, 9.9, 5.6, 5.9, 7.5, 5.1, 6.7, 9.8, 6.6, 6.6, 7.1, 6.4, 8.0, 9.8, 10.0, 5.5, 7.5, 8.6, 6.4, 7.4, 5.3, 8.5, 5.9, 7.3, 6.4, 9.6, 7.0, 7.2, 6.8, 7.5, 6.1, 5.7, 6.6, 6.8, 10.8, 7.0, 6.7, 6.4, 5.6, 11.3, 9.3, 6.8, 6.6, 9.1, 9.8, 7.6, 5.8, 7.3, 7.6, 7.9, 7.2, 6.7, 9.2, 12.3, 7.1, 6.5, 6.9, 6.4, 9.3, 6.4, 5.8, 5.6, 6.1, 6.6, 7.5, 6.8, 7.8, 6.3, 6.2, 6.7, 7.0, 7.7, 6.6, 5.9, 9.9, 6.4, 8.9, 6.8, 6.3, 7.2, 9.5, 5.9, 9.2, 6.7, 7.5, 9.4, 7.1, 5.3, 8.6, 9.9, 5.8, 6.3, 7.7, 9.2, 5.6, 7.4, 9.0, 6.5, 9.4, 8.7, 6.1, 6.3, 10.6, 7.0, 6.4, 6.1, 6.4, 6.4, 8.2, 7.5, 9.4, 9.0, 6.8, 6.5, 7.4, 6.2, 7.7, 7.6, 6.6, 7.1, 15.9, 6.2, 8.1, 6.4, 6.8, 9.1, 6.5, 6.9, 5.5, 9.9, 7.3, 10.8, 6.0, 6.7, 6.1, 6.3, 7.0, 9.1, 6.6, 7.4, 6.2, 8.0, 7.0, 7.0, 7.6, 8.0, 8.4, 5.6, 9.2], \"xaxis\": \"x\", \"y\": [0.7197707895473677, 0.05448058807241418, 0.5021256787650443, 0.4710854375480472, 0.7156076129280222, 0.7966690429773311, 0.7265425252145667, 0.16771266951545494, 0.610944103187451, 0.6324527530146118, 0.42180662537268765, 0.2598044700255929, 0.5503032830239416, 0.5632112185661304, 0.6840604465833231, 0.6224375641140001, 0.8071781895370533, 0.9515482366939344, 0.3994071349416132, 0.9677746238863042, 0.572587586261062, 0.7602674855798478, 0.861098734498427, 0.1386074727873, 0.6703360831713621, 0.8064003460928679, 0.3172728283240366, 0.8039094494444462, 0.9186426431335688, 0.6026275969807151, 0.8609701260317718, 0.3485833566260712, 0.3005246278528939, 0.2859113263741919, 0.4978204971029292, 0.5125675444128744, 0.4268860326359044, 0.11791793574572085, 0.440027850275134, 0.4938434408506086, 0.4933189622152446, 0.166194347192407, 0.30200278364192557, 0.6822425768461728, 0.8693180940701344, 0.24112389044610405, 0.43189370387303117, 0.284455178085937, 0.23793737479647703, 0.5535561322468214, 0.7900402576908969, 0.47373775892899717, 0.6055733033081183, 0.7462675017011632, 0.32245623572553406, 0.7612367841042231, 0.36308410170653527, 0.6103993963703384, 0.3965676277125745, 0.2230008284200371, 0.8480025164595866, 0.43585875500482685, 0.24095331994381775, 0.4030652094068704, 0.8951637220162157, 0.2782175630406618, 0.7337660836226194, 0.8352762102164887, 0.6223987562306759, 0.2928263700360406, 0.6563137004068428, 0.16155652477357085, 0.6364666355122575, 0.2186811050870735, 0.27206300237801306, 0.4358901152617537, 0.6136035252376228, 0.07900866299327158, 0.8522855318359817, 0.11906253414448076, 0.3466831105240652, 0.11265227152414181, 0.6302693732121377, 0.7168097665217413, 0.4796298258249143, 0.4476252306691143, 0.3612478268219491, 0.611861930499026, 0.15121036728507153, 0.5363393546692182, 0.16155652477357085, 0.441733396330222, 0.7834276811132227, 0.6364666355122575, 0.44873286860252337, 0.4948960601400133, 0.4172084246960842, 0.5055831714989107, 0.5269082808529498, 0.3737404408311804, 0.4491757516278906, 0.5266720849021, 0.2882430633103308, 0.6066213483726142, 0.83534933450756, 0.2509605867776752, 0.230738949997912, 0.25680675940048736, 0.6858999083789018, 0.27626495444752697, 0.35158671089680515, 0.311480105980391, 0.5950329577300569, 0.4196263877039489, 0.3672198477254309, 0.5488429300958864, 0.6273126624389191, 0.0990306898864649, 0.935036100419004, 0.5556828679884147, 0.6003916802566726, 0.1337843055401957, 0.6898191889393818, 0.46604488826349566, 0.6668872608045229, 0.5998672378660981, 0.14712454771937833, 0.8558065212045691, 0.883276495704891, 0.5544329747085402, 0.38398791005853006, 0.8623310715459079, 0.4482795971615686, 0.4767821080964978, 0.6451659669426603, 0.5099786295438409, 0.11454219273407718, 0.5691587732433696, 0.2398813672346335, 0.8592796956842923, 0.38133093816728936, 0.4754945767078651, 0.2673740541283356, 0.43092180164799054, 0.5981491184574936, 0.7512253043619477, 0.20474988026063612, 0.12337786436138054, 0.6965484670033051, 0.4642254518352117, 0.29034758521725457, 0.7912282271603185, 0.1364389858241727, 0.5326323768611896, 0.3938848007926149, 0.886984727126295, 0.5955398539691413, 0.3667393936023857, 0.35129461810907203, 0.578130474122496, 0.1952086434691429, 0.6982941690158907, 0.6159300986783536, 0.6650580695700093, 0.8007006003287879, 0.13750802167619447, 0.47121416359091395, 0.5691587732433696, 0.5295784007050042, 0.4938434408506086, 0.4240508430342457, 0.1531205555636086, 0.7965770364050346, 0.4829168465516456, 0.6333246955344933, 0.38682769986244625, 0.5589353890471914, 0.30965836575156913, 0.6133571507425741, 0.5363393546692182, 0.5474540697204298, 0.9680074395956593, 0.29703705077451537, 0.7566858385458134, 0.451244026180727, 0.6224939697452743, 0.9340693900855184, 0.1254375450851024, 0.770680513376406, 0.7273231109206828, 0.410671569380914, 0.19928392436820586, 0.44743622108127745, 0.4991477681643879, 0.5443787589855091, 0.826082779912576, 0.5642536294664222, 0.6762559922350657, 0.39283078357423706, 0.3074847569358159, 0.40732461839200396, 0.5614584986504241, 0.5614584986504241, 0.575628870274347, 0.1938881144566701, 0.6480440770440566, 0.23946299348505806, 0.6110142157087575, 0.32489046344192996, 0.127020290619695, 0.28948900574123104, 0.27970970921902805, 0.5179212029104148, 0.579807192000203, 0.5695619245525361, 0.7471497674522103, 0.6761943115269239, 0.6052803835931642, 0.9048996801452402, 0.632953623191418, 0.7849920634816455, 0.12946409768986655, 0.3899257470968539, 0.37735505673750047, 0.27206300237801306, 0.6356505945299911, 0.9000798247851504, 0.5852448485124296, 0.3537739535016634, 0.8589709040748648, 0.5105041430354158, 0.4760479563081992, 0.3915586115462193, 0.4344526143297297, 0.04825794875232026, 0.25106204840173363, 0.5352062615150248, 0.2084678736174792, 0.5588772074146924, 0.42656597432725707, 0.3395528272139201, 0.5154796814541086, 0.30312695461308037, 0.4684625037801391, 0.13140485141127656, 0.37575572516499556, 0.7087902803012941, 0.22740617784346517, 0.7932370230268412, 0.6977827466507267, 0.8687065743771458, 0.3532210556477622, 0.3005246278528939, 0.8817461779308045, 0.5897758288136841, 0.5117334773877459, 0.2267712913026929, 0.7462523759498982, 0.5055831714989107, 0.6276122794572256, 0.34766968675436505, 0.563322001169588, 0.4035281086421867, 0.44827723495654004, 0.7588644006503809, 0.17560197311170134, 0.2736156405730563, 0.5646478519097824, 0.12788772013874206, 0.8127608550985441, 0.35130933230290007, 0.8842329534318195, 0.5671758377024384, 0.508518787579709, 0.4735654621913231, 0.6614347321502836, 0.7032589073748752, 0.418601168771625, 0.40262233345395115, 0.38045938978299354, 0.6221728234115828, 0.6769388667590319, 0.825791915264051, 0.8036522945246104, 0.5350776523934957, 0.5038683203672731, 0.4187790963850706, 0.3942708224564714, 0.36585282612655, 0.42973128126448334, 0.1395024853671747, 0.36909778672938764, 0.5126700875045708, 0.31128511290513083, 0.5841805470690385, 0.42932394036482613, 0.5168725346003686, 0.9331527243268325, 0.5090935678835011, 0.848083892739094, 0.7288594688776423, 0.23463814542978878, 0.9073343486287574, 0.5445649372592127, 0.8030108083542629, 0.30698149193503155, 0.47724620771884374, 0.49565431290071005, 0.29179072192325783, 0.53941953634433, 0.32642767658125227, 0.5714063949384225, 0.6769388667590319, 0.48314991346809855, 0.3838692085325581, 0.7654355578102645, 0.6807995217458978, 0.7803105409218809, 0.4971816769068883, 0.5662837862370104, 0.32557907866588853, 0.4059739580227363, 0.8621668957327787, 0.4863555612469991, 0.44913520001249685, 0.5044088987161788, 0.018560580499064172, 0.17397747102053363, 0.8203404366189, 0.531551035274026, 0.3951880410340851, 0.6710839680909022, 0.7545393605546251, 0.25029771644034415, 0.31651464458218903, 0.7900402576908969, 0.7649542174153934, 0.6282404390050247, 0.5124469561170844, 0.7501741577575001, 0.3717170374651112, 0.5479204837841629, 0.1799627586960565, 0.8716748635647116, 0.4700369344869263, 0.7044722268129955, 0.7597806244765397, 0.4570971226262448, 0.3688130253756654, 0.5854022956087224, 0.6067015953642416, 0.6092966434658947, 0.5713009051869427, 0.15316343939585397, 0.31191498773739224], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [7.0, 7.3, 7.5, 6.3, 6.3, 7.0, 6.5, 5.6, 6.9, 5.8, 8.1, 7.7, 6.2, 7.3, 6.8, 6.6, 7.3, 15.6, 5.2, 6.2, 8.0, 7.7, 6.3, 7.3, 9.0, 6.0, 5.3, 7.8, 7.1, 6.2, 6.3, 7.3, 7.2, 5.8, 7.2, 7.7, 7.7, 5.9, 6.7, 6.5, 6.0, 7.2, 7.7, 7.4, 8.1, 6.8, 8.2, 6.2, 9.4, 6.8, 7.0, 6.6, 6.0, 6.3, 14.2, 6.8, 5.9, 6.0, 7.6, 5.9, 11.1, 5.9, 7.1, 6.6, 12.6, 8.3, 6.7, 7.4, 7.0, 6.7, 7.0, 6.2, 6.4, 7.9, 7.4, 7.0, 7.9, 6.5, 8.2, 6.9, 5.7, 6.3, 8.3, 9.1, 8.0, 7.8, 7.3, 8.6, 6.9, 10.8, 6.4, 7.7, 8.8, 6.6, 6.1, 5.0, 6.3, 5.9, 6.6, 7.3, 8.3, 7.3, 9.9, 7.5, 7.2, 6.4, 5.2, 7.9, 6.7, 6.7, 8.0, 7.9, 6.9, 7.4, 5.6, 6.7, 5.9, 6.0, 7.1, 7.2, 6.8, 6.3, 9.2, 7.8, 8.1, 7.5, 6.8, 6.7, 6.9, 7.3, 7.0, 5.0, 7.3, 8.2, 7.7, 5.0, 10.1, 6.6, 7.1, 9.5, 8.0, 5.9, 6.8, 6.9, 10.8, 7.4, 7.2, 5.8, 6.7, 7.3, 7.0, 12.0, 6.7, 6.2, 6.6, 6.4, 5.9, 7.8, 7.4, 6.1, 5.9, 7.5, 6.4, 7.9, 6.1, 7.2, 7.1, 6.3, 7.8, 5.2, 10.2, 7.8, 6.2, 8.5, 7.6, 6.4, 7.8, 6.0, 6.2, 7.4, 6.0, 6.8, 7.9, 6.1, 6.2, 5.6, 5.5, 11.1, 5.9, 6.4, 6.6, 5.6, 5.0, 7.0, 7.1, 7.8, 6.1, 8.4, 6.8, 8.5, 7.7, 6.4, 7.1, 8.4, 6.7, 8.2, 8.2, 8.1, 7.3, 8.0, 8.2, 6.5, 6.5, 6.0, 6.9, 6.6, 6.6, 7.0, 7.5, 6.6, 6.6, 6.6, 7.0, 8.3, 7.1, 7.0, 7.1, 7.1, 7.7, 6.1, 6.0, 6.6, 6.3, 6.9, 6.7, 4.8, 6.4, 6.6, 6.3, 7.1, 8.9, 7.2, 7.2, 6.4, 7.0, 7.0, 7.7, 6.5, 6.3, 5.8, 8.0, 7.4, 10.8, 10.1, 10.7, 6.4, 6.5, 6.6, 7.3, 9.8, 7.4, 6.3, 6.1, 7.2, 7.0, 6.2, 7.3, 9.1, 6.5, 5.2, 6.0, 6.4, 6.7, 6.0, 5.5, 6.7, 6.7, 9.1, 5.6, 7.1, 7.8, 7.6, 5.1, 5.8, 8.0, 10.8, 6.2, 7.8, 7.7, 7.3, 5.6, 7.9, 8.3, 6.2, 6.0, 6.1, 7.1, 6.7, 5.7, 6.8, 6.6, 5.9, 5.7, 6.0, 8.4, 7.2, 8.5, 7.1, 7.2, 6.6, 7.2, 7.3, 5.9, 6.1, 7.1, 13.4, 8.3, 6.0, 6.4, 5.9, 5.8, 6.1, 6.8, 6.3, 7.3, 7.0, 7.4, 8.8, 7.4, 6.4, 5.1, 8.1, 11.4, 5.6, 6.8, 6.9, 7.0, 7.2, 6.2, 6.8, 6.5, 8.8, 5.1, 6.5, 7.2, 8.1, 7.1, 8.2, 5.8, 7.3, 6.8, 7.7, 6.7, 8.3, 6.8, 6.3, 8.4, 6.2, 11.5, 6.9, 7.4, 6.2, 8.9, 7.2, 7.2, 6.6, 6.2, 6.2, 9.2, 7.2, 5.8, 5.6, 7.7, 9.2, 6.6, 7.0, 5.9, 8.6, 7.4, 9.0, 10.0, 7.5, 8.3, 6.5, 6.9, 7.5, 10.2, 6.1, 7.7, 6.8, 6.1, 6.0, 6.7, 6.3, 7.0, 6.0, 7.7, 6.8, 5.0, 8.0, 7.4, 6.7, 6.1, 7.0, 7.4, 5.7, 6.8, 7.4, 6.1, 6.5, 6.6, 6.4, 5.7, 6.6, 7.1, 7.0, 6.3, 7.1, 7.7, 7.5, 7.5, 6.9, 5.9, 7.0, 6.1, 5.8, 8.0, 7.4, 6.7, 8.0, 7.7, 6.6, 6.4, 5.5, 6.9, 4.4, 8.3, 6.3, 6.9, 11.1, 6.4, 6.8, 7.4, 7.5, 6.9, 6.3, 7.2, 6.7, 10.5, 5.9, 6.8, 6.1, 5.8, 7.3, 7.4, 12.0, 6.4, 7.1, 6.4, 6.2, 11.1, 7.6, 11.5, 8.0, 6.4, 7.3, 6.2, 6.7, 7.3, 8.9, 8.3, 6.2, 6.5, 8.7, 5.7, 6.5, 7.0, 6.7, 7.5, 7.3, 6.2, 6.5, 6.6, 6.3, 6.5, 7.7, 7.5, 6.6, 5.7, 6.0, 7.3, 7.9, 7.0, 6.5, 7.3, 8.6, 6.9, 6.5, 7.3, 7.4, 6.9, 7.0, 5.3, 7.2, 7.9, 6.7, 5.1, 6.7, 6.5, 6.4, 6.9, 7.8, 7.1, 7.5, 6.5, 6.3, 6.7, 6.6, 6.7, 6.8, 8.4, 6.0, 8.1, 6.5, 7.2, 7.1, 8.6, 8.0, 6.2, 6.5, 8.9, 6.9, 5.8, 6.0, 6.8, 7.9, 6.8, 7.1, 6.8, 7.0, 6.8, 6.0, 7.9, 7.9, 6.5, 6.0, 10.1, 7.0, 6.8, 6.3, 7.2, 7.7, 6.6, 8.2, 6.4, 6.8, 7.2, 7.0, 7.8, 6.6, 6.7, 7.6, 5.6, 6.4, 5.1, 7.7, 7.1, 8.6, 6.1, 8.0, 6.2, 7.6, 7.2, 7.1, 6.5, 6.3, 7.2, 6.4, 7.9, 7.8, 7.5, 6.4, 5.9, 6.0, 7.0, 6.9, 5.4, 6.8, 6.0, 6.8, 8.6, 6.7, 6.3, 6.0, 5.0, 7.2, 5.6, 8.0, 5.6, 7.8, 7.4, 7.1, 6.4, 7.0, 9.4, 6.0, 5.9, 7.1, 6.3, 7.3, 6.4, 10.5, 8.1, 8.1, 6.4, 8.8, 6.1, 7.0, 7.2, 9.2, 6.6, 6.9, 9.7, 8.8, 7.8, 7.8, 7.3, 6.7, 6.6, 6.8, 7.15, 8.0, 7.4, 6.5, 5.3, 7.1, 10.8, 6.6, 7.0, 7.2, 7.5, 10.7, 5.9, 6.8, 6.9], \"xaxis\": \"x\", \"y\": [0.18439386755371057, 0.5750868907731637, 0.1132172353536568, 0.19850047615697952, 0.6950004168934912, 0.41826441672946313, 0.040828937665112974, 0.2145583871630251, 0.09143093017991866, 0.10013996234885614, 0.3658834999306372, 0.587897812361327, 0.23563705889496211, 0.5289998061994394, 0.5981734696485812, 0.5956194363709464, 0.11295199838815062, 0.6349332021584286, 0.09356782907078887, 0.0672754654033908, 0.3541579814831264, 0.11781588709523827, 0.3295981493457443, 0.23443288181779365, 0.13830133810679424, 0.5122546205578999, 0.03626449638205209, 0.32057959349203036, 0.3955164844050859, 0.21320459763992916, 0.08620177311633537, 0.4132497936565127, 0.19514157099220286, 0.028148892894647393, 0.03728071159582558, 0.20213762816504022, 0.39088790332760825, 0.10566618212719892, 0.11466232649727714, 0.09544364959788487, 0.07351553674018241, 0.3657542344632553, 0.05859665738698361, 0.43634835962676355, 0.4827032077898804, 0.516310366273556, 0.6480037931050455, 0.21122004543372697, 0.030344760075157406, 0.22750344576024595, 0.18673438423788624, 0.5460909738859347, 0.0666291073587214, 0.320234954276134, 0.515425573770442, 0.5751179393061847, 0.3262180383913996, 0.12192585741802231, 0.6165939755266235, 0.09365914315081003, 0.44259853952477324, 0.31958523161407537, 0.09228899111547839, 0.22815273642701062, 0.5282447951108347, 0.7777719169155834, 0.13834506443323813, 0.29425092810710396, 0.5300870647699181, 0.031947521718024174, 0.1108646816717751, 0.053339747820140615, 0.14466174791529418, 0.25697560969337485, 0.3383868137798065, 0.30803904997837983, 0.03434255320493995, 0.08689109251212201, 0.46044782253877736, 0.0973761441498977, 0.3449058470623745, 0.024212367984770777, 0.11665042079727428, 0.3333970234137619, 0.1495417879159372, 0.0679784404121434, 0.2360052425084116, 0.39147703437781534, 0.04428683932015287, 0.5381556738404795, 0.4357341587922019, 0.11843845992675284, 0.28107964630818494, 0.06989794698232743, 0.2658605825653322, 0.22408104406272966, 0.15519213452661884, 0.09873339188795927, 0.10739713799337769, 0.4712507279726723, 0.31257930793611366, 0.6259141532505736, 0.1651629894813923, 0.13024327386797574, 0.08242409751896962, 0.55355901104019, 0.11256152515999429, 0.22124325125588817, 0.05838775174278421, 0.6734770756819889, 0.06919042490492266, 0.5773286546676725, 0.5693181878572973, 0.12726917141891614, 0.27983888222674136, 0.15690954109554833, 0.18593824584442387, 0.05432525584274117, 0.33273366741371935, 0.12435295831370408, 0.48112847828662497, 0.2959384652215836, 0.5042039768350125, 0.3749869638443927, 0.7258627386781167, 0.4806866421912115, 0.6234335830956541, 0.4191951896523489, 0.20821728825178332, 0.6343085651912675, 0.27674577061671146, 0.02140654255666985, 0.42849246998341506, 0.1817444030106703, 0.4551538855951942, 0.05087080041524106, 0.516641204200833, 0.6810720245435042, 0.08151744899857294, 0.4475169494323581, 0.03995706953508171, 0.2181819033834006, 0.20372897255157485, 0.24305701296248816, 0.5381556738404795, 0.2358485729609252, 0.051323642447754336, 0.1913631294907303, 0.32154631204965056, 0.31229802093755377, 0.3917329141436472, 0.39462053822053156, 0.3680669306910641, 0.5017894292511481, 0.32120711190509066, 0.0768019282386515, 0.1168769044932052, 0.31545143431826594, 0.12007957373947853, 0.08354361700756141, 0.2180731800932174, 0.7653011157176768, 0.05076221583963347, 0.11739077279846111, 0.3639458403519926, 0.4815918747301601, 0.35998732468747585, 0.457353694020342, 0.5520498791697908, 0.22168281241722143, 0.2132287846887433, 0.4763394582576197, 0.3040153802820409, 0.20749766415549342, 0.3316810644107503, 0.8126297477835096, 0.5749367295182395, 0.27274039590582944, 0.2685808245693546, 0.5172108675362206, 0.33506587713796443, 0.09616672688355288, 0.041108213935392324, 0.10548050716105373, 0.5016695616404938, 0.20022874051447226, 0.14220640128276774, 0.23772630779738468, 0.19606080251004787, 0.2603188495268066, 0.18846597668723208, 0.19827111133563302, 0.261548791893628, 0.4140325207077993, 0.8134796325151183, 0.12265695643958285, 0.6311167068993262, 0.13481820177301163, 0.0932384579037443, 0.14050160114126486, 0.2562249115981724, 0.08547750670655718, 0.08643201081848362, 0.19981675431015722, 0.31390222338706264, 0.06221739913672386, 0.06996303880871468, 0.30029370289300306, 0.4306817897420764, 0.6595343859760441, 0.2839408857911616, 0.20468539219890003, 0.1130196126722065, 0.2360017176902124, 0.13187147729288817, 0.42313120297864704, 0.06964897436687001, 0.1624399718171824, 0.17200815643270417, 0.07333105637055992, 0.2440137653363641, 0.4900110333069776, 0.3085554157386313, 0.03480496731142946, 0.12148031785507996, 0.15002971926037112, 0.5314247042003052, 0.2758453007685677, 0.2151852748992088, 0.2658605825653322, 0.29911225563077193, 0.6594110243744711, 0.49869782335001445, 0.16788254706683048, 0.11816213334465087, 0.08230909248122409, 0.13653212507346946, 0.25639170942272826, 0.06562233405876228, 0.23311900627036541, 0.3756616197417655, 0.46674395287949066, 0.3092684534350997, 0.8337319641197457, 0.8331457111467163, 0.2591056156836542, 0.4778687671024334, 0.2542440524586721, 0.5361036306539362, 0.07073721340803463, 0.4731688813159418, 0.5755848065786346, 0.356689463387698, 0.14225616860197343, 0.21837916002376445, 0.14466174791529418, 0.29899643271856946, 0.4757427727983842, 0.08126799884203029, 0.1296501822378736, 0.3286954654423938, 0.08620177311633537, 0.13855855420831553, 0.05543377339452393, 0.11917834098009661, 0.2613621884509647, 0.11269900223777074, 0.08429051026621415, 0.3393961441870107, 0.07031960314855146, 0.11356777592095357, 0.4853279864284006, 0.1279289285514792, 0.0584572339054259, 0.08612988585012649, 0.3472440907423937, 0.1248029959061332, 0.07502335399434323, 0.19827111133563302, 0.3424151534036639, 0.3065175956815872, 0.13808860398564737, 0.058092197534895806, 0.04082786106581715, 0.1602592849246841, 0.09156161599234125, 0.5036030690663805, 0.2640411824475748, 0.6468038092930676, 0.07201805208597656, 0.22470230804277058, 0.1334773721572423, 0.04847889440667685, 0.2685808245693546, 0.10911308148570098, 0.6764508967260475, 0.6280060594576413, 0.36761958218269275, 0.16019930342079847, 0.17605308658107655, 0.14078981831089854, 0.2384997092801764, 0.13117402490907393, 0.12818959986091483, 0.4161925244315118, 0.12435295831370408, 0.09814942480303201, 0.05480698563416486, 0.3746187330143109, 0.41092354232892336, 0.507894749900129, 0.5137929421583434, 0.08293523366016065, 0.2964416548030494, 0.15236141109070434, 0.4396941021426354, 0.41893931094950754, 0.09113953260801844, 0.10967473999240707, 0.055732078845942, 0.05640314085190745, 0.06176263301115803, 0.06427139521062619, 0.20386133178572885, 0.21597661143113533, 0.7486409492386699, 0.2610715902497083, 0.09465277491899493, 0.5556171757583562, 0.137718889647652, 0.1978940751503777, 0.08472590699531857, 0.356262641598029, 0.14596950445002987, 0.13865818299932142, 0.3088915816821678, 0.11516321289421916, 0.16121169033174265, 0.40573483691789825, 0.34308606282264, 0.36300204724896845, 0.17193414756867276, 0.035926383178341514, 0.34536882843285344, 0.4400180463892147, 0.5165194668234709, 0.23319834124303085, 0.9637923675569924, 0.2635599134550337, 0.6259141532505736, 0.12324962258280003, 0.1256037712827487, 0.1248029959061332, 0.11665042079727428, 0.29081136443782263, 0.12993062945549005, 0.20959981847797426, 0.12385816607190492, 0.16931651488884025, 0.2468284110987674, 0.6181879252747016, 0.3509541008179864, 0.08619429866610873, 0.09537770951135394, 0.8204393830764495, 0.2493836920976743, 0.10367142046182065, 0.11516383353466464, 0.07169627826225977, 0.5400384130096556, 0.2709141565803237, 0.16809050322974173, 0.3421981324687273, 0.812724325423183, 0.1326589750154965, 0.054670132935181304, 0.055346153509382656, 0.8039442695404772, 0.3276168958360183, 0.6561718697940482, 0.6214102617950452, 0.3046829516703813, 0.7853649284745584, 0.7303620793003476, 0.6719087507962026, 0.16000678121984613, 0.579612101366232, 0.6347749924714103, 0.41894393066564606, 0.06936532322770372, 0.28322834609079706, 0.343263893078516, 0.4450860003239352, 0.3090838478611311, 0.408095736797927, 0.11529682880263803, 0.13359771811640497, 0.2417229185475579, 0.10092265889692065, 0.8181934133883563, 0.3777834313813965, 0.8273808576462511, 0.18439353202429143, 0.5148786056082297, 0.11287077888712382, 0.16015059460472458, 0.29672938182784603, 0.36944561074938853, 0.2505850522824452, 0.8467591712977676, 0.3840267097226593, 0.261779448872241, 0.1645479955558209, 0.14631295673285594, 0.4248523287309329, 0.09222807982804315, 0.2121484308544801, 0.33273366741371935, 0.5470626312455473, 0.8294144697045585, 0.25206662215500397, 0.15998368749433245, 0.548322128117227, 0.3917329141436472, 0.15981565308588508, 0.23631147082452741, 0.21082920466209698, 0.1871387197916503, 0.24774693401855818, 0.1913242313933492, 0.16437448769677154, 0.07582203648947516, 0.032541140295091364, 0.06311143057978008, 0.5009235508757715, 0.12343879567504301, 0.445735807756371, 0.40322837553658053, 0.09397553936597514, 0.1598391281143201, 0.26702494168661406, 0.19782301216908982, 0.06831823449824892, 0.5451167746582685, 0.20142160156100697, 0.25747632252511843, 0.4257317671215596, 0.5062318064185062, 0.10278357133077332, 0.10857266292312517, 0.06223864817381186, 0.11377411494697365, 0.14082424186384768, 0.2589321903149734, 0.31776639873426016, 0.07983414941561229, 0.30174211068680845, 0.42532907678292176, 0.23734670470511587, 0.2862296469110084, 0.24790288035387664, 0.5526146374040077, 0.20425399436950087, 0.5166825128498294, 0.12415322942140417, 0.5310696157212036, 0.3866387435262121, 0.14313186082947948, 0.31648660326859934, 0.026792916001305622, 0.7856428374245099, 0.42383310375799566, 0.5944566396871084, 0.6256605001243821, 0.08813642250468567, 0.03544811528140901, 0.06935406654889886, 0.15751976448865512, 0.22608551288474832, 0.3127311228465576, 0.1409438166611655, 0.3285615524533705, 0.3591330499592894, 0.47964497307801546, 0.7143146030302826, 0.14223944449319303, 0.06929054967731618, 0.32120711190509066, 0.16913647442041335, 0.707286257884667, 0.3230684446475647, 0.7616845263358343, 0.4104900542879092, 0.10053249234255524, 0.1106599594415556, 0.1543174595222413, 0.46003879185641183, 0.3811350878514418, 0.07185070571861518, 0.23882593985771994, 0.5344976262521839, 0.11031385635331636, 0.09610989844306939, 0.4955559099445003, 0.07845190603324759, 0.30697262074812925, 0.12767551958037127, 0.4375661224395835, 0.07737023387634634, 0.15307682457740834, 0.05694427046787409, 0.09028836937410878, 0.4011292297732457, 0.6186146927451245, 0.11561676905211238, 0.0993047499370594, 0.08102401279833105, 0.8100206966555492, 0.10768932514586738, 0.15386113005635593, 0.4026560765644126, 0.045535707525545144, 0.08229583319403, 0.08227601457953415, 0.8241544781987433, 0.0759900855540333, 0.5147505197509459, 0.11103147778198663, 0.42144961755966015, 0.24880465403270857, 0.3112403223054312, 0.3282460941643247, 0.28312386083977936, 0.2865521931047814, 0.16537364909659502, 0.4284132019637321, 0.34116073112729894, 0.051142721309942685, 0.10794707492381372, 0.1108646816717751, 0.29201805921023904, 0.07365131996157204, 0.36851051207096197, 0.2556143611338999, 0.07392456180697715, 0.045535707525545144, 0.15025986810093994, 0.4395989822566938, 0.19636656988846957, 0.21018464628148859, 0.15085686628779282, 0.3429118439192298, 0.16104008564300487, 0.2055862423584408, 0.18673310211333727, 0.5528531989583015, 0.20219789553586287, 0.5807830339134155, 0.6112381610839525, 0.07515362639458067, 0.5722084734915175, 0.3654892991508686, 0.1991057466826236, 0.4912569401667811, 0.05850610073101081, 0.3077884117234785, 0.17038242498240874, 0.14066607718466684, 0.10248584652416493, 0.4022873718442217, 0.07205214632436985, 0.35142291824287475, 0.10941760034103376, 0.06679271580157364, 0.05675388891699207, 0.058987921856350156, 0.3660303223369904, 0.28790374422385034, 0.4158290962648631, 0.40710291595796666, 0.09934102670994882, 0.06362846635195196, 0.30921476208988685, 0.23242198019285765, 0.055541210656895434, 0.5297663836663529, 0.10744632778983743, 0.18410212910939194, 0.17721960751489196, 0.1962664672709783, 0.1617648996714035, 0.10584426414108294, 0.5203501665477333, 0.07365131996157204, 0.31578819840495265, 0.35364190165315845, 0.1707951928721818, 0.41655733121321636, 0.15801546378512366, 0.7568436608419439, 0.22368578646300386, 0.0609449253562836, 0.2225096762928218, 0.18587673368692093, 0.05559101133196209, 0.569598540521716, 0.08073228430722412, 0.15724041301590164, 0.12879141548479, 0.4306817897420764, 0.17998791969802397, 0.41280880088413996, 0.5723062335690389, 0.6457404130724687, 0.10420061808672998, 0.12564769853034463, 0.21795029564941848, 0.4720930498870375, 0.11304202998506685, 0.545112257205237, 0.14852188644910969, 0.17217029085021085, 0.336250902618187, 0.48671482860553816, 0.5093433434984792, 0.35847801144896685, 0.3008706318705062, 0.18494609259573758, 0.4199330463236065, 0.04162287990776414, 0.2633909944023186, 0.4252182303976608, 0.4684623303117058, 0.1925553058603695, 0.09610989844306939, 0.09129843496680234, 0.3302708189676917, 0.4199330463236065, 0.11927294568859859, 0.4864154015695107, 0.06472081497616611, 0.6387929002666255, 0.37932906694235924, 0.093713747684541, 0.20627971812824875], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (curr)\", \"type\": \"scatter\", \"x\": [7.3, 6.4, 7.5, 5.6, 6.9, 6.8, 6.5, 9.1, 9.0, 12.7, 7.6, 7.2, 6.4, 7.3, 6.7, 6.8, 6.8, 11.9, 6.6, 6.4, 6.8, 8.0, 6.3, 6.5, 6.6, 7.4, 7.2, 7.5, 5.3, 7.0, 7.5, 5.3, 8.1, 8.2, 6.9, 5.9, 9.8, 7.5, 7.0, 6.0, 8.6, 7.5, 6.9, 7.0, 6.4, 6.5, 8.3, 8.3, 6.0, 7.4, 6.2, 7.5, 9.0, 8.0, 7.7, 7.9, 7.4, 15.6, 7.6, 6.9, 15.5, 8.1, 6.3, 10.0, 7.0, 6.8, 8.5, 7.4, 6.8, 7.3, 6.6, 5.6, 4.9, 8.8, 6.6, 7.1, 7.2, 7.0, 6.2, 8.0, 7.6, 9.2, 6.0, 7.9, 8.3, 8.2, 7.9, 7.8, 6.7, 7.5, 6.3, 7.6, 9.3, 7.7, 6.9, 7.6, 8.0, 8.9, 6.8, 6.3, 10.0, 9.4, 6.8, 6.5, 8.9, 7.0, 9.0, 6.0, 6.0, 7.6, 7.9, 7.1, 6.9, 6.9, 9.6, 8.9, 6.6, 6.6, 6.4, 8.4, 5.8, 6.6, 7.0, 7.8, 7.2, 7.5, 5.7, 11.8, 7.2, 6.8, 6.9, 6.6, 7.7, 8.8, 7.1, 7.2, 6.9, 9.0, 7.2, 6.5, 7.9, 8.3, 8.6, 8.4, 9.5, 7.4, 7.9, 6.4, 7.9, 6.9, 7.2, 7.9, 7.1, 7.2, 7.0, 7.2, 6.1, 6.8, 6.9, 8.0, 8.4, 6.6, 7.1, 7.6, 7.4, 7.7, 5.9, 6.7, 6.6, 7.4, 6.6, 7.2, 7.1, 6.6, 7.9, 5.8, 7.0, 6.8, 6.6, 6.1, 8.0, 4.2, 11.9, 6.4, 6.8, 7.5, 6.3, 6.8, 7.8, 6.2, 7.2, 8.2, 7.7, 7.0, 7.2, 7.3, 7.8, 5.6, 7.1, 6.8, 6.8, 6.2, 6.4, 6.9, 7.1, 7.2, 6.8, 10.0, 6.4, 7.3, 9.3, 5.8, 6.7, 8.5, 6.0, 6.7, 6.4, 8.8, 7.1, 6.5, 6.9, 6.7, 8.3, 6.4, 6.8, 6.1, 7.6, 7.0, 8.2, 4.9, 6.3, 7.6, 6.5, 9.2, 8.4, 6.7, 5.5, 6.1, 7.7, 7.4, 6.2, 7.2, 7.9, 7.1, 7.0, 6.0, 7.5, 5.7, 8.2, 6.4, 7.5, 6.8, 9.4, 7.5, 6.5, 6.5, 7.1, 6.8, 7.2, 10.8, 6.5, 7.2, 6.4, 6.4, 8.2, 6.4, 7.1, 6.2, 6.2, 6.4, 7.1, 8.3, 7.9, 6.7, 9.2, 6.0, 7.4, 7.0, 6.7, 6.8, 8.3, 6.1, 6.9, 5.8, 8.9, 6.0, 8.6, 6.0, 7.8, 9.8, 6.4, 5.2, 7.2, 7.2, 6.4, 9.3, 6.3, 6.4, 6.2, 8.9, 6.6, 13.0, 6.2, 6.8, 7.0, 6.4, 11.1, 7.4, 8.1, 6.4, 7.5, 6.4, 8.2, 7.1, 7.6, 7.2, 7.6, 6.7, 6.2, 5.4, 11.0, 6.3, 5.7, 6.6, 8.9, 6.8, 6.3, 12.2, 6.6, 4.9, 7.6, 6.4, 7.2, 6.3, 7.6, 7.2, 5.8, 6.8, 6.5, 7.3, 6.9, 9.0, 6.8, 8.0, 10.4, 8.1, 8.3, 7.3, 6.5, 7.6, 7.0, 7.1], \"xaxis\": \"x2\", \"y\": [0.18579927887031134, 0.9274202256360236, 0.2569067617886446, 0.17851375722123963, 0.43011516789686843, 0.3951880410340851, 0.35333307802371594, 0.854899199395705, 0.7749695319329993, 0.7150752736216004, 0.5793836726576811, 0.17187478758168062, 0.503776006633781, 0.6517104478925241, 0.5321166645488455, 0.4291031613352281, 0.6295132227815239, 0.446367751604861, 0.12978626497489776, 0.578130474122496, 0.1303225049324246, 0.4589423036505589, 0.6028673022099313, 0.6724998803801079, 0.055171077290688375, 0.28900585249094113, 0.5807441942986169, 0.6324527530146118, 0.32780881811994433, 0.4437792729685527, 0.47375733914823626, 0.6755390392614542, 0.8494338455743565, 0.8432302027568838, 0.3962269303969661, 0.36574887203466033, 0.9780529644634413, 0.6757083557066426, 0.43212531492562845, 0.6428319532862445, 0.2244465690609686, 0.6759712108962084, 0.300575337785698, 0.4848467547623382, 0.24353241802821812, 0.6165640897352094, 0.801889943514816, 0.6831580296641933, 0.4684052737322374, 0.07309555507266852, 0.17397747102053363, 0.548208100621717, 0.16948307959681597, 0.5287139706981401, 0.8097217619362252, 0.48186532860504816, 0.7044722268129955, 0.5458559966555334, 0.6067015953642416, 0.5767206748937392, 0.5416109283549078, 0.7766135747357961, 0.6371580804073698, 0.3290646799011723, 0.53941953634433, 0.7444876216695655, 0.27658524567301757, 0.8518717737266248, 0.685064206005921, 0.7994946846943811, 0.6254668451144636, 0.29898447003196504, 0.36566585814722175, 0.8260679099411251, 0.265003746926769, 0.18277705216857454, 0.6401445853260315, 0.2878944788643705, 0.7379395090268356, 0.6578861964269485, 0.3048731186933995, 0.6479177870210828, 0.5479007895539181, 0.8109237991420157, 0.4555798348891207, 0.35159410271621183, 0.6741813074403022, 0.40366163192193316, 0.3797333752177462, 0.42326140605337403, 0.49450075158901585, 0.7027754368270075, 0.31556666432085356, 0.5737052492708005, 0.5594846166878963, 0.9879213229528466, 0.23907110553933086, 0.7604887601700165, 0.906894853259191, 0.49150798334893764, 0.6693239074263375, 0.635181004157038, 0.4291031613352281, 0.6805197940362542, 0.8579270215873258, 0.42231028799440284, 0.7973836574204367, 0.6209099995125147, 0.617932351579841, 0.5867531689564582, 0.8217385626893267, 0.5766058512754557, 0.6085190813519714, 0.6488649586424557, 0.19466062481522506, 0.4062994677131635, 0.31500574198466447, 0.6106996692323751, 0.48314991346809855, 0.4300926711133176, 0.4623912750166579, 0.18141675383529432, 0.7404949196358439, 0.7960551628311661, 0.6696955469146251, 0.7471897031921468, 0.15222801432328747, 0.4782875749995391, 0.6696955469146251, 0.4617114467660769, 0.0374236133971757, 0.34638250956587036, 0.5737052492708005, 0.35412183815676124, 0.5342599897609015, 0.6273126624389191, 0.1819914526651868, 0.6450640502472667, 0.7576359910572065, 0.6363669366758954, 0.35783776888428775, 0.4555798348891207, 0.2603691587203709, 0.09638465351539516, 0.7889843001267657, 0.3995975535535492, 0.2404138117262561, 0.5134503976671381, 0.7620160241108803, 0.4852174766770502, 0.7934067722809752, 0.5657371707019572, 0.40591517497640706, 0.5142806824729376, 0.4667389755277017, 0.4597803030361328, 0.14211531046105408, 0.4709774325404933, 0.39253304933110444, 0.8152160844894966, 0.6418608562675732, 0.5695619245525361, 0.15898796250578873, 0.4189913516486339, 0.8097376625536354, 0.2776505479619531, 0.14100712613869515, 0.1625374057836978, 0.21879614767173305, 0.26016804821119, 0.5884346274074399, 0.25171266030158634, 0.5556828679884147, 0.2886326125606653, 0.5013044750460076, 0.23728971353361283, 0.6280660923097139, 0.6281218947904323, 0.6226708394296439, 0.1280348372312241, 0.37812375401711507, 0.6218606462016874, 0.446367751604861, 0.5237591509200082, 0.22560064672115399, 0.4159575064805634, 0.43989745285902637, 0.38133093816728936, 0.379388299643832, 0.4244201113870294, 0.8495234946343055, 0.44699506619782237, 0.3402560380560977, 0.16997778820688525, 0.6509841470756508, 0.5589353890471914, 0.49320900326902484, 0.41485179365651337, 0.2850172536812061, 0.5150740024049856, 0.7905789411902706, 0.6660097546858721, 0.5916856454756931, 0.25029771644034415, 0.21820707607863943, 0.23625780462752244, 0.6174344585079109, 0.33885175059010386, 0.8097775874289167, 0.5502791542248897, 0.45232673966787307, 0.5168725346003686, 0.4922951659433321, 0.2710495410551712, 0.5620189509382074, 0.19827785442852286, 0.35653263682836045, 0.4940220265254579, 0.3934632807735441, 0.349631294967786, 0.6543252873397565, 0.6043841099981286, 0.6572212454398962, 0.5323595728841377, 0.4667716613599331, 0.5480891857555714, 0.5933716837007499, 0.5769442381274095, 0.7796710482718338, 0.4721284230669528, 0.5632051337005155, 0.25606657060722404, 0.47304849589761655, 0.4991199345133047, 0.785831825438318, 0.5512091114854263, 0.31651464458218903, 0.192246895102814, 0.5737052492708005, 0.14970485751781393, 0.8257882443178004, 0.7450862811651306, 0.2404138117262561, 0.3428275867057816, 0.2186811050870735, 0.43730933466596944, 0.1325711740116582, 0.33994853494016564, 0.5172250338280965, 0.4543852880840521, 0.6017244994332274, 0.7267617626256621, 0.304103470637073, 0.49511795227452726, 0.4577650902534979, 0.4389063253281036, 0.3428275867057816, 0.6911248892501751, 0.5457123873353599, 0.3395528272139201, 0.5662837862370104, 0.38281068028313525, 0.1899488449656659, 0.1899488449656659, 0.39416742153886597, 0.4473524415330049, 0.5724944828663213, 0.12652799787397961, 0.14917046216496987, 0.4192276293132746, 0.1727250451072272, 0.7329347521090118, 0.2979855805324535, 0.5384433083808008, 0.2944152049751758, 0.5661013076544325, 0.39283078357423706, 0.6503174362647687, 0.7632350838020857, 0.29422440231251745, 0.8446099855685041, 0.3812461384129847, 0.1264117171095669, 0.6995051325026098, 0.7680829457938805, 0.1086082602083136, 0.50228427853815, 0.8303888649041977, 0.15145052047802054, 0.5239967242043768, 0.49461569007297057, 0.7323984730128237, 0.6372335578763709, 0.8485373319296128, 0.21018203617182263, 0.3854703692354019, 0.6209619763202376, 0.6996467359659702, 0.3913887983225227, 0.600932061108284, 0.18141675383529432, 0.32841971343371723, 0.17397747102053363, 0.3943097935149382, 0.5998672378660981, 0.6052803835931642, 0.35501406908939237, 0.4362847089434372, 0.6005057903956104, 0.45095984485898877, 0.5601124581139871, 0.6908342266509375, 0.29066967723125237, 0.5437491575180791, 0.5955595524057149, 0.4226516353037165, 0.552222307965348, 0.5038457784615318, 0.6752568781943777, 0.7880730680059006, 0.09430965090665133, 0.4986183600001317, 0.24112389044610405, 0.3635071851353404, 0.7047195247497422, 0.5251048099479148, 0.5632051337005155, 0.4520037684813636, 0.5271857161160298, 0.36566585814722175, 0.8775119234978208, 0.49474741138534273, 0.17187478758168062, 0.1069918390347242, 0.6371627391106971, 0.19018032574493748, 0.34352259564225396, 0.806114950115292, 0.47304849589761655, 0.5014153035286022, 0.6721952796384192, 0.7507248720260316, 0.38512814216859315, 0.8930847268109882, 0.863224561659591, 0.15108072818859253, 0.7399796913917198, 0.18579927887031134, 0.47304849589761655, 0.2033384066370545, 0.43667652058029827, 0.23252054766636898], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [6.4, 7.2, 6.8, 6.8, 7.9, 7.4, 7.3, 6.6, 6.5, 5.8, 10.0, 6.9, 6.6, 5.3, 4.4, 7.9, 6.9, 8.5, 9.1, 7.6, 7.6, 7.4, 8.3, 6.7, 7.8, 7.1, 6.4, 6.0, 7.6, 6.9, 7.3, 6.6, 6.9, 5.1, 5.8, 6.6, 6.5, 6.4, 6.8, 7.2, 6.7, 6.0, 7.6, 7.3, 8.3, 7.8, 7.8, 6.8, 7.9, 6.8, 8.0, 8.0, 6.8, 9.2, 6.9, 8.1, 10.7, 5.2, 6.6, 9.1, 6.4, 6.8, 6.6, 8.0, 6.7, 6.0, 7.7, 7.7, 6.0, 7.5, 7.1, 6.7, 7.7, 5.3, 8.0, 6.3, 6.1, 6.6, 7.7, 9.0, 6.4, 7.3, 7.5, 8.3, 7.6, 8.4, 9.3, 6.5, 6.9, 6.3, 6.3, 8.4, 5.6, 6.6, 6.0, 7.3, 11.6, 7.6, 11.8, 5.9, 7.2, 6.4, 6.9, 6.9, 7.1, 6.6, 7.9, 6.7, 6.2, 6.7, 6.7, 7.9, 6.9, 6.1, 6.4, 6.4, 5.0, 6.6, 6.9, 9.8, 5.0, 5.4, 6.5, 6.2, 8.2, 9.7, 7.8, 6.1, 9.3, 6.8, 6.2, 7.4, 6.1, 8.3, 6.2, 8.3, 9.2, 8.3, 6.8, 7.3, 7.2, 6.4, 11.9, 6.6, 6.2, 5.8, 8.4, 8.9, 7.1, 8.3, 7.0, 7.6, 7.5, 7.2, 6.5, 6.8, 9.9, 7.2, 5.9, 7.2, 7.1, 7.5, 6.2, 6.3, 12.6, 8.6, 8.9, 7.9, 8.3, 6.9, 6.3, 8.6, 7.2, 8.5, 5.8, 7.0, 6.1, 6.5, 6.0, 8.3, 7.7, 5.8, 6.9, 11.8, 7.0, 6.3, 9.1, 5.6, 7.0, 6.9, 7.8, 6.6, 6.5, 7.0, 6.2, 7.7, 6.7, 5.1, 8.4, 6.5, 7.2, 7.5, 5.8, 7.7, 6.6, 6.7, 8.5, 10.4, 6.6, 6.8, 5.9, 5.8, 6.7, 6.2, 13.2, 7.0, 5.9, 6.0, 5.6, 6.8, 7.0, 6.2, 7.8, 6.3, 7.3, 7.3, 6.0, 7.4, 8.7, 7.3, 6.9, 8.1, 6.9, 7.0, 10.3, 8.4, 6.6, 6.8, 7.0, 7.4, 6.8, 8.1, 8.4, 6.4, 7.1, 10.4, 7.3, 7.4, 7.5, 9.4, 7.9, 7.6, 8.1, 6.5, 7.0, 6.7, 7.5, 6.6, 6.7, 5.8, 6.8, 6.9, 7.5, 6.4, 7.3, 7.4, 7.6, 6.1, 6.8, 7.6, 6.8, 6.3, 5.4, 11.5, 6.7, 7.4, 6.9, 6.8, 5.6, 5.9, 8.4, 7.9, 6.0, 5.8, 7.0, 10.0, 6.1, 6.2, 5.3, 6.1, 11.5, 10.3, 6.9, 8.2, 6.4, 6.1, 6.1, 7.0, 6.9, 7.0, 8.0, 7.6, 7.5, 6.0, 7.4, 7.2, 5.9, 6.8, 7.8, 7.0, 6.2, 6.5, 6.2, 6.5, 5.7, 5.4, 7.2, 8.1, 8.5, 6.7, 7.0, 6.0, 7.7, 7.3, 10.1, 7.2, 7.4, 10.9, 6.8, 6.6, 7.0, 6.7, 9.1, 8.0, 6.7, 6.9, 7.3, 6.5, 7.6, 7.0, 7.1, 6.1, 7.4, 7.0, 7.7, 6.8, 7.0, 6.3, 9.8, 6.7, 7.8, 7.5, 8.7, 7.2, 7.6, 6.7, 8.6, 6.5, 7.5, 6.6, 6.8, 6.6, 8.2, 7.0, 8.8, 6.4, 5.7, 6.9, 6.2, 6.8, 5.6, 6.3, 7.9, 6.9, 10.9, 6.6, 5.8, 6.4, 6.8, 5.6, 4.9, 7.4, 6.8, 6.8, 6.5, 7.1, 7.2, 5.5, 6.9, 6.3, 6.4, 6.1, 5.2, 6.8, 6.9, 7.5, 7.2, 10.1, 7.2, 6.8, 7.4, 5.6, 6.3, 6.8, 6.0, 6.9, 6.2, 5.9, 7.0, 6.9, 8.3, 5.6, 8.2, 6.0, 6.7, 7.5, 6.2, 10.1, 7.0, 7.2, 5.5, 5.7, 11.1, 6.9, 11.5, 7.1, 6.6, 6.3, 6.6, 7.8, 6.7, 5.7, 6.7, 7.2, 9.1, 7.8, 8.1, 7.4, 6.5, 6.8, 7.4, 5.3, 7.6, 7.0, 6.2, 11.3, 5.0, 6.4, 6.0, 8.9, 6.6, 7.0, 6.5, 7.7, 7.2, 6.0, 6.5, 5.9, 6.4, 7.0, 6.7, 6.2, 6.6, 6.8, 7.5, 7.4, 8.0, 6.2, 7.2, 6.9, 6.2, 8.2, 6.0, 7.4, 8.3, 6.6, 6.4, 6.8, 5.6, 6.0, 6.4, 6.8, 7.0, 8.9, 7.1, 7.4, 6.9, 6.6, 8.4, 7.1, 8.7, 7.3, 8.3, 8.2, 9.0, 10.9, 8.6, 9.6, 7.3, 12.0, 6.0, 6.9, 7.4, 5.8, 5.6, 5.7, 6.7, 6.1, 10.6, 8.2, 7.3, 7.2, 6.4, 7.4, 7.9, 6.7, 6.8, 9.9, 6.4, 7.2, 5.0, 7.5, 5.3, 6.9, 5.6, 7.2, 6.9, 6.1, 6.9, 7.3, 7.0, 6.6, 7.4, 6.3, 8.0, 7.4, 11.6, 8.9, 7.0, 6.9, 6.4, 6.5, 10.4, 6.7, 5.6, 5.5, 10.6, 8.8, 6.9, 7.4, 7.6, 7.2, 6.0, 9.1, 5.8, 7.5, 7.0, 6.5, 6.0, 5.1, 6.7, 6.9, 7.4, 7.9, 7.3, 7.8, 8.5, 6.6, 6.7, 6.1, 7.3, 7.0, 6.0, 7.7, 7.4, 6.3, 6.0, 6.6, 7.1, 6.8, 6.4, 7.0, 5.7, 5.1, 7.4, 5.7, 7.7, 6.7, 6.6, 6.4, 6.8, 7.1, 8.0, 6.0, 8.0, 12.4, 6.6, 7.3, 7.0, 6.1, 6.6, 6.9, 6.4, 7.9, 6.6, 7.5, 9.6, 7.2, 8.0, 5.5, 6.3, 6.8, 6.9, 6.6, 7.4, 7.6, 5.6, 7.0, 6.9, 6.9, 6.9, 6.7, 6.8, 6.4, 6.8, 6.0, 7.5, 9.0, 10.2, 6.6, 7.8, 13.7, 7.1, 7.0, 7.1, 7.7, 6.1, 8.2, 9.5, 7.4, 6.5, 8.3, 5.7, 6.4, 7.8, 6.8, 6.7, 6.7], \"xaxis\": \"x2\", \"y\": [0.6660328535674787, 0.4955559099445003, 0.11251030999551548, 0.5313240922219649, 0.7616845263358343, 0.42881839881496897, 0.22146723198036844, 0.2709448900825402, 0.04188686298684474, 0.3198999677935893, 0.586632325439729, 0.3332859260788763, 0.0891770245136605, 0.07249138429342028, 0.0813041402249215, 0.2808128557304226, 0.18155424903412543, 0.14020593233116785, 0.20529540916933675, 0.1755850319354616, 0.5722846846512241, 0.4684623303117058, 0.2863708053899042, 0.4489302200945696, 0.3606737334686688, 0.09834172337505831, 0.1439119889738254, 0.10526388551166177, 0.08976738859769384, 0.15927641460572795, 0.07353544332944184, 0.4894096639868448, 0.24735122968283396, 0.41440459167745447, 0.10107859516115147, 0.4809249647595707, 0.043928674649753696, 0.27268427565697984, 0.07203278686513981, 0.35989685204578803, 0.08410225657903847, 0.09640449279894714, 0.2859044620344169, 0.766491644508495, 0.27194216744256416, 0.11891721880979944, 0.6033870782914414, 0.8445823904457724, 0.4148378249676725, 0.09538880480821377, 0.5822786697287807, 0.2006236885231063, 0.30215903380660414, 0.3526626332448971, 0.22921561702294402, 0.3499358724503807, 0.451050436906263, 0.01968005574460141, 0.3849224947932618, 0.608666907839271, 0.30333177217190177, 0.05732515971384944, 0.08299070223644744, 0.155374347961305, 0.4378217303747408, 0.10641916767178827, 0.3207785913922725, 0.3280003244598044, 0.4747408725557203, 0.27229542413121455, 0.5314247042003052, 0.13834506443323813, 0.652508483608137, 0.1775869136191267, 0.4659209431511335, 0.3288332341233703, 0.47224603889779837, 0.2773569186284155, 0.18590272545123854, 0.6719763059805124, 0.04569198037744582, 0.22473444069733528, 0.0776074933333939, 0.1411968215808168, 0.3654892991508686, 0.06069899520469324, 0.21029328672965164, 0.13919371635861133, 0.16321149678759816, 0.6144435769482088, 0.1388055550317996, 0.0827658987104557, 0.0793107693477757, 0.04994940743047871, 0.46220165202879504, 0.08265172102971341, 0.5554564865761329, 0.10902951494304747, 0.26480674198345266, 0.31816712550642645, 0.20184400370343658, 0.23734670470511587, 0.19264674509953905, 0.03558879485690103, 0.5314247042003052, 0.3013473679880785, 0.8043030592862955, 0.07665185966197174, 0.17816243980233548, 0.14637302723887635, 0.43623195291339645, 0.5773286546676725, 0.06996409198491005, 0.0635191394270278, 0.11839391684253864, 0.03368970372860669, 0.16544292122901683, 0.5002106013252752, 0.20783967621931676, 0.4413184352618238, 0.1377753535318076, 0.017128038770129694, 0.09070427960766203, 0.05237321155563324, 0.46044782253877736, 0.09863911308639095, 0.6058955548956951, 0.07377868677997379, 0.33726125667837825, 0.03705661785513226, 0.03856885477325478, 0.01970319875133708, 0.06623921298607705, 0.655672818127978, 0.36403826442427, 0.375635621083512, 0.25822104517587474, 0.26990817233175546, 0.30316845466795117, 0.21597661143113533, 0.10411587283779344, 0.4582573305440075, 0.28974208538397184, 0.3995654588450376, 0.48407929824265805, 0.2412117545349558, 0.49704114689177337, 0.3112403223054312, 0.13571503940671914, 0.35304273602320047, 0.18963603484652192, 0.06023564559469896, 0.305863422303413, 0.34062746964654456, 0.03532029949184434, 0.20200996882548472, 0.207876095289533, 0.11304202998506685, 0.26487496820305634, 0.46674395287949066, 0.05931266843465788, 0.6063731497207538, 0.053339747820140615, 0.16056749669580483, 0.3366557342021428, 0.18735912995827353, 0.2667542380283816, 0.9197592959547904, 0.13322255285490225, 0.3533185668595151, 0.08763312389948397, 0.343329095265401, 0.1298321532292276, 0.11240742021865013, 0.03412749239977686, 0.23316671381479437, 0.13955591125269062, 0.065615492475942, 0.03940539431326806, 0.04874684240881699, 0.42507109047861347, 0.3720756994829524, 0.20627971812824875, 0.23346983492740092, 0.299872058778726, 0.14688925552714138, 0.20529540916933675, 0.11294333341234963, 0.4523771212155355, 0.15895981664313275, 0.12633289347617382, 0.34801013400503944, 0.063056887931354, 0.09222807982804315, 0.19281104432210028, 0.11843845992675284, 0.1064686731970873, 0.12171087020281346, 0.49704114689177337, 0.4202798549667376, 0.058322454167927695, 0.40418598015134155, 0.7514842711311043, 0.067978575311199, 0.1468497162592186, 0.3655805321171328, 0.36741292271676196, 0.08785516413846428, 0.4223454464089015, 0.09472348251934337, 0.14196098925812006, 0.10013555988874479, 0.32154631204965056, 0.05416575683382341, 0.786126361492164, 0.04696516601190348, 0.26926088858349784, 0.28123172687107445, 0.3094364396730669, 0.04307250962973752, 0.07126159086244754, 0.6143015945908075, 0.495586079448059, 0.46102608015166635, 0.40789311683600216, 0.8929715185951024, 0.1227006502272181, 0.3638055988942468, 0.10470002869891348, 0.29304213908849364, 0.8936703981375603, 0.3534407380188983, 0.0883666731866185, 0.07895584641700149, 0.05166417783587085, 0.4199775765299997, 0.10304865631077798, 0.1041340676595982, 0.11031385635331636, 0.22368578646300386, 0.22137255536682798, 0.0725394352715707, 0.08320759746190642, 0.3577905591727162, 0.36362749207413336, 0.13058702032609693, 0.4306817897420764, 0.4684623303117058, 0.3185463047756948, 0.6991046594229053, 0.33105510290791684, 0.35804773811787727, 0.3499358724503807, 0.17780319308126435, 0.07142366539796174, 0.1504846162366139, 0.28643330026545544, 0.11492102279820171, 0.08716328114311156, 0.12905574960179156, 0.5528531989583015, 0.2852168598030531, 0.3185463047756948, 0.41766807389819915, 0.22818770291371737, 0.10749415552266317, 0.07500089027222667, 0.2150933620687273, 0.4879833184669665, 0.21367083697314282, 0.18281788227943807, 0.11217648511765432, 0.01860460444149037, 0.4990100838788346, 0.3212979959143686, 0.7252893191599291, 0.30018855716775616, 0.2808216200321265, 0.24332849241566534, 0.22583693263898685, 0.307128141019565, 0.12930297020615966, 0.07734813107736227, 0.38078614076753503, 0.037937415915298756, 0.18389331462546077, 0.2015421194948802, 0.10121634311933059, 0.7209948827487924, 0.252131738577411, 0.19866278493931944, 0.5569604587758099, 0.19172534874952063, 0.07516041810443141, 0.18673310211333727, 0.20736440356309183, 0.27568985010185776, 0.1748501221961516, 0.134246332983591, 0.12151400729184814, 0.03860330573341564, 0.16198960071610413, 0.062309112953929935, 0.14943540958877521, 0.46827469198568006, 0.12435295831370408, 0.11768791031746062, 0.10794707492381372, 0.04347111427796346, 0.07423675680829, 0.1602542791395647, 0.19911642350143877, 0.2379444352717226, 0.36664322039668684, 0.10130143557253446, 0.17108028607870185, 0.6143194513817134, 0.5641235853966853, 0.29864316680665437, 0.44752301946823647, 0.13459844499503626, 0.037461465199631894, 0.5002964248569376, 0.4059565893810353, 0.7035957096210382, 0.0629603198376949, 0.25036415064992923, 0.14780834332950044, 0.24800647860056513, 0.10438723399855232, 0.24366911510822187, 0.4574644219698093, 0.8347014835967527, 0.42226245660703365, 0.4073158502222598, 0.47525484003715535, 0.37845934883934684, 0.35325777167774697, 0.4763432908647238, 0.18941100564626978, 0.23853527246002126, 0.27277355193056574, 0.5556171757583562, 0.19481513110659687, 0.7460207524242459, 0.12627308236197843, 0.2115813466591615, 0.4773837842994688, 0.22238536240250728, 0.1978655273089749, 0.32057959349203036, 0.1601330373243487, 0.6256605001243821, 0.34062746964654456, 0.5899158924001677, 0.1273375405407705, 0.6866376712310945, 0.3812864953771038, 0.07918534602430627, 0.10510921928053807, 0.052405178286905496, 0.29010285216427345, 0.5802968836962079, 0.4475494904811408, 0.33107045093633036, 0.6046547135519548, 0.33132995382553565, 0.3391582818855403, 0.37109937806185267, 0.18876467901964422, 0.03244681540368277, 0.6531311156123596, 0.18281848038190407, 0.06840545126676123, 0.23876166598551407, 0.5602062902528231, 0.05478334190217349, 0.18965009362393503, 0.502081053312289, 0.0945975060483667, 0.24937367783354814, 0.14040338921272166, 0.09582424632391484, 0.4879833184669665, 0.07536550594022651, 0.37763546052463404, 0.20240400638142053, 0.06234715971662652, 0.1729504208160284, 0.2536573606029918, 0.1491704939138675, 0.47224603889779837, 0.20734784509414073, 0.1656619584420439, 0.20263687678412212, 0.4576701693643329, 0.3746187330143109, 0.06578487521364562, 0.09359041291034786, 0.15714155813810793, 0.43198081216185935, 0.17693664965610134, 0.14200602748771296, 0.16878839641400256, 0.11131318694256087, 0.43040972974554736, 0.12494266711040569, 0.5286591337585229, 0.3917329141436472, 0.14284790216410748, 0.29931895876037384, 0.3998656181534954, 0.13198036366642862, 0.2166851793268345, 0.164669749255824, 0.3116999397838065, 0.5702002297218003, 0.2867818412254799, 0.05809024612643199, 0.0701620515557333, 0.10493669218879953, 0.03474255021640338, 0.14069518845012563, 0.7697788668098057, 0.44513161239284327, 0.12104291767226882, 0.2823656727566666, 0.28640273091276736, 0.09904459769556595, 0.10889384421684001, 0.1978655273089749, 0.6326587477498924, 0.0766186874204361, 0.07300117689776386, 0.3978521493117628, 0.7293533971641823, 0.24040337450518035, 0.46827469198568006, 0.03737110954461231, 0.48112847828662497, 0.5755848065786346, 0.12151472907643468, 0.332302417201758, 0.3208349144509022, 0.13406270144296106, 0.47820199098358873, 0.024219732643774528, 0.7923035912680444, 0.3099424932714111, 0.8494816644677875, 0.15230116664989468, 0.8795672599938588, 0.34536882843285344, 0.587897812361327, 0.3660303223369904, 0.3074082248441362, 0.1925553058603695, 0.1582957933341015, 0.5297945963993664, 0.1892543681582496, 0.06574637766643598, 0.03286461121245521, 0.6223124217546917, 0.48666930315350876, 0.17200815643270417, 0.27042696199957883, 0.16010429726024444, 0.25291734909108765, 0.22778758435893687, 0.6055190518965303, 0.41989528411161425, 0.2865861541738164, 0.17344095530188786, 0.4163761941495938, 0.24610426408478792, 0.029106329843254564, 0.5849270471051293, 0.09607886499379148, 0.4890296174547498, 0.11193395874659995, 0.3667485749721523, 0.29672938182784603, 0.13696827462710404, 0.03986507081677082, 0.41542023534722683, 0.1642424989032959, 0.041559354155004224, 0.1266666793707928, 0.5259198205822933, 0.42123490919744344, 0.6147437654518444, 0.42849246998341506, 0.04874684240881699, 0.16870816563337898, 0.35179373534084035, 0.4552463954734379, 0.1543174595222413, 0.4641274821418986, 0.1106599594415556, 0.40441066041397966, 0.05916303638108533, 0.24194101851814365, 0.5755848065786346, 0.23631147082452741, 0.04679471849088612, 0.33132995382553565, 0.6031606095022326, 0.16900214819844117, 0.9322526967181247, 0.1065938389205352, 0.0540586741766943, 0.14920224829950646, 0.03054451782098533, 0.13595064656866984, 0.15908339514281045, 0.09402391562754642, 0.27219479721363327, 0.10477531970828624, 0.6046547135519548, 0.04412971358840656, 0.0821245873848182, 0.24953715645213048, 0.24311299470472425, 0.679537413518331, 0.02875041056121841, 0.2874129658970298, 0.17131102264191878, 0.07042427222914205, 0.1577516063520068, 0.39934634677258996, 0.42249259173992826, 0.24940231538328683, 0.46827469198568006, 0.040988937643475554, 0.034828704291737345, 0.26663563965858417, 0.22421743312747255, 0.10716094829621758, 0.7421831263598226, 0.4644511163280224, 0.1591307416719686, 0.21502194578256428, 0.12883185373794437, 0.15520095945599266, 0.04280666734842442, 0.06928764484923078, 0.3578757504587543, 0.0760792945579073, 0.06637805380770656, 0.5755848065786346, 0.4326356954473739, 0.16985579355455038, 0.47152805642545803, 0.11644579282256762, 0.11790522998710073, 0.5438286352264949, 0.41561805514360906, 0.050606352251634235, 0.21836830194439782, 0.22298545275517268, 0.1504846162366139, 0.16819644397314482, 0.47796113776613436, 0.14100197907825862, 0.7878397890034206, 0.12176963827920351, 0.09814942480303201, 0.23162396036129984, 0.04400104962869911, 0.061588508633294015, 0.2774601068082493, 0.40816383821078206, 0.14036214651023216, 0.11837607594274324, 0.0703155477214753, 0.17002415827487982, 0.24611532014486182, 0.06874641727313702, 0.30975746960573625, 0.07004288447243323, 0.6453829176356538, 0.3880412370469972, 0.10205495289732236, 0.12171087020281346, 0.38550692709735157, 0.4398162761337091, 0.5769741243450848, 0.48842976274850136, 0.3866799681687785, 0.17129518728202664, 0.5711206597512044, 0.4456070955069118, 0.4585850027539752, 0.25462747480751524, 0.34771016550763867, 0.35548618548401445, 0.07878090041588082, 0.3008706318705062, 0.08117751180329491, 0.055511805197920094, 0.1600174453683395, 0.35597309965685686, 0.5473978930443646, 0.3321771897262046, 0.14643302530661162, 0.7653011157176768, 0.24188431843396252, 0.16704799028757666, 0.41136103198090634, 0.5749869949413896, 0.709238838470871, 0.09340318303147321, 0.602429869503323, 0.04154705947390969, 0.7519582179986716, 0.15993940416551844, 0.04372375151311325, 0.4076899811241429, 0.4644511163280224, 0.3133137248525114, 0.24628490675063597, 0.06972977174174444, 0.15949948541388637, 0.2241543425141257, 0.1729876202034616, 0.07290025122558275, 0.1220000714032804, 0.36493953208423235, 0.09420126302076737, 0.026726938234992392, 0.7199273032686843, 0.4606762448039463, 0.04906818437448113, 0.19446415942665518, 0.14876853598344464, 0.3247816953453747, 0.023320858692869595, 0.7310618090422621, 0.48944479260603346, 0.20357574295749958, 0.0840537250624015, 0.5368744051465595, 0.21101467800102214, 0.46682279298460017, 0.3749869638443927, 0.46592999202179275, 0.10188412989688433, 0.15751976448865512], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"fixed.acidity\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"fixed.acidity\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}, \"All_volatile.acidity\": {\"data\": [{\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Reference<br>volatile.acidity=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [0.24, 0.19, 0.33, 0.1, 0.33, 0.36, 0.37, 0.19, 0.23, 0.27, 0.19, 0.57, 0.12, 0.26, 0.25, 0.37, 0.18, 0.685, 0.335, 0.2, 0.26, 0.4, 0.21, 0.25, 0.3, 0.24, 0.3, 0.43, 0.145, 0.66, 0.27, 0.48, 0.24, 0.17, 0.24, 0.2, 0.23, 0.34, 0.44, 0.26, 0.2, 0.08, 0.23, 0.22, 0.24, 0.15, 0.34, 0.47, 0.27, 0.43, 0.15, 0.35, 0.19, 0.19, 0.27, 0.27, 0.44, 0.21, 0.51, 0.4, 0.44, 0.65, 0.22, 0.14, 0.38, 0.6, 0.28, 0.21, 0.31, 0.21, 0.32, 0.37, 0.21, 0.3, 0.37, 0.22, 0.35, 0.24, 0.635, 0.36, 0.21, 0.22, 0.18, 0.27, 0.4, 0.15, 0.18, 0.45, 0.33, 0.4, 0.31, 0.39, 0.17, 0.16, 0.15, 0.35, 0.24, 0.29, 0.25, 0.18, 0.14, 0.25, 0.44, 0.27, 0.24, 0.17, 0.38, 0.11, 0.22, 0.855, 0.27, 0.33, 0.31, 0.25, 0.28, 0.48, 0.34, 0.13, 0.23, 0.36, 0.18, 0.26, 0.27, 0.18, 0.53, 0.51, 0.51, 0.3, 0.2, 0.66, 0.17, 0.455, 0.22, 0.38, 0.25, 0.29, 0.43, 0.855, 0.42, 0.46, 0.18, 0.15, 0.23, 0.24, 0.4, 0.23, 0.23, 0.2, 0.46, 0.13, 0.15, 0.5, 0.23, 0.3, 0.23, 0.31, 0.2, 0.34, 0.22, 0.21, 0.27, 0.63, 0.125, 0.51, 0.38, 0.21, 0.32, 0.23, 0.27, 0.44, 0.44, 0.34, 0.15, 0.23, 0.41, 0.69, 0.53, 0.17, 0.39, 0.635, 0.34, 0.27, 0.2, 0.3, 0.32, 0.235, 0.62, 0.18, 0.28, 0.15, 0.21, 0.66, 0.55, 0.55, 0.59, 0.28, 0.28, 0.23, 0.26, 0.19, 0.16, 0.32, 0.28, 0.62, 0.27, 0.34, 0.24, 0.29, 0.19, 0.36, 0.23, 0.25, 0.28, 0.27, 0.26, 0.23, 0.21, 0.2, 0.18, 0.44, 0.2, 0.21, 0.29, 0.21, 0.27, 0.17, 0.26, 0.17, 0.24, 0.15, 0.32, 0.36, 0.76, 0.28, 0.28, 0.21, 0.15, 0.19, 0.17, 0.29, 0.26, 0.23, 0.21, 0.44, 0.745, 0.27, 0.26, 0.25, 0.29, 0.29, 0.22, 0.19, 0.47, 0.31, 0.4, 0.21, 0.43, 0.2, 0.21, 0.3, 0.105, 0.27, 0.19, 0.34, 0.29, 0.3, 0.43, 0.4, 0.53, 0.3, 0.17, 0.67, 0.28, 0.17, 0.34, 0.25, 0.18, 0.3, 0.66, 0.39, 0.29, 0.24, 0.11, 0.28, 0.36, 0.29, 0.35, 0.2, 0.56, 0.2, 0.18, 0.37, 0.28, 0.39, 0.29, 0.28, 0.6, 0.27, 0.18, 0.2, 0.58, 0.25, 0.43, 0.2, 0.16, 0.36, 0.21, 0.14, 0.25, 0.36, 0.38, 0.24, 0.395, 0.18, 0.16, 0.27, 0.17, 0.32, 0.23, 0.25, 0.3, 0.22, 0.22, 0.41, 0.21, 0.65, 0.24, 0.27, 0.3, 0.3, 0.29, 0.27, 0.26, 0.255, 0.19, 0.19, 0.2, 0.66, 0.25, 0.18, 0.35, 0.28, 0.25, 0.18, 0.53, 0.28, 0.18, 1.0, 0.58, 0.25, 0.16, 0.16, 0.18, 0.18, 0.27, 0.2, 0.36, 0.3, 0.18, 0.48, 0.4, 0.26, 0.29, 0.39, 0.63, 0.26, 0.3, 0.15, 0.31, 0.28, 0.275, 0.19, 0.24, 0.71, 0.64, 0.22, 0.21, 0.83, 0.22, 0.43, 0.49, 0.25, 0.58, 0.34, 0.34, 0.23, 0.54, 0.4, 0.28, 0.25, 0.44, 0.28, 0.3, 0.35, 0.21, 0.31, 0.22, 0.45, 0.27, 0.58, 0.62, 0.62, 0.58, 0.28, 0.25, 0.25, 0.25, 0.34, 0.41, 0.44, 0.295, 0.33, 0.28, 0.16, 0.36, 0.25, 0.37, 0.23, 0.46, 0.42, 0.18, 0.22, 0.31, 0.15, 0.23, 0.26, 0.2, 0.16, 0.45, 0.32, 0.35, 0.33, 0.25, 0.16, 0.24, 0.46, 0.76, 0.68, 0.3, 0.31, 0.31, 0.21, 0.2, 0.42, 0.21, 0.23, 0.29, 0.23, 0.24, 0.12, 0.25, 0.32, 0.315, 0.16, 0.18, 0.37, 0.17, 0.6, 0.17, 0.15, 0.45, 0.4, 0.35, 0.27, 0.14, 0.67, 0.33, 0.19, 0.26, 0.4, 0.66, 0.3, 0.18, 0.23, 0.4, 0.115, 0.3, 0.28, 0.21, 0.2, 0.36, 0.18, 0.22, 0.26, 0.36, 0.28, 0.32, 0.23, 0.37, 0.41, 0.23, 0.58, 0.2, 0.18, 0.305, 0.2, 0.16, 0.21, 0.3, 0.18, 0.54, 0.31, 0.31, 0.23, 0.34, 0.23, 0.26, 0.29, 0.24, 0.3, 0.19, 0.26, 0.2, 0.38, 0.35, 0.37, 0.24, 0.52, 0.22, 0.53, 0.2, 0.29, 0.31, 0.13, 0.63, 0.2, 0.37, 0.26, 0.19, 0.37, 0.4, 0.36, 0.28, 0.29, 0.16, 0.545, 0.18, 0.38, 0.18, 0.32, 0.24, 0.26, 0.26, 0.18, 0.28, 0.29, 0.38, 0.14, 0.46, 0.28, 0.14, 0.44, 0.18, 0.23, 0.17, 0.65, 0.18, 0.43, 0.29, 0.17, 0.3, 0.22, 0.34, 0.41, 0.42, 0.3, 0.23, 0.16, 0.27, 0.28, 0.2, 0.16, 0.2, 0.36, 0.2, 0.23, 0.17, 0.26, 0.35, 0.27, 0.26, 0.32, 0.19, 0.51, 0.17, 0.63, 0.53, 0.26, 0.1, 0.29, 0.49, 0.32, 0.27, 0.26, 0.44, 0.24, 0.34, 0.59, 0.32, 0.42, 0.16, 0.13, 0.24, 0.24, 0.3, 0.34, 0.22, 0.13, 0.21, 0.19, 0.29, 0.43, 0.34, 0.825, 0.31, 0.3, 0.125, 0.29, 0.37, 0.755, 0.19, 0.25, 0.31, 0.55, 0.32, 0.26, 0.28, 0.37, 0.34, 0.19, 0.17, 0.23, 0.19, 0.36, 0.31, 0.18, 0.32, 0.34, 0.23, 0.35, 0.13, 0.67, 0.62, 0.24, 0.18], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Current<br>volatile.acidity=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [0.37, 0.23, 0.21, 0.32, 0.58, 0.21, 0.24, 0.3, 0.2, 0.3, 0.48, 0.25, 0.27, 0.32, 0.32, 0.2, 0.44, 0.25, 0.22, 0.37, 0.2, 0.19, 0.2, 0.26, 0.25, 0.29, 0.22, 0.24, 0.39, 0.34, 0.41, 0.34, 0.22, 0.26, 0.3, 0.19, 0.13, 0.23, 0.475, 0.605, 0.33, 0.24, 0.52, 0.29, 0.26, 0.57, 0.3, 0.6, 0.26, 0.22, 0.42, 0.57, 0.28, 0.28, 0.26, 0.17, 0.22, 0.34, 0.21, 0.76, 0.42, 0.3, 0.22, 0.25, 0.26, 0.3, 0.42, 0.28, 0.54, 0.14, 0.26, 0.28, 0.34, 0.275, 0.29, 0.2, 0.28, 0.18, 0.26, 0.53, 0.15, 0.21, 0.31, 0.24, 0.22, 0.31, 0.36, 0.33, 0.19, 0.3, 0.2, 0.24, 0.25, 0.31, 0.4, 0.4, 0.475, 0.25, 0.26, 0.61, 0.26, 0.17, 0.51, 0.28, 0.26, 0.28, 0.53, 0.24, 0.38, 0.3, 0.66, 0.33, 0.29, 0.29, 0.32, 0.36, 0.255, 0.24, 0.29, 0.66, 0.33, 0.23, 0.34, 0.16, 0.635, 0.42, 0.46, 0.34, 0.39, 0.17, 0.19, 0.36, 0.26, 0.28, 0.27, 0.21, 0.36, 0.42, 0.34, 0.21, 0.18, 0.865, 0.39, 0.23, 0.29, 0.31, 0.35, 0.4, 0.09, 0.22, 0.12, 0.1, 0.18, 0.2, 0.19, 0.3, 0.35, 0.37, 0.2, 0.23, 0.23, 0.55, 0.37, 0.3, 0.39, 0.265, 0.3, 1.04, 0.34, 0.21, 0.15, 0.18, 0.27, 0.34, 0.39, 0.24, 0.2, 0.28, 0.38, 0.31, 0.39, 0.19, 0.18, 0.33, 0.14, 0.55, 0.22, 0.46, 0.27, 0.41, 0.19, 0.18, 0.22, 0.25, 0.17, 0.39, 0.19, 0.33, 0.35, 0.27, 0.36, 0.26, 0.4, 0.17, 0.21, 0.31, 0.21, 0.44, 0.25, 0.15, 0.26, 0.28, 0.46, 0.32, 0.46, 0.32, 0.22, 0.31, 0.35, 0.24, 0.18, 0.35, 0.6, 0.26, 0.22, 0.655, 0.2, 0.28, 0.42, 0.22, 0.84, 0.28, 0.19, 0.23, 0.27, 0.2, 0.34, 0.14, 0.31, 0.16, 0.22, 0.4, 0.36, 0.22, 0.46, 0.43, 0.19, 0.19, 0.21, 0.685, 0.17, 0.22, 0.17, 0.28, 0.13, 0.11, 0.14, 0.17, 0.34, 0.32, 0.65, 0.28, 0.21, 0.28, 0.13, 0.24, 0.27, 0.41, 0.23, 0.18, 0.11, 0.17, 0.15, 0.59, 0.11, 0.68, 0.24, 0.18, 0.295, 0.55, 0.37, 0.27, 0.28, 0.345, 0.28, 0.44, 0.32, 0.2, 0.585, 0.17, 0.45, 0.43, 0.13, 0.32, 0.17, 0.28, 0.25, 0.36, 0.24, 0.3, 0.17, 0.16, 0.25, 0.38, 0.25, 0.36, 0.37, 0.18, 0.21, 0.16, 0.24, 0.46, 0.52, 0.31, 0.21, 0.22, 0.37, 0.28, 0.19, 0.25, 0.33, 0.28, 0.29, 0.19, 0.65, 0.2, 0.29, 0.32, 0.19, 0.4, 0.43, 0.16, 0.785, 0.22, 0.27, 0.25, 0.25, 0.26, 0.36, 0.43, 0.21, 0.32, 0.3, 0.54, 0.63, 0.18, 0.35, 0.27, 0.25, 0.41, 0.43, 0.305, 0.23, 0.2, 0.3, 0.31, 0.645, 0.29, 0.16, 0.52, 0.3, 0.24, 0.42, 0.26, 0.45, 0.27, 0.22, 0.22, 0.33, 0.24, 0.22, 0.34, 0.21, 0.14, 0.53, 0.725, 0.18, 0.27, 0.47, 0.26, 0.235, 0.26, 0.33, 0.23, 0.23, 0.2, 0.27, 0.16, 0.45, 0.4, 0.2, 0.28, 0.24, 0.23, 0.115, 0.57, 0.25, 0.27, 0.37, 0.18, 0.18, 0.21, 0.19, 0.19, 0.31, 0.23, 0.24, 0.445, 0.15, 0.45, 0.26, 0.2, 0.18, 0.19, 0.18, 0.4, 0.21, 0.37, 0.32, 0.26, 0.21, 0.28, 0.42, 0.765, 0.315, 0.28, 0.25, 0.28, 0.36, 0.17, 0.41, 0.27, 0.15, 0.32, 0.5, 0.52, 0.24, 0.25, 0.08, 0.18, 0.19, 0.57, 0.23, 0.19, 0.36, 0.34, 0.38, 0.5, 0.42, 0.745, 0.22, 0.69, 0.18, 0.57, 0.17, 0.33, 0.36, 0.18, 0.22, 0.4, 0.24, 0.36, 0.19, 0.23, 0.18, 0.17, 0.44, 0.17, 0.21, 0.685, 0.3, 0.2, 0.58, 0.16, 0.16, 0.24, 0.36, 0.13, 0.26, 0.21, 0.34, 0.25, 0.38, 0.12, 0.17, 0.19, 0.3, 0.38, 0.39, 0.59, 0.45, 0.22, 0.31, 0.35, 0.2, 0.39, 0.2, 0.56, 0.305, 0.45, 0.24, 0.26, 0.19, 0.26, 0.41, 0.22, 0.31, 0.35, 1.02, 0.27, 0.52, 0.21, 0.35, 0.26, 0.22, 0.44, 0.41, 0.4, 0.27, 0.25, 0.3, 0.49, 0.24, 0.32, 0.21, 0.19, 0.25, 0.37, 0.25, 0.26, 0.69, 0.17, 0.25, 0.25, 0.31, 0.3, 0.53, 0.24, 0.69, 0.38, 0.22, 0.29, 0.26, 0.16, 0.27, 0.15, 0.5, 0.31, 0.21, 0.19, 0.29, 0.32, 0.41, 0.21, 0.2, 0.42, 0.36, 0.15, 0.35, 0.33, 0.11, 0.31, 0.16, 0.34, 0.34, 0.2, 0.21, 0.28, 0.19, 0.28, 0.205, 0.26, 0.19, 0.43, 0.28, 0.21, 0.33, 0.24, 0.25, 0.28, 0.38, 0.3, 0.15, 0.33, 0.18, 0.32, 0.61, 0.3, 0.38, 0.38, 0.56, 0.34, 0.24, 0.22, 0.58, 0.35, 0.32, 0.28, 0.2, 0.21, 0.16, 0.58, 0.28, 0.255, 0.21, 0.63, 0.38, 0.16, 0.24, 0.35, 0.48, 0.19, 0.2, 0.17, 0.6, 0.32, 0.18, 0.2, 0.38, 0.52, 0.15, 0.38, 0.18, 0.14, 0.16, 0.26, 0.24, 0.245, 0.29, 0.15, 0.645, 0.415, 0.18, 0.2, 0.34, 0.18, 0.22, 0.51, 0.42, 0.49, 0.32, 0.25, 0.2, 0.24, 0.18, 0.27, 0.53, 0.28], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Reference<br>volatile.acidity=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [0.46, 0.32, 0.27, 0.6, 0.46, 0.66, 0.58, 0.21, 0.4, 0.41, 0.6, 0.21, 0.3, 0.32, 0.52, 0.37, 0.53, 1.13, 0.26, 1.33, 0.3, 0.31, 1.115, 0.19, 0.685, 0.76, 0.22, 0.69, 0.705, 0.3, 0.805, 0.34, 0.28, 0.23, 0.25, 0.28, 0.16, 0.2, 0.42, 0.25, 0.38, 0.28, 0.1, 0.365, 0.755, 0.26, 0.165, 0.17, 0.31, 0.44, 0.63, 0.305, 0.26, 0.5, 0.27, 0.47, 0.28, 0.51, 0.38, 0.41, 0.6, 0.25, 0.7, 0.21, 0.66, 0.22, 0.47, 0.64, 0.54, 0.17, 0.24, 0.37, 0.41, 0.29, 0.15, 0.31, 0.28, 0.18, 0.77, 0.31, 0.24, 0.28, 0.27, 0.48, 0.3, 0.54, 0.2, 0.52, 0.39, 0.34, 0.37, 0.26, 0.6, 0.41, 0.28, 0.27, 0.22, 0.28, 0.28, 0.28, 0.31, 0.39, 0.21, 0.32, 0.57, 0.41, 0.32, 0.35, 0.43, 0.2, 0.41, 0.15, 0.45, 0.14, 0.43, 0.5, 0.39, 0.25, 1.025, 0.28, 0.33, 0.57, 0.41, 0.35, 0.32, 0.44, 0.26, 0.765, 0.775, 0.28, 0.17, 0.935, 0.29, 0.25, 0.28, 0.34, 0.14, 0.32, 0.27, 0.69, 0.27, 0.27, 0.36, 0.29, 0.33, 0.45, 0.2, 0.21, 0.59, 0.38, 0.28, 0.68, 0.19, 0.56, 0.2, 0.87, 0.42, 0.21, 0.14, 0.45, 0.23, 0.68, 0.46, 0.31, 0.655, 0.25, 0.23, 0.32, 0.34, 0.25, 0.29, 0.23, 0.59, 0.37, 0.44, 0.48, 0.38, 0.3, 0.58, 0.34, 0.32, 1.33, 0.28, 0.33, 0.26, 0.29, 0.93, 0.34, 0.56, 0.29, 0.22, 0.275, 0.32, 0.615, 0.27, 0.755, 0.29, 0.25, 0.33, 0.17, 0.35, 0.5, 0.5, 0.73, 0.26, 0.31, 0.21, 0.35, 0.54, 0.19, 0.22, 0.21, 0.31, 0.25, 0.32, 0.42, 0.46, 0.475, 0.61, 0.42, 0.69, 0.19, 0.31, 0.26, 0.15, 0.38, 0.76, 0.24, 0.36, 0.695, 0.35, 0.25, 0.12, 0.23, 0.17, 0.3, 0.36, 0.26, 0.34, 0.29, 0.45, 0.34, 0.24, 0.27, 0.19, 0.37, 0.4, 0.26, 0.31, 0.52, 0.88, 0.29, 0.28, 0.835, 0.25, 0.345, 0.23, 0.62, 0.28, 0.39, 0.25, 0.41, 0.26, 0.25, 0.2, 0.22, 0.19, 0.2, 0.32, 0.725, 0.23, 0.67, 0.24, 0.32, 0.32, 0.42, 0.58, 0.32, 0.35, 0.415, 0.5, 0.64, 0.34, 0.66, 0.39, 0.29, 0.21, 0.23, 0.34, 0.265, 0.2, 0.29, 0.49, 0.43, 0.33, 0.54, 0.33, 0.695, 0.28, 0.58, 0.915, 0.18, 0.82, 0.14, 0.615, 0.24, 0.34, 0.39, 0.36, 0.39, 0.18, 0.37, 0.64, 0.27, 0.39, 0.32, 0.23, 0.47, 0.28, 0.46, 0.47, 0.25, 0.96, 0.41, 0.32, 0.31, 0.36, 0.25, 0.575, 0.28, 0.28, 0.45, 0.39, 0.24, 0.12, 0.63, 0.37, 0.5, 0.59, 0.42, 0.22, 0.24, 0.2, 0.775, 0.24, 0.61, 0.38, 0.3, 0.24, 0.46, 0.31, 0.52, 0.4, 0.5, 0.19], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Current<br>volatile.acidity=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [0.365, 0.62, 0.27, 0.18, 0.29, 0.28, 0.43, 0.765, 0.785, 0.6, 0.3, 0.19, 0.31, 0.25, 0.29, 0.21, 0.31, 0.38, 0.35, 0.45, 0.28, 0.25, 0.34, 0.41, 0.22, 0.29, 0.41, 0.41, 0.21, 0.2, 0.27, 0.3, 0.73, 0.6, 0.18, 0.19, 0.98, 0.52, 0.12, 0.36, 0.485, 0.58, 0.34, 0.25, 0.43, 0.51, 0.54, 0.6, 0.28, 0.2, 0.25, 0.26, 0.31, 0.64, 0.705, 0.37, 0.61, 0.645, 0.31, 0.42, 0.645, 0.45, 0.27, 0.29, 0.39, 0.91, 0.46, 0.7, 0.775, 0.55, 0.57, 0.34, 0.335, 0.685, 0.24, 0.25, 0.27, 0.31, 0.47, 0.39, 0.13, 0.56, 0.29, 0.5, 0.2, 0.37, 0.16, 0.25, 0.25, 0.5, 0.23, 0.345, 0.27, 0.3, 0.58, 1.58, 0.29, 0.62, 0.64, 0.24, 0.35, 0.42, 0.21, 0.52, 0.33, 0.51, 0.62, 0.5, 0.33, 0.33, 0.6, 0.31, 0.63, 0.3, 0.21, 0.27, 0.24, 0.41, 0.27, 0.56, 0.27, 0.24, 0.61, 0.5, 0.695, 0.65, 0.16, 0.23, 0.695, 0.44, 0.28, 0.33, 0.3, 0.35, 0.34, 0.39, 0.25, 0.66, 0.585, 0.315, 0.29, 0.2, 0.22, 0.18, 0.59, 0.34, 0.21, 0.4, 0.52, 0.37, 0.5, 0.31, 0.43, 0.24, 0.3, 0.31, 0.22, 0.26, 0.28, 0.55, 0.635, 0.32, 0.14, 0.36, 0.59, 0.31, 0.3, 0.14, 0.21, 0.23, 0.31, 0.26, 0.28, 0.17, 0.35, 0.54, 0.39, 0.39, 0.24, 0.15, 0.16, 0.215, 0.38, 0.34, 0.26, 0.3, 0.29, 0.27, 0.28, 0.24, 0.66, 0.25, 0.25, 0.28, 0.4, 0.38, 0.21, 0.3, 0.18, 0.45, 0.67, 0.36, 0.34, 0.24, 0.27, 0.21, 0.31, 0.32, 0.5, 0.31, 0.34, 0.33, 0.48, 0.2, 0.28, 0.39, 0.29, 0.34, 0.34, 0.24, 0.4, 0.27, 0.33, 0.28, 0.18, 0.41, 0.41, 0.27, 0.52, 0.345, 0.33, 0.23, 0.22, 0.23, 0.745, 0.35, 0.12, 0.22, 0.3, 0.22, 0.44, 0.65, 0.21, 0.12, 0.29, 0.32, 0.17, 0.14, 0.4, 0.41, 0.42, 0.44, 0.3, 0.24, 0.29, 0.23, 0.12, 0.3, 0.34, 0.45, 0.46, 0.2, 0.18, 0.18, 0.26, 0.28, 0.47, 0.23, 0.235, 0.33, 0.28, 0.705, 0.16, 0.31, 0.16, 0.28, 0.33, 0.45, 0.675, 0.37, 0.78, 0.28, 0.19, 0.6, 0.62, 0.14, 0.31, 0.555, 0.21, 0.45, 0.26, 0.6, 0.4, 0.62, 0.3, 0.41, 0.41, 0.3, 0.25, 0.59, 0.24, 0.32, 0.25, 0.26, 0.44, 0.475, 0.35, 0.24, 0.28, 0.23, 0.4, 0.27, 0.26, 0.24, 0.27, 0.26, 0.31, 0.26, 0.33, 0.595, 0.26, 0.39, 0.26, 0.23, 0.875, 0.35, 0.33, 0.45, 0.3, 0.335, 0.9, 0.24, 0.19, 0.16, 0.55, 0.21, 0.15, 0.63, 0.22, 0.49, 0.32, 0.44, 0.48, 0.83, 0.61, 0.2, 0.4, 0.365, 0.22, 0.15, 0.23, 0.26], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Reference\", \"x\": 0.245, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Current\", \"x\": 0.755, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"barmode\": \"overlay\", \"legend\": {\"title\": {\"text\": \"target\"}, \"tracegroupgap\": 0}, \"margin\": {\"t\": 60}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.49], \"title\": {\"text\": \"volatile.acidity\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.51, 1.0], \"matches\": \"x\", \"title\": {\"text\": \"volatile.acidity\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"count\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}}}, \"volatile.acidity_good\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (ref)\", \"type\": \"scatter\", \"x\": [0.24, 0.19, 0.33, 0.1, 0.33, 0.36, 0.37, 0.19, 0.23, 0.27, 0.19, 0.57, 0.12, 0.26, 0.25, 0.37, 0.18, 0.685, 0.335, 0.2, 0.26, 0.4, 0.21, 0.25, 0.3, 0.24, 0.3, 0.43, 0.145, 0.66, 0.27, 0.48, 0.24, 0.17, 0.24, 0.2, 0.23, 0.34, 0.44, 0.26, 0.2, 0.08, 0.23, 0.22, 0.24, 0.15, 0.34, 0.47, 0.27, 0.43, 0.15, 0.35, 0.19, 0.19, 0.27, 0.27, 0.44, 0.21, 0.51, 0.4, 0.44, 0.65, 0.22, 0.14, 0.38, 0.6, 0.28, 0.21, 0.31, 0.21, 0.32, 0.37, 0.21, 0.3, 0.37, 0.22, 0.35, 0.24, 0.635, 0.36, 0.21, 0.22, 0.18, 0.27, 0.4, 0.15, 0.18, 0.45, 0.33, 0.4, 0.31, 0.39, 0.17, 0.16, 0.15, 0.35, 0.24, 0.29, 0.25, 0.18, 0.14, 0.25, 0.44, 0.27, 0.24, 0.17, 0.38, 0.11, 0.22, 0.855, 0.27, 0.33, 0.31, 0.25, 0.28, 0.48, 0.34, 0.13, 0.23, 0.36, 0.18, 0.26, 0.27, 0.18, 0.53, 0.51, 0.51, 0.3, 0.2, 0.66, 0.17, 0.455, 0.22, 0.38, 0.25, 0.29, 0.43, 0.855, 0.42, 0.46, 0.18, 0.15, 0.23, 0.24, 0.4, 0.23, 0.23, 0.2, 0.46, 0.13, 0.15, 0.5, 0.23, 0.3, 0.23, 0.31, 0.2, 0.34, 0.22, 0.21, 0.27, 0.63, 0.125, 0.51, 0.38, 0.21, 0.32, 0.23, 0.27, 0.44, 0.44, 0.34, 0.15, 0.23, 0.41, 0.69, 0.53, 0.17, 0.39, 0.635, 0.34, 0.27, 0.2, 0.3, 0.32, 0.235, 0.62, 0.18, 0.28, 0.15, 0.21, 0.66, 0.55, 0.55, 0.59, 0.28, 0.28, 0.23, 0.26, 0.19, 0.16, 0.32, 0.28, 0.62, 0.27, 0.34, 0.24, 0.29, 0.19, 0.36, 0.23, 0.25, 0.28, 0.27, 0.26, 0.23, 0.21, 0.2, 0.18, 0.44, 0.2, 0.21, 0.29, 0.21, 0.27, 0.17, 0.26, 0.17, 0.24, 0.15, 0.32, 0.36, 0.76, 0.28, 0.28, 0.21, 0.15, 0.19, 0.17, 0.29, 0.26, 0.23, 0.21, 0.44, 0.745, 0.27, 0.26, 0.25, 0.29, 0.29, 0.22, 0.19, 0.47, 0.31, 0.4, 0.21, 0.43, 0.2, 0.21, 0.3, 0.105, 0.27, 0.19, 0.34, 0.29, 0.3, 0.43, 0.4, 0.53, 0.3, 0.17, 0.67, 0.28, 0.17, 0.34, 0.25, 0.18, 0.3, 0.66, 0.39, 0.29, 0.24, 0.11, 0.28, 0.36, 0.29, 0.35, 0.2, 0.56, 0.2, 0.18, 0.37, 0.28, 0.39, 0.29, 0.28, 0.6, 0.27, 0.18, 0.2, 0.58, 0.25, 0.43, 0.2, 0.16, 0.36, 0.21, 0.14, 0.25, 0.36, 0.38, 0.24, 0.395, 0.18, 0.16, 0.27, 0.17, 0.32, 0.23, 0.25, 0.3, 0.22, 0.22, 0.41, 0.21, 0.65, 0.24, 0.27, 0.3, 0.3, 0.29, 0.27, 0.26, 0.255, 0.19, 0.19, 0.2, 0.66, 0.25, 0.18, 0.35, 0.28, 0.25, 0.18, 0.53, 0.28, 0.18, 1.0, 0.58, 0.25, 0.16, 0.16, 0.18, 0.18, 0.27, 0.2, 0.36, 0.3, 0.18, 0.48, 0.4, 0.26, 0.29, 0.39, 0.63, 0.26, 0.3, 0.15, 0.31, 0.28, 0.275, 0.19, 0.24, 0.71, 0.64, 0.22, 0.21, 0.83, 0.22, 0.43, 0.49, 0.25, 0.58, 0.34, 0.34, 0.23, 0.54, 0.4, 0.28, 0.25, 0.44, 0.28, 0.3, 0.35, 0.21, 0.31, 0.22, 0.45, 0.27, 0.58, 0.62, 0.62, 0.58, 0.28, 0.25, 0.25, 0.25, 0.34, 0.41, 0.44, 0.295, 0.33, 0.28, 0.16, 0.36, 0.25, 0.37, 0.23, 0.46, 0.42, 0.18, 0.22, 0.31, 0.15, 0.23, 0.26, 0.2, 0.16, 0.45, 0.32, 0.35, 0.33, 0.25, 0.16, 0.24, 0.46, 0.76, 0.68, 0.3, 0.31, 0.31, 0.21, 0.2, 0.42, 0.21, 0.23, 0.29, 0.23, 0.24, 0.12, 0.25, 0.32, 0.315, 0.16, 0.18, 0.37, 0.17, 0.6, 0.17, 0.15, 0.45, 0.4, 0.35, 0.27, 0.14, 0.67, 0.33, 0.19, 0.26, 0.4, 0.66, 0.3, 0.18, 0.23, 0.4, 0.115, 0.3, 0.28, 0.21, 0.2, 0.36, 0.18, 0.22, 0.26, 0.36, 0.28, 0.32, 0.23, 0.37, 0.41, 0.23, 0.58, 0.2, 0.18, 0.305, 0.2, 0.16, 0.21, 0.3, 0.18, 0.54, 0.31, 0.31, 0.23, 0.34, 0.23, 0.26, 0.29, 0.24, 0.3, 0.19, 0.26, 0.2, 0.38, 0.35, 0.37, 0.24, 0.52, 0.22, 0.53, 0.2, 0.29, 0.31, 0.13, 0.63, 0.2, 0.37, 0.26, 0.19, 0.37, 0.4, 0.36, 0.28, 0.29, 0.16, 0.545, 0.18, 0.38, 0.18, 0.32, 0.24, 0.26, 0.26, 0.18, 0.28, 0.29, 0.38, 0.14, 0.46, 0.28, 0.14, 0.44, 0.18, 0.23, 0.17, 0.65, 0.18, 0.43, 0.29, 0.17, 0.3, 0.22, 0.34, 0.41, 0.42, 0.3, 0.23, 0.16, 0.27, 0.28, 0.2, 0.16, 0.2, 0.36, 0.2, 0.23, 0.17, 0.26, 0.35, 0.27, 0.26, 0.32, 0.19, 0.51, 0.17, 0.63, 0.53, 0.26, 0.1, 0.29, 0.49, 0.32, 0.27, 0.26, 0.44, 0.24, 0.34, 0.59, 0.32, 0.42, 0.16, 0.13, 0.24, 0.24, 0.3, 0.34, 0.22, 0.13, 0.21, 0.19, 0.29, 0.43, 0.34, 0.825, 0.31, 0.3, 0.125, 0.29, 0.37, 0.755, 0.19, 0.25, 0.31, 0.55, 0.32, 0.26, 0.28, 0.37, 0.34, 0.19, 0.17, 0.23, 0.19, 0.36, 0.31, 0.18, 0.32, 0.34, 0.23, 0.35, 0.13, 0.67, 0.62, 0.24, 0.18], \"xaxis\": \"x\", \"y\": [0.8156061324462894, 0.42491310922683634, 0.8867827646463432, 0.8014995238430205, 0.30499958310650876, 0.5817355832705369, 0.959171062334887, 0.7854416128369749, 0.9085690698200813, 0.8998600376511439, 0.6341165000693628, 0.412102187638673, 0.7643629411050379, 0.4710001938005606, 0.40182653035141874, 0.40438056362905367, 0.8870480016118494, 0.3650667978415713, 0.9064321709292111, 0.9327245345966092, 0.6458420185168736, 0.8821841129047617, 0.6704018506542557, 0.7655671181822064, 0.8616986618932058, 0.48774537944210006, 0.9637355036179479, 0.6794204065079696, 0.6044835155949141, 0.7867954023600708, 0.9137982268836646, 0.5867502063434873, 0.8048584290077971, 0.9718511071053526, 0.9627192884041744, 0.7978623718349598, 0.6091120966723917, 0.8943338178728011, 0.8853376735027229, 0.9045563504021151, 0.9264844632598176, 0.6342457655367447, 0.9414033426130164, 0.5636516403732365, 0.5172967922101196, 0.4836896337264441, 0.35199620689495453, 0.788779954566273, 0.9696552399248426, 0.772496554239754, 0.8132656157621138, 0.4539090261140653, 0.9333708926412786, 0.679765045723866, 0.48457442622955804, 0.4248820606938153, 0.6737819616086004, 0.8780741425819777, 0.38340602447337646, 0.90634085684919, 0.5574014604752268, 0.6804147683859246, 0.9077110088845216, 0.7718472635729894, 0.4717552048891654, 0.22222808308441652, 0.8616549355667619, 0.705749071892896, 0.4699129352300819, 0.9680524782819758, 0.8891353183282249, 0.9466602521798594, 0.8553382520847058, 0.7430243903066251, 0.6616131862201935, 0.6919609500216202, 0.96565744679506, 0.913108907487878, 0.5395521774612226, 0.9026238558501023, 0.6550941529376255, 0.9757876320152292, 0.8833495792027257, 0.6666029765862381, 0.8504582120840628, 0.9320215595878566, 0.7639947574915884, 0.6085229656221847, 0.9557131606798471, 0.46184432615952054, 0.5642658412077981, 0.8815615400732472, 0.7189203536918151, 0.9301020530176726, 0.7341394174346678, 0.7759189559372703, 0.8448078654733812, 0.9012666081120407, 0.8926028620066223, 0.5287492720273277, 0.6874206920638863, 0.37408584674942635, 0.8348370105186077, 0.8697567261320243, 0.9175759024810304, 0.44644098895981, 0.8874384748400057, 0.7787567487441118, 0.9416122482572158, 0.3265229243180111, 0.9308095750950773, 0.42267134533232753, 0.43068181214270274, 0.8727308285810839, 0.7201611177732586, 0.8430904589044517, 0.8140617541555761, 0.9456747441572588, 0.6672663325862807, 0.8756470416862959, 0.518871521713375, 0.7040615347784164, 0.4957960231649875, 0.6250130361556073, 0.27413726132188326, 0.5193133578087885, 0.37656641690434584, 0.5808048103476511, 0.7917827117482167, 0.36569143480873245, 0.7232542293832885, 0.9785934574433302, 0.5715075300165849, 0.8182555969893297, 0.5448461144048058, 0.9491291995847589, 0.4833587957991669, 0.3189279754564957, 0.9184825510014271, 0.5524830505676419, 0.9600429304649183, 0.7818180966165994, 0.7962710274484252, 0.7569429870375118, 0.46184432615952054, 0.7641514270390748, 0.9486763575522457, 0.8086368705092697, 0.6784536879503494, 0.6877019790624462, 0.6082670858563528, 0.6053794617794684, 0.6319330693089359, 0.4982105707488519, 0.6787928880949093, 0.9231980717613485, 0.8831230955067948, 0.6845485656817341, 0.8799204262605215, 0.9164563829924386, 0.7819268199067826, 0.23469888428232324, 0.9492377841603665, 0.8826092272015389, 0.6360541596480074, 0.5184081252698399, 0.6400126753125241, 0.542646305979658, 0.4479501208302092, 0.7783171875827786, 0.7867712153112567, 0.5236605417423803, 0.6959846197179591, 0.7925023358445066, 0.6683189355892497, 0.18737025221649042, 0.42506327048176057, 0.7272596040941706, 0.7314191754306454, 0.4827891324637794, 0.6649341228620356, 0.9038332731164471, 0.9588917860646077, 0.8945194928389463, 0.49833043835950624, 0.7997712594855277, 0.8577935987172323, 0.7622736922026153, 0.8039391974899521, 0.7396811504731934, 0.8115340233127679, 0.801728888664367, 0.738451208106372, 0.5859674792922007, 0.1865203674848816, 0.8773430435604171, 0.36888329310067386, 0.8651817982269884, 0.9067615420962557, 0.8594983988587351, 0.7437750884018276, 0.9145224932934428, 0.9135679891815164, 0.8001832456898428, 0.6860977766129374, 0.9377826008632761, 0.9300369611912853, 0.6997062971069969, 0.5693182102579236, 0.3404656140239559, 0.7160591142088384, 0.7953146078011, 0.8869803873277935, 0.7639982823097876, 0.8681285227071118, 0.576868797021353, 0.93035102563313, 0.8375600281828176, 0.8279918435672958, 0.9266689436294401, 0.7559862346636359, 0.5099889666930224, 0.6914445842613687, 0.9651950326885705, 0.87851968214492, 0.8499702807396289, 0.4685752957996948, 0.7241546992314323, 0.7848147251007912, 0.7341394174346678, 0.7008877443692281, 0.340588975625529, 0.5013021766499856, 0.8321174529331695, 0.8818378666553491, 0.9176909075187759, 0.8634678749265305, 0.7436082905772717, 0.9343776659412377, 0.7668809937296346, 0.6243383802582345, 0.5332560471205093, 0.6907315465649003, 0.16626803588025432, 0.1668542888532837, 0.7408943843163458, 0.5221312328975666, 0.7457559475413279, 0.46389636934606376, 0.9292627865919654, 0.5268311186840582, 0.4244151934213653, 0.643310536612302, 0.8577438313980266, 0.7816208399762355, 0.8553382520847058, 0.7010035672814305, 0.5242572272016158, 0.9187320011579697, 0.8703498177621264, 0.6713045345576062, 0.9137982268836646, 0.8614414457916845, 0.9445662266054761, 0.8808216590199034, 0.7386378115490353, 0.8873009977622293, 0.9157094897337859, 0.6606038558129893, 0.9296803968514485, 0.8864322240790464, 0.5146720135715994, 0.8720710714485208, 0.9415427660945741, 0.9138701141498735, 0.6527559092576063, 0.8751970040938668, 0.9249766460056568, 0.801728888664367, 0.6575848465963361, 0.6934824043184128, 0.8619113960143526, 0.9419078024651042, 0.9591721389341828, 0.8397407150753159, 0.9084383840076588, 0.4963969309336195, 0.7359588175524252, 0.3531961907069324, 0.9279819479140234, 0.7752976919572294, 0.8665226278427577, 0.9515211055933231, 0.7314191754306454, 0.890886918514299, 0.3235491032739525, 0.3719939405423586, 0.6323804178173072, 0.8398006965792015, 0.8239469134189235, 0.8592101816891015, 0.7615002907198236, 0.8688259750909261, 0.8718104001390852, 0.5838074755684882, 0.8756470416862959, 0.901850575196968, 0.9451930143658351, 0.6253812669856891, 0.5890764576710766, 0.4921052500998711, 0.4862070578416567, 0.9170647663398394, 0.7035583451969506, 0.8476385889092957, 0.5603058978573646, 0.5810606890504925, 0.9088604673919816, 0.8903252600075929, 0.944267921154058, 0.9435968591480925, 0.938237366988842, 0.9357286047893738, 0.7961386682142712, 0.7840233885688647, 0.2513590507613302, 0.7389284097502917, 0.9053472250810051, 0.44438282424164377, 0.862281110352348, 0.8021059248496223, 0.9152740930046814, 0.643737358401971, 0.8540304955499701, 0.8613418170006786, 0.6911084183178322, 0.8848367871057808, 0.8387883096682573, 0.5942651630821018, 0.65691393717736, 0.6369979527510315, 0.8280658524313272, 0.9640736168216585, 0.6546311715671466, 0.5599819536107853, 0.48348053317652906, 0.7668016587569692, 0.03620763244300767, 0.7364400865449663, 0.37408584674942635, 0.8767503774172, 0.8743962287172513, 0.8751970040938668, 0.8833495792027257, 0.7091886355621774, 0.87006937054451, 0.7904001815220257, 0.8761418339280951, 0.8306834851111597, 0.7531715889012326, 0.38181207472529843, 0.6490458991820136, 0.9138057013338913, 0.9046222904886461, 0.17956061692355052, 0.7506163079023257, 0.8963285795381793, 0.8848361664653354, 0.9283037217377402, 0.45996158699034445, 0.7290858434196763, 0.8319094967702583, 0.6578018675312727, 0.18727567457681707, 0.8673410249845035, 0.9453298670648187, 0.9446538464906173, 0.19605573045952288, 0.6723831041639817, 0.3438281302059518, 0.37858973820495484, 0.6953170483296187, 0.21463507152544156, 0.26963792069965237, 0.3280912492037974, 0.8399932187801539, 0.420387898633768, 0.36522500752858966, 0.5810560693343539, 0.9306346767722963, 0.7167716539092029, 0.656736106921484, 0.5549139996760648, 0.6909161521388689, 0.591904263202073, 0.884703171197362, 0.866402281883595, 0.7582770814524421, 0.8990773411030794, 0.1818065866116437, 0.6222165686186035, 0.17261914235374884, 0.8156064679757086, 0.4851213943917703, 0.8871292211128762, 0.8398494053952754, 0.703270618172154, 0.6305543892506115, 0.7494149477175548, 0.1532408287022325, 0.6159732902773407, 0.738220551127759, 0.8354520044441791, 0.8536870432671441, 0.5751476712690671, 0.9077719201719568, 0.7878515691455199, 0.6672663325862807, 0.45293736875445273, 0.17058553029544155, 0.747933377844996, 0.8400163125056676, 0.4516778718827729, 0.6082670858563528, 0.8401843469141149, 0.7636885291754726, 0.789170795337903, 0.8128612802083497, 0.7522530659814418, 0.8086757686066508, 0.8356255123032285, 0.9241779635105248, 0.9674588597049086, 0.9368885694202199, 0.4990764491242286, 0.876561204324957, 0.554264192243629, 0.5967716244634195, 0.9060244606340249, 0.8401608718856799, 0.7329750583133859, 0.8021769878309102, 0.9316817655017511, 0.45488322534173153, 0.798578398438993, 0.7425236774748816, 0.5742682328784404, 0.4937681935814938, 0.8972164286692267, 0.8914273370768748, 0.9377613518261881, 0.8862258850530264, 0.8591757581361523, 0.7410678096850266, 0.6822336012657398, 0.9201658505843877, 0.6982578893131915, 0.5746709232170782, 0.7626532952948841, 0.7137703530889916, 0.7520971196461234, 0.4473853625959922, 0.7957460056304991, 0.4833174871501707, 0.8758467705785958, 0.4689303842787964, 0.6133612564737879, 0.8568681391705205, 0.6835133967314007, 0.9732070839986944, 0.21435716257549006, 0.5761668962420043, 0.4055433603128916, 0.3743394998756179, 0.9118635774953143, 0.964551884718591, 0.9306459334511011, 0.8424802355113449, 0.7739144871152517, 0.6872688771534424, 0.8590561833388345, 0.6714384475466295, 0.6408669500407106, 0.5203550269219845, 0.2856853969697174, 0.857760555506807, 0.9307094503226838, 0.6787928880949093, 0.8308635255795866, 0.29271374211533296, 0.6769315553524353, 0.23831547366416572, 0.5895099457120908, 0.8994675076574448, 0.8893400405584444, 0.8456825404777587, 0.5399612081435882, 0.6188649121485582, 0.9281492942813848, 0.7611740601422801, 0.46550237374781617, 0.8896861436466836, 0.9038901015569306, 0.5044440900554997, 0.9215480939667524, 0.6930273792518707, 0.8723244804196287, 0.5624338775604165, 0.9226297661236537, 0.8469231754225917, 0.9430557295321259, 0.9097116306258912, 0.5988707702267543, 0.3813853072548755, 0.8843832309478876, 0.9006952500629406, 0.918975987201669, 0.18997930334445084, 0.8923106748541326, 0.8461388699436441, 0.5973439234355874, 0.9544642924744549, 0.91770416680597, 0.9177239854204658, 0.17584552180125673, 0.9240099144459667, 0.48524948024905407, 0.8889685222180134, 0.5785503824403398, 0.7511953459672914, 0.6887596776945688, 0.6717539058356753, 0.7168761391602206, 0.7134478068952186, 0.834626350903405, 0.5715867980362679, 0.6588392688727011, 0.9488572786900573, 0.8920529250761863, 0.8891353183282249, 0.707981940789761, 0.926348680038428, 0.631489487929038, 0.7443856388661001, 0.9260754381930228, 0.9544642924744549, 0.8497401318990601, 0.5604010177433062, 0.8036334301115304, 0.7898153537185114, 0.8491431337122072, 0.6570881560807702, 0.8389599143569951, 0.7944137576415592, 0.8132668978866627, 0.44714680104169846, 0.7978021044641371, 0.41921696608658454, 0.38876183891604754, 0.9248463736054193, 0.4277915265084825, 0.6345107008491314, 0.8008942533173764, 0.5087430598332189, 0.9414938992689892, 0.6922115882765215, 0.8296175750175913, 0.8593339228153332, 0.8975141534758351, 0.5977126281557783, 0.9279478536756302, 0.6485770817571253, 0.8905823996589662, 0.9332072841984264, 0.9432461110830079, 0.9410120781436498, 0.6339696776630096, 0.7120962557761497, 0.5841709037351369, 0.5928970840420333, 0.9006589732900512, 0.936371533648048, 0.6907852379101131, 0.7675780198071424, 0.9444587893431046, 0.4702336163336472, 0.8925536722101626, 0.8158978708906081, 0.822780392485108, 0.8037335327290217, 0.8382351003285965, 0.8941557358589171, 0.4796498334522667, 0.926348680038428, 0.6842118015950474, 0.6463580983468415, 0.8292048071278182, 0.5834426687867836, 0.8419845362148763, 0.2431563391580561, 0.7763142135369961, 0.9390550746437164, 0.7774903237071782, 0.8141232663130791, 0.9444089886680379, 0.430401459478284, 0.9192677156927759, 0.8427595869840984, 0.87120858451521, 0.5693182102579236, 0.820012080301976, 0.58719119911586, 0.42769376643096113, 0.3542595869275313, 0.89579938191327, 0.8743523014696554, 0.7820497043505815, 0.5279069501129625, 0.8869579700149332, 0.45488774279476296, 0.8514781135508903, 0.8278297091497892, 0.663749097381813, 0.5132851713944618, 0.4906566565015208, 0.6415219885510332, 0.6991293681294938, 0.8150539074042624, 0.5800669536763935, 0.9583771200922359, 0.7366090055976814, 0.5747817696023392, 0.5315376696882942, 0.8074446941396305, 0.9038901015569306, 0.9087015650331977, 0.6697291810323083, 0.5800669536763935, 0.8807270543114014, 0.5135845984304893, 0.9352791850238339, 0.36120709973337456, 0.6206709330576408, 0.906286252315459, 0.7937202818717513], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [0.46, 0.32, 0.27, 0.6, 0.46, 0.66, 0.58, 0.21, 0.4, 0.41, 0.6, 0.21, 0.3, 0.32, 0.52, 0.37, 0.53, 1.13, 0.26, 1.33, 0.3, 0.31, 1.115, 0.19, 0.685, 0.76, 0.22, 0.69, 0.705, 0.3, 0.805, 0.34, 0.28, 0.23, 0.25, 0.28, 0.16, 0.2, 0.42, 0.25, 0.38, 0.28, 0.1, 0.365, 0.755, 0.26, 0.165, 0.17, 0.31, 0.44, 0.63, 0.305, 0.26, 0.5, 0.27, 0.47, 0.28, 0.51, 0.38, 0.41, 0.6, 0.25, 0.7, 0.21, 0.66, 0.22, 0.47, 0.64, 0.54, 0.17, 0.24, 0.37, 0.41, 0.29, 0.15, 0.31, 0.28, 0.18, 0.77, 0.31, 0.24, 0.28, 0.27, 0.48, 0.3, 0.54, 0.2, 0.52, 0.39, 0.34, 0.37, 0.26, 0.6, 0.41, 0.28, 0.27, 0.22, 0.28, 0.28, 0.28, 0.31, 0.39, 0.21, 0.32, 0.57, 0.41, 0.32, 0.35, 0.43, 0.2, 0.41, 0.15, 0.45, 0.14, 0.43, 0.5, 0.39, 0.25, 1.025, 0.28, 0.33, 0.57, 0.41, 0.35, 0.32, 0.44, 0.26, 0.765, 0.775, 0.28, 0.17, 0.935, 0.29, 0.25, 0.28, 0.34, 0.14, 0.32, 0.27, 0.69, 0.27, 0.27, 0.36, 0.29, 0.33, 0.45, 0.2, 0.21, 0.59, 0.38, 0.28, 0.68, 0.19, 0.56, 0.2, 0.87, 0.42, 0.21, 0.14, 0.45, 0.23, 0.68, 0.46, 0.31, 0.655, 0.25, 0.23, 0.32, 0.34, 0.25, 0.29, 0.23, 0.59, 0.37, 0.44, 0.48, 0.38, 0.3, 0.58, 0.34, 0.32, 1.33, 0.28, 0.33, 0.26, 0.29, 0.93, 0.34, 0.56, 0.29, 0.22, 0.275, 0.32, 0.615, 0.27, 0.755, 0.29, 0.25, 0.33, 0.17, 0.35, 0.5, 0.5, 0.73, 0.26, 0.31, 0.21, 0.35, 0.54, 0.19, 0.22, 0.21, 0.31, 0.25, 0.32, 0.42, 0.46, 0.475, 0.61, 0.42, 0.69, 0.19, 0.31, 0.26, 0.15, 0.38, 0.76, 0.24, 0.36, 0.695, 0.35, 0.25, 0.12, 0.23, 0.17, 0.3, 0.36, 0.26, 0.34, 0.29, 0.45, 0.34, 0.24, 0.27, 0.19, 0.37, 0.4, 0.26, 0.31, 0.52, 0.88, 0.29, 0.28, 0.835, 0.25, 0.345, 0.23, 0.62, 0.28, 0.39, 0.25, 0.41, 0.26, 0.25, 0.2, 0.22, 0.19, 0.2, 0.32, 0.725, 0.23, 0.67, 0.24, 0.32, 0.32, 0.42, 0.58, 0.32, 0.35, 0.415, 0.5, 0.64, 0.34, 0.66, 0.39, 0.29, 0.21, 0.23, 0.34, 0.265, 0.2, 0.29, 0.49, 0.43, 0.33, 0.54, 0.33, 0.695, 0.28, 0.58, 0.915, 0.18, 0.82, 0.14, 0.615, 0.24, 0.34, 0.39, 0.36, 0.39, 0.18, 0.37, 0.64, 0.27, 0.39, 0.32, 0.23, 0.47, 0.28, 0.46, 0.47, 0.25, 0.96, 0.41, 0.32, 0.31, 0.36, 0.25, 0.575, 0.28, 0.28, 0.45, 0.39, 0.24, 0.12, 0.63, 0.37, 0.5, 0.59, 0.42, 0.22, 0.24, 0.2, 0.775, 0.24, 0.61, 0.38, 0.3, 0.24, 0.46, 0.31, 0.52, 0.4, 0.5, 0.19], \"xaxis\": \"x\", \"y\": [0.2802292104526322, 0.9455194119275858, 0.4978743212349556, 0.5289145624519528, 0.28439238707197784, 0.2033309570226689, 0.27345747478543325, 0.8322873304845451, 0.389055896812549, 0.3675472469853882, 0.5781933746273124, 0.7401955299744071, 0.44969671697605845, 0.4367887814338696, 0.31593955341667695, 0.3775624358859999, 0.19282181046294666, 0.048451763306065584, 0.6005928650583868, 0.032225376113695775, 0.427412413738938, 0.23973251442015217, 0.13890126550157303, 0.8613925272127, 0.329663916828638, 0.19359965390713213, 0.6827271716759634, 0.1960905505555538, 0.08135735686643118, 0.39737240301928484, 0.13902987396822816, 0.6514166433739288, 0.6994753721471061, 0.7140886736258081, 0.5021795028970708, 0.48743245558712556, 0.5731139673640956, 0.8820820642542792, 0.559972149724866, 0.5061565591493914, 0.5066810377847554, 0.833805652807593, 0.6979972163580744, 0.3177574231538272, 0.13068190592986567, 0.758876109553896, 0.5681062961269688, 0.715544821914063, 0.762062625203523, 0.4464438677531786, 0.20995974230910305, 0.5262622410710028, 0.39442669669188163, 0.2537324982988368, 0.6775437642744659, 0.23876321589577687, 0.6369158982934647, 0.38960060362966165, 0.6034323722874255, 0.7769991715799629, 0.15199748354041337, 0.5641412449951732, 0.7590466800561823, 0.5969347905931296, 0.1048362779837843, 0.7217824369593382, 0.2662339163773806, 0.16472378978351135, 0.37760124376932414, 0.7071736299639594, 0.3436862995931572, 0.8384434752264291, 0.3635333644877426, 0.7813188949129265, 0.7279369976219869, 0.5641098847382463, 0.3863964747623771, 0.9209913370067284, 0.1477144681640183, 0.8809374658555192, 0.6533168894759348, 0.8873477284758582, 0.3697306267878623, 0.28319023347825867, 0.5203701741750857, 0.5523747693308857, 0.6387521731780509, 0.3881380695009739, 0.8487896327149285, 0.4636606453307818, 0.8384434752264291, 0.558266603669778, 0.21657231888677728, 0.3635333644877426, 0.5512671313974766, 0.5051039398599867, 0.5827915753039158, 0.49441682850108926, 0.47309171914705017, 0.6262595591688196, 0.5508242483721094, 0.47332791509789995, 0.7117569366896692, 0.3933786516273859, 0.16465066549244003, 0.7490394132223248, 0.769261050002088, 0.7431932405995126, 0.3141000916210982, 0.723735045552473, 0.6484132891031948, 0.688519894019609, 0.40496704226994307, 0.5803736122960511, 0.6327801522745691, 0.45115706990411364, 0.37268733756108086, 0.9009693101135351, 0.06496389958099598, 0.44431713201158524, 0.39960831974332744, 0.8662156944598043, 0.31018081106061823, 0.5339551117365043, 0.33311273919547707, 0.400132762133902, 0.8528754522806217, 0.14419347879543085, 0.11672350429510901, 0.44556702529145975, 0.6160120899414699, 0.13766892845409207, 0.5517204028384314, 0.5232178919035022, 0.35483403305733974, 0.4900213704561591, 0.8854578072659228, 0.43084122675663034, 0.7601186327653665, 0.14072030431570776, 0.6186690618327106, 0.5245054232921349, 0.7326259458716644, 0.5690781983520095, 0.4018508815425063, 0.24877469563805235, 0.7952501197393639, 0.8766221356386195, 0.303451532996695, 0.5357745481647883, 0.7096524147827454, 0.20877177283968149, 0.8635610141758273, 0.46736762313881036, 0.6061151992073851, 0.113015272873705, 0.40446014603085867, 0.6332606063976143, 0.648705381890928, 0.42186952587750404, 0.8047913565308571, 0.3017058309841093, 0.38406990132164637, 0.33494193042999065, 0.19929939967121216, 0.8624919783238055, 0.528785836409086, 0.43084122675663034, 0.47042159929499583, 0.5061565591493914, 0.5759491569657543, 0.8468794444363914, 0.20342296359496542, 0.5170831534483544, 0.3666753044655067, 0.6131723001375537, 0.4410646109528086, 0.6903416342484309, 0.3866428492574258, 0.4636606453307818, 0.4525459302795702, 0.03199256040434073, 0.7029629492254846, 0.2433141614541866, 0.548755973819273, 0.3775060302547258, 0.06593060991448157, 0.8745624549148976, 0.22931948662359403, 0.27267688907931714, 0.589328430619086, 0.8007160756317941, 0.5525637789187225, 0.5008522318356121, 0.4556212410144909, 0.17391722008742402, 0.43574637053357784, 0.3237440077649342, 0.6071692164257629, 0.6925152430641841, 0.592675381607996, 0.43854150134957587, 0.43854150134957587, 0.42437112972565305, 0.8061118855433299, 0.35195592295594336, 0.7605370065149419, 0.38898578429124253, 0.67510953655807, 0.872979709380305, 0.710510994258769, 0.720290290780972, 0.4820787970895852, 0.42019280799979697, 0.4304380754474639, 0.25285023254778977, 0.3238056884730761, 0.39471961640683584, 0.09510031985475974, 0.367046376808582, 0.21500793651835448, 0.8705359023101334, 0.6100742529031461, 0.6226449432624995, 0.7279369976219869, 0.3643494054700089, 0.09992017521484964, 0.41475515148757036, 0.6462260464983366, 0.14102909592513518, 0.48949585696458414, 0.5239520436918008, 0.6084413884537807, 0.5655473856702703, 0.9517420512476797, 0.7489379515982664, 0.4647937384849751, 0.7915321263825208, 0.44112279258530757, 0.5734340256727429, 0.6604471727860799, 0.4845203185458914, 0.6968730453869196, 0.5315374962198609, 0.8685951485887234, 0.6242442748350044, 0.2912097196987059, 0.7725938221565348, 0.2067629769731588, 0.30221725334927335, 0.13129342562285412, 0.6467789443522378, 0.6994753721471061, 0.11825382206919556, 0.41022417118631593, 0.4882665226122541, 0.7732287086973071, 0.25374762405010176, 0.49441682850108926, 0.3723877205427743, 0.652330313245635, 0.43667799883041203, 0.5964718913578133, 0.55172276504346, 0.24113559934961917, 0.8243980268882987, 0.7263843594269437, 0.43535214809021755, 0.8721122798612579, 0.18723914490145582, 0.6486906676970999, 0.11576704656818047, 0.4328241622975616, 0.491481212420291, 0.5264345378086769, 0.33856526784971647, 0.2967410926251248, 0.581398831228375, 0.5973776665460488, 0.6195406102170065, 0.37782717658841725, 0.323061133240968, 0.17420808473594895, 0.19634770547538957, 0.46492234760650425, 0.49613167963272686, 0.5812209036149294, 0.6057291775435286, 0.63414717387345, 0.5702687187355167, 0.8604975146328253, 0.6309022132706124, 0.48732991249542923, 0.6887148870948692, 0.41581945293096145, 0.5706760596351739, 0.4831274653996314, 0.06684727567316755, 0.49090643211649887, 0.15191610726090596, 0.2711405311223577, 0.7653618545702112, 0.09266565137124261, 0.4554350627407873, 0.19698919164573708, 0.6930185080649685, 0.5227537922811563, 0.50434568709929, 0.7082092780767422, 0.46058046365566996, 0.6735723234187477, 0.4285936050615775, 0.323061133240968, 0.5168500865319015, 0.6161307914674419, 0.23456444218973552, 0.3192004782541023, 0.21968945907811915, 0.5028183230931117, 0.43371621376298963, 0.6744209213341115, 0.5940260419772637, 0.13783310426722128, 0.5136444387530009, 0.5508647999875032, 0.4955911012838212, 0.9814394195009358, 0.8260225289794664, 0.17965956338109995, 0.46844896472597397, 0.6048119589659149, 0.3289160319090978, 0.2454606394453749, 0.7497022835596558, 0.683485355417811, 0.20995974230910305, 0.23504578258460665, 0.37175956099497537, 0.4875530438829156, 0.24982584224249993, 0.6282829625348888, 0.4520795162158371, 0.8200372413039435, 0.12832513643528837, 0.5299630655130737, 0.29552777318700446, 0.24021937552346023, 0.5429028773737552, 0.6311869746243346, 0.4145977043912777, 0.39329840463575844, 0.39070335653410526, 0.4286990948130573, 0.846836560604146, 0.6880850122626078], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (curr)\", \"type\": \"scatter\", \"x\": [0.37, 0.23, 0.21, 0.32, 0.58, 0.21, 0.24, 0.3, 0.2, 0.3, 0.48, 0.25, 0.27, 0.32, 0.32, 0.2, 0.44, 0.25, 0.22, 0.37, 0.2, 0.19, 0.2, 0.26, 0.25, 0.29, 0.22, 0.24, 0.39, 0.34, 0.41, 0.34, 0.22, 0.26, 0.3, 0.19, 0.13, 0.23, 0.475, 0.605, 0.33, 0.24, 0.52, 0.29, 0.26, 0.57, 0.3, 0.6, 0.26, 0.22, 0.42, 0.57, 0.28, 0.28, 0.26, 0.17, 0.22, 0.34, 0.21, 0.76, 0.42, 0.3, 0.22, 0.25, 0.26, 0.3, 0.42, 0.28, 0.54, 0.14, 0.26, 0.28, 0.34, 0.275, 0.29, 0.2, 0.28, 0.18, 0.26, 0.53, 0.15, 0.21, 0.31, 0.24, 0.22, 0.31, 0.36, 0.33, 0.19, 0.3, 0.2, 0.24, 0.25, 0.31, 0.4, 0.4, 0.475, 0.25, 0.26, 0.61, 0.26, 0.17, 0.51, 0.28, 0.26, 0.28, 0.53, 0.24, 0.38, 0.3, 0.66, 0.33, 0.29, 0.29, 0.32, 0.36, 0.255, 0.24, 0.29, 0.66, 0.33, 0.23, 0.34, 0.16, 0.635, 0.42, 0.46, 0.34, 0.39, 0.17, 0.19, 0.36, 0.26, 0.28, 0.27, 0.21, 0.36, 0.42, 0.34, 0.21, 0.18, 0.865, 0.39, 0.23, 0.29, 0.31, 0.35, 0.4, 0.09, 0.22, 0.12, 0.1, 0.18, 0.2, 0.19, 0.3, 0.35, 0.37, 0.2, 0.23, 0.23, 0.55, 0.37, 0.3, 0.39, 0.265, 0.3, 1.04, 0.34, 0.21, 0.15, 0.18, 0.27, 0.34, 0.39, 0.24, 0.2, 0.28, 0.38, 0.31, 0.39, 0.19, 0.18, 0.33, 0.14, 0.55, 0.22, 0.46, 0.27, 0.41, 0.19, 0.18, 0.22, 0.25, 0.17, 0.39, 0.19, 0.33, 0.35, 0.27, 0.36, 0.26, 0.4, 0.17, 0.21, 0.31, 0.21, 0.44, 0.25, 0.15, 0.26, 0.28, 0.46, 0.32, 0.46, 0.32, 0.22, 0.31, 0.35, 0.24, 0.18, 0.35, 0.6, 0.26, 0.22, 0.655, 0.2, 0.28, 0.42, 0.22, 0.84, 0.28, 0.19, 0.23, 0.27, 0.2, 0.34, 0.14, 0.31, 0.16, 0.22, 0.4, 0.36, 0.22, 0.46, 0.43, 0.19, 0.19, 0.21, 0.685, 0.17, 0.22, 0.17, 0.28, 0.13, 0.11, 0.14, 0.17, 0.34, 0.32, 0.65, 0.28, 0.21, 0.28, 0.13, 0.24, 0.27, 0.41, 0.23, 0.18, 0.11, 0.17, 0.15, 0.59, 0.11, 0.68, 0.24, 0.18, 0.295, 0.55, 0.37, 0.27, 0.28, 0.345, 0.28, 0.44, 0.32, 0.2, 0.585, 0.17, 0.45, 0.43, 0.13, 0.32, 0.17, 0.28, 0.25, 0.36, 0.24, 0.3, 0.17, 0.16, 0.25, 0.38, 0.25, 0.36, 0.37, 0.18, 0.21, 0.16, 0.24, 0.46, 0.52, 0.31, 0.21, 0.22, 0.37, 0.28, 0.19, 0.25, 0.33, 0.28, 0.29, 0.19, 0.65, 0.2, 0.29, 0.32, 0.19, 0.4, 0.43, 0.16, 0.785, 0.22, 0.27, 0.25, 0.25, 0.26, 0.36, 0.43, 0.21, 0.32, 0.3, 0.54, 0.63, 0.18, 0.35, 0.27, 0.25, 0.41, 0.43, 0.305, 0.23, 0.2, 0.3, 0.31, 0.645, 0.29, 0.16, 0.52, 0.3, 0.24, 0.42, 0.26, 0.45, 0.27, 0.22, 0.22, 0.33, 0.24, 0.22, 0.34, 0.21, 0.14, 0.53, 0.725, 0.18, 0.27, 0.47, 0.26, 0.235, 0.26, 0.33, 0.23, 0.23, 0.2, 0.27, 0.16, 0.45, 0.4, 0.2, 0.28, 0.24, 0.23, 0.115, 0.57, 0.25, 0.27, 0.37, 0.18, 0.18, 0.21, 0.19, 0.19, 0.31, 0.23, 0.24, 0.445, 0.15, 0.45, 0.26, 0.2, 0.18, 0.19, 0.18, 0.4, 0.21, 0.37, 0.32, 0.26, 0.21, 0.28, 0.42, 0.765, 0.315, 0.28, 0.25, 0.28, 0.36, 0.17, 0.41, 0.27, 0.15, 0.32, 0.5, 0.52, 0.24, 0.25, 0.08, 0.18, 0.19, 0.57, 0.23, 0.19, 0.36, 0.34, 0.38, 0.5, 0.42, 0.745, 0.22, 0.69, 0.18, 0.57, 0.17, 0.33, 0.36, 0.18, 0.22, 0.4, 0.24, 0.36, 0.19, 0.23, 0.18, 0.17, 0.44, 0.17, 0.21, 0.685, 0.3, 0.2, 0.58, 0.16, 0.16, 0.24, 0.36, 0.13, 0.26, 0.21, 0.34, 0.25, 0.38, 0.12, 0.17, 0.19, 0.3, 0.38, 0.39, 0.59, 0.45, 0.22, 0.31, 0.35, 0.2, 0.39, 0.2, 0.56, 0.305, 0.45, 0.24, 0.26, 0.19, 0.26, 0.41, 0.22, 0.31, 0.35, 1.02, 0.27, 0.52, 0.21, 0.35, 0.26, 0.22, 0.44, 0.41, 0.4, 0.27, 0.25, 0.3, 0.49, 0.24, 0.32, 0.21, 0.19, 0.25, 0.37, 0.25, 0.26, 0.69, 0.17, 0.25, 0.25, 0.31, 0.3, 0.53, 0.24, 0.69, 0.38, 0.22, 0.29, 0.26, 0.16, 0.27, 0.15, 0.5, 0.31, 0.21, 0.19, 0.29, 0.32, 0.41, 0.21, 0.2, 0.42, 0.36, 0.15, 0.35, 0.33, 0.11, 0.31, 0.16, 0.34, 0.34, 0.2, 0.21, 0.28, 0.19, 0.28, 0.205, 0.26, 0.19, 0.43, 0.28, 0.21, 0.33, 0.24, 0.25, 0.28, 0.38, 0.3, 0.15, 0.33, 0.18, 0.32, 0.61, 0.3, 0.38, 0.38, 0.56, 0.34, 0.24, 0.22, 0.58, 0.35, 0.32, 0.28, 0.2, 0.21, 0.16, 0.58, 0.28, 0.255, 0.21, 0.63, 0.38, 0.16, 0.24, 0.35, 0.48, 0.19, 0.2, 0.17, 0.6, 0.32, 0.18, 0.2, 0.38, 0.52, 0.15, 0.38, 0.18, 0.14, 0.16, 0.26, 0.24, 0.245, 0.29, 0.15, 0.645, 0.415, 0.18, 0.2, 0.34, 0.18, 0.22, 0.51, 0.42, 0.49, 0.32, 0.25, 0.2, 0.24, 0.18, 0.27, 0.53, 0.28], \"xaxis\": \"x2\", \"y\": [0.33396714643252134, 0.5044440900554997, 0.8874896900044845, 0.4686759077780351, 0.23831547366416572, 0.571181601185031, 0.7785327680196316, 0.7290551099174598, 0.9581131370131553, 0.6801000322064107, 0.413367674560271, 0.6667140739211237, 0.9108229754863395, 0.9275086157065797, 0.9186958597750785, 0.7191871442695774, 0.8184457509658746, 0.8597940676688322, 0.7947045908306632, 0.8244149680645384, 0.42771531534877594, 0.5315376696882942, 0.7136291946100958, 0.5510697799054304, 0.6393262665313312, 0.9016582766249417, 0.8560880110261746, 0.8947361144883382, 0.9102326114023062, 0.840723585394272, 0.9264645566705582, 0.5105903360131552, 0.752648770317166, 0.5855954083225455, 0.8989214048388485, 0.5190750352404293, 0.9560713253502463, 0.7273157243430202, 0.9279672131348602, 0.640103147954212, 0.9158977434209615, 0.9035955072010529, 0.7140955379655831, 0.233508355491505, 0.7280578325574358, 0.8810827811902006, 0.3966129217085586, 0.15541760955422754, 0.5851621750323275, 0.9046111951917862, 0.4177213302712193, 0.7993763114768937, 0.6978409661933959, 0.6473373667551029, 0.770784382977056, 0.6500641275496193, 0.548949563093737, 0.9803199442553986, 0.6150775052067382, 0.391333092160729, 0.6966682278280982, 0.9426748402861506, 0.9170092977635526, 0.844625652038695, 0.5621782696252592, 0.8935808323282117, 0.6792214086077275, 0.6719996755401956, 0.5252591274442797, 0.7277045758687855, 0.4685752957996948, 0.8616549355667619, 0.347491516391863, 0.8224130863808733, 0.5340790568488665, 0.6711667658766297, 0.5277539611022016, 0.7226430813715845, 0.8140972745487615, 0.3280236940194876, 0.9543080196225542, 0.7752655593026647, 0.9223925066666061, 0.8588031784191832, 0.6345107008491314, 0.9393010047953068, 0.7897067132703484, 0.8608062836413887, 0.8367885032124018, 0.38555642305179116, 0.8611944449682004, 0.9172341012895443, 0.9206892306522243, 0.9500505925695213, 0.537798347971205, 0.9173482789702866, 0.44454351342386716, 0.8909704850569525, 0.7351932580165473, 0.6818328744935735, 0.7981559962965634, 0.7626532952948841, 0.807353254900461, 0.964411205143099, 0.4685752957996948, 0.6986526320119215, 0.1956969407137045, 0.9233481403380283, 0.8218375601976645, 0.8536269727611236, 0.5637680470866036, 0.42267134533232753, 0.93003590801509, 0.9364808605729722, 0.8816060831574614, 0.9663102962713933, 0.8345570787709832, 0.4997893986747249, 0.7921603237806832, 0.5586815647381762, 0.8622246464681924, 0.9828719612298703, 0.909295720392338, 0.9476267884443668, 0.5395521774612226, 0.901360886913609, 0.39410444510430487, 0.9262213132200262, 0.6627387433216217, 0.9629433821448677, 0.9614311452267452, 0.9802968012486629, 0.933760787013923, 0.34432718187202205, 0.63596173557573, 0.624364378916488, 0.7417789548241253, 0.7300918276682445, 0.6968315453320488, 0.7840233885688647, 0.8958841271622066, 0.5417426694559925, 0.7102579146160282, 0.6004345411549624, 0.515920701757342, 0.7587882454650442, 0.5029588531082266, 0.6887596776945688, 0.8642849605932809, 0.6469572639767995, 0.8103639651534781, 0.939764354405301, 0.694136577696587, 0.6593725303534554, 0.9646797005081557, 0.7979900311745153, 0.792123904710467, 0.8869579700149332, 0.7351250317969437, 0.5332560471205093, 0.9406873315653421, 0.39362685027924615, 0.9466602521798594, 0.8394325033041952, 0.6633442657978572, 0.8126408700417265, 0.7332457619716184, 0.08024070404520958, 0.8667774471450977, 0.6466814331404849, 0.912366876100516, 0.656670904734599, 0.8701678467707724, 0.8875925797813499, 0.9658725076002231, 0.7668332861852056, 0.8604440887473094, 0.934384507524058, 0.9605946056867319, 0.951253157591183, 0.5749289095213865, 0.6279243005170476, 0.7937202818717513, 0.7665301650725991, 0.700127941221274, 0.8531107444728586, 0.7947045908306632, 0.8870566665876504, 0.5476228787844645, 0.8410401833568673, 0.8736671065238262, 0.6519898659949606, 0.936943112068646, 0.9077719201719568, 0.8071889556778997, 0.8815615400732472, 0.8935313268029127, 0.8782891297971865, 0.5029588531082266, 0.5797201450332624, 0.9416775458320723, 0.5958140198486584, 0.2485157288688957, 0.932021424688801, 0.8531502837407814, 0.6344194678828672, 0.632587077283238, 0.9121448358615357, 0.5776545535910985, 0.9052765174806566, 0.8580390107418799, 0.8998644401112552, 0.6784536879503494, 0.9458342431661766, 0.21387363850783603, 0.9530348339880965, 0.7307391114165022, 0.7187682731289255, 0.6905635603269331, 0.9569274903702625, 0.9287384091375525, 0.3856984054091925, 0.504413920551941, 0.5389739198483336, 0.5921068831639978, 0.10702848140489757, 0.8772993497727819, 0.6361944011057532, 0.8952999713010865, 0.7069578609115064, 0.10632960186243966, 0.6465592619811017, 0.9116333268133815, 0.9210441535829985, 0.9483358221641291, 0.5800224234700003, 0.896951343689222, 0.8958659323404018, 0.8896861436466836, 0.7763142135369961, 0.778627444633172, 0.9274605647284293, 0.9167924025380936, 0.6422094408272838, 0.6363725079258666, 0.8694129796739031, 0.5693182102579236, 0.5315376696882942, 0.6814536952243052, 0.30089534057709466, 0.6689448970920832, 0.6419522618821227, 0.6500641275496193, 0.8221968069187356, 0.9285763346020383, 0.8495153837633861, 0.7135666997345446, 0.8850789772017983, 0.9128367188568884, 0.8709442503982084, 0.44714680104169846, 0.7147831401969469, 0.6814536952243052, 0.5823319261018008, 0.7718122970862826, 0.8925058444773368, 0.9249991097277733, 0.7849066379312727, 0.5120166815330335, 0.7863291630268572, 0.8171821177205619, 0.8878235148823457, 0.9813953955585096, 0.5009899161211654, 0.6787020040856314, 0.2747106808400709, 0.6998114428322438, 0.7191783799678735, 0.7566715075843347, 0.7741630673610131, 0.692871858980435, 0.8706970297938403, 0.9226518689226377, 0.619213859232465, 0.9620625840847012, 0.8161066853745392, 0.7984578805051198, 0.8987836568806694, 0.27900511725120763, 0.747868261422589, 0.8013372150606806, 0.4430395412241901, 0.8082746512504794, 0.9248395818955686, 0.8132668978866627, 0.7926355964369082, 0.7243101498981422, 0.8251498778038484, 0.865753667016409, 0.8784859927081519, 0.9613966942665844, 0.8380103992838959, 0.9376908870460701, 0.8505645904112248, 0.5317253080143199, 0.8756470416862959, 0.8823120896825394, 0.8920529250761863, 0.9565288857220365, 0.92576324319171, 0.8397457208604353, 0.8008835764985612, 0.7620555647282774, 0.6333567796033132, 0.8986985644274655, 0.8289197139212982, 0.38568054861828666, 0.4358764146033148, 0.7013568331933456, 0.5524769805317635, 0.8654015550049637, 0.9625385348003681, 0.4997035751430624, 0.5940434106189647, 0.29640429037896177, 0.9370396801623051, 0.7496358493500708, 0.8521916566704996, 0.7519935213994349, 0.8956127660014477, 0.7563308848917781, 0.5425355780301907, 0.1652985164032473, 0.5777375433929663, 0.5926841497777402, 0.5247451599628447, 0.6215406511606532, 0.646742228322253, 0.5236567091352762, 0.8105889943537302, 0.7614647275399787, 0.7272264480694343, 0.44438282424164377, 0.8051848688934031, 0.253979247575754, 0.8737269176380216, 0.7884186533408385, 0.5226162157005312, 0.7776146375974927, 0.8021344726910251, 0.6794204065079696, 0.8398669626756513, 0.3743394998756179, 0.6593725303534554, 0.41008410759983227, 0.8726624594592295, 0.31336232876890546, 0.6187135046228962, 0.9208146539756937, 0.8948907807194619, 0.9475948217130945, 0.7098971478357265, 0.41970311630379203, 0.5524505095188592, 0.6689295490636696, 0.39534528644804523, 0.6686700461744643, 0.6608417181144597, 0.6289006219381473, 0.8112353209803558, 0.9675531845963172, 0.3468688843876404, 0.8171815196180959, 0.9315945487332388, 0.7612383340144859, 0.43979370974717685, 0.9452166580978265, 0.810349906376065, 0.4979189466877109, 0.9054024939516333, 0.7506263221664519, 0.8595966107872783, 0.9041757536760852, 0.5120166815330335, 0.9246344940597735, 0.622364539475366, 0.7975959936185795, 0.9376528402833735, 0.8270495791839716, 0.7463426393970082, 0.8508295060861325, 0.5277539611022016, 0.7926521549058593, 0.8343380415579561, 0.7973631232158779, 0.5423298306356671, 0.6253812669856891, 0.9342151247863544, 0.9064095870896521, 0.8428584418618921, 0.5680191878381406, 0.8230633503438987, 0.857993972512287, 0.8312116035859974, 0.8886868130574391, 0.5695902702544526, 0.8750573328895943, 0.47134086624147714, 0.6082670858563528, 0.8571520978358925, 0.7006810412396262, 0.6001343818465046, 0.8680196363335714, 0.7833148206731655, 0.835330250744176, 0.6883000602161935, 0.4297997702781997, 0.7132181587745201, 0.941909753873568, 0.9298379484442667, 0.8950633078112005, 0.9652574497835966, 0.8593048115498744, 0.23022113319019433, 0.5548683876071567, 0.8789570823277312, 0.7176343272433334, 0.7135972690872326, 0.900955402304434, 0.89110615578316, 0.8021344726910251, 0.36734125225010755, 0.9233813125795639, 0.9269988231022361, 0.6021478506882372, 0.27064660283581765, 0.7595966254948197, 0.5317253080143199, 0.9626288904553877, 0.518871521713375, 0.4244151934213653, 0.8784852709235653, 0.667697582798242, 0.6791650855490978, 0.8659372985570389, 0.5217980090164113, 0.9757802673562255, 0.20769640873195563, 0.6900575067285889, 0.15051833553221247, 0.8476988333501053, 0.12043274000614122, 0.6546311715671466, 0.412102187638673, 0.6339696776630096, 0.6925917751558638, 0.8074446941396305, 0.8417042066658985, 0.4702054036006336, 0.8107456318417504, 0.934253622333564, 0.9671353887875448, 0.3776875782453083, 0.5133306968464912, 0.8279918435672958, 0.7295730380004212, 0.8398957027397556, 0.7470826509089123, 0.7722124156410631, 0.3944809481034696, 0.5801047158883857, 0.7134138458261836, 0.8265590446981121, 0.5836238058504062, 0.7538957359152121, 0.9708936701567454, 0.41507295289487073, 0.9039211350062085, 0.5109703825452502, 0.8880660412534, 0.6332514250278477, 0.703270618172154, 0.863031725372896, 0.9601349291832292, 0.5845797646527732, 0.8357575010967041, 0.9584406458449958, 0.8733333206292072, 0.4740801794177068, 0.5787650908025566, 0.38525623454815555, 0.5715075300165849, 0.951253157591183, 0.831291834366621, 0.6482062646591596, 0.5447536045265621, 0.8456825404777587, 0.5358725178581014, 0.8893400405584444, 0.5955893395860203, 0.9408369636189147, 0.7580589814818564, 0.4244151934213653, 0.7636885291754726, 0.9532052815091139, 0.6686700461744643, 0.39683939049776734, 0.8309978518015588, 0.06774730328187532, 0.8934061610794648, 0.9459413258233057, 0.8507977517004935, 0.9694554821790147, 0.8640493534313302, 0.8409166048571896, 0.9059760843724536, 0.7278052027863667, 0.8952246802917138, 0.39534528644804523, 0.9558702864115934, 0.9178754126151818, 0.7504628435478695, 0.7568870052952757, 0.32046258648166903, 0.9712495894387816, 0.7125870341029702, 0.8286889773580812, 0.929575727770858, 0.8422483936479932, 0.60065365322741, 0.5775074082600717, 0.7505976846167132, 0.5317253080143199, 0.9590110623565244, 0.9651712957082627, 0.7333643603414158, 0.7757825668725274, 0.8928390517037824, 0.2578168736401774, 0.5355488836719776, 0.8408692583280314, 0.7849780542174357, 0.8711681462620556, 0.8447990405440073, 0.9571933326515756, 0.9307123551507692, 0.6421242495412457, 0.9239207054420927, 0.9336219461922934, 0.4244151934213653, 0.5673643045526261, 0.8301442064454496, 0.528471943574542, 0.8835542071774324, 0.8820947700128993, 0.4561713647735051, 0.584381944856391, 0.9493936477483658, 0.7816316980556022, 0.7770145472448273, 0.8495153837633861, 0.8318035560268552, 0.5220388622338656, 0.8589980209217414, 0.21216021099657945, 0.8782303617207965, 0.901850575196968, 0.7683760396387002, 0.9559989503713009, 0.938411491366706, 0.7225398931917507, 0.5918361617892179, 0.8596378534897678, 0.8816239240572568, 0.9296844522785247, 0.8299758417251202, 0.7538846798551382, 0.931253582726863, 0.6902425303942638, 0.9299571155275668, 0.35461708236434614, 0.6119587629530028, 0.8979450471026776, 0.8782891297971865, 0.6144930729026484, 0.5601837238662909, 0.4230258756549153, 0.5115702372514986, 0.6133200318312215, 0.8287048127179734, 0.42887934024879554, 0.5543929044930882, 0.5414149972460248, 0.7453725251924848, 0.6522898344923613, 0.6445138145159856, 0.9212190995841192, 0.6991293681294938, 0.9188224881967051, 0.9444881948020799, 0.8399825546316605, 0.6440269003431431, 0.45260210695563535, 0.6678228102737954, 0.8535669746933884, 0.23469888428232324, 0.7581156815660375, 0.8329520097124233, 0.5886389680190937, 0.4250130050586104, 0.290761161529129, 0.9065968169685268, 0.39757013049667705, 0.9584529405260903, 0.24804178200132845, 0.8400605958344816, 0.9562762484868867, 0.5923100188758571, 0.5355488836719776, 0.6866862751474886, 0.753715093249364, 0.9302702282582556, 0.8405005145861136, 0.7758456574858743, 0.8270123797965384, 0.9270997487744173, 0.8779999285967196, 0.6350604679157676, 0.9057987369792326, 0.9732730617650076, 0.28007269673131574, 0.5393237551960537, 0.9509318156255189, 0.8055358405733448, 0.8512314640165554, 0.6752183046546253, 0.9766791413071304, 0.26893819095773785, 0.5105552073939665, 0.7964242570425004, 0.9159462749375985, 0.46312559485344046, 0.7889853219989779, 0.5331772070153998, 0.6250130361556073, 0.5340700079782073, 0.8981158701031157, 0.8424802355113449], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [0.365, 0.62, 0.27, 0.18, 0.29, 0.28, 0.43, 0.765, 0.785, 0.6, 0.3, 0.19, 0.31, 0.25, 0.29, 0.21, 0.31, 0.38, 0.35, 0.45, 0.28, 0.25, 0.34, 0.41, 0.22, 0.29, 0.41, 0.41, 0.21, 0.2, 0.27, 0.3, 0.73, 0.6, 0.18, 0.19, 0.98, 0.52, 0.12, 0.36, 0.485, 0.58, 0.34, 0.25, 0.43, 0.51, 0.54, 0.6, 0.28, 0.2, 0.25, 0.26, 0.31, 0.64, 0.705, 0.37, 0.61, 0.645, 0.31, 0.42, 0.645, 0.45, 0.27, 0.29, 0.39, 0.91, 0.46, 0.7, 0.775, 0.55, 0.57, 0.34, 0.335, 0.685, 0.24, 0.25, 0.27, 0.31, 0.47, 0.39, 0.13, 0.56, 0.29, 0.5, 0.2, 0.37, 0.16, 0.25, 0.25, 0.5, 0.23, 0.345, 0.27, 0.3, 0.58, 1.58, 0.29, 0.62, 0.64, 0.24, 0.35, 0.42, 0.21, 0.52, 0.33, 0.51, 0.62, 0.5, 0.33, 0.33, 0.6, 0.31, 0.63, 0.3, 0.21, 0.27, 0.24, 0.41, 0.27, 0.56, 0.27, 0.24, 0.61, 0.5, 0.695, 0.65, 0.16, 0.23, 0.695, 0.44, 0.28, 0.33, 0.3, 0.35, 0.34, 0.39, 0.25, 0.66, 0.585, 0.315, 0.29, 0.2, 0.22, 0.18, 0.59, 0.34, 0.21, 0.4, 0.52, 0.37, 0.5, 0.31, 0.43, 0.24, 0.3, 0.31, 0.22, 0.26, 0.28, 0.55, 0.635, 0.32, 0.14, 0.36, 0.59, 0.31, 0.3, 0.14, 0.21, 0.23, 0.31, 0.26, 0.28, 0.17, 0.35, 0.54, 0.39, 0.39, 0.24, 0.15, 0.16, 0.215, 0.38, 0.34, 0.26, 0.3, 0.29, 0.27, 0.28, 0.24, 0.66, 0.25, 0.25, 0.28, 0.4, 0.38, 0.21, 0.3, 0.18, 0.45, 0.67, 0.36, 0.34, 0.24, 0.27, 0.21, 0.31, 0.32, 0.5, 0.31, 0.34, 0.33, 0.48, 0.2, 0.28, 0.39, 0.29, 0.34, 0.34, 0.24, 0.4, 0.27, 0.33, 0.28, 0.18, 0.41, 0.41, 0.27, 0.52, 0.345, 0.33, 0.23, 0.22, 0.23, 0.745, 0.35, 0.12, 0.22, 0.3, 0.22, 0.44, 0.65, 0.21, 0.12, 0.29, 0.32, 0.17, 0.14, 0.4, 0.41, 0.42, 0.44, 0.3, 0.24, 0.29, 0.23, 0.12, 0.3, 0.34, 0.45, 0.46, 0.2, 0.18, 0.18, 0.26, 0.28, 0.47, 0.23, 0.235, 0.33, 0.28, 0.705, 0.16, 0.31, 0.16, 0.28, 0.33, 0.45, 0.675, 0.37, 0.78, 0.28, 0.19, 0.6, 0.62, 0.14, 0.31, 0.555, 0.21, 0.45, 0.26, 0.6, 0.4, 0.62, 0.3, 0.41, 0.41, 0.3, 0.25, 0.59, 0.24, 0.32, 0.25, 0.26, 0.44, 0.475, 0.35, 0.24, 0.28, 0.23, 0.4, 0.27, 0.26, 0.24, 0.27, 0.26, 0.31, 0.26, 0.33, 0.595, 0.26, 0.39, 0.26, 0.23, 0.875, 0.35, 0.33, 0.45, 0.3, 0.335, 0.9, 0.24, 0.19, 0.16, 0.55, 0.21, 0.15, 0.63, 0.22, 0.49, 0.32, 0.44, 0.48, 0.83, 0.61, 0.2, 0.4, 0.365, 0.22, 0.15, 0.23, 0.26], \"xaxis\": \"x2\", \"y\": [0.8142007211296887, 0.07257977436397642, 0.7430932382113554, 0.8214862427787604, 0.5698848321031316, 0.6048119589659149, 0.6466669219762841, 0.14510080060429495, 0.2250304680670007, 0.28492472637839966, 0.42061632734231896, 0.8281252124183194, 0.49622399336621903, 0.3482895521074759, 0.4678833354511545, 0.5708968386647719, 0.37048677721847617, 0.553632248395139, 0.8702137350251022, 0.42186952587750404, 0.8696774950675754, 0.5410576963494411, 0.3971326977900686, 0.3275001196198921, 0.9448289227093116, 0.7109941475090589, 0.41925580570138304, 0.3675472469853882, 0.6721911818800557, 0.5562207270314473, 0.5262426608517637, 0.3244609607385458, 0.15056615442564347, 0.15676979724311627, 0.6037730696030339, 0.6342511279653397, 0.021947035536558718, 0.32429164429335744, 0.5678746850743716, 0.3571680467137555, 0.7755534309390314, 0.3240287891037917, 0.699424662214302, 0.5151532452376618, 0.7564675819717819, 0.38343591026479057, 0.19811005648518398, 0.3168419703358067, 0.5315947262677626, 0.9269044449273315, 0.8260225289794664, 0.451791899378283, 0.830516920403184, 0.47128602930186, 0.19027823806377472, 0.5181346713949518, 0.29552777318700446, 0.45414400334446664, 0.39329840463575844, 0.42327932510626076, 0.45838907164509224, 0.2233864252642039, 0.3628419195926303, 0.6709353200988277, 0.46058046365566996, 0.25551237833043455, 0.7234147543269824, 0.1481282262733752, 0.314935793994079, 0.20050531530561894, 0.37453315488553635, 0.701015529968035, 0.6343341418527783, 0.1739320900588749, 0.734996253073231, 0.8172229478314255, 0.3598554146739685, 0.7121055211356295, 0.2620604909731644, 0.3421138035730516, 0.6951268813066005, 0.35208221297891723, 0.452099210446082, 0.18907620085798427, 0.5444201651108793, 0.6484058972837882, 0.3258186925596978, 0.5963383680780668, 0.6202666247822538, 0.576738593946626, 0.5054992484109841, 0.2972245631729925, 0.6844333356791464, 0.42629475072919953, 0.4405153833121037, 0.01207867704715336, 0.7609288944606691, 0.23951123982998349, 0.09310514674080905, 0.5084920166510624, 0.33067609257366243, 0.36481899584296196, 0.5708968386647719, 0.3194802059637459, 0.14207297841267416, 0.5776897120055972, 0.2026163425795633, 0.37909000048748537, 0.38206764842015895, 0.41324683104354176, 0.17826143731067332, 0.42339414872454434, 0.39148091864802853, 0.3511350413575442, 0.8053393751847749, 0.5937005322868365, 0.6849942580153355, 0.38930033076762494, 0.5168500865319015, 0.5699073288866824, 0.5376087249833421, 0.8185832461647057, 0.25950508036415604, 0.20394483716883388, 0.3303044530853749, 0.2528102968078532, 0.8477719856767125, 0.5217124250004609, 0.3303044530853749, 0.5382885532339231, 0.9625763866028243, 0.6536174904341296, 0.42629475072919953, 0.6458781618432388, 0.46574001023909845, 0.37268733756108086, 0.8180085473348132, 0.35493594975273335, 0.2423640089427935, 0.3636330633241046, 0.6421622311157122, 0.5444201651108793, 0.7396308412796291, 0.9036153464846048, 0.21101569987323432, 0.6004024464464508, 0.7595861882737439, 0.486549602332862, 0.2379839758891197, 0.5147825233229498, 0.2065932277190248, 0.4342628292980428, 0.5940848250235929, 0.4857193175270624, 0.5332610244722983, 0.5402196969638672, 0.8578846895389459, 0.5290225674595067, 0.6074669506688956, 0.1847839155105034, 0.3581391437324269, 0.4304380754474639, 0.8410120374942113, 0.5810086483513661, 0.19026233744636453, 0.7223494520380469, 0.8589928738613049, 0.8374625942163022, 0.781203852328267, 0.73983195178881, 0.41156537259256004, 0.7482873396984137, 0.44431713201158524, 0.7113673874393347, 0.49869552495399233, 0.7627102864663872, 0.37193390769028617, 0.37187810520956766, 0.3773291605703562, 0.8719651627687759, 0.6218762459828849, 0.3781393537983126, 0.553632248395139, 0.47624084907999176, 0.774399353278846, 0.5840424935194366, 0.5601025471409736, 0.6186690618327106, 0.620611700356168, 0.5755798886129706, 0.15047650536569443, 0.5530049338021776, 0.6597439619439023, 0.8300222117931148, 0.3490158529243493, 0.4410646109528086, 0.5067909967309752, 0.5851482063434866, 0.7149827463187939, 0.4849259975950144, 0.2094210588097294, 0.33399024531412796, 0.4083143545243069, 0.7497022835596558, 0.7817929239213606, 0.7637421953724776, 0.3825655414920891, 0.6611482494098961, 0.19022241257108333, 0.44972084577511023, 0.5476732603321269, 0.4831274653996314, 0.5077048340566679, 0.7289504589448288, 0.4379810490617926, 0.8017221455714771, 0.6434673631716396, 0.5059779734745421, 0.6065367192264559, 0.650368705032214, 0.34567471266024347, 0.39561589000187136, 0.3427787545601037, 0.4676404271158623, 0.5332283386400669, 0.4519108142444285, 0.40662831629925006, 0.42305576187259053, 0.22032895172816622, 0.5278715769330472, 0.43679486629948455, 0.743933429392776, 0.5269515041023835, 0.5008800654866953, 0.214168174561682, 0.44879088851457377, 0.683485355417811, 0.807753104897186, 0.42629475072919953, 0.8502951424821861, 0.17421175568219957, 0.25491371883486935, 0.7595861882737439, 0.6571724132942184, 0.7813188949129265, 0.5626906653340306, 0.8674288259883418, 0.6600514650598344, 0.4827749661719035, 0.5456147119159479, 0.39827550056677263, 0.27323823737433794, 0.695896529362927, 0.5048820477254727, 0.5422349097465021, 0.5610936746718964, 0.6571724132942184, 0.3088751107498249, 0.45428761266464013, 0.6604471727860799, 0.43371621376298963, 0.6171893197168647, 0.8100511550343341, 0.8100511550343341, 0.605832578461134, 0.5526475584669951, 0.4275055171336787, 0.8734720021260204, 0.8508295378350301, 0.5807723706867254, 0.8272749548927728, 0.2670652478909882, 0.7020144194675465, 0.4615566916191992, 0.7055847950248242, 0.43389869234556755, 0.6071692164257629, 0.3496825637352313, 0.23676491619791426, 0.7057755976874825, 0.15539001443149586, 0.6187538615870153, 0.8735882828904331, 0.30049486749739024, 0.23191705420611952, 0.8913917397916864, 0.4977157214618499, 0.16961113509580228, 0.8485494795219795, 0.4760032757956232, 0.5053843099270294, 0.2676015269871764, 0.3627664421236291, 0.15146266807038725, 0.7898179638281774, 0.6145296307645981, 0.3790380236797623, 0.3003532640340299, 0.6086112016774773, 0.39906793889171593, 0.8185832461647057, 0.6715802865662828, 0.8260225289794664, 0.6056902064850618, 0.400132762133902, 0.39471961640683584, 0.6449859309106076, 0.5637152910565628, 0.39949420960438964, 0.5490401551410112, 0.4398875418860128, 0.30916577334906253, 0.7093303227687476, 0.4562508424819209, 0.40444044759428516, 0.5773483646962835, 0.447777692034652, 0.4961542215384683, 0.32474312180562226, 0.21192693199409943, 0.9056903490933487, 0.5013816399998683, 0.758876109553896, 0.6364928148646596, 0.2952804752502578, 0.4748951900520853, 0.43679486629948455, 0.5479962315186364, 0.4728142838839701, 0.6343341418527783, 0.12248807650217919, 0.5052525886146573, 0.8281252124183194, 0.8930081609652758, 0.36283726088930296, 0.8098196742550625, 0.656477404357746, 0.193885049884708, 0.5269515041023835, 0.49858469647139786, 0.32780472036158087, 0.24927512797396847, 0.6148718578314069, 0.10691527318901187, 0.136775438340409, 0.8489192718114075, 0.2600203086082801, 0.8142007211296887, 0.5269515041023835, 0.7966615933629455, 0.5633234794197017, 0.767479452333631], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"volatile.acidity\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"volatile.acidity\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}, \"volatile.acidity_bad\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (ref)\", \"type\": \"scatter\", \"x\": [0.46, 0.32, 0.27, 0.6, 0.46, 0.66, 0.58, 0.21, 0.4, 0.41, 0.6, 0.21, 0.3, 0.32, 0.52, 0.37, 0.53, 1.13, 0.26, 1.33, 0.3, 0.31, 1.115, 0.19, 0.685, 0.76, 0.22, 0.69, 0.705, 0.3, 0.805, 0.34, 0.28, 0.23, 0.25, 0.28, 0.16, 0.2, 0.42, 0.25, 0.38, 0.28, 0.1, 0.365, 0.755, 0.26, 0.165, 0.17, 0.31, 0.44, 0.63, 0.305, 0.26, 0.5, 0.27, 0.47, 0.28, 0.51, 0.38, 0.41, 0.6, 0.25, 0.7, 0.21, 0.66, 0.22, 0.47, 0.64, 0.54, 0.17, 0.24, 0.37, 0.41, 0.29, 0.15, 0.31, 0.28, 0.18, 0.77, 0.31, 0.24, 0.28, 0.27, 0.48, 0.3, 0.54, 0.2, 0.52, 0.39, 0.34, 0.37, 0.26, 0.6, 0.41, 0.28, 0.27, 0.22, 0.28, 0.28, 0.28, 0.31, 0.39, 0.21, 0.32, 0.57, 0.41, 0.32, 0.35, 0.43, 0.2, 0.41, 0.15, 0.45, 0.14, 0.43, 0.5, 0.39, 0.25, 1.025, 0.28, 0.33, 0.57, 0.41, 0.35, 0.32, 0.44, 0.26, 0.765, 0.775, 0.28, 0.17, 0.935, 0.29, 0.25, 0.28, 0.34, 0.14, 0.32, 0.27, 0.69, 0.27, 0.27, 0.36, 0.29, 0.33, 0.45, 0.2, 0.21, 0.59, 0.38, 0.28, 0.68, 0.19, 0.56, 0.2, 0.87, 0.42, 0.21, 0.14, 0.45, 0.23, 0.68, 0.46, 0.31, 0.655, 0.25, 0.23, 0.32, 0.34, 0.25, 0.29, 0.23, 0.59, 0.37, 0.44, 0.48, 0.38, 0.3, 0.58, 0.34, 0.32, 1.33, 0.28, 0.33, 0.26, 0.29, 0.93, 0.34, 0.56, 0.29, 0.22, 0.275, 0.32, 0.615, 0.27, 0.755, 0.29, 0.25, 0.33, 0.17, 0.35, 0.5, 0.5, 0.73, 0.26, 0.31, 0.21, 0.35, 0.54, 0.19, 0.22, 0.21, 0.31, 0.25, 0.32, 0.42, 0.46, 0.475, 0.61, 0.42, 0.69, 0.19, 0.31, 0.26, 0.15, 0.38, 0.76, 0.24, 0.36, 0.695, 0.35, 0.25, 0.12, 0.23, 0.17, 0.3, 0.36, 0.26, 0.34, 0.29, 0.45, 0.34, 0.24, 0.27, 0.19, 0.37, 0.4, 0.26, 0.31, 0.52, 0.88, 0.29, 0.28, 0.835, 0.25, 0.345, 0.23, 0.62, 0.28, 0.39, 0.25, 0.41, 0.26, 0.25, 0.2, 0.22, 0.19, 0.2, 0.32, 0.725, 0.23, 0.67, 0.24, 0.32, 0.32, 0.42, 0.58, 0.32, 0.35, 0.415, 0.5, 0.64, 0.34, 0.66, 0.39, 0.29, 0.21, 0.23, 0.34, 0.265, 0.2, 0.29, 0.49, 0.43, 0.33, 0.54, 0.33, 0.695, 0.28, 0.58, 0.915, 0.18, 0.82, 0.14, 0.615, 0.24, 0.34, 0.39, 0.36, 0.39, 0.18, 0.37, 0.64, 0.27, 0.39, 0.32, 0.23, 0.47, 0.28, 0.46, 0.47, 0.25, 0.96, 0.41, 0.32, 0.31, 0.36, 0.25, 0.575, 0.28, 0.28, 0.45, 0.39, 0.24, 0.12, 0.63, 0.37, 0.5, 0.59, 0.42, 0.22, 0.24, 0.2, 0.775, 0.24, 0.61, 0.38, 0.3, 0.24, 0.46, 0.31, 0.52, 0.4, 0.5, 0.19], \"xaxis\": \"x\", \"y\": [0.7197707895473677, 0.05448058807241418, 0.5021256787650443, 0.4710854375480472, 0.7156076129280222, 0.7966690429773311, 0.7265425252145667, 0.16771266951545494, 0.610944103187451, 0.6324527530146118, 0.42180662537268765, 0.2598044700255929, 0.5503032830239416, 0.5632112185661304, 0.6840604465833231, 0.6224375641140001, 0.8071781895370533, 0.9515482366939344, 0.3994071349416132, 0.9677746238863042, 0.572587586261062, 0.7602674855798478, 0.861098734498427, 0.1386074727873, 0.6703360831713621, 0.8064003460928679, 0.3172728283240366, 0.8039094494444462, 0.9186426431335688, 0.6026275969807151, 0.8609701260317718, 0.3485833566260712, 0.3005246278528939, 0.2859113263741919, 0.4978204971029292, 0.5125675444128744, 0.4268860326359044, 0.11791793574572085, 0.440027850275134, 0.4938434408506086, 0.4933189622152446, 0.166194347192407, 0.30200278364192557, 0.6822425768461728, 0.8693180940701344, 0.24112389044610405, 0.43189370387303117, 0.284455178085937, 0.23793737479647703, 0.5535561322468214, 0.7900402576908969, 0.47373775892899717, 0.6055733033081183, 0.7462675017011632, 0.32245623572553406, 0.7612367841042231, 0.36308410170653527, 0.6103993963703384, 0.3965676277125745, 0.2230008284200371, 0.8480025164595866, 0.43585875500482685, 0.24095331994381775, 0.4030652094068704, 0.8951637220162157, 0.2782175630406618, 0.7337660836226194, 0.8352762102164887, 0.6223987562306759, 0.2928263700360406, 0.6563137004068428, 0.16155652477357085, 0.6364666355122575, 0.2186811050870735, 0.27206300237801306, 0.4358901152617537, 0.6136035252376228, 0.07900866299327158, 0.8522855318359817, 0.11906253414448076, 0.3466831105240652, 0.11265227152414181, 0.6302693732121377, 0.7168097665217413, 0.4796298258249143, 0.4476252306691143, 0.3612478268219491, 0.611861930499026, 0.15121036728507153, 0.5363393546692182, 0.16155652477357085, 0.441733396330222, 0.7834276811132227, 0.6364666355122575, 0.44873286860252337, 0.4948960601400133, 0.4172084246960842, 0.5055831714989107, 0.5269082808529498, 0.3737404408311804, 0.4491757516278906, 0.5266720849021, 0.2882430633103308, 0.6066213483726142, 0.83534933450756, 0.2509605867776752, 0.230738949997912, 0.25680675940048736, 0.6858999083789018, 0.27626495444752697, 0.35158671089680515, 0.311480105980391, 0.5950329577300569, 0.4196263877039489, 0.3672198477254309, 0.5488429300958864, 0.6273126624389191, 0.0990306898864649, 0.935036100419004, 0.5556828679884147, 0.6003916802566726, 0.1337843055401957, 0.6898191889393818, 0.46604488826349566, 0.6668872608045229, 0.5998672378660981, 0.14712454771937833, 0.8558065212045691, 0.883276495704891, 0.5544329747085402, 0.38398791005853006, 0.8623310715459079, 0.4482795971615686, 0.4767821080964978, 0.6451659669426603, 0.5099786295438409, 0.11454219273407718, 0.5691587732433696, 0.2398813672346335, 0.8592796956842923, 0.38133093816728936, 0.4754945767078651, 0.2673740541283356, 0.43092180164799054, 0.5981491184574936, 0.7512253043619477, 0.20474988026063612, 0.12337786436138054, 0.6965484670033051, 0.4642254518352117, 0.29034758521725457, 0.7912282271603185, 0.1364389858241727, 0.5326323768611896, 0.3938848007926149, 0.886984727126295, 0.5955398539691413, 0.3667393936023857, 0.35129461810907203, 0.578130474122496, 0.1952086434691429, 0.6982941690158907, 0.6159300986783536, 0.6650580695700093, 0.8007006003287879, 0.13750802167619447, 0.47121416359091395, 0.5691587732433696, 0.5295784007050042, 0.4938434408506086, 0.4240508430342457, 0.1531205555636086, 0.7965770364050346, 0.4829168465516456, 0.6333246955344933, 0.38682769986244625, 0.5589353890471914, 0.30965836575156913, 0.6133571507425741, 0.5363393546692182, 0.5474540697204298, 0.9680074395956593, 0.29703705077451537, 0.7566858385458134, 0.451244026180727, 0.6224939697452743, 0.9340693900855184, 0.1254375450851024, 0.770680513376406, 0.7273231109206828, 0.410671569380914, 0.19928392436820586, 0.44743622108127745, 0.4991477681643879, 0.5443787589855091, 0.826082779912576, 0.5642536294664222, 0.6762559922350657, 0.39283078357423706, 0.3074847569358159, 0.40732461839200396, 0.5614584986504241, 0.5614584986504241, 0.575628870274347, 0.1938881144566701, 0.6480440770440566, 0.23946299348505806, 0.6110142157087575, 0.32489046344192996, 0.127020290619695, 0.28948900574123104, 0.27970970921902805, 0.5179212029104148, 0.579807192000203, 0.5695619245525361, 0.7471497674522103, 0.6761943115269239, 0.6052803835931642, 0.9048996801452402, 0.632953623191418, 0.7849920634816455, 0.12946409768986655, 0.3899257470968539, 0.37735505673750047, 0.27206300237801306, 0.6356505945299911, 0.9000798247851504, 0.5852448485124296, 0.3537739535016634, 0.8589709040748648, 0.5105041430354158, 0.4760479563081992, 0.3915586115462193, 0.4344526143297297, 0.04825794875232026, 0.25106204840173363, 0.5352062615150248, 0.2084678736174792, 0.5588772074146924, 0.42656597432725707, 0.3395528272139201, 0.5154796814541086, 0.30312695461308037, 0.4684625037801391, 0.13140485141127656, 0.37575572516499556, 0.7087902803012941, 0.22740617784346517, 0.7932370230268412, 0.6977827466507267, 0.8687065743771458, 0.3532210556477622, 0.3005246278528939, 0.8817461779308045, 0.5897758288136841, 0.5117334773877459, 0.2267712913026929, 0.7462523759498982, 0.5055831714989107, 0.6276122794572256, 0.34766968675436505, 0.563322001169588, 0.4035281086421867, 0.44827723495654004, 0.7588644006503809, 0.17560197311170134, 0.2736156405730563, 0.5646478519097824, 0.12788772013874206, 0.8127608550985441, 0.35130933230290007, 0.8842329534318195, 0.5671758377024384, 0.508518787579709, 0.4735654621913231, 0.6614347321502836, 0.7032589073748752, 0.418601168771625, 0.40262233345395115, 0.38045938978299354, 0.6221728234115828, 0.6769388667590319, 0.825791915264051, 0.8036522945246104, 0.5350776523934957, 0.5038683203672731, 0.4187790963850706, 0.3942708224564714, 0.36585282612655, 0.42973128126448334, 0.1395024853671747, 0.36909778672938764, 0.5126700875045708, 0.31128511290513083, 0.5841805470690385, 0.42932394036482613, 0.5168725346003686, 0.9331527243268325, 0.5090935678835011, 0.848083892739094, 0.7288594688776423, 0.23463814542978878, 0.9073343486287574, 0.5445649372592127, 0.8030108083542629, 0.30698149193503155, 0.47724620771884374, 0.49565431290071005, 0.29179072192325783, 0.53941953634433, 0.32642767658125227, 0.5714063949384225, 0.6769388667590319, 0.48314991346809855, 0.3838692085325581, 0.7654355578102645, 0.6807995217458978, 0.7803105409218809, 0.4971816769068883, 0.5662837862370104, 0.32557907866588853, 0.4059739580227363, 0.8621668957327787, 0.4863555612469991, 0.44913520001249685, 0.5044088987161788, 0.018560580499064172, 0.17397747102053363, 0.8203404366189, 0.531551035274026, 0.3951880410340851, 0.6710839680909022, 0.7545393605546251, 0.25029771644034415, 0.31651464458218903, 0.7900402576908969, 0.7649542174153934, 0.6282404390050247, 0.5124469561170844, 0.7501741577575001, 0.3717170374651112, 0.5479204837841629, 0.1799627586960565, 0.8716748635647116, 0.4700369344869263, 0.7044722268129955, 0.7597806244765397, 0.4570971226262448, 0.3688130253756654, 0.5854022956087224, 0.6067015953642416, 0.6092966434658947, 0.5713009051869427, 0.15316343939585397, 0.31191498773739224], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [0.24, 0.19, 0.33, 0.1, 0.33, 0.36, 0.37, 0.19, 0.23, 0.27, 0.19, 0.57, 0.12, 0.26, 0.25, 0.37, 0.18, 0.685, 0.335, 0.2, 0.26, 0.4, 0.21, 0.25, 0.3, 0.24, 0.3, 0.43, 0.145, 0.66, 0.27, 0.48, 0.24, 0.17, 0.24, 0.2, 0.23, 0.34, 0.44, 0.26, 0.2, 0.08, 0.23, 0.22, 0.24, 0.15, 0.34, 0.47, 0.27, 0.43, 0.15, 0.35, 0.19, 0.19, 0.27, 0.27, 0.44, 0.21, 0.51, 0.4, 0.44, 0.65, 0.22, 0.14, 0.38, 0.6, 0.28, 0.21, 0.31, 0.21, 0.32, 0.37, 0.21, 0.3, 0.37, 0.22, 0.35, 0.24, 0.635, 0.36, 0.21, 0.22, 0.18, 0.27, 0.4, 0.15, 0.18, 0.45, 0.33, 0.4, 0.31, 0.39, 0.17, 0.16, 0.15, 0.35, 0.24, 0.29, 0.25, 0.18, 0.14, 0.25, 0.44, 0.27, 0.24, 0.17, 0.38, 0.11, 0.22, 0.855, 0.27, 0.33, 0.31, 0.25, 0.28, 0.48, 0.34, 0.13, 0.23, 0.36, 0.18, 0.26, 0.27, 0.18, 0.53, 0.51, 0.51, 0.3, 0.2, 0.66, 0.17, 0.455, 0.22, 0.38, 0.25, 0.29, 0.43, 0.855, 0.42, 0.46, 0.18, 0.15, 0.23, 0.24, 0.4, 0.23, 0.23, 0.2, 0.46, 0.13, 0.15, 0.5, 0.23, 0.3, 0.23, 0.31, 0.2, 0.34, 0.22, 0.21, 0.27, 0.63, 0.125, 0.51, 0.38, 0.21, 0.32, 0.23, 0.27, 0.44, 0.44, 0.34, 0.15, 0.23, 0.41, 0.69, 0.53, 0.17, 0.39, 0.635, 0.34, 0.27, 0.2, 0.3, 0.32, 0.235, 0.62, 0.18, 0.28, 0.15, 0.21, 0.66, 0.55, 0.55, 0.59, 0.28, 0.28, 0.23, 0.26, 0.19, 0.16, 0.32, 0.28, 0.62, 0.27, 0.34, 0.24, 0.29, 0.19, 0.36, 0.23, 0.25, 0.28, 0.27, 0.26, 0.23, 0.21, 0.2, 0.18, 0.44, 0.2, 0.21, 0.29, 0.21, 0.27, 0.17, 0.26, 0.17, 0.24, 0.15, 0.32, 0.36, 0.76, 0.28, 0.28, 0.21, 0.15, 0.19, 0.17, 0.29, 0.26, 0.23, 0.21, 0.44, 0.745, 0.27, 0.26, 0.25, 0.29, 0.29, 0.22, 0.19, 0.47, 0.31, 0.4, 0.21, 0.43, 0.2, 0.21, 0.3, 0.105, 0.27, 0.19, 0.34, 0.29, 0.3, 0.43, 0.4, 0.53, 0.3, 0.17, 0.67, 0.28, 0.17, 0.34, 0.25, 0.18, 0.3, 0.66, 0.39, 0.29, 0.24, 0.11, 0.28, 0.36, 0.29, 0.35, 0.2, 0.56, 0.2, 0.18, 0.37, 0.28, 0.39, 0.29, 0.28, 0.6, 0.27, 0.18, 0.2, 0.58, 0.25, 0.43, 0.2, 0.16, 0.36, 0.21, 0.14, 0.25, 0.36, 0.38, 0.24, 0.395, 0.18, 0.16, 0.27, 0.17, 0.32, 0.23, 0.25, 0.3, 0.22, 0.22, 0.41, 0.21, 0.65, 0.24, 0.27, 0.3, 0.3, 0.29, 0.27, 0.26, 0.255, 0.19, 0.19, 0.2, 0.66, 0.25, 0.18, 0.35, 0.28, 0.25, 0.18, 0.53, 0.28, 0.18, 1.0, 0.58, 0.25, 0.16, 0.16, 0.18, 0.18, 0.27, 0.2, 0.36, 0.3, 0.18, 0.48, 0.4, 0.26, 0.29, 0.39, 0.63, 0.26, 0.3, 0.15, 0.31, 0.28, 0.275, 0.19, 0.24, 0.71, 0.64, 0.22, 0.21, 0.83, 0.22, 0.43, 0.49, 0.25, 0.58, 0.34, 0.34, 0.23, 0.54, 0.4, 0.28, 0.25, 0.44, 0.28, 0.3, 0.35, 0.21, 0.31, 0.22, 0.45, 0.27, 0.58, 0.62, 0.62, 0.58, 0.28, 0.25, 0.25, 0.25, 0.34, 0.41, 0.44, 0.295, 0.33, 0.28, 0.16, 0.36, 0.25, 0.37, 0.23, 0.46, 0.42, 0.18, 0.22, 0.31, 0.15, 0.23, 0.26, 0.2, 0.16, 0.45, 0.32, 0.35, 0.33, 0.25, 0.16, 0.24, 0.46, 0.76, 0.68, 0.3, 0.31, 0.31, 0.21, 0.2, 0.42, 0.21, 0.23, 0.29, 0.23, 0.24, 0.12, 0.25, 0.32, 0.315, 0.16, 0.18, 0.37, 0.17, 0.6, 0.17, 0.15, 0.45, 0.4, 0.35, 0.27, 0.14, 0.67, 0.33, 0.19, 0.26, 0.4, 0.66, 0.3, 0.18, 0.23, 0.4, 0.115, 0.3, 0.28, 0.21, 0.2, 0.36, 0.18, 0.22, 0.26, 0.36, 0.28, 0.32, 0.23, 0.37, 0.41, 0.23, 0.58, 0.2, 0.18, 0.305, 0.2, 0.16, 0.21, 0.3, 0.18, 0.54, 0.31, 0.31, 0.23, 0.34, 0.23, 0.26, 0.29, 0.24, 0.3, 0.19, 0.26, 0.2, 0.38, 0.35, 0.37, 0.24, 0.52, 0.22, 0.53, 0.2, 0.29, 0.31, 0.13, 0.63, 0.2, 0.37, 0.26, 0.19, 0.37, 0.4, 0.36, 0.28, 0.29, 0.16, 0.545, 0.18, 0.38, 0.18, 0.32, 0.24, 0.26, 0.26, 0.18, 0.28, 0.29, 0.38, 0.14, 0.46, 0.28, 0.14, 0.44, 0.18, 0.23, 0.17, 0.65, 0.18, 0.43, 0.29, 0.17, 0.3, 0.22, 0.34, 0.41, 0.42, 0.3, 0.23, 0.16, 0.27, 0.28, 0.2, 0.16, 0.2, 0.36, 0.2, 0.23, 0.17, 0.26, 0.35, 0.27, 0.26, 0.32, 0.19, 0.51, 0.17, 0.63, 0.53, 0.26, 0.1, 0.29, 0.49, 0.32, 0.27, 0.26, 0.44, 0.24, 0.34, 0.59, 0.32, 0.42, 0.16, 0.13, 0.24, 0.24, 0.3, 0.34, 0.22, 0.13, 0.21, 0.19, 0.29, 0.43, 0.34, 0.825, 0.31, 0.3, 0.125, 0.29, 0.37, 0.755, 0.19, 0.25, 0.31, 0.55, 0.32, 0.26, 0.28, 0.37, 0.34, 0.19, 0.17, 0.23, 0.19, 0.36, 0.31, 0.18, 0.32, 0.34, 0.23, 0.35, 0.13, 0.67, 0.62, 0.24, 0.18], \"xaxis\": \"x\", \"y\": [0.18439386755371057, 0.5750868907731637, 0.1132172353536568, 0.19850047615697952, 0.6950004168934912, 0.41826441672946313, 0.040828937665112974, 0.2145583871630251, 0.09143093017991866, 0.10013996234885614, 0.3658834999306372, 0.587897812361327, 0.23563705889496211, 0.5289998061994394, 0.5981734696485812, 0.5956194363709464, 0.11295199838815062, 0.6349332021584286, 0.09356782907078887, 0.0672754654033908, 0.3541579814831264, 0.11781588709523827, 0.3295981493457443, 0.23443288181779365, 0.13830133810679424, 0.5122546205578999, 0.03626449638205209, 0.32057959349203036, 0.3955164844050859, 0.21320459763992916, 0.08620177311633537, 0.4132497936565127, 0.19514157099220286, 0.028148892894647393, 0.03728071159582558, 0.20213762816504022, 0.39088790332760825, 0.10566618212719892, 0.11466232649727714, 0.09544364959788487, 0.07351553674018241, 0.3657542344632553, 0.05859665738698361, 0.43634835962676355, 0.4827032077898804, 0.516310366273556, 0.6480037931050455, 0.21122004543372697, 0.030344760075157406, 0.22750344576024595, 0.18673438423788624, 0.5460909738859347, 0.0666291073587214, 0.320234954276134, 0.515425573770442, 0.5751179393061847, 0.3262180383913996, 0.12192585741802231, 0.6165939755266235, 0.09365914315081003, 0.44259853952477324, 0.31958523161407537, 0.09228899111547839, 0.22815273642701062, 0.5282447951108347, 0.7777719169155834, 0.13834506443323813, 0.29425092810710396, 0.5300870647699181, 0.031947521718024174, 0.1108646816717751, 0.053339747820140615, 0.14466174791529418, 0.25697560969337485, 0.3383868137798065, 0.30803904997837983, 0.03434255320493995, 0.08689109251212201, 0.46044782253877736, 0.0973761441498977, 0.3449058470623745, 0.024212367984770777, 0.11665042079727428, 0.3333970234137619, 0.1495417879159372, 0.0679784404121434, 0.2360052425084116, 0.39147703437781534, 0.04428683932015287, 0.5381556738404795, 0.4357341587922019, 0.11843845992675284, 0.28107964630818494, 0.06989794698232743, 0.2658605825653322, 0.22408104406272966, 0.15519213452661884, 0.09873339188795927, 0.10739713799337769, 0.4712507279726723, 0.31257930793611366, 0.6259141532505736, 0.1651629894813923, 0.13024327386797574, 0.08242409751896962, 0.55355901104019, 0.11256152515999429, 0.22124325125588817, 0.05838775174278421, 0.6734770756819889, 0.06919042490492266, 0.5773286546676725, 0.5693181878572973, 0.12726917141891614, 0.27983888222674136, 0.15690954109554833, 0.18593824584442387, 0.05432525584274117, 0.33273366741371935, 0.12435295831370408, 0.48112847828662497, 0.2959384652215836, 0.5042039768350125, 0.3749869638443927, 0.7258627386781167, 0.4806866421912115, 0.6234335830956541, 0.4191951896523489, 0.20821728825178332, 0.6343085651912675, 0.27674577061671146, 0.02140654255666985, 0.42849246998341506, 0.1817444030106703, 0.4551538855951942, 0.05087080041524106, 0.516641204200833, 0.6810720245435042, 0.08151744899857294, 0.4475169494323581, 0.03995706953508171, 0.2181819033834006, 0.20372897255157485, 0.24305701296248816, 0.5381556738404795, 0.2358485729609252, 0.051323642447754336, 0.1913631294907303, 0.32154631204965056, 0.31229802093755377, 0.3917329141436472, 0.39462053822053156, 0.3680669306910641, 0.5017894292511481, 0.32120711190509066, 0.0768019282386515, 0.1168769044932052, 0.31545143431826594, 0.12007957373947853, 0.08354361700756141, 0.2180731800932174, 0.7653011157176768, 0.05076221583963347, 0.11739077279846111, 0.3639458403519926, 0.4815918747301601, 0.35998732468747585, 0.457353694020342, 0.5520498791697908, 0.22168281241722143, 0.2132287846887433, 0.4763394582576197, 0.3040153802820409, 0.20749766415549342, 0.3316810644107503, 0.8126297477835096, 0.5749367295182395, 0.27274039590582944, 0.2685808245693546, 0.5172108675362206, 0.33506587713796443, 0.09616672688355288, 0.041108213935392324, 0.10548050716105373, 0.5016695616404938, 0.20022874051447226, 0.14220640128276774, 0.23772630779738468, 0.19606080251004787, 0.2603188495268066, 0.18846597668723208, 0.19827111133563302, 0.261548791893628, 0.4140325207077993, 0.8134796325151183, 0.12265695643958285, 0.6311167068993262, 0.13481820177301163, 0.0932384579037443, 0.14050160114126486, 0.2562249115981724, 0.08547750670655718, 0.08643201081848362, 0.19981675431015722, 0.31390222338706264, 0.06221739913672386, 0.06996303880871468, 0.30029370289300306, 0.4306817897420764, 0.6595343859760441, 0.2839408857911616, 0.20468539219890003, 0.1130196126722065, 0.2360017176902124, 0.13187147729288817, 0.42313120297864704, 0.06964897436687001, 0.1624399718171824, 0.17200815643270417, 0.07333105637055992, 0.2440137653363641, 0.4900110333069776, 0.3085554157386313, 0.03480496731142946, 0.12148031785507996, 0.15002971926037112, 0.5314247042003052, 0.2758453007685677, 0.2151852748992088, 0.2658605825653322, 0.29911225563077193, 0.6594110243744711, 0.49869782335001445, 0.16788254706683048, 0.11816213334465087, 0.08230909248122409, 0.13653212507346946, 0.25639170942272826, 0.06562233405876228, 0.23311900627036541, 0.3756616197417655, 0.46674395287949066, 0.3092684534350997, 0.8337319641197457, 0.8331457111467163, 0.2591056156836542, 0.4778687671024334, 0.2542440524586721, 0.5361036306539362, 0.07073721340803463, 0.4731688813159418, 0.5755848065786346, 0.356689463387698, 0.14225616860197343, 0.21837916002376445, 0.14466174791529418, 0.29899643271856946, 0.4757427727983842, 0.08126799884203029, 0.1296501822378736, 0.3286954654423938, 0.08620177311633537, 0.13855855420831553, 0.05543377339452393, 0.11917834098009661, 0.2613621884509647, 0.11269900223777074, 0.08429051026621415, 0.3393961441870107, 0.07031960314855146, 0.11356777592095357, 0.4853279864284006, 0.1279289285514792, 0.0584572339054259, 0.08612988585012649, 0.3472440907423937, 0.1248029959061332, 0.07502335399434323, 0.19827111133563302, 0.3424151534036639, 0.3065175956815872, 0.13808860398564737, 0.058092197534895806, 0.04082786106581715, 0.1602592849246841, 0.09156161599234125, 0.5036030690663805, 0.2640411824475748, 0.6468038092930676, 0.07201805208597656, 0.22470230804277058, 0.1334773721572423, 0.04847889440667685, 0.2685808245693546, 0.10911308148570098, 0.6764508967260475, 0.6280060594576413, 0.36761958218269275, 0.16019930342079847, 0.17605308658107655, 0.14078981831089854, 0.2384997092801764, 0.13117402490907393, 0.12818959986091483, 0.4161925244315118, 0.12435295831370408, 0.09814942480303201, 0.05480698563416486, 0.3746187330143109, 0.41092354232892336, 0.507894749900129, 0.5137929421583434, 0.08293523366016065, 0.2964416548030494, 0.15236141109070434, 0.4396941021426354, 0.41893931094950754, 0.09113953260801844, 0.10967473999240707, 0.055732078845942, 0.05640314085190745, 0.06176263301115803, 0.06427139521062619, 0.20386133178572885, 0.21597661143113533, 0.7486409492386699, 0.2610715902497083, 0.09465277491899493, 0.5556171757583562, 0.137718889647652, 0.1978940751503777, 0.08472590699531857, 0.356262641598029, 0.14596950445002987, 0.13865818299932142, 0.3088915816821678, 0.11516321289421916, 0.16121169033174265, 0.40573483691789825, 0.34308606282264, 0.36300204724896845, 0.17193414756867276, 0.035926383178341514, 0.34536882843285344, 0.4400180463892147, 0.5165194668234709, 0.23319834124303085, 0.9637923675569924, 0.2635599134550337, 0.6259141532505736, 0.12324962258280003, 0.1256037712827487, 0.1248029959061332, 0.11665042079727428, 0.29081136443782263, 0.12993062945549005, 0.20959981847797426, 0.12385816607190492, 0.16931651488884025, 0.2468284110987674, 0.6181879252747016, 0.3509541008179864, 0.08619429866610873, 0.09537770951135394, 0.8204393830764495, 0.2493836920976743, 0.10367142046182065, 0.11516383353466464, 0.07169627826225977, 0.5400384130096556, 0.2709141565803237, 0.16809050322974173, 0.3421981324687273, 0.812724325423183, 0.1326589750154965, 0.054670132935181304, 0.055346153509382656, 0.8039442695404772, 0.3276168958360183, 0.6561718697940482, 0.6214102617950452, 0.3046829516703813, 0.7853649284745584, 0.7303620793003476, 0.6719087507962026, 0.16000678121984613, 0.579612101366232, 0.6347749924714103, 0.41894393066564606, 0.06936532322770372, 0.28322834609079706, 0.343263893078516, 0.4450860003239352, 0.3090838478611311, 0.408095736797927, 0.11529682880263803, 0.13359771811640497, 0.2417229185475579, 0.10092265889692065, 0.8181934133883563, 0.3777834313813965, 0.8273808576462511, 0.18439353202429143, 0.5148786056082297, 0.11287077888712382, 0.16015059460472458, 0.29672938182784603, 0.36944561074938853, 0.2505850522824452, 0.8467591712977676, 0.3840267097226593, 0.261779448872241, 0.1645479955558209, 0.14631295673285594, 0.4248523287309329, 0.09222807982804315, 0.2121484308544801, 0.33273366741371935, 0.5470626312455473, 0.8294144697045585, 0.25206662215500397, 0.15998368749433245, 0.548322128117227, 0.3917329141436472, 0.15981565308588508, 0.23631147082452741, 0.21082920466209698, 0.1871387197916503, 0.24774693401855818, 0.1913242313933492, 0.16437448769677154, 0.07582203648947516, 0.032541140295091364, 0.06311143057978008, 0.5009235508757715, 0.12343879567504301, 0.445735807756371, 0.40322837553658053, 0.09397553936597514, 0.1598391281143201, 0.26702494168661406, 0.19782301216908982, 0.06831823449824892, 0.5451167746582685, 0.20142160156100697, 0.25747632252511843, 0.4257317671215596, 0.5062318064185062, 0.10278357133077332, 0.10857266292312517, 0.06223864817381186, 0.11377411494697365, 0.14082424186384768, 0.2589321903149734, 0.31776639873426016, 0.07983414941561229, 0.30174211068680845, 0.42532907678292176, 0.23734670470511587, 0.2862296469110084, 0.24790288035387664, 0.5526146374040077, 0.20425399436950087, 0.5166825128498294, 0.12415322942140417, 0.5310696157212036, 0.3866387435262121, 0.14313186082947948, 0.31648660326859934, 0.026792916001305622, 0.7856428374245099, 0.42383310375799566, 0.5944566396871084, 0.6256605001243821, 0.08813642250468567, 0.03544811528140901, 0.06935406654889886, 0.15751976448865512, 0.22608551288474832, 0.3127311228465576, 0.1409438166611655, 0.3285615524533705, 0.3591330499592894, 0.47964497307801546, 0.7143146030302826, 0.14223944449319303, 0.06929054967731618, 0.32120711190509066, 0.16913647442041335, 0.707286257884667, 0.3230684446475647, 0.7616845263358343, 0.4104900542879092, 0.10053249234255524, 0.1106599594415556, 0.1543174595222413, 0.46003879185641183, 0.3811350878514418, 0.07185070571861518, 0.23882593985771994, 0.5344976262521839, 0.11031385635331636, 0.09610989844306939, 0.4955559099445003, 0.07845190603324759, 0.30697262074812925, 0.12767551958037127, 0.4375661224395835, 0.07737023387634634, 0.15307682457740834, 0.05694427046787409, 0.09028836937410878, 0.4011292297732457, 0.6186146927451245, 0.11561676905211238, 0.0993047499370594, 0.08102401279833105, 0.8100206966555492, 0.10768932514586738, 0.15386113005635593, 0.4026560765644126, 0.045535707525545144, 0.08229583319403, 0.08227601457953415, 0.8241544781987433, 0.0759900855540333, 0.5147505197509459, 0.11103147778198663, 0.42144961755966015, 0.24880465403270857, 0.3112403223054312, 0.3282460941643247, 0.28312386083977936, 0.2865521931047814, 0.16537364909659502, 0.4284132019637321, 0.34116073112729894, 0.051142721309942685, 0.10794707492381372, 0.1108646816717751, 0.29201805921023904, 0.07365131996157204, 0.36851051207096197, 0.2556143611338999, 0.07392456180697715, 0.045535707525545144, 0.15025986810093994, 0.4395989822566938, 0.19636656988846957, 0.21018464628148859, 0.15085686628779282, 0.3429118439192298, 0.16104008564300487, 0.2055862423584408, 0.18673310211333727, 0.5528531989583015, 0.20219789553586287, 0.5807830339134155, 0.6112381610839525, 0.07515362639458067, 0.5722084734915175, 0.3654892991508686, 0.1991057466826236, 0.4912569401667811, 0.05850610073101081, 0.3077884117234785, 0.17038242498240874, 0.14066607718466684, 0.10248584652416493, 0.4022873718442217, 0.07205214632436985, 0.35142291824287475, 0.10941760034103376, 0.06679271580157364, 0.05675388891699207, 0.058987921856350156, 0.3660303223369904, 0.28790374422385034, 0.4158290962648631, 0.40710291595796666, 0.09934102670994882, 0.06362846635195196, 0.30921476208988685, 0.23242198019285765, 0.055541210656895434, 0.5297663836663529, 0.10744632778983743, 0.18410212910939194, 0.17721960751489196, 0.1962664672709783, 0.1617648996714035, 0.10584426414108294, 0.5203501665477333, 0.07365131996157204, 0.31578819840495265, 0.35364190165315845, 0.1707951928721818, 0.41655733121321636, 0.15801546378512366, 0.7568436608419439, 0.22368578646300386, 0.0609449253562836, 0.2225096762928218, 0.18587673368692093, 0.05559101133196209, 0.569598540521716, 0.08073228430722412, 0.15724041301590164, 0.12879141548479, 0.4306817897420764, 0.17998791969802397, 0.41280880088413996, 0.5723062335690389, 0.6457404130724687, 0.10420061808672998, 0.12564769853034463, 0.21795029564941848, 0.4720930498870375, 0.11304202998506685, 0.545112257205237, 0.14852188644910969, 0.17217029085021085, 0.336250902618187, 0.48671482860553816, 0.5093433434984792, 0.35847801144896685, 0.3008706318705062, 0.18494609259573758, 0.4199330463236065, 0.04162287990776414, 0.2633909944023186, 0.4252182303976608, 0.4684623303117058, 0.1925553058603695, 0.09610989844306939, 0.09129843496680234, 0.3302708189676917, 0.4199330463236065, 0.11927294568859859, 0.4864154015695107, 0.06472081497616611, 0.6387929002666255, 0.37932906694235924, 0.093713747684541, 0.20627971812824875], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (curr)\", \"type\": \"scatter\", \"x\": [0.365, 0.62, 0.27, 0.18, 0.29, 0.28, 0.43, 0.765, 0.785, 0.6, 0.3, 0.19, 0.31, 0.25, 0.29, 0.21, 0.31, 0.38, 0.35, 0.45, 0.28, 0.25, 0.34, 0.41, 0.22, 0.29, 0.41, 0.41, 0.21, 0.2, 0.27, 0.3, 0.73, 0.6, 0.18, 0.19, 0.98, 0.52, 0.12, 0.36, 0.485, 0.58, 0.34, 0.25, 0.43, 0.51, 0.54, 0.6, 0.28, 0.2, 0.25, 0.26, 0.31, 0.64, 0.705, 0.37, 0.61, 0.645, 0.31, 0.42, 0.645, 0.45, 0.27, 0.29, 0.39, 0.91, 0.46, 0.7, 0.775, 0.55, 0.57, 0.34, 0.335, 0.685, 0.24, 0.25, 0.27, 0.31, 0.47, 0.39, 0.13, 0.56, 0.29, 0.5, 0.2, 0.37, 0.16, 0.25, 0.25, 0.5, 0.23, 0.345, 0.27, 0.3, 0.58, 1.58, 0.29, 0.62, 0.64, 0.24, 0.35, 0.42, 0.21, 0.52, 0.33, 0.51, 0.62, 0.5, 0.33, 0.33, 0.6, 0.31, 0.63, 0.3, 0.21, 0.27, 0.24, 0.41, 0.27, 0.56, 0.27, 0.24, 0.61, 0.5, 0.695, 0.65, 0.16, 0.23, 0.695, 0.44, 0.28, 0.33, 0.3, 0.35, 0.34, 0.39, 0.25, 0.66, 0.585, 0.315, 0.29, 0.2, 0.22, 0.18, 0.59, 0.34, 0.21, 0.4, 0.52, 0.37, 0.5, 0.31, 0.43, 0.24, 0.3, 0.31, 0.22, 0.26, 0.28, 0.55, 0.635, 0.32, 0.14, 0.36, 0.59, 0.31, 0.3, 0.14, 0.21, 0.23, 0.31, 0.26, 0.28, 0.17, 0.35, 0.54, 0.39, 0.39, 0.24, 0.15, 0.16, 0.215, 0.38, 0.34, 0.26, 0.3, 0.29, 0.27, 0.28, 0.24, 0.66, 0.25, 0.25, 0.28, 0.4, 0.38, 0.21, 0.3, 0.18, 0.45, 0.67, 0.36, 0.34, 0.24, 0.27, 0.21, 0.31, 0.32, 0.5, 0.31, 0.34, 0.33, 0.48, 0.2, 0.28, 0.39, 0.29, 0.34, 0.34, 0.24, 0.4, 0.27, 0.33, 0.28, 0.18, 0.41, 0.41, 0.27, 0.52, 0.345, 0.33, 0.23, 0.22, 0.23, 0.745, 0.35, 0.12, 0.22, 0.3, 0.22, 0.44, 0.65, 0.21, 0.12, 0.29, 0.32, 0.17, 0.14, 0.4, 0.41, 0.42, 0.44, 0.3, 0.24, 0.29, 0.23, 0.12, 0.3, 0.34, 0.45, 0.46, 0.2, 0.18, 0.18, 0.26, 0.28, 0.47, 0.23, 0.235, 0.33, 0.28, 0.705, 0.16, 0.31, 0.16, 0.28, 0.33, 0.45, 0.675, 0.37, 0.78, 0.28, 0.19, 0.6, 0.62, 0.14, 0.31, 0.555, 0.21, 0.45, 0.26, 0.6, 0.4, 0.62, 0.3, 0.41, 0.41, 0.3, 0.25, 0.59, 0.24, 0.32, 0.25, 0.26, 0.44, 0.475, 0.35, 0.24, 0.28, 0.23, 0.4, 0.27, 0.26, 0.24, 0.27, 0.26, 0.31, 0.26, 0.33, 0.595, 0.26, 0.39, 0.26, 0.23, 0.875, 0.35, 0.33, 0.45, 0.3, 0.335, 0.9, 0.24, 0.19, 0.16, 0.55, 0.21, 0.15, 0.63, 0.22, 0.49, 0.32, 0.44, 0.48, 0.83, 0.61, 0.2, 0.4, 0.365, 0.22, 0.15, 0.23, 0.26], \"xaxis\": \"x2\", \"y\": [0.18579927887031134, 0.9274202256360236, 0.2569067617886446, 0.17851375722123963, 0.43011516789686843, 0.3951880410340851, 0.35333307802371594, 0.854899199395705, 0.7749695319329993, 0.7150752736216004, 0.5793836726576811, 0.17187478758168062, 0.503776006633781, 0.6517104478925241, 0.5321166645488455, 0.4291031613352281, 0.6295132227815239, 0.446367751604861, 0.12978626497489776, 0.578130474122496, 0.1303225049324246, 0.4589423036505589, 0.6028673022099313, 0.6724998803801079, 0.055171077290688375, 0.28900585249094113, 0.5807441942986169, 0.6324527530146118, 0.32780881811994433, 0.4437792729685527, 0.47375733914823626, 0.6755390392614542, 0.8494338455743565, 0.8432302027568838, 0.3962269303969661, 0.36574887203466033, 0.9780529644634413, 0.6757083557066426, 0.43212531492562845, 0.6428319532862445, 0.2244465690609686, 0.6759712108962084, 0.300575337785698, 0.4848467547623382, 0.24353241802821812, 0.6165640897352094, 0.801889943514816, 0.6831580296641933, 0.4684052737322374, 0.07309555507266852, 0.17397747102053363, 0.548208100621717, 0.16948307959681597, 0.5287139706981401, 0.8097217619362252, 0.48186532860504816, 0.7044722268129955, 0.5458559966555334, 0.6067015953642416, 0.5767206748937392, 0.5416109283549078, 0.7766135747357961, 0.6371580804073698, 0.3290646799011723, 0.53941953634433, 0.7444876216695655, 0.27658524567301757, 0.8518717737266248, 0.685064206005921, 0.7994946846943811, 0.6254668451144636, 0.29898447003196504, 0.36566585814722175, 0.8260679099411251, 0.265003746926769, 0.18277705216857454, 0.6401445853260315, 0.2878944788643705, 0.7379395090268356, 0.6578861964269485, 0.3048731186933995, 0.6479177870210828, 0.5479007895539181, 0.8109237991420157, 0.4555798348891207, 0.35159410271621183, 0.6741813074403022, 0.40366163192193316, 0.3797333752177462, 0.42326140605337403, 0.49450075158901585, 0.7027754368270075, 0.31556666432085356, 0.5737052492708005, 0.5594846166878963, 0.9879213229528466, 0.23907110553933086, 0.7604887601700165, 0.906894853259191, 0.49150798334893764, 0.6693239074263375, 0.635181004157038, 0.4291031613352281, 0.6805197940362542, 0.8579270215873258, 0.42231028799440284, 0.7973836574204367, 0.6209099995125147, 0.617932351579841, 0.5867531689564582, 0.8217385626893267, 0.5766058512754557, 0.6085190813519714, 0.6488649586424557, 0.19466062481522506, 0.4062994677131635, 0.31500574198466447, 0.6106996692323751, 0.48314991346809855, 0.4300926711133176, 0.4623912750166579, 0.18141675383529432, 0.7404949196358439, 0.7960551628311661, 0.6696955469146251, 0.7471897031921468, 0.15222801432328747, 0.4782875749995391, 0.6696955469146251, 0.4617114467660769, 0.0374236133971757, 0.34638250956587036, 0.5737052492708005, 0.35412183815676124, 0.5342599897609015, 0.6273126624389191, 0.1819914526651868, 0.6450640502472667, 0.7576359910572065, 0.6363669366758954, 0.35783776888428775, 0.4555798348891207, 0.2603691587203709, 0.09638465351539516, 0.7889843001267657, 0.3995975535535492, 0.2404138117262561, 0.5134503976671381, 0.7620160241108803, 0.4852174766770502, 0.7934067722809752, 0.5657371707019572, 0.40591517497640706, 0.5142806824729376, 0.4667389755277017, 0.4597803030361328, 0.14211531046105408, 0.4709774325404933, 0.39253304933110444, 0.8152160844894966, 0.6418608562675732, 0.5695619245525361, 0.15898796250578873, 0.4189913516486339, 0.8097376625536354, 0.2776505479619531, 0.14100712613869515, 0.1625374057836978, 0.21879614767173305, 0.26016804821119, 0.5884346274074399, 0.25171266030158634, 0.5556828679884147, 0.2886326125606653, 0.5013044750460076, 0.23728971353361283, 0.6280660923097139, 0.6281218947904323, 0.6226708394296439, 0.1280348372312241, 0.37812375401711507, 0.6218606462016874, 0.446367751604861, 0.5237591509200082, 0.22560064672115399, 0.4159575064805634, 0.43989745285902637, 0.38133093816728936, 0.379388299643832, 0.4244201113870294, 0.8495234946343055, 0.44699506619782237, 0.3402560380560977, 0.16997778820688525, 0.6509841470756508, 0.5589353890471914, 0.49320900326902484, 0.41485179365651337, 0.2850172536812061, 0.5150740024049856, 0.7905789411902706, 0.6660097546858721, 0.5916856454756931, 0.25029771644034415, 0.21820707607863943, 0.23625780462752244, 0.6174344585079109, 0.33885175059010386, 0.8097775874289167, 0.5502791542248897, 0.45232673966787307, 0.5168725346003686, 0.4922951659433321, 0.2710495410551712, 0.5620189509382074, 0.19827785442852286, 0.35653263682836045, 0.4940220265254579, 0.3934632807735441, 0.349631294967786, 0.6543252873397565, 0.6043841099981286, 0.6572212454398962, 0.5323595728841377, 0.4667716613599331, 0.5480891857555714, 0.5933716837007499, 0.5769442381274095, 0.7796710482718338, 0.4721284230669528, 0.5632051337005155, 0.25606657060722404, 0.47304849589761655, 0.4991199345133047, 0.785831825438318, 0.5512091114854263, 0.31651464458218903, 0.192246895102814, 0.5737052492708005, 0.14970485751781393, 0.8257882443178004, 0.7450862811651306, 0.2404138117262561, 0.3428275867057816, 0.2186811050870735, 0.43730933466596944, 0.1325711740116582, 0.33994853494016564, 0.5172250338280965, 0.4543852880840521, 0.6017244994332274, 0.7267617626256621, 0.304103470637073, 0.49511795227452726, 0.4577650902534979, 0.4389063253281036, 0.3428275867057816, 0.6911248892501751, 0.5457123873353599, 0.3395528272139201, 0.5662837862370104, 0.38281068028313525, 0.1899488449656659, 0.1899488449656659, 0.39416742153886597, 0.4473524415330049, 0.5724944828663213, 0.12652799787397961, 0.14917046216496987, 0.4192276293132746, 0.1727250451072272, 0.7329347521090118, 0.2979855805324535, 0.5384433083808008, 0.2944152049751758, 0.5661013076544325, 0.39283078357423706, 0.6503174362647687, 0.7632350838020857, 0.29422440231251745, 0.8446099855685041, 0.3812461384129847, 0.1264117171095669, 0.6995051325026098, 0.7680829457938805, 0.1086082602083136, 0.50228427853815, 0.8303888649041977, 0.15145052047802054, 0.5239967242043768, 0.49461569007297057, 0.7323984730128237, 0.6372335578763709, 0.8485373319296128, 0.21018203617182263, 0.3854703692354019, 0.6209619763202376, 0.6996467359659702, 0.3913887983225227, 0.600932061108284, 0.18141675383529432, 0.32841971343371723, 0.17397747102053363, 0.3943097935149382, 0.5998672378660981, 0.6052803835931642, 0.35501406908939237, 0.4362847089434372, 0.6005057903956104, 0.45095984485898877, 0.5601124581139871, 0.6908342266509375, 0.29066967723125237, 0.5437491575180791, 0.5955595524057149, 0.4226516353037165, 0.552222307965348, 0.5038457784615318, 0.6752568781943777, 0.7880730680059006, 0.09430965090665133, 0.4986183600001317, 0.24112389044610405, 0.3635071851353404, 0.7047195247497422, 0.5251048099479148, 0.5632051337005155, 0.4520037684813636, 0.5271857161160298, 0.36566585814722175, 0.8775119234978208, 0.49474741138534273, 0.17187478758168062, 0.1069918390347242, 0.6371627391106971, 0.19018032574493748, 0.34352259564225396, 0.806114950115292, 0.47304849589761655, 0.5014153035286022, 0.6721952796384192, 0.7507248720260316, 0.38512814216859315, 0.8930847268109882, 0.863224561659591, 0.15108072818859253, 0.7399796913917198, 0.18579927887031134, 0.47304849589761655, 0.2033384066370545, 0.43667652058029827, 0.23252054766636898], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [0.37, 0.23, 0.21, 0.32, 0.58, 0.21, 0.24, 0.3, 0.2, 0.3, 0.48, 0.25, 0.27, 0.32, 0.32, 0.2, 0.44, 0.25, 0.22, 0.37, 0.2, 0.19, 0.2, 0.26, 0.25, 0.29, 0.22, 0.24, 0.39, 0.34, 0.41, 0.34, 0.22, 0.26, 0.3, 0.19, 0.13, 0.23, 0.475, 0.605, 0.33, 0.24, 0.52, 0.29, 0.26, 0.57, 0.3, 0.6, 0.26, 0.22, 0.42, 0.57, 0.28, 0.28, 0.26, 0.17, 0.22, 0.34, 0.21, 0.76, 0.42, 0.3, 0.22, 0.25, 0.26, 0.3, 0.42, 0.28, 0.54, 0.14, 0.26, 0.28, 0.34, 0.275, 0.29, 0.2, 0.28, 0.18, 0.26, 0.53, 0.15, 0.21, 0.31, 0.24, 0.22, 0.31, 0.36, 0.33, 0.19, 0.3, 0.2, 0.24, 0.25, 0.31, 0.4, 0.4, 0.475, 0.25, 0.26, 0.61, 0.26, 0.17, 0.51, 0.28, 0.26, 0.28, 0.53, 0.24, 0.38, 0.3, 0.66, 0.33, 0.29, 0.29, 0.32, 0.36, 0.255, 0.24, 0.29, 0.66, 0.33, 0.23, 0.34, 0.16, 0.635, 0.42, 0.46, 0.34, 0.39, 0.17, 0.19, 0.36, 0.26, 0.28, 0.27, 0.21, 0.36, 0.42, 0.34, 0.21, 0.18, 0.865, 0.39, 0.23, 0.29, 0.31, 0.35, 0.4, 0.09, 0.22, 0.12, 0.1, 0.18, 0.2, 0.19, 0.3, 0.35, 0.37, 0.2, 0.23, 0.23, 0.55, 0.37, 0.3, 0.39, 0.265, 0.3, 1.04, 0.34, 0.21, 0.15, 0.18, 0.27, 0.34, 0.39, 0.24, 0.2, 0.28, 0.38, 0.31, 0.39, 0.19, 0.18, 0.33, 0.14, 0.55, 0.22, 0.46, 0.27, 0.41, 0.19, 0.18, 0.22, 0.25, 0.17, 0.39, 0.19, 0.33, 0.35, 0.27, 0.36, 0.26, 0.4, 0.17, 0.21, 0.31, 0.21, 0.44, 0.25, 0.15, 0.26, 0.28, 0.46, 0.32, 0.46, 0.32, 0.22, 0.31, 0.35, 0.24, 0.18, 0.35, 0.6, 0.26, 0.22, 0.655, 0.2, 0.28, 0.42, 0.22, 0.84, 0.28, 0.19, 0.23, 0.27, 0.2, 0.34, 0.14, 0.31, 0.16, 0.22, 0.4, 0.36, 0.22, 0.46, 0.43, 0.19, 0.19, 0.21, 0.685, 0.17, 0.22, 0.17, 0.28, 0.13, 0.11, 0.14, 0.17, 0.34, 0.32, 0.65, 0.28, 0.21, 0.28, 0.13, 0.24, 0.27, 0.41, 0.23, 0.18, 0.11, 0.17, 0.15, 0.59, 0.11, 0.68, 0.24, 0.18, 0.295, 0.55, 0.37, 0.27, 0.28, 0.345, 0.28, 0.44, 0.32, 0.2, 0.585, 0.17, 0.45, 0.43, 0.13, 0.32, 0.17, 0.28, 0.25, 0.36, 0.24, 0.3, 0.17, 0.16, 0.25, 0.38, 0.25, 0.36, 0.37, 0.18, 0.21, 0.16, 0.24, 0.46, 0.52, 0.31, 0.21, 0.22, 0.37, 0.28, 0.19, 0.25, 0.33, 0.28, 0.29, 0.19, 0.65, 0.2, 0.29, 0.32, 0.19, 0.4, 0.43, 0.16, 0.785, 0.22, 0.27, 0.25, 0.25, 0.26, 0.36, 0.43, 0.21, 0.32, 0.3, 0.54, 0.63, 0.18, 0.35, 0.27, 0.25, 0.41, 0.43, 0.305, 0.23, 0.2, 0.3, 0.31, 0.645, 0.29, 0.16, 0.52, 0.3, 0.24, 0.42, 0.26, 0.45, 0.27, 0.22, 0.22, 0.33, 0.24, 0.22, 0.34, 0.21, 0.14, 0.53, 0.725, 0.18, 0.27, 0.47, 0.26, 0.235, 0.26, 0.33, 0.23, 0.23, 0.2, 0.27, 0.16, 0.45, 0.4, 0.2, 0.28, 0.24, 0.23, 0.115, 0.57, 0.25, 0.27, 0.37, 0.18, 0.18, 0.21, 0.19, 0.19, 0.31, 0.23, 0.24, 0.445, 0.15, 0.45, 0.26, 0.2, 0.18, 0.19, 0.18, 0.4, 0.21, 0.37, 0.32, 0.26, 0.21, 0.28, 0.42, 0.765, 0.315, 0.28, 0.25, 0.28, 0.36, 0.17, 0.41, 0.27, 0.15, 0.32, 0.5, 0.52, 0.24, 0.25, 0.08, 0.18, 0.19, 0.57, 0.23, 0.19, 0.36, 0.34, 0.38, 0.5, 0.42, 0.745, 0.22, 0.69, 0.18, 0.57, 0.17, 0.33, 0.36, 0.18, 0.22, 0.4, 0.24, 0.36, 0.19, 0.23, 0.18, 0.17, 0.44, 0.17, 0.21, 0.685, 0.3, 0.2, 0.58, 0.16, 0.16, 0.24, 0.36, 0.13, 0.26, 0.21, 0.34, 0.25, 0.38, 0.12, 0.17, 0.19, 0.3, 0.38, 0.39, 0.59, 0.45, 0.22, 0.31, 0.35, 0.2, 0.39, 0.2, 0.56, 0.305, 0.45, 0.24, 0.26, 0.19, 0.26, 0.41, 0.22, 0.31, 0.35, 1.02, 0.27, 0.52, 0.21, 0.35, 0.26, 0.22, 0.44, 0.41, 0.4, 0.27, 0.25, 0.3, 0.49, 0.24, 0.32, 0.21, 0.19, 0.25, 0.37, 0.25, 0.26, 0.69, 0.17, 0.25, 0.25, 0.31, 0.3, 0.53, 0.24, 0.69, 0.38, 0.22, 0.29, 0.26, 0.16, 0.27, 0.15, 0.5, 0.31, 0.21, 0.19, 0.29, 0.32, 0.41, 0.21, 0.2, 0.42, 0.36, 0.15, 0.35, 0.33, 0.11, 0.31, 0.16, 0.34, 0.34, 0.2, 0.21, 0.28, 0.19, 0.28, 0.205, 0.26, 0.19, 0.43, 0.28, 0.21, 0.33, 0.24, 0.25, 0.28, 0.38, 0.3, 0.15, 0.33, 0.18, 0.32, 0.61, 0.3, 0.38, 0.38, 0.56, 0.34, 0.24, 0.22, 0.58, 0.35, 0.32, 0.28, 0.2, 0.21, 0.16, 0.58, 0.28, 0.255, 0.21, 0.63, 0.38, 0.16, 0.24, 0.35, 0.48, 0.19, 0.2, 0.17, 0.6, 0.32, 0.18, 0.2, 0.38, 0.52, 0.15, 0.38, 0.18, 0.14, 0.16, 0.26, 0.24, 0.245, 0.29, 0.15, 0.645, 0.415, 0.18, 0.2, 0.34, 0.18, 0.22, 0.51, 0.42, 0.49, 0.32, 0.25, 0.2, 0.24, 0.18, 0.27, 0.53, 0.28], \"xaxis\": \"x2\", \"y\": [0.6660328535674787, 0.4955559099445003, 0.11251030999551548, 0.5313240922219649, 0.7616845263358343, 0.42881839881496897, 0.22146723198036844, 0.2709448900825402, 0.04188686298684474, 0.3198999677935893, 0.586632325439729, 0.3332859260788763, 0.0891770245136605, 0.07249138429342028, 0.0813041402249215, 0.2808128557304226, 0.18155424903412543, 0.14020593233116785, 0.20529540916933675, 0.1755850319354616, 0.5722846846512241, 0.4684623303117058, 0.2863708053899042, 0.4489302200945696, 0.3606737334686688, 0.09834172337505831, 0.1439119889738254, 0.10526388551166177, 0.08976738859769384, 0.15927641460572795, 0.07353544332944184, 0.4894096639868448, 0.24735122968283396, 0.41440459167745447, 0.10107859516115147, 0.4809249647595707, 0.043928674649753696, 0.27268427565697984, 0.07203278686513981, 0.35989685204578803, 0.08410225657903847, 0.09640449279894714, 0.2859044620344169, 0.766491644508495, 0.27194216744256416, 0.11891721880979944, 0.6033870782914414, 0.8445823904457724, 0.4148378249676725, 0.09538880480821377, 0.5822786697287807, 0.2006236885231063, 0.30215903380660414, 0.3526626332448971, 0.22921561702294402, 0.3499358724503807, 0.451050436906263, 0.01968005574460141, 0.3849224947932618, 0.608666907839271, 0.30333177217190177, 0.05732515971384944, 0.08299070223644744, 0.155374347961305, 0.4378217303747408, 0.10641916767178827, 0.3207785913922725, 0.3280003244598044, 0.4747408725557203, 0.27229542413121455, 0.5314247042003052, 0.13834506443323813, 0.652508483608137, 0.1775869136191267, 0.4659209431511335, 0.3288332341233703, 0.47224603889779837, 0.2773569186284155, 0.18590272545123854, 0.6719763059805124, 0.04569198037744582, 0.22473444069733528, 0.0776074933333939, 0.1411968215808168, 0.3654892991508686, 0.06069899520469324, 0.21029328672965164, 0.13919371635861133, 0.16321149678759816, 0.6144435769482088, 0.1388055550317996, 0.0827658987104557, 0.0793107693477757, 0.04994940743047871, 0.46220165202879504, 0.08265172102971341, 0.5554564865761329, 0.10902951494304747, 0.26480674198345266, 0.31816712550642645, 0.20184400370343658, 0.23734670470511587, 0.19264674509953905, 0.03558879485690103, 0.5314247042003052, 0.3013473679880785, 0.8043030592862955, 0.07665185966197174, 0.17816243980233548, 0.14637302723887635, 0.43623195291339645, 0.5773286546676725, 0.06996409198491005, 0.0635191394270278, 0.11839391684253864, 0.03368970372860669, 0.16544292122901683, 0.5002106013252752, 0.20783967621931676, 0.4413184352618238, 0.1377753535318076, 0.017128038770129694, 0.09070427960766203, 0.05237321155563324, 0.46044782253877736, 0.09863911308639095, 0.6058955548956951, 0.07377868677997379, 0.33726125667837825, 0.03705661785513226, 0.03856885477325478, 0.01970319875133708, 0.06623921298607705, 0.655672818127978, 0.36403826442427, 0.375635621083512, 0.25822104517587474, 0.26990817233175546, 0.30316845466795117, 0.21597661143113533, 0.10411587283779344, 0.4582573305440075, 0.28974208538397184, 0.3995654588450376, 0.48407929824265805, 0.2412117545349558, 0.49704114689177337, 0.3112403223054312, 0.13571503940671914, 0.35304273602320047, 0.18963603484652192, 0.06023564559469896, 0.305863422303413, 0.34062746964654456, 0.03532029949184434, 0.20200996882548472, 0.207876095289533, 0.11304202998506685, 0.26487496820305634, 0.46674395287949066, 0.05931266843465788, 0.6063731497207538, 0.053339747820140615, 0.16056749669580483, 0.3366557342021428, 0.18735912995827353, 0.2667542380283816, 0.9197592959547904, 0.13322255285490225, 0.3533185668595151, 0.08763312389948397, 0.343329095265401, 0.1298321532292276, 0.11240742021865013, 0.03412749239977686, 0.23316671381479437, 0.13955591125269062, 0.065615492475942, 0.03940539431326806, 0.04874684240881699, 0.42507109047861347, 0.3720756994829524, 0.20627971812824875, 0.23346983492740092, 0.299872058778726, 0.14688925552714138, 0.20529540916933675, 0.11294333341234963, 0.4523771212155355, 0.15895981664313275, 0.12633289347617382, 0.34801013400503944, 0.063056887931354, 0.09222807982804315, 0.19281104432210028, 0.11843845992675284, 0.1064686731970873, 0.12171087020281346, 0.49704114689177337, 0.4202798549667376, 0.058322454167927695, 0.40418598015134155, 0.7514842711311043, 0.067978575311199, 0.1468497162592186, 0.3655805321171328, 0.36741292271676196, 0.08785516413846428, 0.4223454464089015, 0.09472348251934337, 0.14196098925812006, 0.10013555988874479, 0.32154631204965056, 0.05416575683382341, 0.786126361492164, 0.04696516601190348, 0.26926088858349784, 0.28123172687107445, 0.3094364396730669, 0.04307250962973752, 0.07126159086244754, 0.6143015945908075, 0.495586079448059, 0.46102608015166635, 0.40789311683600216, 0.8929715185951024, 0.1227006502272181, 0.3638055988942468, 0.10470002869891348, 0.29304213908849364, 0.8936703981375603, 0.3534407380188983, 0.0883666731866185, 0.07895584641700149, 0.05166417783587085, 0.4199775765299997, 0.10304865631077798, 0.1041340676595982, 0.11031385635331636, 0.22368578646300386, 0.22137255536682798, 0.0725394352715707, 0.08320759746190642, 0.3577905591727162, 0.36362749207413336, 0.13058702032609693, 0.4306817897420764, 0.4684623303117058, 0.3185463047756948, 0.6991046594229053, 0.33105510290791684, 0.35804773811787727, 0.3499358724503807, 0.17780319308126435, 0.07142366539796174, 0.1504846162366139, 0.28643330026545544, 0.11492102279820171, 0.08716328114311156, 0.12905574960179156, 0.5528531989583015, 0.2852168598030531, 0.3185463047756948, 0.41766807389819915, 0.22818770291371737, 0.10749415552266317, 0.07500089027222667, 0.2150933620687273, 0.4879833184669665, 0.21367083697314282, 0.18281788227943807, 0.11217648511765432, 0.01860460444149037, 0.4990100838788346, 0.3212979959143686, 0.7252893191599291, 0.30018855716775616, 0.2808216200321265, 0.24332849241566534, 0.22583693263898685, 0.307128141019565, 0.12930297020615966, 0.07734813107736227, 0.38078614076753503, 0.037937415915298756, 0.18389331462546077, 0.2015421194948802, 0.10121634311933059, 0.7209948827487924, 0.252131738577411, 0.19866278493931944, 0.5569604587758099, 0.19172534874952063, 0.07516041810443141, 0.18673310211333727, 0.20736440356309183, 0.27568985010185776, 0.1748501221961516, 0.134246332983591, 0.12151400729184814, 0.03860330573341564, 0.16198960071610413, 0.062309112953929935, 0.14943540958877521, 0.46827469198568006, 0.12435295831370408, 0.11768791031746062, 0.10794707492381372, 0.04347111427796346, 0.07423675680829, 0.1602542791395647, 0.19911642350143877, 0.2379444352717226, 0.36664322039668684, 0.10130143557253446, 0.17108028607870185, 0.6143194513817134, 0.5641235853966853, 0.29864316680665437, 0.44752301946823647, 0.13459844499503626, 0.037461465199631894, 0.5002964248569376, 0.4059565893810353, 0.7035957096210382, 0.0629603198376949, 0.25036415064992923, 0.14780834332950044, 0.24800647860056513, 0.10438723399855232, 0.24366911510822187, 0.4574644219698093, 0.8347014835967527, 0.42226245660703365, 0.4073158502222598, 0.47525484003715535, 0.37845934883934684, 0.35325777167774697, 0.4763432908647238, 0.18941100564626978, 0.23853527246002126, 0.27277355193056574, 0.5556171757583562, 0.19481513110659687, 0.7460207524242459, 0.12627308236197843, 0.2115813466591615, 0.4773837842994688, 0.22238536240250728, 0.1978655273089749, 0.32057959349203036, 0.1601330373243487, 0.6256605001243821, 0.34062746964654456, 0.5899158924001677, 0.1273375405407705, 0.6866376712310945, 0.3812864953771038, 0.07918534602430627, 0.10510921928053807, 0.052405178286905496, 0.29010285216427345, 0.5802968836962079, 0.4475494904811408, 0.33107045093633036, 0.6046547135519548, 0.33132995382553565, 0.3391582818855403, 0.37109937806185267, 0.18876467901964422, 0.03244681540368277, 0.6531311156123596, 0.18281848038190407, 0.06840545126676123, 0.23876166598551407, 0.5602062902528231, 0.05478334190217349, 0.18965009362393503, 0.502081053312289, 0.0945975060483667, 0.24937367783354814, 0.14040338921272166, 0.09582424632391484, 0.4879833184669665, 0.07536550594022651, 0.37763546052463404, 0.20240400638142053, 0.06234715971662652, 0.1729504208160284, 0.2536573606029918, 0.1491704939138675, 0.47224603889779837, 0.20734784509414073, 0.1656619584420439, 0.20263687678412212, 0.4576701693643329, 0.3746187330143109, 0.06578487521364562, 0.09359041291034786, 0.15714155813810793, 0.43198081216185935, 0.17693664965610134, 0.14200602748771296, 0.16878839641400256, 0.11131318694256087, 0.43040972974554736, 0.12494266711040569, 0.5286591337585229, 0.3917329141436472, 0.14284790216410748, 0.29931895876037384, 0.3998656181534954, 0.13198036366642862, 0.2166851793268345, 0.164669749255824, 0.3116999397838065, 0.5702002297218003, 0.2867818412254799, 0.05809024612643199, 0.0701620515557333, 0.10493669218879953, 0.03474255021640338, 0.14069518845012563, 0.7697788668098057, 0.44513161239284327, 0.12104291767226882, 0.2823656727566666, 0.28640273091276736, 0.09904459769556595, 0.10889384421684001, 0.1978655273089749, 0.6326587477498924, 0.0766186874204361, 0.07300117689776386, 0.3978521493117628, 0.7293533971641823, 0.24040337450518035, 0.46827469198568006, 0.03737110954461231, 0.48112847828662497, 0.5755848065786346, 0.12151472907643468, 0.332302417201758, 0.3208349144509022, 0.13406270144296106, 0.47820199098358873, 0.024219732643774528, 0.7923035912680444, 0.3099424932714111, 0.8494816644677875, 0.15230116664989468, 0.8795672599938588, 0.34536882843285344, 0.587897812361327, 0.3660303223369904, 0.3074082248441362, 0.1925553058603695, 0.1582957933341015, 0.5297945963993664, 0.1892543681582496, 0.06574637766643598, 0.03286461121245521, 0.6223124217546917, 0.48666930315350876, 0.17200815643270417, 0.27042696199957883, 0.16010429726024444, 0.25291734909108765, 0.22778758435893687, 0.6055190518965303, 0.41989528411161425, 0.2865861541738164, 0.17344095530188786, 0.4163761941495938, 0.24610426408478792, 0.029106329843254564, 0.5849270471051293, 0.09607886499379148, 0.4890296174547498, 0.11193395874659995, 0.3667485749721523, 0.29672938182784603, 0.13696827462710404, 0.03986507081677082, 0.41542023534722683, 0.1642424989032959, 0.041559354155004224, 0.1266666793707928, 0.5259198205822933, 0.42123490919744344, 0.6147437654518444, 0.42849246998341506, 0.04874684240881699, 0.16870816563337898, 0.35179373534084035, 0.4552463954734379, 0.1543174595222413, 0.4641274821418986, 0.1106599594415556, 0.40441066041397966, 0.05916303638108533, 0.24194101851814365, 0.5755848065786346, 0.23631147082452741, 0.04679471849088612, 0.33132995382553565, 0.6031606095022326, 0.16900214819844117, 0.9322526967181247, 0.1065938389205352, 0.0540586741766943, 0.14920224829950646, 0.03054451782098533, 0.13595064656866984, 0.15908339514281045, 0.09402391562754642, 0.27219479721363327, 0.10477531970828624, 0.6046547135519548, 0.04412971358840656, 0.0821245873848182, 0.24953715645213048, 0.24311299470472425, 0.679537413518331, 0.02875041056121841, 0.2874129658970298, 0.17131102264191878, 0.07042427222914205, 0.1577516063520068, 0.39934634677258996, 0.42249259173992826, 0.24940231538328683, 0.46827469198568006, 0.040988937643475554, 0.034828704291737345, 0.26663563965858417, 0.22421743312747255, 0.10716094829621758, 0.7421831263598226, 0.4644511163280224, 0.1591307416719686, 0.21502194578256428, 0.12883185373794437, 0.15520095945599266, 0.04280666734842442, 0.06928764484923078, 0.3578757504587543, 0.0760792945579073, 0.06637805380770656, 0.5755848065786346, 0.4326356954473739, 0.16985579355455038, 0.47152805642545803, 0.11644579282256762, 0.11790522998710073, 0.5438286352264949, 0.41561805514360906, 0.050606352251634235, 0.21836830194439782, 0.22298545275517268, 0.1504846162366139, 0.16819644397314482, 0.47796113776613436, 0.14100197907825862, 0.7878397890034206, 0.12176963827920351, 0.09814942480303201, 0.23162396036129984, 0.04400104962869911, 0.061588508633294015, 0.2774601068082493, 0.40816383821078206, 0.14036214651023216, 0.11837607594274324, 0.0703155477214753, 0.17002415827487982, 0.24611532014486182, 0.06874641727313702, 0.30975746960573625, 0.07004288447243323, 0.6453829176356538, 0.3880412370469972, 0.10205495289732236, 0.12171087020281346, 0.38550692709735157, 0.4398162761337091, 0.5769741243450848, 0.48842976274850136, 0.3866799681687785, 0.17129518728202664, 0.5711206597512044, 0.4456070955069118, 0.4585850027539752, 0.25462747480751524, 0.34771016550763867, 0.35548618548401445, 0.07878090041588082, 0.3008706318705062, 0.08117751180329491, 0.055511805197920094, 0.1600174453683395, 0.35597309965685686, 0.5473978930443646, 0.3321771897262046, 0.14643302530661162, 0.7653011157176768, 0.24188431843396252, 0.16704799028757666, 0.41136103198090634, 0.5749869949413896, 0.709238838470871, 0.09340318303147321, 0.602429869503323, 0.04154705947390969, 0.7519582179986716, 0.15993940416551844, 0.04372375151311325, 0.4076899811241429, 0.4644511163280224, 0.3133137248525114, 0.24628490675063597, 0.06972977174174444, 0.15949948541388637, 0.2241543425141257, 0.1729876202034616, 0.07290025122558275, 0.1220000714032804, 0.36493953208423235, 0.09420126302076737, 0.026726938234992392, 0.7199273032686843, 0.4606762448039463, 0.04906818437448113, 0.19446415942665518, 0.14876853598344464, 0.3247816953453747, 0.023320858692869595, 0.7310618090422621, 0.48944479260603346, 0.20357574295749958, 0.0840537250624015, 0.5368744051465595, 0.21101467800102214, 0.46682279298460017, 0.3749869638443927, 0.46592999202179275, 0.10188412989688433, 0.15751976448865512], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"volatile.acidity\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"volatile.acidity\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}, \"All_citric.acid\": {\"data\": [{\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Reference<br>citric.acid=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [0.32, 0.24, 0.36, 0.24, 0.27, 0.21, 0.3, 0.46, 0.34, 0.26, 0.4, 0.21, 0.26, 0.33, 0.24, 0.47, 0.29, 0.76, 0.2, 0.29, 0.28, 0.27, 0.28, 0.36, 0.49, 0.27, 0.3, 0.49, 0.33, 0.48, 0.49, 0.32, 0.28, 0.34, 0.36, 0.44, 0.31, 0.31, 0.22, 0.39, 0.26, 0.49, 0.37, 0.26, 0.26, 0.32, 0.38, 0.19, 0.53, 0.3, 0.29, 0.29, 0.26, 0.29, 0.49, 0.28, 0.36, 0.38, 0.24, 0.32, 0.42, 0.23, 0.74, 0.44, 0.66, 0.13, 0.28, 0.3, 0.26, 0.36, 0.35, 0.24, 0.28, 0.68, 0.35, 0.29, 0.46, 0.28, 0.1, 0.35, 0.24, 0.34, 0.3, 0.45, 0.33, 0.34, 0.29, 0.31, 0.31, 0.41, 0.28, 0.28, 0.38, 0.4, 0.29, 0.25, 0.29, 0.28, 0.25, 0.65, 0.34, 0.36, 0.46, 0.34, 0.3, 0.32, 0.26, 0.49, 0.33, 0.02, 0.33, 0.28, 0.32, 0.29, 0.27, 0.32, 0.25, 0.36, 0.35, 0.46, 0.3, 0.49, 0.34, 0.31, 0.22, 0.02, 0.01, 0.5, 0.36, 0.0, 0.33, 0.18, 0.4, 0.32, 0.43, 0.54, 0.4, 0.02, 0.2, 0.24, 0.37, 0.31, 0.32, 0.34, 0.41, 0.43, 0.46, 0.27, 0.24, 0.32, 0.28, 0.59, 0.25, 0.26, 0.3, 0.5, 0.28, 0.35, 0.26, 0.38, 0.29, 0.27, 0.36, 0.25, 0.2, 0.34, 0.3, 0.21, 0.58, 0.04, 0.42, 0.37, 0.46, 0.28, 0.14, 0.09, 0.04, 0.21, 0.24, 0.1, 0.29, 0.49, 0.35, 0.3, 0.16, 0.29, 0.33, 0.48, 0.34, 0.31, 0.29, 0.0, 0.14, 0.05, 0.02, 0.34, 0.16, 0.32, 0.26, 0.48, 0.49, 0.27, 0.49, 0.12, 0.26, 0.37, 0.34, 0.49, 0.27, 0.43, 0.49, 0.2, 0.34, 0.32, 0.27, 0.26, 0.29, 0.49, 0.31, 0.32, 0.32, 0.49, 0.26, 0.4, 0.6, 0.37, 0.34, 0.4, 0.31, 0.29, 0.32, 0.21, 0.0, 0.28, 0.28, 0.21, 0.36, 0.41, 0.42, 0.34, 0.33, 0.39, 1.0, 0.44, 0.12, 0.32, 0.31, 0.27, 0.4, 0.33, 0.42, 0.3, 0.43, 0.35, 0.37, 0.28, 0.31, 0.14, 0.49, 0.39, 0.34, 0.49, 0.37, 0.44, 0.35, 0.32, 0.37, 0.57, 0.06, 0.34, 0.36, 0.08, 0.31, 0.3, 0.26, 0.26, 0.28, 0.41, 0.0, 0.79, 0.36, 0.44, 0.32, 0.3, 0.39, 0.42, 0.25, 0.28, 0.08, 0.39, 0.31, 0.3, 0.48, 0.24, 0.41, 0.25, 0.0, 0.12, 0.36, 0.38, 0.02, 0.24, 0.3, 0.26, 0.33, 0.46, 0.26, 0.33, 0.39, 0.47, 0.3, 0.34, 0.13, 0.36, 0.36, 0.62, 0.31, 0.3, 0.27, 0.27, 0.27, 0.38, 0.31, 0.3, 0.29, 0.02, 0.22, 0.39, 0.49, 0.27, 0.28, 0.33, 0.44, 0.57, 0.36, 0.31, 0.33, 0.33, 0.21, 0.28, 0.28, 0.45, 0.36, 0.26, 0.13, 0.49, 0.32, 0.09, 0.0, 0.36, 0.29, 0.41, 0.28, 0.3, 0.3, 0.4, 0.32, 0.33, 0.51, 0.36, 0.41, 0.19, 0.35, 0.44, 0.03, 0.27, 0.31, 0.27, 0.36, 0.26, 0.3, 0.39, 0.3, 0.23, 0.28, 0.26, 0.31, 0.0, 0.27, 0.34, 0.2, 0.32, 0.13, 0.36, 0.49, 0.29, 0.37, 0.31, 0.29, 0.37, 0.28, 0.24, 0.49, 0.3, 0.28, 0.47, 0.42, 0.28, 0.32, 0.28, 0.05, 0.21, 0.23, 0.33, 0.28, 0.32, 0.34, 0.42, 0.0, 0.49, 0.24, 0.3, 0.35, 0.3, 0.56, 0.45, 0.28, 0.35, 0.18, 0.2, 0.37, 0.31, 0.3, 0.28, 0.27, 0.18, 0.44, 0.3, 0.3, 0.36, 0.49, 0.41, 0.28, 0.31, 0.35, 0.1, 0.29, 0.01, 0.33, 0.49, 0.38, 0.74, 0.37, 0.45, 0.62, 0.33, 0.4, 0.26, 0.47, 0.28, 0.28, 0.24, 0.27, 0.35, 0.3, 0.76, 0.27, 0.01, 0.27, 0.27, 0.73, 0.29, 0.49, 0.25, 0.31, 0.02, 0.27, 0.36, 0.3, 0.51, 0.15, 0.49, 0.33, 0.32, 0.35, 0.29, 0.49, 0.34, 0.32, 0.44, 0.24, 0.48, 0.23, 0.24, 0.31, 0.39, 0.49, 0.3, 0.3, 0.05, 0.41, 0.23, 0.4, 0.41, 0.39, 0.42, 0.3, 0.35, 0.34, 0.29, 0.26, 0.31, 0.38, 0.38, 0.44, 0.33, 0.33, 0.49, 0.38, 0.27, 0.33, 0.31, 0.31, 0.5, 0.36, 0.37, 0.46, 0.44, 0.37, 0.35, 0.31, 0.25, 0.36, 0.37, 0.0, 0.3, 0.7, 0.36, 0.29, 0.33, 0.32, 0.25, 0.28, 0.21, 0.4, 0.06, 0.28, 0.29, 0.35, 0.35, 0.35, 0.29, 0.41, 0.49, 0.25, 0.25, 0.5, 0.49, 0.26, 0.29, 0.32, 0.24, 0.28, 0.4, 0.3, 0.02, 0.31, 0.36, 0.22, 0.36, 0.35, 0.34, 0.1, 0.24, 0.0, 0.32, 0.23, 0.49, 0.32, 0.32, 0.28, 0.41, 0.28, 0.37, 0.33, 0.31, 0.28, 0.3, 0.24, 0.34, 0.31, 0.35, 0.26, 0.0, 0.74, 0.01, 0.16, 0.32, 0.24, 0.32, 0.28, 0.32, 0.37, 0.29, 0.04, 0.29, 0.3, 0.16, 0.33, 0.23, 0.49, 0.38, 0.32, 0.26, 0.56, 0.66, 0.29, 0.29, 0.4, 0.27, 0.21, 0.35, 0.28, 0.24, 0.28, 0.38, 0.25, 0.49, 0.32, 0.18, 0.43, 0.33, 0.47, 0.04, 0.33, 0.27, 0.36, 0.25, 0.4, 0.33, 0.24, 0.35, 0.31, 0.31, 0.38, 0.49, 0.44, 0.4, 0.33, 0.26, 0.38, 0.22, 0.28, 0.34, 0.36], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Current<br>citric.acid=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [0.19, 0.38, 0.42, 0.21, 0.23, 0.27, 0.29, 0.25, 0.31, 0.12, 0.24, 0.35, 0.25, 0.23, 0.39, 0.34, 0.0, 0.31, 0.24, 0.34, 0.3, 0.31, 0.35, 0.39, 0.28, 0.49, 0.38, 0.28, 0.32, 0.3, 0.29, 0.27, 0.37, 0.34, 0.23, 0.99, 0.27, 0.37, 0.33, 0.02, 0.34, 0.33, 0.49, 0.3, 0.42, 0.09, 0.29, 0.18, 0.33, 0.37, 0.17, 0.39, 0.44, 0.41, 0.31, 0.44, 0.56, 0.0, 0.31, 0.68, 0.09, 0.26, 0.36, 0.27, 0.29, 0.33, 0.38, 0.33, 0.06, 0.34, 0.34, 0.28, 0.28, 0.24, 0.29, 0.19, 0.24, 0.28, 0.3, 0.49, 0.4, 0.33, 0.41, 0.27, 0.34, 0.29, 0.39, 0.24, 0.49, 0.34, 0.26, 0.49, 0.26, 0.28, 0.3, 0.28, 0.4, 1.23, 0.52, 0.08, 0.44, 0.27, 0.23, 0.24, 0.34, 0.09, 0.24, 0.32, 0.42, 0.29, 0.0, 0.28, 0.3, 0.27, 0.25, 0.53, 0.22, 0.27, 0.25, 0.39, 0.23, 0.36, 0.27, 0.47, 0.1, 0.46, 0.26, 0.46, 0.4, 0.35, 0.38, 0.34, 0.28, 0.27, 0.49, 0.58, 0.34, 0.38, 0.27, 0.29, 0.45, 0.03, 0.69, 0.37, 0.26, 0.33, 0.56, 0.32, 0.3, 0.34, 0.29, 0.33, 0.31, 0.61, 0.34, 0.35, 0.38, 0.32, 0.4, 0.39, 0.39, 0.24, 0.24, 0.91, 0.49, 0.36, 0.35, 0.05, 0.4, 0.81, 0.3, 0.4, 0.28, 0.4, 0.47, 0.3, 0.17, 0.38, 0.26, 0.39, 0.3, 0.25, 0.36, 0.49, 0.32, 0.15, 0.24, 0.24, 0.36, 0.33, 0.32, 0.26, 0.32, 0.45, 0.28, 0.28, 0.32, 0.22, 0.56, 0.26, 0.36, 0.25, 0.42, 0.52, 0.5, 0.3, 0.41, 0.73, 0.3, 0.41, 0.29, 0.34, 0.24, 0.45, 0.52, 0.29, 0.38, 0.24, 0.4, 0.4, 0.49, 0.29, 0.14, 0.42, 0.5, 0.2, 0.32, 0.3, 0.45, 0.26, 0.21, 0.4, 0.39, 0.36, 0.24, 0.38, 0.24, 0.18, 0.31, 0.49, 0.35, 0.32, 0.36, 0.34, 0.2, 0.5, 0.27, 0.31, 0.34, 0.11, 0.32, 0.28, 0.44, 0.29, 0.37, 0.26, 0.74, 0.3, 0.4, 0.31, 0.02, 0.31, 0.34, 0.19, 0.27, 0.36, 0.42, 0.2, 0.42, 0.46, 0.27, 0.32, 0.32, 0.59, 0.34, 0.16, 0.49, 0.32, 0.26, 0.1, 0.53, 0.27, 0.52, 0.15, 0.32, 0.49, 0.28, 0.31, 0.07, 0.27, 0.5, 0.44, 0.28, 0.26, 0.3, 0.3, 0.48, 0.3, 0.36, 0.32, 0.29, 0.44, 0.47, 0.26, 0.36, 0.46, 0.3, 0.35, 0.39, 0.3, 0.27, 0.31, 0.08, 0.61, 0.25, 0.29, 0.4, 0.34, 0.49, 0.33, 0.28, 0.27, 0.29, 0.49, 0.37, 0.34, 0.25, 0.52, 0.58, 0.3, 0.02, 0.32, 0.0, 0.32, 0.69, 0.3, 0.42, 0.28, 0.44, 0.3, 0.31, 0.33, 0.49, 0.0, 0.08, 0.28, 0.3, 0.38, 0.49, 0.27, 0.49, 0.38, 0.32, 0.61, 0.22, 0.31, 0.25, 0.26, 0.38, 0.08, 0.29, 0.24, 0.49, 0.46, 0.43, 0.49, 0.2, 0.49, 0.41, 0.33, 0.32, 0.29, 0.4, 0.38, 0.49, 0.09, 0.37, 0.29, 0.08, 0.0, 0.27, 0.43, 0.31, 0.42, 0.39, 0.41, 0.42, 0.31, 0.11, 0.24, 0.22, 0.24, 0.45, 0.39, 0.35, 0.02, 0.39, 0.54, 0.15, 0.37, 0.42, 0.24, 0.28, 0.71, 0.27, 0.33, 0.29, 0.26, 0.28, 0.27, 0.37, 0.36, 0.49, 0.71, 0.24, 0.12, 0.38, 0.34, 0.27, 0.24, 0.25, 0.36, 0.47, 0.18, 0.54, 0.26, 0.41, 0.22, 0.29, 0.5, 0.27, 0.32, 0.38, 0.33, 0.3, 0.25, 0.38, 0.36, 0.33, 0.3, 0.3, 0.01, 0.29, 0.23, 0.38, 0.45, 0.01, 0.2, 0.19, 0.18, 0.3, 0.08, 0.26, 0.21, 0.28, 0.2, 0.31, 0.28, 0.32, 0.32, 0.3, 0.32, 0.25, 0.29, 0.31, 0.29, 0.49, 0.3, 0.33, 0.0, 0.2, 0.36, 0.2, 0.27, 0.48, 0.3, 0.2, 0.39, 0.18, 0.34, 0.23, 0.34, 0.49, 0.45, 0.38, 0.49, 0.3, 0.29, 0.1, 0.0, 0.4, 0.4, 0.39, 0.33, 0.33, 0.47, 0.42, 0.31, 0.39, 0.55, 0.41, 0.38, 0.3, 0.18, 0.24, 0.2, 0.18, 0.24, 0.43, 0.43, 0.32, 0.34, 0.28, 0.29, 0.38, 0.31, 0.31, 0.53, 0.49, 0.37, 0.33, 0.2, 0.33, 0.26, 0.4, 0.27, 0.26, 0.36, 0.35, 0.53, 0.07, 0.26, 0.36, 0.53, 0.45, 0.22, 0.66, 0.33, 0.0, 0.29, 0.32, 0.3, 0.48, 0.28, 0.37, 0.32, 0.45, 0.4, 0.24, 0.3, 0.58, 0.3, 0.21, 0.37, 0.3, 0.19, 0.21, 0.32, 0.51, 0.27, 0.26, 0.33, 0.3, 0.42, 0.3, 0.24, 0.26, 0.3, 0.39, 0.27, 0.31, 0.26, 0.29, 1.0, 0.36, 0.31, 0.38, 0.28, 0.25, 0.35, 0.2, 0.51, 0.47, 0.22, 0.31, 0.5, 0.18, 0.45, 0.15, 0.14, 0.03, 0.32, 0.36, 0.23, 0.16, 0.49, 0.26, 0.36, 0.34, 0.3, 0.21, 0.58, 0.43, 0.26, 0.36, 0.27, 0.42, 0.49, 0.26, 0.35, 0.04, 0.4, 0.28, 0.28, 0.26, 0.25, 0.27, 0.31, 0.29, 0.54, 0.28, 0.26, 0.28, 0.28, 0.18, 0.26, 0.29, 0.38, 0.65, 0.32, 0.0, 0.68, 0.36, 0.34, 0.31, 0.35, 0.46, 0.24, 0.41, 0.24, 0.3, 0.49, 0.24, 0.22, 0.31, 0.37, 0.29, 0.34], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Reference<br>citric.acid=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [0.65, 0.47, 0.32, 0.08, 0.23, 0.0, 0.07, 0.52, 0.37, 0.23, 0.3, 0.49, 0.74, 0.35, 0.06, 0.2, 0.33, 0.09, 0.22, 0.0, 0.47, 0.26, 0.1, 0.3, 0.0, 0.04, 0.18, 0.32, 0.1, 0.32, 0.0, 0.27, 0.66, 0.24, 0.37, 0.49, 0.35, 0.37, 0.57, 0.36, 0.38, 0.6, 0.27, 0.14, 0.15, 0.24, 0.24, 0.27, 0.43, 0.15, 0.24, 0.22, 0.31, 0.49, 0.26, 0.49, 0.42, 0.25, 0.53, 0.52, 0.44, 0.35, 0.08, 0.24, 0.2, 0.3, 0.34, 0.21, 0.13, 0.31, 0.31, 0.65, 0.66, 0.33, 0.29, 0.07, 0.43, 0.4, 0.2, 0.36, 0.3, 0.37, 0.43, 0.2, 0.23, 0.31, 0.34, 0.17, 0.35, 0.1, 0.65, 0.24, 0.1, 0.66, 0.42, 0.52, 0.56, 0.46, 0.44, 0.35, 0.5, 0.31, 0.28, 0.34, 0.31, 0.68, 0.19, 0.37, 0.49, 0.24, 0.24, 0.33, 0.2, 0.27, 0.17, 0.36, 0.62, 0.23, 0.43, 0.26, 0.2, 0.28, 0.34, 0.55, 0.24, 0.24, 0.22, 0.22, 0.42, 0.19, 0.47, 0.22, 0.3, 0.51, 0.3, 0.2, 0.36, 0.23, 0.35, 0.21, 0.22, 0.4, 0.38, 0.18, 0.22, 0.42, 0.26, 0.34, 0.14, 0.48, 0.38, 0.0, 0.41, 0.09, 0.41, 0.0, 0.53, 0.24, 0.35, 0.07, 0.43, 0.24, 0.49, 0.23, 0.03, 0.39, 0.2, 0.23, 0.28, 0.36, 0.41, 0.18, 0.26, 0.64, 0.28, 0.28, 0.21, 0.28, 0.3, 0.1, 0.46, 0.0, 0.35, 0.34, 0.52, 0.16, 0.45, 0.24, 0.15, 0.37, 0.19, 0.3, 0.5, 0.04, 0.51, 0.0, 0.31, 0.31, 0.26, 0.21, 0.14, 0.5, 0.5, 0.43, 0.24, 0.26, 0.19, 0.41, 0.04, 0.37, 0.29, 0.28, 0.44, 0.74, 0.47, 0.13, 0.23, 0.06, 0.38, 0.48, 0.11, 0.27, 0.51, 0.41, 0.29, 0.34, 0.03, 0.47, 0.04, 0.0, 0.2, 0.54, 0.28, 0.25, 0.32, 0.21, 0.41, 0.25, 0.34, 0.56, 0.33, 0.39, 0.29, 0.32, 0.27, 0.5, 0.49, 0.24, 0.37, 0.33, 0.25, 0.26, 0.66, 0.03, 0.34, 0.51, 0.38, 0.24, 0.46, 0.63, 0.28, 0.22, 0.33, 0.57, 0.33, 0.3, 0.24, 0.22, 0.25, 0.2, 0.35, 0.3, 0.38, 0.26, 0.5, 0.39, 0.12, 0.61, 0.19, 0.13, 0.24, 0.21, 0.32, 0.07, 0.24, 0.2, 0.47, 0.3, 0.27, 0.22, 0.49, 0.55, 0.22, 0.11, 0.4, 0.26, 0.23, 0.55, 0.58, 0.2, 0.0, 0.4, 0.05, 0.33, 0.28, 0.35, 0.24, 0.16, 0.59, 0.21, 0.48, 0.2, 0.21, 0.45, 0.49, 0.37, 0.56, 0.31, 0.44, 0.14, 0.46, 0.47, 0.2, 0.24, 0.36, 0.25, 0.65, 0.54, 0.22, 0.17, 0.4, 0.35, 0.35, 0.4, 0.33, 0.24, 0.16, 0.46, 0.0, 0.46, 0.49, 0.29, 0.3, 0.22, 0.27, 0.01, 0.18, 0.49, 0.18, 0.2, 0.29, 0.03, 0.7, 0.09, 0.42], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Current<br>citric.acid=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [0.49, 0.12, 0.36, 0.29, 0.4, 0.4, 0.18, 0.04, 0.24, 0.65, 0.25, 0.39, 0.4, 0.26, 0.45, 0.36, 0.32, 0.49, 0.34, 0.07, 0.39, 0.13, 0.36, 0.64, 0.37, 0.31, 0.3, 0.23, 0.29, 0.74, 0.79, 0.2, 0.0, 0.17, 0.33, 0.21, 0.32, 0.11, 0.19, 0.06, 0.29, 0.2, 0.74, 0.29, 0.32, 0.25, 0.24, 0.25, 0.29, 0.35, 0.54, 0.26, 0.49, 0.22, 0.1, 0.23, 0.01, 0.49, 0.29, 0.2, 0.49, 0.34, 0.18, 0.4, 0.21, 0.06, 0.59, 0.0, 0.0, 0.03, 0.02, 0.25, 0.14, 0.26, 0.35, 0.28, 0.46, 0.52, 0.21, 0.3, 0.34, 0.18, 0.2, 0.33, 0.49, 0.27, 0.3, 0.34, 0.13, 0.36, 0.49, 0.26, 0.41, 0.42, 0.01, 0.0, 0.49, 0.19, 0.08, 0.55, 0.45, 0.32, 0.36, 0.11, 0.32, 0.09, 0.04, 0.0, 0.26, 0.41, 0.06, 0.5, 0.02, 0.29, 0.28, 0.34, 0.22, 0.24, 0.45, 0.08, 0.2, 0.28, 0.26, 0.17, 0.13, 0.18, 0.32, 0.38, 0.13, 0.37, 0.41, 0.32, 0.42, 0.49, 0.28, 0.62, 0.24, 0.17, 0.2, 0.2, 0.39, 0.49, 0.33, 0.42, 0.44, 0.28, 0.39, 0.23, 0.26, 0.23, 0.0, 0.22, 0.42, 0.19, 0.27, 0.24, 0.25, 0.44, 0.22, 0.42, 0.36, 0.47, 0.35, 0.48, 0.08, 0.26, 0.29, 0.46, 0.34, 0.38, 0.38, 0.32, 0.26, 0.28, 0.21, 0.0, 0.24, 0.35, 0.27, 0.35, 0.36, 0.23, 0.49, 0.1, 0.34, 0.32, 0.3, 0.22, 0.49, 0.22, 0.03, 0.46, 0.3, 0.28, 0.62, 0.21, 0.27, 0.1, 0.39, 0.3, 0.02, 0.26, 0.2, 0.4, 0.28, 0.36, 0.42, 0.59, 0.16, 0.69, 0.49, 0.23, 0.08, 0.4, 0.49, 0.24, 0.28, 0.33, 0.86, 0.24, 0.56, 0.25, 0.43, 0.41, 0.37, 0.14, 0.49, 0.29, 0.34, 0.34, 0.2, 0.34, 0.25, 0.35, 0.11, 0.48, 0.33, 0.31, 0.42, 0.33, 0.18, 0.02, 0.39, 0.32, 0.33, 0.12, 0.37, 0.3, 0.48, 0.01, 0.31, 0.2, 0.32, 0.62, 0.25, 0.36, 0.32, 0.23, 0.23, 0.33, 0.14, 0.22, 0.74, 0.74, 0.33, 0.36, 0.24, 0.38, 0.34, 0.44, 0.31, 0.12, 0.74, 0.42, 0.49, 0.25, 0.26, 0.34, 0.07, 0.47, 0.1, 0.25, 0.38, 0.0, 0.18, 0.37, 0.3, 0.26, 0.49, 0.38, 0.35, 0.07, 0.24, 0.06, 0.33, 0.39, 0.16, 0.38, 0.44, 0.39, 0.28, 0.65, 0.54, 0.56, 0.24, 0.06, 0.48, 0.29, 0.46, 0.26, 0.18, 0.19, 0.44, 0.41, 0.33, 0.74, 0.26, 0.49, 0.29, 0.1, 0.68, 0.08, 0.24, 0.27, 0.13, 0.53, 0.2, 0.49, 0.45, 0.14, 0.06, 0.29, 0.39, 0.4, 0.21, 0.41, 0.28, 0.04, 0.25, 0.32, 0.15, 0.49, 0.25, 0.27, 0.49, 0.3, 0.41, 0.49, 0.25, 0.4, 0.28, 0.3], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Reference\", \"x\": 0.245, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Current\", \"x\": 0.755, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"barmode\": \"overlay\", \"legend\": {\"title\": {\"text\": \"target\"}, \"tracegroupgap\": 0}, \"margin\": {\"t\": 60}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.49], \"title\": {\"text\": \"citric.acid\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.51, 1.0], \"matches\": \"x\", \"title\": {\"text\": \"citric.acid\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"count\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}}}, \"citric.acid_good\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (ref)\", \"type\": \"scatter\", \"x\": [0.32, 0.24, 0.36, 0.24, 0.27, 0.21, 0.3, 0.46, 0.34, 0.26, 0.4, 0.21, 0.26, 0.33, 0.24, 0.47, 0.29, 0.76, 0.2, 0.29, 0.28, 0.27, 0.28, 0.36, 0.49, 0.27, 0.3, 0.49, 0.33, 0.48, 0.49, 0.32, 0.28, 0.34, 0.36, 0.44, 0.31, 0.31, 0.22, 0.39, 0.26, 0.49, 0.37, 0.26, 0.26, 0.32, 0.38, 0.19, 0.53, 0.3, 0.29, 0.29, 0.26, 0.29, 0.49, 0.28, 0.36, 0.38, 0.24, 0.32, 0.42, 0.23, 0.74, 0.44, 0.66, 0.13, 0.28, 0.3, 0.26, 0.36, 0.35, 0.24, 0.28, 0.68, 0.35, 0.29, 0.46, 0.28, 0.1, 0.35, 0.24, 0.34, 0.3, 0.45, 0.33, 0.34, 0.29, 0.31, 0.31, 0.41, 0.28, 0.28, 0.38, 0.4, 0.29, 0.25, 0.29, 0.28, 0.25, 0.65, 0.34, 0.36, 0.46, 0.34, 0.3, 0.32, 0.26, 0.49, 0.33, 0.02, 0.33, 0.28, 0.32, 0.29, 0.27, 0.32, 0.25, 0.36, 0.35, 0.46, 0.3, 0.49, 0.34, 0.31, 0.22, 0.02, 0.01, 0.5, 0.36, 0.0, 0.33, 0.18, 0.4, 0.32, 0.43, 0.54, 0.4, 0.02, 0.2, 0.24, 0.37, 0.31, 0.32, 0.34, 0.41, 0.43, 0.46, 0.27, 0.24, 0.32, 0.28, 0.59, 0.25, 0.26, 0.3, 0.5, 0.28, 0.35, 0.26, 0.38, 0.29, 0.27, 0.36, 0.25, 0.2, 0.34, 0.3, 0.21, 0.58, 0.04, 0.42, 0.37, 0.46, 0.28, 0.14, 0.09, 0.04, 0.21, 0.24, 0.1, 0.29, 0.49, 0.35, 0.3, 0.16, 0.29, 0.33, 0.48, 0.34, 0.31, 0.29, 0.0, 0.14, 0.05, 0.02, 0.34, 0.16, 0.32, 0.26, 0.48, 0.49, 0.27, 0.49, 0.12, 0.26, 0.37, 0.34, 0.49, 0.27, 0.43, 0.49, 0.2, 0.34, 0.32, 0.27, 0.26, 0.29, 0.49, 0.31, 0.32, 0.32, 0.49, 0.26, 0.4, 0.6, 0.37, 0.34, 0.4, 0.31, 0.29, 0.32, 0.21, 0.0, 0.28, 0.28, 0.21, 0.36, 0.41, 0.42, 0.34, 0.33, 0.39, 1.0, 0.44, 0.12, 0.32, 0.31, 0.27, 0.4, 0.33, 0.42, 0.3, 0.43, 0.35, 0.37, 0.28, 0.31, 0.14, 0.49, 0.39, 0.34, 0.49, 0.37, 0.44, 0.35, 0.32, 0.37, 0.57, 0.06, 0.34, 0.36, 0.08, 0.31, 0.3, 0.26, 0.26, 0.28, 0.41, 0.0, 0.79, 0.36, 0.44, 0.32, 0.3, 0.39, 0.42, 0.25, 0.28, 0.08, 0.39, 0.31, 0.3, 0.48, 0.24, 0.41, 0.25, 0.0, 0.12, 0.36, 0.38, 0.02, 0.24, 0.3, 0.26, 0.33, 0.46, 0.26, 0.33, 0.39, 0.47, 0.3, 0.34, 0.13, 0.36, 0.36, 0.62, 0.31, 0.3, 0.27, 0.27, 0.27, 0.38, 0.31, 0.3, 0.29, 0.02, 0.22, 0.39, 0.49, 0.27, 0.28, 0.33, 0.44, 0.57, 0.36, 0.31, 0.33, 0.33, 0.21, 0.28, 0.28, 0.45, 0.36, 0.26, 0.13, 0.49, 0.32, 0.09, 0.0, 0.36, 0.29, 0.41, 0.28, 0.3, 0.3, 0.4, 0.32, 0.33, 0.51, 0.36, 0.41, 0.19, 0.35, 0.44, 0.03, 0.27, 0.31, 0.27, 0.36, 0.26, 0.3, 0.39, 0.3, 0.23, 0.28, 0.26, 0.31, 0.0, 0.27, 0.34, 0.2, 0.32, 0.13, 0.36, 0.49, 0.29, 0.37, 0.31, 0.29, 0.37, 0.28, 0.24, 0.49, 0.3, 0.28, 0.47, 0.42, 0.28, 0.32, 0.28, 0.05, 0.21, 0.23, 0.33, 0.28, 0.32, 0.34, 0.42, 0.0, 0.49, 0.24, 0.3, 0.35, 0.3, 0.56, 0.45, 0.28, 0.35, 0.18, 0.2, 0.37, 0.31, 0.3, 0.28, 0.27, 0.18, 0.44, 0.3, 0.3, 0.36, 0.49, 0.41, 0.28, 0.31, 0.35, 0.1, 0.29, 0.01, 0.33, 0.49, 0.38, 0.74, 0.37, 0.45, 0.62, 0.33, 0.4, 0.26, 0.47, 0.28, 0.28, 0.24, 0.27, 0.35, 0.3, 0.76, 0.27, 0.01, 0.27, 0.27, 0.73, 0.29, 0.49, 0.25, 0.31, 0.02, 0.27, 0.36, 0.3, 0.51, 0.15, 0.49, 0.33, 0.32, 0.35, 0.29, 0.49, 0.34, 0.32, 0.44, 0.24, 0.48, 0.23, 0.24, 0.31, 0.39, 0.49, 0.3, 0.3, 0.05, 0.41, 0.23, 0.4, 0.41, 0.39, 0.42, 0.3, 0.35, 0.34, 0.29, 0.26, 0.31, 0.38, 0.38, 0.44, 0.33, 0.33, 0.49, 0.38, 0.27, 0.33, 0.31, 0.31, 0.5, 0.36, 0.37, 0.46, 0.44, 0.37, 0.35, 0.31, 0.25, 0.36, 0.37, 0.0, 0.3, 0.7, 0.36, 0.29, 0.33, 0.32, 0.25, 0.28, 0.21, 0.4, 0.06, 0.28, 0.29, 0.35, 0.35, 0.35, 0.29, 0.41, 0.49, 0.25, 0.25, 0.5, 0.49, 0.26, 0.29, 0.32, 0.24, 0.28, 0.4, 0.3, 0.02, 0.31, 0.36, 0.22, 0.36, 0.35, 0.34, 0.1, 0.24, 0.0, 0.32, 0.23, 0.49, 0.32, 0.32, 0.28, 0.41, 0.28, 0.37, 0.33, 0.31, 0.28, 0.3, 0.24, 0.34, 0.31, 0.35, 0.26, 0.0, 0.74, 0.01, 0.16, 0.32, 0.24, 0.32, 0.28, 0.32, 0.37, 0.29, 0.04, 0.29, 0.3, 0.16, 0.33, 0.23, 0.49, 0.38, 0.32, 0.26, 0.56, 0.66, 0.29, 0.29, 0.4, 0.27, 0.21, 0.35, 0.28, 0.24, 0.28, 0.38, 0.25, 0.49, 0.32, 0.18, 0.43, 0.33, 0.47, 0.04, 0.33, 0.27, 0.36, 0.25, 0.4, 0.33, 0.24, 0.35, 0.31, 0.31, 0.38, 0.49, 0.44, 0.4, 0.33, 0.26, 0.38, 0.22, 0.28, 0.34, 0.36], \"xaxis\": \"x\", \"y\": [0.8156061324462894, 0.42491310922683634, 0.8867827646463432, 0.8014995238430205, 0.30499958310650876, 0.5817355832705369, 0.959171062334887, 0.7854416128369749, 0.9085690698200813, 0.8998600376511439, 0.6341165000693628, 0.412102187638673, 0.7643629411050379, 0.4710001938005606, 0.40182653035141874, 0.40438056362905367, 0.8870480016118494, 0.3650667978415713, 0.9064321709292111, 0.9327245345966092, 0.6458420185168736, 0.8821841129047617, 0.6704018506542557, 0.7655671181822064, 0.8616986618932058, 0.48774537944210006, 0.9637355036179479, 0.6794204065079696, 0.6044835155949141, 0.7867954023600708, 0.9137982268836646, 0.5867502063434873, 0.8048584290077971, 0.9718511071053526, 0.9627192884041744, 0.7978623718349598, 0.6091120966723917, 0.8943338178728011, 0.8853376735027229, 0.9045563504021151, 0.9264844632598176, 0.6342457655367447, 0.9414033426130164, 0.5636516403732365, 0.5172967922101196, 0.4836896337264441, 0.35199620689495453, 0.788779954566273, 0.9696552399248426, 0.772496554239754, 0.8132656157621138, 0.4539090261140653, 0.9333708926412786, 0.679765045723866, 0.48457442622955804, 0.4248820606938153, 0.6737819616086004, 0.8780741425819777, 0.38340602447337646, 0.90634085684919, 0.5574014604752268, 0.6804147683859246, 0.9077110088845216, 0.7718472635729894, 0.4717552048891654, 0.22222808308441652, 0.8616549355667619, 0.705749071892896, 0.4699129352300819, 0.9680524782819758, 0.8891353183282249, 0.9466602521798594, 0.8553382520847058, 0.7430243903066251, 0.6616131862201935, 0.6919609500216202, 0.96565744679506, 0.913108907487878, 0.5395521774612226, 0.9026238558501023, 0.6550941529376255, 0.9757876320152292, 0.8833495792027257, 0.6666029765862381, 0.8504582120840628, 0.9320215595878566, 0.7639947574915884, 0.6085229656221847, 0.9557131606798471, 0.46184432615952054, 0.5642658412077981, 0.8815615400732472, 0.7189203536918151, 0.9301020530176726, 0.7341394174346678, 0.7759189559372703, 0.8448078654733812, 0.9012666081120407, 0.8926028620066223, 0.5287492720273277, 0.6874206920638863, 0.37408584674942635, 0.8348370105186077, 0.8697567261320243, 0.9175759024810304, 0.44644098895981, 0.8874384748400057, 0.7787567487441118, 0.9416122482572158, 0.3265229243180111, 0.9308095750950773, 0.42267134533232753, 0.43068181214270274, 0.8727308285810839, 0.7201611177732586, 0.8430904589044517, 0.8140617541555761, 0.9456747441572588, 0.6672663325862807, 0.8756470416862959, 0.518871521713375, 0.7040615347784164, 0.4957960231649875, 0.6250130361556073, 0.27413726132188326, 0.5193133578087885, 0.37656641690434584, 0.5808048103476511, 0.7917827117482167, 0.36569143480873245, 0.7232542293832885, 0.9785934574433302, 0.5715075300165849, 0.8182555969893297, 0.5448461144048058, 0.9491291995847589, 0.4833587957991669, 0.3189279754564957, 0.9184825510014271, 0.5524830505676419, 0.9600429304649183, 0.7818180966165994, 0.7962710274484252, 0.7569429870375118, 0.46184432615952054, 0.7641514270390748, 0.9486763575522457, 0.8086368705092697, 0.6784536879503494, 0.6877019790624462, 0.6082670858563528, 0.6053794617794684, 0.6319330693089359, 0.4982105707488519, 0.6787928880949093, 0.9231980717613485, 0.8831230955067948, 0.6845485656817341, 0.8799204262605215, 0.9164563829924386, 0.7819268199067826, 0.23469888428232324, 0.9492377841603665, 0.8826092272015389, 0.6360541596480074, 0.5184081252698399, 0.6400126753125241, 0.542646305979658, 0.4479501208302092, 0.7783171875827786, 0.7867712153112567, 0.5236605417423803, 0.6959846197179591, 0.7925023358445066, 0.6683189355892497, 0.18737025221649042, 0.42506327048176057, 0.7272596040941706, 0.7314191754306454, 0.4827891324637794, 0.6649341228620356, 0.9038332731164471, 0.9588917860646077, 0.8945194928389463, 0.49833043835950624, 0.7997712594855277, 0.8577935987172323, 0.7622736922026153, 0.8039391974899521, 0.7396811504731934, 0.8115340233127679, 0.801728888664367, 0.738451208106372, 0.5859674792922007, 0.1865203674848816, 0.8773430435604171, 0.36888329310067386, 0.8651817982269884, 0.9067615420962557, 0.8594983988587351, 0.7437750884018276, 0.9145224932934428, 0.9135679891815164, 0.8001832456898428, 0.6860977766129374, 0.9377826008632761, 0.9300369611912853, 0.6997062971069969, 0.5693182102579236, 0.3404656140239559, 0.7160591142088384, 0.7953146078011, 0.8869803873277935, 0.7639982823097876, 0.8681285227071118, 0.576868797021353, 0.93035102563313, 0.8375600281828176, 0.8279918435672958, 0.9266689436294401, 0.7559862346636359, 0.5099889666930224, 0.6914445842613687, 0.9651950326885705, 0.87851968214492, 0.8499702807396289, 0.4685752957996948, 0.7241546992314323, 0.7848147251007912, 0.7341394174346678, 0.7008877443692281, 0.340588975625529, 0.5013021766499856, 0.8321174529331695, 0.8818378666553491, 0.9176909075187759, 0.8634678749265305, 0.7436082905772717, 0.9343776659412377, 0.7668809937296346, 0.6243383802582345, 0.5332560471205093, 0.6907315465649003, 0.16626803588025432, 0.1668542888532837, 0.7408943843163458, 0.5221312328975666, 0.7457559475413279, 0.46389636934606376, 0.9292627865919654, 0.5268311186840582, 0.4244151934213653, 0.643310536612302, 0.8577438313980266, 0.7816208399762355, 0.8553382520847058, 0.7010035672814305, 0.5242572272016158, 0.9187320011579697, 0.8703498177621264, 0.6713045345576062, 0.9137982268836646, 0.8614414457916845, 0.9445662266054761, 0.8808216590199034, 0.7386378115490353, 0.8873009977622293, 0.9157094897337859, 0.6606038558129893, 0.9296803968514485, 0.8864322240790464, 0.5146720135715994, 0.8720710714485208, 0.9415427660945741, 0.9138701141498735, 0.6527559092576063, 0.8751970040938668, 0.9249766460056568, 0.801728888664367, 0.6575848465963361, 0.6934824043184128, 0.8619113960143526, 0.9419078024651042, 0.9591721389341828, 0.8397407150753159, 0.9084383840076588, 0.4963969309336195, 0.7359588175524252, 0.3531961907069324, 0.9279819479140234, 0.7752976919572294, 0.8665226278427577, 0.9515211055933231, 0.7314191754306454, 0.890886918514299, 0.3235491032739525, 0.3719939405423586, 0.6323804178173072, 0.8398006965792015, 0.8239469134189235, 0.8592101816891015, 0.7615002907198236, 0.8688259750909261, 0.8718104001390852, 0.5838074755684882, 0.8756470416862959, 0.901850575196968, 0.9451930143658351, 0.6253812669856891, 0.5890764576710766, 0.4921052500998711, 0.4862070578416567, 0.9170647663398394, 0.7035583451969506, 0.8476385889092957, 0.5603058978573646, 0.5810606890504925, 0.9088604673919816, 0.8903252600075929, 0.944267921154058, 0.9435968591480925, 0.938237366988842, 0.9357286047893738, 0.7961386682142712, 0.7840233885688647, 0.2513590507613302, 0.7389284097502917, 0.9053472250810051, 0.44438282424164377, 0.862281110352348, 0.8021059248496223, 0.9152740930046814, 0.643737358401971, 0.8540304955499701, 0.8613418170006786, 0.6911084183178322, 0.8848367871057808, 0.8387883096682573, 0.5942651630821018, 0.65691393717736, 0.6369979527510315, 0.8280658524313272, 0.9640736168216585, 0.6546311715671466, 0.5599819536107853, 0.48348053317652906, 0.7668016587569692, 0.03620763244300767, 0.7364400865449663, 0.37408584674942635, 0.8767503774172, 0.8743962287172513, 0.8751970040938668, 0.8833495792027257, 0.7091886355621774, 0.87006937054451, 0.7904001815220257, 0.8761418339280951, 0.8306834851111597, 0.7531715889012326, 0.38181207472529843, 0.6490458991820136, 0.9138057013338913, 0.9046222904886461, 0.17956061692355052, 0.7506163079023257, 0.8963285795381793, 0.8848361664653354, 0.9283037217377402, 0.45996158699034445, 0.7290858434196763, 0.8319094967702583, 0.6578018675312727, 0.18727567457681707, 0.8673410249845035, 0.9453298670648187, 0.9446538464906173, 0.19605573045952288, 0.6723831041639817, 0.3438281302059518, 0.37858973820495484, 0.6953170483296187, 0.21463507152544156, 0.26963792069965237, 0.3280912492037974, 0.8399932187801539, 0.420387898633768, 0.36522500752858966, 0.5810560693343539, 0.9306346767722963, 0.7167716539092029, 0.656736106921484, 0.5549139996760648, 0.6909161521388689, 0.591904263202073, 0.884703171197362, 0.866402281883595, 0.7582770814524421, 0.8990773411030794, 0.1818065866116437, 0.6222165686186035, 0.17261914235374884, 0.8156064679757086, 0.4851213943917703, 0.8871292211128762, 0.8398494053952754, 0.703270618172154, 0.6305543892506115, 0.7494149477175548, 0.1532408287022325, 0.6159732902773407, 0.738220551127759, 0.8354520044441791, 0.8536870432671441, 0.5751476712690671, 0.9077719201719568, 0.7878515691455199, 0.6672663325862807, 0.45293736875445273, 0.17058553029544155, 0.747933377844996, 0.8400163125056676, 0.4516778718827729, 0.6082670858563528, 0.8401843469141149, 0.7636885291754726, 0.789170795337903, 0.8128612802083497, 0.7522530659814418, 0.8086757686066508, 0.8356255123032285, 0.9241779635105248, 0.9674588597049086, 0.9368885694202199, 0.4990764491242286, 0.876561204324957, 0.554264192243629, 0.5967716244634195, 0.9060244606340249, 0.8401608718856799, 0.7329750583133859, 0.8021769878309102, 0.9316817655017511, 0.45488322534173153, 0.798578398438993, 0.7425236774748816, 0.5742682328784404, 0.4937681935814938, 0.8972164286692267, 0.8914273370768748, 0.9377613518261881, 0.8862258850530264, 0.8591757581361523, 0.7410678096850266, 0.6822336012657398, 0.9201658505843877, 0.6982578893131915, 0.5746709232170782, 0.7626532952948841, 0.7137703530889916, 0.7520971196461234, 0.4473853625959922, 0.7957460056304991, 0.4833174871501707, 0.8758467705785958, 0.4689303842787964, 0.6133612564737879, 0.8568681391705205, 0.6835133967314007, 0.9732070839986944, 0.21435716257549006, 0.5761668962420043, 0.4055433603128916, 0.3743394998756179, 0.9118635774953143, 0.964551884718591, 0.9306459334511011, 0.8424802355113449, 0.7739144871152517, 0.6872688771534424, 0.8590561833388345, 0.6714384475466295, 0.6408669500407106, 0.5203550269219845, 0.2856853969697174, 0.857760555506807, 0.9307094503226838, 0.6787928880949093, 0.8308635255795866, 0.29271374211533296, 0.6769315553524353, 0.23831547366416572, 0.5895099457120908, 0.8994675076574448, 0.8893400405584444, 0.8456825404777587, 0.5399612081435882, 0.6188649121485582, 0.9281492942813848, 0.7611740601422801, 0.46550237374781617, 0.8896861436466836, 0.9038901015569306, 0.5044440900554997, 0.9215480939667524, 0.6930273792518707, 0.8723244804196287, 0.5624338775604165, 0.9226297661236537, 0.8469231754225917, 0.9430557295321259, 0.9097116306258912, 0.5988707702267543, 0.3813853072548755, 0.8843832309478876, 0.9006952500629406, 0.918975987201669, 0.18997930334445084, 0.8923106748541326, 0.8461388699436441, 0.5973439234355874, 0.9544642924744549, 0.91770416680597, 0.9177239854204658, 0.17584552180125673, 0.9240099144459667, 0.48524948024905407, 0.8889685222180134, 0.5785503824403398, 0.7511953459672914, 0.6887596776945688, 0.6717539058356753, 0.7168761391602206, 0.7134478068952186, 0.834626350903405, 0.5715867980362679, 0.6588392688727011, 0.9488572786900573, 0.8920529250761863, 0.8891353183282249, 0.707981940789761, 0.926348680038428, 0.631489487929038, 0.7443856388661001, 0.9260754381930228, 0.9544642924744549, 0.8497401318990601, 0.5604010177433062, 0.8036334301115304, 0.7898153537185114, 0.8491431337122072, 0.6570881560807702, 0.8389599143569951, 0.7944137576415592, 0.8132668978866627, 0.44714680104169846, 0.7978021044641371, 0.41921696608658454, 0.38876183891604754, 0.9248463736054193, 0.4277915265084825, 0.6345107008491314, 0.8008942533173764, 0.5087430598332189, 0.9414938992689892, 0.6922115882765215, 0.8296175750175913, 0.8593339228153332, 0.8975141534758351, 0.5977126281557783, 0.9279478536756302, 0.6485770817571253, 0.8905823996589662, 0.9332072841984264, 0.9432461110830079, 0.9410120781436498, 0.6339696776630096, 0.7120962557761497, 0.5841709037351369, 0.5928970840420333, 0.9006589732900512, 0.936371533648048, 0.6907852379101131, 0.7675780198071424, 0.9444587893431046, 0.4702336163336472, 0.8925536722101626, 0.8158978708906081, 0.822780392485108, 0.8037335327290217, 0.8382351003285965, 0.8941557358589171, 0.4796498334522667, 0.926348680038428, 0.6842118015950474, 0.6463580983468415, 0.8292048071278182, 0.5834426687867836, 0.8419845362148763, 0.2431563391580561, 0.7763142135369961, 0.9390550746437164, 0.7774903237071782, 0.8141232663130791, 0.9444089886680379, 0.430401459478284, 0.9192677156927759, 0.8427595869840984, 0.87120858451521, 0.5693182102579236, 0.820012080301976, 0.58719119911586, 0.42769376643096113, 0.3542595869275313, 0.89579938191327, 0.8743523014696554, 0.7820497043505815, 0.5279069501129625, 0.8869579700149332, 0.45488774279476296, 0.8514781135508903, 0.8278297091497892, 0.663749097381813, 0.5132851713944618, 0.4906566565015208, 0.6415219885510332, 0.6991293681294938, 0.8150539074042624, 0.5800669536763935, 0.9583771200922359, 0.7366090055976814, 0.5747817696023392, 0.5315376696882942, 0.8074446941396305, 0.9038901015569306, 0.9087015650331977, 0.6697291810323083, 0.5800669536763935, 0.8807270543114014, 0.5135845984304893, 0.9352791850238339, 0.36120709973337456, 0.6206709330576408, 0.906286252315459, 0.7937202818717513], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [0.65, 0.47, 0.32, 0.08, 0.23, 0.0, 0.07, 0.52, 0.37, 0.23, 0.3, 0.49, 0.74, 0.35, 0.06, 0.2, 0.33, 0.09, 0.22, 0.0, 0.47, 0.26, 0.1, 0.3, 0.0, 0.04, 0.18, 0.32, 0.1, 0.32, 0.0, 0.27, 0.66, 0.24, 0.37, 0.49, 0.35, 0.37, 0.57, 0.36, 0.38, 0.6, 0.27, 0.14, 0.15, 0.24, 0.24, 0.27, 0.43, 0.15, 0.24, 0.22, 0.31, 0.49, 0.26, 0.49, 0.42, 0.25, 0.53, 0.52, 0.44, 0.35, 0.08, 0.24, 0.2, 0.3, 0.34, 0.21, 0.13, 0.31, 0.31, 0.65, 0.66, 0.33, 0.29, 0.07, 0.43, 0.4, 0.2, 0.36, 0.3, 0.37, 0.43, 0.2, 0.23, 0.31, 0.34, 0.17, 0.35, 0.1, 0.65, 0.24, 0.1, 0.66, 0.42, 0.52, 0.56, 0.46, 0.44, 0.35, 0.5, 0.31, 0.28, 0.34, 0.31, 0.68, 0.19, 0.37, 0.49, 0.24, 0.24, 0.33, 0.2, 0.27, 0.17, 0.36, 0.62, 0.23, 0.43, 0.26, 0.2, 0.28, 0.34, 0.55, 0.24, 0.24, 0.22, 0.22, 0.42, 0.19, 0.47, 0.22, 0.3, 0.51, 0.3, 0.2, 0.36, 0.23, 0.35, 0.21, 0.22, 0.4, 0.38, 0.18, 0.22, 0.42, 0.26, 0.34, 0.14, 0.48, 0.38, 0.0, 0.41, 0.09, 0.41, 0.0, 0.53, 0.24, 0.35, 0.07, 0.43, 0.24, 0.49, 0.23, 0.03, 0.39, 0.2, 0.23, 0.28, 0.36, 0.41, 0.18, 0.26, 0.64, 0.28, 0.28, 0.21, 0.28, 0.3, 0.1, 0.46, 0.0, 0.35, 0.34, 0.52, 0.16, 0.45, 0.24, 0.15, 0.37, 0.19, 0.3, 0.5, 0.04, 0.51, 0.0, 0.31, 0.31, 0.26, 0.21, 0.14, 0.5, 0.5, 0.43, 0.24, 0.26, 0.19, 0.41, 0.04, 0.37, 0.29, 0.28, 0.44, 0.74, 0.47, 0.13, 0.23, 0.06, 0.38, 0.48, 0.11, 0.27, 0.51, 0.41, 0.29, 0.34, 0.03, 0.47, 0.04, 0.0, 0.2, 0.54, 0.28, 0.25, 0.32, 0.21, 0.41, 0.25, 0.34, 0.56, 0.33, 0.39, 0.29, 0.32, 0.27, 0.5, 0.49, 0.24, 0.37, 0.33, 0.25, 0.26, 0.66, 0.03, 0.34, 0.51, 0.38, 0.24, 0.46, 0.63, 0.28, 0.22, 0.33, 0.57, 0.33, 0.3, 0.24, 0.22, 0.25, 0.2, 0.35, 0.3, 0.38, 0.26, 0.5, 0.39, 0.12, 0.61, 0.19, 0.13, 0.24, 0.21, 0.32, 0.07, 0.24, 0.2, 0.47, 0.3, 0.27, 0.22, 0.49, 0.55, 0.22, 0.11, 0.4, 0.26, 0.23, 0.55, 0.58, 0.2, 0.0, 0.4, 0.05, 0.33, 0.28, 0.35, 0.24, 0.16, 0.59, 0.21, 0.48, 0.2, 0.21, 0.45, 0.49, 0.37, 0.56, 0.31, 0.44, 0.14, 0.46, 0.47, 0.2, 0.24, 0.36, 0.25, 0.65, 0.54, 0.22, 0.17, 0.4, 0.35, 0.35, 0.4, 0.33, 0.24, 0.16, 0.46, 0.0, 0.46, 0.49, 0.29, 0.3, 0.22, 0.27, 0.01, 0.18, 0.49, 0.18, 0.2, 0.29, 0.03, 0.7, 0.09, 0.42], \"xaxis\": \"x\", \"y\": [0.2802292104526322, 0.9455194119275858, 0.4978743212349556, 0.5289145624519528, 0.28439238707197784, 0.2033309570226689, 0.27345747478543325, 0.8322873304845451, 0.389055896812549, 0.3675472469853882, 0.5781933746273124, 0.7401955299744071, 0.44969671697605845, 0.4367887814338696, 0.31593955341667695, 0.3775624358859999, 0.19282181046294666, 0.048451763306065584, 0.6005928650583868, 0.032225376113695775, 0.427412413738938, 0.23973251442015217, 0.13890126550157303, 0.8613925272127, 0.329663916828638, 0.19359965390713213, 0.6827271716759634, 0.1960905505555538, 0.08135735686643118, 0.39737240301928484, 0.13902987396822816, 0.6514166433739288, 0.6994753721471061, 0.7140886736258081, 0.5021795028970708, 0.48743245558712556, 0.5731139673640956, 0.8820820642542792, 0.559972149724866, 0.5061565591493914, 0.5066810377847554, 0.833805652807593, 0.6979972163580744, 0.3177574231538272, 0.13068190592986567, 0.758876109553896, 0.5681062961269688, 0.715544821914063, 0.762062625203523, 0.4464438677531786, 0.20995974230910305, 0.5262622410710028, 0.39442669669188163, 0.2537324982988368, 0.6775437642744659, 0.23876321589577687, 0.6369158982934647, 0.38960060362966165, 0.6034323722874255, 0.7769991715799629, 0.15199748354041337, 0.5641412449951732, 0.7590466800561823, 0.5969347905931296, 0.1048362779837843, 0.7217824369593382, 0.2662339163773806, 0.16472378978351135, 0.37760124376932414, 0.7071736299639594, 0.3436862995931572, 0.8384434752264291, 0.3635333644877426, 0.7813188949129265, 0.7279369976219869, 0.5641098847382463, 0.3863964747623771, 0.9209913370067284, 0.1477144681640183, 0.8809374658555192, 0.6533168894759348, 0.8873477284758582, 0.3697306267878623, 0.28319023347825867, 0.5203701741750857, 0.5523747693308857, 0.6387521731780509, 0.3881380695009739, 0.8487896327149285, 0.4636606453307818, 0.8384434752264291, 0.558266603669778, 0.21657231888677728, 0.3635333644877426, 0.5512671313974766, 0.5051039398599867, 0.5827915753039158, 0.49441682850108926, 0.47309171914705017, 0.6262595591688196, 0.5508242483721094, 0.47332791509789995, 0.7117569366896692, 0.3933786516273859, 0.16465066549244003, 0.7490394132223248, 0.769261050002088, 0.7431932405995126, 0.3141000916210982, 0.723735045552473, 0.6484132891031948, 0.688519894019609, 0.40496704226994307, 0.5803736122960511, 0.6327801522745691, 0.45115706990411364, 0.37268733756108086, 0.9009693101135351, 0.06496389958099598, 0.44431713201158524, 0.39960831974332744, 0.8662156944598043, 0.31018081106061823, 0.5339551117365043, 0.33311273919547707, 0.400132762133902, 0.8528754522806217, 0.14419347879543085, 0.11672350429510901, 0.44556702529145975, 0.6160120899414699, 0.13766892845409207, 0.5517204028384314, 0.5232178919035022, 0.35483403305733974, 0.4900213704561591, 0.8854578072659228, 0.43084122675663034, 0.7601186327653665, 0.14072030431570776, 0.6186690618327106, 0.5245054232921349, 0.7326259458716644, 0.5690781983520095, 0.4018508815425063, 0.24877469563805235, 0.7952501197393639, 0.8766221356386195, 0.303451532996695, 0.5357745481647883, 0.7096524147827454, 0.20877177283968149, 0.8635610141758273, 0.46736762313881036, 0.6061151992073851, 0.113015272873705, 0.40446014603085867, 0.6332606063976143, 0.648705381890928, 0.42186952587750404, 0.8047913565308571, 0.3017058309841093, 0.38406990132164637, 0.33494193042999065, 0.19929939967121216, 0.8624919783238055, 0.528785836409086, 0.43084122675663034, 0.47042159929499583, 0.5061565591493914, 0.5759491569657543, 0.8468794444363914, 0.20342296359496542, 0.5170831534483544, 0.3666753044655067, 0.6131723001375537, 0.4410646109528086, 0.6903416342484309, 0.3866428492574258, 0.4636606453307818, 0.4525459302795702, 0.03199256040434073, 0.7029629492254846, 0.2433141614541866, 0.548755973819273, 0.3775060302547258, 0.06593060991448157, 0.8745624549148976, 0.22931948662359403, 0.27267688907931714, 0.589328430619086, 0.8007160756317941, 0.5525637789187225, 0.5008522318356121, 0.4556212410144909, 0.17391722008742402, 0.43574637053357784, 0.3237440077649342, 0.6071692164257629, 0.6925152430641841, 0.592675381607996, 0.43854150134957587, 0.43854150134957587, 0.42437112972565305, 0.8061118855433299, 0.35195592295594336, 0.7605370065149419, 0.38898578429124253, 0.67510953655807, 0.872979709380305, 0.710510994258769, 0.720290290780972, 0.4820787970895852, 0.42019280799979697, 0.4304380754474639, 0.25285023254778977, 0.3238056884730761, 0.39471961640683584, 0.09510031985475974, 0.367046376808582, 0.21500793651835448, 0.8705359023101334, 0.6100742529031461, 0.6226449432624995, 0.7279369976219869, 0.3643494054700089, 0.09992017521484964, 0.41475515148757036, 0.6462260464983366, 0.14102909592513518, 0.48949585696458414, 0.5239520436918008, 0.6084413884537807, 0.5655473856702703, 0.9517420512476797, 0.7489379515982664, 0.4647937384849751, 0.7915321263825208, 0.44112279258530757, 0.5734340256727429, 0.6604471727860799, 0.4845203185458914, 0.6968730453869196, 0.5315374962198609, 0.8685951485887234, 0.6242442748350044, 0.2912097196987059, 0.7725938221565348, 0.2067629769731588, 0.30221725334927335, 0.13129342562285412, 0.6467789443522378, 0.6994753721471061, 0.11825382206919556, 0.41022417118631593, 0.4882665226122541, 0.7732287086973071, 0.25374762405010176, 0.49441682850108926, 0.3723877205427743, 0.652330313245635, 0.43667799883041203, 0.5964718913578133, 0.55172276504346, 0.24113559934961917, 0.8243980268882987, 0.7263843594269437, 0.43535214809021755, 0.8721122798612579, 0.18723914490145582, 0.6486906676970999, 0.11576704656818047, 0.4328241622975616, 0.491481212420291, 0.5264345378086769, 0.33856526784971647, 0.2967410926251248, 0.581398831228375, 0.5973776665460488, 0.6195406102170065, 0.37782717658841725, 0.323061133240968, 0.17420808473594895, 0.19634770547538957, 0.46492234760650425, 0.49613167963272686, 0.5812209036149294, 0.6057291775435286, 0.63414717387345, 0.5702687187355167, 0.8604975146328253, 0.6309022132706124, 0.48732991249542923, 0.6887148870948692, 0.41581945293096145, 0.5706760596351739, 0.4831274653996314, 0.06684727567316755, 0.49090643211649887, 0.15191610726090596, 0.2711405311223577, 0.7653618545702112, 0.09266565137124261, 0.4554350627407873, 0.19698919164573708, 0.6930185080649685, 0.5227537922811563, 0.50434568709929, 0.7082092780767422, 0.46058046365566996, 0.6735723234187477, 0.4285936050615775, 0.323061133240968, 0.5168500865319015, 0.6161307914674419, 0.23456444218973552, 0.3192004782541023, 0.21968945907811915, 0.5028183230931117, 0.43371621376298963, 0.6744209213341115, 0.5940260419772637, 0.13783310426722128, 0.5136444387530009, 0.5508647999875032, 0.4955911012838212, 0.9814394195009358, 0.8260225289794664, 0.17965956338109995, 0.46844896472597397, 0.6048119589659149, 0.3289160319090978, 0.2454606394453749, 0.7497022835596558, 0.683485355417811, 0.20995974230910305, 0.23504578258460665, 0.37175956099497537, 0.4875530438829156, 0.24982584224249993, 0.6282829625348888, 0.4520795162158371, 0.8200372413039435, 0.12832513643528837, 0.5299630655130737, 0.29552777318700446, 0.24021937552346023, 0.5429028773737552, 0.6311869746243346, 0.4145977043912777, 0.39329840463575844, 0.39070335653410526, 0.4286990948130573, 0.846836560604146, 0.6880850122626078], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (curr)\", \"type\": \"scatter\", \"x\": [0.19, 0.38, 0.42, 0.21, 0.23, 0.27, 0.29, 0.25, 0.31, 0.12, 0.24, 0.35, 0.25, 0.23, 0.39, 0.34, 0.0, 0.31, 0.24, 0.34, 0.3, 0.31, 0.35, 0.39, 0.28, 0.49, 0.38, 0.28, 0.32, 0.3, 0.29, 0.27, 0.37, 0.34, 0.23, 0.99, 0.27, 0.37, 0.33, 0.02, 0.34, 0.33, 0.49, 0.3, 0.42, 0.09, 0.29, 0.18, 0.33, 0.37, 0.17, 0.39, 0.44, 0.41, 0.31, 0.44, 0.56, 0.0, 0.31, 0.68, 0.09, 0.26, 0.36, 0.27, 0.29, 0.33, 0.38, 0.33, 0.06, 0.34, 0.34, 0.28, 0.28, 0.24, 0.29, 0.19, 0.24, 0.28, 0.3, 0.49, 0.4, 0.33, 0.41, 0.27, 0.34, 0.29, 0.39, 0.24, 0.49, 0.34, 0.26, 0.49, 0.26, 0.28, 0.3, 0.28, 0.4, 1.23, 0.52, 0.08, 0.44, 0.27, 0.23, 0.24, 0.34, 0.09, 0.24, 0.32, 0.42, 0.29, 0.0, 0.28, 0.3, 0.27, 0.25, 0.53, 0.22, 0.27, 0.25, 0.39, 0.23, 0.36, 0.27, 0.47, 0.1, 0.46, 0.26, 0.46, 0.4, 0.35, 0.38, 0.34, 0.28, 0.27, 0.49, 0.58, 0.34, 0.38, 0.27, 0.29, 0.45, 0.03, 0.69, 0.37, 0.26, 0.33, 0.56, 0.32, 0.3, 0.34, 0.29, 0.33, 0.31, 0.61, 0.34, 0.35, 0.38, 0.32, 0.4, 0.39, 0.39, 0.24, 0.24, 0.91, 0.49, 0.36, 0.35, 0.05, 0.4, 0.81, 0.3, 0.4, 0.28, 0.4, 0.47, 0.3, 0.17, 0.38, 0.26, 0.39, 0.3, 0.25, 0.36, 0.49, 0.32, 0.15, 0.24, 0.24, 0.36, 0.33, 0.32, 0.26, 0.32, 0.45, 0.28, 0.28, 0.32, 0.22, 0.56, 0.26, 0.36, 0.25, 0.42, 0.52, 0.5, 0.3, 0.41, 0.73, 0.3, 0.41, 0.29, 0.34, 0.24, 0.45, 0.52, 0.29, 0.38, 0.24, 0.4, 0.4, 0.49, 0.29, 0.14, 0.42, 0.5, 0.2, 0.32, 0.3, 0.45, 0.26, 0.21, 0.4, 0.39, 0.36, 0.24, 0.38, 0.24, 0.18, 0.31, 0.49, 0.35, 0.32, 0.36, 0.34, 0.2, 0.5, 0.27, 0.31, 0.34, 0.11, 0.32, 0.28, 0.44, 0.29, 0.37, 0.26, 0.74, 0.3, 0.4, 0.31, 0.02, 0.31, 0.34, 0.19, 0.27, 0.36, 0.42, 0.2, 0.42, 0.46, 0.27, 0.32, 0.32, 0.59, 0.34, 0.16, 0.49, 0.32, 0.26, 0.1, 0.53, 0.27, 0.52, 0.15, 0.32, 0.49, 0.28, 0.31, 0.07, 0.27, 0.5, 0.44, 0.28, 0.26, 0.3, 0.3, 0.48, 0.3, 0.36, 0.32, 0.29, 0.44, 0.47, 0.26, 0.36, 0.46, 0.3, 0.35, 0.39, 0.3, 0.27, 0.31, 0.08, 0.61, 0.25, 0.29, 0.4, 0.34, 0.49, 0.33, 0.28, 0.27, 0.29, 0.49, 0.37, 0.34, 0.25, 0.52, 0.58, 0.3, 0.02, 0.32, 0.0, 0.32, 0.69, 0.3, 0.42, 0.28, 0.44, 0.3, 0.31, 0.33, 0.49, 0.0, 0.08, 0.28, 0.3, 0.38, 0.49, 0.27, 0.49, 0.38, 0.32, 0.61, 0.22, 0.31, 0.25, 0.26, 0.38, 0.08, 0.29, 0.24, 0.49, 0.46, 0.43, 0.49, 0.2, 0.49, 0.41, 0.33, 0.32, 0.29, 0.4, 0.38, 0.49, 0.09, 0.37, 0.29, 0.08, 0.0, 0.27, 0.43, 0.31, 0.42, 0.39, 0.41, 0.42, 0.31, 0.11, 0.24, 0.22, 0.24, 0.45, 0.39, 0.35, 0.02, 0.39, 0.54, 0.15, 0.37, 0.42, 0.24, 0.28, 0.71, 0.27, 0.33, 0.29, 0.26, 0.28, 0.27, 0.37, 0.36, 0.49, 0.71, 0.24, 0.12, 0.38, 0.34, 0.27, 0.24, 0.25, 0.36, 0.47, 0.18, 0.54, 0.26, 0.41, 0.22, 0.29, 0.5, 0.27, 0.32, 0.38, 0.33, 0.3, 0.25, 0.38, 0.36, 0.33, 0.3, 0.3, 0.01, 0.29, 0.23, 0.38, 0.45, 0.01, 0.2, 0.19, 0.18, 0.3, 0.08, 0.26, 0.21, 0.28, 0.2, 0.31, 0.28, 0.32, 0.32, 0.3, 0.32, 0.25, 0.29, 0.31, 0.29, 0.49, 0.3, 0.33, 0.0, 0.2, 0.36, 0.2, 0.27, 0.48, 0.3, 0.2, 0.39, 0.18, 0.34, 0.23, 0.34, 0.49, 0.45, 0.38, 0.49, 0.3, 0.29, 0.1, 0.0, 0.4, 0.4, 0.39, 0.33, 0.33, 0.47, 0.42, 0.31, 0.39, 0.55, 0.41, 0.38, 0.3, 0.18, 0.24, 0.2, 0.18, 0.24, 0.43, 0.43, 0.32, 0.34, 0.28, 0.29, 0.38, 0.31, 0.31, 0.53, 0.49, 0.37, 0.33, 0.2, 0.33, 0.26, 0.4, 0.27, 0.26, 0.36, 0.35, 0.53, 0.07, 0.26, 0.36, 0.53, 0.45, 0.22, 0.66, 0.33, 0.0, 0.29, 0.32, 0.3, 0.48, 0.28, 0.37, 0.32, 0.45, 0.4, 0.24, 0.3, 0.58, 0.3, 0.21, 0.37, 0.3, 0.19, 0.21, 0.32, 0.51, 0.27, 0.26, 0.33, 0.3, 0.42, 0.3, 0.24, 0.26, 0.3, 0.39, 0.27, 0.31, 0.26, 0.29, 1.0, 0.36, 0.31, 0.38, 0.28, 0.25, 0.35, 0.2, 0.51, 0.47, 0.22, 0.31, 0.5, 0.18, 0.45, 0.15, 0.14, 0.03, 0.32, 0.36, 0.23, 0.16, 0.49, 0.26, 0.36, 0.34, 0.3, 0.21, 0.58, 0.43, 0.26, 0.36, 0.27, 0.42, 0.49, 0.26, 0.35, 0.04, 0.4, 0.28, 0.28, 0.26, 0.25, 0.27, 0.31, 0.29, 0.54, 0.28, 0.26, 0.28, 0.28, 0.18, 0.26, 0.29, 0.38, 0.65, 0.32, 0.0, 0.68, 0.36, 0.34, 0.31, 0.35, 0.46, 0.24, 0.41, 0.24, 0.3, 0.49, 0.24, 0.22, 0.31, 0.37, 0.29, 0.34], \"xaxis\": \"x2\", \"y\": [0.33396714643252134, 0.5044440900554997, 0.8874896900044845, 0.4686759077780351, 0.23831547366416572, 0.571181601185031, 0.7785327680196316, 0.7290551099174598, 0.9581131370131553, 0.6801000322064107, 0.413367674560271, 0.6667140739211237, 0.9108229754863395, 0.9275086157065797, 0.9186958597750785, 0.7191871442695774, 0.8184457509658746, 0.8597940676688322, 0.7947045908306632, 0.8244149680645384, 0.42771531534877594, 0.5315376696882942, 0.7136291946100958, 0.5510697799054304, 0.6393262665313312, 0.9016582766249417, 0.8560880110261746, 0.8947361144883382, 0.9102326114023062, 0.840723585394272, 0.9264645566705582, 0.5105903360131552, 0.752648770317166, 0.5855954083225455, 0.8989214048388485, 0.5190750352404293, 0.9560713253502463, 0.7273157243430202, 0.9279672131348602, 0.640103147954212, 0.9158977434209615, 0.9035955072010529, 0.7140955379655831, 0.233508355491505, 0.7280578325574358, 0.8810827811902006, 0.3966129217085586, 0.15541760955422754, 0.5851621750323275, 0.9046111951917862, 0.4177213302712193, 0.7993763114768937, 0.6978409661933959, 0.6473373667551029, 0.770784382977056, 0.6500641275496193, 0.548949563093737, 0.9803199442553986, 0.6150775052067382, 0.391333092160729, 0.6966682278280982, 0.9426748402861506, 0.9170092977635526, 0.844625652038695, 0.5621782696252592, 0.8935808323282117, 0.6792214086077275, 0.6719996755401956, 0.5252591274442797, 0.7277045758687855, 0.4685752957996948, 0.8616549355667619, 0.347491516391863, 0.8224130863808733, 0.5340790568488665, 0.6711667658766297, 0.5277539611022016, 0.7226430813715845, 0.8140972745487615, 0.3280236940194876, 0.9543080196225542, 0.7752655593026647, 0.9223925066666061, 0.8588031784191832, 0.6345107008491314, 0.9393010047953068, 0.7897067132703484, 0.8608062836413887, 0.8367885032124018, 0.38555642305179116, 0.8611944449682004, 0.9172341012895443, 0.9206892306522243, 0.9500505925695213, 0.537798347971205, 0.9173482789702866, 0.44454351342386716, 0.8909704850569525, 0.7351932580165473, 0.6818328744935735, 0.7981559962965634, 0.7626532952948841, 0.807353254900461, 0.964411205143099, 0.4685752957996948, 0.6986526320119215, 0.1956969407137045, 0.9233481403380283, 0.8218375601976645, 0.8536269727611236, 0.5637680470866036, 0.42267134533232753, 0.93003590801509, 0.9364808605729722, 0.8816060831574614, 0.9663102962713933, 0.8345570787709832, 0.4997893986747249, 0.7921603237806832, 0.5586815647381762, 0.8622246464681924, 0.9828719612298703, 0.909295720392338, 0.9476267884443668, 0.5395521774612226, 0.901360886913609, 0.39410444510430487, 0.9262213132200262, 0.6627387433216217, 0.9629433821448677, 0.9614311452267452, 0.9802968012486629, 0.933760787013923, 0.34432718187202205, 0.63596173557573, 0.624364378916488, 0.7417789548241253, 0.7300918276682445, 0.6968315453320488, 0.7840233885688647, 0.8958841271622066, 0.5417426694559925, 0.7102579146160282, 0.6004345411549624, 0.515920701757342, 0.7587882454650442, 0.5029588531082266, 0.6887596776945688, 0.8642849605932809, 0.6469572639767995, 0.8103639651534781, 0.939764354405301, 0.694136577696587, 0.6593725303534554, 0.9646797005081557, 0.7979900311745153, 0.792123904710467, 0.8869579700149332, 0.7351250317969437, 0.5332560471205093, 0.9406873315653421, 0.39362685027924615, 0.9466602521798594, 0.8394325033041952, 0.6633442657978572, 0.8126408700417265, 0.7332457619716184, 0.08024070404520958, 0.8667774471450977, 0.6466814331404849, 0.912366876100516, 0.656670904734599, 0.8701678467707724, 0.8875925797813499, 0.9658725076002231, 0.7668332861852056, 0.8604440887473094, 0.934384507524058, 0.9605946056867319, 0.951253157591183, 0.5749289095213865, 0.6279243005170476, 0.7937202818717513, 0.7665301650725991, 0.700127941221274, 0.8531107444728586, 0.7947045908306632, 0.8870566665876504, 0.5476228787844645, 0.8410401833568673, 0.8736671065238262, 0.6519898659949606, 0.936943112068646, 0.9077719201719568, 0.8071889556778997, 0.8815615400732472, 0.8935313268029127, 0.8782891297971865, 0.5029588531082266, 0.5797201450332624, 0.9416775458320723, 0.5958140198486584, 0.2485157288688957, 0.932021424688801, 0.8531502837407814, 0.6344194678828672, 0.632587077283238, 0.9121448358615357, 0.5776545535910985, 0.9052765174806566, 0.8580390107418799, 0.8998644401112552, 0.6784536879503494, 0.9458342431661766, 0.21387363850783603, 0.9530348339880965, 0.7307391114165022, 0.7187682731289255, 0.6905635603269331, 0.9569274903702625, 0.9287384091375525, 0.3856984054091925, 0.504413920551941, 0.5389739198483336, 0.5921068831639978, 0.10702848140489757, 0.8772993497727819, 0.6361944011057532, 0.8952999713010865, 0.7069578609115064, 0.10632960186243966, 0.6465592619811017, 0.9116333268133815, 0.9210441535829985, 0.9483358221641291, 0.5800224234700003, 0.896951343689222, 0.8958659323404018, 0.8896861436466836, 0.7763142135369961, 0.778627444633172, 0.9274605647284293, 0.9167924025380936, 0.6422094408272838, 0.6363725079258666, 0.8694129796739031, 0.5693182102579236, 0.5315376696882942, 0.6814536952243052, 0.30089534057709466, 0.6689448970920832, 0.6419522618821227, 0.6500641275496193, 0.8221968069187356, 0.9285763346020383, 0.8495153837633861, 0.7135666997345446, 0.8850789772017983, 0.9128367188568884, 0.8709442503982084, 0.44714680104169846, 0.7147831401969469, 0.6814536952243052, 0.5823319261018008, 0.7718122970862826, 0.8925058444773368, 0.9249991097277733, 0.7849066379312727, 0.5120166815330335, 0.7863291630268572, 0.8171821177205619, 0.8878235148823457, 0.9813953955585096, 0.5009899161211654, 0.6787020040856314, 0.2747106808400709, 0.6998114428322438, 0.7191783799678735, 0.7566715075843347, 0.7741630673610131, 0.692871858980435, 0.8706970297938403, 0.9226518689226377, 0.619213859232465, 0.9620625840847012, 0.8161066853745392, 0.7984578805051198, 0.8987836568806694, 0.27900511725120763, 0.747868261422589, 0.8013372150606806, 0.4430395412241901, 0.8082746512504794, 0.9248395818955686, 0.8132668978866627, 0.7926355964369082, 0.7243101498981422, 0.8251498778038484, 0.865753667016409, 0.8784859927081519, 0.9613966942665844, 0.8380103992838959, 0.9376908870460701, 0.8505645904112248, 0.5317253080143199, 0.8756470416862959, 0.8823120896825394, 0.8920529250761863, 0.9565288857220365, 0.92576324319171, 0.8397457208604353, 0.8008835764985612, 0.7620555647282774, 0.6333567796033132, 0.8986985644274655, 0.8289197139212982, 0.38568054861828666, 0.4358764146033148, 0.7013568331933456, 0.5524769805317635, 0.8654015550049637, 0.9625385348003681, 0.4997035751430624, 0.5940434106189647, 0.29640429037896177, 0.9370396801623051, 0.7496358493500708, 0.8521916566704996, 0.7519935213994349, 0.8956127660014477, 0.7563308848917781, 0.5425355780301907, 0.1652985164032473, 0.5777375433929663, 0.5926841497777402, 0.5247451599628447, 0.6215406511606532, 0.646742228322253, 0.5236567091352762, 0.8105889943537302, 0.7614647275399787, 0.7272264480694343, 0.44438282424164377, 0.8051848688934031, 0.253979247575754, 0.8737269176380216, 0.7884186533408385, 0.5226162157005312, 0.7776146375974927, 0.8021344726910251, 0.6794204065079696, 0.8398669626756513, 0.3743394998756179, 0.6593725303534554, 0.41008410759983227, 0.8726624594592295, 0.31336232876890546, 0.6187135046228962, 0.9208146539756937, 0.8948907807194619, 0.9475948217130945, 0.7098971478357265, 0.41970311630379203, 0.5524505095188592, 0.6689295490636696, 0.39534528644804523, 0.6686700461744643, 0.6608417181144597, 0.6289006219381473, 0.8112353209803558, 0.9675531845963172, 0.3468688843876404, 0.8171815196180959, 0.9315945487332388, 0.7612383340144859, 0.43979370974717685, 0.9452166580978265, 0.810349906376065, 0.4979189466877109, 0.9054024939516333, 0.7506263221664519, 0.8595966107872783, 0.9041757536760852, 0.5120166815330335, 0.9246344940597735, 0.622364539475366, 0.7975959936185795, 0.9376528402833735, 0.8270495791839716, 0.7463426393970082, 0.8508295060861325, 0.5277539611022016, 0.7926521549058593, 0.8343380415579561, 0.7973631232158779, 0.5423298306356671, 0.6253812669856891, 0.9342151247863544, 0.9064095870896521, 0.8428584418618921, 0.5680191878381406, 0.8230633503438987, 0.857993972512287, 0.8312116035859974, 0.8886868130574391, 0.5695902702544526, 0.8750573328895943, 0.47134086624147714, 0.6082670858563528, 0.8571520978358925, 0.7006810412396262, 0.6001343818465046, 0.8680196363335714, 0.7833148206731655, 0.835330250744176, 0.6883000602161935, 0.4297997702781997, 0.7132181587745201, 0.941909753873568, 0.9298379484442667, 0.8950633078112005, 0.9652574497835966, 0.8593048115498744, 0.23022113319019433, 0.5548683876071567, 0.8789570823277312, 0.7176343272433334, 0.7135972690872326, 0.900955402304434, 0.89110615578316, 0.8021344726910251, 0.36734125225010755, 0.9233813125795639, 0.9269988231022361, 0.6021478506882372, 0.27064660283581765, 0.7595966254948197, 0.5317253080143199, 0.9626288904553877, 0.518871521713375, 0.4244151934213653, 0.8784852709235653, 0.667697582798242, 0.6791650855490978, 0.8659372985570389, 0.5217980090164113, 0.9757802673562255, 0.20769640873195563, 0.6900575067285889, 0.15051833553221247, 0.8476988333501053, 0.12043274000614122, 0.6546311715671466, 0.412102187638673, 0.6339696776630096, 0.6925917751558638, 0.8074446941396305, 0.8417042066658985, 0.4702054036006336, 0.8107456318417504, 0.934253622333564, 0.9671353887875448, 0.3776875782453083, 0.5133306968464912, 0.8279918435672958, 0.7295730380004212, 0.8398957027397556, 0.7470826509089123, 0.7722124156410631, 0.3944809481034696, 0.5801047158883857, 0.7134138458261836, 0.8265590446981121, 0.5836238058504062, 0.7538957359152121, 0.9708936701567454, 0.41507295289487073, 0.9039211350062085, 0.5109703825452502, 0.8880660412534, 0.6332514250278477, 0.703270618172154, 0.863031725372896, 0.9601349291832292, 0.5845797646527732, 0.8357575010967041, 0.9584406458449958, 0.8733333206292072, 0.4740801794177068, 0.5787650908025566, 0.38525623454815555, 0.5715075300165849, 0.951253157591183, 0.831291834366621, 0.6482062646591596, 0.5447536045265621, 0.8456825404777587, 0.5358725178581014, 0.8893400405584444, 0.5955893395860203, 0.9408369636189147, 0.7580589814818564, 0.4244151934213653, 0.7636885291754726, 0.9532052815091139, 0.6686700461744643, 0.39683939049776734, 0.8309978518015588, 0.06774730328187532, 0.8934061610794648, 0.9459413258233057, 0.8507977517004935, 0.9694554821790147, 0.8640493534313302, 0.8409166048571896, 0.9059760843724536, 0.7278052027863667, 0.8952246802917138, 0.39534528644804523, 0.9558702864115934, 0.9178754126151818, 0.7504628435478695, 0.7568870052952757, 0.32046258648166903, 0.9712495894387816, 0.7125870341029702, 0.8286889773580812, 0.929575727770858, 0.8422483936479932, 0.60065365322741, 0.5775074082600717, 0.7505976846167132, 0.5317253080143199, 0.9590110623565244, 0.9651712957082627, 0.7333643603414158, 0.7757825668725274, 0.8928390517037824, 0.2578168736401774, 0.5355488836719776, 0.8408692583280314, 0.7849780542174357, 0.8711681462620556, 0.8447990405440073, 0.9571933326515756, 0.9307123551507692, 0.6421242495412457, 0.9239207054420927, 0.9336219461922934, 0.4244151934213653, 0.5673643045526261, 0.8301442064454496, 0.528471943574542, 0.8835542071774324, 0.8820947700128993, 0.4561713647735051, 0.584381944856391, 0.9493936477483658, 0.7816316980556022, 0.7770145472448273, 0.8495153837633861, 0.8318035560268552, 0.5220388622338656, 0.8589980209217414, 0.21216021099657945, 0.8782303617207965, 0.901850575196968, 0.7683760396387002, 0.9559989503713009, 0.938411491366706, 0.7225398931917507, 0.5918361617892179, 0.8596378534897678, 0.8816239240572568, 0.9296844522785247, 0.8299758417251202, 0.7538846798551382, 0.931253582726863, 0.6902425303942638, 0.9299571155275668, 0.35461708236434614, 0.6119587629530028, 0.8979450471026776, 0.8782891297971865, 0.6144930729026484, 0.5601837238662909, 0.4230258756549153, 0.5115702372514986, 0.6133200318312215, 0.8287048127179734, 0.42887934024879554, 0.5543929044930882, 0.5414149972460248, 0.7453725251924848, 0.6522898344923613, 0.6445138145159856, 0.9212190995841192, 0.6991293681294938, 0.9188224881967051, 0.9444881948020799, 0.8399825546316605, 0.6440269003431431, 0.45260210695563535, 0.6678228102737954, 0.8535669746933884, 0.23469888428232324, 0.7581156815660375, 0.8329520097124233, 0.5886389680190937, 0.4250130050586104, 0.290761161529129, 0.9065968169685268, 0.39757013049667705, 0.9584529405260903, 0.24804178200132845, 0.8400605958344816, 0.9562762484868867, 0.5923100188758571, 0.5355488836719776, 0.6866862751474886, 0.753715093249364, 0.9302702282582556, 0.8405005145861136, 0.7758456574858743, 0.8270123797965384, 0.9270997487744173, 0.8779999285967196, 0.6350604679157676, 0.9057987369792326, 0.9732730617650076, 0.28007269673131574, 0.5393237551960537, 0.9509318156255189, 0.8055358405733448, 0.8512314640165554, 0.6752183046546253, 0.9766791413071304, 0.26893819095773785, 0.5105552073939665, 0.7964242570425004, 0.9159462749375985, 0.46312559485344046, 0.7889853219989779, 0.5331772070153998, 0.6250130361556073, 0.5340700079782073, 0.8981158701031157, 0.8424802355113449], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [0.49, 0.12, 0.36, 0.29, 0.4, 0.4, 0.18, 0.04, 0.24, 0.65, 0.25, 0.39, 0.4, 0.26, 0.45, 0.36, 0.32, 0.49, 0.34, 0.07, 0.39, 0.13, 0.36, 0.64, 0.37, 0.31, 0.3, 0.23, 0.29, 0.74, 0.79, 0.2, 0.0, 0.17, 0.33, 0.21, 0.32, 0.11, 0.19, 0.06, 0.29, 0.2, 0.74, 0.29, 0.32, 0.25, 0.24, 0.25, 0.29, 0.35, 0.54, 0.26, 0.49, 0.22, 0.1, 0.23, 0.01, 0.49, 0.29, 0.2, 0.49, 0.34, 0.18, 0.4, 0.21, 0.06, 0.59, 0.0, 0.0, 0.03, 0.02, 0.25, 0.14, 0.26, 0.35, 0.28, 0.46, 0.52, 0.21, 0.3, 0.34, 0.18, 0.2, 0.33, 0.49, 0.27, 0.3, 0.34, 0.13, 0.36, 0.49, 0.26, 0.41, 0.42, 0.01, 0.0, 0.49, 0.19, 0.08, 0.55, 0.45, 0.32, 0.36, 0.11, 0.32, 0.09, 0.04, 0.0, 0.26, 0.41, 0.06, 0.5, 0.02, 0.29, 0.28, 0.34, 0.22, 0.24, 0.45, 0.08, 0.2, 0.28, 0.26, 0.17, 0.13, 0.18, 0.32, 0.38, 0.13, 0.37, 0.41, 0.32, 0.42, 0.49, 0.28, 0.62, 0.24, 0.17, 0.2, 0.2, 0.39, 0.49, 0.33, 0.42, 0.44, 0.28, 0.39, 0.23, 0.26, 0.23, 0.0, 0.22, 0.42, 0.19, 0.27, 0.24, 0.25, 0.44, 0.22, 0.42, 0.36, 0.47, 0.35, 0.48, 0.08, 0.26, 0.29, 0.46, 0.34, 0.38, 0.38, 0.32, 0.26, 0.28, 0.21, 0.0, 0.24, 0.35, 0.27, 0.35, 0.36, 0.23, 0.49, 0.1, 0.34, 0.32, 0.3, 0.22, 0.49, 0.22, 0.03, 0.46, 0.3, 0.28, 0.62, 0.21, 0.27, 0.1, 0.39, 0.3, 0.02, 0.26, 0.2, 0.4, 0.28, 0.36, 0.42, 0.59, 0.16, 0.69, 0.49, 0.23, 0.08, 0.4, 0.49, 0.24, 0.28, 0.33, 0.86, 0.24, 0.56, 0.25, 0.43, 0.41, 0.37, 0.14, 0.49, 0.29, 0.34, 0.34, 0.2, 0.34, 0.25, 0.35, 0.11, 0.48, 0.33, 0.31, 0.42, 0.33, 0.18, 0.02, 0.39, 0.32, 0.33, 0.12, 0.37, 0.3, 0.48, 0.01, 0.31, 0.2, 0.32, 0.62, 0.25, 0.36, 0.32, 0.23, 0.23, 0.33, 0.14, 0.22, 0.74, 0.74, 0.33, 0.36, 0.24, 0.38, 0.34, 0.44, 0.31, 0.12, 0.74, 0.42, 0.49, 0.25, 0.26, 0.34, 0.07, 0.47, 0.1, 0.25, 0.38, 0.0, 0.18, 0.37, 0.3, 0.26, 0.49, 0.38, 0.35, 0.07, 0.24, 0.06, 0.33, 0.39, 0.16, 0.38, 0.44, 0.39, 0.28, 0.65, 0.54, 0.56, 0.24, 0.06, 0.48, 0.29, 0.46, 0.26, 0.18, 0.19, 0.44, 0.41, 0.33, 0.74, 0.26, 0.49, 0.29, 0.1, 0.68, 0.08, 0.24, 0.27, 0.13, 0.53, 0.2, 0.49, 0.45, 0.14, 0.06, 0.29, 0.39, 0.4, 0.21, 0.41, 0.28, 0.04, 0.25, 0.32, 0.15, 0.49, 0.25, 0.27, 0.49, 0.3, 0.41, 0.49, 0.25, 0.4, 0.28, 0.3], \"xaxis\": \"x2\", \"y\": [0.8142007211296887, 0.07257977436397642, 0.7430932382113554, 0.8214862427787604, 0.5698848321031316, 0.6048119589659149, 0.6466669219762841, 0.14510080060429495, 0.2250304680670007, 0.28492472637839966, 0.42061632734231896, 0.8281252124183194, 0.49622399336621903, 0.3482895521074759, 0.4678833354511545, 0.5708968386647719, 0.37048677721847617, 0.553632248395139, 0.8702137350251022, 0.42186952587750404, 0.8696774950675754, 0.5410576963494411, 0.3971326977900686, 0.3275001196198921, 0.9448289227093116, 0.7109941475090589, 0.41925580570138304, 0.3675472469853882, 0.6721911818800557, 0.5562207270314473, 0.5262426608517637, 0.3244609607385458, 0.15056615442564347, 0.15676979724311627, 0.6037730696030339, 0.6342511279653397, 0.021947035536558718, 0.32429164429335744, 0.5678746850743716, 0.3571680467137555, 0.7755534309390314, 0.3240287891037917, 0.699424662214302, 0.5151532452376618, 0.7564675819717819, 0.38343591026479057, 0.19811005648518398, 0.3168419703358067, 0.5315947262677626, 0.9269044449273315, 0.8260225289794664, 0.451791899378283, 0.830516920403184, 0.47128602930186, 0.19027823806377472, 0.5181346713949518, 0.29552777318700446, 0.45414400334446664, 0.39329840463575844, 0.42327932510626076, 0.45838907164509224, 0.2233864252642039, 0.3628419195926303, 0.6709353200988277, 0.46058046365566996, 0.25551237833043455, 0.7234147543269824, 0.1481282262733752, 0.314935793994079, 0.20050531530561894, 0.37453315488553635, 0.701015529968035, 0.6343341418527783, 0.1739320900588749, 0.734996253073231, 0.8172229478314255, 0.3598554146739685, 0.7121055211356295, 0.2620604909731644, 0.3421138035730516, 0.6951268813066005, 0.35208221297891723, 0.452099210446082, 0.18907620085798427, 0.5444201651108793, 0.6484058972837882, 0.3258186925596978, 0.5963383680780668, 0.6202666247822538, 0.576738593946626, 0.5054992484109841, 0.2972245631729925, 0.6844333356791464, 0.42629475072919953, 0.4405153833121037, 0.01207867704715336, 0.7609288944606691, 0.23951123982998349, 0.09310514674080905, 0.5084920166510624, 0.33067609257366243, 0.36481899584296196, 0.5708968386647719, 0.3194802059637459, 0.14207297841267416, 0.5776897120055972, 0.2026163425795633, 0.37909000048748537, 0.38206764842015895, 0.41324683104354176, 0.17826143731067332, 0.42339414872454434, 0.39148091864802853, 0.3511350413575442, 0.8053393751847749, 0.5937005322868365, 0.6849942580153355, 0.38930033076762494, 0.5168500865319015, 0.5699073288866824, 0.5376087249833421, 0.8185832461647057, 0.25950508036415604, 0.20394483716883388, 0.3303044530853749, 0.2528102968078532, 0.8477719856767125, 0.5217124250004609, 0.3303044530853749, 0.5382885532339231, 0.9625763866028243, 0.6536174904341296, 0.42629475072919953, 0.6458781618432388, 0.46574001023909845, 0.37268733756108086, 0.8180085473348132, 0.35493594975273335, 0.2423640089427935, 0.3636330633241046, 0.6421622311157122, 0.5444201651108793, 0.7396308412796291, 0.9036153464846048, 0.21101569987323432, 0.6004024464464508, 0.7595861882737439, 0.486549602332862, 0.2379839758891197, 0.5147825233229498, 0.2065932277190248, 0.4342628292980428, 0.5940848250235929, 0.4857193175270624, 0.5332610244722983, 0.5402196969638672, 0.8578846895389459, 0.5290225674595067, 0.6074669506688956, 0.1847839155105034, 0.3581391437324269, 0.4304380754474639, 0.8410120374942113, 0.5810086483513661, 0.19026233744636453, 0.7223494520380469, 0.8589928738613049, 0.8374625942163022, 0.781203852328267, 0.73983195178881, 0.41156537259256004, 0.7482873396984137, 0.44431713201158524, 0.7113673874393347, 0.49869552495399233, 0.7627102864663872, 0.37193390769028617, 0.37187810520956766, 0.3773291605703562, 0.8719651627687759, 0.6218762459828849, 0.3781393537983126, 0.553632248395139, 0.47624084907999176, 0.774399353278846, 0.5840424935194366, 0.5601025471409736, 0.6186690618327106, 0.620611700356168, 0.5755798886129706, 0.15047650536569443, 0.5530049338021776, 0.6597439619439023, 0.8300222117931148, 0.3490158529243493, 0.4410646109528086, 0.5067909967309752, 0.5851482063434866, 0.7149827463187939, 0.4849259975950144, 0.2094210588097294, 0.33399024531412796, 0.4083143545243069, 0.7497022835596558, 0.7817929239213606, 0.7637421953724776, 0.3825655414920891, 0.6611482494098961, 0.19022241257108333, 0.44972084577511023, 0.5476732603321269, 0.4831274653996314, 0.5077048340566679, 0.7289504589448288, 0.4379810490617926, 0.8017221455714771, 0.6434673631716396, 0.5059779734745421, 0.6065367192264559, 0.650368705032214, 0.34567471266024347, 0.39561589000187136, 0.3427787545601037, 0.4676404271158623, 0.5332283386400669, 0.4519108142444285, 0.40662831629925006, 0.42305576187259053, 0.22032895172816622, 0.5278715769330472, 0.43679486629948455, 0.743933429392776, 0.5269515041023835, 0.5008800654866953, 0.214168174561682, 0.44879088851457377, 0.683485355417811, 0.807753104897186, 0.42629475072919953, 0.8502951424821861, 0.17421175568219957, 0.25491371883486935, 0.7595861882737439, 0.6571724132942184, 0.7813188949129265, 0.5626906653340306, 0.8674288259883418, 0.6600514650598344, 0.4827749661719035, 0.5456147119159479, 0.39827550056677263, 0.27323823737433794, 0.695896529362927, 0.5048820477254727, 0.5422349097465021, 0.5610936746718964, 0.6571724132942184, 0.3088751107498249, 0.45428761266464013, 0.6604471727860799, 0.43371621376298963, 0.6171893197168647, 0.8100511550343341, 0.8100511550343341, 0.605832578461134, 0.5526475584669951, 0.4275055171336787, 0.8734720021260204, 0.8508295378350301, 0.5807723706867254, 0.8272749548927728, 0.2670652478909882, 0.7020144194675465, 0.4615566916191992, 0.7055847950248242, 0.43389869234556755, 0.6071692164257629, 0.3496825637352313, 0.23676491619791426, 0.7057755976874825, 0.15539001443149586, 0.6187538615870153, 0.8735882828904331, 0.30049486749739024, 0.23191705420611952, 0.8913917397916864, 0.4977157214618499, 0.16961113509580228, 0.8485494795219795, 0.4760032757956232, 0.5053843099270294, 0.2676015269871764, 0.3627664421236291, 0.15146266807038725, 0.7898179638281774, 0.6145296307645981, 0.3790380236797623, 0.3003532640340299, 0.6086112016774773, 0.39906793889171593, 0.8185832461647057, 0.6715802865662828, 0.8260225289794664, 0.6056902064850618, 0.400132762133902, 0.39471961640683584, 0.6449859309106076, 0.5637152910565628, 0.39949420960438964, 0.5490401551410112, 0.4398875418860128, 0.30916577334906253, 0.7093303227687476, 0.4562508424819209, 0.40444044759428516, 0.5773483646962835, 0.447777692034652, 0.4961542215384683, 0.32474312180562226, 0.21192693199409943, 0.9056903490933487, 0.5013816399998683, 0.758876109553896, 0.6364928148646596, 0.2952804752502578, 0.4748951900520853, 0.43679486629948455, 0.5479962315186364, 0.4728142838839701, 0.6343341418527783, 0.12248807650217919, 0.5052525886146573, 0.8281252124183194, 0.8930081609652758, 0.36283726088930296, 0.8098196742550625, 0.656477404357746, 0.193885049884708, 0.5269515041023835, 0.49858469647139786, 0.32780472036158087, 0.24927512797396847, 0.6148718578314069, 0.10691527318901187, 0.136775438340409, 0.8489192718114075, 0.2600203086082801, 0.8142007211296887, 0.5269515041023835, 0.7966615933629455, 0.5633234794197017, 0.767479452333631], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"citric.acid\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"citric.acid\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}, \"citric.acid_bad\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (ref)\", \"type\": \"scatter\", \"x\": [0.65, 0.47, 0.32, 0.08, 0.23, 0.0, 0.07, 0.52, 0.37, 0.23, 0.3, 0.49, 0.74, 0.35, 0.06, 0.2, 0.33, 0.09, 0.22, 0.0, 0.47, 0.26, 0.1, 0.3, 0.0, 0.04, 0.18, 0.32, 0.1, 0.32, 0.0, 0.27, 0.66, 0.24, 0.37, 0.49, 0.35, 0.37, 0.57, 0.36, 0.38, 0.6, 0.27, 0.14, 0.15, 0.24, 0.24, 0.27, 0.43, 0.15, 0.24, 0.22, 0.31, 0.49, 0.26, 0.49, 0.42, 0.25, 0.53, 0.52, 0.44, 0.35, 0.08, 0.24, 0.2, 0.3, 0.34, 0.21, 0.13, 0.31, 0.31, 0.65, 0.66, 0.33, 0.29, 0.07, 0.43, 0.4, 0.2, 0.36, 0.3, 0.37, 0.43, 0.2, 0.23, 0.31, 0.34, 0.17, 0.35, 0.1, 0.65, 0.24, 0.1, 0.66, 0.42, 0.52, 0.56, 0.46, 0.44, 0.35, 0.5, 0.31, 0.28, 0.34, 0.31, 0.68, 0.19, 0.37, 0.49, 0.24, 0.24, 0.33, 0.2, 0.27, 0.17, 0.36, 0.62, 0.23, 0.43, 0.26, 0.2, 0.28, 0.34, 0.55, 0.24, 0.24, 0.22, 0.22, 0.42, 0.19, 0.47, 0.22, 0.3, 0.51, 0.3, 0.2, 0.36, 0.23, 0.35, 0.21, 0.22, 0.4, 0.38, 0.18, 0.22, 0.42, 0.26, 0.34, 0.14, 0.48, 0.38, 0.0, 0.41, 0.09, 0.41, 0.0, 0.53, 0.24, 0.35, 0.07, 0.43, 0.24, 0.49, 0.23, 0.03, 0.39, 0.2, 0.23, 0.28, 0.36, 0.41, 0.18, 0.26, 0.64, 0.28, 0.28, 0.21, 0.28, 0.3, 0.1, 0.46, 0.0, 0.35, 0.34, 0.52, 0.16, 0.45, 0.24, 0.15, 0.37, 0.19, 0.3, 0.5, 0.04, 0.51, 0.0, 0.31, 0.31, 0.26, 0.21, 0.14, 0.5, 0.5, 0.43, 0.24, 0.26, 0.19, 0.41, 0.04, 0.37, 0.29, 0.28, 0.44, 0.74, 0.47, 0.13, 0.23, 0.06, 0.38, 0.48, 0.11, 0.27, 0.51, 0.41, 0.29, 0.34, 0.03, 0.47, 0.04, 0.0, 0.2, 0.54, 0.28, 0.25, 0.32, 0.21, 0.41, 0.25, 0.34, 0.56, 0.33, 0.39, 0.29, 0.32, 0.27, 0.5, 0.49, 0.24, 0.37, 0.33, 0.25, 0.26, 0.66, 0.03, 0.34, 0.51, 0.38, 0.24, 0.46, 0.63, 0.28, 0.22, 0.33, 0.57, 0.33, 0.3, 0.24, 0.22, 0.25, 0.2, 0.35, 0.3, 0.38, 0.26, 0.5, 0.39, 0.12, 0.61, 0.19, 0.13, 0.24, 0.21, 0.32, 0.07, 0.24, 0.2, 0.47, 0.3, 0.27, 0.22, 0.49, 0.55, 0.22, 0.11, 0.4, 0.26, 0.23, 0.55, 0.58, 0.2, 0.0, 0.4, 0.05, 0.33, 0.28, 0.35, 0.24, 0.16, 0.59, 0.21, 0.48, 0.2, 0.21, 0.45, 0.49, 0.37, 0.56, 0.31, 0.44, 0.14, 0.46, 0.47, 0.2, 0.24, 0.36, 0.25, 0.65, 0.54, 0.22, 0.17, 0.4, 0.35, 0.35, 0.4, 0.33, 0.24, 0.16, 0.46, 0.0, 0.46, 0.49, 0.29, 0.3, 0.22, 0.27, 0.01, 0.18, 0.49, 0.18, 0.2, 0.29, 0.03, 0.7, 0.09, 0.42], \"xaxis\": \"x\", \"y\": [0.7197707895473677, 0.05448058807241418, 0.5021256787650443, 0.4710854375480472, 0.7156076129280222, 0.7966690429773311, 0.7265425252145667, 0.16771266951545494, 0.610944103187451, 0.6324527530146118, 0.42180662537268765, 0.2598044700255929, 0.5503032830239416, 0.5632112185661304, 0.6840604465833231, 0.6224375641140001, 0.8071781895370533, 0.9515482366939344, 0.3994071349416132, 0.9677746238863042, 0.572587586261062, 0.7602674855798478, 0.861098734498427, 0.1386074727873, 0.6703360831713621, 0.8064003460928679, 0.3172728283240366, 0.8039094494444462, 0.9186426431335688, 0.6026275969807151, 0.8609701260317718, 0.3485833566260712, 0.3005246278528939, 0.2859113263741919, 0.4978204971029292, 0.5125675444128744, 0.4268860326359044, 0.11791793574572085, 0.440027850275134, 0.4938434408506086, 0.4933189622152446, 0.166194347192407, 0.30200278364192557, 0.6822425768461728, 0.8693180940701344, 0.24112389044610405, 0.43189370387303117, 0.284455178085937, 0.23793737479647703, 0.5535561322468214, 0.7900402576908969, 0.47373775892899717, 0.6055733033081183, 0.7462675017011632, 0.32245623572553406, 0.7612367841042231, 0.36308410170653527, 0.6103993963703384, 0.3965676277125745, 0.2230008284200371, 0.8480025164595866, 0.43585875500482685, 0.24095331994381775, 0.4030652094068704, 0.8951637220162157, 0.2782175630406618, 0.7337660836226194, 0.8352762102164887, 0.6223987562306759, 0.2928263700360406, 0.6563137004068428, 0.16155652477357085, 0.6364666355122575, 0.2186811050870735, 0.27206300237801306, 0.4358901152617537, 0.6136035252376228, 0.07900866299327158, 0.8522855318359817, 0.11906253414448076, 0.3466831105240652, 0.11265227152414181, 0.6302693732121377, 0.7168097665217413, 0.4796298258249143, 0.4476252306691143, 0.3612478268219491, 0.611861930499026, 0.15121036728507153, 0.5363393546692182, 0.16155652477357085, 0.441733396330222, 0.7834276811132227, 0.6364666355122575, 0.44873286860252337, 0.4948960601400133, 0.4172084246960842, 0.5055831714989107, 0.5269082808529498, 0.3737404408311804, 0.4491757516278906, 0.5266720849021, 0.2882430633103308, 0.6066213483726142, 0.83534933450756, 0.2509605867776752, 0.230738949997912, 0.25680675940048736, 0.6858999083789018, 0.27626495444752697, 0.35158671089680515, 0.311480105980391, 0.5950329577300569, 0.4196263877039489, 0.3672198477254309, 0.5488429300958864, 0.6273126624389191, 0.0990306898864649, 0.935036100419004, 0.5556828679884147, 0.6003916802566726, 0.1337843055401957, 0.6898191889393818, 0.46604488826349566, 0.6668872608045229, 0.5998672378660981, 0.14712454771937833, 0.8558065212045691, 0.883276495704891, 0.5544329747085402, 0.38398791005853006, 0.8623310715459079, 0.4482795971615686, 0.4767821080964978, 0.6451659669426603, 0.5099786295438409, 0.11454219273407718, 0.5691587732433696, 0.2398813672346335, 0.8592796956842923, 0.38133093816728936, 0.4754945767078651, 0.2673740541283356, 0.43092180164799054, 0.5981491184574936, 0.7512253043619477, 0.20474988026063612, 0.12337786436138054, 0.6965484670033051, 0.4642254518352117, 0.29034758521725457, 0.7912282271603185, 0.1364389858241727, 0.5326323768611896, 0.3938848007926149, 0.886984727126295, 0.5955398539691413, 0.3667393936023857, 0.35129461810907203, 0.578130474122496, 0.1952086434691429, 0.6982941690158907, 0.6159300986783536, 0.6650580695700093, 0.8007006003287879, 0.13750802167619447, 0.47121416359091395, 0.5691587732433696, 0.5295784007050042, 0.4938434408506086, 0.4240508430342457, 0.1531205555636086, 0.7965770364050346, 0.4829168465516456, 0.6333246955344933, 0.38682769986244625, 0.5589353890471914, 0.30965836575156913, 0.6133571507425741, 0.5363393546692182, 0.5474540697204298, 0.9680074395956593, 0.29703705077451537, 0.7566858385458134, 0.451244026180727, 0.6224939697452743, 0.9340693900855184, 0.1254375450851024, 0.770680513376406, 0.7273231109206828, 0.410671569380914, 0.19928392436820586, 0.44743622108127745, 0.4991477681643879, 0.5443787589855091, 0.826082779912576, 0.5642536294664222, 0.6762559922350657, 0.39283078357423706, 0.3074847569358159, 0.40732461839200396, 0.5614584986504241, 0.5614584986504241, 0.575628870274347, 0.1938881144566701, 0.6480440770440566, 0.23946299348505806, 0.6110142157087575, 0.32489046344192996, 0.127020290619695, 0.28948900574123104, 0.27970970921902805, 0.5179212029104148, 0.579807192000203, 0.5695619245525361, 0.7471497674522103, 0.6761943115269239, 0.6052803835931642, 0.9048996801452402, 0.632953623191418, 0.7849920634816455, 0.12946409768986655, 0.3899257470968539, 0.37735505673750047, 0.27206300237801306, 0.6356505945299911, 0.9000798247851504, 0.5852448485124296, 0.3537739535016634, 0.8589709040748648, 0.5105041430354158, 0.4760479563081992, 0.3915586115462193, 0.4344526143297297, 0.04825794875232026, 0.25106204840173363, 0.5352062615150248, 0.2084678736174792, 0.5588772074146924, 0.42656597432725707, 0.3395528272139201, 0.5154796814541086, 0.30312695461308037, 0.4684625037801391, 0.13140485141127656, 0.37575572516499556, 0.7087902803012941, 0.22740617784346517, 0.7932370230268412, 0.6977827466507267, 0.8687065743771458, 0.3532210556477622, 0.3005246278528939, 0.8817461779308045, 0.5897758288136841, 0.5117334773877459, 0.2267712913026929, 0.7462523759498982, 0.5055831714989107, 0.6276122794572256, 0.34766968675436505, 0.563322001169588, 0.4035281086421867, 0.44827723495654004, 0.7588644006503809, 0.17560197311170134, 0.2736156405730563, 0.5646478519097824, 0.12788772013874206, 0.8127608550985441, 0.35130933230290007, 0.8842329534318195, 0.5671758377024384, 0.508518787579709, 0.4735654621913231, 0.6614347321502836, 0.7032589073748752, 0.418601168771625, 0.40262233345395115, 0.38045938978299354, 0.6221728234115828, 0.6769388667590319, 0.825791915264051, 0.8036522945246104, 0.5350776523934957, 0.5038683203672731, 0.4187790963850706, 0.3942708224564714, 0.36585282612655, 0.42973128126448334, 0.1395024853671747, 0.36909778672938764, 0.5126700875045708, 0.31128511290513083, 0.5841805470690385, 0.42932394036482613, 0.5168725346003686, 0.9331527243268325, 0.5090935678835011, 0.848083892739094, 0.7288594688776423, 0.23463814542978878, 0.9073343486287574, 0.5445649372592127, 0.8030108083542629, 0.30698149193503155, 0.47724620771884374, 0.49565431290071005, 0.29179072192325783, 0.53941953634433, 0.32642767658125227, 0.5714063949384225, 0.6769388667590319, 0.48314991346809855, 0.3838692085325581, 0.7654355578102645, 0.6807995217458978, 0.7803105409218809, 0.4971816769068883, 0.5662837862370104, 0.32557907866588853, 0.4059739580227363, 0.8621668957327787, 0.4863555612469991, 0.44913520001249685, 0.5044088987161788, 0.018560580499064172, 0.17397747102053363, 0.8203404366189, 0.531551035274026, 0.3951880410340851, 0.6710839680909022, 0.7545393605546251, 0.25029771644034415, 0.31651464458218903, 0.7900402576908969, 0.7649542174153934, 0.6282404390050247, 0.5124469561170844, 0.7501741577575001, 0.3717170374651112, 0.5479204837841629, 0.1799627586960565, 0.8716748635647116, 0.4700369344869263, 0.7044722268129955, 0.7597806244765397, 0.4570971226262448, 0.3688130253756654, 0.5854022956087224, 0.6067015953642416, 0.6092966434658947, 0.5713009051869427, 0.15316343939585397, 0.31191498773739224], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [0.32, 0.24, 0.36, 0.24, 0.27, 0.21, 0.3, 0.46, 0.34, 0.26, 0.4, 0.21, 0.26, 0.33, 0.24, 0.47, 0.29, 0.76, 0.2, 0.29, 0.28, 0.27, 0.28, 0.36, 0.49, 0.27, 0.3, 0.49, 0.33, 0.48, 0.49, 0.32, 0.28, 0.34, 0.36, 0.44, 0.31, 0.31, 0.22, 0.39, 0.26, 0.49, 0.37, 0.26, 0.26, 0.32, 0.38, 0.19, 0.53, 0.3, 0.29, 0.29, 0.26, 0.29, 0.49, 0.28, 0.36, 0.38, 0.24, 0.32, 0.42, 0.23, 0.74, 0.44, 0.66, 0.13, 0.28, 0.3, 0.26, 0.36, 0.35, 0.24, 0.28, 0.68, 0.35, 0.29, 0.46, 0.28, 0.1, 0.35, 0.24, 0.34, 0.3, 0.45, 0.33, 0.34, 0.29, 0.31, 0.31, 0.41, 0.28, 0.28, 0.38, 0.4, 0.29, 0.25, 0.29, 0.28, 0.25, 0.65, 0.34, 0.36, 0.46, 0.34, 0.3, 0.32, 0.26, 0.49, 0.33, 0.02, 0.33, 0.28, 0.32, 0.29, 0.27, 0.32, 0.25, 0.36, 0.35, 0.46, 0.3, 0.49, 0.34, 0.31, 0.22, 0.02, 0.01, 0.5, 0.36, 0.0, 0.33, 0.18, 0.4, 0.32, 0.43, 0.54, 0.4, 0.02, 0.2, 0.24, 0.37, 0.31, 0.32, 0.34, 0.41, 0.43, 0.46, 0.27, 0.24, 0.32, 0.28, 0.59, 0.25, 0.26, 0.3, 0.5, 0.28, 0.35, 0.26, 0.38, 0.29, 0.27, 0.36, 0.25, 0.2, 0.34, 0.3, 0.21, 0.58, 0.04, 0.42, 0.37, 0.46, 0.28, 0.14, 0.09, 0.04, 0.21, 0.24, 0.1, 0.29, 0.49, 0.35, 0.3, 0.16, 0.29, 0.33, 0.48, 0.34, 0.31, 0.29, 0.0, 0.14, 0.05, 0.02, 0.34, 0.16, 0.32, 0.26, 0.48, 0.49, 0.27, 0.49, 0.12, 0.26, 0.37, 0.34, 0.49, 0.27, 0.43, 0.49, 0.2, 0.34, 0.32, 0.27, 0.26, 0.29, 0.49, 0.31, 0.32, 0.32, 0.49, 0.26, 0.4, 0.6, 0.37, 0.34, 0.4, 0.31, 0.29, 0.32, 0.21, 0.0, 0.28, 0.28, 0.21, 0.36, 0.41, 0.42, 0.34, 0.33, 0.39, 1.0, 0.44, 0.12, 0.32, 0.31, 0.27, 0.4, 0.33, 0.42, 0.3, 0.43, 0.35, 0.37, 0.28, 0.31, 0.14, 0.49, 0.39, 0.34, 0.49, 0.37, 0.44, 0.35, 0.32, 0.37, 0.57, 0.06, 0.34, 0.36, 0.08, 0.31, 0.3, 0.26, 0.26, 0.28, 0.41, 0.0, 0.79, 0.36, 0.44, 0.32, 0.3, 0.39, 0.42, 0.25, 0.28, 0.08, 0.39, 0.31, 0.3, 0.48, 0.24, 0.41, 0.25, 0.0, 0.12, 0.36, 0.38, 0.02, 0.24, 0.3, 0.26, 0.33, 0.46, 0.26, 0.33, 0.39, 0.47, 0.3, 0.34, 0.13, 0.36, 0.36, 0.62, 0.31, 0.3, 0.27, 0.27, 0.27, 0.38, 0.31, 0.3, 0.29, 0.02, 0.22, 0.39, 0.49, 0.27, 0.28, 0.33, 0.44, 0.57, 0.36, 0.31, 0.33, 0.33, 0.21, 0.28, 0.28, 0.45, 0.36, 0.26, 0.13, 0.49, 0.32, 0.09, 0.0, 0.36, 0.29, 0.41, 0.28, 0.3, 0.3, 0.4, 0.32, 0.33, 0.51, 0.36, 0.41, 0.19, 0.35, 0.44, 0.03, 0.27, 0.31, 0.27, 0.36, 0.26, 0.3, 0.39, 0.3, 0.23, 0.28, 0.26, 0.31, 0.0, 0.27, 0.34, 0.2, 0.32, 0.13, 0.36, 0.49, 0.29, 0.37, 0.31, 0.29, 0.37, 0.28, 0.24, 0.49, 0.3, 0.28, 0.47, 0.42, 0.28, 0.32, 0.28, 0.05, 0.21, 0.23, 0.33, 0.28, 0.32, 0.34, 0.42, 0.0, 0.49, 0.24, 0.3, 0.35, 0.3, 0.56, 0.45, 0.28, 0.35, 0.18, 0.2, 0.37, 0.31, 0.3, 0.28, 0.27, 0.18, 0.44, 0.3, 0.3, 0.36, 0.49, 0.41, 0.28, 0.31, 0.35, 0.1, 0.29, 0.01, 0.33, 0.49, 0.38, 0.74, 0.37, 0.45, 0.62, 0.33, 0.4, 0.26, 0.47, 0.28, 0.28, 0.24, 0.27, 0.35, 0.3, 0.76, 0.27, 0.01, 0.27, 0.27, 0.73, 0.29, 0.49, 0.25, 0.31, 0.02, 0.27, 0.36, 0.3, 0.51, 0.15, 0.49, 0.33, 0.32, 0.35, 0.29, 0.49, 0.34, 0.32, 0.44, 0.24, 0.48, 0.23, 0.24, 0.31, 0.39, 0.49, 0.3, 0.3, 0.05, 0.41, 0.23, 0.4, 0.41, 0.39, 0.42, 0.3, 0.35, 0.34, 0.29, 0.26, 0.31, 0.38, 0.38, 0.44, 0.33, 0.33, 0.49, 0.38, 0.27, 0.33, 0.31, 0.31, 0.5, 0.36, 0.37, 0.46, 0.44, 0.37, 0.35, 0.31, 0.25, 0.36, 0.37, 0.0, 0.3, 0.7, 0.36, 0.29, 0.33, 0.32, 0.25, 0.28, 0.21, 0.4, 0.06, 0.28, 0.29, 0.35, 0.35, 0.35, 0.29, 0.41, 0.49, 0.25, 0.25, 0.5, 0.49, 0.26, 0.29, 0.32, 0.24, 0.28, 0.4, 0.3, 0.02, 0.31, 0.36, 0.22, 0.36, 0.35, 0.34, 0.1, 0.24, 0.0, 0.32, 0.23, 0.49, 0.32, 0.32, 0.28, 0.41, 0.28, 0.37, 0.33, 0.31, 0.28, 0.3, 0.24, 0.34, 0.31, 0.35, 0.26, 0.0, 0.74, 0.01, 0.16, 0.32, 0.24, 0.32, 0.28, 0.32, 0.37, 0.29, 0.04, 0.29, 0.3, 0.16, 0.33, 0.23, 0.49, 0.38, 0.32, 0.26, 0.56, 0.66, 0.29, 0.29, 0.4, 0.27, 0.21, 0.35, 0.28, 0.24, 0.28, 0.38, 0.25, 0.49, 0.32, 0.18, 0.43, 0.33, 0.47, 0.04, 0.33, 0.27, 0.36, 0.25, 0.4, 0.33, 0.24, 0.35, 0.31, 0.31, 0.38, 0.49, 0.44, 0.4, 0.33, 0.26, 0.38, 0.22, 0.28, 0.34, 0.36], \"xaxis\": \"x\", \"y\": [0.18439386755371057, 0.5750868907731637, 0.1132172353536568, 0.19850047615697952, 0.6950004168934912, 0.41826441672946313, 0.040828937665112974, 0.2145583871630251, 0.09143093017991866, 0.10013996234885614, 0.3658834999306372, 0.587897812361327, 0.23563705889496211, 0.5289998061994394, 0.5981734696485812, 0.5956194363709464, 0.11295199838815062, 0.6349332021584286, 0.09356782907078887, 0.0672754654033908, 0.3541579814831264, 0.11781588709523827, 0.3295981493457443, 0.23443288181779365, 0.13830133810679424, 0.5122546205578999, 0.03626449638205209, 0.32057959349203036, 0.3955164844050859, 0.21320459763992916, 0.08620177311633537, 0.4132497936565127, 0.19514157099220286, 0.028148892894647393, 0.03728071159582558, 0.20213762816504022, 0.39088790332760825, 0.10566618212719892, 0.11466232649727714, 0.09544364959788487, 0.07351553674018241, 0.3657542344632553, 0.05859665738698361, 0.43634835962676355, 0.4827032077898804, 0.516310366273556, 0.6480037931050455, 0.21122004543372697, 0.030344760075157406, 0.22750344576024595, 0.18673438423788624, 0.5460909738859347, 0.0666291073587214, 0.320234954276134, 0.515425573770442, 0.5751179393061847, 0.3262180383913996, 0.12192585741802231, 0.6165939755266235, 0.09365914315081003, 0.44259853952477324, 0.31958523161407537, 0.09228899111547839, 0.22815273642701062, 0.5282447951108347, 0.7777719169155834, 0.13834506443323813, 0.29425092810710396, 0.5300870647699181, 0.031947521718024174, 0.1108646816717751, 0.053339747820140615, 0.14466174791529418, 0.25697560969337485, 0.3383868137798065, 0.30803904997837983, 0.03434255320493995, 0.08689109251212201, 0.46044782253877736, 0.0973761441498977, 0.3449058470623745, 0.024212367984770777, 0.11665042079727428, 0.3333970234137619, 0.1495417879159372, 0.0679784404121434, 0.2360052425084116, 0.39147703437781534, 0.04428683932015287, 0.5381556738404795, 0.4357341587922019, 0.11843845992675284, 0.28107964630818494, 0.06989794698232743, 0.2658605825653322, 0.22408104406272966, 0.15519213452661884, 0.09873339188795927, 0.10739713799337769, 0.4712507279726723, 0.31257930793611366, 0.6259141532505736, 0.1651629894813923, 0.13024327386797574, 0.08242409751896962, 0.55355901104019, 0.11256152515999429, 0.22124325125588817, 0.05838775174278421, 0.6734770756819889, 0.06919042490492266, 0.5773286546676725, 0.5693181878572973, 0.12726917141891614, 0.27983888222674136, 0.15690954109554833, 0.18593824584442387, 0.05432525584274117, 0.33273366741371935, 0.12435295831370408, 0.48112847828662497, 0.2959384652215836, 0.5042039768350125, 0.3749869638443927, 0.7258627386781167, 0.4806866421912115, 0.6234335830956541, 0.4191951896523489, 0.20821728825178332, 0.6343085651912675, 0.27674577061671146, 0.02140654255666985, 0.42849246998341506, 0.1817444030106703, 0.4551538855951942, 0.05087080041524106, 0.516641204200833, 0.6810720245435042, 0.08151744899857294, 0.4475169494323581, 0.03995706953508171, 0.2181819033834006, 0.20372897255157485, 0.24305701296248816, 0.5381556738404795, 0.2358485729609252, 0.051323642447754336, 0.1913631294907303, 0.32154631204965056, 0.31229802093755377, 0.3917329141436472, 0.39462053822053156, 0.3680669306910641, 0.5017894292511481, 0.32120711190509066, 0.0768019282386515, 0.1168769044932052, 0.31545143431826594, 0.12007957373947853, 0.08354361700756141, 0.2180731800932174, 0.7653011157176768, 0.05076221583963347, 0.11739077279846111, 0.3639458403519926, 0.4815918747301601, 0.35998732468747585, 0.457353694020342, 0.5520498791697908, 0.22168281241722143, 0.2132287846887433, 0.4763394582576197, 0.3040153802820409, 0.20749766415549342, 0.3316810644107503, 0.8126297477835096, 0.5749367295182395, 0.27274039590582944, 0.2685808245693546, 0.5172108675362206, 0.33506587713796443, 0.09616672688355288, 0.041108213935392324, 0.10548050716105373, 0.5016695616404938, 0.20022874051447226, 0.14220640128276774, 0.23772630779738468, 0.19606080251004787, 0.2603188495268066, 0.18846597668723208, 0.19827111133563302, 0.261548791893628, 0.4140325207077993, 0.8134796325151183, 0.12265695643958285, 0.6311167068993262, 0.13481820177301163, 0.0932384579037443, 0.14050160114126486, 0.2562249115981724, 0.08547750670655718, 0.08643201081848362, 0.19981675431015722, 0.31390222338706264, 0.06221739913672386, 0.06996303880871468, 0.30029370289300306, 0.4306817897420764, 0.6595343859760441, 0.2839408857911616, 0.20468539219890003, 0.1130196126722065, 0.2360017176902124, 0.13187147729288817, 0.42313120297864704, 0.06964897436687001, 0.1624399718171824, 0.17200815643270417, 0.07333105637055992, 0.2440137653363641, 0.4900110333069776, 0.3085554157386313, 0.03480496731142946, 0.12148031785507996, 0.15002971926037112, 0.5314247042003052, 0.2758453007685677, 0.2151852748992088, 0.2658605825653322, 0.29911225563077193, 0.6594110243744711, 0.49869782335001445, 0.16788254706683048, 0.11816213334465087, 0.08230909248122409, 0.13653212507346946, 0.25639170942272826, 0.06562233405876228, 0.23311900627036541, 0.3756616197417655, 0.46674395287949066, 0.3092684534350997, 0.8337319641197457, 0.8331457111467163, 0.2591056156836542, 0.4778687671024334, 0.2542440524586721, 0.5361036306539362, 0.07073721340803463, 0.4731688813159418, 0.5755848065786346, 0.356689463387698, 0.14225616860197343, 0.21837916002376445, 0.14466174791529418, 0.29899643271856946, 0.4757427727983842, 0.08126799884203029, 0.1296501822378736, 0.3286954654423938, 0.08620177311633537, 0.13855855420831553, 0.05543377339452393, 0.11917834098009661, 0.2613621884509647, 0.11269900223777074, 0.08429051026621415, 0.3393961441870107, 0.07031960314855146, 0.11356777592095357, 0.4853279864284006, 0.1279289285514792, 0.0584572339054259, 0.08612988585012649, 0.3472440907423937, 0.1248029959061332, 0.07502335399434323, 0.19827111133563302, 0.3424151534036639, 0.3065175956815872, 0.13808860398564737, 0.058092197534895806, 0.04082786106581715, 0.1602592849246841, 0.09156161599234125, 0.5036030690663805, 0.2640411824475748, 0.6468038092930676, 0.07201805208597656, 0.22470230804277058, 0.1334773721572423, 0.04847889440667685, 0.2685808245693546, 0.10911308148570098, 0.6764508967260475, 0.6280060594576413, 0.36761958218269275, 0.16019930342079847, 0.17605308658107655, 0.14078981831089854, 0.2384997092801764, 0.13117402490907393, 0.12818959986091483, 0.4161925244315118, 0.12435295831370408, 0.09814942480303201, 0.05480698563416486, 0.3746187330143109, 0.41092354232892336, 0.507894749900129, 0.5137929421583434, 0.08293523366016065, 0.2964416548030494, 0.15236141109070434, 0.4396941021426354, 0.41893931094950754, 0.09113953260801844, 0.10967473999240707, 0.055732078845942, 0.05640314085190745, 0.06176263301115803, 0.06427139521062619, 0.20386133178572885, 0.21597661143113533, 0.7486409492386699, 0.2610715902497083, 0.09465277491899493, 0.5556171757583562, 0.137718889647652, 0.1978940751503777, 0.08472590699531857, 0.356262641598029, 0.14596950445002987, 0.13865818299932142, 0.3088915816821678, 0.11516321289421916, 0.16121169033174265, 0.40573483691789825, 0.34308606282264, 0.36300204724896845, 0.17193414756867276, 0.035926383178341514, 0.34536882843285344, 0.4400180463892147, 0.5165194668234709, 0.23319834124303085, 0.9637923675569924, 0.2635599134550337, 0.6259141532505736, 0.12324962258280003, 0.1256037712827487, 0.1248029959061332, 0.11665042079727428, 0.29081136443782263, 0.12993062945549005, 0.20959981847797426, 0.12385816607190492, 0.16931651488884025, 0.2468284110987674, 0.6181879252747016, 0.3509541008179864, 0.08619429866610873, 0.09537770951135394, 0.8204393830764495, 0.2493836920976743, 0.10367142046182065, 0.11516383353466464, 0.07169627826225977, 0.5400384130096556, 0.2709141565803237, 0.16809050322974173, 0.3421981324687273, 0.812724325423183, 0.1326589750154965, 0.054670132935181304, 0.055346153509382656, 0.8039442695404772, 0.3276168958360183, 0.6561718697940482, 0.6214102617950452, 0.3046829516703813, 0.7853649284745584, 0.7303620793003476, 0.6719087507962026, 0.16000678121984613, 0.579612101366232, 0.6347749924714103, 0.41894393066564606, 0.06936532322770372, 0.28322834609079706, 0.343263893078516, 0.4450860003239352, 0.3090838478611311, 0.408095736797927, 0.11529682880263803, 0.13359771811640497, 0.2417229185475579, 0.10092265889692065, 0.8181934133883563, 0.3777834313813965, 0.8273808576462511, 0.18439353202429143, 0.5148786056082297, 0.11287077888712382, 0.16015059460472458, 0.29672938182784603, 0.36944561074938853, 0.2505850522824452, 0.8467591712977676, 0.3840267097226593, 0.261779448872241, 0.1645479955558209, 0.14631295673285594, 0.4248523287309329, 0.09222807982804315, 0.2121484308544801, 0.33273366741371935, 0.5470626312455473, 0.8294144697045585, 0.25206662215500397, 0.15998368749433245, 0.548322128117227, 0.3917329141436472, 0.15981565308588508, 0.23631147082452741, 0.21082920466209698, 0.1871387197916503, 0.24774693401855818, 0.1913242313933492, 0.16437448769677154, 0.07582203648947516, 0.032541140295091364, 0.06311143057978008, 0.5009235508757715, 0.12343879567504301, 0.445735807756371, 0.40322837553658053, 0.09397553936597514, 0.1598391281143201, 0.26702494168661406, 0.19782301216908982, 0.06831823449824892, 0.5451167746582685, 0.20142160156100697, 0.25747632252511843, 0.4257317671215596, 0.5062318064185062, 0.10278357133077332, 0.10857266292312517, 0.06223864817381186, 0.11377411494697365, 0.14082424186384768, 0.2589321903149734, 0.31776639873426016, 0.07983414941561229, 0.30174211068680845, 0.42532907678292176, 0.23734670470511587, 0.2862296469110084, 0.24790288035387664, 0.5526146374040077, 0.20425399436950087, 0.5166825128498294, 0.12415322942140417, 0.5310696157212036, 0.3866387435262121, 0.14313186082947948, 0.31648660326859934, 0.026792916001305622, 0.7856428374245099, 0.42383310375799566, 0.5944566396871084, 0.6256605001243821, 0.08813642250468567, 0.03544811528140901, 0.06935406654889886, 0.15751976448865512, 0.22608551288474832, 0.3127311228465576, 0.1409438166611655, 0.3285615524533705, 0.3591330499592894, 0.47964497307801546, 0.7143146030302826, 0.14223944449319303, 0.06929054967731618, 0.32120711190509066, 0.16913647442041335, 0.707286257884667, 0.3230684446475647, 0.7616845263358343, 0.4104900542879092, 0.10053249234255524, 0.1106599594415556, 0.1543174595222413, 0.46003879185641183, 0.3811350878514418, 0.07185070571861518, 0.23882593985771994, 0.5344976262521839, 0.11031385635331636, 0.09610989844306939, 0.4955559099445003, 0.07845190603324759, 0.30697262074812925, 0.12767551958037127, 0.4375661224395835, 0.07737023387634634, 0.15307682457740834, 0.05694427046787409, 0.09028836937410878, 0.4011292297732457, 0.6186146927451245, 0.11561676905211238, 0.0993047499370594, 0.08102401279833105, 0.8100206966555492, 0.10768932514586738, 0.15386113005635593, 0.4026560765644126, 0.045535707525545144, 0.08229583319403, 0.08227601457953415, 0.8241544781987433, 0.0759900855540333, 0.5147505197509459, 0.11103147778198663, 0.42144961755966015, 0.24880465403270857, 0.3112403223054312, 0.3282460941643247, 0.28312386083977936, 0.2865521931047814, 0.16537364909659502, 0.4284132019637321, 0.34116073112729894, 0.051142721309942685, 0.10794707492381372, 0.1108646816717751, 0.29201805921023904, 0.07365131996157204, 0.36851051207096197, 0.2556143611338999, 0.07392456180697715, 0.045535707525545144, 0.15025986810093994, 0.4395989822566938, 0.19636656988846957, 0.21018464628148859, 0.15085686628779282, 0.3429118439192298, 0.16104008564300487, 0.2055862423584408, 0.18673310211333727, 0.5528531989583015, 0.20219789553586287, 0.5807830339134155, 0.6112381610839525, 0.07515362639458067, 0.5722084734915175, 0.3654892991508686, 0.1991057466826236, 0.4912569401667811, 0.05850610073101081, 0.3077884117234785, 0.17038242498240874, 0.14066607718466684, 0.10248584652416493, 0.4022873718442217, 0.07205214632436985, 0.35142291824287475, 0.10941760034103376, 0.06679271580157364, 0.05675388891699207, 0.058987921856350156, 0.3660303223369904, 0.28790374422385034, 0.4158290962648631, 0.40710291595796666, 0.09934102670994882, 0.06362846635195196, 0.30921476208988685, 0.23242198019285765, 0.055541210656895434, 0.5297663836663529, 0.10744632778983743, 0.18410212910939194, 0.17721960751489196, 0.1962664672709783, 0.1617648996714035, 0.10584426414108294, 0.5203501665477333, 0.07365131996157204, 0.31578819840495265, 0.35364190165315845, 0.1707951928721818, 0.41655733121321636, 0.15801546378512366, 0.7568436608419439, 0.22368578646300386, 0.0609449253562836, 0.2225096762928218, 0.18587673368692093, 0.05559101133196209, 0.569598540521716, 0.08073228430722412, 0.15724041301590164, 0.12879141548479, 0.4306817897420764, 0.17998791969802397, 0.41280880088413996, 0.5723062335690389, 0.6457404130724687, 0.10420061808672998, 0.12564769853034463, 0.21795029564941848, 0.4720930498870375, 0.11304202998506685, 0.545112257205237, 0.14852188644910969, 0.17217029085021085, 0.336250902618187, 0.48671482860553816, 0.5093433434984792, 0.35847801144896685, 0.3008706318705062, 0.18494609259573758, 0.4199330463236065, 0.04162287990776414, 0.2633909944023186, 0.4252182303976608, 0.4684623303117058, 0.1925553058603695, 0.09610989844306939, 0.09129843496680234, 0.3302708189676917, 0.4199330463236065, 0.11927294568859859, 0.4864154015695107, 0.06472081497616611, 0.6387929002666255, 0.37932906694235924, 0.093713747684541, 0.20627971812824875], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (curr)\", \"type\": \"scatter\", \"x\": [0.49, 0.12, 0.36, 0.29, 0.4, 0.4, 0.18, 0.04, 0.24, 0.65, 0.25, 0.39, 0.4, 0.26, 0.45, 0.36, 0.32, 0.49, 0.34, 0.07, 0.39, 0.13, 0.36, 0.64, 0.37, 0.31, 0.3, 0.23, 0.29, 0.74, 0.79, 0.2, 0.0, 0.17, 0.33, 0.21, 0.32, 0.11, 0.19, 0.06, 0.29, 0.2, 0.74, 0.29, 0.32, 0.25, 0.24, 0.25, 0.29, 0.35, 0.54, 0.26, 0.49, 0.22, 0.1, 0.23, 0.01, 0.49, 0.29, 0.2, 0.49, 0.34, 0.18, 0.4, 0.21, 0.06, 0.59, 0.0, 0.0, 0.03, 0.02, 0.25, 0.14, 0.26, 0.35, 0.28, 0.46, 0.52, 0.21, 0.3, 0.34, 0.18, 0.2, 0.33, 0.49, 0.27, 0.3, 0.34, 0.13, 0.36, 0.49, 0.26, 0.41, 0.42, 0.01, 0.0, 0.49, 0.19, 0.08, 0.55, 0.45, 0.32, 0.36, 0.11, 0.32, 0.09, 0.04, 0.0, 0.26, 0.41, 0.06, 0.5, 0.02, 0.29, 0.28, 0.34, 0.22, 0.24, 0.45, 0.08, 0.2, 0.28, 0.26, 0.17, 0.13, 0.18, 0.32, 0.38, 0.13, 0.37, 0.41, 0.32, 0.42, 0.49, 0.28, 0.62, 0.24, 0.17, 0.2, 0.2, 0.39, 0.49, 0.33, 0.42, 0.44, 0.28, 0.39, 0.23, 0.26, 0.23, 0.0, 0.22, 0.42, 0.19, 0.27, 0.24, 0.25, 0.44, 0.22, 0.42, 0.36, 0.47, 0.35, 0.48, 0.08, 0.26, 0.29, 0.46, 0.34, 0.38, 0.38, 0.32, 0.26, 0.28, 0.21, 0.0, 0.24, 0.35, 0.27, 0.35, 0.36, 0.23, 0.49, 0.1, 0.34, 0.32, 0.3, 0.22, 0.49, 0.22, 0.03, 0.46, 0.3, 0.28, 0.62, 0.21, 0.27, 0.1, 0.39, 0.3, 0.02, 0.26, 0.2, 0.4, 0.28, 0.36, 0.42, 0.59, 0.16, 0.69, 0.49, 0.23, 0.08, 0.4, 0.49, 0.24, 0.28, 0.33, 0.86, 0.24, 0.56, 0.25, 0.43, 0.41, 0.37, 0.14, 0.49, 0.29, 0.34, 0.34, 0.2, 0.34, 0.25, 0.35, 0.11, 0.48, 0.33, 0.31, 0.42, 0.33, 0.18, 0.02, 0.39, 0.32, 0.33, 0.12, 0.37, 0.3, 0.48, 0.01, 0.31, 0.2, 0.32, 0.62, 0.25, 0.36, 0.32, 0.23, 0.23, 0.33, 0.14, 0.22, 0.74, 0.74, 0.33, 0.36, 0.24, 0.38, 0.34, 0.44, 0.31, 0.12, 0.74, 0.42, 0.49, 0.25, 0.26, 0.34, 0.07, 0.47, 0.1, 0.25, 0.38, 0.0, 0.18, 0.37, 0.3, 0.26, 0.49, 0.38, 0.35, 0.07, 0.24, 0.06, 0.33, 0.39, 0.16, 0.38, 0.44, 0.39, 0.28, 0.65, 0.54, 0.56, 0.24, 0.06, 0.48, 0.29, 0.46, 0.26, 0.18, 0.19, 0.44, 0.41, 0.33, 0.74, 0.26, 0.49, 0.29, 0.1, 0.68, 0.08, 0.24, 0.27, 0.13, 0.53, 0.2, 0.49, 0.45, 0.14, 0.06, 0.29, 0.39, 0.4, 0.21, 0.41, 0.28, 0.04, 0.25, 0.32, 0.15, 0.49, 0.25, 0.27, 0.49, 0.3, 0.41, 0.49, 0.25, 0.4, 0.28, 0.3], \"xaxis\": \"x2\", \"y\": [0.18579927887031134, 0.9274202256360236, 0.2569067617886446, 0.17851375722123963, 0.43011516789686843, 0.3951880410340851, 0.35333307802371594, 0.854899199395705, 0.7749695319329993, 0.7150752736216004, 0.5793836726576811, 0.17187478758168062, 0.503776006633781, 0.6517104478925241, 0.5321166645488455, 0.4291031613352281, 0.6295132227815239, 0.446367751604861, 0.12978626497489776, 0.578130474122496, 0.1303225049324246, 0.4589423036505589, 0.6028673022099313, 0.6724998803801079, 0.055171077290688375, 0.28900585249094113, 0.5807441942986169, 0.6324527530146118, 0.32780881811994433, 0.4437792729685527, 0.47375733914823626, 0.6755390392614542, 0.8494338455743565, 0.8432302027568838, 0.3962269303969661, 0.36574887203466033, 0.9780529644634413, 0.6757083557066426, 0.43212531492562845, 0.6428319532862445, 0.2244465690609686, 0.6759712108962084, 0.300575337785698, 0.4848467547623382, 0.24353241802821812, 0.6165640897352094, 0.801889943514816, 0.6831580296641933, 0.4684052737322374, 0.07309555507266852, 0.17397747102053363, 0.548208100621717, 0.16948307959681597, 0.5287139706981401, 0.8097217619362252, 0.48186532860504816, 0.7044722268129955, 0.5458559966555334, 0.6067015953642416, 0.5767206748937392, 0.5416109283549078, 0.7766135747357961, 0.6371580804073698, 0.3290646799011723, 0.53941953634433, 0.7444876216695655, 0.27658524567301757, 0.8518717737266248, 0.685064206005921, 0.7994946846943811, 0.6254668451144636, 0.29898447003196504, 0.36566585814722175, 0.8260679099411251, 0.265003746926769, 0.18277705216857454, 0.6401445853260315, 0.2878944788643705, 0.7379395090268356, 0.6578861964269485, 0.3048731186933995, 0.6479177870210828, 0.5479007895539181, 0.8109237991420157, 0.4555798348891207, 0.35159410271621183, 0.6741813074403022, 0.40366163192193316, 0.3797333752177462, 0.42326140605337403, 0.49450075158901585, 0.7027754368270075, 0.31556666432085356, 0.5737052492708005, 0.5594846166878963, 0.9879213229528466, 0.23907110553933086, 0.7604887601700165, 0.906894853259191, 0.49150798334893764, 0.6693239074263375, 0.635181004157038, 0.4291031613352281, 0.6805197940362542, 0.8579270215873258, 0.42231028799440284, 0.7973836574204367, 0.6209099995125147, 0.617932351579841, 0.5867531689564582, 0.8217385626893267, 0.5766058512754557, 0.6085190813519714, 0.6488649586424557, 0.19466062481522506, 0.4062994677131635, 0.31500574198466447, 0.6106996692323751, 0.48314991346809855, 0.4300926711133176, 0.4623912750166579, 0.18141675383529432, 0.7404949196358439, 0.7960551628311661, 0.6696955469146251, 0.7471897031921468, 0.15222801432328747, 0.4782875749995391, 0.6696955469146251, 0.4617114467660769, 0.0374236133971757, 0.34638250956587036, 0.5737052492708005, 0.35412183815676124, 0.5342599897609015, 0.6273126624389191, 0.1819914526651868, 0.6450640502472667, 0.7576359910572065, 0.6363669366758954, 0.35783776888428775, 0.4555798348891207, 0.2603691587203709, 0.09638465351539516, 0.7889843001267657, 0.3995975535535492, 0.2404138117262561, 0.5134503976671381, 0.7620160241108803, 0.4852174766770502, 0.7934067722809752, 0.5657371707019572, 0.40591517497640706, 0.5142806824729376, 0.4667389755277017, 0.4597803030361328, 0.14211531046105408, 0.4709774325404933, 0.39253304933110444, 0.8152160844894966, 0.6418608562675732, 0.5695619245525361, 0.15898796250578873, 0.4189913516486339, 0.8097376625536354, 0.2776505479619531, 0.14100712613869515, 0.1625374057836978, 0.21879614767173305, 0.26016804821119, 0.5884346274074399, 0.25171266030158634, 0.5556828679884147, 0.2886326125606653, 0.5013044750460076, 0.23728971353361283, 0.6280660923097139, 0.6281218947904323, 0.6226708394296439, 0.1280348372312241, 0.37812375401711507, 0.6218606462016874, 0.446367751604861, 0.5237591509200082, 0.22560064672115399, 0.4159575064805634, 0.43989745285902637, 0.38133093816728936, 0.379388299643832, 0.4244201113870294, 0.8495234946343055, 0.44699506619782237, 0.3402560380560977, 0.16997778820688525, 0.6509841470756508, 0.5589353890471914, 0.49320900326902484, 0.41485179365651337, 0.2850172536812061, 0.5150740024049856, 0.7905789411902706, 0.6660097546858721, 0.5916856454756931, 0.25029771644034415, 0.21820707607863943, 0.23625780462752244, 0.6174344585079109, 0.33885175059010386, 0.8097775874289167, 0.5502791542248897, 0.45232673966787307, 0.5168725346003686, 0.4922951659433321, 0.2710495410551712, 0.5620189509382074, 0.19827785442852286, 0.35653263682836045, 0.4940220265254579, 0.3934632807735441, 0.349631294967786, 0.6543252873397565, 0.6043841099981286, 0.6572212454398962, 0.5323595728841377, 0.4667716613599331, 0.5480891857555714, 0.5933716837007499, 0.5769442381274095, 0.7796710482718338, 0.4721284230669528, 0.5632051337005155, 0.25606657060722404, 0.47304849589761655, 0.4991199345133047, 0.785831825438318, 0.5512091114854263, 0.31651464458218903, 0.192246895102814, 0.5737052492708005, 0.14970485751781393, 0.8257882443178004, 0.7450862811651306, 0.2404138117262561, 0.3428275867057816, 0.2186811050870735, 0.43730933466596944, 0.1325711740116582, 0.33994853494016564, 0.5172250338280965, 0.4543852880840521, 0.6017244994332274, 0.7267617626256621, 0.304103470637073, 0.49511795227452726, 0.4577650902534979, 0.4389063253281036, 0.3428275867057816, 0.6911248892501751, 0.5457123873353599, 0.3395528272139201, 0.5662837862370104, 0.38281068028313525, 0.1899488449656659, 0.1899488449656659, 0.39416742153886597, 0.4473524415330049, 0.5724944828663213, 0.12652799787397961, 0.14917046216496987, 0.4192276293132746, 0.1727250451072272, 0.7329347521090118, 0.2979855805324535, 0.5384433083808008, 0.2944152049751758, 0.5661013076544325, 0.39283078357423706, 0.6503174362647687, 0.7632350838020857, 0.29422440231251745, 0.8446099855685041, 0.3812461384129847, 0.1264117171095669, 0.6995051325026098, 0.7680829457938805, 0.1086082602083136, 0.50228427853815, 0.8303888649041977, 0.15145052047802054, 0.5239967242043768, 0.49461569007297057, 0.7323984730128237, 0.6372335578763709, 0.8485373319296128, 0.21018203617182263, 0.3854703692354019, 0.6209619763202376, 0.6996467359659702, 0.3913887983225227, 0.600932061108284, 0.18141675383529432, 0.32841971343371723, 0.17397747102053363, 0.3943097935149382, 0.5998672378660981, 0.6052803835931642, 0.35501406908939237, 0.4362847089434372, 0.6005057903956104, 0.45095984485898877, 0.5601124581139871, 0.6908342266509375, 0.29066967723125237, 0.5437491575180791, 0.5955595524057149, 0.4226516353037165, 0.552222307965348, 0.5038457784615318, 0.6752568781943777, 0.7880730680059006, 0.09430965090665133, 0.4986183600001317, 0.24112389044610405, 0.3635071851353404, 0.7047195247497422, 0.5251048099479148, 0.5632051337005155, 0.4520037684813636, 0.5271857161160298, 0.36566585814722175, 0.8775119234978208, 0.49474741138534273, 0.17187478758168062, 0.1069918390347242, 0.6371627391106971, 0.19018032574493748, 0.34352259564225396, 0.806114950115292, 0.47304849589761655, 0.5014153035286022, 0.6721952796384192, 0.7507248720260316, 0.38512814216859315, 0.8930847268109882, 0.863224561659591, 0.15108072818859253, 0.7399796913917198, 0.18579927887031134, 0.47304849589761655, 0.2033384066370545, 0.43667652058029827, 0.23252054766636898], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [0.19, 0.38, 0.42, 0.21, 0.23, 0.27, 0.29, 0.25, 0.31, 0.12, 0.24, 0.35, 0.25, 0.23, 0.39, 0.34, 0.0, 0.31, 0.24, 0.34, 0.3, 0.31, 0.35, 0.39, 0.28, 0.49, 0.38, 0.28, 0.32, 0.3, 0.29, 0.27, 0.37, 0.34, 0.23, 0.99, 0.27, 0.37, 0.33, 0.02, 0.34, 0.33, 0.49, 0.3, 0.42, 0.09, 0.29, 0.18, 0.33, 0.37, 0.17, 0.39, 0.44, 0.41, 0.31, 0.44, 0.56, 0.0, 0.31, 0.68, 0.09, 0.26, 0.36, 0.27, 0.29, 0.33, 0.38, 0.33, 0.06, 0.34, 0.34, 0.28, 0.28, 0.24, 0.29, 0.19, 0.24, 0.28, 0.3, 0.49, 0.4, 0.33, 0.41, 0.27, 0.34, 0.29, 0.39, 0.24, 0.49, 0.34, 0.26, 0.49, 0.26, 0.28, 0.3, 0.28, 0.4, 1.23, 0.52, 0.08, 0.44, 0.27, 0.23, 0.24, 0.34, 0.09, 0.24, 0.32, 0.42, 0.29, 0.0, 0.28, 0.3, 0.27, 0.25, 0.53, 0.22, 0.27, 0.25, 0.39, 0.23, 0.36, 0.27, 0.47, 0.1, 0.46, 0.26, 0.46, 0.4, 0.35, 0.38, 0.34, 0.28, 0.27, 0.49, 0.58, 0.34, 0.38, 0.27, 0.29, 0.45, 0.03, 0.69, 0.37, 0.26, 0.33, 0.56, 0.32, 0.3, 0.34, 0.29, 0.33, 0.31, 0.61, 0.34, 0.35, 0.38, 0.32, 0.4, 0.39, 0.39, 0.24, 0.24, 0.91, 0.49, 0.36, 0.35, 0.05, 0.4, 0.81, 0.3, 0.4, 0.28, 0.4, 0.47, 0.3, 0.17, 0.38, 0.26, 0.39, 0.3, 0.25, 0.36, 0.49, 0.32, 0.15, 0.24, 0.24, 0.36, 0.33, 0.32, 0.26, 0.32, 0.45, 0.28, 0.28, 0.32, 0.22, 0.56, 0.26, 0.36, 0.25, 0.42, 0.52, 0.5, 0.3, 0.41, 0.73, 0.3, 0.41, 0.29, 0.34, 0.24, 0.45, 0.52, 0.29, 0.38, 0.24, 0.4, 0.4, 0.49, 0.29, 0.14, 0.42, 0.5, 0.2, 0.32, 0.3, 0.45, 0.26, 0.21, 0.4, 0.39, 0.36, 0.24, 0.38, 0.24, 0.18, 0.31, 0.49, 0.35, 0.32, 0.36, 0.34, 0.2, 0.5, 0.27, 0.31, 0.34, 0.11, 0.32, 0.28, 0.44, 0.29, 0.37, 0.26, 0.74, 0.3, 0.4, 0.31, 0.02, 0.31, 0.34, 0.19, 0.27, 0.36, 0.42, 0.2, 0.42, 0.46, 0.27, 0.32, 0.32, 0.59, 0.34, 0.16, 0.49, 0.32, 0.26, 0.1, 0.53, 0.27, 0.52, 0.15, 0.32, 0.49, 0.28, 0.31, 0.07, 0.27, 0.5, 0.44, 0.28, 0.26, 0.3, 0.3, 0.48, 0.3, 0.36, 0.32, 0.29, 0.44, 0.47, 0.26, 0.36, 0.46, 0.3, 0.35, 0.39, 0.3, 0.27, 0.31, 0.08, 0.61, 0.25, 0.29, 0.4, 0.34, 0.49, 0.33, 0.28, 0.27, 0.29, 0.49, 0.37, 0.34, 0.25, 0.52, 0.58, 0.3, 0.02, 0.32, 0.0, 0.32, 0.69, 0.3, 0.42, 0.28, 0.44, 0.3, 0.31, 0.33, 0.49, 0.0, 0.08, 0.28, 0.3, 0.38, 0.49, 0.27, 0.49, 0.38, 0.32, 0.61, 0.22, 0.31, 0.25, 0.26, 0.38, 0.08, 0.29, 0.24, 0.49, 0.46, 0.43, 0.49, 0.2, 0.49, 0.41, 0.33, 0.32, 0.29, 0.4, 0.38, 0.49, 0.09, 0.37, 0.29, 0.08, 0.0, 0.27, 0.43, 0.31, 0.42, 0.39, 0.41, 0.42, 0.31, 0.11, 0.24, 0.22, 0.24, 0.45, 0.39, 0.35, 0.02, 0.39, 0.54, 0.15, 0.37, 0.42, 0.24, 0.28, 0.71, 0.27, 0.33, 0.29, 0.26, 0.28, 0.27, 0.37, 0.36, 0.49, 0.71, 0.24, 0.12, 0.38, 0.34, 0.27, 0.24, 0.25, 0.36, 0.47, 0.18, 0.54, 0.26, 0.41, 0.22, 0.29, 0.5, 0.27, 0.32, 0.38, 0.33, 0.3, 0.25, 0.38, 0.36, 0.33, 0.3, 0.3, 0.01, 0.29, 0.23, 0.38, 0.45, 0.01, 0.2, 0.19, 0.18, 0.3, 0.08, 0.26, 0.21, 0.28, 0.2, 0.31, 0.28, 0.32, 0.32, 0.3, 0.32, 0.25, 0.29, 0.31, 0.29, 0.49, 0.3, 0.33, 0.0, 0.2, 0.36, 0.2, 0.27, 0.48, 0.3, 0.2, 0.39, 0.18, 0.34, 0.23, 0.34, 0.49, 0.45, 0.38, 0.49, 0.3, 0.29, 0.1, 0.0, 0.4, 0.4, 0.39, 0.33, 0.33, 0.47, 0.42, 0.31, 0.39, 0.55, 0.41, 0.38, 0.3, 0.18, 0.24, 0.2, 0.18, 0.24, 0.43, 0.43, 0.32, 0.34, 0.28, 0.29, 0.38, 0.31, 0.31, 0.53, 0.49, 0.37, 0.33, 0.2, 0.33, 0.26, 0.4, 0.27, 0.26, 0.36, 0.35, 0.53, 0.07, 0.26, 0.36, 0.53, 0.45, 0.22, 0.66, 0.33, 0.0, 0.29, 0.32, 0.3, 0.48, 0.28, 0.37, 0.32, 0.45, 0.4, 0.24, 0.3, 0.58, 0.3, 0.21, 0.37, 0.3, 0.19, 0.21, 0.32, 0.51, 0.27, 0.26, 0.33, 0.3, 0.42, 0.3, 0.24, 0.26, 0.3, 0.39, 0.27, 0.31, 0.26, 0.29, 1.0, 0.36, 0.31, 0.38, 0.28, 0.25, 0.35, 0.2, 0.51, 0.47, 0.22, 0.31, 0.5, 0.18, 0.45, 0.15, 0.14, 0.03, 0.32, 0.36, 0.23, 0.16, 0.49, 0.26, 0.36, 0.34, 0.3, 0.21, 0.58, 0.43, 0.26, 0.36, 0.27, 0.42, 0.49, 0.26, 0.35, 0.04, 0.4, 0.28, 0.28, 0.26, 0.25, 0.27, 0.31, 0.29, 0.54, 0.28, 0.26, 0.28, 0.28, 0.18, 0.26, 0.29, 0.38, 0.65, 0.32, 0.0, 0.68, 0.36, 0.34, 0.31, 0.35, 0.46, 0.24, 0.41, 0.24, 0.3, 0.49, 0.24, 0.22, 0.31, 0.37, 0.29, 0.34], \"xaxis\": \"x2\", \"y\": [0.6660328535674787, 0.4955559099445003, 0.11251030999551548, 0.5313240922219649, 0.7616845263358343, 0.42881839881496897, 0.22146723198036844, 0.2709448900825402, 0.04188686298684474, 0.3198999677935893, 0.586632325439729, 0.3332859260788763, 0.0891770245136605, 0.07249138429342028, 0.0813041402249215, 0.2808128557304226, 0.18155424903412543, 0.14020593233116785, 0.20529540916933675, 0.1755850319354616, 0.5722846846512241, 0.4684623303117058, 0.2863708053899042, 0.4489302200945696, 0.3606737334686688, 0.09834172337505831, 0.1439119889738254, 0.10526388551166177, 0.08976738859769384, 0.15927641460572795, 0.07353544332944184, 0.4894096639868448, 0.24735122968283396, 0.41440459167745447, 0.10107859516115147, 0.4809249647595707, 0.043928674649753696, 0.27268427565697984, 0.07203278686513981, 0.35989685204578803, 0.08410225657903847, 0.09640449279894714, 0.2859044620344169, 0.766491644508495, 0.27194216744256416, 0.11891721880979944, 0.6033870782914414, 0.8445823904457724, 0.4148378249676725, 0.09538880480821377, 0.5822786697287807, 0.2006236885231063, 0.30215903380660414, 0.3526626332448971, 0.22921561702294402, 0.3499358724503807, 0.451050436906263, 0.01968005574460141, 0.3849224947932618, 0.608666907839271, 0.30333177217190177, 0.05732515971384944, 0.08299070223644744, 0.155374347961305, 0.4378217303747408, 0.10641916767178827, 0.3207785913922725, 0.3280003244598044, 0.4747408725557203, 0.27229542413121455, 0.5314247042003052, 0.13834506443323813, 0.652508483608137, 0.1775869136191267, 0.4659209431511335, 0.3288332341233703, 0.47224603889779837, 0.2773569186284155, 0.18590272545123854, 0.6719763059805124, 0.04569198037744582, 0.22473444069733528, 0.0776074933333939, 0.1411968215808168, 0.3654892991508686, 0.06069899520469324, 0.21029328672965164, 0.13919371635861133, 0.16321149678759816, 0.6144435769482088, 0.1388055550317996, 0.0827658987104557, 0.0793107693477757, 0.04994940743047871, 0.46220165202879504, 0.08265172102971341, 0.5554564865761329, 0.10902951494304747, 0.26480674198345266, 0.31816712550642645, 0.20184400370343658, 0.23734670470511587, 0.19264674509953905, 0.03558879485690103, 0.5314247042003052, 0.3013473679880785, 0.8043030592862955, 0.07665185966197174, 0.17816243980233548, 0.14637302723887635, 0.43623195291339645, 0.5773286546676725, 0.06996409198491005, 0.0635191394270278, 0.11839391684253864, 0.03368970372860669, 0.16544292122901683, 0.5002106013252752, 0.20783967621931676, 0.4413184352618238, 0.1377753535318076, 0.017128038770129694, 0.09070427960766203, 0.05237321155563324, 0.46044782253877736, 0.09863911308639095, 0.6058955548956951, 0.07377868677997379, 0.33726125667837825, 0.03705661785513226, 0.03856885477325478, 0.01970319875133708, 0.06623921298607705, 0.655672818127978, 0.36403826442427, 0.375635621083512, 0.25822104517587474, 0.26990817233175546, 0.30316845466795117, 0.21597661143113533, 0.10411587283779344, 0.4582573305440075, 0.28974208538397184, 0.3995654588450376, 0.48407929824265805, 0.2412117545349558, 0.49704114689177337, 0.3112403223054312, 0.13571503940671914, 0.35304273602320047, 0.18963603484652192, 0.06023564559469896, 0.305863422303413, 0.34062746964654456, 0.03532029949184434, 0.20200996882548472, 0.207876095289533, 0.11304202998506685, 0.26487496820305634, 0.46674395287949066, 0.05931266843465788, 0.6063731497207538, 0.053339747820140615, 0.16056749669580483, 0.3366557342021428, 0.18735912995827353, 0.2667542380283816, 0.9197592959547904, 0.13322255285490225, 0.3533185668595151, 0.08763312389948397, 0.343329095265401, 0.1298321532292276, 0.11240742021865013, 0.03412749239977686, 0.23316671381479437, 0.13955591125269062, 0.065615492475942, 0.03940539431326806, 0.04874684240881699, 0.42507109047861347, 0.3720756994829524, 0.20627971812824875, 0.23346983492740092, 0.299872058778726, 0.14688925552714138, 0.20529540916933675, 0.11294333341234963, 0.4523771212155355, 0.15895981664313275, 0.12633289347617382, 0.34801013400503944, 0.063056887931354, 0.09222807982804315, 0.19281104432210028, 0.11843845992675284, 0.1064686731970873, 0.12171087020281346, 0.49704114689177337, 0.4202798549667376, 0.058322454167927695, 0.40418598015134155, 0.7514842711311043, 0.067978575311199, 0.1468497162592186, 0.3655805321171328, 0.36741292271676196, 0.08785516413846428, 0.4223454464089015, 0.09472348251934337, 0.14196098925812006, 0.10013555988874479, 0.32154631204965056, 0.05416575683382341, 0.786126361492164, 0.04696516601190348, 0.26926088858349784, 0.28123172687107445, 0.3094364396730669, 0.04307250962973752, 0.07126159086244754, 0.6143015945908075, 0.495586079448059, 0.46102608015166635, 0.40789311683600216, 0.8929715185951024, 0.1227006502272181, 0.3638055988942468, 0.10470002869891348, 0.29304213908849364, 0.8936703981375603, 0.3534407380188983, 0.0883666731866185, 0.07895584641700149, 0.05166417783587085, 0.4199775765299997, 0.10304865631077798, 0.1041340676595982, 0.11031385635331636, 0.22368578646300386, 0.22137255536682798, 0.0725394352715707, 0.08320759746190642, 0.3577905591727162, 0.36362749207413336, 0.13058702032609693, 0.4306817897420764, 0.4684623303117058, 0.3185463047756948, 0.6991046594229053, 0.33105510290791684, 0.35804773811787727, 0.3499358724503807, 0.17780319308126435, 0.07142366539796174, 0.1504846162366139, 0.28643330026545544, 0.11492102279820171, 0.08716328114311156, 0.12905574960179156, 0.5528531989583015, 0.2852168598030531, 0.3185463047756948, 0.41766807389819915, 0.22818770291371737, 0.10749415552266317, 0.07500089027222667, 0.2150933620687273, 0.4879833184669665, 0.21367083697314282, 0.18281788227943807, 0.11217648511765432, 0.01860460444149037, 0.4990100838788346, 0.3212979959143686, 0.7252893191599291, 0.30018855716775616, 0.2808216200321265, 0.24332849241566534, 0.22583693263898685, 0.307128141019565, 0.12930297020615966, 0.07734813107736227, 0.38078614076753503, 0.037937415915298756, 0.18389331462546077, 0.2015421194948802, 0.10121634311933059, 0.7209948827487924, 0.252131738577411, 0.19866278493931944, 0.5569604587758099, 0.19172534874952063, 0.07516041810443141, 0.18673310211333727, 0.20736440356309183, 0.27568985010185776, 0.1748501221961516, 0.134246332983591, 0.12151400729184814, 0.03860330573341564, 0.16198960071610413, 0.062309112953929935, 0.14943540958877521, 0.46827469198568006, 0.12435295831370408, 0.11768791031746062, 0.10794707492381372, 0.04347111427796346, 0.07423675680829, 0.1602542791395647, 0.19911642350143877, 0.2379444352717226, 0.36664322039668684, 0.10130143557253446, 0.17108028607870185, 0.6143194513817134, 0.5641235853966853, 0.29864316680665437, 0.44752301946823647, 0.13459844499503626, 0.037461465199631894, 0.5002964248569376, 0.4059565893810353, 0.7035957096210382, 0.0629603198376949, 0.25036415064992923, 0.14780834332950044, 0.24800647860056513, 0.10438723399855232, 0.24366911510822187, 0.4574644219698093, 0.8347014835967527, 0.42226245660703365, 0.4073158502222598, 0.47525484003715535, 0.37845934883934684, 0.35325777167774697, 0.4763432908647238, 0.18941100564626978, 0.23853527246002126, 0.27277355193056574, 0.5556171757583562, 0.19481513110659687, 0.7460207524242459, 0.12627308236197843, 0.2115813466591615, 0.4773837842994688, 0.22238536240250728, 0.1978655273089749, 0.32057959349203036, 0.1601330373243487, 0.6256605001243821, 0.34062746964654456, 0.5899158924001677, 0.1273375405407705, 0.6866376712310945, 0.3812864953771038, 0.07918534602430627, 0.10510921928053807, 0.052405178286905496, 0.29010285216427345, 0.5802968836962079, 0.4475494904811408, 0.33107045093633036, 0.6046547135519548, 0.33132995382553565, 0.3391582818855403, 0.37109937806185267, 0.18876467901964422, 0.03244681540368277, 0.6531311156123596, 0.18281848038190407, 0.06840545126676123, 0.23876166598551407, 0.5602062902528231, 0.05478334190217349, 0.18965009362393503, 0.502081053312289, 0.0945975060483667, 0.24937367783354814, 0.14040338921272166, 0.09582424632391484, 0.4879833184669665, 0.07536550594022651, 0.37763546052463404, 0.20240400638142053, 0.06234715971662652, 0.1729504208160284, 0.2536573606029918, 0.1491704939138675, 0.47224603889779837, 0.20734784509414073, 0.1656619584420439, 0.20263687678412212, 0.4576701693643329, 0.3746187330143109, 0.06578487521364562, 0.09359041291034786, 0.15714155813810793, 0.43198081216185935, 0.17693664965610134, 0.14200602748771296, 0.16878839641400256, 0.11131318694256087, 0.43040972974554736, 0.12494266711040569, 0.5286591337585229, 0.3917329141436472, 0.14284790216410748, 0.29931895876037384, 0.3998656181534954, 0.13198036366642862, 0.2166851793268345, 0.164669749255824, 0.3116999397838065, 0.5702002297218003, 0.2867818412254799, 0.05809024612643199, 0.0701620515557333, 0.10493669218879953, 0.03474255021640338, 0.14069518845012563, 0.7697788668098057, 0.44513161239284327, 0.12104291767226882, 0.2823656727566666, 0.28640273091276736, 0.09904459769556595, 0.10889384421684001, 0.1978655273089749, 0.6326587477498924, 0.0766186874204361, 0.07300117689776386, 0.3978521493117628, 0.7293533971641823, 0.24040337450518035, 0.46827469198568006, 0.03737110954461231, 0.48112847828662497, 0.5755848065786346, 0.12151472907643468, 0.332302417201758, 0.3208349144509022, 0.13406270144296106, 0.47820199098358873, 0.024219732643774528, 0.7923035912680444, 0.3099424932714111, 0.8494816644677875, 0.15230116664989468, 0.8795672599938588, 0.34536882843285344, 0.587897812361327, 0.3660303223369904, 0.3074082248441362, 0.1925553058603695, 0.1582957933341015, 0.5297945963993664, 0.1892543681582496, 0.06574637766643598, 0.03286461121245521, 0.6223124217546917, 0.48666930315350876, 0.17200815643270417, 0.27042696199957883, 0.16010429726024444, 0.25291734909108765, 0.22778758435893687, 0.6055190518965303, 0.41989528411161425, 0.2865861541738164, 0.17344095530188786, 0.4163761941495938, 0.24610426408478792, 0.029106329843254564, 0.5849270471051293, 0.09607886499379148, 0.4890296174547498, 0.11193395874659995, 0.3667485749721523, 0.29672938182784603, 0.13696827462710404, 0.03986507081677082, 0.41542023534722683, 0.1642424989032959, 0.041559354155004224, 0.1266666793707928, 0.5259198205822933, 0.42123490919744344, 0.6147437654518444, 0.42849246998341506, 0.04874684240881699, 0.16870816563337898, 0.35179373534084035, 0.4552463954734379, 0.1543174595222413, 0.4641274821418986, 0.1106599594415556, 0.40441066041397966, 0.05916303638108533, 0.24194101851814365, 0.5755848065786346, 0.23631147082452741, 0.04679471849088612, 0.33132995382553565, 0.6031606095022326, 0.16900214819844117, 0.9322526967181247, 0.1065938389205352, 0.0540586741766943, 0.14920224829950646, 0.03054451782098533, 0.13595064656866984, 0.15908339514281045, 0.09402391562754642, 0.27219479721363327, 0.10477531970828624, 0.6046547135519548, 0.04412971358840656, 0.0821245873848182, 0.24953715645213048, 0.24311299470472425, 0.679537413518331, 0.02875041056121841, 0.2874129658970298, 0.17131102264191878, 0.07042427222914205, 0.1577516063520068, 0.39934634677258996, 0.42249259173992826, 0.24940231538328683, 0.46827469198568006, 0.040988937643475554, 0.034828704291737345, 0.26663563965858417, 0.22421743312747255, 0.10716094829621758, 0.7421831263598226, 0.4644511163280224, 0.1591307416719686, 0.21502194578256428, 0.12883185373794437, 0.15520095945599266, 0.04280666734842442, 0.06928764484923078, 0.3578757504587543, 0.0760792945579073, 0.06637805380770656, 0.5755848065786346, 0.4326356954473739, 0.16985579355455038, 0.47152805642545803, 0.11644579282256762, 0.11790522998710073, 0.5438286352264949, 0.41561805514360906, 0.050606352251634235, 0.21836830194439782, 0.22298545275517268, 0.1504846162366139, 0.16819644397314482, 0.47796113776613436, 0.14100197907825862, 0.7878397890034206, 0.12176963827920351, 0.09814942480303201, 0.23162396036129984, 0.04400104962869911, 0.061588508633294015, 0.2774601068082493, 0.40816383821078206, 0.14036214651023216, 0.11837607594274324, 0.0703155477214753, 0.17002415827487982, 0.24611532014486182, 0.06874641727313702, 0.30975746960573625, 0.07004288447243323, 0.6453829176356538, 0.3880412370469972, 0.10205495289732236, 0.12171087020281346, 0.38550692709735157, 0.4398162761337091, 0.5769741243450848, 0.48842976274850136, 0.3866799681687785, 0.17129518728202664, 0.5711206597512044, 0.4456070955069118, 0.4585850027539752, 0.25462747480751524, 0.34771016550763867, 0.35548618548401445, 0.07878090041588082, 0.3008706318705062, 0.08117751180329491, 0.055511805197920094, 0.1600174453683395, 0.35597309965685686, 0.5473978930443646, 0.3321771897262046, 0.14643302530661162, 0.7653011157176768, 0.24188431843396252, 0.16704799028757666, 0.41136103198090634, 0.5749869949413896, 0.709238838470871, 0.09340318303147321, 0.602429869503323, 0.04154705947390969, 0.7519582179986716, 0.15993940416551844, 0.04372375151311325, 0.4076899811241429, 0.4644511163280224, 0.3133137248525114, 0.24628490675063597, 0.06972977174174444, 0.15949948541388637, 0.2241543425141257, 0.1729876202034616, 0.07290025122558275, 0.1220000714032804, 0.36493953208423235, 0.09420126302076737, 0.026726938234992392, 0.7199273032686843, 0.4606762448039463, 0.04906818437448113, 0.19446415942665518, 0.14876853598344464, 0.3247816953453747, 0.023320858692869595, 0.7310618090422621, 0.48944479260603346, 0.20357574295749958, 0.0840537250624015, 0.5368744051465595, 0.21101467800102214, 0.46682279298460017, 0.3749869638443927, 0.46592999202179275, 0.10188412989688433, 0.15751976448865512], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"citric.acid\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"citric.acid\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}, \"All_residual.sugar\": {\"data\": [{\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Reference<br>residual.sugar=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [1.3, 6.3, 2.6, 6.0, 1.2, 2.3, 2.2, 1.1, 2.7, 3.5, 0.9, 1.5, 5.7, 17.85, 4.55, 6.5, 1.0, 3.7, 1.7, 11.8, 8.2, 4.5, 1.5, 2.1, 7.2, 1.9, 1.2, 13.0, 4.6, 1.2, 1.2, 2.1, 1.9, 1.8, 2.0, 13.9, 10.7, 2.0, 4.3, 1.4, 1.1, 1.3, 1.8, 1.2, 11.0, 8.8, 2.5, 8.3, 2.4, 3.5, 16.4, 14.4, 1.4, 5.5, 1.1, 13.3, 2.5, 0.8, 1.2, 6.0, 2.2, 5.0, 2.7, 1.6, 2.6, 2.6, 2.4, 8.1, 7.4, 8.55, 1.5, 6.1, 5.9, 8.3, 5.7, 8.9, 3.6, 1.1, 2.1, 8.6, 2.3, 5.0, 1.1, 10.6, 7.7, 1.1, 1.2, 2.6, 4.2, 2.2, 1.5, 4.9, 1.8, 1.5, 6.2, 7.8, 13.7, 3.2, 1.3, 1.4, 1.1, 13.1, 2.2, 2.3, 1.2, 2.4, 7.7, 4.5, 1.2, 1.9, 1.2, 31.6, 1.2, 2.2, 3.9, 1.4, 2.0, 1.6, 16.5, 2.1, 12.8, 1.5, 10.5, 12.2, 2.2, 1.7, 2.1, 12.1, 1.5, 2.0, 4.0, 1.9, 14.75, 2.5, 4.5, 5.7, 2.6, 2.4, 2.8, 2.7, 0.9, 5.8, 8.6, 4.7, 2.2, 1.4, 6.4, 1.4, 1.7, 14.4, 14.7, 1.4, 1.6, 13.4, 14.9, 5.8, 1.0, 1.8, 8.8, 1.5, 11.4, 2.0, 1.4, 2.9, 6.6, 11.9, 9.9, 5.1, 11.2, 1.4, 2.0, 2.0, 1.6, 11.1, 3.0, 7.6, 1.7, 6.0, 4.8, 2.4, 6.1, 1.2, 1.7, 2.1, 7.0, 1.2, 1.7, 1.5, 3.6, 1.1, 1.8, 2.2, 8.3, 8.0, 2.3, 1.6, 1.3, 1.3, 2.0, 1.1, 2.0, 4.9, 6.5, 1.8, 2.3, 1.9, 5.1, 7.1, 13.9, 10.1, 0.9, 1.4, 3.6, 3.6, 4.2, 1.3, 5.35, 5.9, 6.5, 3.0, 1.1, 18.15, 1.6, 1.6, 2.1, 5.7, 14.4, 14.55, 1.3, 6.2, 4.8, 1.5, 2.9, 12.2, 4.5, 10.2, 1.8, 8.9, 2.8, 7.8, 8.1, 14.2, 1.1, 14.4, 1.8, 6.8, 1.3, 17.4, 6.5, 3.7, 14.6, 12.8, 2.1, 1.6, 1.9, 5.9, 3.6, 4.4, 1.8, 1.7, 12.2, 1.2, 2.6, 4.2, 1.4, 1.7, 4.6, 4.6, 2.0, 1.5, 1.7, 2.1, 7.4, 7.3, 2.2, 13.5, 10.2, 2.0, 2.2, 1.4, 7.0, 3.8, 1.6, 3.9, 1.6, 1.6, 18.4, 10.2, 2.5, 2.3, 1.5, 2.7, 2.1, 4.8, 10.8, 6.9, 1.8, 1.3, 1.2, 4.7, 2.4, 7.4, 5.7, 6.8, 1.5, 2.1, 9.25, 1.0, 18.95, 1.4, 1.8, 15.4, 2.4, 2.0, 1.2, 2.6, 1.5, 1.9, 2.1, 1.5, 1.7, 2.8, 6.3, 3.2, 1.6, 2.1, 10.7, 2.0, 8.2, 5.0, 8.3, 1.3, 3.6, 10.7, 1.9, 19.25, 4.7, 2.5, 15.55, 8.5, 12.4, 6.0, 1.3, 1.4, 2.0, 1.0, 12.2, 2.3, 1.5, 13.1, 10.4, 1.7, 10.2, 1.1, 13.0, 1.5, 2.2, 3.5, 4.0, 3.5, 14.1, 3.4, 1.9, 2.6, 2.2, 11.8, 1.2, 1.4, 2.2, 12.5, 5.4, 1.1, 1.4, 6.2, 4.4, 9.2, 1.8, 2.8, 1.6, 2.5, 11.0, 8.2, 2.9, 11.0, 7.3, 2.6, 15.4, 0.9, 6.9, 3.1, 4.25, 17.8, 4.8, 5.7, 8.6, 3.6, 1.9, 26.05, 4.5, 3.2, 1.9, 1.9, 2.5, 14.6, 7.25, 12.2, 4.7, 1.1, 1.6, 7.7, 1.6, 7.2, 1.2, 1.6, 1.3, 2.3, 6.3, 16.5, 3.3, 1.4, 6.2, 6.3, 7.7, 14.7, 9.8, 1.2, 1.0, 1.4, 5.3, 4.6, 8.65, 2.0, 4.9, 1.2, 1.0, 2.8, 4.2, 3.7, 4.1, 2.7, 2.9, 1.2, 1.2, 9.1, 6.3, 6.9, 13.6, 1.4, 2.1, 1.4, 5.0, 1.5, 1.55, 1.5, 10.4, 4.2, 6.7, 2.3, 9.9, 11.0, 3.2, 1.9, 3.3, 19.1, 1.2, 2.2, 4.9, 1.1, 9.3, 2.6, 1.9, 11.2, 8.0, 13.4, 5.1, 1.95, 4.7, 8.9, 4.8, 1.4, 2.2, 18.0, 17.3, 7.2, 4.1, 8.9, 1.7, 14.9, 1.1, 1.5, 14.6, 2.3, 1.1, 14.2, 1.2, 1.5, 9.6, 5.7, 2.7, 1.4, 12.7, 9.1, 10.5, 14.3, 6.5, 8.1, 1.1, 4.7, 1.0, 4.4, 1.6, 3.6, 7.4, 12.8, 0.8, 1.5, 2.2, 12.2, 1.6, 3.8, 2.8, 1.4, 8.2, 1.0, 1.9, 0.9, 12.15, 2.0, 4.3, 3.5, 5.6, 2.4, 4.2, 15.55, 2.3, 4.0, 8.7, 13.6, 5.4, 1.5, 6.4, 3.1, 15.15, 5.2, 4.8, 1.4, 2.4, 5.9, 2.7, 6.8, 1.1, 11.2, 3.3, 7.5, 2.8, 2.1, 1.1, 1.6, 9.5, 1.9, 1.4, 9.7, 1.3, 14.0, 1.8, 1.6, 3.5, 7.3, 1.1, 7.6, 1.1, 1.9, 1.6, 4.8, 1.5, 1.5, 17.55, 2.2, 15.6, 1.6, 1.6, 4.8, 7.4, 2.1, 12.8, 2.4, 2.7, 7.0, 1.1, 1.8, 1.9, 1.7, 7.9, 3.1, 18.6, 3.0, 6.9, 1.8, 7.4, 8.8, 1.2, 1.8, 14.9, 1.7, 2.8, 15.9, 4.2, 15.5, 1.7, 13.9, 9.65, 3.3, 7.5, 2.1, 2.5, 2.3, 3.3, 3.8, 2.0, 2.2, 10.9, 1.2, 1.6, 2.2, 10.4, 1.9, 12.7, 2.5, 8.1, 1.3, 9.6, 9.2, 14.5, 13.55, 10.5, 1.3, 1.6, 8.1, 1.0, 1.8, 1.1, 2.7, 3.5, 5.1, 1.3], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Current<br>residual.sugar=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [3.5, 14.3, 1.2, 2.2, 2.3, 1.2, 1.2, 8.0, 2.1, 1.6, 2.7, 1.3, 1.2, 9.65, 4.3, 1.2, 1.4, 2.8, 2.1, 3.2, 14.2, 14.5, 0.9, 1.1, 7.2, 1.2, 9.1, 3.95, 3.6, 4.7, 1.8, 6.2, 15.0, 6.4, 1.5, 1.2, 2.6, 7.9, 3.95, 1.9, 7.5, 2.5, 14.0, 13.0, 2.0, 2.3, 16.85, 1.9, 10.3, 1.7, 2.0, 3.9, 9.3, 1.0, 7.0, 14.1, 8.2, 1.8, 11.4, 1.7, 2.3, 20.3, 5.5, 9.7, 7.1, 2.1, 8.1, 6.7, 1.8, 1.3, 14.4, 2.4, 11.0, 7.4, 13.2, 12.3, 19.95, 1.7, 1.7, 1.9, 1.5, 1.0, 2.4, 2.1, 9.7, 3.1, 1.5, 14.5, 6.6, 1.6, 12.7, 7.4, 3.6, 1.4, 1.6, 6.5, 1.4, 4.6, 1.8, 2.1, 7.1, 9.9, 2.0, 2.1, 14.4, 10.9, 2.0, 9.0, 2.5, 2.8, 13.0, 31.6, 8.2, 1.7, 5.0, 2.2, 2.7, 1.4, 12.2, 3.2, 11.8, 1.5, 2.8, 1.4, 2.1, 2.1, 1.9, 4.7, 2.6, 1.8, 5.1, 1.8, 1.7, 17.5, 1.4, 17.1, 1.6, 2.5, 5.2, 1.6, 4.4, 3.2, 2.8, 8.5, 13.1, 1.2, 13.8, 5.6, 6.2, 1.1, 10.3, 1.0, 11.7, 16.2, 1.6, 2.8, 1.5, 2.0, 1.3, 14.2, 1.6, 2.0, 6.1, 8.2, 2.5, 1.2, 4.6, 2.2, 2.4, 1.1, 1.4, 1.1, 15.2, 4.7, 7.5, 4.2, 1.6, 7.8, 3.5, 2.4, 5.2, 10.8, 1.3, 3.4, 9.0, 1.8, 2.1, 4.8, 20.7, 2.2, 7.4, 17.3, 2.2, 2.3, 4.7, 4.9, 3.7, 1.6, 13.8, 8.2, 5.7, 1.7, 4.4, 5.9, 8.7, 2.1, 4.3, 6.55, 1.6, 12.9, 5.4, 2.2, 1.7, 2.9, 2.2, 7.6, 1.3, 3.3, 6.3, 1.8, 5.3, 7.3, 2.4, 7.1, 13.7, 10.2, 3.0, 5.3, 2.4, 1.5, 4.1, 6.9, 8.0, 7.1, 2.1, 11.8, 3.3, 1.4, 9.1, 1.2, 5.5, 7.9, 11.1, 1.8, 1.9, 2.3, 13.9, 14.5, 1.2, 2.7, 1.6, 12.0, 14.1, 2.7, 12.85, 14.8, 1.6, 1.1, 2.1, 2.7, 2.1, 7.2, 1.2, 5.4, 4.6, 2.0, 2.6, 12.6, 7.4, 10.2, 8.6, 4.2, 2.5, 2.6, 8.8, 1.8, 1.3, 7.2, 1.1, 2.2, 1.8, 1.7, 6.2, 10.8, 7.75, 2.7, 6.6, 1.0, 7.1, 1.5, 3.0, 2.4, 13.3, 2.1, 2.8, 7.75, 15.8, 5.0, 20.8, 6.4, 2.4, 1.4, 4.1, 6.0, 13.2, 2.1, 1.5, 5.4, 1.8, 2.6, 16.8, 5.0, 4.4, 13.0, 1.1, 1.2, 11.6, 1.3, 3.5, 2.9, 5.7, 15.5, 4.8, 15.55, 5.1, 2.7, 3.8, 1.8, 14.2, 5.3, 1.9, 12.5, 2.6, 10.4, 1.2, 4.1, 14.2, 12.5, 8.3, 2.0, 3.8, 10.7, 8.2, 2.1, 1.9, 9.8, 6.5, 0.9, 2.7, 2.6, 13.0, 1.4, 13.4, 16.2, 10.2, 4.9, 2.0, 7.0, 12.7, 2.4, 6.2, 8.6, 2.6, 15.55, 1.4, 7.3, 16.0, 7.0, 16.8, 3.2, 1.2, 6.2, 1.2, 1.0, 4.6, 5.5, 1.1, 10.8, 2.2, 10.2, 11.75, 6.0, 7.4, 7.4, 1.9, 2.1, 1.6, 1.2, 2.4, 5.1, 7.4, 19.95, 3.8, 16.1, 5.4, 2.6, 18.95, 2.3, 2.0, 1.5, 2.1, 4.4, 1.8, 17.5, 2.3, 12.8, 13.3, 1.4, 14.7, 4.7, 1.4, 2.5, 1.1, 1.5, 10.3, 3.0, 6.8, 2.4, 7.1, 7.0, 1.2, 1.8, 2.65, 2.4, 2.1, 2.8, 7.4, 11.5, 1.6, 1.3, 2.6, 1.2, 1.7, 1.4, 1.9, 1.9, 4.3, 13.2, 1.9, 12.8, 12.8, 1.7, 8.6, 5.7, 3.2, 2.0, 1.6, 2.4, 2.0, 2.5, 14.7, 1.8, 1.4, 1.5, 17.55, 1.8, 13.55, 1.0, 12.0, 3.6, 3.85, 4.0, 1.2, 15.4, 6.5, 1.4, 9.1, 1.1, 3.0, 2.5, 6.6, 8.1, 2.4, 15.5, 1.7, 11.3, 5.7, 1.4, 1.4, 2.0, 6.3, 4.7, 2.5, 1.8, 7.4, 9.3, 10.55, 2.9, 1.7, 2.2, 1.5, 14.75, 2.4, 2.4, 3.5, 1.8, 1.5, 2.8, 1.2, 2.0, 1.3, 10.5, 12.8, 1.2, 1.9, 16.0, 7.7, 2.3, 2.9, 1.6, 2.1, 1.1, 1.6, 3.7, 8.0, 1.9, 8.8, 6.7, 7.3, 2.5, 3.7, 2.6, 1.3, 8.3, 1.3, 11.2, 5.2, 4.7, 9.2, 12.7, 2.5, 7.4, 13.2, 1.8, 2.1, 5.25, 3.65, 15.75, 1.9, 13.65, 4.9, 9.15, 1.9, 2.5, 0.9, 14.0, 2.6, 2.8, 1.8, 12.8, 17.5, 8.25, 1.9, 1.6, 1.5, 6.9, 2.4, 1.3, 1.2, 6.7, 14.8, 12.7, 13.7, 2.0, 1.3, 1.6, 9.25, 12.9, 1.0, 4.7, 1.7, 10.8, 1.1, 19.95, 1.1, 1.2, 9.7, 6.7, 1.6, 2.3, 5.3, 13.6, 11.4, 1.6, 1.4, 2.6, 2.4, 10.6, 4.6, 2.2, 1.7, 2.0, 1.5, 5.0, 2.0, 2.6, 4.6, 12.7, 5.7, 6.3, 6.7, 8.2, 7.1, 2.0, 0.8, 2.0, 1.9, 1.3, 1.7, 1.1, 1.1, 9.85, 1.2, 1.1, 2.1, 9.5, 1.7, 8.0, 13.65, 7.9, 4.4, 9.55, 1.1, 7.9, 1.8, 2.2, 1.1, 5.9, 2.4, 6.0, 2.0, 2.9, 1.4, 2.1, 5.2, 5.8, 1.8, 2.0, 2.3, 15.1, 2.3, 16.8, 13.8, 1.5, 12.2, 8.2, 4.3, 8.9], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Reference<br>residual.sugar=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [10.4, 5.1, 1.1, 2.0, 2.6, 3.9, 6.9, 1.9, 8.9, 14.8, 4.5, 1.4, 13.5, 1.4, 2.7, 5.6, 2.4, 1.5, 18.15, 1.7, 1.4, 8.6, 3.1, 5.0, 1.9, 2.3, 6.4, 2.5, 13.0, 1.3, 2.5, 1.2, 9.1, 5.4, 13.5, 2.0, 1.6, 11.8, 3.4, 8.1, 13.1, 3.0, 1.3, 1.2, 1.8, 17.8, 1.1, 1.4, 7.0, 2.1, 2.4, 16.0, 4.8, 2.2, 11.8, 13.0, 7.1, 1.7, 1.4, 3.0, 11.0, 12.0, 3.75, 12.1, 2.1, 1.1, 8.9, 2.2, 2.0, 1.0, 8.4, 6.4, 10.8, 0.9, 1.8, 1.5, 13.0, 1.8, 8.1, 4.3, 2.3, 9.1, 7.5, 1.9, 2.0, 2.3, 9.5, 1.4, 12.5, 3.5, 6.4, 9.2, 2.2, 10.8, 19.8, 8.1, 14.5, 3.2, 7.1, 15.3, 13.3, 2.3, 2.7, 18.35, 1.8, 1.7, 14.5, 1.0, 6.4, 9.2, 1.8, 1.1, 1.6, 4.6, 1.8, 11.5, 11.0, 1.4, 2.8, 1.9, 16.05, 2.1, 9.2, 11.95, 13.1, 12.1, 4.8, 2.3, 1.9, 7.8, 1.4, 3.4, 6.5, 8.0, 1.6, 6.1, 8.8, 16.2, 1.2, 2.1, 17.8, 10.0, 0.9, 15.0, 1.4, 1.1, 1.7, 16.05, 2.0, 2.6, 2.0, 2.3, 1.1, 2.9, 1.1, 2.2, 3.3, 12.1, 1.2, 1.1, 3.2, 2.2, 4.5, 3.3, 1.8, 6.4, 7.5, 16.2, 10.4, 8.1, 7.8, 1.0, 7.2, 13.9, 2.7, 2.8, 2.0, 2.2, 2.4, 3.5, 1.5, 1.8, 2.3, 1.4, 13.2, 7.9, 8.6, 3.85, 10.0, 8.3, 4.5, 1.0, 10.7, 0.8, 7.6, 1.9, 8.95, 1.35, 15.6, 1.9, 5.0, 13.8, 13.8, 2.3, 2.4, 7.3, 1.4, 2.3, 1.7, 0.8, 4.8, 1.4, 6.7, 10.0, 15.6, 12.8, 13.7, 1.0, 12.1, 9.85, 1.4, 0.9, 14.8, 2.2, 1.8, 8.3, 2.7, 15.2, 5.7, 2.5, 5.7, 1.3, 6.3, 18.8, 1.4, 6.55, 19.35, 10.4, 2.6, 11.9, 2.5, 6.9, 14.9, 4.5, 0.9, 1.8, 2.5, 1.9, 6.2, 1.3, 2.5, 6.5, 9.1, 2.1, 1.3, 15.3, 6.1, 1.1, 3.2, 2.3, 1.6, 4.8, 12.6, 1.0, 1.7, 11.2, 1.3, 1.3, 2.3, 7.8, 17.8, 13.0, 2.1, 12.3, 6.5, 12.1, 1.9, 11.8, 10.5, 1.4, 2.3, 1.8, 1.3, 1.6, 6.9, 7.7, 1.3, 12.9, 1.2, 8.6, 1.3, 2.2, 2.0, 1.1, 2.6, 2.0, 5.0, 12.9, 12.1, 3.0, 2.1, 1.6, 2.4, 7.6, 3.2, 0.6, 18.35, 1.4, 2.2, 10.7, 4.0, 7.6, 1.8, 8.3, 2.3, 1.2, 16.45, 2.7, 11.5, 2.4, 2.2, 11.6, 2.0, 1.8, 8.0, 11.2, 7.5, 7.0, 2.1, 8.3, 22.0, 2.4, 1.6, 15.4, 1.0, 2.4, 14.9, 2.5, 0.8, 9.7, 1.5, 1.6, 6.1, 2.2, 15.8, 2.0, 7.4, 9.4, 1.3, 16.7, 10.5, 1.7, 13.1, 2.3, 2.0], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Current<br>residual.sugar=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [2.5, 4.7, 7.0, 2.3, 19.45, 22.0, 13.15, 1.6, 1.7, 2.3, 4.3, 1.2, 6.4, 7.2, 14.3, 18.1, 7.6, 2.7, 4.9, 1.1, 1.4, 17.2, 4.9, 11.8, 1.6, 1.7, 2.1, 14.8, 0.7, 0.8, 11.95, 1.1, 2.5, 2.3, 1.0, 1.7, 2.3, 1.5, 4.9, 1.4, 4.1, 2.0, 11.2, 15.2, 1.4, 1.7, 3.4, 2.2, 19.3, 6.1, 7.0, 18.35, 6.9, 2.4, 2.6, 1.8, 2.0, 4.2, 10.5, 15.4, 4.2, 8.3, 7.7, 2.9, 10.7, 2.0, 1.4, 1.9, 3.0, 1.6, 2.1, 2.5, 1.3, 1.6, 7.7, 1.2, 18.75, 1.7, 1.0, 1.9, 9.3, 1.6, 12.6, 2.0, 1.7, 1.7, 4.8, 13.7, 1.2, 6.1, 7.1, 1.9, 2.0, 14.3, 1.9, 2.1, 11.7, 3.9, 9.7, 8.1, 2.5, 6.5, 18.1, 1.8, 1.5, 2.1, 1.9, 1.4, 5.1, 13.7, 1.6, 14.5, 1.9, 1.3, 1.2, 10.7, 12.3, 4.9, 8.3, 2.1, 14.95, 1.8, 1.7, 1.6, 2.0, 7.0, 1.2, 11.1, 2.0, 5.1, 1.4, 15.6, 14.3, 1.0, 2.0, 11.0, 1.8, 3.0, 10.4, 6.6, 6.7, 1.7, 1.2, 5.1, 2.3, 12.1, 2.0, 1.6, 1.9, 9.5, 0.8, 13.3, 5.5, 7.7, 1.5, 1.4, 12.1, 8.2, 10.0, 12.6, 2.0, 15.6, 1.4, 13.5, 4.4, 7.8, 1.1, 1.6, 5.6, 8.6, 16.05, 10.4, 1.9, 1.8, 1.9, 1.4, 1.0, 11.6, 10.3, 15.8, 1.5, 5.1, 2.7, 1.1, 15.1, 1.4, 8.1, 17.8, 1.3, 7.9, 2.3, 3.75, 7.8, 1.4, 10.8, 2.0, 1.2, 6.4, 14.5, 11.8, 1.8, 13.2, 14.9, 15.4, 1.25, 15.7, 6.9, 2.2, 12.9, 10.2, 7.3, 5.0, 2.1, 1.1, 6.8, 2.7, 11.1, 9.7, 1.4, 1.6, 11.2, 8.0, 9.2, 6.8, 1.6, 10.4, 2.0, 3.9, 1.2, 1.0, 17.9, 1.6, 17.1, 10.7, 1.9, 8.8, 1.0, 1.4, 14.3, 2.0, 7.7, 2.3, 2.0, 9.6, 0.9, 5.9, 1.5, 5.4, 13.7, 6.1, 1.6, 16.0, 10.7, 10.6, 2.5, 16.3, 9.6, 4.6, 8.9, 2.5, 2.4, 1.6, 11.9, 11.9, 2.6, 1.3, 6.0, 1.6, 1.9, 8.9, 1.5, 2.6, 17.85, 6.4, 2.0, 1.8, 15.6, 2.7, 2.4, 11.2, 2.6, 17.75, 1.15, 1.3, 3.8, 1.2, 0.9, 4.5, 1.35, 2.5, 7.7, 7.0, 8.5, 2.7, 5.2, 2.2, 0.9, 7.8, 15.8, 2.3, 1.8, 2.6, 7.0, 11.9, 12.1, 1.0, 3.1, 10.1, 15.4, 8.1, 1.6, 2.0, 1.3, 17.8, 2.0, 13.6, 1.7, 8.1, 1.3, 2.8, 2.55, 1.7, 17.8, 5.6, 3.45, 10.1, 17.9, 1.4, 8.0, 1.3, 2.5, 11.4, 1.2, 1.6, 2.2, 1.3, 0.8, 1.3, 17.1, 5.2, 8.1, 2.4, 2.0, 2.0, 2.1, 1.3, 8.2, 2.5, 17.1, 1.3, 2.7, 2.0], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Reference\", \"x\": 0.245, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Current\", \"x\": 0.755, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"barmode\": \"overlay\", \"legend\": {\"title\": {\"text\": \"target\"}, \"tracegroupgap\": 0}, \"margin\": {\"t\": 60}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.49], \"title\": {\"text\": \"residual.sugar\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.51, 1.0], \"matches\": \"x\", \"title\": {\"text\": \"residual.sugar\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"count\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}}}, \"residual.sugar_good\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (ref)\", \"type\": \"scatter\", \"x\": [1.3, 6.3, 2.6, 6.0, 1.2, 2.3, 2.2, 1.1, 2.7, 3.5, 0.9, 1.5, 5.7, 17.85, 4.55, 6.5, 1.0, 3.7, 1.7, 11.8, 8.2, 4.5, 1.5, 2.1, 7.2, 1.9, 1.2, 13.0, 4.6, 1.2, 1.2, 2.1, 1.9, 1.8, 2.0, 13.9, 10.7, 2.0, 4.3, 1.4, 1.1, 1.3, 1.8, 1.2, 11.0, 8.8, 2.5, 8.3, 2.4, 3.5, 16.4, 14.4, 1.4, 5.5, 1.1, 13.3, 2.5, 0.8, 1.2, 6.0, 2.2, 5.0, 2.7, 1.6, 2.6, 2.6, 2.4, 8.1, 7.4, 8.55, 1.5, 6.1, 5.9, 8.3, 5.7, 8.9, 3.6, 1.1, 2.1, 8.6, 2.3, 5.0, 1.1, 10.6, 7.7, 1.1, 1.2, 2.6, 4.2, 2.2, 1.5, 4.9, 1.8, 1.5, 6.2, 7.8, 13.7, 3.2, 1.3, 1.4, 1.1, 13.1, 2.2, 2.3, 1.2, 2.4, 7.7, 4.5, 1.2, 1.9, 1.2, 31.6, 1.2, 2.2, 3.9, 1.4, 2.0, 1.6, 16.5, 2.1, 12.8, 1.5, 10.5, 12.2, 2.2, 1.7, 2.1, 12.1, 1.5, 2.0, 4.0, 1.9, 14.75, 2.5, 4.5, 5.7, 2.6, 2.4, 2.8, 2.7, 0.9, 5.8, 8.6, 4.7, 2.2, 1.4, 6.4, 1.4, 1.7, 14.4, 14.7, 1.4, 1.6, 13.4, 14.9, 5.8, 1.0, 1.8, 8.8, 1.5, 11.4, 2.0, 1.4, 2.9, 6.6, 11.9, 9.9, 5.1, 11.2, 1.4, 2.0, 2.0, 1.6, 11.1, 3.0, 7.6, 1.7, 6.0, 4.8, 2.4, 6.1, 1.2, 1.7, 2.1, 7.0, 1.2, 1.7, 1.5, 3.6, 1.1, 1.8, 2.2, 8.3, 8.0, 2.3, 1.6, 1.3, 1.3, 2.0, 1.1, 2.0, 4.9, 6.5, 1.8, 2.3, 1.9, 5.1, 7.1, 13.9, 10.1, 0.9, 1.4, 3.6, 3.6, 4.2, 1.3, 5.35, 5.9, 6.5, 3.0, 1.1, 18.15, 1.6, 1.6, 2.1, 5.7, 14.4, 14.55, 1.3, 6.2, 4.8, 1.5, 2.9, 12.2, 4.5, 10.2, 1.8, 8.9, 2.8, 7.8, 8.1, 14.2, 1.1, 14.4, 1.8, 6.8, 1.3, 17.4, 6.5, 3.7, 14.6, 12.8, 2.1, 1.6, 1.9, 5.9, 3.6, 4.4, 1.8, 1.7, 12.2, 1.2, 2.6, 4.2, 1.4, 1.7, 4.6, 4.6, 2.0, 1.5, 1.7, 2.1, 7.4, 7.3, 2.2, 13.5, 10.2, 2.0, 2.2, 1.4, 7.0, 3.8, 1.6, 3.9, 1.6, 1.6, 18.4, 10.2, 2.5, 2.3, 1.5, 2.7, 2.1, 4.8, 10.8, 6.9, 1.8, 1.3, 1.2, 4.7, 2.4, 7.4, 5.7, 6.8, 1.5, 2.1, 9.25, 1.0, 18.95, 1.4, 1.8, 15.4, 2.4, 2.0, 1.2, 2.6, 1.5, 1.9, 2.1, 1.5, 1.7, 2.8, 6.3, 3.2, 1.6, 2.1, 10.7, 2.0, 8.2, 5.0, 8.3, 1.3, 3.6, 10.7, 1.9, 19.25, 4.7, 2.5, 15.55, 8.5, 12.4, 6.0, 1.3, 1.4, 2.0, 1.0, 12.2, 2.3, 1.5, 13.1, 10.4, 1.7, 10.2, 1.1, 13.0, 1.5, 2.2, 3.5, 4.0, 3.5, 14.1, 3.4, 1.9, 2.6, 2.2, 11.8, 1.2, 1.4, 2.2, 12.5, 5.4, 1.1, 1.4, 6.2, 4.4, 9.2, 1.8, 2.8, 1.6, 2.5, 11.0, 8.2, 2.9, 11.0, 7.3, 2.6, 15.4, 0.9, 6.9, 3.1, 4.25, 17.8, 4.8, 5.7, 8.6, 3.6, 1.9, 26.05, 4.5, 3.2, 1.9, 1.9, 2.5, 14.6, 7.25, 12.2, 4.7, 1.1, 1.6, 7.7, 1.6, 7.2, 1.2, 1.6, 1.3, 2.3, 6.3, 16.5, 3.3, 1.4, 6.2, 6.3, 7.7, 14.7, 9.8, 1.2, 1.0, 1.4, 5.3, 4.6, 8.65, 2.0, 4.9, 1.2, 1.0, 2.8, 4.2, 3.7, 4.1, 2.7, 2.9, 1.2, 1.2, 9.1, 6.3, 6.9, 13.6, 1.4, 2.1, 1.4, 5.0, 1.5, 1.55, 1.5, 10.4, 4.2, 6.7, 2.3, 9.9, 11.0, 3.2, 1.9, 3.3, 19.1, 1.2, 2.2, 4.9, 1.1, 9.3, 2.6, 1.9, 11.2, 8.0, 13.4, 5.1, 1.95, 4.7, 8.9, 4.8, 1.4, 2.2, 18.0, 17.3, 7.2, 4.1, 8.9, 1.7, 14.9, 1.1, 1.5, 14.6, 2.3, 1.1, 14.2, 1.2, 1.5, 9.6, 5.7, 2.7, 1.4, 12.7, 9.1, 10.5, 14.3, 6.5, 8.1, 1.1, 4.7, 1.0, 4.4, 1.6, 3.6, 7.4, 12.8, 0.8, 1.5, 2.2, 12.2, 1.6, 3.8, 2.8, 1.4, 8.2, 1.0, 1.9, 0.9, 12.15, 2.0, 4.3, 3.5, 5.6, 2.4, 4.2, 15.55, 2.3, 4.0, 8.7, 13.6, 5.4, 1.5, 6.4, 3.1, 15.15, 5.2, 4.8, 1.4, 2.4, 5.9, 2.7, 6.8, 1.1, 11.2, 3.3, 7.5, 2.8, 2.1, 1.1, 1.6, 9.5, 1.9, 1.4, 9.7, 1.3, 14.0, 1.8, 1.6, 3.5, 7.3, 1.1, 7.6, 1.1, 1.9, 1.6, 4.8, 1.5, 1.5, 17.55, 2.2, 15.6, 1.6, 1.6, 4.8, 7.4, 2.1, 12.8, 2.4, 2.7, 7.0, 1.1, 1.8, 1.9, 1.7, 7.9, 3.1, 18.6, 3.0, 6.9, 1.8, 7.4, 8.8, 1.2, 1.8, 14.9, 1.7, 2.8, 15.9, 4.2, 15.5, 1.7, 13.9, 9.65, 3.3, 7.5, 2.1, 2.5, 2.3, 3.3, 3.8, 2.0, 2.2, 10.9, 1.2, 1.6, 2.2, 10.4, 1.9, 12.7, 2.5, 8.1, 1.3, 9.6, 9.2, 14.5, 13.55, 10.5, 1.3, 1.6, 8.1, 1.0, 1.8, 1.1, 2.7, 3.5, 5.1, 1.3], \"xaxis\": \"x\", \"y\": [0.8156061324462894, 0.42491310922683634, 0.8867827646463432, 0.8014995238430205, 0.30499958310650876, 0.5817355832705369, 0.959171062334887, 0.7854416128369749, 0.9085690698200813, 0.8998600376511439, 0.6341165000693628, 0.412102187638673, 0.7643629411050379, 0.4710001938005606, 0.40182653035141874, 0.40438056362905367, 0.8870480016118494, 0.3650667978415713, 0.9064321709292111, 0.9327245345966092, 0.6458420185168736, 0.8821841129047617, 0.6704018506542557, 0.7655671181822064, 0.8616986618932058, 0.48774537944210006, 0.9637355036179479, 0.6794204065079696, 0.6044835155949141, 0.7867954023600708, 0.9137982268836646, 0.5867502063434873, 0.8048584290077971, 0.9718511071053526, 0.9627192884041744, 0.7978623718349598, 0.6091120966723917, 0.8943338178728011, 0.8853376735027229, 0.9045563504021151, 0.9264844632598176, 0.6342457655367447, 0.9414033426130164, 0.5636516403732365, 0.5172967922101196, 0.4836896337264441, 0.35199620689495453, 0.788779954566273, 0.9696552399248426, 0.772496554239754, 0.8132656157621138, 0.4539090261140653, 0.9333708926412786, 0.679765045723866, 0.48457442622955804, 0.4248820606938153, 0.6737819616086004, 0.8780741425819777, 0.38340602447337646, 0.90634085684919, 0.5574014604752268, 0.6804147683859246, 0.9077110088845216, 0.7718472635729894, 0.4717552048891654, 0.22222808308441652, 0.8616549355667619, 0.705749071892896, 0.4699129352300819, 0.9680524782819758, 0.8891353183282249, 0.9466602521798594, 0.8553382520847058, 0.7430243903066251, 0.6616131862201935, 0.6919609500216202, 0.96565744679506, 0.913108907487878, 0.5395521774612226, 0.9026238558501023, 0.6550941529376255, 0.9757876320152292, 0.8833495792027257, 0.6666029765862381, 0.8504582120840628, 0.9320215595878566, 0.7639947574915884, 0.6085229656221847, 0.9557131606798471, 0.46184432615952054, 0.5642658412077981, 0.8815615400732472, 0.7189203536918151, 0.9301020530176726, 0.7341394174346678, 0.7759189559372703, 0.8448078654733812, 0.9012666081120407, 0.8926028620066223, 0.5287492720273277, 0.6874206920638863, 0.37408584674942635, 0.8348370105186077, 0.8697567261320243, 0.9175759024810304, 0.44644098895981, 0.8874384748400057, 0.7787567487441118, 0.9416122482572158, 0.3265229243180111, 0.9308095750950773, 0.42267134533232753, 0.43068181214270274, 0.8727308285810839, 0.7201611177732586, 0.8430904589044517, 0.8140617541555761, 0.9456747441572588, 0.6672663325862807, 0.8756470416862959, 0.518871521713375, 0.7040615347784164, 0.4957960231649875, 0.6250130361556073, 0.27413726132188326, 0.5193133578087885, 0.37656641690434584, 0.5808048103476511, 0.7917827117482167, 0.36569143480873245, 0.7232542293832885, 0.9785934574433302, 0.5715075300165849, 0.8182555969893297, 0.5448461144048058, 0.9491291995847589, 0.4833587957991669, 0.3189279754564957, 0.9184825510014271, 0.5524830505676419, 0.9600429304649183, 0.7818180966165994, 0.7962710274484252, 0.7569429870375118, 0.46184432615952054, 0.7641514270390748, 0.9486763575522457, 0.8086368705092697, 0.6784536879503494, 0.6877019790624462, 0.6082670858563528, 0.6053794617794684, 0.6319330693089359, 0.4982105707488519, 0.6787928880949093, 0.9231980717613485, 0.8831230955067948, 0.6845485656817341, 0.8799204262605215, 0.9164563829924386, 0.7819268199067826, 0.23469888428232324, 0.9492377841603665, 0.8826092272015389, 0.6360541596480074, 0.5184081252698399, 0.6400126753125241, 0.542646305979658, 0.4479501208302092, 0.7783171875827786, 0.7867712153112567, 0.5236605417423803, 0.6959846197179591, 0.7925023358445066, 0.6683189355892497, 0.18737025221649042, 0.42506327048176057, 0.7272596040941706, 0.7314191754306454, 0.4827891324637794, 0.6649341228620356, 0.9038332731164471, 0.9588917860646077, 0.8945194928389463, 0.49833043835950624, 0.7997712594855277, 0.8577935987172323, 0.7622736922026153, 0.8039391974899521, 0.7396811504731934, 0.8115340233127679, 0.801728888664367, 0.738451208106372, 0.5859674792922007, 0.1865203674848816, 0.8773430435604171, 0.36888329310067386, 0.8651817982269884, 0.9067615420962557, 0.8594983988587351, 0.7437750884018276, 0.9145224932934428, 0.9135679891815164, 0.8001832456898428, 0.6860977766129374, 0.9377826008632761, 0.9300369611912853, 0.6997062971069969, 0.5693182102579236, 0.3404656140239559, 0.7160591142088384, 0.7953146078011, 0.8869803873277935, 0.7639982823097876, 0.8681285227071118, 0.576868797021353, 0.93035102563313, 0.8375600281828176, 0.8279918435672958, 0.9266689436294401, 0.7559862346636359, 0.5099889666930224, 0.6914445842613687, 0.9651950326885705, 0.87851968214492, 0.8499702807396289, 0.4685752957996948, 0.7241546992314323, 0.7848147251007912, 0.7341394174346678, 0.7008877443692281, 0.340588975625529, 0.5013021766499856, 0.8321174529331695, 0.8818378666553491, 0.9176909075187759, 0.8634678749265305, 0.7436082905772717, 0.9343776659412377, 0.7668809937296346, 0.6243383802582345, 0.5332560471205093, 0.6907315465649003, 0.16626803588025432, 0.1668542888532837, 0.7408943843163458, 0.5221312328975666, 0.7457559475413279, 0.46389636934606376, 0.9292627865919654, 0.5268311186840582, 0.4244151934213653, 0.643310536612302, 0.8577438313980266, 0.7816208399762355, 0.8553382520847058, 0.7010035672814305, 0.5242572272016158, 0.9187320011579697, 0.8703498177621264, 0.6713045345576062, 0.9137982268836646, 0.8614414457916845, 0.9445662266054761, 0.8808216590199034, 0.7386378115490353, 0.8873009977622293, 0.9157094897337859, 0.6606038558129893, 0.9296803968514485, 0.8864322240790464, 0.5146720135715994, 0.8720710714485208, 0.9415427660945741, 0.9138701141498735, 0.6527559092576063, 0.8751970040938668, 0.9249766460056568, 0.801728888664367, 0.6575848465963361, 0.6934824043184128, 0.8619113960143526, 0.9419078024651042, 0.9591721389341828, 0.8397407150753159, 0.9084383840076588, 0.4963969309336195, 0.7359588175524252, 0.3531961907069324, 0.9279819479140234, 0.7752976919572294, 0.8665226278427577, 0.9515211055933231, 0.7314191754306454, 0.890886918514299, 0.3235491032739525, 0.3719939405423586, 0.6323804178173072, 0.8398006965792015, 0.8239469134189235, 0.8592101816891015, 0.7615002907198236, 0.8688259750909261, 0.8718104001390852, 0.5838074755684882, 0.8756470416862959, 0.901850575196968, 0.9451930143658351, 0.6253812669856891, 0.5890764576710766, 0.4921052500998711, 0.4862070578416567, 0.9170647663398394, 0.7035583451969506, 0.8476385889092957, 0.5603058978573646, 0.5810606890504925, 0.9088604673919816, 0.8903252600075929, 0.944267921154058, 0.9435968591480925, 0.938237366988842, 0.9357286047893738, 0.7961386682142712, 0.7840233885688647, 0.2513590507613302, 0.7389284097502917, 0.9053472250810051, 0.44438282424164377, 0.862281110352348, 0.8021059248496223, 0.9152740930046814, 0.643737358401971, 0.8540304955499701, 0.8613418170006786, 0.6911084183178322, 0.8848367871057808, 0.8387883096682573, 0.5942651630821018, 0.65691393717736, 0.6369979527510315, 0.8280658524313272, 0.9640736168216585, 0.6546311715671466, 0.5599819536107853, 0.48348053317652906, 0.7668016587569692, 0.03620763244300767, 0.7364400865449663, 0.37408584674942635, 0.8767503774172, 0.8743962287172513, 0.8751970040938668, 0.8833495792027257, 0.7091886355621774, 0.87006937054451, 0.7904001815220257, 0.8761418339280951, 0.8306834851111597, 0.7531715889012326, 0.38181207472529843, 0.6490458991820136, 0.9138057013338913, 0.9046222904886461, 0.17956061692355052, 0.7506163079023257, 0.8963285795381793, 0.8848361664653354, 0.9283037217377402, 0.45996158699034445, 0.7290858434196763, 0.8319094967702583, 0.6578018675312727, 0.18727567457681707, 0.8673410249845035, 0.9453298670648187, 0.9446538464906173, 0.19605573045952288, 0.6723831041639817, 0.3438281302059518, 0.37858973820495484, 0.6953170483296187, 0.21463507152544156, 0.26963792069965237, 0.3280912492037974, 0.8399932187801539, 0.420387898633768, 0.36522500752858966, 0.5810560693343539, 0.9306346767722963, 0.7167716539092029, 0.656736106921484, 0.5549139996760648, 0.6909161521388689, 0.591904263202073, 0.884703171197362, 0.866402281883595, 0.7582770814524421, 0.8990773411030794, 0.1818065866116437, 0.6222165686186035, 0.17261914235374884, 0.8156064679757086, 0.4851213943917703, 0.8871292211128762, 0.8398494053952754, 0.703270618172154, 0.6305543892506115, 0.7494149477175548, 0.1532408287022325, 0.6159732902773407, 0.738220551127759, 0.8354520044441791, 0.8536870432671441, 0.5751476712690671, 0.9077719201719568, 0.7878515691455199, 0.6672663325862807, 0.45293736875445273, 0.17058553029544155, 0.747933377844996, 0.8400163125056676, 0.4516778718827729, 0.6082670858563528, 0.8401843469141149, 0.7636885291754726, 0.789170795337903, 0.8128612802083497, 0.7522530659814418, 0.8086757686066508, 0.8356255123032285, 0.9241779635105248, 0.9674588597049086, 0.9368885694202199, 0.4990764491242286, 0.876561204324957, 0.554264192243629, 0.5967716244634195, 0.9060244606340249, 0.8401608718856799, 0.7329750583133859, 0.8021769878309102, 0.9316817655017511, 0.45488322534173153, 0.798578398438993, 0.7425236774748816, 0.5742682328784404, 0.4937681935814938, 0.8972164286692267, 0.8914273370768748, 0.9377613518261881, 0.8862258850530264, 0.8591757581361523, 0.7410678096850266, 0.6822336012657398, 0.9201658505843877, 0.6982578893131915, 0.5746709232170782, 0.7626532952948841, 0.7137703530889916, 0.7520971196461234, 0.4473853625959922, 0.7957460056304991, 0.4833174871501707, 0.8758467705785958, 0.4689303842787964, 0.6133612564737879, 0.8568681391705205, 0.6835133967314007, 0.9732070839986944, 0.21435716257549006, 0.5761668962420043, 0.4055433603128916, 0.3743394998756179, 0.9118635774953143, 0.964551884718591, 0.9306459334511011, 0.8424802355113449, 0.7739144871152517, 0.6872688771534424, 0.8590561833388345, 0.6714384475466295, 0.6408669500407106, 0.5203550269219845, 0.2856853969697174, 0.857760555506807, 0.9307094503226838, 0.6787928880949093, 0.8308635255795866, 0.29271374211533296, 0.6769315553524353, 0.23831547366416572, 0.5895099457120908, 0.8994675076574448, 0.8893400405584444, 0.8456825404777587, 0.5399612081435882, 0.6188649121485582, 0.9281492942813848, 0.7611740601422801, 0.46550237374781617, 0.8896861436466836, 0.9038901015569306, 0.5044440900554997, 0.9215480939667524, 0.6930273792518707, 0.8723244804196287, 0.5624338775604165, 0.9226297661236537, 0.8469231754225917, 0.9430557295321259, 0.9097116306258912, 0.5988707702267543, 0.3813853072548755, 0.8843832309478876, 0.9006952500629406, 0.918975987201669, 0.18997930334445084, 0.8923106748541326, 0.8461388699436441, 0.5973439234355874, 0.9544642924744549, 0.91770416680597, 0.9177239854204658, 0.17584552180125673, 0.9240099144459667, 0.48524948024905407, 0.8889685222180134, 0.5785503824403398, 0.7511953459672914, 0.6887596776945688, 0.6717539058356753, 0.7168761391602206, 0.7134478068952186, 0.834626350903405, 0.5715867980362679, 0.6588392688727011, 0.9488572786900573, 0.8920529250761863, 0.8891353183282249, 0.707981940789761, 0.926348680038428, 0.631489487929038, 0.7443856388661001, 0.9260754381930228, 0.9544642924744549, 0.8497401318990601, 0.5604010177433062, 0.8036334301115304, 0.7898153537185114, 0.8491431337122072, 0.6570881560807702, 0.8389599143569951, 0.7944137576415592, 0.8132668978866627, 0.44714680104169846, 0.7978021044641371, 0.41921696608658454, 0.38876183891604754, 0.9248463736054193, 0.4277915265084825, 0.6345107008491314, 0.8008942533173764, 0.5087430598332189, 0.9414938992689892, 0.6922115882765215, 0.8296175750175913, 0.8593339228153332, 0.8975141534758351, 0.5977126281557783, 0.9279478536756302, 0.6485770817571253, 0.8905823996589662, 0.9332072841984264, 0.9432461110830079, 0.9410120781436498, 0.6339696776630096, 0.7120962557761497, 0.5841709037351369, 0.5928970840420333, 0.9006589732900512, 0.936371533648048, 0.6907852379101131, 0.7675780198071424, 0.9444587893431046, 0.4702336163336472, 0.8925536722101626, 0.8158978708906081, 0.822780392485108, 0.8037335327290217, 0.8382351003285965, 0.8941557358589171, 0.4796498334522667, 0.926348680038428, 0.6842118015950474, 0.6463580983468415, 0.8292048071278182, 0.5834426687867836, 0.8419845362148763, 0.2431563391580561, 0.7763142135369961, 0.9390550746437164, 0.7774903237071782, 0.8141232663130791, 0.9444089886680379, 0.430401459478284, 0.9192677156927759, 0.8427595869840984, 0.87120858451521, 0.5693182102579236, 0.820012080301976, 0.58719119911586, 0.42769376643096113, 0.3542595869275313, 0.89579938191327, 0.8743523014696554, 0.7820497043505815, 0.5279069501129625, 0.8869579700149332, 0.45488774279476296, 0.8514781135508903, 0.8278297091497892, 0.663749097381813, 0.5132851713944618, 0.4906566565015208, 0.6415219885510332, 0.6991293681294938, 0.8150539074042624, 0.5800669536763935, 0.9583771200922359, 0.7366090055976814, 0.5747817696023392, 0.5315376696882942, 0.8074446941396305, 0.9038901015569306, 0.9087015650331977, 0.6697291810323083, 0.5800669536763935, 0.8807270543114014, 0.5135845984304893, 0.9352791850238339, 0.36120709973337456, 0.6206709330576408, 0.906286252315459, 0.7937202818717513], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [10.4, 5.1, 1.1, 2.0, 2.6, 3.9, 6.9, 1.9, 8.9, 14.8, 4.5, 1.4, 13.5, 1.4, 2.7, 5.6, 2.4, 1.5, 18.15, 1.7, 1.4, 8.6, 3.1, 5.0, 1.9, 2.3, 6.4, 2.5, 13.0, 1.3, 2.5, 1.2, 9.1, 5.4, 13.5, 2.0, 1.6, 11.8, 3.4, 8.1, 13.1, 3.0, 1.3, 1.2, 1.8, 17.8, 1.1, 1.4, 7.0, 2.1, 2.4, 16.0, 4.8, 2.2, 11.8, 13.0, 7.1, 1.7, 1.4, 3.0, 11.0, 12.0, 3.75, 12.1, 2.1, 1.1, 8.9, 2.2, 2.0, 1.0, 8.4, 6.4, 10.8, 0.9, 1.8, 1.5, 13.0, 1.8, 8.1, 4.3, 2.3, 9.1, 7.5, 1.9, 2.0, 2.3, 9.5, 1.4, 12.5, 3.5, 6.4, 9.2, 2.2, 10.8, 19.8, 8.1, 14.5, 3.2, 7.1, 15.3, 13.3, 2.3, 2.7, 18.35, 1.8, 1.7, 14.5, 1.0, 6.4, 9.2, 1.8, 1.1, 1.6, 4.6, 1.8, 11.5, 11.0, 1.4, 2.8, 1.9, 16.05, 2.1, 9.2, 11.95, 13.1, 12.1, 4.8, 2.3, 1.9, 7.8, 1.4, 3.4, 6.5, 8.0, 1.6, 6.1, 8.8, 16.2, 1.2, 2.1, 17.8, 10.0, 0.9, 15.0, 1.4, 1.1, 1.7, 16.05, 2.0, 2.6, 2.0, 2.3, 1.1, 2.9, 1.1, 2.2, 3.3, 12.1, 1.2, 1.1, 3.2, 2.2, 4.5, 3.3, 1.8, 6.4, 7.5, 16.2, 10.4, 8.1, 7.8, 1.0, 7.2, 13.9, 2.7, 2.8, 2.0, 2.2, 2.4, 3.5, 1.5, 1.8, 2.3, 1.4, 13.2, 7.9, 8.6, 3.85, 10.0, 8.3, 4.5, 1.0, 10.7, 0.8, 7.6, 1.9, 8.95, 1.35, 15.6, 1.9, 5.0, 13.8, 13.8, 2.3, 2.4, 7.3, 1.4, 2.3, 1.7, 0.8, 4.8, 1.4, 6.7, 10.0, 15.6, 12.8, 13.7, 1.0, 12.1, 9.85, 1.4, 0.9, 14.8, 2.2, 1.8, 8.3, 2.7, 15.2, 5.7, 2.5, 5.7, 1.3, 6.3, 18.8, 1.4, 6.55, 19.35, 10.4, 2.6, 11.9, 2.5, 6.9, 14.9, 4.5, 0.9, 1.8, 2.5, 1.9, 6.2, 1.3, 2.5, 6.5, 9.1, 2.1, 1.3, 15.3, 6.1, 1.1, 3.2, 2.3, 1.6, 4.8, 12.6, 1.0, 1.7, 11.2, 1.3, 1.3, 2.3, 7.8, 17.8, 13.0, 2.1, 12.3, 6.5, 12.1, 1.9, 11.8, 10.5, 1.4, 2.3, 1.8, 1.3, 1.6, 6.9, 7.7, 1.3, 12.9, 1.2, 8.6, 1.3, 2.2, 2.0, 1.1, 2.6, 2.0, 5.0, 12.9, 12.1, 3.0, 2.1, 1.6, 2.4, 7.6, 3.2, 0.6, 18.35, 1.4, 2.2, 10.7, 4.0, 7.6, 1.8, 8.3, 2.3, 1.2, 16.45, 2.7, 11.5, 2.4, 2.2, 11.6, 2.0, 1.8, 8.0, 11.2, 7.5, 7.0, 2.1, 8.3, 22.0, 2.4, 1.6, 15.4, 1.0, 2.4, 14.9, 2.5, 0.8, 9.7, 1.5, 1.6, 6.1, 2.2, 15.8, 2.0, 7.4, 9.4, 1.3, 16.7, 10.5, 1.7, 13.1, 2.3, 2.0], \"xaxis\": \"x\", \"y\": [0.2802292104526322, 0.9455194119275858, 0.4978743212349556, 0.5289145624519528, 0.28439238707197784, 0.2033309570226689, 0.27345747478543325, 0.8322873304845451, 0.389055896812549, 0.3675472469853882, 0.5781933746273124, 0.7401955299744071, 0.44969671697605845, 0.4367887814338696, 0.31593955341667695, 0.3775624358859999, 0.19282181046294666, 0.048451763306065584, 0.6005928650583868, 0.032225376113695775, 0.427412413738938, 0.23973251442015217, 0.13890126550157303, 0.8613925272127, 0.329663916828638, 0.19359965390713213, 0.6827271716759634, 0.1960905505555538, 0.08135735686643118, 0.39737240301928484, 0.13902987396822816, 0.6514166433739288, 0.6994753721471061, 0.7140886736258081, 0.5021795028970708, 0.48743245558712556, 0.5731139673640956, 0.8820820642542792, 0.559972149724866, 0.5061565591493914, 0.5066810377847554, 0.833805652807593, 0.6979972163580744, 0.3177574231538272, 0.13068190592986567, 0.758876109553896, 0.5681062961269688, 0.715544821914063, 0.762062625203523, 0.4464438677531786, 0.20995974230910305, 0.5262622410710028, 0.39442669669188163, 0.2537324982988368, 0.6775437642744659, 0.23876321589577687, 0.6369158982934647, 0.38960060362966165, 0.6034323722874255, 0.7769991715799629, 0.15199748354041337, 0.5641412449951732, 0.7590466800561823, 0.5969347905931296, 0.1048362779837843, 0.7217824369593382, 0.2662339163773806, 0.16472378978351135, 0.37760124376932414, 0.7071736299639594, 0.3436862995931572, 0.8384434752264291, 0.3635333644877426, 0.7813188949129265, 0.7279369976219869, 0.5641098847382463, 0.3863964747623771, 0.9209913370067284, 0.1477144681640183, 0.8809374658555192, 0.6533168894759348, 0.8873477284758582, 0.3697306267878623, 0.28319023347825867, 0.5203701741750857, 0.5523747693308857, 0.6387521731780509, 0.3881380695009739, 0.8487896327149285, 0.4636606453307818, 0.8384434752264291, 0.558266603669778, 0.21657231888677728, 0.3635333644877426, 0.5512671313974766, 0.5051039398599867, 0.5827915753039158, 0.49441682850108926, 0.47309171914705017, 0.6262595591688196, 0.5508242483721094, 0.47332791509789995, 0.7117569366896692, 0.3933786516273859, 0.16465066549244003, 0.7490394132223248, 0.769261050002088, 0.7431932405995126, 0.3141000916210982, 0.723735045552473, 0.6484132891031948, 0.688519894019609, 0.40496704226994307, 0.5803736122960511, 0.6327801522745691, 0.45115706990411364, 0.37268733756108086, 0.9009693101135351, 0.06496389958099598, 0.44431713201158524, 0.39960831974332744, 0.8662156944598043, 0.31018081106061823, 0.5339551117365043, 0.33311273919547707, 0.400132762133902, 0.8528754522806217, 0.14419347879543085, 0.11672350429510901, 0.44556702529145975, 0.6160120899414699, 0.13766892845409207, 0.5517204028384314, 0.5232178919035022, 0.35483403305733974, 0.4900213704561591, 0.8854578072659228, 0.43084122675663034, 0.7601186327653665, 0.14072030431570776, 0.6186690618327106, 0.5245054232921349, 0.7326259458716644, 0.5690781983520095, 0.4018508815425063, 0.24877469563805235, 0.7952501197393639, 0.8766221356386195, 0.303451532996695, 0.5357745481647883, 0.7096524147827454, 0.20877177283968149, 0.8635610141758273, 0.46736762313881036, 0.6061151992073851, 0.113015272873705, 0.40446014603085867, 0.6332606063976143, 0.648705381890928, 0.42186952587750404, 0.8047913565308571, 0.3017058309841093, 0.38406990132164637, 0.33494193042999065, 0.19929939967121216, 0.8624919783238055, 0.528785836409086, 0.43084122675663034, 0.47042159929499583, 0.5061565591493914, 0.5759491569657543, 0.8468794444363914, 0.20342296359496542, 0.5170831534483544, 0.3666753044655067, 0.6131723001375537, 0.4410646109528086, 0.6903416342484309, 0.3866428492574258, 0.4636606453307818, 0.4525459302795702, 0.03199256040434073, 0.7029629492254846, 0.2433141614541866, 0.548755973819273, 0.3775060302547258, 0.06593060991448157, 0.8745624549148976, 0.22931948662359403, 0.27267688907931714, 0.589328430619086, 0.8007160756317941, 0.5525637789187225, 0.5008522318356121, 0.4556212410144909, 0.17391722008742402, 0.43574637053357784, 0.3237440077649342, 0.6071692164257629, 0.6925152430641841, 0.592675381607996, 0.43854150134957587, 0.43854150134957587, 0.42437112972565305, 0.8061118855433299, 0.35195592295594336, 0.7605370065149419, 0.38898578429124253, 0.67510953655807, 0.872979709380305, 0.710510994258769, 0.720290290780972, 0.4820787970895852, 0.42019280799979697, 0.4304380754474639, 0.25285023254778977, 0.3238056884730761, 0.39471961640683584, 0.09510031985475974, 0.367046376808582, 0.21500793651835448, 0.8705359023101334, 0.6100742529031461, 0.6226449432624995, 0.7279369976219869, 0.3643494054700089, 0.09992017521484964, 0.41475515148757036, 0.6462260464983366, 0.14102909592513518, 0.48949585696458414, 0.5239520436918008, 0.6084413884537807, 0.5655473856702703, 0.9517420512476797, 0.7489379515982664, 0.4647937384849751, 0.7915321263825208, 0.44112279258530757, 0.5734340256727429, 0.6604471727860799, 0.4845203185458914, 0.6968730453869196, 0.5315374962198609, 0.8685951485887234, 0.6242442748350044, 0.2912097196987059, 0.7725938221565348, 0.2067629769731588, 0.30221725334927335, 0.13129342562285412, 0.6467789443522378, 0.6994753721471061, 0.11825382206919556, 0.41022417118631593, 0.4882665226122541, 0.7732287086973071, 0.25374762405010176, 0.49441682850108926, 0.3723877205427743, 0.652330313245635, 0.43667799883041203, 0.5964718913578133, 0.55172276504346, 0.24113559934961917, 0.8243980268882987, 0.7263843594269437, 0.43535214809021755, 0.8721122798612579, 0.18723914490145582, 0.6486906676970999, 0.11576704656818047, 0.4328241622975616, 0.491481212420291, 0.5264345378086769, 0.33856526784971647, 0.2967410926251248, 0.581398831228375, 0.5973776665460488, 0.6195406102170065, 0.37782717658841725, 0.323061133240968, 0.17420808473594895, 0.19634770547538957, 0.46492234760650425, 0.49613167963272686, 0.5812209036149294, 0.6057291775435286, 0.63414717387345, 0.5702687187355167, 0.8604975146328253, 0.6309022132706124, 0.48732991249542923, 0.6887148870948692, 0.41581945293096145, 0.5706760596351739, 0.4831274653996314, 0.06684727567316755, 0.49090643211649887, 0.15191610726090596, 0.2711405311223577, 0.7653618545702112, 0.09266565137124261, 0.4554350627407873, 0.19698919164573708, 0.6930185080649685, 0.5227537922811563, 0.50434568709929, 0.7082092780767422, 0.46058046365566996, 0.6735723234187477, 0.4285936050615775, 0.323061133240968, 0.5168500865319015, 0.6161307914674419, 0.23456444218973552, 0.3192004782541023, 0.21968945907811915, 0.5028183230931117, 0.43371621376298963, 0.6744209213341115, 0.5940260419772637, 0.13783310426722128, 0.5136444387530009, 0.5508647999875032, 0.4955911012838212, 0.9814394195009358, 0.8260225289794664, 0.17965956338109995, 0.46844896472597397, 0.6048119589659149, 0.3289160319090978, 0.2454606394453749, 0.7497022835596558, 0.683485355417811, 0.20995974230910305, 0.23504578258460665, 0.37175956099497537, 0.4875530438829156, 0.24982584224249993, 0.6282829625348888, 0.4520795162158371, 0.8200372413039435, 0.12832513643528837, 0.5299630655130737, 0.29552777318700446, 0.24021937552346023, 0.5429028773737552, 0.6311869746243346, 0.4145977043912777, 0.39329840463575844, 0.39070335653410526, 0.4286990948130573, 0.846836560604146, 0.6880850122626078], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (curr)\", \"type\": \"scatter\", \"x\": [3.5, 14.3, 1.2, 2.2, 2.3, 1.2, 1.2, 8.0, 2.1, 1.6, 2.7, 1.3, 1.2, 9.65, 4.3, 1.2, 1.4, 2.8, 2.1, 3.2, 14.2, 14.5, 0.9, 1.1, 7.2, 1.2, 9.1, 3.95, 3.6, 4.7, 1.8, 6.2, 15.0, 6.4, 1.5, 1.2, 2.6, 7.9, 3.95, 1.9, 7.5, 2.5, 14.0, 13.0, 2.0, 2.3, 16.85, 1.9, 10.3, 1.7, 2.0, 3.9, 9.3, 1.0, 7.0, 14.1, 8.2, 1.8, 11.4, 1.7, 2.3, 20.3, 5.5, 9.7, 7.1, 2.1, 8.1, 6.7, 1.8, 1.3, 14.4, 2.4, 11.0, 7.4, 13.2, 12.3, 19.95, 1.7, 1.7, 1.9, 1.5, 1.0, 2.4, 2.1, 9.7, 3.1, 1.5, 14.5, 6.6, 1.6, 12.7, 7.4, 3.6, 1.4, 1.6, 6.5, 1.4, 4.6, 1.8, 2.1, 7.1, 9.9, 2.0, 2.1, 14.4, 10.9, 2.0, 9.0, 2.5, 2.8, 13.0, 31.6, 8.2, 1.7, 5.0, 2.2, 2.7, 1.4, 12.2, 3.2, 11.8, 1.5, 2.8, 1.4, 2.1, 2.1, 1.9, 4.7, 2.6, 1.8, 5.1, 1.8, 1.7, 17.5, 1.4, 17.1, 1.6, 2.5, 5.2, 1.6, 4.4, 3.2, 2.8, 8.5, 13.1, 1.2, 13.8, 5.6, 6.2, 1.1, 10.3, 1.0, 11.7, 16.2, 1.6, 2.8, 1.5, 2.0, 1.3, 14.2, 1.6, 2.0, 6.1, 8.2, 2.5, 1.2, 4.6, 2.2, 2.4, 1.1, 1.4, 1.1, 15.2, 4.7, 7.5, 4.2, 1.6, 7.8, 3.5, 2.4, 5.2, 10.8, 1.3, 3.4, 9.0, 1.8, 2.1, 4.8, 20.7, 2.2, 7.4, 17.3, 2.2, 2.3, 4.7, 4.9, 3.7, 1.6, 13.8, 8.2, 5.7, 1.7, 4.4, 5.9, 8.7, 2.1, 4.3, 6.55, 1.6, 12.9, 5.4, 2.2, 1.7, 2.9, 2.2, 7.6, 1.3, 3.3, 6.3, 1.8, 5.3, 7.3, 2.4, 7.1, 13.7, 10.2, 3.0, 5.3, 2.4, 1.5, 4.1, 6.9, 8.0, 7.1, 2.1, 11.8, 3.3, 1.4, 9.1, 1.2, 5.5, 7.9, 11.1, 1.8, 1.9, 2.3, 13.9, 14.5, 1.2, 2.7, 1.6, 12.0, 14.1, 2.7, 12.85, 14.8, 1.6, 1.1, 2.1, 2.7, 2.1, 7.2, 1.2, 5.4, 4.6, 2.0, 2.6, 12.6, 7.4, 10.2, 8.6, 4.2, 2.5, 2.6, 8.8, 1.8, 1.3, 7.2, 1.1, 2.2, 1.8, 1.7, 6.2, 10.8, 7.75, 2.7, 6.6, 1.0, 7.1, 1.5, 3.0, 2.4, 13.3, 2.1, 2.8, 7.75, 15.8, 5.0, 20.8, 6.4, 2.4, 1.4, 4.1, 6.0, 13.2, 2.1, 1.5, 5.4, 1.8, 2.6, 16.8, 5.0, 4.4, 13.0, 1.1, 1.2, 11.6, 1.3, 3.5, 2.9, 5.7, 15.5, 4.8, 15.55, 5.1, 2.7, 3.8, 1.8, 14.2, 5.3, 1.9, 12.5, 2.6, 10.4, 1.2, 4.1, 14.2, 12.5, 8.3, 2.0, 3.8, 10.7, 8.2, 2.1, 1.9, 9.8, 6.5, 0.9, 2.7, 2.6, 13.0, 1.4, 13.4, 16.2, 10.2, 4.9, 2.0, 7.0, 12.7, 2.4, 6.2, 8.6, 2.6, 15.55, 1.4, 7.3, 16.0, 7.0, 16.8, 3.2, 1.2, 6.2, 1.2, 1.0, 4.6, 5.5, 1.1, 10.8, 2.2, 10.2, 11.75, 6.0, 7.4, 7.4, 1.9, 2.1, 1.6, 1.2, 2.4, 5.1, 7.4, 19.95, 3.8, 16.1, 5.4, 2.6, 18.95, 2.3, 2.0, 1.5, 2.1, 4.4, 1.8, 17.5, 2.3, 12.8, 13.3, 1.4, 14.7, 4.7, 1.4, 2.5, 1.1, 1.5, 10.3, 3.0, 6.8, 2.4, 7.1, 7.0, 1.2, 1.8, 2.65, 2.4, 2.1, 2.8, 7.4, 11.5, 1.6, 1.3, 2.6, 1.2, 1.7, 1.4, 1.9, 1.9, 4.3, 13.2, 1.9, 12.8, 12.8, 1.7, 8.6, 5.7, 3.2, 2.0, 1.6, 2.4, 2.0, 2.5, 14.7, 1.8, 1.4, 1.5, 17.55, 1.8, 13.55, 1.0, 12.0, 3.6, 3.85, 4.0, 1.2, 15.4, 6.5, 1.4, 9.1, 1.1, 3.0, 2.5, 6.6, 8.1, 2.4, 15.5, 1.7, 11.3, 5.7, 1.4, 1.4, 2.0, 6.3, 4.7, 2.5, 1.8, 7.4, 9.3, 10.55, 2.9, 1.7, 2.2, 1.5, 14.75, 2.4, 2.4, 3.5, 1.8, 1.5, 2.8, 1.2, 2.0, 1.3, 10.5, 12.8, 1.2, 1.9, 16.0, 7.7, 2.3, 2.9, 1.6, 2.1, 1.1, 1.6, 3.7, 8.0, 1.9, 8.8, 6.7, 7.3, 2.5, 3.7, 2.6, 1.3, 8.3, 1.3, 11.2, 5.2, 4.7, 9.2, 12.7, 2.5, 7.4, 13.2, 1.8, 2.1, 5.25, 3.65, 15.75, 1.9, 13.65, 4.9, 9.15, 1.9, 2.5, 0.9, 14.0, 2.6, 2.8, 1.8, 12.8, 17.5, 8.25, 1.9, 1.6, 1.5, 6.9, 2.4, 1.3, 1.2, 6.7, 14.8, 12.7, 13.7, 2.0, 1.3, 1.6, 9.25, 12.9, 1.0, 4.7, 1.7, 10.8, 1.1, 19.95, 1.1, 1.2, 9.7, 6.7, 1.6, 2.3, 5.3, 13.6, 11.4, 1.6, 1.4, 2.6, 2.4, 10.6, 4.6, 2.2, 1.7, 2.0, 1.5, 5.0, 2.0, 2.6, 4.6, 12.7, 5.7, 6.3, 6.7, 8.2, 7.1, 2.0, 0.8, 2.0, 1.9, 1.3, 1.7, 1.1, 1.1, 9.85, 1.2, 1.1, 2.1, 9.5, 1.7, 8.0, 13.65, 7.9, 4.4, 9.55, 1.1, 7.9, 1.8, 2.2, 1.1, 5.9, 2.4, 6.0, 2.0, 2.9, 1.4, 2.1, 5.2, 5.8, 1.8, 2.0, 2.3, 15.1, 2.3, 16.8, 13.8, 1.5, 12.2, 8.2, 4.3, 8.9], \"xaxis\": \"x2\", \"y\": [0.33396714643252134, 0.5044440900554997, 0.8874896900044845, 0.4686759077780351, 0.23831547366416572, 0.571181601185031, 0.7785327680196316, 0.7290551099174598, 0.9581131370131553, 0.6801000322064107, 0.413367674560271, 0.6667140739211237, 0.9108229754863395, 0.9275086157065797, 0.9186958597750785, 0.7191871442695774, 0.8184457509658746, 0.8597940676688322, 0.7947045908306632, 0.8244149680645384, 0.42771531534877594, 0.5315376696882942, 0.7136291946100958, 0.5510697799054304, 0.6393262665313312, 0.9016582766249417, 0.8560880110261746, 0.8947361144883382, 0.9102326114023062, 0.840723585394272, 0.9264645566705582, 0.5105903360131552, 0.752648770317166, 0.5855954083225455, 0.8989214048388485, 0.5190750352404293, 0.9560713253502463, 0.7273157243430202, 0.9279672131348602, 0.640103147954212, 0.9158977434209615, 0.9035955072010529, 0.7140955379655831, 0.233508355491505, 0.7280578325574358, 0.8810827811902006, 0.3966129217085586, 0.15541760955422754, 0.5851621750323275, 0.9046111951917862, 0.4177213302712193, 0.7993763114768937, 0.6978409661933959, 0.6473373667551029, 0.770784382977056, 0.6500641275496193, 0.548949563093737, 0.9803199442553986, 0.6150775052067382, 0.391333092160729, 0.6966682278280982, 0.9426748402861506, 0.9170092977635526, 0.844625652038695, 0.5621782696252592, 0.8935808323282117, 0.6792214086077275, 0.6719996755401956, 0.5252591274442797, 0.7277045758687855, 0.4685752957996948, 0.8616549355667619, 0.347491516391863, 0.8224130863808733, 0.5340790568488665, 0.6711667658766297, 0.5277539611022016, 0.7226430813715845, 0.8140972745487615, 0.3280236940194876, 0.9543080196225542, 0.7752655593026647, 0.9223925066666061, 0.8588031784191832, 0.6345107008491314, 0.9393010047953068, 0.7897067132703484, 0.8608062836413887, 0.8367885032124018, 0.38555642305179116, 0.8611944449682004, 0.9172341012895443, 0.9206892306522243, 0.9500505925695213, 0.537798347971205, 0.9173482789702866, 0.44454351342386716, 0.8909704850569525, 0.7351932580165473, 0.6818328744935735, 0.7981559962965634, 0.7626532952948841, 0.807353254900461, 0.964411205143099, 0.4685752957996948, 0.6986526320119215, 0.1956969407137045, 0.9233481403380283, 0.8218375601976645, 0.8536269727611236, 0.5637680470866036, 0.42267134533232753, 0.93003590801509, 0.9364808605729722, 0.8816060831574614, 0.9663102962713933, 0.8345570787709832, 0.4997893986747249, 0.7921603237806832, 0.5586815647381762, 0.8622246464681924, 0.9828719612298703, 0.909295720392338, 0.9476267884443668, 0.5395521774612226, 0.901360886913609, 0.39410444510430487, 0.9262213132200262, 0.6627387433216217, 0.9629433821448677, 0.9614311452267452, 0.9802968012486629, 0.933760787013923, 0.34432718187202205, 0.63596173557573, 0.624364378916488, 0.7417789548241253, 0.7300918276682445, 0.6968315453320488, 0.7840233885688647, 0.8958841271622066, 0.5417426694559925, 0.7102579146160282, 0.6004345411549624, 0.515920701757342, 0.7587882454650442, 0.5029588531082266, 0.6887596776945688, 0.8642849605932809, 0.6469572639767995, 0.8103639651534781, 0.939764354405301, 0.694136577696587, 0.6593725303534554, 0.9646797005081557, 0.7979900311745153, 0.792123904710467, 0.8869579700149332, 0.7351250317969437, 0.5332560471205093, 0.9406873315653421, 0.39362685027924615, 0.9466602521798594, 0.8394325033041952, 0.6633442657978572, 0.8126408700417265, 0.7332457619716184, 0.08024070404520958, 0.8667774471450977, 0.6466814331404849, 0.912366876100516, 0.656670904734599, 0.8701678467707724, 0.8875925797813499, 0.9658725076002231, 0.7668332861852056, 0.8604440887473094, 0.934384507524058, 0.9605946056867319, 0.951253157591183, 0.5749289095213865, 0.6279243005170476, 0.7937202818717513, 0.7665301650725991, 0.700127941221274, 0.8531107444728586, 0.7947045908306632, 0.8870566665876504, 0.5476228787844645, 0.8410401833568673, 0.8736671065238262, 0.6519898659949606, 0.936943112068646, 0.9077719201719568, 0.8071889556778997, 0.8815615400732472, 0.8935313268029127, 0.8782891297971865, 0.5029588531082266, 0.5797201450332624, 0.9416775458320723, 0.5958140198486584, 0.2485157288688957, 0.932021424688801, 0.8531502837407814, 0.6344194678828672, 0.632587077283238, 0.9121448358615357, 0.5776545535910985, 0.9052765174806566, 0.8580390107418799, 0.8998644401112552, 0.6784536879503494, 0.9458342431661766, 0.21387363850783603, 0.9530348339880965, 0.7307391114165022, 0.7187682731289255, 0.6905635603269331, 0.9569274903702625, 0.9287384091375525, 0.3856984054091925, 0.504413920551941, 0.5389739198483336, 0.5921068831639978, 0.10702848140489757, 0.8772993497727819, 0.6361944011057532, 0.8952999713010865, 0.7069578609115064, 0.10632960186243966, 0.6465592619811017, 0.9116333268133815, 0.9210441535829985, 0.9483358221641291, 0.5800224234700003, 0.896951343689222, 0.8958659323404018, 0.8896861436466836, 0.7763142135369961, 0.778627444633172, 0.9274605647284293, 0.9167924025380936, 0.6422094408272838, 0.6363725079258666, 0.8694129796739031, 0.5693182102579236, 0.5315376696882942, 0.6814536952243052, 0.30089534057709466, 0.6689448970920832, 0.6419522618821227, 0.6500641275496193, 0.8221968069187356, 0.9285763346020383, 0.8495153837633861, 0.7135666997345446, 0.8850789772017983, 0.9128367188568884, 0.8709442503982084, 0.44714680104169846, 0.7147831401969469, 0.6814536952243052, 0.5823319261018008, 0.7718122970862826, 0.8925058444773368, 0.9249991097277733, 0.7849066379312727, 0.5120166815330335, 0.7863291630268572, 0.8171821177205619, 0.8878235148823457, 0.9813953955585096, 0.5009899161211654, 0.6787020040856314, 0.2747106808400709, 0.6998114428322438, 0.7191783799678735, 0.7566715075843347, 0.7741630673610131, 0.692871858980435, 0.8706970297938403, 0.9226518689226377, 0.619213859232465, 0.9620625840847012, 0.8161066853745392, 0.7984578805051198, 0.8987836568806694, 0.27900511725120763, 0.747868261422589, 0.8013372150606806, 0.4430395412241901, 0.8082746512504794, 0.9248395818955686, 0.8132668978866627, 0.7926355964369082, 0.7243101498981422, 0.8251498778038484, 0.865753667016409, 0.8784859927081519, 0.9613966942665844, 0.8380103992838959, 0.9376908870460701, 0.8505645904112248, 0.5317253080143199, 0.8756470416862959, 0.8823120896825394, 0.8920529250761863, 0.9565288857220365, 0.92576324319171, 0.8397457208604353, 0.8008835764985612, 0.7620555647282774, 0.6333567796033132, 0.8986985644274655, 0.8289197139212982, 0.38568054861828666, 0.4358764146033148, 0.7013568331933456, 0.5524769805317635, 0.8654015550049637, 0.9625385348003681, 0.4997035751430624, 0.5940434106189647, 0.29640429037896177, 0.9370396801623051, 0.7496358493500708, 0.8521916566704996, 0.7519935213994349, 0.8956127660014477, 0.7563308848917781, 0.5425355780301907, 0.1652985164032473, 0.5777375433929663, 0.5926841497777402, 0.5247451599628447, 0.6215406511606532, 0.646742228322253, 0.5236567091352762, 0.8105889943537302, 0.7614647275399787, 0.7272264480694343, 0.44438282424164377, 0.8051848688934031, 0.253979247575754, 0.8737269176380216, 0.7884186533408385, 0.5226162157005312, 0.7776146375974927, 0.8021344726910251, 0.6794204065079696, 0.8398669626756513, 0.3743394998756179, 0.6593725303534554, 0.41008410759983227, 0.8726624594592295, 0.31336232876890546, 0.6187135046228962, 0.9208146539756937, 0.8948907807194619, 0.9475948217130945, 0.7098971478357265, 0.41970311630379203, 0.5524505095188592, 0.6689295490636696, 0.39534528644804523, 0.6686700461744643, 0.6608417181144597, 0.6289006219381473, 0.8112353209803558, 0.9675531845963172, 0.3468688843876404, 0.8171815196180959, 0.9315945487332388, 0.7612383340144859, 0.43979370974717685, 0.9452166580978265, 0.810349906376065, 0.4979189466877109, 0.9054024939516333, 0.7506263221664519, 0.8595966107872783, 0.9041757536760852, 0.5120166815330335, 0.9246344940597735, 0.622364539475366, 0.7975959936185795, 0.9376528402833735, 0.8270495791839716, 0.7463426393970082, 0.8508295060861325, 0.5277539611022016, 0.7926521549058593, 0.8343380415579561, 0.7973631232158779, 0.5423298306356671, 0.6253812669856891, 0.9342151247863544, 0.9064095870896521, 0.8428584418618921, 0.5680191878381406, 0.8230633503438987, 0.857993972512287, 0.8312116035859974, 0.8886868130574391, 0.5695902702544526, 0.8750573328895943, 0.47134086624147714, 0.6082670858563528, 0.8571520978358925, 0.7006810412396262, 0.6001343818465046, 0.8680196363335714, 0.7833148206731655, 0.835330250744176, 0.6883000602161935, 0.4297997702781997, 0.7132181587745201, 0.941909753873568, 0.9298379484442667, 0.8950633078112005, 0.9652574497835966, 0.8593048115498744, 0.23022113319019433, 0.5548683876071567, 0.8789570823277312, 0.7176343272433334, 0.7135972690872326, 0.900955402304434, 0.89110615578316, 0.8021344726910251, 0.36734125225010755, 0.9233813125795639, 0.9269988231022361, 0.6021478506882372, 0.27064660283581765, 0.7595966254948197, 0.5317253080143199, 0.9626288904553877, 0.518871521713375, 0.4244151934213653, 0.8784852709235653, 0.667697582798242, 0.6791650855490978, 0.8659372985570389, 0.5217980090164113, 0.9757802673562255, 0.20769640873195563, 0.6900575067285889, 0.15051833553221247, 0.8476988333501053, 0.12043274000614122, 0.6546311715671466, 0.412102187638673, 0.6339696776630096, 0.6925917751558638, 0.8074446941396305, 0.8417042066658985, 0.4702054036006336, 0.8107456318417504, 0.934253622333564, 0.9671353887875448, 0.3776875782453083, 0.5133306968464912, 0.8279918435672958, 0.7295730380004212, 0.8398957027397556, 0.7470826509089123, 0.7722124156410631, 0.3944809481034696, 0.5801047158883857, 0.7134138458261836, 0.8265590446981121, 0.5836238058504062, 0.7538957359152121, 0.9708936701567454, 0.41507295289487073, 0.9039211350062085, 0.5109703825452502, 0.8880660412534, 0.6332514250278477, 0.703270618172154, 0.863031725372896, 0.9601349291832292, 0.5845797646527732, 0.8357575010967041, 0.9584406458449958, 0.8733333206292072, 0.4740801794177068, 0.5787650908025566, 0.38525623454815555, 0.5715075300165849, 0.951253157591183, 0.831291834366621, 0.6482062646591596, 0.5447536045265621, 0.8456825404777587, 0.5358725178581014, 0.8893400405584444, 0.5955893395860203, 0.9408369636189147, 0.7580589814818564, 0.4244151934213653, 0.7636885291754726, 0.9532052815091139, 0.6686700461744643, 0.39683939049776734, 0.8309978518015588, 0.06774730328187532, 0.8934061610794648, 0.9459413258233057, 0.8507977517004935, 0.9694554821790147, 0.8640493534313302, 0.8409166048571896, 0.9059760843724536, 0.7278052027863667, 0.8952246802917138, 0.39534528644804523, 0.9558702864115934, 0.9178754126151818, 0.7504628435478695, 0.7568870052952757, 0.32046258648166903, 0.9712495894387816, 0.7125870341029702, 0.8286889773580812, 0.929575727770858, 0.8422483936479932, 0.60065365322741, 0.5775074082600717, 0.7505976846167132, 0.5317253080143199, 0.9590110623565244, 0.9651712957082627, 0.7333643603414158, 0.7757825668725274, 0.8928390517037824, 0.2578168736401774, 0.5355488836719776, 0.8408692583280314, 0.7849780542174357, 0.8711681462620556, 0.8447990405440073, 0.9571933326515756, 0.9307123551507692, 0.6421242495412457, 0.9239207054420927, 0.9336219461922934, 0.4244151934213653, 0.5673643045526261, 0.8301442064454496, 0.528471943574542, 0.8835542071774324, 0.8820947700128993, 0.4561713647735051, 0.584381944856391, 0.9493936477483658, 0.7816316980556022, 0.7770145472448273, 0.8495153837633861, 0.8318035560268552, 0.5220388622338656, 0.8589980209217414, 0.21216021099657945, 0.8782303617207965, 0.901850575196968, 0.7683760396387002, 0.9559989503713009, 0.938411491366706, 0.7225398931917507, 0.5918361617892179, 0.8596378534897678, 0.8816239240572568, 0.9296844522785247, 0.8299758417251202, 0.7538846798551382, 0.931253582726863, 0.6902425303942638, 0.9299571155275668, 0.35461708236434614, 0.6119587629530028, 0.8979450471026776, 0.8782891297971865, 0.6144930729026484, 0.5601837238662909, 0.4230258756549153, 0.5115702372514986, 0.6133200318312215, 0.8287048127179734, 0.42887934024879554, 0.5543929044930882, 0.5414149972460248, 0.7453725251924848, 0.6522898344923613, 0.6445138145159856, 0.9212190995841192, 0.6991293681294938, 0.9188224881967051, 0.9444881948020799, 0.8399825546316605, 0.6440269003431431, 0.45260210695563535, 0.6678228102737954, 0.8535669746933884, 0.23469888428232324, 0.7581156815660375, 0.8329520097124233, 0.5886389680190937, 0.4250130050586104, 0.290761161529129, 0.9065968169685268, 0.39757013049667705, 0.9584529405260903, 0.24804178200132845, 0.8400605958344816, 0.9562762484868867, 0.5923100188758571, 0.5355488836719776, 0.6866862751474886, 0.753715093249364, 0.9302702282582556, 0.8405005145861136, 0.7758456574858743, 0.8270123797965384, 0.9270997487744173, 0.8779999285967196, 0.6350604679157676, 0.9057987369792326, 0.9732730617650076, 0.28007269673131574, 0.5393237551960537, 0.9509318156255189, 0.8055358405733448, 0.8512314640165554, 0.6752183046546253, 0.9766791413071304, 0.26893819095773785, 0.5105552073939665, 0.7964242570425004, 0.9159462749375985, 0.46312559485344046, 0.7889853219989779, 0.5331772070153998, 0.6250130361556073, 0.5340700079782073, 0.8981158701031157, 0.8424802355113449], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [2.5, 4.7, 7.0, 2.3, 19.45, 22.0, 13.15, 1.6, 1.7, 2.3, 4.3, 1.2, 6.4, 7.2, 14.3, 18.1, 7.6, 2.7, 4.9, 1.1, 1.4, 17.2, 4.9, 11.8, 1.6, 1.7, 2.1, 14.8, 0.7, 0.8, 11.95, 1.1, 2.5, 2.3, 1.0, 1.7, 2.3, 1.5, 4.9, 1.4, 4.1, 2.0, 11.2, 15.2, 1.4, 1.7, 3.4, 2.2, 19.3, 6.1, 7.0, 18.35, 6.9, 2.4, 2.6, 1.8, 2.0, 4.2, 10.5, 15.4, 4.2, 8.3, 7.7, 2.9, 10.7, 2.0, 1.4, 1.9, 3.0, 1.6, 2.1, 2.5, 1.3, 1.6, 7.7, 1.2, 18.75, 1.7, 1.0, 1.9, 9.3, 1.6, 12.6, 2.0, 1.7, 1.7, 4.8, 13.7, 1.2, 6.1, 7.1, 1.9, 2.0, 14.3, 1.9, 2.1, 11.7, 3.9, 9.7, 8.1, 2.5, 6.5, 18.1, 1.8, 1.5, 2.1, 1.9, 1.4, 5.1, 13.7, 1.6, 14.5, 1.9, 1.3, 1.2, 10.7, 12.3, 4.9, 8.3, 2.1, 14.95, 1.8, 1.7, 1.6, 2.0, 7.0, 1.2, 11.1, 2.0, 5.1, 1.4, 15.6, 14.3, 1.0, 2.0, 11.0, 1.8, 3.0, 10.4, 6.6, 6.7, 1.7, 1.2, 5.1, 2.3, 12.1, 2.0, 1.6, 1.9, 9.5, 0.8, 13.3, 5.5, 7.7, 1.5, 1.4, 12.1, 8.2, 10.0, 12.6, 2.0, 15.6, 1.4, 13.5, 4.4, 7.8, 1.1, 1.6, 5.6, 8.6, 16.05, 10.4, 1.9, 1.8, 1.9, 1.4, 1.0, 11.6, 10.3, 15.8, 1.5, 5.1, 2.7, 1.1, 15.1, 1.4, 8.1, 17.8, 1.3, 7.9, 2.3, 3.75, 7.8, 1.4, 10.8, 2.0, 1.2, 6.4, 14.5, 11.8, 1.8, 13.2, 14.9, 15.4, 1.25, 15.7, 6.9, 2.2, 12.9, 10.2, 7.3, 5.0, 2.1, 1.1, 6.8, 2.7, 11.1, 9.7, 1.4, 1.6, 11.2, 8.0, 9.2, 6.8, 1.6, 10.4, 2.0, 3.9, 1.2, 1.0, 17.9, 1.6, 17.1, 10.7, 1.9, 8.8, 1.0, 1.4, 14.3, 2.0, 7.7, 2.3, 2.0, 9.6, 0.9, 5.9, 1.5, 5.4, 13.7, 6.1, 1.6, 16.0, 10.7, 10.6, 2.5, 16.3, 9.6, 4.6, 8.9, 2.5, 2.4, 1.6, 11.9, 11.9, 2.6, 1.3, 6.0, 1.6, 1.9, 8.9, 1.5, 2.6, 17.85, 6.4, 2.0, 1.8, 15.6, 2.7, 2.4, 11.2, 2.6, 17.75, 1.15, 1.3, 3.8, 1.2, 0.9, 4.5, 1.35, 2.5, 7.7, 7.0, 8.5, 2.7, 5.2, 2.2, 0.9, 7.8, 15.8, 2.3, 1.8, 2.6, 7.0, 11.9, 12.1, 1.0, 3.1, 10.1, 15.4, 8.1, 1.6, 2.0, 1.3, 17.8, 2.0, 13.6, 1.7, 8.1, 1.3, 2.8, 2.55, 1.7, 17.8, 5.6, 3.45, 10.1, 17.9, 1.4, 8.0, 1.3, 2.5, 11.4, 1.2, 1.6, 2.2, 1.3, 0.8, 1.3, 17.1, 5.2, 8.1, 2.4, 2.0, 2.0, 2.1, 1.3, 8.2, 2.5, 17.1, 1.3, 2.7, 2.0], \"xaxis\": \"x2\", \"y\": [0.8142007211296887, 0.07257977436397642, 0.7430932382113554, 0.8214862427787604, 0.5698848321031316, 0.6048119589659149, 0.6466669219762841, 0.14510080060429495, 0.2250304680670007, 0.28492472637839966, 0.42061632734231896, 0.8281252124183194, 0.49622399336621903, 0.3482895521074759, 0.4678833354511545, 0.5708968386647719, 0.37048677721847617, 0.553632248395139, 0.8702137350251022, 0.42186952587750404, 0.8696774950675754, 0.5410576963494411, 0.3971326977900686, 0.3275001196198921, 0.9448289227093116, 0.7109941475090589, 0.41925580570138304, 0.3675472469853882, 0.6721911818800557, 0.5562207270314473, 0.5262426608517637, 0.3244609607385458, 0.15056615442564347, 0.15676979724311627, 0.6037730696030339, 0.6342511279653397, 0.021947035536558718, 0.32429164429335744, 0.5678746850743716, 0.3571680467137555, 0.7755534309390314, 0.3240287891037917, 0.699424662214302, 0.5151532452376618, 0.7564675819717819, 0.38343591026479057, 0.19811005648518398, 0.3168419703358067, 0.5315947262677626, 0.9269044449273315, 0.8260225289794664, 0.451791899378283, 0.830516920403184, 0.47128602930186, 0.19027823806377472, 0.5181346713949518, 0.29552777318700446, 0.45414400334446664, 0.39329840463575844, 0.42327932510626076, 0.45838907164509224, 0.2233864252642039, 0.3628419195926303, 0.6709353200988277, 0.46058046365566996, 0.25551237833043455, 0.7234147543269824, 0.1481282262733752, 0.314935793994079, 0.20050531530561894, 0.37453315488553635, 0.701015529968035, 0.6343341418527783, 0.1739320900588749, 0.734996253073231, 0.8172229478314255, 0.3598554146739685, 0.7121055211356295, 0.2620604909731644, 0.3421138035730516, 0.6951268813066005, 0.35208221297891723, 0.452099210446082, 0.18907620085798427, 0.5444201651108793, 0.6484058972837882, 0.3258186925596978, 0.5963383680780668, 0.6202666247822538, 0.576738593946626, 0.5054992484109841, 0.2972245631729925, 0.6844333356791464, 0.42629475072919953, 0.4405153833121037, 0.01207867704715336, 0.7609288944606691, 0.23951123982998349, 0.09310514674080905, 0.5084920166510624, 0.33067609257366243, 0.36481899584296196, 0.5708968386647719, 0.3194802059637459, 0.14207297841267416, 0.5776897120055972, 0.2026163425795633, 0.37909000048748537, 0.38206764842015895, 0.41324683104354176, 0.17826143731067332, 0.42339414872454434, 0.39148091864802853, 0.3511350413575442, 0.8053393751847749, 0.5937005322868365, 0.6849942580153355, 0.38930033076762494, 0.5168500865319015, 0.5699073288866824, 0.5376087249833421, 0.8185832461647057, 0.25950508036415604, 0.20394483716883388, 0.3303044530853749, 0.2528102968078532, 0.8477719856767125, 0.5217124250004609, 0.3303044530853749, 0.5382885532339231, 0.9625763866028243, 0.6536174904341296, 0.42629475072919953, 0.6458781618432388, 0.46574001023909845, 0.37268733756108086, 0.8180085473348132, 0.35493594975273335, 0.2423640089427935, 0.3636330633241046, 0.6421622311157122, 0.5444201651108793, 0.7396308412796291, 0.9036153464846048, 0.21101569987323432, 0.6004024464464508, 0.7595861882737439, 0.486549602332862, 0.2379839758891197, 0.5147825233229498, 0.2065932277190248, 0.4342628292980428, 0.5940848250235929, 0.4857193175270624, 0.5332610244722983, 0.5402196969638672, 0.8578846895389459, 0.5290225674595067, 0.6074669506688956, 0.1847839155105034, 0.3581391437324269, 0.4304380754474639, 0.8410120374942113, 0.5810086483513661, 0.19026233744636453, 0.7223494520380469, 0.8589928738613049, 0.8374625942163022, 0.781203852328267, 0.73983195178881, 0.41156537259256004, 0.7482873396984137, 0.44431713201158524, 0.7113673874393347, 0.49869552495399233, 0.7627102864663872, 0.37193390769028617, 0.37187810520956766, 0.3773291605703562, 0.8719651627687759, 0.6218762459828849, 0.3781393537983126, 0.553632248395139, 0.47624084907999176, 0.774399353278846, 0.5840424935194366, 0.5601025471409736, 0.6186690618327106, 0.620611700356168, 0.5755798886129706, 0.15047650536569443, 0.5530049338021776, 0.6597439619439023, 0.8300222117931148, 0.3490158529243493, 0.4410646109528086, 0.5067909967309752, 0.5851482063434866, 0.7149827463187939, 0.4849259975950144, 0.2094210588097294, 0.33399024531412796, 0.4083143545243069, 0.7497022835596558, 0.7817929239213606, 0.7637421953724776, 0.3825655414920891, 0.6611482494098961, 0.19022241257108333, 0.44972084577511023, 0.5476732603321269, 0.4831274653996314, 0.5077048340566679, 0.7289504589448288, 0.4379810490617926, 0.8017221455714771, 0.6434673631716396, 0.5059779734745421, 0.6065367192264559, 0.650368705032214, 0.34567471266024347, 0.39561589000187136, 0.3427787545601037, 0.4676404271158623, 0.5332283386400669, 0.4519108142444285, 0.40662831629925006, 0.42305576187259053, 0.22032895172816622, 0.5278715769330472, 0.43679486629948455, 0.743933429392776, 0.5269515041023835, 0.5008800654866953, 0.214168174561682, 0.44879088851457377, 0.683485355417811, 0.807753104897186, 0.42629475072919953, 0.8502951424821861, 0.17421175568219957, 0.25491371883486935, 0.7595861882737439, 0.6571724132942184, 0.7813188949129265, 0.5626906653340306, 0.8674288259883418, 0.6600514650598344, 0.4827749661719035, 0.5456147119159479, 0.39827550056677263, 0.27323823737433794, 0.695896529362927, 0.5048820477254727, 0.5422349097465021, 0.5610936746718964, 0.6571724132942184, 0.3088751107498249, 0.45428761266464013, 0.6604471727860799, 0.43371621376298963, 0.6171893197168647, 0.8100511550343341, 0.8100511550343341, 0.605832578461134, 0.5526475584669951, 0.4275055171336787, 0.8734720021260204, 0.8508295378350301, 0.5807723706867254, 0.8272749548927728, 0.2670652478909882, 0.7020144194675465, 0.4615566916191992, 0.7055847950248242, 0.43389869234556755, 0.6071692164257629, 0.3496825637352313, 0.23676491619791426, 0.7057755976874825, 0.15539001443149586, 0.6187538615870153, 0.8735882828904331, 0.30049486749739024, 0.23191705420611952, 0.8913917397916864, 0.4977157214618499, 0.16961113509580228, 0.8485494795219795, 0.4760032757956232, 0.5053843099270294, 0.2676015269871764, 0.3627664421236291, 0.15146266807038725, 0.7898179638281774, 0.6145296307645981, 0.3790380236797623, 0.3003532640340299, 0.6086112016774773, 0.39906793889171593, 0.8185832461647057, 0.6715802865662828, 0.8260225289794664, 0.6056902064850618, 0.400132762133902, 0.39471961640683584, 0.6449859309106076, 0.5637152910565628, 0.39949420960438964, 0.5490401551410112, 0.4398875418860128, 0.30916577334906253, 0.7093303227687476, 0.4562508424819209, 0.40444044759428516, 0.5773483646962835, 0.447777692034652, 0.4961542215384683, 0.32474312180562226, 0.21192693199409943, 0.9056903490933487, 0.5013816399998683, 0.758876109553896, 0.6364928148646596, 0.2952804752502578, 0.4748951900520853, 0.43679486629948455, 0.5479962315186364, 0.4728142838839701, 0.6343341418527783, 0.12248807650217919, 0.5052525886146573, 0.8281252124183194, 0.8930081609652758, 0.36283726088930296, 0.8098196742550625, 0.656477404357746, 0.193885049884708, 0.5269515041023835, 0.49858469647139786, 0.32780472036158087, 0.24927512797396847, 0.6148718578314069, 0.10691527318901187, 0.136775438340409, 0.8489192718114075, 0.2600203086082801, 0.8142007211296887, 0.5269515041023835, 0.7966615933629455, 0.5633234794197017, 0.767479452333631], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"residual.sugar\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"residual.sugar\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}, \"residual.sugar_bad\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (ref)\", \"type\": \"scatter\", \"x\": [10.4, 5.1, 1.1, 2.0, 2.6, 3.9, 6.9, 1.9, 8.9, 14.8, 4.5, 1.4, 13.5, 1.4, 2.7, 5.6, 2.4, 1.5, 18.15, 1.7, 1.4, 8.6, 3.1, 5.0, 1.9, 2.3, 6.4, 2.5, 13.0, 1.3, 2.5, 1.2, 9.1, 5.4, 13.5, 2.0, 1.6, 11.8, 3.4, 8.1, 13.1, 3.0, 1.3, 1.2, 1.8, 17.8, 1.1, 1.4, 7.0, 2.1, 2.4, 16.0, 4.8, 2.2, 11.8, 13.0, 7.1, 1.7, 1.4, 3.0, 11.0, 12.0, 3.75, 12.1, 2.1, 1.1, 8.9, 2.2, 2.0, 1.0, 8.4, 6.4, 10.8, 0.9, 1.8, 1.5, 13.0, 1.8, 8.1, 4.3, 2.3, 9.1, 7.5, 1.9, 2.0, 2.3, 9.5, 1.4, 12.5, 3.5, 6.4, 9.2, 2.2, 10.8, 19.8, 8.1, 14.5, 3.2, 7.1, 15.3, 13.3, 2.3, 2.7, 18.35, 1.8, 1.7, 14.5, 1.0, 6.4, 9.2, 1.8, 1.1, 1.6, 4.6, 1.8, 11.5, 11.0, 1.4, 2.8, 1.9, 16.05, 2.1, 9.2, 11.95, 13.1, 12.1, 4.8, 2.3, 1.9, 7.8, 1.4, 3.4, 6.5, 8.0, 1.6, 6.1, 8.8, 16.2, 1.2, 2.1, 17.8, 10.0, 0.9, 15.0, 1.4, 1.1, 1.7, 16.05, 2.0, 2.6, 2.0, 2.3, 1.1, 2.9, 1.1, 2.2, 3.3, 12.1, 1.2, 1.1, 3.2, 2.2, 4.5, 3.3, 1.8, 6.4, 7.5, 16.2, 10.4, 8.1, 7.8, 1.0, 7.2, 13.9, 2.7, 2.8, 2.0, 2.2, 2.4, 3.5, 1.5, 1.8, 2.3, 1.4, 13.2, 7.9, 8.6, 3.85, 10.0, 8.3, 4.5, 1.0, 10.7, 0.8, 7.6, 1.9, 8.95, 1.35, 15.6, 1.9, 5.0, 13.8, 13.8, 2.3, 2.4, 7.3, 1.4, 2.3, 1.7, 0.8, 4.8, 1.4, 6.7, 10.0, 15.6, 12.8, 13.7, 1.0, 12.1, 9.85, 1.4, 0.9, 14.8, 2.2, 1.8, 8.3, 2.7, 15.2, 5.7, 2.5, 5.7, 1.3, 6.3, 18.8, 1.4, 6.55, 19.35, 10.4, 2.6, 11.9, 2.5, 6.9, 14.9, 4.5, 0.9, 1.8, 2.5, 1.9, 6.2, 1.3, 2.5, 6.5, 9.1, 2.1, 1.3, 15.3, 6.1, 1.1, 3.2, 2.3, 1.6, 4.8, 12.6, 1.0, 1.7, 11.2, 1.3, 1.3, 2.3, 7.8, 17.8, 13.0, 2.1, 12.3, 6.5, 12.1, 1.9, 11.8, 10.5, 1.4, 2.3, 1.8, 1.3, 1.6, 6.9, 7.7, 1.3, 12.9, 1.2, 8.6, 1.3, 2.2, 2.0, 1.1, 2.6, 2.0, 5.0, 12.9, 12.1, 3.0, 2.1, 1.6, 2.4, 7.6, 3.2, 0.6, 18.35, 1.4, 2.2, 10.7, 4.0, 7.6, 1.8, 8.3, 2.3, 1.2, 16.45, 2.7, 11.5, 2.4, 2.2, 11.6, 2.0, 1.8, 8.0, 11.2, 7.5, 7.0, 2.1, 8.3, 22.0, 2.4, 1.6, 15.4, 1.0, 2.4, 14.9, 2.5, 0.8, 9.7, 1.5, 1.6, 6.1, 2.2, 15.8, 2.0, 7.4, 9.4, 1.3, 16.7, 10.5, 1.7, 13.1, 2.3, 2.0], \"xaxis\": \"x\", \"y\": [0.7197707895473677, 0.05448058807241418, 0.5021256787650443, 0.4710854375480472, 0.7156076129280222, 0.7966690429773311, 0.7265425252145667, 0.16771266951545494, 0.610944103187451, 0.6324527530146118, 0.42180662537268765, 0.2598044700255929, 0.5503032830239416, 0.5632112185661304, 0.6840604465833231, 0.6224375641140001, 0.8071781895370533, 0.9515482366939344, 0.3994071349416132, 0.9677746238863042, 0.572587586261062, 0.7602674855798478, 0.861098734498427, 0.1386074727873, 0.6703360831713621, 0.8064003460928679, 0.3172728283240366, 0.8039094494444462, 0.9186426431335688, 0.6026275969807151, 0.8609701260317718, 0.3485833566260712, 0.3005246278528939, 0.2859113263741919, 0.4978204971029292, 0.5125675444128744, 0.4268860326359044, 0.11791793574572085, 0.440027850275134, 0.4938434408506086, 0.4933189622152446, 0.166194347192407, 0.30200278364192557, 0.6822425768461728, 0.8693180940701344, 0.24112389044610405, 0.43189370387303117, 0.284455178085937, 0.23793737479647703, 0.5535561322468214, 0.7900402576908969, 0.47373775892899717, 0.6055733033081183, 0.7462675017011632, 0.32245623572553406, 0.7612367841042231, 0.36308410170653527, 0.6103993963703384, 0.3965676277125745, 0.2230008284200371, 0.8480025164595866, 0.43585875500482685, 0.24095331994381775, 0.4030652094068704, 0.8951637220162157, 0.2782175630406618, 0.7337660836226194, 0.8352762102164887, 0.6223987562306759, 0.2928263700360406, 0.6563137004068428, 0.16155652477357085, 0.6364666355122575, 0.2186811050870735, 0.27206300237801306, 0.4358901152617537, 0.6136035252376228, 0.07900866299327158, 0.8522855318359817, 0.11906253414448076, 0.3466831105240652, 0.11265227152414181, 0.6302693732121377, 0.7168097665217413, 0.4796298258249143, 0.4476252306691143, 0.3612478268219491, 0.611861930499026, 0.15121036728507153, 0.5363393546692182, 0.16155652477357085, 0.441733396330222, 0.7834276811132227, 0.6364666355122575, 0.44873286860252337, 0.4948960601400133, 0.4172084246960842, 0.5055831714989107, 0.5269082808529498, 0.3737404408311804, 0.4491757516278906, 0.5266720849021, 0.2882430633103308, 0.6066213483726142, 0.83534933450756, 0.2509605867776752, 0.230738949997912, 0.25680675940048736, 0.6858999083789018, 0.27626495444752697, 0.35158671089680515, 0.311480105980391, 0.5950329577300569, 0.4196263877039489, 0.3672198477254309, 0.5488429300958864, 0.6273126624389191, 0.0990306898864649, 0.935036100419004, 0.5556828679884147, 0.6003916802566726, 0.1337843055401957, 0.6898191889393818, 0.46604488826349566, 0.6668872608045229, 0.5998672378660981, 0.14712454771937833, 0.8558065212045691, 0.883276495704891, 0.5544329747085402, 0.38398791005853006, 0.8623310715459079, 0.4482795971615686, 0.4767821080964978, 0.6451659669426603, 0.5099786295438409, 0.11454219273407718, 0.5691587732433696, 0.2398813672346335, 0.8592796956842923, 0.38133093816728936, 0.4754945767078651, 0.2673740541283356, 0.43092180164799054, 0.5981491184574936, 0.7512253043619477, 0.20474988026063612, 0.12337786436138054, 0.6965484670033051, 0.4642254518352117, 0.29034758521725457, 0.7912282271603185, 0.1364389858241727, 0.5326323768611896, 0.3938848007926149, 0.886984727126295, 0.5955398539691413, 0.3667393936023857, 0.35129461810907203, 0.578130474122496, 0.1952086434691429, 0.6982941690158907, 0.6159300986783536, 0.6650580695700093, 0.8007006003287879, 0.13750802167619447, 0.47121416359091395, 0.5691587732433696, 0.5295784007050042, 0.4938434408506086, 0.4240508430342457, 0.1531205555636086, 0.7965770364050346, 0.4829168465516456, 0.6333246955344933, 0.38682769986244625, 0.5589353890471914, 0.30965836575156913, 0.6133571507425741, 0.5363393546692182, 0.5474540697204298, 0.9680074395956593, 0.29703705077451537, 0.7566858385458134, 0.451244026180727, 0.6224939697452743, 0.9340693900855184, 0.1254375450851024, 0.770680513376406, 0.7273231109206828, 0.410671569380914, 0.19928392436820586, 0.44743622108127745, 0.4991477681643879, 0.5443787589855091, 0.826082779912576, 0.5642536294664222, 0.6762559922350657, 0.39283078357423706, 0.3074847569358159, 0.40732461839200396, 0.5614584986504241, 0.5614584986504241, 0.575628870274347, 0.1938881144566701, 0.6480440770440566, 0.23946299348505806, 0.6110142157087575, 0.32489046344192996, 0.127020290619695, 0.28948900574123104, 0.27970970921902805, 0.5179212029104148, 0.579807192000203, 0.5695619245525361, 0.7471497674522103, 0.6761943115269239, 0.6052803835931642, 0.9048996801452402, 0.632953623191418, 0.7849920634816455, 0.12946409768986655, 0.3899257470968539, 0.37735505673750047, 0.27206300237801306, 0.6356505945299911, 0.9000798247851504, 0.5852448485124296, 0.3537739535016634, 0.8589709040748648, 0.5105041430354158, 0.4760479563081992, 0.3915586115462193, 0.4344526143297297, 0.04825794875232026, 0.25106204840173363, 0.5352062615150248, 0.2084678736174792, 0.5588772074146924, 0.42656597432725707, 0.3395528272139201, 0.5154796814541086, 0.30312695461308037, 0.4684625037801391, 0.13140485141127656, 0.37575572516499556, 0.7087902803012941, 0.22740617784346517, 0.7932370230268412, 0.6977827466507267, 0.8687065743771458, 0.3532210556477622, 0.3005246278528939, 0.8817461779308045, 0.5897758288136841, 0.5117334773877459, 0.2267712913026929, 0.7462523759498982, 0.5055831714989107, 0.6276122794572256, 0.34766968675436505, 0.563322001169588, 0.4035281086421867, 0.44827723495654004, 0.7588644006503809, 0.17560197311170134, 0.2736156405730563, 0.5646478519097824, 0.12788772013874206, 0.8127608550985441, 0.35130933230290007, 0.8842329534318195, 0.5671758377024384, 0.508518787579709, 0.4735654621913231, 0.6614347321502836, 0.7032589073748752, 0.418601168771625, 0.40262233345395115, 0.38045938978299354, 0.6221728234115828, 0.6769388667590319, 0.825791915264051, 0.8036522945246104, 0.5350776523934957, 0.5038683203672731, 0.4187790963850706, 0.3942708224564714, 0.36585282612655, 0.42973128126448334, 0.1395024853671747, 0.36909778672938764, 0.5126700875045708, 0.31128511290513083, 0.5841805470690385, 0.42932394036482613, 0.5168725346003686, 0.9331527243268325, 0.5090935678835011, 0.848083892739094, 0.7288594688776423, 0.23463814542978878, 0.9073343486287574, 0.5445649372592127, 0.8030108083542629, 0.30698149193503155, 0.47724620771884374, 0.49565431290071005, 0.29179072192325783, 0.53941953634433, 0.32642767658125227, 0.5714063949384225, 0.6769388667590319, 0.48314991346809855, 0.3838692085325581, 0.7654355578102645, 0.6807995217458978, 0.7803105409218809, 0.4971816769068883, 0.5662837862370104, 0.32557907866588853, 0.4059739580227363, 0.8621668957327787, 0.4863555612469991, 0.44913520001249685, 0.5044088987161788, 0.018560580499064172, 0.17397747102053363, 0.8203404366189, 0.531551035274026, 0.3951880410340851, 0.6710839680909022, 0.7545393605546251, 0.25029771644034415, 0.31651464458218903, 0.7900402576908969, 0.7649542174153934, 0.6282404390050247, 0.5124469561170844, 0.7501741577575001, 0.3717170374651112, 0.5479204837841629, 0.1799627586960565, 0.8716748635647116, 0.4700369344869263, 0.7044722268129955, 0.7597806244765397, 0.4570971226262448, 0.3688130253756654, 0.5854022956087224, 0.6067015953642416, 0.6092966434658947, 0.5713009051869427, 0.15316343939585397, 0.31191498773739224], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [1.3, 6.3, 2.6, 6.0, 1.2, 2.3, 2.2, 1.1, 2.7, 3.5, 0.9, 1.5, 5.7, 17.85, 4.55, 6.5, 1.0, 3.7, 1.7, 11.8, 8.2, 4.5, 1.5, 2.1, 7.2, 1.9, 1.2, 13.0, 4.6, 1.2, 1.2, 2.1, 1.9, 1.8, 2.0, 13.9, 10.7, 2.0, 4.3, 1.4, 1.1, 1.3, 1.8, 1.2, 11.0, 8.8, 2.5, 8.3, 2.4, 3.5, 16.4, 14.4, 1.4, 5.5, 1.1, 13.3, 2.5, 0.8, 1.2, 6.0, 2.2, 5.0, 2.7, 1.6, 2.6, 2.6, 2.4, 8.1, 7.4, 8.55, 1.5, 6.1, 5.9, 8.3, 5.7, 8.9, 3.6, 1.1, 2.1, 8.6, 2.3, 5.0, 1.1, 10.6, 7.7, 1.1, 1.2, 2.6, 4.2, 2.2, 1.5, 4.9, 1.8, 1.5, 6.2, 7.8, 13.7, 3.2, 1.3, 1.4, 1.1, 13.1, 2.2, 2.3, 1.2, 2.4, 7.7, 4.5, 1.2, 1.9, 1.2, 31.6, 1.2, 2.2, 3.9, 1.4, 2.0, 1.6, 16.5, 2.1, 12.8, 1.5, 10.5, 12.2, 2.2, 1.7, 2.1, 12.1, 1.5, 2.0, 4.0, 1.9, 14.75, 2.5, 4.5, 5.7, 2.6, 2.4, 2.8, 2.7, 0.9, 5.8, 8.6, 4.7, 2.2, 1.4, 6.4, 1.4, 1.7, 14.4, 14.7, 1.4, 1.6, 13.4, 14.9, 5.8, 1.0, 1.8, 8.8, 1.5, 11.4, 2.0, 1.4, 2.9, 6.6, 11.9, 9.9, 5.1, 11.2, 1.4, 2.0, 2.0, 1.6, 11.1, 3.0, 7.6, 1.7, 6.0, 4.8, 2.4, 6.1, 1.2, 1.7, 2.1, 7.0, 1.2, 1.7, 1.5, 3.6, 1.1, 1.8, 2.2, 8.3, 8.0, 2.3, 1.6, 1.3, 1.3, 2.0, 1.1, 2.0, 4.9, 6.5, 1.8, 2.3, 1.9, 5.1, 7.1, 13.9, 10.1, 0.9, 1.4, 3.6, 3.6, 4.2, 1.3, 5.35, 5.9, 6.5, 3.0, 1.1, 18.15, 1.6, 1.6, 2.1, 5.7, 14.4, 14.55, 1.3, 6.2, 4.8, 1.5, 2.9, 12.2, 4.5, 10.2, 1.8, 8.9, 2.8, 7.8, 8.1, 14.2, 1.1, 14.4, 1.8, 6.8, 1.3, 17.4, 6.5, 3.7, 14.6, 12.8, 2.1, 1.6, 1.9, 5.9, 3.6, 4.4, 1.8, 1.7, 12.2, 1.2, 2.6, 4.2, 1.4, 1.7, 4.6, 4.6, 2.0, 1.5, 1.7, 2.1, 7.4, 7.3, 2.2, 13.5, 10.2, 2.0, 2.2, 1.4, 7.0, 3.8, 1.6, 3.9, 1.6, 1.6, 18.4, 10.2, 2.5, 2.3, 1.5, 2.7, 2.1, 4.8, 10.8, 6.9, 1.8, 1.3, 1.2, 4.7, 2.4, 7.4, 5.7, 6.8, 1.5, 2.1, 9.25, 1.0, 18.95, 1.4, 1.8, 15.4, 2.4, 2.0, 1.2, 2.6, 1.5, 1.9, 2.1, 1.5, 1.7, 2.8, 6.3, 3.2, 1.6, 2.1, 10.7, 2.0, 8.2, 5.0, 8.3, 1.3, 3.6, 10.7, 1.9, 19.25, 4.7, 2.5, 15.55, 8.5, 12.4, 6.0, 1.3, 1.4, 2.0, 1.0, 12.2, 2.3, 1.5, 13.1, 10.4, 1.7, 10.2, 1.1, 13.0, 1.5, 2.2, 3.5, 4.0, 3.5, 14.1, 3.4, 1.9, 2.6, 2.2, 11.8, 1.2, 1.4, 2.2, 12.5, 5.4, 1.1, 1.4, 6.2, 4.4, 9.2, 1.8, 2.8, 1.6, 2.5, 11.0, 8.2, 2.9, 11.0, 7.3, 2.6, 15.4, 0.9, 6.9, 3.1, 4.25, 17.8, 4.8, 5.7, 8.6, 3.6, 1.9, 26.05, 4.5, 3.2, 1.9, 1.9, 2.5, 14.6, 7.25, 12.2, 4.7, 1.1, 1.6, 7.7, 1.6, 7.2, 1.2, 1.6, 1.3, 2.3, 6.3, 16.5, 3.3, 1.4, 6.2, 6.3, 7.7, 14.7, 9.8, 1.2, 1.0, 1.4, 5.3, 4.6, 8.65, 2.0, 4.9, 1.2, 1.0, 2.8, 4.2, 3.7, 4.1, 2.7, 2.9, 1.2, 1.2, 9.1, 6.3, 6.9, 13.6, 1.4, 2.1, 1.4, 5.0, 1.5, 1.55, 1.5, 10.4, 4.2, 6.7, 2.3, 9.9, 11.0, 3.2, 1.9, 3.3, 19.1, 1.2, 2.2, 4.9, 1.1, 9.3, 2.6, 1.9, 11.2, 8.0, 13.4, 5.1, 1.95, 4.7, 8.9, 4.8, 1.4, 2.2, 18.0, 17.3, 7.2, 4.1, 8.9, 1.7, 14.9, 1.1, 1.5, 14.6, 2.3, 1.1, 14.2, 1.2, 1.5, 9.6, 5.7, 2.7, 1.4, 12.7, 9.1, 10.5, 14.3, 6.5, 8.1, 1.1, 4.7, 1.0, 4.4, 1.6, 3.6, 7.4, 12.8, 0.8, 1.5, 2.2, 12.2, 1.6, 3.8, 2.8, 1.4, 8.2, 1.0, 1.9, 0.9, 12.15, 2.0, 4.3, 3.5, 5.6, 2.4, 4.2, 15.55, 2.3, 4.0, 8.7, 13.6, 5.4, 1.5, 6.4, 3.1, 15.15, 5.2, 4.8, 1.4, 2.4, 5.9, 2.7, 6.8, 1.1, 11.2, 3.3, 7.5, 2.8, 2.1, 1.1, 1.6, 9.5, 1.9, 1.4, 9.7, 1.3, 14.0, 1.8, 1.6, 3.5, 7.3, 1.1, 7.6, 1.1, 1.9, 1.6, 4.8, 1.5, 1.5, 17.55, 2.2, 15.6, 1.6, 1.6, 4.8, 7.4, 2.1, 12.8, 2.4, 2.7, 7.0, 1.1, 1.8, 1.9, 1.7, 7.9, 3.1, 18.6, 3.0, 6.9, 1.8, 7.4, 8.8, 1.2, 1.8, 14.9, 1.7, 2.8, 15.9, 4.2, 15.5, 1.7, 13.9, 9.65, 3.3, 7.5, 2.1, 2.5, 2.3, 3.3, 3.8, 2.0, 2.2, 10.9, 1.2, 1.6, 2.2, 10.4, 1.9, 12.7, 2.5, 8.1, 1.3, 9.6, 9.2, 14.5, 13.55, 10.5, 1.3, 1.6, 8.1, 1.0, 1.8, 1.1, 2.7, 3.5, 5.1, 1.3], \"xaxis\": \"x\", \"y\": [0.18439386755371057, 0.5750868907731637, 0.1132172353536568, 0.19850047615697952, 0.6950004168934912, 0.41826441672946313, 0.040828937665112974, 0.2145583871630251, 0.09143093017991866, 0.10013996234885614, 0.3658834999306372, 0.587897812361327, 0.23563705889496211, 0.5289998061994394, 0.5981734696485812, 0.5956194363709464, 0.11295199838815062, 0.6349332021584286, 0.09356782907078887, 0.0672754654033908, 0.3541579814831264, 0.11781588709523827, 0.3295981493457443, 0.23443288181779365, 0.13830133810679424, 0.5122546205578999, 0.03626449638205209, 0.32057959349203036, 0.3955164844050859, 0.21320459763992916, 0.08620177311633537, 0.4132497936565127, 0.19514157099220286, 0.028148892894647393, 0.03728071159582558, 0.20213762816504022, 0.39088790332760825, 0.10566618212719892, 0.11466232649727714, 0.09544364959788487, 0.07351553674018241, 0.3657542344632553, 0.05859665738698361, 0.43634835962676355, 0.4827032077898804, 0.516310366273556, 0.6480037931050455, 0.21122004543372697, 0.030344760075157406, 0.22750344576024595, 0.18673438423788624, 0.5460909738859347, 0.0666291073587214, 0.320234954276134, 0.515425573770442, 0.5751179393061847, 0.3262180383913996, 0.12192585741802231, 0.6165939755266235, 0.09365914315081003, 0.44259853952477324, 0.31958523161407537, 0.09228899111547839, 0.22815273642701062, 0.5282447951108347, 0.7777719169155834, 0.13834506443323813, 0.29425092810710396, 0.5300870647699181, 0.031947521718024174, 0.1108646816717751, 0.053339747820140615, 0.14466174791529418, 0.25697560969337485, 0.3383868137798065, 0.30803904997837983, 0.03434255320493995, 0.08689109251212201, 0.46044782253877736, 0.0973761441498977, 0.3449058470623745, 0.024212367984770777, 0.11665042079727428, 0.3333970234137619, 0.1495417879159372, 0.0679784404121434, 0.2360052425084116, 0.39147703437781534, 0.04428683932015287, 0.5381556738404795, 0.4357341587922019, 0.11843845992675284, 0.28107964630818494, 0.06989794698232743, 0.2658605825653322, 0.22408104406272966, 0.15519213452661884, 0.09873339188795927, 0.10739713799337769, 0.4712507279726723, 0.31257930793611366, 0.6259141532505736, 0.1651629894813923, 0.13024327386797574, 0.08242409751896962, 0.55355901104019, 0.11256152515999429, 0.22124325125588817, 0.05838775174278421, 0.6734770756819889, 0.06919042490492266, 0.5773286546676725, 0.5693181878572973, 0.12726917141891614, 0.27983888222674136, 0.15690954109554833, 0.18593824584442387, 0.05432525584274117, 0.33273366741371935, 0.12435295831370408, 0.48112847828662497, 0.2959384652215836, 0.5042039768350125, 0.3749869638443927, 0.7258627386781167, 0.4806866421912115, 0.6234335830956541, 0.4191951896523489, 0.20821728825178332, 0.6343085651912675, 0.27674577061671146, 0.02140654255666985, 0.42849246998341506, 0.1817444030106703, 0.4551538855951942, 0.05087080041524106, 0.516641204200833, 0.6810720245435042, 0.08151744899857294, 0.4475169494323581, 0.03995706953508171, 0.2181819033834006, 0.20372897255157485, 0.24305701296248816, 0.5381556738404795, 0.2358485729609252, 0.051323642447754336, 0.1913631294907303, 0.32154631204965056, 0.31229802093755377, 0.3917329141436472, 0.39462053822053156, 0.3680669306910641, 0.5017894292511481, 0.32120711190509066, 0.0768019282386515, 0.1168769044932052, 0.31545143431826594, 0.12007957373947853, 0.08354361700756141, 0.2180731800932174, 0.7653011157176768, 0.05076221583963347, 0.11739077279846111, 0.3639458403519926, 0.4815918747301601, 0.35998732468747585, 0.457353694020342, 0.5520498791697908, 0.22168281241722143, 0.2132287846887433, 0.4763394582576197, 0.3040153802820409, 0.20749766415549342, 0.3316810644107503, 0.8126297477835096, 0.5749367295182395, 0.27274039590582944, 0.2685808245693546, 0.5172108675362206, 0.33506587713796443, 0.09616672688355288, 0.041108213935392324, 0.10548050716105373, 0.5016695616404938, 0.20022874051447226, 0.14220640128276774, 0.23772630779738468, 0.19606080251004787, 0.2603188495268066, 0.18846597668723208, 0.19827111133563302, 0.261548791893628, 0.4140325207077993, 0.8134796325151183, 0.12265695643958285, 0.6311167068993262, 0.13481820177301163, 0.0932384579037443, 0.14050160114126486, 0.2562249115981724, 0.08547750670655718, 0.08643201081848362, 0.19981675431015722, 0.31390222338706264, 0.06221739913672386, 0.06996303880871468, 0.30029370289300306, 0.4306817897420764, 0.6595343859760441, 0.2839408857911616, 0.20468539219890003, 0.1130196126722065, 0.2360017176902124, 0.13187147729288817, 0.42313120297864704, 0.06964897436687001, 0.1624399718171824, 0.17200815643270417, 0.07333105637055992, 0.2440137653363641, 0.4900110333069776, 0.3085554157386313, 0.03480496731142946, 0.12148031785507996, 0.15002971926037112, 0.5314247042003052, 0.2758453007685677, 0.2151852748992088, 0.2658605825653322, 0.29911225563077193, 0.6594110243744711, 0.49869782335001445, 0.16788254706683048, 0.11816213334465087, 0.08230909248122409, 0.13653212507346946, 0.25639170942272826, 0.06562233405876228, 0.23311900627036541, 0.3756616197417655, 0.46674395287949066, 0.3092684534350997, 0.8337319641197457, 0.8331457111467163, 0.2591056156836542, 0.4778687671024334, 0.2542440524586721, 0.5361036306539362, 0.07073721340803463, 0.4731688813159418, 0.5755848065786346, 0.356689463387698, 0.14225616860197343, 0.21837916002376445, 0.14466174791529418, 0.29899643271856946, 0.4757427727983842, 0.08126799884203029, 0.1296501822378736, 0.3286954654423938, 0.08620177311633537, 0.13855855420831553, 0.05543377339452393, 0.11917834098009661, 0.2613621884509647, 0.11269900223777074, 0.08429051026621415, 0.3393961441870107, 0.07031960314855146, 0.11356777592095357, 0.4853279864284006, 0.1279289285514792, 0.0584572339054259, 0.08612988585012649, 0.3472440907423937, 0.1248029959061332, 0.07502335399434323, 0.19827111133563302, 0.3424151534036639, 0.3065175956815872, 0.13808860398564737, 0.058092197534895806, 0.04082786106581715, 0.1602592849246841, 0.09156161599234125, 0.5036030690663805, 0.2640411824475748, 0.6468038092930676, 0.07201805208597656, 0.22470230804277058, 0.1334773721572423, 0.04847889440667685, 0.2685808245693546, 0.10911308148570098, 0.6764508967260475, 0.6280060594576413, 0.36761958218269275, 0.16019930342079847, 0.17605308658107655, 0.14078981831089854, 0.2384997092801764, 0.13117402490907393, 0.12818959986091483, 0.4161925244315118, 0.12435295831370408, 0.09814942480303201, 0.05480698563416486, 0.3746187330143109, 0.41092354232892336, 0.507894749900129, 0.5137929421583434, 0.08293523366016065, 0.2964416548030494, 0.15236141109070434, 0.4396941021426354, 0.41893931094950754, 0.09113953260801844, 0.10967473999240707, 0.055732078845942, 0.05640314085190745, 0.06176263301115803, 0.06427139521062619, 0.20386133178572885, 0.21597661143113533, 0.7486409492386699, 0.2610715902497083, 0.09465277491899493, 0.5556171757583562, 0.137718889647652, 0.1978940751503777, 0.08472590699531857, 0.356262641598029, 0.14596950445002987, 0.13865818299932142, 0.3088915816821678, 0.11516321289421916, 0.16121169033174265, 0.40573483691789825, 0.34308606282264, 0.36300204724896845, 0.17193414756867276, 0.035926383178341514, 0.34536882843285344, 0.4400180463892147, 0.5165194668234709, 0.23319834124303085, 0.9637923675569924, 0.2635599134550337, 0.6259141532505736, 0.12324962258280003, 0.1256037712827487, 0.1248029959061332, 0.11665042079727428, 0.29081136443782263, 0.12993062945549005, 0.20959981847797426, 0.12385816607190492, 0.16931651488884025, 0.2468284110987674, 0.6181879252747016, 0.3509541008179864, 0.08619429866610873, 0.09537770951135394, 0.8204393830764495, 0.2493836920976743, 0.10367142046182065, 0.11516383353466464, 0.07169627826225977, 0.5400384130096556, 0.2709141565803237, 0.16809050322974173, 0.3421981324687273, 0.812724325423183, 0.1326589750154965, 0.054670132935181304, 0.055346153509382656, 0.8039442695404772, 0.3276168958360183, 0.6561718697940482, 0.6214102617950452, 0.3046829516703813, 0.7853649284745584, 0.7303620793003476, 0.6719087507962026, 0.16000678121984613, 0.579612101366232, 0.6347749924714103, 0.41894393066564606, 0.06936532322770372, 0.28322834609079706, 0.343263893078516, 0.4450860003239352, 0.3090838478611311, 0.408095736797927, 0.11529682880263803, 0.13359771811640497, 0.2417229185475579, 0.10092265889692065, 0.8181934133883563, 0.3777834313813965, 0.8273808576462511, 0.18439353202429143, 0.5148786056082297, 0.11287077888712382, 0.16015059460472458, 0.29672938182784603, 0.36944561074938853, 0.2505850522824452, 0.8467591712977676, 0.3840267097226593, 0.261779448872241, 0.1645479955558209, 0.14631295673285594, 0.4248523287309329, 0.09222807982804315, 0.2121484308544801, 0.33273366741371935, 0.5470626312455473, 0.8294144697045585, 0.25206662215500397, 0.15998368749433245, 0.548322128117227, 0.3917329141436472, 0.15981565308588508, 0.23631147082452741, 0.21082920466209698, 0.1871387197916503, 0.24774693401855818, 0.1913242313933492, 0.16437448769677154, 0.07582203648947516, 0.032541140295091364, 0.06311143057978008, 0.5009235508757715, 0.12343879567504301, 0.445735807756371, 0.40322837553658053, 0.09397553936597514, 0.1598391281143201, 0.26702494168661406, 0.19782301216908982, 0.06831823449824892, 0.5451167746582685, 0.20142160156100697, 0.25747632252511843, 0.4257317671215596, 0.5062318064185062, 0.10278357133077332, 0.10857266292312517, 0.06223864817381186, 0.11377411494697365, 0.14082424186384768, 0.2589321903149734, 0.31776639873426016, 0.07983414941561229, 0.30174211068680845, 0.42532907678292176, 0.23734670470511587, 0.2862296469110084, 0.24790288035387664, 0.5526146374040077, 0.20425399436950087, 0.5166825128498294, 0.12415322942140417, 0.5310696157212036, 0.3866387435262121, 0.14313186082947948, 0.31648660326859934, 0.026792916001305622, 0.7856428374245099, 0.42383310375799566, 0.5944566396871084, 0.6256605001243821, 0.08813642250468567, 0.03544811528140901, 0.06935406654889886, 0.15751976448865512, 0.22608551288474832, 0.3127311228465576, 0.1409438166611655, 0.3285615524533705, 0.3591330499592894, 0.47964497307801546, 0.7143146030302826, 0.14223944449319303, 0.06929054967731618, 0.32120711190509066, 0.16913647442041335, 0.707286257884667, 0.3230684446475647, 0.7616845263358343, 0.4104900542879092, 0.10053249234255524, 0.1106599594415556, 0.1543174595222413, 0.46003879185641183, 0.3811350878514418, 0.07185070571861518, 0.23882593985771994, 0.5344976262521839, 0.11031385635331636, 0.09610989844306939, 0.4955559099445003, 0.07845190603324759, 0.30697262074812925, 0.12767551958037127, 0.4375661224395835, 0.07737023387634634, 0.15307682457740834, 0.05694427046787409, 0.09028836937410878, 0.4011292297732457, 0.6186146927451245, 0.11561676905211238, 0.0993047499370594, 0.08102401279833105, 0.8100206966555492, 0.10768932514586738, 0.15386113005635593, 0.4026560765644126, 0.045535707525545144, 0.08229583319403, 0.08227601457953415, 0.8241544781987433, 0.0759900855540333, 0.5147505197509459, 0.11103147778198663, 0.42144961755966015, 0.24880465403270857, 0.3112403223054312, 0.3282460941643247, 0.28312386083977936, 0.2865521931047814, 0.16537364909659502, 0.4284132019637321, 0.34116073112729894, 0.051142721309942685, 0.10794707492381372, 0.1108646816717751, 0.29201805921023904, 0.07365131996157204, 0.36851051207096197, 0.2556143611338999, 0.07392456180697715, 0.045535707525545144, 0.15025986810093994, 0.4395989822566938, 0.19636656988846957, 0.21018464628148859, 0.15085686628779282, 0.3429118439192298, 0.16104008564300487, 0.2055862423584408, 0.18673310211333727, 0.5528531989583015, 0.20219789553586287, 0.5807830339134155, 0.6112381610839525, 0.07515362639458067, 0.5722084734915175, 0.3654892991508686, 0.1991057466826236, 0.4912569401667811, 0.05850610073101081, 0.3077884117234785, 0.17038242498240874, 0.14066607718466684, 0.10248584652416493, 0.4022873718442217, 0.07205214632436985, 0.35142291824287475, 0.10941760034103376, 0.06679271580157364, 0.05675388891699207, 0.058987921856350156, 0.3660303223369904, 0.28790374422385034, 0.4158290962648631, 0.40710291595796666, 0.09934102670994882, 0.06362846635195196, 0.30921476208988685, 0.23242198019285765, 0.055541210656895434, 0.5297663836663529, 0.10744632778983743, 0.18410212910939194, 0.17721960751489196, 0.1962664672709783, 0.1617648996714035, 0.10584426414108294, 0.5203501665477333, 0.07365131996157204, 0.31578819840495265, 0.35364190165315845, 0.1707951928721818, 0.41655733121321636, 0.15801546378512366, 0.7568436608419439, 0.22368578646300386, 0.0609449253562836, 0.2225096762928218, 0.18587673368692093, 0.05559101133196209, 0.569598540521716, 0.08073228430722412, 0.15724041301590164, 0.12879141548479, 0.4306817897420764, 0.17998791969802397, 0.41280880088413996, 0.5723062335690389, 0.6457404130724687, 0.10420061808672998, 0.12564769853034463, 0.21795029564941848, 0.4720930498870375, 0.11304202998506685, 0.545112257205237, 0.14852188644910969, 0.17217029085021085, 0.336250902618187, 0.48671482860553816, 0.5093433434984792, 0.35847801144896685, 0.3008706318705062, 0.18494609259573758, 0.4199330463236065, 0.04162287990776414, 0.2633909944023186, 0.4252182303976608, 0.4684623303117058, 0.1925553058603695, 0.09610989844306939, 0.09129843496680234, 0.3302708189676917, 0.4199330463236065, 0.11927294568859859, 0.4864154015695107, 0.06472081497616611, 0.6387929002666255, 0.37932906694235924, 0.093713747684541, 0.20627971812824875], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (curr)\", \"type\": \"scatter\", \"x\": [2.5, 4.7, 7.0, 2.3, 19.45, 22.0, 13.15, 1.6, 1.7, 2.3, 4.3, 1.2, 6.4, 7.2, 14.3, 18.1, 7.6, 2.7, 4.9, 1.1, 1.4, 17.2, 4.9, 11.8, 1.6, 1.7, 2.1, 14.8, 0.7, 0.8, 11.95, 1.1, 2.5, 2.3, 1.0, 1.7, 2.3, 1.5, 4.9, 1.4, 4.1, 2.0, 11.2, 15.2, 1.4, 1.7, 3.4, 2.2, 19.3, 6.1, 7.0, 18.35, 6.9, 2.4, 2.6, 1.8, 2.0, 4.2, 10.5, 15.4, 4.2, 8.3, 7.7, 2.9, 10.7, 2.0, 1.4, 1.9, 3.0, 1.6, 2.1, 2.5, 1.3, 1.6, 7.7, 1.2, 18.75, 1.7, 1.0, 1.9, 9.3, 1.6, 12.6, 2.0, 1.7, 1.7, 4.8, 13.7, 1.2, 6.1, 7.1, 1.9, 2.0, 14.3, 1.9, 2.1, 11.7, 3.9, 9.7, 8.1, 2.5, 6.5, 18.1, 1.8, 1.5, 2.1, 1.9, 1.4, 5.1, 13.7, 1.6, 14.5, 1.9, 1.3, 1.2, 10.7, 12.3, 4.9, 8.3, 2.1, 14.95, 1.8, 1.7, 1.6, 2.0, 7.0, 1.2, 11.1, 2.0, 5.1, 1.4, 15.6, 14.3, 1.0, 2.0, 11.0, 1.8, 3.0, 10.4, 6.6, 6.7, 1.7, 1.2, 5.1, 2.3, 12.1, 2.0, 1.6, 1.9, 9.5, 0.8, 13.3, 5.5, 7.7, 1.5, 1.4, 12.1, 8.2, 10.0, 12.6, 2.0, 15.6, 1.4, 13.5, 4.4, 7.8, 1.1, 1.6, 5.6, 8.6, 16.05, 10.4, 1.9, 1.8, 1.9, 1.4, 1.0, 11.6, 10.3, 15.8, 1.5, 5.1, 2.7, 1.1, 15.1, 1.4, 8.1, 17.8, 1.3, 7.9, 2.3, 3.75, 7.8, 1.4, 10.8, 2.0, 1.2, 6.4, 14.5, 11.8, 1.8, 13.2, 14.9, 15.4, 1.25, 15.7, 6.9, 2.2, 12.9, 10.2, 7.3, 5.0, 2.1, 1.1, 6.8, 2.7, 11.1, 9.7, 1.4, 1.6, 11.2, 8.0, 9.2, 6.8, 1.6, 10.4, 2.0, 3.9, 1.2, 1.0, 17.9, 1.6, 17.1, 10.7, 1.9, 8.8, 1.0, 1.4, 14.3, 2.0, 7.7, 2.3, 2.0, 9.6, 0.9, 5.9, 1.5, 5.4, 13.7, 6.1, 1.6, 16.0, 10.7, 10.6, 2.5, 16.3, 9.6, 4.6, 8.9, 2.5, 2.4, 1.6, 11.9, 11.9, 2.6, 1.3, 6.0, 1.6, 1.9, 8.9, 1.5, 2.6, 17.85, 6.4, 2.0, 1.8, 15.6, 2.7, 2.4, 11.2, 2.6, 17.75, 1.15, 1.3, 3.8, 1.2, 0.9, 4.5, 1.35, 2.5, 7.7, 7.0, 8.5, 2.7, 5.2, 2.2, 0.9, 7.8, 15.8, 2.3, 1.8, 2.6, 7.0, 11.9, 12.1, 1.0, 3.1, 10.1, 15.4, 8.1, 1.6, 2.0, 1.3, 17.8, 2.0, 13.6, 1.7, 8.1, 1.3, 2.8, 2.55, 1.7, 17.8, 5.6, 3.45, 10.1, 17.9, 1.4, 8.0, 1.3, 2.5, 11.4, 1.2, 1.6, 2.2, 1.3, 0.8, 1.3, 17.1, 5.2, 8.1, 2.4, 2.0, 2.0, 2.1, 1.3, 8.2, 2.5, 17.1, 1.3, 2.7, 2.0], \"xaxis\": \"x2\", \"y\": [0.18579927887031134, 0.9274202256360236, 0.2569067617886446, 0.17851375722123963, 0.43011516789686843, 0.3951880410340851, 0.35333307802371594, 0.854899199395705, 0.7749695319329993, 0.7150752736216004, 0.5793836726576811, 0.17187478758168062, 0.503776006633781, 0.6517104478925241, 0.5321166645488455, 0.4291031613352281, 0.6295132227815239, 0.446367751604861, 0.12978626497489776, 0.578130474122496, 0.1303225049324246, 0.4589423036505589, 0.6028673022099313, 0.6724998803801079, 0.055171077290688375, 0.28900585249094113, 0.5807441942986169, 0.6324527530146118, 0.32780881811994433, 0.4437792729685527, 0.47375733914823626, 0.6755390392614542, 0.8494338455743565, 0.8432302027568838, 0.3962269303969661, 0.36574887203466033, 0.9780529644634413, 0.6757083557066426, 0.43212531492562845, 0.6428319532862445, 0.2244465690609686, 0.6759712108962084, 0.300575337785698, 0.4848467547623382, 0.24353241802821812, 0.6165640897352094, 0.801889943514816, 0.6831580296641933, 0.4684052737322374, 0.07309555507266852, 0.17397747102053363, 0.548208100621717, 0.16948307959681597, 0.5287139706981401, 0.8097217619362252, 0.48186532860504816, 0.7044722268129955, 0.5458559966555334, 0.6067015953642416, 0.5767206748937392, 0.5416109283549078, 0.7766135747357961, 0.6371580804073698, 0.3290646799011723, 0.53941953634433, 0.7444876216695655, 0.27658524567301757, 0.8518717737266248, 0.685064206005921, 0.7994946846943811, 0.6254668451144636, 0.29898447003196504, 0.36566585814722175, 0.8260679099411251, 0.265003746926769, 0.18277705216857454, 0.6401445853260315, 0.2878944788643705, 0.7379395090268356, 0.6578861964269485, 0.3048731186933995, 0.6479177870210828, 0.5479007895539181, 0.8109237991420157, 0.4555798348891207, 0.35159410271621183, 0.6741813074403022, 0.40366163192193316, 0.3797333752177462, 0.42326140605337403, 0.49450075158901585, 0.7027754368270075, 0.31556666432085356, 0.5737052492708005, 0.5594846166878963, 0.9879213229528466, 0.23907110553933086, 0.7604887601700165, 0.906894853259191, 0.49150798334893764, 0.6693239074263375, 0.635181004157038, 0.4291031613352281, 0.6805197940362542, 0.8579270215873258, 0.42231028799440284, 0.7973836574204367, 0.6209099995125147, 0.617932351579841, 0.5867531689564582, 0.8217385626893267, 0.5766058512754557, 0.6085190813519714, 0.6488649586424557, 0.19466062481522506, 0.4062994677131635, 0.31500574198466447, 0.6106996692323751, 0.48314991346809855, 0.4300926711133176, 0.4623912750166579, 0.18141675383529432, 0.7404949196358439, 0.7960551628311661, 0.6696955469146251, 0.7471897031921468, 0.15222801432328747, 0.4782875749995391, 0.6696955469146251, 0.4617114467660769, 0.0374236133971757, 0.34638250956587036, 0.5737052492708005, 0.35412183815676124, 0.5342599897609015, 0.6273126624389191, 0.1819914526651868, 0.6450640502472667, 0.7576359910572065, 0.6363669366758954, 0.35783776888428775, 0.4555798348891207, 0.2603691587203709, 0.09638465351539516, 0.7889843001267657, 0.3995975535535492, 0.2404138117262561, 0.5134503976671381, 0.7620160241108803, 0.4852174766770502, 0.7934067722809752, 0.5657371707019572, 0.40591517497640706, 0.5142806824729376, 0.4667389755277017, 0.4597803030361328, 0.14211531046105408, 0.4709774325404933, 0.39253304933110444, 0.8152160844894966, 0.6418608562675732, 0.5695619245525361, 0.15898796250578873, 0.4189913516486339, 0.8097376625536354, 0.2776505479619531, 0.14100712613869515, 0.1625374057836978, 0.21879614767173305, 0.26016804821119, 0.5884346274074399, 0.25171266030158634, 0.5556828679884147, 0.2886326125606653, 0.5013044750460076, 0.23728971353361283, 0.6280660923097139, 0.6281218947904323, 0.6226708394296439, 0.1280348372312241, 0.37812375401711507, 0.6218606462016874, 0.446367751604861, 0.5237591509200082, 0.22560064672115399, 0.4159575064805634, 0.43989745285902637, 0.38133093816728936, 0.379388299643832, 0.4244201113870294, 0.8495234946343055, 0.44699506619782237, 0.3402560380560977, 0.16997778820688525, 0.6509841470756508, 0.5589353890471914, 0.49320900326902484, 0.41485179365651337, 0.2850172536812061, 0.5150740024049856, 0.7905789411902706, 0.6660097546858721, 0.5916856454756931, 0.25029771644034415, 0.21820707607863943, 0.23625780462752244, 0.6174344585079109, 0.33885175059010386, 0.8097775874289167, 0.5502791542248897, 0.45232673966787307, 0.5168725346003686, 0.4922951659433321, 0.2710495410551712, 0.5620189509382074, 0.19827785442852286, 0.35653263682836045, 0.4940220265254579, 0.3934632807735441, 0.349631294967786, 0.6543252873397565, 0.6043841099981286, 0.6572212454398962, 0.5323595728841377, 0.4667716613599331, 0.5480891857555714, 0.5933716837007499, 0.5769442381274095, 0.7796710482718338, 0.4721284230669528, 0.5632051337005155, 0.25606657060722404, 0.47304849589761655, 0.4991199345133047, 0.785831825438318, 0.5512091114854263, 0.31651464458218903, 0.192246895102814, 0.5737052492708005, 0.14970485751781393, 0.8257882443178004, 0.7450862811651306, 0.2404138117262561, 0.3428275867057816, 0.2186811050870735, 0.43730933466596944, 0.1325711740116582, 0.33994853494016564, 0.5172250338280965, 0.4543852880840521, 0.6017244994332274, 0.7267617626256621, 0.304103470637073, 0.49511795227452726, 0.4577650902534979, 0.4389063253281036, 0.3428275867057816, 0.6911248892501751, 0.5457123873353599, 0.3395528272139201, 0.5662837862370104, 0.38281068028313525, 0.1899488449656659, 0.1899488449656659, 0.39416742153886597, 0.4473524415330049, 0.5724944828663213, 0.12652799787397961, 0.14917046216496987, 0.4192276293132746, 0.1727250451072272, 0.7329347521090118, 0.2979855805324535, 0.5384433083808008, 0.2944152049751758, 0.5661013076544325, 0.39283078357423706, 0.6503174362647687, 0.7632350838020857, 0.29422440231251745, 0.8446099855685041, 0.3812461384129847, 0.1264117171095669, 0.6995051325026098, 0.7680829457938805, 0.1086082602083136, 0.50228427853815, 0.8303888649041977, 0.15145052047802054, 0.5239967242043768, 0.49461569007297057, 0.7323984730128237, 0.6372335578763709, 0.8485373319296128, 0.21018203617182263, 0.3854703692354019, 0.6209619763202376, 0.6996467359659702, 0.3913887983225227, 0.600932061108284, 0.18141675383529432, 0.32841971343371723, 0.17397747102053363, 0.3943097935149382, 0.5998672378660981, 0.6052803835931642, 0.35501406908939237, 0.4362847089434372, 0.6005057903956104, 0.45095984485898877, 0.5601124581139871, 0.6908342266509375, 0.29066967723125237, 0.5437491575180791, 0.5955595524057149, 0.4226516353037165, 0.552222307965348, 0.5038457784615318, 0.6752568781943777, 0.7880730680059006, 0.09430965090665133, 0.4986183600001317, 0.24112389044610405, 0.3635071851353404, 0.7047195247497422, 0.5251048099479148, 0.5632051337005155, 0.4520037684813636, 0.5271857161160298, 0.36566585814722175, 0.8775119234978208, 0.49474741138534273, 0.17187478758168062, 0.1069918390347242, 0.6371627391106971, 0.19018032574493748, 0.34352259564225396, 0.806114950115292, 0.47304849589761655, 0.5014153035286022, 0.6721952796384192, 0.7507248720260316, 0.38512814216859315, 0.8930847268109882, 0.863224561659591, 0.15108072818859253, 0.7399796913917198, 0.18579927887031134, 0.47304849589761655, 0.2033384066370545, 0.43667652058029827, 0.23252054766636898], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [3.5, 14.3, 1.2, 2.2, 2.3, 1.2, 1.2, 8.0, 2.1, 1.6, 2.7, 1.3, 1.2, 9.65, 4.3, 1.2, 1.4, 2.8, 2.1, 3.2, 14.2, 14.5, 0.9, 1.1, 7.2, 1.2, 9.1, 3.95, 3.6, 4.7, 1.8, 6.2, 15.0, 6.4, 1.5, 1.2, 2.6, 7.9, 3.95, 1.9, 7.5, 2.5, 14.0, 13.0, 2.0, 2.3, 16.85, 1.9, 10.3, 1.7, 2.0, 3.9, 9.3, 1.0, 7.0, 14.1, 8.2, 1.8, 11.4, 1.7, 2.3, 20.3, 5.5, 9.7, 7.1, 2.1, 8.1, 6.7, 1.8, 1.3, 14.4, 2.4, 11.0, 7.4, 13.2, 12.3, 19.95, 1.7, 1.7, 1.9, 1.5, 1.0, 2.4, 2.1, 9.7, 3.1, 1.5, 14.5, 6.6, 1.6, 12.7, 7.4, 3.6, 1.4, 1.6, 6.5, 1.4, 4.6, 1.8, 2.1, 7.1, 9.9, 2.0, 2.1, 14.4, 10.9, 2.0, 9.0, 2.5, 2.8, 13.0, 31.6, 8.2, 1.7, 5.0, 2.2, 2.7, 1.4, 12.2, 3.2, 11.8, 1.5, 2.8, 1.4, 2.1, 2.1, 1.9, 4.7, 2.6, 1.8, 5.1, 1.8, 1.7, 17.5, 1.4, 17.1, 1.6, 2.5, 5.2, 1.6, 4.4, 3.2, 2.8, 8.5, 13.1, 1.2, 13.8, 5.6, 6.2, 1.1, 10.3, 1.0, 11.7, 16.2, 1.6, 2.8, 1.5, 2.0, 1.3, 14.2, 1.6, 2.0, 6.1, 8.2, 2.5, 1.2, 4.6, 2.2, 2.4, 1.1, 1.4, 1.1, 15.2, 4.7, 7.5, 4.2, 1.6, 7.8, 3.5, 2.4, 5.2, 10.8, 1.3, 3.4, 9.0, 1.8, 2.1, 4.8, 20.7, 2.2, 7.4, 17.3, 2.2, 2.3, 4.7, 4.9, 3.7, 1.6, 13.8, 8.2, 5.7, 1.7, 4.4, 5.9, 8.7, 2.1, 4.3, 6.55, 1.6, 12.9, 5.4, 2.2, 1.7, 2.9, 2.2, 7.6, 1.3, 3.3, 6.3, 1.8, 5.3, 7.3, 2.4, 7.1, 13.7, 10.2, 3.0, 5.3, 2.4, 1.5, 4.1, 6.9, 8.0, 7.1, 2.1, 11.8, 3.3, 1.4, 9.1, 1.2, 5.5, 7.9, 11.1, 1.8, 1.9, 2.3, 13.9, 14.5, 1.2, 2.7, 1.6, 12.0, 14.1, 2.7, 12.85, 14.8, 1.6, 1.1, 2.1, 2.7, 2.1, 7.2, 1.2, 5.4, 4.6, 2.0, 2.6, 12.6, 7.4, 10.2, 8.6, 4.2, 2.5, 2.6, 8.8, 1.8, 1.3, 7.2, 1.1, 2.2, 1.8, 1.7, 6.2, 10.8, 7.75, 2.7, 6.6, 1.0, 7.1, 1.5, 3.0, 2.4, 13.3, 2.1, 2.8, 7.75, 15.8, 5.0, 20.8, 6.4, 2.4, 1.4, 4.1, 6.0, 13.2, 2.1, 1.5, 5.4, 1.8, 2.6, 16.8, 5.0, 4.4, 13.0, 1.1, 1.2, 11.6, 1.3, 3.5, 2.9, 5.7, 15.5, 4.8, 15.55, 5.1, 2.7, 3.8, 1.8, 14.2, 5.3, 1.9, 12.5, 2.6, 10.4, 1.2, 4.1, 14.2, 12.5, 8.3, 2.0, 3.8, 10.7, 8.2, 2.1, 1.9, 9.8, 6.5, 0.9, 2.7, 2.6, 13.0, 1.4, 13.4, 16.2, 10.2, 4.9, 2.0, 7.0, 12.7, 2.4, 6.2, 8.6, 2.6, 15.55, 1.4, 7.3, 16.0, 7.0, 16.8, 3.2, 1.2, 6.2, 1.2, 1.0, 4.6, 5.5, 1.1, 10.8, 2.2, 10.2, 11.75, 6.0, 7.4, 7.4, 1.9, 2.1, 1.6, 1.2, 2.4, 5.1, 7.4, 19.95, 3.8, 16.1, 5.4, 2.6, 18.95, 2.3, 2.0, 1.5, 2.1, 4.4, 1.8, 17.5, 2.3, 12.8, 13.3, 1.4, 14.7, 4.7, 1.4, 2.5, 1.1, 1.5, 10.3, 3.0, 6.8, 2.4, 7.1, 7.0, 1.2, 1.8, 2.65, 2.4, 2.1, 2.8, 7.4, 11.5, 1.6, 1.3, 2.6, 1.2, 1.7, 1.4, 1.9, 1.9, 4.3, 13.2, 1.9, 12.8, 12.8, 1.7, 8.6, 5.7, 3.2, 2.0, 1.6, 2.4, 2.0, 2.5, 14.7, 1.8, 1.4, 1.5, 17.55, 1.8, 13.55, 1.0, 12.0, 3.6, 3.85, 4.0, 1.2, 15.4, 6.5, 1.4, 9.1, 1.1, 3.0, 2.5, 6.6, 8.1, 2.4, 15.5, 1.7, 11.3, 5.7, 1.4, 1.4, 2.0, 6.3, 4.7, 2.5, 1.8, 7.4, 9.3, 10.55, 2.9, 1.7, 2.2, 1.5, 14.75, 2.4, 2.4, 3.5, 1.8, 1.5, 2.8, 1.2, 2.0, 1.3, 10.5, 12.8, 1.2, 1.9, 16.0, 7.7, 2.3, 2.9, 1.6, 2.1, 1.1, 1.6, 3.7, 8.0, 1.9, 8.8, 6.7, 7.3, 2.5, 3.7, 2.6, 1.3, 8.3, 1.3, 11.2, 5.2, 4.7, 9.2, 12.7, 2.5, 7.4, 13.2, 1.8, 2.1, 5.25, 3.65, 15.75, 1.9, 13.65, 4.9, 9.15, 1.9, 2.5, 0.9, 14.0, 2.6, 2.8, 1.8, 12.8, 17.5, 8.25, 1.9, 1.6, 1.5, 6.9, 2.4, 1.3, 1.2, 6.7, 14.8, 12.7, 13.7, 2.0, 1.3, 1.6, 9.25, 12.9, 1.0, 4.7, 1.7, 10.8, 1.1, 19.95, 1.1, 1.2, 9.7, 6.7, 1.6, 2.3, 5.3, 13.6, 11.4, 1.6, 1.4, 2.6, 2.4, 10.6, 4.6, 2.2, 1.7, 2.0, 1.5, 5.0, 2.0, 2.6, 4.6, 12.7, 5.7, 6.3, 6.7, 8.2, 7.1, 2.0, 0.8, 2.0, 1.9, 1.3, 1.7, 1.1, 1.1, 9.85, 1.2, 1.1, 2.1, 9.5, 1.7, 8.0, 13.65, 7.9, 4.4, 9.55, 1.1, 7.9, 1.8, 2.2, 1.1, 5.9, 2.4, 6.0, 2.0, 2.9, 1.4, 2.1, 5.2, 5.8, 1.8, 2.0, 2.3, 15.1, 2.3, 16.8, 13.8, 1.5, 12.2, 8.2, 4.3, 8.9], \"xaxis\": \"x2\", \"y\": [0.6660328535674787, 0.4955559099445003, 0.11251030999551548, 0.5313240922219649, 0.7616845263358343, 0.42881839881496897, 0.22146723198036844, 0.2709448900825402, 0.04188686298684474, 0.3198999677935893, 0.586632325439729, 0.3332859260788763, 0.0891770245136605, 0.07249138429342028, 0.0813041402249215, 0.2808128557304226, 0.18155424903412543, 0.14020593233116785, 0.20529540916933675, 0.1755850319354616, 0.5722846846512241, 0.4684623303117058, 0.2863708053899042, 0.4489302200945696, 0.3606737334686688, 0.09834172337505831, 0.1439119889738254, 0.10526388551166177, 0.08976738859769384, 0.15927641460572795, 0.07353544332944184, 0.4894096639868448, 0.24735122968283396, 0.41440459167745447, 0.10107859516115147, 0.4809249647595707, 0.043928674649753696, 0.27268427565697984, 0.07203278686513981, 0.35989685204578803, 0.08410225657903847, 0.09640449279894714, 0.2859044620344169, 0.766491644508495, 0.27194216744256416, 0.11891721880979944, 0.6033870782914414, 0.8445823904457724, 0.4148378249676725, 0.09538880480821377, 0.5822786697287807, 0.2006236885231063, 0.30215903380660414, 0.3526626332448971, 0.22921561702294402, 0.3499358724503807, 0.451050436906263, 0.01968005574460141, 0.3849224947932618, 0.608666907839271, 0.30333177217190177, 0.05732515971384944, 0.08299070223644744, 0.155374347961305, 0.4378217303747408, 0.10641916767178827, 0.3207785913922725, 0.3280003244598044, 0.4747408725557203, 0.27229542413121455, 0.5314247042003052, 0.13834506443323813, 0.652508483608137, 0.1775869136191267, 0.4659209431511335, 0.3288332341233703, 0.47224603889779837, 0.2773569186284155, 0.18590272545123854, 0.6719763059805124, 0.04569198037744582, 0.22473444069733528, 0.0776074933333939, 0.1411968215808168, 0.3654892991508686, 0.06069899520469324, 0.21029328672965164, 0.13919371635861133, 0.16321149678759816, 0.6144435769482088, 0.1388055550317996, 0.0827658987104557, 0.0793107693477757, 0.04994940743047871, 0.46220165202879504, 0.08265172102971341, 0.5554564865761329, 0.10902951494304747, 0.26480674198345266, 0.31816712550642645, 0.20184400370343658, 0.23734670470511587, 0.19264674509953905, 0.03558879485690103, 0.5314247042003052, 0.3013473679880785, 0.8043030592862955, 0.07665185966197174, 0.17816243980233548, 0.14637302723887635, 0.43623195291339645, 0.5773286546676725, 0.06996409198491005, 0.0635191394270278, 0.11839391684253864, 0.03368970372860669, 0.16544292122901683, 0.5002106013252752, 0.20783967621931676, 0.4413184352618238, 0.1377753535318076, 0.017128038770129694, 0.09070427960766203, 0.05237321155563324, 0.46044782253877736, 0.09863911308639095, 0.6058955548956951, 0.07377868677997379, 0.33726125667837825, 0.03705661785513226, 0.03856885477325478, 0.01970319875133708, 0.06623921298607705, 0.655672818127978, 0.36403826442427, 0.375635621083512, 0.25822104517587474, 0.26990817233175546, 0.30316845466795117, 0.21597661143113533, 0.10411587283779344, 0.4582573305440075, 0.28974208538397184, 0.3995654588450376, 0.48407929824265805, 0.2412117545349558, 0.49704114689177337, 0.3112403223054312, 0.13571503940671914, 0.35304273602320047, 0.18963603484652192, 0.06023564559469896, 0.305863422303413, 0.34062746964654456, 0.03532029949184434, 0.20200996882548472, 0.207876095289533, 0.11304202998506685, 0.26487496820305634, 0.46674395287949066, 0.05931266843465788, 0.6063731497207538, 0.053339747820140615, 0.16056749669580483, 0.3366557342021428, 0.18735912995827353, 0.2667542380283816, 0.9197592959547904, 0.13322255285490225, 0.3533185668595151, 0.08763312389948397, 0.343329095265401, 0.1298321532292276, 0.11240742021865013, 0.03412749239977686, 0.23316671381479437, 0.13955591125269062, 0.065615492475942, 0.03940539431326806, 0.04874684240881699, 0.42507109047861347, 0.3720756994829524, 0.20627971812824875, 0.23346983492740092, 0.299872058778726, 0.14688925552714138, 0.20529540916933675, 0.11294333341234963, 0.4523771212155355, 0.15895981664313275, 0.12633289347617382, 0.34801013400503944, 0.063056887931354, 0.09222807982804315, 0.19281104432210028, 0.11843845992675284, 0.1064686731970873, 0.12171087020281346, 0.49704114689177337, 0.4202798549667376, 0.058322454167927695, 0.40418598015134155, 0.7514842711311043, 0.067978575311199, 0.1468497162592186, 0.3655805321171328, 0.36741292271676196, 0.08785516413846428, 0.4223454464089015, 0.09472348251934337, 0.14196098925812006, 0.10013555988874479, 0.32154631204965056, 0.05416575683382341, 0.786126361492164, 0.04696516601190348, 0.26926088858349784, 0.28123172687107445, 0.3094364396730669, 0.04307250962973752, 0.07126159086244754, 0.6143015945908075, 0.495586079448059, 0.46102608015166635, 0.40789311683600216, 0.8929715185951024, 0.1227006502272181, 0.3638055988942468, 0.10470002869891348, 0.29304213908849364, 0.8936703981375603, 0.3534407380188983, 0.0883666731866185, 0.07895584641700149, 0.05166417783587085, 0.4199775765299997, 0.10304865631077798, 0.1041340676595982, 0.11031385635331636, 0.22368578646300386, 0.22137255536682798, 0.0725394352715707, 0.08320759746190642, 0.3577905591727162, 0.36362749207413336, 0.13058702032609693, 0.4306817897420764, 0.4684623303117058, 0.3185463047756948, 0.6991046594229053, 0.33105510290791684, 0.35804773811787727, 0.3499358724503807, 0.17780319308126435, 0.07142366539796174, 0.1504846162366139, 0.28643330026545544, 0.11492102279820171, 0.08716328114311156, 0.12905574960179156, 0.5528531989583015, 0.2852168598030531, 0.3185463047756948, 0.41766807389819915, 0.22818770291371737, 0.10749415552266317, 0.07500089027222667, 0.2150933620687273, 0.4879833184669665, 0.21367083697314282, 0.18281788227943807, 0.11217648511765432, 0.01860460444149037, 0.4990100838788346, 0.3212979959143686, 0.7252893191599291, 0.30018855716775616, 0.2808216200321265, 0.24332849241566534, 0.22583693263898685, 0.307128141019565, 0.12930297020615966, 0.07734813107736227, 0.38078614076753503, 0.037937415915298756, 0.18389331462546077, 0.2015421194948802, 0.10121634311933059, 0.7209948827487924, 0.252131738577411, 0.19866278493931944, 0.5569604587758099, 0.19172534874952063, 0.07516041810443141, 0.18673310211333727, 0.20736440356309183, 0.27568985010185776, 0.1748501221961516, 0.134246332983591, 0.12151400729184814, 0.03860330573341564, 0.16198960071610413, 0.062309112953929935, 0.14943540958877521, 0.46827469198568006, 0.12435295831370408, 0.11768791031746062, 0.10794707492381372, 0.04347111427796346, 0.07423675680829, 0.1602542791395647, 0.19911642350143877, 0.2379444352717226, 0.36664322039668684, 0.10130143557253446, 0.17108028607870185, 0.6143194513817134, 0.5641235853966853, 0.29864316680665437, 0.44752301946823647, 0.13459844499503626, 0.037461465199631894, 0.5002964248569376, 0.4059565893810353, 0.7035957096210382, 0.0629603198376949, 0.25036415064992923, 0.14780834332950044, 0.24800647860056513, 0.10438723399855232, 0.24366911510822187, 0.4574644219698093, 0.8347014835967527, 0.42226245660703365, 0.4073158502222598, 0.47525484003715535, 0.37845934883934684, 0.35325777167774697, 0.4763432908647238, 0.18941100564626978, 0.23853527246002126, 0.27277355193056574, 0.5556171757583562, 0.19481513110659687, 0.7460207524242459, 0.12627308236197843, 0.2115813466591615, 0.4773837842994688, 0.22238536240250728, 0.1978655273089749, 0.32057959349203036, 0.1601330373243487, 0.6256605001243821, 0.34062746964654456, 0.5899158924001677, 0.1273375405407705, 0.6866376712310945, 0.3812864953771038, 0.07918534602430627, 0.10510921928053807, 0.052405178286905496, 0.29010285216427345, 0.5802968836962079, 0.4475494904811408, 0.33107045093633036, 0.6046547135519548, 0.33132995382553565, 0.3391582818855403, 0.37109937806185267, 0.18876467901964422, 0.03244681540368277, 0.6531311156123596, 0.18281848038190407, 0.06840545126676123, 0.23876166598551407, 0.5602062902528231, 0.05478334190217349, 0.18965009362393503, 0.502081053312289, 0.0945975060483667, 0.24937367783354814, 0.14040338921272166, 0.09582424632391484, 0.4879833184669665, 0.07536550594022651, 0.37763546052463404, 0.20240400638142053, 0.06234715971662652, 0.1729504208160284, 0.2536573606029918, 0.1491704939138675, 0.47224603889779837, 0.20734784509414073, 0.1656619584420439, 0.20263687678412212, 0.4576701693643329, 0.3746187330143109, 0.06578487521364562, 0.09359041291034786, 0.15714155813810793, 0.43198081216185935, 0.17693664965610134, 0.14200602748771296, 0.16878839641400256, 0.11131318694256087, 0.43040972974554736, 0.12494266711040569, 0.5286591337585229, 0.3917329141436472, 0.14284790216410748, 0.29931895876037384, 0.3998656181534954, 0.13198036366642862, 0.2166851793268345, 0.164669749255824, 0.3116999397838065, 0.5702002297218003, 0.2867818412254799, 0.05809024612643199, 0.0701620515557333, 0.10493669218879953, 0.03474255021640338, 0.14069518845012563, 0.7697788668098057, 0.44513161239284327, 0.12104291767226882, 0.2823656727566666, 0.28640273091276736, 0.09904459769556595, 0.10889384421684001, 0.1978655273089749, 0.6326587477498924, 0.0766186874204361, 0.07300117689776386, 0.3978521493117628, 0.7293533971641823, 0.24040337450518035, 0.46827469198568006, 0.03737110954461231, 0.48112847828662497, 0.5755848065786346, 0.12151472907643468, 0.332302417201758, 0.3208349144509022, 0.13406270144296106, 0.47820199098358873, 0.024219732643774528, 0.7923035912680444, 0.3099424932714111, 0.8494816644677875, 0.15230116664989468, 0.8795672599938588, 0.34536882843285344, 0.587897812361327, 0.3660303223369904, 0.3074082248441362, 0.1925553058603695, 0.1582957933341015, 0.5297945963993664, 0.1892543681582496, 0.06574637766643598, 0.03286461121245521, 0.6223124217546917, 0.48666930315350876, 0.17200815643270417, 0.27042696199957883, 0.16010429726024444, 0.25291734909108765, 0.22778758435893687, 0.6055190518965303, 0.41989528411161425, 0.2865861541738164, 0.17344095530188786, 0.4163761941495938, 0.24610426408478792, 0.029106329843254564, 0.5849270471051293, 0.09607886499379148, 0.4890296174547498, 0.11193395874659995, 0.3667485749721523, 0.29672938182784603, 0.13696827462710404, 0.03986507081677082, 0.41542023534722683, 0.1642424989032959, 0.041559354155004224, 0.1266666793707928, 0.5259198205822933, 0.42123490919744344, 0.6147437654518444, 0.42849246998341506, 0.04874684240881699, 0.16870816563337898, 0.35179373534084035, 0.4552463954734379, 0.1543174595222413, 0.4641274821418986, 0.1106599594415556, 0.40441066041397966, 0.05916303638108533, 0.24194101851814365, 0.5755848065786346, 0.23631147082452741, 0.04679471849088612, 0.33132995382553565, 0.6031606095022326, 0.16900214819844117, 0.9322526967181247, 0.1065938389205352, 0.0540586741766943, 0.14920224829950646, 0.03054451782098533, 0.13595064656866984, 0.15908339514281045, 0.09402391562754642, 0.27219479721363327, 0.10477531970828624, 0.6046547135519548, 0.04412971358840656, 0.0821245873848182, 0.24953715645213048, 0.24311299470472425, 0.679537413518331, 0.02875041056121841, 0.2874129658970298, 0.17131102264191878, 0.07042427222914205, 0.1577516063520068, 0.39934634677258996, 0.42249259173992826, 0.24940231538328683, 0.46827469198568006, 0.040988937643475554, 0.034828704291737345, 0.26663563965858417, 0.22421743312747255, 0.10716094829621758, 0.7421831263598226, 0.4644511163280224, 0.1591307416719686, 0.21502194578256428, 0.12883185373794437, 0.15520095945599266, 0.04280666734842442, 0.06928764484923078, 0.3578757504587543, 0.0760792945579073, 0.06637805380770656, 0.5755848065786346, 0.4326356954473739, 0.16985579355455038, 0.47152805642545803, 0.11644579282256762, 0.11790522998710073, 0.5438286352264949, 0.41561805514360906, 0.050606352251634235, 0.21836830194439782, 0.22298545275517268, 0.1504846162366139, 0.16819644397314482, 0.47796113776613436, 0.14100197907825862, 0.7878397890034206, 0.12176963827920351, 0.09814942480303201, 0.23162396036129984, 0.04400104962869911, 0.061588508633294015, 0.2774601068082493, 0.40816383821078206, 0.14036214651023216, 0.11837607594274324, 0.0703155477214753, 0.17002415827487982, 0.24611532014486182, 0.06874641727313702, 0.30975746960573625, 0.07004288447243323, 0.6453829176356538, 0.3880412370469972, 0.10205495289732236, 0.12171087020281346, 0.38550692709735157, 0.4398162761337091, 0.5769741243450848, 0.48842976274850136, 0.3866799681687785, 0.17129518728202664, 0.5711206597512044, 0.4456070955069118, 0.4585850027539752, 0.25462747480751524, 0.34771016550763867, 0.35548618548401445, 0.07878090041588082, 0.3008706318705062, 0.08117751180329491, 0.055511805197920094, 0.1600174453683395, 0.35597309965685686, 0.5473978930443646, 0.3321771897262046, 0.14643302530661162, 0.7653011157176768, 0.24188431843396252, 0.16704799028757666, 0.41136103198090634, 0.5749869949413896, 0.709238838470871, 0.09340318303147321, 0.602429869503323, 0.04154705947390969, 0.7519582179986716, 0.15993940416551844, 0.04372375151311325, 0.4076899811241429, 0.4644511163280224, 0.3133137248525114, 0.24628490675063597, 0.06972977174174444, 0.15949948541388637, 0.2241543425141257, 0.1729876202034616, 0.07290025122558275, 0.1220000714032804, 0.36493953208423235, 0.09420126302076737, 0.026726938234992392, 0.7199273032686843, 0.4606762448039463, 0.04906818437448113, 0.19446415942665518, 0.14876853598344464, 0.3247816953453747, 0.023320858692869595, 0.7310618090422621, 0.48944479260603346, 0.20357574295749958, 0.0840537250624015, 0.5368744051465595, 0.21101467800102214, 0.46682279298460017, 0.3749869638443927, 0.46592999202179275, 0.10188412989688433, 0.15751976448865512], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"residual.sugar\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"residual.sugar\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}, \"All_chlorides\": {\"data\": [{\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Reference<br>chlorides=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [0.037, 0.054, 0.051, 0.039, 0.046, 0.086, 0.033, 0.032, 0.032, 0.071, 0.037, 0.069, 0.044, 0.049, 0.053, 0.061, 0.036, 0.1, 0.033, 0.035, 0.038, 0.034, 0.051, 0.034, 0.039, 0.048, 0.029, 0.033, 0.05, 0.029, 0.063, 0.062, 0.032, 0.045, 0.029, 0.05, 0.038, 0.03, 0.032, 0.02, 0.033, 0.05, 0.046, 0.035, 0.043, 0.058, 0.08, 0.029, 0.074, 0.033, 0.058, 0.044, 0.039, 0.042, 0.037, 0.076, 0.03, 0.02, 0.04, 0.034, 0.064, 0.035, 0.044, 0.042, 0.088, 0.085, 0.012, 0.047, 0.069, 0.02, 0.039, 0.032, 0.047, 0.05, 0.061, 0.05, 0.078, 0.034, 0.073, 0.038, 0.047, 0.032, 0.033, 0.035, 0.034, 0.035, 0.044, 0.086, 0.04, 0.084, 0.037, 0.035, 0.04, 0.044, 0.046, 0.031, 0.035, 0.035, 0.04, 0.046, 0.042, 0.05, 0.091, 0.05, 0.037, 0.048, 0.053, 0.048, 0.036, 0.064, 0.05, 0.053, 0.024, 0.054, 0.043, 0.021, 0.042, 0.052, 0.04, 0.074, 0.062, 0.052, 0.043, 0.053, 0.078, 0.084, 0.074, 0.045, 0.031, 0.084, 0.034, 0.036, 0.042, 0.08, 0.062, 0.035, 0.092, 0.062, 0.038, 0.092, 0.049, 0.041, 0.046, 0.04, 0.084, 0.044, 0.036, 0.031, 0.077, 0.051, 0.051, 0.073, 0.036, 0.046, 0.051, 0.038, 0.043, 0.042, 0.027, 0.039, 0.036, 0.083, 0.044, 0.077, 0.033, 0.043, 0.041, 0.035, 0.036, 0.036, 0.071, 0.082, 0.039, 0.033, 0.087, 0.044, 0.076, 0.05, 0.037, 0.08, 0.046, 0.044, 0.054, 0.031, 0.045, 0.047, 0.037, 0.068, 0.04, 0.044, 0.026, 0.087, 0.032, 0.036, 0.082, 0.028, 0.06, 0.048, 0.019, 0.026, 0.056, 0.034, 0.041, 0.072, 0.043, 0.057, 0.062, 0.042, 0.057, 0.053, 0.057, 0.024, 0.04, 0.035, 0.031, 0.045, 0.029, 0.038, 0.029, 0.095, 0.039, 0.042, 0.044, 0.032, 0.074, 0.025, 0.067, 0.047, 0.047, 0.046, 0.041, 0.049, 0.072, 0.042, 0.051, 0.037, 0.034, 0.046, 0.028, 0.036, 0.024, 0.058, 0.154, 0.048, 0.114, 0.047, 0.043, 0.064, 0.039, 0.029, 0.044, 0.053, 0.171, 0.075, 0.081, 0.047, 0.046, 0.184, 0.038, 0.062, 0.05, 0.063, 0.041, 0.047, 0.036, 0.032, 0.028, 0.08, 0.063, 0.038, 0.042, 0.045, 0.041, 0.039, 0.021, 0.06, 0.039, 0.068, 0.087, 0.194, 0.042, 0.037, 0.028, 0.026, 0.024, 0.084, 0.051, 0.054, 0.114, 0.048, 0.038, 0.029, 0.093, 0.037, 0.048, 0.056, 0.074, 0.041, 0.046, 0.04, 0.069, 0.044, 0.039, 0.049, 0.033, 0.074, 0.034, 0.104, 0.038, 0.145, 0.073, 0.05, 0.056, 0.038, 0.043, 0.082, 0.049, 0.033, 0.042, 0.029, 0.014, 0.144, 0.035, 0.03, 0.034, 0.066, 0.042, 0.1, 0.055, 0.058, 0.026, 0.045, 0.071, 0.056, 0.035, 0.043, 0.03, 0.068, 0.039, 0.047, 0.051, 0.022, 0.035, 0.041, 0.058, 0.04, 0.048, 0.065, 0.02, 0.05, 0.046, 0.048, 0.039, 0.033, 0.047, 0.037, 0.081, 0.037, 0.104, 0.03, 0.053, 0.049, 0.067, 0.066, 0.08, 0.048, 0.048, 0.041, 0.079, 0.046, 0.043, 0.043, 0.041, 0.042, 0.032, 0.027, 0.033, 0.095, 0.057, 0.08, 0.071, 0.024, 0.096, 0.052, 0.045, 0.031, 0.214, 0.048, 0.041, 0.026, 0.032, 0.047, 0.034, 0.035, 0.045, 0.067, 0.052, 0.031, 0.032, 0.066, 0.068, 0.079, 0.044, 0.043, 0.028, 0.041, 0.031, 0.033, 0.063, 0.045, 0.039, 0.041, 0.052, 0.034, 0.046, 0.045, 0.034, 0.04, 0.054, 0.06, 0.05, 0.029, 0.047, 0.051, 0.055, 0.031, 0.057, 0.064, 0.036, 0.042, 0.033, 0.027, 0.03, 0.026, 0.052, 0.024, 0.075, 0.103, 0.035, 0.094, 0.038, 0.047, 0.028, 0.029, 0.042, 0.052, 0.045, 0.06, 0.066, 0.037, 0.035, 0.036, 0.026, 0.036, 0.045, 0.066, 0.036, 0.079, 0.047, 0.035, 0.066, 0.078, 0.07, 0.045, 0.034, 0.072, 0.036, 0.026, 0.05, 0.052, 0.079, 0.058, 0.051, 0.044, 0.026, 0.038, 0.036, 0.048, 0.056, 0.045, 0.095, 0.054, 0.047, 0.039, 0.061, 0.036, 0.031, 0.051, 0.029, 0.063, 0.048, 0.076, 0.058, 0.039, 0.059, 0.041, 0.057, 0.043, 0.044, 0.042, 0.049, 0.036, 0.031, 0.058, 0.027, 0.048, 0.027, 0.034, 0.027, 0.055, 0.039, 0.025, 0.053, 0.042, 0.034, 0.024, 0.033, 0.048, 0.028, 0.034, 0.054, 0.033, 0.028, 0.036, 0.097, 0.019, 0.039, 0.054, 0.045, 0.036, 0.087, 0.098, 0.044, 0.043, 0.037, 0.087, 0.047, 0.041, 0.054, 0.039, 0.048, 0.041, 0.04, 0.051, 0.029, 0.033, 0.104, 0.053, 0.042, 0.051, 0.022, 0.031, 0.044, 0.049, 0.034, 0.078, 0.045, 0.089, 0.056, 0.036, 0.18, 0.035, 0.031, 0.048, 0.044, 0.037, 0.038, 0.043, 0.034, 0.045, 0.039, 0.047, 0.028, 0.019, 0.039, 0.022, 0.05, 0.025, 0.072, 0.046, 0.032, 0.03, 0.034, 0.064, 0.045, 0.076, 0.036, 0.041, 0.041, 0.032, 0.11, 0.031, 0.047, 0.041, 0.039, 0.036, 0.038, 0.065, 0.037, 0.054, 0.055, 0.046, 0.047, 0.041, 0.08, 0.046, 0.037, 0.064, 0.031, 0.057, 0.041, 0.092, 0.04, 0.084, 0.039, 0.06, 0.04, 0.047, 0.062, 0.148, 0.045, 0.035, 0.062, 0.119, 0.031, 0.051, 0.04, 0.028, 0.046, 0.031, 0.119, 0.044, 0.045, 0.053, 0.031, 0.033, 0.063, 0.046, 0.043, 0.083, 0.023, 0.107, 0.039, 0.038, 0.036], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Current<br>chlorides=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [0.068, 0.058, 0.045, 0.044, 0.076, 0.041, 0.037, 0.036, 0.033, 0.036, 0.102, 0.039, 0.033, 0.026, 0.03, 0.04, 0.07, 0.032, 0.078, 0.028, 0.056, 0.045, 0.05, 0.04, 0.04, 0.031, 0.044, 0.038, 0.035, 0.029, 0.032, 0.059, 0.053, 0.034, 0.034, 0.122, 0.035, 0.05, 0.047, 0.096, 0.036, 0.026, 0.034, 0.043, 0.08, 0.065, 0.054, 0.079, 0.039, 0.036, 0.073, 0.034, 0.031, 0.042, 0.039, 0.053, 0.044, 0.05, 0.039, 0.414, 0.054, 0.037, 0.029, 0.036, 0.036, 0.042, 0.061, 0.037, 0.05, 0.055, 0.067, 0.012, 0.04, 0.038, 0.046, 0.048, 0.074, 0.041, 0.059, 0.171, 0.042, 0.037, 0.065, 0.03, 0.035, 0.194, 0.08, 0.048, 0.036, 0.049, 0.046, 0.039, 0.037, 0.035, 0.047, 0.037, 0.091, 0.035, 0.071, 0.071, 0.027, 0.047, 0.072, 0.034, 0.067, 0.051, 0.072, 0.023, 0.038, 0.025, 0.033, 0.053, 0.026, 0.024, 0.055, 0.23, 0.043, 0.057, 0.04, 0.083, 0.03, 0.03, 0.067, 0.029, 0.073, 0.074, 0.088, 0.029, 0.073, 0.04, 0.019, 0.075, 0.043, 0.045, 0.05, 0.049, 0.062, 0.094, 0.06, 0.034, 0.046, 0.071, 0.095, 0.036, 0.046, 0.036, 0.048, 0.087, 0.032, 0.043, 0.039, 0.031, 0.051, 0.043, 0.029, 0.038, 0.058, 0.062, 0.047, 0.058, 0.032, 0.078, 0.032, 0.034, 0.08, 0.034, 0.032, 0.084, 0.065, 0.137, 0.022, 0.04, 0.046, 0.055, 0.027, 0.04, 0.048, 0.031, 0.035, 0.078, 0.037, 0.042, 0.036, 0.093, 0.039, 0.077, 0.078, 0.042, 0.045, 0.081, 0.015, 0.051, 0.028, 0.045, 0.037, 0.035, 0.041, 0.027, 0.048, 0.042, 0.038, 0.038, 0.047, 0.017, 0.036, 0.038, 0.036, 0.074, 0.046, 0.044, 0.046, 0.037, 0.077, 0.029, 0.071, 0.025, 0.046, 0.041, 0.022, 0.047, 0.04, 0.044, 0.086, 0.045, 0.049, 0.071, 0.031, 0.054, 0.072, 0.04, 0.074, 0.05, 0.028, 0.028, 0.072, 0.055, 0.034, 0.047, 0.036, 0.055, 0.043, 0.031, 0.032, 0.057, 0.077, 0.068, 0.057, 0.045, 0.06, 0.077, 0.053, 0.056, 0.053, 0.038, 0.042, 0.053, 0.035, 0.031, 0.033, 0.049, 0.078, 0.04, 0.06, 0.042, 0.08, 0.031, 0.044, 0.032, 0.044, 0.055, 0.044, 0.04, 0.037, 0.087, 0.043, 0.078, 0.032, 0.047, 0.035, 0.062, 0.413, 0.034, 0.028, 0.033, 0.032, 0.077, 0.021, 0.031, 0.044, 0.056, 0.078, 0.214, 0.05, 0.062, 0.034, 0.031, 0.052, 0.04, 0.031, 0.034, 0.029, 0.043, 0.041, 0.034, 0.067, 0.074, 0.033, 0.054, 0.034, 0.043, 0.04, 0.027, 0.071, 0.053, 0.035, 0.045, 0.032, 0.035, 0.044, 0.057, 0.033, 0.036, 0.06, 0.058, 0.11, 0.032, 0.044, 0.132, 0.038, 0.038, 0.08, 0.035, 0.093, 0.043, 0.176, 0.054, 0.041, 0.046, 0.255, 0.085, 0.021, 0.036, 0.055, 0.079, 0.076, 0.039, 0.028, 0.051, 0.088, 0.033, 0.033, 0.047, 0.044, 0.043, 0.049, 0.031, 0.083, 0.04, 0.043, 0.07, 0.025, 0.034, 0.084, 0.037, 0.076, 0.046, 0.044, 0.063, 0.037, 0.049, 0.024, 0.046, 0.039, 0.041, 0.118, 0.117, 0.036, 0.028, 0.064, 0.038, 0.03, 0.022, 0.045, 0.044, 0.036, 0.054, 0.05, 0.026, 0.043, 0.036, 0.032, 0.074, 0.027, 0.053, 0.048, 0.077, 0.038, 0.065, 0.029, 0.027, 0.036, 0.027, 0.022, 0.042, 0.042, 0.056, 0.039, 0.027, 0.051, 0.035, 0.076, 0.048, 0.033, 0.152, 0.057, 0.092, 0.036, 0.085, 0.027, 0.023, 0.04, 0.041, 0.085, 0.243, 0.084, 0.039, 0.043, 0.036, 0.021, 0.045, 0.033, 0.046, 0.037, 0.029, 0.065, 0.081, 0.044, 0.067, 0.028, 0.062, 0.053, 0.054, 0.053, 0.123, 0.031, 0.082, 0.048, 0.059, 0.075, 0.077, 0.045, 0.097, 0.041, 0.069, 0.05, 0.031, 0.053, 0.037, 0.066, 0.061, 0.042, 0.036, 0.052, 0.073, 0.029, 0.047, 0.031, 0.037, 0.036, 0.105, 0.045, 0.035, 0.075, 0.05, 0.057, 0.026, 0.118, 0.034, 0.034, 0.042, 0.039, 0.031, 0.097, 0.075, 0.052, 0.03, 0.037, 0.035, 0.075, 0.078, 0.067, 0.042, 0.078, 0.076, 0.049, 0.118, 0.041, 0.089, 0.059, 0.073, 0.036, 0.044, 0.053, 0.031, 0.034, 0.044, 0.043, 0.034, 0.076, 0.035, 0.07, 0.046, 0.037, 0.048, 0.043, 0.03, 0.084, 0.097, 0.046, 0.063, 0.03, 0.332, 0.033, 0.053, 0.041, 0.061, 0.024, 0.035, 0.034, 0.047, 0.091, 0.052, 0.067, 0.021, 0.216, 0.053, 0.121, 0.035, 0.114, 0.048, 0.046, 0.051, 0.066, 0.046, 0.025, 0.031, 0.119, 0.109, 0.021, 0.053, 0.041, 0.02, 0.05, 0.067, 0.031, 0.041, 0.086, 0.036, 0.029, 0.022, 0.053, 0.038, 0.056, 0.086, 0.057, 0.026, 0.034, 0.033, 0.032, 0.03, 0.06, 0.039, 0.047, 0.032, 0.028, 0.043, 0.04, 0.032, 0.046, 0.042, 0.117, 0.05, 0.035, 0.027, 0.058, 0.049, 0.083, 0.032, 0.044, 0.038, 0.084, 0.051, 0.047, 0.045, 0.12, 0.079, 0.031, 0.04, 0.035, 0.039, 0.055, 0.032, 0.045, 0.026, 0.034, 0.083, 0.071, 0.037, 0.033, 0.045, 0.046, 0.055, 0.048, 0.034, 0.083, 0.03, 0.03, 0.05, 0.048, 0.036, 0.029, 0.036, 0.027, 0.057, 0.046, 0.035, 0.046, 0.045, 0.075, 0.033, 0.082, 0.085, 0.043, 0.049, 0.032, 0.055, 0.16, 0.079, 0.034, 0.03, 0.051, 0.048, 0.047, 0.038, 0.053, 0.055, 0.069, 0.048], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Reference<br>chlorides=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [0.05, 0.044, 0.031, 0.09, 0.091, 0.086, 0.043, 0.09, 0.053, 0.054, 0.068, 0.041, 0.039, 0.05, 0.052, 0.117, 0.08, 0.172, 0.05, 0.081, 0.049, 0.048, 0.086, 0.028, 0.067, 0.092, 0.041, 0.088, 0.044, 0.054, 0.068, 0.04, 0.039, 0.039, 0.06, 0.059, 0.039, 0.045, 0.07, 0.045, 0.112, 0.104, 0.047, 0.055, 0.107, 0.059, 0.051, 0.032, 0.047, 0.076, 0.077, 0.061, 0.138, 0.089, 0.053, 0.239, 0.045, 0.048, 0.142, 0.08, 0.05, 0.055, 0.067, 0.05, 0.097, 0.047, 0.043, 0.077, 0.076, 0.024, 0.045, 0.08, 0.051, 0.041, 0.044, 0.033, 0.039, 0.062, 0.098, 0.026, 0.05, 0.037, 0.049, 0.082, 0.068, 0.112, 0.041, 0.047, 0.044, 0.044, 0.08, 0.044, 0.085, 0.051, 0.066, 0.044, 0.055, 0.058, 0.048, 0.056, 0.056, 0.082, 0.034, 0.054, 0.069, 0.467, 0.042, 0.038, 0.045, 0.044, 0.066, 0.027, 0.069, 0.029, 0.082, 0.096, 0.047, 0.047, 0.08, 0.049, 0.047, 0.048, 0.049, 0.038, 0.05, 0.056, 0.041, 0.064, 0.092, 0.04, 0.037, 0.105, 0.209, 0.047, 0.045, 0.063, 0.026, 0.055, 0.05, 0.08, 0.034, 0.039, 0.037, 0.04, 0.041, 0.051, 0.093, 0.04, 0.084, 0.073, 0.052, 0.087, 0.04, 0.079, 0.06, 0.084, 0.105, 0.044, 0.036, 0.03, 0.035, 0.087, 0.07, 0.052, 0.078, 0.034, 0.05, 0.055, 0.108, 0.045, 0.046, 0.053, 0.07, 0.043, 0.1, 0.068, 0.08, 0.042, 0.074, 0.044, 0.05, 0.082, 0.053, 0.056, 0.047, 0.044, 0.052, 0.031, 0.037, 0.044, 0.096, 0.039, 0.047, 0.032, 0.049, 0.084, 0.055, 0.061, 0.049, 0.09, 0.046, 0.205, 0.205, 0.059, 0.046, 0.05, 0.046, 0.083, 0.049, 0.027, 0.05, 0.047, 0.054, 0.056, 0.063, 0.044, 0.045, 0.03, 0.301, 0.034, 0.084, 0.04, 0.039, 0.049, 0.044, 0.052, 0.043, 0.057, 0.046, 0.075, 0.034, 0.04, 0.057, 0.085, 0.04, 0.026, 0.07, 0.02, 0.051, 0.043, 0.099, 0.066, 0.053, 0.24, 0.04, 0.09, 0.085, 0.043, 0.052, 0.07, 0.104, 0.042, 0.039, 0.092, 0.056, 0.047, 0.067, 0.039, 0.058, 0.091, 0.052, 0.052, 0.051, 0.062, 0.05, 0.046, 0.044, 0.049, 0.071, 0.073, 0.058, 0.29, 0.058, 0.044, 0.048, 0.04, 0.091, 0.041, 0.06, 0.04, 0.103, 0.081, 0.041, 0.07, 0.069, 0.046, 0.039, 0.054, 0.026, 0.048, 0.031, 0.05, 0.047, 0.029, 0.083, 0.111, 0.053, 0.056, 0.046, 0.081, 0.041, 0.047, 0.081, 0.05, 0.087, 0.042, 0.05, 0.08, 0.152, 0.098, 0.186, 0.031, 0.081, 0.05, 0.099, 0.048, 0.063, 0.084, 0.04, 0.114, 0.114, 0.048, 0.047, 0.08, 0.047, 0.048, 0.096, 0.046, 0.077, 0.042, 0.048, 0.08, 0.049, 0.052, 0.038, 0.077, 0.048, 0.073, 0.037, 0.054, 0.051, 0.052, 0.037, 0.079, 0.035, 0.074, 0.095, 0.046, 0.046, 0.046, 0.04, 0.07, 0.042, 0.049, 0.047], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Current<br>chlorides=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [0.088, 0.06, 0.036, 0.04, 0.043, 0.048, 0.032, 0.078, 0.078, 0.063, 0.054, 0.036, 0.039, 0.048, 0.054, 0.046, 0.052, 0.098, 0.032, 0.03, 0.036, 0.036, 0.035, 0.065, 0.04, 0.035, 0.083, 0.054, 0.028, 0.044, 0.04, 0.077, 0.081, 0.072, 0.054, 0.045, 0.078, 0.079, 0.055, 0.066, 0.026, 0.073, 0.069, 0.047, 0.048, 0.048, 0.076, 0.118, 0.051, 0.025, 0.046, 0.084, 0.034, 0.094, 0.084, 0.077, 0.074, 0.095, 0.04, 0.043, 0.095, 0.037, 0.048, 0.098, 0.098, 0.06, 0.414, 0.076, 0.102, 0.072, 0.115, 0.046, 0.036, 0.088, 0.031, 0.04, 0.052, 0.029, 0.044, 0.074, 0.062, 0.078, 0.045, 0.084, 0.04, 0.028, 0.037, 0.044, 0.041, 0.071, 0.05, 0.043, 0.091, 0.045, 0.08, 0.137, 0.035, 0.17, 0.062, 0.04, 0.092, 0.027, 0.046, 0.073, 0.047, 0.062, 0.146, 0.057, 0.051, 0.045, 0.069, 0.059, 0.078, 0.053, 0.038, 0.029, 0.051, 0.158, 0.05, 0.105, 0.044, 0.028, 0.051, 0.082, 0.076, 0.088, 0.036, 0.034, 0.076, 0.047, 0.016, 0.054, 0.045, 0.036, 0.082, 0.047, 0.053, 0.077, 0.086, 0.041, 0.036, 0.04, 0.031, 0.036, 0.071, 0.049, 0.057, 0.066, 0.079, 0.057, 0.034, 0.048, 0.07, 0.045, 0.076, 0.057, 0.035, 0.046, 0.052, 0.211, 0.089, 0.063, 0.039, 0.038, 0.086, 0.031, 0.036, 0.036, 0.046, 0.052, 0.058, 0.062, 0.049, 0.042, 0.073, 0.033, 0.048, 0.044, 0.047, 0.042, 0.033, 0.041, 0.098, 0.048, 0.06, 0.032, 0.212, 0.034, 0.046, 0.053, 0.078, 0.05, 0.038, 0.039, 0.041, 0.08, 0.051, 0.043, 0.051, 0.094, 0.05, 0.051, 0.06, 0.052, 0.023, 0.045, 0.046, 0.077, 0.042, 0.041, 0.052, 0.053, 0.064, 0.046, 0.048, 0.017, 0.063, 0.036, 0.174, 0.046, 0.043, 0.053, 0.046, 0.045, 0.055, 0.037, 0.088, 0.059, 0.042, 0.068, 0.066, 0.043, 0.05, 0.037, 0.09, 0.056, 0.038, 0.039, 0.045, 0.045, 0.096, 0.094, 0.057, 0.054, 0.041, 0.041, 0.06, 0.045, 0.042, 0.048, 0.08, 0.065, 0.029, 0.045, 0.142, 0.038, 0.054, 0.061, 0.105, 0.099, 0.114, 0.044, 0.046, 0.046, 0.053, 0.053, 0.044, 0.044, 0.036, 0.055, 0.053, 0.092, 0.037, 0.057, 0.044, 0.042, 0.049, 0.082, 0.089, 0.071, 0.081, 0.044, 0.023, 0.044, 0.176, 0.032, 0.045, 0.053, 0.052, 0.081, 0.056, 0.044, 0.055, 0.077, 0.05, 0.064, 0.032, 0.046, 0.057, 0.095, 0.028, 0.093, 0.046, 0.043, 0.056, 0.03, 0.09, 0.05, 0.059, 0.054, 0.079, 0.084, 0.046, 0.046, 0.059, 0.05, 0.073, 0.052, 0.042, 0.042, 0.085, 0.066, 0.059, 0.043, 0.088, 0.053, 0.066, 0.075, 0.038, 0.036, 0.079, 0.051, 0.036, 0.033, 0.071, 0.036, 0.037, 0.058, 0.05, 0.043, 0.046, 0.078, 0.076, 0.08, 0.2, 0.036, 0.05, 0.088, 0.05, 0.036, 0.053, 0.031], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Reference\", \"x\": 0.245, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Current\", \"x\": 0.755, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"barmode\": \"overlay\", \"legend\": {\"title\": {\"text\": \"target\"}, \"tracegroupgap\": 0}, \"margin\": {\"t\": 60}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.49], \"title\": {\"text\": \"chlorides\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.51, 1.0], \"matches\": \"x\", \"title\": {\"text\": \"chlorides\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"count\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}}}, \"chlorides_good\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (ref)\", \"type\": \"scatter\", \"x\": [0.037, 0.054, 0.051, 0.039, 0.046, 0.086, 0.033, 0.032, 0.032, 0.071, 0.037, 0.069, 0.044, 0.049, 0.053, 0.061, 0.036, 0.1, 0.033, 0.035, 0.038, 0.034, 0.051, 0.034, 0.039, 0.048, 0.029, 0.033, 0.05, 0.029, 0.063, 0.062, 0.032, 0.045, 0.029, 0.05, 0.038, 0.03, 0.032, 0.02, 0.033, 0.05, 0.046, 0.035, 0.043, 0.058, 0.08, 0.029, 0.074, 0.033, 0.058, 0.044, 0.039, 0.042, 0.037, 0.076, 0.03, 0.02, 0.04, 0.034, 0.064, 0.035, 0.044, 0.042, 0.088, 0.085, 0.012, 0.047, 0.069, 0.02, 0.039, 0.032, 0.047, 0.05, 0.061, 0.05, 0.078, 0.034, 0.073, 0.038, 0.047, 0.032, 0.033, 0.035, 0.034, 0.035, 0.044, 0.086, 0.04, 0.084, 0.037, 0.035, 0.04, 0.044, 0.046, 0.031, 0.035, 0.035, 0.04, 0.046, 0.042, 0.05, 0.091, 0.05, 0.037, 0.048, 0.053, 0.048, 0.036, 0.064, 0.05, 0.053, 0.024, 0.054, 0.043, 0.021, 0.042, 0.052, 0.04, 0.074, 0.062, 0.052, 0.043, 0.053, 0.078, 0.084, 0.074, 0.045, 0.031, 0.084, 0.034, 0.036, 0.042, 0.08, 0.062, 0.035, 0.092, 0.062, 0.038, 0.092, 0.049, 0.041, 0.046, 0.04, 0.084, 0.044, 0.036, 0.031, 0.077, 0.051, 0.051, 0.073, 0.036, 0.046, 0.051, 0.038, 0.043, 0.042, 0.027, 0.039, 0.036, 0.083, 0.044, 0.077, 0.033, 0.043, 0.041, 0.035, 0.036, 0.036, 0.071, 0.082, 0.039, 0.033, 0.087, 0.044, 0.076, 0.05, 0.037, 0.08, 0.046, 0.044, 0.054, 0.031, 0.045, 0.047, 0.037, 0.068, 0.04, 0.044, 0.026, 0.087, 0.032, 0.036, 0.082, 0.028, 0.06, 0.048, 0.019, 0.026, 0.056, 0.034, 0.041, 0.072, 0.043, 0.057, 0.062, 0.042, 0.057, 0.053, 0.057, 0.024, 0.04, 0.035, 0.031, 0.045, 0.029, 0.038, 0.029, 0.095, 0.039, 0.042, 0.044, 0.032, 0.074, 0.025, 0.067, 0.047, 0.047, 0.046, 0.041, 0.049, 0.072, 0.042, 0.051, 0.037, 0.034, 0.046, 0.028, 0.036, 0.024, 0.058, 0.154, 0.048, 0.114, 0.047, 0.043, 0.064, 0.039, 0.029, 0.044, 0.053, 0.171, 0.075, 0.081, 0.047, 0.046, 0.184, 0.038, 0.062, 0.05, 0.063, 0.041, 0.047, 0.036, 0.032, 0.028, 0.08, 0.063, 0.038, 0.042, 0.045, 0.041, 0.039, 0.021, 0.06, 0.039, 0.068, 0.087, 0.194, 0.042, 0.037, 0.028, 0.026, 0.024, 0.084, 0.051, 0.054, 0.114, 0.048, 0.038, 0.029, 0.093, 0.037, 0.048, 0.056, 0.074, 0.041, 0.046, 0.04, 0.069, 0.044, 0.039, 0.049, 0.033, 0.074, 0.034, 0.104, 0.038, 0.145, 0.073, 0.05, 0.056, 0.038, 0.043, 0.082, 0.049, 0.033, 0.042, 0.029, 0.014, 0.144, 0.035, 0.03, 0.034, 0.066, 0.042, 0.1, 0.055, 0.058, 0.026, 0.045, 0.071, 0.056, 0.035, 0.043, 0.03, 0.068, 0.039, 0.047, 0.051, 0.022, 0.035, 0.041, 0.058, 0.04, 0.048, 0.065, 0.02, 0.05, 0.046, 0.048, 0.039, 0.033, 0.047, 0.037, 0.081, 0.037, 0.104, 0.03, 0.053, 0.049, 0.067, 0.066, 0.08, 0.048, 0.048, 0.041, 0.079, 0.046, 0.043, 0.043, 0.041, 0.042, 0.032, 0.027, 0.033, 0.095, 0.057, 0.08, 0.071, 0.024, 0.096, 0.052, 0.045, 0.031, 0.214, 0.048, 0.041, 0.026, 0.032, 0.047, 0.034, 0.035, 0.045, 0.067, 0.052, 0.031, 0.032, 0.066, 0.068, 0.079, 0.044, 0.043, 0.028, 0.041, 0.031, 0.033, 0.063, 0.045, 0.039, 0.041, 0.052, 0.034, 0.046, 0.045, 0.034, 0.04, 0.054, 0.06, 0.05, 0.029, 0.047, 0.051, 0.055, 0.031, 0.057, 0.064, 0.036, 0.042, 0.033, 0.027, 0.03, 0.026, 0.052, 0.024, 0.075, 0.103, 0.035, 0.094, 0.038, 0.047, 0.028, 0.029, 0.042, 0.052, 0.045, 0.06, 0.066, 0.037, 0.035, 0.036, 0.026, 0.036, 0.045, 0.066, 0.036, 0.079, 0.047, 0.035, 0.066, 0.078, 0.07, 0.045, 0.034, 0.072, 0.036, 0.026, 0.05, 0.052, 0.079, 0.058, 0.051, 0.044, 0.026, 0.038, 0.036, 0.048, 0.056, 0.045, 0.095, 0.054, 0.047, 0.039, 0.061, 0.036, 0.031, 0.051, 0.029, 0.063, 0.048, 0.076, 0.058, 0.039, 0.059, 0.041, 0.057, 0.043, 0.044, 0.042, 0.049, 0.036, 0.031, 0.058, 0.027, 0.048, 0.027, 0.034, 0.027, 0.055, 0.039, 0.025, 0.053, 0.042, 0.034, 0.024, 0.033, 0.048, 0.028, 0.034, 0.054, 0.033, 0.028, 0.036, 0.097, 0.019, 0.039, 0.054, 0.045, 0.036, 0.087, 0.098, 0.044, 0.043, 0.037, 0.087, 0.047, 0.041, 0.054, 0.039, 0.048, 0.041, 0.04, 0.051, 0.029, 0.033, 0.104, 0.053, 0.042, 0.051, 0.022, 0.031, 0.044, 0.049, 0.034, 0.078, 0.045, 0.089, 0.056, 0.036, 0.18, 0.035, 0.031, 0.048, 0.044, 0.037, 0.038, 0.043, 0.034, 0.045, 0.039, 0.047, 0.028, 0.019, 0.039, 0.022, 0.05, 0.025, 0.072, 0.046, 0.032, 0.03, 0.034, 0.064, 0.045, 0.076, 0.036, 0.041, 0.041, 0.032, 0.11, 0.031, 0.047, 0.041, 0.039, 0.036, 0.038, 0.065, 0.037, 0.054, 0.055, 0.046, 0.047, 0.041, 0.08, 0.046, 0.037, 0.064, 0.031, 0.057, 0.041, 0.092, 0.04, 0.084, 0.039, 0.06, 0.04, 0.047, 0.062, 0.148, 0.045, 0.035, 0.062, 0.119, 0.031, 0.051, 0.04, 0.028, 0.046, 0.031, 0.119, 0.044, 0.045, 0.053, 0.031, 0.033, 0.063, 0.046, 0.043, 0.083, 0.023, 0.107, 0.039, 0.038, 0.036], \"xaxis\": \"x\", \"y\": [0.8156061324462894, 0.42491310922683634, 0.8867827646463432, 0.8014995238430205, 0.30499958310650876, 0.5817355832705369, 0.959171062334887, 0.7854416128369749, 0.9085690698200813, 0.8998600376511439, 0.6341165000693628, 0.412102187638673, 0.7643629411050379, 0.4710001938005606, 0.40182653035141874, 0.40438056362905367, 0.8870480016118494, 0.3650667978415713, 0.9064321709292111, 0.9327245345966092, 0.6458420185168736, 0.8821841129047617, 0.6704018506542557, 0.7655671181822064, 0.8616986618932058, 0.48774537944210006, 0.9637355036179479, 0.6794204065079696, 0.6044835155949141, 0.7867954023600708, 0.9137982268836646, 0.5867502063434873, 0.8048584290077971, 0.9718511071053526, 0.9627192884041744, 0.7978623718349598, 0.6091120966723917, 0.8943338178728011, 0.8853376735027229, 0.9045563504021151, 0.9264844632598176, 0.6342457655367447, 0.9414033426130164, 0.5636516403732365, 0.5172967922101196, 0.4836896337264441, 0.35199620689495453, 0.788779954566273, 0.9696552399248426, 0.772496554239754, 0.8132656157621138, 0.4539090261140653, 0.9333708926412786, 0.679765045723866, 0.48457442622955804, 0.4248820606938153, 0.6737819616086004, 0.8780741425819777, 0.38340602447337646, 0.90634085684919, 0.5574014604752268, 0.6804147683859246, 0.9077110088845216, 0.7718472635729894, 0.4717552048891654, 0.22222808308441652, 0.8616549355667619, 0.705749071892896, 0.4699129352300819, 0.9680524782819758, 0.8891353183282249, 0.9466602521798594, 0.8553382520847058, 0.7430243903066251, 0.6616131862201935, 0.6919609500216202, 0.96565744679506, 0.913108907487878, 0.5395521774612226, 0.9026238558501023, 0.6550941529376255, 0.9757876320152292, 0.8833495792027257, 0.6666029765862381, 0.8504582120840628, 0.9320215595878566, 0.7639947574915884, 0.6085229656221847, 0.9557131606798471, 0.46184432615952054, 0.5642658412077981, 0.8815615400732472, 0.7189203536918151, 0.9301020530176726, 0.7341394174346678, 0.7759189559372703, 0.8448078654733812, 0.9012666081120407, 0.8926028620066223, 0.5287492720273277, 0.6874206920638863, 0.37408584674942635, 0.8348370105186077, 0.8697567261320243, 0.9175759024810304, 0.44644098895981, 0.8874384748400057, 0.7787567487441118, 0.9416122482572158, 0.3265229243180111, 0.9308095750950773, 0.42267134533232753, 0.43068181214270274, 0.8727308285810839, 0.7201611177732586, 0.8430904589044517, 0.8140617541555761, 0.9456747441572588, 0.6672663325862807, 0.8756470416862959, 0.518871521713375, 0.7040615347784164, 0.4957960231649875, 0.6250130361556073, 0.27413726132188326, 0.5193133578087885, 0.37656641690434584, 0.5808048103476511, 0.7917827117482167, 0.36569143480873245, 0.7232542293832885, 0.9785934574433302, 0.5715075300165849, 0.8182555969893297, 0.5448461144048058, 0.9491291995847589, 0.4833587957991669, 0.3189279754564957, 0.9184825510014271, 0.5524830505676419, 0.9600429304649183, 0.7818180966165994, 0.7962710274484252, 0.7569429870375118, 0.46184432615952054, 0.7641514270390748, 0.9486763575522457, 0.8086368705092697, 0.6784536879503494, 0.6877019790624462, 0.6082670858563528, 0.6053794617794684, 0.6319330693089359, 0.4982105707488519, 0.6787928880949093, 0.9231980717613485, 0.8831230955067948, 0.6845485656817341, 0.8799204262605215, 0.9164563829924386, 0.7819268199067826, 0.23469888428232324, 0.9492377841603665, 0.8826092272015389, 0.6360541596480074, 0.5184081252698399, 0.6400126753125241, 0.542646305979658, 0.4479501208302092, 0.7783171875827786, 0.7867712153112567, 0.5236605417423803, 0.6959846197179591, 0.7925023358445066, 0.6683189355892497, 0.18737025221649042, 0.42506327048176057, 0.7272596040941706, 0.7314191754306454, 0.4827891324637794, 0.6649341228620356, 0.9038332731164471, 0.9588917860646077, 0.8945194928389463, 0.49833043835950624, 0.7997712594855277, 0.8577935987172323, 0.7622736922026153, 0.8039391974899521, 0.7396811504731934, 0.8115340233127679, 0.801728888664367, 0.738451208106372, 0.5859674792922007, 0.1865203674848816, 0.8773430435604171, 0.36888329310067386, 0.8651817982269884, 0.9067615420962557, 0.8594983988587351, 0.7437750884018276, 0.9145224932934428, 0.9135679891815164, 0.8001832456898428, 0.6860977766129374, 0.9377826008632761, 0.9300369611912853, 0.6997062971069969, 0.5693182102579236, 0.3404656140239559, 0.7160591142088384, 0.7953146078011, 0.8869803873277935, 0.7639982823097876, 0.8681285227071118, 0.576868797021353, 0.93035102563313, 0.8375600281828176, 0.8279918435672958, 0.9266689436294401, 0.7559862346636359, 0.5099889666930224, 0.6914445842613687, 0.9651950326885705, 0.87851968214492, 0.8499702807396289, 0.4685752957996948, 0.7241546992314323, 0.7848147251007912, 0.7341394174346678, 0.7008877443692281, 0.340588975625529, 0.5013021766499856, 0.8321174529331695, 0.8818378666553491, 0.9176909075187759, 0.8634678749265305, 0.7436082905772717, 0.9343776659412377, 0.7668809937296346, 0.6243383802582345, 0.5332560471205093, 0.6907315465649003, 0.16626803588025432, 0.1668542888532837, 0.7408943843163458, 0.5221312328975666, 0.7457559475413279, 0.46389636934606376, 0.9292627865919654, 0.5268311186840582, 0.4244151934213653, 0.643310536612302, 0.8577438313980266, 0.7816208399762355, 0.8553382520847058, 0.7010035672814305, 0.5242572272016158, 0.9187320011579697, 0.8703498177621264, 0.6713045345576062, 0.9137982268836646, 0.8614414457916845, 0.9445662266054761, 0.8808216590199034, 0.7386378115490353, 0.8873009977622293, 0.9157094897337859, 0.6606038558129893, 0.9296803968514485, 0.8864322240790464, 0.5146720135715994, 0.8720710714485208, 0.9415427660945741, 0.9138701141498735, 0.6527559092576063, 0.8751970040938668, 0.9249766460056568, 0.801728888664367, 0.6575848465963361, 0.6934824043184128, 0.8619113960143526, 0.9419078024651042, 0.9591721389341828, 0.8397407150753159, 0.9084383840076588, 0.4963969309336195, 0.7359588175524252, 0.3531961907069324, 0.9279819479140234, 0.7752976919572294, 0.8665226278427577, 0.9515211055933231, 0.7314191754306454, 0.890886918514299, 0.3235491032739525, 0.3719939405423586, 0.6323804178173072, 0.8398006965792015, 0.8239469134189235, 0.8592101816891015, 0.7615002907198236, 0.8688259750909261, 0.8718104001390852, 0.5838074755684882, 0.8756470416862959, 0.901850575196968, 0.9451930143658351, 0.6253812669856891, 0.5890764576710766, 0.4921052500998711, 0.4862070578416567, 0.9170647663398394, 0.7035583451969506, 0.8476385889092957, 0.5603058978573646, 0.5810606890504925, 0.9088604673919816, 0.8903252600075929, 0.944267921154058, 0.9435968591480925, 0.938237366988842, 0.9357286047893738, 0.7961386682142712, 0.7840233885688647, 0.2513590507613302, 0.7389284097502917, 0.9053472250810051, 0.44438282424164377, 0.862281110352348, 0.8021059248496223, 0.9152740930046814, 0.643737358401971, 0.8540304955499701, 0.8613418170006786, 0.6911084183178322, 0.8848367871057808, 0.8387883096682573, 0.5942651630821018, 0.65691393717736, 0.6369979527510315, 0.8280658524313272, 0.9640736168216585, 0.6546311715671466, 0.5599819536107853, 0.48348053317652906, 0.7668016587569692, 0.03620763244300767, 0.7364400865449663, 0.37408584674942635, 0.8767503774172, 0.8743962287172513, 0.8751970040938668, 0.8833495792027257, 0.7091886355621774, 0.87006937054451, 0.7904001815220257, 0.8761418339280951, 0.8306834851111597, 0.7531715889012326, 0.38181207472529843, 0.6490458991820136, 0.9138057013338913, 0.9046222904886461, 0.17956061692355052, 0.7506163079023257, 0.8963285795381793, 0.8848361664653354, 0.9283037217377402, 0.45996158699034445, 0.7290858434196763, 0.8319094967702583, 0.6578018675312727, 0.18727567457681707, 0.8673410249845035, 0.9453298670648187, 0.9446538464906173, 0.19605573045952288, 0.6723831041639817, 0.3438281302059518, 0.37858973820495484, 0.6953170483296187, 0.21463507152544156, 0.26963792069965237, 0.3280912492037974, 0.8399932187801539, 0.420387898633768, 0.36522500752858966, 0.5810560693343539, 0.9306346767722963, 0.7167716539092029, 0.656736106921484, 0.5549139996760648, 0.6909161521388689, 0.591904263202073, 0.884703171197362, 0.866402281883595, 0.7582770814524421, 0.8990773411030794, 0.1818065866116437, 0.6222165686186035, 0.17261914235374884, 0.8156064679757086, 0.4851213943917703, 0.8871292211128762, 0.8398494053952754, 0.703270618172154, 0.6305543892506115, 0.7494149477175548, 0.1532408287022325, 0.6159732902773407, 0.738220551127759, 0.8354520044441791, 0.8536870432671441, 0.5751476712690671, 0.9077719201719568, 0.7878515691455199, 0.6672663325862807, 0.45293736875445273, 0.17058553029544155, 0.747933377844996, 0.8400163125056676, 0.4516778718827729, 0.6082670858563528, 0.8401843469141149, 0.7636885291754726, 0.789170795337903, 0.8128612802083497, 0.7522530659814418, 0.8086757686066508, 0.8356255123032285, 0.9241779635105248, 0.9674588597049086, 0.9368885694202199, 0.4990764491242286, 0.876561204324957, 0.554264192243629, 0.5967716244634195, 0.9060244606340249, 0.8401608718856799, 0.7329750583133859, 0.8021769878309102, 0.9316817655017511, 0.45488322534173153, 0.798578398438993, 0.7425236774748816, 0.5742682328784404, 0.4937681935814938, 0.8972164286692267, 0.8914273370768748, 0.9377613518261881, 0.8862258850530264, 0.8591757581361523, 0.7410678096850266, 0.6822336012657398, 0.9201658505843877, 0.6982578893131915, 0.5746709232170782, 0.7626532952948841, 0.7137703530889916, 0.7520971196461234, 0.4473853625959922, 0.7957460056304991, 0.4833174871501707, 0.8758467705785958, 0.4689303842787964, 0.6133612564737879, 0.8568681391705205, 0.6835133967314007, 0.9732070839986944, 0.21435716257549006, 0.5761668962420043, 0.4055433603128916, 0.3743394998756179, 0.9118635774953143, 0.964551884718591, 0.9306459334511011, 0.8424802355113449, 0.7739144871152517, 0.6872688771534424, 0.8590561833388345, 0.6714384475466295, 0.6408669500407106, 0.5203550269219845, 0.2856853969697174, 0.857760555506807, 0.9307094503226838, 0.6787928880949093, 0.8308635255795866, 0.29271374211533296, 0.6769315553524353, 0.23831547366416572, 0.5895099457120908, 0.8994675076574448, 0.8893400405584444, 0.8456825404777587, 0.5399612081435882, 0.6188649121485582, 0.9281492942813848, 0.7611740601422801, 0.46550237374781617, 0.8896861436466836, 0.9038901015569306, 0.5044440900554997, 0.9215480939667524, 0.6930273792518707, 0.8723244804196287, 0.5624338775604165, 0.9226297661236537, 0.8469231754225917, 0.9430557295321259, 0.9097116306258912, 0.5988707702267543, 0.3813853072548755, 0.8843832309478876, 0.9006952500629406, 0.918975987201669, 0.18997930334445084, 0.8923106748541326, 0.8461388699436441, 0.5973439234355874, 0.9544642924744549, 0.91770416680597, 0.9177239854204658, 0.17584552180125673, 0.9240099144459667, 0.48524948024905407, 0.8889685222180134, 0.5785503824403398, 0.7511953459672914, 0.6887596776945688, 0.6717539058356753, 0.7168761391602206, 0.7134478068952186, 0.834626350903405, 0.5715867980362679, 0.6588392688727011, 0.9488572786900573, 0.8920529250761863, 0.8891353183282249, 0.707981940789761, 0.926348680038428, 0.631489487929038, 0.7443856388661001, 0.9260754381930228, 0.9544642924744549, 0.8497401318990601, 0.5604010177433062, 0.8036334301115304, 0.7898153537185114, 0.8491431337122072, 0.6570881560807702, 0.8389599143569951, 0.7944137576415592, 0.8132668978866627, 0.44714680104169846, 0.7978021044641371, 0.41921696608658454, 0.38876183891604754, 0.9248463736054193, 0.4277915265084825, 0.6345107008491314, 0.8008942533173764, 0.5087430598332189, 0.9414938992689892, 0.6922115882765215, 0.8296175750175913, 0.8593339228153332, 0.8975141534758351, 0.5977126281557783, 0.9279478536756302, 0.6485770817571253, 0.8905823996589662, 0.9332072841984264, 0.9432461110830079, 0.9410120781436498, 0.6339696776630096, 0.7120962557761497, 0.5841709037351369, 0.5928970840420333, 0.9006589732900512, 0.936371533648048, 0.6907852379101131, 0.7675780198071424, 0.9444587893431046, 0.4702336163336472, 0.8925536722101626, 0.8158978708906081, 0.822780392485108, 0.8037335327290217, 0.8382351003285965, 0.8941557358589171, 0.4796498334522667, 0.926348680038428, 0.6842118015950474, 0.6463580983468415, 0.8292048071278182, 0.5834426687867836, 0.8419845362148763, 0.2431563391580561, 0.7763142135369961, 0.9390550746437164, 0.7774903237071782, 0.8141232663130791, 0.9444089886680379, 0.430401459478284, 0.9192677156927759, 0.8427595869840984, 0.87120858451521, 0.5693182102579236, 0.820012080301976, 0.58719119911586, 0.42769376643096113, 0.3542595869275313, 0.89579938191327, 0.8743523014696554, 0.7820497043505815, 0.5279069501129625, 0.8869579700149332, 0.45488774279476296, 0.8514781135508903, 0.8278297091497892, 0.663749097381813, 0.5132851713944618, 0.4906566565015208, 0.6415219885510332, 0.6991293681294938, 0.8150539074042624, 0.5800669536763935, 0.9583771200922359, 0.7366090055976814, 0.5747817696023392, 0.5315376696882942, 0.8074446941396305, 0.9038901015569306, 0.9087015650331977, 0.6697291810323083, 0.5800669536763935, 0.8807270543114014, 0.5135845984304893, 0.9352791850238339, 0.36120709973337456, 0.6206709330576408, 0.906286252315459, 0.7937202818717513], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [0.05, 0.044, 0.031, 0.09, 0.091, 0.086, 0.043, 0.09, 0.053, 0.054, 0.068, 0.041, 0.039, 0.05, 0.052, 0.117, 0.08, 0.172, 0.05, 0.081, 0.049, 0.048, 0.086, 0.028, 0.067, 0.092, 0.041, 0.088, 0.044, 0.054, 0.068, 0.04, 0.039, 0.039, 0.06, 0.059, 0.039, 0.045, 0.07, 0.045, 0.112, 0.104, 0.047, 0.055, 0.107, 0.059, 0.051, 0.032, 0.047, 0.076, 0.077, 0.061, 0.138, 0.089, 0.053, 0.239, 0.045, 0.048, 0.142, 0.08, 0.05, 0.055, 0.067, 0.05, 0.097, 0.047, 0.043, 0.077, 0.076, 0.024, 0.045, 0.08, 0.051, 0.041, 0.044, 0.033, 0.039, 0.062, 0.098, 0.026, 0.05, 0.037, 0.049, 0.082, 0.068, 0.112, 0.041, 0.047, 0.044, 0.044, 0.08, 0.044, 0.085, 0.051, 0.066, 0.044, 0.055, 0.058, 0.048, 0.056, 0.056, 0.082, 0.034, 0.054, 0.069, 0.467, 0.042, 0.038, 0.045, 0.044, 0.066, 0.027, 0.069, 0.029, 0.082, 0.096, 0.047, 0.047, 0.08, 0.049, 0.047, 0.048, 0.049, 0.038, 0.05, 0.056, 0.041, 0.064, 0.092, 0.04, 0.037, 0.105, 0.209, 0.047, 0.045, 0.063, 0.026, 0.055, 0.05, 0.08, 0.034, 0.039, 0.037, 0.04, 0.041, 0.051, 0.093, 0.04, 0.084, 0.073, 0.052, 0.087, 0.04, 0.079, 0.06, 0.084, 0.105, 0.044, 0.036, 0.03, 0.035, 0.087, 0.07, 0.052, 0.078, 0.034, 0.05, 0.055, 0.108, 0.045, 0.046, 0.053, 0.07, 0.043, 0.1, 0.068, 0.08, 0.042, 0.074, 0.044, 0.05, 0.082, 0.053, 0.056, 0.047, 0.044, 0.052, 0.031, 0.037, 0.044, 0.096, 0.039, 0.047, 0.032, 0.049, 0.084, 0.055, 0.061, 0.049, 0.09, 0.046, 0.205, 0.205, 0.059, 0.046, 0.05, 0.046, 0.083, 0.049, 0.027, 0.05, 0.047, 0.054, 0.056, 0.063, 0.044, 0.045, 0.03, 0.301, 0.034, 0.084, 0.04, 0.039, 0.049, 0.044, 0.052, 0.043, 0.057, 0.046, 0.075, 0.034, 0.04, 0.057, 0.085, 0.04, 0.026, 0.07, 0.02, 0.051, 0.043, 0.099, 0.066, 0.053, 0.24, 0.04, 0.09, 0.085, 0.043, 0.052, 0.07, 0.104, 0.042, 0.039, 0.092, 0.056, 0.047, 0.067, 0.039, 0.058, 0.091, 0.052, 0.052, 0.051, 0.062, 0.05, 0.046, 0.044, 0.049, 0.071, 0.073, 0.058, 0.29, 0.058, 0.044, 0.048, 0.04, 0.091, 0.041, 0.06, 0.04, 0.103, 0.081, 0.041, 0.07, 0.069, 0.046, 0.039, 0.054, 0.026, 0.048, 0.031, 0.05, 0.047, 0.029, 0.083, 0.111, 0.053, 0.056, 0.046, 0.081, 0.041, 0.047, 0.081, 0.05, 0.087, 0.042, 0.05, 0.08, 0.152, 0.098, 0.186, 0.031, 0.081, 0.05, 0.099, 0.048, 0.063, 0.084, 0.04, 0.114, 0.114, 0.048, 0.047, 0.08, 0.047, 0.048, 0.096, 0.046, 0.077, 0.042, 0.048, 0.08, 0.049, 0.052, 0.038, 0.077, 0.048, 0.073, 0.037, 0.054, 0.051, 0.052, 0.037, 0.079, 0.035, 0.074, 0.095, 0.046, 0.046, 0.046, 0.04, 0.07, 0.042, 0.049, 0.047], \"xaxis\": \"x\", \"y\": [0.2802292104526322, 0.9455194119275858, 0.4978743212349556, 0.5289145624519528, 0.28439238707197784, 0.2033309570226689, 0.27345747478543325, 0.8322873304845451, 0.389055896812549, 0.3675472469853882, 0.5781933746273124, 0.7401955299744071, 0.44969671697605845, 0.4367887814338696, 0.31593955341667695, 0.3775624358859999, 0.19282181046294666, 0.048451763306065584, 0.6005928650583868, 0.032225376113695775, 0.427412413738938, 0.23973251442015217, 0.13890126550157303, 0.8613925272127, 0.329663916828638, 0.19359965390713213, 0.6827271716759634, 0.1960905505555538, 0.08135735686643118, 0.39737240301928484, 0.13902987396822816, 0.6514166433739288, 0.6994753721471061, 0.7140886736258081, 0.5021795028970708, 0.48743245558712556, 0.5731139673640956, 0.8820820642542792, 0.559972149724866, 0.5061565591493914, 0.5066810377847554, 0.833805652807593, 0.6979972163580744, 0.3177574231538272, 0.13068190592986567, 0.758876109553896, 0.5681062961269688, 0.715544821914063, 0.762062625203523, 0.4464438677531786, 0.20995974230910305, 0.5262622410710028, 0.39442669669188163, 0.2537324982988368, 0.6775437642744659, 0.23876321589577687, 0.6369158982934647, 0.38960060362966165, 0.6034323722874255, 0.7769991715799629, 0.15199748354041337, 0.5641412449951732, 0.7590466800561823, 0.5969347905931296, 0.1048362779837843, 0.7217824369593382, 0.2662339163773806, 0.16472378978351135, 0.37760124376932414, 0.7071736299639594, 0.3436862995931572, 0.8384434752264291, 0.3635333644877426, 0.7813188949129265, 0.7279369976219869, 0.5641098847382463, 0.3863964747623771, 0.9209913370067284, 0.1477144681640183, 0.8809374658555192, 0.6533168894759348, 0.8873477284758582, 0.3697306267878623, 0.28319023347825867, 0.5203701741750857, 0.5523747693308857, 0.6387521731780509, 0.3881380695009739, 0.8487896327149285, 0.4636606453307818, 0.8384434752264291, 0.558266603669778, 0.21657231888677728, 0.3635333644877426, 0.5512671313974766, 0.5051039398599867, 0.5827915753039158, 0.49441682850108926, 0.47309171914705017, 0.6262595591688196, 0.5508242483721094, 0.47332791509789995, 0.7117569366896692, 0.3933786516273859, 0.16465066549244003, 0.7490394132223248, 0.769261050002088, 0.7431932405995126, 0.3141000916210982, 0.723735045552473, 0.6484132891031948, 0.688519894019609, 0.40496704226994307, 0.5803736122960511, 0.6327801522745691, 0.45115706990411364, 0.37268733756108086, 0.9009693101135351, 0.06496389958099598, 0.44431713201158524, 0.39960831974332744, 0.8662156944598043, 0.31018081106061823, 0.5339551117365043, 0.33311273919547707, 0.400132762133902, 0.8528754522806217, 0.14419347879543085, 0.11672350429510901, 0.44556702529145975, 0.6160120899414699, 0.13766892845409207, 0.5517204028384314, 0.5232178919035022, 0.35483403305733974, 0.4900213704561591, 0.8854578072659228, 0.43084122675663034, 0.7601186327653665, 0.14072030431570776, 0.6186690618327106, 0.5245054232921349, 0.7326259458716644, 0.5690781983520095, 0.4018508815425063, 0.24877469563805235, 0.7952501197393639, 0.8766221356386195, 0.303451532996695, 0.5357745481647883, 0.7096524147827454, 0.20877177283968149, 0.8635610141758273, 0.46736762313881036, 0.6061151992073851, 0.113015272873705, 0.40446014603085867, 0.6332606063976143, 0.648705381890928, 0.42186952587750404, 0.8047913565308571, 0.3017058309841093, 0.38406990132164637, 0.33494193042999065, 0.19929939967121216, 0.8624919783238055, 0.528785836409086, 0.43084122675663034, 0.47042159929499583, 0.5061565591493914, 0.5759491569657543, 0.8468794444363914, 0.20342296359496542, 0.5170831534483544, 0.3666753044655067, 0.6131723001375537, 0.4410646109528086, 0.6903416342484309, 0.3866428492574258, 0.4636606453307818, 0.4525459302795702, 0.03199256040434073, 0.7029629492254846, 0.2433141614541866, 0.548755973819273, 0.3775060302547258, 0.06593060991448157, 0.8745624549148976, 0.22931948662359403, 0.27267688907931714, 0.589328430619086, 0.8007160756317941, 0.5525637789187225, 0.5008522318356121, 0.4556212410144909, 0.17391722008742402, 0.43574637053357784, 0.3237440077649342, 0.6071692164257629, 0.6925152430641841, 0.592675381607996, 0.43854150134957587, 0.43854150134957587, 0.42437112972565305, 0.8061118855433299, 0.35195592295594336, 0.7605370065149419, 0.38898578429124253, 0.67510953655807, 0.872979709380305, 0.710510994258769, 0.720290290780972, 0.4820787970895852, 0.42019280799979697, 0.4304380754474639, 0.25285023254778977, 0.3238056884730761, 0.39471961640683584, 0.09510031985475974, 0.367046376808582, 0.21500793651835448, 0.8705359023101334, 0.6100742529031461, 0.6226449432624995, 0.7279369976219869, 0.3643494054700089, 0.09992017521484964, 0.41475515148757036, 0.6462260464983366, 0.14102909592513518, 0.48949585696458414, 0.5239520436918008, 0.6084413884537807, 0.5655473856702703, 0.9517420512476797, 0.7489379515982664, 0.4647937384849751, 0.7915321263825208, 0.44112279258530757, 0.5734340256727429, 0.6604471727860799, 0.4845203185458914, 0.6968730453869196, 0.5315374962198609, 0.8685951485887234, 0.6242442748350044, 0.2912097196987059, 0.7725938221565348, 0.2067629769731588, 0.30221725334927335, 0.13129342562285412, 0.6467789443522378, 0.6994753721471061, 0.11825382206919556, 0.41022417118631593, 0.4882665226122541, 0.7732287086973071, 0.25374762405010176, 0.49441682850108926, 0.3723877205427743, 0.652330313245635, 0.43667799883041203, 0.5964718913578133, 0.55172276504346, 0.24113559934961917, 0.8243980268882987, 0.7263843594269437, 0.43535214809021755, 0.8721122798612579, 0.18723914490145582, 0.6486906676970999, 0.11576704656818047, 0.4328241622975616, 0.491481212420291, 0.5264345378086769, 0.33856526784971647, 0.2967410926251248, 0.581398831228375, 0.5973776665460488, 0.6195406102170065, 0.37782717658841725, 0.323061133240968, 0.17420808473594895, 0.19634770547538957, 0.46492234760650425, 0.49613167963272686, 0.5812209036149294, 0.6057291775435286, 0.63414717387345, 0.5702687187355167, 0.8604975146328253, 0.6309022132706124, 0.48732991249542923, 0.6887148870948692, 0.41581945293096145, 0.5706760596351739, 0.4831274653996314, 0.06684727567316755, 0.49090643211649887, 0.15191610726090596, 0.2711405311223577, 0.7653618545702112, 0.09266565137124261, 0.4554350627407873, 0.19698919164573708, 0.6930185080649685, 0.5227537922811563, 0.50434568709929, 0.7082092780767422, 0.46058046365566996, 0.6735723234187477, 0.4285936050615775, 0.323061133240968, 0.5168500865319015, 0.6161307914674419, 0.23456444218973552, 0.3192004782541023, 0.21968945907811915, 0.5028183230931117, 0.43371621376298963, 0.6744209213341115, 0.5940260419772637, 0.13783310426722128, 0.5136444387530009, 0.5508647999875032, 0.4955911012838212, 0.9814394195009358, 0.8260225289794664, 0.17965956338109995, 0.46844896472597397, 0.6048119589659149, 0.3289160319090978, 0.2454606394453749, 0.7497022835596558, 0.683485355417811, 0.20995974230910305, 0.23504578258460665, 0.37175956099497537, 0.4875530438829156, 0.24982584224249993, 0.6282829625348888, 0.4520795162158371, 0.8200372413039435, 0.12832513643528837, 0.5299630655130737, 0.29552777318700446, 0.24021937552346023, 0.5429028773737552, 0.6311869746243346, 0.4145977043912777, 0.39329840463575844, 0.39070335653410526, 0.4286990948130573, 0.846836560604146, 0.6880850122626078], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (curr)\", \"type\": \"scatter\", \"x\": [0.068, 0.058, 0.045, 0.044, 0.076, 0.041, 0.037, 0.036, 0.033, 0.036, 0.102, 0.039, 0.033, 0.026, 0.03, 0.04, 0.07, 0.032, 0.078, 0.028, 0.056, 0.045, 0.05, 0.04, 0.04, 0.031, 0.044, 0.038, 0.035, 0.029, 0.032, 0.059, 0.053, 0.034, 0.034, 0.122, 0.035, 0.05, 0.047, 0.096, 0.036, 0.026, 0.034, 0.043, 0.08, 0.065, 0.054, 0.079, 0.039, 0.036, 0.073, 0.034, 0.031, 0.042, 0.039, 0.053, 0.044, 0.05, 0.039, 0.414, 0.054, 0.037, 0.029, 0.036, 0.036, 0.042, 0.061, 0.037, 0.05, 0.055, 0.067, 0.012, 0.04, 0.038, 0.046, 0.048, 0.074, 0.041, 0.059, 0.171, 0.042, 0.037, 0.065, 0.03, 0.035, 0.194, 0.08, 0.048, 0.036, 0.049, 0.046, 0.039, 0.037, 0.035, 0.047, 0.037, 0.091, 0.035, 0.071, 0.071, 0.027, 0.047, 0.072, 0.034, 0.067, 0.051, 0.072, 0.023, 0.038, 0.025, 0.033, 0.053, 0.026, 0.024, 0.055, 0.23, 0.043, 0.057, 0.04, 0.083, 0.03, 0.03, 0.067, 0.029, 0.073, 0.074, 0.088, 0.029, 0.073, 0.04, 0.019, 0.075, 0.043, 0.045, 0.05, 0.049, 0.062, 0.094, 0.06, 0.034, 0.046, 0.071, 0.095, 0.036, 0.046, 0.036, 0.048, 0.087, 0.032, 0.043, 0.039, 0.031, 0.051, 0.043, 0.029, 0.038, 0.058, 0.062, 0.047, 0.058, 0.032, 0.078, 0.032, 0.034, 0.08, 0.034, 0.032, 0.084, 0.065, 0.137, 0.022, 0.04, 0.046, 0.055, 0.027, 0.04, 0.048, 0.031, 0.035, 0.078, 0.037, 0.042, 0.036, 0.093, 0.039, 0.077, 0.078, 0.042, 0.045, 0.081, 0.015, 0.051, 0.028, 0.045, 0.037, 0.035, 0.041, 0.027, 0.048, 0.042, 0.038, 0.038, 0.047, 0.017, 0.036, 0.038, 0.036, 0.074, 0.046, 0.044, 0.046, 0.037, 0.077, 0.029, 0.071, 0.025, 0.046, 0.041, 0.022, 0.047, 0.04, 0.044, 0.086, 0.045, 0.049, 0.071, 0.031, 0.054, 0.072, 0.04, 0.074, 0.05, 0.028, 0.028, 0.072, 0.055, 0.034, 0.047, 0.036, 0.055, 0.043, 0.031, 0.032, 0.057, 0.077, 0.068, 0.057, 0.045, 0.06, 0.077, 0.053, 0.056, 0.053, 0.038, 0.042, 0.053, 0.035, 0.031, 0.033, 0.049, 0.078, 0.04, 0.06, 0.042, 0.08, 0.031, 0.044, 0.032, 0.044, 0.055, 0.044, 0.04, 0.037, 0.087, 0.043, 0.078, 0.032, 0.047, 0.035, 0.062, 0.413, 0.034, 0.028, 0.033, 0.032, 0.077, 0.021, 0.031, 0.044, 0.056, 0.078, 0.214, 0.05, 0.062, 0.034, 0.031, 0.052, 0.04, 0.031, 0.034, 0.029, 0.043, 0.041, 0.034, 0.067, 0.074, 0.033, 0.054, 0.034, 0.043, 0.04, 0.027, 0.071, 0.053, 0.035, 0.045, 0.032, 0.035, 0.044, 0.057, 0.033, 0.036, 0.06, 0.058, 0.11, 0.032, 0.044, 0.132, 0.038, 0.038, 0.08, 0.035, 0.093, 0.043, 0.176, 0.054, 0.041, 0.046, 0.255, 0.085, 0.021, 0.036, 0.055, 0.079, 0.076, 0.039, 0.028, 0.051, 0.088, 0.033, 0.033, 0.047, 0.044, 0.043, 0.049, 0.031, 0.083, 0.04, 0.043, 0.07, 0.025, 0.034, 0.084, 0.037, 0.076, 0.046, 0.044, 0.063, 0.037, 0.049, 0.024, 0.046, 0.039, 0.041, 0.118, 0.117, 0.036, 0.028, 0.064, 0.038, 0.03, 0.022, 0.045, 0.044, 0.036, 0.054, 0.05, 0.026, 0.043, 0.036, 0.032, 0.074, 0.027, 0.053, 0.048, 0.077, 0.038, 0.065, 0.029, 0.027, 0.036, 0.027, 0.022, 0.042, 0.042, 0.056, 0.039, 0.027, 0.051, 0.035, 0.076, 0.048, 0.033, 0.152, 0.057, 0.092, 0.036, 0.085, 0.027, 0.023, 0.04, 0.041, 0.085, 0.243, 0.084, 0.039, 0.043, 0.036, 0.021, 0.045, 0.033, 0.046, 0.037, 0.029, 0.065, 0.081, 0.044, 0.067, 0.028, 0.062, 0.053, 0.054, 0.053, 0.123, 0.031, 0.082, 0.048, 0.059, 0.075, 0.077, 0.045, 0.097, 0.041, 0.069, 0.05, 0.031, 0.053, 0.037, 0.066, 0.061, 0.042, 0.036, 0.052, 0.073, 0.029, 0.047, 0.031, 0.037, 0.036, 0.105, 0.045, 0.035, 0.075, 0.05, 0.057, 0.026, 0.118, 0.034, 0.034, 0.042, 0.039, 0.031, 0.097, 0.075, 0.052, 0.03, 0.037, 0.035, 0.075, 0.078, 0.067, 0.042, 0.078, 0.076, 0.049, 0.118, 0.041, 0.089, 0.059, 0.073, 0.036, 0.044, 0.053, 0.031, 0.034, 0.044, 0.043, 0.034, 0.076, 0.035, 0.07, 0.046, 0.037, 0.048, 0.043, 0.03, 0.084, 0.097, 0.046, 0.063, 0.03, 0.332, 0.033, 0.053, 0.041, 0.061, 0.024, 0.035, 0.034, 0.047, 0.091, 0.052, 0.067, 0.021, 0.216, 0.053, 0.121, 0.035, 0.114, 0.048, 0.046, 0.051, 0.066, 0.046, 0.025, 0.031, 0.119, 0.109, 0.021, 0.053, 0.041, 0.02, 0.05, 0.067, 0.031, 0.041, 0.086, 0.036, 0.029, 0.022, 0.053, 0.038, 0.056, 0.086, 0.057, 0.026, 0.034, 0.033, 0.032, 0.03, 0.06, 0.039, 0.047, 0.032, 0.028, 0.043, 0.04, 0.032, 0.046, 0.042, 0.117, 0.05, 0.035, 0.027, 0.058, 0.049, 0.083, 0.032, 0.044, 0.038, 0.084, 0.051, 0.047, 0.045, 0.12, 0.079, 0.031, 0.04, 0.035, 0.039, 0.055, 0.032, 0.045, 0.026, 0.034, 0.083, 0.071, 0.037, 0.033, 0.045, 0.046, 0.055, 0.048, 0.034, 0.083, 0.03, 0.03, 0.05, 0.048, 0.036, 0.029, 0.036, 0.027, 0.057, 0.046, 0.035, 0.046, 0.045, 0.075, 0.033, 0.082, 0.085, 0.043, 0.049, 0.032, 0.055, 0.16, 0.079, 0.034, 0.03, 0.051, 0.048, 0.047, 0.038, 0.053, 0.055, 0.069, 0.048], \"xaxis\": \"x2\", \"y\": [0.33396714643252134, 0.5044440900554997, 0.8874896900044845, 0.4686759077780351, 0.23831547366416572, 0.571181601185031, 0.7785327680196316, 0.7290551099174598, 0.9581131370131553, 0.6801000322064107, 0.413367674560271, 0.6667140739211237, 0.9108229754863395, 0.9275086157065797, 0.9186958597750785, 0.7191871442695774, 0.8184457509658746, 0.8597940676688322, 0.7947045908306632, 0.8244149680645384, 0.42771531534877594, 0.5315376696882942, 0.7136291946100958, 0.5510697799054304, 0.6393262665313312, 0.9016582766249417, 0.8560880110261746, 0.8947361144883382, 0.9102326114023062, 0.840723585394272, 0.9264645566705582, 0.5105903360131552, 0.752648770317166, 0.5855954083225455, 0.8989214048388485, 0.5190750352404293, 0.9560713253502463, 0.7273157243430202, 0.9279672131348602, 0.640103147954212, 0.9158977434209615, 0.9035955072010529, 0.7140955379655831, 0.233508355491505, 0.7280578325574358, 0.8810827811902006, 0.3966129217085586, 0.15541760955422754, 0.5851621750323275, 0.9046111951917862, 0.4177213302712193, 0.7993763114768937, 0.6978409661933959, 0.6473373667551029, 0.770784382977056, 0.6500641275496193, 0.548949563093737, 0.9803199442553986, 0.6150775052067382, 0.391333092160729, 0.6966682278280982, 0.9426748402861506, 0.9170092977635526, 0.844625652038695, 0.5621782696252592, 0.8935808323282117, 0.6792214086077275, 0.6719996755401956, 0.5252591274442797, 0.7277045758687855, 0.4685752957996948, 0.8616549355667619, 0.347491516391863, 0.8224130863808733, 0.5340790568488665, 0.6711667658766297, 0.5277539611022016, 0.7226430813715845, 0.8140972745487615, 0.3280236940194876, 0.9543080196225542, 0.7752655593026647, 0.9223925066666061, 0.8588031784191832, 0.6345107008491314, 0.9393010047953068, 0.7897067132703484, 0.8608062836413887, 0.8367885032124018, 0.38555642305179116, 0.8611944449682004, 0.9172341012895443, 0.9206892306522243, 0.9500505925695213, 0.537798347971205, 0.9173482789702866, 0.44454351342386716, 0.8909704850569525, 0.7351932580165473, 0.6818328744935735, 0.7981559962965634, 0.7626532952948841, 0.807353254900461, 0.964411205143099, 0.4685752957996948, 0.6986526320119215, 0.1956969407137045, 0.9233481403380283, 0.8218375601976645, 0.8536269727611236, 0.5637680470866036, 0.42267134533232753, 0.93003590801509, 0.9364808605729722, 0.8816060831574614, 0.9663102962713933, 0.8345570787709832, 0.4997893986747249, 0.7921603237806832, 0.5586815647381762, 0.8622246464681924, 0.9828719612298703, 0.909295720392338, 0.9476267884443668, 0.5395521774612226, 0.901360886913609, 0.39410444510430487, 0.9262213132200262, 0.6627387433216217, 0.9629433821448677, 0.9614311452267452, 0.9802968012486629, 0.933760787013923, 0.34432718187202205, 0.63596173557573, 0.624364378916488, 0.7417789548241253, 0.7300918276682445, 0.6968315453320488, 0.7840233885688647, 0.8958841271622066, 0.5417426694559925, 0.7102579146160282, 0.6004345411549624, 0.515920701757342, 0.7587882454650442, 0.5029588531082266, 0.6887596776945688, 0.8642849605932809, 0.6469572639767995, 0.8103639651534781, 0.939764354405301, 0.694136577696587, 0.6593725303534554, 0.9646797005081557, 0.7979900311745153, 0.792123904710467, 0.8869579700149332, 0.7351250317969437, 0.5332560471205093, 0.9406873315653421, 0.39362685027924615, 0.9466602521798594, 0.8394325033041952, 0.6633442657978572, 0.8126408700417265, 0.7332457619716184, 0.08024070404520958, 0.8667774471450977, 0.6466814331404849, 0.912366876100516, 0.656670904734599, 0.8701678467707724, 0.8875925797813499, 0.9658725076002231, 0.7668332861852056, 0.8604440887473094, 0.934384507524058, 0.9605946056867319, 0.951253157591183, 0.5749289095213865, 0.6279243005170476, 0.7937202818717513, 0.7665301650725991, 0.700127941221274, 0.8531107444728586, 0.7947045908306632, 0.8870566665876504, 0.5476228787844645, 0.8410401833568673, 0.8736671065238262, 0.6519898659949606, 0.936943112068646, 0.9077719201719568, 0.8071889556778997, 0.8815615400732472, 0.8935313268029127, 0.8782891297971865, 0.5029588531082266, 0.5797201450332624, 0.9416775458320723, 0.5958140198486584, 0.2485157288688957, 0.932021424688801, 0.8531502837407814, 0.6344194678828672, 0.632587077283238, 0.9121448358615357, 0.5776545535910985, 0.9052765174806566, 0.8580390107418799, 0.8998644401112552, 0.6784536879503494, 0.9458342431661766, 0.21387363850783603, 0.9530348339880965, 0.7307391114165022, 0.7187682731289255, 0.6905635603269331, 0.9569274903702625, 0.9287384091375525, 0.3856984054091925, 0.504413920551941, 0.5389739198483336, 0.5921068831639978, 0.10702848140489757, 0.8772993497727819, 0.6361944011057532, 0.8952999713010865, 0.7069578609115064, 0.10632960186243966, 0.6465592619811017, 0.9116333268133815, 0.9210441535829985, 0.9483358221641291, 0.5800224234700003, 0.896951343689222, 0.8958659323404018, 0.8896861436466836, 0.7763142135369961, 0.778627444633172, 0.9274605647284293, 0.9167924025380936, 0.6422094408272838, 0.6363725079258666, 0.8694129796739031, 0.5693182102579236, 0.5315376696882942, 0.6814536952243052, 0.30089534057709466, 0.6689448970920832, 0.6419522618821227, 0.6500641275496193, 0.8221968069187356, 0.9285763346020383, 0.8495153837633861, 0.7135666997345446, 0.8850789772017983, 0.9128367188568884, 0.8709442503982084, 0.44714680104169846, 0.7147831401969469, 0.6814536952243052, 0.5823319261018008, 0.7718122970862826, 0.8925058444773368, 0.9249991097277733, 0.7849066379312727, 0.5120166815330335, 0.7863291630268572, 0.8171821177205619, 0.8878235148823457, 0.9813953955585096, 0.5009899161211654, 0.6787020040856314, 0.2747106808400709, 0.6998114428322438, 0.7191783799678735, 0.7566715075843347, 0.7741630673610131, 0.692871858980435, 0.8706970297938403, 0.9226518689226377, 0.619213859232465, 0.9620625840847012, 0.8161066853745392, 0.7984578805051198, 0.8987836568806694, 0.27900511725120763, 0.747868261422589, 0.8013372150606806, 0.4430395412241901, 0.8082746512504794, 0.9248395818955686, 0.8132668978866627, 0.7926355964369082, 0.7243101498981422, 0.8251498778038484, 0.865753667016409, 0.8784859927081519, 0.9613966942665844, 0.8380103992838959, 0.9376908870460701, 0.8505645904112248, 0.5317253080143199, 0.8756470416862959, 0.8823120896825394, 0.8920529250761863, 0.9565288857220365, 0.92576324319171, 0.8397457208604353, 0.8008835764985612, 0.7620555647282774, 0.6333567796033132, 0.8986985644274655, 0.8289197139212982, 0.38568054861828666, 0.4358764146033148, 0.7013568331933456, 0.5524769805317635, 0.8654015550049637, 0.9625385348003681, 0.4997035751430624, 0.5940434106189647, 0.29640429037896177, 0.9370396801623051, 0.7496358493500708, 0.8521916566704996, 0.7519935213994349, 0.8956127660014477, 0.7563308848917781, 0.5425355780301907, 0.1652985164032473, 0.5777375433929663, 0.5926841497777402, 0.5247451599628447, 0.6215406511606532, 0.646742228322253, 0.5236567091352762, 0.8105889943537302, 0.7614647275399787, 0.7272264480694343, 0.44438282424164377, 0.8051848688934031, 0.253979247575754, 0.8737269176380216, 0.7884186533408385, 0.5226162157005312, 0.7776146375974927, 0.8021344726910251, 0.6794204065079696, 0.8398669626756513, 0.3743394998756179, 0.6593725303534554, 0.41008410759983227, 0.8726624594592295, 0.31336232876890546, 0.6187135046228962, 0.9208146539756937, 0.8948907807194619, 0.9475948217130945, 0.7098971478357265, 0.41970311630379203, 0.5524505095188592, 0.6689295490636696, 0.39534528644804523, 0.6686700461744643, 0.6608417181144597, 0.6289006219381473, 0.8112353209803558, 0.9675531845963172, 0.3468688843876404, 0.8171815196180959, 0.9315945487332388, 0.7612383340144859, 0.43979370974717685, 0.9452166580978265, 0.810349906376065, 0.4979189466877109, 0.9054024939516333, 0.7506263221664519, 0.8595966107872783, 0.9041757536760852, 0.5120166815330335, 0.9246344940597735, 0.622364539475366, 0.7975959936185795, 0.9376528402833735, 0.8270495791839716, 0.7463426393970082, 0.8508295060861325, 0.5277539611022016, 0.7926521549058593, 0.8343380415579561, 0.7973631232158779, 0.5423298306356671, 0.6253812669856891, 0.9342151247863544, 0.9064095870896521, 0.8428584418618921, 0.5680191878381406, 0.8230633503438987, 0.857993972512287, 0.8312116035859974, 0.8886868130574391, 0.5695902702544526, 0.8750573328895943, 0.47134086624147714, 0.6082670858563528, 0.8571520978358925, 0.7006810412396262, 0.6001343818465046, 0.8680196363335714, 0.7833148206731655, 0.835330250744176, 0.6883000602161935, 0.4297997702781997, 0.7132181587745201, 0.941909753873568, 0.9298379484442667, 0.8950633078112005, 0.9652574497835966, 0.8593048115498744, 0.23022113319019433, 0.5548683876071567, 0.8789570823277312, 0.7176343272433334, 0.7135972690872326, 0.900955402304434, 0.89110615578316, 0.8021344726910251, 0.36734125225010755, 0.9233813125795639, 0.9269988231022361, 0.6021478506882372, 0.27064660283581765, 0.7595966254948197, 0.5317253080143199, 0.9626288904553877, 0.518871521713375, 0.4244151934213653, 0.8784852709235653, 0.667697582798242, 0.6791650855490978, 0.8659372985570389, 0.5217980090164113, 0.9757802673562255, 0.20769640873195563, 0.6900575067285889, 0.15051833553221247, 0.8476988333501053, 0.12043274000614122, 0.6546311715671466, 0.412102187638673, 0.6339696776630096, 0.6925917751558638, 0.8074446941396305, 0.8417042066658985, 0.4702054036006336, 0.8107456318417504, 0.934253622333564, 0.9671353887875448, 0.3776875782453083, 0.5133306968464912, 0.8279918435672958, 0.7295730380004212, 0.8398957027397556, 0.7470826509089123, 0.7722124156410631, 0.3944809481034696, 0.5801047158883857, 0.7134138458261836, 0.8265590446981121, 0.5836238058504062, 0.7538957359152121, 0.9708936701567454, 0.41507295289487073, 0.9039211350062085, 0.5109703825452502, 0.8880660412534, 0.6332514250278477, 0.703270618172154, 0.863031725372896, 0.9601349291832292, 0.5845797646527732, 0.8357575010967041, 0.9584406458449958, 0.8733333206292072, 0.4740801794177068, 0.5787650908025566, 0.38525623454815555, 0.5715075300165849, 0.951253157591183, 0.831291834366621, 0.6482062646591596, 0.5447536045265621, 0.8456825404777587, 0.5358725178581014, 0.8893400405584444, 0.5955893395860203, 0.9408369636189147, 0.7580589814818564, 0.4244151934213653, 0.7636885291754726, 0.9532052815091139, 0.6686700461744643, 0.39683939049776734, 0.8309978518015588, 0.06774730328187532, 0.8934061610794648, 0.9459413258233057, 0.8507977517004935, 0.9694554821790147, 0.8640493534313302, 0.8409166048571896, 0.9059760843724536, 0.7278052027863667, 0.8952246802917138, 0.39534528644804523, 0.9558702864115934, 0.9178754126151818, 0.7504628435478695, 0.7568870052952757, 0.32046258648166903, 0.9712495894387816, 0.7125870341029702, 0.8286889773580812, 0.929575727770858, 0.8422483936479932, 0.60065365322741, 0.5775074082600717, 0.7505976846167132, 0.5317253080143199, 0.9590110623565244, 0.9651712957082627, 0.7333643603414158, 0.7757825668725274, 0.8928390517037824, 0.2578168736401774, 0.5355488836719776, 0.8408692583280314, 0.7849780542174357, 0.8711681462620556, 0.8447990405440073, 0.9571933326515756, 0.9307123551507692, 0.6421242495412457, 0.9239207054420927, 0.9336219461922934, 0.4244151934213653, 0.5673643045526261, 0.8301442064454496, 0.528471943574542, 0.8835542071774324, 0.8820947700128993, 0.4561713647735051, 0.584381944856391, 0.9493936477483658, 0.7816316980556022, 0.7770145472448273, 0.8495153837633861, 0.8318035560268552, 0.5220388622338656, 0.8589980209217414, 0.21216021099657945, 0.8782303617207965, 0.901850575196968, 0.7683760396387002, 0.9559989503713009, 0.938411491366706, 0.7225398931917507, 0.5918361617892179, 0.8596378534897678, 0.8816239240572568, 0.9296844522785247, 0.8299758417251202, 0.7538846798551382, 0.931253582726863, 0.6902425303942638, 0.9299571155275668, 0.35461708236434614, 0.6119587629530028, 0.8979450471026776, 0.8782891297971865, 0.6144930729026484, 0.5601837238662909, 0.4230258756549153, 0.5115702372514986, 0.6133200318312215, 0.8287048127179734, 0.42887934024879554, 0.5543929044930882, 0.5414149972460248, 0.7453725251924848, 0.6522898344923613, 0.6445138145159856, 0.9212190995841192, 0.6991293681294938, 0.9188224881967051, 0.9444881948020799, 0.8399825546316605, 0.6440269003431431, 0.45260210695563535, 0.6678228102737954, 0.8535669746933884, 0.23469888428232324, 0.7581156815660375, 0.8329520097124233, 0.5886389680190937, 0.4250130050586104, 0.290761161529129, 0.9065968169685268, 0.39757013049667705, 0.9584529405260903, 0.24804178200132845, 0.8400605958344816, 0.9562762484868867, 0.5923100188758571, 0.5355488836719776, 0.6866862751474886, 0.753715093249364, 0.9302702282582556, 0.8405005145861136, 0.7758456574858743, 0.8270123797965384, 0.9270997487744173, 0.8779999285967196, 0.6350604679157676, 0.9057987369792326, 0.9732730617650076, 0.28007269673131574, 0.5393237551960537, 0.9509318156255189, 0.8055358405733448, 0.8512314640165554, 0.6752183046546253, 0.9766791413071304, 0.26893819095773785, 0.5105552073939665, 0.7964242570425004, 0.9159462749375985, 0.46312559485344046, 0.7889853219989779, 0.5331772070153998, 0.6250130361556073, 0.5340700079782073, 0.8981158701031157, 0.8424802355113449], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [0.088, 0.06, 0.036, 0.04, 0.043, 0.048, 0.032, 0.078, 0.078, 0.063, 0.054, 0.036, 0.039, 0.048, 0.054, 0.046, 0.052, 0.098, 0.032, 0.03, 0.036, 0.036, 0.035, 0.065, 0.04, 0.035, 0.083, 0.054, 0.028, 0.044, 0.04, 0.077, 0.081, 0.072, 0.054, 0.045, 0.078, 0.079, 0.055, 0.066, 0.026, 0.073, 0.069, 0.047, 0.048, 0.048, 0.076, 0.118, 0.051, 0.025, 0.046, 0.084, 0.034, 0.094, 0.084, 0.077, 0.074, 0.095, 0.04, 0.043, 0.095, 0.037, 0.048, 0.098, 0.098, 0.06, 0.414, 0.076, 0.102, 0.072, 0.115, 0.046, 0.036, 0.088, 0.031, 0.04, 0.052, 0.029, 0.044, 0.074, 0.062, 0.078, 0.045, 0.084, 0.04, 0.028, 0.037, 0.044, 0.041, 0.071, 0.05, 0.043, 0.091, 0.045, 0.08, 0.137, 0.035, 0.17, 0.062, 0.04, 0.092, 0.027, 0.046, 0.073, 0.047, 0.062, 0.146, 0.057, 0.051, 0.045, 0.069, 0.059, 0.078, 0.053, 0.038, 0.029, 0.051, 0.158, 0.05, 0.105, 0.044, 0.028, 0.051, 0.082, 0.076, 0.088, 0.036, 0.034, 0.076, 0.047, 0.016, 0.054, 0.045, 0.036, 0.082, 0.047, 0.053, 0.077, 0.086, 0.041, 0.036, 0.04, 0.031, 0.036, 0.071, 0.049, 0.057, 0.066, 0.079, 0.057, 0.034, 0.048, 0.07, 0.045, 0.076, 0.057, 0.035, 0.046, 0.052, 0.211, 0.089, 0.063, 0.039, 0.038, 0.086, 0.031, 0.036, 0.036, 0.046, 0.052, 0.058, 0.062, 0.049, 0.042, 0.073, 0.033, 0.048, 0.044, 0.047, 0.042, 0.033, 0.041, 0.098, 0.048, 0.06, 0.032, 0.212, 0.034, 0.046, 0.053, 0.078, 0.05, 0.038, 0.039, 0.041, 0.08, 0.051, 0.043, 0.051, 0.094, 0.05, 0.051, 0.06, 0.052, 0.023, 0.045, 0.046, 0.077, 0.042, 0.041, 0.052, 0.053, 0.064, 0.046, 0.048, 0.017, 0.063, 0.036, 0.174, 0.046, 0.043, 0.053, 0.046, 0.045, 0.055, 0.037, 0.088, 0.059, 0.042, 0.068, 0.066, 0.043, 0.05, 0.037, 0.09, 0.056, 0.038, 0.039, 0.045, 0.045, 0.096, 0.094, 0.057, 0.054, 0.041, 0.041, 0.06, 0.045, 0.042, 0.048, 0.08, 0.065, 0.029, 0.045, 0.142, 0.038, 0.054, 0.061, 0.105, 0.099, 0.114, 0.044, 0.046, 0.046, 0.053, 0.053, 0.044, 0.044, 0.036, 0.055, 0.053, 0.092, 0.037, 0.057, 0.044, 0.042, 0.049, 0.082, 0.089, 0.071, 0.081, 0.044, 0.023, 0.044, 0.176, 0.032, 0.045, 0.053, 0.052, 0.081, 0.056, 0.044, 0.055, 0.077, 0.05, 0.064, 0.032, 0.046, 0.057, 0.095, 0.028, 0.093, 0.046, 0.043, 0.056, 0.03, 0.09, 0.05, 0.059, 0.054, 0.079, 0.084, 0.046, 0.046, 0.059, 0.05, 0.073, 0.052, 0.042, 0.042, 0.085, 0.066, 0.059, 0.043, 0.088, 0.053, 0.066, 0.075, 0.038, 0.036, 0.079, 0.051, 0.036, 0.033, 0.071, 0.036, 0.037, 0.058, 0.05, 0.043, 0.046, 0.078, 0.076, 0.08, 0.2, 0.036, 0.05, 0.088, 0.05, 0.036, 0.053, 0.031], \"xaxis\": \"x2\", \"y\": [0.8142007211296887, 0.07257977436397642, 0.7430932382113554, 0.8214862427787604, 0.5698848321031316, 0.6048119589659149, 0.6466669219762841, 0.14510080060429495, 0.2250304680670007, 0.28492472637839966, 0.42061632734231896, 0.8281252124183194, 0.49622399336621903, 0.3482895521074759, 0.4678833354511545, 0.5708968386647719, 0.37048677721847617, 0.553632248395139, 0.8702137350251022, 0.42186952587750404, 0.8696774950675754, 0.5410576963494411, 0.3971326977900686, 0.3275001196198921, 0.9448289227093116, 0.7109941475090589, 0.41925580570138304, 0.3675472469853882, 0.6721911818800557, 0.5562207270314473, 0.5262426608517637, 0.3244609607385458, 0.15056615442564347, 0.15676979724311627, 0.6037730696030339, 0.6342511279653397, 0.021947035536558718, 0.32429164429335744, 0.5678746850743716, 0.3571680467137555, 0.7755534309390314, 0.3240287891037917, 0.699424662214302, 0.5151532452376618, 0.7564675819717819, 0.38343591026479057, 0.19811005648518398, 0.3168419703358067, 0.5315947262677626, 0.9269044449273315, 0.8260225289794664, 0.451791899378283, 0.830516920403184, 0.47128602930186, 0.19027823806377472, 0.5181346713949518, 0.29552777318700446, 0.45414400334446664, 0.39329840463575844, 0.42327932510626076, 0.45838907164509224, 0.2233864252642039, 0.3628419195926303, 0.6709353200988277, 0.46058046365566996, 0.25551237833043455, 0.7234147543269824, 0.1481282262733752, 0.314935793994079, 0.20050531530561894, 0.37453315488553635, 0.701015529968035, 0.6343341418527783, 0.1739320900588749, 0.734996253073231, 0.8172229478314255, 0.3598554146739685, 0.7121055211356295, 0.2620604909731644, 0.3421138035730516, 0.6951268813066005, 0.35208221297891723, 0.452099210446082, 0.18907620085798427, 0.5444201651108793, 0.6484058972837882, 0.3258186925596978, 0.5963383680780668, 0.6202666247822538, 0.576738593946626, 0.5054992484109841, 0.2972245631729925, 0.6844333356791464, 0.42629475072919953, 0.4405153833121037, 0.01207867704715336, 0.7609288944606691, 0.23951123982998349, 0.09310514674080905, 0.5084920166510624, 0.33067609257366243, 0.36481899584296196, 0.5708968386647719, 0.3194802059637459, 0.14207297841267416, 0.5776897120055972, 0.2026163425795633, 0.37909000048748537, 0.38206764842015895, 0.41324683104354176, 0.17826143731067332, 0.42339414872454434, 0.39148091864802853, 0.3511350413575442, 0.8053393751847749, 0.5937005322868365, 0.6849942580153355, 0.38930033076762494, 0.5168500865319015, 0.5699073288866824, 0.5376087249833421, 0.8185832461647057, 0.25950508036415604, 0.20394483716883388, 0.3303044530853749, 0.2528102968078532, 0.8477719856767125, 0.5217124250004609, 0.3303044530853749, 0.5382885532339231, 0.9625763866028243, 0.6536174904341296, 0.42629475072919953, 0.6458781618432388, 0.46574001023909845, 0.37268733756108086, 0.8180085473348132, 0.35493594975273335, 0.2423640089427935, 0.3636330633241046, 0.6421622311157122, 0.5444201651108793, 0.7396308412796291, 0.9036153464846048, 0.21101569987323432, 0.6004024464464508, 0.7595861882737439, 0.486549602332862, 0.2379839758891197, 0.5147825233229498, 0.2065932277190248, 0.4342628292980428, 0.5940848250235929, 0.4857193175270624, 0.5332610244722983, 0.5402196969638672, 0.8578846895389459, 0.5290225674595067, 0.6074669506688956, 0.1847839155105034, 0.3581391437324269, 0.4304380754474639, 0.8410120374942113, 0.5810086483513661, 0.19026233744636453, 0.7223494520380469, 0.8589928738613049, 0.8374625942163022, 0.781203852328267, 0.73983195178881, 0.41156537259256004, 0.7482873396984137, 0.44431713201158524, 0.7113673874393347, 0.49869552495399233, 0.7627102864663872, 0.37193390769028617, 0.37187810520956766, 0.3773291605703562, 0.8719651627687759, 0.6218762459828849, 0.3781393537983126, 0.553632248395139, 0.47624084907999176, 0.774399353278846, 0.5840424935194366, 0.5601025471409736, 0.6186690618327106, 0.620611700356168, 0.5755798886129706, 0.15047650536569443, 0.5530049338021776, 0.6597439619439023, 0.8300222117931148, 0.3490158529243493, 0.4410646109528086, 0.5067909967309752, 0.5851482063434866, 0.7149827463187939, 0.4849259975950144, 0.2094210588097294, 0.33399024531412796, 0.4083143545243069, 0.7497022835596558, 0.7817929239213606, 0.7637421953724776, 0.3825655414920891, 0.6611482494098961, 0.19022241257108333, 0.44972084577511023, 0.5476732603321269, 0.4831274653996314, 0.5077048340566679, 0.7289504589448288, 0.4379810490617926, 0.8017221455714771, 0.6434673631716396, 0.5059779734745421, 0.6065367192264559, 0.650368705032214, 0.34567471266024347, 0.39561589000187136, 0.3427787545601037, 0.4676404271158623, 0.5332283386400669, 0.4519108142444285, 0.40662831629925006, 0.42305576187259053, 0.22032895172816622, 0.5278715769330472, 0.43679486629948455, 0.743933429392776, 0.5269515041023835, 0.5008800654866953, 0.214168174561682, 0.44879088851457377, 0.683485355417811, 0.807753104897186, 0.42629475072919953, 0.8502951424821861, 0.17421175568219957, 0.25491371883486935, 0.7595861882737439, 0.6571724132942184, 0.7813188949129265, 0.5626906653340306, 0.8674288259883418, 0.6600514650598344, 0.4827749661719035, 0.5456147119159479, 0.39827550056677263, 0.27323823737433794, 0.695896529362927, 0.5048820477254727, 0.5422349097465021, 0.5610936746718964, 0.6571724132942184, 0.3088751107498249, 0.45428761266464013, 0.6604471727860799, 0.43371621376298963, 0.6171893197168647, 0.8100511550343341, 0.8100511550343341, 0.605832578461134, 0.5526475584669951, 0.4275055171336787, 0.8734720021260204, 0.8508295378350301, 0.5807723706867254, 0.8272749548927728, 0.2670652478909882, 0.7020144194675465, 0.4615566916191992, 0.7055847950248242, 0.43389869234556755, 0.6071692164257629, 0.3496825637352313, 0.23676491619791426, 0.7057755976874825, 0.15539001443149586, 0.6187538615870153, 0.8735882828904331, 0.30049486749739024, 0.23191705420611952, 0.8913917397916864, 0.4977157214618499, 0.16961113509580228, 0.8485494795219795, 0.4760032757956232, 0.5053843099270294, 0.2676015269871764, 0.3627664421236291, 0.15146266807038725, 0.7898179638281774, 0.6145296307645981, 0.3790380236797623, 0.3003532640340299, 0.6086112016774773, 0.39906793889171593, 0.8185832461647057, 0.6715802865662828, 0.8260225289794664, 0.6056902064850618, 0.400132762133902, 0.39471961640683584, 0.6449859309106076, 0.5637152910565628, 0.39949420960438964, 0.5490401551410112, 0.4398875418860128, 0.30916577334906253, 0.7093303227687476, 0.4562508424819209, 0.40444044759428516, 0.5773483646962835, 0.447777692034652, 0.4961542215384683, 0.32474312180562226, 0.21192693199409943, 0.9056903490933487, 0.5013816399998683, 0.758876109553896, 0.6364928148646596, 0.2952804752502578, 0.4748951900520853, 0.43679486629948455, 0.5479962315186364, 0.4728142838839701, 0.6343341418527783, 0.12248807650217919, 0.5052525886146573, 0.8281252124183194, 0.8930081609652758, 0.36283726088930296, 0.8098196742550625, 0.656477404357746, 0.193885049884708, 0.5269515041023835, 0.49858469647139786, 0.32780472036158087, 0.24927512797396847, 0.6148718578314069, 0.10691527318901187, 0.136775438340409, 0.8489192718114075, 0.2600203086082801, 0.8142007211296887, 0.5269515041023835, 0.7966615933629455, 0.5633234794197017, 0.767479452333631], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"chlorides\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"chlorides\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}, \"chlorides_bad\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (ref)\", \"type\": \"scatter\", \"x\": [0.05, 0.044, 0.031, 0.09, 0.091, 0.086, 0.043, 0.09, 0.053, 0.054, 0.068, 0.041, 0.039, 0.05, 0.052, 0.117, 0.08, 0.172, 0.05, 0.081, 0.049, 0.048, 0.086, 0.028, 0.067, 0.092, 0.041, 0.088, 0.044, 0.054, 0.068, 0.04, 0.039, 0.039, 0.06, 0.059, 0.039, 0.045, 0.07, 0.045, 0.112, 0.104, 0.047, 0.055, 0.107, 0.059, 0.051, 0.032, 0.047, 0.076, 0.077, 0.061, 0.138, 0.089, 0.053, 0.239, 0.045, 0.048, 0.142, 0.08, 0.05, 0.055, 0.067, 0.05, 0.097, 0.047, 0.043, 0.077, 0.076, 0.024, 0.045, 0.08, 0.051, 0.041, 0.044, 0.033, 0.039, 0.062, 0.098, 0.026, 0.05, 0.037, 0.049, 0.082, 0.068, 0.112, 0.041, 0.047, 0.044, 0.044, 0.08, 0.044, 0.085, 0.051, 0.066, 0.044, 0.055, 0.058, 0.048, 0.056, 0.056, 0.082, 0.034, 0.054, 0.069, 0.467, 0.042, 0.038, 0.045, 0.044, 0.066, 0.027, 0.069, 0.029, 0.082, 0.096, 0.047, 0.047, 0.08, 0.049, 0.047, 0.048, 0.049, 0.038, 0.05, 0.056, 0.041, 0.064, 0.092, 0.04, 0.037, 0.105, 0.209, 0.047, 0.045, 0.063, 0.026, 0.055, 0.05, 0.08, 0.034, 0.039, 0.037, 0.04, 0.041, 0.051, 0.093, 0.04, 0.084, 0.073, 0.052, 0.087, 0.04, 0.079, 0.06, 0.084, 0.105, 0.044, 0.036, 0.03, 0.035, 0.087, 0.07, 0.052, 0.078, 0.034, 0.05, 0.055, 0.108, 0.045, 0.046, 0.053, 0.07, 0.043, 0.1, 0.068, 0.08, 0.042, 0.074, 0.044, 0.05, 0.082, 0.053, 0.056, 0.047, 0.044, 0.052, 0.031, 0.037, 0.044, 0.096, 0.039, 0.047, 0.032, 0.049, 0.084, 0.055, 0.061, 0.049, 0.09, 0.046, 0.205, 0.205, 0.059, 0.046, 0.05, 0.046, 0.083, 0.049, 0.027, 0.05, 0.047, 0.054, 0.056, 0.063, 0.044, 0.045, 0.03, 0.301, 0.034, 0.084, 0.04, 0.039, 0.049, 0.044, 0.052, 0.043, 0.057, 0.046, 0.075, 0.034, 0.04, 0.057, 0.085, 0.04, 0.026, 0.07, 0.02, 0.051, 0.043, 0.099, 0.066, 0.053, 0.24, 0.04, 0.09, 0.085, 0.043, 0.052, 0.07, 0.104, 0.042, 0.039, 0.092, 0.056, 0.047, 0.067, 0.039, 0.058, 0.091, 0.052, 0.052, 0.051, 0.062, 0.05, 0.046, 0.044, 0.049, 0.071, 0.073, 0.058, 0.29, 0.058, 0.044, 0.048, 0.04, 0.091, 0.041, 0.06, 0.04, 0.103, 0.081, 0.041, 0.07, 0.069, 0.046, 0.039, 0.054, 0.026, 0.048, 0.031, 0.05, 0.047, 0.029, 0.083, 0.111, 0.053, 0.056, 0.046, 0.081, 0.041, 0.047, 0.081, 0.05, 0.087, 0.042, 0.05, 0.08, 0.152, 0.098, 0.186, 0.031, 0.081, 0.05, 0.099, 0.048, 0.063, 0.084, 0.04, 0.114, 0.114, 0.048, 0.047, 0.08, 0.047, 0.048, 0.096, 0.046, 0.077, 0.042, 0.048, 0.08, 0.049, 0.052, 0.038, 0.077, 0.048, 0.073, 0.037, 0.054, 0.051, 0.052, 0.037, 0.079, 0.035, 0.074, 0.095, 0.046, 0.046, 0.046, 0.04, 0.07, 0.042, 0.049, 0.047], \"xaxis\": \"x\", \"y\": [0.7197707895473677, 0.05448058807241418, 0.5021256787650443, 0.4710854375480472, 0.7156076129280222, 0.7966690429773311, 0.7265425252145667, 0.16771266951545494, 0.610944103187451, 0.6324527530146118, 0.42180662537268765, 0.2598044700255929, 0.5503032830239416, 0.5632112185661304, 0.6840604465833231, 0.6224375641140001, 0.8071781895370533, 0.9515482366939344, 0.3994071349416132, 0.9677746238863042, 0.572587586261062, 0.7602674855798478, 0.861098734498427, 0.1386074727873, 0.6703360831713621, 0.8064003460928679, 0.3172728283240366, 0.8039094494444462, 0.9186426431335688, 0.6026275969807151, 0.8609701260317718, 0.3485833566260712, 0.3005246278528939, 0.2859113263741919, 0.4978204971029292, 0.5125675444128744, 0.4268860326359044, 0.11791793574572085, 0.440027850275134, 0.4938434408506086, 0.4933189622152446, 0.166194347192407, 0.30200278364192557, 0.6822425768461728, 0.8693180940701344, 0.24112389044610405, 0.43189370387303117, 0.284455178085937, 0.23793737479647703, 0.5535561322468214, 0.7900402576908969, 0.47373775892899717, 0.6055733033081183, 0.7462675017011632, 0.32245623572553406, 0.7612367841042231, 0.36308410170653527, 0.6103993963703384, 0.3965676277125745, 0.2230008284200371, 0.8480025164595866, 0.43585875500482685, 0.24095331994381775, 0.4030652094068704, 0.8951637220162157, 0.2782175630406618, 0.7337660836226194, 0.8352762102164887, 0.6223987562306759, 0.2928263700360406, 0.6563137004068428, 0.16155652477357085, 0.6364666355122575, 0.2186811050870735, 0.27206300237801306, 0.4358901152617537, 0.6136035252376228, 0.07900866299327158, 0.8522855318359817, 0.11906253414448076, 0.3466831105240652, 0.11265227152414181, 0.6302693732121377, 0.7168097665217413, 0.4796298258249143, 0.4476252306691143, 0.3612478268219491, 0.611861930499026, 0.15121036728507153, 0.5363393546692182, 0.16155652477357085, 0.441733396330222, 0.7834276811132227, 0.6364666355122575, 0.44873286860252337, 0.4948960601400133, 0.4172084246960842, 0.5055831714989107, 0.5269082808529498, 0.3737404408311804, 0.4491757516278906, 0.5266720849021, 0.2882430633103308, 0.6066213483726142, 0.83534933450756, 0.2509605867776752, 0.230738949997912, 0.25680675940048736, 0.6858999083789018, 0.27626495444752697, 0.35158671089680515, 0.311480105980391, 0.5950329577300569, 0.4196263877039489, 0.3672198477254309, 0.5488429300958864, 0.6273126624389191, 0.0990306898864649, 0.935036100419004, 0.5556828679884147, 0.6003916802566726, 0.1337843055401957, 0.6898191889393818, 0.46604488826349566, 0.6668872608045229, 0.5998672378660981, 0.14712454771937833, 0.8558065212045691, 0.883276495704891, 0.5544329747085402, 0.38398791005853006, 0.8623310715459079, 0.4482795971615686, 0.4767821080964978, 0.6451659669426603, 0.5099786295438409, 0.11454219273407718, 0.5691587732433696, 0.2398813672346335, 0.8592796956842923, 0.38133093816728936, 0.4754945767078651, 0.2673740541283356, 0.43092180164799054, 0.5981491184574936, 0.7512253043619477, 0.20474988026063612, 0.12337786436138054, 0.6965484670033051, 0.4642254518352117, 0.29034758521725457, 0.7912282271603185, 0.1364389858241727, 0.5326323768611896, 0.3938848007926149, 0.886984727126295, 0.5955398539691413, 0.3667393936023857, 0.35129461810907203, 0.578130474122496, 0.1952086434691429, 0.6982941690158907, 0.6159300986783536, 0.6650580695700093, 0.8007006003287879, 0.13750802167619447, 0.47121416359091395, 0.5691587732433696, 0.5295784007050042, 0.4938434408506086, 0.4240508430342457, 0.1531205555636086, 0.7965770364050346, 0.4829168465516456, 0.6333246955344933, 0.38682769986244625, 0.5589353890471914, 0.30965836575156913, 0.6133571507425741, 0.5363393546692182, 0.5474540697204298, 0.9680074395956593, 0.29703705077451537, 0.7566858385458134, 0.451244026180727, 0.6224939697452743, 0.9340693900855184, 0.1254375450851024, 0.770680513376406, 0.7273231109206828, 0.410671569380914, 0.19928392436820586, 0.44743622108127745, 0.4991477681643879, 0.5443787589855091, 0.826082779912576, 0.5642536294664222, 0.6762559922350657, 0.39283078357423706, 0.3074847569358159, 0.40732461839200396, 0.5614584986504241, 0.5614584986504241, 0.575628870274347, 0.1938881144566701, 0.6480440770440566, 0.23946299348505806, 0.6110142157087575, 0.32489046344192996, 0.127020290619695, 0.28948900574123104, 0.27970970921902805, 0.5179212029104148, 0.579807192000203, 0.5695619245525361, 0.7471497674522103, 0.6761943115269239, 0.6052803835931642, 0.9048996801452402, 0.632953623191418, 0.7849920634816455, 0.12946409768986655, 0.3899257470968539, 0.37735505673750047, 0.27206300237801306, 0.6356505945299911, 0.9000798247851504, 0.5852448485124296, 0.3537739535016634, 0.8589709040748648, 0.5105041430354158, 0.4760479563081992, 0.3915586115462193, 0.4344526143297297, 0.04825794875232026, 0.25106204840173363, 0.5352062615150248, 0.2084678736174792, 0.5588772074146924, 0.42656597432725707, 0.3395528272139201, 0.5154796814541086, 0.30312695461308037, 0.4684625037801391, 0.13140485141127656, 0.37575572516499556, 0.7087902803012941, 0.22740617784346517, 0.7932370230268412, 0.6977827466507267, 0.8687065743771458, 0.3532210556477622, 0.3005246278528939, 0.8817461779308045, 0.5897758288136841, 0.5117334773877459, 0.2267712913026929, 0.7462523759498982, 0.5055831714989107, 0.6276122794572256, 0.34766968675436505, 0.563322001169588, 0.4035281086421867, 0.44827723495654004, 0.7588644006503809, 0.17560197311170134, 0.2736156405730563, 0.5646478519097824, 0.12788772013874206, 0.8127608550985441, 0.35130933230290007, 0.8842329534318195, 0.5671758377024384, 0.508518787579709, 0.4735654621913231, 0.6614347321502836, 0.7032589073748752, 0.418601168771625, 0.40262233345395115, 0.38045938978299354, 0.6221728234115828, 0.6769388667590319, 0.825791915264051, 0.8036522945246104, 0.5350776523934957, 0.5038683203672731, 0.4187790963850706, 0.3942708224564714, 0.36585282612655, 0.42973128126448334, 0.1395024853671747, 0.36909778672938764, 0.5126700875045708, 0.31128511290513083, 0.5841805470690385, 0.42932394036482613, 0.5168725346003686, 0.9331527243268325, 0.5090935678835011, 0.848083892739094, 0.7288594688776423, 0.23463814542978878, 0.9073343486287574, 0.5445649372592127, 0.8030108083542629, 0.30698149193503155, 0.47724620771884374, 0.49565431290071005, 0.29179072192325783, 0.53941953634433, 0.32642767658125227, 0.5714063949384225, 0.6769388667590319, 0.48314991346809855, 0.3838692085325581, 0.7654355578102645, 0.6807995217458978, 0.7803105409218809, 0.4971816769068883, 0.5662837862370104, 0.32557907866588853, 0.4059739580227363, 0.8621668957327787, 0.4863555612469991, 0.44913520001249685, 0.5044088987161788, 0.018560580499064172, 0.17397747102053363, 0.8203404366189, 0.531551035274026, 0.3951880410340851, 0.6710839680909022, 0.7545393605546251, 0.25029771644034415, 0.31651464458218903, 0.7900402576908969, 0.7649542174153934, 0.6282404390050247, 0.5124469561170844, 0.7501741577575001, 0.3717170374651112, 0.5479204837841629, 0.1799627586960565, 0.8716748635647116, 0.4700369344869263, 0.7044722268129955, 0.7597806244765397, 0.4570971226262448, 0.3688130253756654, 0.5854022956087224, 0.6067015953642416, 0.6092966434658947, 0.5713009051869427, 0.15316343939585397, 0.31191498773739224], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [0.037, 0.054, 0.051, 0.039, 0.046, 0.086, 0.033, 0.032, 0.032, 0.071, 0.037, 0.069, 0.044, 0.049, 0.053, 0.061, 0.036, 0.1, 0.033, 0.035, 0.038, 0.034, 0.051, 0.034, 0.039, 0.048, 0.029, 0.033, 0.05, 0.029, 0.063, 0.062, 0.032, 0.045, 0.029, 0.05, 0.038, 0.03, 0.032, 0.02, 0.033, 0.05, 0.046, 0.035, 0.043, 0.058, 0.08, 0.029, 0.074, 0.033, 0.058, 0.044, 0.039, 0.042, 0.037, 0.076, 0.03, 0.02, 0.04, 0.034, 0.064, 0.035, 0.044, 0.042, 0.088, 0.085, 0.012, 0.047, 0.069, 0.02, 0.039, 0.032, 0.047, 0.05, 0.061, 0.05, 0.078, 0.034, 0.073, 0.038, 0.047, 0.032, 0.033, 0.035, 0.034, 0.035, 0.044, 0.086, 0.04, 0.084, 0.037, 0.035, 0.04, 0.044, 0.046, 0.031, 0.035, 0.035, 0.04, 0.046, 0.042, 0.05, 0.091, 0.05, 0.037, 0.048, 0.053, 0.048, 0.036, 0.064, 0.05, 0.053, 0.024, 0.054, 0.043, 0.021, 0.042, 0.052, 0.04, 0.074, 0.062, 0.052, 0.043, 0.053, 0.078, 0.084, 0.074, 0.045, 0.031, 0.084, 0.034, 0.036, 0.042, 0.08, 0.062, 0.035, 0.092, 0.062, 0.038, 0.092, 0.049, 0.041, 0.046, 0.04, 0.084, 0.044, 0.036, 0.031, 0.077, 0.051, 0.051, 0.073, 0.036, 0.046, 0.051, 0.038, 0.043, 0.042, 0.027, 0.039, 0.036, 0.083, 0.044, 0.077, 0.033, 0.043, 0.041, 0.035, 0.036, 0.036, 0.071, 0.082, 0.039, 0.033, 0.087, 0.044, 0.076, 0.05, 0.037, 0.08, 0.046, 0.044, 0.054, 0.031, 0.045, 0.047, 0.037, 0.068, 0.04, 0.044, 0.026, 0.087, 0.032, 0.036, 0.082, 0.028, 0.06, 0.048, 0.019, 0.026, 0.056, 0.034, 0.041, 0.072, 0.043, 0.057, 0.062, 0.042, 0.057, 0.053, 0.057, 0.024, 0.04, 0.035, 0.031, 0.045, 0.029, 0.038, 0.029, 0.095, 0.039, 0.042, 0.044, 0.032, 0.074, 0.025, 0.067, 0.047, 0.047, 0.046, 0.041, 0.049, 0.072, 0.042, 0.051, 0.037, 0.034, 0.046, 0.028, 0.036, 0.024, 0.058, 0.154, 0.048, 0.114, 0.047, 0.043, 0.064, 0.039, 0.029, 0.044, 0.053, 0.171, 0.075, 0.081, 0.047, 0.046, 0.184, 0.038, 0.062, 0.05, 0.063, 0.041, 0.047, 0.036, 0.032, 0.028, 0.08, 0.063, 0.038, 0.042, 0.045, 0.041, 0.039, 0.021, 0.06, 0.039, 0.068, 0.087, 0.194, 0.042, 0.037, 0.028, 0.026, 0.024, 0.084, 0.051, 0.054, 0.114, 0.048, 0.038, 0.029, 0.093, 0.037, 0.048, 0.056, 0.074, 0.041, 0.046, 0.04, 0.069, 0.044, 0.039, 0.049, 0.033, 0.074, 0.034, 0.104, 0.038, 0.145, 0.073, 0.05, 0.056, 0.038, 0.043, 0.082, 0.049, 0.033, 0.042, 0.029, 0.014, 0.144, 0.035, 0.03, 0.034, 0.066, 0.042, 0.1, 0.055, 0.058, 0.026, 0.045, 0.071, 0.056, 0.035, 0.043, 0.03, 0.068, 0.039, 0.047, 0.051, 0.022, 0.035, 0.041, 0.058, 0.04, 0.048, 0.065, 0.02, 0.05, 0.046, 0.048, 0.039, 0.033, 0.047, 0.037, 0.081, 0.037, 0.104, 0.03, 0.053, 0.049, 0.067, 0.066, 0.08, 0.048, 0.048, 0.041, 0.079, 0.046, 0.043, 0.043, 0.041, 0.042, 0.032, 0.027, 0.033, 0.095, 0.057, 0.08, 0.071, 0.024, 0.096, 0.052, 0.045, 0.031, 0.214, 0.048, 0.041, 0.026, 0.032, 0.047, 0.034, 0.035, 0.045, 0.067, 0.052, 0.031, 0.032, 0.066, 0.068, 0.079, 0.044, 0.043, 0.028, 0.041, 0.031, 0.033, 0.063, 0.045, 0.039, 0.041, 0.052, 0.034, 0.046, 0.045, 0.034, 0.04, 0.054, 0.06, 0.05, 0.029, 0.047, 0.051, 0.055, 0.031, 0.057, 0.064, 0.036, 0.042, 0.033, 0.027, 0.03, 0.026, 0.052, 0.024, 0.075, 0.103, 0.035, 0.094, 0.038, 0.047, 0.028, 0.029, 0.042, 0.052, 0.045, 0.06, 0.066, 0.037, 0.035, 0.036, 0.026, 0.036, 0.045, 0.066, 0.036, 0.079, 0.047, 0.035, 0.066, 0.078, 0.07, 0.045, 0.034, 0.072, 0.036, 0.026, 0.05, 0.052, 0.079, 0.058, 0.051, 0.044, 0.026, 0.038, 0.036, 0.048, 0.056, 0.045, 0.095, 0.054, 0.047, 0.039, 0.061, 0.036, 0.031, 0.051, 0.029, 0.063, 0.048, 0.076, 0.058, 0.039, 0.059, 0.041, 0.057, 0.043, 0.044, 0.042, 0.049, 0.036, 0.031, 0.058, 0.027, 0.048, 0.027, 0.034, 0.027, 0.055, 0.039, 0.025, 0.053, 0.042, 0.034, 0.024, 0.033, 0.048, 0.028, 0.034, 0.054, 0.033, 0.028, 0.036, 0.097, 0.019, 0.039, 0.054, 0.045, 0.036, 0.087, 0.098, 0.044, 0.043, 0.037, 0.087, 0.047, 0.041, 0.054, 0.039, 0.048, 0.041, 0.04, 0.051, 0.029, 0.033, 0.104, 0.053, 0.042, 0.051, 0.022, 0.031, 0.044, 0.049, 0.034, 0.078, 0.045, 0.089, 0.056, 0.036, 0.18, 0.035, 0.031, 0.048, 0.044, 0.037, 0.038, 0.043, 0.034, 0.045, 0.039, 0.047, 0.028, 0.019, 0.039, 0.022, 0.05, 0.025, 0.072, 0.046, 0.032, 0.03, 0.034, 0.064, 0.045, 0.076, 0.036, 0.041, 0.041, 0.032, 0.11, 0.031, 0.047, 0.041, 0.039, 0.036, 0.038, 0.065, 0.037, 0.054, 0.055, 0.046, 0.047, 0.041, 0.08, 0.046, 0.037, 0.064, 0.031, 0.057, 0.041, 0.092, 0.04, 0.084, 0.039, 0.06, 0.04, 0.047, 0.062, 0.148, 0.045, 0.035, 0.062, 0.119, 0.031, 0.051, 0.04, 0.028, 0.046, 0.031, 0.119, 0.044, 0.045, 0.053, 0.031, 0.033, 0.063, 0.046, 0.043, 0.083, 0.023, 0.107, 0.039, 0.038, 0.036], \"xaxis\": \"x\", \"y\": [0.18439386755371057, 0.5750868907731637, 0.1132172353536568, 0.19850047615697952, 0.6950004168934912, 0.41826441672946313, 0.040828937665112974, 0.2145583871630251, 0.09143093017991866, 0.10013996234885614, 0.3658834999306372, 0.587897812361327, 0.23563705889496211, 0.5289998061994394, 0.5981734696485812, 0.5956194363709464, 0.11295199838815062, 0.6349332021584286, 0.09356782907078887, 0.0672754654033908, 0.3541579814831264, 0.11781588709523827, 0.3295981493457443, 0.23443288181779365, 0.13830133810679424, 0.5122546205578999, 0.03626449638205209, 0.32057959349203036, 0.3955164844050859, 0.21320459763992916, 0.08620177311633537, 0.4132497936565127, 0.19514157099220286, 0.028148892894647393, 0.03728071159582558, 0.20213762816504022, 0.39088790332760825, 0.10566618212719892, 0.11466232649727714, 0.09544364959788487, 0.07351553674018241, 0.3657542344632553, 0.05859665738698361, 0.43634835962676355, 0.4827032077898804, 0.516310366273556, 0.6480037931050455, 0.21122004543372697, 0.030344760075157406, 0.22750344576024595, 0.18673438423788624, 0.5460909738859347, 0.0666291073587214, 0.320234954276134, 0.515425573770442, 0.5751179393061847, 0.3262180383913996, 0.12192585741802231, 0.6165939755266235, 0.09365914315081003, 0.44259853952477324, 0.31958523161407537, 0.09228899111547839, 0.22815273642701062, 0.5282447951108347, 0.7777719169155834, 0.13834506443323813, 0.29425092810710396, 0.5300870647699181, 0.031947521718024174, 0.1108646816717751, 0.053339747820140615, 0.14466174791529418, 0.25697560969337485, 0.3383868137798065, 0.30803904997837983, 0.03434255320493995, 0.08689109251212201, 0.46044782253877736, 0.0973761441498977, 0.3449058470623745, 0.024212367984770777, 0.11665042079727428, 0.3333970234137619, 0.1495417879159372, 0.0679784404121434, 0.2360052425084116, 0.39147703437781534, 0.04428683932015287, 0.5381556738404795, 0.4357341587922019, 0.11843845992675284, 0.28107964630818494, 0.06989794698232743, 0.2658605825653322, 0.22408104406272966, 0.15519213452661884, 0.09873339188795927, 0.10739713799337769, 0.4712507279726723, 0.31257930793611366, 0.6259141532505736, 0.1651629894813923, 0.13024327386797574, 0.08242409751896962, 0.55355901104019, 0.11256152515999429, 0.22124325125588817, 0.05838775174278421, 0.6734770756819889, 0.06919042490492266, 0.5773286546676725, 0.5693181878572973, 0.12726917141891614, 0.27983888222674136, 0.15690954109554833, 0.18593824584442387, 0.05432525584274117, 0.33273366741371935, 0.12435295831370408, 0.48112847828662497, 0.2959384652215836, 0.5042039768350125, 0.3749869638443927, 0.7258627386781167, 0.4806866421912115, 0.6234335830956541, 0.4191951896523489, 0.20821728825178332, 0.6343085651912675, 0.27674577061671146, 0.02140654255666985, 0.42849246998341506, 0.1817444030106703, 0.4551538855951942, 0.05087080041524106, 0.516641204200833, 0.6810720245435042, 0.08151744899857294, 0.4475169494323581, 0.03995706953508171, 0.2181819033834006, 0.20372897255157485, 0.24305701296248816, 0.5381556738404795, 0.2358485729609252, 0.051323642447754336, 0.1913631294907303, 0.32154631204965056, 0.31229802093755377, 0.3917329141436472, 0.39462053822053156, 0.3680669306910641, 0.5017894292511481, 0.32120711190509066, 0.0768019282386515, 0.1168769044932052, 0.31545143431826594, 0.12007957373947853, 0.08354361700756141, 0.2180731800932174, 0.7653011157176768, 0.05076221583963347, 0.11739077279846111, 0.3639458403519926, 0.4815918747301601, 0.35998732468747585, 0.457353694020342, 0.5520498791697908, 0.22168281241722143, 0.2132287846887433, 0.4763394582576197, 0.3040153802820409, 0.20749766415549342, 0.3316810644107503, 0.8126297477835096, 0.5749367295182395, 0.27274039590582944, 0.2685808245693546, 0.5172108675362206, 0.33506587713796443, 0.09616672688355288, 0.041108213935392324, 0.10548050716105373, 0.5016695616404938, 0.20022874051447226, 0.14220640128276774, 0.23772630779738468, 0.19606080251004787, 0.2603188495268066, 0.18846597668723208, 0.19827111133563302, 0.261548791893628, 0.4140325207077993, 0.8134796325151183, 0.12265695643958285, 0.6311167068993262, 0.13481820177301163, 0.0932384579037443, 0.14050160114126486, 0.2562249115981724, 0.08547750670655718, 0.08643201081848362, 0.19981675431015722, 0.31390222338706264, 0.06221739913672386, 0.06996303880871468, 0.30029370289300306, 0.4306817897420764, 0.6595343859760441, 0.2839408857911616, 0.20468539219890003, 0.1130196126722065, 0.2360017176902124, 0.13187147729288817, 0.42313120297864704, 0.06964897436687001, 0.1624399718171824, 0.17200815643270417, 0.07333105637055992, 0.2440137653363641, 0.4900110333069776, 0.3085554157386313, 0.03480496731142946, 0.12148031785507996, 0.15002971926037112, 0.5314247042003052, 0.2758453007685677, 0.2151852748992088, 0.2658605825653322, 0.29911225563077193, 0.6594110243744711, 0.49869782335001445, 0.16788254706683048, 0.11816213334465087, 0.08230909248122409, 0.13653212507346946, 0.25639170942272826, 0.06562233405876228, 0.23311900627036541, 0.3756616197417655, 0.46674395287949066, 0.3092684534350997, 0.8337319641197457, 0.8331457111467163, 0.2591056156836542, 0.4778687671024334, 0.2542440524586721, 0.5361036306539362, 0.07073721340803463, 0.4731688813159418, 0.5755848065786346, 0.356689463387698, 0.14225616860197343, 0.21837916002376445, 0.14466174791529418, 0.29899643271856946, 0.4757427727983842, 0.08126799884203029, 0.1296501822378736, 0.3286954654423938, 0.08620177311633537, 0.13855855420831553, 0.05543377339452393, 0.11917834098009661, 0.2613621884509647, 0.11269900223777074, 0.08429051026621415, 0.3393961441870107, 0.07031960314855146, 0.11356777592095357, 0.4853279864284006, 0.1279289285514792, 0.0584572339054259, 0.08612988585012649, 0.3472440907423937, 0.1248029959061332, 0.07502335399434323, 0.19827111133563302, 0.3424151534036639, 0.3065175956815872, 0.13808860398564737, 0.058092197534895806, 0.04082786106581715, 0.1602592849246841, 0.09156161599234125, 0.5036030690663805, 0.2640411824475748, 0.6468038092930676, 0.07201805208597656, 0.22470230804277058, 0.1334773721572423, 0.04847889440667685, 0.2685808245693546, 0.10911308148570098, 0.6764508967260475, 0.6280060594576413, 0.36761958218269275, 0.16019930342079847, 0.17605308658107655, 0.14078981831089854, 0.2384997092801764, 0.13117402490907393, 0.12818959986091483, 0.4161925244315118, 0.12435295831370408, 0.09814942480303201, 0.05480698563416486, 0.3746187330143109, 0.41092354232892336, 0.507894749900129, 0.5137929421583434, 0.08293523366016065, 0.2964416548030494, 0.15236141109070434, 0.4396941021426354, 0.41893931094950754, 0.09113953260801844, 0.10967473999240707, 0.055732078845942, 0.05640314085190745, 0.06176263301115803, 0.06427139521062619, 0.20386133178572885, 0.21597661143113533, 0.7486409492386699, 0.2610715902497083, 0.09465277491899493, 0.5556171757583562, 0.137718889647652, 0.1978940751503777, 0.08472590699531857, 0.356262641598029, 0.14596950445002987, 0.13865818299932142, 0.3088915816821678, 0.11516321289421916, 0.16121169033174265, 0.40573483691789825, 0.34308606282264, 0.36300204724896845, 0.17193414756867276, 0.035926383178341514, 0.34536882843285344, 0.4400180463892147, 0.5165194668234709, 0.23319834124303085, 0.9637923675569924, 0.2635599134550337, 0.6259141532505736, 0.12324962258280003, 0.1256037712827487, 0.1248029959061332, 0.11665042079727428, 0.29081136443782263, 0.12993062945549005, 0.20959981847797426, 0.12385816607190492, 0.16931651488884025, 0.2468284110987674, 0.6181879252747016, 0.3509541008179864, 0.08619429866610873, 0.09537770951135394, 0.8204393830764495, 0.2493836920976743, 0.10367142046182065, 0.11516383353466464, 0.07169627826225977, 0.5400384130096556, 0.2709141565803237, 0.16809050322974173, 0.3421981324687273, 0.812724325423183, 0.1326589750154965, 0.054670132935181304, 0.055346153509382656, 0.8039442695404772, 0.3276168958360183, 0.6561718697940482, 0.6214102617950452, 0.3046829516703813, 0.7853649284745584, 0.7303620793003476, 0.6719087507962026, 0.16000678121984613, 0.579612101366232, 0.6347749924714103, 0.41894393066564606, 0.06936532322770372, 0.28322834609079706, 0.343263893078516, 0.4450860003239352, 0.3090838478611311, 0.408095736797927, 0.11529682880263803, 0.13359771811640497, 0.2417229185475579, 0.10092265889692065, 0.8181934133883563, 0.3777834313813965, 0.8273808576462511, 0.18439353202429143, 0.5148786056082297, 0.11287077888712382, 0.16015059460472458, 0.29672938182784603, 0.36944561074938853, 0.2505850522824452, 0.8467591712977676, 0.3840267097226593, 0.261779448872241, 0.1645479955558209, 0.14631295673285594, 0.4248523287309329, 0.09222807982804315, 0.2121484308544801, 0.33273366741371935, 0.5470626312455473, 0.8294144697045585, 0.25206662215500397, 0.15998368749433245, 0.548322128117227, 0.3917329141436472, 0.15981565308588508, 0.23631147082452741, 0.21082920466209698, 0.1871387197916503, 0.24774693401855818, 0.1913242313933492, 0.16437448769677154, 0.07582203648947516, 0.032541140295091364, 0.06311143057978008, 0.5009235508757715, 0.12343879567504301, 0.445735807756371, 0.40322837553658053, 0.09397553936597514, 0.1598391281143201, 0.26702494168661406, 0.19782301216908982, 0.06831823449824892, 0.5451167746582685, 0.20142160156100697, 0.25747632252511843, 0.4257317671215596, 0.5062318064185062, 0.10278357133077332, 0.10857266292312517, 0.06223864817381186, 0.11377411494697365, 0.14082424186384768, 0.2589321903149734, 0.31776639873426016, 0.07983414941561229, 0.30174211068680845, 0.42532907678292176, 0.23734670470511587, 0.2862296469110084, 0.24790288035387664, 0.5526146374040077, 0.20425399436950087, 0.5166825128498294, 0.12415322942140417, 0.5310696157212036, 0.3866387435262121, 0.14313186082947948, 0.31648660326859934, 0.026792916001305622, 0.7856428374245099, 0.42383310375799566, 0.5944566396871084, 0.6256605001243821, 0.08813642250468567, 0.03544811528140901, 0.06935406654889886, 0.15751976448865512, 0.22608551288474832, 0.3127311228465576, 0.1409438166611655, 0.3285615524533705, 0.3591330499592894, 0.47964497307801546, 0.7143146030302826, 0.14223944449319303, 0.06929054967731618, 0.32120711190509066, 0.16913647442041335, 0.707286257884667, 0.3230684446475647, 0.7616845263358343, 0.4104900542879092, 0.10053249234255524, 0.1106599594415556, 0.1543174595222413, 0.46003879185641183, 0.3811350878514418, 0.07185070571861518, 0.23882593985771994, 0.5344976262521839, 0.11031385635331636, 0.09610989844306939, 0.4955559099445003, 0.07845190603324759, 0.30697262074812925, 0.12767551958037127, 0.4375661224395835, 0.07737023387634634, 0.15307682457740834, 0.05694427046787409, 0.09028836937410878, 0.4011292297732457, 0.6186146927451245, 0.11561676905211238, 0.0993047499370594, 0.08102401279833105, 0.8100206966555492, 0.10768932514586738, 0.15386113005635593, 0.4026560765644126, 0.045535707525545144, 0.08229583319403, 0.08227601457953415, 0.8241544781987433, 0.0759900855540333, 0.5147505197509459, 0.11103147778198663, 0.42144961755966015, 0.24880465403270857, 0.3112403223054312, 0.3282460941643247, 0.28312386083977936, 0.2865521931047814, 0.16537364909659502, 0.4284132019637321, 0.34116073112729894, 0.051142721309942685, 0.10794707492381372, 0.1108646816717751, 0.29201805921023904, 0.07365131996157204, 0.36851051207096197, 0.2556143611338999, 0.07392456180697715, 0.045535707525545144, 0.15025986810093994, 0.4395989822566938, 0.19636656988846957, 0.21018464628148859, 0.15085686628779282, 0.3429118439192298, 0.16104008564300487, 0.2055862423584408, 0.18673310211333727, 0.5528531989583015, 0.20219789553586287, 0.5807830339134155, 0.6112381610839525, 0.07515362639458067, 0.5722084734915175, 0.3654892991508686, 0.1991057466826236, 0.4912569401667811, 0.05850610073101081, 0.3077884117234785, 0.17038242498240874, 0.14066607718466684, 0.10248584652416493, 0.4022873718442217, 0.07205214632436985, 0.35142291824287475, 0.10941760034103376, 0.06679271580157364, 0.05675388891699207, 0.058987921856350156, 0.3660303223369904, 0.28790374422385034, 0.4158290962648631, 0.40710291595796666, 0.09934102670994882, 0.06362846635195196, 0.30921476208988685, 0.23242198019285765, 0.055541210656895434, 0.5297663836663529, 0.10744632778983743, 0.18410212910939194, 0.17721960751489196, 0.1962664672709783, 0.1617648996714035, 0.10584426414108294, 0.5203501665477333, 0.07365131996157204, 0.31578819840495265, 0.35364190165315845, 0.1707951928721818, 0.41655733121321636, 0.15801546378512366, 0.7568436608419439, 0.22368578646300386, 0.0609449253562836, 0.2225096762928218, 0.18587673368692093, 0.05559101133196209, 0.569598540521716, 0.08073228430722412, 0.15724041301590164, 0.12879141548479, 0.4306817897420764, 0.17998791969802397, 0.41280880088413996, 0.5723062335690389, 0.6457404130724687, 0.10420061808672998, 0.12564769853034463, 0.21795029564941848, 0.4720930498870375, 0.11304202998506685, 0.545112257205237, 0.14852188644910969, 0.17217029085021085, 0.336250902618187, 0.48671482860553816, 0.5093433434984792, 0.35847801144896685, 0.3008706318705062, 0.18494609259573758, 0.4199330463236065, 0.04162287990776414, 0.2633909944023186, 0.4252182303976608, 0.4684623303117058, 0.1925553058603695, 0.09610989844306939, 0.09129843496680234, 0.3302708189676917, 0.4199330463236065, 0.11927294568859859, 0.4864154015695107, 0.06472081497616611, 0.6387929002666255, 0.37932906694235924, 0.093713747684541, 0.20627971812824875], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (curr)\", \"type\": \"scatter\", \"x\": [0.088, 0.06, 0.036, 0.04, 0.043, 0.048, 0.032, 0.078, 0.078, 0.063, 0.054, 0.036, 0.039, 0.048, 0.054, 0.046, 0.052, 0.098, 0.032, 0.03, 0.036, 0.036, 0.035, 0.065, 0.04, 0.035, 0.083, 0.054, 0.028, 0.044, 0.04, 0.077, 0.081, 0.072, 0.054, 0.045, 0.078, 0.079, 0.055, 0.066, 0.026, 0.073, 0.069, 0.047, 0.048, 0.048, 0.076, 0.118, 0.051, 0.025, 0.046, 0.084, 0.034, 0.094, 0.084, 0.077, 0.074, 0.095, 0.04, 0.043, 0.095, 0.037, 0.048, 0.098, 0.098, 0.06, 0.414, 0.076, 0.102, 0.072, 0.115, 0.046, 0.036, 0.088, 0.031, 0.04, 0.052, 0.029, 0.044, 0.074, 0.062, 0.078, 0.045, 0.084, 0.04, 0.028, 0.037, 0.044, 0.041, 0.071, 0.05, 0.043, 0.091, 0.045, 0.08, 0.137, 0.035, 0.17, 0.062, 0.04, 0.092, 0.027, 0.046, 0.073, 0.047, 0.062, 0.146, 0.057, 0.051, 0.045, 0.069, 0.059, 0.078, 0.053, 0.038, 0.029, 0.051, 0.158, 0.05, 0.105, 0.044, 0.028, 0.051, 0.082, 0.076, 0.088, 0.036, 0.034, 0.076, 0.047, 0.016, 0.054, 0.045, 0.036, 0.082, 0.047, 0.053, 0.077, 0.086, 0.041, 0.036, 0.04, 0.031, 0.036, 0.071, 0.049, 0.057, 0.066, 0.079, 0.057, 0.034, 0.048, 0.07, 0.045, 0.076, 0.057, 0.035, 0.046, 0.052, 0.211, 0.089, 0.063, 0.039, 0.038, 0.086, 0.031, 0.036, 0.036, 0.046, 0.052, 0.058, 0.062, 0.049, 0.042, 0.073, 0.033, 0.048, 0.044, 0.047, 0.042, 0.033, 0.041, 0.098, 0.048, 0.06, 0.032, 0.212, 0.034, 0.046, 0.053, 0.078, 0.05, 0.038, 0.039, 0.041, 0.08, 0.051, 0.043, 0.051, 0.094, 0.05, 0.051, 0.06, 0.052, 0.023, 0.045, 0.046, 0.077, 0.042, 0.041, 0.052, 0.053, 0.064, 0.046, 0.048, 0.017, 0.063, 0.036, 0.174, 0.046, 0.043, 0.053, 0.046, 0.045, 0.055, 0.037, 0.088, 0.059, 0.042, 0.068, 0.066, 0.043, 0.05, 0.037, 0.09, 0.056, 0.038, 0.039, 0.045, 0.045, 0.096, 0.094, 0.057, 0.054, 0.041, 0.041, 0.06, 0.045, 0.042, 0.048, 0.08, 0.065, 0.029, 0.045, 0.142, 0.038, 0.054, 0.061, 0.105, 0.099, 0.114, 0.044, 0.046, 0.046, 0.053, 0.053, 0.044, 0.044, 0.036, 0.055, 0.053, 0.092, 0.037, 0.057, 0.044, 0.042, 0.049, 0.082, 0.089, 0.071, 0.081, 0.044, 0.023, 0.044, 0.176, 0.032, 0.045, 0.053, 0.052, 0.081, 0.056, 0.044, 0.055, 0.077, 0.05, 0.064, 0.032, 0.046, 0.057, 0.095, 0.028, 0.093, 0.046, 0.043, 0.056, 0.03, 0.09, 0.05, 0.059, 0.054, 0.079, 0.084, 0.046, 0.046, 0.059, 0.05, 0.073, 0.052, 0.042, 0.042, 0.085, 0.066, 0.059, 0.043, 0.088, 0.053, 0.066, 0.075, 0.038, 0.036, 0.079, 0.051, 0.036, 0.033, 0.071, 0.036, 0.037, 0.058, 0.05, 0.043, 0.046, 0.078, 0.076, 0.08, 0.2, 0.036, 0.05, 0.088, 0.05, 0.036, 0.053, 0.031], \"xaxis\": \"x2\", \"y\": [0.18579927887031134, 0.9274202256360236, 0.2569067617886446, 0.17851375722123963, 0.43011516789686843, 0.3951880410340851, 0.35333307802371594, 0.854899199395705, 0.7749695319329993, 0.7150752736216004, 0.5793836726576811, 0.17187478758168062, 0.503776006633781, 0.6517104478925241, 0.5321166645488455, 0.4291031613352281, 0.6295132227815239, 0.446367751604861, 0.12978626497489776, 0.578130474122496, 0.1303225049324246, 0.4589423036505589, 0.6028673022099313, 0.6724998803801079, 0.055171077290688375, 0.28900585249094113, 0.5807441942986169, 0.6324527530146118, 0.32780881811994433, 0.4437792729685527, 0.47375733914823626, 0.6755390392614542, 0.8494338455743565, 0.8432302027568838, 0.3962269303969661, 0.36574887203466033, 0.9780529644634413, 0.6757083557066426, 0.43212531492562845, 0.6428319532862445, 0.2244465690609686, 0.6759712108962084, 0.300575337785698, 0.4848467547623382, 0.24353241802821812, 0.6165640897352094, 0.801889943514816, 0.6831580296641933, 0.4684052737322374, 0.07309555507266852, 0.17397747102053363, 0.548208100621717, 0.16948307959681597, 0.5287139706981401, 0.8097217619362252, 0.48186532860504816, 0.7044722268129955, 0.5458559966555334, 0.6067015953642416, 0.5767206748937392, 0.5416109283549078, 0.7766135747357961, 0.6371580804073698, 0.3290646799011723, 0.53941953634433, 0.7444876216695655, 0.27658524567301757, 0.8518717737266248, 0.685064206005921, 0.7994946846943811, 0.6254668451144636, 0.29898447003196504, 0.36566585814722175, 0.8260679099411251, 0.265003746926769, 0.18277705216857454, 0.6401445853260315, 0.2878944788643705, 0.7379395090268356, 0.6578861964269485, 0.3048731186933995, 0.6479177870210828, 0.5479007895539181, 0.8109237991420157, 0.4555798348891207, 0.35159410271621183, 0.6741813074403022, 0.40366163192193316, 0.3797333752177462, 0.42326140605337403, 0.49450075158901585, 0.7027754368270075, 0.31556666432085356, 0.5737052492708005, 0.5594846166878963, 0.9879213229528466, 0.23907110553933086, 0.7604887601700165, 0.906894853259191, 0.49150798334893764, 0.6693239074263375, 0.635181004157038, 0.4291031613352281, 0.6805197940362542, 0.8579270215873258, 0.42231028799440284, 0.7973836574204367, 0.6209099995125147, 0.617932351579841, 0.5867531689564582, 0.8217385626893267, 0.5766058512754557, 0.6085190813519714, 0.6488649586424557, 0.19466062481522506, 0.4062994677131635, 0.31500574198466447, 0.6106996692323751, 0.48314991346809855, 0.4300926711133176, 0.4623912750166579, 0.18141675383529432, 0.7404949196358439, 0.7960551628311661, 0.6696955469146251, 0.7471897031921468, 0.15222801432328747, 0.4782875749995391, 0.6696955469146251, 0.4617114467660769, 0.0374236133971757, 0.34638250956587036, 0.5737052492708005, 0.35412183815676124, 0.5342599897609015, 0.6273126624389191, 0.1819914526651868, 0.6450640502472667, 0.7576359910572065, 0.6363669366758954, 0.35783776888428775, 0.4555798348891207, 0.2603691587203709, 0.09638465351539516, 0.7889843001267657, 0.3995975535535492, 0.2404138117262561, 0.5134503976671381, 0.7620160241108803, 0.4852174766770502, 0.7934067722809752, 0.5657371707019572, 0.40591517497640706, 0.5142806824729376, 0.4667389755277017, 0.4597803030361328, 0.14211531046105408, 0.4709774325404933, 0.39253304933110444, 0.8152160844894966, 0.6418608562675732, 0.5695619245525361, 0.15898796250578873, 0.4189913516486339, 0.8097376625536354, 0.2776505479619531, 0.14100712613869515, 0.1625374057836978, 0.21879614767173305, 0.26016804821119, 0.5884346274074399, 0.25171266030158634, 0.5556828679884147, 0.2886326125606653, 0.5013044750460076, 0.23728971353361283, 0.6280660923097139, 0.6281218947904323, 0.6226708394296439, 0.1280348372312241, 0.37812375401711507, 0.6218606462016874, 0.446367751604861, 0.5237591509200082, 0.22560064672115399, 0.4159575064805634, 0.43989745285902637, 0.38133093816728936, 0.379388299643832, 0.4244201113870294, 0.8495234946343055, 0.44699506619782237, 0.3402560380560977, 0.16997778820688525, 0.6509841470756508, 0.5589353890471914, 0.49320900326902484, 0.41485179365651337, 0.2850172536812061, 0.5150740024049856, 0.7905789411902706, 0.6660097546858721, 0.5916856454756931, 0.25029771644034415, 0.21820707607863943, 0.23625780462752244, 0.6174344585079109, 0.33885175059010386, 0.8097775874289167, 0.5502791542248897, 0.45232673966787307, 0.5168725346003686, 0.4922951659433321, 0.2710495410551712, 0.5620189509382074, 0.19827785442852286, 0.35653263682836045, 0.4940220265254579, 0.3934632807735441, 0.349631294967786, 0.6543252873397565, 0.6043841099981286, 0.6572212454398962, 0.5323595728841377, 0.4667716613599331, 0.5480891857555714, 0.5933716837007499, 0.5769442381274095, 0.7796710482718338, 0.4721284230669528, 0.5632051337005155, 0.25606657060722404, 0.47304849589761655, 0.4991199345133047, 0.785831825438318, 0.5512091114854263, 0.31651464458218903, 0.192246895102814, 0.5737052492708005, 0.14970485751781393, 0.8257882443178004, 0.7450862811651306, 0.2404138117262561, 0.3428275867057816, 0.2186811050870735, 0.43730933466596944, 0.1325711740116582, 0.33994853494016564, 0.5172250338280965, 0.4543852880840521, 0.6017244994332274, 0.7267617626256621, 0.304103470637073, 0.49511795227452726, 0.4577650902534979, 0.4389063253281036, 0.3428275867057816, 0.6911248892501751, 0.5457123873353599, 0.3395528272139201, 0.5662837862370104, 0.38281068028313525, 0.1899488449656659, 0.1899488449656659, 0.39416742153886597, 0.4473524415330049, 0.5724944828663213, 0.12652799787397961, 0.14917046216496987, 0.4192276293132746, 0.1727250451072272, 0.7329347521090118, 0.2979855805324535, 0.5384433083808008, 0.2944152049751758, 0.5661013076544325, 0.39283078357423706, 0.6503174362647687, 0.7632350838020857, 0.29422440231251745, 0.8446099855685041, 0.3812461384129847, 0.1264117171095669, 0.6995051325026098, 0.7680829457938805, 0.1086082602083136, 0.50228427853815, 0.8303888649041977, 0.15145052047802054, 0.5239967242043768, 0.49461569007297057, 0.7323984730128237, 0.6372335578763709, 0.8485373319296128, 0.21018203617182263, 0.3854703692354019, 0.6209619763202376, 0.6996467359659702, 0.3913887983225227, 0.600932061108284, 0.18141675383529432, 0.32841971343371723, 0.17397747102053363, 0.3943097935149382, 0.5998672378660981, 0.6052803835931642, 0.35501406908939237, 0.4362847089434372, 0.6005057903956104, 0.45095984485898877, 0.5601124581139871, 0.6908342266509375, 0.29066967723125237, 0.5437491575180791, 0.5955595524057149, 0.4226516353037165, 0.552222307965348, 0.5038457784615318, 0.6752568781943777, 0.7880730680059006, 0.09430965090665133, 0.4986183600001317, 0.24112389044610405, 0.3635071851353404, 0.7047195247497422, 0.5251048099479148, 0.5632051337005155, 0.4520037684813636, 0.5271857161160298, 0.36566585814722175, 0.8775119234978208, 0.49474741138534273, 0.17187478758168062, 0.1069918390347242, 0.6371627391106971, 0.19018032574493748, 0.34352259564225396, 0.806114950115292, 0.47304849589761655, 0.5014153035286022, 0.6721952796384192, 0.7507248720260316, 0.38512814216859315, 0.8930847268109882, 0.863224561659591, 0.15108072818859253, 0.7399796913917198, 0.18579927887031134, 0.47304849589761655, 0.2033384066370545, 0.43667652058029827, 0.23252054766636898], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [0.068, 0.058, 0.045, 0.044, 0.076, 0.041, 0.037, 0.036, 0.033, 0.036, 0.102, 0.039, 0.033, 0.026, 0.03, 0.04, 0.07, 0.032, 0.078, 0.028, 0.056, 0.045, 0.05, 0.04, 0.04, 0.031, 0.044, 0.038, 0.035, 0.029, 0.032, 0.059, 0.053, 0.034, 0.034, 0.122, 0.035, 0.05, 0.047, 0.096, 0.036, 0.026, 0.034, 0.043, 0.08, 0.065, 0.054, 0.079, 0.039, 0.036, 0.073, 0.034, 0.031, 0.042, 0.039, 0.053, 0.044, 0.05, 0.039, 0.414, 0.054, 0.037, 0.029, 0.036, 0.036, 0.042, 0.061, 0.037, 0.05, 0.055, 0.067, 0.012, 0.04, 0.038, 0.046, 0.048, 0.074, 0.041, 0.059, 0.171, 0.042, 0.037, 0.065, 0.03, 0.035, 0.194, 0.08, 0.048, 0.036, 0.049, 0.046, 0.039, 0.037, 0.035, 0.047, 0.037, 0.091, 0.035, 0.071, 0.071, 0.027, 0.047, 0.072, 0.034, 0.067, 0.051, 0.072, 0.023, 0.038, 0.025, 0.033, 0.053, 0.026, 0.024, 0.055, 0.23, 0.043, 0.057, 0.04, 0.083, 0.03, 0.03, 0.067, 0.029, 0.073, 0.074, 0.088, 0.029, 0.073, 0.04, 0.019, 0.075, 0.043, 0.045, 0.05, 0.049, 0.062, 0.094, 0.06, 0.034, 0.046, 0.071, 0.095, 0.036, 0.046, 0.036, 0.048, 0.087, 0.032, 0.043, 0.039, 0.031, 0.051, 0.043, 0.029, 0.038, 0.058, 0.062, 0.047, 0.058, 0.032, 0.078, 0.032, 0.034, 0.08, 0.034, 0.032, 0.084, 0.065, 0.137, 0.022, 0.04, 0.046, 0.055, 0.027, 0.04, 0.048, 0.031, 0.035, 0.078, 0.037, 0.042, 0.036, 0.093, 0.039, 0.077, 0.078, 0.042, 0.045, 0.081, 0.015, 0.051, 0.028, 0.045, 0.037, 0.035, 0.041, 0.027, 0.048, 0.042, 0.038, 0.038, 0.047, 0.017, 0.036, 0.038, 0.036, 0.074, 0.046, 0.044, 0.046, 0.037, 0.077, 0.029, 0.071, 0.025, 0.046, 0.041, 0.022, 0.047, 0.04, 0.044, 0.086, 0.045, 0.049, 0.071, 0.031, 0.054, 0.072, 0.04, 0.074, 0.05, 0.028, 0.028, 0.072, 0.055, 0.034, 0.047, 0.036, 0.055, 0.043, 0.031, 0.032, 0.057, 0.077, 0.068, 0.057, 0.045, 0.06, 0.077, 0.053, 0.056, 0.053, 0.038, 0.042, 0.053, 0.035, 0.031, 0.033, 0.049, 0.078, 0.04, 0.06, 0.042, 0.08, 0.031, 0.044, 0.032, 0.044, 0.055, 0.044, 0.04, 0.037, 0.087, 0.043, 0.078, 0.032, 0.047, 0.035, 0.062, 0.413, 0.034, 0.028, 0.033, 0.032, 0.077, 0.021, 0.031, 0.044, 0.056, 0.078, 0.214, 0.05, 0.062, 0.034, 0.031, 0.052, 0.04, 0.031, 0.034, 0.029, 0.043, 0.041, 0.034, 0.067, 0.074, 0.033, 0.054, 0.034, 0.043, 0.04, 0.027, 0.071, 0.053, 0.035, 0.045, 0.032, 0.035, 0.044, 0.057, 0.033, 0.036, 0.06, 0.058, 0.11, 0.032, 0.044, 0.132, 0.038, 0.038, 0.08, 0.035, 0.093, 0.043, 0.176, 0.054, 0.041, 0.046, 0.255, 0.085, 0.021, 0.036, 0.055, 0.079, 0.076, 0.039, 0.028, 0.051, 0.088, 0.033, 0.033, 0.047, 0.044, 0.043, 0.049, 0.031, 0.083, 0.04, 0.043, 0.07, 0.025, 0.034, 0.084, 0.037, 0.076, 0.046, 0.044, 0.063, 0.037, 0.049, 0.024, 0.046, 0.039, 0.041, 0.118, 0.117, 0.036, 0.028, 0.064, 0.038, 0.03, 0.022, 0.045, 0.044, 0.036, 0.054, 0.05, 0.026, 0.043, 0.036, 0.032, 0.074, 0.027, 0.053, 0.048, 0.077, 0.038, 0.065, 0.029, 0.027, 0.036, 0.027, 0.022, 0.042, 0.042, 0.056, 0.039, 0.027, 0.051, 0.035, 0.076, 0.048, 0.033, 0.152, 0.057, 0.092, 0.036, 0.085, 0.027, 0.023, 0.04, 0.041, 0.085, 0.243, 0.084, 0.039, 0.043, 0.036, 0.021, 0.045, 0.033, 0.046, 0.037, 0.029, 0.065, 0.081, 0.044, 0.067, 0.028, 0.062, 0.053, 0.054, 0.053, 0.123, 0.031, 0.082, 0.048, 0.059, 0.075, 0.077, 0.045, 0.097, 0.041, 0.069, 0.05, 0.031, 0.053, 0.037, 0.066, 0.061, 0.042, 0.036, 0.052, 0.073, 0.029, 0.047, 0.031, 0.037, 0.036, 0.105, 0.045, 0.035, 0.075, 0.05, 0.057, 0.026, 0.118, 0.034, 0.034, 0.042, 0.039, 0.031, 0.097, 0.075, 0.052, 0.03, 0.037, 0.035, 0.075, 0.078, 0.067, 0.042, 0.078, 0.076, 0.049, 0.118, 0.041, 0.089, 0.059, 0.073, 0.036, 0.044, 0.053, 0.031, 0.034, 0.044, 0.043, 0.034, 0.076, 0.035, 0.07, 0.046, 0.037, 0.048, 0.043, 0.03, 0.084, 0.097, 0.046, 0.063, 0.03, 0.332, 0.033, 0.053, 0.041, 0.061, 0.024, 0.035, 0.034, 0.047, 0.091, 0.052, 0.067, 0.021, 0.216, 0.053, 0.121, 0.035, 0.114, 0.048, 0.046, 0.051, 0.066, 0.046, 0.025, 0.031, 0.119, 0.109, 0.021, 0.053, 0.041, 0.02, 0.05, 0.067, 0.031, 0.041, 0.086, 0.036, 0.029, 0.022, 0.053, 0.038, 0.056, 0.086, 0.057, 0.026, 0.034, 0.033, 0.032, 0.03, 0.06, 0.039, 0.047, 0.032, 0.028, 0.043, 0.04, 0.032, 0.046, 0.042, 0.117, 0.05, 0.035, 0.027, 0.058, 0.049, 0.083, 0.032, 0.044, 0.038, 0.084, 0.051, 0.047, 0.045, 0.12, 0.079, 0.031, 0.04, 0.035, 0.039, 0.055, 0.032, 0.045, 0.026, 0.034, 0.083, 0.071, 0.037, 0.033, 0.045, 0.046, 0.055, 0.048, 0.034, 0.083, 0.03, 0.03, 0.05, 0.048, 0.036, 0.029, 0.036, 0.027, 0.057, 0.046, 0.035, 0.046, 0.045, 0.075, 0.033, 0.082, 0.085, 0.043, 0.049, 0.032, 0.055, 0.16, 0.079, 0.034, 0.03, 0.051, 0.048, 0.047, 0.038, 0.053, 0.055, 0.069, 0.048], \"xaxis\": \"x2\", \"y\": [0.6660328535674787, 0.4955559099445003, 0.11251030999551548, 0.5313240922219649, 0.7616845263358343, 0.42881839881496897, 0.22146723198036844, 0.2709448900825402, 0.04188686298684474, 0.3198999677935893, 0.586632325439729, 0.3332859260788763, 0.0891770245136605, 0.07249138429342028, 0.0813041402249215, 0.2808128557304226, 0.18155424903412543, 0.14020593233116785, 0.20529540916933675, 0.1755850319354616, 0.5722846846512241, 0.4684623303117058, 0.2863708053899042, 0.4489302200945696, 0.3606737334686688, 0.09834172337505831, 0.1439119889738254, 0.10526388551166177, 0.08976738859769384, 0.15927641460572795, 0.07353544332944184, 0.4894096639868448, 0.24735122968283396, 0.41440459167745447, 0.10107859516115147, 0.4809249647595707, 0.043928674649753696, 0.27268427565697984, 0.07203278686513981, 0.35989685204578803, 0.08410225657903847, 0.09640449279894714, 0.2859044620344169, 0.766491644508495, 0.27194216744256416, 0.11891721880979944, 0.6033870782914414, 0.8445823904457724, 0.4148378249676725, 0.09538880480821377, 0.5822786697287807, 0.2006236885231063, 0.30215903380660414, 0.3526626332448971, 0.22921561702294402, 0.3499358724503807, 0.451050436906263, 0.01968005574460141, 0.3849224947932618, 0.608666907839271, 0.30333177217190177, 0.05732515971384944, 0.08299070223644744, 0.155374347961305, 0.4378217303747408, 0.10641916767178827, 0.3207785913922725, 0.3280003244598044, 0.4747408725557203, 0.27229542413121455, 0.5314247042003052, 0.13834506443323813, 0.652508483608137, 0.1775869136191267, 0.4659209431511335, 0.3288332341233703, 0.47224603889779837, 0.2773569186284155, 0.18590272545123854, 0.6719763059805124, 0.04569198037744582, 0.22473444069733528, 0.0776074933333939, 0.1411968215808168, 0.3654892991508686, 0.06069899520469324, 0.21029328672965164, 0.13919371635861133, 0.16321149678759816, 0.6144435769482088, 0.1388055550317996, 0.0827658987104557, 0.0793107693477757, 0.04994940743047871, 0.46220165202879504, 0.08265172102971341, 0.5554564865761329, 0.10902951494304747, 0.26480674198345266, 0.31816712550642645, 0.20184400370343658, 0.23734670470511587, 0.19264674509953905, 0.03558879485690103, 0.5314247042003052, 0.3013473679880785, 0.8043030592862955, 0.07665185966197174, 0.17816243980233548, 0.14637302723887635, 0.43623195291339645, 0.5773286546676725, 0.06996409198491005, 0.0635191394270278, 0.11839391684253864, 0.03368970372860669, 0.16544292122901683, 0.5002106013252752, 0.20783967621931676, 0.4413184352618238, 0.1377753535318076, 0.017128038770129694, 0.09070427960766203, 0.05237321155563324, 0.46044782253877736, 0.09863911308639095, 0.6058955548956951, 0.07377868677997379, 0.33726125667837825, 0.03705661785513226, 0.03856885477325478, 0.01970319875133708, 0.06623921298607705, 0.655672818127978, 0.36403826442427, 0.375635621083512, 0.25822104517587474, 0.26990817233175546, 0.30316845466795117, 0.21597661143113533, 0.10411587283779344, 0.4582573305440075, 0.28974208538397184, 0.3995654588450376, 0.48407929824265805, 0.2412117545349558, 0.49704114689177337, 0.3112403223054312, 0.13571503940671914, 0.35304273602320047, 0.18963603484652192, 0.06023564559469896, 0.305863422303413, 0.34062746964654456, 0.03532029949184434, 0.20200996882548472, 0.207876095289533, 0.11304202998506685, 0.26487496820305634, 0.46674395287949066, 0.05931266843465788, 0.6063731497207538, 0.053339747820140615, 0.16056749669580483, 0.3366557342021428, 0.18735912995827353, 0.2667542380283816, 0.9197592959547904, 0.13322255285490225, 0.3533185668595151, 0.08763312389948397, 0.343329095265401, 0.1298321532292276, 0.11240742021865013, 0.03412749239977686, 0.23316671381479437, 0.13955591125269062, 0.065615492475942, 0.03940539431326806, 0.04874684240881699, 0.42507109047861347, 0.3720756994829524, 0.20627971812824875, 0.23346983492740092, 0.299872058778726, 0.14688925552714138, 0.20529540916933675, 0.11294333341234963, 0.4523771212155355, 0.15895981664313275, 0.12633289347617382, 0.34801013400503944, 0.063056887931354, 0.09222807982804315, 0.19281104432210028, 0.11843845992675284, 0.1064686731970873, 0.12171087020281346, 0.49704114689177337, 0.4202798549667376, 0.058322454167927695, 0.40418598015134155, 0.7514842711311043, 0.067978575311199, 0.1468497162592186, 0.3655805321171328, 0.36741292271676196, 0.08785516413846428, 0.4223454464089015, 0.09472348251934337, 0.14196098925812006, 0.10013555988874479, 0.32154631204965056, 0.05416575683382341, 0.786126361492164, 0.04696516601190348, 0.26926088858349784, 0.28123172687107445, 0.3094364396730669, 0.04307250962973752, 0.07126159086244754, 0.6143015945908075, 0.495586079448059, 0.46102608015166635, 0.40789311683600216, 0.8929715185951024, 0.1227006502272181, 0.3638055988942468, 0.10470002869891348, 0.29304213908849364, 0.8936703981375603, 0.3534407380188983, 0.0883666731866185, 0.07895584641700149, 0.05166417783587085, 0.4199775765299997, 0.10304865631077798, 0.1041340676595982, 0.11031385635331636, 0.22368578646300386, 0.22137255536682798, 0.0725394352715707, 0.08320759746190642, 0.3577905591727162, 0.36362749207413336, 0.13058702032609693, 0.4306817897420764, 0.4684623303117058, 0.3185463047756948, 0.6991046594229053, 0.33105510290791684, 0.35804773811787727, 0.3499358724503807, 0.17780319308126435, 0.07142366539796174, 0.1504846162366139, 0.28643330026545544, 0.11492102279820171, 0.08716328114311156, 0.12905574960179156, 0.5528531989583015, 0.2852168598030531, 0.3185463047756948, 0.41766807389819915, 0.22818770291371737, 0.10749415552266317, 0.07500089027222667, 0.2150933620687273, 0.4879833184669665, 0.21367083697314282, 0.18281788227943807, 0.11217648511765432, 0.01860460444149037, 0.4990100838788346, 0.3212979959143686, 0.7252893191599291, 0.30018855716775616, 0.2808216200321265, 0.24332849241566534, 0.22583693263898685, 0.307128141019565, 0.12930297020615966, 0.07734813107736227, 0.38078614076753503, 0.037937415915298756, 0.18389331462546077, 0.2015421194948802, 0.10121634311933059, 0.7209948827487924, 0.252131738577411, 0.19866278493931944, 0.5569604587758099, 0.19172534874952063, 0.07516041810443141, 0.18673310211333727, 0.20736440356309183, 0.27568985010185776, 0.1748501221961516, 0.134246332983591, 0.12151400729184814, 0.03860330573341564, 0.16198960071610413, 0.062309112953929935, 0.14943540958877521, 0.46827469198568006, 0.12435295831370408, 0.11768791031746062, 0.10794707492381372, 0.04347111427796346, 0.07423675680829, 0.1602542791395647, 0.19911642350143877, 0.2379444352717226, 0.36664322039668684, 0.10130143557253446, 0.17108028607870185, 0.6143194513817134, 0.5641235853966853, 0.29864316680665437, 0.44752301946823647, 0.13459844499503626, 0.037461465199631894, 0.5002964248569376, 0.4059565893810353, 0.7035957096210382, 0.0629603198376949, 0.25036415064992923, 0.14780834332950044, 0.24800647860056513, 0.10438723399855232, 0.24366911510822187, 0.4574644219698093, 0.8347014835967527, 0.42226245660703365, 0.4073158502222598, 0.47525484003715535, 0.37845934883934684, 0.35325777167774697, 0.4763432908647238, 0.18941100564626978, 0.23853527246002126, 0.27277355193056574, 0.5556171757583562, 0.19481513110659687, 0.7460207524242459, 0.12627308236197843, 0.2115813466591615, 0.4773837842994688, 0.22238536240250728, 0.1978655273089749, 0.32057959349203036, 0.1601330373243487, 0.6256605001243821, 0.34062746964654456, 0.5899158924001677, 0.1273375405407705, 0.6866376712310945, 0.3812864953771038, 0.07918534602430627, 0.10510921928053807, 0.052405178286905496, 0.29010285216427345, 0.5802968836962079, 0.4475494904811408, 0.33107045093633036, 0.6046547135519548, 0.33132995382553565, 0.3391582818855403, 0.37109937806185267, 0.18876467901964422, 0.03244681540368277, 0.6531311156123596, 0.18281848038190407, 0.06840545126676123, 0.23876166598551407, 0.5602062902528231, 0.05478334190217349, 0.18965009362393503, 0.502081053312289, 0.0945975060483667, 0.24937367783354814, 0.14040338921272166, 0.09582424632391484, 0.4879833184669665, 0.07536550594022651, 0.37763546052463404, 0.20240400638142053, 0.06234715971662652, 0.1729504208160284, 0.2536573606029918, 0.1491704939138675, 0.47224603889779837, 0.20734784509414073, 0.1656619584420439, 0.20263687678412212, 0.4576701693643329, 0.3746187330143109, 0.06578487521364562, 0.09359041291034786, 0.15714155813810793, 0.43198081216185935, 0.17693664965610134, 0.14200602748771296, 0.16878839641400256, 0.11131318694256087, 0.43040972974554736, 0.12494266711040569, 0.5286591337585229, 0.3917329141436472, 0.14284790216410748, 0.29931895876037384, 0.3998656181534954, 0.13198036366642862, 0.2166851793268345, 0.164669749255824, 0.3116999397838065, 0.5702002297218003, 0.2867818412254799, 0.05809024612643199, 0.0701620515557333, 0.10493669218879953, 0.03474255021640338, 0.14069518845012563, 0.7697788668098057, 0.44513161239284327, 0.12104291767226882, 0.2823656727566666, 0.28640273091276736, 0.09904459769556595, 0.10889384421684001, 0.1978655273089749, 0.6326587477498924, 0.0766186874204361, 0.07300117689776386, 0.3978521493117628, 0.7293533971641823, 0.24040337450518035, 0.46827469198568006, 0.03737110954461231, 0.48112847828662497, 0.5755848065786346, 0.12151472907643468, 0.332302417201758, 0.3208349144509022, 0.13406270144296106, 0.47820199098358873, 0.024219732643774528, 0.7923035912680444, 0.3099424932714111, 0.8494816644677875, 0.15230116664989468, 0.8795672599938588, 0.34536882843285344, 0.587897812361327, 0.3660303223369904, 0.3074082248441362, 0.1925553058603695, 0.1582957933341015, 0.5297945963993664, 0.1892543681582496, 0.06574637766643598, 0.03286461121245521, 0.6223124217546917, 0.48666930315350876, 0.17200815643270417, 0.27042696199957883, 0.16010429726024444, 0.25291734909108765, 0.22778758435893687, 0.6055190518965303, 0.41989528411161425, 0.2865861541738164, 0.17344095530188786, 0.4163761941495938, 0.24610426408478792, 0.029106329843254564, 0.5849270471051293, 0.09607886499379148, 0.4890296174547498, 0.11193395874659995, 0.3667485749721523, 0.29672938182784603, 0.13696827462710404, 0.03986507081677082, 0.41542023534722683, 0.1642424989032959, 0.041559354155004224, 0.1266666793707928, 0.5259198205822933, 0.42123490919744344, 0.6147437654518444, 0.42849246998341506, 0.04874684240881699, 0.16870816563337898, 0.35179373534084035, 0.4552463954734379, 0.1543174595222413, 0.4641274821418986, 0.1106599594415556, 0.40441066041397966, 0.05916303638108533, 0.24194101851814365, 0.5755848065786346, 0.23631147082452741, 0.04679471849088612, 0.33132995382553565, 0.6031606095022326, 0.16900214819844117, 0.9322526967181247, 0.1065938389205352, 0.0540586741766943, 0.14920224829950646, 0.03054451782098533, 0.13595064656866984, 0.15908339514281045, 0.09402391562754642, 0.27219479721363327, 0.10477531970828624, 0.6046547135519548, 0.04412971358840656, 0.0821245873848182, 0.24953715645213048, 0.24311299470472425, 0.679537413518331, 0.02875041056121841, 0.2874129658970298, 0.17131102264191878, 0.07042427222914205, 0.1577516063520068, 0.39934634677258996, 0.42249259173992826, 0.24940231538328683, 0.46827469198568006, 0.040988937643475554, 0.034828704291737345, 0.26663563965858417, 0.22421743312747255, 0.10716094829621758, 0.7421831263598226, 0.4644511163280224, 0.1591307416719686, 0.21502194578256428, 0.12883185373794437, 0.15520095945599266, 0.04280666734842442, 0.06928764484923078, 0.3578757504587543, 0.0760792945579073, 0.06637805380770656, 0.5755848065786346, 0.4326356954473739, 0.16985579355455038, 0.47152805642545803, 0.11644579282256762, 0.11790522998710073, 0.5438286352264949, 0.41561805514360906, 0.050606352251634235, 0.21836830194439782, 0.22298545275517268, 0.1504846162366139, 0.16819644397314482, 0.47796113776613436, 0.14100197907825862, 0.7878397890034206, 0.12176963827920351, 0.09814942480303201, 0.23162396036129984, 0.04400104962869911, 0.061588508633294015, 0.2774601068082493, 0.40816383821078206, 0.14036214651023216, 0.11837607594274324, 0.0703155477214753, 0.17002415827487982, 0.24611532014486182, 0.06874641727313702, 0.30975746960573625, 0.07004288447243323, 0.6453829176356538, 0.3880412370469972, 0.10205495289732236, 0.12171087020281346, 0.38550692709735157, 0.4398162761337091, 0.5769741243450848, 0.48842976274850136, 0.3866799681687785, 0.17129518728202664, 0.5711206597512044, 0.4456070955069118, 0.4585850027539752, 0.25462747480751524, 0.34771016550763867, 0.35548618548401445, 0.07878090041588082, 0.3008706318705062, 0.08117751180329491, 0.055511805197920094, 0.1600174453683395, 0.35597309965685686, 0.5473978930443646, 0.3321771897262046, 0.14643302530661162, 0.7653011157176768, 0.24188431843396252, 0.16704799028757666, 0.41136103198090634, 0.5749869949413896, 0.709238838470871, 0.09340318303147321, 0.602429869503323, 0.04154705947390969, 0.7519582179986716, 0.15993940416551844, 0.04372375151311325, 0.4076899811241429, 0.4644511163280224, 0.3133137248525114, 0.24628490675063597, 0.06972977174174444, 0.15949948541388637, 0.2241543425141257, 0.1729876202034616, 0.07290025122558275, 0.1220000714032804, 0.36493953208423235, 0.09420126302076737, 0.026726938234992392, 0.7199273032686843, 0.4606762448039463, 0.04906818437448113, 0.19446415942665518, 0.14876853598344464, 0.3247816953453747, 0.023320858692869595, 0.7310618090422621, 0.48944479260603346, 0.20357574295749958, 0.0840537250624015, 0.5368744051465595, 0.21101467800102214, 0.46682279298460017, 0.3749869638443927, 0.46592999202179275, 0.10188412989688433, 0.15751976448865512], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"chlorides\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"chlorides\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}, \"All_free.sulfur.dioxide\": {\"data\": [{\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Reference<br>free.sulfur.dioxide=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [39.0, 34.0, 26.0, 25.0, 34.0, 20.0, 39.0, 33.0, 24.0, 26.0, 73.0, 4.0, 56.0, 41.5, 41.0, 23.0, 26.0, 6.0, 17.0, 21.0, 72.0, 27.0, 46.0, 30.0, 32.0, 40.0, 25.0, 37.0, 33.0, 29.0, 35.0, 31.0, 30.0, 96.0, 21.0, 44.0, 59.0, 38.0, 19.0, 12.0, 38.0, 18.0, 23.0, 18.0, 41.0, 24.0, 12.0, 24.0, 6.0, 27.0, 45.0, 54.0, 30.0, 44.0, 33.0, 50.0, 12.0, 22.0, 10.0, 50.0, 14.0, 20.0, 42.0, 47.0, 10.0, 6.0, 36.0, 13.0, 28.0, 20.0, 24.0, 19.0, 29.0, 37.5, 12.0, 24.0, 15.0, 26.0, 25.0, 37.0, 60.0, 36.0, 20.0, 28.0, 27.0, 31.0, 12.0, 21.0, 21.0, 7.0, 12.0, 36.0, 39.0, 48.0, 39.0, 24.0, 53.0, 16.0, 28.0, 28.0, 7.0, 35.0, 10.0, 4.0, 11.0, 41.0, 20.0, 27.0, 36.0, 29.0, 41.0, 35.0, 20.0, 19.0, 52.0, 22.0, 12.0, 23.0, 60.0, 24.0, 19.0, 34.0, 49.0, 46.0, 33.0, 13.0, 9.0, 38.0, 38.0, 6.0, 17.0, 33.0, 44.5, 24.0, 20.0, 54.0, 13.0, 15.0, 28.0, 14.0, 36.0, 53.0, 47.0, 43.0, 7.0, 22.0, 17.0, 12.0, 18.0, 34.0, 29.0, 23.0, 28.0, 57.0, 33.0, 42.0, 45.0, 8.0, 23.0, 37.0, 31.0, 17.0, 22.0, 21.0, 25.0, 37.0, 63.0, 29.0, 44.0, 43.0, 7.0, 24.0, 38.0, 30.0, 21.0, 34.0, 17.0, 26.0, 45.0, 16.0, 29.0, 35.0, 7.0, 50.0, 30.0, 33.0, 24.0, 7.0, 50.0, 25.0, 35.0, 3.0, 35.0, 19.0, 24.0, 32.0, 36.0, 59.0, 23.5, 23.0, 20.0, 18.0, 28.0, 38.0, 61.0, 43.0, 8.0, 22.0, 45.0, 29.0, 15.0, 29.0, 29.0, 36.0, 20.0, 16.0, 43.0, 39.0, 53.0, 13.0, 25.0, 41.0, 12.0, 35.0, 17.0, 29.0, 35.0, 47.0, 33.0, 39.0, 40.0, 39.0, 26.0, 52.0, 14.0, 17.0, 43.0, 51.0, 45.0, 49.0, 47.0, 49.0, 46.0, 29.0, 15.0, 47.0, 47.0, 29.0, 43.0, 30.0, 45.0, 48.5, 27.0, 9.0, 17.0, 29.0, 19.0, 35.0, 44.0, 3.0, 57.0, 35.0, 24.0, 51.0, 42.0, 30.0, 17.0, 6.0, 29.0, 18.0, 14.0, 19.0, 7.0, 39.0, 31.0, 50.0, 29.0, 10.0, 3.0, 23.0, 38.0, 49.0, 12.0, 36.0, 26.0, 19.0, 28.0, 78.0, 14.0, 24.0, 16.0, 64.0, 6.0, 45.0, 55.0, 44.0, 16.0, 62.0, 9.0, 27.0, 19.0, 21.0, 24.0, 22.0, 16.0, 24.0, 73.0, 20.0, 42.0, 26.0, 31.0, 38.0, 14.0, 20.0, 21.0, 6.0, 48.0, 41.0, 35.0, 37.0, 45.0, 12.0, 33.0, 49.0, 29.0, 8.0, 26.0, 20.0, 49.0, 27.0, 27.0, 26.0, 6.0, 66.0, 30.0, 38.0, 25.0, 34.0, 28.0, 52.0, 86.0, 14.0, 40.0, 40.0, 18.0, 32.0, 36.0, 7.0, 33.0, 35.0, 59.0, 60.0, 29.0, 20.0, 69.0, 35.0, 32.0, 37.0, 4.0, 31.0, 37.0, 47.0, 25.0, 22.0, 17.0, 28.0, 19.0, 51.0, 11.0, 48.0, 41.0, 17.0, 15.0, 15.0, 19.0, 37.0, 45.0, 17.0, 45.0, 26.0, 13.0, 53.0, 14.0, 53.0, 61.0, 24.0, 55.0, 23.0, 29.0, 29.0, 43.0, 42.0, 36.0, 8.0, 37.0, 18.0, 10.0, 27.0, 58.0, 21.0, 24.0, 8.0, 16.0, 47.0, 14.0, 43.0, 34.0, 17.0, 36.0, 16.0, 29.0, 42.0, 39.0, 15.0, 25.0, 40.0, 45.0, 60.0, 18.0, 15.0, 21.0, 41.0, 60.0, 29.0, 74.0, 40.0, 24.0, 34.0, 27.0, 56.0, 42.0, 14.0, 29.0, 31.0, 35.0, 31.0, 12.0, 32.0, 26.0, 16.0, 19.0, 25.0, 28.0, 20.0, 7.0, 23.0, 66.0, 33.0, 6.0, 36.0, 42.0, 38.0, 15.0, 29.0, 44.0, 7.0, 88.0, 24.0, 26.0, 46.0, 6.0, 29.0, 10.0, 50.0, 53.0, 31.0, 30.0, 63.0, 35.0, 13.0, 17.0, 68.0, 16.0, 35.0, 17.0, 73.0, 17.0, 32.0, 39.0, 21.0, 19.0, 56.0, 37.0, 38.0, 20.0, 8.0, 44.0, 33.0, 24.0, 17.0, 73.0, 23.0, 30.0, 47.0, 7.0, 35.0, 50.0, 47.0, 34.0, 34.0, 59.0, 45.0, 53.0, 55.0, 47.0, 45.0, 46.0, 35.0, 31.0, 17.0, 27.0, 22.0, 32.0, 57.0, 32.0, 12.0, 19.0, 54.0, 24.0, 26.0, 16.0, 30.0, 29.0, 48.0, 14.0, 4.0, 21.0, 30.0, 33.0, 23.0, 10.0, 5.0, 52.0, 20.0, 18.0, 27.0, 52.0, 30.0, 53.0, 24.0, 44.0, 37.0, 38.0, 36.0, 54.0, 30.0, 6.0, 22.0, 28.0, 40.0, 48.0, 41.0, 18.0, 12.0, 33.0, 8.0, 20.0, 14.0, 44.0, 38.0, 36.0, 26.0, 20.0, 24.0, 18.0, 23.0, 23.0, 9.0, 24.0, 61.0, 24.0, 27.0, 13.0, 39.0, 36.0, 11.0, 33.0, 33.0, 44.0, 27.0, 36.0, 34.0, 33.0, 40.0, 24.0, 14.0, 34.0, 38.0, 15.0, 18.0, 20.0, 31.0, 58.0, 37.0, 38.0, 17.0, 23.0, 3.0, 25.0, 42.0, 18.0, 14.0, 54.0, 31.0, 6.0, 26.0, 69.0, 56.0, 48.0, 45.0, 36.0, 24.0, 70.0, 5.0, 34.0, 19.0, 10.0, 37.0, 15.0, 10.0, 53.0, 35.0, 13.0, 14.0, 47.0, 52.0, 38.0, 24.0, 68.0, 22.0, 56.0, 53.0, 39.0, 20.0, 53.0, 12.0, 16.0, 68.0, 46.0, 33.0, 42.0, 17.0, 55.0, 31.0, 40.0], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Current<br>free.sulfur.dioxide=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [18.0, 55.0, 24.0, 15.0, 23.0, 27.0, 37.0, 21.0, 32.0, 57.0, 13.0, 29.0, 36.0, 26.0, 31.0, 29.0, 32.0, 11.0, 1.0, 42.0, 53.0, 39.0, 12.0, 45.0, 46.0, 32.0, 35.0, 61.0, 22.0, 34.0, 26.0, 23.0, 59.0, 26.0, 37.0, 45.0, 32.0, 60.0, 16.0, 10.0, 39.0, 31.0, 37.0, 46.0, 11.0, 34.0, 23.0, 18.0, 73.0, 38.0, 6.0, 22.0, 35.0, 14.0, 37.0, 43.0, 37.0, 27.0, 46.0, 18.0, 34.0, 45.0, 30.0, 15.0, 28.0, 31.0, 49.0, 32.0, 38.0, 50.0, 35.0, 36.0, 31.0, 28.0, 26.0, 54.0, 32.0, 53.0, 20.0, 6.0, 23.0, 66.0, 34.0, 22.0, 26.0, 14.0, 41.0, 20.0, 49.0, 14.0, 60.0, 46.0, 18.0, 28.0, 30.0, 26.0, 6.0, 51.0, 6.0, 16.0, 25.0, 26.0, 13.0, 49.0, 35.0, 37.0, 15.0, 20.0, 34.0, 37.0, 32.0, 35.0, 35.0, 13.0, 28.0, 19.0, 46.0, 33.0, 29.0, 21.0, 23.0, 74.0, 8.0, 23.0, 25.0, 5.0, 23.0, 21.0, 10.0, 29.0, 22.0, 18.0, 24.0, 48.0, 20.0, 62.0, 5.0, 24.0, 14.0, 29.0, 57.0, 27.0, 17.0, 46.0, 55.0, 23.0, 55.0, 10.0, 24.0, 20.0, 41.0, 33.0, 24.0, 14.0, 39.0, 10.0, 31.0, 15.0, 23.0, 49.0, 12.0, 10.0, 19.0, 50.0, 8.0, 15.0, 32.0, 13.0, 24.0, 52.0, 38.0, 20.0, 6.0, 3.0, 12.0, 41.0, 46.0, 54.0, 38.0, 17.0, 29.0, 33.0, 40.0, 54.0, 54.0, 26.0, 1.0, 24.0, 45.0, 22.0, 47.0, 17.0, 36.0, 40.0, 39.0, 36.0, 26.0, 18.0, 55.0, 21.0, 26.0, 29.0, 38.5, 21.0, 41.0, 18.0, 24.0, 38.0, 32.0, 79.5, 34.0, 24.0, 18.0, 37.0, 12.0, 35.0, 24.0, 25.0, 23.0, 34.0, 34.0, 56.0, 3.0, 62.0, 56.0, 28.0, 26.0, 44.0, 32.0, 32.0, 16.0, 30.0, 22.0, 31.0, 15.0, 51.0, 29.0, 30.0, 45.0, 18.0, 21.0, 23.0, 21.0, 29.0, 28.0, 13.0, 45.0, 39.0, 26.0, 6.0, 47.0, 68.0, 43.0, 26.0, 36.0, 44.0, 21.0, 13.0, 34.0, 25.0, 8.0, 47.0, 26.0, 67.0, 34.0, 27.0, 29.0, 54.0, 56.0, 58.0, 45.0, 37.0, 10.0, 13.0, 41.0, 12.0, 35.0, 17.0, 40.0, 39.0, 9.0, 25.0, 37.0, 26.0, 30.0, 11.0, 29.0, 22.0, 34.0, 45.0, 19.0, 5.0, 47.0, 26.0, 33.0, 33.0, 25.0, 40.0, 40.0, 28.0, 52.0, 25.0, 95.0, 42.0, 53.0, 24.0, 35.0, 53.0, 62.0, 34.0, 48.0, 15.0, 11.0, 31.0, 26.0, 69.0, 34.0, 11.0, 29.0, 52.0, 39.0, 31.0, 27.0, 50.0, 11.0, 49.0, 30.0, 17.0, 51.0, 20.0, 15.0, 18.0, 11.0, 63.0, 36.0, 23.0, 57.0, 80.0, 28.0, 6.0, 40.0, 27.0, 49.0, 39.0, 15.0, 29.0, 27.0, 7.0, 15.0, 25.0, 37.0, 30.0, 35.0, 14.0, 57.0, 20.0, 8.0, 18.0, 70.5, 13.0, 29.0, 25.0, 32.0, 61.0, 12.0, 53.0, 41.0, 50.0, 58.0, 68.0, 29.0, 29.0, 38.0, 22.0, 10.0, 9.0, 31.0, 17.0, 18.0, 13.0, 34.0, 22.0, 34.0, 56.0, 41.0, 24.0, 35.0, 31.0, 6.0, 43.0, 53.0, 32.0, 21.0, 71.0, 36.0, 11.0, 42.0, 7.0, 27.0, 37.0, 33.0, 37.0, 28.0, 21.0, 19.0, 44.0, 49.0, 23.0, 29.0, 17.0, 8.0, 16.0, 28.0, 9.0, 64.0, 29.0, 64.0, 5.0, 37.0, 19.0, 18.0, 38.0, 9.0, 5.5, 5.0, 50.0, 29.0, 27.0, 24.0, 35.0, 25.0, 20.0, 20.0, 29.0, 8.0, 14.0, 49.0, 53.0, 23.0, 19.0, 48.5, 5.0, 65.0, 27.0, 20.0, 6.0, 26.0, 19.0, 22.0, 15.0, 50.0, 22.0, 40.0, 4.0, 33.0, 49.0, 20.0, 24.0, 57.0, 9.0, 105.0, 44.0, 34.0, 56.0, 53.0, 23.0, 46.0, 14.0, 35.0, 22.0, 42.0, 60.0, 15.0, 25.0, 31.0, 11.0, 61.0, 19.0, 18.0, 63.0, 37.0, 34.0, 33.0, 10.0, 49.0, 26.0, 4.0, 15.0, 6.0, 26.0, 17.0, 44.5, 17.0, 11.0, 10.0, 6.0, 35.0, 15.0, 7.0, 25.0, 42.0, 33.0, 48.5, 40.0, 10.0, 41.0, 57.0, 25.0, 26.0, 31.0, 51.0, 25.0, 31.0, 14.0, 46.0, 41.0, 26.0, 6.0, 53.0, 11.0, 54.0, 8.0, 25.0, 32.0, 81.0, 46.0, 36.0, 36.0, 42.0, 60.5, 15.0, 45.0, 53.0, 41.0, 5.0, 33.0, 6.0, 16.0, 3.0, 52.0, 50.0, 25.0, 6.0, 40.0, 11.0, 16.0, 34.0, 7.0, 17.0, 48.5, 51.0, 14.0, 29.0, 6.0, 21.0, 62.0, 24.0, 19.0, 10.0, 44.0, 44.0, 33.0, 33.0, 8.0, 25.0, 26.0, 73.0, 31.0, 14.0, 56.0, 34.0, 37.0, 67.0, 42.0, 42.0, 30.0, 29.0, 26.0, 50.0, 16.0, 57.0, 40.0, 49.0, 18.0, 38.0, 17.0, 6.0, 56.0, 25.0, 15.0, 18.0, 29.0, 17.0, 10.0, 3.0, 27.0, 26.0, 38.0, 32.0, 47.0, 43.0, 29.0, 60.0, 40.0, 48.0, 17.0, 5.0, 27.0, 36.0, 14.0, 30.0, 41.0, 36.0, 55.0, 17.0, 15.0, 31.0, 29.0, 52.0, 23.0, 14.0, 35.0, 32.0, 21.0, 31.0, 10.0, 34.0, 52.0, 6.0, 59.0, 8.0, 17.0, 31.0, 12.0, 36.0, 25.0, 34.0, 16.0, 22.0, 34.0, 20.0, 50.0, 44.0, 38.0, 46.0, 52.0, 20.0, 32.0], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Reference<br>free.sulfur.dioxide=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [76.0, 19.0, 15.0, 32.0, 18.0, 17.0, 34.0, 9.0, 36.0, 28.0, 20.0, 15.0, 46.0, 8.0, 30.0, 61.0, 24.0, 7.0, 23.0, 3.0, 50.0, 47.0, 5.0, 34.0, 40.0, 15.0, 28.0, 22.0, 44.0, 27.0, 7.0, 25.0, 26.0, 60.0, 52.0, 10.0, 24.0, 58.0, 4.0, 54.0, 14.0, 10.0, 21.0, 24.0, 20.0, 23.0, 25.0, 39.0, 18.0, 22.0, 6.0, 26.0, 41.0, 5.0, 55.0, 42.0, 41.0, 39.0, 5.0, 29.0, 50.0, 47.0, 8.0, 55.0, 23.0, 36.0, 31.0, 32.0, 15.0, 13.0, 52.0, 3.0, 77.0, 20.0, 21.0, 55.0, 64.0, 7.0, 30.0, 15.0, 23.0, 16.0, 65.0, 9.0, 28.0, 11.0, 38.0, 5.0, 26.0, 17.0, 3.0, 55.0, 14.0, 77.0, 53.0, 53.0, 27.0, 39.0, 49.0, 31.0, 68.0, 23.0, 23.0, 44.0, 26.0, 18.0, 37.0, 6.0, 12.0, 25.0, 18.0, 16.0, 3.0, 22.0, 27.0, 18.0, 66.0, 20.0, 21.0, 12.0, 26.0, 13.0, 29.0, 22.0, 52.0, 68.0, 110.0, 9.0, 8.0, 48.0, 5.0, 11.0, 62.0, 61.0, 36.0, 47.0, 13.0, 36.0, 36.0, 33.0, 16.0, 74.0, 3.0, 21.0, 40.0, 61.0, 40.0, 56.0, 25.0, 22.0, 23.0, 17.0, 38.0, 7.0, 36.0, 10.0, 33.0, 53.0, 15.0, 10.0, 14.0, 5.0, 26.0, 34.0, 7.0, 8.0, 44.0, 36.0, 43.0, 54.0, 52.0, 13.0, 35.0, 22.0, 18.0, 6.0, 7.0, 21.0, 15.0, 17.0, 56.0, 3.0, 36.0, 14.0, 64.0, 48.0, 34.0, 5.0, 38.0, 45.0, 16.0, 19.0, 57.0, 8.0, 35.0, 6.0, 20.0, 30.5, 67.0, 44.0, 48.0, 48.0, 48.0, 15.0, 27.0, 37.0, 51.0, 11.0, 5.0, 3.0, 33.0, 48.0, 29.0, 36.0, 27.0, 26.0, 44.0, 9.0, 24.0, 5.0, 8.0, 52.0, 62.0, 29.0, 21.0, 44.0, 27.0, 40.0, 21.0, 3.0, 18.0, 16.0, 17.0, 19.0, 35.0, 33.0, 67.0, 7.0, 40.5, 66.0, 20.0, 43.0, 55.0, 61.0, 52.0, 20.0, 38.0, 70.0, 13.0, 9.0, 35.0, 32.0, 26.0, 10.0, 34.0, 54.0, 20.0, 6.0, 39.0, 6.0, 46.0, 49.0, 59.0, 21.0, 28.0, 53.0, 38.0, 25.0, 23.0, 29.0, 128.0, 22.0, 14.0, 24.0, 61.0, 61.0, 34.0, 66.0, 15.0, 11.0, 6.0, 14.0, 12.0, 16.0, 9.0, 51.0, 21.0, 57.0, 17.0, 54.0, 8.0, 17.0, 146.5, 6.0, 16.0, 7.0, 29.0, 58.0, 60.0, 15.0, 17.0, 22.0, 26.0, 53.0, 18.0, 11.0, 33.0, 11.0, 6.0, 13.0, 64.0, 49.0, 14.0, 52.0, 47.0, 22.0, 52.5, 24.0, 58.0, 9.0, 7.0, 62.0, 15.0, 4.0, 57.0, 32.0, 22.0, 58.0, 12.0, 61.0, 48.0, 23.0, 10.0, 81.0, 23.0, 6.0, 59.0, 5.0, 30.0, 67.0, 18.0, 48.0, 31.0, 12.0, 46.0, 13.0, 28.0, 47.0, 9.0, 50.0, 21.0, 10.0, 29.0, 17.0, 16.0], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Current<br>free.sulfur.dioxide=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [39.0, 33.0, 45.0, 5.0, 36.0, 48.0, 25.0, 4.0, 10.0, 6.0, 22.0, 32.0, 39.0, 52.0, 30.0, 32.0, 35.0, 12.0, 9.0, 10.0, 15.0, 49.0, 31.0, 65.0, 31.0, 23.0, 35.0, 28.0, 11.0, 19.0, 51.0, 48.0, 12.0, 11.0, 24.0, 57.0, 35.0, 11.0, 27.0, 27.0, 19.0, 34.0, 44.0, 40.0, 10.0, 39.0, 16.0, 9.0, 36.0, 10.0, 58.0, 33.0, 26.0, 5.0, 9.0, 23.0, 13.0, 10.0, 21.0, 57.0, 10.0, 33.0, 45.0, 10.0, 13.0, 4.0, 16.0, 11.0, 8.0, 17.0, 6.0, 47.0, 69.0, 16.0, 36.0, 31.0, 45.0, 5.0, 13.0, 32.0, 40.0, 10.0, 45.0, 15.0, 34.0, 10.0, 37.0, 66.0, 81.0, 17.0, 67.0, 15.0, 6.0, 45.0, 40.0, 5.0, 40.0, 51.0, 26.0, 67.0, 20.0, 20.0, 32.0, 13.0, 11.0, 4.0, 27.0, 15.0, 16.0, 44.0, 15.0, 6.0, 18.0, 24.0, 12.0, 19.5, 35.0, 47.0, 52.0, 16.0, 22.0, 39.0, 25.0, 21.0, 12.0, 27.0, 7.0, 15.0, 12.0, 46.0, 6.0, 62.0, 45.0, 14.0, 31.0, 66.0, 6.0, 5.0, 17.0, 9.0, 6.0, 34.0, 38.0, 7.0, 21.0, 31.0, 21.0, 5.0, 42.0, 54.0, 46.0, 46.0, 29.0, 53.0, 24.0, 17.0, 54.0, 52.0, 36.0, 37.0, 15.0, 27.0, 24.0, 44.0, 6.0, 23.0, 23.0, 15.0, 30.0, 41.0, 16.0, 23.0, 12.0, 62.0, 46.0, 40.0, 8.0, 57.0, 54.0, 55.0, 14.0, 64.0, 12.0, 19.0, 42.0, 31.0, 60.0, 16.0, 27.0, 45.0, 16.0, 14.0, 67.0, 12.0, 70.0, 7.0, 20.0, 34.0, 48.0, 23.0, 5.0, 54.0, 37.0, 81.0, 3.0, 68.0, 50.0, 3.0, 26.0, 58.0, 30.0, 29.0, 18.0, 31.0, 61.0, 22.0, 66.0, 46.0, 36.0, 15.0, 40.0, 54.0, 22.0, 61.0, 47.0, 18.0, 16.0, 28.0, 18.0, 32.0, 36.0, 24.0, 44.0, 34.0, 16.0, 35.0, 23.0, 40.0, 45.0, 31.0, 28.0, 5.0, 21.0, 64.0, 20.0, 34.0, 18.0, 26.0, 59.0, 20.0, 15.0, 61.0, 14.0, 51.0, 8.0, 43.0, 64.0, 50.5, 22.0, 20.0, 9.0, 17.0, 54.0, 54.0, 11.0, 28.0, 11.0, 12.0, 4.0, 52.0, 20.0, 12.0, 52.0, 25.0, 18.0, 8.0, 67.0, 16.0, 17.0, 44.0, 45.0, 48.0, 30.0, 72.0, 52.0, 63.0, 16.0, 17.0, 6.0, 34.0, 45.0, 33.0, 45.0, 15.0, 30.0, 12.0, 25.0, 35.0, 39.0, 5.0, 39.0, 15.0, 58.0, 64.0, 68.0, 9.0, 5.0, 21.0, 32.0, 47.0, 24.0, 21.0, 7.0, 39.0, 19.0, 56.0, 40.0, 48.0, 26.0, 26.0, 10.0, 3.0, 23.0, 43.0, 4.0, 37.0, 36.0, 3.0, 54.0, 69.0, 5.0, 32.0, 32.0, 59.0, 7.0, 33.0, 43.0, 25.0, 44.0, 18.0, 51.0, 26.0, 29.0, 11.0, 5.0, 7.0, 15.0, 39.0, 44.0, 24.0, 16.0, 13.0], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Reference\", \"x\": 0.245, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Current\", \"x\": 0.755, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"barmode\": \"overlay\", \"legend\": {\"title\": {\"text\": \"target\"}, \"tracegroupgap\": 0}, \"margin\": {\"t\": 60}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.49], \"title\": {\"text\": \"free.sulfur.dioxide\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.51, 1.0], \"matches\": \"x\", \"title\": {\"text\": \"free.sulfur.dioxide\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"count\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}}}, \"free.sulfur.dioxide_good\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (ref)\", \"type\": \"scatter\", \"x\": [39.0, 34.0, 26.0, 25.0, 34.0, 20.0, 39.0, 33.0, 24.0, 26.0, 73.0, 4.0, 56.0, 41.5, 41.0, 23.0, 26.0, 6.0, 17.0, 21.0, 72.0, 27.0, 46.0, 30.0, 32.0, 40.0, 25.0, 37.0, 33.0, 29.0, 35.0, 31.0, 30.0, 96.0, 21.0, 44.0, 59.0, 38.0, 19.0, 12.0, 38.0, 18.0, 23.0, 18.0, 41.0, 24.0, 12.0, 24.0, 6.0, 27.0, 45.0, 54.0, 30.0, 44.0, 33.0, 50.0, 12.0, 22.0, 10.0, 50.0, 14.0, 20.0, 42.0, 47.0, 10.0, 6.0, 36.0, 13.0, 28.0, 20.0, 24.0, 19.0, 29.0, 37.5, 12.0, 24.0, 15.0, 26.0, 25.0, 37.0, 60.0, 36.0, 20.0, 28.0, 27.0, 31.0, 12.0, 21.0, 21.0, 7.0, 12.0, 36.0, 39.0, 48.0, 39.0, 24.0, 53.0, 16.0, 28.0, 28.0, 7.0, 35.0, 10.0, 4.0, 11.0, 41.0, 20.0, 27.0, 36.0, 29.0, 41.0, 35.0, 20.0, 19.0, 52.0, 22.0, 12.0, 23.0, 60.0, 24.0, 19.0, 34.0, 49.0, 46.0, 33.0, 13.0, 9.0, 38.0, 38.0, 6.0, 17.0, 33.0, 44.5, 24.0, 20.0, 54.0, 13.0, 15.0, 28.0, 14.0, 36.0, 53.0, 47.0, 43.0, 7.0, 22.0, 17.0, 12.0, 18.0, 34.0, 29.0, 23.0, 28.0, 57.0, 33.0, 42.0, 45.0, 8.0, 23.0, 37.0, 31.0, 17.0, 22.0, 21.0, 25.0, 37.0, 63.0, 29.0, 44.0, 43.0, 7.0, 24.0, 38.0, 30.0, 21.0, 34.0, 17.0, 26.0, 45.0, 16.0, 29.0, 35.0, 7.0, 50.0, 30.0, 33.0, 24.0, 7.0, 50.0, 25.0, 35.0, 3.0, 35.0, 19.0, 24.0, 32.0, 36.0, 59.0, 23.5, 23.0, 20.0, 18.0, 28.0, 38.0, 61.0, 43.0, 8.0, 22.0, 45.0, 29.0, 15.0, 29.0, 29.0, 36.0, 20.0, 16.0, 43.0, 39.0, 53.0, 13.0, 25.0, 41.0, 12.0, 35.0, 17.0, 29.0, 35.0, 47.0, 33.0, 39.0, 40.0, 39.0, 26.0, 52.0, 14.0, 17.0, 43.0, 51.0, 45.0, 49.0, 47.0, 49.0, 46.0, 29.0, 15.0, 47.0, 47.0, 29.0, 43.0, 30.0, 45.0, 48.5, 27.0, 9.0, 17.0, 29.0, 19.0, 35.0, 44.0, 3.0, 57.0, 35.0, 24.0, 51.0, 42.0, 30.0, 17.0, 6.0, 29.0, 18.0, 14.0, 19.0, 7.0, 39.0, 31.0, 50.0, 29.0, 10.0, 3.0, 23.0, 38.0, 49.0, 12.0, 36.0, 26.0, 19.0, 28.0, 78.0, 14.0, 24.0, 16.0, 64.0, 6.0, 45.0, 55.0, 44.0, 16.0, 62.0, 9.0, 27.0, 19.0, 21.0, 24.0, 22.0, 16.0, 24.0, 73.0, 20.0, 42.0, 26.0, 31.0, 38.0, 14.0, 20.0, 21.0, 6.0, 48.0, 41.0, 35.0, 37.0, 45.0, 12.0, 33.0, 49.0, 29.0, 8.0, 26.0, 20.0, 49.0, 27.0, 27.0, 26.0, 6.0, 66.0, 30.0, 38.0, 25.0, 34.0, 28.0, 52.0, 86.0, 14.0, 40.0, 40.0, 18.0, 32.0, 36.0, 7.0, 33.0, 35.0, 59.0, 60.0, 29.0, 20.0, 69.0, 35.0, 32.0, 37.0, 4.0, 31.0, 37.0, 47.0, 25.0, 22.0, 17.0, 28.0, 19.0, 51.0, 11.0, 48.0, 41.0, 17.0, 15.0, 15.0, 19.0, 37.0, 45.0, 17.0, 45.0, 26.0, 13.0, 53.0, 14.0, 53.0, 61.0, 24.0, 55.0, 23.0, 29.0, 29.0, 43.0, 42.0, 36.0, 8.0, 37.0, 18.0, 10.0, 27.0, 58.0, 21.0, 24.0, 8.0, 16.0, 47.0, 14.0, 43.0, 34.0, 17.0, 36.0, 16.0, 29.0, 42.0, 39.0, 15.0, 25.0, 40.0, 45.0, 60.0, 18.0, 15.0, 21.0, 41.0, 60.0, 29.0, 74.0, 40.0, 24.0, 34.0, 27.0, 56.0, 42.0, 14.0, 29.0, 31.0, 35.0, 31.0, 12.0, 32.0, 26.0, 16.0, 19.0, 25.0, 28.0, 20.0, 7.0, 23.0, 66.0, 33.0, 6.0, 36.0, 42.0, 38.0, 15.0, 29.0, 44.0, 7.0, 88.0, 24.0, 26.0, 46.0, 6.0, 29.0, 10.0, 50.0, 53.0, 31.0, 30.0, 63.0, 35.0, 13.0, 17.0, 68.0, 16.0, 35.0, 17.0, 73.0, 17.0, 32.0, 39.0, 21.0, 19.0, 56.0, 37.0, 38.0, 20.0, 8.0, 44.0, 33.0, 24.0, 17.0, 73.0, 23.0, 30.0, 47.0, 7.0, 35.0, 50.0, 47.0, 34.0, 34.0, 59.0, 45.0, 53.0, 55.0, 47.0, 45.0, 46.0, 35.0, 31.0, 17.0, 27.0, 22.0, 32.0, 57.0, 32.0, 12.0, 19.0, 54.0, 24.0, 26.0, 16.0, 30.0, 29.0, 48.0, 14.0, 4.0, 21.0, 30.0, 33.0, 23.0, 10.0, 5.0, 52.0, 20.0, 18.0, 27.0, 52.0, 30.0, 53.0, 24.0, 44.0, 37.0, 38.0, 36.0, 54.0, 30.0, 6.0, 22.0, 28.0, 40.0, 48.0, 41.0, 18.0, 12.0, 33.0, 8.0, 20.0, 14.0, 44.0, 38.0, 36.0, 26.0, 20.0, 24.0, 18.0, 23.0, 23.0, 9.0, 24.0, 61.0, 24.0, 27.0, 13.0, 39.0, 36.0, 11.0, 33.0, 33.0, 44.0, 27.0, 36.0, 34.0, 33.0, 40.0, 24.0, 14.0, 34.0, 38.0, 15.0, 18.0, 20.0, 31.0, 58.0, 37.0, 38.0, 17.0, 23.0, 3.0, 25.0, 42.0, 18.0, 14.0, 54.0, 31.0, 6.0, 26.0, 69.0, 56.0, 48.0, 45.0, 36.0, 24.0, 70.0, 5.0, 34.0, 19.0, 10.0, 37.0, 15.0, 10.0, 53.0, 35.0, 13.0, 14.0, 47.0, 52.0, 38.0, 24.0, 68.0, 22.0, 56.0, 53.0, 39.0, 20.0, 53.0, 12.0, 16.0, 68.0, 46.0, 33.0, 42.0, 17.0, 55.0, 31.0, 40.0], \"xaxis\": \"x\", \"y\": [0.8156061324462894, 0.42491310922683634, 0.8867827646463432, 0.8014995238430205, 0.30499958310650876, 0.5817355832705369, 0.959171062334887, 0.7854416128369749, 0.9085690698200813, 0.8998600376511439, 0.6341165000693628, 0.412102187638673, 0.7643629411050379, 0.4710001938005606, 0.40182653035141874, 0.40438056362905367, 0.8870480016118494, 0.3650667978415713, 0.9064321709292111, 0.9327245345966092, 0.6458420185168736, 0.8821841129047617, 0.6704018506542557, 0.7655671181822064, 0.8616986618932058, 0.48774537944210006, 0.9637355036179479, 0.6794204065079696, 0.6044835155949141, 0.7867954023600708, 0.9137982268836646, 0.5867502063434873, 0.8048584290077971, 0.9718511071053526, 0.9627192884041744, 0.7978623718349598, 0.6091120966723917, 0.8943338178728011, 0.8853376735027229, 0.9045563504021151, 0.9264844632598176, 0.6342457655367447, 0.9414033426130164, 0.5636516403732365, 0.5172967922101196, 0.4836896337264441, 0.35199620689495453, 0.788779954566273, 0.9696552399248426, 0.772496554239754, 0.8132656157621138, 0.4539090261140653, 0.9333708926412786, 0.679765045723866, 0.48457442622955804, 0.4248820606938153, 0.6737819616086004, 0.8780741425819777, 0.38340602447337646, 0.90634085684919, 0.5574014604752268, 0.6804147683859246, 0.9077110088845216, 0.7718472635729894, 0.4717552048891654, 0.22222808308441652, 0.8616549355667619, 0.705749071892896, 0.4699129352300819, 0.9680524782819758, 0.8891353183282249, 0.9466602521798594, 0.8553382520847058, 0.7430243903066251, 0.6616131862201935, 0.6919609500216202, 0.96565744679506, 0.913108907487878, 0.5395521774612226, 0.9026238558501023, 0.6550941529376255, 0.9757876320152292, 0.8833495792027257, 0.6666029765862381, 0.8504582120840628, 0.9320215595878566, 0.7639947574915884, 0.6085229656221847, 0.9557131606798471, 0.46184432615952054, 0.5642658412077981, 0.8815615400732472, 0.7189203536918151, 0.9301020530176726, 0.7341394174346678, 0.7759189559372703, 0.8448078654733812, 0.9012666081120407, 0.8926028620066223, 0.5287492720273277, 0.6874206920638863, 0.37408584674942635, 0.8348370105186077, 0.8697567261320243, 0.9175759024810304, 0.44644098895981, 0.8874384748400057, 0.7787567487441118, 0.9416122482572158, 0.3265229243180111, 0.9308095750950773, 0.42267134533232753, 0.43068181214270274, 0.8727308285810839, 0.7201611177732586, 0.8430904589044517, 0.8140617541555761, 0.9456747441572588, 0.6672663325862807, 0.8756470416862959, 0.518871521713375, 0.7040615347784164, 0.4957960231649875, 0.6250130361556073, 0.27413726132188326, 0.5193133578087885, 0.37656641690434584, 0.5808048103476511, 0.7917827117482167, 0.36569143480873245, 0.7232542293832885, 0.9785934574433302, 0.5715075300165849, 0.8182555969893297, 0.5448461144048058, 0.9491291995847589, 0.4833587957991669, 0.3189279754564957, 0.9184825510014271, 0.5524830505676419, 0.9600429304649183, 0.7818180966165994, 0.7962710274484252, 0.7569429870375118, 0.46184432615952054, 0.7641514270390748, 0.9486763575522457, 0.8086368705092697, 0.6784536879503494, 0.6877019790624462, 0.6082670858563528, 0.6053794617794684, 0.6319330693089359, 0.4982105707488519, 0.6787928880949093, 0.9231980717613485, 0.8831230955067948, 0.6845485656817341, 0.8799204262605215, 0.9164563829924386, 0.7819268199067826, 0.23469888428232324, 0.9492377841603665, 0.8826092272015389, 0.6360541596480074, 0.5184081252698399, 0.6400126753125241, 0.542646305979658, 0.4479501208302092, 0.7783171875827786, 0.7867712153112567, 0.5236605417423803, 0.6959846197179591, 0.7925023358445066, 0.6683189355892497, 0.18737025221649042, 0.42506327048176057, 0.7272596040941706, 0.7314191754306454, 0.4827891324637794, 0.6649341228620356, 0.9038332731164471, 0.9588917860646077, 0.8945194928389463, 0.49833043835950624, 0.7997712594855277, 0.8577935987172323, 0.7622736922026153, 0.8039391974899521, 0.7396811504731934, 0.8115340233127679, 0.801728888664367, 0.738451208106372, 0.5859674792922007, 0.1865203674848816, 0.8773430435604171, 0.36888329310067386, 0.8651817982269884, 0.9067615420962557, 0.8594983988587351, 0.7437750884018276, 0.9145224932934428, 0.9135679891815164, 0.8001832456898428, 0.6860977766129374, 0.9377826008632761, 0.9300369611912853, 0.6997062971069969, 0.5693182102579236, 0.3404656140239559, 0.7160591142088384, 0.7953146078011, 0.8869803873277935, 0.7639982823097876, 0.8681285227071118, 0.576868797021353, 0.93035102563313, 0.8375600281828176, 0.8279918435672958, 0.9266689436294401, 0.7559862346636359, 0.5099889666930224, 0.6914445842613687, 0.9651950326885705, 0.87851968214492, 0.8499702807396289, 0.4685752957996948, 0.7241546992314323, 0.7848147251007912, 0.7341394174346678, 0.7008877443692281, 0.340588975625529, 0.5013021766499856, 0.8321174529331695, 0.8818378666553491, 0.9176909075187759, 0.8634678749265305, 0.7436082905772717, 0.9343776659412377, 0.7668809937296346, 0.6243383802582345, 0.5332560471205093, 0.6907315465649003, 0.16626803588025432, 0.1668542888532837, 0.7408943843163458, 0.5221312328975666, 0.7457559475413279, 0.46389636934606376, 0.9292627865919654, 0.5268311186840582, 0.4244151934213653, 0.643310536612302, 0.8577438313980266, 0.7816208399762355, 0.8553382520847058, 0.7010035672814305, 0.5242572272016158, 0.9187320011579697, 0.8703498177621264, 0.6713045345576062, 0.9137982268836646, 0.8614414457916845, 0.9445662266054761, 0.8808216590199034, 0.7386378115490353, 0.8873009977622293, 0.9157094897337859, 0.6606038558129893, 0.9296803968514485, 0.8864322240790464, 0.5146720135715994, 0.8720710714485208, 0.9415427660945741, 0.9138701141498735, 0.6527559092576063, 0.8751970040938668, 0.9249766460056568, 0.801728888664367, 0.6575848465963361, 0.6934824043184128, 0.8619113960143526, 0.9419078024651042, 0.9591721389341828, 0.8397407150753159, 0.9084383840076588, 0.4963969309336195, 0.7359588175524252, 0.3531961907069324, 0.9279819479140234, 0.7752976919572294, 0.8665226278427577, 0.9515211055933231, 0.7314191754306454, 0.890886918514299, 0.3235491032739525, 0.3719939405423586, 0.6323804178173072, 0.8398006965792015, 0.8239469134189235, 0.8592101816891015, 0.7615002907198236, 0.8688259750909261, 0.8718104001390852, 0.5838074755684882, 0.8756470416862959, 0.901850575196968, 0.9451930143658351, 0.6253812669856891, 0.5890764576710766, 0.4921052500998711, 0.4862070578416567, 0.9170647663398394, 0.7035583451969506, 0.8476385889092957, 0.5603058978573646, 0.5810606890504925, 0.9088604673919816, 0.8903252600075929, 0.944267921154058, 0.9435968591480925, 0.938237366988842, 0.9357286047893738, 0.7961386682142712, 0.7840233885688647, 0.2513590507613302, 0.7389284097502917, 0.9053472250810051, 0.44438282424164377, 0.862281110352348, 0.8021059248496223, 0.9152740930046814, 0.643737358401971, 0.8540304955499701, 0.8613418170006786, 0.6911084183178322, 0.8848367871057808, 0.8387883096682573, 0.5942651630821018, 0.65691393717736, 0.6369979527510315, 0.8280658524313272, 0.9640736168216585, 0.6546311715671466, 0.5599819536107853, 0.48348053317652906, 0.7668016587569692, 0.03620763244300767, 0.7364400865449663, 0.37408584674942635, 0.8767503774172, 0.8743962287172513, 0.8751970040938668, 0.8833495792027257, 0.7091886355621774, 0.87006937054451, 0.7904001815220257, 0.8761418339280951, 0.8306834851111597, 0.7531715889012326, 0.38181207472529843, 0.6490458991820136, 0.9138057013338913, 0.9046222904886461, 0.17956061692355052, 0.7506163079023257, 0.8963285795381793, 0.8848361664653354, 0.9283037217377402, 0.45996158699034445, 0.7290858434196763, 0.8319094967702583, 0.6578018675312727, 0.18727567457681707, 0.8673410249845035, 0.9453298670648187, 0.9446538464906173, 0.19605573045952288, 0.6723831041639817, 0.3438281302059518, 0.37858973820495484, 0.6953170483296187, 0.21463507152544156, 0.26963792069965237, 0.3280912492037974, 0.8399932187801539, 0.420387898633768, 0.36522500752858966, 0.5810560693343539, 0.9306346767722963, 0.7167716539092029, 0.656736106921484, 0.5549139996760648, 0.6909161521388689, 0.591904263202073, 0.884703171197362, 0.866402281883595, 0.7582770814524421, 0.8990773411030794, 0.1818065866116437, 0.6222165686186035, 0.17261914235374884, 0.8156064679757086, 0.4851213943917703, 0.8871292211128762, 0.8398494053952754, 0.703270618172154, 0.6305543892506115, 0.7494149477175548, 0.1532408287022325, 0.6159732902773407, 0.738220551127759, 0.8354520044441791, 0.8536870432671441, 0.5751476712690671, 0.9077719201719568, 0.7878515691455199, 0.6672663325862807, 0.45293736875445273, 0.17058553029544155, 0.747933377844996, 0.8400163125056676, 0.4516778718827729, 0.6082670858563528, 0.8401843469141149, 0.7636885291754726, 0.789170795337903, 0.8128612802083497, 0.7522530659814418, 0.8086757686066508, 0.8356255123032285, 0.9241779635105248, 0.9674588597049086, 0.9368885694202199, 0.4990764491242286, 0.876561204324957, 0.554264192243629, 0.5967716244634195, 0.9060244606340249, 0.8401608718856799, 0.7329750583133859, 0.8021769878309102, 0.9316817655017511, 0.45488322534173153, 0.798578398438993, 0.7425236774748816, 0.5742682328784404, 0.4937681935814938, 0.8972164286692267, 0.8914273370768748, 0.9377613518261881, 0.8862258850530264, 0.8591757581361523, 0.7410678096850266, 0.6822336012657398, 0.9201658505843877, 0.6982578893131915, 0.5746709232170782, 0.7626532952948841, 0.7137703530889916, 0.7520971196461234, 0.4473853625959922, 0.7957460056304991, 0.4833174871501707, 0.8758467705785958, 0.4689303842787964, 0.6133612564737879, 0.8568681391705205, 0.6835133967314007, 0.9732070839986944, 0.21435716257549006, 0.5761668962420043, 0.4055433603128916, 0.3743394998756179, 0.9118635774953143, 0.964551884718591, 0.9306459334511011, 0.8424802355113449, 0.7739144871152517, 0.6872688771534424, 0.8590561833388345, 0.6714384475466295, 0.6408669500407106, 0.5203550269219845, 0.2856853969697174, 0.857760555506807, 0.9307094503226838, 0.6787928880949093, 0.8308635255795866, 0.29271374211533296, 0.6769315553524353, 0.23831547366416572, 0.5895099457120908, 0.8994675076574448, 0.8893400405584444, 0.8456825404777587, 0.5399612081435882, 0.6188649121485582, 0.9281492942813848, 0.7611740601422801, 0.46550237374781617, 0.8896861436466836, 0.9038901015569306, 0.5044440900554997, 0.9215480939667524, 0.6930273792518707, 0.8723244804196287, 0.5624338775604165, 0.9226297661236537, 0.8469231754225917, 0.9430557295321259, 0.9097116306258912, 0.5988707702267543, 0.3813853072548755, 0.8843832309478876, 0.9006952500629406, 0.918975987201669, 0.18997930334445084, 0.8923106748541326, 0.8461388699436441, 0.5973439234355874, 0.9544642924744549, 0.91770416680597, 0.9177239854204658, 0.17584552180125673, 0.9240099144459667, 0.48524948024905407, 0.8889685222180134, 0.5785503824403398, 0.7511953459672914, 0.6887596776945688, 0.6717539058356753, 0.7168761391602206, 0.7134478068952186, 0.834626350903405, 0.5715867980362679, 0.6588392688727011, 0.9488572786900573, 0.8920529250761863, 0.8891353183282249, 0.707981940789761, 0.926348680038428, 0.631489487929038, 0.7443856388661001, 0.9260754381930228, 0.9544642924744549, 0.8497401318990601, 0.5604010177433062, 0.8036334301115304, 0.7898153537185114, 0.8491431337122072, 0.6570881560807702, 0.8389599143569951, 0.7944137576415592, 0.8132668978866627, 0.44714680104169846, 0.7978021044641371, 0.41921696608658454, 0.38876183891604754, 0.9248463736054193, 0.4277915265084825, 0.6345107008491314, 0.8008942533173764, 0.5087430598332189, 0.9414938992689892, 0.6922115882765215, 0.8296175750175913, 0.8593339228153332, 0.8975141534758351, 0.5977126281557783, 0.9279478536756302, 0.6485770817571253, 0.8905823996589662, 0.9332072841984264, 0.9432461110830079, 0.9410120781436498, 0.6339696776630096, 0.7120962557761497, 0.5841709037351369, 0.5928970840420333, 0.9006589732900512, 0.936371533648048, 0.6907852379101131, 0.7675780198071424, 0.9444587893431046, 0.4702336163336472, 0.8925536722101626, 0.8158978708906081, 0.822780392485108, 0.8037335327290217, 0.8382351003285965, 0.8941557358589171, 0.4796498334522667, 0.926348680038428, 0.6842118015950474, 0.6463580983468415, 0.8292048071278182, 0.5834426687867836, 0.8419845362148763, 0.2431563391580561, 0.7763142135369961, 0.9390550746437164, 0.7774903237071782, 0.8141232663130791, 0.9444089886680379, 0.430401459478284, 0.9192677156927759, 0.8427595869840984, 0.87120858451521, 0.5693182102579236, 0.820012080301976, 0.58719119911586, 0.42769376643096113, 0.3542595869275313, 0.89579938191327, 0.8743523014696554, 0.7820497043505815, 0.5279069501129625, 0.8869579700149332, 0.45488774279476296, 0.8514781135508903, 0.8278297091497892, 0.663749097381813, 0.5132851713944618, 0.4906566565015208, 0.6415219885510332, 0.6991293681294938, 0.8150539074042624, 0.5800669536763935, 0.9583771200922359, 0.7366090055976814, 0.5747817696023392, 0.5315376696882942, 0.8074446941396305, 0.9038901015569306, 0.9087015650331977, 0.6697291810323083, 0.5800669536763935, 0.8807270543114014, 0.5135845984304893, 0.9352791850238339, 0.36120709973337456, 0.6206709330576408, 0.906286252315459, 0.7937202818717513], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [76.0, 19.0, 15.0, 32.0, 18.0, 17.0, 34.0, 9.0, 36.0, 28.0, 20.0, 15.0, 46.0, 8.0, 30.0, 61.0, 24.0, 7.0, 23.0, 3.0, 50.0, 47.0, 5.0, 34.0, 40.0, 15.0, 28.0, 22.0, 44.0, 27.0, 7.0, 25.0, 26.0, 60.0, 52.0, 10.0, 24.0, 58.0, 4.0, 54.0, 14.0, 10.0, 21.0, 24.0, 20.0, 23.0, 25.0, 39.0, 18.0, 22.0, 6.0, 26.0, 41.0, 5.0, 55.0, 42.0, 41.0, 39.0, 5.0, 29.0, 50.0, 47.0, 8.0, 55.0, 23.0, 36.0, 31.0, 32.0, 15.0, 13.0, 52.0, 3.0, 77.0, 20.0, 21.0, 55.0, 64.0, 7.0, 30.0, 15.0, 23.0, 16.0, 65.0, 9.0, 28.0, 11.0, 38.0, 5.0, 26.0, 17.0, 3.0, 55.0, 14.0, 77.0, 53.0, 53.0, 27.0, 39.0, 49.0, 31.0, 68.0, 23.0, 23.0, 44.0, 26.0, 18.0, 37.0, 6.0, 12.0, 25.0, 18.0, 16.0, 3.0, 22.0, 27.0, 18.0, 66.0, 20.0, 21.0, 12.0, 26.0, 13.0, 29.0, 22.0, 52.0, 68.0, 110.0, 9.0, 8.0, 48.0, 5.0, 11.0, 62.0, 61.0, 36.0, 47.0, 13.0, 36.0, 36.0, 33.0, 16.0, 74.0, 3.0, 21.0, 40.0, 61.0, 40.0, 56.0, 25.0, 22.0, 23.0, 17.0, 38.0, 7.0, 36.0, 10.0, 33.0, 53.0, 15.0, 10.0, 14.0, 5.0, 26.0, 34.0, 7.0, 8.0, 44.0, 36.0, 43.0, 54.0, 52.0, 13.0, 35.0, 22.0, 18.0, 6.0, 7.0, 21.0, 15.0, 17.0, 56.0, 3.0, 36.0, 14.0, 64.0, 48.0, 34.0, 5.0, 38.0, 45.0, 16.0, 19.0, 57.0, 8.0, 35.0, 6.0, 20.0, 30.5, 67.0, 44.0, 48.0, 48.0, 48.0, 15.0, 27.0, 37.0, 51.0, 11.0, 5.0, 3.0, 33.0, 48.0, 29.0, 36.0, 27.0, 26.0, 44.0, 9.0, 24.0, 5.0, 8.0, 52.0, 62.0, 29.0, 21.0, 44.0, 27.0, 40.0, 21.0, 3.0, 18.0, 16.0, 17.0, 19.0, 35.0, 33.0, 67.0, 7.0, 40.5, 66.0, 20.0, 43.0, 55.0, 61.0, 52.0, 20.0, 38.0, 70.0, 13.0, 9.0, 35.0, 32.0, 26.0, 10.0, 34.0, 54.0, 20.0, 6.0, 39.0, 6.0, 46.0, 49.0, 59.0, 21.0, 28.0, 53.0, 38.0, 25.0, 23.0, 29.0, 128.0, 22.0, 14.0, 24.0, 61.0, 61.0, 34.0, 66.0, 15.0, 11.0, 6.0, 14.0, 12.0, 16.0, 9.0, 51.0, 21.0, 57.0, 17.0, 54.0, 8.0, 17.0, 146.5, 6.0, 16.0, 7.0, 29.0, 58.0, 60.0, 15.0, 17.0, 22.0, 26.0, 53.0, 18.0, 11.0, 33.0, 11.0, 6.0, 13.0, 64.0, 49.0, 14.0, 52.0, 47.0, 22.0, 52.5, 24.0, 58.0, 9.0, 7.0, 62.0, 15.0, 4.0, 57.0, 32.0, 22.0, 58.0, 12.0, 61.0, 48.0, 23.0, 10.0, 81.0, 23.0, 6.0, 59.0, 5.0, 30.0, 67.0, 18.0, 48.0, 31.0, 12.0, 46.0, 13.0, 28.0, 47.0, 9.0, 50.0, 21.0, 10.0, 29.0, 17.0, 16.0], \"xaxis\": \"x\", \"y\": [0.2802292104526322, 0.9455194119275858, 0.4978743212349556, 0.5289145624519528, 0.28439238707197784, 0.2033309570226689, 0.27345747478543325, 0.8322873304845451, 0.389055896812549, 0.3675472469853882, 0.5781933746273124, 0.7401955299744071, 0.44969671697605845, 0.4367887814338696, 0.31593955341667695, 0.3775624358859999, 0.19282181046294666, 0.048451763306065584, 0.6005928650583868, 0.032225376113695775, 0.427412413738938, 0.23973251442015217, 0.13890126550157303, 0.8613925272127, 0.329663916828638, 0.19359965390713213, 0.6827271716759634, 0.1960905505555538, 0.08135735686643118, 0.39737240301928484, 0.13902987396822816, 0.6514166433739288, 0.6994753721471061, 0.7140886736258081, 0.5021795028970708, 0.48743245558712556, 0.5731139673640956, 0.8820820642542792, 0.559972149724866, 0.5061565591493914, 0.5066810377847554, 0.833805652807593, 0.6979972163580744, 0.3177574231538272, 0.13068190592986567, 0.758876109553896, 0.5681062961269688, 0.715544821914063, 0.762062625203523, 0.4464438677531786, 0.20995974230910305, 0.5262622410710028, 0.39442669669188163, 0.2537324982988368, 0.6775437642744659, 0.23876321589577687, 0.6369158982934647, 0.38960060362966165, 0.6034323722874255, 0.7769991715799629, 0.15199748354041337, 0.5641412449951732, 0.7590466800561823, 0.5969347905931296, 0.1048362779837843, 0.7217824369593382, 0.2662339163773806, 0.16472378978351135, 0.37760124376932414, 0.7071736299639594, 0.3436862995931572, 0.8384434752264291, 0.3635333644877426, 0.7813188949129265, 0.7279369976219869, 0.5641098847382463, 0.3863964747623771, 0.9209913370067284, 0.1477144681640183, 0.8809374658555192, 0.6533168894759348, 0.8873477284758582, 0.3697306267878623, 0.28319023347825867, 0.5203701741750857, 0.5523747693308857, 0.6387521731780509, 0.3881380695009739, 0.8487896327149285, 0.4636606453307818, 0.8384434752264291, 0.558266603669778, 0.21657231888677728, 0.3635333644877426, 0.5512671313974766, 0.5051039398599867, 0.5827915753039158, 0.49441682850108926, 0.47309171914705017, 0.6262595591688196, 0.5508242483721094, 0.47332791509789995, 0.7117569366896692, 0.3933786516273859, 0.16465066549244003, 0.7490394132223248, 0.769261050002088, 0.7431932405995126, 0.3141000916210982, 0.723735045552473, 0.6484132891031948, 0.688519894019609, 0.40496704226994307, 0.5803736122960511, 0.6327801522745691, 0.45115706990411364, 0.37268733756108086, 0.9009693101135351, 0.06496389958099598, 0.44431713201158524, 0.39960831974332744, 0.8662156944598043, 0.31018081106061823, 0.5339551117365043, 0.33311273919547707, 0.400132762133902, 0.8528754522806217, 0.14419347879543085, 0.11672350429510901, 0.44556702529145975, 0.6160120899414699, 0.13766892845409207, 0.5517204028384314, 0.5232178919035022, 0.35483403305733974, 0.4900213704561591, 0.8854578072659228, 0.43084122675663034, 0.7601186327653665, 0.14072030431570776, 0.6186690618327106, 0.5245054232921349, 0.7326259458716644, 0.5690781983520095, 0.4018508815425063, 0.24877469563805235, 0.7952501197393639, 0.8766221356386195, 0.303451532996695, 0.5357745481647883, 0.7096524147827454, 0.20877177283968149, 0.8635610141758273, 0.46736762313881036, 0.6061151992073851, 0.113015272873705, 0.40446014603085867, 0.6332606063976143, 0.648705381890928, 0.42186952587750404, 0.8047913565308571, 0.3017058309841093, 0.38406990132164637, 0.33494193042999065, 0.19929939967121216, 0.8624919783238055, 0.528785836409086, 0.43084122675663034, 0.47042159929499583, 0.5061565591493914, 0.5759491569657543, 0.8468794444363914, 0.20342296359496542, 0.5170831534483544, 0.3666753044655067, 0.6131723001375537, 0.4410646109528086, 0.6903416342484309, 0.3866428492574258, 0.4636606453307818, 0.4525459302795702, 0.03199256040434073, 0.7029629492254846, 0.2433141614541866, 0.548755973819273, 0.3775060302547258, 0.06593060991448157, 0.8745624549148976, 0.22931948662359403, 0.27267688907931714, 0.589328430619086, 0.8007160756317941, 0.5525637789187225, 0.5008522318356121, 0.4556212410144909, 0.17391722008742402, 0.43574637053357784, 0.3237440077649342, 0.6071692164257629, 0.6925152430641841, 0.592675381607996, 0.43854150134957587, 0.43854150134957587, 0.42437112972565305, 0.8061118855433299, 0.35195592295594336, 0.7605370065149419, 0.38898578429124253, 0.67510953655807, 0.872979709380305, 0.710510994258769, 0.720290290780972, 0.4820787970895852, 0.42019280799979697, 0.4304380754474639, 0.25285023254778977, 0.3238056884730761, 0.39471961640683584, 0.09510031985475974, 0.367046376808582, 0.21500793651835448, 0.8705359023101334, 0.6100742529031461, 0.6226449432624995, 0.7279369976219869, 0.3643494054700089, 0.09992017521484964, 0.41475515148757036, 0.6462260464983366, 0.14102909592513518, 0.48949585696458414, 0.5239520436918008, 0.6084413884537807, 0.5655473856702703, 0.9517420512476797, 0.7489379515982664, 0.4647937384849751, 0.7915321263825208, 0.44112279258530757, 0.5734340256727429, 0.6604471727860799, 0.4845203185458914, 0.6968730453869196, 0.5315374962198609, 0.8685951485887234, 0.6242442748350044, 0.2912097196987059, 0.7725938221565348, 0.2067629769731588, 0.30221725334927335, 0.13129342562285412, 0.6467789443522378, 0.6994753721471061, 0.11825382206919556, 0.41022417118631593, 0.4882665226122541, 0.7732287086973071, 0.25374762405010176, 0.49441682850108926, 0.3723877205427743, 0.652330313245635, 0.43667799883041203, 0.5964718913578133, 0.55172276504346, 0.24113559934961917, 0.8243980268882987, 0.7263843594269437, 0.43535214809021755, 0.8721122798612579, 0.18723914490145582, 0.6486906676970999, 0.11576704656818047, 0.4328241622975616, 0.491481212420291, 0.5264345378086769, 0.33856526784971647, 0.2967410926251248, 0.581398831228375, 0.5973776665460488, 0.6195406102170065, 0.37782717658841725, 0.323061133240968, 0.17420808473594895, 0.19634770547538957, 0.46492234760650425, 0.49613167963272686, 0.5812209036149294, 0.6057291775435286, 0.63414717387345, 0.5702687187355167, 0.8604975146328253, 0.6309022132706124, 0.48732991249542923, 0.6887148870948692, 0.41581945293096145, 0.5706760596351739, 0.4831274653996314, 0.06684727567316755, 0.49090643211649887, 0.15191610726090596, 0.2711405311223577, 0.7653618545702112, 0.09266565137124261, 0.4554350627407873, 0.19698919164573708, 0.6930185080649685, 0.5227537922811563, 0.50434568709929, 0.7082092780767422, 0.46058046365566996, 0.6735723234187477, 0.4285936050615775, 0.323061133240968, 0.5168500865319015, 0.6161307914674419, 0.23456444218973552, 0.3192004782541023, 0.21968945907811915, 0.5028183230931117, 0.43371621376298963, 0.6744209213341115, 0.5940260419772637, 0.13783310426722128, 0.5136444387530009, 0.5508647999875032, 0.4955911012838212, 0.9814394195009358, 0.8260225289794664, 0.17965956338109995, 0.46844896472597397, 0.6048119589659149, 0.3289160319090978, 0.2454606394453749, 0.7497022835596558, 0.683485355417811, 0.20995974230910305, 0.23504578258460665, 0.37175956099497537, 0.4875530438829156, 0.24982584224249993, 0.6282829625348888, 0.4520795162158371, 0.8200372413039435, 0.12832513643528837, 0.5299630655130737, 0.29552777318700446, 0.24021937552346023, 0.5429028773737552, 0.6311869746243346, 0.4145977043912777, 0.39329840463575844, 0.39070335653410526, 0.4286990948130573, 0.846836560604146, 0.6880850122626078], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (curr)\", \"type\": \"scatter\", \"x\": [18.0, 55.0, 24.0, 15.0, 23.0, 27.0, 37.0, 21.0, 32.0, 57.0, 13.0, 29.0, 36.0, 26.0, 31.0, 29.0, 32.0, 11.0, 1.0, 42.0, 53.0, 39.0, 12.0, 45.0, 46.0, 32.0, 35.0, 61.0, 22.0, 34.0, 26.0, 23.0, 59.0, 26.0, 37.0, 45.0, 32.0, 60.0, 16.0, 10.0, 39.0, 31.0, 37.0, 46.0, 11.0, 34.0, 23.0, 18.0, 73.0, 38.0, 6.0, 22.0, 35.0, 14.0, 37.0, 43.0, 37.0, 27.0, 46.0, 18.0, 34.0, 45.0, 30.0, 15.0, 28.0, 31.0, 49.0, 32.0, 38.0, 50.0, 35.0, 36.0, 31.0, 28.0, 26.0, 54.0, 32.0, 53.0, 20.0, 6.0, 23.0, 66.0, 34.0, 22.0, 26.0, 14.0, 41.0, 20.0, 49.0, 14.0, 60.0, 46.0, 18.0, 28.0, 30.0, 26.0, 6.0, 51.0, 6.0, 16.0, 25.0, 26.0, 13.0, 49.0, 35.0, 37.0, 15.0, 20.0, 34.0, 37.0, 32.0, 35.0, 35.0, 13.0, 28.0, 19.0, 46.0, 33.0, 29.0, 21.0, 23.0, 74.0, 8.0, 23.0, 25.0, 5.0, 23.0, 21.0, 10.0, 29.0, 22.0, 18.0, 24.0, 48.0, 20.0, 62.0, 5.0, 24.0, 14.0, 29.0, 57.0, 27.0, 17.0, 46.0, 55.0, 23.0, 55.0, 10.0, 24.0, 20.0, 41.0, 33.0, 24.0, 14.0, 39.0, 10.0, 31.0, 15.0, 23.0, 49.0, 12.0, 10.0, 19.0, 50.0, 8.0, 15.0, 32.0, 13.0, 24.0, 52.0, 38.0, 20.0, 6.0, 3.0, 12.0, 41.0, 46.0, 54.0, 38.0, 17.0, 29.0, 33.0, 40.0, 54.0, 54.0, 26.0, 1.0, 24.0, 45.0, 22.0, 47.0, 17.0, 36.0, 40.0, 39.0, 36.0, 26.0, 18.0, 55.0, 21.0, 26.0, 29.0, 38.5, 21.0, 41.0, 18.0, 24.0, 38.0, 32.0, 79.5, 34.0, 24.0, 18.0, 37.0, 12.0, 35.0, 24.0, 25.0, 23.0, 34.0, 34.0, 56.0, 3.0, 62.0, 56.0, 28.0, 26.0, 44.0, 32.0, 32.0, 16.0, 30.0, 22.0, 31.0, 15.0, 51.0, 29.0, 30.0, 45.0, 18.0, 21.0, 23.0, 21.0, 29.0, 28.0, 13.0, 45.0, 39.0, 26.0, 6.0, 47.0, 68.0, 43.0, 26.0, 36.0, 44.0, 21.0, 13.0, 34.0, 25.0, 8.0, 47.0, 26.0, 67.0, 34.0, 27.0, 29.0, 54.0, 56.0, 58.0, 45.0, 37.0, 10.0, 13.0, 41.0, 12.0, 35.0, 17.0, 40.0, 39.0, 9.0, 25.0, 37.0, 26.0, 30.0, 11.0, 29.0, 22.0, 34.0, 45.0, 19.0, 5.0, 47.0, 26.0, 33.0, 33.0, 25.0, 40.0, 40.0, 28.0, 52.0, 25.0, 95.0, 42.0, 53.0, 24.0, 35.0, 53.0, 62.0, 34.0, 48.0, 15.0, 11.0, 31.0, 26.0, 69.0, 34.0, 11.0, 29.0, 52.0, 39.0, 31.0, 27.0, 50.0, 11.0, 49.0, 30.0, 17.0, 51.0, 20.0, 15.0, 18.0, 11.0, 63.0, 36.0, 23.0, 57.0, 80.0, 28.0, 6.0, 40.0, 27.0, 49.0, 39.0, 15.0, 29.0, 27.0, 7.0, 15.0, 25.0, 37.0, 30.0, 35.0, 14.0, 57.0, 20.0, 8.0, 18.0, 70.5, 13.0, 29.0, 25.0, 32.0, 61.0, 12.0, 53.0, 41.0, 50.0, 58.0, 68.0, 29.0, 29.0, 38.0, 22.0, 10.0, 9.0, 31.0, 17.0, 18.0, 13.0, 34.0, 22.0, 34.0, 56.0, 41.0, 24.0, 35.0, 31.0, 6.0, 43.0, 53.0, 32.0, 21.0, 71.0, 36.0, 11.0, 42.0, 7.0, 27.0, 37.0, 33.0, 37.0, 28.0, 21.0, 19.0, 44.0, 49.0, 23.0, 29.0, 17.0, 8.0, 16.0, 28.0, 9.0, 64.0, 29.0, 64.0, 5.0, 37.0, 19.0, 18.0, 38.0, 9.0, 5.5, 5.0, 50.0, 29.0, 27.0, 24.0, 35.0, 25.0, 20.0, 20.0, 29.0, 8.0, 14.0, 49.0, 53.0, 23.0, 19.0, 48.5, 5.0, 65.0, 27.0, 20.0, 6.0, 26.0, 19.0, 22.0, 15.0, 50.0, 22.0, 40.0, 4.0, 33.0, 49.0, 20.0, 24.0, 57.0, 9.0, 105.0, 44.0, 34.0, 56.0, 53.0, 23.0, 46.0, 14.0, 35.0, 22.0, 42.0, 60.0, 15.0, 25.0, 31.0, 11.0, 61.0, 19.0, 18.0, 63.0, 37.0, 34.0, 33.0, 10.0, 49.0, 26.0, 4.0, 15.0, 6.0, 26.0, 17.0, 44.5, 17.0, 11.0, 10.0, 6.0, 35.0, 15.0, 7.0, 25.0, 42.0, 33.0, 48.5, 40.0, 10.0, 41.0, 57.0, 25.0, 26.0, 31.0, 51.0, 25.0, 31.0, 14.0, 46.0, 41.0, 26.0, 6.0, 53.0, 11.0, 54.0, 8.0, 25.0, 32.0, 81.0, 46.0, 36.0, 36.0, 42.0, 60.5, 15.0, 45.0, 53.0, 41.0, 5.0, 33.0, 6.0, 16.0, 3.0, 52.0, 50.0, 25.0, 6.0, 40.0, 11.0, 16.0, 34.0, 7.0, 17.0, 48.5, 51.0, 14.0, 29.0, 6.0, 21.0, 62.0, 24.0, 19.0, 10.0, 44.0, 44.0, 33.0, 33.0, 8.0, 25.0, 26.0, 73.0, 31.0, 14.0, 56.0, 34.0, 37.0, 67.0, 42.0, 42.0, 30.0, 29.0, 26.0, 50.0, 16.0, 57.0, 40.0, 49.0, 18.0, 38.0, 17.0, 6.0, 56.0, 25.0, 15.0, 18.0, 29.0, 17.0, 10.0, 3.0, 27.0, 26.0, 38.0, 32.0, 47.0, 43.0, 29.0, 60.0, 40.0, 48.0, 17.0, 5.0, 27.0, 36.0, 14.0, 30.0, 41.0, 36.0, 55.0, 17.0, 15.0, 31.0, 29.0, 52.0, 23.0, 14.0, 35.0, 32.0, 21.0, 31.0, 10.0, 34.0, 52.0, 6.0, 59.0, 8.0, 17.0, 31.0, 12.0, 36.0, 25.0, 34.0, 16.0, 22.0, 34.0, 20.0, 50.0, 44.0, 38.0, 46.0, 52.0, 20.0, 32.0], \"xaxis\": \"x2\", \"y\": [0.33396714643252134, 0.5044440900554997, 0.8874896900044845, 0.4686759077780351, 0.23831547366416572, 0.571181601185031, 0.7785327680196316, 0.7290551099174598, 0.9581131370131553, 0.6801000322064107, 0.413367674560271, 0.6667140739211237, 0.9108229754863395, 0.9275086157065797, 0.9186958597750785, 0.7191871442695774, 0.8184457509658746, 0.8597940676688322, 0.7947045908306632, 0.8244149680645384, 0.42771531534877594, 0.5315376696882942, 0.7136291946100958, 0.5510697799054304, 0.6393262665313312, 0.9016582766249417, 0.8560880110261746, 0.8947361144883382, 0.9102326114023062, 0.840723585394272, 0.9264645566705582, 0.5105903360131552, 0.752648770317166, 0.5855954083225455, 0.8989214048388485, 0.5190750352404293, 0.9560713253502463, 0.7273157243430202, 0.9279672131348602, 0.640103147954212, 0.9158977434209615, 0.9035955072010529, 0.7140955379655831, 0.233508355491505, 0.7280578325574358, 0.8810827811902006, 0.3966129217085586, 0.15541760955422754, 0.5851621750323275, 0.9046111951917862, 0.4177213302712193, 0.7993763114768937, 0.6978409661933959, 0.6473373667551029, 0.770784382977056, 0.6500641275496193, 0.548949563093737, 0.9803199442553986, 0.6150775052067382, 0.391333092160729, 0.6966682278280982, 0.9426748402861506, 0.9170092977635526, 0.844625652038695, 0.5621782696252592, 0.8935808323282117, 0.6792214086077275, 0.6719996755401956, 0.5252591274442797, 0.7277045758687855, 0.4685752957996948, 0.8616549355667619, 0.347491516391863, 0.8224130863808733, 0.5340790568488665, 0.6711667658766297, 0.5277539611022016, 0.7226430813715845, 0.8140972745487615, 0.3280236940194876, 0.9543080196225542, 0.7752655593026647, 0.9223925066666061, 0.8588031784191832, 0.6345107008491314, 0.9393010047953068, 0.7897067132703484, 0.8608062836413887, 0.8367885032124018, 0.38555642305179116, 0.8611944449682004, 0.9172341012895443, 0.9206892306522243, 0.9500505925695213, 0.537798347971205, 0.9173482789702866, 0.44454351342386716, 0.8909704850569525, 0.7351932580165473, 0.6818328744935735, 0.7981559962965634, 0.7626532952948841, 0.807353254900461, 0.964411205143099, 0.4685752957996948, 0.6986526320119215, 0.1956969407137045, 0.9233481403380283, 0.8218375601976645, 0.8536269727611236, 0.5637680470866036, 0.42267134533232753, 0.93003590801509, 0.9364808605729722, 0.8816060831574614, 0.9663102962713933, 0.8345570787709832, 0.4997893986747249, 0.7921603237806832, 0.5586815647381762, 0.8622246464681924, 0.9828719612298703, 0.909295720392338, 0.9476267884443668, 0.5395521774612226, 0.901360886913609, 0.39410444510430487, 0.9262213132200262, 0.6627387433216217, 0.9629433821448677, 0.9614311452267452, 0.9802968012486629, 0.933760787013923, 0.34432718187202205, 0.63596173557573, 0.624364378916488, 0.7417789548241253, 0.7300918276682445, 0.6968315453320488, 0.7840233885688647, 0.8958841271622066, 0.5417426694559925, 0.7102579146160282, 0.6004345411549624, 0.515920701757342, 0.7587882454650442, 0.5029588531082266, 0.6887596776945688, 0.8642849605932809, 0.6469572639767995, 0.8103639651534781, 0.939764354405301, 0.694136577696587, 0.6593725303534554, 0.9646797005081557, 0.7979900311745153, 0.792123904710467, 0.8869579700149332, 0.7351250317969437, 0.5332560471205093, 0.9406873315653421, 0.39362685027924615, 0.9466602521798594, 0.8394325033041952, 0.6633442657978572, 0.8126408700417265, 0.7332457619716184, 0.08024070404520958, 0.8667774471450977, 0.6466814331404849, 0.912366876100516, 0.656670904734599, 0.8701678467707724, 0.8875925797813499, 0.9658725076002231, 0.7668332861852056, 0.8604440887473094, 0.934384507524058, 0.9605946056867319, 0.951253157591183, 0.5749289095213865, 0.6279243005170476, 0.7937202818717513, 0.7665301650725991, 0.700127941221274, 0.8531107444728586, 0.7947045908306632, 0.8870566665876504, 0.5476228787844645, 0.8410401833568673, 0.8736671065238262, 0.6519898659949606, 0.936943112068646, 0.9077719201719568, 0.8071889556778997, 0.8815615400732472, 0.8935313268029127, 0.8782891297971865, 0.5029588531082266, 0.5797201450332624, 0.9416775458320723, 0.5958140198486584, 0.2485157288688957, 0.932021424688801, 0.8531502837407814, 0.6344194678828672, 0.632587077283238, 0.9121448358615357, 0.5776545535910985, 0.9052765174806566, 0.8580390107418799, 0.8998644401112552, 0.6784536879503494, 0.9458342431661766, 0.21387363850783603, 0.9530348339880965, 0.7307391114165022, 0.7187682731289255, 0.6905635603269331, 0.9569274903702625, 0.9287384091375525, 0.3856984054091925, 0.504413920551941, 0.5389739198483336, 0.5921068831639978, 0.10702848140489757, 0.8772993497727819, 0.6361944011057532, 0.8952999713010865, 0.7069578609115064, 0.10632960186243966, 0.6465592619811017, 0.9116333268133815, 0.9210441535829985, 0.9483358221641291, 0.5800224234700003, 0.896951343689222, 0.8958659323404018, 0.8896861436466836, 0.7763142135369961, 0.778627444633172, 0.9274605647284293, 0.9167924025380936, 0.6422094408272838, 0.6363725079258666, 0.8694129796739031, 0.5693182102579236, 0.5315376696882942, 0.6814536952243052, 0.30089534057709466, 0.6689448970920832, 0.6419522618821227, 0.6500641275496193, 0.8221968069187356, 0.9285763346020383, 0.8495153837633861, 0.7135666997345446, 0.8850789772017983, 0.9128367188568884, 0.8709442503982084, 0.44714680104169846, 0.7147831401969469, 0.6814536952243052, 0.5823319261018008, 0.7718122970862826, 0.8925058444773368, 0.9249991097277733, 0.7849066379312727, 0.5120166815330335, 0.7863291630268572, 0.8171821177205619, 0.8878235148823457, 0.9813953955585096, 0.5009899161211654, 0.6787020040856314, 0.2747106808400709, 0.6998114428322438, 0.7191783799678735, 0.7566715075843347, 0.7741630673610131, 0.692871858980435, 0.8706970297938403, 0.9226518689226377, 0.619213859232465, 0.9620625840847012, 0.8161066853745392, 0.7984578805051198, 0.8987836568806694, 0.27900511725120763, 0.747868261422589, 0.8013372150606806, 0.4430395412241901, 0.8082746512504794, 0.9248395818955686, 0.8132668978866627, 0.7926355964369082, 0.7243101498981422, 0.8251498778038484, 0.865753667016409, 0.8784859927081519, 0.9613966942665844, 0.8380103992838959, 0.9376908870460701, 0.8505645904112248, 0.5317253080143199, 0.8756470416862959, 0.8823120896825394, 0.8920529250761863, 0.9565288857220365, 0.92576324319171, 0.8397457208604353, 0.8008835764985612, 0.7620555647282774, 0.6333567796033132, 0.8986985644274655, 0.8289197139212982, 0.38568054861828666, 0.4358764146033148, 0.7013568331933456, 0.5524769805317635, 0.8654015550049637, 0.9625385348003681, 0.4997035751430624, 0.5940434106189647, 0.29640429037896177, 0.9370396801623051, 0.7496358493500708, 0.8521916566704996, 0.7519935213994349, 0.8956127660014477, 0.7563308848917781, 0.5425355780301907, 0.1652985164032473, 0.5777375433929663, 0.5926841497777402, 0.5247451599628447, 0.6215406511606532, 0.646742228322253, 0.5236567091352762, 0.8105889943537302, 0.7614647275399787, 0.7272264480694343, 0.44438282424164377, 0.8051848688934031, 0.253979247575754, 0.8737269176380216, 0.7884186533408385, 0.5226162157005312, 0.7776146375974927, 0.8021344726910251, 0.6794204065079696, 0.8398669626756513, 0.3743394998756179, 0.6593725303534554, 0.41008410759983227, 0.8726624594592295, 0.31336232876890546, 0.6187135046228962, 0.9208146539756937, 0.8948907807194619, 0.9475948217130945, 0.7098971478357265, 0.41970311630379203, 0.5524505095188592, 0.6689295490636696, 0.39534528644804523, 0.6686700461744643, 0.6608417181144597, 0.6289006219381473, 0.8112353209803558, 0.9675531845963172, 0.3468688843876404, 0.8171815196180959, 0.9315945487332388, 0.7612383340144859, 0.43979370974717685, 0.9452166580978265, 0.810349906376065, 0.4979189466877109, 0.9054024939516333, 0.7506263221664519, 0.8595966107872783, 0.9041757536760852, 0.5120166815330335, 0.9246344940597735, 0.622364539475366, 0.7975959936185795, 0.9376528402833735, 0.8270495791839716, 0.7463426393970082, 0.8508295060861325, 0.5277539611022016, 0.7926521549058593, 0.8343380415579561, 0.7973631232158779, 0.5423298306356671, 0.6253812669856891, 0.9342151247863544, 0.9064095870896521, 0.8428584418618921, 0.5680191878381406, 0.8230633503438987, 0.857993972512287, 0.8312116035859974, 0.8886868130574391, 0.5695902702544526, 0.8750573328895943, 0.47134086624147714, 0.6082670858563528, 0.8571520978358925, 0.7006810412396262, 0.6001343818465046, 0.8680196363335714, 0.7833148206731655, 0.835330250744176, 0.6883000602161935, 0.4297997702781997, 0.7132181587745201, 0.941909753873568, 0.9298379484442667, 0.8950633078112005, 0.9652574497835966, 0.8593048115498744, 0.23022113319019433, 0.5548683876071567, 0.8789570823277312, 0.7176343272433334, 0.7135972690872326, 0.900955402304434, 0.89110615578316, 0.8021344726910251, 0.36734125225010755, 0.9233813125795639, 0.9269988231022361, 0.6021478506882372, 0.27064660283581765, 0.7595966254948197, 0.5317253080143199, 0.9626288904553877, 0.518871521713375, 0.4244151934213653, 0.8784852709235653, 0.667697582798242, 0.6791650855490978, 0.8659372985570389, 0.5217980090164113, 0.9757802673562255, 0.20769640873195563, 0.6900575067285889, 0.15051833553221247, 0.8476988333501053, 0.12043274000614122, 0.6546311715671466, 0.412102187638673, 0.6339696776630096, 0.6925917751558638, 0.8074446941396305, 0.8417042066658985, 0.4702054036006336, 0.8107456318417504, 0.934253622333564, 0.9671353887875448, 0.3776875782453083, 0.5133306968464912, 0.8279918435672958, 0.7295730380004212, 0.8398957027397556, 0.7470826509089123, 0.7722124156410631, 0.3944809481034696, 0.5801047158883857, 0.7134138458261836, 0.8265590446981121, 0.5836238058504062, 0.7538957359152121, 0.9708936701567454, 0.41507295289487073, 0.9039211350062085, 0.5109703825452502, 0.8880660412534, 0.6332514250278477, 0.703270618172154, 0.863031725372896, 0.9601349291832292, 0.5845797646527732, 0.8357575010967041, 0.9584406458449958, 0.8733333206292072, 0.4740801794177068, 0.5787650908025566, 0.38525623454815555, 0.5715075300165849, 0.951253157591183, 0.831291834366621, 0.6482062646591596, 0.5447536045265621, 0.8456825404777587, 0.5358725178581014, 0.8893400405584444, 0.5955893395860203, 0.9408369636189147, 0.7580589814818564, 0.4244151934213653, 0.7636885291754726, 0.9532052815091139, 0.6686700461744643, 0.39683939049776734, 0.8309978518015588, 0.06774730328187532, 0.8934061610794648, 0.9459413258233057, 0.8507977517004935, 0.9694554821790147, 0.8640493534313302, 0.8409166048571896, 0.9059760843724536, 0.7278052027863667, 0.8952246802917138, 0.39534528644804523, 0.9558702864115934, 0.9178754126151818, 0.7504628435478695, 0.7568870052952757, 0.32046258648166903, 0.9712495894387816, 0.7125870341029702, 0.8286889773580812, 0.929575727770858, 0.8422483936479932, 0.60065365322741, 0.5775074082600717, 0.7505976846167132, 0.5317253080143199, 0.9590110623565244, 0.9651712957082627, 0.7333643603414158, 0.7757825668725274, 0.8928390517037824, 0.2578168736401774, 0.5355488836719776, 0.8408692583280314, 0.7849780542174357, 0.8711681462620556, 0.8447990405440073, 0.9571933326515756, 0.9307123551507692, 0.6421242495412457, 0.9239207054420927, 0.9336219461922934, 0.4244151934213653, 0.5673643045526261, 0.8301442064454496, 0.528471943574542, 0.8835542071774324, 0.8820947700128993, 0.4561713647735051, 0.584381944856391, 0.9493936477483658, 0.7816316980556022, 0.7770145472448273, 0.8495153837633861, 0.8318035560268552, 0.5220388622338656, 0.8589980209217414, 0.21216021099657945, 0.8782303617207965, 0.901850575196968, 0.7683760396387002, 0.9559989503713009, 0.938411491366706, 0.7225398931917507, 0.5918361617892179, 0.8596378534897678, 0.8816239240572568, 0.9296844522785247, 0.8299758417251202, 0.7538846798551382, 0.931253582726863, 0.6902425303942638, 0.9299571155275668, 0.35461708236434614, 0.6119587629530028, 0.8979450471026776, 0.8782891297971865, 0.6144930729026484, 0.5601837238662909, 0.4230258756549153, 0.5115702372514986, 0.6133200318312215, 0.8287048127179734, 0.42887934024879554, 0.5543929044930882, 0.5414149972460248, 0.7453725251924848, 0.6522898344923613, 0.6445138145159856, 0.9212190995841192, 0.6991293681294938, 0.9188224881967051, 0.9444881948020799, 0.8399825546316605, 0.6440269003431431, 0.45260210695563535, 0.6678228102737954, 0.8535669746933884, 0.23469888428232324, 0.7581156815660375, 0.8329520097124233, 0.5886389680190937, 0.4250130050586104, 0.290761161529129, 0.9065968169685268, 0.39757013049667705, 0.9584529405260903, 0.24804178200132845, 0.8400605958344816, 0.9562762484868867, 0.5923100188758571, 0.5355488836719776, 0.6866862751474886, 0.753715093249364, 0.9302702282582556, 0.8405005145861136, 0.7758456574858743, 0.8270123797965384, 0.9270997487744173, 0.8779999285967196, 0.6350604679157676, 0.9057987369792326, 0.9732730617650076, 0.28007269673131574, 0.5393237551960537, 0.9509318156255189, 0.8055358405733448, 0.8512314640165554, 0.6752183046546253, 0.9766791413071304, 0.26893819095773785, 0.5105552073939665, 0.7964242570425004, 0.9159462749375985, 0.46312559485344046, 0.7889853219989779, 0.5331772070153998, 0.6250130361556073, 0.5340700079782073, 0.8981158701031157, 0.8424802355113449], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [39.0, 33.0, 45.0, 5.0, 36.0, 48.0, 25.0, 4.0, 10.0, 6.0, 22.0, 32.0, 39.0, 52.0, 30.0, 32.0, 35.0, 12.0, 9.0, 10.0, 15.0, 49.0, 31.0, 65.0, 31.0, 23.0, 35.0, 28.0, 11.0, 19.0, 51.0, 48.0, 12.0, 11.0, 24.0, 57.0, 35.0, 11.0, 27.0, 27.0, 19.0, 34.0, 44.0, 40.0, 10.0, 39.0, 16.0, 9.0, 36.0, 10.0, 58.0, 33.0, 26.0, 5.0, 9.0, 23.0, 13.0, 10.0, 21.0, 57.0, 10.0, 33.0, 45.0, 10.0, 13.0, 4.0, 16.0, 11.0, 8.0, 17.0, 6.0, 47.0, 69.0, 16.0, 36.0, 31.0, 45.0, 5.0, 13.0, 32.0, 40.0, 10.0, 45.0, 15.0, 34.0, 10.0, 37.0, 66.0, 81.0, 17.0, 67.0, 15.0, 6.0, 45.0, 40.0, 5.0, 40.0, 51.0, 26.0, 67.0, 20.0, 20.0, 32.0, 13.0, 11.0, 4.0, 27.0, 15.0, 16.0, 44.0, 15.0, 6.0, 18.0, 24.0, 12.0, 19.5, 35.0, 47.0, 52.0, 16.0, 22.0, 39.0, 25.0, 21.0, 12.0, 27.0, 7.0, 15.0, 12.0, 46.0, 6.0, 62.0, 45.0, 14.0, 31.0, 66.0, 6.0, 5.0, 17.0, 9.0, 6.0, 34.0, 38.0, 7.0, 21.0, 31.0, 21.0, 5.0, 42.0, 54.0, 46.0, 46.0, 29.0, 53.0, 24.0, 17.0, 54.0, 52.0, 36.0, 37.0, 15.0, 27.0, 24.0, 44.0, 6.0, 23.0, 23.0, 15.0, 30.0, 41.0, 16.0, 23.0, 12.0, 62.0, 46.0, 40.0, 8.0, 57.0, 54.0, 55.0, 14.0, 64.0, 12.0, 19.0, 42.0, 31.0, 60.0, 16.0, 27.0, 45.0, 16.0, 14.0, 67.0, 12.0, 70.0, 7.0, 20.0, 34.0, 48.0, 23.0, 5.0, 54.0, 37.0, 81.0, 3.0, 68.0, 50.0, 3.0, 26.0, 58.0, 30.0, 29.0, 18.0, 31.0, 61.0, 22.0, 66.0, 46.0, 36.0, 15.0, 40.0, 54.0, 22.0, 61.0, 47.0, 18.0, 16.0, 28.0, 18.0, 32.0, 36.0, 24.0, 44.0, 34.0, 16.0, 35.0, 23.0, 40.0, 45.0, 31.0, 28.0, 5.0, 21.0, 64.0, 20.0, 34.0, 18.0, 26.0, 59.0, 20.0, 15.0, 61.0, 14.0, 51.0, 8.0, 43.0, 64.0, 50.5, 22.0, 20.0, 9.0, 17.0, 54.0, 54.0, 11.0, 28.0, 11.0, 12.0, 4.0, 52.0, 20.0, 12.0, 52.0, 25.0, 18.0, 8.0, 67.0, 16.0, 17.0, 44.0, 45.0, 48.0, 30.0, 72.0, 52.0, 63.0, 16.0, 17.0, 6.0, 34.0, 45.0, 33.0, 45.0, 15.0, 30.0, 12.0, 25.0, 35.0, 39.0, 5.0, 39.0, 15.0, 58.0, 64.0, 68.0, 9.0, 5.0, 21.0, 32.0, 47.0, 24.0, 21.0, 7.0, 39.0, 19.0, 56.0, 40.0, 48.0, 26.0, 26.0, 10.0, 3.0, 23.0, 43.0, 4.0, 37.0, 36.0, 3.0, 54.0, 69.0, 5.0, 32.0, 32.0, 59.0, 7.0, 33.0, 43.0, 25.0, 44.0, 18.0, 51.0, 26.0, 29.0, 11.0, 5.0, 7.0, 15.0, 39.0, 44.0, 24.0, 16.0, 13.0], \"xaxis\": \"x2\", \"y\": [0.8142007211296887, 0.07257977436397642, 0.7430932382113554, 0.8214862427787604, 0.5698848321031316, 0.6048119589659149, 0.6466669219762841, 0.14510080060429495, 0.2250304680670007, 0.28492472637839966, 0.42061632734231896, 0.8281252124183194, 0.49622399336621903, 0.3482895521074759, 0.4678833354511545, 0.5708968386647719, 0.37048677721847617, 0.553632248395139, 0.8702137350251022, 0.42186952587750404, 0.8696774950675754, 0.5410576963494411, 0.3971326977900686, 0.3275001196198921, 0.9448289227093116, 0.7109941475090589, 0.41925580570138304, 0.3675472469853882, 0.6721911818800557, 0.5562207270314473, 0.5262426608517637, 0.3244609607385458, 0.15056615442564347, 0.15676979724311627, 0.6037730696030339, 0.6342511279653397, 0.021947035536558718, 0.32429164429335744, 0.5678746850743716, 0.3571680467137555, 0.7755534309390314, 0.3240287891037917, 0.699424662214302, 0.5151532452376618, 0.7564675819717819, 0.38343591026479057, 0.19811005648518398, 0.3168419703358067, 0.5315947262677626, 0.9269044449273315, 0.8260225289794664, 0.451791899378283, 0.830516920403184, 0.47128602930186, 0.19027823806377472, 0.5181346713949518, 0.29552777318700446, 0.45414400334446664, 0.39329840463575844, 0.42327932510626076, 0.45838907164509224, 0.2233864252642039, 0.3628419195926303, 0.6709353200988277, 0.46058046365566996, 0.25551237833043455, 0.7234147543269824, 0.1481282262733752, 0.314935793994079, 0.20050531530561894, 0.37453315488553635, 0.701015529968035, 0.6343341418527783, 0.1739320900588749, 0.734996253073231, 0.8172229478314255, 0.3598554146739685, 0.7121055211356295, 0.2620604909731644, 0.3421138035730516, 0.6951268813066005, 0.35208221297891723, 0.452099210446082, 0.18907620085798427, 0.5444201651108793, 0.6484058972837882, 0.3258186925596978, 0.5963383680780668, 0.6202666247822538, 0.576738593946626, 0.5054992484109841, 0.2972245631729925, 0.6844333356791464, 0.42629475072919953, 0.4405153833121037, 0.01207867704715336, 0.7609288944606691, 0.23951123982998349, 0.09310514674080905, 0.5084920166510624, 0.33067609257366243, 0.36481899584296196, 0.5708968386647719, 0.3194802059637459, 0.14207297841267416, 0.5776897120055972, 0.2026163425795633, 0.37909000048748537, 0.38206764842015895, 0.41324683104354176, 0.17826143731067332, 0.42339414872454434, 0.39148091864802853, 0.3511350413575442, 0.8053393751847749, 0.5937005322868365, 0.6849942580153355, 0.38930033076762494, 0.5168500865319015, 0.5699073288866824, 0.5376087249833421, 0.8185832461647057, 0.25950508036415604, 0.20394483716883388, 0.3303044530853749, 0.2528102968078532, 0.8477719856767125, 0.5217124250004609, 0.3303044530853749, 0.5382885532339231, 0.9625763866028243, 0.6536174904341296, 0.42629475072919953, 0.6458781618432388, 0.46574001023909845, 0.37268733756108086, 0.8180085473348132, 0.35493594975273335, 0.2423640089427935, 0.3636330633241046, 0.6421622311157122, 0.5444201651108793, 0.7396308412796291, 0.9036153464846048, 0.21101569987323432, 0.6004024464464508, 0.7595861882737439, 0.486549602332862, 0.2379839758891197, 0.5147825233229498, 0.2065932277190248, 0.4342628292980428, 0.5940848250235929, 0.4857193175270624, 0.5332610244722983, 0.5402196969638672, 0.8578846895389459, 0.5290225674595067, 0.6074669506688956, 0.1847839155105034, 0.3581391437324269, 0.4304380754474639, 0.8410120374942113, 0.5810086483513661, 0.19026233744636453, 0.7223494520380469, 0.8589928738613049, 0.8374625942163022, 0.781203852328267, 0.73983195178881, 0.41156537259256004, 0.7482873396984137, 0.44431713201158524, 0.7113673874393347, 0.49869552495399233, 0.7627102864663872, 0.37193390769028617, 0.37187810520956766, 0.3773291605703562, 0.8719651627687759, 0.6218762459828849, 0.3781393537983126, 0.553632248395139, 0.47624084907999176, 0.774399353278846, 0.5840424935194366, 0.5601025471409736, 0.6186690618327106, 0.620611700356168, 0.5755798886129706, 0.15047650536569443, 0.5530049338021776, 0.6597439619439023, 0.8300222117931148, 0.3490158529243493, 0.4410646109528086, 0.5067909967309752, 0.5851482063434866, 0.7149827463187939, 0.4849259975950144, 0.2094210588097294, 0.33399024531412796, 0.4083143545243069, 0.7497022835596558, 0.7817929239213606, 0.7637421953724776, 0.3825655414920891, 0.6611482494098961, 0.19022241257108333, 0.44972084577511023, 0.5476732603321269, 0.4831274653996314, 0.5077048340566679, 0.7289504589448288, 0.4379810490617926, 0.8017221455714771, 0.6434673631716396, 0.5059779734745421, 0.6065367192264559, 0.650368705032214, 0.34567471266024347, 0.39561589000187136, 0.3427787545601037, 0.4676404271158623, 0.5332283386400669, 0.4519108142444285, 0.40662831629925006, 0.42305576187259053, 0.22032895172816622, 0.5278715769330472, 0.43679486629948455, 0.743933429392776, 0.5269515041023835, 0.5008800654866953, 0.214168174561682, 0.44879088851457377, 0.683485355417811, 0.807753104897186, 0.42629475072919953, 0.8502951424821861, 0.17421175568219957, 0.25491371883486935, 0.7595861882737439, 0.6571724132942184, 0.7813188949129265, 0.5626906653340306, 0.8674288259883418, 0.6600514650598344, 0.4827749661719035, 0.5456147119159479, 0.39827550056677263, 0.27323823737433794, 0.695896529362927, 0.5048820477254727, 0.5422349097465021, 0.5610936746718964, 0.6571724132942184, 0.3088751107498249, 0.45428761266464013, 0.6604471727860799, 0.43371621376298963, 0.6171893197168647, 0.8100511550343341, 0.8100511550343341, 0.605832578461134, 0.5526475584669951, 0.4275055171336787, 0.8734720021260204, 0.8508295378350301, 0.5807723706867254, 0.8272749548927728, 0.2670652478909882, 0.7020144194675465, 0.4615566916191992, 0.7055847950248242, 0.43389869234556755, 0.6071692164257629, 0.3496825637352313, 0.23676491619791426, 0.7057755976874825, 0.15539001443149586, 0.6187538615870153, 0.8735882828904331, 0.30049486749739024, 0.23191705420611952, 0.8913917397916864, 0.4977157214618499, 0.16961113509580228, 0.8485494795219795, 0.4760032757956232, 0.5053843099270294, 0.2676015269871764, 0.3627664421236291, 0.15146266807038725, 0.7898179638281774, 0.6145296307645981, 0.3790380236797623, 0.3003532640340299, 0.6086112016774773, 0.39906793889171593, 0.8185832461647057, 0.6715802865662828, 0.8260225289794664, 0.6056902064850618, 0.400132762133902, 0.39471961640683584, 0.6449859309106076, 0.5637152910565628, 0.39949420960438964, 0.5490401551410112, 0.4398875418860128, 0.30916577334906253, 0.7093303227687476, 0.4562508424819209, 0.40444044759428516, 0.5773483646962835, 0.447777692034652, 0.4961542215384683, 0.32474312180562226, 0.21192693199409943, 0.9056903490933487, 0.5013816399998683, 0.758876109553896, 0.6364928148646596, 0.2952804752502578, 0.4748951900520853, 0.43679486629948455, 0.5479962315186364, 0.4728142838839701, 0.6343341418527783, 0.12248807650217919, 0.5052525886146573, 0.8281252124183194, 0.8930081609652758, 0.36283726088930296, 0.8098196742550625, 0.656477404357746, 0.193885049884708, 0.5269515041023835, 0.49858469647139786, 0.32780472036158087, 0.24927512797396847, 0.6148718578314069, 0.10691527318901187, 0.136775438340409, 0.8489192718114075, 0.2600203086082801, 0.8142007211296887, 0.5269515041023835, 0.7966615933629455, 0.5633234794197017, 0.767479452333631], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"free.sulfur.dioxide\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"free.sulfur.dioxide\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}, \"free.sulfur.dioxide_bad\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (ref)\", \"type\": \"scatter\", \"x\": [76.0, 19.0, 15.0, 32.0, 18.0, 17.0, 34.0, 9.0, 36.0, 28.0, 20.0, 15.0, 46.0, 8.0, 30.0, 61.0, 24.0, 7.0, 23.0, 3.0, 50.0, 47.0, 5.0, 34.0, 40.0, 15.0, 28.0, 22.0, 44.0, 27.0, 7.0, 25.0, 26.0, 60.0, 52.0, 10.0, 24.0, 58.0, 4.0, 54.0, 14.0, 10.0, 21.0, 24.0, 20.0, 23.0, 25.0, 39.0, 18.0, 22.0, 6.0, 26.0, 41.0, 5.0, 55.0, 42.0, 41.0, 39.0, 5.0, 29.0, 50.0, 47.0, 8.0, 55.0, 23.0, 36.0, 31.0, 32.0, 15.0, 13.0, 52.0, 3.0, 77.0, 20.0, 21.0, 55.0, 64.0, 7.0, 30.0, 15.0, 23.0, 16.0, 65.0, 9.0, 28.0, 11.0, 38.0, 5.0, 26.0, 17.0, 3.0, 55.0, 14.0, 77.0, 53.0, 53.0, 27.0, 39.0, 49.0, 31.0, 68.0, 23.0, 23.0, 44.0, 26.0, 18.0, 37.0, 6.0, 12.0, 25.0, 18.0, 16.0, 3.0, 22.0, 27.0, 18.0, 66.0, 20.0, 21.0, 12.0, 26.0, 13.0, 29.0, 22.0, 52.0, 68.0, 110.0, 9.0, 8.0, 48.0, 5.0, 11.0, 62.0, 61.0, 36.0, 47.0, 13.0, 36.0, 36.0, 33.0, 16.0, 74.0, 3.0, 21.0, 40.0, 61.0, 40.0, 56.0, 25.0, 22.0, 23.0, 17.0, 38.0, 7.0, 36.0, 10.0, 33.0, 53.0, 15.0, 10.0, 14.0, 5.0, 26.0, 34.0, 7.0, 8.0, 44.0, 36.0, 43.0, 54.0, 52.0, 13.0, 35.0, 22.0, 18.0, 6.0, 7.0, 21.0, 15.0, 17.0, 56.0, 3.0, 36.0, 14.0, 64.0, 48.0, 34.0, 5.0, 38.0, 45.0, 16.0, 19.0, 57.0, 8.0, 35.0, 6.0, 20.0, 30.5, 67.0, 44.0, 48.0, 48.0, 48.0, 15.0, 27.0, 37.0, 51.0, 11.0, 5.0, 3.0, 33.0, 48.0, 29.0, 36.0, 27.0, 26.0, 44.0, 9.0, 24.0, 5.0, 8.0, 52.0, 62.0, 29.0, 21.0, 44.0, 27.0, 40.0, 21.0, 3.0, 18.0, 16.0, 17.0, 19.0, 35.0, 33.0, 67.0, 7.0, 40.5, 66.0, 20.0, 43.0, 55.0, 61.0, 52.0, 20.0, 38.0, 70.0, 13.0, 9.0, 35.0, 32.0, 26.0, 10.0, 34.0, 54.0, 20.0, 6.0, 39.0, 6.0, 46.0, 49.0, 59.0, 21.0, 28.0, 53.0, 38.0, 25.0, 23.0, 29.0, 128.0, 22.0, 14.0, 24.0, 61.0, 61.0, 34.0, 66.0, 15.0, 11.0, 6.0, 14.0, 12.0, 16.0, 9.0, 51.0, 21.0, 57.0, 17.0, 54.0, 8.0, 17.0, 146.5, 6.0, 16.0, 7.0, 29.0, 58.0, 60.0, 15.0, 17.0, 22.0, 26.0, 53.0, 18.0, 11.0, 33.0, 11.0, 6.0, 13.0, 64.0, 49.0, 14.0, 52.0, 47.0, 22.0, 52.5, 24.0, 58.0, 9.0, 7.0, 62.0, 15.0, 4.0, 57.0, 32.0, 22.0, 58.0, 12.0, 61.0, 48.0, 23.0, 10.0, 81.0, 23.0, 6.0, 59.0, 5.0, 30.0, 67.0, 18.0, 48.0, 31.0, 12.0, 46.0, 13.0, 28.0, 47.0, 9.0, 50.0, 21.0, 10.0, 29.0, 17.0, 16.0], \"xaxis\": \"x\", \"y\": [0.7197707895473677, 0.05448058807241418, 0.5021256787650443, 0.4710854375480472, 0.7156076129280222, 0.7966690429773311, 0.7265425252145667, 0.16771266951545494, 0.610944103187451, 0.6324527530146118, 0.42180662537268765, 0.2598044700255929, 0.5503032830239416, 0.5632112185661304, 0.6840604465833231, 0.6224375641140001, 0.8071781895370533, 0.9515482366939344, 0.3994071349416132, 0.9677746238863042, 0.572587586261062, 0.7602674855798478, 0.861098734498427, 0.1386074727873, 0.6703360831713621, 0.8064003460928679, 0.3172728283240366, 0.8039094494444462, 0.9186426431335688, 0.6026275969807151, 0.8609701260317718, 0.3485833566260712, 0.3005246278528939, 0.2859113263741919, 0.4978204971029292, 0.5125675444128744, 0.4268860326359044, 0.11791793574572085, 0.440027850275134, 0.4938434408506086, 0.4933189622152446, 0.166194347192407, 0.30200278364192557, 0.6822425768461728, 0.8693180940701344, 0.24112389044610405, 0.43189370387303117, 0.284455178085937, 0.23793737479647703, 0.5535561322468214, 0.7900402576908969, 0.47373775892899717, 0.6055733033081183, 0.7462675017011632, 0.32245623572553406, 0.7612367841042231, 0.36308410170653527, 0.6103993963703384, 0.3965676277125745, 0.2230008284200371, 0.8480025164595866, 0.43585875500482685, 0.24095331994381775, 0.4030652094068704, 0.8951637220162157, 0.2782175630406618, 0.7337660836226194, 0.8352762102164887, 0.6223987562306759, 0.2928263700360406, 0.6563137004068428, 0.16155652477357085, 0.6364666355122575, 0.2186811050870735, 0.27206300237801306, 0.4358901152617537, 0.6136035252376228, 0.07900866299327158, 0.8522855318359817, 0.11906253414448076, 0.3466831105240652, 0.11265227152414181, 0.6302693732121377, 0.7168097665217413, 0.4796298258249143, 0.4476252306691143, 0.3612478268219491, 0.611861930499026, 0.15121036728507153, 0.5363393546692182, 0.16155652477357085, 0.441733396330222, 0.7834276811132227, 0.6364666355122575, 0.44873286860252337, 0.4948960601400133, 0.4172084246960842, 0.5055831714989107, 0.5269082808529498, 0.3737404408311804, 0.4491757516278906, 0.5266720849021, 0.2882430633103308, 0.6066213483726142, 0.83534933450756, 0.2509605867776752, 0.230738949997912, 0.25680675940048736, 0.6858999083789018, 0.27626495444752697, 0.35158671089680515, 0.311480105980391, 0.5950329577300569, 0.4196263877039489, 0.3672198477254309, 0.5488429300958864, 0.6273126624389191, 0.0990306898864649, 0.935036100419004, 0.5556828679884147, 0.6003916802566726, 0.1337843055401957, 0.6898191889393818, 0.46604488826349566, 0.6668872608045229, 0.5998672378660981, 0.14712454771937833, 0.8558065212045691, 0.883276495704891, 0.5544329747085402, 0.38398791005853006, 0.8623310715459079, 0.4482795971615686, 0.4767821080964978, 0.6451659669426603, 0.5099786295438409, 0.11454219273407718, 0.5691587732433696, 0.2398813672346335, 0.8592796956842923, 0.38133093816728936, 0.4754945767078651, 0.2673740541283356, 0.43092180164799054, 0.5981491184574936, 0.7512253043619477, 0.20474988026063612, 0.12337786436138054, 0.6965484670033051, 0.4642254518352117, 0.29034758521725457, 0.7912282271603185, 0.1364389858241727, 0.5326323768611896, 0.3938848007926149, 0.886984727126295, 0.5955398539691413, 0.3667393936023857, 0.35129461810907203, 0.578130474122496, 0.1952086434691429, 0.6982941690158907, 0.6159300986783536, 0.6650580695700093, 0.8007006003287879, 0.13750802167619447, 0.47121416359091395, 0.5691587732433696, 0.5295784007050042, 0.4938434408506086, 0.4240508430342457, 0.1531205555636086, 0.7965770364050346, 0.4829168465516456, 0.6333246955344933, 0.38682769986244625, 0.5589353890471914, 0.30965836575156913, 0.6133571507425741, 0.5363393546692182, 0.5474540697204298, 0.9680074395956593, 0.29703705077451537, 0.7566858385458134, 0.451244026180727, 0.6224939697452743, 0.9340693900855184, 0.1254375450851024, 0.770680513376406, 0.7273231109206828, 0.410671569380914, 0.19928392436820586, 0.44743622108127745, 0.4991477681643879, 0.5443787589855091, 0.826082779912576, 0.5642536294664222, 0.6762559922350657, 0.39283078357423706, 0.3074847569358159, 0.40732461839200396, 0.5614584986504241, 0.5614584986504241, 0.575628870274347, 0.1938881144566701, 0.6480440770440566, 0.23946299348505806, 0.6110142157087575, 0.32489046344192996, 0.127020290619695, 0.28948900574123104, 0.27970970921902805, 0.5179212029104148, 0.579807192000203, 0.5695619245525361, 0.7471497674522103, 0.6761943115269239, 0.6052803835931642, 0.9048996801452402, 0.632953623191418, 0.7849920634816455, 0.12946409768986655, 0.3899257470968539, 0.37735505673750047, 0.27206300237801306, 0.6356505945299911, 0.9000798247851504, 0.5852448485124296, 0.3537739535016634, 0.8589709040748648, 0.5105041430354158, 0.4760479563081992, 0.3915586115462193, 0.4344526143297297, 0.04825794875232026, 0.25106204840173363, 0.5352062615150248, 0.2084678736174792, 0.5588772074146924, 0.42656597432725707, 0.3395528272139201, 0.5154796814541086, 0.30312695461308037, 0.4684625037801391, 0.13140485141127656, 0.37575572516499556, 0.7087902803012941, 0.22740617784346517, 0.7932370230268412, 0.6977827466507267, 0.8687065743771458, 0.3532210556477622, 0.3005246278528939, 0.8817461779308045, 0.5897758288136841, 0.5117334773877459, 0.2267712913026929, 0.7462523759498982, 0.5055831714989107, 0.6276122794572256, 0.34766968675436505, 0.563322001169588, 0.4035281086421867, 0.44827723495654004, 0.7588644006503809, 0.17560197311170134, 0.2736156405730563, 0.5646478519097824, 0.12788772013874206, 0.8127608550985441, 0.35130933230290007, 0.8842329534318195, 0.5671758377024384, 0.508518787579709, 0.4735654621913231, 0.6614347321502836, 0.7032589073748752, 0.418601168771625, 0.40262233345395115, 0.38045938978299354, 0.6221728234115828, 0.6769388667590319, 0.825791915264051, 0.8036522945246104, 0.5350776523934957, 0.5038683203672731, 0.4187790963850706, 0.3942708224564714, 0.36585282612655, 0.42973128126448334, 0.1395024853671747, 0.36909778672938764, 0.5126700875045708, 0.31128511290513083, 0.5841805470690385, 0.42932394036482613, 0.5168725346003686, 0.9331527243268325, 0.5090935678835011, 0.848083892739094, 0.7288594688776423, 0.23463814542978878, 0.9073343486287574, 0.5445649372592127, 0.8030108083542629, 0.30698149193503155, 0.47724620771884374, 0.49565431290071005, 0.29179072192325783, 0.53941953634433, 0.32642767658125227, 0.5714063949384225, 0.6769388667590319, 0.48314991346809855, 0.3838692085325581, 0.7654355578102645, 0.6807995217458978, 0.7803105409218809, 0.4971816769068883, 0.5662837862370104, 0.32557907866588853, 0.4059739580227363, 0.8621668957327787, 0.4863555612469991, 0.44913520001249685, 0.5044088987161788, 0.018560580499064172, 0.17397747102053363, 0.8203404366189, 0.531551035274026, 0.3951880410340851, 0.6710839680909022, 0.7545393605546251, 0.25029771644034415, 0.31651464458218903, 0.7900402576908969, 0.7649542174153934, 0.6282404390050247, 0.5124469561170844, 0.7501741577575001, 0.3717170374651112, 0.5479204837841629, 0.1799627586960565, 0.8716748635647116, 0.4700369344869263, 0.7044722268129955, 0.7597806244765397, 0.4570971226262448, 0.3688130253756654, 0.5854022956087224, 0.6067015953642416, 0.6092966434658947, 0.5713009051869427, 0.15316343939585397, 0.31191498773739224], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [39.0, 34.0, 26.0, 25.0, 34.0, 20.0, 39.0, 33.0, 24.0, 26.0, 73.0, 4.0, 56.0, 41.5, 41.0, 23.0, 26.0, 6.0, 17.0, 21.0, 72.0, 27.0, 46.0, 30.0, 32.0, 40.0, 25.0, 37.0, 33.0, 29.0, 35.0, 31.0, 30.0, 96.0, 21.0, 44.0, 59.0, 38.0, 19.0, 12.0, 38.0, 18.0, 23.0, 18.0, 41.0, 24.0, 12.0, 24.0, 6.0, 27.0, 45.0, 54.0, 30.0, 44.0, 33.0, 50.0, 12.0, 22.0, 10.0, 50.0, 14.0, 20.0, 42.0, 47.0, 10.0, 6.0, 36.0, 13.0, 28.0, 20.0, 24.0, 19.0, 29.0, 37.5, 12.0, 24.0, 15.0, 26.0, 25.0, 37.0, 60.0, 36.0, 20.0, 28.0, 27.0, 31.0, 12.0, 21.0, 21.0, 7.0, 12.0, 36.0, 39.0, 48.0, 39.0, 24.0, 53.0, 16.0, 28.0, 28.0, 7.0, 35.0, 10.0, 4.0, 11.0, 41.0, 20.0, 27.0, 36.0, 29.0, 41.0, 35.0, 20.0, 19.0, 52.0, 22.0, 12.0, 23.0, 60.0, 24.0, 19.0, 34.0, 49.0, 46.0, 33.0, 13.0, 9.0, 38.0, 38.0, 6.0, 17.0, 33.0, 44.5, 24.0, 20.0, 54.0, 13.0, 15.0, 28.0, 14.0, 36.0, 53.0, 47.0, 43.0, 7.0, 22.0, 17.0, 12.0, 18.0, 34.0, 29.0, 23.0, 28.0, 57.0, 33.0, 42.0, 45.0, 8.0, 23.0, 37.0, 31.0, 17.0, 22.0, 21.0, 25.0, 37.0, 63.0, 29.0, 44.0, 43.0, 7.0, 24.0, 38.0, 30.0, 21.0, 34.0, 17.0, 26.0, 45.0, 16.0, 29.0, 35.0, 7.0, 50.0, 30.0, 33.0, 24.0, 7.0, 50.0, 25.0, 35.0, 3.0, 35.0, 19.0, 24.0, 32.0, 36.0, 59.0, 23.5, 23.0, 20.0, 18.0, 28.0, 38.0, 61.0, 43.0, 8.0, 22.0, 45.0, 29.0, 15.0, 29.0, 29.0, 36.0, 20.0, 16.0, 43.0, 39.0, 53.0, 13.0, 25.0, 41.0, 12.0, 35.0, 17.0, 29.0, 35.0, 47.0, 33.0, 39.0, 40.0, 39.0, 26.0, 52.0, 14.0, 17.0, 43.0, 51.0, 45.0, 49.0, 47.0, 49.0, 46.0, 29.0, 15.0, 47.0, 47.0, 29.0, 43.0, 30.0, 45.0, 48.5, 27.0, 9.0, 17.0, 29.0, 19.0, 35.0, 44.0, 3.0, 57.0, 35.0, 24.0, 51.0, 42.0, 30.0, 17.0, 6.0, 29.0, 18.0, 14.0, 19.0, 7.0, 39.0, 31.0, 50.0, 29.0, 10.0, 3.0, 23.0, 38.0, 49.0, 12.0, 36.0, 26.0, 19.0, 28.0, 78.0, 14.0, 24.0, 16.0, 64.0, 6.0, 45.0, 55.0, 44.0, 16.0, 62.0, 9.0, 27.0, 19.0, 21.0, 24.0, 22.0, 16.0, 24.0, 73.0, 20.0, 42.0, 26.0, 31.0, 38.0, 14.0, 20.0, 21.0, 6.0, 48.0, 41.0, 35.0, 37.0, 45.0, 12.0, 33.0, 49.0, 29.0, 8.0, 26.0, 20.0, 49.0, 27.0, 27.0, 26.0, 6.0, 66.0, 30.0, 38.0, 25.0, 34.0, 28.0, 52.0, 86.0, 14.0, 40.0, 40.0, 18.0, 32.0, 36.0, 7.0, 33.0, 35.0, 59.0, 60.0, 29.0, 20.0, 69.0, 35.0, 32.0, 37.0, 4.0, 31.0, 37.0, 47.0, 25.0, 22.0, 17.0, 28.0, 19.0, 51.0, 11.0, 48.0, 41.0, 17.0, 15.0, 15.0, 19.0, 37.0, 45.0, 17.0, 45.0, 26.0, 13.0, 53.0, 14.0, 53.0, 61.0, 24.0, 55.0, 23.0, 29.0, 29.0, 43.0, 42.0, 36.0, 8.0, 37.0, 18.0, 10.0, 27.0, 58.0, 21.0, 24.0, 8.0, 16.0, 47.0, 14.0, 43.0, 34.0, 17.0, 36.0, 16.0, 29.0, 42.0, 39.0, 15.0, 25.0, 40.0, 45.0, 60.0, 18.0, 15.0, 21.0, 41.0, 60.0, 29.0, 74.0, 40.0, 24.0, 34.0, 27.0, 56.0, 42.0, 14.0, 29.0, 31.0, 35.0, 31.0, 12.0, 32.0, 26.0, 16.0, 19.0, 25.0, 28.0, 20.0, 7.0, 23.0, 66.0, 33.0, 6.0, 36.0, 42.0, 38.0, 15.0, 29.0, 44.0, 7.0, 88.0, 24.0, 26.0, 46.0, 6.0, 29.0, 10.0, 50.0, 53.0, 31.0, 30.0, 63.0, 35.0, 13.0, 17.0, 68.0, 16.0, 35.0, 17.0, 73.0, 17.0, 32.0, 39.0, 21.0, 19.0, 56.0, 37.0, 38.0, 20.0, 8.0, 44.0, 33.0, 24.0, 17.0, 73.0, 23.0, 30.0, 47.0, 7.0, 35.0, 50.0, 47.0, 34.0, 34.0, 59.0, 45.0, 53.0, 55.0, 47.0, 45.0, 46.0, 35.0, 31.0, 17.0, 27.0, 22.0, 32.0, 57.0, 32.0, 12.0, 19.0, 54.0, 24.0, 26.0, 16.0, 30.0, 29.0, 48.0, 14.0, 4.0, 21.0, 30.0, 33.0, 23.0, 10.0, 5.0, 52.0, 20.0, 18.0, 27.0, 52.0, 30.0, 53.0, 24.0, 44.0, 37.0, 38.0, 36.0, 54.0, 30.0, 6.0, 22.0, 28.0, 40.0, 48.0, 41.0, 18.0, 12.0, 33.0, 8.0, 20.0, 14.0, 44.0, 38.0, 36.0, 26.0, 20.0, 24.0, 18.0, 23.0, 23.0, 9.0, 24.0, 61.0, 24.0, 27.0, 13.0, 39.0, 36.0, 11.0, 33.0, 33.0, 44.0, 27.0, 36.0, 34.0, 33.0, 40.0, 24.0, 14.0, 34.0, 38.0, 15.0, 18.0, 20.0, 31.0, 58.0, 37.0, 38.0, 17.0, 23.0, 3.0, 25.0, 42.0, 18.0, 14.0, 54.0, 31.0, 6.0, 26.0, 69.0, 56.0, 48.0, 45.0, 36.0, 24.0, 70.0, 5.0, 34.0, 19.0, 10.0, 37.0, 15.0, 10.0, 53.0, 35.0, 13.0, 14.0, 47.0, 52.0, 38.0, 24.0, 68.0, 22.0, 56.0, 53.0, 39.0, 20.0, 53.0, 12.0, 16.0, 68.0, 46.0, 33.0, 42.0, 17.0, 55.0, 31.0, 40.0], \"xaxis\": \"x\", \"y\": [0.18439386755371057, 0.5750868907731637, 0.1132172353536568, 0.19850047615697952, 0.6950004168934912, 0.41826441672946313, 0.040828937665112974, 0.2145583871630251, 0.09143093017991866, 0.10013996234885614, 0.3658834999306372, 0.587897812361327, 0.23563705889496211, 0.5289998061994394, 0.5981734696485812, 0.5956194363709464, 0.11295199838815062, 0.6349332021584286, 0.09356782907078887, 0.0672754654033908, 0.3541579814831264, 0.11781588709523827, 0.3295981493457443, 0.23443288181779365, 0.13830133810679424, 0.5122546205578999, 0.03626449638205209, 0.32057959349203036, 0.3955164844050859, 0.21320459763992916, 0.08620177311633537, 0.4132497936565127, 0.19514157099220286, 0.028148892894647393, 0.03728071159582558, 0.20213762816504022, 0.39088790332760825, 0.10566618212719892, 0.11466232649727714, 0.09544364959788487, 0.07351553674018241, 0.3657542344632553, 0.05859665738698361, 0.43634835962676355, 0.4827032077898804, 0.516310366273556, 0.6480037931050455, 0.21122004543372697, 0.030344760075157406, 0.22750344576024595, 0.18673438423788624, 0.5460909738859347, 0.0666291073587214, 0.320234954276134, 0.515425573770442, 0.5751179393061847, 0.3262180383913996, 0.12192585741802231, 0.6165939755266235, 0.09365914315081003, 0.44259853952477324, 0.31958523161407537, 0.09228899111547839, 0.22815273642701062, 0.5282447951108347, 0.7777719169155834, 0.13834506443323813, 0.29425092810710396, 0.5300870647699181, 0.031947521718024174, 0.1108646816717751, 0.053339747820140615, 0.14466174791529418, 0.25697560969337485, 0.3383868137798065, 0.30803904997837983, 0.03434255320493995, 0.08689109251212201, 0.46044782253877736, 0.0973761441498977, 0.3449058470623745, 0.024212367984770777, 0.11665042079727428, 0.3333970234137619, 0.1495417879159372, 0.0679784404121434, 0.2360052425084116, 0.39147703437781534, 0.04428683932015287, 0.5381556738404795, 0.4357341587922019, 0.11843845992675284, 0.28107964630818494, 0.06989794698232743, 0.2658605825653322, 0.22408104406272966, 0.15519213452661884, 0.09873339188795927, 0.10739713799337769, 0.4712507279726723, 0.31257930793611366, 0.6259141532505736, 0.1651629894813923, 0.13024327386797574, 0.08242409751896962, 0.55355901104019, 0.11256152515999429, 0.22124325125588817, 0.05838775174278421, 0.6734770756819889, 0.06919042490492266, 0.5773286546676725, 0.5693181878572973, 0.12726917141891614, 0.27983888222674136, 0.15690954109554833, 0.18593824584442387, 0.05432525584274117, 0.33273366741371935, 0.12435295831370408, 0.48112847828662497, 0.2959384652215836, 0.5042039768350125, 0.3749869638443927, 0.7258627386781167, 0.4806866421912115, 0.6234335830956541, 0.4191951896523489, 0.20821728825178332, 0.6343085651912675, 0.27674577061671146, 0.02140654255666985, 0.42849246998341506, 0.1817444030106703, 0.4551538855951942, 0.05087080041524106, 0.516641204200833, 0.6810720245435042, 0.08151744899857294, 0.4475169494323581, 0.03995706953508171, 0.2181819033834006, 0.20372897255157485, 0.24305701296248816, 0.5381556738404795, 0.2358485729609252, 0.051323642447754336, 0.1913631294907303, 0.32154631204965056, 0.31229802093755377, 0.3917329141436472, 0.39462053822053156, 0.3680669306910641, 0.5017894292511481, 0.32120711190509066, 0.0768019282386515, 0.1168769044932052, 0.31545143431826594, 0.12007957373947853, 0.08354361700756141, 0.2180731800932174, 0.7653011157176768, 0.05076221583963347, 0.11739077279846111, 0.3639458403519926, 0.4815918747301601, 0.35998732468747585, 0.457353694020342, 0.5520498791697908, 0.22168281241722143, 0.2132287846887433, 0.4763394582576197, 0.3040153802820409, 0.20749766415549342, 0.3316810644107503, 0.8126297477835096, 0.5749367295182395, 0.27274039590582944, 0.2685808245693546, 0.5172108675362206, 0.33506587713796443, 0.09616672688355288, 0.041108213935392324, 0.10548050716105373, 0.5016695616404938, 0.20022874051447226, 0.14220640128276774, 0.23772630779738468, 0.19606080251004787, 0.2603188495268066, 0.18846597668723208, 0.19827111133563302, 0.261548791893628, 0.4140325207077993, 0.8134796325151183, 0.12265695643958285, 0.6311167068993262, 0.13481820177301163, 0.0932384579037443, 0.14050160114126486, 0.2562249115981724, 0.08547750670655718, 0.08643201081848362, 0.19981675431015722, 0.31390222338706264, 0.06221739913672386, 0.06996303880871468, 0.30029370289300306, 0.4306817897420764, 0.6595343859760441, 0.2839408857911616, 0.20468539219890003, 0.1130196126722065, 0.2360017176902124, 0.13187147729288817, 0.42313120297864704, 0.06964897436687001, 0.1624399718171824, 0.17200815643270417, 0.07333105637055992, 0.2440137653363641, 0.4900110333069776, 0.3085554157386313, 0.03480496731142946, 0.12148031785507996, 0.15002971926037112, 0.5314247042003052, 0.2758453007685677, 0.2151852748992088, 0.2658605825653322, 0.29911225563077193, 0.6594110243744711, 0.49869782335001445, 0.16788254706683048, 0.11816213334465087, 0.08230909248122409, 0.13653212507346946, 0.25639170942272826, 0.06562233405876228, 0.23311900627036541, 0.3756616197417655, 0.46674395287949066, 0.3092684534350997, 0.8337319641197457, 0.8331457111467163, 0.2591056156836542, 0.4778687671024334, 0.2542440524586721, 0.5361036306539362, 0.07073721340803463, 0.4731688813159418, 0.5755848065786346, 0.356689463387698, 0.14225616860197343, 0.21837916002376445, 0.14466174791529418, 0.29899643271856946, 0.4757427727983842, 0.08126799884203029, 0.1296501822378736, 0.3286954654423938, 0.08620177311633537, 0.13855855420831553, 0.05543377339452393, 0.11917834098009661, 0.2613621884509647, 0.11269900223777074, 0.08429051026621415, 0.3393961441870107, 0.07031960314855146, 0.11356777592095357, 0.4853279864284006, 0.1279289285514792, 0.0584572339054259, 0.08612988585012649, 0.3472440907423937, 0.1248029959061332, 0.07502335399434323, 0.19827111133563302, 0.3424151534036639, 0.3065175956815872, 0.13808860398564737, 0.058092197534895806, 0.04082786106581715, 0.1602592849246841, 0.09156161599234125, 0.5036030690663805, 0.2640411824475748, 0.6468038092930676, 0.07201805208597656, 0.22470230804277058, 0.1334773721572423, 0.04847889440667685, 0.2685808245693546, 0.10911308148570098, 0.6764508967260475, 0.6280060594576413, 0.36761958218269275, 0.16019930342079847, 0.17605308658107655, 0.14078981831089854, 0.2384997092801764, 0.13117402490907393, 0.12818959986091483, 0.4161925244315118, 0.12435295831370408, 0.09814942480303201, 0.05480698563416486, 0.3746187330143109, 0.41092354232892336, 0.507894749900129, 0.5137929421583434, 0.08293523366016065, 0.2964416548030494, 0.15236141109070434, 0.4396941021426354, 0.41893931094950754, 0.09113953260801844, 0.10967473999240707, 0.055732078845942, 0.05640314085190745, 0.06176263301115803, 0.06427139521062619, 0.20386133178572885, 0.21597661143113533, 0.7486409492386699, 0.2610715902497083, 0.09465277491899493, 0.5556171757583562, 0.137718889647652, 0.1978940751503777, 0.08472590699531857, 0.356262641598029, 0.14596950445002987, 0.13865818299932142, 0.3088915816821678, 0.11516321289421916, 0.16121169033174265, 0.40573483691789825, 0.34308606282264, 0.36300204724896845, 0.17193414756867276, 0.035926383178341514, 0.34536882843285344, 0.4400180463892147, 0.5165194668234709, 0.23319834124303085, 0.9637923675569924, 0.2635599134550337, 0.6259141532505736, 0.12324962258280003, 0.1256037712827487, 0.1248029959061332, 0.11665042079727428, 0.29081136443782263, 0.12993062945549005, 0.20959981847797426, 0.12385816607190492, 0.16931651488884025, 0.2468284110987674, 0.6181879252747016, 0.3509541008179864, 0.08619429866610873, 0.09537770951135394, 0.8204393830764495, 0.2493836920976743, 0.10367142046182065, 0.11516383353466464, 0.07169627826225977, 0.5400384130096556, 0.2709141565803237, 0.16809050322974173, 0.3421981324687273, 0.812724325423183, 0.1326589750154965, 0.054670132935181304, 0.055346153509382656, 0.8039442695404772, 0.3276168958360183, 0.6561718697940482, 0.6214102617950452, 0.3046829516703813, 0.7853649284745584, 0.7303620793003476, 0.6719087507962026, 0.16000678121984613, 0.579612101366232, 0.6347749924714103, 0.41894393066564606, 0.06936532322770372, 0.28322834609079706, 0.343263893078516, 0.4450860003239352, 0.3090838478611311, 0.408095736797927, 0.11529682880263803, 0.13359771811640497, 0.2417229185475579, 0.10092265889692065, 0.8181934133883563, 0.3777834313813965, 0.8273808576462511, 0.18439353202429143, 0.5148786056082297, 0.11287077888712382, 0.16015059460472458, 0.29672938182784603, 0.36944561074938853, 0.2505850522824452, 0.8467591712977676, 0.3840267097226593, 0.261779448872241, 0.1645479955558209, 0.14631295673285594, 0.4248523287309329, 0.09222807982804315, 0.2121484308544801, 0.33273366741371935, 0.5470626312455473, 0.8294144697045585, 0.25206662215500397, 0.15998368749433245, 0.548322128117227, 0.3917329141436472, 0.15981565308588508, 0.23631147082452741, 0.21082920466209698, 0.1871387197916503, 0.24774693401855818, 0.1913242313933492, 0.16437448769677154, 0.07582203648947516, 0.032541140295091364, 0.06311143057978008, 0.5009235508757715, 0.12343879567504301, 0.445735807756371, 0.40322837553658053, 0.09397553936597514, 0.1598391281143201, 0.26702494168661406, 0.19782301216908982, 0.06831823449824892, 0.5451167746582685, 0.20142160156100697, 0.25747632252511843, 0.4257317671215596, 0.5062318064185062, 0.10278357133077332, 0.10857266292312517, 0.06223864817381186, 0.11377411494697365, 0.14082424186384768, 0.2589321903149734, 0.31776639873426016, 0.07983414941561229, 0.30174211068680845, 0.42532907678292176, 0.23734670470511587, 0.2862296469110084, 0.24790288035387664, 0.5526146374040077, 0.20425399436950087, 0.5166825128498294, 0.12415322942140417, 0.5310696157212036, 0.3866387435262121, 0.14313186082947948, 0.31648660326859934, 0.026792916001305622, 0.7856428374245099, 0.42383310375799566, 0.5944566396871084, 0.6256605001243821, 0.08813642250468567, 0.03544811528140901, 0.06935406654889886, 0.15751976448865512, 0.22608551288474832, 0.3127311228465576, 0.1409438166611655, 0.3285615524533705, 0.3591330499592894, 0.47964497307801546, 0.7143146030302826, 0.14223944449319303, 0.06929054967731618, 0.32120711190509066, 0.16913647442041335, 0.707286257884667, 0.3230684446475647, 0.7616845263358343, 0.4104900542879092, 0.10053249234255524, 0.1106599594415556, 0.1543174595222413, 0.46003879185641183, 0.3811350878514418, 0.07185070571861518, 0.23882593985771994, 0.5344976262521839, 0.11031385635331636, 0.09610989844306939, 0.4955559099445003, 0.07845190603324759, 0.30697262074812925, 0.12767551958037127, 0.4375661224395835, 0.07737023387634634, 0.15307682457740834, 0.05694427046787409, 0.09028836937410878, 0.4011292297732457, 0.6186146927451245, 0.11561676905211238, 0.0993047499370594, 0.08102401279833105, 0.8100206966555492, 0.10768932514586738, 0.15386113005635593, 0.4026560765644126, 0.045535707525545144, 0.08229583319403, 0.08227601457953415, 0.8241544781987433, 0.0759900855540333, 0.5147505197509459, 0.11103147778198663, 0.42144961755966015, 0.24880465403270857, 0.3112403223054312, 0.3282460941643247, 0.28312386083977936, 0.2865521931047814, 0.16537364909659502, 0.4284132019637321, 0.34116073112729894, 0.051142721309942685, 0.10794707492381372, 0.1108646816717751, 0.29201805921023904, 0.07365131996157204, 0.36851051207096197, 0.2556143611338999, 0.07392456180697715, 0.045535707525545144, 0.15025986810093994, 0.4395989822566938, 0.19636656988846957, 0.21018464628148859, 0.15085686628779282, 0.3429118439192298, 0.16104008564300487, 0.2055862423584408, 0.18673310211333727, 0.5528531989583015, 0.20219789553586287, 0.5807830339134155, 0.6112381610839525, 0.07515362639458067, 0.5722084734915175, 0.3654892991508686, 0.1991057466826236, 0.4912569401667811, 0.05850610073101081, 0.3077884117234785, 0.17038242498240874, 0.14066607718466684, 0.10248584652416493, 0.4022873718442217, 0.07205214632436985, 0.35142291824287475, 0.10941760034103376, 0.06679271580157364, 0.05675388891699207, 0.058987921856350156, 0.3660303223369904, 0.28790374422385034, 0.4158290962648631, 0.40710291595796666, 0.09934102670994882, 0.06362846635195196, 0.30921476208988685, 0.23242198019285765, 0.055541210656895434, 0.5297663836663529, 0.10744632778983743, 0.18410212910939194, 0.17721960751489196, 0.1962664672709783, 0.1617648996714035, 0.10584426414108294, 0.5203501665477333, 0.07365131996157204, 0.31578819840495265, 0.35364190165315845, 0.1707951928721818, 0.41655733121321636, 0.15801546378512366, 0.7568436608419439, 0.22368578646300386, 0.0609449253562836, 0.2225096762928218, 0.18587673368692093, 0.05559101133196209, 0.569598540521716, 0.08073228430722412, 0.15724041301590164, 0.12879141548479, 0.4306817897420764, 0.17998791969802397, 0.41280880088413996, 0.5723062335690389, 0.6457404130724687, 0.10420061808672998, 0.12564769853034463, 0.21795029564941848, 0.4720930498870375, 0.11304202998506685, 0.545112257205237, 0.14852188644910969, 0.17217029085021085, 0.336250902618187, 0.48671482860553816, 0.5093433434984792, 0.35847801144896685, 0.3008706318705062, 0.18494609259573758, 0.4199330463236065, 0.04162287990776414, 0.2633909944023186, 0.4252182303976608, 0.4684623303117058, 0.1925553058603695, 0.09610989844306939, 0.09129843496680234, 0.3302708189676917, 0.4199330463236065, 0.11927294568859859, 0.4864154015695107, 0.06472081497616611, 0.6387929002666255, 0.37932906694235924, 0.093713747684541, 0.20627971812824875], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (curr)\", \"type\": \"scatter\", \"x\": [39.0, 33.0, 45.0, 5.0, 36.0, 48.0, 25.0, 4.0, 10.0, 6.0, 22.0, 32.0, 39.0, 52.0, 30.0, 32.0, 35.0, 12.0, 9.0, 10.0, 15.0, 49.0, 31.0, 65.0, 31.0, 23.0, 35.0, 28.0, 11.0, 19.0, 51.0, 48.0, 12.0, 11.0, 24.0, 57.0, 35.0, 11.0, 27.0, 27.0, 19.0, 34.0, 44.0, 40.0, 10.0, 39.0, 16.0, 9.0, 36.0, 10.0, 58.0, 33.0, 26.0, 5.0, 9.0, 23.0, 13.0, 10.0, 21.0, 57.0, 10.0, 33.0, 45.0, 10.0, 13.0, 4.0, 16.0, 11.0, 8.0, 17.0, 6.0, 47.0, 69.0, 16.0, 36.0, 31.0, 45.0, 5.0, 13.0, 32.0, 40.0, 10.0, 45.0, 15.0, 34.0, 10.0, 37.0, 66.0, 81.0, 17.0, 67.0, 15.0, 6.0, 45.0, 40.0, 5.0, 40.0, 51.0, 26.0, 67.0, 20.0, 20.0, 32.0, 13.0, 11.0, 4.0, 27.0, 15.0, 16.0, 44.0, 15.0, 6.0, 18.0, 24.0, 12.0, 19.5, 35.0, 47.0, 52.0, 16.0, 22.0, 39.0, 25.0, 21.0, 12.0, 27.0, 7.0, 15.0, 12.0, 46.0, 6.0, 62.0, 45.0, 14.0, 31.0, 66.0, 6.0, 5.0, 17.0, 9.0, 6.0, 34.0, 38.0, 7.0, 21.0, 31.0, 21.0, 5.0, 42.0, 54.0, 46.0, 46.0, 29.0, 53.0, 24.0, 17.0, 54.0, 52.0, 36.0, 37.0, 15.0, 27.0, 24.0, 44.0, 6.0, 23.0, 23.0, 15.0, 30.0, 41.0, 16.0, 23.0, 12.0, 62.0, 46.0, 40.0, 8.0, 57.0, 54.0, 55.0, 14.0, 64.0, 12.0, 19.0, 42.0, 31.0, 60.0, 16.0, 27.0, 45.0, 16.0, 14.0, 67.0, 12.0, 70.0, 7.0, 20.0, 34.0, 48.0, 23.0, 5.0, 54.0, 37.0, 81.0, 3.0, 68.0, 50.0, 3.0, 26.0, 58.0, 30.0, 29.0, 18.0, 31.0, 61.0, 22.0, 66.0, 46.0, 36.0, 15.0, 40.0, 54.0, 22.0, 61.0, 47.0, 18.0, 16.0, 28.0, 18.0, 32.0, 36.0, 24.0, 44.0, 34.0, 16.0, 35.0, 23.0, 40.0, 45.0, 31.0, 28.0, 5.0, 21.0, 64.0, 20.0, 34.0, 18.0, 26.0, 59.0, 20.0, 15.0, 61.0, 14.0, 51.0, 8.0, 43.0, 64.0, 50.5, 22.0, 20.0, 9.0, 17.0, 54.0, 54.0, 11.0, 28.0, 11.0, 12.0, 4.0, 52.0, 20.0, 12.0, 52.0, 25.0, 18.0, 8.0, 67.0, 16.0, 17.0, 44.0, 45.0, 48.0, 30.0, 72.0, 52.0, 63.0, 16.0, 17.0, 6.0, 34.0, 45.0, 33.0, 45.0, 15.0, 30.0, 12.0, 25.0, 35.0, 39.0, 5.0, 39.0, 15.0, 58.0, 64.0, 68.0, 9.0, 5.0, 21.0, 32.0, 47.0, 24.0, 21.0, 7.0, 39.0, 19.0, 56.0, 40.0, 48.0, 26.0, 26.0, 10.0, 3.0, 23.0, 43.0, 4.0, 37.0, 36.0, 3.0, 54.0, 69.0, 5.0, 32.0, 32.0, 59.0, 7.0, 33.0, 43.0, 25.0, 44.0, 18.0, 51.0, 26.0, 29.0, 11.0, 5.0, 7.0, 15.0, 39.0, 44.0, 24.0, 16.0, 13.0], \"xaxis\": \"x2\", \"y\": [0.18579927887031134, 0.9274202256360236, 0.2569067617886446, 0.17851375722123963, 0.43011516789686843, 0.3951880410340851, 0.35333307802371594, 0.854899199395705, 0.7749695319329993, 0.7150752736216004, 0.5793836726576811, 0.17187478758168062, 0.503776006633781, 0.6517104478925241, 0.5321166645488455, 0.4291031613352281, 0.6295132227815239, 0.446367751604861, 0.12978626497489776, 0.578130474122496, 0.1303225049324246, 0.4589423036505589, 0.6028673022099313, 0.6724998803801079, 0.055171077290688375, 0.28900585249094113, 0.5807441942986169, 0.6324527530146118, 0.32780881811994433, 0.4437792729685527, 0.47375733914823626, 0.6755390392614542, 0.8494338455743565, 0.8432302027568838, 0.3962269303969661, 0.36574887203466033, 0.9780529644634413, 0.6757083557066426, 0.43212531492562845, 0.6428319532862445, 0.2244465690609686, 0.6759712108962084, 0.300575337785698, 0.4848467547623382, 0.24353241802821812, 0.6165640897352094, 0.801889943514816, 0.6831580296641933, 0.4684052737322374, 0.07309555507266852, 0.17397747102053363, 0.548208100621717, 0.16948307959681597, 0.5287139706981401, 0.8097217619362252, 0.48186532860504816, 0.7044722268129955, 0.5458559966555334, 0.6067015953642416, 0.5767206748937392, 0.5416109283549078, 0.7766135747357961, 0.6371580804073698, 0.3290646799011723, 0.53941953634433, 0.7444876216695655, 0.27658524567301757, 0.8518717737266248, 0.685064206005921, 0.7994946846943811, 0.6254668451144636, 0.29898447003196504, 0.36566585814722175, 0.8260679099411251, 0.265003746926769, 0.18277705216857454, 0.6401445853260315, 0.2878944788643705, 0.7379395090268356, 0.6578861964269485, 0.3048731186933995, 0.6479177870210828, 0.5479007895539181, 0.8109237991420157, 0.4555798348891207, 0.35159410271621183, 0.6741813074403022, 0.40366163192193316, 0.3797333752177462, 0.42326140605337403, 0.49450075158901585, 0.7027754368270075, 0.31556666432085356, 0.5737052492708005, 0.5594846166878963, 0.9879213229528466, 0.23907110553933086, 0.7604887601700165, 0.906894853259191, 0.49150798334893764, 0.6693239074263375, 0.635181004157038, 0.4291031613352281, 0.6805197940362542, 0.8579270215873258, 0.42231028799440284, 0.7973836574204367, 0.6209099995125147, 0.617932351579841, 0.5867531689564582, 0.8217385626893267, 0.5766058512754557, 0.6085190813519714, 0.6488649586424557, 0.19466062481522506, 0.4062994677131635, 0.31500574198466447, 0.6106996692323751, 0.48314991346809855, 0.4300926711133176, 0.4623912750166579, 0.18141675383529432, 0.7404949196358439, 0.7960551628311661, 0.6696955469146251, 0.7471897031921468, 0.15222801432328747, 0.4782875749995391, 0.6696955469146251, 0.4617114467660769, 0.0374236133971757, 0.34638250956587036, 0.5737052492708005, 0.35412183815676124, 0.5342599897609015, 0.6273126624389191, 0.1819914526651868, 0.6450640502472667, 0.7576359910572065, 0.6363669366758954, 0.35783776888428775, 0.4555798348891207, 0.2603691587203709, 0.09638465351539516, 0.7889843001267657, 0.3995975535535492, 0.2404138117262561, 0.5134503976671381, 0.7620160241108803, 0.4852174766770502, 0.7934067722809752, 0.5657371707019572, 0.40591517497640706, 0.5142806824729376, 0.4667389755277017, 0.4597803030361328, 0.14211531046105408, 0.4709774325404933, 0.39253304933110444, 0.8152160844894966, 0.6418608562675732, 0.5695619245525361, 0.15898796250578873, 0.4189913516486339, 0.8097376625536354, 0.2776505479619531, 0.14100712613869515, 0.1625374057836978, 0.21879614767173305, 0.26016804821119, 0.5884346274074399, 0.25171266030158634, 0.5556828679884147, 0.2886326125606653, 0.5013044750460076, 0.23728971353361283, 0.6280660923097139, 0.6281218947904323, 0.6226708394296439, 0.1280348372312241, 0.37812375401711507, 0.6218606462016874, 0.446367751604861, 0.5237591509200082, 0.22560064672115399, 0.4159575064805634, 0.43989745285902637, 0.38133093816728936, 0.379388299643832, 0.4244201113870294, 0.8495234946343055, 0.44699506619782237, 0.3402560380560977, 0.16997778820688525, 0.6509841470756508, 0.5589353890471914, 0.49320900326902484, 0.41485179365651337, 0.2850172536812061, 0.5150740024049856, 0.7905789411902706, 0.6660097546858721, 0.5916856454756931, 0.25029771644034415, 0.21820707607863943, 0.23625780462752244, 0.6174344585079109, 0.33885175059010386, 0.8097775874289167, 0.5502791542248897, 0.45232673966787307, 0.5168725346003686, 0.4922951659433321, 0.2710495410551712, 0.5620189509382074, 0.19827785442852286, 0.35653263682836045, 0.4940220265254579, 0.3934632807735441, 0.349631294967786, 0.6543252873397565, 0.6043841099981286, 0.6572212454398962, 0.5323595728841377, 0.4667716613599331, 0.5480891857555714, 0.5933716837007499, 0.5769442381274095, 0.7796710482718338, 0.4721284230669528, 0.5632051337005155, 0.25606657060722404, 0.47304849589761655, 0.4991199345133047, 0.785831825438318, 0.5512091114854263, 0.31651464458218903, 0.192246895102814, 0.5737052492708005, 0.14970485751781393, 0.8257882443178004, 0.7450862811651306, 0.2404138117262561, 0.3428275867057816, 0.2186811050870735, 0.43730933466596944, 0.1325711740116582, 0.33994853494016564, 0.5172250338280965, 0.4543852880840521, 0.6017244994332274, 0.7267617626256621, 0.304103470637073, 0.49511795227452726, 0.4577650902534979, 0.4389063253281036, 0.3428275867057816, 0.6911248892501751, 0.5457123873353599, 0.3395528272139201, 0.5662837862370104, 0.38281068028313525, 0.1899488449656659, 0.1899488449656659, 0.39416742153886597, 0.4473524415330049, 0.5724944828663213, 0.12652799787397961, 0.14917046216496987, 0.4192276293132746, 0.1727250451072272, 0.7329347521090118, 0.2979855805324535, 0.5384433083808008, 0.2944152049751758, 0.5661013076544325, 0.39283078357423706, 0.6503174362647687, 0.7632350838020857, 0.29422440231251745, 0.8446099855685041, 0.3812461384129847, 0.1264117171095669, 0.6995051325026098, 0.7680829457938805, 0.1086082602083136, 0.50228427853815, 0.8303888649041977, 0.15145052047802054, 0.5239967242043768, 0.49461569007297057, 0.7323984730128237, 0.6372335578763709, 0.8485373319296128, 0.21018203617182263, 0.3854703692354019, 0.6209619763202376, 0.6996467359659702, 0.3913887983225227, 0.600932061108284, 0.18141675383529432, 0.32841971343371723, 0.17397747102053363, 0.3943097935149382, 0.5998672378660981, 0.6052803835931642, 0.35501406908939237, 0.4362847089434372, 0.6005057903956104, 0.45095984485898877, 0.5601124581139871, 0.6908342266509375, 0.29066967723125237, 0.5437491575180791, 0.5955595524057149, 0.4226516353037165, 0.552222307965348, 0.5038457784615318, 0.6752568781943777, 0.7880730680059006, 0.09430965090665133, 0.4986183600001317, 0.24112389044610405, 0.3635071851353404, 0.7047195247497422, 0.5251048099479148, 0.5632051337005155, 0.4520037684813636, 0.5271857161160298, 0.36566585814722175, 0.8775119234978208, 0.49474741138534273, 0.17187478758168062, 0.1069918390347242, 0.6371627391106971, 0.19018032574493748, 0.34352259564225396, 0.806114950115292, 0.47304849589761655, 0.5014153035286022, 0.6721952796384192, 0.7507248720260316, 0.38512814216859315, 0.8930847268109882, 0.863224561659591, 0.15108072818859253, 0.7399796913917198, 0.18579927887031134, 0.47304849589761655, 0.2033384066370545, 0.43667652058029827, 0.23252054766636898], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [18.0, 55.0, 24.0, 15.0, 23.0, 27.0, 37.0, 21.0, 32.0, 57.0, 13.0, 29.0, 36.0, 26.0, 31.0, 29.0, 32.0, 11.0, 1.0, 42.0, 53.0, 39.0, 12.0, 45.0, 46.0, 32.0, 35.0, 61.0, 22.0, 34.0, 26.0, 23.0, 59.0, 26.0, 37.0, 45.0, 32.0, 60.0, 16.0, 10.0, 39.0, 31.0, 37.0, 46.0, 11.0, 34.0, 23.0, 18.0, 73.0, 38.0, 6.0, 22.0, 35.0, 14.0, 37.0, 43.0, 37.0, 27.0, 46.0, 18.0, 34.0, 45.0, 30.0, 15.0, 28.0, 31.0, 49.0, 32.0, 38.0, 50.0, 35.0, 36.0, 31.0, 28.0, 26.0, 54.0, 32.0, 53.0, 20.0, 6.0, 23.0, 66.0, 34.0, 22.0, 26.0, 14.0, 41.0, 20.0, 49.0, 14.0, 60.0, 46.0, 18.0, 28.0, 30.0, 26.0, 6.0, 51.0, 6.0, 16.0, 25.0, 26.0, 13.0, 49.0, 35.0, 37.0, 15.0, 20.0, 34.0, 37.0, 32.0, 35.0, 35.0, 13.0, 28.0, 19.0, 46.0, 33.0, 29.0, 21.0, 23.0, 74.0, 8.0, 23.0, 25.0, 5.0, 23.0, 21.0, 10.0, 29.0, 22.0, 18.0, 24.0, 48.0, 20.0, 62.0, 5.0, 24.0, 14.0, 29.0, 57.0, 27.0, 17.0, 46.0, 55.0, 23.0, 55.0, 10.0, 24.0, 20.0, 41.0, 33.0, 24.0, 14.0, 39.0, 10.0, 31.0, 15.0, 23.0, 49.0, 12.0, 10.0, 19.0, 50.0, 8.0, 15.0, 32.0, 13.0, 24.0, 52.0, 38.0, 20.0, 6.0, 3.0, 12.0, 41.0, 46.0, 54.0, 38.0, 17.0, 29.0, 33.0, 40.0, 54.0, 54.0, 26.0, 1.0, 24.0, 45.0, 22.0, 47.0, 17.0, 36.0, 40.0, 39.0, 36.0, 26.0, 18.0, 55.0, 21.0, 26.0, 29.0, 38.5, 21.0, 41.0, 18.0, 24.0, 38.0, 32.0, 79.5, 34.0, 24.0, 18.0, 37.0, 12.0, 35.0, 24.0, 25.0, 23.0, 34.0, 34.0, 56.0, 3.0, 62.0, 56.0, 28.0, 26.0, 44.0, 32.0, 32.0, 16.0, 30.0, 22.0, 31.0, 15.0, 51.0, 29.0, 30.0, 45.0, 18.0, 21.0, 23.0, 21.0, 29.0, 28.0, 13.0, 45.0, 39.0, 26.0, 6.0, 47.0, 68.0, 43.0, 26.0, 36.0, 44.0, 21.0, 13.0, 34.0, 25.0, 8.0, 47.0, 26.0, 67.0, 34.0, 27.0, 29.0, 54.0, 56.0, 58.0, 45.0, 37.0, 10.0, 13.0, 41.0, 12.0, 35.0, 17.0, 40.0, 39.0, 9.0, 25.0, 37.0, 26.0, 30.0, 11.0, 29.0, 22.0, 34.0, 45.0, 19.0, 5.0, 47.0, 26.0, 33.0, 33.0, 25.0, 40.0, 40.0, 28.0, 52.0, 25.0, 95.0, 42.0, 53.0, 24.0, 35.0, 53.0, 62.0, 34.0, 48.0, 15.0, 11.0, 31.0, 26.0, 69.0, 34.0, 11.0, 29.0, 52.0, 39.0, 31.0, 27.0, 50.0, 11.0, 49.0, 30.0, 17.0, 51.0, 20.0, 15.0, 18.0, 11.0, 63.0, 36.0, 23.0, 57.0, 80.0, 28.0, 6.0, 40.0, 27.0, 49.0, 39.0, 15.0, 29.0, 27.0, 7.0, 15.0, 25.0, 37.0, 30.0, 35.0, 14.0, 57.0, 20.0, 8.0, 18.0, 70.5, 13.0, 29.0, 25.0, 32.0, 61.0, 12.0, 53.0, 41.0, 50.0, 58.0, 68.0, 29.0, 29.0, 38.0, 22.0, 10.0, 9.0, 31.0, 17.0, 18.0, 13.0, 34.0, 22.0, 34.0, 56.0, 41.0, 24.0, 35.0, 31.0, 6.0, 43.0, 53.0, 32.0, 21.0, 71.0, 36.0, 11.0, 42.0, 7.0, 27.0, 37.0, 33.0, 37.0, 28.0, 21.0, 19.0, 44.0, 49.0, 23.0, 29.0, 17.0, 8.0, 16.0, 28.0, 9.0, 64.0, 29.0, 64.0, 5.0, 37.0, 19.0, 18.0, 38.0, 9.0, 5.5, 5.0, 50.0, 29.0, 27.0, 24.0, 35.0, 25.0, 20.0, 20.0, 29.0, 8.0, 14.0, 49.0, 53.0, 23.0, 19.0, 48.5, 5.0, 65.0, 27.0, 20.0, 6.0, 26.0, 19.0, 22.0, 15.0, 50.0, 22.0, 40.0, 4.0, 33.0, 49.0, 20.0, 24.0, 57.0, 9.0, 105.0, 44.0, 34.0, 56.0, 53.0, 23.0, 46.0, 14.0, 35.0, 22.0, 42.0, 60.0, 15.0, 25.0, 31.0, 11.0, 61.0, 19.0, 18.0, 63.0, 37.0, 34.0, 33.0, 10.0, 49.0, 26.0, 4.0, 15.0, 6.0, 26.0, 17.0, 44.5, 17.0, 11.0, 10.0, 6.0, 35.0, 15.0, 7.0, 25.0, 42.0, 33.0, 48.5, 40.0, 10.0, 41.0, 57.0, 25.0, 26.0, 31.0, 51.0, 25.0, 31.0, 14.0, 46.0, 41.0, 26.0, 6.0, 53.0, 11.0, 54.0, 8.0, 25.0, 32.0, 81.0, 46.0, 36.0, 36.0, 42.0, 60.5, 15.0, 45.0, 53.0, 41.0, 5.0, 33.0, 6.0, 16.0, 3.0, 52.0, 50.0, 25.0, 6.0, 40.0, 11.0, 16.0, 34.0, 7.0, 17.0, 48.5, 51.0, 14.0, 29.0, 6.0, 21.0, 62.0, 24.0, 19.0, 10.0, 44.0, 44.0, 33.0, 33.0, 8.0, 25.0, 26.0, 73.0, 31.0, 14.0, 56.0, 34.0, 37.0, 67.0, 42.0, 42.0, 30.0, 29.0, 26.0, 50.0, 16.0, 57.0, 40.0, 49.0, 18.0, 38.0, 17.0, 6.0, 56.0, 25.0, 15.0, 18.0, 29.0, 17.0, 10.0, 3.0, 27.0, 26.0, 38.0, 32.0, 47.0, 43.0, 29.0, 60.0, 40.0, 48.0, 17.0, 5.0, 27.0, 36.0, 14.0, 30.0, 41.0, 36.0, 55.0, 17.0, 15.0, 31.0, 29.0, 52.0, 23.0, 14.0, 35.0, 32.0, 21.0, 31.0, 10.0, 34.0, 52.0, 6.0, 59.0, 8.0, 17.0, 31.0, 12.0, 36.0, 25.0, 34.0, 16.0, 22.0, 34.0, 20.0, 50.0, 44.0, 38.0, 46.0, 52.0, 20.0, 32.0], \"xaxis\": \"x2\", \"y\": [0.6660328535674787, 0.4955559099445003, 0.11251030999551548, 0.5313240922219649, 0.7616845263358343, 0.42881839881496897, 0.22146723198036844, 0.2709448900825402, 0.04188686298684474, 0.3198999677935893, 0.586632325439729, 0.3332859260788763, 0.0891770245136605, 0.07249138429342028, 0.0813041402249215, 0.2808128557304226, 0.18155424903412543, 0.14020593233116785, 0.20529540916933675, 0.1755850319354616, 0.5722846846512241, 0.4684623303117058, 0.2863708053899042, 0.4489302200945696, 0.3606737334686688, 0.09834172337505831, 0.1439119889738254, 0.10526388551166177, 0.08976738859769384, 0.15927641460572795, 0.07353544332944184, 0.4894096639868448, 0.24735122968283396, 0.41440459167745447, 0.10107859516115147, 0.4809249647595707, 0.043928674649753696, 0.27268427565697984, 0.07203278686513981, 0.35989685204578803, 0.08410225657903847, 0.09640449279894714, 0.2859044620344169, 0.766491644508495, 0.27194216744256416, 0.11891721880979944, 0.6033870782914414, 0.8445823904457724, 0.4148378249676725, 0.09538880480821377, 0.5822786697287807, 0.2006236885231063, 0.30215903380660414, 0.3526626332448971, 0.22921561702294402, 0.3499358724503807, 0.451050436906263, 0.01968005574460141, 0.3849224947932618, 0.608666907839271, 0.30333177217190177, 0.05732515971384944, 0.08299070223644744, 0.155374347961305, 0.4378217303747408, 0.10641916767178827, 0.3207785913922725, 0.3280003244598044, 0.4747408725557203, 0.27229542413121455, 0.5314247042003052, 0.13834506443323813, 0.652508483608137, 0.1775869136191267, 0.4659209431511335, 0.3288332341233703, 0.47224603889779837, 0.2773569186284155, 0.18590272545123854, 0.6719763059805124, 0.04569198037744582, 0.22473444069733528, 0.0776074933333939, 0.1411968215808168, 0.3654892991508686, 0.06069899520469324, 0.21029328672965164, 0.13919371635861133, 0.16321149678759816, 0.6144435769482088, 0.1388055550317996, 0.0827658987104557, 0.0793107693477757, 0.04994940743047871, 0.46220165202879504, 0.08265172102971341, 0.5554564865761329, 0.10902951494304747, 0.26480674198345266, 0.31816712550642645, 0.20184400370343658, 0.23734670470511587, 0.19264674509953905, 0.03558879485690103, 0.5314247042003052, 0.3013473679880785, 0.8043030592862955, 0.07665185966197174, 0.17816243980233548, 0.14637302723887635, 0.43623195291339645, 0.5773286546676725, 0.06996409198491005, 0.0635191394270278, 0.11839391684253864, 0.03368970372860669, 0.16544292122901683, 0.5002106013252752, 0.20783967621931676, 0.4413184352618238, 0.1377753535318076, 0.017128038770129694, 0.09070427960766203, 0.05237321155563324, 0.46044782253877736, 0.09863911308639095, 0.6058955548956951, 0.07377868677997379, 0.33726125667837825, 0.03705661785513226, 0.03856885477325478, 0.01970319875133708, 0.06623921298607705, 0.655672818127978, 0.36403826442427, 0.375635621083512, 0.25822104517587474, 0.26990817233175546, 0.30316845466795117, 0.21597661143113533, 0.10411587283779344, 0.4582573305440075, 0.28974208538397184, 0.3995654588450376, 0.48407929824265805, 0.2412117545349558, 0.49704114689177337, 0.3112403223054312, 0.13571503940671914, 0.35304273602320047, 0.18963603484652192, 0.06023564559469896, 0.305863422303413, 0.34062746964654456, 0.03532029949184434, 0.20200996882548472, 0.207876095289533, 0.11304202998506685, 0.26487496820305634, 0.46674395287949066, 0.05931266843465788, 0.6063731497207538, 0.053339747820140615, 0.16056749669580483, 0.3366557342021428, 0.18735912995827353, 0.2667542380283816, 0.9197592959547904, 0.13322255285490225, 0.3533185668595151, 0.08763312389948397, 0.343329095265401, 0.1298321532292276, 0.11240742021865013, 0.03412749239977686, 0.23316671381479437, 0.13955591125269062, 0.065615492475942, 0.03940539431326806, 0.04874684240881699, 0.42507109047861347, 0.3720756994829524, 0.20627971812824875, 0.23346983492740092, 0.299872058778726, 0.14688925552714138, 0.20529540916933675, 0.11294333341234963, 0.4523771212155355, 0.15895981664313275, 0.12633289347617382, 0.34801013400503944, 0.063056887931354, 0.09222807982804315, 0.19281104432210028, 0.11843845992675284, 0.1064686731970873, 0.12171087020281346, 0.49704114689177337, 0.4202798549667376, 0.058322454167927695, 0.40418598015134155, 0.7514842711311043, 0.067978575311199, 0.1468497162592186, 0.3655805321171328, 0.36741292271676196, 0.08785516413846428, 0.4223454464089015, 0.09472348251934337, 0.14196098925812006, 0.10013555988874479, 0.32154631204965056, 0.05416575683382341, 0.786126361492164, 0.04696516601190348, 0.26926088858349784, 0.28123172687107445, 0.3094364396730669, 0.04307250962973752, 0.07126159086244754, 0.6143015945908075, 0.495586079448059, 0.46102608015166635, 0.40789311683600216, 0.8929715185951024, 0.1227006502272181, 0.3638055988942468, 0.10470002869891348, 0.29304213908849364, 0.8936703981375603, 0.3534407380188983, 0.0883666731866185, 0.07895584641700149, 0.05166417783587085, 0.4199775765299997, 0.10304865631077798, 0.1041340676595982, 0.11031385635331636, 0.22368578646300386, 0.22137255536682798, 0.0725394352715707, 0.08320759746190642, 0.3577905591727162, 0.36362749207413336, 0.13058702032609693, 0.4306817897420764, 0.4684623303117058, 0.3185463047756948, 0.6991046594229053, 0.33105510290791684, 0.35804773811787727, 0.3499358724503807, 0.17780319308126435, 0.07142366539796174, 0.1504846162366139, 0.28643330026545544, 0.11492102279820171, 0.08716328114311156, 0.12905574960179156, 0.5528531989583015, 0.2852168598030531, 0.3185463047756948, 0.41766807389819915, 0.22818770291371737, 0.10749415552266317, 0.07500089027222667, 0.2150933620687273, 0.4879833184669665, 0.21367083697314282, 0.18281788227943807, 0.11217648511765432, 0.01860460444149037, 0.4990100838788346, 0.3212979959143686, 0.7252893191599291, 0.30018855716775616, 0.2808216200321265, 0.24332849241566534, 0.22583693263898685, 0.307128141019565, 0.12930297020615966, 0.07734813107736227, 0.38078614076753503, 0.037937415915298756, 0.18389331462546077, 0.2015421194948802, 0.10121634311933059, 0.7209948827487924, 0.252131738577411, 0.19866278493931944, 0.5569604587758099, 0.19172534874952063, 0.07516041810443141, 0.18673310211333727, 0.20736440356309183, 0.27568985010185776, 0.1748501221961516, 0.134246332983591, 0.12151400729184814, 0.03860330573341564, 0.16198960071610413, 0.062309112953929935, 0.14943540958877521, 0.46827469198568006, 0.12435295831370408, 0.11768791031746062, 0.10794707492381372, 0.04347111427796346, 0.07423675680829, 0.1602542791395647, 0.19911642350143877, 0.2379444352717226, 0.36664322039668684, 0.10130143557253446, 0.17108028607870185, 0.6143194513817134, 0.5641235853966853, 0.29864316680665437, 0.44752301946823647, 0.13459844499503626, 0.037461465199631894, 0.5002964248569376, 0.4059565893810353, 0.7035957096210382, 0.0629603198376949, 0.25036415064992923, 0.14780834332950044, 0.24800647860056513, 0.10438723399855232, 0.24366911510822187, 0.4574644219698093, 0.8347014835967527, 0.42226245660703365, 0.4073158502222598, 0.47525484003715535, 0.37845934883934684, 0.35325777167774697, 0.4763432908647238, 0.18941100564626978, 0.23853527246002126, 0.27277355193056574, 0.5556171757583562, 0.19481513110659687, 0.7460207524242459, 0.12627308236197843, 0.2115813466591615, 0.4773837842994688, 0.22238536240250728, 0.1978655273089749, 0.32057959349203036, 0.1601330373243487, 0.6256605001243821, 0.34062746964654456, 0.5899158924001677, 0.1273375405407705, 0.6866376712310945, 0.3812864953771038, 0.07918534602430627, 0.10510921928053807, 0.052405178286905496, 0.29010285216427345, 0.5802968836962079, 0.4475494904811408, 0.33107045093633036, 0.6046547135519548, 0.33132995382553565, 0.3391582818855403, 0.37109937806185267, 0.18876467901964422, 0.03244681540368277, 0.6531311156123596, 0.18281848038190407, 0.06840545126676123, 0.23876166598551407, 0.5602062902528231, 0.05478334190217349, 0.18965009362393503, 0.502081053312289, 0.0945975060483667, 0.24937367783354814, 0.14040338921272166, 0.09582424632391484, 0.4879833184669665, 0.07536550594022651, 0.37763546052463404, 0.20240400638142053, 0.06234715971662652, 0.1729504208160284, 0.2536573606029918, 0.1491704939138675, 0.47224603889779837, 0.20734784509414073, 0.1656619584420439, 0.20263687678412212, 0.4576701693643329, 0.3746187330143109, 0.06578487521364562, 0.09359041291034786, 0.15714155813810793, 0.43198081216185935, 0.17693664965610134, 0.14200602748771296, 0.16878839641400256, 0.11131318694256087, 0.43040972974554736, 0.12494266711040569, 0.5286591337585229, 0.3917329141436472, 0.14284790216410748, 0.29931895876037384, 0.3998656181534954, 0.13198036366642862, 0.2166851793268345, 0.164669749255824, 0.3116999397838065, 0.5702002297218003, 0.2867818412254799, 0.05809024612643199, 0.0701620515557333, 0.10493669218879953, 0.03474255021640338, 0.14069518845012563, 0.7697788668098057, 0.44513161239284327, 0.12104291767226882, 0.2823656727566666, 0.28640273091276736, 0.09904459769556595, 0.10889384421684001, 0.1978655273089749, 0.6326587477498924, 0.0766186874204361, 0.07300117689776386, 0.3978521493117628, 0.7293533971641823, 0.24040337450518035, 0.46827469198568006, 0.03737110954461231, 0.48112847828662497, 0.5755848065786346, 0.12151472907643468, 0.332302417201758, 0.3208349144509022, 0.13406270144296106, 0.47820199098358873, 0.024219732643774528, 0.7923035912680444, 0.3099424932714111, 0.8494816644677875, 0.15230116664989468, 0.8795672599938588, 0.34536882843285344, 0.587897812361327, 0.3660303223369904, 0.3074082248441362, 0.1925553058603695, 0.1582957933341015, 0.5297945963993664, 0.1892543681582496, 0.06574637766643598, 0.03286461121245521, 0.6223124217546917, 0.48666930315350876, 0.17200815643270417, 0.27042696199957883, 0.16010429726024444, 0.25291734909108765, 0.22778758435893687, 0.6055190518965303, 0.41989528411161425, 0.2865861541738164, 0.17344095530188786, 0.4163761941495938, 0.24610426408478792, 0.029106329843254564, 0.5849270471051293, 0.09607886499379148, 0.4890296174547498, 0.11193395874659995, 0.3667485749721523, 0.29672938182784603, 0.13696827462710404, 0.03986507081677082, 0.41542023534722683, 0.1642424989032959, 0.041559354155004224, 0.1266666793707928, 0.5259198205822933, 0.42123490919744344, 0.6147437654518444, 0.42849246998341506, 0.04874684240881699, 0.16870816563337898, 0.35179373534084035, 0.4552463954734379, 0.1543174595222413, 0.4641274821418986, 0.1106599594415556, 0.40441066041397966, 0.05916303638108533, 0.24194101851814365, 0.5755848065786346, 0.23631147082452741, 0.04679471849088612, 0.33132995382553565, 0.6031606095022326, 0.16900214819844117, 0.9322526967181247, 0.1065938389205352, 0.0540586741766943, 0.14920224829950646, 0.03054451782098533, 0.13595064656866984, 0.15908339514281045, 0.09402391562754642, 0.27219479721363327, 0.10477531970828624, 0.6046547135519548, 0.04412971358840656, 0.0821245873848182, 0.24953715645213048, 0.24311299470472425, 0.679537413518331, 0.02875041056121841, 0.2874129658970298, 0.17131102264191878, 0.07042427222914205, 0.1577516063520068, 0.39934634677258996, 0.42249259173992826, 0.24940231538328683, 0.46827469198568006, 0.040988937643475554, 0.034828704291737345, 0.26663563965858417, 0.22421743312747255, 0.10716094829621758, 0.7421831263598226, 0.4644511163280224, 0.1591307416719686, 0.21502194578256428, 0.12883185373794437, 0.15520095945599266, 0.04280666734842442, 0.06928764484923078, 0.3578757504587543, 0.0760792945579073, 0.06637805380770656, 0.5755848065786346, 0.4326356954473739, 0.16985579355455038, 0.47152805642545803, 0.11644579282256762, 0.11790522998710073, 0.5438286352264949, 0.41561805514360906, 0.050606352251634235, 0.21836830194439782, 0.22298545275517268, 0.1504846162366139, 0.16819644397314482, 0.47796113776613436, 0.14100197907825862, 0.7878397890034206, 0.12176963827920351, 0.09814942480303201, 0.23162396036129984, 0.04400104962869911, 0.061588508633294015, 0.2774601068082493, 0.40816383821078206, 0.14036214651023216, 0.11837607594274324, 0.0703155477214753, 0.17002415827487982, 0.24611532014486182, 0.06874641727313702, 0.30975746960573625, 0.07004288447243323, 0.6453829176356538, 0.3880412370469972, 0.10205495289732236, 0.12171087020281346, 0.38550692709735157, 0.4398162761337091, 0.5769741243450848, 0.48842976274850136, 0.3866799681687785, 0.17129518728202664, 0.5711206597512044, 0.4456070955069118, 0.4585850027539752, 0.25462747480751524, 0.34771016550763867, 0.35548618548401445, 0.07878090041588082, 0.3008706318705062, 0.08117751180329491, 0.055511805197920094, 0.1600174453683395, 0.35597309965685686, 0.5473978930443646, 0.3321771897262046, 0.14643302530661162, 0.7653011157176768, 0.24188431843396252, 0.16704799028757666, 0.41136103198090634, 0.5749869949413896, 0.709238838470871, 0.09340318303147321, 0.602429869503323, 0.04154705947390969, 0.7519582179986716, 0.15993940416551844, 0.04372375151311325, 0.4076899811241429, 0.4644511163280224, 0.3133137248525114, 0.24628490675063597, 0.06972977174174444, 0.15949948541388637, 0.2241543425141257, 0.1729876202034616, 0.07290025122558275, 0.1220000714032804, 0.36493953208423235, 0.09420126302076737, 0.026726938234992392, 0.7199273032686843, 0.4606762448039463, 0.04906818437448113, 0.19446415942665518, 0.14876853598344464, 0.3247816953453747, 0.023320858692869595, 0.7310618090422621, 0.48944479260603346, 0.20357574295749958, 0.0840537250624015, 0.5368744051465595, 0.21101467800102214, 0.46682279298460017, 0.3749869638443927, 0.46592999202179275, 0.10188412989688433, 0.15751976448865512], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"free.sulfur.dioxide\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"free.sulfur.dioxide\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}, \"All_total.sulfur.dioxide\": {\"data\": [{\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Reference<br>total.sulfur.dioxide=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [123.0, 231.0, 126.0, 107.0, 175.0, 65.0, 107.0, 115.0, 121.0, 69.0, 180.0, 9.0, 158.0, 195.0, 211.0, 150.0, 101.0, 43.0, 74.0, 93.0, 202.0, 95.0, 142.0, 177.0, 84.0, 170.0, 93.0, 158.0, 131.0, 75.0, 92.0, 54.0, 92.0, 170.0, 63.0, 130.0, 186.0, 142.0, 99.0, 66.0, 67.0, 148.0, 60.0, 97.0, 211.0, 110.0, 57.0, 142.0, 18.0, 135.0, 110.0, 177.0, 104.0, 189.0, 156.0, 163.0, 73.0, 98.0, 104.0, 127.0, 19.0, 128.0, 144.0, 140.0, 41.0, 24.0, 100.0, 114.0, 160.0, 86.0, 125.0, 86.0, 101.0, 289.0, 94.0, 90.0, 37.0, 83.0, 60.0, 125.0, 189.0, 93.0, 57.0, 124.0, 98.0, 93.0, 143.0, 50.0, 93.0, 17.0, 119.0, 109.0, 148.0, 143.0, 151.0, 116.0, 134.0, 117.0, 85.0, 157.0, 47.0, 200.0, 41.0, 8.0, 95.0, 200.0, 103.0, 133.0, 86.0, 38.0, 103.0, 176.0, 166.0, 49.0, 158.0, 121.0, 110.0, 72.0, 171.0, 44.0, 171.0, 134.0, 228.0, 140.0, 89.0, 31.0, 25.0, 127.0, 147.0, 23.0, 127.0, 106.0, 129.5, 71.0, 115.0, 155.0, 52.0, 23.0, 109.0, 44.0, 109.0, 155.0, 159.0, 161.0, 17.0, 113.0, 85.0, 77.0, 34.0, 109.0, 149.0, 42.0, 143.0, 206.0, 118.0, 111.0, 100.0, 167.0, 112.0, 122.0, 115.0, 91.0, 68.0, 45.0, 137.0, 213.0, 192.0, 142.0, 161.0, 119.0, 20.0, 58.0, 123.0, 97.0, 43.0, 144.0, 31.0, 134.0, 138.0, 33.0, 134.0, 126.0, 15.0, 163.0, 136.0, 127.0, 118.0, 15.0, 194.0, 96.0, 128.0, 11.0, 164.0, 164.0, 94.0, 118.0, 126.0, 113.0, 72.0, 58.0, 124.0, 122.0, 111.0, 46.0, 181.0, 74.0, 22.0, 124.0, 155.0, 146.0, 73.0, 101.0, 121.0, 133.0, 80.0, 128.0, 106.0, 128.0, 160.0, 75.0, 78.0, 158.0, 87.0, 110.0, 25.0, 111.0, 189.0, 156.0, 106.0, 151.0, 186.0, 184.0, 52.0, 139.0, 92.0, 112.0, 150.0, 169.0, 107.0, 128.0, 202.0, 192.0, 114.0, 228.0, 64.0, 193.0, 155.0, 140.0, 167.0, 88.0, 163.0, 229.0, 66.0, 28.0, 29.0, 101.0, 143.0, 168.0, 152.0, 9.0, 146.0, 92.0, 99.0, 144.0, 109.0, 130.0, 114.0, 20.0, 44.0, 96.0, 61.0, 48.0, 81.0, 104.0, 119.0, 156.0, 115.0, 24.0, 11.0, 90.0, 161.0, 146.0, 90.0, 105.0, 93.0, 27.0, 182.0, 186.0, 46.0, 87.0, 84.0, 158.0, 12.0, 138.0, 149.0, 201.0, 34.0, 138.0, 71.0, 103.0, 40.0, 113.0, 98.0, 93.0, 98.0, 44.0, 142.0, 54.0, 155.0, 124.0, 70.0, 174.0, 28.0, 249.5, 90.0, 21.0, 153.0, 142.0, 100.0, 81.0, 104.0, 65.0, 170.0, 164.0, 118.0, 25.0, 81.0, 27.0, 188.0, 151.0, 107.0, 100.0, 19.0, 171.0, 96.0, 167.0, 76.0, 102.0, 159.0, 242.0, 213.0, 49.0, 78.0, 141.0, 22.0, 148.0, 125.0, 37.0, 96.0, 200.0, 143.0, 173.0, 115.0, 57.0, 160.0, 107.0, 79.0, 155.0, 23.0, 135.0, 194.0, 172.0, 57.0, 48.0, 88.0, 112.0, 125.0, 117.0, 31.0, 179.0, 149.0, 67.0, 102.0, 93.0, 78.0, 122.0, 142.0, 43.0, 98.0, 86.0, 50.0, 209.0, 63.0, 247.0, 206.0, 98.0, 95.0, 170.0, 163.0, 93.0, 132.0, 111.0, 158.0, 97.0, 221.0, 42.0, 87.0, 122.0, 178.0, 114.0, 42.0, 62.0, 70.0, 168.0, 78.0, 127.0, 134.0, 171.0, 87.0, 169.0, 140.0, 168.0, 141.0, 78.0, 102.0, 118.0, 152.0, 171.0, 143.0, 168.0, 138.0, 131.0, 206.0, 149.0, 134.0, 114.0, 111.0, 166.0, 165.0, 178.0, 186.0, 79.0, 98.0, 68.0, 146.0, 111.0, 16.0, 54.0, 155.0, 47.0, 102.0, 111.0, 89.0, 125.0, 109.0, 118.0, 231.0, 154.0, 24.0, 83.0, 126.0, 124.0, 70.0, 108.0, 174.0, 38.0, 223.0, 37.0, 101.0, 116.0, 22.0, 66.0, 37.0, 208.0, 138.0, 92.0, 134.0, 143.0, 154.0, 27.0, 42.0, 215.0, 131.0, 169.0, 113.0, 166.0, 105.0, 111.0, 113.0, 98.0, 42.0, 183.0, 118.0, 172.0, 134.0, 117.0, 109.0, 118.0, 88.0, 120.0, 223.0, 94.0, 93.0, 129.0, 11.0, 125.0, 185.0, 197.0, 108.0, 101.0, 195.0, 140.0, 140.0, 194.0, 126.0, 176.0, 113.0, 156.0, 90.0, 135.0, 98.0, 100.0, 211.0, 184.0, 111.0, 76.0, 111.0, 245.0, 102.0, 109.0, 89.0, 114.0, 142.0, 114.0, 38.0, 28.0, 158.0, 121.0, 126.0, 92.0, 47.0, 16.0, 158.0, 142.0, 102.0, 61.0, 242.0, 137.0, 143.0, 125.0, 172.0, 144.0, 216.0, 157.0, 128.0, 114.0, 13.0, 118.0, 83.0, 143.0, 116.0, 167.0, 91.0, 76.0, 125.0, 15.0, 73.0, 37.0, 213.0, 110.0, 160.0, 143.0, 68.0, 113.0, 88.0, 124.0, 112.0, 63.0, 110.0, 204.0, 78.0, 151.0, 168.0, 114.0, 110.0, 82.0, 154.0, 134.0, 229.0, 154.0, 109.0, 101.0, 123.0, 54.0, 126.0, 39.0, 128.0, 118.0, 65.0, 130.0, 136.0, 114.0, 215.0, 144.0, 128.0, 117.0, 89.0, 16.0, 95.0, 215.0, 150.0, 114.0, 162.0, 110.0, 17.0, 164.0, 144.0, 115.5, 134.0, 155.0, 119.0, 70.0, 230.0, 13.0, 137.0, 72.0, 69.0, 136.0, 28.0, 103.0, 154.0, 158.0, 33.0, 56.0, 194.0, 195.0, 140.0, 84.0, 170.0, 87.0, 178.0, 186.0, 193.0, 113.0, 140.0, 72.0, 37.0, 170.0, 110.0, 75.0, 104.0, 34.0, 152.0, 99.0, 117.0], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Current<br>total.sulfur.dioxide=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [101.0, 194.0, 126.0, 68.0, 94.0, 99.0, 97.0, 124.0, 95.0, 163.0, 32.0, 191.0, 111.0, 119.0, 127.0, 118.0, 38.0, 61.0, 28.0, 162.0, 212.5, 193.0, 74.0, 147.0, 179.0, 99.0, 127.0, 134.0, 93.0, 148.0, 74.0, 136.0, 178.0, 99.0, 121.0, 129.0, 76.0, 150.0, 81.0, 31.0, 124.0, 85.0, 156.0, 238.0, 27.0, 45.0, 135.0, 86.0, 212.0, 195.0, 18.0, 122.0, 137.0, 59.0, 175.0, 145.0, 181.0, 63.0, 165.0, 64.0, 64.0, 150.0, 105.0, 85.0, 100.0, 127.0, 144.0, 155.0, 89.0, 153.0, 189.0, 100.0, 117.0, 114.0, 113.0, 145.0, 174.0, 161.0, 38.0, 25.0, 87.0, 144.0, 60.0, 162.0, 143.0, 26.0, 55.0, 96.0, 172.0, 132.0, 143.0, 108.0, 115.0, 107.0, 117.0, 97.0, 28.0, 294.0, 10.0, 24.0, 126.0, 101.0, 22.0, 121.0, 189.0, 131.0, 105.0, 109.0, 117.0, 107.0, 75.0, 176.0, 112.0, 76.0, 138.0, 35.0, 153.0, 152.0, 136.0, 59.0, 158.0, 121.0, 44.0, 81.0, 60.0, 16.0, 53.0, 94.0, 26.0, 84.0, 82.0, 38.0, 98.0, 253.0, 74.0, 213.0, 12.0, 60.0, 169.0, 118.0, 166.0, 58.0, 35.0, 153.0, 204.0, 99.0, 190.0, 47.0, 134.0, 116.0, 98.0, 93.0, 94.0, 103.0, 116.0, 164.0, 47.0, 28.0, 92.0, 192.0, 65.0, 28.0, 86.0, 199.0, 20.0, 80.0, 148.0, 29.0, 48.0, 123.0, 100.0, 107.0, 41.0, 9.0, 88.0, 213.0, 129.0, 216.0, 111.0, 43.0, 131.0, 124.0, 117.0, 80.0, 141.0, 35.0, 28.0, 72.0, 170.0, 36.0, 124.0, 149.0, 92.0, 118.0, 133.0, 109.0, 76.0, 89.0, 190.0, 133.0, 98.0, 129.0, 245.0, 84.0, 191.0, 130.0, 99.0, 76.0, 134.0, 183.0, 116.0, 125.0, 34.0, 94.0, 35.0, 124.0, 90.0, 143.0, 174.0, 105.0, 125.0, 244.0, 15.0, 209.0, 189.0, 212.0, 118.0, 161.0, 59.0, 172.0, 65.0, 97.0, 84.0, 104.0, 33.0, 170.0, 99.0, 90.0, 140.0, 150.0, 114.0, 118.0, 132.0, 104.0, 54.0, 19.0, 155.0, 193.0, 111.0, 31.0, 150.0, 143.0, 145.0, 107.0, 105.0, 95.0, 126.0, 73.0, 111.0, 153.0, 15.0, 168.0, 111.0, 181.0, 172.0, 139.0, 110.0, 136.0, 189.0, 135.0, 104.0, 117.0, 51.0, 49.0, 113.0, 39.0, 148.0, 109.0, 102.0, 51.0, 26.0, 122.0, 104.0, 120.0, 114.0, 19.0, 132.0, 73.0, 145.0, 135.0, 47.0, 12.0, 132.0, 87.0, 125.0, 139.0, 94.0, 143.0, 139.0, 97.0, 119.0, 109.0, 163.0, 134.0, 178.0, 44.0, 95.0, 143.0, 180.0, 90.0, 129.0, 72.0, 32.0, 123.0, 81.0, 152.0, 214.0, 126.0, 117.0, 173.0, 204.0, 134.0, 156.0, 134.0, 65.0, 151.0, 114.0, 44.0, 164.0, 125.0, 28.0, 156.0, 28.0, 201.0, 106.0, 116.0, 182.0, 225.0, 142.0, 39.0, 142.0, 98.0, 188.0, 55.0, 27.0, 113.0, 87.0, 140.0, 33.0, 85.0, 158.0, 95.0, 169.0, 103.0, 191.0, 151.0, 28.0, 113.0, 163.0, 26.0, 95.0, 135.0, 55.0, 171.0, 21.0, 206.0, 113.0, 168.0, 173.0, 161.0, 97.0, 227.0, 107.0, 81.0, 17.0, 17.0, 96.0, 118.0, 38.0, 111.0, 118.0, 125.0, 143.0, 189.0, 98.0, 166.0, 135.0, 68.0, 12.0, 131.0, 172.0, 174.0, 128.0, 194.0, 108.0, 35.0, 155.0, 26.0, 87.0, 93.0, 187.0, 150.0, 158.0, 114.0, 120.0, 169.0, 130.0, 109.0, 149.0, 80.0, 23.0, 125.0, 81.0, 55.0, 185.0, 53.0, 245.0, 17.0, 122.0, 130.0, 75.0, 90.0, 34.0, 48.0, 15.0, 118.0, 151.0, 150.0, 85.0, 140.0, 85.0, 155.0, 84.0, 109.0, 17.0, 38.0, 172.0, 178.0, 93.0, 171.0, 229.0, 27.0, 146.0, 104.0, 89.0, 15.0, 60.0, 112.0, 47.0, 48.0, 136.0, 89.0, 141.0, 9.0, 154.0, 159.0, 113.0, 88.0, 158.0, 29.0, 179.0, 92.0, 181.0, 173.0, 160.0, 107.0, 151.0, 79.0, 132.0, 37.0, 170.0, 163.0, 50.0, 135.0, 98.0, 77.0, 172.0, 102.0, 135.0, 123.0, 143.0, 134.0, 85.0, 21.0, 182.0, 132.0, 28.0, 101.0, 25.0, 44.0, 100.0, 129.5, 43.0, 47.0, 40.0, 14.0, 125.0, 46.0, 11.0, 49.0, 118.0, 139.0, 229.0, 114.0, 53.0, 113.0, 200.0, 133.0, 88.0, 128.0, 70.0, 80.0, 113.0, 73.0, 152.0, 104.0, 45.0, 19.0, 206.0, 41.0, 173.0, 14.0, 97.0, 180.0, 147.0, 149.0, 135.0, 116.0, 150.0, 164.5, 21.0, 128.0, 178.0, 101.0, 16.0, 180.0, 14.0, 132.0, 10.0, 189.0, 156.0, 166.0, 10.0, 153.0, 49.0, 99.0, 68.0, 16.0, 80.0, 229.0, 225.0, 104.0, 122.0, 10.0, 57.0, 150.0, 69.0, 76.0, 102.0, 129.0, 95.0, 116.0, 168.0, 19.0, 173.0, 189.0, 142.0, 177.0, 71.0, 140.0, 110.0, 184.0, 152.0, 164.0, 105.0, 117.0, 124.0, 91.0, 181.0, 85.0, 181.0, 168.0, 128.0, 89.0, 167.0, 155.0, 20.0, 212.0, 78.0, 25.0, 35.0, 130.0, 129.0, 122.0, 7.0, 69.0, 120.0, 140.0, 83.0, 136.0, 157.0, 169.0, 221.0, 190.0, 113.0, 91.0, 13.0, 104.0, 136.0, 167.0, 99.0, 103.0, 159.0, 108.0, 91.0, 136.0, 103.0, 213.0, 189.0, 169.0, 107.0, 91.0, 112.0, 82.0, 114.0, 72.0, 84.0, 159.0, 17.0, 128.0, 16.0, 43.0, 87.0, 136.0, 140.0, 144.0, 74.0, 86.0, 145.0, 153.0, 127.0, 228.0, 112.0, 157.0, 140.0, 192.0, 114.0, 111.0], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Reference<br>total.sulfur.dioxide=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [192.0, 65.0, 151.0, 44.0, 77.0, 45.0, 149.0, 23.0, 148.0, 174.0, 110.0, 164.0, 165.0, 163.0, 79.0, 183.0, 144.0, 19.0, 139.0, 12.0, 187.0, 206.0, 12.0, 120.0, 63.0, 54.0, 120.0, 91.0, 214.0, 183.0, 20.0, 106.0, 159.0, 196.0, 192.0, 112.0, 147.0, 130.0, 10.0, 180.0, 94.0, 22.0, 100.0, 84.0, 84.0, 124.0, 105.0, 149.0, 87.0, 53.0, 33.0, 141.0, 168.0, 14.0, 173.0, 220.0, 169.0, 177.0, 69.0, 55.0, 245.0, 179.0, 16.0, 164.0, 113.0, 131.0, 172.0, 133.0, 36.0, 91.0, 183.0, 8.0, 194.0, 117.0, 115.0, 144.0, 233.0, 20.0, 92.0, 87.0, 106.0, 76.0, 243.0, 23.0, 138.0, 38.0, 201.0, 26.0, 72.0, 63.0, 8.0, 152.0, 111.0, 194.0, 195.0, 202.0, 159.0, 133.0, 179.0, 117.0, 195.0, 71.0, 111.0, 197.0, 120.0, 69.0, 115.0, 72.0, 115.0, 150.0, 47.0, 63.0, 15.0, 104.0, 51.0, 92.0, 178.0, 77.0, 84.0, 86.0, 166.0, 49.0, 150.0, 111.0, 204.0, 210.0, 198.0, 42.0, 86.0, 184.0, 33.0, 86.0, 156.0, 189.0, 139.0, 164.0, 60.0, 176.0, 140.0, 141.0, 116.0, 227.0, 75.0, 116.0, 177.0, 197.0, 161.0, 142.0, 48.0, 84.0, 156.0, 26.0, 143.0, 22.0, 104.0, 31.0, 98.0, 165.0, 73.0, 131.0, 101.0, 28.0, 49.0, 113.0, 12.0, 84.0, 179.0, 176.0, 187.0, 180.0, 171.0, 99.0, 121.0, 171.0, 95.0, 16.0, 35.0, 177.0, 55.0, 63.0, 189.0, 12.0, 114.0, 171.0, 179.0, 197.0, 187.0, 34.0, 157.0, 227.0, 115.0, 75.0, 206.0, 50.0, 200.0, 12.0, 151.0, 218.0, 210.0, 130.0, 198.0, 82.0, 82.0, 31.0, 132.0, 157.0, 131.0, 61.0, 13.0, 21.0, 87.0, 148.0, 160.0, 225.0, 173.0, 158.0, 192.0, 131.0, 220.0, 110.0, 24.0, 103.0, 204.0, 111.0, 115.0, 168.0, 93.0, 234.0, 87.0, 13.0, 117.0, 160.0, 103.0, 111.0, 106.0, 143.0, 207.0, 57.0, 210.0, 230.0, 38.0, 162.0, 136.0, 174.0, 103.0, 47.0, 142.0, 154.0, 164.0, 30.0, 155.0, 160.0, 159.0, 19.0, 176.0, 171.0, 90.0, 62.0, 133.0, 18.0, 169.0, 142.0, 173.0, 122.0, 178.0, 149.0, 128.0, 155.0, 58.0, 79.0, 212.0, 193.0, 167.0, 205.0, 186.0, 248.0, 124.0, 188.0, 82.0, 64.0, 14.0, 31.0, 188.0, 61.0, 117.0, 174.0, 123.0, 170.0, 73.0, 198.0, 97.0, 119.0, 307.5, 51.0, 68.0, 60.0, 106.0, 252.0, 177.0, 115.0, 78.0, 102.0, 96.0, 189.0, 72.0, 71.0, 184.0, 23.0, 18.0, 91.0, 150.0, 170.0, 31.0, 196.0, 133.0, 184.0, 282.0, 125.0, 223.0, 37.0, 20.0, 210.0, 60.0, 11.0, 168.0, 136.0, 71.0, 176.0, 65.0, 195.0, 167.0, 78.0, 164.0, 198.0, 131.0, 33.0, 240.0, 27.0, 95.0, 234.0, 87.0, 185.0, 120.0, 48.0, 188.0, 38.0, 195.0, 188.0, 62.0, 184.0, 145.0, 35.0, 197.0, 99.0, 104.0], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Current<br>total.sulfur.dioxide=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [106.0, 196.0, 164.0, 47.0, 156.0, 167.0, 131.0, 14.0, 21.0, 25.0, 111.0, 85.0, 191.0, 207.0, 181.0, 133.0, 143.0, 42.0, 125.0, 131.0, 115.0, 219.0, 185.0, 225.0, 101.0, 110.0, 72.0, 174.0, 66.0, 163.0, 159.0, 166.0, 24.0, 73.0, 164.0, 135.0, 152.0, 39.0, 127.0, 128.0, 101.0, 44.0, 150.0, 171.0, 67.0, 177.0, 112.0, 38.0, 174.0, 40.0, 176.0, 139.0, 91.0, 33.0, 26.0, 49.0, 38.0, 23.0, 145.0, 201.0, 23.0, 216.0, 186.0, 26.0, 91.0, 11.0, 45.0, 34.0, 23.0, 42.0, 16.0, 182.0, 168.0, 23.0, 135.0, 111.0, 255.0, 61.0, 98.0, 84.0, 126.0, 21.0, 187.0, 143.0, 169.0, 59.0, 171.0, 184.0, 174.0, 102.0, 210.0, 134.0, 16.0, 213.0, 54.0, 9.0, 131.0, 148.0, 142.0, 216.0, 88.0, 167.0, 133.0, 38.0, 200.0, 9.0, 90.0, 26.0, 119.0, 197.0, 59.0, 148.0, 30.0, 189.0, 53.0, 166.0, 146.0, 144.0, 196.0, 44.0, 179.0, 132.0, 161.0, 102.0, 20.0, 94.0, 89.0, 123.0, 20.0, 201.0, 55.0, 227.0, 213.0, 56.0, 68.0, 178.0, 121.0, 13.0, 94.0, 126.0, 117.0, 169.0, 95.0, 77.0, 68.0, 149.0, 138.0, 12.0, 140.0, 166.0, 114.0, 212.0, 129.0, 176.0, 145.0, 117.0, 135.0, 183.0, 131.0, 213.0, 55.0, 173.0, 128.0, 116.0, 29.0, 90.0, 56.0, 92.0, 140.0, 150.0, 165.0, 114.0, 86.0, 178.0, 102.0, 107.0, 119.0, 220.0, 219.0, 158.0, 122.0, 157.0, 42.0, 84.0, 162.0, 161.0, 150.0, 116.0, 142.0, 149.0, 86.0, 102.0, 196.0, 83.0, 189.0, 35.0, 89.0, 142.0, 156.0, 97.0, 11.0, 201.0, 162.0, 198.0, 89.0, 183.0, 173.0, 15.0, 138.0, 160.0, 146.0, 106.0, 34.0, 106.0, 222.0, 80.0, 169.0, 172.0, 99.0, 60.0, 142.0, 202.0, 126.0, 216.0, 154.0, 119.0, 43.0, 199.0, 167.0, 143.0, 161.0, 129.0, 138.0, 145.0, 63.0, 167.0, 131.0, 129.0, 213.0, 101.0, 210.0, 31.0, 138.0, 162.0, 117.0, 190.0, 75.0, 105.0, 169.0, 70.0, 42.0, 186.0, 111.0, 153.0, 111.0, 133.0, 162.0, 238.5, 155.0, 38.0, 37.0, 101.0, 168.0, 168.0, 71.0, 186.0, 77.0, 113.0, 117.0, 164.0, 98.0, 28.0, 187.0, 148.0, 107.0, 108.0, 210.0, 72.0, 82.0, 136.0, 87.0, 161.0, 105.0, 197.0, 145.0, 148.0, 109.0, 126.0, 48.0, 66.0, 191.0, 147.0, 151.0, 85.0, 137.0, 31.0, 98.0, 192.0, 167.0, 22.0, 132.0, 47.0, 176.0, 226.0, 210.0, 131.0, 21.0, 105.0, 177.0, 181.0, 58.0, 191.0, 69.0, 145.0, 175.0, 162.0, 157.0, 197.0, 138.0, 80.0, 25.0, 20.0, 124.0, 164.0, 14.0, 151.0, 161.0, 6.0, 200.0, 168.0, 10.0, 166.0, 85.0, 148.0, 28.0, 85.0, 127.0, 133.0, 138.0, 104.0, 180.0, 121.0, 61.0, 63.0, 16.0, 49.0, 122.0, 106.0, 138.0, 112.0, 92.0, 128.0], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Reference\", \"x\": 0.245, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Current\", \"x\": 0.755, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"barmode\": \"overlay\", \"legend\": {\"title\": {\"text\": \"target\"}, \"tracegroupgap\": 0}, \"margin\": {\"t\": 60}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.49], \"title\": {\"text\": \"total.sulfur.dioxide\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.51, 1.0], \"matches\": \"x\", \"title\": {\"text\": \"total.sulfur.dioxide\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"count\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}}}, \"total.sulfur.dioxide_good\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (ref)\", \"type\": \"scatter\", \"x\": [123.0, 231.0, 126.0, 107.0, 175.0, 65.0, 107.0, 115.0, 121.0, 69.0, 180.0, 9.0, 158.0, 195.0, 211.0, 150.0, 101.0, 43.0, 74.0, 93.0, 202.0, 95.0, 142.0, 177.0, 84.0, 170.0, 93.0, 158.0, 131.0, 75.0, 92.0, 54.0, 92.0, 170.0, 63.0, 130.0, 186.0, 142.0, 99.0, 66.0, 67.0, 148.0, 60.0, 97.0, 211.0, 110.0, 57.0, 142.0, 18.0, 135.0, 110.0, 177.0, 104.0, 189.0, 156.0, 163.0, 73.0, 98.0, 104.0, 127.0, 19.0, 128.0, 144.0, 140.0, 41.0, 24.0, 100.0, 114.0, 160.0, 86.0, 125.0, 86.0, 101.0, 289.0, 94.0, 90.0, 37.0, 83.0, 60.0, 125.0, 189.0, 93.0, 57.0, 124.0, 98.0, 93.0, 143.0, 50.0, 93.0, 17.0, 119.0, 109.0, 148.0, 143.0, 151.0, 116.0, 134.0, 117.0, 85.0, 157.0, 47.0, 200.0, 41.0, 8.0, 95.0, 200.0, 103.0, 133.0, 86.0, 38.0, 103.0, 176.0, 166.0, 49.0, 158.0, 121.0, 110.0, 72.0, 171.0, 44.0, 171.0, 134.0, 228.0, 140.0, 89.0, 31.0, 25.0, 127.0, 147.0, 23.0, 127.0, 106.0, 129.5, 71.0, 115.0, 155.0, 52.0, 23.0, 109.0, 44.0, 109.0, 155.0, 159.0, 161.0, 17.0, 113.0, 85.0, 77.0, 34.0, 109.0, 149.0, 42.0, 143.0, 206.0, 118.0, 111.0, 100.0, 167.0, 112.0, 122.0, 115.0, 91.0, 68.0, 45.0, 137.0, 213.0, 192.0, 142.0, 161.0, 119.0, 20.0, 58.0, 123.0, 97.0, 43.0, 144.0, 31.0, 134.0, 138.0, 33.0, 134.0, 126.0, 15.0, 163.0, 136.0, 127.0, 118.0, 15.0, 194.0, 96.0, 128.0, 11.0, 164.0, 164.0, 94.0, 118.0, 126.0, 113.0, 72.0, 58.0, 124.0, 122.0, 111.0, 46.0, 181.0, 74.0, 22.0, 124.0, 155.0, 146.0, 73.0, 101.0, 121.0, 133.0, 80.0, 128.0, 106.0, 128.0, 160.0, 75.0, 78.0, 158.0, 87.0, 110.0, 25.0, 111.0, 189.0, 156.0, 106.0, 151.0, 186.0, 184.0, 52.0, 139.0, 92.0, 112.0, 150.0, 169.0, 107.0, 128.0, 202.0, 192.0, 114.0, 228.0, 64.0, 193.0, 155.0, 140.0, 167.0, 88.0, 163.0, 229.0, 66.0, 28.0, 29.0, 101.0, 143.0, 168.0, 152.0, 9.0, 146.0, 92.0, 99.0, 144.0, 109.0, 130.0, 114.0, 20.0, 44.0, 96.0, 61.0, 48.0, 81.0, 104.0, 119.0, 156.0, 115.0, 24.0, 11.0, 90.0, 161.0, 146.0, 90.0, 105.0, 93.0, 27.0, 182.0, 186.0, 46.0, 87.0, 84.0, 158.0, 12.0, 138.0, 149.0, 201.0, 34.0, 138.0, 71.0, 103.0, 40.0, 113.0, 98.0, 93.0, 98.0, 44.0, 142.0, 54.0, 155.0, 124.0, 70.0, 174.0, 28.0, 249.5, 90.0, 21.0, 153.0, 142.0, 100.0, 81.0, 104.0, 65.0, 170.0, 164.0, 118.0, 25.0, 81.0, 27.0, 188.0, 151.0, 107.0, 100.0, 19.0, 171.0, 96.0, 167.0, 76.0, 102.0, 159.0, 242.0, 213.0, 49.0, 78.0, 141.0, 22.0, 148.0, 125.0, 37.0, 96.0, 200.0, 143.0, 173.0, 115.0, 57.0, 160.0, 107.0, 79.0, 155.0, 23.0, 135.0, 194.0, 172.0, 57.0, 48.0, 88.0, 112.0, 125.0, 117.0, 31.0, 179.0, 149.0, 67.0, 102.0, 93.0, 78.0, 122.0, 142.0, 43.0, 98.0, 86.0, 50.0, 209.0, 63.0, 247.0, 206.0, 98.0, 95.0, 170.0, 163.0, 93.0, 132.0, 111.0, 158.0, 97.0, 221.0, 42.0, 87.0, 122.0, 178.0, 114.0, 42.0, 62.0, 70.0, 168.0, 78.0, 127.0, 134.0, 171.0, 87.0, 169.0, 140.0, 168.0, 141.0, 78.0, 102.0, 118.0, 152.0, 171.0, 143.0, 168.0, 138.0, 131.0, 206.0, 149.0, 134.0, 114.0, 111.0, 166.0, 165.0, 178.0, 186.0, 79.0, 98.0, 68.0, 146.0, 111.0, 16.0, 54.0, 155.0, 47.0, 102.0, 111.0, 89.0, 125.0, 109.0, 118.0, 231.0, 154.0, 24.0, 83.0, 126.0, 124.0, 70.0, 108.0, 174.0, 38.0, 223.0, 37.0, 101.0, 116.0, 22.0, 66.0, 37.0, 208.0, 138.0, 92.0, 134.0, 143.0, 154.0, 27.0, 42.0, 215.0, 131.0, 169.0, 113.0, 166.0, 105.0, 111.0, 113.0, 98.0, 42.0, 183.0, 118.0, 172.0, 134.0, 117.0, 109.0, 118.0, 88.0, 120.0, 223.0, 94.0, 93.0, 129.0, 11.0, 125.0, 185.0, 197.0, 108.0, 101.0, 195.0, 140.0, 140.0, 194.0, 126.0, 176.0, 113.0, 156.0, 90.0, 135.0, 98.0, 100.0, 211.0, 184.0, 111.0, 76.0, 111.0, 245.0, 102.0, 109.0, 89.0, 114.0, 142.0, 114.0, 38.0, 28.0, 158.0, 121.0, 126.0, 92.0, 47.0, 16.0, 158.0, 142.0, 102.0, 61.0, 242.0, 137.0, 143.0, 125.0, 172.0, 144.0, 216.0, 157.0, 128.0, 114.0, 13.0, 118.0, 83.0, 143.0, 116.0, 167.0, 91.0, 76.0, 125.0, 15.0, 73.0, 37.0, 213.0, 110.0, 160.0, 143.0, 68.0, 113.0, 88.0, 124.0, 112.0, 63.0, 110.0, 204.0, 78.0, 151.0, 168.0, 114.0, 110.0, 82.0, 154.0, 134.0, 229.0, 154.0, 109.0, 101.0, 123.0, 54.0, 126.0, 39.0, 128.0, 118.0, 65.0, 130.0, 136.0, 114.0, 215.0, 144.0, 128.0, 117.0, 89.0, 16.0, 95.0, 215.0, 150.0, 114.0, 162.0, 110.0, 17.0, 164.0, 144.0, 115.5, 134.0, 155.0, 119.0, 70.0, 230.0, 13.0, 137.0, 72.0, 69.0, 136.0, 28.0, 103.0, 154.0, 158.0, 33.0, 56.0, 194.0, 195.0, 140.0, 84.0, 170.0, 87.0, 178.0, 186.0, 193.0, 113.0, 140.0, 72.0, 37.0, 170.0, 110.0, 75.0, 104.0, 34.0, 152.0, 99.0, 117.0], \"xaxis\": \"x\", \"y\": [0.8156061324462894, 0.42491310922683634, 0.8867827646463432, 0.8014995238430205, 0.30499958310650876, 0.5817355832705369, 0.959171062334887, 0.7854416128369749, 0.9085690698200813, 0.8998600376511439, 0.6341165000693628, 0.412102187638673, 0.7643629411050379, 0.4710001938005606, 0.40182653035141874, 0.40438056362905367, 0.8870480016118494, 0.3650667978415713, 0.9064321709292111, 0.9327245345966092, 0.6458420185168736, 0.8821841129047617, 0.6704018506542557, 0.7655671181822064, 0.8616986618932058, 0.48774537944210006, 0.9637355036179479, 0.6794204065079696, 0.6044835155949141, 0.7867954023600708, 0.9137982268836646, 0.5867502063434873, 0.8048584290077971, 0.9718511071053526, 0.9627192884041744, 0.7978623718349598, 0.6091120966723917, 0.8943338178728011, 0.8853376735027229, 0.9045563504021151, 0.9264844632598176, 0.6342457655367447, 0.9414033426130164, 0.5636516403732365, 0.5172967922101196, 0.4836896337264441, 0.35199620689495453, 0.788779954566273, 0.9696552399248426, 0.772496554239754, 0.8132656157621138, 0.4539090261140653, 0.9333708926412786, 0.679765045723866, 0.48457442622955804, 0.4248820606938153, 0.6737819616086004, 0.8780741425819777, 0.38340602447337646, 0.90634085684919, 0.5574014604752268, 0.6804147683859246, 0.9077110088845216, 0.7718472635729894, 0.4717552048891654, 0.22222808308441652, 0.8616549355667619, 0.705749071892896, 0.4699129352300819, 0.9680524782819758, 0.8891353183282249, 0.9466602521798594, 0.8553382520847058, 0.7430243903066251, 0.6616131862201935, 0.6919609500216202, 0.96565744679506, 0.913108907487878, 0.5395521774612226, 0.9026238558501023, 0.6550941529376255, 0.9757876320152292, 0.8833495792027257, 0.6666029765862381, 0.8504582120840628, 0.9320215595878566, 0.7639947574915884, 0.6085229656221847, 0.9557131606798471, 0.46184432615952054, 0.5642658412077981, 0.8815615400732472, 0.7189203536918151, 0.9301020530176726, 0.7341394174346678, 0.7759189559372703, 0.8448078654733812, 0.9012666081120407, 0.8926028620066223, 0.5287492720273277, 0.6874206920638863, 0.37408584674942635, 0.8348370105186077, 0.8697567261320243, 0.9175759024810304, 0.44644098895981, 0.8874384748400057, 0.7787567487441118, 0.9416122482572158, 0.3265229243180111, 0.9308095750950773, 0.42267134533232753, 0.43068181214270274, 0.8727308285810839, 0.7201611177732586, 0.8430904589044517, 0.8140617541555761, 0.9456747441572588, 0.6672663325862807, 0.8756470416862959, 0.518871521713375, 0.7040615347784164, 0.4957960231649875, 0.6250130361556073, 0.27413726132188326, 0.5193133578087885, 0.37656641690434584, 0.5808048103476511, 0.7917827117482167, 0.36569143480873245, 0.7232542293832885, 0.9785934574433302, 0.5715075300165849, 0.8182555969893297, 0.5448461144048058, 0.9491291995847589, 0.4833587957991669, 0.3189279754564957, 0.9184825510014271, 0.5524830505676419, 0.9600429304649183, 0.7818180966165994, 0.7962710274484252, 0.7569429870375118, 0.46184432615952054, 0.7641514270390748, 0.9486763575522457, 0.8086368705092697, 0.6784536879503494, 0.6877019790624462, 0.6082670858563528, 0.6053794617794684, 0.6319330693089359, 0.4982105707488519, 0.6787928880949093, 0.9231980717613485, 0.8831230955067948, 0.6845485656817341, 0.8799204262605215, 0.9164563829924386, 0.7819268199067826, 0.23469888428232324, 0.9492377841603665, 0.8826092272015389, 0.6360541596480074, 0.5184081252698399, 0.6400126753125241, 0.542646305979658, 0.4479501208302092, 0.7783171875827786, 0.7867712153112567, 0.5236605417423803, 0.6959846197179591, 0.7925023358445066, 0.6683189355892497, 0.18737025221649042, 0.42506327048176057, 0.7272596040941706, 0.7314191754306454, 0.4827891324637794, 0.6649341228620356, 0.9038332731164471, 0.9588917860646077, 0.8945194928389463, 0.49833043835950624, 0.7997712594855277, 0.8577935987172323, 0.7622736922026153, 0.8039391974899521, 0.7396811504731934, 0.8115340233127679, 0.801728888664367, 0.738451208106372, 0.5859674792922007, 0.1865203674848816, 0.8773430435604171, 0.36888329310067386, 0.8651817982269884, 0.9067615420962557, 0.8594983988587351, 0.7437750884018276, 0.9145224932934428, 0.9135679891815164, 0.8001832456898428, 0.6860977766129374, 0.9377826008632761, 0.9300369611912853, 0.6997062971069969, 0.5693182102579236, 0.3404656140239559, 0.7160591142088384, 0.7953146078011, 0.8869803873277935, 0.7639982823097876, 0.8681285227071118, 0.576868797021353, 0.93035102563313, 0.8375600281828176, 0.8279918435672958, 0.9266689436294401, 0.7559862346636359, 0.5099889666930224, 0.6914445842613687, 0.9651950326885705, 0.87851968214492, 0.8499702807396289, 0.4685752957996948, 0.7241546992314323, 0.7848147251007912, 0.7341394174346678, 0.7008877443692281, 0.340588975625529, 0.5013021766499856, 0.8321174529331695, 0.8818378666553491, 0.9176909075187759, 0.8634678749265305, 0.7436082905772717, 0.9343776659412377, 0.7668809937296346, 0.6243383802582345, 0.5332560471205093, 0.6907315465649003, 0.16626803588025432, 0.1668542888532837, 0.7408943843163458, 0.5221312328975666, 0.7457559475413279, 0.46389636934606376, 0.9292627865919654, 0.5268311186840582, 0.4244151934213653, 0.643310536612302, 0.8577438313980266, 0.7816208399762355, 0.8553382520847058, 0.7010035672814305, 0.5242572272016158, 0.9187320011579697, 0.8703498177621264, 0.6713045345576062, 0.9137982268836646, 0.8614414457916845, 0.9445662266054761, 0.8808216590199034, 0.7386378115490353, 0.8873009977622293, 0.9157094897337859, 0.6606038558129893, 0.9296803968514485, 0.8864322240790464, 0.5146720135715994, 0.8720710714485208, 0.9415427660945741, 0.9138701141498735, 0.6527559092576063, 0.8751970040938668, 0.9249766460056568, 0.801728888664367, 0.6575848465963361, 0.6934824043184128, 0.8619113960143526, 0.9419078024651042, 0.9591721389341828, 0.8397407150753159, 0.9084383840076588, 0.4963969309336195, 0.7359588175524252, 0.3531961907069324, 0.9279819479140234, 0.7752976919572294, 0.8665226278427577, 0.9515211055933231, 0.7314191754306454, 0.890886918514299, 0.3235491032739525, 0.3719939405423586, 0.6323804178173072, 0.8398006965792015, 0.8239469134189235, 0.8592101816891015, 0.7615002907198236, 0.8688259750909261, 0.8718104001390852, 0.5838074755684882, 0.8756470416862959, 0.901850575196968, 0.9451930143658351, 0.6253812669856891, 0.5890764576710766, 0.4921052500998711, 0.4862070578416567, 0.9170647663398394, 0.7035583451969506, 0.8476385889092957, 0.5603058978573646, 0.5810606890504925, 0.9088604673919816, 0.8903252600075929, 0.944267921154058, 0.9435968591480925, 0.938237366988842, 0.9357286047893738, 0.7961386682142712, 0.7840233885688647, 0.2513590507613302, 0.7389284097502917, 0.9053472250810051, 0.44438282424164377, 0.862281110352348, 0.8021059248496223, 0.9152740930046814, 0.643737358401971, 0.8540304955499701, 0.8613418170006786, 0.6911084183178322, 0.8848367871057808, 0.8387883096682573, 0.5942651630821018, 0.65691393717736, 0.6369979527510315, 0.8280658524313272, 0.9640736168216585, 0.6546311715671466, 0.5599819536107853, 0.48348053317652906, 0.7668016587569692, 0.03620763244300767, 0.7364400865449663, 0.37408584674942635, 0.8767503774172, 0.8743962287172513, 0.8751970040938668, 0.8833495792027257, 0.7091886355621774, 0.87006937054451, 0.7904001815220257, 0.8761418339280951, 0.8306834851111597, 0.7531715889012326, 0.38181207472529843, 0.6490458991820136, 0.9138057013338913, 0.9046222904886461, 0.17956061692355052, 0.7506163079023257, 0.8963285795381793, 0.8848361664653354, 0.9283037217377402, 0.45996158699034445, 0.7290858434196763, 0.8319094967702583, 0.6578018675312727, 0.18727567457681707, 0.8673410249845035, 0.9453298670648187, 0.9446538464906173, 0.19605573045952288, 0.6723831041639817, 0.3438281302059518, 0.37858973820495484, 0.6953170483296187, 0.21463507152544156, 0.26963792069965237, 0.3280912492037974, 0.8399932187801539, 0.420387898633768, 0.36522500752858966, 0.5810560693343539, 0.9306346767722963, 0.7167716539092029, 0.656736106921484, 0.5549139996760648, 0.6909161521388689, 0.591904263202073, 0.884703171197362, 0.866402281883595, 0.7582770814524421, 0.8990773411030794, 0.1818065866116437, 0.6222165686186035, 0.17261914235374884, 0.8156064679757086, 0.4851213943917703, 0.8871292211128762, 0.8398494053952754, 0.703270618172154, 0.6305543892506115, 0.7494149477175548, 0.1532408287022325, 0.6159732902773407, 0.738220551127759, 0.8354520044441791, 0.8536870432671441, 0.5751476712690671, 0.9077719201719568, 0.7878515691455199, 0.6672663325862807, 0.45293736875445273, 0.17058553029544155, 0.747933377844996, 0.8400163125056676, 0.4516778718827729, 0.6082670858563528, 0.8401843469141149, 0.7636885291754726, 0.789170795337903, 0.8128612802083497, 0.7522530659814418, 0.8086757686066508, 0.8356255123032285, 0.9241779635105248, 0.9674588597049086, 0.9368885694202199, 0.4990764491242286, 0.876561204324957, 0.554264192243629, 0.5967716244634195, 0.9060244606340249, 0.8401608718856799, 0.7329750583133859, 0.8021769878309102, 0.9316817655017511, 0.45488322534173153, 0.798578398438993, 0.7425236774748816, 0.5742682328784404, 0.4937681935814938, 0.8972164286692267, 0.8914273370768748, 0.9377613518261881, 0.8862258850530264, 0.8591757581361523, 0.7410678096850266, 0.6822336012657398, 0.9201658505843877, 0.6982578893131915, 0.5746709232170782, 0.7626532952948841, 0.7137703530889916, 0.7520971196461234, 0.4473853625959922, 0.7957460056304991, 0.4833174871501707, 0.8758467705785958, 0.4689303842787964, 0.6133612564737879, 0.8568681391705205, 0.6835133967314007, 0.9732070839986944, 0.21435716257549006, 0.5761668962420043, 0.4055433603128916, 0.3743394998756179, 0.9118635774953143, 0.964551884718591, 0.9306459334511011, 0.8424802355113449, 0.7739144871152517, 0.6872688771534424, 0.8590561833388345, 0.6714384475466295, 0.6408669500407106, 0.5203550269219845, 0.2856853969697174, 0.857760555506807, 0.9307094503226838, 0.6787928880949093, 0.8308635255795866, 0.29271374211533296, 0.6769315553524353, 0.23831547366416572, 0.5895099457120908, 0.8994675076574448, 0.8893400405584444, 0.8456825404777587, 0.5399612081435882, 0.6188649121485582, 0.9281492942813848, 0.7611740601422801, 0.46550237374781617, 0.8896861436466836, 0.9038901015569306, 0.5044440900554997, 0.9215480939667524, 0.6930273792518707, 0.8723244804196287, 0.5624338775604165, 0.9226297661236537, 0.8469231754225917, 0.9430557295321259, 0.9097116306258912, 0.5988707702267543, 0.3813853072548755, 0.8843832309478876, 0.9006952500629406, 0.918975987201669, 0.18997930334445084, 0.8923106748541326, 0.8461388699436441, 0.5973439234355874, 0.9544642924744549, 0.91770416680597, 0.9177239854204658, 0.17584552180125673, 0.9240099144459667, 0.48524948024905407, 0.8889685222180134, 0.5785503824403398, 0.7511953459672914, 0.6887596776945688, 0.6717539058356753, 0.7168761391602206, 0.7134478068952186, 0.834626350903405, 0.5715867980362679, 0.6588392688727011, 0.9488572786900573, 0.8920529250761863, 0.8891353183282249, 0.707981940789761, 0.926348680038428, 0.631489487929038, 0.7443856388661001, 0.9260754381930228, 0.9544642924744549, 0.8497401318990601, 0.5604010177433062, 0.8036334301115304, 0.7898153537185114, 0.8491431337122072, 0.6570881560807702, 0.8389599143569951, 0.7944137576415592, 0.8132668978866627, 0.44714680104169846, 0.7978021044641371, 0.41921696608658454, 0.38876183891604754, 0.9248463736054193, 0.4277915265084825, 0.6345107008491314, 0.8008942533173764, 0.5087430598332189, 0.9414938992689892, 0.6922115882765215, 0.8296175750175913, 0.8593339228153332, 0.8975141534758351, 0.5977126281557783, 0.9279478536756302, 0.6485770817571253, 0.8905823996589662, 0.9332072841984264, 0.9432461110830079, 0.9410120781436498, 0.6339696776630096, 0.7120962557761497, 0.5841709037351369, 0.5928970840420333, 0.9006589732900512, 0.936371533648048, 0.6907852379101131, 0.7675780198071424, 0.9444587893431046, 0.4702336163336472, 0.8925536722101626, 0.8158978708906081, 0.822780392485108, 0.8037335327290217, 0.8382351003285965, 0.8941557358589171, 0.4796498334522667, 0.926348680038428, 0.6842118015950474, 0.6463580983468415, 0.8292048071278182, 0.5834426687867836, 0.8419845362148763, 0.2431563391580561, 0.7763142135369961, 0.9390550746437164, 0.7774903237071782, 0.8141232663130791, 0.9444089886680379, 0.430401459478284, 0.9192677156927759, 0.8427595869840984, 0.87120858451521, 0.5693182102579236, 0.820012080301976, 0.58719119911586, 0.42769376643096113, 0.3542595869275313, 0.89579938191327, 0.8743523014696554, 0.7820497043505815, 0.5279069501129625, 0.8869579700149332, 0.45488774279476296, 0.8514781135508903, 0.8278297091497892, 0.663749097381813, 0.5132851713944618, 0.4906566565015208, 0.6415219885510332, 0.6991293681294938, 0.8150539074042624, 0.5800669536763935, 0.9583771200922359, 0.7366090055976814, 0.5747817696023392, 0.5315376696882942, 0.8074446941396305, 0.9038901015569306, 0.9087015650331977, 0.6697291810323083, 0.5800669536763935, 0.8807270543114014, 0.5135845984304893, 0.9352791850238339, 0.36120709973337456, 0.6206709330576408, 0.906286252315459, 0.7937202818717513], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [192.0, 65.0, 151.0, 44.0, 77.0, 45.0, 149.0, 23.0, 148.0, 174.0, 110.0, 164.0, 165.0, 163.0, 79.0, 183.0, 144.0, 19.0, 139.0, 12.0, 187.0, 206.0, 12.0, 120.0, 63.0, 54.0, 120.0, 91.0, 214.0, 183.0, 20.0, 106.0, 159.0, 196.0, 192.0, 112.0, 147.0, 130.0, 10.0, 180.0, 94.0, 22.0, 100.0, 84.0, 84.0, 124.0, 105.0, 149.0, 87.0, 53.0, 33.0, 141.0, 168.0, 14.0, 173.0, 220.0, 169.0, 177.0, 69.0, 55.0, 245.0, 179.0, 16.0, 164.0, 113.0, 131.0, 172.0, 133.0, 36.0, 91.0, 183.0, 8.0, 194.0, 117.0, 115.0, 144.0, 233.0, 20.0, 92.0, 87.0, 106.0, 76.0, 243.0, 23.0, 138.0, 38.0, 201.0, 26.0, 72.0, 63.0, 8.0, 152.0, 111.0, 194.0, 195.0, 202.0, 159.0, 133.0, 179.0, 117.0, 195.0, 71.0, 111.0, 197.0, 120.0, 69.0, 115.0, 72.0, 115.0, 150.0, 47.0, 63.0, 15.0, 104.0, 51.0, 92.0, 178.0, 77.0, 84.0, 86.0, 166.0, 49.0, 150.0, 111.0, 204.0, 210.0, 198.0, 42.0, 86.0, 184.0, 33.0, 86.0, 156.0, 189.0, 139.0, 164.0, 60.0, 176.0, 140.0, 141.0, 116.0, 227.0, 75.0, 116.0, 177.0, 197.0, 161.0, 142.0, 48.0, 84.0, 156.0, 26.0, 143.0, 22.0, 104.0, 31.0, 98.0, 165.0, 73.0, 131.0, 101.0, 28.0, 49.0, 113.0, 12.0, 84.0, 179.0, 176.0, 187.0, 180.0, 171.0, 99.0, 121.0, 171.0, 95.0, 16.0, 35.0, 177.0, 55.0, 63.0, 189.0, 12.0, 114.0, 171.0, 179.0, 197.0, 187.0, 34.0, 157.0, 227.0, 115.0, 75.0, 206.0, 50.0, 200.0, 12.0, 151.0, 218.0, 210.0, 130.0, 198.0, 82.0, 82.0, 31.0, 132.0, 157.0, 131.0, 61.0, 13.0, 21.0, 87.0, 148.0, 160.0, 225.0, 173.0, 158.0, 192.0, 131.0, 220.0, 110.0, 24.0, 103.0, 204.0, 111.0, 115.0, 168.0, 93.0, 234.0, 87.0, 13.0, 117.0, 160.0, 103.0, 111.0, 106.0, 143.0, 207.0, 57.0, 210.0, 230.0, 38.0, 162.0, 136.0, 174.0, 103.0, 47.0, 142.0, 154.0, 164.0, 30.0, 155.0, 160.0, 159.0, 19.0, 176.0, 171.0, 90.0, 62.0, 133.0, 18.0, 169.0, 142.0, 173.0, 122.0, 178.0, 149.0, 128.0, 155.0, 58.0, 79.0, 212.0, 193.0, 167.0, 205.0, 186.0, 248.0, 124.0, 188.0, 82.0, 64.0, 14.0, 31.0, 188.0, 61.0, 117.0, 174.0, 123.0, 170.0, 73.0, 198.0, 97.0, 119.0, 307.5, 51.0, 68.0, 60.0, 106.0, 252.0, 177.0, 115.0, 78.0, 102.0, 96.0, 189.0, 72.0, 71.0, 184.0, 23.0, 18.0, 91.0, 150.0, 170.0, 31.0, 196.0, 133.0, 184.0, 282.0, 125.0, 223.0, 37.0, 20.0, 210.0, 60.0, 11.0, 168.0, 136.0, 71.0, 176.0, 65.0, 195.0, 167.0, 78.0, 164.0, 198.0, 131.0, 33.0, 240.0, 27.0, 95.0, 234.0, 87.0, 185.0, 120.0, 48.0, 188.0, 38.0, 195.0, 188.0, 62.0, 184.0, 145.0, 35.0, 197.0, 99.0, 104.0], \"xaxis\": \"x\", \"y\": [0.2802292104526322, 0.9455194119275858, 0.4978743212349556, 0.5289145624519528, 0.28439238707197784, 0.2033309570226689, 0.27345747478543325, 0.8322873304845451, 0.389055896812549, 0.3675472469853882, 0.5781933746273124, 0.7401955299744071, 0.44969671697605845, 0.4367887814338696, 0.31593955341667695, 0.3775624358859999, 0.19282181046294666, 0.048451763306065584, 0.6005928650583868, 0.032225376113695775, 0.427412413738938, 0.23973251442015217, 0.13890126550157303, 0.8613925272127, 0.329663916828638, 0.19359965390713213, 0.6827271716759634, 0.1960905505555538, 0.08135735686643118, 0.39737240301928484, 0.13902987396822816, 0.6514166433739288, 0.6994753721471061, 0.7140886736258081, 0.5021795028970708, 0.48743245558712556, 0.5731139673640956, 0.8820820642542792, 0.559972149724866, 0.5061565591493914, 0.5066810377847554, 0.833805652807593, 0.6979972163580744, 0.3177574231538272, 0.13068190592986567, 0.758876109553896, 0.5681062961269688, 0.715544821914063, 0.762062625203523, 0.4464438677531786, 0.20995974230910305, 0.5262622410710028, 0.39442669669188163, 0.2537324982988368, 0.6775437642744659, 0.23876321589577687, 0.6369158982934647, 0.38960060362966165, 0.6034323722874255, 0.7769991715799629, 0.15199748354041337, 0.5641412449951732, 0.7590466800561823, 0.5969347905931296, 0.1048362779837843, 0.7217824369593382, 0.2662339163773806, 0.16472378978351135, 0.37760124376932414, 0.7071736299639594, 0.3436862995931572, 0.8384434752264291, 0.3635333644877426, 0.7813188949129265, 0.7279369976219869, 0.5641098847382463, 0.3863964747623771, 0.9209913370067284, 0.1477144681640183, 0.8809374658555192, 0.6533168894759348, 0.8873477284758582, 0.3697306267878623, 0.28319023347825867, 0.5203701741750857, 0.5523747693308857, 0.6387521731780509, 0.3881380695009739, 0.8487896327149285, 0.4636606453307818, 0.8384434752264291, 0.558266603669778, 0.21657231888677728, 0.3635333644877426, 0.5512671313974766, 0.5051039398599867, 0.5827915753039158, 0.49441682850108926, 0.47309171914705017, 0.6262595591688196, 0.5508242483721094, 0.47332791509789995, 0.7117569366896692, 0.3933786516273859, 0.16465066549244003, 0.7490394132223248, 0.769261050002088, 0.7431932405995126, 0.3141000916210982, 0.723735045552473, 0.6484132891031948, 0.688519894019609, 0.40496704226994307, 0.5803736122960511, 0.6327801522745691, 0.45115706990411364, 0.37268733756108086, 0.9009693101135351, 0.06496389958099598, 0.44431713201158524, 0.39960831974332744, 0.8662156944598043, 0.31018081106061823, 0.5339551117365043, 0.33311273919547707, 0.400132762133902, 0.8528754522806217, 0.14419347879543085, 0.11672350429510901, 0.44556702529145975, 0.6160120899414699, 0.13766892845409207, 0.5517204028384314, 0.5232178919035022, 0.35483403305733974, 0.4900213704561591, 0.8854578072659228, 0.43084122675663034, 0.7601186327653665, 0.14072030431570776, 0.6186690618327106, 0.5245054232921349, 0.7326259458716644, 0.5690781983520095, 0.4018508815425063, 0.24877469563805235, 0.7952501197393639, 0.8766221356386195, 0.303451532996695, 0.5357745481647883, 0.7096524147827454, 0.20877177283968149, 0.8635610141758273, 0.46736762313881036, 0.6061151992073851, 0.113015272873705, 0.40446014603085867, 0.6332606063976143, 0.648705381890928, 0.42186952587750404, 0.8047913565308571, 0.3017058309841093, 0.38406990132164637, 0.33494193042999065, 0.19929939967121216, 0.8624919783238055, 0.528785836409086, 0.43084122675663034, 0.47042159929499583, 0.5061565591493914, 0.5759491569657543, 0.8468794444363914, 0.20342296359496542, 0.5170831534483544, 0.3666753044655067, 0.6131723001375537, 0.4410646109528086, 0.6903416342484309, 0.3866428492574258, 0.4636606453307818, 0.4525459302795702, 0.03199256040434073, 0.7029629492254846, 0.2433141614541866, 0.548755973819273, 0.3775060302547258, 0.06593060991448157, 0.8745624549148976, 0.22931948662359403, 0.27267688907931714, 0.589328430619086, 0.8007160756317941, 0.5525637789187225, 0.5008522318356121, 0.4556212410144909, 0.17391722008742402, 0.43574637053357784, 0.3237440077649342, 0.6071692164257629, 0.6925152430641841, 0.592675381607996, 0.43854150134957587, 0.43854150134957587, 0.42437112972565305, 0.8061118855433299, 0.35195592295594336, 0.7605370065149419, 0.38898578429124253, 0.67510953655807, 0.872979709380305, 0.710510994258769, 0.720290290780972, 0.4820787970895852, 0.42019280799979697, 0.4304380754474639, 0.25285023254778977, 0.3238056884730761, 0.39471961640683584, 0.09510031985475974, 0.367046376808582, 0.21500793651835448, 0.8705359023101334, 0.6100742529031461, 0.6226449432624995, 0.7279369976219869, 0.3643494054700089, 0.09992017521484964, 0.41475515148757036, 0.6462260464983366, 0.14102909592513518, 0.48949585696458414, 0.5239520436918008, 0.6084413884537807, 0.5655473856702703, 0.9517420512476797, 0.7489379515982664, 0.4647937384849751, 0.7915321263825208, 0.44112279258530757, 0.5734340256727429, 0.6604471727860799, 0.4845203185458914, 0.6968730453869196, 0.5315374962198609, 0.8685951485887234, 0.6242442748350044, 0.2912097196987059, 0.7725938221565348, 0.2067629769731588, 0.30221725334927335, 0.13129342562285412, 0.6467789443522378, 0.6994753721471061, 0.11825382206919556, 0.41022417118631593, 0.4882665226122541, 0.7732287086973071, 0.25374762405010176, 0.49441682850108926, 0.3723877205427743, 0.652330313245635, 0.43667799883041203, 0.5964718913578133, 0.55172276504346, 0.24113559934961917, 0.8243980268882987, 0.7263843594269437, 0.43535214809021755, 0.8721122798612579, 0.18723914490145582, 0.6486906676970999, 0.11576704656818047, 0.4328241622975616, 0.491481212420291, 0.5264345378086769, 0.33856526784971647, 0.2967410926251248, 0.581398831228375, 0.5973776665460488, 0.6195406102170065, 0.37782717658841725, 0.323061133240968, 0.17420808473594895, 0.19634770547538957, 0.46492234760650425, 0.49613167963272686, 0.5812209036149294, 0.6057291775435286, 0.63414717387345, 0.5702687187355167, 0.8604975146328253, 0.6309022132706124, 0.48732991249542923, 0.6887148870948692, 0.41581945293096145, 0.5706760596351739, 0.4831274653996314, 0.06684727567316755, 0.49090643211649887, 0.15191610726090596, 0.2711405311223577, 0.7653618545702112, 0.09266565137124261, 0.4554350627407873, 0.19698919164573708, 0.6930185080649685, 0.5227537922811563, 0.50434568709929, 0.7082092780767422, 0.46058046365566996, 0.6735723234187477, 0.4285936050615775, 0.323061133240968, 0.5168500865319015, 0.6161307914674419, 0.23456444218973552, 0.3192004782541023, 0.21968945907811915, 0.5028183230931117, 0.43371621376298963, 0.6744209213341115, 0.5940260419772637, 0.13783310426722128, 0.5136444387530009, 0.5508647999875032, 0.4955911012838212, 0.9814394195009358, 0.8260225289794664, 0.17965956338109995, 0.46844896472597397, 0.6048119589659149, 0.3289160319090978, 0.2454606394453749, 0.7497022835596558, 0.683485355417811, 0.20995974230910305, 0.23504578258460665, 0.37175956099497537, 0.4875530438829156, 0.24982584224249993, 0.6282829625348888, 0.4520795162158371, 0.8200372413039435, 0.12832513643528837, 0.5299630655130737, 0.29552777318700446, 0.24021937552346023, 0.5429028773737552, 0.6311869746243346, 0.4145977043912777, 0.39329840463575844, 0.39070335653410526, 0.4286990948130573, 0.846836560604146, 0.6880850122626078], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (curr)\", \"type\": \"scatter\", \"x\": [101.0, 194.0, 126.0, 68.0, 94.0, 99.0, 97.0, 124.0, 95.0, 163.0, 32.0, 191.0, 111.0, 119.0, 127.0, 118.0, 38.0, 61.0, 28.0, 162.0, 212.5, 193.0, 74.0, 147.0, 179.0, 99.0, 127.0, 134.0, 93.0, 148.0, 74.0, 136.0, 178.0, 99.0, 121.0, 129.0, 76.0, 150.0, 81.0, 31.0, 124.0, 85.0, 156.0, 238.0, 27.0, 45.0, 135.0, 86.0, 212.0, 195.0, 18.0, 122.0, 137.0, 59.0, 175.0, 145.0, 181.0, 63.0, 165.0, 64.0, 64.0, 150.0, 105.0, 85.0, 100.0, 127.0, 144.0, 155.0, 89.0, 153.0, 189.0, 100.0, 117.0, 114.0, 113.0, 145.0, 174.0, 161.0, 38.0, 25.0, 87.0, 144.0, 60.0, 162.0, 143.0, 26.0, 55.0, 96.0, 172.0, 132.0, 143.0, 108.0, 115.0, 107.0, 117.0, 97.0, 28.0, 294.0, 10.0, 24.0, 126.0, 101.0, 22.0, 121.0, 189.0, 131.0, 105.0, 109.0, 117.0, 107.0, 75.0, 176.0, 112.0, 76.0, 138.0, 35.0, 153.0, 152.0, 136.0, 59.0, 158.0, 121.0, 44.0, 81.0, 60.0, 16.0, 53.0, 94.0, 26.0, 84.0, 82.0, 38.0, 98.0, 253.0, 74.0, 213.0, 12.0, 60.0, 169.0, 118.0, 166.0, 58.0, 35.0, 153.0, 204.0, 99.0, 190.0, 47.0, 134.0, 116.0, 98.0, 93.0, 94.0, 103.0, 116.0, 164.0, 47.0, 28.0, 92.0, 192.0, 65.0, 28.0, 86.0, 199.0, 20.0, 80.0, 148.0, 29.0, 48.0, 123.0, 100.0, 107.0, 41.0, 9.0, 88.0, 213.0, 129.0, 216.0, 111.0, 43.0, 131.0, 124.0, 117.0, 80.0, 141.0, 35.0, 28.0, 72.0, 170.0, 36.0, 124.0, 149.0, 92.0, 118.0, 133.0, 109.0, 76.0, 89.0, 190.0, 133.0, 98.0, 129.0, 245.0, 84.0, 191.0, 130.0, 99.0, 76.0, 134.0, 183.0, 116.0, 125.0, 34.0, 94.0, 35.0, 124.0, 90.0, 143.0, 174.0, 105.0, 125.0, 244.0, 15.0, 209.0, 189.0, 212.0, 118.0, 161.0, 59.0, 172.0, 65.0, 97.0, 84.0, 104.0, 33.0, 170.0, 99.0, 90.0, 140.0, 150.0, 114.0, 118.0, 132.0, 104.0, 54.0, 19.0, 155.0, 193.0, 111.0, 31.0, 150.0, 143.0, 145.0, 107.0, 105.0, 95.0, 126.0, 73.0, 111.0, 153.0, 15.0, 168.0, 111.0, 181.0, 172.0, 139.0, 110.0, 136.0, 189.0, 135.0, 104.0, 117.0, 51.0, 49.0, 113.0, 39.0, 148.0, 109.0, 102.0, 51.0, 26.0, 122.0, 104.0, 120.0, 114.0, 19.0, 132.0, 73.0, 145.0, 135.0, 47.0, 12.0, 132.0, 87.0, 125.0, 139.0, 94.0, 143.0, 139.0, 97.0, 119.0, 109.0, 163.0, 134.0, 178.0, 44.0, 95.0, 143.0, 180.0, 90.0, 129.0, 72.0, 32.0, 123.0, 81.0, 152.0, 214.0, 126.0, 117.0, 173.0, 204.0, 134.0, 156.0, 134.0, 65.0, 151.0, 114.0, 44.0, 164.0, 125.0, 28.0, 156.0, 28.0, 201.0, 106.0, 116.0, 182.0, 225.0, 142.0, 39.0, 142.0, 98.0, 188.0, 55.0, 27.0, 113.0, 87.0, 140.0, 33.0, 85.0, 158.0, 95.0, 169.0, 103.0, 191.0, 151.0, 28.0, 113.0, 163.0, 26.0, 95.0, 135.0, 55.0, 171.0, 21.0, 206.0, 113.0, 168.0, 173.0, 161.0, 97.0, 227.0, 107.0, 81.0, 17.0, 17.0, 96.0, 118.0, 38.0, 111.0, 118.0, 125.0, 143.0, 189.0, 98.0, 166.0, 135.0, 68.0, 12.0, 131.0, 172.0, 174.0, 128.0, 194.0, 108.0, 35.0, 155.0, 26.0, 87.0, 93.0, 187.0, 150.0, 158.0, 114.0, 120.0, 169.0, 130.0, 109.0, 149.0, 80.0, 23.0, 125.0, 81.0, 55.0, 185.0, 53.0, 245.0, 17.0, 122.0, 130.0, 75.0, 90.0, 34.0, 48.0, 15.0, 118.0, 151.0, 150.0, 85.0, 140.0, 85.0, 155.0, 84.0, 109.0, 17.0, 38.0, 172.0, 178.0, 93.0, 171.0, 229.0, 27.0, 146.0, 104.0, 89.0, 15.0, 60.0, 112.0, 47.0, 48.0, 136.0, 89.0, 141.0, 9.0, 154.0, 159.0, 113.0, 88.0, 158.0, 29.0, 179.0, 92.0, 181.0, 173.0, 160.0, 107.0, 151.0, 79.0, 132.0, 37.0, 170.0, 163.0, 50.0, 135.0, 98.0, 77.0, 172.0, 102.0, 135.0, 123.0, 143.0, 134.0, 85.0, 21.0, 182.0, 132.0, 28.0, 101.0, 25.0, 44.0, 100.0, 129.5, 43.0, 47.0, 40.0, 14.0, 125.0, 46.0, 11.0, 49.0, 118.0, 139.0, 229.0, 114.0, 53.0, 113.0, 200.0, 133.0, 88.0, 128.0, 70.0, 80.0, 113.0, 73.0, 152.0, 104.0, 45.0, 19.0, 206.0, 41.0, 173.0, 14.0, 97.0, 180.0, 147.0, 149.0, 135.0, 116.0, 150.0, 164.5, 21.0, 128.0, 178.0, 101.0, 16.0, 180.0, 14.0, 132.0, 10.0, 189.0, 156.0, 166.0, 10.0, 153.0, 49.0, 99.0, 68.0, 16.0, 80.0, 229.0, 225.0, 104.0, 122.0, 10.0, 57.0, 150.0, 69.0, 76.0, 102.0, 129.0, 95.0, 116.0, 168.0, 19.0, 173.0, 189.0, 142.0, 177.0, 71.0, 140.0, 110.0, 184.0, 152.0, 164.0, 105.0, 117.0, 124.0, 91.0, 181.0, 85.0, 181.0, 168.0, 128.0, 89.0, 167.0, 155.0, 20.0, 212.0, 78.0, 25.0, 35.0, 130.0, 129.0, 122.0, 7.0, 69.0, 120.0, 140.0, 83.0, 136.0, 157.0, 169.0, 221.0, 190.0, 113.0, 91.0, 13.0, 104.0, 136.0, 167.0, 99.0, 103.0, 159.0, 108.0, 91.0, 136.0, 103.0, 213.0, 189.0, 169.0, 107.0, 91.0, 112.0, 82.0, 114.0, 72.0, 84.0, 159.0, 17.0, 128.0, 16.0, 43.0, 87.0, 136.0, 140.0, 144.0, 74.0, 86.0, 145.0, 153.0, 127.0, 228.0, 112.0, 157.0, 140.0, 192.0, 114.0, 111.0], \"xaxis\": \"x2\", \"y\": [0.33396714643252134, 0.5044440900554997, 0.8874896900044845, 0.4686759077780351, 0.23831547366416572, 0.571181601185031, 0.7785327680196316, 0.7290551099174598, 0.9581131370131553, 0.6801000322064107, 0.413367674560271, 0.6667140739211237, 0.9108229754863395, 0.9275086157065797, 0.9186958597750785, 0.7191871442695774, 0.8184457509658746, 0.8597940676688322, 0.7947045908306632, 0.8244149680645384, 0.42771531534877594, 0.5315376696882942, 0.7136291946100958, 0.5510697799054304, 0.6393262665313312, 0.9016582766249417, 0.8560880110261746, 0.8947361144883382, 0.9102326114023062, 0.840723585394272, 0.9264645566705582, 0.5105903360131552, 0.752648770317166, 0.5855954083225455, 0.8989214048388485, 0.5190750352404293, 0.9560713253502463, 0.7273157243430202, 0.9279672131348602, 0.640103147954212, 0.9158977434209615, 0.9035955072010529, 0.7140955379655831, 0.233508355491505, 0.7280578325574358, 0.8810827811902006, 0.3966129217085586, 0.15541760955422754, 0.5851621750323275, 0.9046111951917862, 0.4177213302712193, 0.7993763114768937, 0.6978409661933959, 0.6473373667551029, 0.770784382977056, 0.6500641275496193, 0.548949563093737, 0.9803199442553986, 0.6150775052067382, 0.391333092160729, 0.6966682278280982, 0.9426748402861506, 0.9170092977635526, 0.844625652038695, 0.5621782696252592, 0.8935808323282117, 0.6792214086077275, 0.6719996755401956, 0.5252591274442797, 0.7277045758687855, 0.4685752957996948, 0.8616549355667619, 0.347491516391863, 0.8224130863808733, 0.5340790568488665, 0.6711667658766297, 0.5277539611022016, 0.7226430813715845, 0.8140972745487615, 0.3280236940194876, 0.9543080196225542, 0.7752655593026647, 0.9223925066666061, 0.8588031784191832, 0.6345107008491314, 0.9393010047953068, 0.7897067132703484, 0.8608062836413887, 0.8367885032124018, 0.38555642305179116, 0.8611944449682004, 0.9172341012895443, 0.9206892306522243, 0.9500505925695213, 0.537798347971205, 0.9173482789702866, 0.44454351342386716, 0.8909704850569525, 0.7351932580165473, 0.6818328744935735, 0.7981559962965634, 0.7626532952948841, 0.807353254900461, 0.964411205143099, 0.4685752957996948, 0.6986526320119215, 0.1956969407137045, 0.9233481403380283, 0.8218375601976645, 0.8536269727611236, 0.5637680470866036, 0.42267134533232753, 0.93003590801509, 0.9364808605729722, 0.8816060831574614, 0.9663102962713933, 0.8345570787709832, 0.4997893986747249, 0.7921603237806832, 0.5586815647381762, 0.8622246464681924, 0.9828719612298703, 0.909295720392338, 0.9476267884443668, 0.5395521774612226, 0.901360886913609, 0.39410444510430487, 0.9262213132200262, 0.6627387433216217, 0.9629433821448677, 0.9614311452267452, 0.9802968012486629, 0.933760787013923, 0.34432718187202205, 0.63596173557573, 0.624364378916488, 0.7417789548241253, 0.7300918276682445, 0.6968315453320488, 0.7840233885688647, 0.8958841271622066, 0.5417426694559925, 0.7102579146160282, 0.6004345411549624, 0.515920701757342, 0.7587882454650442, 0.5029588531082266, 0.6887596776945688, 0.8642849605932809, 0.6469572639767995, 0.8103639651534781, 0.939764354405301, 0.694136577696587, 0.6593725303534554, 0.9646797005081557, 0.7979900311745153, 0.792123904710467, 0.8869579700149332, 0.7351250317969437, 0.5332560471205093, 0.9406873315653421, 0.39362685027924615, 0.9466602521798594, 0.8394325033041952, 0.6633442657978572, 0.8126408700417265, 0.7332457619716184, 0.08024070404520958, 0.8667774471450977, 0.6466814331404849, 0.912366876100516, 0.656670904734599, 0.8701678467707724, 0.8875925797813499, 0.9658725076002231, 0.7668332861852056, 0.8604440887473094, 0.934384507524058, 0.9605946056867319, 0.951253157591183, 0.5749289095213865, 0.6279243005170476, 0.7937202818717513, 0.7665301650725991, 0.700127941221274, 0.8531107444728586, 0.7947045908306632, 0.8870566665876504, 0.5476228787844645, 0.8410401833568673, 0.8736671065238262, 0.6519898659949606, 0.936943112068646, 0.9077719201719568, 0.8071889556778997, 0.8815615400732472, 0.8935313268029127, 0.8782891297971865, 0.5029588531082266, 0.5797201450332624, 0.9416775458320723, 0.5958140198486584, 0.2485157288688957, 0.932021424688801, 0.8531502837407814, 0.6344194678828672, 0.632587077283238, 0.9121448358615357, 0.5776545535910985, 0.9052765174806566, 0.8580390107418799, 0.8998644401112552, 0.6784536879503494, 0.9458342431661766, 0.21387363850783603, 0.9530348339880965, 0.7307391114165022, 0.7187682731289255, 0.6905635603269331, 0.9569274903702625, 0.9287384091375525, 0.3856984054091925, 0.504413920551941, 0.5389739198483336, 0.5921068831639978, 0.10702848140489757, 0.8772993497727819, 0.6361944011057532, 0.8952999713010865, 0.7069578609115064, 0.10632960186243966, 0.6465592619811017, 0.9116333268133815, 0.9210441535829985, 0.9483358221641291, 0.5800224234700003, 0.896951343689222, 0.8958659323404018, 0.8896861436466836, 0.7763142135369961, 0.778627444633172, 0.9274605647284293, 0.9167924025380936, 0.6422094408272838, 0.6363725079258666, 0.8694129796739031, 0.5693182102579236, 0.5315376696882942, 0.6814536952243052, 0.30089534057709466, 0.6689448970920832, 0.6419522618821227, 0.6500641275496193, 0.8221968069187356, 0.9285763346020383, 0.8495153837633861, 0.7135666997345446, 0.8850789772017983, 0.9128367188568884, 0.8709442503982084, 0.44714680104169846, 0.7147831401969469, 0.6814536952243052, 0.5823319261018008, 0.7718122970862826, 0.8925058444773368, 0.9249991097277733, 0.7849066379312727, 0.5120166815330335, 0.7863291630268572, 0.8171821177205619, 0.8878235148823457, 0.9813953955585096, 0.5009899161211654, 0.6787020040856314, 0.2747106808400709, 0.6998114428322438, 0.7191783799678735, 0.7566715075843347, 0.7741630673610131, 0.692871858980435, 0.8706970297938403, 0.9226518689226377, 0.619213859232465, 0.9620625840847012, 0.8161066853745392, 0.7984578805051198, 0.8987836568806694, 0.27900511725120763, 0.747868261422589, 0.8013372150606806, 0.4430395412241901, 0.8082746512504794, 0.9248395818955686, 0.8132668978866627, 0.7926355964369082, 0.7243101498981422, 0.8251498778038484, 0.865753667016409, 0.8784859927081519, 0.9613966942665844, 0.8380103992838959, 0.9376908870460701, 0.8505645904112248, 0.5317253080143199, 0.8756470416862959, 0.8823120896825394, 0.8920529250761863, 0.9565288857220365, 0.92576324319171, 0.8397457208604353, 0.8008835764985612, 0.7620555647282774, 0.6333567796033132, 0.8986985644274655, 0.8289197139212982, 0.38568054861828666, 0.4358764146033148, 0.7013568331933456, 0.5524769805317635, 0.8654015550049637, 0.9625385348003681, 0.4997035751430624, 0.5940434106189647, 0.29640429037896177, 0.9370396801623051, 0.7496358493500708, 0.8521916566704996, 0.7519935213994349, 0.8956127660014477, 0.7563308848917781, 0.5425355780301907, 0.1652985164032473, 0.5777375433929663, 0.5926841497777402, 0.5247451599628447, 0.6215406511606532, 0.646742228322253, 0.5236567091352762, 0.8105889943537302, 0.7614647275399787, 0.7272264480694343, 0.44438282424164377, 0.8051848688934031, 0.253979247575754, 0.8737269176380216, 0.7884186533408385, 0.5226162157005312, 0.7776146375974927, 0.8021344726910251, 0.6794204065079696, 0.8398669626756513, 0.3743394998756179, 0.6593725303534554, 0.41008410759983227, 0.8726624594592295, 0.31336232876890546, 0.6187135046228962, 0.9208146539756937, 0.8948907807194619, 0.9475948217130945, 0.7098971478357265, 0.41970311630379203, 0.5524505095188592, 0.6689295490636696, 0.39534528644804523, 0.6686700461744643, 0.6608417181144597, 0.6289006219381473, 0.8112353209803558, 0.9675531845963172, 0.3468688843876404, 0.8171815196180959, 0.9315945487332388, 0.7612383340144859, 0.43979370974717685, 0.9452166580978265, 0.810349906376065, 0.4979189466877109, 0.9054024939516333, 0.7506263221664519, 0.8595966107872783, 0.9041757536760852, 0.5120166815330335, 0.9246344940597735, 0.622364539475366, 0.7975959936185795, 0.9376528402833735, 0.8270495791839716, 0.7463426393970082, 0.8508295060861325, 0.5277539611022016, 0.7926521549058593, 0.8343380415579561, 0.7973631232158779, 0.5423298306356671, 0.6253812669856891, 0.9342151247863544, 0.9064095870896521, 0.8428584418618921, 0.5680191878381406, 0.8230633503438987, 0.857993972512287, 0.8312116035859974, 0.8886868130574391, 0.5695902702544526, 0.8750573328895943, 0.47134086624147714, 0.6082670858563528, 0.8571520978358925, 0.7006810412396262, 0.6001343818465046, 0.8680196363335714, 0.7833148206731655, 0.835330250744176, 0.6883000602161935, 0.4297997702781997, 0.7132181587745201, 0.941909753873568, 0.9298379484442667, 0.8950633078112005, 0.9652574497835966, 0.8593048115498744, 0.23022113319019433, 0.5548683876071567, 0.8789570823277312, 0.7176343272433334, 0.7135972690872326, 0.900955402304434, 0.89110615578316, 0.8021344726910251, 0.36734125225010755, 0.9233813125795639, 0.9269988231022361, 0.6021478506882372, 0.27064660283581765, 0.7595966254948197, 0.5317253080143199, 0.9626288904553877, 0.518871521713375, 0.4244151934213653, 0.8784852709235653, 0.667697582798242, 0.6791650855490978, 0.8659372985570389, 0.5217980090164113, 0.9757802673562255, 0.20769640873195563, 0.6900575067285889, 0.15051833553221247, 0.8476988333501053, 0.12043274000614122, 0.6546311715671466, 0.412102187638673, 0.6339696776630096, 0.6925917751558638, 0.8074446941396305, 0.8417042066658985, 0.4702054036006336, 0.8107456318417504, 0.934253622333564, 0.9671353887875448, 0.3776875782453083, 0.5133306968464912, 0.8279918435672958, 0.7295730380004212, 0.8398957027397556, 0.7470826509089123, 0.7722124156410631, 0.3944809481034696, 0.5801047158883857, 0.7134138458261836, 0.8265590446981121, 0.5836238058504062, 0.7538957359152121, 0.9708936701567454, 0.41507295289487073, 0.9039211350062085, 0.5109703825452502, 0.8880660412534, 0.6332514250278477, 0.703270618172154, 0.863031725372896, 0.9601349291832292, 0.5845797646527732, 0.8357575010967041, 0.9584406458449958, 0.8733333206292072, 0.4740801794177068, 0.5787650908025566, 0.38525623454815555, 0.5715075300165849, 0.951253157591183, 0.831291834366621, 0.6482062646591596, 0.5447536045265621, 0.8456825404777587, 0.5358725178581014, 0.8893400405584444, 0.5955893395860203, 0.9408369636189147, 0.7580589814818564, 0.4244151934213653, 0.7636885291754726, 0.9532052815091139, 0.6686700461744643, 0.39683939049776734, 0.8309978518015588, 0.06774730328187532, 0.8934061610794648, 0.9459413258233057, 0.8507977517004935, 0.9694554821790147, 0.8640493534313302, 0.8409166048571896, 0.9059760843724536, 0.7278052027863667, 0.8952246802917138, 0.39534528644804523, 0.9558702864115934, 0.9178754126151818, 0.7504628435478695, 0.7568870052952757, 0.32046258648166903, 0.9712495894387816, 0.7125870341029702, 0.8286889773580812, 0.929575727770858, 0.8422483936479932, 0.60065365322741, 0.5775074082600717, 0.7505976846167132, 0.5317253080143199, 0.9590110623565244, 0.9651712957082627, 0.7333643603414158, 0.7757825668725274, 0.8928390517037824, 0.2578168736401774, 0.5355488836719776, 0.8408692583280314, 0.7849780542174357, 0.8711681462620556, 0.8447990405440073, 0.9571933326515756, 0.9307123551507692, 0.6421242495412457, 0.9239207054420927, 0.9336219461922934, 0.4244151934213653, 0.5673643045526261, 0.8301442064454496, 0.528471943574542, 0.8835542071774324, 0.8820947700128993, 0.4561713647735051, 0.584381944856391, 0.9493936477483658, 0.7816316980556022, 0.7770145472448273, 0.8495153837633861, 0.8318035560268552, 0.5220388622338656, 0.8589980209217414, 0.21216021099657945, 0.8782303617207965, 0.901850575196968, 0.7683760396387002, 0.9559989503713009, 0.938411491366706, 0.7225398931917507, 0.5918361617892179, 0.8596378534897678, 0.8816239240572568, 0.9296844522785247, 0.8299758417251202, 0.7538846798551382, 0.931253582726863, 0.6902425303942638, 0.9299571155275668, 0.35461708236434614, 0.6119587629530028, 0.8979450471026776, 0.8782891297971865, 0.6144930729026484, 0.5601837238662909, 0.4230258756549153, 0.5115702372514986, 0.6133200318312215, 0.8287048127179734, 0.42887934024879554, 0.5543929044930882, 0.5414149972460248, 0.7453725251924848, 0.6522898344923613, 0.6445138145159856, 0.9212190995841192, 0.6991293681294938, 0.9188224881967051, 0.9444881948020799, 0.8399825546316605, 0.6440269003431431, 0.45260210695563535, 0.6678228102737954, 0.8535669746933884, 0.23469888428232324, 0.7581156815660375, 0.8329520097124233, 0.5886389680190937, 0.4250130050586104, 0.290761161529129, 0.9065968169685268, 0.39757013049667705, 0.9584529405260903, 0.24804178200132845, 0.8400605958344816, 0.9562762484868867, 0.5923100188758571, 0.5355488836719776, 0.6866862751474886, 0.753715093249364, 0.9302702282582556, 0.8405005145861136, 0.7758456574858743, 0.8270123797965384, 0.9270997487744173, 0.8779999285967196, 0.6350604679157676, 0.9057987369792326, 0.9732730617650076, 0.28007269673131574, 0.5393237551960537, 0.9509318156255189, 0.8055358405733448, 0.8512314640165554, 0.6752183046546253, 0.9766791413071304, 0.26893819095773785, 0.5105552073939665, 0.7964242570425004, 0.9159462749375985, 0.46312559485344046, 0.7889853219989779, 0.5331772070153998, 0.6250130361556073, 0.5340700079782073, 0.8981158701031157, 0.8424802355113449], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [106.0, 196.0, 164.0, 47.0, 156.0, 167.0, 131.0, 14.0, 21.0, 25.0, 111.0, 85.0, 191.0, 207.0, 181.0, 133.0, 143.0, 42.0, 125.0, 131.0, 115.0, 219.0, 185.0, 225.0, 101.0, 110.0, 72.0, 174.0, 66.0, 163.0, 159.0, 166.0, 24.0, 73.0, 164.0, 135.0, 152.0, 39.0, 127.0, 128.0, 101.0, 44.0, 150.0, 171.0, 67.0, 177.0, 112.0, 38.0, 174.0, 40.0, 176.0, 139.0, 91.0, 33.0, 26.0, 49.0, 38.0, 23.0, 145.0, 201.0, 23.0, 216.0, 186.0, 26.0, 91.0, 11.0, 45.0, 34.0, 23.0, 42.0, 16.0, 182.0, 168.0, 23.0, 135.0, 111.0, 255.0, 61.0, 98.0, 84.0, 126.0, 21.0, 187.0, 143.0, 169.0, 59.0, 171.0, 184.0, 174.0, 102.0, 210.0, 134.0, 16.0, 213.0, 54.0, 9.0, 131.0, 148.0, 142.0, 216.0, 88.0, 167.0, 133.0, 38.0, 200.0, 9.0, 90.0, 26.0, 119.0, 197.0, 59.0, 148.0, 30.0, 189.0, 53.0, 166.0, 146.0, 144.0, 196.0, 44.0, 179.0, 132.0, 161.0, 102.0, 20.0, 94.0, 89.0, 123.0, 20.0, 201.0, 55.0, 227.0, 213.0, 56.0, 68.0, 178.0, 121.0, 13.0, 94.0, 126.0, 117.0, 169.0, 95.0, 77.0, 68.0, 149.0, 138.0, 12.0, 140.0, 166.0, 114.0, 212.0, 129.0, 176.0, 145.0, 117.0, 135.0, 183.0, 131.0, 213.0, 55.0, 173.0, 128.0, 116.0, 29.0, 90.0, 56.0, 92.0, 140.0, 150.0, 165.0, 114.0, 86.0, 178.0, 102.0, 107.0, 119.0, 220.0, 219.0, 158.0, 122.0, 157.0, 42.0, 84.0, 162.0, 161.0, 150.0, 116.0, 142.0, 149.0, 86.0, 102.0, 196.0, 83.0, 189.0, 35.0, 89.0, 142.0, 156.0, 97.0, 11.0, 201.0, 162.0, 198.0, 89.0, 183.0, 173.0, 15.0, 138.0, 160.0, 146.0, 106.0, 34.0, 106.0, 222.0, 80.0, 169.0, 172.0, 99.0, 60.0, 142.0, 202.0, 126.0, 216.0, 154.0, 119.0, 43.0, 199.0, 167.0, 143.0, 161.0, 129.0, 138.0, 145.0, 63.0, 167.0, 131.0, 129.0, 213.0, 101.0, 210.0, 31.0, 138.0, 162.0, 117.0, 190.0, 75.0, 105.0, 169.0, 70.0, 42.0, 186.0, 111.0, 153.0, 111.0, 133.0, 162.0, 238.5, 155.0, 38.0, 37.0, 101.0, 168.0, 168.0, 71.0, 186.0, 77.0, 113.0, 117.0, 164.0, 98.0, 28.0, 187.0, 148.0, 107.0, 108.0, 210.0, 72.0, 82.0, 136.0, 87.0, 161.0, 105.0, 197.0, 145.0, 148.0, 109.0, 126.0, 48.0, 66.0, 191.0, 147.0, 151.0, 85.0, 137.0, 31.0, 98.0, 192.0, 167.0, 22.0, 132.0, 47.0, 176.0, 226.0, 210.0, 131.0, 21.0, 105.0, 177.0, 181.0, 58.0, 191.0, 69.0, 145.0, 175.0, 162.0, 157.0, 197.0, 138.0, 80.0, 25.0, 20.0, 124.0, 164.0, 14.0, 151.0, 161.0, 6.0, 200.0, 168.0, 10.0, 166.0, 85.0, 148.0, 28.0, 85.0, 127.0, 133.0, 138.0, 104.0, 180.0, 121.0, 61.0, 63.0, 16.0, 49.0, 122.0, 106.0, 138.0, 112.0, 92.0, 128.0], \"xaxis\": \"x2\", \"y\": [0.8142007211296887, 0.07257977436397642, 0.7430932382113554, 0.8214862427787604, 0.5698848321031316, 0.6048119589659149, 0.6466669219762841, 0.14510080060429495, 0.2250304680670007, 0.28492472637839966, 0.42061632734231896, 0.8281252124183194, 0.49622399336621903, 0.3482895521074759, 0.4678833354511545, 0.5708968386647719, 0.37048677721847617, 0.553632248395139, 0.8702137350251022, 0.42186952587750404, 0.8696774950675754, 0.5410576963494411, 0.3971326977900686, 0.3275001196198921, 0.9448289227093116, 0.7109941475090589, 0.41925580570138304, 0.3675472469853882, 0.6721911818800557, 0.5562207270314473, 0.5262426608517637, 0.3244609607385458, 0.15056615442564347, 0.15676979724311627, 0.6037730696030339, 0.6342511279653397, 0.021947035536558718, 0.32429164429335744, 0.5678746850743716, 0.3571680467137555, 0.7755534309390314, 0.3240287891037917, 0.699424662214302, 0.5151532452376618, 0.7564675819717819, 0.38343591026479057, 0.19811005648518398, 0.3168419703358067, 0.5315947262677626, 0.9269044449273315, 0.8260225289794664, 0.451791899378283, 0.830516920403184, 0.47128602930186, 0.19027823806377472, 0.5181346713949518, 0.29552777318700446, 0.45414400334446664, 0.39329840463575844, 0.42327932510626076, 0.45838907164509224, 0.2233864252642039, 0.3628419195926303, 0.6709353200988277, 0.46058046365566996, 0.25551237833043455, 0.7234147543269824, 0.1481282262733752, 0.314935793994079, 0.20050531530561894, 0.37453315488553635, 0.701015529968035, 0.6343341418527783, 0.1739320900588749, 0.734996253073231, 0.8172229478314255, 0.3598554146739685, 0.7121055211356295, 0.2620604909731644, 0.3421138035730516, 0.6951268813066005, 0.35208221297891723, 0.452099210446082, 0.18907620085798427, 0.5444201651108793, 0.6484058972837882, 0.3258186925596978, 0.5963383680780668, 0.6202666247822538, 0.576738593946626, 0.5054992484109841, 0.2972245631729925, 0.6844333356791464, 0.42629475072919953, 0.4405153833121037, 0.01207867704715336, 0.7609288944606691, 0.23951123982998349, 0.09310514674080905, 0.5084920166510624, 0.33067609257366243, 0.36481899584296196, 0.5708968386647719, 0.3194802059637459, 0.14207297841267416, 0.5776897120055972, 0.2026163425795633, 0.37909000048748537, 0.38206764842015895, 0.41324683104354176, 0.17826143731067332, 0.42339414872454434, 0.39148091864802853, 0.3511350413575442, 0.8053393751847749, 0.5937005322868365, 0.6849942580153355, 0.38930033076762494, 0.5168500865319015, 0.5699073288866824, 0.5376087249833421, 0.8185832461647057, 0.25950508036415604, 0.20394483716883388, 0.3303044530853749, 0.2528102968078532, 0.8477719856767125, 0.5217124250004609, 0.3303044530853749, 0.5382885532339231, 0.9625763866028243, 0.6536174904341296, 0.42629475072919953, 0.6458781618432388, 0.46574001023909845, 0.37268733756108086, 0.8180085473348132, 0.35493594975273335, 0.2423640089427935, 0.3636330633241046, 0.6421622311157122, 0.5444201651108793, 0.7396308412796291, 0.9036153464846048, 0.21101569987323432, 0.6004024464464508, 0.7595861882737439, 0.486549602332862, 0.2379839758891197, 0.5147825233229498, 0.2065932277190248, 0.4342628292980428, 0.5940848250235929, 0.4857193175270624, 0.5332610244722983, 0.5402196969638672, 0.8578846895389459, 0.5290225674595067, 0.6074669506688956, 0.1847839155105034, 0.3581391437324269, 0.4304380754474639, 0.8410120374942113, 0.5810086483513661, 0.19026233744636453, 0.7223494520380469, 0.8589928738613049, 0.8374625942163022, 0.781203852328267, 0.73983195178881, 0.41156537259256004, 0.7482873396984137, 0.44431713201158524, 0.7113673874393347, 0.49869552495399233, 0.7627102864663872, 0.37193390769028617, 0.37187810520956766, 0.3773291605703562, 0.8719651627687759, 0.6218762459828849, 0.3781393537983126, 0.553632248395139, 0.47624084907999176, 0.774399353278846, 0.5840424935194366, 0.5601025471409736, 0.6186690618327106, 0.620611700356168, 0.5755798886129706, 0.15047650536569443, 0.5530049338021776, 0.6597439619439023, 0.8300222117931148, 0.3490158529243493, 0.4410646109528086, 0.5067909967309752, 0.5851482063434866, 0.7149827463187939, 0.4849259975950144, 0.2094210588097294, 0.33399024531412796, 0.4083143545243069, 0.7497022835596558, 0.7817929239213606, 0.7637421953724776, 0.3825655414920891, 0.6611482494098961, 0.19022241257108333, 0.44972084577511023, 0.5476732603321269, 0.4831274653996314, 0.5077048340566679, 0.7289504589448288, 0.4379810490617926, 0.8017221455714771, 0.6434673631716396, 0.5059779734745421, 0.6065367192264559, 0.650368705032214, 0.34567471266024347, 0.39561589000187136, 0.3427787545601037, 0.4676404271158623, 0.5332283386400669, 0.4519108142444285, 0.40662831629925006, 0.42305576187259053, 0.22032895172816622, 0.5278715769330472, 0.43679486629948455, 0.743933429392776, 0.5269515041023835, 0.5008800654866953, 0.214168174561682, 0.44879088851457377, 0.683485355417811, 0.807753104897186, 0.42629475072919953, 0.8502951424821861, 0.17421175568219957, 0.25491371883486935, 0.7595861882737439, 0.6571724132942184, 0.7813188949129265, 0.5626906653340306, 0.8674288259883418, 0.6600514650598344, 0.4827749661719035, 0.5456147119159479, 0.39827550056677263, 0.27323823737433794, 0.695896529362927, 0.5048820477254727, 0.5422349097465021, 0.5610936746718964, 0.6571724132942184, 0.3088751107498249, 0.45428761266464013, 0.6604471727860799, 0.43371621376298963, 0.6171893197168647, 0.8100511550343341, 0.8100511550343341, 0.605832578461134, 0.5526475584669951, 0.4275055171336787, 0.8734720021260204, 0.8508295378350301, 0.5807723706867254, 0.8272749548927728, 0.2670652478909882, 0.7020144194675465, 0.4615566916191992, 0.7055847950248242, 0.43389869234556755, 0.6071692164257629, 0.3496825637352313, 0.23676491619791426, 0.7057755976874825, 0.15539001443149586, 0.6187538615870153, 0.8735882828904331, 0.30049486749739024, 0.23191705420611952, 0.8913917397916864, 0.4977157214618499, 0.16961113509580228, 0.8485494795219795, 0.4760032757956232, 0.5053843099270294, 0.2676015269871764, 0.3627664421236291, 0.15146266807038725, 0.7898179638281774, 0.6145296307645981, 0.3790380236797623, 0.3003532640340299, 0.6086112016774773, 0.39906793889171593, 0.8185832461647057, 0.6715802865662828, 0.8260225289794664, 0.6056902064850618, 0.400132762133902, 0.39471961640683584, 0.6449859309106076, 0.5637152910565628, 0.39949420960438964, 0.5490401551410112, 0.4398875418860128, 0.30916577334906253, 0.7093303227687476, 0.4562508424819209, 0.40444044759428516, 0.5773483646962835, 0.447777692034652, 0.4961542215384683, 0.32474312180562226, 0.21192693199409943, 0.9056903490933487, 0.5013816399998683, 0.758876109553896, 0.6364928148646596, 0.2952804752502578, 0.4748951900520853, 0.43679486629948455, 0.5479962315186364, 0.4728142838839701, 0.6343341418527783, 0.12248807650217919, 0.5052525886146573, 0.8281252124183194, 0.8930081609652758, 0.36283726088930296, 0.8098196742550625, 0.656477404357746, 0.193885049884708, 0.5269515041023835, 0.49858469647139786, 0.32780472036158087, 0.24927512797396847, 0.6148718578314069, 0.10691527318901187, 0.136775438340409, 0.8489192718114075, 0.2600203086082801, 0.8142007211296887, 0.5269515041023835, 0.7966615933629455, 0.5633234794197017, 0.767479452333631], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"total.sulfur.dioxide\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"total.sulfur.dioxide\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}, \"total.sulfur.dioxide_bad\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (ref)\", \"type\": \"scatter\", \"x\": [192.0, 65.0, 151.0, 44.0, 77.0, 45.0, 149.0, 23.0, 148.0, 174.0, 110.0, 164.0, 165.0, 163.0, 79.0, 183.0, 144.0, 19.0, 139.0, 12.0, 187.0, 206.0, 12.0, 120.0, 63.0, 54.0, 120.0, 91.0, 214.0, 183.0, 20.0, 106.0, 159.0, 196.0, 192.0, 112.0, 147.0, 130.0, 10.0, 180.0, 94.0, 22.0, 100.0, 84.0, 84.0, 124.0, 105.0, 149.0, 87.0, 53.0, 33.0, 141.0, 168.0, 14.0, 173.0, 220.0, 169.0, 177.0, 69.0, 55.0, 245.0, 179.0, 16.0, 164.0, 113.0, 131.0, 172.0, 133.0, 36.0, 91.0, 183.0, 8.0, 194.0, 117.0, 115.0, 144.0, 233.0, 20.0, 92.0, 87.0, 106.0, 76.0, 243.0, 23.0, 138.0, 38.0, 201.0, 26.0, 72.0, 63.0, 8.0, 152.0, 111.0, 194.0, 195.0, 202.0, 159.0, 133.0, 179.0, 117.0, 195.0, 71.0, 111.0, 197.0, 120.0, 69.0, 115.0, 72.0, 115.0, 150.0, 47.0, 63.0, 15.0, 104.0, 51.0, 92.0, 178.0, 77.0, 84.0, 86.0, 166.0, 49.0, 150.0, 111.0, 204.0, 210.0, 198.0, 42.0, 86.0, 184.0, 33.0, 86.0, 156.0, 189.0, 139.0, 164.0, 60.0, 176.0, 140.0, 141.0, 116.0, 227.0, 75.0, 116.0, 177.0, 197.0, 161.0, 142.0, 48.0, 84.0, 156.0, 26.0, 143.0, 22.0, 104.0, 31.0, 98.0, 165.0, 73.0, 131.0, 101.0, 28.0, 49.0, 113.0, 12.0, 84.0, 179.0, 176.0, 187.0, 180.0, 171.0, 99.0, 121.0, 171.0, 95.0, 16.0, 35.0, 177.0, 55.0, 63.0, 189.0, 12.0, 114.0, 171.0, 179.0, 197.0, 187.0, 34.0, 157.0, 227.0, 115.0, 75.0, 206.0, 50.0, 200.0, 12.0, 151.0, 218.0, 210.0, 130.0, 198.0, 82.0, 82.0, 31.0, 132.0, 157.0, 131.0, 61.0, 13.0, 21.0, 87.0, 148.0, 160.0, 225.0, 173.0, 158.0, 192.0, 131.0, 220.0, 110.0, 24.0, 103.0, 204.0, 111.0, 115.0, 168.0, 93.0, 234.0, 87.0, 13.0, 117.0, 160.0, 103.0, 111.0, 106.0, 143.0, 207.0, 57.0, 210.0, 230.0, 38.0, 162.0, 136.0, 174.0, 103.0, 47.0, 142.0, 154.0, 164.0, 30.0, 155.0, 160.0, 159.0, 19.0, 176.0, 171.0, 90.0, 62.0, 133.0, 18.0, 169.0, 142.0, 173.0, 122.0, 178.0, 149.0, 128.0, 155.0, 58.0, 79.0, 212.0, 193.0, 167.0, 205.0, 186.0, 248.0, 124.0, 188.0, 82.0, 64.0, 14.0, 31.0, 188.0, 61.0, 117.0, 174.0, 123.0, 170.0, 73.0, 198.0, 97.0, 119.0, 307.5, 51.0, 68.0, 60.0, 106.0, 252.0, 177.0, 115.0, 78.0, 102.0, 96.0, 189.0, 72.0, 71.0, 184.0, 23.0, 18.0, 91.0, 150.0, 170.0, 31.0, 196.0, 133.0, 184.0, 282.0, 125.0, 223.0, 37.0, 20.0, 210.0, 60.0, 11.0, 168.0, 136.0, 71.0, 176.0, 65.0, 195.0, 167.0, 78.0, 164.0, 198.0, 131.0, 33.0, 240.0, 27.0, 95.0, 234.0, 87.0, 185.0, 120.0, 48.0, 188.0, 38.0, 195.0, 188.0, 62.0, 184.0, 145.0, 35.0, 197.0, 99.0, 104.0], \"xaxis\": \"x\", \"y\": [0.7197707895473677, 0.05448058807241418, 0.5021256787650443, 0.4710854375480472, 0.7156076129280222, 0.7966690429773311, 0.7265425252145667, 0.16771266951545494, 0.610944103187451, 0.6324527530146118, 0.42180662537268765, 0.2598044700255929, 0.5503032830239416, 0.5632112185661304, 0.6840604465833231, 0.6224375641140001, 0.8071781895370533, 0.9515482366939344, 0.3994071349416132, 0.9677746238863042, 0.572587586261062, 0.7602674855798478, 0.861098734498427, 0.1386074727873, 0.6703360831713621, 0.8064003460928679, 0.3172728283240366, 0.8039094494444462, 0.9186426431335688, 0.6026275969807151, 0.8609701260317718, 0.3485833566260712, 0.3005246278528939, 0.2859113263741919, 0.4978204971029292, 0.5125675444128744, 0.4268860326359044, 0.11791793574572085, 0.440027850275134, 0.4938434408506086, 0.4933189622152446, 0.166194347192407, 0.30200278364192557, 0.6822425768461728, 0.8693180940701344, 0.24112389044610405, 0.43189370387303117, 0.284455178085937, 0.23793737479647703, 0.5535561322468214, 0.7900402576908969, 0.47373775892899717, 0.6055733033081183, 0.7462675017011632, 0.32245623572553406, 0.7612367841042231, 0.36308410170653527, 0.6103993963703384, 0.3965676277125745, 0.2230008284200371, 0.8480025164595866, 0.43585875500482685, 0.24095331994381775, 0.4030652094068704, 0.8951637220162157, 0.2782175630406618, 0.7337660836226194, 0.8352762102164887, 0.6223987562306759, 0.2928263700360406, 0.6563137004068428, 0.16155652477357085, 0.6364666355122575, 0.2186811050870735, 0.27206300237801306, 0.4358901152617537, 0.6136035252376228, 0.07900866299327158, 0.8522855318359817, 0.11906253414448076, 0.3466831105240652, 0.11265227152414181, 0.6302693732121377, 0.7168097665217413, 0.4796298258249143, 0.4476252306691143, 0.3612478268219491, 0.611861930499026, 0.15121036728507153, 0.5363393546692182, 0.16155652477357085, 0.441733396330222, 0.7834276811132227, 0.6364666355122575, 0.44873286860252337, 0.4948960601400133, 0.4172084246960842, 0.5055831714989107, 0.5269082808529498, 0.3737404408311804, 0.4491757516278906, 0.5266720849021, 0.2882430633103308, 0.6066213483726142, 0.83534933450756, 0.2509605867776752, 0.230738949997912, 0.25680675940048736, 0.6858999083789018, 0.27626495444752697, 0.35158671089680515, 0.311480105980391, 0.5950329577300569, 0.4196263877039489, 0.3672198477254309, 0.5488429300958864, 0.6273126624389191, 0.0990306898864649, 0.935036100419004, 0.5556828679884147, 0.6003916802566726, 0.1337843055401957, 0.6898191889393818, 0.46604488826349566, 0.6668872608045229, 0.5998672378660981, 0.14712454771937833, 0.8558065212045691, 0.883276495704891, 0.5544329747085402, 0.38398791005853006, 0.8623310715459079, 0.4482795971615686, 0.4767821080964978, 0.6451659669426603, 0.5099786295438409, 0.11454219273407718, 0.5691587732433696, 0.2398813672346335, 0.8592796956842923, 0.38133093816728936, 0.4754945767078651, 0.2673740541283356, 0.43092180164799054, 0.5981491184574936, 0.7512253043619477, 0.20474988026063612, 0.12337786436138054, 0.6965484670033051, 0.4642254518352117, 0.29034758521725457, 0.7912282271603185, 0.1364389858241727, 0.5326323768611896, 0.3938848007926149, 0.886984727126295, 0.5955398539691413, 0.3667393936023857, 0.35129461810907203, 0.578130474122496, 0.1952086434691429, 0.6982941690158907, 0.6159300986783536, 0.6650580695700093, 0.8007006003287879, 0.13750802167619447, 0.47121416359091395, 0.5691587732433696, 0.5295784007050042, 0.4938434408506086, 0.4240508430342457, 0.1531205555636086, 0.7965770364050346, 0.4829168465516456, 0.6333246955344933, 0.38682769986244625, 0.5589353890471914, 0.30965836575156913, 0.6133571507425741, 0.5363393546692182, 0.5474540697204298, 0.9680074395956593, 0.29703705077451537, 0.7566858385458134, 0.451244026180727, 0.6224939697452743, 0.9340693900855184, 0.1254375450851024, 0.770680513376406, 0.7273231109206828, 0.410671569380914, 0.19928392436820586, 0.44743622108127745, 0.4991477681643879, 0.5443787589855091, 0.826082779912576, 0.5642536294664222, 0.6762559922350657, 0.39283078357423706, 0.3074847569358159, 0.40732461839200396, 0.5614584986504241, 0.5614584986504241, 0.575628870274347, 0.1938881144566701, 0.6480440770440566, 0.23946299348505806, 0.6110142157087575, 0.32489046344192996, 0.127020290619695, 0.28948900574123104, 0.27970970921902805, 0.5179212029104148, 0.579807192000203, 0.5695619245525361, 0.7471497674522103, 0.6761943115269239, 0.6052803835931642, 0.9048996801452402, 0.632953623191418, 0.7849920634816455, 0.12946409768986655, 0.3899257470968539, 0.37735505673750047, 0.27206300237801306, 0.6356505945299911, 0.9000798247851504, 0.5852448485124296, 0.3537739535016634, 0.8589709040748648, 0.5105041430354158, 0.4760479563081992, 0.3915586115462193, 0.4344526143297297, 0.04825794875232026, 0.25106204840173363, 0.5352062615150248, 0.2084678736174792, 0.5588772074146924, 0.42656597432725707, 0.3395528272139201, 0.5154796814541086, 0.30312695461308037, 0.4684625037801391, 0.13140485141127656, 0.37575572516499556, 0.7087902803012941, 0.22740617784346517, 0.7932370230268412, 0.6977827466507267, 0.8687065743771458, 0.3532210556477622, 0.3005246278528939, 0.8817461779308045, 0.5897758288136841, 0.5117334773877459, 0.2267712913026929, 0.7462523759498982, 0.5055831714989107, 0.6276122794572256, 0.34766968675436505, 0.563322001169588, 0.4035281086421867, 0.44827723495654004, 0.7588644006503809, 0.17560197311170134, 0.2736156405730563, 0.5646478519097824, 0.12788772013874206, 0.8127608550985441, 0.35130933230290007, 0.8842329534318195, 0.5671758377024384, 0.508518787579709, 0.4735654621913231, 0.6614347321502836, 0.7032589073748752, 0.418601168771625, 0.40262233345395115, 0.38045938978299354, 0.6221728234115828, 0.6769388667590319, 0.825791915264051, 0.8036522945246104, 0.5350776523934957, 0.5038683203672731, 0.4187790963850706, 0.3942708224564714, 0.36585282612655, 0.42973128126448334, 0.1395024853671747, 0.36909778672938764, 0.5126700875045708, 0.31128511290513083, 0.5841805470690385, 0.42932394036482613, 0.5168725346003686, 0.9331527243268325, 0.5090935678835011, 0.848083892739094, 0.7288594688776423, 0.23463814542978878, 0.9073343486287574, 0.5445649372592127, 0.8030108083542629, 0.30698149193503155, 0.47724620771884374, 0.49565431290071005, 0.29179072192325783, 0.53941953634433, 0.32642767658125227, 0.5714063949384225, 0.6769388667590319, 0.48314991346809855, 0.3838692085325581, 0.7654355578102645, 0.6807995217458978, 0.7803105409218809, 0.4971816769068883, 0.5662837862370104, 0.32557907866588853, 0.4059739580227363, 0.8621668957327787, 0.4863555612469991, 0.44913520001249685, 0.5044088987161788, 0.018560580499064172, 0.17397747102053363, 0.8203404366189, 0.531551035274026, 0.3951880410340851, 0.6710839680909022, 0.7545393605546251, 0.25029771644034415, 0.31651464458218903, 0.7900402576908969, 0.7649542174153934, 0.6282404390050247, 0.5124469561170844, 0.7501741577575001, 0.3717170374651112, 0.5479204837841629, 0.1799627586960565, 0.8716748635647116, 0.4700369344869263, 0.7044722268129955, 0.7597806244765397, 0.4570971226262448, 0.3688130253756654, 0.5854022956087224, 0.6067015953642416, 0.6092966434658947, 0.5713009051869427, 0.15316343939585397, 0.31191498773739224], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [123.0, 231.0, 126.0, 107.0, 175.0, 65.0, 107.0, 115.0, 121.0, 69.0, 180.0, 9.0, 158.0, 195.0, 211.0, 150.0, 101.0, 43.0, 74.0, 93.0, 202.0, 95.0, 142.0, 177.0, 84.0, 170.0, 93.0, 158.0, 131.0, 75.0, 92.0, 54.0, 92.0, 170.0, 63.0, 130.0, 186.0, 142.0, 99.0, 66.0, 67.0, 148.0, 60.0, 97.0, 211.0, 110.0, 57.0, 142.0, 18.0, 135.0, 110.0, 177.0, 104.0, 189.0, 156.0, 163.0, 73.0, 98.0, 104.0, 127.0, 19.0, 128.0, 144.0, 140.0, 41.0, 24.0, 100.0, 114.0, 160.0, 86.0, 125.0, 86.0, 101.0, 289.0, 94.0, 90.0, 37.0, 83.0, 60.0, 125.0, 189.0, 93.0, 57.0, 124.0, 98.0, 93.0, 143.0, 50.0, 93.0, 17.0, 119.0, 109.0, 148.0, 143.0, 151.0, 116.0, 134.0, 117.0, 85.0, 157.0, 47.0, 200.0, 41.0, 8.0, 95.0, 200.0, 103.0, 133.0, 86.0, 38.0, 103.0, 176.0, 166.0, 49.0, 158.0, 121.0, 110.0, 72.0, 171.0, 44.0, 171.0, 134.0, 228.0, 140.0, 89.0, 31.0, 25.0, 127.0, 147.0, 23.0, 127.0, 106.0, 129.5, 71.0, 115.0, 155.0, 52.0, 23.0, 109.0, 44.0, 109.0, 155.0, 159.0, 161.0, 17.0, 113.0, 85.0, 77.0, 34.0, 109.0, 149.0, 42.0, 143.0, 206.0, 118.0, 111.0, 100.0, 167.0, 112.0, 122.0, 115.0, 91.0, 68.0, 45.0, 137.0, 213.0, 192.0, 142.0, 161.0, 119.0, 20.0, 58.0, 123.0, 97.0, 43.0, 144.0, 31.0, 134.0, 138.0, 33.0, 134.0, 126.0, 15.0, 163.0, 136.0, 127.0, 118.0, 15.0, 194.0, 96.0, 128.0, 11.0, 164.0, 164.0, 94.0, 118.0, 126.0, 113.0, 72.0, 58.0, 124.0, 122.0, 111.0, 46.0, 181.0, 74.0, 22.0, 124.0, 155.0, 146.0, 73.0, 101.0, 121.0, 133.0, 80.0, 128.0, 106.0, 128.0, 160.0, 75.0, 78.0, 158.0, 87.0, 110.0, 25.0, 111.0, 189.0, 156.0, 106.0, 151.0, 186.0, 184.0, 52.0, 139.0, 92.0, 112.0, 150.0, 169.0, 107.0, 128.0, 202.0, 192.0, 114.0, 228.0, 64.0, 193.0, 155.0, 140.0, 167.0, 88.0, 163.0, 229.0, 66.0, 28.0, 29.0, 101.0, 143.0, 168.0, 152.0, 9.0, 146.0, 92.0, 99.0, 144.0, 109.0, 130.0, 114.0, 20.0, 44.0, 96.0, 61.0, 48.0, 81.0, 104.0, 119.0, 156.0, 115.0, 24.0, 11.0, 90.0, 161.0, 146.0, 90.0, 105.0, 93.0, 27.0, 182.0, 186.0, 46.0, 87.0, 84.0, 158.0, 12.0, 138.0, 149.0, 201.0, 34.0, 138.0, 71.0, 103.0, 40.0, 113.0, 98.0, 93.0, 98.0, 44.0, 142.0, 54.0, 155.0, 124.0, 70.0, 174.0, 28.0, 249.5, 90.0, 21.0, 153.0, 142.0, 100.0, 81.0, 104.0, 65.0, 170.0, 164.0, 118.0, 25.0, 81.0, 27.0, 188.0, 151.0, 107.0, 100.0, 19.0, 171.0, 96.0, 167.0, 76.0, 102.0, 159.0, 242.0, 213.0, 49.0, 78.0, 141.0, 22.0, 148.0, 125.0, 37.0, 96.0, 200.0, 143.0, 173.0, 115.0, 57.0, 160.0, 107.0, 79.0, 155.0, 23.0, 135.0, 194.0, 172.0, 57.0, 48.0, 88.0, 112.0, 125.0, 117.0, 31.0, 179.0, 149.0, 67.0, 102.0, 93.0, 78.0, 122.0, 142.0, 43.0, 98.0, 86.0, 50.0, 209.0, 63.0, 247.0, 206.0, 98.0, 95.0, 170.0, 163.0, 93.0, 132.0, 111.0, 158.0, 97.0, 221.0, 42.0, 87.0, 122.0, 178.0, 114.0, 42.0, 62.0, 70.0, 168.0, 78.0, 127.0, 134.0, 171.0, 87.0, 169.0, 140.0, 168.0, 141.0, 78.0, 102.0, 118.0, 152.0, 171.0, 143.0, 168.0, 138.0, 131.0, 206.0, 149.0, 134.0, 114.0, 111.0, 166.0, 165.0, 178.0, 186.0, 79.0, 98.0, 68.0, 146.0, 111.0, 16.0, 54.0, 155.0, 47.0, 102.0, 111.0, 89.0, 125.0, 109.0, 118.0, 231.0, 154.0, 24.0, 83.0, 126.0, 124.0, 70.0, 108.0, 174.0, 38.0, 223.0, 37.0, 101.0, 116.0, 22.0, 66.0, 37.0, 208.0, 138.0, 92.0, 134.0, 143.0, 154.0, 27.0, 42.0, 215.0, 131.0, 169.0, 113.0, 166.0, 105.0, 111.0, 113.0, 98.0, 42.0, 183.0, 118.0, 172.0, 134.0, 117.0, 109.0, 118.0, 88.0, 120.0, 223.0, 94.0, 93.0, 129.0, 11.0, 125.0, 185.0, 197.0, 108.0, 101.0, 195.0, 140.0, 140.0, 194.0, 126.0, 176.0, 113.0, 156.0, 90.0, 135.0, 98.0, 100.0, 211.0, 184.0, 111.0, 76.0, 111.0, 245.0, 102.0, 109.0, 89.0, 114.0, 142.0, 114.0, 38.0, 28.0, 158.0, 121.0, 126.0, 92.0, 47.0, 16.0, 158.0, 142.0, 102.0, 61.0, 242.0, 137.0, 143.0, 125.0, 172.0, 144.0, 216.0, 157.0, 128.0, 114.0, 13.0, 118.0, 83.0, 143.0, 116.0, 167.0, 91.0, 76.0, 125.0, 15.0, 73.0, 37.0, 213.0, 110.0, 160.0, 143.0, 68.0, 113.0, 88.0, 124.0, 112.0, 63.0, 110.0, 204.0, 78.0, 151.0, 168.0, 114.0, 110.0, 82.0, 154.0, 134.0, 229.0, 154.0, 109.0, 101.0, 123.0, 54.0, 126.0, 39.0, 128.0, 118.0, 65.0, 130.0, 136.0, 114.0, 215.0, 144.0, 128.0, 117.0, 89.0, 16.0, 95.0, 215.0, 150.0, 114.0, 162.0, 110.0, 17.0, 164.0, 144.0, 115.5, 134.0, 155.0, 119.0, 70.0, 230.0, 13.0, 137.0, 72.0, 69.0, 136.0, 28.0, 103.0, 154.0, 158.0, 33.0, 56.0, 194.0, 195.0, 140.0, 84.0, 170.0, 87.0, 178.0, 186.0, 193.0, 113.0, 140.0, 72.0, 37.0, 170.0, 110.0, 75.0, 104.0, 34.0, 152.0, 99.0, 117.0], \"xaxis\": \"x\", \"y\": [0.18439386755371057, 0.5750868907731637, 0.1132172353536568, 0.19850047615697952, 0.6950004168934912, 0.41826441672946313, 0.040828937665112974, 0.2145583871630251, 0.09143093017991866, 0.10013996234885614, 0.3658834999306372, 0.587897812361327, 0.23563705889496211, 0.5289998061994394, 0.5981734696485812, 0.5956194363709464, 0.11295199838815062, 0.6349332021584286, 0.09356782907078887, 0.0672754654033908, 0.3541579814831264, 0.11781588709523827, 0.3295981493457443, 0.23443288181779365, 0.13830133810679424, 0.5122546205578999, 0.03626449638205209, 0.32057959349203036, 0.3955164844050859, 0.21320459763992916, 0.08620177311633537, 0.4132497936565127, 0.19514157099220286, 0.028148892894647393, 0.03728071159582558, 0.20213762816504022, 0.39088790332760825, 0.10566618212719892, 0.11466232649727714, 0.09544364959788487, 0.07351553674018241, 0.3657542344632553, 0.05859665738698361, 0.43634835962676355, 0.4827032077898804, 0.516310366273556, 0.6480037931050455, 0.21122004543372697, 0.030344760075157406, 0.22750344576024595, 0.18673438423788624, 0.5460909738859347, 0.0666291073587214, 0.320234954276134, 0.515425573770442, 0.5751179393061847, 0.3262180383913996, 0.12192585741802231, 0.6165939755266235, 0.09365914315081003, 0.44259853952477324, 0.31958523161407537, 0.09228899111547839, 0.22815273642701062, 0.5282447951108347, 0.7777719169155834, 0.13834506443323813, 0.29425092810710396, 0.5300870647699181, 0.031947521718024174, 0.1108646816717751, 0.053339747820140615, 0.14466174791529418, 0.25697560969337485, 0.3383868137798065, 0.30803904997837983, 0.03434255320493995, 0.08689109251212201, 0.46044782253877736, 0.0973761441498977, 0.3449058470623745, 0.024212367984770777, 0.11665042079727428, 0.3333970234137619, 0.1495417879159372, 0.0679784404121434, 0.2360052425084116, 0.39147703437781534, 0.04428683932015287, 0.5381556738404795, 0.4357341587922019, 0.11843845992675284, 0.28107964630818494, 0.06989794698232743, 0.2658605825653322, 0.22408104406272966, 0.15519213452661884, 0.09873339188795927, 0.10739713799337769, 0.4712507279726723, 0.31257930793611366, 0.6259141532505736, 0.1651629894813923, 0.13024327386797574, 0.08242409751896962, 0.55355901104019, 0.11256152515999429, 0.22124325125588817, 0.05838775174278421, 0.6734770756819889, 0.06919042490492266, 0.5773286546676725, 0.5693181878572973, 0.12726917141891614, 0.27983888222674136, 0.15690954109554833, 0.18593824584442387, 0.05432525584274117, 0.33273366741371935, 0.12435295831370408, 0.48112847828662497, 0.2959384652215836, 0.5042039768350125, 0.3749869638443927, 0.7258627386781167, 0.4806866421912115, 0.6234335830956541, 0.4191951896523489, 0.20821728825178332, 0.6343085651912675, 0.27674577061671146, 0.02140654255666985, 0.42849246998341506, 0.1817444030106703, 0.4551538855951942, 0.05087080041524106, 0.516641204200833, 0.6810720245435042, 0.08151744899857294, 0.4475169494323581, 0.03995706953508171, 0.2181819033834006, 0.20372897255157485, 0.24305701296248816, 0.5381556738404795, 0.2358485729609252, 0.051323642447754336, 0.1913631294907303, 0.32154631204965056, 0.31229802093755377, 0.3917329141436472, 0.39462053822053156, 0.3680669306910641, 0.5017894292511481, 0.32120711190509066, 0.0768019282386515, 0.1168769044932052, 0.31545143431826594, 0.12007957373947853, 0.08354361700756141, 0.2180731800932174, 0.7653011157176768, 0.05076221583963347, 0.11739077279846111, 0.3639458403519926, 0.4815918747301601, 0.35998732468747585, 0.457353694020342, 0.5520498791697908, 0.22168281241722143, 0.2132287846887433, 0.4763394582576197, 0.3040153802820409, 0.20749766415549342, 0.3316810644107503, 0.8126297477835096, 0.5749367295182395, 0.27274039590582944, 0.2685808245693546, 0.5172108675362206, 0.33506587713796443, 0.09616672688355288, 0.041108213935392324, 0.10548050716105373, 0.5016695616404938, 0.20022874051447226, 0.14220640128276774, 0.23772630779738468, 0.19606080251004787, 0.2603188495268066, 0.18846597668723208, 0.19827111133563302, 0.261548791893628, 0.4140325207077993, 0.8134796325151183, 0.12265695643958285, 0.6311167068993262, 0.13481820177301163, 0.0932384579037443, 0.14050160114126486, 0.2562249115981724, 0.08547750670655718, 0.08643201081848362, 0.19981675431015722, 0.31390222338706264, 0.06221739913672386, 0.06996303880871468, 0.30029370289300306, 0.4306817897420764, 0.6595343859760441, 0.2839408857911616, 0.20468539219890003, 0.1130196126722065, 0.2360017176902124, 0.13187147729288817, 0.42313120297864704, 0.06964897436687001, 0.1624399718171824, 0.17200815643270417, 0.07333105637055992, 0.2440137653363641, 0.4900110333069776, 0.3085554157386313, 0.03480496731142946, 0.12148031785507996, 0.15002971926037112, 0.5314247042003052, 0.2758453007685677, 0.2151852748992088, 0.2658605825653322, 0.29911225563077193, 0.6594110243744711, 0.49869782335001445, 0.16788254706683048, 0.11816213334465087, 0.08230909248122409, 0.13653212507346946, 0.25639170942272826, 0.06562233405876228, 0.23311900627036541, 0.3756616197417655, 0.46674395287949066, 0.3092684534350997, 0.8337319641197457, 0.8331457111467163, 0.2591056156836542, 0.4778687671024334, 0.2542440524586721, 0.5361036306539362, 0.07073721340803463, 0.4731688813159418, 0.5755848065786346, 0.356689463387698, 0.14225616860197343, 0.21837916002376445, 0.14466174791529418, 0.29899643271856946, 0.4757427727983842, 0.08126799884203029, 0.1296501822378736, 0.3286954654423938, 0.08620177311633537, 0.13855855420831553, 0.05543377339452393, 0.11917834098009661, 0.2613621884509647, 0.11269900223777074, 0.08429051026621415, 0.3393961441870107, 0.07031960314855146, 0.11356777592095357, 0.4853279864284006, 0.1279289285514792, 0.0584572339054259, 0.08612988585012649, 0.3472440907423937, 0.1248029959061332, 0.07502335399434323, 0.19827111133563302, 0.3424151534036639, 0.3065175956815872, 0.13808860398564737, 0.058092197534895806, 0.04082786106581715, 0.1602592849246841, 0.09156161599234125, 0.5036030690663805, 0.2640411824475748, 0.6468038092930676, 0.07201805208597656, 0.22470230804277058, 0.1334773721572423, 0.04847889440667685, 0.2685808245693546, 0.10911308148570098, 0.6764508967260475, 0.6280060594576413, 0.36761958218269275, 0.16019930342079847, 0.17605308658107655, 0.14078981831089854, 0.2384997092801764, 0.13117402490907393, 0.12818959986091483, 0.4161925244315118, 0.12435295831370408, 0.09814942480303201, 0.05480698563416486, 0.3746187330143109, 0.41092354232892336, 0.507894749900129, 0.5137929421583434, 0.08293523366016065, 0.2964416548030494, 0.15236141109070434, 0.4396941021426354, 0.41893931094950754, 0.09113953260801844, 0.10967473999240707, 0.055732078845942, 0.05640314085190745, 0.06176263301115803, 0.06427139521062619, 0.20386133178572885, 0.21597661143113533, 0.7486409492386699, 0.2610715902497083, 0.09465277491899493, 0.5556171757583562, 0.137718889647652, 0.1978940751503777, 0.08472590699531857, 0.356262641598029, 0.14596950445002987, 0.13865818299932142, 0.3088915816821678, 0.11516321289421916, 0.16121169033174265, 0.40573483691789825, 0.34308606282264, 0.36300204724896845, 0.17193414756867276, 0.035926383178341514, 0.34536882843285344, 0.4400180463892147, 0.5165194668234709, 0.23319834124303085, 0.9637923675569924, 0.2635599134550337, 0.6259141532505736, 0.12324962258280003, 0.1256037712827487, 0.1248029959061332, 0.11665042079727428, 0.29081136443782263, 0.12993062945549005, 0.20959981847797426, 0.12385816607190492, 0.16931651488884025, 0.2468284110987674, 0.6181879252747016, 0.3509541008179864, 0.08619429866610873, 0.09537770951135394, 0.8204393830764495, 0.2493836920976743, 0.10367142046182065, 0.11516383353466464, 0.07169627826225977, 0.5400384130096556, 0.2709141565803237, 0.16809050322974173, 0.3421981324687273, 0.812724325423183, 0.1326589750154965, 0.054670132935181304, 0.055346153509382656, 0.8039442695404772, 0.3276168958360183, 0.6561718697940482, 0.6214102617950452, 0.3046829516703813, 0.7853649284745584, 0.7303620793003476, 0.6719087507962026, 0.16000678121984613, 0.579612101366232, 0.6347749924714103, 0.41894393066564606, 0.06936532322770372, 0.28322834609079706, 0.343263893078516, 0.4450860003239352, 0.3090838478611311, 0.408095736797927, 0.11529682880263803, 0.13359771811640497, 0.2417229185475579, 0.10092265889692065, 0.8181934133883563, 0.3777834313813965, 0.8273808576462511, 0.18439353202429143, 0.5148786056082297, 0.11287077888712382, 0.16015059460472458, 0.29672938182784603, 0.36944561074938853, 0.2505850522824452, 0.8467591712977676, 0.3840267097226593, 0.261779448872241, 0.1645479955558209, 0.14631295673285594, 0.4248523287309329, 0.09222807982804315, 0.2121484308544801, 0.33273366741371935, 0.5470626312455473, 0.8294144697045585, 0.25206662215500397, 0.15998368749433245, 0.548322128117227, 0.3917329141436472, 0.15981565308588508, 0.23631147082452741, 0.21082920466209698, 0.1871387197916503, 0.24774693401855818, 0.1913242313933492, 0.16437448769677154, 0.07582203648947516, 0.032541140295091364, 0.06311143057978008, 0.5009235508757715, 0.12343879567504301, 0.445735807756371, 0.40322837553658053, 0.09397553936597514, 0.1598391281143201, 0.26702494168661406, 0.19782301216908982, 0.06831823449824892, 0.5451167746582685, 0.20142160156100697, 0.25747632252511843, 0.4257317671215596, 0.5062318064185062, 0.10278357133077332, 0.10857266292312517, 0.06223864817381186, 0.11377411494697365, 0.14082424186384768, 0.2589321903149734, 0.31776639873426016, 0.07983414941561229, 0.30174211068680845, 0.42532907678292176, 0.23734670470511587, 0.2862296469110084, 0.24790288035387664, 0.5526146374040077, 0.20425399436950087, 0.5166825128498294, 0.12415322942140417, 0.5310696157212036, 0.3866387435262121, 0.14313186082947948, 0.31648660326859934, 0.026792916001305622, 0.7856428374245099, 0.42383310375799566, 0.5944566396871084, 0.6256605001243821, 0.08813642250468567, 0.03544811528140901, 0.06935406654889886, 0.15751976448865512, 0.22608551288474832, 0.3127311228465576, 0.1409438166611655, 0.3285615524533705, 0.3591330499592894, 0.47964497307801546, 0.7143146030302826, 0.14223944449319303, 0.06929054967731618, 0.32120711190509066, 0.16913647442041335, 0.707286257884667, 0.3230684446475647, 0.7616845263358343, 0.4104900542879092, 0.10053249234255524, 0.1106599594415556, 0.1543174595222413, 0.46003879185641183, 0.3811350878514418, 0.07185070571861518, 0.23882593985771994, 0.5344976262521839, 0.11031385635331636, 0.09610989844306939, 0.4955559099445003, 0.07845190603324759, 0.30697262074812925, 0.12767551958037127, 0.4375661224395835, 0.07737023387634634, 0.15307682457740834, 0.05694427046787409, 0.09028836937410878, 0.4011292297732457, 0.6186146927451245, 0.11561676905211238, 0.0993047499370594, 0.08102401279833105, 0.8100206966555492, 0.10768932514586738, 0.15386113005635593, 0.4026560765644126, 0.045535707525545144, 0.08229583319403, 0.08227601457953415, 0.8241544781987433, 0.0759900855540333, 0.5147505197509459, 0.11103147778198663, 0.42144961755966015, 0.24880465403270857, 0.3112403223054312, 0.3282460941643247, 0.28312386083977936, 0.2865521931047814, 0.16537364909659502, 0.4284132019637321, 0.34116073112729894, 0.051142721309942685, 0.10794707492381372, 0.1108646816717751, 0.29201805921023904, 0.07365131996157204, 0.36851051207096197, 0.2556143611338999, 0.07392456180697715, 0.045535707525545144, 0.15025986810093994, 0.4395989822566938, 0.19636656988846957, 0.21018464628148859, 0.15085686628779282, 0.3429118439192298, 0.16104008564300487, 0.2055862423584408, 0.18673310211333727, 0.5528531989583015, 0.20219789553586287, 0.5807830339134155, 0.6112381610839525, 0.07515362639458067, 0.5722084734915175, 0.3654892991508686, 0.1991057466826236, 0.4912569401667811, 0.05850610073101081, 0.3077884117234785, 0.17038242498240874, 0.14066607718466684, 0.10248584652416493, 0.4022873718442217, 0.07205214632436985, 0.35142291824287475, 0.10941760034103376, 0.06679271580157364, 0.05675388891699207, 0.058987921856350156, 0.3660303223369904, 0.28790374422385034, 0.4158290962648631, 0.40710291595796666, 0.09934102670994882, 0.06362846635195196, 0.30921476208988685, 0.23242198019285765, 0.055541210656895434, 0.5297663836663529, 0.10744632778983743, 0.18410212910939194, 0.17721960751489196, 0.1962664672709783, 0.1617648996714035, 0.10584426414108294, 0.5203501665477333, 0.07365131996157204, 0.31578819840495265, 0.35364190165315845, 0.1707951928721818, 0.41655733121321636, 0.15801546378512366, 0.7568436608419439, 0.22368578646300386, 0.0609449253562836, 0.2225096762928218, 0.18587673368692093, 0.05559101133196209, 0.569598540521716, 0.08073228430722412, 0.15724041301590164, 0.12879141548479, 0.4306817897420764, 0.17998791969802397, 0.41280880088413996, 0.5723062335690389, 0.6457404130724687, 0.10420061808672998, 0.12564769853034463, 0.21795029564941848, 0.4720930498870375, 0.11304202998506685, 0.545112257205237, 0.14852188644910969, 0.17217029085021085, 0.336250902618187, 0.48671482860553816, 0.5093433434984792, 0.35847801144896685, 0.3008706318705062, 0.18494609259573758, 0.4199330463236065, 0.04162287990776414, 0.2633909944023186, 0.4252182303976608, 0.4684623303117058, 0.1925553058603695, 0.09610989844306939, 0.09129843496680234, 0.3302708189676917, 0.4199330463236065, 0.11927294568859859, 0.4864154015695107, 0.06472081497616611, 0.6387929002666255, 0.37932906694235924, 0.093713747684541, 0.20627971812824875], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (curr)\", \"type\": \"scatter\", \"x\": [106.0, 196.0, 164.0, 47.0, 156.0, 167.0, 131.0, 14.0, 21.0, 25.0, 111.0, 85.0, 191.0, 207.0, 181.0, 133.0, 143.0, 42.0, 125.0, 131.0, 115.0, 219.0, 185.0, 225.0, 101.0, 110.0, 72.0, 174.0, 66.0, 163.0, 159.0, 166.0, 24.0, 73.0, 164.0, 135.0, 152.0, 39.0, 127.0, 128.0, 101.0, 44.0, 150.0, 171.0, 67.0, 177.0, 112.0, 38.0, 174.0, 40.0, 176.0, 139.0, 91.0, 33.0, 26.0, 49.0, 38.0, 23.0, 145.0, 201.0, 23.0, 216.0, 186.0, 26.0, 91.0, 11.0, 45.0, 34.0, 23.0, 42.0, 16.0, 182.0, 168.0, 23.0, 135.0, 111.0, 255.0, 61.0, 98.0, 84.0, 126.0, 21.0, 187.0, 143.0, 169.0, 59.0, 171.0, 184.0, 174.0, 102.0, 210.0, 134.0, 16.0, 213.0, 54.0, 9.0, 131.0, 148.0, 142.0, 216.0, 88.0, 167.0, 133.0, 38.0, 200.0, 9.0, 90.0, 26.0, 119.0, 197.0, 59.0, 148.0, 30.0, 189.0, 53.0, 166.0, 146.0, 144.0, 196.0, 44.0, 179.0, 132.0, 161.0, 102.0, 20.0, 94.0, 89.0, 123.0, 20.0, 201.0, 55.0, 227.0, 213.0, 56.0, 68.0, 178.0, 121.0, 13.0, 94.0, 126.0, 117.0, 169.0, 95.0, 77.0, 68.0, 149.0, 138.0, 12.0, 140.0, 166.0, 114.0, 212.0, 129.0, 176.0, 145.0, 117.0, 135.0, 183.0, 131.0, 213.0, 55.0, 173.0, 128.0, 116.0, 29.0, 90.0, 56.0, 92.0, 140.0, 150.0, 165.0, 114.0, 86.0, 178.0, 102.0, 107.0, 119.0, 220.0, 219.0, 158.0, 122.0, 157.0, 42.0, 84.0, 162.0, 161.0, 150.0, 116.0, 142.0, 149.0, 86.0, 102.0, 196.0, 83.0, 189.0, 35.0, 89.0, 142.0, 156.0, 97.0, 11.0, 201.0, 162.0, 198.0, 89.0, 183.0, 173.0, 15.0, 138.0, 160.0, 146.0, 106.0, 34.0, 106.0, 222.0, 80.0, 169.0, 172.0, 99.0, 60.0, 142.0, 202.0, 126.0, 216.0, 154.0, 119.0, 43.0, 199.0, 167.0, 143.0, 161.0, 129.0, 138.0, 145.0, 63.0, 167.0, 131.0, 129.0, 213.0, 101.0, 210.0, 31.0, 138.0, 162.0, 117.0, 190.0, 75.0, 105.0, 169.0, 70.0, 42.0, 186.0, 111.0, 153.0, 111.0, 133.0, 162.0, 238.5, 155.0, 38.0, 37.0, 101.0, 168.0, 168.0, 71.0, 186.0, 77.0, 113.0, 117.0, 164.0, 98.0, 28.0, 187.0, 148.0, 107.0, 108.0, 210.0, 72.0, 82.0, 136.0, 87.0, 161.0, 105.0, 197.0, 145.0, 148.0, 109.0, 126.0, 48.0, 66.0, 191.0, 147.0, 151.0, 85.0, 137.0, 31.0, 98.0, 192.0, 167.0, 22.0, 132.0, 47.0, 176.0, 226.0, 210.0, 131.0, 21.0, 105.0, 177.0, 181.0, 58.0, 191.0, 69.0, 145.0, 175.0, 162.0, 157.0, 197.0, 138.0, 80.0, 25.0, 20.0, 124.0, 164.0, 14.0, 151.0, 161.0, 6.0, 200.0, 168.0, 10.0, 166.0, 85.0, 148.0, 28.0, 85.0, 127.0, 133.0, 138.0, 104.0, 180.0, 121.0, 61.0, 63.0, 16.0, 49.0, 122.0, 106.0, 138.0, 112.0, 92.0, 128.0], \"xaxis\": \"x2\", \"y\": [0.18579927887031134, 0.9274202256360236, 0.2569067617886446, 0.17851375722123963, 0.43011516789686843, 0.3951880410340851, 0.35333307802371594, 0.854899199395705, 0.7749695319329993, 0.7150752736216004, 0.5793836726576811, 0.17187478758168062, 0.503776006633781, 0.6517104478925241, 0.5321166645488455, 0.4291031613352281, 0.6295132227815239, 0.446367751604861, 0.12978626497489776, 0.578130474122496, 0.1303225049324246, 0.4589423036505589, 0.6028673022099313, 0.6724998803801079, 0.055171077290688375, 0.28900585249094113, 0.5807441942986169, 0.6324527530146118, 0.32780881811994433, 0.4437792729685527, 0.47375733914823626, 0.6755390392614542, 0.8494338455743565, 0.8432302027568838, 0.3962269303969661, 0.36574887203466033, 0.9780529644634413, 0.6757083557066426, 0.43212531492562845, 0.6428319532862445, 0.2244465690609686, 0.6759712108962084, 0.300575337785698, 0.4848467547623382, 0.24353241802821812, 0.6165640897352094, 0.801889943514816, 0.6831580296641933, 0.4684052737322374, 0.07309555507266852, 0.17397747102053363, 0.548208100621717, 0.16948307959681597, 0.5287139706981401, 0.8097217619362252, 0.48186532860504816, 0.7044722268129955, 0.5458559966555334, 0.6067015953642416, 0.5767206748937392, 0.5416109283549078, 0.7766135747357961, 0.6371580804073698, 0.3290646799011723, 0.53941953634433, 0.7444876216695655, 0.27658524567301757, 0.8518717737266248, 0.685064206005921, 0.7994946846943811, 0.6254668451144636, 0.29898447003196504, 0.36566585814722175, 0.8260679099411251, 0.265003746926769, 0.18277705216857454, 0.6401445853260315, 0.2878944788643705, 0.7379395090268356, 0.6578861964269485, 0.3048731186933995, 0.6479177870210828, 0.5479007895539181, 0.8109237991420157, 0.4555798348891207, 0.35159410271621183, 0.6741813074403022, 0.40366163192193316, 0.3797333752177462, 0.42326140605337403, 0.49450075158901585, 0.7027754368270075, 0.31556666432085356, 0.5737052492708005, 0.5594846166878963, 0.9879213229528466, 0.23907110553933086, 0.7604887601700165, 0.906894853259191, 0.49150798334893764, 0.6693239074263375, 0.635181004157038, 0.4291031613352281, 0.6805197940362542, 0.8579270215873258, 0.42231028799440284, 0.7973836574204367, 0.6209099995125147, 0.617932351579841, 0.5867531689564582, 0.8217385626893267, 0.5766058512754557, 0.6085190813519714, 0.6488649586424557, 0.19466062481522506, 0.4062994677131635, 0.31500574198466447, 0.6106996692323751, 0.48314991346809855, 0.4300926711133176, 0.4623912750166579, 0.18141675383529432, 0.7404949196358439, 0.7960551628311661, 0.6696955469146251, 0.7471897031921468, 0.15222801432328747, 0.4782875749995391, 0.6696955469146251, 0.4617114467660769, 0.0374236133971757, 0.34638250956587036, 0.5737052492708005, 0.35412183815676124, 0.5342599897609015, 0.6273126624389191, 0.1819914526651868, 0.6450640502472667, 0.7576359910572065, 0.6363669366758954, 0.35783776888428775, 0.4555798348891207, 0.2603691587203709, 0.09638465351539516, 0.7889843001267657, 0.3995975535535492, 0.2404138117262561, 0.5134503976671381, 0.7620160241108803, 0.4852174766770502, 0.7934067722809752, 0.5657371707019572, 0.40591517497640706, 0.5142806824729376, 0.4667389755277017, 0.4597803030361328, 0.14211531046105408, 0.4709774325404933, 0.39253304933110444, 0.8152160844894966, 0.6418608562675732, 0.5695619245525361, 0.15898796250578873, 0.4189913516486339, 0.8097376625536354, 0.2776505479619531, 0.14100712613869515, 0.1625374057836978, 0.21879614767173305, 0.26016804821119, 0.5884346274074399, 0.25171266030158634, 0.5556828679884147, 0.2886326125606653, 0.5013044750460076, 0.23728971353361283, 0.6280660923097139, 0.6281218947904323, 0.6226708394296439, 0.1280348372312241, 0.37812375401711507, 0.6218606462016874, 0.446367751604861, 0.5237591509200082, 0.22560064672115399, 0.4159575064805634, 0.43989745285902637, 0.38133093816728936, 0.379388299643832, 0.4244201113870294, 0.8495234946343055, 0.44699506619782237, 0.3402560380560977, 0.16997778820688525, 0.6509841470756508, 0.5589353890471914, 0.49320900326902484, 0.41485179365651337, 0.2850172536812061, 0.5150740024049856, 0.7905789411902706, 0.6660097546858721, 0.5916856454756931, 0.25029771644034415, 0.21820707607863943, 0.23625780462752244, 0.6174344585079109, 0.33885175059010386, 0.8097775874289167, 0.5502791542248897, 0.45232673966787307, 0.5168725346003686, 0.4922951659433321, 0.2710495410551712, 0.5620189509382074, 0.19827785442852286, 0.35653263682836045, 0.4940220265254579, 0.3934632807735441, 0.349631294967786, 0.6543252873397565, 0.6043841099981286, 0.6572212454398962, 0.5323595728841377, 0.4667716613599331, 0.5480891857555714, 0.5933716837007499, 0.5769442381274095, 0.7796710482718338, 0.4721284230669528, 0.5632051337005155, 0.25606657060722404, 0.47304849589761655, 0.4991199345133047, 0.785831825438318, 0.5512091114854263, 0.31651464458218903, 0.192246895102814, 0.5737052492708005, 0.14970485751781393, 0.8257882443178004, 0.7450862811651306, 0.2404138117262561, 0.3428275867057816, 0.2186811050870735, 0.43730933466596944, 0.1325711740116582, 0.33994853494016564, 0.5172250338280965, 0.4543852880840521, 0.6017244994332274, 0.7267617626256621, 0.304103470637073, 0.49511795227452726, 0.4577650902534979, 0.4389063253281036, 0.3428275867057816, 0.6911248892501751, 0.5457123873353599, 0.3395528272139201, 0.5662837862370104, 0.38281068028313525, 0.1899488449656659, 0.1899488449656659, 0.39416742153886597, 0.4473524415330049, 0.5724944828663213, 0.12652799787397961, 0.14917046216496987, 0.4192276293132746, 0.1727250451072272, 0.7329347521090118, 0.2979855805324535, 0.5384433083808008, 0.2944152049751758, 0.5661013076544325, 0.39283078357423706, 0.6503174362647687, 0.7632350838020857, 0.29422440231251745, 0.8446099855685041, 0.3812461384129847, 0.1264117171095669, 0.6995051325026098, 0.7680829457938805, 0.1086082602083136, 0.50228427853815, 0.8303888649041977, 0.15145052047802054, 0.5239967242043768, 0.49461569007297057, 0.7323984730128237, 0.6372335578763709, 0.8485373319296128, 0.21018203617182263, 0.3854703692354019, 0.6209619763202376, 0.6996467359659702, 0.3913887983225227, 0.600932061108284, 0.18141675383529432, 0.32841971343371723, 0.17397747102053363, 0.3943097935149382, 0.5998672378660981, 0.6052803835931642, 0.35501406908939237, 0.4362847089434372, 0.6005057903956104, 0.45095984485898877, 0.5601124581139871, 0.6908342266509375, 0.29066967723125237, 0.5437491575180791, 0.5955595524057149, 0.4226516353037165, 0.552222307965348, 0.5038457784615318, 0.6752568781943777, 0.7880730680059006, 0.09430965090665133, 0.4986183600001317, 0.24112389044610405, 0.3635071851353404, 0.7047195247497422, 0.5251048099479148, 0.5632051337005155, 0.4520037684813636, 0.5271857161160298, 0.36566585814722175, 0.8775119234978208, 0.49474741138534273, 0.17187478758168062, 0.1069918390347242, 0.6371627391106971, 0.19018032574493748, 0.34352259564225396, 0.806114950115292, 0.47304849589761655, 0.5014153035286022, 0.6721952796384192, 0.7507248720260316, 0.38512814216859315, 0.8930847268109882, 0.863224561659591, 0.15108072818859253, 0.7399796913917198, 0.18579927887031134, 0.47304849589761655, 0.2033384066370545, 0.43667652058029827, 0.23252054766636898], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [101.0, 194.0, 126.0, 68.0, 94.0, 99.0, 97.0, 124.0, 95.0, 163.0, 32.0, 191.0, 111.0, 119.0, 127.0, 118.0, 38.0, 61.0, 28.0, 162.0, 212.5, 193.0, 74.0, 147.0, 179.0, 99.0, 127.0, 134.0, 93.0, 148.0, 74.0, 136.0, 178.0, 99.0, 121.0, 129.0, 76.0, 150.0, 81.0, 31.0, 124.0, 85.0, 156.0, 238.0, 27.0, 45.0, 135.0, 86.0, 212.0, 195.0, 18.0, 122.0, 137.0, 59.0, 175.0, 145.0, 181.0, 63.0, 165.0, 64.0, 64.0, 150.0, 105.0, 85.0, 100.0, 127.0, 144.0, 155.0, 89.0, 153.0, 189.0, 100.0, 117.0, 114.0, 113.0, 145.0, 174.0, 161.0, 38.0, 25.0, 87.0, 144.0, 60.0, 162.0, 143.0, 26.0, 55.0, 96.0, 172.0, 132.0, 143.0, 108.0, 115.0, 107.0, 117.0, 97.0, 28.0, 294.0, 10.0, 24.0, 126.0, 101.0, 22.0, 121.0, 189.0, 131.0, 105.0, 109.0, 117.0, 107.0, 75.0, 176.0, 112.0, 76.0, 138.0, 35.0, 153.0, 152.0, 136.0, 59.0, 158.0, 121.0, 44.0, 81.0, 60.0, 16.0, 53.0, 94.0, 26.0, 84.0, 82.0, 38.0, 98.0, 253.0, 74.0, 213.0, 12.0, 60.0, 169.0, 118.0, 166.0, 58.0, 35.0, 153.0, 204.0, 99.0, 190.0, 47.0, 134.0, 116.0, 98.0, 93.0, 94.0, 103.0, 116.0, 164.0, 47.0, 28.0, 92.0, 192.0, 65.0, 28.0, 86.0, 199.0, 20.0, 80.0, 148.0, 29.0, 48.0, 123.0, 100.0, 107.0, 41.0, 9.0, 88.0, 213.0, 129.0, 216.0, 111.0, 43.0, 131.0, 124.0, 117.0, 80.0, 141.0, 35.0, 28.0, 72.0, 170.0, 36.0, 124.0, 149.0, 92.0, 118.0, 133.0, 109.0, 76.0, 89.0, 190.0, 133.0, 98.0, 129.0, 245.0, 84.0, 191.0, 130.0, 99.0, 76.0, 134.0, 183.0, 116.0, 125.0, 34.0, 94.0, 35.0, 124.0, 90.0, 143.0, 174.0, 105.0, 125.0, 244.0, 15.0, 209.0, 189.0, 212.0, 118.0, 161.0, 59.0, 172.0, 65.0, 97.0, 84.0, 104.0, 33.0, 170.0, 99.0, 90.0, 140.0, 150.0, 114.0, 118.0, 132.0, 104.0, 54.0, 19.0, 155.0, 193.0, 111.0, 31.0, 150.0, 143.0, 145.0, 107.0, 105.0, 95.0, 126.0, 73.0, 111.0, 153.0, 15.0, 168.0, 111.0, 181.0, 172.0, 139.0, 110.0, 136.0, 189.0, 135.0, 104.0, 117.0, 51.0, 49.0, 113.0, 39.0, 148.0, 109.0, 102.0, 51.0, 26.0, 122.0, 104.0, 120.0, 114.0, 19.0, 132.0, 73.0, 145.0, 135.0, 47.0, 12.0, 132.0, 87.0, 125.0, 139.0, 94.0, 143.0, 139.0, 97.0, 119.0, 109.0, 163.0, 134.0, 178.0, 44.0, 95.0, 143.0, 180.0, 90.0, 129.0, 72.0, 32.0, 123.0, 81.0, 152.0, 214.0, 126.0, 117.0, 173.0, 204.0, 134.0, 156.0, 134.0, 65.0, 151.0, 114.0, 44.0, 164.0, 125.0, 28.0, 156.0, 28.0, 201.0, 106.0, 116.0, 182.0, 225.0, 142.0, 39.0, 142.0, 98.0, 188.0, 55.0, 27.0, 113.0, 87.0, 140.0, 33.0, 85.0, 158.0, 95.0, 169.0, 103.0, 191.0, 151.0, 28.0, 113.0, 163.0, 26.0, 95.0, 135.0, 55.0, 171.0, 21.0, 206.0, 113.0, 168.0, 173.0, 161.0, 97.0, 227.0, 107.0, 81.0, 17.0, 17.0, 96.0, 118.0, 38.0, 111.0, 118.0, 125.0, 143.0, 189.0, 98.0, 166.0, 135.0, 68.0, 12.0, 131.0, 172.0, 174.0, 128.0, 194.0, 108.0, 35.0, 155.0, 26.0, 87.0, 93.0, 187.0, 150.0, 158.0, 114.0, 120.0, 169.0, 130.0, 109.0, 149.0, 80.0, 23.0, 125.0, 81.0, 55.0, 185.0, 53.0, 245.0, 17.0, 122.0, 130.0, 75.0, 90.0, 34.0, 48.0, 15.0, 118.0, 151.0, 150.0, 85.0, 140.0, 85.0, 155.0, 84.0, 109.0, 17.0, 38.0, 172.0, 178.0, 93.0, 171.0, 229.0, 27.0, 146.0, 104.0, 89.0, 15.0, 60.0, 112.0, 47.0, 48.0, 136.0, 89.0, 141.0, 9.0, 154.0, 159.0, 113.0, 88.0, 158.0, 29.0, 179.0, 92.0, 181.0, 173.0, 160.0, 107.0, 151.0, 79.0, 132.0, 37.0, 170.0, 163.0, 50.0, 135.0, 98.0, 77.0, 172.0, 102.0, 135.0, 123.0, 143.0, 134.0, 85.0, 21.0, 182.0, 132.0, 28.0, 101.0, 25.0, 44.0, 100.0, 129.5, 43.0, 47.0, 40.0, 14.0, 125.0, 46.0, 11.0, 49.0, 118.0, 139.0, 229.0, 114.0, 53.0, 113.0, 200.0, 133.0, 88.0, 128.0, 70.0, 80.0, 113.0, 73.0, 152.0, 104.0, 45.0, 19.0, 206.0, 41.0, 173.0, 14.0, 97.0, 180.0, 147.0, 149.0, 135.0, 116.0, 150.0, 164.5, 21.0, 128.0, 178.0, 101.0, 16.0, 180.0, 14.0, 132.0, 10.0, 189.0, 156.0, 166.0, 10.0, 153.0, 49.0, 99.0, 68.0, 16.0, 80.0, 229.0, 225.0, 104.0, 122.0, 10.0, 57.0, 150.0, 69.0, 76.0, 102.0, 129.0, 95.0, 116.0, 168.0, 19.0, 173.0, 189.0, 142.0, 177.0, 71.0, 140.0, 110.0, 184.0, 152.0, 164.0, 105.0, 117.0, 124.0, 91.0, 181.0, 85.0, 181.0, 168.0, 128.0, 89.0, 167.0, 155.0, 20.0, 212.0, 78.0, 25.0, 35.0, 130.0, 129.0, 122.0, 7.0, 69.0, 120.0, 140.0, 83.0, 136.0, 157.0, 169.0, 221.0, 190.0, 113.0, 91.0, 13.0, 104.0, 136.0, 167.0, 99.0, 103.0, 159.0, 108.0, 91.0, 136.0, 103.0, 213.0, 189.0, 169.0, 107.0, 91.0, 112.0, 82.0, 114.0, 72.0, 84.0, 159.0, 17.0, 128.0, 16.0, 43.0, 87.0, 136.0, 140.0, 144.0, 74.0, 86.0, 145.0, 153.0, 127.0, 228.0, 112.0, 157.0, 140.0, 192.0, 114.0, 111.0], \"xaxis\": \"x2\", \"y\": [0.6660328535674787, 0.4955559099445003, 0.11251030999551548, 0.5313240922219649, 0.7616845263358343, 0.42881839881496897, 0.22146723198036844, 0.2709448900825402, 0.04188686298684474, 0.3198999677935893, 0.586632325439729, 0.3332859260788763, 0.0891770245136605, 0.07249138429342028, 0.0813041402249215, 0.2808128557304226, 0.18155424903412543, 0.14020593233116785, 0.20529540916933675, 0.1755850319354616, 0.5722846846512241, 0.4684623303117058, 0.2863708053899042, 0.4489302200945696, 0.3606737334686688, 0.09834172337505831, 0.1439119889738254, 0.10526388551166177, 0.08976738859769384, 0.15927641460572795, 0.07353544332944184, 0.4894096639868448, 0.24735122968283396, 0.41440459167745447, 0.10107859516115147, 0.4809249647595707, 0.043928674649753696, 0.27268427565697984, 0.07203278686513981, 0.35989685204578803, 0.08410225657903847, 0.09640449279894714, 0.2859044620344169, 0.766491644508495, 0.27194216744256416, 0.11891721880979944, 0.6033870782914414, 0.8445823904457724, 0.4148378249676725, 0.09538880480821377, 0.5822786697287807, 0.2006236885231063, 0.30215903380660414, 0.3526626332448971, 0.22921561702294402, 0.3499358724503807, 0.451050436906263, 0.01968005574460141, 0.3849224947932618, 0.608666907839271, 0.30333177217190177, 0.05732515971384944, 0.08299070223644744, 0.155374347961305, 0.4378217303747408, 0.10641916767178827, 0.3207785913922725, 0.3280003244598044, 0.4747408725557203, 0.27229542413121455, 0.5314247042003052, 0.13834506443323813, 0.652508483608137, 0.1775869136191267, 0.4659209431511335, 0.3288332341233703, 0.47224603889779837, 0.2773569186284155, 0.18590272545123854, 0.6719763059805124, 0.04569198037744582, 0.22473444069733528, 0.0776074933333939, 0.1411968215808168, 0.3654892991508686, 0.06069899520469324, 0.21029328672965164, 0.13919371635861133, 0.16321149678759816, 0.6144435769482088, 0.1388055550317996, 0.0827658987104557, 0.0793107693477757, 0.04994940743047871, 0.46220165202879504, 0.08265172102971341, 0.5554564865761329, 0.10902951494304747, 0.26480674198345266, 0.31816712550642645, 0.20184400370343658, 0.23734670470511587, 0.19264674509953905, 0.03558879485690103, 0.5314247042003052, 0.3013473679880785, 0.8043030592862955, 0.07665185966197174, 0.17816243980233548, 0.14637302723887635, 0.43623195291339645, 0.5773286546676725, 0.06996409198491005, 0.0635191394270278, 0.11839391684253864, 0.03368970372860669, 0.16544292122901683, 0.5002106013252752, 0.20783967621931676, 0.4413184352618238, 0.1377753535318076, 0.017128038770129694, 0.09070427960766203, 0.05237321155563324, 0.46044782253877736, 0.09863911308639095, 0.6058955548956951, 0.07377868677997379, 0.33726125667837825, 0.03705661785513226, 0.03856885477325478, 0.01970319875133708, 0.06623921298607705, 0.655672818127978, 0.36403826442427, 0.375635621083512, 0.25822104517587474, 0.26990817233175546, 0.30316845466795117, 0.21597661143113533, 0.10411587283779344, 0.4582573305440075, 0.28974208538397184, 0.3995654588450376, 0.48407929824265805, 0.2412117545349558, 0.49704114689177337, 0.3112403223054312, 0.13571503940671914, 0.35304273602320047, 0.18963603484652192, 0.06023564559469896, 0.305863422303413, 0.34062746964654456, 0.03532029949184434, 0.20200996882548472, 0.207876095289533, 0.11304202998506685, 0.26487496820305634, 0.46674395287949066, 0.05931266843465788, 0.6063731497207538, 0.053339747820140615, 0.16056749669580483, 0.3366557342021428, 0.18735912995827353, 0.2667542380283816, 0.9197592959547904, 0.13322255285490225, 0.3533185668595151, 0.08763312389948397, 0.343329095265401, 0.1298321532292276, 0.11240742021865013, 0.03412749239977686, 0.23316671381479437, 0.13955591125269062, 0.065615492475942, 0.03940539431326806, 0.04874684240881699, 0.42507109047861347, 0.3720756994829524, 0.20627971812824875, 0.23346983492740092, 0.299872058778726, 0.14688925552714138, 0.20529540916933675, 0.11294333341234963, 0.4523771212155355, 0.15895981664313275, 0.12633289347617382, 0.34801013400503944, 0.063056887931354, 0.09222807982804315, 0.19281104432210028, 0.11843845992675284, 0.1064686731970873, 0.12171087020281346, 0.49704114689177337, 0.4202798549667376, 0.058322454167927695, 0.40418598015134155, 0.7514842711311043, 0.067978575311199, 0.1468497162592186, 0.3655805321171328, 0.36741292271676196, 0.08785516413846428, 0.4223454464089015, 0.09472348251934337, 0.14196098925812006, 0.10013555988874479, 0.32154631204965056, 0.05416575683382341, 0.786126361492164, 0.04696516601190348, 0.26926088858349784, 0.28123172687107445, 0.3094364396730669, 0.04307250962973752, 0.07126159086244754, 0.6143015945908075, 0.495586079448059, 0.46102608015166635, 0.40789311683600216, 0.8929715185951024, 0.1227006502272181, 0.3638055988942468, 0.10470002869891348, 0.29304213908849364, 0.8936703981375603, 0.3534407380188983, 0.0883666731866185, 0.07895584641700149, 0.05166417783587085, 0.4199775765299997, 0.10304865631077798, 0.1041340676595982, 0.11031385635331636, 0.22368578646300386, 0.22137255536682798, 0.0725394352715707, 0.08320759746190642, 0.3577905591727162, 0.36362749207413336, 0.13058702032609693, 0.4306817897420764, 0.4684623303117058, 0.3185463047756948, 0.6991046594229053, 0.33105510290791684, 0.35804773811787727, 0.3499358724503807, 0.17780319308126435, 0.07142366539796174, 0.1504846162366139, 0.28643330026545544, 0.11492102279820171, 0.08716328114311156, 0.12905574960179156, 0.5528531989583015, 0.2852168598030531, 0.3185463047756948, 0.41766807389819915, 0.22818770291371737, 0.10749415552266317, 0.07500089027222667, 0.2150933620687273, 0.4879833184669665, 0.21367083697314282, 0.18281788227943807, 0.11217648511765432, 0.01860460444149037, 0.4990100838788346, 0.3212979959143686, 0.7252893191599291, 0.30018855716775616, 0.2808216200321265, 0.24332849241566534, 0.22583693263898685, 0.307128141019565, 0.12930297020615966, 0.07734813107736227, 0.38078614076753503, 0.037937415915298756, 0.18389331462546077, 0.2015421194948802, 0.10121634311933059, 0.7209948827487924, 0.252131738577411, 0.19866278493931944, 0.5569604587758099, 0.19172534874952063, 0.07516041810443141, 0.18673310211333727, 0.20736440356309183, 0.27568985010185776, 0.1748501221961516, 0.134246332983591, 0.12151400729184814, 0.03860330573341564, 0.16198960071610413, 0.062309112953929935, 0.14943540958877521, 0.46827469198568006, 0.12435295831370408, 0.11768791031746062, 0.10794707492381372, 0.04347111427796346, 0.07423675680829, 0.1602542791395647, 0.19911642350143877, 0.2379444352717226, 0.36664322039668684, 0.10130143557253446, 0.17108028607870185, 0.6143194513817134, 0.5641235853966853, 0.29864316680665437, 0.44752301946823647, 0.13459844499503626, 0.037461465199631894, 0.5002964248569376, 0.4059565893810353, 0.7035957096210382, 0.0629603198376949, 0.25036415064992923, 0.14780834332950044, 0.24800647860056513, 0.10438723399855232, 0.24366911510822187, 0.4574644219698093, 0.8347014835967527, 0.42226245660703365, 0.4073158502222598, 0.47525484003715535, 0.37845934883934684, 0.35325777167774697, 0.4763432908647238, 0.18941100564626978, 0.23853527246002126, 0.27277355193056574, 0.5556171757583562, 0.19481513110659687, 0.7460207524242459, 0.12627308236197843, 0.2115813466591615, 0.4773837842994688, 0.22238536240250728, 0.1978655273089749, 0.32057959349203036, 0.1601330373243487, 0.6256605001243821, 0.34062746964654456, 0.5899158924001677, 0.1273375405407705, 0.6866376712310945, 0.3812864953771038, 0.07918534602430627, 0.10510921928053807, 0.052405178286905496, 0.29010285216427345, 0.5802968836962079, 0.4475494904811408, 0.33107045093633036, 0.6046547135519548, 0.33132995382553565, 0.3391582818855403, 0.37109937806185267, 0.18876467901964422, 0.03244681540368277, 0.6531311156123596, 0.18281848038190407, 0.06840545126676123, 0.23876166598551407, 0.5602062902528231, 0.05478334190217349, 0.18965009362393503, 0.502081053312289, 0.0945975060483667, 0.24937367783354814, 0.14040338921272166, 0.09582424632391484, 0.4879833184669665, 0.07536550594022651, 0.37763546052463404, 0.20240400638142053, 0.06234715971662652, 0.1729504208160284, 0.2536573606029918, 0.1491704939138675, 0.47224603889779837, 0.20734784509414073, 0.1656619584420439, 0.20263687678412212, 0.4576701693643329, 0.3746187330143109, 0.06578487521364562, 0.09359041291034786, 0.15714155813810793, 0.43198081216185935, 0.17693664965610134, 0.14200602748771296, 0.16878839641400256, 0.11131318694256087, 0.43040972974554736, 0.12494266711040569, 0.5286591337585229, 0.3917329141436472, 0.14284790216410748, 0.29931895876037384, 0.3998656181534954, 0.13198036366642862, 0.2166851793268345, 0.164669749255824, 0.3116999397838065, 0.5702002297218003, 0.2867818412254799, 0.05809024612643199, 0.0701620515557333, 0.10493669218879953, 0.03474255021640338, 0.14069518845012563, 0.7697788668098057, 0.44513161239284327, 0.12104291767226882, 0.2823656727566666, 0.28640273091276736, 0.09904459769556595, 0.10889384421684001, 0.1978655273089749, 0.6326587477498924, 0.0766186874204361, 0.07300117689776386, 0.3978521493117628, 0.7293533971641823, 0.24040337450518035, 0.46827469198568006, 0.03737110954461231, 0.48112847828662497, 0.5755848065786346, 0.12151472907643468, 0.332302417201758, 0.3208349144509022, 0.13406270144296106, 0.47820199098358873, 0.024219732643774528, 0.7923035912680444, 0.3099424932714111, 0.8494816644677875, 0.15230116664989468, 0.8795672599938588, 0.34536882843285344, 0.587897812361327, 0.3660303223369904, 0.3074082248441362, 0.1925553058603695, 0.1582957933341015, 0.5297945963993664, 0.1892543681582496, 0.06574637766643598, 0.03286461121245521, 0.6223124217546917, 0.48666930315350876, 0.17200815643270417, 0.27042696199957883, 0.16010429726024444, 0.25291734909108765, 0.22778758435893687, 0.6055190518965303, 0.41989528411161425, 0.2865861541738164, 0.17344095530188786, 0.4163761941495938, 0.24610426408478792, 0.029106329843254564, 0.5849270471051293, 0.09607886499379148, 0.4890296174547498, 0.11193395874659995, 0.3667485749721523, 0.29672938182784603, 0.13696827462710404, 0.03986507081677082, 0.41542023534722683, 0.1642424989032959, 0.041559354155004224, 0.1266666793707928, 0.5259198205822933, 0.42123490919744344, 0.6147437654518444, 0.42849246998341506, 0.04874684240881699, 0.16870816563337898, 0.35179373534084035, 0.4552463954734379, 0.1543174595222413, 0.4641274821418986, 0.1106599594415556, 0.40441066041397966, 0.05916303638108533, 0.24194101851814365, 0.5755848065786346, 0.23631147082452741, 0.04679471849088612, 0.33132995382553565, 0.6031606095022326, 0.16900214819844117, 0.9322526967181247, 0.1065938389205352, 0.0540586741766943, 0.14920224829950646, 0.03054451782098533, 0.13595064656866984, 0.15908339514281045, 0.09402391562754642, 0.27219479721363327, 0.10477531970828624, 0.6046547135519548, 0.04412971358840656, 0.0821245873848182, 0.24953715645213048, 0.24311299470472425, 0.679537413518331, 0.02875041056121841, 0.2874129658970298, 0.17131102264191878, 0.07042427222914205, 0.1577516063520068, 0.39934634677258996, 0.42249259173992826, 0.24940231538328683, 0.46827469198568006, 0.040988937643475554, 0.034828704291737345, 0.26663563965858417, 0.22421743312747255, 0.10716094829621758, 0.7421831263598226, 0.4644511163280224, 0.1591307416719686, 0.21502194578256428, 0.12883185373794437, 0.15520095945599266, 0.04280666734842442, 0.06928764484923078, 0.3578757504587543, 0.0760792945579073, 0.06637805380770656, 0.5755848065786346, 0.4326356954473739, 0.16985579355455038, 0.47152805642545803, 0.11644579282256762, 0.11790522998710073, 0.5438286352264949, 0.41561805514360906, 0.050606352251634235, 0.21836830194439782, 0.22298545275517268, 0.1504846162366139, 0.16819644397314482, 0.47796113776613436, 0.14100197907825862, 0.7878397890034206, 0.12176963827920351, 0.09814942480303201, 0.23162396036129984, 0.04400104962869911, 0.061588508633294015, 0.2774601068082493, 0.40816383821078206, 0.14036214651023216, 0.11837607594274324, 0.0703155477214753, 0.17002415827487982, 0.24611532014486182, 0.06874641727313702, 0.30975746960573625, 0.07004288447243323, 0.6453829176356538, 0.3880412370469972, 0.10205495289732236, 0.12171087020281346, 0.38550692709735157, 0.4398162761337091, 0.5769741243450848, 0.48842976274850136, 0.3866799681687785, 0.17129518728202664, 0.5711206597512044, 0.4456070955069118, 0.4585850027539752, 0.25462747480751524, 0.34771016550763867, 0.35548618548401445, 0.07878090041588082, 0.3008706318705062, 0.08117751180329491, 0.055511805197920094, 0.1600174453683395, 0.35597309965685686, 0.5473978930443646, 0.3321771897262046, 0.14643302530661162, 0.7653011157176768, 0.24188431843396252, 0.16704799028757666, 0.41136103198090634, 0.5749869949413896, 0.709238838470871, 0.09340318303147321, 0.602429869503323, 0.04154705947390969, 0.7519582179986716, 0.15993940416551844, 0.04372375151311325, 0.4076899811241429, 0.4644511163280224, 0.3133137248525114, 0.24628490675063597, 0.06972977174174444, 0.15949948541388637, 0.2241543425141257, 0.1729876202034616, 0.07290025122558275, 0.1220000714032804, 0.36493953208423235, 0.09420126302076737, 0.026726938234992392, 0.7199273032686843, 0.4606762448039463, 0.04906818437448113, 0.19446415942665518, 0.14876853598344464, 0.3247816953453747, 0.023320858692869595, 0.7310618090422621, 0.48944479260603346, 0.20357574295749958, 0.0840537250624015, 0.5368744051465595, 0.21101467800102214, 0.46682279298460017, 0.3749869638443927, 0.46592999202179275, 0.10188412989688433, 0.15751976448865512], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"total.sulfur.dioxide\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"total.sulfur.dioxide\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}, \"All_density\": {\"data\": [{\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Reference<br>density=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [0.992, 0.9964, 0.99097, 0.99511, 0.9934, 0.99558, 0.98894, 0.9909, 0.9902, 0.98994, 0.9926, 0.99458, 0.9951, 1.0, 0.9955, 0.9954, 0.99, 1.0032, 0.99002, 0.99364, 0.99566, 0.99175, 0.9928, 0.99085, 0.9938, 0.9938, 0.98742, 0.9955, 0.9942, 0.9892, 0.9911, 0.99728, 0.9914, 0.99035, 0.99076, 0.99855, 0.9969, 0.98892, 0.99015, 0.99089, 0.98954, 0.9945, 0.9971, 0.99245, 0.99676, 0.9972, 0.9978, 0.992, 0.9962, 0.9906, 0.9978, 0.9991, 0.98998, 0.99304, 0.992, 0.9979, 0.99201, 0.98941, 0.992, 0.992, 0.99758, 0.99016, 0.991, 0.993, 1.001, 0.9984, 0.99064, 0.9941, 0.9954, 0.99146, 0.9918, 0.98934, 0.99278, 0.99316, 0.9965, 0.99556, 0.9973, 0.98928, 0.99638, 0.9916, 0.995, 0.99012, 0.99109, 0.997, 0.9935, 0.99096, 0.9918, 0.9982, 0.9896, 0.9984, 0.9919, 0.9918, 0.9942, 0.9912, 0.99471, 0.99241, 0.99567, 0.98959, 0.98984, 0.9946, 0.9934, 0.9986, 0.99638, 0.9951, 0.98914, 0.9938, 0.9925, 0.9946, 0.99058, 0.99472, 0.99002, 1.0103, 0.99208, 0.99666, 0.99202, 0.9889, 0.99034, 0.98974, 0.999, 0.99534, 0.99808, 0.9924, 0.9974, 0.998, 0.99678, 0.99538, 0.9958, 0.9974, 0.9931, 0.9983, 0.9934, 0.98746, 0.9998, 0.99624, 0.9966, 0.98976, 0.99834, 0.99627, 0.98968, 0.998, 0.99007, 0.9945, 0.99452, 0.9935, 0.9984, 0.9938, 0.99279, 0.9905, 0.9948, 0.9974, 0.99792, 0.998, 0.99256, 0.99775, 0.99835, 0.99189, 0.99033, 0.9908, 0.9931, 0.98972, 0.9949, 0.99616, 0.99014, 0.9974, 0.9938, 0.9962, 0.99642, 0.9942, 0.9977, 0.9894, 0.99566, 0.9964, 0.993, 0.99507, 0.9964, 0.9948, 0.9964, 0.9939, 0.99174, 0.99736, 0.99462, 0.99, 0.99458, 0.9895, 0.9949, 0.991, 0.98758, 0.9973, 0.9912, 0.9932, 0.99183, 0.99378, 0.9918, 0.99269, 0.99744, 0.9901, 0.99353, 0.99178, 0.99041, 0.99184, 0.9948, 0.9916, 0.9926, 0.99504, 0.99394, 0.99408, 0.9974, 0.9944, 0.99807, 0.9982, 0.9928, 0.9916, 0.99111, 0.99215, 0.99089, 0.9934, 0.99112, 0.9938, 0.99276, 0.98954, 0.9926, 0.9997, 0.9923, 0.9907, 0.99814, 0.9938, 0.9986, 0.99945, 0.993, 0.99471, 0.99235, 0.9928, 0.99379, 0.99522, 0.99224, 0.99324, 0.9922, 0.9954, 0.9908, 0.99397, 0.99558, 0.9979, 0.9931, 0.99955, 0.99588, 0.9938, 0.9937, 0.99776, 0.9953, 0.98994, 1.0003, 0.9986, 0.9982, 0.99672, 0.99674, 0.99278, 0.99022, 0.99396, 0.9912, 0.9948, 0.9973, 0.9911, 0.99153, 0.991, 0.99119, 0.9911, 0.991, 0.99652, 0.99489, 0.98942, 0.99144, 0.9949, 0.99254, 0.99252, 0.98919, 0.99784, 0.99469, 0.99523, 0.99378, 0.99212, 0.9941, 0.9911, 0.99008, 0.98963, 0.99116, 0.99545, 0.99946, 0.997, 0.9971, 0.99044, 0.9924, 0.9916, 0.99408, 0.99174, 0.9937, 0.9955, 0.9972, 0.9921, 0.99199, 0.994, 0.99387, 0.99462, 0.992, 0.9928, 0.994, 0.99534, 0.9945, 0.99057, 0.9999, 0.99274, 0.99685, 0.9983, 0.99362, 0.9923, 0.9925, 1.0002, 0.9942, 0.98912, 0.99094, 0.9892, 0.98914, 0.9908, 0.9918, 0.9927, 0.9917, 0.9972, 0.9954, 0.99546, 0.9974, 0.99198, 0.99308, 0.99066, 0.9986, 0.99464, 0.9917, 0.99954, 0.99202, 0.99414, 0.9982, 0.9952, 0.9962, 0.9934, 0.9891, 0.9941, 0.99573, 0.9936, 0.9967, 0.99685, 0.98918, 0.9986, 0.99518, 0.9932, 0.99469, 0.99109, 0.99705, 0.9917, 0.9964, 0.98987, 0.9996, 0.9904, 0.99886, 0.9924, 0.997, 0.99494, 0.99745, 0.99606, 0.98999, 0.9909, 0.99615, 0.9975, 0.9926, 0.9918, 0.9929, 0.9948, 0.99036, 0.99228, 0.98984, 0.99822, 0.99299, 0.9987, 1.0015, 0.99563, 0.9984, 0.9984, 0.9957, 0.99194, 1.00369, 0.993, 0.9952, 0.99035, 0.9916, 0.99896, 0.9945, 0.9927, 0.9954, 0.99549, 0.9922, 1.00295, 0.98956, 0.9973, 0.9961, 0.997, 0.99352, 0.9994, 0.99238, 0.99524, 0.9927, 0.9917, 0.9914, 0.9957, 0.99304, 0.99331, 0.99108, 0.992, 0.9923, 0.99064, 0.9921, 0.999, 0.99392, 0.9944, 0.99546, 0.99326, 0.995, 0.99792, 0.99534, 0.9908, 0.99158, 0.99136, 0.99122, 0.9928, 0.9931, 0.99063, 0.99024, 0.9898, 0.993, 0.98816, 0.9965, 0.99586, 0.9925, 0.9986, 0.9912, 0.9916, 0.99132, 0.996, 0.99358, 0.9938, 0.9977, 0.9934, 0.9978, 0.99074, 0.99048, 0.9898, 0.98994, 0.99342, 0.9966, 1.0004, 0.9948, 0.99514, 0.99596, 0.99602, 0.9986, 0.9971, 1.0003, 1.00051, 0.99084, 0.99566, 0.9927, 0.9912, 0.99581, 0.995, 0.9972, 0.99656, 0.9965, 0.99975, 0.99052, 0.989, 0.9916, 0.99455, 0.99393, 0.9924, 0.9946, 1.00038, 0.99906, 0.9958, 0.99475, 0.9935, 0.9906, 0.99835, 0.98883, 0.9932, 0.99863, 0.99686, 0.99322, 0.99678, 0.99331, 0.9925, 0.9978, 0.99392, 0.99105, 0.99384, 0.99596, 0.99216, 0.99321, 0.9979, 0.99124, 0.99472, 0.98946, 0.9945, 0.98926, 0.9925, 0.9898, 0.99066, 0.99587, 0.9984, 0.98942, 0.98876, 0.99045, 0.9975, 0.9913, 0.9906, 0.99416, 0.98794, 0.9925, 0.9911, 0.99675, 0.98931, 0.9983, 0.992, 0.99658, 0.99136, 0.9991, 0.9964, 0.992, 0.99658, 0.9923, 0.9965, 0.9952, 0.99461, 0.99287, 0.9918, 0.9944, 0.98944, 0.9976, 0.9953, 0.99074, 0.98794, 0.99643, 0.9954, 0.99114, 0.99374, 0.99218, 0.9948, 0.993, 0.9966, 0.99152, 0.99498, 0.9925, 0.99615, 0.99715, 0.99056, 0.9937, 0.9965, 0.9906, 0.9982, 0.99157, 0.9919, 0.99157, 0.9953, 0.9898, 0.99543, 0.9899, 0.9937, 0.99203, 0.99036, 0.99008, 0.9892, 0.99971, 0.992, 0.99785, 0.9927, 0.99044, 0.9912, 0.995, 0.995, 0.9942, 0.99522, 0.98856, 0.9939, 0.9927, 0.99095, 0.9972, 0.98946, 0.99542, 0.98944, 0.9985, 0.99411, 0.99266, 0.9962, 0.99268, 0.9971, 0.9917, 0.9925, 0.9968, 0.99142, 0.9964, 0.9979, 0.99214, 0.99737, 0.9917, 0.99807, 0.99334, 0.99798, 0.99558, 0.9972, 0.98946, 0.99543, 0.9934, 0.9938, 0.9947, 0.9969, 0.99752, 0.99082, 0.9983, 0.9962, 0.99692, 0.9928, 0.998, 0.9909, 0.99494, 0.98987, 0.99578, 0.997, 0.9986, 0.99544, 0.99321, 0.99072, 0.9985, 0.99494, 0.99118, 0.9968, 0.99112, 1.0004, 0.9907, 0.9921, 0.9934], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Current<br>density=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [0.9934, 0.9979, 0.99234, 0.9932, 0.99686, 0.9927, 0.9926, 0.99362, 0.989435, 0.99239, 1.0, 0.9908, 0.98918, 0.99168, 0.98904, 0.9932, 0.99438, 0.99189, 0.999, 0.9903, 0.999, 0.9986, 0.992, 0.9935, 0.99541, 0.9893, 0.99326, 0.99146, 0.99144, 0.99165, 0.98889, 0.9957, 0.9992, 0.99449, 0.98871, 0.9936, 0.9914, 0.99488, 0.98988, 0.995, 0.99123, 0.99014, 0.9958, 0.9986, 0.9974, 0.99417, 0.9998, 0.9968, 0.9969, 0.9908, 0.9972, 0.9917, 0.9946, 0.9922, 0.99376, 1.0006, 0.998, 0.9916, 0.99795, 0.99652, 0.99724, 0.99727, 0.99206, 0.99406, 0.99534, 0.98964, 0.9966, 0.9951, 0.99236, 0.9945, 0.9986, 0.99064, 0.99815, 0.99313, 0.9983, 0.99668, 0.99922, 0.99207, 0.9949, 0.9975, 0.98972, 0.9923, 0.99492, 0.9914, 0.9965, 0.99536, 0.99652, 0.99456, 0.9932, 0.994, 0.99526, 0.9934, 0.9904, 0.98836, 0.9931, 0.99148, 0.99704, 0.99018, 0.9968, 0.99376, 0.993, 0.99596, 0.99438, 0.98882, 0.9986, 0.99566, 0.996, 0.99262, 0.99132, 0.99159, 0.99551, 1.0103, 0.99144, 0.9893, 0.99171, 0.9934, 0.99238, 0.9934, 0.99552, 0.9989, 0.99322, 0.98976, 0.99384, 0.99, 0.99638, 0.99649, 0.9981, 0.991, 0.9984, 0.98961, 0.98961, 0.9933, 0.98918, 1.00014, 0.9931, 1.0006, 0.99667, 0.9979, 0.99252, 0.9917, 0.9943, 0.995, 0.9994, 0.99576, 0.99745, 0.9916, 0.9993, 0.9991, 0.993, 0.9927, 0.99564, 0.99094, 0.997, 0.9987, 0.98954, 0.9912, 0.99676, 0.9947, 0.99232, 0.9979, 0.9898, 0.9983, 0.98934, 0.99394, 0.9992, 0.9913, 0.99458, 0.9959, 0.99554, 0.9932, 0.99099, 0.9923, 0.99665, 0.99738, 0.9907, 0.9927, 0.991, 0.99154, 0.98872, 0.99444, 0.9943, 0.99646, 0.9934, 1.0002, 0.9956, 0.99314, 0.999, 0.9908, 1.001, 0.9949, 0.99278, 0.9984, 0.99076, 0.99064, 0.9931, 0.9918, 0.99173, 0.9893, 0.9993, 0.99612, 0.9914, 0.99312, 0.9937, 0.9929, 0.99294, 0.9928, 0.9947, 0.999, 0.993, 0.99742, 0.99224, 0.98986, 0.9948, 0.98998, 1.0006, 0.99162, 0.99232, 0.9914, 0.9922, 0.99, 0.9914, 0.9956, 0.9975, 0.99544, 0.9994, 0.9971, 0.99134, 0.9941, 0.99617, 0.99194, 0.99842, 0.9951, 0.994, 0.9922, 0.9956, 1.0004, 0.99031, 0.99164, 0.99216, 0.9917, 0.9938, 0.99176, 0.99313, 0.9959, 0.9956, 0.996, 0.99807, 0.9986, 0.9931, 0.9984, 0.9948, 0.9983, 1.0006, 0.9912, 0.99581, 0.99676, 0.9933, 0.99095, 0.98924, 0.99067, 0.99498, 0.9946, 0.9931, 0.99435, 0.9938, 0.99055, 0.9912, 0.99516, 0.9958, 0.9968, 0.99454, 0.99182, 0.98878, 0.9988, 0.9962, 0.9977, 0.9932, 0.99498, 0.99154, 0.99512, 0.9979, 0.99088, 0.99161, 0.99494, 0.99158, 0.9963, 0.99188, 0.99035, 0.9945, 0.9924, 1.0003, 0.9994, 0.99655, 0.98974, 0.99152, 0.99296, 0.99782, 0.99173, 0.9975, 0.9924, 0.98944, 0.9932, 0.99184, 0.9912, 0.9976, 0.99534, 0.98986, 0.99287, 0.991, 0.99047, 0.99691, 0.99165, 0.99646, 0.99708, 0.9902, 0.99178, 0.9963, 0.99232, 0.9938, 0.9934, 0.99176, 0.99408, 0.99572, 0.9998, 1.0026, 0.99, 0.992, 0.99734, 0.9975, 0.99204, 0.99492, 0.99666, 0.9994, 0.997, 0.99288, 0.994, 0.9996, 0.99685, 0.9958, 0.99346, 0.99215, 0.99521, 0.9974, 0.9956, 0.9967, 0.99406, 0.9936, 0.9926, 0.9982, 0.99086, 0.9955, 0.99158, 0.99975, 0.9987, 0.9966, 0.9926, 0.99815, 0.99366, 0.99706, 0.99358, 0.99071, 0.99582, 0.9988, 0.9986, 0.99551, 0.9956, 0.99862, 0.9957, 0.99882, 0.99324, 0.98823, 0.9952, 0.992, 0.99043, 1.0002, 0.99655, 0.98942, 0.99356, 0.99553, 0.99315, 0.9954, 0.9928, 0.99226, 0.9958, 0.99, 0.9948, 0.992, 0.9898, 0.99354, 0.99186, 0.99404, 0.99922, 0.992, 0.9988, 0.9939, 0.99557, 0.9999, 0.99531, 0.9903, 0.992, 0.9938, 0.991, 0.9907, 0.99784, 0.98952, 0.998, 0.9952, 0.99148, 0.99792, 0.99058, 0.9974, 0.99282, 0.9923, 0.9927, 0.99519, 0.9967, 0.9951, 0.99683, 0.99165, 0.99176, 0.99006, 0.99002, 0.99736, 0.99612, 0.9987, 0.9908, 0.9946, 0.99445, 0.98965, 0.9904, 0.99086, 0.9934, 0.99046, 0.9902, 0.99774, 0.9984, 0.996, 0.9976, 0.991, 0.99808, 0.9986, 0.9934, 0.9963, 0.9954, 0.98956, 0.9988, 0.99084, 0.99314, 0.99522, 0.99739, 0.99704, 0.9959, 0.9941, 0.99458, 0.99971, 0.9919, 0.99544, 0.99094, 0.9992, 0.99416, 0.99189, 0.98936, 0.99352, 0.9984, 0.99276, 0.9939, 0.9926, 0.993, 0.9928, 0.9966, 0.9944, 0.9952, 0.99467, 0.9984, 0.9943, 0.99381, 0.9946, 0.99121, 0.99174, 0.99052, 0.9944, 0.9927, 0.9962, 0.99552, 0.9958, 0.994, 0.99184, 0.98916, 0.99581, 0.99522, 0.9957, 0.9998, 0.99444, 0.99599, 0.9944, 0.9982, 0.9925, 0.9979, 0.99331, 0.9997, 0.99018, 0.99517, 0.9986, 0.9908, 0.98815, 0.99862, 0.99566, 0.9906, 0.9984, 0.9916, 0.99418, 0.992, 0.98779, 0.9915, 0.9934, 0.99, 0.99824, 0.9986, 0.9956, 0.99439, 0.9887, 0.9968, 0.9906, 0.9965, 0.9901, 0.99772, 0.9948, 0.991, 0.9947, 0.9984, 0.99572, 0.99388, 0.9976, 0.989315, 0.99358, 0.9926, 0.9978, 0.996, 0.99636, 0.99784, 0.99316, 0.99339, 0.99724, 0.9921, 0.98845, 0.99437, 0.99708, 0.99614, 0.98992, 0.9986, 0.9997, 0.99362, 0.9928, 0.99552, 0.99115, 0.99508, 0.99556, 0.98964, 0.9903, 0.99221, 0.99676, 0.9954, 0.99825, 0.99546, 0.9948, 0.991, 0.9945, 0.99479, 0.98912, 0.99042, 0.9963, 0.99787, 0.9916, 0.99742, 0.9893, 0.99158, 0.9954, 0.99172, 0.9925, 0.9906, 0.99459, 0.9976, 0.99456, 0.9893, 0.9931, 0.9927, 0.9963, 0.997, 0.9931, 0.99514, 0.9968, 0.99354, 0.9948, 0.99261, 0.99454, 0.9994, 0.99198, 0.998, 0.9928, 0.99068, 0.99384, 0.99275, 0.9952, 0.9932, 0.99165, 0.99616, 0.99659, 0.9924, 0.99316, 0.992, 0.9928, 0.99532, 0.9936, 0.98939, 0.99616, 0.99367, 0.98892, 0.99596, 0.99784, 0.99267, 0.99347, 0.9919, 0.99089, 0.99425, 0.99226, 0.989465, 0.9902, 0.995, 0.99565, 0.99192, 0.9964, 1.0014, 0.9898, 0.9922, 0.99166, 0.99576, 0.9884, 0.99764, 0.9951, 0.9953, 0.98964, 1.0001, 0.99837, 0.9934, 0.998, 0.99586, 0.99014, 0.99455], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Reference<br>density=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [0.9976, 0.991, 0.9936, 0.9949, 0.99922, 0.9976, 0.9944, 0.99648, 0.996, 0.99898, 0.99914, 0.9927, 0.9982, 0.99244, 0.9932, 0.99459, 0.99655, 0.994, 0.99904, 0.9964, 0.9927, 0.9964, 0.9958, 0.99242, 0.9979, 0.997, 0.99403, 0.9979, 0.99741, 0.99266, 0.9969, 0.9932, 0.9965, 0.9948, 0.9975, 0.9958, 0.9935, 0.99519, 0.9971, 0.9958, 0.99792, 0.99828, 0.9928, 0.9941, 0.99593, 0.99773, 0.9925, 0.99254, 0.99628, 0.9957, 0.9974, 0.99824, 0.9951, 1.0002, 0.99699, 0.9988, 0.9959, 0.99212, 0.9926, 1.0001, 0.9972, 0.998, 0.99334, 0.997, 0.99733, 0.992, 0.9964, 0.9956, 0.9973, 0.993, 0.9963, 0.99817, 0.9976, 0.99048, 0.99166, 0.99208, 0.99745, 0.9941, 0.99892, 0.99152, 0.99397, 0.9948, 0.9957, 0.99585, 0.99382, 0.99699, 0.995, 0.9932, 0.9941, 0.9937, 0.99817, 0.9961, 0.9964, 0.9976, 1.0, 0.99548, 0.998, 0.996, 0.99528, 0.9998, 0.9982, 0.9982, 0.99405, 1.0008, 0.99625, 0.9973, 0.99684, 0.9902, 0.9963, 0.99502, 0.9956, 0.9937, 0.9958, 0.9949, 0.99634, 0.99642, 0.9976, 0.99001, 0.9985, 0.9934, 0.9976, 0.99374, 0.9968, 0.99687, 0.998, 0.99718, 0.99437, 0.9963, 0.9959, 0.99579, 0.9939, 1.001, 0.99478, 0.99604, 0.99534, 0.9946, 0.9956, 0.9986, 0.99138, 0.9962, 0.9989, 0.99582, 0.9904, 0.99736, 0.99287, 0.9932, 0.9924, 0.99678, 0.9981, 0.9972, 0.9912, 0.99783, 0.9907, 0.99669, 0.99317, 0.99656, 1.001, 0.9969, 0.9938, 0.9905, 0.9928, 0.9988, 0.9981, 0.99429, 0.99587, 0.9942, 0.99504, 0.9986, 0.99738, 0.9958, 0.99537, 0.98956, 0.9981, 0.99873, 0.9966, 0.99682, 0.9961, 0.99166, 0.9968, 0.9937, 0.99308, 0.9964, 0.9924, 0.9946, 0.9982, 0.99512, 0.9994, 0.99098, 0.99642, 0.9966, 0.9937, 0.992, 0.9968, 0.99036, 0.99548, 0.99672, 0.9968, 0.99388, 0.99907, 0.99255, 0.9937, 1.00242, 1.00242, 0.9966, 0.99234, 0.99625, 0.99184, 0.9982, 0.9942, 0.9897, 0.994, 0.99168, 0.9952, 0.9977, 0.99872, 0.99772, 0.9981, 0.9904, 0.9993, 0.9958, 0.99578, 0.99026, 0.9982, 0.9941, 0.99166, 0.99627, 0.9932, 1.0005, 0.9934, 0.998, 0.9944, 0.9938, 0.9957, 1.00044, 0.99026, 0.99244, 1.00118, 0.994, 0.99314, 0.9972, 0.99818, 0.99561, 0.99839, 0.9948, 0.99026, 0.99734, 0.9978, 0.99273, 0.99602, 0.9978, 1.001, 0.9944, 0.9965, 0.9966, 0.99434, 0.9987, 0.99496, 0.9934, 0.996, 1.0004, 0.9926, 0.9946, 0.998, 0.99238, 0.9954, 0.99479, 0.99362, 0.99296, 0.99633, 0.9977, 1.00241, 0.9984, 0.994, 0.99611, 0.9948, 0.99794, 0.9956, 0.99794, 0.99588, 0.9922, 0.9978, 0.99689, 0.9953, 0.99572, 0.9942, 0.99582, 0.9959, 0.9972, 0.9921, 0.9955, 0.9918, 0.9962, 0.9924, 0.99076, 0.99782, 0.99709, 0.99458, 0.99806, 0.9983, 0.998, 0.99346, 0.9937, 0.99814, 0.9966, 1.0001, 0.9926, 0.99943, 0.9955, 0.9986, 0.99657, 0.9945, 0.99558, 0.99689, 0.9955, 0.9979, 0.9938, 1.00098, 0.9984, 0.9969, 0.99732, 0.99647, 0.9968, 0.9955, 0.9962, 0.9949, 0.99663, 0.9976, 0.99454, 0.9967, 0.99577, 1.001, 0.9987, 0.99516, 0.9986, 0.99164, 0.9974, 0.99902, 1.0001, 0.99032, 0.99848, 0.9928, 0.9934, 0.9939, 0.9976, 0.9982, 0.99748, 0.99773, 0.9964, 0.994, 0.99898, 0.9966, 0.99575, 0.998, 0.9937, 0.99517], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Current<br>density=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [0.9966, 0.99556, 0.9939, 0.99126, 0.9996, 1.001, 0.99565, 0.998, 0.99692, 0.9997, 0.9956, 0.9918, 0.99513, 0.99587, 0.99869, 1.0, 0.9959, 1.0004, 0.99253, 0.9905, 0.9918, 0.9996, 0.9946, 0.9978, 0.99009, 0.9926, 0.997, 0.99898, 0.99215, 0.9931, 0.99839, 0.9944, 0.99798, 0.9963, 0.9926, 0.99341, 0.998, 0.9968, 0.9953, 0.9934, 0.9918, 0.99494, 0.9968, 0.9982, 0.992, 0.99212, 0.9976, 0.99616, 0.99911, 0.99244, 0.99454, 1.0011, 0.9937, 0.99612, 0.9976, 0.9963, 0.99748, 1.00315, 0.9966, 0.99848, 1.00315, 0.9976, 0.9962, 1.0006, 0.99657, 0.99592, 0.99702, 0.9978, 0.9965, 0.9956, 0.99654, 0.99093, 0.99212, 0.99694, 0.9938, 0.99174, 1.0, 0.9918, 0.99345, 0.99717, 0.9966, 0.99576, 0.9972, 0.9968, 0.9938, 0.9923, 0.9967, 0.99976, 0.992, 0.9978, 0.9951, 0.9936, 0.998, 0.9991, 0.99683, 0.99476, 0.9958, 0.9986, 0.9972, 0.99596, 0.99918, 0.99479, 1.0, 0.9955, 0.9954, 0.99584, 0.9984, 0.99448, 0.99416, 0.9989, 0.9964, 0.9983, 0.99712, 0.99362, 0.9926, 0.99669, 0.99676, 0.99471, 0.9955, 0.9958, 0.9962, 0.99182, 0.9946, 0.996, 0.99546, 0.99915, 0.99111, 0.9997, 0.99546, 0.9938, 0.98876, 0.99734, 0.9991, 0.992, 0.99694, 0.9976, 0.993, 0.9976, 0.99681, 0.99494, 0.9938, 0.9938, 0.99239, 0.9939, 0.9992, 0.99677, 0.99176, 0.9958, 0.9964, 0.99568, 0.9932, 0.99942, 0.9973, 0.9958, 0.99344, 0.9928, 0.99481, 0.99584, 0.99696, 0.9988, 0.99745, 0.99872, 0.99212, 0.9982, 0.9974, 0.9944, 0.9904, 0.99264, 0.99299, 0.99534, 0.9997, 0.9966, 0.9934, 0.99204, 0.9964, 0.98918, 0.9923, 0.99775, 0.99742, 0.99642, 0.9941, 0.99688, 1.0004, 0.9927, 0.99705, 0.99154, 0.9958, 0.9989, 0.9936, 0.99545, 0.99743, 0.99524, 0.99555, 0.99173, 0.9976, 0.9961, 0.9936, 0.99382, 0.99947, 0.997, 0.9962, 0.9976, 0.9983, 0.9986, 0.98993, 0.99922, 0.9958, 0.9994, 0.9974, 0.9977, 0.998, 0.99458, 0.99552, 0.99194, 0.9953, 0.99084, 0.9973, 0.9966, 0.99288, 0.9928, 0.9975, 0.9961, 0.9982, 0.9952, 0.9934, 0.996, 0.998, 0.9961, 0.99366, 0.99138, 0.9991, 0.99305, 1.0001, 0.9981, 0.9965, 0.99628, 0.99164, 0.99193, 0.9991, 0.9931, 0.99771, 0.9993, 0.99176, 0.9962, 0.99048, 0.9944, 0.9936, 0.99469, 0.9986, 0.99362, 0.9978, 0.99884, 0.9958, 0.99779, 0.9927, 0.99924, 0.9962, 0.9958, 0.99692, 0.99818, 0.99732, 0.99471, 0.9978, 0.9978, 0.99402, 0.99211, 0.9956, 0.99176, 0.99032, 0.99488, 0.99069, 0.9994, 0.9998, 0.9955, 0.99514, 0.9929, 0.99907, 0.998, 0.9958, 0.9968, 0.9983, 0.9993, 0.99047, 0.99202, 0.9986, 0.99185, 0.99249, 0.9943, 0.9911, 0.99726, 0.99527, 0.9944, 0.99626, 0.99746, 0.99304, 0.9984, 0.99274, 0.9955, 0.99804, 0.9986, 0.99182, 0.9996, 0.99454, 0.997, 0.99718, 0.9904, 0.9986, 0.9962, 1.0004, 0.9954, 0.9965, 0.99516, 0.9944, 0.9998, 0.9944, 0.998, 0.9938, 0.99558, 0.9956, 0.9932, 0.997, 0.9954, 0.99773, 0.9953, 0.9994, 0.9963, 0.9991, 0.9969, 0.9956, 0.99212, 0.9967, 0.9968, 0.9918, 0.9914, 0.9964, 0.992, 0.99198, 0.99271, 1.0001, 0.9952, 0.9958, 0.9978, 0.9953, 0.99652, 0.9994, 0.99242, 0.9979, 0.9966, 1.0001, 0.9932, 0.99372, 0.9917], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Reference\", \"x\": 0.245, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Current\", \"x\": 0.755, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"barmode\": \"overlay\", \"legend\": {\"title\": {\"text\": \"target\"}, \"tracegroupgap\": 0}, \"margin\": {\"t\": 60}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.49], \"title\": {\"text\": \"density\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.51, 1.0], \"matches\": \"x\", \"title\": {\"text\": \"density\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"count\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}}}, \"density_good\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (ref)\", \"type\": \"scatter\", \"x\": [0.992, 0.9964, 0.99097, 0.99511, 0.9934, 0.99558, 0.98894, 0.9909, 0.9902, 0.98994, 0.9926, 0.99458, 0.9951, 1.0, 0.9955, 0.9954, 0.99, 1.0032, 0.99002, 0.99364, 0.99566, 0.99175, 0.9928, 0.99085, 0.9938, 0.9938, 0.98742, 0.9955, 0.9942, 0.9892, 0.9911, 0.99728, 0.9914, 0.99035, 0.99076, 0.99855, 0.9969, 0.98892, 0.99015, 0.99089, 0.98954, 0.9945, 0.9971, 0.99245, 0.99676, 0.9972, 0.9978, 0.992, 0.9962, 0.9906, 0.9978, 0.9991, 0.98998, 0.99304, 0.992, 0.9979, 0.99201, 0.98941, 0.992, 0.992, 0.99758, 0.99016, 0.991, 0.993, 1.001, 0.9984, 0.99064, 0.9941, 0.9954, 0.99146, 0.9918, 0.98934, 0.99278, 0.99316, 0.9965, 0.99556, 0.9973, 0.98928, 0.99638, 0.9916, 0.995, 0.99012, 0.99109, 0.997, 0.9935, 0.99096, 0.9918, 0.9982, 0.9896, 0.9984, 0.9919, 0.9918, 0.9942, 0.9912, 0.99471, 0.99241, 0.99567, 0.98959, 0.98984, 0.9946, 0.9934, 0.9986, 0.99638, 0.9951, 0.98914, 0.9938, 0.9925, 0.9946, 0.99058, 0.99472, 0.99002, 1.0103, 0.99208, 0.99666, 0.99202, 0.9889, 0.99034, 0.98974, 0.999, 0.99534, 0.99808, 0.9924, 0.9974, 0.998, 0.99678, 0.99538, 0.9958, 0.9974, 0.9931, 0.9983, 0.9934, 0.98746, 0.9998, 0.99624, 0.9966, 0.98976, 0.99834, 0.99627, 0.98968, 0.998, 0.99007, 0.9945, 0.99452, 0.9935, 0.9984, 0.9938, 0.99279, 0.9905, 0.9948, 0.9974, 0.99792, 0.998, 0.99256, 0.99775, 0.99835, 0.99189, 0.99033, 0.9908, 0.9931, 0.98972, 0.9949, 0.99616, 0.99014, 0.9974, 0.9938, 0.9962, 0.99642, 0.9942, 0.9977, 0.9894, 0.99566, 0.9964, 0.993, 0.99507, 0.9964, 0.9948, 0.9964, 0.9939, 0.99174, 0.99736, 0.99462, 0.99, 0.99458, 0.9895, 0.9949, 0.991, 0.98758, 0.9973, 0.9912, 0.9932, 0.99183, 0.99378, 0.9918, 0.99269, 0.99744, 0.9901, 0.99353, 0.99178, 0.99041, 0.99184, 0.9948, 0.9916, 0.9926, 0.99504, 0.99394, 0.99408, 0.9974, 0.9944, 0.99807, 0.9982, 0.9928, 0.9916, 0.99111, 0.99215, 0.99089, 0.9934, 0.99112, 0.9938, 0.99276, 0.98954, 0.9926, 0.9997, 0.9923, 0.9907, 0.99814, 0.9938, 0.9986, 0.99945, 0.993, 0.99471, 0.99235, 0.9928, 0.99379, 0.99522, 0.99224, 0.99324, 0.9922, 0.9954, 0.9908, 0.99397, 0.99558, 0.9979, 0.9931, 0.99955, 0.99588, 0.9938, 0.9937, 0.99776, 0.9953, 0.98994, 1.0003, 0.9986, 0.9982, 0.99672, 0.99674, 0.99278, 0.99022, 0.99396, 0.9912, 0.9948, 0.9973, 0.9911, 0.99153, 0.991, 0.99119, 0.9911, 0.991, 0.99652, 0.99489, 0.98942, 0.99144, 0.9949, 0.99254, 0.99252, 0.98919, 0.99784, 0.99469, 0.99523, 0.99378, 0.99212, 0.9941, 0.9911, 0.99008, 0.98963, 0.99116, 0.99545, 0.99946, 0.997, 0.9971, 0.99044, 0.9924, 0.9916, 0.99408, 0.99174, 0.9937, 0.9955, 0.9972, 0.9921, 0.99199, 0.994, 0.99387, 0.99462, 0.992, 0.9928, 0.994, 0.99534, 0.9945, 0.99057, 0.9999, 0.99274, 0.99685, 0.9983, 0.99362, 0.9923, 0.9925, 1.0002, 0.9942, 0.98912, 0.99094, 0.9892, 0.98914, 0.9908, 0.9918, 0.9927, 0.9917, 0.9972, 0.9954, 0.99546, 0.9974, 0.99198, 0.99308, 0.99066, 0.9986, 0.99464, 0.9917, 0.99954, 0.99202, 0.99414, 0.9982, 0.9952, 0.9962, 0.9934, 0.9891, 0.9941, 0.99573, 0.9936, 0.9967, 0.99685, 0.98918, 0.9986, 0.99518, 0.9932, 0.99469, 0.99109, 0.99705, 0.9917, 0.9964, 0.98987, 0.9996, 0.9904, 0.99886, 0.9924, 0.997, 0.99494, 0.99745, 0.99606, 0.98999, 0.9909, 0.99615, 0.9975, 0.9926, 0.9918, 0.9929, 0.9948, 0.99036, 0.99228, 0.98984, 0.99822, 0.99299, 0.9987, 1.0015, 0.99563, 0.9984, 0.9984, 0.9957, 0.99194, 1.00369, 0.993, 0.9952, 0.99035, 0.9916, 0.99896, 0.9945, 0.9927, 0.9954, 0.99549, 0.9922, 1.00295, 0.98956, 0.9973, 0.9961, 0.997, 0.99352, 0.9994, 0.99238, 0.99524, 0.9927, 0.9917, 0.9914, 0.9957, 0.99304, 0.99331, 0.99108, 0.992, 0.9923, 0.99064, 0.9921, 0.999, 0.99392, 0.9944, 0.99546, 0.99326, 0.995, 0.99792, 0.99534, 0.9908, 0.99158, 0.99136, 0.99122, 0.9928, 0.9931, 0.99063, 0.99024, 0.9898, 0.993, 0.98816, 0.9965, 0.99586, 0.9925, 0.9986, 0.9912, 0.9916, 0.99132, 0.996, 0.99358, 0.9938, 0.9977, 0.9934, 0.9978, 0.99074, 0.99048, 0.9898, 0.98994, 0.99342, 0.9966, 1.0004, 0.9948, 0.99514, 0.99596, 0.99602, 0.9986, 0.9971, 1.0003, 1.00051, 0.99084, 0.99566, 0.9927, 0.9912, 0.99581, 0.995, 0.9972, 0.99656, 0.9965, 0.99975, 0.99052, 0.989, 0.9916, 0.99455, 0.99393, 0.9924, 0.9946, 1.00038, 0.99906, 0.9958, 0.99475, 0.9935, 0.9906, 0.99835, 0.98883, 0.9932, 0.99863, 0.99686, 0.99322, 0.99678, 0.99331, 0.9925, 0.9978, 0.99392, 0.99105, 0.99384, 0.99596, 0.99216, 0.99321, 0.9979, 0.99124, 0.99472, 0.98946, 0.9945, 0.98926, 0.9925, 0.9898, 0.99066, 0.99587, 0.9984, 0.98942, 0.98876, 0.99045, 0.9975, 0.9913, 0.9906, 0.99416, 0.98794, 0.9925, 0.9911, 0.99675, 0.98931, 0.9983, 0.992, 0.99658, 0.99136, 0.9991, 0.9964, 0.992, 0.99658, 0.9923, 0.9965, 0.9952, 0.99461, 0.99287, 0.9918, 0.9944, 0.98944, 0.9976, 0.9953, 0.99074, 0.98794, 0.99643, 0.9954, 0.99114, 0.99374, 0.99218, 0.9948, 0.993, 0.9966, 0.99152, 0.99498, 0.9925, 0.99615, 0.99715, 0.99056, 0.9937, 0.9965, 0.9906, 0.9982, 0.99157, 0.9919, 0.99157, 0.9953, 0.9898, 0.99543, 0.9899, 0.9937, 0.99203, 0.99036, 0.99008, 0.9892, 0.99971, 0.992, 0.99785, 0.9927, 0.99044, 0.9912, 0.995, 0.995, 0.9942, 0.99522, 0.98856, 0.9939, 0.9927, 0.99095, 0.9972, 0.98946, 0.99542, 0.98944, 0.9985, 0.99411, 0.99266, 0.9962, 0.99268, 0.9971, 0.9917, 0.9925, 0.9968, 0.99142, 0.9964, 0.9979, 0.99214, 0.99737, 0.9917, 0.99807, 0.99334, 0.99798, 0.99558, 0.9972, 0.98946, 0.99543, 0.9934, 0.9938, 0.9947, 0.9969, 0.99752, 0.99082, 0.9983, 0.9962, 0.99692, 0.9928, 0.998, 0.9909, 0.99494, 0.98987, 0.99578, 0.997, 0.9986, 0.99544, 0.99321, 0.99072, 0.9985, 0.99494, 0.99118, 0.9968, 0.99112, 1.0004, 0.9907, 0.9921, 0.9934], \"xaxis\": \"x\", \"y\": [0.8156061324462894, 0.42491310922683634, 0.8867827646463432, 0.8014995238430205, 0.30499958310650876, 0.5817355832705369, 0.959171062334887, 0.7854416128369749, 0.9085690698200813, 0.8998600376511439, 0.6341165000693628, 0.412102187638673, 0.7643629411050379, 0.4710001938005606, 0.40182653035141874, 0.40438056362905367, 0.8870480016118494, 0.3650667978415713, 0.9064321709292111, 0.9327245345966092, 0.6458420185168736, 0.8821841129047617, 0.6704018506542557, 0.7655671181822064, 0.8616986618932058, 0.48774537944210006, 0.9637355036179479, 0.6794204065079696, 0.6044835155949141, 0.7867954023600708, 0.9137982268836646, 0.5867502063434873, 0.8048584290077971, 0.9718511071053526, 0.9627192884041744, 0.7978623718349598, 0.6091120966723917, 0.8943338178728011, 0.8853376735027229, 0.9045563504021151, 0.9264844632598176, 0.6342457655367447, 0.9414033426130164, 0.5636516403732365, 0.5172967922101196, 0.4836896337264441, 0.35199620689495453, 0.788779954566273, 0.9696552399248426, 0.772496554239754, 0.8132656157621138, 0.4539090261140653, 0.9333708926412786, 0.679765045723866, 0.48457442622955804, 0.4248820606938153, 0.6737819616086004, 0.8780741425819777, 0.38340602447337646, 0.90634085684919, 0.5574014604752268, 0.6804147683859246, 0.9077110088845216, 0.7718472635729894, 0.4717552048891654, 0.22222808308441652, 0.8616549355667619, 0.705749071892896, 0.4699129352300819, 0.9680524782819758, 0.8891353183282249, 0.9466602521798594, 0.8553382520847058, 0.7430243903066251, 0.6616131862201935, 0.6919609500216202, 0.96565744679506, 0.913108907487878, 0.5395521774612226, 0.9026238558501023, 0.6550941529376255, 0.9757876320152292, 0.8833495792027257, 0.6666029765862381, 0.8504582120840628, 0.9320215595878566, 0.7639947574915884, 0.6085229656221847, 0.9557131606798471, 0.46184432615952054, 0.5642658412077981, 0.8815615400732472, 0.7189203536918151, 0.9301020530176726, 0.7341394174346678, 0.7759189559372703, 0.8448078654733812, 0.9012666081120407, 0.8926028620066223, 0.5287492720273277, 0.6874206920638863, 0.37408584674942635, 0.8348370105186077, 0.8697567261320243, 0.9175759024810304, 0.44644098895981, 0.8874384748400057, 0.7787567487441118, 0.9416122482572158, 0.3265229243180111, 0.9308095750950773, 0.42267134533232753, 0.43068181214270274, 0.8727308285810839, 0.7201611177732586, 0.8430904589044517, 0.8140617541555761, 0.9456747441572588, 0.6672663325862807, 0.8756470416862959, 0.518871521713375, 0.7040615347784164, 0.4957960231649875, 0.6250130361556073, 0.27413726132188326, 0.5193133578087885, 0.37656641690434584, 0.5808048103476511, 0.7917827117482167, 0.36569143480873245, 0.7232542293832885, 0.9785934574433302, 0.5715075300165849, 0.8182555969893297, 0.5448461144048058, 0.9491291995847589, 0.4833587957991669, 0.3189279754564957, 0.9184825510014271, 0.5524830505676419, 0.9600429304649183, 0.7818180966165994, 0.7962710274484252, 0.7569429870375118, 0.46184432615952054, 0.7641514270390748, 0.9486763575522457, 0.8086368705092697, 0.6784536879503494, 0.6877019790624462, 0.6082670858563528, 0.6053794617794684, 0.6319330693089359, 0.4982105707488519, 0.6787928880949093, 0.9231980717613485, 0.8831230955067948, 0.6845485656817341, 0.8799204262605215, 0.9164563829924386, 0.7819268199067826, 0.23469888428232324, 0.9492377841603665, 0.8826092272015389, 0.6360541596480074, 0.5184081252698399, 0.6400126753125241, 0.542646305979658, 0.4479501208302092, 0.7783171875827786, 0.7867712153112567, 0.5236605417423803, 0.6959846197179591, 0.7925023358445066, 0.6683189355892497, 0.18737025221649042, 0.42506327048176057, 0.7272596040941706, 0.7314191754306454, 0.4827891324637794, 0.6649341228620356, 0.9038332731164471, 0.9588917860646077, 0.8945194928389463, 0.49833043835950624, 0.7997712594855277, 0.8577935987172323, 0.7622736922026153, 0.8039391974899521, 0.7396811504731934, 0.8115340233127679, 0.801728888664367, 0.738451208106372, 0.5859674792922007, 0.1865203674848816, 0.8773430435604171, 0.36888329310067386, 0.8651817982269884, 0.9067615420962557, 0.8594983988587351, 0.7437750884018276, 0.9145224932934428, 0.9135679891815164, 0.8001832456898428, 0.6860977766129374, 0.9377826008632761, 0.9300369611912853, 0.6997062971069969, 0.5693182102579236, 0.3404656140239559, 0.7160591142088384, 0.7953146078011, 0.8869803873277935, 0.7639982823097876, 0.8681285227071118, 0.576868797021353, 0.93035102563313, 0.8375600281828176, 0.8279918435672958, 0.9266689436294401, 0.7559862346636359, 0.5099889666930224, 0.6914445842613687, 0.9651950326885705, 0.87851968214492, 0.8499702807396289, 0.4685752957996948, 0.7241546992314323, 0.7848147251007912, 0.7341394174346678, 0.7008877443692281, 0.340588975625529, 0.5013021766499856, 0.8321174529331695, 0.8818378666553491, 0.9176909075187759, 0.8634678749265305, 0.7436082905772717, 0.9343776659412377, 0.7668809937296346, 0.6243383802582345, 0.5332560471205093, 0.6907315465649003, 0.16626803588025432, 0.1668542888532837, 0.7408943843163458, 0.5221312328975666, 0.7457559475413279, 0.46389636934606376, 0.9292627865919654, 0.5268311186840582, 0.4244151934213653, 0.643310536612302, 0.8577438313980266, 0.7816208399762355, 0.8553382520847058, 0.7010035672814305, 0.5242572272016158, 0.9187320011579697, 0.8703498177621264, 0.6713045345576062, 0.9137982268836646, 0.8614414457916845, 0.9445662266054761, 0.8808216590199034, 0.7386378115490353, 0.8873009977622293, 0.9157094897337859, 0.6606038558129893, 0.9296803968514485, 0.8864322240790464, 0.5146720135715994, 0.8720710714485208, 0.9415427660945741, 0.9138701141498735, 0.6527559092576063, 0.8751970040938668, 0.9249766460056568, 0.801728888664367, 0.6575848465963361, 0.6934824043184128, 0.8619113960143526, 0.9419078024651042, 0.9591721389341828, 0.8397407150753159, 0.9084383840076588, 0.4963969309336195, 0.7359588175524252, 0.3531961907069324, 0.9279819479140234, 0.7752976919572294, 0.8665226278427577, 0.9515211055933231, 0.7314191754306454, 0.890886918514299, 0.3235491032739525, 0.3719939405423586, 0.6323804178173072, 0.8398006965792015, 0.8239469134189235, 0.8592101816891015, 0.7615002907198236, 0.8688259750909261, 0.8718104001390852, 0.5838074755684882, 0.8756470416862959, 0.901850575196968, 0.9451930143658351, 0.6253812669856891, 0.5890764576710766, 0.4921052500998711, 0.4862070578416567, 0.9170647663398394, 0.7035583451969506, 0.8476385889092957, 0.5603058978573646, 0.5810606890504925, 0.9088604673919816, 0.8903252600075929, 0.944267921154058, 0.9435968591480925, 0.938237366988842, 0.9357286047893738, 0.7961386682142712, 0.7840233885688647, 0.2513590507613302, 0.7389284097502917, 0.9053472250810051, 0.44438282424164377, 0.862281110352348, 0.8021059248496223, 0.9152740930046814, 0.643737358401971, 0.8540304955499701, 0.8613418170006786, 0.6911084183178322, 0.8848367871057808, 0.8387883096682573, 0.5942651630821018, 0.65691393717736, 0.6369979527510315, 0.8280658524313272, 0.9640736168216585, 0.6546311715671466, 0.5599819536107853, 0.48348053317652906, 0.7668016587569692, 0.03620763244300767, 0.7364400865449663, 0.37408584674942635, 0.8767503774172, 0.8743962287172513, 0.8751970040938668, 0.8833495792027257, 0.7091886355621774, 0.87006937054451, 0.7904001815220257, 0.8761418339280951, 0.8306834851111597, 0.7531715889012326, 0.38181207472529843, 0.6490458991820136, 0.9138057013338913, 0.9046222904886461, 0.17956061692355052, 0.7506163079023257, 0.8963285795381793, 0.8848361664653354, 0.9283037217377402, 0.45996158699034445, 0.7290858434196763, 0.8319094967702583, 0.6578018675312727, 0.18727567457681707, 0.8673410249845035, 0.9453298670648187, 0.9446538464906173, 0.19605573045952288, 0.6723831041639817, 0.3438281302059518, 0.37858973820495484, 0.6953170483296187, 0.21463507152544156, 0.26963792069965237, 0.3280912492037974, 0.8399932187801539, 0.420387898633768, 0.36522500752858966, 0.5810560693343539, 0.9306346767722963, 0.7167716539092029, 0.656736106921484, 0.5549139996760648, 0.6909161521388689, 0.591904263202073, 0.884703171197362, 0.866402281883595, 0.7582770814524421, 0.8990773411030794, 0.1818065866116437, 0.6222165686186035, 0.17261914235374884, 0.8156064679757086, 0.4851213943917703, 0.8871292211128762, 0.8398494053952754, 0.703270618172154, 0.6305543892506115, 0.7494149477175548, 0.1532408287022325, 0.6159732902773407, 0.738220551127759, 0.8354520044441791, 0.8536870432671441, 0.5751476712690671, 0.9077719201719568, 0.7878515691455199, 0.6672663325862807, 0.45293736875445273, 0.17058553029544155, 0.747933377844996, 0.8400163125056676, 0.4516778718827729, 0.6082670858563528, 0.8401843469141149, 0.7636885291754726, 0.789170795337903, 0.8128612802083497, 0.7522530659814418, 0.8086757686066508, 0.8356255123032285, 0.9241779635105248, 0.9674588597049086, 0.9368885694202199, 0.4990764491242286, 0.876561204324957, 0.554264192243629, 0.5967716244634195, 0.9060244606340249, 0.8401608718856799, 0.7329750583133859, 0.8021769878309102, 0.9316817655017511, 0.45488322534173153, 0.798578398438993, 0.7425236774748816, 0.5742682328784404, 0.4937681935814938, 0.8972164286692267, 0.8914273370768748, 0.9377613518261881, 0.8862258850530264, 0.8591757581361523, 0.7410678096850266, 0.6822336012657398, 0.9201658505843877, 0.6982578893131915, 0.5746709232170782, 0.7626532952948841, 0.7137703530889916, 0.7520971196461234, 0.4473853625959922, 0.7957460056304991, 0.4833174871501707, 0.8758467705785958, 0.4689303842787964, 0.6133612564737879, 0.8568681391705205, 0.6835133967314007, 0.9732070839986944, 0.21435716257549006, 0.5761668962420043, 0.4055433603128916, 0.3743394998756179, 0.9118635774953143, 0.964551884718591, 0.9306459334511011, 0.8424802355113449, 0.7739144871152517, 0.6872688771534424, 0.8590561833388345, 0.6714384475466295, 0.6408669500407106, 0.5203550269219845, 0.2856853969697174, 0.857760555506807, 0.9307094503226838, 0.6787928880949093, 0.8308635255795866, 0.29271374211533296, 0.6769315553524353, 0.23831547366416572, 0.5895099457120908, 0.8994675076574448, 0.8893400405584444, 0.8456825404777587, 0.5399612081435882, 0.6188649121485582, 0.9281492942813848, 0.7611740601422801, 0.46550237374781617, 0.8896861436466836, 0.9038901015569306, 0.5044440900554997, 0.9215480939667524, 0.6930273792518707, 0.8723244804196287, 0.5624338775604165, 0.9226297661236537, 0.8469231754225917, 0.9430557295321259, 0.9097116306258912, 0.5988707702267543, 0.3813853072548755, 0.8843832309478876, 0.9006952500629406, 0.918975987201669, 0.18997930334445084, 0.8923106748541326, 0.8461388699436441, 0.5973439234355874, 0.9544642924744549, 0.91770416680597, 0.9177239854204658, 0.17584552180125673, 0.9240099144459667, 0.48524948024905407, 0.8889685222180134, 0.5785503824403398, 0.7511953459672914, 0.6887596776945688, 0.6717539058356753, 0.7168761391602206, 0.7134478068952186, 0.834626350903405, 0.5715867980362679, 0.6588392688727011, 0.9488572786900573, 0.8920529250761863, 0.8891353183282249, 0.707981940789761, 0.926348680038428, 0.631489487929038, 0.7443856388661001, 0.9260754381930228, 0.9544642924744549, 0.8497401318990601, 0.5604010177433062, 0.8036334301115304, 0.7898153537185114, 0.8491431337122072, 0.6570881560807702, 0.8389599143569951, 0.7944137576415592, 0.8132668978866627, 0.44714680104169846, 0.7978021044641371, 0.41921696608658454, 0.38876183891604754, 0.9248463736054193, 0.4277915265084825, 0.6345107008491314, 0.8008942533173764, 0.5087430598332189, 0.9414938992689892, 0.6922115882765215, 0.8296175750175913, 0.8593339228153332, 0.8975141534758351, 0.5977126281557783, 0.9279478536756302, 0.6485770817571253, 0.8905823996589662, 0.9332072841984264, 0.9432461110830079, 0.9410120781436498, 0.6339696776630096, 0.7120962557761497, 0.5841709037351369, 0.5928970840420333, 0.9006589732900512, 0.936371533648048, 0.6907852379101131, 0.7675780198071424, 0.9444587893431046, 0.4702336163336472, 0.8925536722101626, 0.8158978708906081, 0.822780392485108, 0.8037335327290217, 0.8382351003285965, 0.8941557358589171, 0.4796498334522667, 0.926348680038428, 0.6842118015950474, 0.6463580983468415, 0.8292048071278182, 0.5834426687867836, 0.8419845362148763, 0.2431563391580561, 0.7763142135369961, 0.9390550746437164, 0.7774903237071782, 0.8141232663130791, 0.9444089886680379, 0.430401459478284, 0.9192677156927759, 0.8427595869840984, 0.87120858451521, 0.5693182102579236, 0.820012080301976, 0.58719119911586, 0.42769376643096113, 0.3542595869275313, 0.89579938191327, 0.8743523014696554, 0.7820497043505815, 0.5279069501129625, 0.8869579700149332, 0.45488774279476296, 0.8514781135508903, 0.8278297091497892, 0.663749097381813, 0.5132851713944618, 0.4906566565015208, 0.6415219885510332, 0.6991293681294938, 0.8150539074042624, 0.5800669536763935, 0.9583771200922359, 0.7366090055976814, 0.5747817696023392, 0.5315376696882942, 0.8074446941396305, 0.9038901015569306, 0.9087015650331977, 0.6697291810323083, 0.5800669536763935, 0.8807270543114014, 0.5135845984304893, 0.9352791850238339, 0.36120709973337456, 0.6206709330576408, 0.906286252315459, 0.7937202818717513], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [0.9976, 0.991, 0.9936, 0.9949, 0.99922, 0.9976, 0.9944, 0.99648, 0.996, 0.99898, 0.99914, 0.9927, 0.9982, 0.99244, 0.9932, 0.99459, 0.99655, 0.994, 0.99904, 0.9964, 0.9927, 0.9964, 0.9958, 0.99242, 0.9979, 0.997, 0.99403, 0.9979, 0.99741, 0.99266, 0.9969, 0.9932, 0.9965, 0.9948, 0.9975, 0.9958, 0.9935, 0.99519, 0.9971, 0.9958, 0.99792, 0.99828, 0.9928, 0.9941, 0.99593, 0.99773, 0.9925, 0.99254, 0.99628, 0.9957, 0.9974, 0.99824, 0.9951, 1.0002, 0.99699, 0.9988, 0.9959, 0.99212, 0.9926, 1.0001, 0.9972, 0.998, 0.99334, 0.997, 0.99733, 0.992, 0.9964, 0.9956, 0.9973, 0.993, 0.9963, 0.99817, 0.9976, 0.99048, 0.99166, 0.99208, 0.99745, 0.9941, 0.99892, 0.99152, 0.99397, 0.9948, 0.9957, 0.99585, 0.99382, 0.99699, 0.995, 0.9932, 0.9941, 0.9937, 0.99817, 0.9961, 0.9964, 0.9976, 1.0, 0.99548, 0.998, 0.996, 0.99528, 0.9998, 0.9982, 0.9982, 0.99405, 1.0008, 0.99625, 0.9973, 0.99684, 0.9902, 0.9963, 0.99502, 0.9956, 0.9937, 0.9958, 0.9949, 0.99634, 0.99642, 0.9976, 0.99001, 0.9985, 0.9934, 0.9976, 0.99374, 0.9968, 0.99687, 0.998, 0.99718, 0.99437, 0.9963, 0.9959, 0.99579, 0.9939, 1.001, 0.99478, 0.99604, 0.99534, 0.9946, 0.9956, 0.9986, 0.99138, 0.9962, 0.9989, 0.99582, 0.9904, 0.99736, 0.99287, 0.9932, 0.9924, 0.99678, 0.9981, 0.9972, 0.9912, 0.99783, 0.9907, 0.99669, 0.99317, 0.99656, 1.001, 0.9969, 0.9938, 0.9905, 0.9928, 0.9988, 0.9981, 0.99429, 0.99587, 0.9942, 0.99504, 0.9986, 0.99738, 0.9958, 0.99537, 0.98956, 0.9981, 0.99873, 0.9966, 0.99682, 0.9961, 0.99166, 0.9968, 0.9937, 0.99308, 0.9964, 0.9924, 0.9946, 0.9982, 0.99512, 0.9994, 0.99098, 0.99642, 0.9966, 0.9937, 0.992, 0.9968, 0.99036, 0.99548, 0.99672, 0.9968, 0.99388, 0.99907, 0.99255, 0.9937, 1.00242, 1.00242, 0.9966, 0.99234, 0.99625, 0.99184, 0.9982, 0.9942, 0.9897, 0.994, 0.99168, 0.9952, 0.9977, 0.99872, 0.99772, 0.9981, 0.9904, 0.9993, 0.9958, 0.99578, 0.99026, 0.9982, 0.9941, 0.99166, 0.99627, 0.9932, 1.0005, 0.9934, 0.998, 0.9944, 0.9938, 0.9957, 1.00044, 0.99026, 0.99244, 1.00118, 0.994, 0.99314, 0.9972, 0.99818, 0.99561, 0.99839, 0.9948, 0.99026, 0.99734, 0.9978, 0.99273, 0.99602, 0.9978, 1.001, 0.9944, 0.9965, 0.9966, 0.99434, 0.9987, 0.99496, 0.9934, 0.996, 1.0004, 0.9926, 0.9946, 0.998, 0.99238, 0.9954, 0.99479, 0.99362, 0.99296, 0.99633, 0.9977, 1.00241, 0.9984, 0.994, 0.99611, 0.9948, 0.99794, 0.9956, 0.99794, 0.99588, 0.9922, 0.9978, 0.99689, 0.9953, 0.99572, 0.9942, 0.99582, 0.9959, 0.9972, 0.9921, 0.9955, 0.9918, 0.9962, 0.9924, 0.99076, 0.99782, 0.99709, 0.99458, 0.99806, 0.9983, 0.998, 0.99346, 0.9937, 0.99814, 0.9966, 1.0001, 0.9926, 0.99943, 0.9955, 0.9986, 0.99657, 0.9945, 0.99558, 0.99689, 0.9955, 0.9979, 0.9938, 1.00098, 0.9984, 0.9969, 0.99732, 0.99647, 0.9968, 0.9955, 0.9962, 0.9949, 0.99663, 0.9976, 0.99454, 0.9967, 0.99577, 1.001, 0.9987, 0.99516, 0.9986, 0.99164, 0.9974, 0.99902, 1.0001, 0.99032, 0.99848, 0.9928, 0.9934, 0.9939, 0.9976, 0.9982, 0.99748, 0.99773, 0.9964, 0.994, 0.99898, 0.9966, 0.99575, 0.998, 0.9937, 0.99517], \"xaxis\": \"x\", \"y\": [0.2802292104526322, 0.9455194119275858, 0.4978743212349556, 0.5289145624519528, 0.28439238707197784, 0.2033309570226689, 0.27345747478543325, 0.8322873304845451, 0.389055896812549, 0.3675472469853882, 0.5781933746273124, 0.7401955299744071, 0.44969671697605845, 0.4367887814338696, 0.31593955341667695, 0.3775624358859999, 0.19282181046294666, 0.048451763306065584, 0.6005928650583868, 0.032225376113695775, 0.427412413738938, 0.23973251442015217, 0.13890126550157303, 0.8613925272127, 0.329663916828638, 0.19359965390713213, 0.6827271716759634, 0.1960905505555538, 0.08135735686643118, 0.39737240301928484, 0.13902987396822816, 0.6514166433739288, 0.6994753721471061, 0.7140886736258081, 0.5021795028970708, 0.48743245558712556, 0.5731139673640956, 0.8820820642542792, 0.559972149724866, 0.5061565591493914, 0.5066810377847554, 0.833805652807593, 0.6979972163580744, 0.3177574231538272, 0.13068190592986567, 0.758876109553896, 0.5681062961269688, 0.715544821914063, 0.762062625203523, 0.4464438677531786, 0.20995974230910305, 0.5262622410710028, 0.39442669669188163, 0.2537324982988368, 0.6775437642744659, 0.23876321589577687, 0.6369158982934647, 0.38960060362966165, 0.6034323722874255, 0.7769991715799629, 0.15199748354041337, 0.5641412449951732, 0.7590466800561823, 0.5969347905931296, 0.1048362779837843, 0.7217824369593382, 0.2662339163773806, 0.16472378978351135, 0.37760124376932414, 0.7071736299639594, 0.3436862995931572, 0.8384434752264291, 0.3635333644877426, 0.7813188949129265, 0.7279369976219869, 0.5641098847382463, 0.3863964747623771, 0.9209913370067284, 0.1477144681640183, 0.8809374658555192, 0.6533168894759348, 0.8873477284758582, 0.3697306267878623, 0.28319023347825867, 0.5203701741750857, 0.5523747693308857, 0.6387521731780509, 0.3881380695009739, 0.8487896327149285, 0.4636606453307818, 0.8384434752264291, 0.558266603669778, 0.21657231888677728, 0.3635333644877426, 0.5512671313974766, 0.5051039398599867, 0.5827915753039158, 0.49441682850108926, 0.47309171914705017, 0.6262595591688196, 0.5508242483721094, 0.47332791509789995, 0.7117569366896692, 0.3933786516273859, 0.16465066549244003, 0.7490394132223248, 0.769261050002088, 0.7431932405995126, 0.3141000916210982, 0.723735045552473, 0.6484132891031948, 0.688519894019609, 0.40496704226994307, 0.5803736122960511, 0.6327801522745691, 0.45115706990411364, 0.37268733756108086, 0.9009693101135351, 0.06496389958099598, 0.44431713201158524, 0.39960831974332744, 0.8662156944598043, 0.31018081106061823, 0.5339551117365043, 0.33311273919547707, 0.400132762133902, 0.8528754522806217, 0.14419347879543085, 0.11672350429510901, 0.44556702529145975, 0.6160120899414699, 0.13766892845409207, 0.5517204028384314, 0.5232178919035022, 0.35483403305733974, 0.4900213704561591, 0.8854578072659228, 0.43084122675663034, 0.7601186327653665, 0.14072030431570776, 0.6186690618327106, 0.5245054232921349, 0.7326259458716644, 0.5690781983520095, 0.4018508815425063, 0.24877469563805235, 0.7952501197393639, 0.8766221356386195, 0.303451532996695, 0.5357745481647883, 0.7096524147827454, 0.20877177283968149, 0.8635610141758273, 0.46736762313881036, 0.6061151992073851, 0.113015272873705, 0.40446014603085867, 0.6332606063976143, 0.648705381890928, 0.42186952587750404, 0.8047913565308571, 0.3017058309841093, 0.38406990132164637, 0.33494193042999065, 0.19929939967121216, 0.8624919783238055, 0.528785836409086, 0.43084122675663034, 0.47042159929499583, 0.5061565591493914, 0.5759491569657543, 0.8468794444363914, 0.20342296359496542, 0.5170831534483544, 0.3666753044655067, 0.6131723001375537, 0.4410646109528086, 0.6903416342484309, 0.3866428492574258, 0.4636606453307818, 0.4525459302795702, 0.03199256040434073, 0.7029629492254846, 0.2433141614541866, 0.548755973819273, 0.3775060302547258, 0.06593060991448157, 0.8745624549148976, 0.22931948662359403, 0.27267688907931714, 0.589328430619086, 0.8007160756317941, 0.5525637789187225, 0.5008522318356121, 0.4556212410144909, 0.17391722008742402, 0.43574637053357784, 0.3237440077649342, 0.6071692164257629, 0.6925152430641841, 0.592675381607996, 0.43854150134957587, 0.43854150134957587, 0.42437112972565305, 0.8061118855433299, 0.35195592295594336, 0.7605370065149419, 0.38898578429124253, 0.67510953655807, 0.872979709380305, 0.710510994258769, 0.720290290780972, 0.4820787970895852, 0.42019280799979697, 0.4304380754474639, 0.25285023254778977, 0.3238056884730761, 0.39471961640683584, 0.09510031985475974, 0.367046376808582, 0.21500793651835448, 0.8705359023101334, 0.6100742529031461, 0.6226449432624995, 0.7279369976219869, 0.3643494054700089, 0.09992017521484964, 0.41475515148757036, 0.6462260464983366, 0.14102909592513518, 0.48949585696458414, 0.5239520436918008, 0.6084413884537807, 0.5655473856702703, 0.9517420512476797, 0.7489379515982664, 0.4647937384849751, 0.7915321263825208, 0.44112279258530757, 0.5734340256727429, 0.6604471727860799, 0.4845203185458914, 0.6968730453869196, 0.5315374962198609, 0.8685951485887234, 0.6242442748350044, 0.2912097196987059, 0.7725938221565348, 0.2067629769731588, 0.30221725334927335, 0.13129342562285412, 0.6467789443522378, 0.6994753721471061, 0.11825382206919556, 0.41022417118631593, 0.4882665226122541, 0.7732287086973071, 0.25374762405010176, 0.49441682850108926, 0.3723877205427743, 0.652330313245635, 0.43667799883041203, 0.5964718913578133, 0.55172276504346, 0.24113559934961917, 0.8243980268882987, 0.7263843594269437, 0.43535214809021755, 0.8721122798612579, 0.18723914490145582, 0.6486906676970999, 0.11576704656818047, 0.4328241622975616, 0.491481212420291, 0.5264345378086769, 0.33856526784971647, 0.2967410926251248, 0.581398831228375, 0.5973776665460488, 0.6195406102170065, 0.37782717658841725, 0.323061133240968, 0.17420808473594895, 0.19634770547538957, 0.46492234760650425, 0.49613167963272686, 0.5812209036149294, 0.6057291775435286, 0.63414717387345, 0.5702687187355167, 0.8604975146328253, 0.6309022132706124, 0.48732991249542923, 0.6887148870948692, 0.41581945293096145, 0.5706760596351739, 0.4831274653996314, 0.06684727567316755, 0.49090643211649887, 0.15191610726090596, 0.2711405311223577, 0.7653618545702112, 0.09266565137124261, 0.4554350627407873, 0.19698919164573708, 0.6930185080649685, 0.5227537922811563, 0.50434568709929, 0.7082092780767422, 0.46058046365566996, 0.6735723234187477, 0.4285936050615775, 0.323061133240968, 0.5168500865319015, 0.6161307914674419, 0.23456444218973552, 0.3192004782541023, 0.21968945907811915, 0.5028183230931117, 0.43371621376298963, 0.6744209213341115, 0.5940260419772637, 0.13783310426722128, 0.5136444387530009, 0.5508647999875032, 0.4955911012838212, 0.9814394195009358, 0.8260225289794664, 0.17965956338109995, 0.46844896472597397, 0.6048119589659149, 0.3289160319090978, 0.2454606394453749, 0.7497022835596558, 0.683485355417811, 0.20995974230910305, 0.23504578258460665, 0.37175956099497537, 0.4875530438829156, 0.24982584224249993, 0.6282829625348888, 0.4520795162158371, 0.8200372413039435, 0.12832513643528837, 0.5299630655130737, 0.29552777318700446, 0.24021937552346023, 0.5429028773737552, 0.6311869746243346, 0.4145977043912777, 0.39329840463575844, 0.39070335653410526, 0.4286990948130573, 0.846836560604146, 0.6880850122626078], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (curr)\", \"type\": \"scatter\", \"x\": [0.9934, 0.9979, 0.99234, 0.9932, 0.99686, 0.9927, 0.9926, 0.99362, 0.989435, 0.99239, 1.0, 0.9908, 0.98918, 0.99168, 0.98904, 0.9932, 0.99438, 0.99189, 0.999, 0.9903, 0.999, 0.9986, 0.992, 0.9935, 0.99541, 0.9893, 0.99326, 0.99146, 0.99144, 0.99165, 0.98889, 0.9957, 0.9992, 0.99449, 0.98871, 0.9936, 0.9914, 0.99488, 0.98988, 0.995, 0.99123, 0.99014, 0.9958, 0.9986, 0.9974, 0.99417, 0.9998, 0.9968, 0.9969, 0.9908, 0.9972, 0.9917, 0.9946, 0.9922, 0.99376, 1.0006, 0.998, 0.9916, 0.99795, 0.99652, 0.99724, 0.99727, 0.99206, 0.99406, 0.99534, 0.98964, 0.9966, 0.9951, 0.99236, 0.9945, 0.9986, 0.99064, 0.99815, 0.99313, 0.9983, 0.99668, 0.99922, 0.99207, 0.9949, 0.9975, 0.98972, 0.9923, 0.99492, 0.9914, 0.9965, 0.99536, 0.99652, 0.99456, 0.9932, 0.994, 0.99526, 0.9934, 0.9904, 0.98836, 0.9931, 0.99148, 0.99704, 0.99018, 0.9968, 0.99376, 0.993, 0.99596, 0.99438, 0.98882, 0.9986, 0.99566, 0.996, 0.99262, 0.99132, 0.99159, 0.99551, 1.0103, 0.99144, 0.9893, 0.99171, 0.9934, 0.99238, 0.9934, 0.99552, 0.9989, 0.99322, 0.98976, 0.99384, 0.99, 0.99638, 0.99649, 0.9981, 0.991, 0.9984, 0.98961, 0.98961, 0.9933, 0.98918, 1.00014, 0.9931, 1.0006, 0.99667, 0.9979, 0.99252, 0.9917, 0.9943, 0.995, 0.9994, 0.99576, 0.99745, 0.9916, 0.9993, 0.9991, 0.993, 0.9927, 0.99564, 0.99094, 0.997, 0.9987, 0.98954, 0.9912, 0.99676, 0.9947, 0.99232, 0.9979, 0.9898, 0.9983, 0.98934, 0.99394, 0.9992, 0.9913, 0.99458, 0.9959, 0.99554, 0.9932, 0.99099, 0.9923, 0.99665, 0.99738, 0.9907, 0.9927, 0.991, 0.99154, 0.98872, 0.99444, 0.9943, 0.99646, 0.9934, 1.0002, 0.9956, 0.99314, 0.999, 0.9908, 1.001, 0.9949, 0.99278, 0.9984, 0.99076, 0.99064, 0.9931, 0.9918, 0.99173, 0.9893, 0.9993, 0.99612, 0.9914, 0.99312, 0.9937, 0.9929, 0.99294, 0.9928, 0.9947, 0.999, 0.993, 0.99742, 0.99224, 0.98986, 0.9948, 0.98998, 1.0006, 0.99162, 0.99232, 0.9914, 0.9922, 0.99, 0.9914, 0.9956, 0.9975, 0.99544, 0.9994, 0.9971, 0.99134, 0.9941, 0.99617, 0.99194, 0.99842, 0.9951, 0.994, 0.9922, 0.9956, 1.0004, 0.99031, 0.99164, 0.99216, 0.9917, 0.9938, 0.99176, 0.99313, 0.9959, 0.9956, 0.996, 0.99807, 0.9986, 0.9931, 0.9984, 0.9948, 0.9983, 1.0006, 0.9912, 0.99581, 0.99676, 0.9933, 0.99095, 0.98924, 0.99067, 0.99498, 0.9946, 0.9931, 0.99435, 0.9938, 0.99055, 0.9912, 0.99516, 0.9958, 0.9968, 0.99454, 0.99182, 0.98878, 0.9988, 0.9962, 0.9977, 0.9932, 0.99498, 0.99154, 0.99512, 0.9979, 0.99088, 0.99161, 0.99494, 0.99158, 0.9963, 0.99188, 0.99035, 0.9945, 0.9924, 1.0003, 0.9994, 0.99655, 0.98974, 0.99152, 0.99296, 0.99782, 0.99173, 0.9975, 0.9924, 0.98944, 0.9932, 0.99184, 0.9912, 0.9976, 0.99534, 0.98986, 0.99287, 0.991, 0.99047, 0.99691, 0.99165, 0.99646, 0.99708, 0.9902, 0.99178, 0.9963, 0.99232, 0.9938, 0.9934, 0.99176, 0.99408, 0.99572, 0.9998, 1.0026, 0.99, 0.992, 0.99734, 0.9975, 0.99204, 0.99492, 0.99666, 0.9994, 0.997, 0.99288, 0.994, 0.9996, 0.99685, 0.9958, 0.99346, 0.99215, 0.99521, 0.9974, 0.9956, 0.9967, 0.99406, 0.9936, 0.9926, 0.9982, 0.99086, 0.9955, 0.99158, 0.99975, 0.9987, 0.9966, 0.9926, 0.99815, 0.99366, 0.99706, 0.99358, 0.99071, 0.99582, 0.9988, 0.9986, 0.99551, 0.9956, 0.99862, 0.9957, 0.99882, 0.99324, 0.98823, 0.9952, 0.992, 0.99043, 1.0002, 0.99655, 0.98942, 0.99356, 0.99553, 0.99315, 0.9954, 0.9928, 0.99226, 0.9958, 0.99, 0.9948, 0.992, 0.9898, 0.99354, 0.99186, 0.99404, 0.99922, 0.992, 0.9988, 0.9939, 0.99557, 0.9999, 0.99531, 0.9903, 0.992, 0.9938, 0.991, 0.9907, 0.99784, 0.98952, 0.998, 0.9952, 0.99148, 0.99792, 0.99058, 0.9974, 0.99282, 0.9923, 0.9927, 0.99519, 0.9967, 0.9951, 0.99683, 0.99165, 0.99176, 0.99006, 0.99002, 0.99736, 0.99612, 0.9987, 0.9908, 0.9946, 0.99445, 0.98965, 0.9904, 0.99086, 0.9934, 0.99046, 0.9902, 0.99774, 0.9984, 0.996, 0.9976, 0.991, 0.99808, 0.9986, 0.9934, 0.9963, 0.9954, 0.98956, 0.9988, 0.99084, 0.99314, 0.99522, 0.99739, 0.99704, 0.9959, 0.9941, 0.99458, 0.99971, 0.9919, 0.99544, 0.99094, 0.9992, 0.99416, 0.99189, 0.98936, 0.99352, 0.9984, 0.99276, 0.9939, 0.9926, 0.993, 0.9928, 0.9966, 0.9944, 0.9952, 0.99467, 0.9984, 0.9943, 0.99381, 0.9946, 0.99121, 0.99174, 0.99052, 0.9944, 0.9927, 0.9962, 0.99552, 0.9958, 0.994, 0.99184, 0.98916, 0.99581, 0.99522, 0.9957, 0.9998, 0.99444, 0.99599, 0.9944, 0.9982, 0.9925, 0.9979, 0.99331, 0.9997, 0.99018, 0.99517, 0.9986, 0.9908, 0.98815, 0.99862, 0.99566, 0.9906, 0.9984, 0.9916, 0.99418, 0.992, 0.98779, 0.9915, 0.9934, 0.99, 0.99824, 0.9986, 0.9956, 0.99439, 0.9887, 0.9968, 0.9906, 0.9965, 0.9901, 0.99772, 0.9948, 0.991, 0.9947, 0.9984, 0.99572, 0.99388, 0.9976, 0.989315, 0.99358, 0.9926, 0.9978, 0.996, 0.99636, 0.99784, 0.99316, 0.99339, 0.99724, 0.9921, 0.98845, 0.99437, 0.99708, 0.99614, 0.98992, 0.9986, 0.9997, 0.99362, 0.9928, 0.99552, 0.99115, 0.99508, 0.99556, 0.98964, 0.9903, 0.99221, 0.99676, 0.9954, 0.99825, 0.99546, 0.9948, 0.991, 0.9945, 0.99479, 0.98912, 0.99042, 0.9963, 0.99787, 0.9916, 0.99742, 0.9893, 0.99158, 0.9954, 0.99172, 0.9925, 0.9906, 0.99459, 0.9976, 0.99456, 0.9893, 0.9931, 0.9927, 0.9963, 0.997, 0.9931, 0.99514, 0.9968, 0.99354, 0.9948, 0.99261, 0.99454, 0.9994, 0.99198, 0.998, 0.9928, 0.99068, 0.99384, 0.99275, 0.9952, 0.9932, 0.99165, 0.99616, 0.99659, 0.9924, 0.99316, 0.992, 0.9928, 0.99532, 0.9936, 0.98939, 0.99616, 0.99367, 0.98892, 0.99596, 0.99784, 0.99267, 0.99347, 0.9919, 0.99089, 0.99425, 0.99226, 0.989465, 0.9902, 0.995, 0.99565, 0.99192, 0.9964, 1.0014, 0.9898, 0.9922, 0.99166, 0.99576, 0.9884, 0.99764, 0.9951, 0.9953, 0.98964, 1.0001, 0.99837, 0.9934, 0.998, 0.99586, 0.99014, 0.99455], \"xaxis\": \"x2\", \"y\": [0.33396714643252134, 0.5044440900554997, 0.8874896900044845, 0.4686759077780351, 0.23831547366416572, 0.571181601185031, 0.7785327680196316, 0.7290551099174598, 0.9581131370131553, 0.6801000322064107, 0.413367674560271, 0.6667140739211237, 0.9108229754863395, 0.9275086157065797, 0.9186958597750785, 0.7191871442695774, 0.8184457509658746, 0.8597940676688322, 0.7947045908306632, 0.8244149680645384, 0.42771531534877594, 0.5315376696882942, 0.7136291946100958, 0.5510697799054304, 0.6393262665313312, 0.9016582766249417, 0.8560880110261746, 0.8947361144883382, 0.9102326114023062, 0.840723585394272, 0.9264645566705582, 0.5105903360131552, 0.752648770317166, 0.5855954083225455, 0.8989214048388485, 0.5190750352404293, 0.9560713253502463, 0.7273157243430202, 0.9279672131348602, 0.640103147954212, 0.9158977434209615, 0.9035955072010529, 0.7140955379655831, 0.233508355491505, 0.7280578325574358, 0.8810827811902006, 0.3966129217085586, 0.15541760955422754, 0.5851621750323275, 0.9046111951917862, 0.4177213302712193, 0.7993763114768937, 0.6978409661933959, 0.6473373667551029, 0.770784382977056, 0.6500641275496193, 0.548949563093737, 0.9803199442553986, 0.6150775052067382, 0.391333092160729, 0.6966682278280982, 0.9426748402861506, 0.9170092977635526, 0.844625652038695, 0.5621782696252592, 0.8935808323282117, 0.6792214086077275, 0.6719996755401956, 0.5252591274442797, 0.7277045758687855, 0.4685752957996948, 0.8616549355667619, 0.347491516391863, 0.8224130863808733, 0.5340790568488665, 0.6711667658766297, 0.5277539611022016, 0.7226430813715845, 0.8140972745487615, 0.3280236940194876, 0.9543080196225542, 0.7752655593026647, 0.9223925066666061, 0.8588031784191832, 0.6345107008491314, 0.9393010047953068, 0.7897067132703484, 0.8608062836413887, 0.8367885032124018, 0.38555642305179116, 0.8611944449682004, 0.9172341012895443, 0.9206892306522243, 0.9500505925695213, 0.537798347971205, 0.9173482789702866, 0.44454351342386716, 0.8909704850569525, 0.7351932580165473, 0.6818328744935735, 0.7981559962965634, 0.7626532952948841, 0.807353254900461, 0.964411205143099, 0.4685752957996948, 0.6986526320119215, 0.1956969407137045, 0.9233481403380283, 0.8218375601976645, 0.8536269727611236, 0.5637680470866036, 0.42267134533232753, 0.93003590801509, 0.9364808605729722, 0.8816060831574614, 0.9663102962713933, 0.8345570787709832, 0.4997893986747249, 0.7921603237806832, 0.5586815647381762, 0.8622246464681924, 0.9828719612298703, 0.909295720392338, 0.9476267884443668, 0.5395521774612226, 0.901360886913609, 0.39410444510430487, 0.9262213132200262, 0.6627387433216217, 0.9629433821448677, 0.9614311452267452, 0.9802968012486629, 0.933760787013923, 0.34432718187202205, 0.63596173557573, 0.624364378916488, 0.7417789548241253, 0.7300918276682445, 0.6968315453320488, 0.7840233885688647, 0.8958841271622066, 0.5417426694559925, 0.7102579146160282, 0.6004345411549624, 0.515920701757342, 0.7587882454650442, 0.5029588531082266, 0.6887596776945688, 0.8642849605932809, 0.6469572639767995, 0.8103639651534781, 0.939764354405301, 0.694136577696587, 0.6593725303534554, 0.9646797005081557, 0.7979900311745153, 0.792123904710467, 0.8869579700149332, 0.7351250317969437, 0.5332560471205093, 0.9406873315653421, 0.39362685027924615, 0.9466602521798594, 0.8394325033041952, 0.6633442657978572, 0.8126408700417265, 0.7332457619716184, 0.08024070404520958, 0.8667774471450977, 0.6466814331404849, 0.912366876100516, 0.656670904734599, 0.8701678467707724, 0.8875925797813499, 0.9658725076002231, 0.7668332861852056, 0.8604440887473094, 0.934384507524058, 0.9605946056867319, 0.951253157591183, 0.5749289095213865, 0.6279243005170476, 0.7937202818717513, 0.7665301650725991, 0.700127941221274, 0.8531107444728586, 0.7947045908306632, 0.8870566665876504, 0.5476228787844645, 0.8410401833568673, 0.8736671065238262, 0.6519898659949606, 0.936943112068646, 0.9077719201719568, 0.8071889556778997, 0.8815615400732472, 0.8935313268029127, 0.8782891297971865, 0.5029588531082266, 0.5797201450332624, 0.9416775458320723, 0.5958140198486584, 0.2485157288688957, 0.932021424688801, 0.8531502837407814, 0.6344194678828672, 0.632587077283238, 0.9121448358615357, 0.5776545535910985, 0.9052765174806566, 0.8580390107418799, 0.8998644401112552, 0.6784536879503494, 0.9458342431661766, 0.21387363850783603, 0.9530348339880965, 0.7307391114165022, 0.7187682731289255, 0.6905635603269331, 0.9569274903702625, 0.9287384091375525, 0.3856984054091925, 0.504413920551941, 0.5389739198483336, 0.5921068831639978, 0.10702848140489757, 0.8772993497727819, 0.6361944011057532, 0.8952999713010865, 0.7069578609115064, 0.10632960186243966, 0.6465592619811017, 0.9116333268133815, 0.9210441535829985, 0.9483358221641291, 0.5800224234700003, 0.896951343689222, 0.8958659323404018, 0.8896861436466836, 0.7763142135369961, 0.778627444633172, 0.9274605647284293, 0.9167924025380936, 0.6422094408272838, 0.6363725079258666, 0.8694129796739031, 0.5693182102579236, 0.5315376696882942, 0.6814536952243052, 0.30089534057709466, 0.6689448970920832, 0.6419522618821227, 0.6500641275496193, 0.8221968069187356, 0.9285763346020383, 0.8495153837633861, 0.7135666997345446, 0.8850789772017983, 0.9128367188568884, 0.8709442503982084, 0.44714680104169846, 0.7147831401969469, 0.6814536952243052, 0.5823319261018008, 0.7718122970862826, 0.8925058444773368, 0.9249991097277733, 0.7849066379312727, 0.5120166815330335, 0.7863291630268572, 0.8171821177205619, 0.8878235148823457, 0.9813953955585096, 0.5009899161211654, 0.6787020040856314, 0.2747106808400709, 0.6998114428322438, 0.7191783799678735, 0.7566715075843347, 0.7741630673610131, 0.692871858980435, 0.8706970297938403, 0.9226518689226377, 0.619213859232465, 0.9620625840847012, 0.8161066853745392, 0.7984578805051198, 0.8987836568806694, 0.27900511725120763, 0.747868261422589, 0.8013372150606806, 0.4430395412241901, 0.8082746512504794, 0.9248395818955686, 0.8132668978866627, 0.7926355964369082, 0.7243101498981422, 0.8251498778038484, 0.865753667016409, 0.8784859927081519, 0.9613966942665844, 0.8380103992838959, 0.9376908870460701, 0.8505645904112248, 0.5317253080143199, 0.8756470416862959, 0.8823120896825394, 0.8920529250761863, 0.9565288857220365, 0.92576324319171, 0.8397457208604353, 0.8008835764985612, 0.7620555647282774, 0.6333567796033132, 0.8986985644274655, 0.8289197139212982, 0.38568054861828666, 0.4358764146033148, 0.7013568331933456, 0.5524769805317635, 0.8654015550049637, 0.9625385348003681, 0.4997035751430624, 0.5940434106189647, 0.29640429037896177, 0.9370396801623051, 0.7496358493500708, 0.8521916566704996, 0.7519935213994349, 0.8956127660014477, 0.7563308848917781, 0.5425355780301907, 0.1652985164032473, 0.5777375433929663, 0.5926841497777402, 0.5247451599628447, 0.6215406511606532, 0.646742228322253, 0.5236567091352762, 0.8105889943537302, 0.7614647275399787, 0.7272264480694343, 0.44438282424164377, 0.8051848688934031, 0.253979247575754, 0.8737269176380216, 0.7884186533408385, 0.5226162157005312, 0.7776146375974927, 0.8021344726910251, 0.6794204065079696, 0.8398669626756513, 0.3743394998756179, 0.6593725303534554, 0.41008410759983227, 0.8726624594592295, 0.31336232876890546, 0.6187135046228962, 0.9208146539756937, 0.8948907807194619, 0.9475948217130945, 0.7098971478357265, 0.41970311630379203, 0.5524505095188592, 0.6689295490636696, 0.39534528644804523, 0.6686700461744643, 0.6608417181144597, 0.6289006219381473, 0.8112353209803558, 0.9675531845963172, 0.3468688843876404, 0.8171815196180959, 0.9315945487332388, 0.7612383340144859, 0.43979370974717685, 0.9452166580978265, 0.810349906376065, 0.4979189466877109, 0.9054024939516333, 0.7506263221664519, 0.8595966107872783, 0.9041757536760852, 0.5120166815330335, 0.9246344940597735, 0.622364539475366, 0.7975959936185795, 0.9376528402833735, 0.8270495791839716, 0.7463426393970082, 0.8508295060861325, 0.5277539611022016, 0.7926521549058593, 0.8343380415579561, 0.7973631232158779, 0.5423298306356671, 0.6253812669856891, 0.9342151247863544, 0.9064095870896521, 0.8428584418618921, 0.5680191878381406, 0.8230633503438987, 0.857993972512287, 0.8312116035859974, 0.8886868130574391, 0.5695902702544526, 0.8750573328895943, 0.47134086624147714, 0.6082670858563528, 0.8571520978358925, 0.7006810412396262, 0.6001343818465046, 0.8680196363335714, 0.7833148206731655, 0.835330250744176, 0.6883000602161935, 0.4297997702781997, 0.7132181587745201, 0.941909753873568, 0.9298379484442667, 0.8950633078112005, 0.9652574497835966, 0.8593048115498744, 0.23022113319019433, 0.5548683876071567, 0.8789570823277312, 0.7176343272433334, 0.7135972690872326, 0.900955402304434, 0.89110615578316, 0.8021344726910251, 0.36734125225010755, 0.9233813125795639, 0.9269988231022361, 0.6021478506882372, 0.27064660283581765, 0.7595966254948197, 0.5317253080143199, 0.9626288904553877, 0.518871521713375, 0.4244151934213653, 0.8784852709235653, 0.667697582798242, 0.6791650855490978, 0.8659372985570389, 0.5217980090164113, 0.9757802673562255, 0.20769640873195563, 0.6900575067285889, 0.15051833553221247, 0.8476988333501053, 0.12043274000614122, 0.6546311715671466, 0.412102187638673, 0.6339696776630096, 0.6925917751558638, 0.8074446941396305, 0.8417042066658985, 0.4702054036006336, 0.8107456318417504, 0.934253622333564, 0.9671353887875448, 0.3776875782453083, 0.5133306968464912, 0.8279918435672958, 0.7295730380004212, 0.8398957027397556, 0.7470826509089123, 0.7722124156410631, 0.3944809481034696, 0.5801047158883857, 0.7134138458261836, 0.8265590446981121, 0.5836238058504062, 0.7538957359152121, 0.9708936701567454, 0.41507295289487073, 0.9039211350062085, 0.5109703825452502, 0.8880660412534, 0.6332514250278477, 0.703270618172154, 0.863031725372896, 0.9601349291832292, 0.5845797646527732, 0.8357575010967041, 0.9584406458449958, 0.8733333206292072, 0.4740801794177068, 0.5787650908025566, 0.38525623454815555, 0.5715075300165849, 0.951253157591183, 0.831291834366621, 0.6482062646591596, 0.5447536045265621, 0.8456825404777587, 0.5358725178581014, 0.8893400405584444, 0.5955893395860203, 0.9408369636189147, 0.7580589814818564, 0.4244151934213653, 0.7636885291754726, 0.9532052815091139, 0.6686700461744643, 0.39683939049776734, 0.8309978518015588, 0.06774730328187532, 0.8934061610794648, 0.9459413258233057, 0.8507977517004935, 0.9694554821790147, 0.8640493534313302, 0.8409166048571896, 0.9059760843724536, 0.7278052027863667, 0.8952246802917138, 0.39534528644804523, 0.9558702864115934, 0.9178754126151818, 0.7504628435478695, 0.7568870052952757, 0.32046258648166903, 0.9712495894387816, 0.7125870341029702, 0.8286889773580812, 0.929575727770858, 0.8422483936479932, 0.60065365322741, 0.5775074082600717, 0.7505976846167132, 0.5317253080143199, 0.9590110623565244, 0.9651712957082627, 0.7333643603414158, 0.7757825668725274, 0.8928390517037824, 0.2578168736401774, 0.5355488836719776, 0.8408692583280314, 0.7849780542174357, 0.8711681462620556, 0.8447990405440073, 0.9571933326515756, 0.9307123551507692, 0.6421242495412457, 0.9239207054420927, 0.9336219461922934, 0.4244151934213653, 0.5673643045526261, 0.8301442064454496, 0.528471943574542, 0.8835542071774324, 0.8820947700128993, 0.4561713647735051, 0.584381944856391, 0.9493936477483658, 0.7816316980556022, 0.7770145472448273, 0.8495153837633861, 0.8318035560268552, 0.5220388622338656, 0.8589980209217414, 0.21216021099657945, 0.8782303617207965, 0.901850575196968, 0.7683760396387002, 0.9559989503713009, 0.938411491366706, 0.7225398931917507, 0.5918361617892179, 0.8596378534897678, 0.8816239240572568, 0.9296844522785247, 0.8299758417251202, 0.7538846798551382, 0.931253582726863, 0.6902425303942638, 0.9299571155275668, 0.35461708236434614, 0.6119587629530028, 0.8979450471026776, 0.8782891297971865, 0.6144930729026484, 0.5601837238662909, 0.4230258756549153, 0.5115702372514986, 0.6133200318312215, 0.8287048127179734, 0.42887934024879554, 0.5543929044930882, 0.5414149972460248, 0.7453725251924848, 0.6522898344923613, 0.6445138145159856, 0.9212190995841192, 0.6991293681294938, 0.9188224881967051, 0.9444881948020799, 0.8399825546316605, 0.6440269003431431, 0.45260210695563535, 0.6678228102737954, 0.8535669746933884, 0.23469888428232324, 0.7581156815660375, 0.8329520097124233, 0.5886389680190937, 0.4250130050586104, 0.290761161529129, 0.9065968169685268, 0.39757013049667705, 0.9584529405260903, 0.24804178200132845, 0.8400605958344816, 0.9562762484868867, 0.5923100188758571, 0.5355488836719776, 0.6866862751474886, 0.753715093249364, 0.9302702282582556, 0.8405005145861136, 0.7758456574858743, 0.8270123797965384, 0.9270997487744173, 0.8779999285967196, 0.6350604679157676, 0.9057987369792326, 0.9732730617650076, 0.28007269673131574, 0.5393237551960537, 0.9509318156255189, 0.8055358405733448, 0.8512314640165554, 0.6752183046546253, 0.9766791413071304, 0.26893819095773785, 0.5105552073939665, 0.7964242570425004, 0.9159462749375985, 0.46312559485344046, 0.7889853219989779, 0.5331772070153998, 0.6250130361556073, 0.5340700079782073, 0.8981158701031157, 0.8424802355113449], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [0.9966, 0.99556, 0.9939, 0.99126, 0.9996, 1.001, 0.99565, 0.998, 0.99692, 0.9997, 0.9956, 0.9918, 0.99513, 0.99587, 0.99869, 1.0, 0.9959, 1.0004, 0.99253, 0.9905, 0.9918, 0.9996, 0.9946, 0.9978, 0.99009, 0.9926, 0.997, 0.99898, 0.99215, 0.9931, 0.99839, 0.9944, 0.99798, 0.9963, 0.9926, 0.99341, 0.998, 0.9968, 0.9953, 0.9934, 0.9918, 0.99494, 0.9968, 0.9982, 0.992, 0.99212, 0.9976, 0.99616, 0.99911, 0.99244, 0.99454, 1.0011, 0.9937, 0.99612, 0.9976, 0.9963, 0.99748, 1.00315, 0.9966, 0.99848, 1.00315, 0.9976, 0.9962, 1.0006, 0.99657, 0.99592, 0.99702, 0.9978, 0.9965, 0.9956, 0.99654, 0.99093, 0.99212, 0.99694, 0.9938, 0.99174, 1.0, 0.9918, 0.99345, 0.99717, 0.9966, 0.99576, 0.9972, 0.9968, 0.9938, 0.9923, 0.9967, 0.99976, 0.992, 0.9978, 0.9951, 0.9936, 0.998, 0.9991, 0.99683, 0.99476, 0.9958, 0.9986, 0.9972, 0.99596, 0.99918, 0.99479, 1.0, 0.9955, 0.9954, 0.99584, 0.9984, 0.99448, 0.99416, 0.9989, 0.9964, 0.9983, 0.99712, 0.99362, 0.9926, 0.99669, 0.99676, 0.99471, 0.9955, 0.9958, 0.9962, 0.99182, 0.9946, 0.996, 0.99546, 0.99915, 0.99111, 0.9997, 0.99546, 0.9938, 0.98876, 0.99734, 0.9991, 0.992, 0.99694, 0.9976, 0.993, 0.9976, 0.99681, 0.99494, 0.9938, 0.9938, 0.99239, 0.9939, 0.9992, 0.99677, 0.99176, 0.9958, 0.9964, 0.99568, 0.9932, 0.99942, 0.9973, 0.9958, 0.99344, 0.9928, 0.99481, 0.99584, 0.99696, 0.9988, 0.99745, 0.99872, 0.99212, 0.9982, 0.9974, 0.9944, 0.9904, 0.99264, 0.99299, 0.99534, 0.9997, 0.9966, 0.9934, 0.99204, 0.9964, 0.98918, 0.9923, 0.99775, 0.99742, 0.99642, 0.9941, 0.99688, 1.0004, 0.9927, 0.99705, 0.99154, 0.9958, 0.9989, 0.9936, 0.99545, 0.99743, 0.99524, 0.99555, 0.99173, 0.9976, 0.9961, 0.9936, 0.99382, 0.99947, 0.997, 0.9962, 0.9976, 0.9983, 0.9986, 0.98993, 0.99922, 0.9958, 0.9994, 0.9974, 0.9977, 0.998, 0.99458, 0.99552, 0.99194, 0.9953, 0.99084, 0.9973, 0.9966, 0.99288, 0.9928, 0.9975, 0.9961, 0.9982, 0.9952, 0.9934, 0.996, 0.998, 0.9961, 0.99366, 0.99138, 0.9991, 0.99305, 1.0001, 0.9981, 0.9965, 0.99628, 0.99164, 0.99193, 0.9991, 0.9931, 0.99771, 0.9993, 0.99176, 0.9962, 0.99048, 0.9944, 0.9936, 0.99469, 0.9986, 0.99362, 0.9978, 0.99884, 0.9958, 0.99779, 0.9927, 0.99924, 0.9962, 0.9958, 0.99692, 0.99818, 0.99732, 0.99471, 0.9978, 0.9978, 0.99402, 0.99211, 0.9956, 0.99176, 0.99032, 0.99488, 0.99069, 0.9994, 0.9998, 0.9955, 0.99514, 0.9929, 0.99907, 0.998, 0.9958, 0.9968, 0.9983, 0.9993, 0.99047, 0.99202, 0.9986, 0.99185, 0.99249, 0.9943, 0.9911, 0.99726, 0.99527, 0.9944, 0.99626, 0.99746, 0.99304, 0.9984, 0.99274, 0.9955, 0.99804, 0.9986, 0.99182, 0.9996, 0.99454, 0.997, 0.99718, 0.9904, 0.9986, 0.9962, 1.0004, 0.9954, 0.9965, 0.99516, 0.9944, 0.9998, 0.9944, 0.998, 0.9938, 0.99558, 0.9956, 0.9932, 0.997, 0.9954, 0.99773, 0.9953, 0.9994, 0.9963, 0.9991, 0.9969, 0.9956, 0.99212, 0.9967, 0.9968, 0.9918, 0.9914, 0.9964, 0.992, 0.99198, 0.99271, 1.0001, 0.9952, 0.9958, 0.9978, 0.9953, 0.99652, 0.9994, 0.99242, 0.9979, 0.9966, 1.0001, 0.9932, 0.99372, 0.9917], \"xaxis\": \"x2\", \"y\": [0.8142007211296887, 0.07257977436397642, 0.7430932382113554, 0.8214862427787604, 0.5698848321031316, 0.6048119589659149, 0.6466669219762841, 0.14510080060429495, 0.2250304680670007, 0.28492472637839966, 0.42061632734231896, 0.8281252124183194, 0.49622399336621903, 0.3482895521074759, 0.4678833354511545, 0.5708968386647719, 0.37048677721847617, 0.553632248395139, 0.8702137350251022, 0.42186952587750404, 0.8696774950675754, 0.5410576963494411, 0.3971326977900686, 0.3275001196198921, 0.9448289227093116, 0.7109941475090589, 0.41925580570138304, 0.3675472469853882, 0.6721911818800557, 0.5562207270314473, 0.5262426608517637, 0.3244609607385458, 0.15056615442564347, 0.15676979724311627, 0.6037730696030339, 0.6342511279653397, 0.021947035536558718, 0.32429164429335744, 0.5678746850743716, 0.3571680467137555, 0.7755534309390314, 0.3240287891037917, 0.699424662214302, 0.5151532452376618, 0.7564675819717819, 0.38343591026479057, 0.19811005648518398, 0.3168419703358067, 0.5315947262677626, 0.9269044449273315, 0.8260225289794664, 0.451791899378283, 0.830516920403184, 0.47128602930186, 0.19027823806377472, 0.5181346713949518, 0.29552777318700446, 0.45414400334446664, 0.39329840463575844, 0.42327932510626076, 0.45838907164509224, 0.2233864252642039, 0.3628419195926303, 0.6709353200988277, 0.46058046365566996, 0.25551237833043455, 0.7234147543269824, 0.1481282262733752, 0.314935793994079, 0.20050531530561894, 0.37453315488553635, 0.701015529968035, 0.6343341418527783, 0.1739320900588749, 0.734996253073231, 0.8172229478314255, 0.3598554146739685, 0.7121055211356295, 0.2620604909731644, 0.3421138035730516, 0.6951268813066005, 0.35208221297891723, 0.452099210446082, 0.18907620085798427, 0.5444201651108793, 0.6484058972837882, 0.3258186925596978, 0.5963383680780668, 0.6202666247822538, 0.576738593946626, 0.5054992484109841, 0.2972245631729925, 0.6844333356791464, 0.42629475072919953, 0.4405153833121037, 0.01207867704715336, 0.7609288944606691, 0.23951123982998349, 0.09310514674080905, 0.5084920166510624, 0.33067609257366243, 0.36481899584296196, 0.5708968386647719, 0.3194802059637459, 0.14207297841267416, 0.5776897120055972, 0.2026163425795633, 0.37909000048748537, 0.38206764842015895, 0.41324683104354176, 0.17826143731067332, 0.42339414872454434, 0.39148091864802853, 0.3511350413575442, 0.8053393751847749, 0.5937005322868365, 0.6849942580153355, 0.38930033076762494, 0.5168500865319015, 0.5699073288866824, 0.5376087249833421, 0.8185832461647057, 0.25950508036415604, 0.20394483716883388, 0.3303044530853749, 0.2528102968078532, 0.8477719856767125, 0.5217124250004609, 0.3303044530853749, 0.5382885532339231, 0.9625763866028243, 0.6536174904341296, 0.42629475072919953, 0.6458781618432388, 0.46574001023909845, 0.37268733756108086, 0.8180085473348132, 0.35493594975273335, 0.2423640089427935, 0.3636330633241046, 0.6421622311157122, 0.5444201651108793, 0.7396308412796291, 0.9036153464846048, 0.21101569987323432, 0.6004024464464508, 0.7595861882737439, 0.486549602332862, 0.2379839758891197, 0.5147825233229498, 0.2065932277190248, 0.4342628292980428, 0.5940848250235929, 0.4857193175270624, 0.5332610244722983, 0.5402196969638672, 0.8578846895389459, 0.5290225674595067, 0.6074669506688956, 0.1847839155105034, 0.3581391437324269, 0.4304380754474639, 0.8410120374942113, 0.5810086483513661, 0.19026233744636453, 0.7223494520380469, 0.8589928738613049, 0.8374625942163022, 0.781203852328267, 0.73983195178881, 0.41156537259256004, 0.7482873396984137, 0.44431713201158524, 0.7113673874393347, 0.49869552495399233, 0.7627102864663872, 0.37193390769028617, 0.37187810520956766, 0.3773291605703562, 0.8719651627687759, 0.6218762459828849, 0.3781393537983126, 0.553632248395139, 0.47624084907999176, 0.774399353278846, 0.5840424935194366, 0.5601025471409736, 0.6186690618327106, 0.620611700356168, 0.5755798886129706, 0.15047650536569443, 0.5530049338021776, 0.6597439619439023, 0.8300222117931148, 0.3490158529243493, 0.4410646109528086, 0.5067909967309752, 0.5851482063434866, 0.7149827463187939, 0.4849259975950144, 0.2094210588097294, 0.33399024531412796, 0.4083143545243069, 0.7497022835596558, 0.7817929239213606, 0.7637421953724776, 0.3825655414920891, 0.6611482494098961, 0.19022241257108333, 0.44972084577511023, 0.5476732603321269, 0.4831274653996314, 0.5077048340566679, 0.7289504589448288, 0.4379810490617926, 0.8017221455714771, 0.6434673631716396, 0.5059779734745421, 0.6065367192264559, 0.650368705032214, 0.34567471266024347, 0.39561589000187136, 0.3427787545601037, 0.4676404271158623, 0.5332283386400669, 0.4519108142444285, 0.40662831629925006, 0.42305576187259053, 0.22032895172816622, 0.5278715769330472, 0.43679486629948455, 0.743933429392776, 0.5269515041023835, 0.5008800654866953, 0.214168174561682, 0.44879088851457377, 0.683485355417811, 0.807753104897186, 0.42629475072919953, 0.8502951424821861, 0.17421175568219957, 0.25491371883486935, 0.7595861882737439, 0.6571724132942184, 0.7813188949129265, 0.5626906653340306, 0.8674288259883418, 0.6600514650598344, 0.4827749661719035, 0.5456147119159479, 0.39827550056677263, 0.27323823737433794, 0.695896529362927, 0.5048820477254727, 0.5422349097465021, 0.5610936746718964, 0.6571724132942184, 0.3088751107498249, 0.45428761266464013, 0.6604471727860799, 0.43371621376298963, 0.6171893197168647, 0.8100511550343341, 0.8100511550343341, 0.605832578461134, 0.5526475584669951, 0.4275055171336787, 0.8734720021260204, 0.8508295378350301, 0.5807723706867254, 0.8272749548927728, 0.2670652478909882, 0.7020144194675465, 0.4615566916191992, 0.7055847950248242, 0.43389869234556755, 0.6071692164257629, 0.3496825637352313, 0.23676491619791426, 0.7057755976874825, 0.15539001443149586, 0.6187538615870153, 0.8735882828904331, 0.30049486749739024, 0.23191705420611952, 0.8913917397916864, 0.4977157214618499, 0.16961113509580228, 0.8485494795219795, 0.4760032757956232, 0.5053843099270294, 0.2676015269871764, 0.3627664421236291, 0.15146266807038725, 0.7898179638281774, 0.6145296307645981, 0.3790380236797623, 0.3003532640340299, 0.6086112016774773, 0.39906793889171593, 0.8185832461647057, 0.6715802865662828, 0.8260225289794664, 0.6056902064850618, 0.400132762133902, 0.39471961640683584, 0.6449859309106076, 0.5637152910565628, 0.39949420960438964, 0.5490401551410112, 0.4398875418860128, 0.30916577334906253, 0.7093303227687476, 0.4562508424819209, 0.40444044759428516, 0.5773483646962835, 0.447777692034652, 0.4961542215384683, 0.32474312180562226, 0.21192693199409943, 0.9056903490933487, 0.5013816399998683, 0.758876109553896, 0.6364928148646596, 0.2952804752502578, 0.4748951900520853, 0.43679486629948455, 0.5479962315186364, 0.4728142838839701, 0.6343341418527783, 0.12248807650217919, 0.5052525886146573, 0.8281252124183194, 0.8930081609652758, 0.36283726088930296, 0.8098196742550625, 0.656477404357746, 0.193885049884708, 0.5269515041023835, 0.49858469647139786, 0.32780472036158087, 0.24927512797396847, 0.6148718578314069, 0.10691527318901187, 0.136775438340409, 0.8489192718114075, 0.2600203086082801, 0.8142007211296887, 0.5269515041023835, 0.7966615933629455, 0.5633234794197017, 0.767479452333631], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"density\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"density\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}, \"density_bad\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (ref)\", \"type\": \"scatter\", \"x\": [0.9976, 0.991, 0.9936, 0.9949, 0.99922, 0.9976, 0.9944, 0.99648, 0.996, 0.99898, 0.99914, 0.9927, 0.9982, 0.99244, 0.9932, 0.99459, 0.99655, 0.994, 0.99904, 0.9964, 0.9927, 0.9964, 0.9958, 0.99242, 0.9979, 0.997, 0.99403, 0.9979, 0.99741, 0.99266, 0.9969, 0.9932, 0.9965, 0.9948, 0.9975, 0.9958, 0.9935, 0.99519, 0.9971, 0.9958, 0.99792, 0.99828, 0.9928, 0.9941, 0.99593, 0.99773, 0.9925, 0.99254, 0.99628, 0.9957, 0.9974, 0.99824, 0.9951, 1.0002, 0.99699, 0.9988, 0.9959, 0.99212, 0.9926, 1.0001, 0.9972, 0.998, 0.99334, 0.997, 0.99733, 0.992, 0.9964, 0.9956, 0.9973, 0.993, 0.9963, 0.99817, 0.9976, 0.99048, 0.99166, 0.99208, 0.99745, 0.9941, 0.99892, 0.99152, 0.99397, 0.9948, 0.9957, 0.99585, 0.99382, 0.99699, 0.995, 0.9932, 0.9941, 0.9937, 0.99817, 0.9961, 0.9964, 0.9976, 1.0, 0.99548, 0.998, 0.996, 0.99528, 0.9998, 0.9982, 0.9982, 0.99405, 1.0008, 0.99625, 0.9973, 0.99684, 0.9902, 0.9963, 0.99502, 0.9956, 0.9937, 0.9958, 0.9949, 0.99634, 0.99642, 0.9976, 0.99001, 0.9985, 0.9934, 0.9976, 0.99374, 0.9968, 0.99687, 0.998, 0.99718, 0.99437, 0.9963, 0.9959, 0.99579, 0.9939, 1.001, 0.99478, 0.99604, 0.99534, 0.9946, 0.9956, 0.9986, 0.99138, 0.9962, 0.9989, 0.99582, 0.9904, 0.99736, 0.99287, 0.9932, 0.9924, 0.99678, 0.9981, 0.9972, 0.9912, 0.99783, 0.9907, 0.99669, 0.99317, 0.99656, 1.001, 0.9969, 0.9938, 0.9905, 0.9928, 0.9988, 0.9981, 0.99429, 0.99587, 0.9942, 0.99504, 0.9986, 0.99738, 0.9958, 0.99537, 0.98956, 0.9981, 0.99873, 0.9966, 0.99682, 0.9961, 0.99166, 0.9968, 0.9937, 0.99308, 0.9964, 0.9924, 0.9946, 0.9982, 0.99512, 0.9994, 0.99098, 0.99642, 0.9966, 0.9937, 0.992, 0.9968, 0.99036, 0.99548, 0.99672, 0.9968, 0.99388, 0.99907, 0.99255, 0.9937, 1.00242, 1.00242, 0.9966, 0.99234, 0.99625, 0.99184, 0.9982, 0.9942, 0.9897, 0.994, 0.99168, 0.9952, 0.9977, 0.99872, 0.99772, 0.9981, 0.9904, 0.9993, 0.9958, 0.99578, 0.99026, 0.9982, 0.9941, 0.99166, 0.99627, 0.9932, 1.0005, 0.9934, 0.998, 0.9944, 0.9938, 0.9957, 1.00044, 0.99026, 0.99244, 1.00118, 0.994, 0.99314, 0.9972, 0.99818, 0.99561, 0.99839, 0.9948, 0.99026, 0.99734, 0.9978, 0.99273, 0.99602, 0.9978, 1.001, 0.9944, 0.9965, 0.9966, 0.99434, 0.9987, 0.99496, 0.9934, 0.996, 1.0004, 0.9926, 0.9946, 0.998, 0.99238, 0.9954, 0.99479, 0.99362, 0.99296, 0.99633, 0.9977, 1.00241, 0.9984, 0.994, 0.99611, 0.9948, 0.99794, 0.9956, 0.99794, 0.99588, 0.9922, 0.9978, 0.99689, 0.9953, 0.99572, 0.9942, 0.99582, 0.9959, 0.9972, 0.9921, 0.9955, 0.9918, 0.9962, 0.9924, 0.99076, 0.99782, 0.99709, 0.99458, 0.99806, 0.9983, 0.998, 0.99346, 0.9937, 0.99814, 0.9966, 1.0001, 0.9926, 0.99943, 0.9955, 0.9986, 0.99657, 0.9945, 0.99558, 0.99689, 0.9955, 0.9979, 0.9938, 1.00098, 0.9984, 0.9969, 0.99732, 0.99647, 0.9968, 0.9955, 0.9962, 0.9949, 0.99663, 0.9976, 0.99454, 0.9967, 0.99577, 1.001, 0.9987, 0.99516, 0.9986, 0.99164, 0.9974, 0.99902, 1.0001, 0.99032, 0.99848, 0.9928, 0.9934, 0.9939, 0.9976, 0.9982, 0.99748, 0.99773, 0.9964, 0.994, 0.99898, 0.9966, 0.99575, 0.998, 0.9937, 0.99517], \"xaxis\": \"x\", \"y\": [0.7197707895473677, 0.05448058807241418, 0.5021256787650443, 0.4710854375480472, 0.7156076129280222, 0.7966690429773311, 0.7265425252145667, 0.16771266951545494, 0.610944103187451, 0.6324527530146118, 0.42180662537268765, 0.2598044700255929, 0.5503032830239416, 0.5632112185661304, 0.6840604465833231, 0.6224375641140001, 0.8071781895370533, 0.9515482366939344, 0.3994071349416132, 0.9677746238863042, 0.572587586261062, 0.7602674855798478, 0.861098734498427, 0.1386074727873, 0.6703360831713621, 0.8064003460928679, 0.3172728283240366, 0.8039094494444462, 0.9186426431335688, 0.6026275969807151, 0.8609701260317718, 0.3485833566260712, 0.3005246278528939, 0.2859113263741919, 0.4978204971029292, 0.5125675444128744, 0.4268860326359044, 0.11791793574572085, 0.440027850275134, 0.4938434408506086, 0.4933189622152446, 0.166194347192407, 0.30200278364192557, 0.6822425768461728, 0.8693180940701344, 0.24112389044610405, 0.43189370387303117, 0.284455178085937, 0.23793737479647703, 0.5535561322468214, 0.7900402576908969, 0.47373775892899717, 0.6055733033081183, 0.7462675017011632, 0.32245623572553406, 0.7612367841042231, 0.36308410170653527, 0.6103993963703384, 0.3965676277125745, 0.2230008284200371, 0.8480025164595866, 0.43585875500482685, 0.24095331994381775, 0.4030652094068704, 0.8951637220162157, 0.2782175630406618, 0.7337660836226194, 0.8352762102164887, 0.6223987562306759, 0.2928263700360406, 0.6563137004068428, 0.16155652477357085, 0.6364666355122575, 0.2186811050870735, 0.27206300237801306, 0.4358901152617537, 0.6136035252376228, 0.07900866299327158, 0.8522855318359817, 0.11906253414448076, 0.3466831105240652, 0.11265227152414181, 0.6302693732121377, 0.7168097665217413, 0.4796298258249143, 0.4476252306691143, 0.3612478268219491, 0.611861930499026, 0.15121036728507153, 0.5363393546692182, 0.16155652477357085, 0.441733396330222, 0.7834276811132227, 0.6364666355122575, 0.44873286860252337, 0.4948960601400133, 0.4172084246960842, 0.5055831714989107, 0.5269082808529498, 0.3737404408311804, 0.4491757516278906, 0.5266720849021, 0.2882430633103308, 0.6066213483726142, 0.83534933450756, 0.2509605867776752, 0.230738949997912, 0.25680675940048736, 0.6858999083789018, 0.27626495444752697, 0.35158671089680515, 0.311480105980391, 0.5950329577300569, 0.4196263877039489, 0.3672198477254309, 0.5488429300958864, 0.6273126624389191, 0.0990306898864649, 0.935036100419004, 0.5556828679884147, 0.6003916802566726, 0.1337843055401957, 0.6898191889393818, 0.46604488826349566, 0.6668872608045229, 0.5998672378660981, 0.14712454771937833, 0.8558065212045691, 0.883276495704891, 0.5544329747085402, 0.38398791005853006, 0.8623310715459079, 0.4482795971615686, 0.4767821080964978, 0.6451659669426603, 0.5099786295438409, 0.11454219273407718, 0.5691587732433696, 0.2398813672346335, 0.8592796956842923, 0.38133093816728936, 0.4754945767078651, 0.2673740541283356, 0.43092180164799054, 0.5981491184574936, 0.7512253043619477, 0.20474988026063612, 0.12337786436138054, 0.6965484670033051, 0.4642254518352117, 0.29034758521725457, 0.7912282271603185, 0.1364389858241727, 0.5326323768611896, 0.3938848007926149, 0.886984727126295, 0.5955398539691413, 0.3667393936023857, 0.35129461810907203, 0.578130474122496, 0.1952086434691429, 0.6982941690158907, 0.6159300986783536, 0.6650580695700093, 0.8007006003287879, 0.13750802167619447, 0.47121416359091395, 0.5691587732433696, 0.5295784007050042, 0.4938434408506086, 0.4240508430342457, 0.1531205555636086, 0.7965770364050346, 0.4829168465516456, 0.6333246955344933, 0.38682769986244625, 0.5589353890471914, 0.30965836575156913, 0.6133571507425741, 0.5363393546692182, 0.5474540697204298, 0.9680074395956593, 0.29703705077451537, 0.7566858385458134, 0.451244026180727, 0.6224939697452743, 0.9340693900855184, 0.1254375450851024, 0.770680513376406, 0.7273231109206828, 0.410671569380914, 0.19928392436820586, 0.44743622108127745, 0.4991477681643879, 0.5443787589855091, 0.826082779912576, 0.5642536294664222, 0.6762559922350657, 0.39283078357423706, 0.3074847569358159, 0.40732461839200396, 0.5614584986504241, 0.5614584986504241, 0.575628870274347, 0.1938881144566701, 0.6480440770440566, 0.23946299348505806, 0.6110142157087575, 0.32489046344192996, 0.127020290619695, 0.28948900574123104, 0.27970970921902805, 0.5179212029104148, 0.579807192000203, 0.5695619245525361, 0.7471497674522103, 0.6761943115269239, 0.6052803835931642, 0.9048996801452402, 0.632953623191418, 0.7849920634816455, 0.12946409768986655, 0.3899257470968539, 0.37735505673750047, 0.27206300237801306, 0.6356505945299911, 0.9000798247851504, 0.5852448485124296, 0.3537739535016634, 0.8589709040748648, 0.5105041430354158, 0.4760479563081992, 0.3915586115462193, 0.4344526143297297, 0.04825794875232026, 0.25106204840173363, 0.5352062615150248, 0.2084678736174792, 0.5588772074146924, 0.42656597432725707, 0.3395528272139201, 0.5154796814541086, 0.30312695461308037, 0.4684625037801391, 0.13140485141127656, 0.37575572516499556, 0.7087902803012941, 0.22740617784346517, 0.7932370230268412, 0.6977827466507267, 0.8687065743771458, 0.3532210556477622, 0.3005246278528939, 0.8817461779308045, 0.5897758288136841, 0.5117334773877459, 0.2267712913026929, 0.7462523759498982, 0.5055831714989107, 0.6276122794572256, 0.34766968675436505, 0.563322001169588, 0.4035281086421867, 0.44827723495654004, 0.7588644006503809, 0.17560197311170134, 0.2736156405730563, 0.5646478519097824, 0.12788772013874206, 0.8127608550985441, 0.35130933230290007, 0.8842329534318195, 0.5671758377024384, 0.508518787579709, 0.4735654621913231, 0.6614347321502836, 0.7032589073748752, 0.418601168771625, 0.40262233345395115, 0.38045938978299354, 0.6221728234115828, 0.6769388667590319, 0.825791915264051, 0.8036522945246104, 0.5350776523934957, 0.5038683203672731, 0.4187790963850706, 0.3942708224564714, 0.36585282612655, 0.42973128126448334, 0.1395024853671747, 0.36909778672938764, 0.5126700875045708, 0.31128511290513083, 0.5841805470690385, 0.42932394036482613, 0.5168725346003686, 0.9331527243268325, 0.5090935678835011, 0.848083892739094, 0.7288594688776423, 0.23463814542978878, 0.9073343486287574, 0.5445649372592127, 0.8030108083542629, 0.30698149193503155, 0.47724620771884374, 0.49565431290071005, 0.29179072192325783, 0.53941953634433, 0.32642767658125227, 0.5714063949384225, 0.6769388667590319, 0.48314991346809855, 0.3838692085325581, 0.7654355578102645, 0.6807995217458978, 0.7803105409218809, 0.4971816769068883, 0.5662837862370104, 0.32557907866588853, 0.4059739580227363, 0.8621668957327787, 0.4863555612469991, 0.44913520001249685, 0.5044088987161788, 0.018560580499064172, 0.17397747102053363, 0.8203404366189, 0.531551035274026, 0.3951880410340851, 0.6710839680909022, 0.7545393605546251, 0.25029771644034415, 0.31651464458218903, 0.7900402576908969, 0.7649542174153934, 0.6282404390050247, 0.5124469561170844, 0.7501741577575001, 0.3717170374651112, 0.5479204837841629, 0.1799627586960565, 0.8716748635647116, 0.4700369344869263, 0.7044722268129955, 0.7597806244765397, 0.4570971226262448, 0.3688130253756654, 0.5854022956087224, 0.6067015953642416, 0.6092966434658947, 0.5713009051869427, 0.15316343939585397, 0.31191498773739224], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [0.992, 0.9964, 0.99097, 0.99511, 0.9934, 0.99558, 0.98894, 0.9909, 0.9902, 0.98994, 0.9926, 0.99458, 0.9951, 1.0, 0.9955, 0.9954, 0.99, 1.0032, 0.99002, 0.99364, 0.99566, 0.99175, 0.9928, 0.99085, 0.9938, 0.9938, 0.98742, 0.9955, 0.9942, 0.9892, 0.9911, 0.99728, 0.9914, 0.99035, 0.99076, 0.99855, 0.9969, 0.98892, 0.99015, 0.99089, 0.98954, 0.9945, 0.9971, 0.99245, 0.99676, 0.9972, 0.9978, 0.992, 0.9962, 0.9906, 0.9978, 0.9991, 0.98998, 0.99304, 0.992, 0.9979, 0.99201, 0.98941, 0.992, 0.992, 0.99758, 0.99016, 0.991, 0.993, 1.001, 0.9984, 0.99064, 0.9941, 0.9954, 0.99146, 0.9918, 0.98934, 0.99278, 0.99316, 0.9965, 0.99556, 0.9973, 0.98928, 0.99638, 0.9916, 0.995, 0.99012, 0.99109, 0.997, 0.9935, 0.99096, 0.9918, 0.9982, 0.9896, 0.9984, 0.9919, 0.9918, 0.9942, 0.9912, 0.99471, 0.99241, 0.99567, 0.98959, 0.98984, 0.9946, 0.9934, 0.9986, 0.99638, 0.9951, 0.98914, 0.9938, 0.9925, 0.9946, 0.99058, 0.99472, 0.99002, 1.0103, 0.99208, 0.99666, 0.99202, 0.9889, 0.99034, 0.98974, 0.999, 0.99534, 0.99808, 0.9924, 0.9974, 0.998, 0.99678, 0.99538, 0.9958, 0.9974, 0.9931, 0.9983, 0.9934, 0.98746, 0.9998, 0.99624, 0.9966, 0.98976, 0.99834, 0.99627, 0.98968, 0.998, 0.99007, 0.9945, 0.99452, 0.9935, 0.9984, 0.9938, 0.99279, 0.9905, 0.9948, 0.9974, 0.99792, 0.998, 0.99256, 0.99775, 0.99835, 0.99189, 0.99033, 0.9908, 0.9931, 0.98972, 0.9949, 0.99616, 0.99014, 0.9974, 0.9938, 0.9962, 0.99642, 0.9942, 0.9977, 0.9894, 0.99566, 0.9964, 0.993, 0.99507, 0.9964, 0.9948, 0.9964, 0.9939, 0.99174, 0.99736, 0.99462, 0.99, 0.99458, 0.9895, 0.9949, 0.991, 0.98758, 0.9973, 0.9912, 0.9932, 0.99183, 0.99378, 0.9918, 0.99269, 0.99744, 0.9901, 0.99353, 0.99178, 0.99041, 0.99184, 0.9948, 0.9916, 0.9926, 0.99504, 0.99394, 0.99408, 0.9974, 0.9944, 0.99807, 0.9982, 0.9928, 0.9916, 0.99111, 0.99215, 0.99089, 0.9934, 0.99112, 0.9938, 0.99276, 0.98954, 0.9926, 0.9997, 0.9923, 0.9907, 0.99814, 0.9938, 0.9986, 0.99945, 0.993, 0.99471, 0.99235, 0.9928, 0.99379, 0.99522, 0.99224, 0.99324, 0.9922, 0.9954, 0.9908, 0.99397, 0.99558, 0.9979, 0.9931, 0.99955, 0.99588, 0.9938, 0.9937, 0.99776, 0.9953, 0.98994, 1.0003, 0.9986, 0.9982, 0.99672, 0.99674, 0.99278, 0.99022, 0.99396, 0.9912, 0.9948, 0.9973, 0.9911, 0.99153, 0.991, 0.99119, 0.9911, 0.991, 0.99652, 0.99489, 0.98942, 0.99144, 0.9949, 0.99254, 0.99252, 0.98919, 0.99784, 0.99469, 0.99523, 0.99378, 0.99212, 0.9941, 0.9911, 0.99008, 0.98963, 0.99116, 0.99545, 0.99946, 0.997, 0.9971, 0.99044, 0.9924, 0.9916, 0.99408, 0.99174, 0.9937, 0.9955, 0.9972, 0.9921, 0.99199, 0.994, 0.99387, 0.99462, 0.992, 0.9928, 0.994, 0.99534, 0.9945, 0.99057, 0.9999, 0.99274, 0.99685, 0.9983, 0.99362, 0.9923, 0.9925, 1.0002, 0.9942, 0.98912, 0.99094, 0.9892, 0.98914, 0.9908, 0.9918, 0.9927, 0.9917, 0.9972, 0.9954, 0.99546, 0.9974, 0.99198, 0.99308, 0.99066, 0.9986, 0.99464, 0.9917, 0.99954, 0.99202, 0.99414, 0.9982, 0.9952, 0.9962, 0.9934, 0.9891, 0.9941, 0.99573, 0.9936, 0.9967, 0.99685, 0.98918, 0.9986, 0.99518, 0.9932, 0.99469, 0.99109, 0.99705, 0.9917, 0.9964, 0.98987, 0.9996, 0.9904, 0.99886, 0.9924, 0.997, 0.99494, 0.99745, 0.99606, 0.98999, 0.9909, 0.99615, 0.9975, 0.9926, 0.9918, 0.9929, 0.9948, 0.99036, 0.99228, 0.98984, 0.99822, 0.99299, 0.9987, 1.0015, 0.99563, 0.9984, 0.9984, 0.9957, 0.99194, 1.00369, 0.993, 0.9952, 0.99035, 0.9916, 0.99896, 0.9945, 0.9927, 0.9954, 0.99549, 0.9922, 1.00295, 0.98956, 0.9973, 0.9961, 0.997, 0.99352, 0.9994, 0.99238, 0.99524, 0.9927, 0.9917, 0.9914, 0.9957, 0.99304, 0.99331, 0.99108, 0.992, 0.9923, 0.99064, 0.9921, 0.999, 0.99392, 0.9944, 0.99546, 0.99326, 0.995, 0.99792, 0.99534, 0.9908, 0.99158, 0.99136, 0.99122, 0.9928, 0.9931, 0.99063, 0.99024, 0.9898, 0.993, 0.98816, 0.9965, 0.99586, 0.9925, 0.9986, 0.9912, 0.9916, 0.99132, 0.996, 0.99358, 0.9938, 0.9977, 0.9934, 0.9978, 0.99074, 0.99048, 0.9898, 0.98994, 0.99342, 0.9966, 1.0004, 0.9948, 0.99514, 0.99596, 0.99602, 0.9986, 0.9971, 1.0003, 1.00051, 0.99084, 0.99566, 0.9927, 0.9912, 0.99581, 0.995, 0.9972, 0.99656, 0.9965, 0.99975, 0.99052, 0.989, 0.9916, 0.99455, 0.99393, 0.9924, 0.9946, 1.00038, 0.99906, 0.9958, 0.99475, 0.9935, 0.9906, 0.99835, 0.98883, 0.9932, 0.99863, 0.99686, 0.99322, 0.99678, 0.99331, 0.9925, 0.9978, 0.99392, 0.99105, 0.99384, 0.99596, 0.99216, 0.99321, 0.9979, 0.99124, 0.99472, 0.98946, 0.9945, 0.98926, 0.9925, 0.9898, 0.99066, 0.99587, 0.9984, 0.98942, 0.98876, 0.99045, 0.9975, 0.9913, 0.9906, 0.99416, 0.98794, 0.9925, 0.9911, 0.99675, 0.98931, 0.9983, 0.992, 0.99658, 0.99136, 0.9991, 0.9964, 0.992, 0.99658, 0.9923, 0.9965, 0.9952, 0.99461, 0.99287, 0.9918, 0.9944, 0.98944, 0.9976, 0.9953, 0.99074, 0.98794, 0.99643, 0.9954, 0.99114, 0.99374, 0.99218, 0.9948, 0.993, 0.9966, 0.99152, 0.99498, 0.9925, 0.99615, 0.99715, 0.99056, 0.9937, 0.9965, 0.9906, 0.9982, 0.99157, 0.9919, 0.99157, 0.9953, 0.9898, 0.99543, 0.9899, 0.9937, 0.99203, 0.99036, 0.99008, 0.9892, 0.99971, 0.992, 0.99785, 0.9927, 0.99044, 0.9912, 0.995, 0.995, 0.9942, 0.99522, 0.98856, 0.9939, 0.9927, 0.99095, 0.9972, 0.98946, 0.99542, 0.98944, 0.9985, 0.99411, 0.99266, 0.9962, 0.99268, 0.9971, 0.9917, 0.9925, 0.9968, 0.99142, 0.9964, 0.9979, 0.99214, 0.99737, 0.9917, 0.99807, 0.99334, 0.99798, 0.99558, 0.9972, 0.98946, 0.99543, 0.9934, 0.9938, 0.9947, 0.9969, 0.99752, 0.99082, 0.9983, 0.9962, 0.99692, 0.9928, 0.998, 0.9909, 0.99494, 0.98987, 0.99578, 0.997, 0.9986, 0.99544, 0.99321, 0.99072, 0.9985, 0.99494, 0.99118, 0.9968, 0.99112, 1.0004, 0.9907, 0.9921, 0.9934], \"xaxis\": \"x\", \"y\": [0.18439386755371057, 0.5750868907731637, 0.1132172353536568, 0.19850047615697952, 0.6950004168934912, 0.41826441672946313, 0.040828937665112974, 0.2145583871630251, 0.09143093017991866, 0.10013996234885614, 0.3658834999306372, 0.587897812361327, 0.23563705889496211, 0.5289998061994394, 0.5981734696485812, 0.5956194363709464, 0.11295199838815062, 0.6349332021584286, 0.09356782907078887, 0.0672754654033908, 0.3541579814831264, 0.11781588709523827, 0.3295981493457443, 0.23443288181779365, 0.13830133810679424, 0.5122546205578999, 0.03626449638205209, 0.32057959349203036, 0.3955164844050859, 0.21320459763992916, 0.08620177311633537, 0.4132497936565127, 0.19514157099220286, 0.028148892894647393, 0.03728071159582558, 0.20213762816504022, 0.39088790332760825, 0.10566618212719892, 0.11466232649727714, 0.09544364959788487, 0.07351553674018241, 0.3657542344632553, 0.05859665738698361, 0.43634835962676355, 0.4827032077898804, 0.516310366273556, 0.6480037931050455, 0.21122004543372697, 0.030344760075157406, 0.22750344576024595, 0.18673438423788624, 0.5460909738859347, 0.0666291073587214, 0.320234954276134, 0.515425573770442, 0.5751179393061847, 0.3262180383913996, 0.12192585741802231, 0.6165939755266235, 0.09365914315081003, 0.44259853952477324, 0.31958523161407537, 0.09228899111547839, 0.22815273642701062, 0.5282447951108347, 0.7777719169155834, 0.13834506443323813, 0.29425092810710396, 0.5300870647699181, 0.031947521718024174, 0.1108646816717751, 0.053339747820140615, 0.14466174791529418, 0.25697560969337485, 0.3383868137798065, 0.30803904997837983, 0.03434255320493995, 0.08689109251212201, 0.46044782253877736, 0.0973761441498977, 0.3449058470623745, 0.024212367984770777, 0.11665042079727428, 0.3333970234137619, 0.1495417879159372, 0.0679784404121434, 0.2360052425084116, 0.39147703437781534, 0.04428683932015287, 0.5381556738404795, 0.4357341587922019, 0.11843845992675284, 0.28107964630818494, 0.06989794698232743, 0.2658605825653322, 0.22408104406272966, 0.15519213452661884, 0.09873339188795927, 0.10739713799337769, 0.4712507279726723, 0.31257930793611366, 0.6259141532505736, 0.1651629894813923, 0.13024327386797574, 0.08242409751896962, 0.55355901104019, 0.11256152515999429, 0.22124325125588817, 0.05838775174278421, 0.6734770756819889, 0.06919042490492266, 0.5773286546676725, 0.5693181878572973, 0.12726917141891614, 0.27983888222674136, 0.15690954109554833, 0.18593824584442387, 0.05432525584274117, 0.33273366741371935, 0.12435295831370408, 0.48112847828662497, 0.2959384652215836, 0.5042039768350125, 0.3749869638443927, 0.7258627386781167, 0.4806866421912115, 0.6234335830956541, 0.4191951896523489, 0.20821728825178332, 0.6343085651912675, 0.27674577061671146, 0.02140654255666985, 0.42849246998341506, 0.1817444030106703, 0.4551538855951942, 0.05087080041524106, 0.516641204200833, 0.6810720245435042, 0.08151744899857294, 0.4475169494323581, 0.03995706953508171, 0.2181819033834006, 0.20372897255157485, 0.24305701296248816, 0.5381556738404795, 0.2358485729609252, 0.051323642447754336, 0.1913631294907303, 0.32154631204965056, 0.31229802093755377, 0.3917329141436472, 0.39462053822053156, 0.3680669306910641, 0.5017894292511481, 0.32120711190509066, 0.0768019282386515, 0.1168769044932052, 0.31545143431826594, 0.12007957373947853, 0.08354361700756141, 0.2180731800932174, 0.7653011157176768, 0.05076221583963347, 0.11739077279846111, 0.3639458403519926, 0.4815918747301601, 0.35998732468747585, 0.457353694020342, 0.5520498791697908, 0.22168281241722143, 0.2132287846887433, 0.4763394582576197, 0.3040153802820409, 0.20749766415549342, 0.3316810644107503, 0.8126297477835096, 0.5749367295182395, 0.27274039590582944, 0.2685808245693546, 0.5172108675362206, 0.33506587713796443, 0.09616672688355288, 0.041108213935392324, 0.10548050716105373, 0.5016695616404938, 0.20022874051447226, 0.14220640128276774, 0.23772630779738468, 0.19606080251004787, 0.2603188495268066, 0.18846597668723208, 0.19827111133563302, 0.261548791893628, 0.4140325207077993, 0.8134796325151183, 0.12265695643958285, 0.6311167068993262, 0.13481820177301163, 0.0932384579037443, 0.14050160114126486, 0.2562249115981724, 0.08547750670655718, 0.08643201081848362, 0.19981675431015722, 0.31390222338706264, 0.06221739913672386, 0.06996303880871468, 0.30029370289300306, 0.4306817897420764, 0.6595343859760441, 0.2839408857911616, 0.20468539219890003, 0.1130196126722065, 0.2360017176902124, 0.13187147729288817, 0.42313120297864704, 0.06964897436687001, 0.1624399718171824, 0.17200815643270417, 0.07333105637055992, 0.2440137653363641, 0.4900110333069776, 0.3085554157386313, 0.03480496731142946, 0.12148031785507996, 0.15002971926037112, 0.5314247042003052, 0.2758453007685677, 0.2151852748992088, 0.2658605825653322, 0.29911225563077193, 0.6594110243744711, 0.49869782335001445, 0.16788254706683048, 0.11816213334465087, 0.08230909248122409, 0.13653212507346946, 0.25639170942272826, 0.06562233405876228, 0.23311900627036541, 0.3756616197417655, 0.46674395287949066, 0.3092684534350997, 0.8337319641197457, 0.8331457111467163, 0.2591056156836542, 0.4778687671024334, 0.2542440524586721, 0.5361036306539362, 0.07073721340803463, 0.4731688813159418, 0.5755848065786346, 0.356689463387698, 0.14225616860197343, 0.21837916002376445, 0.14466174791529418, 0.29899643271856946, 0.4757427727983842, 0.08126799884203029, 0.1296501822378736, 0.3286954654423938, 0.08620177311633537, 0.13855855420831553, 0.05543377339452393, 0.11917834098009661, 0.2613621884509647, 0.11269900223777074, 0.08429051026621415, 0.3393961441870107, 0.07031960314855146, 0.11356777592095357, 0.4853279864284006, 0.1279289285514792, 0.0584572339054259, 0.08612988585012649, 0.3472440907423937, 0.1248029959061332, 0.07502335399434323, 0.19827111133563302, 0.3424151534036639, 0.3065175956815872, 0.13808860398564737, 0.058092197534895806, 0.04082786106581715, 0.1602592849246841, 0.09156161599234125, 0.5036030690663805, 0.2640411824475748, 0.6468038092930676, 0.07201805208597656, 0.22470230804277058, 0.1334773721572423, 0.04847889440667685, 0.2685808245693546, 0.10911308148570098, 0.6764508967260475, 0.6280060594576413, 0.36761958218269275, 0.16019930342079847, 0.17605308658107655, 0.14078981831089854, 0.2384997092801764, 0.13117402490907393, 0.12818959986091483, 0.4161925244315118, 0.12435295831370408, 0.09814942480303201, 0.05480698563416486, 0.3746187330143109, 0.41092354232892336, 0.507894749900129, 0.5137929421583434, 0.08293523366016065, 0.2964416548030494, 0.15236141109070434, 0.4396941021426354, 0.41893931094950754, 0.09113953260801844, 0.10967473999240707, 0.055732078845942, 0.05640314085190745, 0.06176263301115803, 0.06427139521062619, 0.20386133178572885, 0.21597661143113533, 0.7486409492386699, 0.2610715902497083, 0.09465277491899493, 0.5556171757583562, 0.137718889647652, 0.1978940751503777, 0.08472590699531857, 0.356262641598029, 0.14596950445002987, 0.13865818299932142, 0.3088915816821678, 0.11516321289421916, 0.16121169033174265, 0.40573483691789825, 0.34308606282264, 0.36300204724896845, 0.17193414756867276, 0.035926383178341514, 0.34536882843285344, 0.4400180463892147, 0.5165194668234709, 0.23319834124303085, 0.9637923675569924, 0.2635599134550337, 0.6259141532505736, 0.12324962258280003, 0.1256037712827487, 0.1248029959061332, 0.11665042079727428, 0.29081136443782263, 0.12993062945549005, 0.20959981847797426, 0.12385816607190492, 0.16931651488884025, 0.2468284110987674, 0.6181879252747016, 0.3509541008179864, 0.08619429866610873, 0.09537770951135394, 0.8204393830764495, 0.2493836920976743, 0.10367142046182065, 0.11516383353466464, 0.07169627826225977, 0.5400384130096556, 0.2709141565803237, 0.16809050322974173, 0.3421981324687273, 0.812724325423183, 0.1326589750154965, 0.054670132935181304, 0.055346153509382656, 0.8039442695404772, 0.3276168958360183, 0.6561718697940482, 0.6214102617950452, 0.3046829516703813, 0.7853649284745584, 0.7303620793003476, 0.6719087507962026, 0.16000678121984613, 0.579612101366232, 0.6347749924714103, 0.41894393066564606, 0.06936532322770372, 0.28322834609079706, 0.343263893078516, 0.4450860003239352, 0.3090838478611311, 0.408095736797927, 0.11529682880263803, 0.13359771811640497, 0.2417229185475579, 0.10092265889692065, 0.8181934133883563, 0.3777834313813965, 0.8273808576462511, 0.18439353202429143, 0.5148786056082297, 0.11287077888712382, 0.16015059460472458, 0.29672938182784603, 0.36944561074938853, 0.2505850522824452, 0.8467591712977676, 0.3840267097226593, 0.261779448872241, 0.1645479955558209, 0.14631295673285594, 0.4248523287309329, 0.09222807982804315, 0.2121484308544801, 0.33273366741371935, 0.5470626312455473, 0.8294144697045585, 0.25206662215500397, 0.15998368749433245, 0.548322128117227, 0.3917329141436472, 0.15981565308588508, 0.23631147082452741, 0.21082920466209698, 0.1871387197916503, 0.24774693401855818, 0.1913242313933492, 0.16437448769677154, 0.07582203648947516, 0.032541140295091364, 0.06311143057978008, 0.5009235508757715, 0.12343879567504301, 0.445735807756371, 0.40322837553658053, 0.09397553936597514, 0.1598391281143201, 0.26702494168661406, 0.19782301216908982, 0.06831823449824892, 0.5451167746582685, 0.20142160156100697, 0.25747632252511843, 0.4257317671215596, 0.5062318064185062, 0.10278357133077332, 0.10857266292312517, 0.06223864817381186, 0.11377411494697365, 0.14082424186384768, 0.2589321903149734, 0.31776639873426016, 0.07983414941561229, 0.30174211068680845, 0.42532907678292176, 0.23734670470511587, 0.2862296469110084, 0.24790288035387664, 0.5526146374040077, 0.20425399436950087, 0.5166825128498294, 0.12415322942140417, 0.5310696157212036, 0.3866387435262121, 0.14313186082947948, 0.31648660326859934, 0.026792916001305622, 0.7856428374245099, 0.42383310375799566, 0.5944566396871084, 0.6256605001243821, 0.08813642250468567, 0.03544811528140901, 0.06935406654889886, 0.15751976448865512, 0.22608551288474832, 0.3127311228465576, 0.1409438166611655, 0.3285615524533705, 0.3591330499592894, 0.47964497307801546, 0.7143146030302826, 0.14223944449319303, 0.06929054967731618, 0.32120711190509066, 0.16913647442041335, 0.707286257884667, 0.3230684446475647, 0.7616845263358343, 0.4104900542879092, 0.10053249234255524, 0.1106599594415556, 0.1543174595222413, 0.46003879185641183, 0.3811350878514418, 0.07185070571861518, 0.23882593985771994, 0.5344976262521839, 0.11031385635331636, 0.09610989844306939, 0.4955559099445003, 0.07845190603324759, 0.30697262074812925, 0.12767551958037127, 0.4375661224395835, 0.07737023387634634, 0.15307682457740834, 0.05694427046787409, 0.09028836937410878, 0.4011292297732457, 0.6186146927451245, 0.11561676905211238, 0.0993047499370594, 0.08102401279833105, 0.8100206966555492, 0.10768932514586738, 0.15386113005635593, 0.4026560765644126, 0.045535707525545144, 0.08229583319403, 0.08227601457953415, 0.8241544781987433, 0.0759900855540333, 0.5147505197509459, 0.11103147778198663, 0.42144961755966015, 0.24880465403270857, 0.3112403223054312, 0.3282460941643247, 0.28312386083977936, 0.2865521931047814, 0.16537364909659502, 0.4284132019637321, 0.34116073112729894, 0.051142721309942685, 0.10794707492381372, 0.1108646816717751, 0.29201805921023904, 0.07365131996157204, 0.36851051207096197, 0.2556143611338999, 0.07392456180697715, 0.045535707525545144, 0.15025986810093994, 0.4395989822566938, 0.19636656988846957, 0.21018464628148859, 0.15085686628779282, 0.3429118439192298, 0.16104008564300487, 0.2055862423584408, 0.18673310211333727, 0.5528531989583015, 0.20219789553586287, 0.5807830339134155, 0.6112381610839525, 0.07515362639458067, 0.5722084734915175, 0.3654892991508686, 0.1991057466826236, 0.4912569401667811, 0.05850610073101081, 0.3077884117234785, 0.17038242498240874, 0.14066607718466684, 0.10248584652416493, 0.4022873718442217, 0.07205214632436985, 0.35142291824287475, 0.10941760034103376, 0.06679271580157364, 0.05675388891699207, 0.058987921856350156, 0.3660303223369904, 0.28790374422385034, 0.4158290962648631, 0.40710291595796666, 0.09934102670994882, 0.06362846635195196, 0.30921476208988685, 0.23242198019285765, 0.055541210656895434, 0.5297663836663529, 0.10744632778983743, 0.18410212910939194, 0.17721960751489196, 0.1962664672709783, 0.1617648996714035, 0.10584426414108294, 0.5203501665477333, 0.07365131996157204, 0.31578819840495265, 0.35364190165315845, 0.1707951928721818, 0.41655733121321636, 0.15801546378512366, 0.7568436608419439, 0.22368578646300386, 0.0609449253562836, 0.2225096762928218, 0.18587673368692093, 0.05559101133196209, 0.569598540521716, 0.08073228430722412, 0.15724041301590164, 0.12879141548479, 0.4306817897420764, 0.17998791969802397, 0.41280880088413996, 0.5723062335690389, 0.6457404130724687, 0.10420061808672998, 0.12564769853034463, 0.21795029564941848, 0.4720930498870375, 0.11304202998506685, 0.545112257205237, 0.14852188644910969, 0.17217029085021085, 0.336250902618187, 0.48671482860553816, 0.5093433434984792, 0.35847801144896685, 0.3008706318705062, 0.18494609259573758, 0.4199330463236065, 0.04162287990776414, 0.2633909944023186, 0.4252182303976608, 0.4684623303117058, 0.1925553058603695, 0.09610989844306939, 0.09129843496680234, 0.3302708189676917, 0.4199330463236065, 0.11927294568859859, 0.4864154015695107, 0.06472081497616611, 0.6387929002666255, 0.37932906694235924, 0.093713747684541, 0.20627971812824875], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (curr)\", \"type\": \"scatter\", \"x\": [0.9966, 0.99556, 0.9939, 0.99126, 0.9996, 1.001, 0.99565, 0.998, 0.99692, 0.9997, 0.9956, 0.9918, 0.99513, 0.99587, 0.99869, 1.0, 0.9959, 1.0004, 0.99253, 0.9905, 0.9918, 0.9996, 0.9946, 0.9978, 0.99009, 0.9926, 0.997, 0.99898, 0.99215, 0.9931, 0.99839, 0.9944, 0.99798, 0.9963, 0.9926, 0.99341, 0.998, 0.9968, 0.9953, 0.9934, 0.9918, 0.99494, 0.9968, 0.9982, 0.992, 0.99212, 0.9976, 0.99616, 0.99911, 0.99244, 0.99454, 1.0011, 0.9937, 0.99612, 0.9976, 0.9963, 0.99748, 1.00315, 0.9966, 0.99848, 1.00315, 0.9976, 0.9962, 1.0006, 0.99657, 0.99592, 0.99702, 0.9978, 0.9965, 0.9956, 0.99654, 0.99093, 0.99212, 0.99694, 0.9938, 0.99174, 1.0, 0.9918, 0.99345, 0.99717, 0.9966, 0.99576, 0.9972, 0.9968, 0.9938, 0.9923, 0.9967, 0.99976, 0.992, 0.9978, 0.9951, 0.9936, 0.998, 0.9991, 0.99683, 0.99476, 0.9958, 0.9986, 0.9972, 0.99596, 0.99918, 0.99479, 1.0, 0.9955, 0.9954, 0.99584, 0.9984, 0.99448, 0.99416, 0.9989, 0.9964, 0.9983, 0.99712, 0.99362, 0.9926, 0.99669, 0.99676, 0.99471, 0.9955, 0.9958, 0.9962, 0.99182, 0.9946, 0.996, 0.99546, 0.99915, 0.99111, 0.9997, 0.99546, 0.9938, 0.98876, 0.99734, 0.9991, 0.992, 0.99694, 0.9976, 0.993, 0.9976, 0.99681, 0.99494, 0.9938, 0.9938, 0.99239, 0.9939, 0.9992, 0.99677, 0.99176, 0.9958, 0.9964, 0.99568, 0.9932, 0.99942, 0.9973, 0.9958, 0.99344, 0.9928, 0.99481, 0.99584, 0.99696, 0.9988, 0.99745, 0.99872, 0.99212, 0.9982, 0.9974, 0.9944, 0.9904, 0.99264, 0.99299, 0.99534, 0.9997, 0.9966, 0.9934, 0.99204, 0.9964, 0.98918, 0.9923, 0.99775, 0.99742, 0.99642, 0.9941, 0.99688, 1.0004, 0.9927, 0.99705, 0.99154, 0.9958, 0.9989, 0.9936, 0.99545, 0.99743, 0.99524, 0.99555, 0.99173, 0.9976, 0.9961, 0.9936, 0.99382, 0.99947, 0.997, 0.9962, 0.9976, 0.9983, 0.9986, 0.98993, 0.99922, 0.9958, 0.9994, 0.9974, 0.9977, 0.998, 0.99458, 0.99552, 0.99194, 0.9953, 0.99084, 0.9973, 0.9966, 0.99288, 0.9928, 0.9975, 0.9961, 0.9982, 0.9952, 0.9934, 0.996, 0.998, 0.9961, 0.99366, 0.99138, 0.9991, 0.99305, 1.0001, 0.9981, 0.9965, 0.99628, 0.99164, 0.99193, 0.9991, 0.9931, 0.99771, 0.9993, 0.99176, 0.9962, 0.99048, 0.9944, 0.9936, 0.99469, 0.9986, 0.99362, 0.9978, 0.99884, 0.9958, 0.99779, 0.9927, 0.99924, 0.9962, 0.9958, 0.99692, 0.99818, 0.99732, 0.99471, 0.9978, 0.9978, 0.99402, 0.99211, 0.9956, 0.99176, 0.99032, 0.99488, 0.99069, 0.9994, 0.9998, 0.9955, 0.99514, 0.9929, 0.99907, 0.998, 0.9958, 0.9968, 0.9983, 0.9993, 0.99047, 0.99202, 0.9986, 0.99185, 0.99249, 0.9943, 0.9911, 0.99726, 0.99527, 0.9944, 0.99626, 0.99746, 0.99304, 0.9984, 0.99274, 0.9955, 0.99804, 0.9986, 0.99182, 0.9996, 0.99454, 0.997, 0.99718, 0.9904, 0.9986, 0.9962, 1.0004, 0.9954, 0.9965, 0.99516, 0.9944, 0.9998, 0.9944, 0.998, 0.9938, 0.99558, 0.9956, 0.9932, 0.997, 0.9954, 0.99773, 0.9953, 0.9994, 0.9963, 0.9991, 0.9969, 0.9956, 0.99212, 0.9967, 0.9968, 0.9918, 0.9914, 0.9964, 0.992, 0.99198, 0.99271, 1.0001, 0.9952, 0.9958, 0.9978, 0.9953, 0.99652, 0.9994, 0.99242, 0.9979, 0.9966, 1.0001, 0.9932, 0.99372, 0.9917], \"xaxis\": \"x2\", \"y\": [0.18579927887031134, 0.9274202256360236, 0.2569067617886446, 0.17851375722123963, 0.43011516789686843, 0.3951880410340851, 0.35333307802371594, 0.854899199395705, 0.7749695319329993, 0.7150752736216004, 0.5793836726576811, 0.17187478758168062, 0.503776006633781, 0.6517104478925241, 0.5321166645488455, 0.4291031613352281, 0.6295132227815239, 0.446367751604861, 0.12978626497489776, 0.578130474122496, 0.1303225049324246, 0.4589423036505589, 0.6028673022099313, 0.6724998803801079, 0.055171077290688375, 0.28900585249094113, 0.5807441942986169, 0.6324527530146118, 0.32780881811994433, 0.4437792729685527, 0.47375733914823626, 0.6755390392614542, 0.8494338455743565, 0.8432302027568838, 0.3962269303969661, 0.36574887203466033, 0.9780529644634413, 0.6757083557066426, 0.43212531492562845, 0.6428319532862445, 0.2244465690609686, 0.6759712108962084, 0.300575337785698, 0.4848467547623382, 0.24353241802821812, 0.6165640897352094, 0.801889943514816, 0.6831580296641933, 0.4684052737322374, 0.07309555507266852, 0.17397747102053363, 0.548208100621717, 0.16948307959681597, 0.5287139706981401, 0.8097217619362252, 0.48186532860504816, 0.7044722268129955, 0.5458559966555334, 0.6067015953642416, 0.5767206748937392, 0.5416109283549078, 0.7766135747357961, 0.6371580804073698, 0.3290646799011723, 0.53941953634433, 0.7444876216695655, 0.27658524567301757, 0.8518717737266248, 0.685064206005921, 0.7994946846943811, 0.6254668451144636, 0.29898447003196504, 0.36566585814722175, 0.8260679099411251, 0.265003746926769, 0.18277705216857454, 0.6401445853260315, 0.2878944788643705, 0.7379395090268356, 0.6578861964269485, 0.3048731186933995, 0.6479177870210828, 0.5479007895539181, 0.8109237991420157, 0.4555798348891207, 0.35159410271621183, 0.6741813074403022, 0.40366163192193316, 0.3797333752177462, 0.42326140605337403, 0.49450075158901585, 0.7027754368270075, 0.31556666432085356, 0.5737052492708005, 0.5594846166878963, 0.9879213229528466, 0.23907110553933086, 0.7604887601700165, 0.906894853259191, 0.49150798334893764, 0.6693239074263375, 0.635181004157038, 0.4291031613352281, 0.6805197940362542, 0.8579270215873258, 0.42231028799440284, 0.7973836574204367, 0.6209099995125147, 0.617932351579841, 0.5867531689564582, 0.8217385626893267, 0.5766058512754557, 0.6085190813519714, 0.6488649586424557, 0.19466062481522506, 0.4062994677131635, 0.31500574198466447, 0.6106996692323751, 0.48314991346809855, 0.4300926711133176, 0.4623912750166579, 0.18141675383529432, 0.7404949196358439, 0.7960551628311661, 0.6696955469146251, 0.7471897031921468, 0.15222801432328747, 0.4782875749995391, 0.6696955469146251, 0.4617114467660769, 0.0374236133971757, 0.34638250956587036, 0.5737052492708005, 0.35412183815676124, 0.5342599897609015, 0.6273126624389191, 0.1819914526651868, 0.6450640502472667, 0.7576359910572065, 0.6363669366758954, 0.35783776888428775, 0.4555798348891207, 0.2603691587203709, 0.09638465351539516, 0.7889843001267657, 0.3995975535535492, 0.2404138117262561, 0.5134503976671381, 0.7620160241108803, 0.4852174766770502, 0.7934067722809752, 0.5657371707019572, 0.40591517497640706, 0.5142806824729376, 0.4667389755277017, 0.4597803030361328, 0.14211531046105408, 0.4709774325404933, 0.39253304933110444, 0.8152160844894966, 0.6418608562675732, 0.5695619245525361, 0.15898796250578873, 0.4189913516486339, 0.8097376625536354, 0.2776505479619531, 0.14100712613869515, 0.1625374057836978, 0.21879614767173305, 0.26016804821119, 0.5884346274074399, 0.25171266030158634, 0.5556828679884147, 0.2886326125606653, 0.5013044750460076, 0.23728971353361283, 0.6280660923097139, 0.6281218947904323, 0.6226708394296439, 0.1280348372312241, 0.37812375401711507, 0.6218606462016874, 0.446367751604861, 0.5237591509200082, 0.22560064672115399, 0.4159575064805634, 0.43989745285902637, 0.38133093816728936, 0.379388299643832, 0.4244201113870294, 0.8495234946343055, 0.44699506619782237, 0.3402560380560977, 0.16997778820688525, 0.6509841470756508, 0.5589353890471914, 0.49320900326902484, 0.41485179365651337, 0.2850172536812061, 0.5150740024049856, 0.7905789411902706, 0.6660097546858721, 0.5916856454756931, 0.25029771644034415, 0.21820707607863943, 0.23625780462752244, 0.6174344585079109, 0.33885175059010386, 0.8097775874289167, 0.5502791542248897, 0.45232673966787307, 0.5168725346003686, 0.4922951659433321, 0.2710495410551712, 0.5620189509382074, 0.19827785442852286, 0.35653263682836045, 0.4940220265254579, 0.3934632807735441, 0.349631294967786, 0.6543252873397565, 0.6043841099981286, 0.6572212454398962, 0.5323595728841377, 0.4667716613599331, 0.5480891857555714, 0.5933716837007499, 0.5769442381274095, 0.7796710482718338, 0.4721284230669528, 0.5632051337005155, 0.25606657060722404, 0.47304849589761655, 0.4991199345133047, 0.785831825438318, 0.5512091114854263, 0.31651464458218903, 0.192246895102814, 0.5737052492708005, 0.14970485751781393, 0.8257882443178004, 0.7450862811651306, 0.2404138117262561, 0.3428275867057816, 0.2186811050870735, 0.43730933466596944, 0.1325711740116582, 0.33994853494016564, 0.5172250338280965, 0.4543852880840521, 0.6017244994332274, 0.7267617626256621, 0.304103470637073, 0.49511795227452726, 0.4577650902534979, 0.4389063253281036, 0.3428275867057816, 0.6911248892501751, 0.5457123873353599, 0.3395528272139201, 0.5662837862370104, 0.38281068028313525, 0.1899488449656659, 0.1899488449656659, 0.39416742153886597, 0.4473524415330049, 0.5724944828663213, 0.12652799787397961, 0.14917046216496987, 0.4192276293132746, 0.1727250451072272, 0.7329347521090118, 0.2979855805324535, 0.5384433083808008, 0.2944152049751758, 0.5661013076544325, 0.39283078357423706, 0.6503174362647687, 0.7632350838020857, 0.29422440231251745, 0.8446099855685041, 0.3812461384129847, 0.1264117171095669, 0.6995051325026098, 0.7680829457938805, 0.1086082602083136, 0.50228427853815, 0.8303888649041977, 0.15145052047802054, 0.5239967242043768, 0.49461569007297057, 0.7323984730128237, 0.6372335578763709, 0.8485373319296128, 0.21018203617182263, 0.3854703692354019, 0.6209619763202376, 0.6996467359659702, 0.3913887983225227, 0.600932061108284, 0.18141675383529432, 0.32841971343371723, 0.17397747102053363, 0.3943097935149382, 0.5998672378660981, 0.6052803835931642, 0.35501406908939237, 0.4362847089434372, 0.6005057903956104, 0.45095984485898877, 0.5601124581139871, 0.6908342266509375, 0.29066967723125237, 0.5437491575180791, 0.5955595524057149, 0.4226516353037165, 0.552222307965348, 0.5038457784615318, 0.6752568781943777, 0.7880730680059006, 0.09430965090665133, 0.4986183600001317, 0.24112389044610405, 0.3635071851353404, 0.7047195247497422, 0.5251048099479148, 0.5632051337005155, 0.4520037684813636, 0.5271857161160298, 0.36566585814722175, 0.8775119234978208, 0.49474741138534273, 0.17187478758168062, 0.1069918390347242, 0.6371627391106971, 0.19018032574493748, 0.34352259564225396, 0.806114950115292, 0.47304849589761655, 0.5014153035286022, 0.6721952796384192, 0.7507248720260316, 0.38512814216859315, 0.8930847268109882, 0.863224561659591, 0.15108072818859253, 0.7399796913917198, 0.18579927887031134, 0.47304849589761655, 0.2033384066370545, 0.43667652058029827, 0.23252054766636898], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [0.9934, 0.9979, 0.99234, 0.9932, 0.99686, 0.9927, 0.9926, 0.99362, 0.989435, 0.99239, 1.0, 0.9908, 0.98918, 0.99168, 0.98904, 0.9932, 0.99438, 0.99189, 0.999, 0.9903, 0.999, 0.9986, 0.992, 0.9935, 0.99541, 0.9893, 0.99326, 0.99146, 0.99144, 0.99165, 0.98889, 0.9957, 0.9992, 0.99449, 0.98871, 0.9936, 0.9914, 0.99488, 0.98988, 0.995, 0.99123, 0.99014, 0.9958, 0.9986, 0.9974, 0.99417, 0.9998, 0.9968, 0.9969, 0.9908, 0.9972, 0.9917, 0.9946, 0.9922, 0.99376, 1.0006, 0.998, 0.9916, 0.99795, 0.99652, 0.99724, 0.99727, 0.99206, 0.99406, 0.99534, 0.98964, 0.9966, 0.9951, 0.99236, 0.9945, 0.9986, 0.99064, 0.99815, 0.99313, 0.9983, 0.99668, 0.99922, 0.99207, 0.9949, 0.9975, 0.98972, 0.9923, 0.99492, 0.9914, 0.9965, 0.99536, 0.99652, 0.99456, 0.9932, 0.994, 0.99526, 0.9934, 0.9904, 0.98836, 0.9931, 0.99148, 0.99704, 0.99018, 0.9968, 0.99376, 0.993, 0.99596, 0.99438, 0.98882, 0.9986, 0.99566, 0.996, 0.99262, 0.99132, 0.99159, 0.99551, 1.0103, 0.99144, 0.9893, 0.99171, 0.9934, 0.99238, 0.9934, 0.99552, 0.9989, 0.99322, 0.98976, 0.99384, 0.99, 0.99638, 0.99649, 0.9981, 0.991, 0.9984, 0.98961, 0.98961, 0.9933, 0.98918, 1.00014, 0.9931, 1.0006, 0.99667, 0.9979, 0.99252, 0.9917, 0.9943, 0.995, 0.9994, 0.99576, 0.99745, 0.9916, 0.9993, 0.9991, 0.993, 0.9927, 0.99564, 0.99094, 0.997, 0.9987, 0.98954, 0.9912, 0.99676, 0.9947, 0.99232, 0.9979, 0.9898, 0.9983, 0.98934, 0.99394, 0.9992, 0.9913, 0.99458, 0.9959, 0.99554, 0.9932, 0.99099, 0.9923, 0.99665, 0.99738, 0.9907, 0.9927, 0.991, 0.99154, 0.98872, 0.99444, 0.9943, 0.99646, 0.9934, 1.0002, 0.9956, 0.99314, 0.999, 0.9908, 1.001, 0.9949, 0.99278, 0.9984, 0.99076, 0.99064, 0.9931, 0.9918, 0.99173, 0.9893, 0.9993, 0.99612, 0.9914, 0.99312, 0.9937, 0.9929, 0.99294, 0.9928, 0.9947, 0.999, 0.993, 0.99742, 0.99224, 0.98986, 0.9948, 0.98998, 1.0006, 0.99162, 0.99232, 0.9914, 0.9922, 0.99, 0.9914, 0.9956, 0.9975, 0.99544, 0.9994, 0.9971, 0.99134, 0.9941, 0.99617, 0.99194, 0.99842, 0.9951, 0.994, 0.9922, 0.9956, 1.0004, 0.99031, 0.99164, 0.99216, 0.9917, 0.9938, 0.99176, 0.99313, 0.9959, 0.9956, 0.996, 0.99807, 0.9986, 0.9931, 0.9984, 0.9948, 0.9983, 1.0006, 0.9912, 0.99581, 0.99676, 0.9933, 0.99095, 0.98924, 0.99067, 0.99498, 0.9946, 0.9931, 0.99435, 0.9938, 0.99055, 0.9912, 0.99516, 0.9958, 0.9968, 0.99454, 0.99182, 0.98878, 0.9988, 0.9962, 0.9977, 0.9932, 0.99498, 0.99154, 0.99512, 0.9979, 0.99088, 0.99161, 0.99494, 0.99158, 0.9963, 0.99188, 0.99035, 0.9945, 0.9924, 1.0003, 0.9994, 0.99655, 0.98974, 0.99152, 0.99296, 0.99782, 0.99173, 0.9975, 0.9924, 0.98944, 0.9932, 0.99184, 0.9912, 0.9976, 0.99534, 0.98986, 0.99287, 0.991, 0.99047, 0.99691, 0.99165, 0.99646, 0.99708, 0.9902, 0.99178, 0.9963, 0.99232, 0.9938, 0.9934, 0.99176, 0.99408, 0.99572, 0.9998, 1.0026, 0.99, 0.992, 0.99734, 0.9975, 0.99204, 0.99492, 0.99666, 0.9994, 0.997, 0.99288, 0.994, 0.9996, 0.99685, 0.9958, 0.99346, 0.99215, 0.99521, 0.9974, 0.9956, 0.9967, 0.99406, 0.9936, 0.9926, 0.9982, 0.99086, 0.9955, 0.99158, 0.99975, 0.9987, 0.9966, 0.9926, 0.99815, 0.99366, 0.99706, 0.99358, 0.99071, 0.99582, 0.9988, 0.9986, 0.99551, 0.9956, 0.99862, 0.9957, 0.99882, 0.99324, 0.98823, 0.9952, 0.992, 0.99043, 1.0002, 0.99655, 0.98942, 0.99356, 0.99553, 0.99315, 0.9954, 0.9928, 0.99226, 0.9958, 0.99, 0.9948, 0.992, 0.9898, 0.99354, 0.99186, 0.99404, 0.99922, 0.992, 0.9988, 0.9939, 0.99557, 0.9999, 0.99531, 0.9903, 0.992, 0.9938, 0.991, 0.9907, 0.99784, 0.98952, 0.998, 0.9952, 0.99148, 0.99792, 0.99058, 0.9974, 0.99282, 0.9923, 0.9927, 0.99519, 0.9967, 0.9951, 0.99683, 0.99165, 0.99176, 0.99006, 0.99002, 0.99736, 0.99612, 0.9987, 0.9908, 0.9946, 0.99445, 0.98965, 0.9904, 0.99086, 0.9934, 0.99046, 0.9902, 0.99774, 0.9984, 0.996, 0.9976, 0.991, 0.99808, 0.9986, 0.9934, 0.9963, 0.9954, 0.98956, 0.9988, 0.99084, 0.99314, 0.99522, 0.99739, 0.99704, 0.9959, 0.9941, 0.99458, 0.99971, 0.9919, 0.99544, 0.99094, 0.9992, 0.99416, 0.99189, 0.98936, 0.99352, 0.9984, 0.99276, 0.9939, 0.9926, 0.993, 0.9928, 0.9966, 0.9944, 0.9952, 0.99467, 0.9984, 0.9943, 0.99381, 0.9946, 0.99121, 0.99174, 0.99052, 0.9944, 0.9927, 0.9962, 0.99552, 0.9958, 0.994, 0.99184, 0.98916, 0.99581, 0.99522, 0.9957, 0.9998, 0.99444, 0.99599, 0.9944, 0.9982, 0.9925, 0.9979, 0.99331, 0.9997, 0.99018, 0.99517, 0.9986, 0.9908, 0.98815, 0.99862, 0.99566, 0.9906, 0.9984, 0.9916, 0.99418, 0.992, 0.98779, 0.9915, 0.9934, 0.99, 0.99824, 0.9986, 0.9956, 0.99439, 0.9887, 0.9968, 0.9906, 0.9965, 0.9901, 0.99772, 0.9948, 0.991, 0.9947, 0.9984, 0.99572, 0.99388, 0.9976, 0.989315, 0.99358, 0.9926, 0.9978, 0.996, 0.99636, 0.99784, 0.99316, 0.99339, 0.99724, 0.9921, 0.98845, 0.99437, 0.99708, 0.99614, 0.98992, 0.9986, 0.9997, 0.99362, 0.9928, 0.99552, 0.99115, 0.99508, 0.99556, 0.98964, 0.9903, 0.99221, 0.99676, 0.9954, 0.99825, 0.99546, 0.9948, 0.991, 0.9945, 0.99479, 0.98912, 0.99042, 0.9963, 0.99787, 0.9916, 0.99742, 0.9893, 0.99158, 0.9954, 0.99172, 0.9925, 0.9906, 0.99459, 0.9976, 0.99456, 0.9893, 0.9931, 0.9927, 0.9963, 0.997, 0.9931, 0.99514, 0.9968, 0.99354, 0.9948, 0.99261, 0.99454, 0.9994, 0.99198, 0.998, 0.9928, 0.99068, 0.99384, 0.99275, 0.9952, 0.9932, 0.99165, 0.99616, 0.99659, 0.9924, 0.99316, 0.992, 0.9928, 0.99532, 0.9936, 0.98939, 0.99616, 0.99367, 0.98892, 0.99596, 0.99784, 0.99267, 0.99347, 0.9919, 0.99089, 0.99425, 0.99226, 0.989465, 0.9902, 0.995, 0.99565, 0.99192, 0.9964, 1.0014, 0.9898, 0.9922, 0.99166, 0.99576, 0.9884, 0.99764, 0.9951, 0.9953, 0.98964, 1.0001, 0.99837, 0.9934, 0.998, 0.99586, 0.99014, 0.99455], \"xaxis\": \"x2\", \"y\": [0.6660328535674787, 0.4955559099445003, 0.11251030999551548, 0.5313240922219649, 0.7616845263358343, 0.42881839881496897, 0.22146723198036844, 0.2709448900825402, 0.04188686298684474, 0.3198999677935893, 0.586632325439729, 0.3332859260788763, 0.0891770245136605, 0.07249138429342028, 0.0813041402249215, 0.2808128557304226, 0.18155424903412543, 0.14020593233116785, 0.20529540916933675, 0.1755850319354616, 0.5722846846512241, 0.4684623303117058, 0.2863708053899042, 0.4489302200945696, 0.3606737334686688, 0.09834172337505831, 0.1439119889738254, 0.10526388551166177, 0.08976738859769384, 0.15927641460572795, 0.07353544332944184, 0.4894096639868448, 0.24735122968283396, 0.41440459167745447, 0.10107859516115147, 0.4809249647595707, 0.043928674649753696, 0.27268427565697984, 0.07203278686513981, 0.35989685204578803, 0.08410225657903847, 0.09640449279894714, 0.2859044620344169, 0.766491644508495, 0.27194216744256416, 0.11891721880979944, 0.6033870782914414, 0.8445823904457724, 0.4148378249676725, 0.09538880480821377, 0.5822786697287807, 0.2006236885231063, 0.30215903380660414, 0.3526626332448971, 0.22921561702294402, 0.3499358724503807, 0.451050436906263, 0.01968005574460141, 0.3849224947932618, 0.608666907839271, 0.30333177217190177, 0.05732515971384944, 0.08299070223644744, 0.155374347961305, 0.4378217303747408, 0.10641916767178827, 0.3207785913922725, 0.3280003244598044, 0.4747408725557203, 0.27229542413121455, 0.5314247042003052, 0.13834506443323813, 0.652508483608137, 0.1775869136191267, 0.4659209431511335, 0.3288332341233703, 0.47224603889779837, 0.2773569186284155, 0.18590272545123854, 0.6719763059805124, 0.04569198037744582, 0.22473444069733528, 0.0776074933333939, 0.1411968215808168, 0.3654892991508686, 0.06069899520469324, 0.21029328672965164, 0.13919371635861133, 0.16321149678759816, 0.6144435769482088, 0.1388055550317996, 0.0827658987104557, 0.0793107693477757, 0.04994940743047871, 0.46220165202879504, 0.08265172102971341, 0.5554564865761329, 0.10902951494304747, 0.26480674198345266, 0.31816712550642645, 0.20184400370343658, 0.23734670470511587, 0.19264674509953905, 0.03558879485690103, 0.5314247042003052, 0.3013473679880785, 0.8043030592862955, 0.07665185966197174, 0.17816243980233548, 0.14637302723887635, 0.43623195291339645, 0.5773286546676725, 0.06996409198491005, 0.0635191394270278, 0.11839391684253864, 0.03368970372860669, 0.16544292122901683, 0.5002106013252752, 0.20783967621931676, 0.4413184352618238, 0.1377753535318076, 0.017128038770129694, 0.09070427960766203, 0.05237321155563324, 0.46044782253877736, 0.09863911308639095, 0.6058955548956951, 0.07377868677997379, 0.33726125667837825, 0.03705661785513226, 0.03856885477325478, 0.01970319875133708, 0.06623921298607705, 0.655672818127978, 0.36403826442427, 0.375635621083512, 0.25822104517587474, 0.26990817233175546, 0.30316845466795117, 0.21597661143113533, 0.10411587283779344, 0.4582573305440075, 0.28974208538397184, 0.3995654588450376, 0.48407929824265805, 0.2412117545349558, 0.49704114689177337, 0.3112403223054312, 0.13571503940671914, 0.35304273602320047, 0.18963603484652192, 0.06023564559469896, 0.305863422303413, 0.34062746964654456, 0.03532029949184434, 0.20200996882548472, 0.207876095289533, 0.11304202998506685, 0.26487496820305634, 0.46674395287949066, 0.05931266843465788, 0.6063731497207538, 0.053339747820140615, 0.16056749669580483, 0.3366557342021428, 0.18735912995827353, 0.2667542380283816, 0.9197592959547904, 0.13322255285490225, 0.3533185668595151, 0.08763312389948397, 0.343329095265401, 0.1298321532292276, 0.11240742021865013, 0.03412749239977686, 0.23316671381479437, 0.13955591125269062, 0.065615492475942, 0.03940539431326806, 0.04874684240881699, 0.42507109047861347, 0.3720756994829524, 0.20627971812824875, 0.23346983492740092, 0.299872058778726, 0.14688925552714138, 0.20529540916933675, 0.11294333341234963, 0.4523771212155355, 0.15895981664313275, 0.12633289347617382, 0.34801013400503944, 0.063056887931354, 0.09222807982804315, 0.19281104432210028, 0.11843845992675284, 0.1064686731970873, 0.12171087020281346, 0.49704114689177337, 0.4202798549667376, 0.058322454167927695, 0.40418598015134155, 0.7514842711311043, 0.067978575311199, 0.1468497162592186, 0.3655805321171328, 0.36741292271676196, 0.08785516413846428, 0.4223454464089015, 0.09472348251934337, 0.14196098925812006, 0.10013555988874479, 0.32154631204965056, 0.05416575683382341, 0.786126361492164, 0.04696516601190348, 0.26926088858349784, 0.28123172687107445, 0.3094364396730669, 0.04307250962973752, 0.07126159086244754, 0.6143015945908075, 0.495586079448059, 0.46102608015166635, 0.40789311683600216, 0.8929715185951024, 0.1227006502272181, 0.3638055988942468, 0.10470002869891348, 0.29304213908849364, 0.8936703981375603, 0.3534407380188983, 0.0883666731866185, 0.07895584641700149, 0.05166417783587085, 0.4199775765299997, 0.10304865631077798, 0.1041340676595982, 0.11031385635331636, 0.22368578646300386, 0.22137255536682798, 0.0725394352715707, 0.08320759746190642, 0.3577905591727162, 0.36362749207413336, 0.13058702032609693, 0.4306817897420764, 0.4684623303117058, 0.3185463047756948, 0.6991046594229053, 0.33105510290791684, 0.35804773811787727, 0.3499358724503807, 0.17780319308126435, 0.07142366539796174, 0.1504846162366139, 0.28643330026545544, 0.11492102279820171, 0.08716328114311156, 0.12905574960179156, 0.5528531989583015, 0.2852168598030531, 0.3185463047756948, 0.41766807389819915, 0.22818770291371737, 0.10749415552266317, 0.07500089027222667, 0.2150933620687273, 0.4879833184669665, 0.21367083697314282, 0.18281788227943807, 0.11217648511765432, 0.01860460444149037, 0.4990100838788346, 0.3212979959143686, 0.7252893191599291, 0.30018855716775616, 0.2808216200321265, 0.24332849241566534, 0.22583693263898685, 0.307128141019565, 0.12930297020615966, 0.07734813107736227, 0.38078614076753503, 0.037937415915298756, 0.18389331462546077, 0.2015421194948802, 0.10121634311933059, 0.7209948827487924, 0.252131738577411, 0.19866278493931944, 0.5569604587758099, 0.19172534874952063, 0.07516041810443141, 0.18673310211333727, 0.20736440356309183, 0.27568985010185776, 0.1748501221961516, 0.134246332983591, 0.12151400729184814, 0.03860330573341564, 0.16198960071610413, 0.062309112953929935, 0.14943540958877521, 0.46827469198568006, 0.12435295831370408, 0.11768791031746062, 0.10794707492381372, 0.04347111427796346, 0.07423675680829, 0.1602542791395647, 0.19911642350143877, 0.2379444352717226, 0.36664322039668684, 0.10130143557253446, 0.17108028607870185, 0.6143194513817134, 0.5641235853966853, 0.29864316680665437, 0.44752301946823647, 0.13459844499503626, 0.037461465199631894, 0.5002964248569376, 0.4059565893810353, 0.7035957096210382, 0.0629603198376949, 0.25036415064992923, 0.14780834332950044, 0.24800647860056513, 0.10438723399855232, 0.24366911510822187, 0.4574644219698093, 0.8347014835967527, 0.42226245660703365, 0.4073158502222598, 0.47525484003715535, 0.37845934883934684, 0.35325777167774697, 0.4763432908647238, 0.18941100564626978, 0.23853527246002126, 0.27277355193056574, 0.5556171757583562, 0.19481513110659687, 0.7460207524242459, 0.12627308236197843, 0.2115813466591615, 0.4773837842994688, 0.22238536240250728, 0.1978655273089749, 0.32057959349203036, 0.1601330373243487, 0.6256605001243821, 0.34062746964654456, 0.5899158924001677, 0.1273375405407705, 0.6866376712310945, 0.3812864953771038, 0.07918534602430627, 0.10510921928053807, 0.052405178286905496, 0.29010285216427345, 0.5802968836962079, 0.4475494904811408, 0.33107045093633036, 0.6046547135519548, 0.33132995382553565, 0.3391582818855403, 0.37109937806185267, 0.18876467901964422, 0.03244681540368277, 0.6531311156123596, 0.18281848038190407, 0.06840545126676123, 0.23876166598551407, 0.5602062902528231, 0.05478334190217349, 0.18965009362393503, 0.502081053312289, 0.0945975060483667, 0.24937367783354814, 0.14040338921272166, 0.09582424632391484, 0.4879833184669665, 0.07536550594022651, 0.37763546052463404, 0.20240400638142053, 0.06234715971662652, 0.1729504208160284, 0.2536573606029918, 0.1491704939138675, 0.47224603889779837, 0.20734784509414073, 0.1656619584420439, 0.20263687678412212, 0.4576701693643329, 0.3746187330143109, 0.06578487521364562, 0.09359041291034786, 0.15714155813810793, 0.43198081216185935, 0.17693664965610134, 0.14200602748771296, 0.16878839641400256, 0.11131318694256087, 0.43040972974554736, 0.12494266711040569, 0.5286591337585229, 0.3917329141436472, 0.14284790216410748, 0.29931895876037384, 0.3998656181534954, 0.13198036366642862, 0.2166851793268345, 0.164669749255824, 0.3116999397838065, 0.5702002297218003, 0.2867818412254799, 0.05809024612643199, 0.0701620515557333, 0.10493669218879953, 0.03474255021640338, 0.14069518845012563, 0.7697788668098057, 0.44513161239284327, 0.12104291767226882, 0.2823656727566666, 0.28640273091276736, 0.09904459769556595, 0.10889384421684001, 0.1978655273089749, 0.6326587477498924, 0.0766186874204361, 0.07300117689776386, 0.3978521493117628, 0.7293533971641823, 0.24040337450518035, 0.46827469198568006, 0.03737110954461231, 0.48112847828662497, 0.5755848065786346, 0.12151472907643468, 0.332302417201758, 0.3208349144509022, 0.13406270144296106, 0.47820199098358873, 0.024219732643774528, 0.7923035912680444, 0.3099424932714111, 0.8494816644677875, 0.15230116664989468, 0.8795672599938588, 0.34536882843285344, 0.587897812361327, 0.3660303223369904, 0.3074082248441362, 0.1925553058603695, 0.1582957933341015, 0.5297945963993664, 0.1892543681582496, 0.06574637766643598, 0.03286461121245521, 0.6223124217546917, 0.48666930315350876, 0.17200815643270417, 0.27042696199957883, 0.16010429726024444, 0.25291734909108765, 0.22778758435893687, 0.6055190518965303, 0.41989528411161425, 0.2865861541738164, 0.17344095530188786, 0.4163761941495938, 0.24610426408478792, 0.029106329843254564, 0.5849270471051293, 0.09607886499379148, 0.4890296174547498, 0.11193395874659995, 0.3667485749721523, 0.29672938182784603, 0.13696827462710404, 0.03986507081677082, 0.41542023534722683, 0.1642424989032959, 0.041559354155004224, 0.1266666793707928, 0.5259198205822933, 0.42123490919744344, 0.6147437654518444, 0.42849246998341506, 0.04874684240881699, 0.16870816563337898, 0.35179373534084035, 0.4552463954734379, 0.1543174595222413, 0.4641274821418986, 0.1106599594415556, 0.40441066041397966, 0.05916303638108533, 0.24194101851814365, 0.5755848065786346, 0.23631147082452741, 0.04679471849088612, 0.33132995382553565, 0.6031606095022326, 0.16900214819844117, 0.9322526967181247, 0.1065938389205352, 0.0540586741766943, 0.14920224829950646, 0.03054451782098533, 0.13595064656866984, 0.15908339514281045, 0.09402391562754642, 0.27219479721363327, 0.10477531970828624, 0.6046547135519548, 0.04412971358840656, 0.0821245873848182, 0.24953715645213048, 0.24311299470472425, 0.679537413518331, 0.02875041056121841, 0.2874129658970298, 0.17131102264191878, 0.07042427222914205, 0.1577516063520068, 0.39934634677258996, 0.42249259173992826, 0.24940231538328683, 0.46827469198568006, 0.040988937643475554, 0.034828704291737345, 0.26663563965858417, 0.22421743312747255, 0.10716094829621758, 0.7421831263598226, 0.4644511163280224, 0.1591307416719686, 0.21502194578256428, 0.12883185373794437, 0.15520095945599266, 0.04280666734842442, 0.06928764484923078, 0.3578757504587543, 0.0760792945579073, 0.06637805380770656, 0.5755848065786346, 0.4326356954473739, 0.16985579355455038, 0.47152805642545803, 0.11644579282256762, 0.11790522998710073, 0.5438286352264949, 0.41561805514360906, 0.050606352251634235, 0.21836830194439782, 0.22298545275517268, 0.1504846162366139, 0.16819644397314482, 0.47796113776613436, 0.14100197907825862, 0.7878397890034206, 0.12176963827920351, 0.09814942480303201, 0.23162396036129984, 0.04400104962869911, 0.061588508633294015, 0.2774601068082493, 0.40816383821078206, 0.14036214651023216, 0.11837607594274324, 0.0703155477214753, 0.17002415827487982, 0.24611532014486182, 0.06874641727313702, 0.30975746960573625, 0.07004288447243323, 0.6453829176356538, 0.3880412370469972, 0.10205495289732236, 0.12171087020281346, 0.38550692709735157, 0.4398162761337091, 0.5769741243450848, 0.48842976274850136, 0.3866799681687785, 0.17129518728202664, 0.5711206597512044, 0.4456070955069118, 0.4585850027539752, 0.25462747480751524, 0.34771016550763867, 0.35548618548401445, 0.07878090041588082, 0.3008706318705062, 0.08117751180329491, 0.055511805197920094, 0.1600174453683395, 0.35597309965685686, 0.5473978930443646, 0.3321771897262046, 0.14643302530661162, 0.7653011157176768, 0.24188431843396252, 0.16704799028757666, 0.41136103198090634, 0.5749869949413896, 0.709238838470871, 0.09340318303147321, 0.602429869503323, 0.04154705947390969, 0.7519582179986716, 0.15993940416551844, 0.04372375151311325, 0.4076899811241429, 0.4644511163280224, 0.3133137248525114, 0.24628490675063597, 0.06972977174174444, 0.15949948541388637, 0.2241543425141257, 0.1729876202034616, 0.07290025122558275, 0.1220000714032804, 0.36493953208423235, 0.09420126302076737, 0.026726938234992392, 0.7199273032686843, 0.4606762448039463, 0.04906818437448113, 0.19446415942665518, 0.14876853598344464, 0.3247816953453747, 0.023320858692869595, 0.7310618090422621, 0.48944479260603346, 0.20357574295749958, 0.0840537250624015, 0.5368744051465595, 0.21101467800102214, 0.46682279298460017, 0.3749869638443927, 0.46592999202179275, 0.10188412989688433, 0.15751976448865512], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"density\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"density\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}, \"All_pH\": {\"data\": [{\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Reference<br>pH=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [3.17, 3.36, 3.32, 3.59, 3.37, 3.4, 3.22, 3.36, 3.14, 3.1, 3.06, 3.16, 3.52, 3.06, 3.37, 3.14, 3.09, 2.95, 3.34, 3.18, 3.12, 3.21, 3.23, 3.25, 2.94, 3.64, 3.31, 3.14, 3.28, 3.33, 3.38, 3.3, 3.1, 3.38, 3.13, 3.11, 3.12, 3.4, 3.26, 3.25, 3.14, 3.46, 3.41, 3.12, 3.11, 3.4, 3.3, 3.22, 3.2, 3.0, 3.15, 3.17, 3.32, 3.19, 3.15, 3.03, 3.22, 3.26, 3.05, 3.51, 3.25, 3.46, 3.31, 3.32, 3.17, 3.31, 3.26, 3.12, 3.13, 3.19, 3.17, 3.04, 3.15, 3.01, 3.48, 3.29, 3.35, 3.25, 3.29, 3.0, 3.65, 3.27, 3.02, 3.2, 3.18, 3.07, 3.2, 3.37, 3.18, 3.08, 3.32, 3.19, 3.16, 3.54, 3.6, 3.39, 3.17, 3.26, 2.87, 3.33, 3.47, 3.04, 3.18, 3.4, 2.96, 3.5, 3.27, 3.24, 3.1, 3.3, 3.0, 3.15, 3.05, 3.4, 3.35, 3.15, 3.02, 3.1, 3.16, 3.4, 3.0, 2.99, 3.04, 3.06, 3.26, 3.36, 3.33, 3.04, 3.35, 3.61, 3.19, 3.21, 3.36, 3.27, 3.38, 3.27, 3.22, 3.54, 3.23, 3.12, 2.89, 3.52, 3.08, 3.2, 3.08, 3.22, 3.1, 3.25, 3.39, 3.2, 2.96, 2.92, 3.3, 3.17, 3.04, 3.18, 3.4, 3.11, 2.98, 3.2, 3.35, 3.26, 3.15, 3.49, 3.3, 3.09, 3.12, 3.36, 3.06, 3.36, 3.14, 3.34, 3.38, 3.03, 3.32, 3.26, 3.33, 3.08, 3.23, 3.58, 3.48, 3.13, 3.32, 3.39, 3.18, 3.34, 3.15, 3.22, 3.31, 3.54, 3.37, 3.71, 3.53, 3.26, 3.55, 3.0, 3.13, 3.1, 3.16, 2.9, 3.32, 3.36, 3.41, 3.38, 3.45, 3.23, 3.22, 3.14, 2.94, 3.4, 3.07, 3.24, 3.28, 3.23, 3.12, 3.36, 2.93, 3.21, 3.03, 3.1, 3.39, 3.28, 3.08, 3.02, 3.38, 3.2, 3.07, 3.34, 3.22, 3.6, 3.22, 3.18, 3.51, 3.03, 3.36, 3.66, 3.42, 3.14, 3.27, 3.21, 3.13, 2.98, 2.95, 3.26, 3.22, 3.23, 3.42, 3.2, 3.15, 3.25, 3.21, 3.14, 3.17, 3.24, 3.12, 3.15, 3.15, 2.93, 3.32, 3.14, 3.16, 3.38, 3.18, 3.01, 3.31, 3.28, 3.23, 3.28, 3.38, 3.56, 3.22, 3.49, 3.04, 2.91, 3.55, 3.39, 3.11, 3.27, 3.71, 3.17, 3.26, 3.06, 3.57, 3.26, 3.15, 3.28, 3.13, 3.14, 3.24, 2.94, 3.34, 3.12, 3.26, 3.23, 3.09, 3.19, 3.47, 3.21, 3.7, 3.37, 3.38, 3.38, 3.54, 3.15, 3.14, 3.4, 3.05, 3.19, 2.97, 3.09, 3.42, 3.03, 3.62, 3.37, 3.16, 3.16, 3.12, 3.29, 3.03, 3.2, 3.4, 2.95, 3.24, 3.53, 3.3, 3.47, 2.86, 3.15, 3.52, 3.22, 3.36, 2.98, 3.12, 3.25, 3.15, 2.93, 2.88, 3.27, 3.48, 3.22, 3.16, 3.01, 3.23, 3.34, 3.21, 3.13, 2.92, 3.32, 3.29, 3.04, 3.2, 3.24, 3.11, 3.02, 3.16, 3.46, 3.3, 3.18, 3.28, 3.14, 3.2, 3.14, 3.18, 3.3, 3.53, 2.87, 3.32, 3.28, 3.33, 3.1, 3.33, 3.23, 3.26, 2.89, 3.11, 3.06, 3.35, 3.33, 3.29, 3.38, 3.16, 3.12, 3.17, 3.44, 3.09, 3.0, 3.18, 3.22, 3.44, 3.14, 3.26, 3.1, 3.12, 3.27, 3.25, 3.39, 3.3, 3.06, 3.45, 3.22, 3.42, 3.52, 3.46, 3.34, 2.94, 3.23, 3.21, 3.12, 3.27, 3.11, 3.35, 3.22, 3.44, 3.38, 3.24, 3.16, 3.29, 3.16, 3.12, 3.06, 3.2, 3.08, 3.2, 2.96, 3.16, 3.42, 3.09, 3.11, 3.12, 3.29, 3.14, 3.27, 3.09, 3.33, 3.45, 3.48, 3.45, 3.51, 3.25, 3.12, 3.17, 3.13, 3.14, 3.12, 2.96, 3.23, 3.08, 3.24, 3.15, 3.33, 3.12, 3.29, 3.37, 3.27, 3.11, 3.22, 3.28, 3.4, 3.34, 3.12, 3.17, 3.45, 3.32, 3.05, 3.38, 3.32, 3.2, 3.27, 3.21, 3.32, 3.31, 3.19, 3.28, 3.12, 3.18, 3.12, 3.26, 3.25, 3.11, 3.15, 3.57, 2.98, 3.08, 3.49, 3.18, 3.06, 3.07, 3.04, 3.18, 3.21, 3.16, 3.21, 3.03, 3.28, 3.29, 3.11, 3.39, 3.24, 3.36, 3.54, 3.26, 2.98, 3.34, 3.09, 2.96, 3.11, 3.35, 3.13, 3.24, 3.23, 3.09, 2.99, 3.31, 3.09, 3.11, 2.94, 3.1, 3.26, 3.29, 3.26, 2.96, 3.08, 3.01, 3.41, 3.37, 3.2, 3.0, 3.09, 3.18, 3.18, 3.38, 3.41, 3.35, 3.11, 3.49, 3.36, 3.22, 3.02, 3.1, 3.17, 3.29, 3.22, 2.96, 3.18, 3.17, 3.08, 3.22, 3.36, 3.38, 3.43, 3.04, 3.12, 3.42, 3.06, 3.03, 3.35, 3.32, 3.34, 3.08, 3.05, 3.11, 3.08, 3.36, 3.44, 3.68, 2.93, 3.05, 3.13, 3.36, 3.1, 3.36, 3.2, 3.17, 3.08, 3.22, 3.3, 2.94, 3.21, 3.03, 3.05, 2.97, 3.36, 3.49, 3.54, 3.26, 3.34, 3.2, 3.25, 3.61, 3.05, 2.93, 3.12, 3.19, 3.22, 3.37, 3.36, 3.25, 3.42, 3.25, 3.02, 3.23, 3.32, 3.28, 3.2, 3.15, 3.14, 3.13, 3.16, 3.42, 2.94, 2.99, 3.21, 3.14, 3.37, 3.22, 3.39, 3.54, 2.95, 3.23, 2.87, 3.52, 3.02, 3.27, 3.21, 3.07, 3.23, 3.3, 3.14, 3.15, 3.08, 3.15, 3.09, 3.1, 3.2, 3.34, 3.05, 3.22, 3.15, 3.04, 3.4, 3.28, 3.28, 3.44, 3.24, 3.27], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Current<br>pH=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [3.03, 3.09, 3.09, 3.17, 3.21, 3.19, 3.19, 3.06, 2.96, 3.38, 3.28, 3.13, 3.16, 3.18, 3.46, 3.14, 3.32, 3.06, 3.41, 3.01, 3.14, 3.1, 3.13, 3.32, 3.14, 3.07, 2.97, 3.3, 3.08, 3.36, 2.96, 3.3, 3.37, 3.23, 2.96, 3.09, 3.21, 2.86, 3.23, 3.46, 2.99, 3.13, 3.14, 3.06, 3.21, 3.46, 3.16, 3.59, 2.93, 3.35, 3.29, 3.29, 3.16, 2.96, 3.32, 3.28, 2.87, 3.68, 3.41, 2.9, 3.41, 3.04, 3.2, 2.99, 3.08, 3.32, 3.4, 3.39, 3.3, 3.29, 3.07, 3.26, 3.27, 3.38, 3.25, 3.16, 3.19, 3.13, 3.29, 3.27, 3.11, 3.11, 3.34, 2.99, 3.08, 3.22, 3.47, 3.06, 3.2, 3.3, 3.26, 3.03, 3.42, 3.0, 3.17, 3.16, 3.07, 3.03, 3.2, 3.56, 3.02, 3.34, 3.4, 2.98, 3.07, 2.93, 3.27, 3.34, 3.36, 3.31, 3.15, 3.15, 3.0, 3.21, 3.27, 3.37, 3.75, 3.22, 3.05, 3.37, 3.41, 3.24, 3.21, 3.26, 3.29, 3.27, 3.43, 3.29, 3.34, 2.91, 3.05, 3.38, 3.14, 3.02, 3.32, 3.01, 3.2, 3.31, 3.27, 3.3, 3.13, 3.61, 3.1, 3.2, 3.16, 3.18, 3.07, 3.38, 2.99, 3.0, 3.19, 3.06, 3.19, 3.06, 3.21, 3.09, 3.26, 3.23, 3.2, 2.98, 3.25, 3.45, 3.04, 3.39, 3.07, 2.95, 3.15, 3.22, 3.34, 3.03, 3.42, 2.94, 3.17, 3.38, 3.38, 3.28, 3.3, 3.03, 3.18, 3.31, 3.38, 3.22, 3.27, 3.3, 3.22, 3.32, 3.41, 3.29, 3.0, 3.41, 2.99, 3.0, 3.27, 3.16, 3.41, 3.19, 2.9, 3.51, 3.07, 3.43, 2.93, 3.45, 3.25, 3.14, 2.96, 3.36, 3.18, 3.17, 3.42, 3.24, 3.24, 3.36, 3.39, 3.25, 3.1, 3.15, 3.2, 3.31, 3.54, 3.13, 3.24, 3.36, 3.42, 3.2, 3.24, 2.96, 3.38, 3.12, 3.33, 3.27, 3.53, 3.26, 3.11, 3.35, 3.22, 3.34, 3.1, 3.27, 2.98, 3.23, 3.3, 3.05, 2.95, 3.81, 3.37, 3.1, 2.94, 3.1, 3.51, 3.19, 3.29, 2.99, 3.28, 3.32, 3.05, 3.2, 3.26, 3.17, 2.97, 3.44, 3.35, 3.29, 3.51, 3.31, 3.23, 3.28, 3.31, 2.91, 3.22, 3.14, 3.2, 3.24, 3.04, 3.18, 3.42, 3.5, 3.45, 3.42, 3.47, 3.52, 3.06, 2.97, 3.28, 3.25, 3.12, 3.23, 3.15, 3.24, 3.34, 3.2, 3.26, 3.19, 3.34, 3.1, 3.03, 3.22, 3.07, 3.33, 3.2, 3.23, 3.03, 3.11, 2.92, 3.38, 3.01, 3.4, 3.36, 3.1, 3.09, 2.88, 3.23, 3.26, 3.56, 3.09, 3.31, 3.76, 3.1, 3.14, 3.14, 3.02, 3.17, 3.19, 3.49, 3.42, 3.32, 3.16, 3.11, 3.28, 3.12, 3.36, 3.35, 2.88, 3.36, 3.11, 2.96, 2.99, 3.29, 3.18, 3.12, 3.33, 3.17, 3.34, 3.52, 3.39, 3.32, 3.11, 3.4, 3.45, 3.42, 3.05, 3.14, 3.22, 3.12, 3.06, 3.08, 3.36, 3.28, 3.17, 3.15, 3.4, 3.03, 3.33, 3.34, 2.94, 3.21, 3.24, 3.22, 3.54, 3.25, 3.1, 3.2, 3.29, 3.21, 3.03, 3.07, 3.35, 3.16, 3.18, 3.3, 3.44, 3.07, 3.13, 3.06, 3.22, 3.19, 3.48, 2.94, 3.33, 3.3, 3.24, 3.24, 3.19, 3.55, 3.18, 3.32, 3.36, 2.97, 3.17, 3.3, 3.3, 3.4, 3.3, 3.2, 2.85, 3.32, 3.42, 3.33, 3.3, 2.96, 3.12, 3.26, 3.49, 3.0, 3.12, 3.12, 3.37, 3.06, 3.17, 3.15, 3.14, 3.31, 3.27, 3.24, 3.4, 2.98, 3.06, 3.15, 3.0, 3.41, 3.16, 3.05, 3.8, 3.09, 3.15, 3.32, 3.43, 3.37, 3.01, 3.34, 3.0, 3.14, 3.57, 3.11, 3.04, 3.06, 2.94, 3.7, 3.18, 3.39, 3.2, 3.14, 3.34, 3.34, 3.16, 2.94, 3.41, 3.2, 3.29, 3.6, 3.28, 3.04, 3.2, 3.3, 3.06, 3.03, 3.52, 3.16, 3.5, 3.25, 3.46, 3.36, 3.05, 3.58, 2.9, 3.15, 3.13, 3.24, 3.23, 3.32, 3.44, 3.19, 3.21, 3.39, 3.41, 3.35, 2.99, 3.07, 3.04, 3.09, 3.42, 3.27, 3.36, 3.31, 3.27, 3.14, 3.3, 3.11, 3.11, 3.29, 3.1, 3.04, 3.06, 3.14, 3.42, 3.32, 3.22, 3.17, 3.34, 3.08, 3.1, 3.34, 3.25, 3.12, 3.06, 3.12, 3.29, 3.38, 3.27, 3.24, 3.52, 3.36, 3.21, 3.59, 3.25, 3.22, 2.99, 3.16, 3.31, 3.21, 3.06, 3.38, 3.16, 3.01, 3.19, 3.15, 3.13, 3.05, 3.0, 3.35, 3.0, 3.38, 3.24, 3.33, 3.38, 3.29, 3.26, 3.23, 3.31, 3.15, 3.14, 3.16, 2.99, 3.42, 3.23, 3.44, 3.23, 3.4, 3.18, 3.46, 3.36, 3.2, 3.04, 2.9, 3.35, 3.26, 3.08, 3.05, 3.12, 3.31, 3.16, 3.72, 3.47, 3.54, 3.29, 2.99, 3.49, 3.47, 3.13, 3.2, 3.19, 3.24, 3.07, 3.03, 3.51, 3.16, 3.22, 3.29, 3.22, 3.11, 3.44, 3.44, 3.3, 3.2, 2.94, 3.22, 3.12, 3.4, 3.3, 3.19, 3.27, 3.15, 3.28, 3.09, 3.04, 3.24, 3.26, 3.15, 3.23, 3.44, 3.34, 3.24, 2.98, 3.19, 3.0, 3.29, 3.1, 3.35, 3.28, 3.0, 3.26, 3.24, 2.98, 3.15, 3.26, 3.27, 3.11, 3.04, 2.93, 3.22, 3.19, 3.38, 3.06, 3.26, 3.25, 3.35, 3.24, 3.19, 3.34, 3.06, 3.13, 3.13, 3.03, 2.97, 3.41, 3.06, 3.11, 3.22, 3.25], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Reference<br>pH=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [3.16, 3.03, 3.03, 3.45, 3.15, 3.46, 3.34, 3.36, 3.16, 3.18, 3.3, 3.25, 3.02, 3.24, 3.32, 3.24, 3.3, 3.5, 3.06, 3.53, 3.19, 3.26, 3.54, 2.94, 3.6, 3.26, 3.27, 3.29, 3.1, 3.3, 3.48, 3.01, 3.66, 3.19, 3.0, 3.15, 2.96, 3.2, 3.04, 3.08, 3.02, 3.39, 3.27, 3.15, 3.19, 3.3, 3.32, 3.4, 3.23, 3.32, 3.09, 3.08, 3.2, 3.19, 3.11, 2.96, 3.17, 3.28, 3.14, 3.26, 3.19, 3.58, 3.43, 3.34, 3.13, 3.26, 3.22, 3.27, 3.61, 2.79, 3.09, 3.27, 3.05, 3.21, 3.1, 3.16, 3.08, 3.28, 3.2, 3.11, 2.98, 3.05, 3.12, 3.39, 3.11, 3.24, 3.14, 3.26, 3.17, 3.01, 3.27, 3.31, 3.15, 3.05, 2.96, 3.18, 2.98, 3.14, 3.15, 3.27, 3.01, 3.52, 3.35, 3.22, 3.29, 3.08, 3.16, 3.37, 3.27, 3.22, 3.37, 3.37, 3.41, 3.34, 3.49, 3.11, 3.16, 3.32, 3.06, 3.15, 3.09, 3.41, 3.22, 3.11, 3.1, 3.05, 3.29, 3.1, 3.23, 3.16, 2.89, 3.43, 3.1, 3.22, 3.11, 3.17, 3.13, 3.26, 3.09, 3.25, 3.07, 3.18, 3.28, 3.14, 3.14, 3.02, 3.44, 3.11, 3.14, 3.32, 3.13, 3.45, 2.92, 3.46, 2.99, 3.25, 3.2, 3.25, 3.46, 2.97, 3.15, 3.14, 3.05, 3.16, 3.34, 3.18, 3.18, 3.26, 2.96, 3.08, 3.12, 3.22, 3.37, 2.99, 3.22, 3.24, 3.33, 3.2, 3.46, 3.01, 3.24, 3.54, 3.28, 3.13, 3.1, 3.21, 3.12, 3.01, 3.28, 3.12, 3.02, 3.01, 3.08, 3.14, 3.16, 3.34, 3.08, 3.16, 3.06, 3.07, 3.3, 3.16, 3.16, 3.15, 3.63, 3.09, 3.22, 3.21, 3.72, 3.09, 3.14, 3.5, 3.04, 3.06, 3.18, 3.24, 3.11, 2.97, 2.94, 2.87, 2.88, 3.5, 3.06, 2.96, 3.1, 3.11, 3.34, 3.02, 3.22, 3.49, 3.33, 2.94, 3.5, 3.1, 3.16, 2.92, 3.39, 3.39, 3.15, 3.02, 3.24, 3.11, 3.03, 3.12, 3.5, 3.15, 3.22, 3.18, 3.24, 3.24, 3.41, 3.14, 3.66, 3.39, 3.1, 3.09, 3.17, 3.41, 3.14, 3.16, 3.05, 3.14, 3.39, 3.0, 3.16, 3.21, 3.77, 3.74, 3.42, 3.29, 3.44, 3.08, 3.21, 3.11, 3.19, 3.31, 3.44, 3.0, 3.13, 3.29, 3.34, 3.59, 3.17, 3.29, 3.15, 3.16, 2.9, 3.28, 3.08, 3.25, 3.06, 3.12, 3.24, 3.51, 3.3, 2.94, 3.13, 3.29, 3.08, 3.23, 3.68, 3.28, 3.36, 3.25, 3.31, 3.08, 3.12, 3.34, 3.04, 3.03, 3.06, 3.22, 3.59, 3.18, 3.38, 3.09, 3.1, 3.31, 3.22, 3.66, 3.32, 3.19, 3.36, 3.28, 3.15, 3.14, 2.98, 3.19, 3.29, 3.22, 2.93, 3.38, 3.35, 3.2, 3.25, 3.09, 3.13, 3.05, 3.1, 3.23, 3.3, 3.21, 3.24, 3.18, 3.24, 3.48, 3.53, 3.14, 3.38, 3.08, 3.04, 3.34, 3.06, 3.63, 3.09], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Current<br>pH=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [3.36, 3.22, 3.03, 3.07, 2.93, 2.93, 3.23, 3.29, 3.29, 3.03, 3.12, 3.16, 3.14, 3.12, 3.14, 3.27, 3.14, 3.16, 3.32, 2.97, 3.27, 2.96, 3.15, 3.12, 3.15, 3.07, 3.44, 3.18, 3.3, 3.46, 2.98, 3.3, 3.38, 3.2, 3.42, 3.32, 3.25, 3.42, 3.29, 3.26, 3.01, 3.1, 3.0, 3.22, 3.08, 3.28, 3.27, 3.15, 3.14, 2.79, 3.19, 3.17, 2.99, 3.37, 3.39, 3.28, 3.48, 2.92, 3.04, 3.08, 2.92, 3.31, 3.23, 3.48, 3.03, 3.53, 3.03, 3.51, 3.45, 3.37, 3.38, 3.21, 3.47, 3.32, 3.19, 3.18, 3.04, 3.07, 3.14, 3.39, 3.21, 3.15, 3.33, 3.2, 3.05, 2.97, 3.47, 3.22, 3.14, 3.35, 3.23, 3.08, 3.28, 3.18, 3.4, 3.5, 3.14, 3.17, 3.37, 3.24, 3.15, 3.08, 3.27, 3.34, 3.19, 3.35, 3.16, 3.36, 3.15, 3.18, 3.3, 2.94, 3.4, 3.29, 2.8, 3.13, 3.1, 3.17, 3.18, 3.13, 3.37, 3.34, 3.36, 3.39, 3.29, 3.38, 3.26, 2.93, 3.29, 3.08, 3.16, 3.25, 3.18, 2.96, 3.45, 3.16, 3.23, 3.29, 3.13, 2.94, 3.12, 3.05, 2.83, 3.16, 3.46, 3.22, 3.05, 3.34, 3.23, 3.23, 3.19, 3.47, 3.42, 3.17, 3.1, 3.16, 3.21, 3.2, 3.08, 2.99, 3.31, 3.18, 2.97, 3.04, 3.38, 3.13, 3.19, 3.37, 3.22, 3.06, 3.38, 3.23, 3.15, 3.15, 3.27, 3.26, 3.0, 3.07, 3.04, 3.24, 3.2, 3.42, 3.16, 3.21, 3.24, 2.95, 3.1, 3.07, 3.09, 3.23, 3.53, 3.28, 3.1, 3.18, 3.08, 3.33, 3.06, 3.14, 3.35, 3.09, 3.48, 3.25, 3.13, 3.2, 2.95, 3.25, 3.19, 3.2, 3.28, 3.06, 3.17, 3.13, 3.33, 3.0, 3.19, 3.03, 2.89, 3.08, 2.92, 3.19, 3.14, 3.22, 3.38, 3.09, 3.08, 3.38, 3.48, 3.54, 3.24, 3.24, 3.14, 3.12, 3.3, 3.09, 3.19, 3.04, 3.25, 3.45, 3.18, 3.42, 3.56, 3.67, 3.05, 3.4, 3.21, 3.16, 3.54, 3.32, 3.1, 3.19, 3.31, 3.13, 2.85, 3.16, 3.0, 3.26, 3.4, 3.32, 3.01, 3.24, 3.66, 3.37, 3.58, 3.58, 2.89, 3.31, 3.21, 3.3, 3.4, 3.1, 3.15, 3.51, 2.99, 3.16, 3.1, 3.08, 3.06, 3.55, 3.35, 2.98, 3.48, 3.34, 3.11, 3.56, 3.16, 3.32, 2.95, 3.24, 3.15, 3.15, 3.16, 3.33, 3.2, 3.51, 3.26, 3.26, 3.16, 3.1, 3.14, 3.37, 3.34, 3.05, 3.19, 3.02, 3.05, 2.97, 3.17, 3.13, 3.27, 3.12, 3.34, 3.49, 3.14, 3.32, 3.22, 3.03, 3.1, 3.19, 3.77, 3.36, 3.18, 3.34, 3.3, 3.27, 3.44, 3.07, 3.14, 3.13, 3.18, 3.47, 3.39, 3.31, 3.16, 3.44, 3.28, 3.17, 3.24, 3.17, 3.3, 3.24, 3.13, 3.23, 3.34, 3.29, 3.16, 2.99, 3.39, 3.36, 3.3, 3.14, 3.18, 3.19], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Reference\", \"x\": 0.245, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Current\", \"x\": 0.755, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"barmode\": \"overlay\", \"legend\": {\"title\": {\"text\": \"target\"}, \"tracegroupgap\": 0}, \"margin\": {\"t\": 60}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.49], \"title\": {\"text\": \"pH\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.51, 1.0], \"matches\": \"x\", \"title\": {\"text\": \"pH\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"count\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}}}, \"pH_good\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (ref)\", \"type\": \"scatter\", \"x\": [3.17, 3.36, 3.32, 3.59, 3.37, 3.4, 3.22, 3.36, 3.14, 3.1, 3.06, 3.16, 3.52, 3.06, 3.37, 3.14, 3.09, 2.95, 3.34, 3.18, 3.12, 3.21, 3.23, 3.25, 2.94, 3.64, 3.31, 3.14, 3.28, 3.33, 3.38, 3.3, 3.1, 3.38, 3.13, 3.11, 3.12, 3.4, 3.26, 3.25, 3.14, 3.46, 3.41, 3.12, 3.11, 3.4, 3.3, 3.22, 3.2, 3.0, 3.15, 3.17, 3.32, 3.19, 3.15, 3.03, 3.22, 3.26, 3.05, 3.51, 3.25, 3.46, 3.31, 3.32, 3.17, 3.31, 3.26, 3.12, 3.13, 3.19, 3.17, 3.04, 3.15, 3.01, 3.48, 3.29, 3.35, 3.25, 3.29, 3.0, 3.65, 3.27, 3.02, 3.2, 3.18, 3.07, 3.2, 3.37, 3.18, 3.08, 3.32, 3.19, 3.16, 3.54, 3.6, 3.39, 3.17, 3.26, 2.87, 3.33, 3.47, 3.04, 3.18, 3.4, 2.96, 3.5, 3.27, 3.24, 3.1, 3.3, 3.0, 3.15, 3.05, 3.4, 3.35, 3.15, 3.02, 3.1, 3.16, 3.4, 3.0, 2.99, 3.04, 3.06, 3.26, 3.36, 3.33, 3.04, 3.35, 3.61, 3.19, 3.21, 3.36, 3.27, 3.38, 3.27, 3.22, 3.54, 3.23, 3.12, 2.89, 3.52, 3.08, 3.2, 3.08, 3.22, 3.1, 3.25, 3.39, 3.2, 2.96, 2.92, 3.3, 3.17, 3.04, 3.18, 3.4, 3.11, 2.98, 3.2, 3.35, 3.26, 3.15, 3.49, 3.3, 3.09, 3.12, 3.36, 3.06, 3.36, 3.14, 3.34, 3.38, 3.03, 3.32, 3.26, 3.33, 3.08, 3.23, 3.58, 3.48, 3.13, 3.32, 3.39, 3.18, 3.34, 3.15, 3.22, 3.31, 3.54, 3.37, 3.71, 3.53, 3.26, 3.55, 3.0, 3.13, 3.1, 3.16, 2.9, 3.32, 3.36, 3.41, 3.38, 3.45, 3.23, 3.22, 3.14, 2.94, 3.4, 3.07, 3.24, 3.28, 3.23, 3.12, 3.36, 2.93, 3.21, 3.03, 3.1, 3.39, 3.28, 3.08, 3.02, 3.38, 3.2, 3.07, 3.34, 3.22, 3.6, 3.22, 3.18, 3.51, 3.03, 3.36, 3.66, 3.42, 3.14, 3.27, 3.21, 3.13, 2.98, 2.95, 3.26, 3.22, 3.23, 3.42, 3.2, 3.15, 3.25, 3.21, 3.14, 3.17, 3.24, 3.12, 3.15, 3.15, 2.93, 3.32, 3.14, 3.16, 3.38, 3.18, 3.01, 3.31, 3.28, 3.23, 3.28, 3.38, 3.56, 3.22, 3.49, 3.04, 2.91, 3.55, 3.39, 3.11, 3.27, 3.71, 3.17, 3.26, 3.06, 3.57, 3.26, 3.15, 3.28, 3.13, 3.14, 3.24, 2.94, 3.34, 3.12, 3.26, 3.23, 3.09, 3.19, 3.47, 3.21, 3.7, 3.37, 3.38, 3.38, 3.54, 3.15, 3.14, 3.4, 3.05, 3.19, 2.97, 3.09, 3.42, 3.03, 3.62, 3.37, 3.16, 3.16, 3.12, 3.29, 3.03, 3.2, 3.4, 2.95, 3.24, 3.53, 3.3, 3.47, 2.86, 3.15, 3.52, 3.22, 3.36, 2.98, 3.12, 3.25, 3.15, 2.93, 2.88, 3.27, 3.48, 3.22, 3.16, 3.01, 3.23, 3.34, 3.21, 3.13, 2.92, 3.32, 3.29, 3.04, 3.2, 3.24, 3.11, 3.02, 3.16, 3.46, 3.3, 3.18, 3.28, 3.14, 3.2, 3.14, 3.18, 3.3, 3.53, 2.87, 3.32, 3.28, 3.33, 3.1, 3.33, 3.23, 3.26, 2.89, 3.11, 3.06, 3.35, 3.33, 3.29, 3.38, 3.16, 3.12, 3.17, 3.44, 3.09, 3.0, 3.18, 3.22, 3.44, 3.14, 3.26, 3.1, 3.12, 3.27, 3.25, 3.39, 3.3, 3.06, 3.45, 3.22, 3.42, 3.52, 3.46, 3.34, 2.94, 3.23, 3.21, 3.12, 3.27, 3.11, 3.35, 3.22, 3.44, 3.38, 3.24, 3.16, 3.29, 3.16, 3.12, 3.06, 3.2, 3.08, 3.2, 2.96, 3.16, 3.42, 3.09, 3.11, 3.12, 3.29, 3.14, 3.27, 3.09, 3.33, 3.45, 3.48, 3.45, 3.51, 3.25, 3.12, 3.17, 3.13, 3.14, 3.12, 2.96, 3.23, 3.08, 3.24, 3.15, 3.33, 3.12, 3.29, 3.37, 3.27, 3.11, 3.22, 3.28, 3.4, 3.34, 3.12, 3.17, 3.45, 3.32, 3.05, 3.38, 3.32, 3.2, 3.27, 3.21, 3.32, 3.31, 3.19, 3.28, 3.12, 3.18, 3.12, 3.26, 3.25, 3.11, 3.15, 3.57, 2.98, 3.08, 3.49, 3.18, 3.06, 3.07, 3.04, 3.18, 3.21, 3.16, 3.21, 3.03, 3.28, 3.29, 3.11, 3.39, 3.24, 3.36, 3.54, 3.26, 2.98, 3.34, 3.09, 2.96, 3.11, 3.35, 3.13, 3.24, 3.23, 3.09, 2.99, 3.31, 3.09, 3.11, 2.94, 3.1, 3.26, 3.29, 3.26, 2.96, 3.08, 3.01, 3.41, 3.37, 3.2, 3.0, 3.09, 3.18, 3.18, 3.38, 3.41, 3.35, 3.11, 3.49, 3.36, 3.22, 3.02, 3.1, 3.17, 3.29, 3.22, 2.96, 3.18, 3.17, 3.08, 3.22, 3.36, 3.38, 3.43, 3.04, 3.12, 3.42, 3.06, 3.03, 3.35, 3.32, 3.34, 3.08, 3.05, 3.11, 3.08, 3.36, 3.44, 3.68, 2.93, 3.05, 3.13, 3.36, 3.1, 3.36, 3.2, 3.17, 3.08, 3.22, 3.3, 2.94, 3.21, 3.03, 3.05, 2.97, 3.36, 3.49, 3.54, 3.26, 3.34, 3.2, 3.25, 3.61, 3.05, 2.93, 3.12, 3.19, 3.22, 3.37, 3.36, 3.25, 3.42, 3.25, 3.02, 3.23, 3.32, 3.28, 3.2, 3.15, 3.14, 3.13, 3.16, 3.42, 2.94, 2.99, 3.21, 3.14, 3.37, 3.22, 3.39, 3.54, 2.95, 3.23, 2.87, 3.52, 3.02, 3.27, 3.21, 3.07, 3.23, 3.3, 3.14, 3.15, 3.08, 3.15, 3.09, 3.1, 3.2, 3.34, 3.05, 3.22, 3.15, 3.04, 3.4, 3.28, 3.28, 3.44, 3.24, 3.27], \"xaxis\": \"x\", \"y\": [0.8156061324462894, 0.42491310922683634, 0.8867827646463432, 0.8014995238430205, 0.30499958310650876, 0.5817355832705369, 0.959171062334887, 0.7854416128369749, 0.9085690698200813, 0.8998600376511439, 0.6341165000693628, 0.412102187638673, 0.7643629411050379, 0.4710001938005606, 0.40182653035141874, 0.40438056362905367, 0.8870480016118494, 0.3650667978415713, 0.9064321709292111, 0.9327245345966092, 0.6458420185168736, 0.8821841129047617, 0.6704018506542557, 0.7655671181822064, 0.8616986618932058, 0.48774537944210006, 0.9637355036179479, 0.6794204065079696, 0.6044835155949141, 0.7867954023600708, 0.9137982268836646, 0.5867502063434873, 0.8048584290077971, 0.9718511071053526, 0.9627192884041744, 0.7978623718349598, 0.6091120966723917, 0.8943338178728011, 0.8853376735027229, 0.9045563504021151, 0.9264844632598176, 0.6342457655367447, 0.9414033426130164, 0.5636516403732365, 0.5172967922101196, 0.4836896337264441, 0.35199620689495453, 0.788779954566273, 0.9696552399248426, 0.772496554239754, 0.8132656157621138, 0.4539090261140653, 0.9333708926412786, 0.679765045723866, 0.48457442622955804, 0.4248820606938153, 0.6737819616086004, 0.8780741425819777, 0.38340602447337646, 0.90634085684919, 0.5574014604752268, 0.6804147683859246, 0.9077110088845216, 0.7718472635729894, 0.4717552048891654, 0.22222808308441652, 0.8616549355667619, 0.705749071892896, 0.4699129352300819, 0.9680524782819758, 0.8891353183282249, 0.9466602521798594, 0.8553382520847058, 0.7430243903066251, 0.6616131862201935, 0.6919609500216202, 0.96565744679506, 0.913108907487878, 0.5395521774612226, 0.9026238558501023, 0.6550941529376255, 0.9757876320152292, 0.8833495792027257, 0.6666029765862381, 0.8504582120840628, 0.9320215595878566, 0.7639947574915884, 0.6085229656221847, 0.9557131606798471, 0.46184432615952054, 0.5642658412077981, 0.8815615400732472, 0.7189203536918151, 0.9301020530176726, 0.7341394174346678, 0.7759189559372703, 0.8448078654733812, 0.9012666081120407, 0.8926028620066223, 0.5287492720273277, 0.6874206920638863, 0.37408584674942635, 0.8348370105186077, 0.8697567261320243, 0.9175759024810304, 0.44644098895981, 0.8874384748400057, 0.7787567487441118, 0.9416122482572158, 0.3265229243180111, 0.9308095750950773, 0.42267134533232753, 0.43068181214270274, 0.8727308285810839, 0.7201611177732586, 0.8430904589044517, 0.8140617541555761, 0.9456747441572588, 0.6672663325862807, 0.8756470416862959, 0.518871521713375, 0.7040615347784164, 0.4957960231649875, 0.6250130361556073, 0.27413726132188326, 0.5193133578087885, 0.37656641690434584, 0.5808048103476511, 0.7917827117482167, 0.36569143480873245, 0.7232542293832885, 0.9785934574433302, 0.5715075300165849, 0.8182555969893297, 0.5448461144048058, 0.9491291995847589, 0.4833587957991669, 0.3189279754564957, 0.9184825510014271, 0.5524830505676419, 0.9600429304649183, 0.7818180966165994, 0.7962710274484252, 0.7569429870375118, 0.46184432615952054, 0.7641514270390748, 0.9486763575522457, 0.8086368705092697, 0.6784536879503494, 0.6877019790624462, 0.6082670858563528, 0.6053794617794684, 0.6319330693089359, 0.4982105707488519, 0.6787928880949093, 0.9231980717613485, 0.8831230955067948, 0.6845485656817341, 0.8799204262605215, 0.9164563829924386, 0.7819268199067826, 0.23469888428232324, 0.9492377841603665, 0.8826092272015389, 0.6360541596480074, 0.5184081252698399, 0.6400126753125241, 0.542646305979658, 0.4479501208302092, 0.7783171875827786, 0.7867712153112567, 0.5236605417423803, 0.6959846197179591, 0.7925023358445066, 0.6683189355892497, 0.18737025221649042, 0.42506327048176057, 0.7272596040941706, 0.7314191754306454, 0.4827891324637794, 0.6649341228620356, 0.9038332731164471, 0.9588917860646077, 0.8945194928389463, 0.49833043835950624, 0.7997712594855277, 0.8577935987172323, 0.7622736922026153, 0.8039391974899521, 0.7396811504731934, 0.8115340233127679, 0.801728888664367, 0.738451208106372, 0.5859674792922007, 0.1865203674848816, 0.8773430435604171, 0.36888329310067386, 0.8651817982269884, 0.9067615420962557, 0.8594983988587351, 0.7437750884018276, 0.9145224932934428, 0.9135679891815164, 0.8001832456898428, 0.6860977766129374, 0.9377826008632761, 0.9300369611912853, 0.6997062971069969, 0.5693182102579236, 0.3404656140239559, 0.7160591142088384, 0.7953146078011, 0.8869803873277935, 0.7639982823097876, 0.8681285227071118, 0.576868797021353, 0.93035102563313, 0.8375600281828176, 0.8279918435672958, 0.9266689436294401, 0.7559862346636359, 0.5099889666930224, 0.6914445842613687, 0.9651950326885705, 0.87851968214492, 0.8499702807396289, 0.4685752957996948, 0.7241546992314323, 0.7848147251007912, 0.7341394174346678, 0.7008877443692281, 0.340588975625529, 0.5013021766499856, 0.8321174529331695, 0.8818378666553491, 0.9176909075187759, 0.8634678749265305, 0.7436082905772717, 0.9343776659412377, 0.7668809937296346, 0.6243383802582345, 0.5332560471205093, 0.6907315465649003, 0.16626803588025432, 0.1668542888532837, 0.7408943843163458, 0.5221312328975666, 0.7457559475413279, 0.46389636934606376, 0.9292627865919654, 0.5268311186840582, 0.4244151934213653, 0.643310536612302, 0.8577438313980266, 0.7816208399762355, 0.8553382520847058, 0.7010035672814305, 0.5242572272016158, 0.9187320011579697, 0.8703498177621264, 0.6713045345576062, 0.9137982268836646, 0.8614414457916845, 0.9445662266054761, 0.8808216590199034, 0.7386378115490353, 0.8873009977622293, 0.9157094897337859, 0.6606038558129893, 0.9296803968514485, 0.8864322240790464, 0.5146720135715994, 0.8720710714485208, 0.9415427660945741, 0.9138701141498735, 0.6527559092576063, 0.8751970040938668, 0.9249766460056568, 0.801728888664367, 0.6575848465963361, 0.6934824043184128, 0.8619113960143526, 0.9419078024651042, 0.9591721389341828, 0.8397407150753159, 0.9084383840076588, 0.4963969309336195, 0.7359588175524252, 0.3531961907069324, 0.9279819479140234, 0.7752976919572294, 0.8665226278427577, 0.9515211055933231, 0.7314191754306454, 0.890886918514299, 0.3235491032739525, 0.3719939405423586, 0.6323804178173072, 0.8398006965792015, 0.8239469134189235, 0.8592101816891015, 0.7615002907198236, 0.8688259750909261, 0.8718104001390852, 0.5838074755684882, 0.8756470416862959, 0.901850575196968, 0.9451930143658351, 0.6253812669856891, 0.5890764576710766, 0.4921052500998711, 0.4862070578416567, 0.9170647663398394, 0.7035583451969506, 0.8476385889092957, 0.5603058978573646, 0.5810606890504925, 0.9088604673919816, 0.8903252600075929, 0.944267921154058, 0.9435968591480925, 0.938237366988842, 0.9357286047893738, 0.7961386682142712, 0.7840233885688647, 0.2513590507613302, 0.7389284097502917, 0.9053472250810051, 0.44438282424164377, 0.862281110352348, 0.8021059248496223, 0.9152740930046814, 0.643737358401971, 0.8540304955499701, 0.8613418170006786, 0.6911084183178322, 0.8848367871057808, 0.8387883096682573, 0.5942651630821018, 0.65691393717736, 0.6369979527510315, 0.8280658524313272, 0.9640736168216585, 0.6546311715671466, 0.5599819536107853, 0.48348053317652906, 0.7668016587569692, 0.03620763244300767, 0.7364400865449663, 0.37408584674942635, 0.8767503774172, 0.8743962287172513, 0.8751970040938668, 0.8833495792027257, 0.7091886355621774, 0.87006937054451, 0.7904001815220257, 0.8761418339280951, 0.8306834851111597, 0.7531715889012326, 0.38181207472529843, 0.6490458991820136, 0.9138057013338913, 0.9046222904886461, 0.17956061692355052, 0.7506163079023257, 0.8963285795381793, 0.8848361664653354, 0.9283037217377402, 0.45996158699034445, 0.7290858434196763, 0.8319094967702583, 0.6578018675312727, 0.18727567457681707, 0.8673410249845035, 0.9453298670648187, 0.9446538464906173, 0.19605573045952288, 0.6723831041639817, 0.3438281302059518, 0.37858973820495484, 0.6953170483296187, 0.21463507152544156, 0.26963792069965237, 0.3280912492037974, 0.8399932187801539, 0.420387898633768, 0.36522500752858966, 0.5810560693343539, 0.9306346767722963, 0.7167716539092029, 0.656736106921484, 0.5549139996760648, 0.6909161521388689, 0.591904263202073, 0.884703171197362, 0.866402281883595, 0.7582770814524421, 0.8990773411030794, 0.1818065866116437, 0.6222165686186035, 0.17261914235374884, 0.8156064679757086, 0.4851213943917703, 0.8871292211128762, 0.8398494053952754, 0.703270618172154, 0.6305543892506115, 0.7494149477175548, 0.1532408287022325, 0.6159732902773407, 0.738220551127759, 0.8354520044441791, 0.8536870432671441, 0.5751476712690671, 0.9077719201719568, 0.7878515691455199, 0.6672663325862807, 0.45293736875445273, 0.17058553029544155, 0.747933377844996, 0.8400163125056676, 0.4516778718827729, 0.6082670858563528, 0.8401843469141149, 0.7636885291754726, 0.789170795337903, 0.8128612802083497, 0.7522530659814418, 0.8086757686066508, 0.8356255123032285, 0.9241779635105248, 0.9674588597049086, 0.9368885694202199, 0.4990764491242286, 0.876561204324957, 0.554264192243629, 0.5967716244634195, 0.9060244606340249, 0.8401608718856799, 0.7329750583133859, 0.8021769878309102, 0.9316817655017511, 0.45488322534173153, 0.798578398438993, 0.7425236774748816, 0.5742682328784404, 0.4937681935814938, 0.8972164286692267, 0.8914273370768748, 0.9377613518261881, 0.8862258850530264, 0.8591757581361523, 0.7410678096850266, 0.6822336012657398, 0.9201658505843877, 0.6982578893131915, 0.5746709232170782, 0.7626532952948841, 0.7137703530889916, 0.7520971196461234, 0.4473853625959922, 0.7957460056304991, 0.4833174871501707, 0.8758467705785958, 0.4689303842787964, 0.6133612564737879, 0.8568681391705205, 0.6835133967314007, 0.9732070839986944, 0.21435716257549006, 0.5761668962420043, 0.4055433603128916, 0.3743394998756179, 0.9118635774953143, 0.964551884718591, 0.9306459334511011, 0.8424802355113449, 0.7739144871152517, 0.6872688771534424, 0.8590561833388345, 0.6714384475466295, 0.6408669500407106, 0.5203550269219845, 0.2856853969697174, 0.857760555506807, 0.9307094503226838, 0.6787928880949093, 0.8308635255795866, 0.29271374211533296, 0.6769315553524353, 0.23831547366416572, 0.5895099457120908, 0.8994675076574448, 0.8893400405584444, 0.8456825404777587, 0.5399612081435882, 0.6188649121485582, 0.9281492942813848, 0.7611740601422801, 0.46550237374781617, 0.8896861436466836, 0.9038901015569306, 0.5044440900554997, 0.9215480939667524, 0.6930273792518707, 0.8723244804196287, 0.5624338775604165, 0.9226297661236537, 0.8469231754225917, 0.9430557295321259, 0.9097116306258912, 0.5988707702267543, 0.3813853072548755, 0.8843832309478876, 0.9006952500629406, 0.918975987201669, 0.18997930334445084, 0.8923106748541326, 0.8461388699436441, 0.5973439234355874, 0.9544642924744549, 0.91770416680597, 0.9177239854204658, 0.17584552180125673, 0.9240099144459667, 0.48524948024905407, 0.8889685222180134, 0.5785503824403398, 0.7511953459672914, 0.6887596776945688, 0.6717539058356753, 0.7168761391602206, 0.7134478068952186, 0.834626350903405, 0.5715867980362679, 0.6588392688727011, 0.9488572786900573, 0.8920529250761863, 0.8891353183282249, 0.707981940789761, 0.926348680038428, 0.631489487929038, 0.7443856388661001, 0.9260754381930228, 0.9544642924744549, 0.8497401318990601, 0.5604010177433062, 0.8036334301115304, 0.7898153537185114, 0.8491431337122072, 0.6570881560807702, 0.8389599143569951, 0.7944137576415592, 0.8132668978866627, 0.44714680104169846, 0.7978021044641371, 0.41921696608658454, 0.38876183891604754, 0.9248463736054193, 0.4277915265084825, 0.6345107008491314, 0.8008942533173764, 0.5087430598332189, 0.9414938992689892, 0.6922115882765215, 0.8296175750175913, 0.8593339228153332, 0.8975141534758351, 0.5977126281557783, 0.9279478536756302, 0.6485770817571253, 0.8905823996589662, 0.9332072841984264, 0.9432461110830079, 0.9410120781436498, 0.6339696776630096, 0.7120962557761497, 0.5841709037351369, 0.5928970840420333, 0.9006589732900512, 0.936371533648048, 0.6907852379101131, 0.7675780198071424, 0.9444587893431046, 0.4702336163336472, 0.8925536722101626, 0.8158978708906081, 0.822780392485108, 0.8037335327290217, 0.8382351003285965, 0.8941557358589171, 0.4796498334522667, 0.926348680038428, 0.6842118015950474, 0.6463580983468415, 0.8292048071278182, 0.5834426687867836, 0.8419845362148763, 0.2431563391580561, 0.7763142135369961, 0.9390550746437164, 0.7774903237071782, 0.8141232663130791, 0.9444089886680379, 0.430401459478284, 0.9192677156927759, 0.8427595869840984, 0.87120858451521, 0.5693182102579236, 0.820012080301976, 0.58719119911586, 0.42769376643096113, 0.3542595869275313, 0.89579938191327, 0.8743523014696554, 0.7820497043505815, 0.5279069501129625, 0.8869579700149332, 0.45488774279476296, 0.8514781135508903, 0.8278297091497892, 0.663749097381813, 0.5132851713944618, 0.4906566565015208, 0.6415219885510332, 0.6991293681294938, 0.8150539074042624, 0.5800669536763935, 0.9583771200922359, 0.7366090055976814, 0.5747817696023392, 0.5315376696882942, 0.8074446941396305, 0.9038901015569306, 0.9087015650331977, 0.6697291810323083, 0.5800669536763935, 0.8807270543114014, 0.5135845984304893, 0.9352791850238339, 0.36120709973337456, 0.6206709330576408, 0.906286252315459, 0.7937202818717513], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [3.16, 3.03, 3.03, 3.45, 3.15, 3.46, 3.34, 3.36, 3.16, 3.18, 3.3, 3.25, 3.02, 3.24, 3.32, 3.24, 3.3, 3.5, 3.06, 3.53, 3.19, 3.26, 3.54, 2.94, 3.6, 3.26, 3.27, 3.29, 3.1, 3.3, 3.48, 3.01, 3.66, 3.19, 3.0, 3.15, 2.96, 3.2, 3.04, 3.08, 3.02, 3.39, 3.27, 3.15, 3.19, 3.3, 3.32, 3.4, 3.23, 3.32, 3.09, 3.08, 3.2, 3.19, 3.11, 2.96, 3.17, 3.28, 3.14, 3.26, 3.19, 3.58, 3.43, 3.34, 3.13, 3.26, 3.22, 3.27, 3.61, 2.79, 3.09, 3.27, 3.05, 3.21, 3.1, 3.16, 3.08, 3.28, 3.2, 3.11, 2.98, 3.05, 3.12, 3.39, 3.11, 3.24, 3.14, 3.26, 3.17, 3.01, 3.27, 3.31, 3.15, 3.05, 2.96, 3.18, 2.98, 3.14, 3.15, 3.27, 3.01, 3.52, 3.35, 3.22, 3.29, 3.08, 3.16, 3.37, 3.27, 3.22, 3.37, 3.37, 3.41, 3.34, 3.49, 3.11, 3.16, 3.32, 3.06, 3.15, 3.09, 3.41, 3.22, 3.11, 3.1, 3.05, 3.29, 3.1, 3.23, 3.16, 2.89, 3.43, 3.1, 3.22, 3.11, 3.17, 3.13, 3.26, 3.09, 3.25, 3.07, 3.18, 3.28, 3.14, 3.14, 3.02, 3.44, 3.11, 3.14, 3.32, 3.13, 3.45, 2.92, 3.46, 2.99, 3.25, 3.2, 3.25, 3.46, 2.97, 3.15, 3.14, 3.05, 3.16, 3.34, 3.18, 3.18, 3.26, 2.96, 3.08, 3.12, 3.22, 3.37, 2.99, 3.22, 3.24, 3.33, 3.2, 3.46, 3.01, 3.24, 3.54, 3.28, 3.13, 3.1, 3.21, 3.12, 3.01, 3.28, 3.12, 3.02, 3.01, 3.08, 3.14, 3.16, 3.34, 3.08, 3.16, 3.06, 3.07, 3.3, 3.16, 3.16, 3.15, 3.63, 3.09, 3.22, 3.21, 3.72, 3.09, 3.14, 3.5, 3.04, 3.06, 3.18, 3.24, 3.11, 2.97, 2.94, 2.87, 2.88, 3.5, 3.06, 2.96, 3.1, 3.11, 3.34, 3.02, 3.22, 3.49, 3.33, 2.94, 3.5, 3.1, 3.16, 2.92, 3.39, 3.39, 3.15, 3.02, 3.24, 3.11, 3.03, 3.12, 3.5, 3.15, 3.22, 3.18, 3.24, 3.24, 3.41, 3.14, 3.66, 3.39, 3.1, 3.09, 3.17, 3.41, 3.14, 3.16, 3.05, 3.14, 3.39, 3.0, 3.16, 3.21, 3.77, 3.74, 3.42, 3.29, 3.44, 3.08, 3.21, 3.11, 3.19, 3.31, 3.44, 3.0, 3.13, 3.29, 3.34, 3.59, 3.17, 3.29, 3.15, 3.16, 2.9, 3.28, 3.08, 3.25, 3.06, 3.12, 3.24, 3.51, 3.3, 2.94, 3.13, 3.29, 3.08, 3.23, 3.68, 3.28, 3.36, 3.25, 3.31, 3.08, 3.12, 3.34, 3.04, 3.03, 3.06, 3.22, 3.59, 3.18, 3.38, 3.09, 3.1, 3.31, 3.22, 3.66, 3.32, 3.19, 3.36, 3.28, 3.15, 3.14, 2.98, 3.19, 3.29, 3.22, 2.93, 3.38, 3.35, 3.2, 3.25, 3.09, 3.13, 3.05, 3.1, 3.23, 3.3, 3.21, 3.24, 3.18, 3.24, 3.48, 3.53, 3.14, 3.38, 3.08, 3.04, 3.34, 3.06, 3.63, 3.09], \"xaxis\": \"x\", \"y\": [0.2802292104526322, 0.9455194119275858, 0.4978743212349556, 0.5289145624519528, 0.28439238707197784, 0.2033309570226689, 0.27345747478543325, 0.8322873304845451, 0.389055896812549, 0.3675472469853882, 0.5781933746273124, 0.7401955299744071, 0.44969671697605845, 0.4367887814338696, 0.31593955341667695, 0.3775624358859999, 0.19282181046294666, 0.048451763306065584, 0.6005928650583868, 0.032225376113695775, 0.427412413738938, 0.23973251442015217, 0.13890126550157303, 0.8613925272127, 0.329663916828638, 0.19359965390713213, 0.6827271716759634, 0.1960905505555538, 0.08135735686643118, 0.39737240301928484, 0.13902987396822816, 0.6514166433739288, 0.6994753721471061, 0.7140886736258081, 0.5021795028970708, 0.48743245558712556, 0.5731139673640956, 0.8820820642542792, 0.559972149724866, 0.5061565591493914, 0.5066810377847554, 0.833805652807593, 0.6979972163580744, 0.3177574231538272, 0.13068190592986567, 0.758876109553896, 0.5681062961269688, 0.715544821914063, 0.762062625203523, 0.4464438677531786, 0.20995974230910305, 0.5262622410710028, 0.39442669669188163, 0.2537324982988368, 0.6775437642744659, 0.23876321589577687, 0.6369158982934647, 0.38960060362966165, 0.6034323722874255, 0.7769991715799629, 0.15199748354041337, 0.5641412449951732, 0.7590466800561823, 0.5969347905931296, 0.1048362779837843, 0.7217824369593382, 0.2662339163773806, 0.16472378978351135, 0.37760124376932414, 0.7071736299639594, 0.3436862995931572, 0.8384434752264291, 0.3635333644877426, 0.7813188949129265, 0.7279369976219869, 0.5641098847382463, 0.3863964747623771, 0.9209913370067284, 0.1477144681640183, 0.8809374658555192, 0.6533168894759348, 0.8873477284758582, 0.3697306267878623, 0.28319023347825867, 0.5203701741750857, 0.5523747693308857, 0.6387521731780509, 0.3881380695009739, 0.8487896327149285, 0.4636606453307818, 0.8384434752264291, 0.558266603669778, 0.21657231888677728, 0.3635333644877426, 0.5512671313974766, 0.5051039398599867, 0.5827915753039158, 0.49441682850108926, 0.47309171914705017, 0.6262595591688196, 0.5508242483721094, 0.47332791509789995, 0.7117569366896692, 0.3933786516273859, 0.16465066549244003, 0.7490394132223248, 0.769261050002088, 0.7431932405995126, 0.3141000916210982, 0.723735045552473, 0.6484132891031948, 0.688519894019609, 0.40496704226994307, 0.5803736122960511, 0.6327801522745691, 0.45115706990411364, 0.37268733756108086, 0.9009693101135351, 0.06496389958099598, 0.44431713201158524, 0.39960831974332744, 0.8662156944598043, 0.31018081106061823, 0.5339551117365043, 0.33311273919547707, 0.400132762133902, 0.8528754522806217, 0.14419347879543085, 0.11672350429510901, 0.44556702529145975, 0.6160120899414699, 0.13766892845409207, 0.5517204028384314, 0.5232178919035022, 0.35483403305733974, 0.4900213704561591, 0.8854578072659228, 0.43084122675663034, 0.7601186327653665, 0.14072030431570776, 0.6186690618327106, 0.5245054232921349, 0.7326259458716644, 0.5690781983520095, 0.4018508815425063, 0.24877469563805235, 0.7952501197393639, 0.8766221356386195, 0.303451532996695, 0.5357745481647883, 0.7096524147827454, 0.20877177283968149, 0.8635610141758273, 0.46736762313881036, 0.6061151992073851, 0.113015272873705, 0.40446014603085867, 0.6332606063976143, 0.648705381890928, 0.42186952587750404, 0.8047913565308571, 0.3017058309841093, 0.38406990132164637, 0.33494193042999065, 0.19929939967121216, 0.8624919783238055, 0.528785836409086, 0.43084122675663034, 0.47042159929499583, 0.5061565591493914, 0.5759491569657543, 0.8468794444363914, 0.20342296359496542, 0.5170831534483544, 0.3666753044655067, 0.6131723001375537, 0.4410646109528086, 0.6903416342484309, 0.3866428492574258, 0.4636606453307818, 0.4525459302795702, 0.03199256040434073, 0.7029629492254846, 0.2433141614541866, 0.548755973819273, 0.3775060302547258, 0.06593060991448157, 0.8745624549148976, 0.22931948662359403, 0.27267688907931714, 0.589328430619086, 0.8007160756317941, 0.5525637789187225, 0.5008522318356121, 0.4556212410144909, 0.17391722008742402, 0.43574637053357784, 0.3237440077649342, 0.6071692164257629, 0.6925152430641841, 0.592675381607996, 0.43854150134957587, 0.43854150134957587, 0.42437112972565305, 0.8061118855433299, 0.35195592295594336, 0.7605370065149419, 0.38898578429124253, 0.67510953655807, 0.872979709380305, 0.710510994258769, 0.720290290780972, 0.4820787970895852, 0.42019280799979697, 0.4304380754474639, 0.25285023254778977, 0.3238056884730761, 0.39471961640683584, 0.09510031985475974, 0.367046376808582, 0.21500793651835448, 0.8705359023101334, 0.6100742529031461, 0.6226449432624995, 0.7279369976219869, 0.3643494054700089, 0.09992017521484964, 0.41475515148757036, 0.6462260464983366, 0.14102909592513518, 0.48949585696458414, 0.5239520436918008, 0.6084413884537807, 0.5655473856702703, 0.9517420512476797, 0.7489379515982664, 0.4647937384849751, 0.7915321263825208, 0.44112279258530757, 0.5734340256727429, 0.6604471727860799, 0.4845203185458914, 0.6968730453869196, 0.5315374962198609, 0.8685951485887234, 0.6242442748350044, 0.2912097196987059, 0.7725938221565348, 0.2067629769731588, 0.30221725334927335, 0.13129342562285412, 0.6467789443522378, 0.6994753721471061, 0.11825382206919556, 0.41022417118631593, 0.4882665226122541, 0.7732287086973071, 0.25374762405010176, 0.49441682850108926, 0.3723877205427743, 0.652330313245635, 0.43667799883041203, 0.5964718913578133, 0.55172276504346, 0.24113559934961917, 0.8243980268882987, 0.7263843594269437, 0.43535214809021755, 0.8721122798612579, 0.18723914490145582, 0.6486906676970999, 0.11576704656818047, 0.4328241622975616, 0.491481212420291, 0.5264345378086769, 0.33856526784971647, 0.2967410926251248, 0.581398831228375, 0.5973776665460488, 0.6195406102170065, 0.37782717658841725, 0.323061133240968, 0.17420808473594895, 0.19634770547538957, 0.46492234760650425, 0.49613167963272686, 0.5812209036149294, 0.6057291775435286, 0.63414717387345, 0.5702687187355167, 0.8604975146328253, 0.6309022132706124, 0.48732991249542923, 0.6887148870948692, 0.41581945293096145, 0.5706760596351739, 0.4831274653996314, 0.06684727567316755, 0.49090643211649887, 0.15191610726090596, 0.2711405311223577, 0.7653618545702112, 0.09266565137124261, 0.4554350627407873, 0.19698919164573708, 0.6930185080649685, 0.5227537922811563, 0.50434568709929, 0.7082092780767422, 0.46058046365566996, 0.6735723234187477, 0.4285936050615775, 0.323061133240968, 0.5168500865319015, 0.6161307914674419, 0.23456444218973552, 0.3192004782541023, 0.21968945907811915, 0.5028183230931117, 0.43371621376298963, 0.6744209213341115, 0.5940260419772637, 0.13783310426722128, 0.5136444387530009, 0.5508647999875032, 0.4955911012838212, 0.9814394195009358, 0.8260225289794664, 0.17965956338109995, 0.46844896472597397, 0.6048119589659149, 0.3289160319090978, 0.2454606394453749, 0.7497022835596558, 0.683485355417811, 0.20995974230910305, 0.23504578258460665, 0.37175956099497537, 0.4875530438829156, 0.24982584224249993, 0.6282829625348888, 0.4520795162158371, 0.8200372413039435, 0.12832513643528837, 0.5299630655130737, 0.29552777318700446, 0.24021937552346023, 0.5429028773737552, 0.6311869746243346, 0.4145977043912777, 0.39329840463575844, 0.39070335653410526, 0.4286990948130573, 0.846836560604146, 0.6880850122626078], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (curr)\", \"type\": \"scatter\", \"x\": [3.03, 3.09, 3.09, 3.17, 3.21, 3.19, 3.19, 3.06, 2.96, 3.38, 3.28, 3.13, 3.16, 3.18, 3.46, 3.14, 3.32, 3.06, 3.41, 3.01, 3.14, 3.1, 3.13, 3.32, 3.14, 3.07, 2.97, 3.3, 3.08, 3.36, 2.96, 3.3, 3.37, 3.23, 2.96, 3.09, 3.21, 2.86, 3.23, 3.46, 2.99, 3.13, 3.14, 3.06, 3.21, 3.46, 3.16, 3.59, 2.93, 3.35, 3.29, 3.29, 3.16, 2.96, 3.32, 3.28, 2.87, 3.68, 3.41, 2.9, 3.41, 3.04, 3.2, 2.99, 3.08, 3.32, 3.4, 3.39, 3.3, 3.29, 3.07, 3.26, 3.27, 3.38, 3.25, 3.16, 3.19, 3.13, 3.29, 3.27, 3.11, 3.11, 3.34, 2.99, 3.08, 3.22, 3.47, 3.06, 3.2, 3.3, 3.26, 3.03, 3.42, 3.0, 3.17, 3.16, 3.07, 3.03, 3.2, 3.56, 3.02, 3.34, 3.4, 2.98, 3.07, 2.93, 3.27, 3.34, 3.36, 3.31, 3.15, 3.15, 3.0, 3.21, 3.27, 3.37, 3.75, 3.22, 3.05, 3.37, 3.41, 3.24, 3.21, 3.26, 3.29, 3.27, 3.43, 3.29, 3.34, 2.91, 3.05, 3.38, 3.14, 3.02, 3.32, 3.01, 3.2, 3.31, 3.27, 3.3, 3.13, 3.61, 3.1, 3.2, 3.16, 3.18, 3.07, 3.38, 2.99, 3.0, 3.19, 3.06, 3.19, 3.06, 3.21, 3.09, 3.26, 3.23, 3.2, 2.98, 3.25, 3.45, 3.04, 3.39, 3.07, 2.95, 3.15, 3.22, 3.34, 3.03, 3.42, 2.94, 3.17, 3.38, 3.38, 3.28, 3.3, 3.03, 3.18, 3.31, 3.38, 3.22, 3.27, 3.3, 3.22, 3.32, 3.41, 3.29, 3.0, 3.41, 2.99, 3.0, 3.27, 3.16, 3.41, 3.19, 2.9, 3.51, 3.07, 3.43, 2.93, 3.45, 3.25, 3.14, 2.96, 3.36, 3.18, 3.17, 3.42, 3.24, 3.24, 3.36, 3.39, 3.25, 3.1, 3.15, 3.2, 3.31, 3.54, 3.13, 3.24, 3.36, 3.42, 3.2, 3.24, 2.96, 3.38, 3.12, 3.33, 3.27, 3.53, 3.26, 3.11, 3.35, 3.22, 3.34, 3.1, 3.27, 2.98, 3.23, 3.3, 3.05, 2.95, 3.81, 3.37, 3.1, 2.94, 3.1, 3.51, 3.19, 3.29, 2.99, 3.28, 3.32, 3.05, 3.2, 3.26, 3.17, 2.97, 3.44, 3.35, 3.29, 3.51, 3.31, 3.23, 3.28, 3.31, 2.91, 3.22, 3.14, 3.2, 3.24, 3.04, 3.18, 3.42, 3.5, 3.45, 3.42, 3.47, 3.52, 3.06, 2.97, 3.28, 3.25, 3.12, 3.23, 3.15, 3.24, 3.34, 3.2, 3.26, 3.19, 3.34, 3.1, 3.03, 3.22, 3.07, 3.33, 3.2, 3.23, 3.03, 3.11, 2.92, 3.38, 3.01, 3.4, 3.36, 3.1, 3.09, 2.88, 3.23, 3.26, 3.56, 3.09, 3.31, 3.76, 3.1, 3.14, 3.14, 3.02, 3.17, 3.19, 3.49, 3.42, 3.32, 3.16, 3.11, 3.28, 3.12, 3.36, 3.35, 2.88, 3.36, 3.11, 2.96, 2.99, 3.29, 3.18, 3.12, 3.33, 3.17, 3.34, 3.52, 3.39, 3.32, 3.11, 3.4, 3.45, 3.42, 3.05, 3.14, 3.22, 3.12, 3.06, 3.08, 3.36, 3.28, 3.17, 3.15, 3.4, 3.03, 3.33, 3.34, 2.94, 3.21, 3.24, 3.22, 3.54, 3.25, 3.1, 3.2, 3.29, 3.21, 3.03, 3.07, 3.35, 3.16, 3.18, 3.3, 3.44, 3.07, 3.13, 3.06, 3.22, 3.19, 3.48, 2.94, 3.33, 3.3, 3.24, 3.24, 3.19, 3.55, 3.18, 3.32, 3.36, 2.97, 3.17, 3.3, 3.3, 3.4, 3.3, 3.2, 2.85, 3.32, 3.42, 3.33, 3.3, 2.96, 3.12, 3.26, 3.49, 3.0, 3.12, 3.12, 3.37, 3.06, 3.17, 3.15, 3.14, 3.31, 3.27, 3.24, 3.4, 2.98, 3.06, 3.15, 3.0, 3.41, 3.16, 3.05, 3.8, 3.09, 3.15, 3.32, 3.43, 3.37, 3.01, 3.34, 3.0, 3.14, 3.57, 3.11, 3.04, 3.06, 2.94, 3.7, 3.18, 3.39, 3.2, 3.14, 3.34, 3.34, 3.16, 2.94, 3.41, 3.2, 3.29, 3.6, 3.28, 3.04, 3.2, 3.3, 3.06, 3.03, 3.52, 3.16, 3.5, 3.25, 3.46, 3.36, 3.05, 3.58, 2.9, 3.15, 3.13, 3.24, 3.23, 3.32, 3.44, 3.19, 3.21, 3.39, 3.41, 3.35, 2.99, 3.07, 3.04, 3.09, 3.42, 3.27, 3.36, 3.31, 3.27, 3.14, 3.3, 3.11, 3.11, 3.29, 3.1, 3.04, 3.06, 3.14, 3.42, 3.32, 3.22, 3.17, 3.34, 3.08, 3.1, 3.34, 3.25, 3.12, 3.06, 3.12, 3.29, 3.38, 3.27, 3.24, 3.52, 3.36, 3.21, 3.59, 3.25, 3.22, 2.99, 3.16, 3.31, 3.21, 3.06, 3.38, 3.16, 3.01, 3.19, 3.15, 3.13, 3.05, 3.0, 3.35, 3.0, 3.38, 3.24, 3.33, 3.38, 3.29, 3.26, 3.23, 3.31, 3.15, 3.14, 3.16, 2.99, 3.42, 3.23, 3.44, 3.23, 3.4, 3.18, 3.46, 3.36, 3.2, 3.04, 2.9, 3.35, 3.26, 3.08, 3.05, 3.12, 3.31, 3.16, 3.72, 3.47, 3.54, 3.29, 2.99, 3.49, 3.47, 3.13, 3.2, 3.19, 3.24, 3.07, 3.03, 3.51, 3.16, 3.22, 3.29, 3.22, 3.11, 3.44, 3.44, 3.3, 3.2, 2.94, 3.22, 3.12, 3.4, 3.3, 3.19, 3.27, 3.15, 3.28, 3.09, 3.04, 3.24, 3.26, 3.15, 3.23, 3.44, 3.34, 3.24, 2.98, 3.19, 3.0, 3.29, 3.1, 3.35, 3.28, 3.0, 3.26, 3.24, 2.98, 3.15, 3.26, 3.27, 3.11, 3.04, 2.93, 3.22, 3.19, 3.38, 3.06, 3.26, 3.25, 3.35, 3.24, 3.19, 3.34, 3.06, 3.13, 3.13, 3.03, 2.97, 3.41, 3.06, 3.11, 3.22, 3.25], \"xaxis\": \"x2\", \"y\": [0.33396714643252134, 0.5044440900554997, 0.8874896900044845, 0.4686759077780351, 0.23831547366416572, 0.571181601185031, 0.7785327680196316, 0.7290551099174598, 0.9581131370131553, 0.6801000322064107, 0.413367674560271, 0.6667140739211237, 0.9108229754863395, 0.9275086157065797, 0.9186958597750785, 0.7191871442695774, 0.8184457509658746, 0.8597940676688322, 0.7947045908306632, 0.8244149680645384, 0.42771531534877594, 0.5315376696882942, 0.7136291946100958, 0.5510697799054304, 0.6393262665313312, 0.9016582766249417, 0.8560880110261746, 0.8947361144883382, 0.9102326114023062, 0.840723585394272, 0.9264645566705582, 0.5105903360131552, 0.752648770317166, 0.5855954083225455, 0.8989214048388485, 0.5190750352404293, 0.9560713253502463, 0.7273157243430202, 0.9279672131348602, 0.640103147954212, 0.9158977434209615, 0.9035955072010529, 0.7140955379655831, 0.233508355491505, 0.7280578325574358, 0.8810827811902006, 0.3966129217085586, 0.15541760955422754, 0.5851621750323275, 0.9046111951917862, 0.4177213302712193, 0.7993763114768937, 0.6978409661933959, 0.6473373667551029, 0.770784382977056, 0.6500641275496193, 0.548949563093737, 0.9803199442553986, 0.6150775052067382, 0.391333092160729, 0.6966682278280982, 0.9426748402861506, 0.9170092977635526, 0.844625652038695, 0.5621782696252592, 0.8935808323282117, 0.6792214086077275, 0.6719996755401956, 0.5252591274442797, 0.7277045758687855, 0.4685752957996948, 0.8616549355667619, 0.347491516391863, 0.8224130863808733, 0.5340790568488665, 0.6711667658766297, 0.5277539611022016, 0.7226430813715845, 0.8140972745487615, 0.3280236940194876, 0.9543080196225542, 0.7752655593026647, 0.9223925066666061, 0.8588031784191832, 0.6345107008491314, 0.9393010047953068, 0.7897067132703484, 0.8608062836413887, 0.8367885032124018, 0.38555642305179116, 0.8611944449682004, 0.9172341012895443, 0.9206892306522243, 0.9500505925695213, 0.537798347971205, 0.9173482789702866, 0.44454351342386716, 0.8909704850569525, 0.7351932580165473, 0.6818328744935735, 0.7981559962965634, 0.7626532952948841, 0.807353254900461, 0.964411205143099, 0.4685752957996948, 0.6986526320119215, 0.1956969407137045, 0.9233481403380283, 0.8218375601976645, 0.8536269727611236, 0.5637680470866036, 0.42267134533232753, 0.93003590801509, 0.9364808605729722, 0.8816060831574614, 0.9663102962713933, 0.8345570787709832, 0.4997893986747249, 0.7921603237806832, 0.5586815647381762, 0.8622246464681924, 0.9828719612298703, 0.909295720392338, 0.9476267884443668, 0.5395521774612226, 0.901360886913609, 0.39410444510430487, 0.9262213132200262, 0.6627387433216217, 0.9629433821448677, 0.9614311452267452, 0.9802968012486629, 0.933760787013923, 0.34432718187202205, 0.63596173557573, 0.624364378916488, 0.7417789548241253, 0.7300918276682445, 0.6968315453320488, 0.7840233885688647, 0.8958841271622066, 0.5417426694559925, 0.7102579146160282, 0.6004345411549624, 0.515920701757342, 0.7587882454650442, 0.5029588531082266, 0.6887596776945688, 0.8642849605932809, 0.6469572639767995, 0.8103639651534781, 0.939764354405301, 0.694136577696587, 0.6593725303534554, 0.9646797005081557, 0.7979900311745153, 0.792123904710467, 0.8869579700149332, 0.7351250317969437, 0.5332560471205093, 0.9406873315653421, 0.39362685027924615, 0.9466602521798594, 0.8394325033041952, 0.6633442657978572, 0.8126408700417265, 0.7332457619716184, 0.08024070404520958, 0.8667774471450977, 0.6466814331404849, 0.912366876100516, 0.656670904734599, 0.8701678467707724, 0.8875925797813499, 0.9658725076002231, 0.7668332861852056, 0.8604440887473094, 0.934384507524058, 0.9605946056867319, 0.951253157591183, 0.5749289095213865, 0.6279243005170476, 0.7937202818717513, 0.7665301650725991, 0.700127941221274, 0.8531107444728586, 0.7947045908306632, 0.8870566665876504, 0.5476228787844645, 0.8410401833568673, 0.8736671065238262, 0.6519898659949606, 0.936943112068646, 0.9077719201719568, 0.8071889556778997, 0.8815615400732472, 0.8935313268029127, 0.8782891297971865, 0.5029588531082266, 0.5797201450332624, 0.9416775458320723, 0.5958140198486584, 0.2485157288688957, 0.932021424688801, 0.8531502837407814, 0.6344194678828672, 0.632587077283238, 0.9121448358615357, 0.5776545535910985, 0.9052765174806566, 0.8580390107418799, 0.8998644401112552, 0.6784536879503494, 0.9458342431661766, 0.21387363850783603, 0.9530348339880965, 0.7307391114165022, 0.7187682731289255, 0.6905635603269331, 0.9569274903702625, 0.9287384091375525, 0.3856984054091925, 0.504413920551941, 0.5389739198483336, 0.5921068831639978, 0.10702848140489757, 0.8772993497727819, 0.6361944011057532, 0.8952999713010865, 0.7069578609115064, 0.10632960186243966, 0.6465592619811017, 0.9116333268133815, 0.9210441535829985, 0.9483358221641291, 0.5800224234700003, 0.896951343689222, 0.8958659323404018, 0.8896861436466836, 0.7763142135369961, 0.778627444633172, 0.9274605647284293, 0.9167924025380936, 0.6422094408272838, 0.6363725079258666, 0.8694129796739031, 0.5693182102579236, 0.5315376696882942, 0.6814536952243052, 0.30089534057709466, 0.6689448970920832, 0.6419522618821227, 0.6500641275496193, 0.8221968069187356, 0.9285763346020383, 0.8495153837633861, 0.7135666997345446, 0.8850789772017983, 0.9128367188568884, 0.8709442503982084, 0.44714680104169846, 0.7147831401969469, 0.6814536952243052, 0.5823319261018008, 0.7718122970862826, 0.8925058444773368, 0.9249991097277733, 0.7849066379312727, 0.5120166815330335, 0.7863291630268572, 0.8171821177205619, 0.8878235148823457, 0.9813953955585096, 0.5009899161211654, 0.6787020040856314, 0.2747106808400709, 0.6998114428322438, 0.7191783799678735, 0.7566715075843347, 0.7741630673610131, 0.692871858980435, 0.8706970297938403, 0.9226518689226377, 0.619213859232465, 0.9620625840847012, 0.8161066853745392, 0.7984578805051198, 0.8987836568806694, 0.27900511725120763, 0.747868261422589, 0.8013372150606806, 0.4430395412241901, 0.8082746512504794, 0.9248395818955686, 0.8132668978866627, 0.7926355964369082, 0.7243101498981422, 0.8251498778038484, 0.865753667016409, 0.8784859927081519, 0.9613966942665844, 0.8380103992838959, 0.9376908870460701, 0.8505645904112248, 0.5317253080143199, 0.8756470416862959, 0.8823120896825394, 0.8920529250761863, 0.9565288857220365, 0.92576324319171, 0.8397457208604353, 0.8008835764985612, 0.7620555647282774, 0.6333567796033132, 0.8986985644274655, 0.8289197139212982, 0.38568054861828666, 0.4358764146033148, 0.7013568331933456, 0.5524769805317635, 0.8654015550049637, 0.9625385348003681, 0.4997035751430624, 0.5940434106189647, 0.29640429037896177, 0.9370396801623051, 0.7496358493500708, 0.8521916566704996, 0.7519935213994349, 0.8956127660014477, 0.7563308848917781, 0.5425355780301907, 0.1652985164032473, 0.5777375433929663, 0.5926841497777402, 0.5247451599628447, 0.6215406511606532, 0.646742228322253, 0.5236567091352762, 0.8105889943537302, 0.7614647275399787, 0.7272264480694343, 0.44438282424164377, 0.8051848688934031, 0.253979247575754, 0.8737269176380216, 0.7884186533408385, 0.5226162157005312, 0.7776146375974927, 0.8021344726910251, 0.6794204065079696, 0.8398669626756513, 0.3743394998756179, 0.6593725303534554, 0.41008410759983227, 0.8726624594592295, 0.31336232876890546, 0.6187135046228962, 0.9208146539756937, 0.8948907807194619, 0.9475948217130945, 0.7098971478357265, 0.41970311630379203, 0.5524505095188592, 0.6689295490636696, 0.39534528644804523, 0.6686700461744643, 0.6608417181144597, 0.6289006219381473, 0.8112353209803558, 0.9675531845963172, 0.3468688843876404, 0.8171815196180959, 0.9315945487332388, 0.7612383340144859, 0.43979370974717685, 0.9452166580978265, 0.810349906376065, 0.4979189466877109, 0.9054024939516333, 0.7506263221664519, 0.8595966107872783, 0.9041757536760852, 0.5120166815330335, 0.9246344940597735, 0.622364539475366, 0.7975959936185795, 0.9376528402833735, 0.8270495791839716, 0.7463426393970082, 0.8508295060861325, 0.5277539611022016, 0.7926521549058593, 0.8343380415579561, 0.7973631232158779, 0.5423298306356671, 0.6253812669856891, 0.9342151247863544, 0.9064095870896521, 0.8428584418618921, 0.5680191878381406, 0.8230633503438987, 0.857993972512287, 0.8312116035859974, 0.8886868130574391, 0.5695902702544526, 0.8750573328895943, 0.47134086624147714, 0.6082670858563528, 0.8571520978358925, 0.7006810412396262, 0.6001343818465046, 0.8680196363335714, 0.7833148206731655, 0.835330250744176, 0.6883000602161935, 0.4297997702781997, 0.7132181587745201, 0.941909753873568, 0.9298379484442667, 0.8950633078112005, 0.9652574497835966, 0.8593048115498744, 0.23022113319019433, 0.5548683876071567, 0.8789570823277312, 0.7176343272433334, 0.7135972690872326, 0.900955402304434, 0.89110615578316, 0.8021344726910251, 0.36734125225010755, 0.9233813125795639, 0.9269988231022361, 0.6021478506882372, 0.27064660283581765, 0.7595966254948197, 0.5317253080143199, 0.9626288904553877, 0.518871521713375, 0.4244151934213653, 0.8784852709235653, 0.667697582798242, 0.6791650855490978, 0.8659372985570389, 0.5217980090164113, 0.9757802673562255, 0.20769640873195563, 0.6900575067285889, 0.15051833553221247, 0.8476988333501053, 0.12043274000614122, 0.6546311715671466, 0.412102187638673, 0.6339696776630096, 0.6925917751558638, 0.8074446941396305, 0.8417042066658985, 0.4702054036006336, 0.8107456318417504, 0.934253622333564, 0.9671353887875448, 0.3776875782453083, 0.5133306968464912, 0.8279918435672958, 0.7295730380004212, 0.8398957027397556, 0.7470826509089123, 0.7722124156410631, 0.3944809481034696, 0.5801047158883857, 0.7134138458261836, 0.8265590446981121, 0.5836238058504062, 0.7538957359152121, 0.9708936701567454, 0.41507295289487073, 0.9039211350062085, 0.5109703825452502, 0.8880660412534, 0.6332514250278477, 0.703270618172154, 0.863031725372896, 0.9601349291832292, 0.5845797646527732, 0.8357575010967041, 0.9584406458449958, 0.8733333206292072, 0.4740801794177068, 0.5787650908025566, 0.38525623454815555, 0.5715075300165849, 0.951253157591183, 0.831291834366621, 0.6482062646591596, 0.5447536045265621, 0.8456825404777587, 0.5358725178581014, 0.8893400405584444, 0.5955893395860203, 0.9408369636189147, 0.7580589814818564, 0.4244151934213653, 0.7636885291754726, 0.9532052815091139, 0.6686700461744643, 0.39683939049776734, 0.8309978518015588, 0.06774730328187532, 0.8934061610794648, 0.9459413258233057, 0.8507977517004935, 0.9694554821790147, 0.8640493534313302, 0.8409166048571896, 0.9059760843724536, 0.7278052027863667, 0.8952246802917138, 0.39534528644804523, 0.9558702864115934, 0.9178754126151818, 0.7504628435478695, 0.7568870052952757, 0.32046258648166903, 0.9712495894387816, 0.7125870341029702, 0.8286889773580812, 0.929575727770858, 0.8422483936479932, 0.60065365322741, 0.5775074082600717, 0.7505976846167132, 0.5317253080143199, 0.9590110623565244, 0.9651712957082627, 0.7333643603414158, 0.7757825668725274, 0.8928390517037824, 0.2578168736401774, 0.5355488836719776, 0.8408692583280314, 0.7849780542174357, 0.8711681462620556, 0.8447990405440073, 0.9571933326515756, 0.9307123551507692, 0.6421242495412457, 0.9239207054420927, 0.9336219461922934, 0.4244151934213653, 0.5673643045526261, 0.8301442064454496, 0.528471943574542, 0.8835542071774324, 0.8820947700128993, 0.4561713647735051, 0.584381944856391, 0.9493936477483658, 0.7816316980556022, 0.7770145472448273, 0.8495153837633861, 0.8318035560268552, 0.5220388622338656, 0.8589980209217414, 0.21216021099657945, 0.8782303617207965, 0.901850575196968, 0.7683760396387002, 0.9559989503713009, 0.938411491366706, 0.7225398931917507, 0.5918361617892179, 0.8596378534897678, 0.8816239240572568, 0.9296844522785247, 0.8299758417251202, 0.7538846798551382, 0.931253582726863, 0.6902425303942638, 0.9299571155275668, 0.35461708236434614, 0.6119587629530028, 0.8979450471026776, 0.8782891297971865, 0.6144930729026484, 0.5601837238662909, 0.4230258756549153, 0.5115702372514986, 0.6133200318312215, 0.8287048127179734, 0.42887934024879554, 0.5543929044930882, 0.5414149972460248, 0.7453725251924848, 0.6522898344923613, 0.6445138145159856, 0.9212190995841192, 0.6991293681294938, 0.9188224881967051, 0.9444881948020799, 0.8399825546316605, 0.6440269003431431, 0.45260210695563535, 0.6678228102737954, 0.8535669746933884, 0.23469888428232324, 0.7581156815660375, 0.8329520097124233, 0.5886389680190937, 0.4250130050586104, 0.290761161529129, 0.9065968169685268, 0.39757013049667705, 0.9584529405260903, 0.24804178200132845, 0.8400605958344816, 0.9562762484868867, 0.5923100188758571, 0.5355488836719776, 0.6866862751474886, 0.753715093249364, 0.9302702282582556, 0.8405005145861136, 0.7758456574858743, 0.8270123797965384, 0.9270997487744173, 0.8779999285967196, 0.6350604679157676, 0.9057987369792326, 0.9732730617650076, 0.28007269673131574, 0.5393237551960537, 0.9509318156255189, 0.8055358405733448, 0.8512314640165554, 0.6752183046546253, 0.9766791413071304, 0.26893819095773785, 0.5105552073939665, 0.7964242570425004, 0.9159462749375985, 0.46312559485344046, 0.7889853219989779, 0.5331772070153998, 0.6250130361556073, 0.5340700079782073, 0.8981158701031157, 0.8424802355113449], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [3.36, 3.22, 3.03, 3.07, 2.93, 2.93, 3.23, 3.29, 3.29, 3.03, 3.12, 3.16, 3.14, 3.12, 3.14, 3.27, 3.14, 3.16, 3.32, 2.97, 3.27, 2.96, 3.15, 3.12, 3.15, 3.07, 3.44, 3.18, 3.3, 3.46, 2.98, 3.3, 3.38, 3.2, 3.42, 3.32, 3.25, 3.42, 3.29, 3.26, 3.01, 3.1, 3.0, 3.22, 3.08, 3.28, 3.27, 3.15, 3.14, 2.79, 3.19, 3.17, 2.99, 3.37, 3.39, 3.28, 3.48, 2.92, 3.04, 3.08, 2.92, 3.31, 3.23, 3.48, 3.03, 3.53, 3.03, 3.51, 3.45, 3.37, 3.38, 3.21, 3.47, 3.32, 3.19, 3.18, 3.04, 3.07, 3.14, 3.39, 3.21, 3.15, 3.33, 3.2, 3.05, 2.97, 3.47, 3.22, 3.14, 3.35, 3.23, 3.08, 3.28, 3.18, 3.4, 3.5, 3.14, 3.17, 3.37, 3.24, 3.15, 3.08, 3.27, 3.34, 3.19, 3.35, 3.16, 3.36, 3.15, 3.18, 3.3, 2.94, 3.4, 3.29, 2.8, 3.13, 3.1, 3.17, 3.18, 3.13, 3.37, 3.34, 3.36, 3.39, 3.29, 3.38, 3.26, 2.93, 3.29, 3.08, 3.16, 3.25, 3.18, 2.96, 3.45, 3.16, 3.23, 3.29, 3.13, 2.94, 3.12, 3.05, 2.83, 3.16, 3.46, 3.22, 3.05, 3.34, 3.23, 3.23, 3.19, 3.47, 3.42, 3.17, 3.1, 3.16, 3.21, 3.2, 3.08, 2.99, 3.31, 3.18, 2.97, 3.04, 3.38, 3.13, 3.19, 3.37, 3.22, 3.06, 3.38, 3.23, 3.15, 3.15, 3.27, 3.26, 3.0, 3.07, 3.04, 3.24, 3.2, 3.42, 3.16, 3.21, 3.24, 2.95, 3.1, 3.07, 3.09, 3.23, 3.53, 3.28, 3.1, 3.18, 3.08, 3.33, 3.06, 3.14, 3.35, 3.09, 3.48, 3.25, 3.13, 3.2, 2.95, 3.25, 3.19, 3.2, 3.28, 3.06, 3.17, 3.13, 3.33, 3.0, 3.19, 3.03, 2.89, 3.08, 2.92, 3.19, 3.14, 3.22, 3.38, 3.09, 3.08, 3.38, 3.48, 3.54, 3.24, 3.24, 3.14, 3.12, 3.3, 3.09, 3.19, 3.04, 3.25, 3.45, 3.18, 3.42, 3.56, 3.67, 3.05, 3.4, 3.21, 3.16, 3.54, 3.32, 3.1, 3.19, 3.31, 3.13, 2.85, 3.16, 3.0, 3.26, 3.4, 3.32, 3.01, 3.24, 3.66, 3.37, 3.58, 3.58, 2.89, 3.31, 3.21, 3.3, 3.4, 3.1, 3.15, 3.51, 2.99, 3.16, 3.1, 3.08, 3.06, 3.55, 3.35, 2.98, 3.48, 3.34, 3.11, 3.56, 3.16, 3.32, 2.95, 3.24, 3.15, 3.15, 3.16, 3.33, 3.2, 3.51, 3.26, 3.26, 3.16, 3.1, 3.14, 3.37, 3.34, 3.05, 3.19, 3.02, 3.05, 2.97, 3.17, 3.13, 3.27, 3.12, 3.34, 3.49, 3.14, 3.32, 3.22, 3.03, 3.1, 3.19, 3.77, 3.36, 3.18, 3.34, 3.3, 3.27, 3.44, 3.07, 3.14, 3.13, 3.18, 3.47, 3.39, 3.31, 3.16, 3.44, 3.28, 3.17, 3.24, 3.17, 3.3, 3.24, 3.13, 3.23, 3.34, 3.29, 3.16, 2.99, 3.39, 3.36, 3.3, 3.14, 3.18, 3.19], \"xaxis\": \"x2\", \"y\": [0.8142007211296887, 0.07257977436397642, 0.7430932382113554, 0.8214862427787604, 0.5698848321031316, 0.6048119589659149, 0.6466669219762841, 0.14510080060429495, 0.2250304680670007, 0.28492472637839966, 0.42061632734231896, 0.8281252124183194, 0.49622399336621903, 0.3482895521074759, 0.4678833354511545, 0.5708968386647719, 0.37048677721847617, 0.553632248395139, 0.8702137350251022, 0.42186952587750404, 0.8696774950675754, 0.5410576963494411, 0.3971326977900686, 0.3275001196198921, 0.9448289227093116, 0.7109941475090589, 0.41925580570138304, 0.3675472469853882, 0.6721911818800557, 0.5562207270314473, 0.5262426608517637, 0.3244609607385458, 0.15056615442564347, 0.15676979724311627, 0.6037730696030339, 0.6342511279653397, 0.021947035536558718, 0.32429164429335744, 0.5678746850743716, 0.3571680467137555, 0.7755534309390314, 0.3240287891037917, 0.699424662214302, 0.5151532452376618, 0.7564675819717819, 0.38343591026479057, 0.19811005648518398, 0.3168419703358067, 0.5315947262677626, 0.9269044449273315, 0.8260225289794664, 0.451791899378283, 0.830516920403184, 0.47128602930186, 0.19027823806377472, 0.5181346713949518, 0.29552777318700446, 0.45414400334446664, 0.39329840463575844, 0.42327932510626076, 0.45838907164509224, 0.2233864252642039, 0.3628419195926303, 0.6709353200988277, 0.46058046365566996, 0.25551237833043455, 0.7234147543269824, 0.1481282262733752, 0.314935793994079, 0.20050531530561894, 0.37453315488553635, 0.701015529968035, 0.6343341418527783, 0.1739320900588749, 0.734996253073231, 0.8172229478314255, 0.3598554146739685, 0.7121055211356295, 0.2620604909731644, 0.3421138035730516, 0.6951268813066005, 0.35208221297891723, 0.452099210446082, 0.18907620085798427, 0.5444201651108793, 0.6484058972837882, 0.3258186925596978, 0.5963383680780668, 0.6202666247822538, 0.576738593946626, 0.5054992484109841, 0.2972245631729925, 0.6844333356791464, 0.42629475072919953, 0.4405153833121037, 0.01207867704715336, 0.7609288944606691, 0.23951123982998349, 0.09310514674080905, 0.5084920166510624, 0.33067609257366243, 0.36481899584296196, 0.5708968386647719, 0.3194802059637459, 0.14207297841267416, 0.5776897120055972, 0.2026163425795633, 0.37909000048748537, 0.38206764842015895, 0.41324683104354176, 0.17826143731067332, 0.42339414872454434, 0.39148091864802853, 0.3511350413575442, 0.8053393751847749, 0.5937005322868365, 0.6849942580153355, 0.38930033076762494, 0.5168500865319015, 0.5699073288866824, 0.5376087249833421, 0.8185832461647057, 0.25950508036415604, 0.20394483716883388, 0.3303044530853749, 0.2528102968078532, 0.8477719856767125, 0.5217124250004609, 0.3303044530853749, 0.5382885532339231, 0.9625763866028243, 0.6536174904341296, 0.42629475072919953, 0.6458781618432388, 0.46574001023909845, 0.37268733756108086, 0.8180085473348132, 0.35493594975273335, 0.2423640089427935, 0.3636330633241046, 0.6421622311157122, 0.5444201651108793, 0.7396308412796291, 0.9036153464846048, 0.21101569987323432, 0.6004024464464508, 0.7595861882737439, 0.486549602332862, 0.2379839758891197, 0.5147825233229498, 0.2065932277190248, 0.4342628292980428, 0.5940848250235929, 0.4857193175270624, 0.5332610244722983, 0.5402196969638672, 0.8578846895389459, 0.5290225674595067, 0.6074669506688956, 0.1847839155105034, 0.3581391437324269, 0.4304380754474639, 0.8410120374942113, 0.5810086483513661, 0.19026233744636453, 0.7223494520380469, 0.8589928738613049, 0.8374625942163022, 0.781203852328267, 0.73983195178881, 0.41156537259256004, 0.7482873396984137, 0.44431713201158524, 0.7113673874393347, 0.49869552495399233, 0.7627102864663872, 0.37193390769028617, 0.37187810520956766, 0.3773291605703562, 0.8719651627687759, 0.6218762459828849, 0.3781393537983126, 0.553632248395139, 0.47624084907999176, 0.774399353278846, 0.5840424935194366, 0.5601025471409736, 0.6186690618327106, 0.620611700356168, 0.5755798886129706, 0.15047650536569443, 0.5530049338021776, 0.6597439619439023, 0.8300222117931148, 0.3490158529243493, 0.4410646109528086, 0.5067909967309752, 0.5851482063434866, 0.7149827463187939, 0.4849259975950144, 0.2094210588097294, 0.33399024531412796, 0.4083143545243069, 0.7497022835596558, 0.7817929239213606, 0.7637421953724776, 0.3825655414920891, 0.6611482494098961, 0.19022241257108333, 0.44972084577511023, 0.5476732603321269, 0.4831274653996314, 0.5077048340566679, 0.7289504589448288, 0.4379810490617926, 0.8017221455714771, 0.6434673631716396, 0.5059779734745421, 0.6065367192264559, 0.650368705032214, 0.34567471266024347, 0.39561589000187136, 0.3427787545601037, 0.4676404271158623, 0.5332283386400669, 0.4519108142444285, 0.40662831629925006, 0.42305576187259053, 0.22032895172816622, 0.5278715769330472, 0.43679486629948455, 0.743933429392776, 0.5269515041023835, 0.5008800654866953, 0.214168174561682, 0.44879088851457377, 0.683485355417811, 0.807753104897186, 0.42629475072919953, 0.8502951424821861, 0.17421175568219957, 0.25491371883486935, 0.7595861882737439, 0.6571724132942184, 0.7813188949129265, 0.5626906653340306, 0.8674288259883418, 0.6600514650598344, 0.4827749661719035, 0.5456147119159479, 0.39827550056677263, 0.27323823737433794, 0.695896529362927, 0.5048820477254727, 0.5422349097465021, 0.5610936746718964, 0.6571724132942184, 0.3088751107498249, 0.45428761266464013, 0.6604471727860799, 0.43371621376298963, 0.6171893197168647, 0.8100511550343341, 0.8100511550343341, 0.605832578461134, 0.5526475584669951, 0.4275055171336787, 0.8734720021260204, 0.8508295378350301, 0.5807723706867254, 0.8272749548927728, 0.2670652478909882, 0.7020144194675465, 0.4615566916191992, 0.7055847950248242, 0.43389869234556755, 0.6071692164257629, 0.3496825637352313, 0.23676491619791426, 0.7057755976874825, 0.15539001443149586, 0.6187538615870153, 0.8735882828904331, 0.30049486749739024, 0.23191705420611952, 0.8913917397916864, 0.4977157214618499, 0.16961113509580228, 0.8485494795219795, 0.4760032757956232, 0.5053843099270294, 0.2676015269871764, 0.3627664421236291, 0.15146266807038725, 0.7898179638281774, 0.6145296307645981, 0.3790380236797623, 0.3003532640340299, 0.6086112016774773, 0.39906793889171593, 0.8185832461647057, 0.6715802865662828, 0.8260225289794664, 0.6056902064850618, 0.400132762133902, 0.39471961640683584, 0.6449859309106076, 0.5637152910565628, 0.39949420960438964, 0.5490401551410112, 0.4398875418860128, 0.30916577334906253, 0.7093303227687476, 0.4562508424819209, 0.40444044759428516, 0.5773483646962835, 0.447777692034652, 0.4961542215384683, 0.32474312180562226, 0.21192693199409943, 0.9056903490933487, 0.5013816399998683, 0.758876109553896, 0.6364928148646596, 0.2952804752502578, 0.4748951900520853, 0.43679486629948455, 0.5479962315186364, 0.4728142838839701, 0.6343341418527783, 0.12248807650217919, 0.5052525886146573, 0.8281252124183194, 0.8930081609652758, 0.36283726088930296, 0.8098196742550625, 0.656477404357746, 0.193885049884708, 0.5269515041023835, 0.49858469647139786, 0.32780472036158087, 0.24927512797396847, 0.6148718578314069, 0.10691527318901187, 0.136775438340409, 0.8489192718114075, 0.2600203086082801, 0.8142007211296887, 0.5269515041023835, 0.7966615933629455, 0.5633234794197017, 0.767479452333631], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"pH\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"pH\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}, \"pH_bad\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (ref)\", \"type\": \"scatter\", \"x\": [3.16, 3.03, 3.03, 3.45, 3.15, 3.46, 3.34, 3.36, 3.16, 3.18, 3.3, 3.25, 3.02, 3.24, 3.32, 3.24, 3.3, 3.5, 3.06, 3.53, 3.19, 3.26, 3.54, 2.94, 3.6, 3.26, 3.27, 3.29, 3.1, 3.3, 3.48, 3.01, 3.66, 3.19, 3.0, 3.15, 2.96, 3.2, 3.04, 3.08, 3.02, 3.39, 3.27, 3.15, 3.19, 3.3, 3.32, 3.4, 3.23, 3.32, 3.09, 3.08, 3.2, 3.19, 3.11, 2.96, 3.17, 3.28, 3.14, 3.26, 3.19, 3.58, 3.43, 3.34, 3.13, 3.26, 3.22, 3.27, 3.61, 2.79, 3.09, 3.27, 3.05, 3.21, 3.1, 3.16, 3.08, 3.28, 3.2, 3.11, 2.98, 3.05, 3.12, 3.39, 3.11, 3.24, 3.14, 3.26, 3.17, 3.01, 3.27, 3.31, 3.15, 3.05, 2.96, 3.18, 2.98, 3.14, 3.15, 3.27, 3.01, 3.52, 3.35, 3.22, 3.29, 3.08, 3.16, 3.37, 3.27, 3.22, 3.37, 3.37, 3.41, 3.34, 3.49, 3.11, 3.16, 3.32, 3.06, 3.15, 3.09, 3.41, 3.22, 3.11, 3.1, 3.05, 3.29, 3.1, 3.23, 3.16, 2.89, 3.43, 3.1, 3.22, 3.11, 3.17, 3.13, 3.26, 3.09, 3.25, 3.07, 3.18, 3.28, 3.14, 3.14, 3.02, 3.44, 3.11, 3.14, 3.32, 3.13, 3.45, 2.92, 3.46, 2.99, 3.25, 3.2, 3.25, 3.46, 2.97, 3.15, 3.14, 3.05, 3.16, 3.34, 3.18, 3.18, 3.26, 2.96, 3.08, 3.12, 3.22, 3.37, 2.99, 3.22, 3.24, 3.33, 3.2, 3.46, 3.01, 3.24, 3.54, 3.28, 3.13, 3.1, 3.21, 3.12, 3.01, 3.28, 3.12, 3.02, 3.01, 3.08, 3.14, 3.16, 3.34, 3.08, 3.16, 3.06, 3.07, 3.3, 3.16, 3.16, 3.15, 3.63, 3.09, 3.22, 3.21, 3.72, 3.09, 3.14, 3.5, 3.04, 3.06, 3.18, 3.24, 3.11, 2.97, 2.94, 2.87, 2.88, 3.5, 3.06, 2.96, 3.1, 3.11, 3.34, 3.02, 3.22, 3.49, 3.33, 2.94, 3.5, 3.1, 3.16, 2.92, 3.39, 3.39, 3.15, 3.02, 3.24, 3.11, 3.03, 3.12, 3.5, 3.15, 3.22, 3.18, 3.24, 3.24, 3.41, 3.14, 3.66, 3.39, 3.1, 3.09, 3.17, 3.41, 3.14, 3.16, 3.05, 3.14, 3.39, 3.0, 3.16, 3.21, 3.77, 3.74, 3.42, 3.29, 3.44, 3.08, 3.21, 3.11, 3.19, 3.31, 3.44, 3.0, 3.13, 3.29, 3.34, 3.59, 3.17, 3.29, 3.15, 3.16, 2.9, 3.28, 3.08, 3.25, 3.06, 3.12, 3.24, 3.51, 3.3, 2.94, 3.13, 3.29, 3.08, 3.23, 3.68, 3.28, 3.36, 3.25, 3.31, 3.08, 3.12, 3.34, 3.04, 3.03, 3.06, 3.22, 3.59, 3.18, 3.38, 3.09, 3.1, 3.31, 3.22, 3.66, 3.32, 3.19, 3.36, 3.28, 3.15, 3.14, 2.98, 3.19, 3.29, 3.22, 2.93, 3.38, 3.35, 3.2, 3.25, 3.09, 3.13, 3.05, 3.1, 3.23, 3.3, 3.21, 3.24, 3.18, 3.24, 3.48, 3.53, 3.14, 3.38, 3.08, 3.04, 3.34, 3.06, 3.63, 3.09], \"xaxis\": \"x\", \"y\": [0.7197707895473677, 0.05448058807241418, 0.5021256787650443, 0.4710854375480472, 0.7156076129280222, 0.7966690429773311, 0.7265425252145667, 0.16771266951545494, 0.610944103187451, 0.6324527530146118, 0.42180662537268765, 0.2598044700255929, 0.5503032830239416, 0.5632112185661304, 0.6840604465833231, 0.6224375641140001, 0.8071781895370533, 0.9515482366939344, 0.3994071349416132, 0.9677746238863042, 0.572587586261062, 0.7602674855798478, 0.861098734498427, 0.1386074727873, 0.6703360831713621, 0.8064003460928679, 0.3172728283240366, 0.8039094494444462, 0.9186426431335688, 0.6026275969807151, 0.8609701260317718, 0.3485833566260712, 0.3005246278528939, 0.2859113263741919, 0.4978204971029292, 0.5125675444128744, 0.4268860326359044, 0.11791793574572085, 0.440027850275134, 0.4938434408506086, 0.4933189622152446, 0.166194347192407, 0.30200278364192557, 0.6822425768461728, 0.8693180940701344, 0.24112389044610405, 0.43189370387303117, 0.284455178085937, 0.23793737479647703, 0.5535561322468214, 0.7900402576908969, 0.47373775892899717, 0.6055733033081183, 0.7462675017011632, 0.32245623572553406, 0.7612367841042231, 0.36308410170653527, 0.6103993963703384, 0.3965676277125745, 0.2230008284200371, 0.8480025164595866, 0.43585875500482685, 0.24095331994381775, 0.4030652094068704, 0.8951637220162157, 0.2782175630406618, 0.7337660836226194, 0.8352762102164887, 0.6223987562306759, 0.2928263700360406, 0.6563137004068428, 0.16155652477357085, 0.6364666355122575, 0.2186811050870735, 0.27206300237801306, 0.4358901152617537, 0.6136035252376228, 0.07900866299327158, 0.8522855318359817, 0.11906253414448076, 0.3466831105240652, 0.11265227152414181, 0.6302693732121377, 0.7168097665217413, 0.4796298258249143, 0.4476252306691143, 0.3612478268219491, 0.611861930499026, 0.15121036728507153, 0.5363393546692182, 0.16155652477357085, 0.441733396330222, 0.7834276811132227, 0.6364666355122575, 0.44873286860252337, 0.4948960601400133, 0.4172084246960842, 0.5055831714989107, 0.5269082808529498, 0.3737404408311804, 0.4491757516278906, 0.5266720849021, 0.2882430633103308, 0.6066213483726142, 0.83534933450756, 0.2509605867776752, 0.230738949997912, 0.25680675940048736, 0.6858999083789018, 0.27626495444752697, 0.35158671089680515, 0.311480105980391, 0.5950329577300569, 0.4196263877039489, 0.3672198477254309, 0.5488429300958864, 0.6273126624389191, 0.0990306898864649, 0.935036100419004, 0.5556828679884147, 0.6003916802566726, 0.1337843055401957, 0.6898191889393818, 0.46604488826349566, 0.6668872608045229, 0.5998672378660981, 0.14712454771937833, 0.8558065212045691, 0.883276495704891, 0.5544329747085402, 0.38398791005853006, 0.8623310715459079, 0.4482795971615686, 0.4767821080964978, 0.6451659669426603, 0.5099786295438409, 0.11454219273407718, 0.5691587732433696, 0.2398813672346335, 0.8592796956842923, 0.38133093816728936, 0.4754945767078651, 0.2673740541283356, 0.43092180164799054, 0.5981491184574936, 0.7512253043619477, 0.20474988026063612, 0.12337786436138054, 0.6965484670033051, 0.4642254518352117, 0.29034758521725457, 0.7912282271603185, 0.1364389858241727, 0.5326323768611896, 0.3938848007926149, 0.886984727126295, 0.5955398539691413, 0.3667393936023857, 0.35129461810907203, 0.578130474122496, 0.1952086434691429, 0.6982941690158907, 0.6159300986783536, 0.6650580695700093, 0.8007006003287879, 0.13750802167619447, 0.47121416359091395, 0.5691587732433696, 0.5295784007050042, 0.4938434408506086, 0.4240508430342457, 0.1531205555636086, 0.7965770364050346, 0.4829168465516456, 0.6333246955344933, 0.38682769986244625, 0.5589353890471914, 0.30965836575156913, 0.6133571507425741, 0.5363393546692182, 0.5474540697204298, 0.9680074395956593, 0.29703705077451537, 0.7566858385458134, 0.451244026180727, 0.6224939697452743, 0.9340693900855184, 0.1254375450851024, 0.770680513376406, 0.7273231109206828, 0.410671569380914, 0.19928392436820586, 0.44743622108127745, 0.4991477681643879, 0.5443787589855091, 0.826082779912576, 0.5642536294664222, 0.6762559922350657, 0.39283078357423706, 0.3074847569358159, 0.40732461839200396, 0.5614584986504241, 0.5614584986504241, 0.575628870274347, 0.1938881144566701, 0.6480440770440566, 0.23946299348505806, 0.6110142157087575, 0.32489046344192996, 0.127020290619695, 0.28948900574123104, 0.27970970921902805, 0.5179212029104148, 0.579807192000203, 0.5695619245525361, 0.7471497674522103, 0.6761943115269239, 0.6052803835931642, 0.9048996801452402, 0.632953623191418, 0.7849920634816455, 0.12946409768986655, 0.3899257470968539, 0.37735505673750047, 0.27206300237801306, 0.6356505945299911, 0.9000798247851504, 0.5852448485124296, 0.3537739535016634, 0.8589709040748648, 0.5105041430354158, 0.4760479563081992, 0.3915586115462193, 0.4344526143297297, 0.04825794875232026, 0.25106204840173363, 0.5352062615150248, 0.2084678736174792, 0.5588772074146924, 0.42656597432725707, 0.3395528272139201, 0.5154796814541086, 0.30312695461308037, 0.4684625037801391, 0.13140485141127656, 0.37575572516499556, 0.7087902803012941, 0.22740617784346517, 0.7932370230268412, 0.6977827466507267, 0.8687065743771458, 0.3532210556477622, 0.3005246278528939, 0.8817461779308045, 0.5897758288136841, 0.5117334773877459, 0.2267712913026929, 0.7462523759498982, 0.5055831714989107, 0.6276122794572256, 0.34766968675436505, 0.563322001169588, 0.4035281086421867, 0.44827723495654004, 0.7588644006503809, 0.17560197311170134, 0.2736156405730563, 0.5646478519097824, 0.12788772013874206, 0.8127608550985441, 0.35130933230290007, 0.8842329534318195, 0.5671758377024384, 0.508518787579709, 0.4735654621913231, 0.6614347321502836, 0.7032589073748752, 0.418601168771625, 0.40262233345395115, 0.38045938978299354, 0.6221728234115828, 0.6769388667590319, 0.825791915264051, 0.8036522945246104, 0.5350776523934957, 0.5038683203672731, 0.4187790963850706, 0.3942708224564714, 0.36585282612655, 0.42973128126448334, 0.1395024853671747, 0.36909778672938764, 0.5126700875045708, 0.31128511290513083, 0.5841805470690385, 0.42932394036482613, 0.5168725346003686, 0.9331527243268325, 0.5090935678835011, 0.848083892739094, 0.7288594688776423, 0.23463814542978878, 0.9073343486287574, 0.5445649372592127, 0.8030108083542629, 0.30698149193503155, 0.47724620771884374, 0.49565431290071005, 0.29179072192325783, 0.53941953634433, 0.32642767658125227, 0.5714063949384225, 0.6769388667590319, 0.48314991346809855, 0.3838692085325581, 0.7654355578102645, 0.6807995217458978, 0.7803105409218809, 0.4971816769068883, 0.5662837862370104, 0.32557907866588853, 0.4059739580227363, 0.8621668957327787, 0.4863555612469991, 0.44913520001249685, 0.5044088987161788, 0.018560580499064172, 0.17397747102053363, 0.8203404366189, 0.531551035274026, 0.3951880410340851, 0.6710839680909022, 0.7545393605546251, 0.25029771644034415, 0.31651464458218903, 0.7900402576908969, 0.7649542174153934, 0.6282404390050247, 0.5124469561170844, 0.7501741577575001, 0.3717170374651112, 0.5479204837841629, 0.1799627586960565, 0.8716748635647116, 0.4700369344869263, 0.7044722268129955, 0.7597806244765397, 0.4570971226262448, 0.3688130253756654, 0.5854022956087224, 0.6067015953642416, 0.6092966434658947, 0.5713009051869427, 0.15316343939585397, 0.31191498773739224], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [3.17, 3.36, 3.32, 3.59, 3.37, 3.4, 3.22, 3.36, 3.14, 3.1, 3.06, 3.16, 3.52, 3.06, 3.37, 3.14, 3.09, 2.95, 3.34, 3.18, 3.12, 3.21, 3.23, 3.25, 2.94, 3.64, 3.31, 3.14, 3.28, 3.33, 3.38, 3.3, 3.1, 3.38, 3.13, 3.11, 3.12, 3.4, 3.26, 3.25, 3.14, 3.46, 3.41, 3.12, 3.11, 3.4, 3.3, 3.22, 3.2, 3.0, 3.15, 3.17, 3.32, 3.19, 3.15, 3.03, 3.22, 3.26, 3.05, 3.51, 3.25, 3.46, 3.31, 3.32, 3.17, 3.31, 3.26, 3.12, 3.13, 3.19, 3.17, 3.04, 3.15, 3.01, 3.48, 3.29, 3.35, 3.25, 3.29, 3.0, 3.65, 3.27, 3.02, 3.2, 3.18, 3.07, 3.2, 3.37, 3.18, 3.08, 3.32, 3.19, 3.16, 3.54, 3.6, 3.39, 3.17, 3.26, 2.87, 3.33, 3.47, 3.04, 3.18, 3.4, 2.96, 3.5, 3.27, 3.24, 3.1, 3.3, 3.0, 3.15, 3.05, 3.4, 3.35, 3.15, 3.02, 3.1, 3.16, 3.4, 3.0, 2.99, 3.04, 3.06, 3.26, 3.36, 3.33, 3.04, 3.35, 3.61, 3.19, 3.21, 3.36, 3.27, 3.38, 3.27, 3.22, 3.54, 3.23, 3.12, 2.89, 3.52, 3.08, 3.2, 3.08, 3.22, 3.1, 3.25, 3.39, 3.2, 2.96, 2.92, 3.3, 3.17, 3.04, 3.18, 3.4, 3.11, 2.98, 3.2, 3.35, 3.26, 3.15, 3.49, 3.3, 3.09, 3.12, 3.36, 3.06, 3.36, 3.14, 3.34, 3.38, 3.03, 3.32, 3.26, 3.33, 3.08, 3.23, 3.58, 3.48, 3.13, 3.32, 3.39, 3.18, 3.34, 3.15, 3.22, 3.31, 3.54, 3.37, 3.71, 3.53, 3.26, 3.55, 3.0, 3.13, 3.1, 3.16, 2.9, 3.32, 3.36, 3.41, 3.38, 3.45, 3.23, 3.22, 3.14, 2.94, 3.4, 3.07, 3.24, 3.28, 3.23, 3.12, 3.36, 2.93, 3.21, 3.03, 3.1, 3.39, 3.28, 3.08, 3.02, 3.38, 3.2, 3.07, 3.34, 3.22, 3.6, 3.22, 3.18, 3.51, 3.03, 3.36, 3.66, 3.42, 3.14, 3.27, 3.21, 3.13, 2.98, 2.95, 3.26, 3.22, 3.23, 3.42, 3.2, 3.15, 3.25, 3.21, 3.14, 3.17, 3.24, 3.12, 3.15, 3.15, 2.93, 3.32, 3.14, 3.16, 3.38, 3.18, 3.01, 3.31, 3.28, 3.23, 3.28, 3.38, 3.56, 3.22, 3.49, 3.04, 2.91, 3.55, 3.39, 3.11, 3.27, 3.71, 3.17, 3.26, 3.06, 3.57, 3.26, 3.15, 3.28, 3.13, 3.14, 3.24, 2.94, 3.34, 3.12, 3.26, 3.23, 3.09, 3.19, 3.47, 3.21, 3.7, 3.37, 3.38, 3.38, 3.54, 3.15, 3.14, 3.4, 3.05, 3.19, 2.97, 3.09, 3.42, 3.03, 3.62, 3.37, 3.16, 3.16, 3.12, 3.29, 3.03, 3.2, 3.4, 2.95, 3.24, 3.53, 3.3, 3.47, 2.86, 3.15, 3.52, 3.22, 3.36, 2.98, 3.12, 3.25, 3.15, 2.93, 2.88, 3.27, 3.48, 3.22, 3.16, 3.01, 3.23, 3.34, 3.21, 3.13, 2.92, 3.32, 3.29, 3.04, 3.2, 3.24, 3.11, 3.02, 3.16, 3.46, 3.3, 3.18, 3.28, 3.14, 3.2, 3.14, 3.18, 3.3, 3.53, 2.87, 3.32, 3.28, 3.33, 3.1, 3.33, 3.23, 3.26, 2.89, 3.11, 3.06, 3.35, 3.33, 3.29, 3.38, 3.16, 3.12, 3.17, 3.44, 3.09, 3.0, 3.18, 3.22, 3.44, 3.14, 3.26, 3.1, 3.12, 3.27, 3.25, 3.39, 3.3, 3.06, 3.45, 3.22, 3.42, 3.52, 3.46, 3.34, 2.94, 3.23, 3.21, 3.12, 3.27, 3.11, 3.35, 3.22, 3.44, 3.38, 3.24, 3.16, 3.29, 3.16, 3.12, 3.06, 3.2, 3.08, 3.2, 2.96, 3.16, 3.42, 3.09, 3.11, 3.12, 3.29, 3.14, 3.27, 3.09, 3.33, 3.45, 3.48, 3.45, 3.51, 3.25, 3.12, 3.17, 3.13, 3.14, 3.12, 2.96, 3.23, 3.08, 3.24, 3.15, 3.33, 3.12, 3.29, 3.37, 3.27, 3.11, 3.22, 3.28, 3.4, 3.34, 3.12, 3.17, 3.45, 3.32, 3.05, 3.38, 3.32, 3.2, 3.27, 3.21, 3.32, 3.31, 3.19, 3.28, 3.12, 3.18, 3.12, 3.26, 3.25, 3.11, 3.15, 3.57, 2.98, 3.08, 3.49, 3.18, 3.06, 3.07, 3.04, 3.18, 3.21, 3.16, 3.21, 3.03, 3.28, 3.29, 3.11, 3.39, 3.24, 3.36, 3.54, 3.26, 2.98, 3.34, 3.09, 2.96, 3.11, 3.35, 3.13, 3.24, 3.23, 3.09, 2.99, 3.31, 3.09, 3.11, 2.94, 3.1, 3.26, 3.29, 3.26, 2.96, 3.08, 3.01, 3.41, 3.37, 3.2, 3.0, 3.09, 3.18, 3.18, 3.38, 3.41, 3.35, 3.11, 3.49, 3.36, 3.22, 3.02, 3.1, 3.17, 3.29, 3.22, 2.96, 3.18, 3.17, 3.08, 3.22, 3.36, 3.38, 3.43, 3.04, 3.12, 3.42, 3.06, 3.03, 3.35, 3.32, 3.34, 3.08, 3.05, 3.11, 3.08, 3.36, 3.44, 3.68, 2.93, 3.05, 3.13, 3.36, 3.1, 3.36, 3.2, 3.17, 3.08, 3.22, 3.3, 2.94, 3.21, 3.03, 3.05, 2.97, 3.36, 3.49, 3.54, 3.26, 3.34, 3.2, 3.25, 3.61, 3.05, 2.93, 3.12, 3.19, 3.22, 3.37, 3.36, 3.25, 3.42, 3.25, 3.02, 3.23, 3.32, 3.28, 3.2, 3.15, 3.14, 3.13, 3.16, 3.42, 2.94, 2.99, 3.21, 3.14, 3.37, 3.22, 3.39, 3.54, 2.95, 3.23, 2.87, 3.52, 3.02, 3.27, 3.21, 3.07, 3.23, 3.3, 3.14, 3.15, 3.08, 3.15, 3.09, 3.1, 3.2, 3.34, 3.05, 3.22, 3.15, 3.04, 3.4, 3.28, 3.28, 3.44, 3.24, 3.27], \"xaxis\": \"x\", \"y\": [0.18439386755371057, 0.5750868907731637, 0.1132172353536568, 0.19850047615697952, 0.6950004168934912, 0.41826441672946313, 0.040828937665112974, 0.2145583871630251, 0.09143093017991866, 0.10013996234885614, 0.3658834999306372, 0.587897812361327, 0.23563705889496211, 0.5289998061994394, 0.5981734696485812, 0.5956194363709464, 0.11295199838815062, 0.6349332021584286, 0.09356782907078887, 0.0672754654033908, 0.3541579814831264, 0.11781588709523827, 0.3295981493457443, 0.23443288181779365, 0.13830133810679424, 0.5122546205578999, 0.03626449638205209, 0.32057959349203036, 0.3955164844050859, 0.21320459763992916, 0.08620177311633537, 0.4132497936565127, 0.19514157099220286, 0.028148892894647393, 0.03728071159582558, 0.20213762816504022, 0.39088790332760825, 0.10566618212719892, 0.11466232649727714, 0.09544364959788487, 0.07351553674018241, 0.3657542344632553, 0.05859665738698361, 0.43634835962676355, 0.4827032077898804, 0.516310366273556, 0.6480037931050455, 0.21122004543372697, 0.030344760075157406, 0.22750344576024595, 0.18673438423788624, 0.5460909738859347, 0.0666291073587214, 0.320234954276134, 0.515425573770442, 0.5751179393061847, 0.3262180383913996, 0.12192585741802231, 0.6165939755266235, 0.09365914315081003, 0.44259853952477324, 0.31958523161407537, 0.09228899111547839, 0.22815273642701062, 0.5282447951108347, 0.7777719169155834, 0.13834506443323813, 0.29425092810710396, 0.5300870647699181, 0.031947521718024174, 0.1108646816717751, 0.053339747820140615, 0.14466174791529418, 0.25697560969337485, 0.3383868137798065, 0.30803904997837983, 0.03434255320493995, 0.08689109251212201, 0.46044782253877736, 0.0973761441498977, 0.3449058470623745, 0.024212367984770777, 0.11665042079727428, 0.3333970234137619, 0.1495417879159372, 0.0679784404121434, 0.2360052425084116, 0.39147703437781534, 0.04428683932015287, 0.5381556738404795, 0.4357341587922019, 0.11843845992675284, 0.28107964630818494, 0.06989794698232743, 0.2658605825653322, 0.22408104406272966, 0.15519213452661884, 0.09873339188795927, 0.10739713799337769, 0.4712507279726723, 0.31257930793611366, 0.6259141532505736, 0.1651629894813923, 0.13024327386797574, 0.08242409751896962, 0.55355901104019, 0.11256152515999429, 0.22124325125588817, 0.05838775174278421, 0.6734770756819889, 0.06919042490492266, 0.5773286546676725, 0.5693181878572973, 0.12726917141891614, 0.27983888222674136, 0.15690954109554833, 0.18593824584442387, 0.05432525584274117, 0.33273366741371935, 0.12435295831370408, 0.48112847828662497, 0.2959384652215836, 0.5042039768350125, 0.3749869638443927, 0.7258627386781167, 0.4806866421912115, 0.6234335830956541, 0.4191951896523489, 0.20821728825178332, 0.6343085651912675, 0.27674577061671146, 0.02140654255666985, 0.42849246998341506, 0.1817444030106703, 0.4551538855951942, 0.05087080041524106, 0.516641204200833, 0.6810720245435042, 0.08151744899857294, 0.4475169494323581, 0.03995706953508171, 0.2181819033834006, 0.20372897255157485, 0.24305701296248816, 0.5381556738404795, 0.2358485729609252, 0.051323642447754336, 0.1913631294907303, 0.32154631204965056, 0.31229802093755377, 0.3917329141436472, 0.39462053822053156, 0.3680669306910641, 0.5017894292511481, 0.32120711190509066, 0.0768019282386515, 0.1168769044932052, 0.31545143431826594, 0.12007957373947853, 0.08354361700756141, 0.2180731800932174, 0.7653011157176768, 0.05076221583963347, 0.11739077279846111, 0.3639458403519926, 0.4815918747301601, 0.35998732468747585, 0.457353694020342, 0.5520498791697908, 0.22168281241722143, 0.2132287846887433, 0.4763394582576197, 0.3040153802820409, 0.20749766415549342, 0.3316810644107503, 0.8126297477835096, 0.5749367295182395, 0.27274039590582944, 0.2685808245693546, 0.5172108675362206, 0.33506587713796443, 0.09616672688355288, 0.041108213935392324, 0.10548050716105373, 0.5016695616404938, 0.20022874051447226, 0.14220640128276774, 0.23772630779738468, 0.19606080251004787, 0.2603188495268066, 0.18846597668723208, 0.19827111133563302, 0.261548791893628, 0.4140325207077993, 0.8134796325151183, 0.12265695643958285, 0.6311167068993262, 0.13481820177301163, 0.0932384579037443, 0.14050160114126486, 0.2562249115981724, 0.08547750670655718, 0.08643201081848362, 0.19981675431015722, 0.31390222338706264, 0.06221739913672386, 0.06996303880871468, 0.30029370289300306, 0.4306817897420764, 0.6595343859760441, 0.2839408857911616, 0.20468539219890003, 0.1130196126722065, 0.2360017176902124, 0.13187147729288817, 0.42313120297864704, 0.06964897436687001, 0.1624399718171824, 0.17200815643270417, 0.07333105637055992, 0.2440137653363641, 0.4900110333069776, 0.3085554157386313, 0.03480496731142946, 0.12148031785507996, 0.15002971926037112, 0.5314247042003052, 0.2758453007685677, 0.2151852748992088, 0.2658605825653322, 0.29911225563077193, 0.6594110243744711, 0.49869782335001445, 0.16788254706683048, 0.11816213334465087, 0.08230909248122409, 0.13653212507346946, 0.25639170942272826, 0.06562233405876228, 0.23311900627036541, 0.3756616197417655, 0.46674395287949066, 0.3092684534350997, 0.8337319641197457, 0.8331457111467163, 0.2591056156836542, 0.4778687671024334, 0.2542440524586721, 0.5361036306539362, 0.07073721340803463, 0.4731688813159418, 0.5755848065786346, 0.356689463387698, 0.14225616860197343, 0.21837916002376445, 0.14466174791529418, 0.29899643271856946, 0.4757427727983842, 0.08126799884203029, 0.1296501822378736, 0.3286954654423938, 0.08620177311633537, 0.13855855420831553, 0.05543377339452393, 0.11917834098009661, 0.2613621884509647, 0.11269900223777074, 0.08429051026621415, 0.3393961441870107, 0.07031960314855146, 0.11356777592095357, 0.4853279864284006, 0.1279289285514792, 0.0584572339054259, 0.08612988585012649, 0.3472440907423937, 0.1248029959061332, 0.07502335399434323, 0.19827111133563302, 0.3424151534036639, 0.3065175956815872, 0.13808860398564737, 0.058092197534895806, 0.04082786106581715, 0.1602592849246841, 0.09156161599234125, 0.5036030690663805, 0.2640411824475748, 0.6468038092930676, 0.07201805208597656, 0.22470230804277058, 0.1334773721572423, 0.04847889440667685, 0.2685808245693546, 0.10911308148570098, 0.6764508967260475, 0.6280060594576413, 0.36761958218269275, 0.16019930342079847, 0.17605308658107655, 0.14078981831089854, 0.2384997092801764, 0.13117402490907393, 0.12818959986091483, 0.4161925244315118, 0.12435295831370408, 0.09814942480303201, 0.05480698563416486, 0.3746187330143109, 0.41092354232892336, 0.507894749900129, 0.5137929421583434, 0.08293523366016065, 0.2964416548030494, 0.15236141109070434, 0.4396941021426354, 0.41893931094950754, 0.09113953260801844, 0.10967473999240707, 0.055732078845942, 0.05640314085190745, 0.06176263301115803, 0.06427139521062619, 0.20386133178572885, 0.21597661143113533, 0.7486409492386699, 0.2610715902497083, 0.09465277491899493, 0.5556171757583562, 0.137718889647652, 0.1978940751503777, 0.08472590699531857, 0.356262641598029, 0.14596950445002987, 0.13865818299932142, 0.3088915816821678, 0.11516321289421916, 0.16121169033174265, 0.40573483691789825, 0.34308606282264, 0.36300204724896845, 0.17193414756867276, 0.035926383178341514, 0.34536882843285344, 0.4400180463892147, 0.5165194668234709, 0.23319834124303085, 0.9637923675569924, 0.2635599134550337, 0.6259141532505736, 0.12324962258280003, 0.1256037712827487, 0.1248029959061332, 0.11665042079727428, 0.29081136443782263, 0.12993062945549005, 0.20959981847797426, 0.12385816607190492, 0.16931651488884025, 0.2468284110987674, 0.6181879252747016, 0.3509541008179864, 0.08619429866610873, 0.09537770951135394, 0.8204393830764495, 0.2493836920976743, 0.10367142046182065, 0.11516383353466464, 0.07169627826225977, 0.5400384130096556, 0.2709141565803237, 0.16809050322974173, 0.3421981324687273, 0.812724325423183, 0.1326589750154965, 0.054670132935181304, 0.055346153509382656, 0.8039442695404772, 0.3276168958360183, 0.6561718697940482, 0.6214102617950452, 0.3046829516703813, 0.7853649284745584, 0.7303620793003476, 0.6719087507962026, 0.16000678121984613, 0.579612101366232, 0.6347749924714103, 0.41894393066564606, 0.06936532322770372, 0.28322834609079706, 0.343263893078516, 0.4450860003239352, 0.3090838478611311, 0.408095736797927, 0.11529682880263803, 0.13359771811640497, 0.2417229185475579, 0.10092265889692065, 0.8181934133883563, 0.3777834313813965, 0.8273808576462511, 0.18439353202429143, 0.5148786056082297, 0.11287077888712382, 0.16015059460472458, 0.29672938182784603, 0.36944561074938853, 0.2505850522824452, 0.8467591712977676, 0.3840267097226593, 0.261779448872241, 0.1645479955558209, 0.14631295673285594, 0.4248523287309329, 0.09222807982804315, 0.2121484308544801, 0.33273366741371935, 0.5470626312455473, 0.8294144697045585, 0.25206662215500397, 0.15998368749433245, 0.548322128117227, 0.3917329141436472, 0.15981565308588508, 0.23631147082452741, 0.21082920466209698, 0.1871387197916503, 0.24774693401855818, 0.1913242313933492, 0.16437448769677154, 0.07582203648947516, 0.032541140295091364, 0.06311143057978008, 0.5009235508757715, 0.12343879567504301, 0.445735807756371, 0.40322837553658053, 0.09397553936597514, 0.1598391281143201, 0.26702494168661406, 0.19782301216908982, 0.06831823449824892, 0.5451167746582685, 0.20142160156100697, 0.25747632252511843, 0.4257317671215596, 0.5062318064185062, 0.10278357133077332, 0.10857266292312517, 0.06223864817381186, 0.11377411494697365, 0.14082424186384768, 0.2589321903149734, 0.31776639873426016, 0.07983414941561229, 0.30174211068680845, 0.42532907678292176, 0.23734670470511587, 0.2862296469110084, 0.24790288035387664, 0.5526146374040077, 0.20425399436950087, 0.5166825128498294, 0.12415322942140417, 0.5310696157212036, 0.3866387435262121, 0.14313186082947948, 0.31648660326859934, 0.026792916001305622, 0.7856428374245099, 0.42383310375799566, 0.5944566396871084, 0.6256605001243821, 0.08813642250468567, 0.03544811528140901, 0.06935406654889886, 0.15751976448865512, 0.22608551288474832, 0.3127311228465576, 0.1409438166611655, 0.3285615524533705, 0.3591330499592894, 0.47964497307801546, 0.7143146030302826, 0.14223944449319303, 0.06929054967731618, 0.32120711190509066, 0.16913647442041335, 0.707286257884667, 0.3230684446475647, 0.7616845263358343, 0.4104900542879092, 0.10053249234255524, 0.1106599594415556, 0.1543174595222413, 0.46003879185641183, 0.3811350878514418, 0.07185070571861518, 0.23882593985771994, 0.5344976262521839, 0.11031385635331636, 0.09610989844306939, 0.4955559099445003, 0.07845190603324759, 0.30697262074812925, 0.12767551958037127, 0.4375661224395835, 0.07737023387634634, 0.15307682457740834, 0.05694427046787409, 0.09028836937410878, 0.4011292297732457, 0.6186146927451245, 0.11561676905211238, 0.0993047499370594, 0.08102401279833105, 0.8100206966555492, 0.10768932514586738, 0.15386113005635593, 0.4026560765644126, 0.045535707525545144, 0.08229583319403, 0.08227601457953415, 0.8241544781987433, 0.0759900855540333, 0.5147505197509459, 0.11103147778198663, 0.42144961755966015, 0.24880465403270857, 0.3112403223054312, 0.3282460941643247, 0.28312386083977936, 0.2865521931047814, 0.16537364909659502, 0.4284132019637321, 0.34116073112729894, 0.051142721309942685, 0.10794707492381372, 0.1108646816717751, 0.29201805921023904, 0.07365131996157204, 0.36851051207096197, 0.2556143611338999, 0.07392456180697715, 0.045535707525545144, 0.15025986810093994, 0.4395989822566938, 0.19636656988846957, 0.21018464628148859, 0.15085686628779282, 0.3429118439192298, 0.16104008564300487, 0.2055862423584408, 0.18673310211333727, 0.5528531989583015, 0.20219789553586287, 0.5807830339134155, 0.6112381610839525, 0.07515362639458067, 0.5722084734915175, 0.3654892991508686, 0.1991057466826236, 0.4912569401667811, 0.05850610073101081, 0.3077884117234785, 0.17038242498240874, 0.14066607718466684, 0.10248584652416493, 0.4022873718442217, 0.07205214632436985, 0.35142291824287475, 0.10941760034103376, 0.06679271580157364, 0.05675388891699207, 0.058987921856350156, 0.3660303223369904, 0.28790374422385034, 0.4158290962648631, 0.40710291595796666, 0.09934102670994882, 0.06362846635195196, 0.30921476208988685, 0.23242198019285765, 0.055541210656895434, 0.5297663836663529, 0.10744632778983743, 0.18410212910939194, 0.17721960751489196, 0.1962664672709783, 0.1617648996714035, 0.10584426414108294, 0.5203501665477333, 0.07365131996157204, 0.31578819840495265, 0.35364190165315845, 0.1707951928721818, 0.41655733121321636, 0.15801546378512366, 0.7568436608419439, 0.22368578646300386, 0.0609449253562836, 0.2225096762928218, 0.18587673368692093, 0.05559101133196209, 0.569598540521716, 0.08073228430722412, 0.15724041301590164, 0.12879141548479, 0.4306817897420764, 0.17998791969802397, 0.41280880088413996, 0.5723062335690389, 0.6457404130724687, 0.10420061808672998, 0.12564769853034463, 0.21795029564941848, 0.4720930498870375, 0.11304202998506685, 0.545112257205237, 0.14852188644910969, 0.17217029085021085, 0.336250902618187, 0.48671482860553816, 0.5093433434984792, 0.35847801144896685, 0.3008706318705062, 0.18494609259573758, 0.4199330463236065, 0.04162287990776414, 0.2633909944023186, 0.4252182303976608, 0.4684623303117058, 0.1925553058603695, 0.09610989844306939, 0.09129843496680234, 0.3302708189676917, 0.4199330463236065, 0.11927294568859859, 0.4864154015695107, 0.06472081497616611, 0.6387929002666255, 0.37932906694235924, 0.093713747684541, 0.20627971812824875], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (curr)\", \"type\": \"scatter\", \"x\": [3.36, 3.22, 3.03, 3.07, 2.93, 2.93, 3.23, 3.29, 3.29, 3.03, 3.12, 3.16, 3.14, 3.12, 3.14, 3.27, 3.14, 3.16, 3.32, 2.97, 3.27, 2.96, 3.15, 3.12, 3.15, 3.07, 3.44, 3.18, 3.3, 3.46, 2.98, 3.3, 3.38, 3.2, 3.42, 3.32, 3.25, 3.42, 3.29, 3.26, 3.01, 3.1, 3.0, 3.22, 3.08, 3.28, 3.27, 3.15, 3.14, 2.79, 3.19, 3.17, 2.99, 3.37, 3.39, 3.28, 3.48, 2.92, 3.04, 3.08, 2.92, 3.31, 3.23, 3.48, 3.03, 3.53, 3.03, 3.51, 3.45, 3.37, 3.38, 3.21, 3.47, 3.32, 3.19, 3.18, 3.04, 3.07, 3.14, 3.39, 3.21, 3.15, 3.33, 3.2, 3.05, 2.97, 3.47, 3.22, 3.14, 3.35, 3.23, 3.08, 3.28, 3.18, 3.4, 3.5, 3.14, 3.17, 3.37, 3.24, 3.15, 3.08, 3.27, 3.34, 3.19, 3.35, 3.16, 3.36, 3.15, 3.18, 3.3, 2.94, 3.4, 3.29, 2.8, 3.13, 3.1, 3.17, 3.18, 3.13, 3.37, 3.34, 3.36, 3.39, 3.29, 3.38, 3.26, 2.93, 3.29, 3.08, 3.16, 3.25, 3.18, 2.96, 3.45, 3.16, 3.23, 3.29, 3.13, 2.94, 3.12, 3.05, 2.83, 3.16, 3.46, 3.22, 3.05, 3.34, 3.23, 3.23, 3.19, 3.47, 3.42, 3.17, 3.1, 3.16, 3.21, 3.2, 3.08, 2.99, 3.31, 3.18, 2.97, 3.04, 3.38, 3.13, 3.19, 3.37, 3.22, 3.06, 3.38, 3.23, 3.15, 3.15, 3.27, 3.26, 3.0, 3.07, 3.04, 3.24, 3.2, 3.42, 3.16, 3.21, 3.24, 2.95, 3.1, 3.07, 3.09, 3.23, 3.53, 3.28, 3.1, 3.18, 3.08, 3.33, 3.06, 3.14, 3.35, 3.09, 3.48, 3.25, 3.13, 3.2, 2.95, 3.25, 3.19, 3.2, 3.28, 3.06, 3.17, 3.13, 3.33, 3.0, 3.19, 3.03, 2.89, 3.08, 2.92, 3.19, 3.14, 3.22, 3.38, 3.09, 3.08, 3.38, 3.48, 3.54, 3.24, 3.24, 3.14, 3.12, 3.3, 3.09, 3.19, 3.04, 3.25, 3.45, 3.18, 3.42, 3.56, 3.67, 3.05, 3.4, 3.21, 3.16, 3.54, 3.32, 3.1, 3.19, 3.31, 3.13, 2.85, 3.16, 3.0, 3.26, 3.4, 3.32, 3.01, 3.24, 3.66, 3.37, 3.58, 3.58, 2.89, 3.31, 3.21, 3.3, 3.4, 3.1, 3.15, 3.51, 2.99, 3.16, 3.1, 3.08, 3.06, 3.55, 3.35, 2.98, 3.48, 3.34, 3.11, 3.56, 3.16, 3.32, 2.95, 3.24, 3.15, 3.15, 3.16, 3.33, 3.2, 3.51, 3.26, 3.26, 3.16, 3.1, 3.14, 3.37, 3.34, 3.05, 3.19, 3.02, 3.05, 2.97, 3.17, 3.13, 3.27, 3.12, 3.34, 3.49, 3.14, 3.32, 3.22, 3.03, 3.1, 3.19, 3.77, 3.36, 3.18, 3.34, 3.3, 3.27, 3.44, 3.07, 3.14, 3.13, 3.18, 3.47, 3.39, 3.31, 3.16, 3.44, 3.28, 3.17, 3.24, 3.17, 3.3, 3.24, 3.13, 3.23, 3.34, 3.29, 3.16, 2.99, 3.39, 3.36, 3.3, 3.14, 3.18, 3.19], \"xaxis\": \"x2\", \"y\": [0.18579927887031134, 0.9274202256360236, 0.2569067617886446, 0.17851375722123963, 0.43011516789686843, 0.3951880410340851, 0.35333307802371594, 0.854899199395705, 0.7749695319329993, 0.7150752736216004, 0.5793836726576811, 0.17187478758168062, 0.503776006633781, 0.6517104478925241, 0.5321166645488455, 0.4291031613352281, 0.6295132227815239, 0.446367751604861, 0.12978626497489776, 0.578130474122496, 0.1303225049324246, 0.4589423036505589, 0.6028673022099313, 0.6724998803801079, 0.055171077290688375, 0.28900585249094113, 0.5807441942986169, 0.6324527530146118, 0.32780881811994433, 0.4437792729685527, 0.47375733914823626, 0.6755390392614542, 0.8494338455743565, 0.8432302027568838, 0.3962269303969661, 0.36574887203466033, 0.9780529644634413, 0.6757083557066426, 0.43212531492562845, 0.6428319532862445, 0.2244465690609686, 0.6759712108962084, 0.300575337785698, 0.4848467547623382, 0.24353241802821812, 0.6165640897352094, 0.801889943514816, 0.6831580296641933, 0.4684052737322374, 0.07309555507266852, 0.17397747102053363, 0.548208100621717, 0.16948307959681597, 0.5287139706981401, 0.8097217619362252, 0.48186532860504816, 0.7044722268129955, 0.5458559966555334, 0.6067015953642416, 0.5767206748937392, 0.5416109283549078, 0.7766135747357961, 0.6371580804073698, 0.3290646799011723, 0.53941953634433, 0.7444876216695655, 0.27658524567301757, 0.8518717737266248, 0.685064206005921, 0.7994946846943811, 0.6254668451144636, 0.29898447003196504, 0.36566585814722175, 0.8260679099411251, 0.265003746926769, 0.18277705216857454, 0.6401445853260315, 0.2878944788643705, 0.7379395090268356, 0.6578861964269485, 0.3048731186933995, 0.6479177870210828, 0.5479007895539181, 0.8109237991420157, 0.4555798348891207, 0.35159410271621183, 0.6741813074403022, 0.40366163192193316, 0.3797333752177462, 0.42326140605337403, 0.49450075158901585, 0.7027754368270075, 0.31556666432085356, 0.5737052492708005, 0.5594846166878963, 0.9879213229528466, 0.23907110553933086, 0.7604887601700165, 0.906894853259191, 0.49150798334893764, 0.6693239074263375, 0.635181004157038, 0.4291031613352281, 0.6805197940362542, 0.8579270215873258, 0.42231028799440284, 0.7973836574204367, 0.6209099995125147, 0.617932351579841, 0.5867531689564582, 0.8217385626893267, 0.5766058512754557, 0.6085190813519714, 0.6488649586424557, 0.19466062481522506, 0.4062994677131635, 0.31500574198466447, 0.6106996692323751, 0.48314991346809855, 0.4300926711133176, 0.4623912750166579, 0.18141675383529432, 0.7404949196358439, 0.7960551628311661, 0.6696955469146251, 0.7471897031921468, 0.15222801432328747, 0.4782875749995391, 0.6696955469146251, 0.4617114467660769, 0.0374236133971757, 0.34638250956587036, 0.5737052492708005, 0.35412183815676124, 0.5342599897609015, 0.6273126624389191, 0.1819914526651868, 0.6450640502472667, 0.7576359910572065, 0.6363669366758954, 0.35783776888428775, 0.4555798348891207, 0.2603691587203709, 0.09638465351539516, 0.7889843001267657, 0.3995975535535492, 0.2404138117262561, 0.5134503976671381, 0.7620160241108803, 0.4852174766770502, 0.7934067722809752, 0.5657371707019572, 0.40591517497640706, 0.5142806824729376, 0.4667389755277017, 0.4597803030361328, 0.14211531046105408, 0.4709774325404933, 0.39253304933110444, 0.8152160844894966, 0.6418608562675732, 0.5695619245525361, 0.15898796250578873, 0.4189913516486339, 0.8097376625536354, 0.2776505479619531, 0.14100712613869515, 0.1625374057836978, 0.21879614767173305, 0.26016804821119, 0.5884346274074399, 0.25171266030158634, 0.5556828679884147, 0.2886326125606653, 0.5013044750460076, 0.23728971353361283, 0.6280660923097139, 0.6281218947904323, 0.6226708394296439, 0.1280348372312241, 0.37812375401711507, 0.6218606462016874, 0.446367751604861, 0.5237591509200082, 0.22560064672115399, 0.4159575064805634, 0.43989745285902637, 0.38133093816728936, 0.379388299643832, 0.4244201113870294, 0.8495234946343055, 0.44699506619782237, 0.3402560380560977, 0.16997778820688525, 0.6509841470756508, 0.5589353890471914, 0.49320900326902484, 0.41485179365651337, 0.2850172536812061, 0.5150740024049856, 0.7905789411902706, 0.6660097546858721, 0.5916856454756931, 0.25029771644034415, 0.21820707607863943, 0.23625780462752244, 0.6174344585079109, 0.33885175059010386, 0.8097775874289167, 0.5502791542248897, 0.45232673966787307, 0.5168725346003686, 0.4922951659433321, 0.2710495410551712, 0.5620189509382074, 0.19827785442852286, 0.35653263682836045, 0.4940220265254579, 0.3934632807735441, 0.349631294967786, 0.6543252873397565, 0.6043841099981286, 0.6572212454398962, 0.5323595728841377, 0.4667716613599331, 0.5480891857555714, 0.5933716837007499, 0.5769442381274095, 0.7796710482718338, 0.4721284230669528, 0.5632051337005155, 0.25606657060722404, 0.47304849589761655, 0.4991199345133047, 0.785831825438318, 0.5512091114854263, 0.31651464458218903, 0.192246895102814, 0.5737052492708005, 0.14970485751781393, 0.8257882443178004, 0.7450862811651306, 0.2404138117262561, 0.3428275867057816, 0.2186811050870735, 0.43730933466596944, 0.1325711740116582, 0.33994853494016564, 0.5172250338280965, 0.4543852880840521, 0.6017244994332274, 0.7267617626256621, 0.304103470637073, 0.49511795227452726, 0.4577650902534979, 0.4389063253281036, 0.3428275867057816, 0.6911248892501751, 0.5457123873353599, 0.3395528272139201, 0.5662837862370104, 0.38281068028313525, 0.1899488449656659, 0.1899488449656659, 0.39416742153886597, 0.4473524415330049, 0.5724944828663213, 0.12652799787397961, 0.14917046216496987, 0.4192276293132746, 0.1727250451072272, 0.7329347521090118, 0.2979855805324535, 0.5384433083808008, 0.2944152049751758, 0.5661013076544325, 0.39283078357423706, 0.6503174362647687, 0.7632350838020857, 0.29422440231251745, 0.8446099855685041, 0.3812461384129847, 0.1264117171095669, 0.6995051325026098, 0.7680829457938805, 0.1086082602083136, 0.50228427853815, 0.8303888649041977, 0.15145052047802054, 0.5239967242043768, 0.49461569007297057, 0.7323984730128237, 0.6372335578763709, 0.8485373319296128, 0.21018203617182263, 0.3854703692354019, 0.6209619763202376, 0.6996467359659702, 0.3913887983225227, 0.600932061108284, 0.18141675383529432, 0.32841971343371723, 0.17397747102053363, 0.3943097935149382, 0.5998672378660981, 0.6052803835931642, 0.35501406908939237, 0.4362847089434372, 0.6005057903956104, 0.45095984485898877, 0.5601124581139871, 0.6908342266509375, 0.29066967723125237, 0.5437491575180791, 0.5955595524057149, 0.4226516353037165, 0.552222307965348, 0.5038457784615318, 0.6752568781943777, 0.7880730680059006, 0.09430965090665133, 0.4986183600001317, 0.24112389044610405, 0.3635071851353404, 0.7047195247497422, 0.5251048099479148, 0.5632051337005155, 0.4520037684813636, 0.5271857161160298, 0.36566585814722175, 0.8775119234978208, 0.49474741138534273, 0.17187478758168062, 0.1069918390347242, 0.6371627391106971, 0.19018032574493748, 0.34352259564225396, 0.806114950115292, 0.47304849589761655, 0.5014153035286022, 0.6721952796384192, 0.7507248720260316, 0.38512814216859315, 0.8930847268109882, 0.863224561659591, 0.15108072818859253, 0.7399796913917198, 0.18579927887031134, 0.47304849589761655, 0.2033384066370545, 0.43667652058029827, 0.23252054766636898], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [3.03, 3.09, 3.09, 3.17, 3.21, 3.19, 3.19, 3.06, 2.96, 3.38, 3.28, 3.13, 3.16, 3.18, 3.46, 3.14, 3.32, 3.06, 3.41, 3.01, 3.14, 3.1, 3.13, 3.32, 3.14, 3.07, 2.97, 3.3, 3.08, 3.36, 2.96, 3.3, 3.37, 3.23, 2.96, 3.09, 3.21, 2.86, 3.23, 3.46, 2.99, 3.13, 3.14, 3.06, 3.21, 3.46, 3.16, 3.59, 2.93, 3.35, 3.29, 3.29, 3.16, 2.96, 3.32, 3.28, 2.87, 3.68, 3.41, 2.9, 3.41, 3.04, 3.2, 2.99, 3.08, 3.32, 3.4, 3.39, 3.3, 3.29, 3.07, 3.26, 3.27, 3.38, 3.25, 3.16, 3.19, 3.13, 3.29, 3.27, 3.11, 3.11, 3.34, 2.99, 3.08, 3.22, 3.47, 3.06, 3.2, 3.3, 3.26, 3.03, 3.42, 3.0, 3.17, 3.16, 3.07, 3.03, 3.2, 3.56, 3.02, 3.34, 3.4, 2.98, 3.07, 2.93, 3.27, 3.34, 3.36, 3.31, 3.15, 3.15, 3.0, 3.21, 3.27, 3.37, 3.75, 3.22, 3.05, 3.37, 3.41, 3.24, 3.21, 3.26, 3.29, 3.27, 3.43, 3.29, 3.34, 2.91, 3.05, 3.38, 3.14, 3.02, 3.32, 3.01, 3.2, 3.31, 3.27, 3.3, 3.13, 3.61, 3.1, 3.2, 3.16, 3.18, 3.07, 3.38, 2.99, 3.0, 3.19, 3.06, 3.19, 3.06, 3.21, 3.09, 3.26, 3.23, 3.2, 2.98, 3.25, 3.45, 3.04, 3.39, 3.07, 2.95, 3.15, 3.22, 3.34, 3.03, 3.42, 2.94, 3.17, 3.38, 3.38, 3.28, 3.3, 3.03, 3.18, 3.31, 3.38, 3.22, 3.27, 3.3, 3.22, 3.32, 3.41, 3.29, 3.0, 3.41, 2.99, 3.0, 3.27, 3.16, 3.41, 3.19, 2.9, 3.51, 3.07, 3.43, 2.93, 3.45, 3.25, 3.14, 2.96, 3.36, 3.18, 3.17, 3.42, 3.24, 3.24, 3.36, 3.39, 3.25, 3.1, 3.15, 3.2, 3.31, 3.54, 3.13, 3.24, 3.36, 3.42, 3.2, 3.24, 2.96, 3.38, 3.12, 3.33, 3.27, 3.53, 3.26, 3.11, 3.35, 3.22, 3.34, 3.1, 3.27, 2.98, 3.23, 3.3, 3.05, 2.95, 3.81, 3.37, 3.1, 2.94, 3.1, 3.51, 3.19, 3.29, 2.99, 3.28, 3.32, 3.05, 3.2, 3.26, 3.17, 2.97, 3.44, 3.35, 3.29, 3.51, 3.31, 3.23, 3.28, 3.31, 2.91, 3.22, 3.14, 3.2, 3.24, 3.04, 3.18, 3.42, 3.5, 3.45, 3.42, 3.47, 3.52, 3.06, 2.97, 3.28, 3.25, 3.12, 3.23, 3.15, 3.24, 3.34, 3.2, 3.26, 3.19, 3.34, 3.1, 3.03, 3.22, 3.07, 3.33, 3.2, 3.23, 3.03, 3.11, 2.92, 3.38, 3.01, 3.4, 3.36, 3.1, 3.09, 2.88, 3.23, 3.26, 3.56, 3.09, 3.31, 3.76, 3.1, 3.14, 3.14, 3.02, 3.17, 3.19, 3.49, 3.42, 3.32, 3.16, 3.11, 3.28, 3.12, 3.36, 3.35, 2.88, 3.36, 3.11, 2.96, 2.99, 3.29, 3.18, 3.12, 3.33, 3.17, 3.34, 3.52, 3.39, 3.32, 3.11, 3.4, 3.45, 3.42, 3.05, 3.14, 3.22, 3.12, 3.06, 3.08, 3.36, 3.28, 3.17, 3.15, 3.4, 3.03, 3.33, 3.34, 2.94, 3.21, 3.24, 3.22, 3.54, 3.25, 3.1, 3.2, 3.29, 3.21, 3.03, 3.07, 3.35, 3.16, 3.18, 3.3, 3.44, 3.07, 3.13, 3.06, 3.22, 3.19, 3.48, 2.94, 3.33, 3.3, 3.24, 3.24, 3.19, 3.55, 3.18, 3.32, 3.36, 2.97, 3.17, 3.3, 3.3, 3.4, 3.3, 3.2, 2.85, 3.32, 3.42, 3.33, 3.3, 2.96, 3.12, 3.26, 3.49, 3.0, 3.12, 3.12, 3.37, 3.06, 3.17, 3.15, 3.14, 3.31, 3.27, 3.24, 3.4, 2.98, 3.06, 3.15, 3.0, 3.41, 3.16, 3.05, 3.8, 3.09, 3.15, 3.32, 3.43, 3.37, 3.01, 3.34, 3.0, 3.14, 3.57, 3.11, 3.04, 3.06, 2.94, 3.7, 3.18, 3.39, 3.2, 3.14, 3.34, 3.34, 3.16, 2.94, 3.41, 3.2, 3.29, 3.6, 3.28, 3.04, 3.2, 3.3, 3.06, 3.03, 3.52, 3.16, 3.5, 3.25, 3.46, 3.36, 3.05, 3.58, 2.9, 3.15, 3.13, 3.24, 3.23, 3.32, 3.44, 3.19, 3.21, 3.39, 3.41, 3.35, 2.99, 3.07, 3.04, 3.09, 3.42, 3.27, 3.36, 3.31, 3.27, 3.14, 3.3, 3.11, 3.11, 3.29, 3.1, 3.04, 3.06, 3.14, 3.42, 3.32, 3.22, 3.17, 3.34, 3.08, 3.1, 3.34, 3.25, 3.12, 3.06, 3.12, 3.29, 3.38, 3.27, 3.24, 3.52, 3.36, 3.21, 3.59, 3.25, 3.22, 2.99, 3.16, 3.31, 3.21, 3.06, 3.38, 3.16, 3.01, 3.19, 3.15, 3.13, 3.05, 3.0, 3.35, 3.0, 3.38, 3.24, 3.33, 3.38, 3.29, 3.26, 3.23, 3.31, 3.15, 3.14, 3.16, 2.99, 3.42, 3.23, 3.44, 3.23, 3.4, 3.18, 3.46, 3.36, 3.2, 3.04, 2.9, 3.35, 3.26, 3.08, 3.05, 3.12, 3.31, 3.16, 3.72, 3.47, 3.54, 3.29, 2.99, 3.49, 3.47, 3.13, 3.2, 3.19, 3.24, 3.07, 3.03, 3.51, 3.16, 3.22, 3.29, 3.22, 3.11, 3.44, 3.44, 3.3, 3.2, 2.94, 3.22, 3.12, 3.4, 3.3, 3.19, 3.27, 3.15, 3.28, 3.09, 3.04, 3.24, 3.26, 3.15, 3.23, 3.44, 3.34, 3.24, 2.98, 3.19, 3.0, 3.29, 3.1, 3.35, 3.28, 3.0, 3.26, 3.24, 2.98, 3.15, 3.26, 3.27, 3.11, 3.04, 2.93, 3.22, 3.19, 3.38, 3.06, 3.26, 3.25, 3.35, 3.24, 3.19, 3.34, 3.06, 3.13, 3.13, 3.03, 2.97, 3.41, 3.06, 3.11, 3.22, 3.25], \"xaxis\": \"x2\", \"y\": [0.6660328535674787, 0.4955559099445003, 0.11251030999551548, 0.5313240922219649, 0.7616845263358343, 0.42881839881496897, 0.22146723198036844, 0.2709448900825402, 0.04188686298684474, 0.3198999677935893, 0.586632325439729, 0.3332859260788763, 0.0891770245136605, 0.07249138429342028, 0.0813041402249215, 0.2808128557304226, 0.18155424903412543, 0.14020593233116785, 0.20529540916933675, 0.1755850319354616, 0.5722846846512241, 0.4684623303117058, 0.2863708053899042, 0.4489302200945696, 0.3606737334686688, 0.09834172337505831, 0.1439119889738254, 0.10526388551166177, 0.08976738859769384, 0.15927641460572795, 0.07353544332944184, 0.4894096639868448, 0.24735122968283396, 0.41440459167745447, 0.10107859516115147, 0.4809249647595707, 0.043928674649753696, 0.27268427565697984, 0.07203278686513981, 0.35989685204578803, 0.08410225657903847, 0.09640449279894714, 0.2859044620344169, 0.766491644508495, 0.27194216744256416, 0.11891721880979944, 0.6033870782914414, 0.8445823904457724, 0.4148378249676725, 0.09538880480821377, 0.5822786697287807, 0.2006236885231063, 0.30215903380660414, 0.3526626332448971, 0.22921561702294402, 0.3499358724503807, 0.451050436906263, 0.01968005574460141, 0.3849224947932618, 0.608666907839271, 0.30333177217190177, 0.05732515971384944, 0.08299070223644744, 0.155374347961305, 0.4378217303747408, 0.10641916767178827, 0.3207785913922725, 0.3280003244598044, 0.4747408725557203, 0.27229542413121455, 0.5314247042003052, 0.13834506443323813, 0.652508483608137, 0.1775869136191267, 0.4659209431511335, 0.3288332341233703, 0.47224603889779837, 0.2773569186284155, 0.18590272545123854, 0.6719763059805124, 0.04569198037744582, 0.22473444069733528, 0.0776074933333939, 0.1411968215808168, 0.3654892991508686, 0.06069899520469324, 0.21029328672965164, 0.13919371635861133, 0.16321149678759816, 0.6144435769482088, 0.1388055550317996, 0.0827658987104557, 0.0793107693477757, 0.04994940743047871, 0.46220165202879504, 0.08265172102971341, 0.5554564865761329, 0.10902951494304747, 0.26480674198345266, 0.31816712550642645, 0.20184400370343658, 0.23734670470511587, 0.19264674509953905, 0.03558879485690103, 0.5314247042003052, 0.3013473679880785, 0.8043030592862955, 0.07665185966197174, 0.17816243980233548, 0.14637302723887635, 0.43623195291339645, 0.5773286546676725, 0.06996409198491005, 0.0635191394270278, 0.11839391684253864, 0.03368970372860669, 0.16544292122901683, 0.5002106013252752, 0.20783967621931676, 0.4413184352618238, 0.1377753535318076, 0.017128038770129694, 0.09070427960766203, 0.05237321155563324, 0.46044782253877736, 0.09863911308639095, 0.6058955548956951, 0.07377868677997379, 0.33726125667837825, 0.03705661785513226, 0.03856885477325478, 0.01970319875133708, 0.06623921298607705, 0.655672818127978, 0.36403826442427, 0.375635621083512, 0.25822104517587474, 0.26990817233175546, 0.30316845466795117, 0.21597661143113533, 0.10411587283779344, 0.4582573305440075, 0.28974208538397184, 0.3995654588450376, 0.48407929824265805, 0.2412117545349558, 0.49704114689177337, 0.3112403223054312, 0.13571503940671914, 0.35304273602320047, 0.18963603484652192, 0.06023564559469896, 0.305863422303413, 0.34062746964654456, 0.03532029949184434, 0.20200996882548472, 0.207876095289533, 0.11304202998506685, 0.26487496820305634, 0.46674395287949066, 0.05931266843465788, 0.6063731497207538, 0.053339747820140615, 0.16056749669580483, 0.3366557342021428, 0.18735912995827353, 0.2667542380283816, 0.9197592959547904, 0.13322255285490225, 0.3533185668595151, 0.08763312389948397, 0.343329095265401, 0.1298321532292276, 0.11240742021865013, 0.03412749239977686, 0.23316671381479437, 0.13955591125269062, 0.065615492475942, 0.03940539431326806, 0.04874684240881699, 0.42507109047861347, 0.3720756994829524, 0.20627971812824875, 0.23346983492740092, 0.299872058778726, 0.14688925552714138, 0.20529540916933675, 0.11294333341234963, 0.4523771212155355, 0.15895981664313275, 0.12633289347617382, 0.34801013400503944, 0.063056887931354, 0.09222807982804315, 0.19281104432210028, 0.11843845992675284, 0.1064686731970873, 0.12171087020281346, 0.49704114689177337, 0.4202798549667376, 0.058322454167927695, 0.40418598015134155, 0.7514842711311043, 0.067978575311199, 0.1468497162592186, 0.3655805321171328, 0.36741292271676196, 0.08785516413846428, 0.4223454464089015, 0.09472348251934337, 0.14196098925812006, 0.10013555988874479, 0.32154631204965056, 0.05416575683382341, 0.786126361492164, 0.04696516601190348, 0.26926088858349784, 0.28123172687107445, 0.3094364396730669, 0.04307250962973752, 0.07126159086244754, 0.6143015945908075, 0.495586079448059, 0.46102608015166635, 0.40789311683600216, 0.8929715185951024, 0.1227006502272181, 0.3638055988942468, 0.10470002869891348, 0.29304213908849364, 0.8936703981375603, 0.3534407380188983, 0.0883666731866185, 0.07895584641700149, 0.05166417783587085, 0.4199775765299997, 0.10304865631077798, 0.1041340676595982, 0.11031385635331636, 0.22368578646300386, 0.22137255536682798, 0.0725394352715707, 0.08320759746190642, 0.3577905591727162, 0.36362749207413336, 0.13058702032609693, 0.4306817897420764, 0.4684623303117058, 0.3185463047756948, 0.6991046594229053, 0.33105510290791684, 0.35804773811787727, 0.3499358724503807, 0.17780319308126435, 0.07142366539796174, 0.1504846162366139, 0.28643330026545544, 0.11492102279820171, 0.08716328114311156, 0.12905574960179156, 0.5528531989583015, 0.2852168598030531, 0.3185463047756948, 0.41766807389819915, 0.22818770291371737, 0.10749415552266317, 0.07500089027222667, 0.2150933620687273, 0.4879833184669665, 0.21367083697314282, 0.18281788227943807, 0.11217648511765432, 0.01860460444149037, 0.4990100838788346, 0.3212979959143686, 0.7252893191599291, 0.30018855716775616, 0.2808216200321265, 0.24332849241566534, 0.22583693263898685, 0.307128141019565, 0.12930297020615966, 0.07734813107736227, 0.38078614076753503, 0.037937415915298756, 0.18389331462546077, 0.2015421194948802, 0.10121634311933059, 0.7209948827487924, 0.252131738577411, 0.19866278493931944, 0.5569604587758099, 0.19172534874952063, 0.07516041810443141, 0.18673310211333727, 0.20736440356309183, 0.27568985010185776, 0.1748501221961516, 0.134246332983591, 0.12151400729184814, 0.03860330573341564, 0.16198960071610413, 0.062309112953929935, 0.14943540958877521, 0.46827469198568006, 0.12435295831370408, 0.11768791031746062, 0.10794707492381372, 0.04347111427796346, 0.07423675680829, 0.1602542791395647, 0.19911642350143877, 0.2379444352717226, 0.36664322039668684, 0.10130143557253446, 0.17108028607870185, 0.6143194513817134, 0.5641235853966853, 0.29864316680665437, 0.44752301946823647, 0.13459844499503626, 0.037461465199631894, 0.5002964248569376, 0.4059565893810353, 0.7035957096210382, 0.0629603198376949, 0.25036415064992923, 0.14780834332950044, 0.24800647860056513, 0.10438723399855232, 0.24366911510822187, 0.4574644219698093, 0.8347014835967527, 0.42226245660703365, 0.4073158502222598, 0.47525484003715535, 0.37845934883934684, 0.35325777167774697, 0.4763432908647238, 0.18941100564626978, 0.23853527246002126, 0.27277355193056574, 0.5556171757583562, 0.19481513110659687, 0.7460207524242459, 0.12627308236197843, 0.2115813466591615, 0.4773837842994688, 0.22238536240250728, 0.1978655273089749, 0.32057959349203036, 0.1601330373243487, 0.6256605001243821, 0.34062746964654456, 0.5899158924001677, 0.1273375405407705, 0.6866376712310945, 0.3812864953771038, 0.07918534602430627, 0.10510921928053807, 0.052405178286905496, 0.29010285216427345, 0.5802968836962079, 0.4475494904811408, 0.33107045093633036, 0.6046547135519548, 0.33132995382553565, 0.3391582818855403, 0.37109937806185267, 0.18876467901964422, 0.03244681540368277, 0.6531311156123596, 0.18281848038190407, 0.06840545126676123, 0.23876166598551407, 0.5602062902528231, 0.05478334190217349, 0.18965009362393503, 0.502081053312289, 0.0945975060483667, 0.24937367783354814, 0.14040338921272166, 0.09582424632391484, 0.4879833184669665, 0.07536550594022651, 0.37763546052463404, 0.20240400638142053, 0.06234715971662652, 0.1729504208160284, 0.2536573606029918, 0.1491704939138675, 0.47224603889779837, 0.20734784509414073, 0.1656619584420439, 0.20263687678412212, 0.4576701693643329, 0.3746187330143109, 0.06578487521364562, 0.09359041291034786, 0.15714155813810793, 0.43198081216185935, 0.17693664965610134, 0.14200602748771296, 0.16878839641400256, 0.11131318694256087, 0.43040972974554736, 0.12494266711040569, 0.5286591337585229, 0.3917329141436472, 0.14284790216410748, 0.29931895876037384, 0.3998656181534954, 0.13198036366642862, 0.2166851793268345, 0.164669749255824, 0.3116999397838065, 0.5702002297218003, 0.2867818412254799, 0.05809024612643199, 0.0701620515557333, 0.10493669218879953, 0.03474255021640338, 0.14069518845012563, 0.7697788668098057, 0.44513161239284327, 0.12104291767226882, 0.2823656727566666, 0.28640273091276736, 0.09904459769556595, 0.10889384421684001, 0.1978655273089749, 0.6326587477498924, 0.0766186874204361, 0.07300117689776386, 0.3978521493117628, 0.7293533971641823, 0.24040337450518035, 0.46827469198568006, 0.03737110954461231, 0.48112847828662497, 0.5755848065786346, 0.12151472907643468, 0.332302417201758, 0.3208349144509022, 0.13406270144296106, 0.47820199098358873, 0.024219732643774528, 0.7923035912680444, 0.3099424932714111, 0.8494816644677875, 0.15230116664989468, 0.8795672599938588, 0.34536882843285344, 0.587897812361327, 0.3660303223369904, 0.3074082248441362, 0.1925553058603695, 0.1582957933341015, 0.5297945963993664, 0.1892543681582496, 0.06574637766643598, 0.03286461121245521, 0.6223124217546917, 0.48666930315350876, 0.17200815643270417, 0.27042696199957883, 0.16010429726024444, 0.25291734909108765, 0.22778758435893687, 0.6055190518965303, 0.41989528411161425, 0.2865861541738164, 0.17344095530188786, 0.4163761941495938, 0.24610426408478792, 0.029106329843254564, 0.5849270471051293, 0.09607886499379148, 0.4890296174547498, 0.11193395874659995, 0.3667485749721523, 0.29672938182784603, 0.13696827462710404, 0.03986507081677082, 0.41542023534722683, 0.1642424989032959, 0.041559354155004224, 0.1266666793707928, 0.5259198205822933, 0.42123490919744344, 0.6147437654518444, 0.42849246998341506, 0.04874684240881699, 0.16870816563337898, 0.35179373534084035, 0.4552463954734379, 0.1543174595222413, 0.4641274821418986, 0.1106599594415556, 0.40441066041397966, 0.05916303638108533, 0.24194101851814365, 0.5755848065786346, 0.23631147082452741, 0.04679471849088612, 0.33132995382553565, 0.6031606095022326, 0.16900214819844117, 0.9322526967181247, 0.1065938389205352, 0.0540586741766943, 0.14920224829950646, 0.03054451782098533, 0.13595064656866984, 0.15908339514281045, 0.09402391562754642, 0.27219479721363327, 0.10477531970828624, 0.6046547135519548, 0.04412971358840656, 0.0821245873848182, 0.24953715645213048, 0.24311299470472425, 0.679537413518331, 0.02875041056121841, 0.2874129658970298, 0.17131102264191878, 0.07042427222914205, 0.1577516063520068, 0.39934634677258996, 0.42249259173992826, 0.24940231538328683, 0.46827469198568006, 0.040988937643475554, 0.034828704291737345, 0.26663563965858417, 0.22421743312747255, 0.10716094829621758, 0.7421831263598226, 0.4644511163280224, 0.1591307416719686, 0.21502194578256428, 0.12883185373794437, 0.15520095945599266, 0.04280666734842442, 0.06928764484923078, 0.3578757504587543, 0.0760792945579073, 0.06637805380770656, 0.5755848065786346, 0.4326356954473739, 0.16985579355455038, 0.47152805642545803, 0.11644579282256762, 0.11790522998710073, 0.5438286352264949, 0.41561805514360906, 0.050606352251634235, 0.21836830194439782, 0.22298545275517268, 0.1504846162366139, 0.16819644397314482, 0.47796113776613436, 0.14100197907825862, 0.7878397890034206, 0.12176963827920351, 0.09814942480303201, 0.23162396036129984, 0.04400104962869911, 0.061588508633294015, 0.2774601068082493, 0.40816383821078206, 0.14036214651023216, 0.11837607594274324, 0.0703155477214753, 0.17002415827487982, 0.24611532014486182, 0.06874641727313702, 0.30975746960573625, 0.07004288447243323, 0.6453829176356538, 0.3880412370469972, 0.10205495289732236, 0.12171087020281346, 0.38550692709735157, 0.4398162761337091, 0.5769741243450848, 0.48842976274850136, 0.3866799681687785, 0.17129518728202664, 0.5711206597512044, 0.4456070955069118, 0.4585850027539752, 0.25462747480751524, 0.34771016550763867, 0.35548618548401445, 0.07878090041588082, 0.3008706318705062, 0.08117751180329491, 0.055511805197920094, 0.1600174453683395, 0.35597309965685686, 0.5473978930443646, 0.3321771897262046, 0.14643302530661162, 0.7653011157176768, 0.24188431843396252, 0.16704799028757666, 0.41136103198090634, 0.5749869949413896, 0.709238838470871, 0.09340318303147321, 0.602429869503323, 0.04154705947390969, 0.7519582179986716, 0.15993940416551844, 0.04372375151311325, 0.4076899811241429, 0.4644511163280224, 0.3133137248525114, 0.24628490675063597, 0.06972977174174444, 0.15949948541388637, 0.2241543425141257, 0.1729876202034616, 0.07290025122558275, 0.1220000714032804, 0.36493953208423235, 0.09420126302076737, 0.026726938234992392, 0.7199273032686843, 0.4606762448039463, 0.04906818437448113, 0.19446415942665518, 0.14876853598344464, 0.3247816953453747, 0.023320858692869595, 0.7310618090422621, 0.48944479260603346, 0.20357574295749958, 0.0840537250624015, 0.5368744051465595, 0.21101467800102214, 0.46682279298460017, 0.3749869638443927, 0.46592999202179275, 0.10188412989688433, 0.15751976448865512], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"pH\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"pH\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}, \"All_sulphates\": {\"data\": [{\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Reference<br>sulphates=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [0.42, 0.54, 0.53, 0.49, 0.54, 0.54, 0.53, 0.5, 0.38, 0.38, 0.34, 0.54, 0.37, 0.44, 0.67, 0.45, 0.37, 0.68, 0.48, 0.34, 0.56, 0.59, 0.42, 0.4, 0.32, 0.54, 0.4, 0.35, 0.4, 0.39, 0.42, 0.65, 0.39, 0.9, 0.63, 0.48, 0.55, 0.41, 0.53, 0.75, 0.38, 0.44, 0.71, 0.41, 0.49, 0.4, 0.47, 0.45, 1.13, 0.37, 0.37, 0.58, 0.41, 0.47, 0.54, 0.38, 0.48, 0.32, 0.29, 0.58, 0.57, 0.48, 0.41, 0.51, 0.68, 0.59, 0.39, 0.35, 0.46, 0.22, 0.64, 0.26, 0.4, 0.51, 0.69, 0.46, 0.86, 0.33, 0.75, 0.32, 0.72, 0.36, 0.51, 0.46, 0.41, 0.72, 0.48, 0.91, 0.48, 0.67, 0.51, 0.58, 0.67, 0.52, 0.44, 0.4, 0.38, 0.42, 0.48, 0.62, 0.4, 0.46, 0.69, 0.64, 0.36, 0.5, 0.45, 0.42, 0.76, 0.56, 0.45, 0.38, 0.54, 0.76, 0.44, 0.53, 0.54, 0.5, 0.59, 0.85, 0.52, 0.61, 0.41, 0.53, 0.46, 0.54, 0.56, 0.53, 0.56, 0.96, 0.39, 0.83, 0.41, 0.85, 0.5, 0.34, 0.64, 0.6, 0.47, 0.74, 0.44, 0.46, 0.52, 0.59, 0.67, 0.62, 0.78, 0.36, 0.6, 0.35, 0.39, 0.68, 0.54, 0.43, 0.54, 0.53, 0.41, 0.41, 0.41, 0.43, 0.48, 0.58, 0.5, 0.96, 0.69, 0.5, 0.49, 0.33, 0.41, 0.33, 0.79, 0.59, 0.51, 0.39, 0.57, 0.38, 0.56, 0.54, 0.43, 0.69, 0.57, 0.48, 0.8, 0.43, 0.47, 0.5, 0.39, 0.64, 0.52, 0.51, 0.48, 0.63, 0.51, 0.46, 0.53, 0.38, 0.46, 0.55, 0.47, 0.5, 0.49, 0.71, 0.58, 0.89, 0.63, 0.81, 0.94, 0.41, 0.41, 0.46, 0.38, 0.54, 0.48, 0.46, 0.39, 0.6, 0.43, 0.48, 0.38, 0.63, 0.54, 0.39, 0.46, 0.6, 0.72, 0.49, 0.53, 0.78, 0.55, 0.44, 0.54, 0.41, 0.6, 0.56, 0.58, 0.48, 0.69, 0.57, 0.43, 0.4, 0.46, 0.48, 0.43, 0.54, 0.59, 0.39, 0.5, 0.49, 0.44, 0.42, 0.69, 0.49, 0.76, 0.83, 0.65, 0.4, 0.34, 0.45, 0.44, 0.57, 0.37, 0.42, 0.5, 0.76, 0.62, 0.41, 0.43, 0.57, 0.83, 0.48, 0.54, 0.49, 0.47, 0.57, 0.49, 0.46, 0.45, 0.85, 0.63, 0.46, 0.37, 0.37, 0.52, 0.58, 0.49, 0.73, 0.62, 0.46, 0.66, 0.35, 0.58, 0.59, 0.62, 0.43, 0.59, 0.4, 0.7, 0.42, 0.68, 0.58, 0.66, 0.58, 0.61, 0.42, 0.42, 0.85, 0.37, 0.64, 0.47, 0.56, 0.59, 0.42, 0.67, 0.79, 0.42, 0.67, 0.58, 0.42, 0.63, 0.46, 0.56, 0.64, 0.66, 0.79, 0.5, 0.67, 0.36, 0.69, 0.58, 0.49, 0.37, 0.44, 0.82, 0.61, 0.54, 0.52, 0.54, 0.78, 0.64, 0.53, 0.51, 0.33, 0.64, 0.72, 0.68, 0.41, 0.54, 0.55, 0.38, 0.46, 0.4, 0.66, 0.45, 0.51, 0.5, 0.5, 0.72, 0.37, 0.97, 0.38, 0.63, 0.43, 1.36, 0.84, 0.58, 0.49, 0.54, 0.38, 0.86, 0.52, 0.42, 0.53, 0.53, 0.34, 0.62, 0.34, 0.5, 0.6, 0.44, 0.62, 0.69, 0.46, 0.62, 0.55, 0.4, 0.54, 0.77, 0.77, 0.6, 0.45, 0.47, 0.45, 0.45, 0.41, 0.54, 0.66, 0.49, 0.42, 0.31, 0.54, 0.57, 0.58, 0.65, 0.67, 0.37, 0.53, 0.38, 0.53, 0.67, 0.37, 0.61, 0.49, 0.69, 0.44, 0.33, 0.48, 0.46, 0.59, 0.51, 0.4, 0.55, 0.49, 0.39, 0.39, 0.4, 0.4, 0.32, 0.42, 0.46, 0.47, 0.38, 0.63, 0.58, 0.44, 0.44, 0.34, 0.68, 0.66, 0.79, 1.02, 0.35, 0.41, 0.61, 0.36, 0.59, 0.46, 0.59, 0.56, 0.9, 0.42, 0.38, 0.42, 0.4, 0.51, 0.57, 0.6, 0.35, 0.61, 0.5, 0.38, 0.66, 0.59, 0.91, 0.5, 0.35, 0.68, 0.42, 0.48, 0.5, 0.9, 0.54, 0.6, 0.44, 0.47, 0.67, 0.25, 0.68, 0.54, 0.52, 0.46, 0.57, 0.61, 0.46, 0.64, 0.45, 0.38, 0.46, 0.54, 0.39, 0.56, 0.71, 0.58, 0.38, 0.72, 0.52, 0.49, 0.38, 0.5, 0.53, 0.6, 0.54, 0.31, 0.46, 0.44, 0.37, 0.52, 0.43, 0.45, 0.36, 0.44, 0.46, 0.47, 0.59, 0.46, 0.5, 0.39, 0.62, 0.54, 0.59, 0.57, 0.45, 0.43, 0.34, 0.51, 0.58, 0.36, 0.73, 0.72, 0.42, 0.38, 0.77, 0.6, 0.44, 0.54, 0.42, 0.67, 0.53, 0.96, 0.54, 0.64, 0.55, 0.39, 0.6, 0.48, 0.44, 0.43, 0.65, 0.36, 0.51, 0.59, 0.67, 0.43, 0.64, 0.84, 0.49, 0.62, 0.4, 0.56, 0.61, 0.54, 0.54, 0.49, 0.51, 0.53, 0.73, 0.33, 0.37, 0.59, 0.4, 0.55, 0.47, 0.53, 1.06, 0.49, 0.65, 0.4, 0.43, 0.47, 0.59, 0.45, 0.43, 0.6, 0.42, 0.93, 0.38, 0.53, 0.53, 0.52, 0.61, 0.62, 1.95, 0.35, 0.48, 0.39, 0.57, 0.68, 0.49, 0.92, 0.49, 0.58, 0.47, 0.9, 0.5, 0.53, 0.92, 0.5, 0.74, 0.41, 0.49, 0.41, 0.34, 0.69, 0.55, 0.77, 0.38, 0.72, 0.59, 0.4, 0.73, 1.36, 0.77, 0.58, 0.66, 0.6, 0.58, 0.5, 0.79, 0.36, 0.5, 0.62, 0.44, 0.56, 0.5, 0.56, 0.46, 0.53, 0.78, 0.5, 0.65, 0.58, 0.53, 0.98, 0.44, 0.46, 0.95], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Current<br>sulphates=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [0.38, 0.44, 0.87, 0.39, 0.58, 0.33, 0.7, 0.38, 0.61, 0.59, 0.56, 0.52, 0.37, 0.53, 0.36, 0.41, 0.58, 0.44, 0.87, 0.33, 0.46, 0.5, 0.38, 0.58, 0.6, 0.33, 0.3, 0.54, 0.6, 0.49, 0.35, 0.49, 0.82, 0.41, 0.34, 0.31, 0.76, 0.49, 0.53, 0.53, 0.32, 0.5, 0.38, 0.41, 0.8, 0.74, 0.38, 0.57, 0.49, 0.72, 0.61, 0.67, 0.36, 0.25, 0.49, 0.75, 0.68, 0.79, 0.44, 1.33, 0.68, 0.38, 0.47, 0.36, 0.36, 0.42, 0.58, 0.62, 0.5, 0.8, 0.53, 0.39, 0.29, 0.51, 0.37, 0.42, 0.44, 0.45, 0.47, 0.61, 0.46, 0.52, 0.85, 0.68, 0.49, 0.78, 0.73, 0.3, 0.27, 0.49, 0.35, 0.33, 0.5, 0.4, 0.48, 0.58, 0.65, 0.43, 0.72, 0.77, 0.34, 0.5, 0.84, 0.43, 0.53, 0.62, 0.54, 0.35, 0.59, 0.63, 0.5, 0.38, 0.37, 0.51, 0.5, 0.93, 0.76, 0.56, 0.65, 0.71, 0.64, 0.99, 0.56, 0.42, 0.75, 0.74, 0.74, 0.62, 0.75, 0.57, 0.36, 0.88, 0.44, 0.56, 0.44, 0.51, 0.67, 0.7, 0.57, 0.5, 0.62, 0.49, 0.61, 0.48, 0.41, 0.6, 0.58, 0.77, 0.39, 0.47, 0.38, 0.68, 0.44, 0.36, 0.68, 0.53, 0.82, 0.73, 0.45, 0.48, 0.4, 0.78, 0.26, 0.49, 0.82, 0.36, 0.45, 0.55, 0.86, 0.39, 0.57, 0.32, 0.39, 0.66, 0.45, 0.49, 0.43, 0.42, 0.47, 0.77, 0.44, 0.41, 0.95, 0.76, 0.43, 0.82, 0.87, 0.37, 0.45, 0.75, 0.39, 0.43, 0.59, 0.48, 0.46, 0.58, 0.57, 0.38, 0.58, 0.64, 0.59, 0.56, 0.57, 0.4, 0.56, 0.63, 0.53, 0.85, 0.51, 0.78, 0.41, 0.33, 0.6, 0.6, 0.56, 0.65, 0.47, 0.44, 0.5, 0.49, 0.4, 0.55, 0.6, 0.53, 0.66, 0.58, 0.68, 0.48, 0.77, 0.48, 0.72, 0.44, 0.66, 0.47, 0.66, 0.82, 0.4, 0.54, 0.31, 0.47, 0.53, 0.46, 0.39, 0.57, 0.64, 0.87, 0.41, 0.5, 0.47, 0.7, 0.76, 0.3, 0.75, 0.41, 0.55, 0.35, 0.45, 0.58, 0.48, 0.73, 0.62, 0.57, 0.47, 0.35, 0.39, 0.48, 0.51, 0.43, 0.48, 0.43, 0.37, 0.43, 0.58, 0.65, 0.4, 0.7, 0.57, 0.44, 0.56, 0.76, 1.06, 0.51, 0.51, 0.49, 0.64, 0.63, 0.36, 0.52, 0.57, 0.43, 1.11, 0.63, 0.42, 0.47, 0.49, 0.46, 0.45, 0.42, 0.33, 0.44, 0.33, 0.75, 0.59, 0.38, 0.48, 0.85, 0.56, 0.54, 0.75, 0.47, 0.38, 0.6, 0.63, 0.5, 0.52, 0.63, 0.51, 0.5, 0.51, 0.48, 0.64, 0.44, 0.59, 0.36, 0.64, 0.39, 0.4, 0.77, 0.48, 0.73, 0.81, 0.36, 0.86, 0.53, 0.43, 0.38, 0.75, 0.41, 0.43, 0.46, 0.39, 0.52, 0.58, 0.84, 0.54, 0.45, 0.42, 0.5, 0.9, 0.34, 0.35, 0.52, 0.47, 0.36, 0.4, 0.82, 0.6, 0.38, 0.82, 0.72, 0.32, 0.59, 0.75, 0.35, 0.75, 0.43, 0.46, 0.5, 0.57, 0.69, 0.46, 0.53, 0.54, 0.54, 0.56, 0.49, 0.48, 0.37, 0.65, 0.46, 0.5, 0.55, 0.55, 0.48, 0.43, 0.62, 0.46, 0.44, 0.65, 0.44, 0.58, 0.44, 0.49, 0.64, 0.42, 0.62, 0.47, 0.53, 0.59, 0.45, 0.41, 0.31, 0.64, 0.5, 0.41, 0.42, 0.46, 0.36, 0.39, 0.36, 0.7, 0.49, 0.68, 0.46, 0.5, 0.7, 0.36, 0.65, 0.6, 0.49, 0.56, 0.98, 0.77, 0.6, 0.7, 0.59, 0.6, 0.33, 0.61, 0.4, 0.34, 0.41, 0.53, 0.51, 0.71, 0.65, 0.74, 0.48, 0.7, 0.52, 0.49, 0.84, 0.32, 0.54, 0.33, 0.66, 0.75, 0.4, 0.78, 0.47, 0.37, 0.54, 0.72, 0.54, 0.43, 0.53, 0.56, 0.55, 0.43, 0.49, 0.59, 0.5, 0.42, 0.41, 0.38, 0.65, 0.27, 0.54, 0.4, 0.57, 0.45, 0.3, 0.67, 0.43, 0.41, 0.55, 0.43, 0.6, 0.35, 0.42, 0.65, 0.38, 0.77, 0.76, 0.52, 0.32, 0.32, 0.37, 0.43, 0.68, 0.57, 0.41, 0.77, 0.81, 0.36, 0.75, 0.49, 0.92, 0.52, 0.76, 0.64, 0.5, 0.49, 0.4, 0.5, 0.46, 0.44, 0.59, 0.57, 0.5, 0.82, 0.4, 0.4, 0.45, 0.32, 0.62, 0.64, 0.82, 0.43, 0.8, 0.3, 0.9, 0.38, 0.51, 0.95, 0.59, 0.72, 0.62, 0.36, 0.45, 0.6, 0.37, 0.48, 0.31, 0.81, 0.45, 0.74, 0.37, 0.6, 0.6, 0.55, 0.56, 0.87, 0.51, 0.33, 0.38, 0.72, 0.79, 0.46, 0.49, 0.66, 0.44, 0.52, 0.58, 0.55, 0.37, 0.53, 0.41, 0.42, 0.39, 0.35, 0.65, 0.44, 0.6, 0.51, 0.74, 0.37, 0.39, 0.38, 0.42, 0.69, 0.58, 0.59, 0.5, 0.39, 0.68, 0.48, 0.32, 0.42, 0.56, 0.43, 0.52, 0.34, 0.38, 0.53, 0.64, 0.6, 0.59, 0.38, 0.65, 0.63, 0.5, 0.54, 0.63, 0.58, 0.75, 0.73, 0.79, 0.46, 0.31, 0.52, 0.44, 0.45, 0.39, 0.68, 0.58, 0.75, 0.57, 0.51, 0.68, 0.36, 0.56, 0.43, 0.52, 0.56, 0.44, 0.37, 0.57, 0.6, 0.47, 0.46, 0.37, 0.45, 0.36, 0.55, 0.48, 0.39, 0.35, 0.63, 0.71, 0.59, 0.8, 0.37, 0.46, 0.47, 0.54, 0.33, 0.64, 0.52, 0.51, 0.52, 0.52, 0.66, 0.55, 0.53, 0.52, 0.59, 0.54], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Reference<br>sulphates=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [0.42, 0.41, 0.41, 0.58, 0.51, 0.54, 0.57, 0.67, 0.5, 0.49, 1.17, 0.63, 0.4, 0.42, 0.43, 0.43, 0.6, 0.48, 0.5, 0.49, 0.45, 0.36, 0.6, 0.47, 0.81, 0.65, 0.5, 0.62, 0.5, 0.43, 0.56, 0.55, 0.55, 0.78, 0.44, 0.46, 0.36, 0.35, 0.63, 0.42, 0.48, 0.68, 0.46, 0.43, 0.5, 0.5, 0.47, 0.52, 0.64, 0.62, 0.57, 0.5, 0.38, 0.44, 0.6, 0.51, 0.43, 0.57, 0.52, 0.88, 0.57, 0.47, 0.52, 0.39, 0.48, 0.45, 0.6, 0.45, 0.64, 0.37, 0.32, 0.58, 0.46, 0.5, 0.38, 0.42, 0.38, 0.7, 0.58, 0.48, 0.5, 0.54, 0.47, 0.43, 0.62, 0.56, 0.44, 0.32, 0.29, 0.39, 0.58, 0.38, 0.66, 0.46, 0.44, 0.48, 0.4, 0.58, 0.48, 0.5, 0.47, 0.65, 0.64, 0.55, 0.53, 1.31, 0.43, 0.34, 0.57, 0.44, 0.62, 0.4, 0.56, 0.44, 0.64, 0.49, 0.5, 0.62, 0.57, 0.38, 0.46, 0.6, 0.51, 0.29, 0.49, 0.5, 0.67, 0.55, 0.59, 0.5, 0.28, 0.64, 0.4, 0.49, 0.49, 0.42, 0.35, 0.54, 0.45, 0.51, 0.53, 0.5, 0.34, 0.5, 0.48, 0.4, 0.66, 0.38, 0.56, 0.7, 0.52, 0.53, 0.42, 0.61, 0.39, 0.5, 0.95, 0.39, 0.39, 0.28, 0.36, 0.6, 0.57, 0.48, 0.39, 0.46, 0.48, 0.54, 0.57, 0.42, 0.51, 0.39, 0.49, 0.8, 0.67, 0.53, 0.47, 0.57, 0.59, 0.39, 0.49, 0.48, 0.5, 0.47, 0.46, 0.36, 0.59, 0.36, 0.52, 0.47, 0.44, 0.56, 0.6, 0.4, 0.54, 0.49, 0.54, 0.53, 0.68, 0.41, 0.71, 0.75, 0.75, 0.57, 0.73, 0.43, 0.39, 0.5, 0.58, 0.31, 0.42, 0.49, 0.44, 0.43, 0.56, 0.47, 0.53, 0.29, 0.48, 0.29, 0.47, 0.39, 0.6, 0.44, 0.38, 0.52, 0.38, 0.66, 0.51, 0.52, 0.43, 0.43, 0.44, 0.51, 0.66, 0.35, 0.53, 0.37, 0.61, 0.63, 0.71, 0.53, 0.52, 0.48, 0.39, 0.57, 0.55, 0.52, 0.39, 0.6, 0.67, 0.47, 0.55, 0.47, 0.51, 0.51, 0.79, 0.32, 0.58, 0.49, 0.41, 0.62, 0.38, 0.4, 0.43, 0.34, 0.6, 0.43, 0.97, 0.54, 0.43, 0.67, 0.55, 0.58, 0.45, 0.58, 0.48, 0.54, 0.38, 0.52, 0.52, 0.66, 0.49, 0.6, 0.35, 0.52, 0.64, 0.39, 0.39, 0.41, 0.62, 0.69, 0.37, 0.48, 0.48, 0.98, 0.52, 0.49, 0.46, 0.59, 0.73, 0.44, 0.53, 0.49, 0.53, 0.38, 0.61, 0.56, 1.05, 0.47, 0.4, 0.48, 0.66, 0.48, 0.99, 0.43, 0.51, 0.61, 0.56, 0.65, 0.63, 0.5, 0.44, 0.59, 0.46, 0.4, 0.84, 0.7, 0.51, 0.46, 0.5, 0.62, 0.51, 0.69, 0.45, 0.57, 0.45, 0.64, 0.4, 0.5, 0.46, 0.5, 0.51, 0.51, 0.51, 0.65, 0.71, 0.48, 0.47, 0.56, 0.35, 0.57, 0.64, 0.63, 0.66], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Current<br>sulphates=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [0.78, 0.48, 0.33, 0.45, 0.47, 0.5, 0.51, 0.54, 0.67, 0.57, 0.49, 0.5, 0.52, 0.37, 0.57, 0.48, 0.38, 0.61, 0.81, 0.28, 0.72, 0.46, 0.49, 0.51, 0.66, 0.38, 0.52, 0.49, 0.4, 0.53, 0.44, 0.54, 0.46, 0.45, 0.51, 0.44, 0.48, 0.58, 0.41, 0.55, 0.38, 0.43, 0.81, 0.45, 0.41, 0.57, 0.61, 0.53, 0.5, 0.52, 0.7, 0.39, 0.34, 0.58, 0.49, 0.67, 0.65, 0.74, 0.35, 0.54, 0.74, 0.64, 0.47, 0.91, 0.47, 0.64, 1.34, 0.56, 0.56, 0.48, 0.69, 0.4, 0.46, 0.47, 0.37, 0.53, 0.52, 0.43, 0.46, 0.61, 0.39, 0.49, 0.42, 0.55, 0.37, 0.48, 0.44, 0.75, 0.42, 0.8, 0.34, 0.38, 0.7, 0.63, 0.73, 0.4, 0.34, 0.93, 0.46, 0.5, 0.43, 0.43, 0.48, 0.52, 0.46, 0.54, 0.7, 0.45, 0.41, 0.64, 0.46, 0.44, 0.75, 0.54, 0.46, 0.48, 0.67, 0.49, 0.48, 0.52, 0.37, 0.46, 0.6, 0.48, 0.54, 0.77, 0.48, 0.55, 0.54, 0.65, 0.4, 0.56, 0.63, 0.33, 0.48, 0.5, 0.7, 0.55, 0.4, 0.51, 0.42, 0.37, 0.31, 0.52, 0.63, 0.49, 0.52, 0.56, 0.54, 0.42, 0.34, 0.59, 0.72, 0.38, 0.52, 0.35, 0.4, 0.51, 0.46, 0.56, 0.57, 0.56, 0.68, 0.48, 0.5, 0.5, 0.38, 0.49, 0.38, 0.46, 0.6, 0.49, 0.38, 0.42, 0.58, 0.35, 0.31, 0.53, 0.45, 0.37, 0.39, 0.44, 0.61, 0.38, 0.52, 0.42, 0.4, 0.53, 0.59, 0.52, 0.57, 0.58, 0.5, 0.65, 0.49, 0.47, 0.46, 0.48, 0.78, 0.44, 0.52, 0.46, 0.45, 0.69, 0.3, 0.76, 0.46, 0.78, 0.33, 0.45, 0.61, 0.52, 0.64, 0.35, 0.47, 0.37, 0.57, 0.4, 0.5, 0.39, 0.46, 0.43, 0.47, 0.46, 0.45, 0.45, 0.64, 0.59, 0.39, 0.4, 0.51, 0.7, 0.37, 0.32, 0.82, 0.47, 0.45, 0.59, 0.63, 0.55, 0.72, 0.8, 0.52, 0.41, 0.5, 0.72, 0.88, 0.45, 0.52, 0.42, 0.64, 0.45, 0.42, 0.44, 0.44, 0.41, 0.41, 0.6, 0.58, 0.71, 0.65, 0.53, 0.68, 0.68, 0.49, 0.45, 0.56, 0.73, 0.44, 0.48, 0.5, 0.72, 0.41, 0.45, 0.53, 0.55, 0.68, 0.6, 0.54, 0.88, 0.53, 0.48, 0.38, 0.43, 0.88, 0.44, 0.39, 0.46, 0.28, 0.58, 0.5, 0.58, 0.52, 0.54, 0.58, 0.65, 0.42, 0.37, 0.51, 0.58, 0.46, 0.61, 0.7, 0.63, 0.5, 0.29, 0.53, 0.35, 0.58, 0.49, 0.58, 0.63, 0.62, 0.39, 0.56, 0.44, 0.46, 0.48, 0.64, 0.38, 0.61, 0.58, 0.5, 0.76, 0.52, 0.4, 0.51, 0.63, 0.48, 0.46, 0.56, 0.45, 0.5, 0.53, 0.55, 0.51, 0.51, 0.39, 0.37, 0.45, 0.45, 0.58, 0.6, 0.48, 0.63, 0.73, 0.49, 0.78, 0.37, 0.76, 0.56, 0.49], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Reference\", \"x\": 0.245, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Current\", \"x\": 0.755, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"barmode\": \"overlay\", \"legend\": {\"title\": {\"text\": \"target\"}, \"tracegroupgap\": 0}, \"margin\": {\"t\": 60}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.49], \"title\": {\"text\": \"sulphates\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.51, 1.0], \"matches\": \"x\", \"title\": {\"text\": \"sulphates\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"count\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}}}, \"sulphates_good\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (ref)\", \"type\": \"scatter\", \"x\": [0.42, 0.54, 0.53, 0.49, 0.54, 0.54, 0.53, 0.5, 0.38, 0.38, 0.34, 0.54, 0.37, 0.44, 0.67, 0.45, 0.37, 0.68, 0.48, 0.34, 0.56, 0.59, 0.42, 0.4, 0.32, 0.54, 0.4, 0.35, 0.4, 0.39, 0.42, 0.65, 0.39, 0.9, 0.63, 0.48, 0.55, 0.41, 0.53, 0.75, 0.38, 0.44, 0.71, 0.41, 0.49, 0.4, 0.47, 0.45, 1.13, 0.37, 0.37, 0.58, 0.41, 0.47, 0.54, 0.38, 0.48, 0.32, 0.29, 0.58, 0.57, 0.48, 0.41, 0.51, 0.68, 0.59, 0.39, 0.35, 0.46, 0.22, 0.64, 0.26, 0.4, 0.51, 0.69, 0.46, 0.86, 0.33, 0.75, 0.32, 0.72, 0.36, 0.51, 0.46, 0.41, 0.72, 0.48, 0.91, 0.48, 0.67, 0.51, 0.58, 0.67, 0.52, 0.44, 0.4, 0.38, 0.42, 0.48, 0.62, 0.4, 0.46, 0.69, 0.64, 0.36, 0.5, 0.45, 0.42, 0.76, 0.56, 0.45, 0.38, 0.54, 0.76, 0.44, 0.53, 0.54, 0.5, 0.59, 0.85, 0.52, 0.61, 0.41, 0.53, 0.46, 0.54, 0.56, 0.53, 0.56, 0.96, 0.39, 0.83, 0.41, 0.85, 0.5, 0.34, 0.64, 0.6, 0.47, 0.74, 0.44, 0.46, 0.52, 0.59, 0.67, 0.62, 0.78, 0.36, 0.6, 0.35, 0.39, 0.68, 0.54, 0.43, 0.54, 0.53, 0.41, 0.41, 0.41, 0.43, 0.48, 0.58, 0.5, 0.96, 0.69, 0.5, 0.49, 0.33, 0.41, 0.33, 0.79, 0.59, 0.51, 0.39, 0.57, 0.38, 0.56, 0.54, 0.43, 0.69, 0.57, 0.48, 0.8, 0.43, 0.47, 0.5, 0.39, 0.64, 0.52, 0.51, 0.48, 0.63, 0.51, 0.46, 0.53, 0.38, 0.46, 0.55, 0.47, 0.5, 0.49, 0.71, 0.58, 0.89, 0.63, 0.81, 0.94, 0.41, 0.41, 0.46, 0.38, 0.54, 0.48, 0.46, 0.39, 0.6, 0.43, 0.48, 0.38, 0.63, 0.54, 0.39, 0.46, 0.6, 0.72, 0.49, 0.53, 0.78, 0.55, 0.44, 0.54, 0.41, 0.6, 0.56, 0.58, 0.48, 0.69, 0.57, 0.43, 0.4, 0.46, 0.48, 0.43, 0.54, 0.59, 0.39, 0.5, 0.49, 0.44, 0.42, 0.69, 0.49, 0.76, 0.83, 0.65, 0.4, 0.34, 0.45, 0.44, 0.57, 0.37, 0.42, 0.5, 0.76, 0.62, 0.41, 0.43, 0.57, 0.83, 0.48, 0.54, 0.49, 0.47, 0.57, 0.49, 0.46, 0.45, 0.85, 0.63, 0.46, 0.37, 0.37, 0.52, 0.58, 0.49, 0.73, 0.62, 0.46, 0.66, 0.35, 0.58, 0.59, 0.62, 0.43, 0.59, 0.4, 0.7, 0.42, 0.68, 0.58, 0.66, 0.58, 0.61, 0.42, 0.42, 0.85, 0.37, 0.64, 0.47, 0.56, 0.59, 0.42, 0.67, 0.79, 0.42, 0.67, 0.58, 0.42, 0.63, 0.46, 0.56, 0.64, 0.66, 0.79, 0.5, 0.67, 0.36, 0.69, 0.58, 0.49, 0.37, 0.44, 0.82, 0.61, 0.54, 0.52, 0.54, 0.78, 0.64, 0.53, 0.51, 0.33, 0.64, 0.72, 0.68, 0.41, 0.54, 0.55, 0.38, 0.46, 0.4, 0.66, 0.45, 0.51, 0.5, 0.5, 0.72, 0.37, 0.97, 0.38, 0.63, 0.43, 1.36, 0.84, 0.58, 0.49, 0.54, 0.38, 0.86, 0.52, 0.42, 0.53, 0.53, 0.34, 0.62, 0.34, 0.5, 0.6, 0.44, 0.62, 0.69, 0.46, 0.62, 0.55, 0.4, 0.54, 0.77, 0.77, 0.6, 0.45, 0.47, 0.45, 0.45, 0.41, 0.54, 0.66, 0.49, 0.42, 0.31, 0.54, 0.57, 0.58, 0.65, 0.67, 0.37, 0.53, 0.38, 0.53, 0.67, 0.37, 0.61, 0.49, 0.69, 0.44, 0.33, 0.48, 0.46, 0.59, 0.51, 0.4, 0.55, 0.49, 0.39, 0.39, 0.4, 0.4, 0.32, 0.42, 0.46, 0.47, 0.38, 0.63, 0.58, 0.44, 0.44, 0.34, 0.68, 0.66, 0.79, 1.02, 0.35, 0.41, 0.61, 0.36, 0.59, 0.46, 0.59, 0.56, 0.9, 0.42, 0.38, 0.42, 0.4, 0.51, 0.57, 0.6, 0.35, 0.61, 0.5, 0.38, 0.66, 0.59, 0.91, 0.5, 0.35, 0.68, 0.42, 0.48, 0.5, 0.9, 0.54, 0.6, 0.44, 0.47, 0.67, 0.25, 0.68, 0.54, 0.52, 0.46, 0.57, 0.61, 0.46, 0.64, 0.45, 0.38, 0.46, 0.54, 0.39, 0.56, 0.71, 0.58, 0.38, 0.72, 0.52, 0.49, 0.38, 0.5, 0.53, 0.6, 0.54, 0.31, 0.46, 0.44, 0.37, 0.52, 0.43, 0.45, 0.36, 0.44, 0.46, 0.47, 0.59, 0.46, 0.5, 0.39, 0.62, 0.54, 0.59, 0.57, 0.45, 0.43, 0.34, 0.51, 0.58, 0.36, 0.73, 0.72, 0.42, 0.38, 0.77, 0.6, 0.44, 0.54, 0.42, 0.67, 0.53, 0.96, 0.54, 0.64, 0.55, 0.39, 0.6, 0.48, 0.44, 0.43, 0.65, 0.36, 0.51, 0.59, 0.67, 0.43, 0.64, 0.84, 0.49, 0.62, 0.4, 0.56, 0.61, 0.54, 0.54, 0.49, 0.51, 0.53, 0.73, 0.33, 0.37, 0.59, 0.4, 0.55, 0.47, 0.53, 1.06, 0.49, 0.65, 0.4, 0.43, 0.47, 0.59, 0.45, 0.43, 0.6, 0.42, 0.93, 0.38, 0.53, 0.53, 0.52, 0.61, 0.62, 1.95, 0.35, 0.48, 0.39, 0.57, 0.68, 0.49, 0.92, 0.49, 0.58, 0.47, 0.9, 0.5, 0.53, 0.92, 0.5, 0.74, 0.41, 0.49, 0.41, 0.34, 0.69, 0.55, 0.77, 0.38, 0.72, 0.59, 0.4, 0.73, 1.36, 0.77, 0.58, 0.66, 0.6, 0.58, 0.5, 0.79, 0.36, 0.5, 0.62, 0.44, 0.56, 0.5, 0.56, 0.46, 0.53, 0.78, 0.5, 0.65, 0.58, 0.53, 0.98, 0.44, 0.46, 0.95], \"xaxis\": \"x\", \"y\": [0.8156061324462894, 0.42491310922683634, 0.8867827646463432, 0.8014995238430205, 0.30499958310650876, 0.5817355832705369, 0.959171062334887, 0.7854416128369749, 0.9085690698200813, 0.8998600376511439, 0.6341165000693628, 0.412102187638673, 0.7643629411050379, 0.4710001938005606, 0.40182653035141874, 0.40438056362905367, 0.8870480016118494, 0.3650667978415713, 0.9064321709292111, 0.9327245345966092, 0.6458420185168736, 0.8821841129047617, 0.6704018506542557, 0.7655671181822064, 0.8616986618932058, 0.48774537944210006, 0.9637355036179479, 0.6794204065079696, 0.6044835155949141, 0.7867954023600708, 0.9137982268836646, 0.5867502063434873, 0.8048584290077971, 0.9718511071053526, 0.9627192884041744, 0.7978623718349598, 0.6091120966723917, 0.8943338178728011, 0.8853376735027229, 0.9045563504021151, 0.9264844632598176, 0.6342457655367447, 0.9414033426130164, 0.5636516403732365, 0.5172967922101196, 0.4836896337264441, 0.35199620689495453, 0.788779954566273, 0.9696552399248426, 0.772496554239754, 0.8132656157621138, 0.4539090261140653, 0.9333708926412786, 0.679765045723866, 0.48457442622955804, 0.4248820606938153, 0.6737819616086004, 0.8780741425819777, 0.38340602447337646, 0.90634085684919, 0.5574014604752268, 0.6804147683859246, 0.9077110088845216, 0.7718472635729894, 0.4717552048891654, 0.22222808308441652, 0.8616549355667619, 0.705749071892896, 0.4699129352300819, 0.9680524782819758, 0.8891353183282249, 0.9466602521798594, 0.8553382520847058, 0.7430243903066251, 0.6616131862201935, 0.6919609500216202, 0.96565744679506, 0.913108907487878, 0.5395521774612226, 0.9026238558501023, 0.6550941529376255, 0.9757876320152292, 0.8833495792027257, 0.6666029765862381, 0.8504582120840628, 0.9320215595878566, 0.7639947574915884, 0.6085229656221847, 0.9557131606798471, 0.46184432615952054, 0.5642658412077981, 0.8815615400732472, 0.7189203536918151, 0.9301020530176726, 0.7341394174346678, 0.7759189559372703, 0.8448078654733812, 0.9012666081120407, 0.8926028620066223, 0.5287492720273277, 0.6874206920638863, 0.37408584674942635, 0.8348370105186077, 0.8697567261320243, 0.9175759024810304, 0.44644098895981, 0.8874384748400057, 0.7787567487441118, 0.9416122482572158, 0.3265229243180111, 0.9308095750950773, 0.42267134533232753, 0.43068181214270274, 0.8727308285810839, 0.7201611177732586, 0.8430904589044517, 0.8140617541555761, 0.9456747441572588, 0.6672663325862807, 0.8756470416862959, 0.518871521713375, 0.7040615347784164, 0.4957960231649875, 0.6250130361556073, 0.27413726132188326, 0.5193133578087885, 0.37656641690434584, 0.5808048103476511, 0.7917827117482167, 0.36569143480873245, 0.7232542293832885, 0.9785934574433302, 0.5715075300165849, 0.8182555969893297, 0.5448461144048058, 0.9491291995847589, 0.4833587957991669, 0.3189279754564957, 0.9184825510014271, 0.5524830505676419, 0.9600429304649183, 0.7818180966165994, 0.7962710274484252, 0.7569429870375118, 0.46184432615952054, 0.7641514270390748, 0.9486763575522457, 0.8086368705092697, 0.6784536879503494, 0.6877019790624462, 0.6082670858563528, 0.6053794617794684, 0.6319330693089359, 0.4982105707488519, 0.6787928880949093, 0.9231980717613485, 0.8831230955067948, 0.6845485656817341, 0.8799204262605215, 0.9164563829924386, 0.7819268199067826, 0.23469888428232324, 0.9492377841603665, 0.8826092272015389, 0.6360541596480074, 0.5184081252698399, 0.6400126753125241, 0.542646305979658, 0.4479501208302092, 0.7783171875827786, 0.7867712153112567, 0.5236605417423803, 0.6959846197179591, 0.7925023358445066, 0.6683189355892497, 0.18737025221649042, 0.42506327048176057, 0.7272596040941706, 0.7314191754306454, 0.4827891324637794, 0.6649341228620356, 0.9038332731164471, 0.9588917860646077, 0.8945194928389463, 0.49833043835950624, 0.7997712594855277, 0.8577935987172323, 0.7622736922026153, 0.8039391974899521, 0.7396811504731934, 0.8115340233127679, 0.801728888664367, 0.738451208106372, 0.5859674792922007, 0.1865203674848816, 0.8773430435604171, 0.36888329310067386, 0.8651817982269884, 0.9067615420962557, 0.8594983988587351, 0.7437750884018276, 0.9145224932934428, 0.9135679891815164, 0.8001832456898428, 0.6860977766129374, 0.9377826008632761, 0.9300369611912853, 0.6997062971069969, 0.5693182102579236, 0.3404656140239559, 0.7160591142088384, 0.7953146078011, 0.8869803873277935, 0.7639982823097876, 0.8681285227071118, 0.576868797021353, 0.93035102563313, 0.8375600281828176, 0.8279918435672958, 0.9266689436294401, 0.7559862346636359, 0.5099889666930224, 0.6914445842613687, 0.9651950326885705, 0.87851968214492, 0.8499702807396289, 0.4685752957996948, 0.7241546992314323, 0.7848147251007912, 0.7341394174346678, 0.7008877443692281, 0.340588975625529, 0.5013021766499856, 0.8321174529331695, 0.8818378666553491, 0.9176909075187759, 0.8634678749265305, 0.7436082905772717, 0.9343776659412377, 0.7668809937296346, 0.6243383802582345, 0.5332560471205093, 0.6907315465649003, 0.16626803588025432, 0.1668542888532837, 0.7408943843163458, 0.5221312328975666, 0.7457559475413279, 0.46389636934606376, 0.9292627865919654, 0.5268311186840582, 0.4244151934213653, 0.643310536612302, 0.8577438313980266, 0.7816208399762355, 0.8553382520847058, 0.7010035672814305, 0.5242572272016158, 0.9187320011579697, 0.8703498177621264, 0.6713045345576062, 0.9137982268836646, 0.8614414457916845, 0.9445662266054761, 0.8808216590199034, 0.7386378115490353, 0.8873009977622293, 0.9157094897337859, 0.6606038558129893, 0.9296803968514485, 0.8864322240790464, 0.5146720135715994, 0.8720710714485208, 0.9415427660945741, 0.9138701141498735, 0.6527559092576063, 0.8751970040938668, 0.9249766460056568, 0.801728888664367, 0.6575848465963361, 0.6934824043184128, 0.8619113960143526, 0.9419078024651042, 0.9591721389341828, 0.8397407150753159, 0.9084383840076588, 0.4963969309336195, 0.7359588175524252, 0.3531961907069324, 0.9279819479140234, 0.7752976919572294, 0.8665226278427577, 0.9515211055933231, 0.7314191754306454, 0.890886918514299, 0.3235491032739525, 0.3719939405423586, 0.6323804178173072, 0.8398006965792015, 0.8239469134189235, 0.8592101816891015, 0.7615002907198236, 0.8688259750909261, 0.8718104001390852, 0.5838074755684882, 0.8756470416862959, 0.901850575196968, 0.9451930143658351, 0.6253812669856891, 0.5890764576710766, 0.4921052500998711, 0.4862070578416567, 0.9170647663398394, 0.7035583451969506, 0.8476385889092957, 0.5603058978573646, 0.5810606890504925, 0.9088604673919816, 0.8903252600075929, 0.944267921154058, 0.9435968591480925, 0.938237366988842, 0.9357286047893738, 0.7961386682142712, 0.7840233885688647, 0.2513590507613302, 0.7389284097502917, 0.9053472250810051, 0.44438282424164377, 0.862281110352348, 0.8021059248496223, 0.9152740930046814, 0.643737358401971, 0.8540304955499701, 0.8613418170006786, 0.6911084183178322, 0.8848367871057808, 0.8387883096682573, 0.5942651630821018, 0.65691393717736, 0.6369979527510315, 0.8280658524313272, 0.9640736168216585, 0.6546311715671466, 0.5599819536107853, 0.48348053317652906, 0.7668016587569692, 0.03620763244300767, 0.7364400865449663, 0.37408584674942635, 0.8767503774172, 0.8743962287172513, 0.8751970040938668, 0.8833495792027257, 0.7091886355621774, 0.87006937054451, 0.7904001815220257, 0.8761418339280951, 0.8306834851111597, 0.7531715889012326, 0.38181207472529843, 0.6490458991820136, 0.9138057013338913, 0.9046222904886461, 0.17956061692355052, 0.7506163079023257, 0.8963285795381793, 0.8848361664653354, 0.9283037217377402, 0.45996158699034445, 0.7290858434196763, 0.8319094967702583, 0.6578018675312727, 0.18727567457681707, 0.8673410249845035, 0.9453298670648187, 0.9446538464906173, 0.19605573045952288, 0.6723831041639817, 0.3438281302059518, 0.37858973820495484, 0.6953170483296187, 0.21463507152544156, 0.26963792069965237, 0.3280912492037974, 0.8399932187801539, 0.420387898633768, 0.36522500752858966, 0.5810560693343539, 0.9306346767722963, 0.7167716539092029, 0.656736106921484, 0.5549139996760648, 0.6909161521388689, 0.591904263202073, 0.884703171197362, 0.866402281883595, 0.7582770814524421, 0.8990773411030794, 0.1818065866116437, 0.6222165686186035, 0.17261914235374884, 0.8156064679757086, 0.4851213943917703, 0.8871292211128762, 0.8398494053952754, 0.703270618172154, 0.6305543892506115, 0.7494149477175548, 0.1532408287022325, 0.6159732902773407, 0.738220551127759, 0.8354520044441791, 0.8536870432671441, 0.5751476712690671, 0.9077719201719568, 0.7878515691455199, 0.6672663325862807, 0.45293736875445273, 0.17058553029544155, 0.747933377844996, 0.8400163125056676, 0.4516778718827729, 0.6082670858563528, 0.8401843469141149, 0.7636885291754726, 0.789170795337903, 0.8128612802083497, 0.7522530659814418, 0.8086757686066508, 0.8356255123032285, 0.9241779635105248, 0.9674588597049086, 0.9368885694202199, 0.4990764491242286, 0.876561204324957, 0.554264192243629, 0.5967716244634195, 0.9060244606340249, 0.8401608718856799, 0.7329750583133859, 0.8021769878309102, 0.9316817655017511, 0.45488322534173153, 0.798578398438993, 0.7425236774748816, 0.5742682328784404, 0.4937681935814938, 0.8972164286692267, 0.8914273370768748, 0.9377613518261881, 0.8862258850530264, 0.8591757581361523, 0.7410678096850266, 0.6822336012657398, 0.9201658505843877, 0.6982578893131915, 0.5746709232170782, 0.7626532952948841, 0.7137703530889916, 0.7520971196461234, 0.4473853625959922, 0.7957460056304991, 0.4833174871501707, 0.8758467705785958, 0.4689303842787964, 0.6133612564737879, 0.8568681391705205, 0.6835133967314007, 0.9732070839986944, 0.21435716257549006, 0.5761668962420043, 0.4055433603128916, 0.3743394998756179, 0.9118635774953143, 0.964551884718591, 0.9306459334511011, 0.8424802355113449, 0.7739144871152517, 0.6872688771534424, 0.8590561833388345, 0.6714384475466295, 0.6408669500407106, 0.5203550269219845, 0.2856853969697174, 0.857760555506807, 0.9307094503226838, 0.6787928880949093, 0.8308635255795866, 0.29271374211533296, 0.6769315553524353, 0.23831547366416572, 0.5895099457120908, 0.8994675076574448, 0.8893400405584444, 0.8456825404777587, 0.5399612081435882, 0.6188649121485582, 0.9281492942813848, 0.7611740601422801, 0.46550237374781617, 0.8896861436466836, 0.9038901015569306, 0.5044440900554997, 0.9215480939667524, 0.6930273792518707, 0.8723244804196287, 0.5624338775604165, 0.9226297661236537, 0.8469231754225917, 0.9430557295321259, 0.9097116306258912, 0.5988707702267543, 0.3813853072548755, 0.8843832309478876, 0.9006952500629406, 0.918975987201669, 0.18997930334445084, 0.8923106748541326, 0.8461388699436441, 0.5973439234355874, 0.9544642924744549, 0.91770416680597, 0.9177239854204658, 0.17584552180125673, 0.9240099144459667, 0.48524948024905407, 0.8889685222180134, 0.5785503824403398, 0.7511953459672914, 0.6887596776945688, 0.6717539058356753, 0.7168761391602206, 0.7134478068952186, 0.834626350903405, 0.5715867980362679, 0.6588392688727011, 0.9488572786900573, 0.8920529250761863, 0.8891353183282249, 0.707981940789761, 0.926348680038428, 0.631489487929038, 0.7443856388661001, 0.9260754381930228, 0.9544642924744549, 0.8497401318990601, 0.5604010177433062, 0.8036334301115304, 0.7898153537185114, 0.8491431337122072, 0.6570881560807702, 0.8389599143569951, 0.7944137576415592, 0.8132668978866627, 0.44714680104169846, 0.7978021044641371, 0.41921696608658454, 0.38876183891604754, 0.9248463736054193, 0.4277915265084825, 0.6345107008491314, 0.8008942533173764, 0.5087430598332189, 0.9414938992689892, 0.6922115882765215, 0.8296175750175913, 0.8593339228153332, 0.8975141534758351, 0.5977126281557783, 0.9279478536756302, 0.6485770817571253, 0.8905823996589662, 0.9332072841984264, 0.9432461110830079, 0.9410120781436498, 0.6339696776630096, 0.7120962557761497, 0.5841709037351369, 0.5928970840420333, 0.9006589732900512, 0.936371533648048, 0.6907852379101131, 0.7675780198071424, 0.9444587893431046, 0.4702336163336472, 0.8925536722101626, 0.8158978708906081, 0.822780392485108, 0.8037335327290217, 0.8382351003285965, 0.8941557358589171, 0.4796498334522667, 0.926348680038428, 0.6842118015950474, 0.6463580983468415, 0.8292048071278182, 0.5834426687867836, 0.8419845362148763, 0.2431563391580561, 0.7763142135369961, 0.9390550746437164, 0.7774903237071782, 0.8141232663130791, 0.9444089886680379, 0.430401459478284, 0.9192677156927759, 0.8427595869840984, 0.87120858451521, 0.5693182102579236, 0.820012080301976, 0.58719119911586, 0.42769376643096113, 0.3542595869275313, 0.89579938191327, 0.8743523014696554, 0.7820497043505815, 0.5279069501129625, 0.8869579700149332, 0.45488774279476296, 0.8514781135508903, 0.8278297091497892, 0.663749097381813, 0.5132851713944618, 0.4906566565015208, 0.6415219885510332, 0.6991293681294938, 0.8150539074042624, 0.5800669536763935, 0.9583771200922359, 0.7366090055976814, 0.5747817696023392, 0.5315376696882942, 0.8074446941396305, 0.9038901015569306, 0.9087015650331977, 0.6697291810323083, 0.5800669536763935, 0.8807270543114014, 0.5135845984304893, 0.9352791850238339, 0.36120709973337456, 0.6206709330576408, 0.906286252315459, 0.7937202818717513], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [0.42, 0.41, 0.41, 0.58, 0.51, 0.54, 0.57, 0.67, 0.5, 0.49, 1.17, 0.63, 0.4, 0.42, 0.43, 0.43, 0.6, 0.48, 0.5, 0.49, 0.45, 0.36, 0.6, 0.47, 0.81, 0.65, 0.5, 0.62, 0.5, 0.43, 0.56, 0.55, 0.55, 0.78, 0.44, 0.46, 0.36, 0.35, 0.63, 0.42, 0.48, 0.68, 0.46, 0.43, 0.5, 0.5, 0.47, 0.52, 0.64, 0.62, 0.57, 0.5, 0.38, 0.44, 0.6, 0.51, 0.43, 0.57, 0.52, 0.88, 0.57, 0.47, 0.52, 0.39, 0.48, 0.45, 0.6, 0.45, 0.64, 0.37, 0.32, 0.58, 0.46, 0.5, 0.38, 0.42, 0.38, 0.7, 0.58, 0.48, 0.5, 0.54, 0.47, 0.43, 0.62, 0.56, 0.44, 0.32, 0.29, 0.39, 0.58, 0.38, 0.66, 0.46, 0.44, 0.48, 0.4, 0.58, 0.48, 0.5, 0.47, 0.65, 0.64, 0.55, 0.53, 1.31, 0.43, 0.34, 0.57, 0.44, 0.62, 0.4, 0.56, 0.44, 0.64, 0.49, 0.5, 0.62, 0.57, 0.38, 0.46, 0.6, 0.51, 0.29, 0.49, 0.5, 0.67, 0.55, 0.59, 0.5, 0.28, 0.64, 0.4, 0.49, 0.49, 0.42, 0.35, 0.54, 0.45, 0.51, 0.53, 0.5, 0.34, 0.5, 0.48, 0.4, 0.66, 0.38, 0.56, 0.7, 0.52, 0.53, 0.42, 0.61, 0.39, 0.5, 0.95, 0.39, 0.39, 0.28, 0.36, 0.6, 0.57, 0.48, 0.39, 0.46, 0.48, 0.54, 0.57, 0.42, 0.51, 0.39, 0.49, 0.8, 0.67, 0.53, 0.47, 0.57, 0.59, 0.39, 0.49, 0.48, 0.5, 0.47, 0.46, 0.36, 0.59, 0.36, 0.52, 0.47, 0.44, 0.56, 0.6, 0.4, 0.54, 0.49, 0.54, 0.53, 0.68, 0.41, 0.71, 0.75, 0.75, 0.57, 0.73, 0.43, 0.39, 0.5, 0.58, 0.31, 0.42, 0.49, 0.44, 0.43, 0.56, 0.47, 0.53, 0.29, 0.48, 0.29, 0.47, 0.39, 0.6, 0.44, 0.38, 0.52, 0.38, 0.66, 0.51, 0.52, 0.43, 0.43, 0.44, 0.51, 0.66, 0.35, 0.53, 0.37, 0.61, 0.63, 0.71, 0.53, 0.52, 0.48, 0.39, 0.57, 0.55, 0.52, 0.39, 0.6, 0.67, 0.47, 0.55, 0.47, 0.51, 0.51, 0.79, 0.32, 0.58, 0.49, 0.41, 0.62, 0.38, 0.4, 0.43, 0.34, 0.6, 0.43, 0.97, 0.54, 0.43, 0.67, 0.55, 0.58, 0.45, 0.58, 0.48, 0.54, 0.38, 0.52, 0.52, 0.66, 0.49, 0.6, 0.35, 0.52, 0.64, 0.39, 0.39, 0.41, 0.62, 0.69, 0.37, 0.48, 0.48, 0.98, 0.52, 0.49, 0.46, 0.59, 0.73, 0.44, 0.53, 0.49, 0.53, 0.38, 0.61, 0.56, 1.05, 0.47, 0.4, 0.48, 0.66, 0.48, 0.99, 0.43, 0.51, 0.61, 0.56, 0.65, 0.63, 0.5, 0.44, 0.59, 0.46, 0.4, 0.84, 0.7, 0.51, 0.46, 0.5, 0.62, 0.51, 0.69, 0.45, 0.57, 0.45, 0.64, 0.4, 0.5, 0.46, 0.5, 0.51, 0.51, 0.51, 0.65, 0.71, 0.48, 0.47, 0.56, 0.35, 0.57, 0.64, 0.63, 0.66], \"xaxis\": \"x\", \"y\": [0.2802292104526322, 0.9455194119275858, 0.4978743212349556, 0.5289145624519528, 0.28439238707197784, 0.2033309570226689, 0.27345747478543325, 0.8322873304845451, 0.389055896812549, 0.3675472469853882, 0.5781933746273124, 0.7401955299744071, 0.44969671697605845, 0.4367887814338696, 0.31593955341667695, 0.3775624358859999, 0.19282181046294666, 0.048451763306065584, 0.6005928650583868, 0.032225376113695775, 0.427412413738938, 0.23973251442015217, 0.13890126550157303, 0.8613925272127, 0.329663916828638, 0.19359965390713213, 0.6827271716759634, 0.1960905505555538, 0.08135735686643118, 0.39737240301928484, 0.13902987396822816, 0.6514166433739288, 0.6994753721471061, 0.7140886736258081, 0.5021795028970708, 0.48743245558712556, 0.5731139673640956, 0.8820820642542792, 0.559972149724866, 0.5061565591493914, 0.5066810377847554, 0.833805652807593, 0.6979972163580744, 0.3177574231538272, 0.13068190592986567, 0.758876109553896, 0.5681062961269688, 0.715544821914063, 0.762062625203523, 0.4464438677531786, 0.20995974230910305, 0.5262622410710028, 0.39442669669188163, 0.2537324982988368, 0.6775437642744659, 0.23876321589577687, 0.6369158982934647, 0.38960060362966165, 0.6034323722874255, 0.7769991715799629, 0.15199748354041337, 0.5641412449951732, 0.7590466800561823, 0.5969347905931296, 0.1048362779837843, 0.7217824369593382, 0.2662339163773806, 0.16472378978351135, 0.37760124376932414, 0.7071736299639594, 0.3436862995931572, 0.8384434752264291, 0.3635333644877426, 0.7813188949129265, 0.7279369976219869, 0.5641098847382463, 0.3863964747623771, 0.9209913370067284, 0.1477144681640183, 0.8809374658555192, 0.6533168894759348, 0.8873477284758582, 0.3697306267878623, 0.28319023347825867, 0.5203701741750857, 0.5523747693308857, 0.6387521731780509, 0.3881380695009739, 0.8487896327149285, 0.4636606453307818, 0.8384434752264291, 0.558266603669778, 0.21657231888677728, 0.3635333644877426, 0.5512671313974766, 0.5051039398599867, 0.5827915753039158, 0.49441682850108926, 0.47309171914705017, 0.6262595591688196, 0.5508242483721094, 0.47332791509789995, 0.7117569366896692, 0.3933786516273859, 0.16465066549244003, 0.7490394132223248, 0.769261050002088, 0.7431932405995126, 0.3141000916210982, 0.723735045552473, 0.6484132891031948, 0.688519894019609, 0.40496704226994307, 0.5803736122960511, 0.6327801522745691, 0.45115706990411364, 0.37268733756108086, 0.9009693101135351, 0.06496389958099598, 0.44431713201158524, 0.39960831974332744, 0.8662156944598043, 0.31018081106061823, 0.5339551117365043, 0.33311273919547707, 0.400132762133902, 0.8528754522806217, 0.14419347879543085, 0.11672350429510901, 0.44556702529145975, 0.6160120899414699, 0.13766892845409207, 0.5517204028384314, 0.5232178919035022, 0.35483403305733974, 0.4900213704561591, 0.8854578072659228, 0.43084122675663034, 0.7601186327653665, 0.14072030431570776, 0.6186690618327106, 0.5245054232921349, 0.7326259458716644, 0.5690781983520095, 0.4018508815425063, 0.24877469563805235, 0.7952501197393639, 0.8766221356386195, 0.303451532996695, 0.5357745481647883, 0.7096524147827454, 0.20877177283968149, 0.8635610141758273, 0.46736762313881036, 0.6061151992073851, 0.113015272873705, 0.40446014603085867, 0.6332606063976143, 0.648705381890928, 0.42186952587750404, 0.8047913565308571, 0.3017058309841093, 0.38406990132164637, 0.33494193042999065, 0.19929939967121216, 0.8624919783238055, 0.528785836409086, 0.43084122675663034, 0.47042159929499583, 0.5061565591493914, 0.5759491569657543, 0.8468794444363914, 0.20342296359496542, 0.5170831534483544, 0.3666753044655067, 0.6131723001375537, 0.4410646109528086, 0.6903416342484309, 0.3866428492574258, 0.4636606453307818, 0.4525459302795702, 0.03199256040434073, 0.7029629492254846, 0.2433141614541866, 0.548755973819273, 0.3775060302547258, 0.06593060991448157, 0.8745624549148976, 0.22931948662359403, 0.27267688907931714, 0.589328430619086, 0.8007160756317941, 0.5525637789187225, 0.5008522318356121, 0.4556212410144909, 0.17391722008742402, 0.43574637053357784, 0.3237440077649342, 0.6071692164257629, 0.6925152430641841, 0.592675381607996, 0.43854150134957587, 0.43854150134957587, 0.42437112972565305, 0.8061118855433299, 0.35195592295594336, 0.7605370065149419, 0.38898578429124253, 0.67510953655807, 0.872979709380305, 0.710510994258769, 0.720290290780972, 0.4820787970895852, 0.42019280799979697, 0.4304380754474639, 0.25285023254778977, 0.3238056884730761, 0.39471961640683584, 0.09510031985475974, 0.367046376808582, 0.21500793651835448, 0.8705359023101334, 0.6100742529031461, 0.6226449432624995, 0.7279369976219869, 0.3643494054700089, 0.09992017521484964, 0.41475515148757036, 0.6462260464983366, 0.14102909592513518, 0.48949585696458414, 0.5239520436918008, 0.6084413884537807, 0.5655473856702703, 0.9517420512476797, 0.7489379515982664, 0.4647937384849751, 0.7915321263825208, 0.44112279258530757, 0.5734340256727429, 0.6604471727860799, 0.4845203185458914, 0.6968730453869196, 0.5315374962198609, 0.8685951485887234, 0.6242442748350044, 0.2912097196987059, 0.7725938221565348, 0.2067629769731588, 0.30221725334927335, 0.13129342562285412, 0.6467789443522378, 0.6994753721471061, 0.11825382206919556, 0.41022417118631593, 0.4882665226122541, 0.7732287086973071, 0.25374762405010176, 0.49441682850108926, 0.3723877205427743, 0.652330313245635, 0.43667799883041203, 0.5964718913578133, 0.55172276504346, 0.24113559934961917, 0.8243980268882987, 0.7263843594269437, 0.43535214809021755, 0.8721122798612579, 0.18723914490145582, 0.6486906676970999, 0.11576704656818047, 0.4328241622975616, 0.491481212420291, 0.5264345378086769, 0.33856526784971647, 0.2967410926251248, 0.581398831228375, 0.5973776665460488, 0.6195406102170065, 0.37782717658841725, 0.323061133240968, 0.17420808473594895, 0.19634770547538957, 0.46492234760650425, 0.49613167963272686, 0.5812209036149294, 0.6057291775435286, 0.63414717387345, 0.5702687187355167, 0.8604975146328253, 0.6309022132706124, 0.48732991249542923, 0.6887148870948692, 0.41581945293096145, 0.5706760596351739, 0.4831274653996314, 0.06684727567316755, 0.49090643211649887, 0.15191610726090596, 0.2711405311223577, 0.7653618545702112, 0.09266565137124261, 0.4554350627407873, 0.19698919164573708, 0.6930185080649685, 0.5227537922811563, 0.50434568709929, 0.7082092780767422, 0.46058046365566996, 0.6735723234187477, 0.4285936050615775, 0.323061133240968, 0.5168500865319015, 0.6161307914674419, 0.23456444218973552, 0.3192004782541023, 0.21968945907811915, 0.5028183230931117, 0.43371621376298963, 0.6744209213341115, 0.5940260419772637, 0.13783310426722128, 0.5136444387530009, 0.5508647999875032, 0.4955911012838212, 0.9814394195009358, 0.8260225289794664, 0.17965956338109995, 0.46844896472597397, 0.6048119589659149, 0.3289160319090978, 0.2454606394453749, 0.7497022835596558, 0.683485355417811, 0.20995974230910305, 0.23504578258460665, 0.37175956099497537, 0.4875530438829156, 0.24982584224249993, 0.6282829625348888, 0.4520795162158371, 0.8200372413039435, 0.12832513643528837, 0.5299630655130737, 0.29552777318700446, 0.24021937552346023, 0.5429028773737552, 0.6311869746243346, 0.4145977043912777, 0.39329840463575844, 0.39070335653410526, 0.4286990948130573, 0.846836560604146, 0.6880850122626078], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (curr)\", \"type\": \"scatter\", \"x\": [0.38, 0.44, 0.87, 0.39, 0.58, 0.33, 0.7, 0.38, 0.61, 0.59, 0.56, 0.52, 0.37, 0.53, 0.36, 0.41, 0.58, 0.44, 0.87, 0.33, 0.46, 0.5, 0.38, 0.58, 0.6, 0.33, 0.3, 0.54, 0.6, 0.49, 0.35, 0.49, 0.82, 0.41, 0.34, 0.31, 0.76, 0.49, 0.53, 0.53, 0.32, 0.5, 0.38, 0.41, 0.8, 0.74, 0.38, 0.57, 0.49, 0.72, 0.61, 0.67, 0.36, 0.25, 0.49, 0.75, 0.68, 0.79, 0.44, 1.33, 0.68, 0.38, 0.47, 0.36, 0.36, 0.42, 0.58, 0.62, 0.5, 0.8, 0.53, 0.39, 0.29, 0.51, 0.37, 0.42, 0.44, 0.45, 0.47, 0.61, 0.46, 0.52, 0.85, 0.68, 0.49, 0.78, 0.73, 0.3, 0.27, 0.49, 0.35, 0.33, 0.5, 0.4, 0.48, 0.58, 0.65, 0.43, 0.72, 0.77, 0.34, 0.5, 0.84, 0.43, 0.53, 0.62, 0.54, 0.35, 0.59, 0.63, 0.5, 0.38, 0.37, 0.51, 0.5, 0.93, 0.76, 0.56, 0.65, 0.71, 0.64, 0.99, 0.56, 0.42, 0.75, 0.74, 0.74, 0.62, 0.75, 0.57, 0.36, 0.88, 0.44, 0.56, 0.44, 0.51, 0.67, 0.7, 0.57, 0.5, 0.62, 0.49, 0.61, 0.48, 0.41, 0.6, 0.58, 0.77, 0.39, 0.47, 0.38, 0.68, 0.44, 0.36, 0.68, 0.53, 0.82, 0.73, 0.45, 0.48, 0.4, 0.78, 0.26, 0.49, 0.82, 0.36, 0.45, 0.55, 0.86, 0.39, 0.57, 0.32, 0.39, 0.66, 0.45, 0.49, 0.43, 0.42, 0.47, 0.77, 0.44, 0.41, 0.95, 0.76, 0.43, 0.82, 0.87, 0.37, 0.45, 0.75, 0.39, 0.43, 0.59, 0.48, 0.46, 0.58, 0.57, 0.38, 0.58, 0.64, 0.59, 0.56, 0.57, 0.4, 0.56, 0.63, 0.53, 0.85, 0.51, 0.78, 0.41, 0.33, 0.6, 0.6, 0.56, 0.65, 0.47, 0.44, 0.5, 0.49, 0.4, 0.55, 0.6, 0.53, 0.66, 0.58, 0.68, 0.48, 0.77, 0.48, 0.72, 0.44, 0.66, 0.47, 0.66, 0.82, 0.4, 0.54, 0.31, 0.47, 0.53, 0.46, 0.39, 0.57, 0.64, 0.87, 0.41, 0.5, 0.47, 0.7, 0.76, 0.3, 0.75, 0.41, 0.55, 0.35, 0.45, 0.58, 0.48, 0.73, 0.62, 0.57, 0.47, 0.35, 0.39, 0.48, 0.51, 0.43, 0.48, 0.43, 0.37, 0.43, 0.58, 0.65, 0.4, 0.7, 0.57, 0.44, 0.56, 0.76, 1.06, 0.51, 0.51, 0.49, 0.64, 0.63, 0.36, 0.52, 0.57, 0.43, 1.11, 0.63, 0.42, 0.47, 0.49, 0.46, 0.45, 0.42, 0.33, 0.44, 0.33, 0.75, 0.59, 0.38, 0.48, 0.85, 0.56, 0.54, 0.75, 0.47, 0.38, 0.6, 0.63, 0.5, 0.52, 0.63, 0.51, 0.5, 0.51, 0.48, 0.64, 0.44, 0.59, 0.36, 0.64, 0.39, 0.4, 0.77, 0.48, 0.73, 0.81, 0.36, 0.86, 0.53, 0.43, 0.38, 0.75, 0.41, 0.43, 0.46, 0.39, 0.52, 0.58, 0.84, 0.54, 0.45, 0.42, 0.5, 0.9, 0.34, 0.35, 0.52, 0.47, 0.36, 0.4, 0.82, 0.6, 0.38, 0.82, 0.72, 0.32, 0.59, 0.75, 0.35, 0.75, 0.43, 0.46, 0.5, 0.57, 0.69, 0.46, 0.53, 0.54, 0.54, 0.56, 0.49, 0.48, 0.37, 0.65, 0.46, 0.5, 0.55, 0.55, 0.48, 0.43, 0.62, 0.46, 0.44, 0.65, 0.44, 0.58, 0.44, 0.49, 0.64, 0.42, 0.62, 0.47, 0.53, 0.59, 0.45, 0.41, 0.31, 0.64, 0.5, 0.41, 0.42, 0.46, 0.36, 0.39, 0.36, 0.7, 0.49, 0.68, 0.46, 0.5, 0.7, 0.36, 0.65, 0.6, 0.49, 0.56, 0.98, 0.77, 0.6, 0.7, 0.59, 0.6, 0.33, 0.61, 0.4, 0.34, 0.41, 0.53, 0.51, 0.71, 0.65, 0.74, 0.48, 0.7, 0.52, 0.49, 0.84, 0.32, 0.54, 0.33, 0.66, 0.75, 0.4, 0.78, 0.47, 0.37, 0.54, 0.72, 0.54, 0.43, 0.53, 0.56, 0.55, 0.43, 0.49, 0.59, 0.5, 0.42, 0.41, 0.38, 0.65, 0.27, 0.54, 0.4, 0.57, 0.45, 0.3, 0.67, 0.43, 0.41, 0.55, 0.43, 0.6, 0.35, 0.42, 0.65, 0.38, 0.77, 0.76, 0.52, 0.32, 0.32, 0.37, 0.43, 0.68, 0.57, 0.41, 0.77, 0.81, 0.36, 0.75, 0.49, 0.92, 0.52, 0.76, 0.64, 0.5, 0.49, 0.4, 0.5, 0.46, 0.44, 0.59, 0.57, 0.5, 0.82, 0.4, 0.4, 0.45, 0.32, 0.62, 0.64, 0.82, 0.43, 0.8, 0.3, 0.9, 0.38, 0.51, 0.95, 0.59, 0.72, 0.62, 0.36, 0.45, 0.6, 0.37, 0.48, 0.31, 0.81, 0.45, 0.74, 0.37, 0.6, 0.6, 0.55, 0.56, 0.87, 0.51, 0.33, 0.38, 0.72, 0.79, 0.46, 0.49, 0.66, 0.44, 0.52, 0.58, 0.55, 0.37, 0.53, 0.41, 0.42, 0.39, 0.35, 0.65, 0.44, 0.6, 0.51, 0.74, 0.37, 0.39, 0.38, 0.42, 0.69, 0.58, 0.59, 0.5, 0.39, 0.68, 0.48, 0.32, 0.42, 0.56, 0.43, 0.52, 0.34, 0.38, 0.53, 0.64, 0.6, 0.59, 0.38, 0.65, 0.63, 0.5, 0.54, 0.63, 0.58, 0.75, 0.73, 0.79, 0.46, 0.31, 0.52, 0.44, 0.45, 0.39, 0.68, 0.58, 0.75, 0.57, 0.51, 0.68, 0.36, 0.56, 0.43, 0.52, 0.56, 0.44, 0.37, 0.57, 0.6, 0.47, 0.46, 0.37, 0.45, 0.36, 0.55, 0.48, 0.39, 0.35, 0.63, 0.71, 0.59, 0.8, 0.37, 0.46, 0.47, 0.54, 0.33, 0.64, 0.52, 0.51, 0.52, 0.52, 0.66, 0.55, 0.53, 0.52, 0.59, 0.54], \"xaxis\": \"x2\", \"y\": [0.33396714643252134, 0.5044440900554997, 0.8874896900044845, 0.4686759077780351, 0.23831547366416572, 0.571181601185031, 0.7785327680196316, 0.7290551099174598, 0.9581131370131553, 0.6801000322064107, 0.413367674560271, 0.6667140739211237, 0.9108229754863395, 0.9275086157065797, 0.9186958597750785, 0.7191871442695774, 0.8184457509658746, 0.8597940676688322, 0.7947045908306632, 0.8244149680645384, 0.42771531534877594, 0.5315376696882942, 0.7136291946100958, 0.5510697799054304, 0.6393262665313312, 0.9016582766249417, 0.8560880110261746, 0.8947361144883382, 0.9102326114023062, 0.840723585394272, 0.9264645566705582, 0.5105903360131552, 0.752648770317166, 0.5855954083225455, 0.8989214048388485, 0.5190750352404293, 0.9560713253502463, 0.7273157243430202, 0.9279672131348602, 0.640103147954212, 0.9158977434209615, 0.9035955072010529, 0.7140955379655831, 0.233508355491505, 0.7280578325574358, 0.8810827811902006, 0.3966129217085586, 0.15541760955422754, 0.5851621750323275, 0.9046111951917862, 0.4177213302712193, 0.7993763114768937, 0.6978409661933959, 0.6473373667551029, 0.770784382977056, 0.6500641275496193, 0.548949563093737, 0.9803199442553986, 0.6150775052067382, 0.391333092160729, 0.6966682278280982, 0.9426748402861506, 0.9170092977635526, 0.844625652038695, 0.5621782696252592, 0.8935808323282117, 0.6792214086077275, 0.6719996755401956, 0.5252591274442797, 0.7277045758687855, 0.4685752957996948, 0.8616549355667619, 0.347491516391863, 0.8224130863808733, 0.5340790568488665, 0.6711667658766297, 0.5277539611022016, 0.7226430813715845, 0.8140972745487615, 0.3280236940194876, 0.9543080196225542, 0.7752655593026647, 0.9223925066666061, 0.8588031784191832, 0.6345107008491314, 0.9393010047953068, 0.7897067132703484, 0.8608062836413887, 0.8367885032124018, 0.38555642305179116, 0.8611944449682004, 0.9172341012895443, 0.9206892306522243, 0.9500505925695213, 0.537798347971205, 0.9173482789702866, 0.44454351342386716, 0.8909704850569525, 0.7351932580165473, 0.6818328744935735, 0.7981559962965634, 0.7626532952948841, 0.807353254900461, 0.964411205143099, 0.4685752957996948, 0.6986526320119215, 0.1956969407137045, 0.9233481403380283, 0.8218375601976645, 0.8536269727611236, 0.5637680470866036, 0.42267134533232753, 0.93003590801509, 0.9364808605729722, 0.8816060831574614, 0.9663102962713933, 0.8345570787709832, 0.4997893986747249, 0.7921603237806832, 0.5586815647381762, 0.8622246464681924, 0.9828719612298703, 0.909295720392338, 0.9476267884443668, 0.5395521774612226, 0.901360886913609, 0.39410444510430487, 0.9262213132200262, 0.6627387433216217, 0.9629433821448677, 0.9614311452267452, 0.9802968012486629, 0.933760787013923, 0.34432718187202205, 0.63596173557573, 0.624364378916488, 0.7417789548241253, 0.7300918276682445, 0.6968315453320488, 0.7840233885688647, 0.8958841271622066, 0.5417426694559925, 0.7102579146160282, 0.6004345411549624, 0.515920701757342, 0.7587882454650442, 0.5029588531082266, 0.6887596776945688, 0.8642849605932809, 0.6469572639767995, 0.8103639651534781, 0.939764354405301, 0.694136577696587, 0.6593725303534554, 0.9646797005081557, 0.7979900311745153, 0.792123904710467, 0.8869579700149332, 0.7351250317969437, 0.5332560471205093, 0.9406873315653421, 0.39362685027924615, 0.9466602521798594, 0.8394325033041952, 0.6633442657978572, 0.8126408700417265, 0.7332457619716184, 0.08024070404520958, 0.8667774471450977, 0.6466814331404849, 0.912366876100516, 0.656670904734599, 0.8701678467707724, 0.8875925797813499, 0.9658725076002231, 0.7668332861852056, 0.8604440887473094, 0.934384507524058, 0.9605946056867319, 0.951253157591183, 0.5749289095213865, 0.6279243005170476, 0.7937202818717513, 0.7665301650725991, 0.700127941221274, 0.8531107444728586, 0.7947045908306632, 0.8870566665876504, 0.5476228787844645, 0.8410401833568673, 0.8736671065238262, 0.6519898659949606, 0.936943112068646, 0.9077719201719568, 0.8071889556778997, 0.8815615400732472, 0.8935313268029127, 0.8782891297971865, 0.5029588531082266, 0.5797201450332624, 0.9416775458320723, 0.5958140198486584, 0.2485157288688957, 0.932021424688801, 0.8531502837407814, 0.6344194678828672, 0.632587077283238, 0.9121448358615357, 0.5776545535910985, 0.9052765174806566, 0.8580390107418799, 0.8998644401112552, 0.6784536879503494, 0.9458342431661766, 0.21387363850783603, 0.9530348339880965, 0.7307391114165022, 0.7187682731289255, 0.6905635603269331, 0.9569274903702625, 0.9287384091375525, 0.3856984054091925, 0.504413920551941, 0.5389739198483336, 0.5921068831639978, 0.10702848140489757, 0.8772993497727819, 0.6361944011057532, 0.8952999713010865, 0.7069578609115064, 0.10632960186243966, 0.6465592619811017, 0.9116333268133815, 0.9210441535829985, 0.9483358221641291, 0.5800224234700003, 0.896951343689222, 0.8958659323404018, 0.8896861436466836, 0.7763142135369961, 0.778627444633172, 0.9274605647284293, 0.9167924025380936, 0.6422094408272838, 0.6363725079258666, 0.8694129796739031, 0.5693182102579236, 0.5315376696882942, 0.6814536952243052, 0.30089534057709466, 0.6689448970920832, 0.6419522618821227, 0.6500641275496193, 0.8221968069187356, 0.9285763346020383, 0.8495153837633861, 0.7135666997345446, 0.8850789772017983, 0.9128367188568884, 0.8709442503982084, 0.44714680104169846, 0.7147831401969469, 0.6814536952243052, 0.5823319261018008, 0.7718122970862826, 0.8925058444773368, 0.9249991097277733, 0.7849066379312727, 0.5120166815330335, 0.7863291630268572, 0.8171821177205619, 0.8878235148823457, 0.9813953955585096, 0.5009899161211654, 0.6787020040856314, 0.2747106808400709, 0.6998114428322438, 0.7191783799678735, 0.7566715075843347, 0.7741630673610131, 0.692871858980435, 0.8706970297938403, 0.9226518689226377, 0.619213859232465, 0.9620625840847012, 0.8161066853745392, 0.7984578805051198, 0.8987836568806694, 0.27900511725120763, 0.747868261422589, 0.8013372150606806, 0.4430395412241901, 0.8082746512504794, 0.9248395818955686, 0.8132668978866627, 0.7926355964369082, 0.7243101498981422, 0.8251498778038484, 0.865753667016409, 0.8784859927081519, 0.9613966942665844, 0.8380103992838959, 0.9376908870460701, 0.8505645904112248, 0.5317253080143199, 0.8756470416862959, 0.8823120896825394, 0.8920529250761863, 0.9565288857220365, 0.92576324319171, 0.8397457208604353, 0.8008835764985612, 0.7620555647282774, 0.6333567796033132, 0.8986985644274655, 0.8289197139212982, 0.38568054861828666, 0.4358764146033148, 0.7013568331933456, 0.5524769805317635, 0.8654015550049637, 0.9625385348003681, 0.4997035751430624, 0.5940434106189647, 0.29640429037896177, 0.9370396801623051, 0.7496358493500708, 0.8521916566704996, 0.7519935213994349, 0.8956127660014477, 0.7563308848917781, 0.5425355780301907, 0.1652985164032473, 0.5777375433929663, 0.5926841497777402, 0.5247451599628447, 0.6215406511606532, 0.646742228322253, 0.5236567091352762, 0.8105889943537302, 0.7614647275399787, 0.7272264480694343, 0.44438282424164377, 0.8051848688934031, 0.253979247575754, 0.8737269176380216, 0.7884186533408385, 0.5226162157005312, 0.7776146375974927, 0.8021344726910251, 0.6794204065079696, 0.8398669626756513, 0.3743394998756179, 0.6593725303534554, 0.41008410759983227, 0.8726624594592295, 0.31336232876890546, 0.6187135046228962, 0.9208146539756937, 0.8948907807194619, 0.9475948217130945, 0.7098971478357265, 0.41970311630379203, 0.5524505095188592, 0.6689295490636696, 0.39534528644804523, 0.6686700461744643, 0.6608417181144597, 0.6289006219381473, 0.8112353209803558, 0.9675531845963172, 0.3468688843876404, 0.8171815196180959, 0.9315945487332388, 0.7612383340144859, 0.43979370974717685, 0.9452166580978265, 0.810349906376065, 0.4979189466877109, 0.9054024939516333, 0.7506263221664519, 0.8595966107872783, 0.9041757536760852, 0.5120166815330335, 0.9246344940597735, 0.622364539475366, 0.7975959936185795, 0.9376528402833735, 0.8270495791839716, 0.7463426393970082, 0.8508295060861325, 0.5277539611022016, 0.7926521549058593, 0.8343380415579561, 0.7973631232158779, 0.5423298306356671, 0.6253812669856891, 0.9342151247863544, 0.9064095870896521, 0.8428584418618921, 0.5680191878381406, 0.8230633503438987, 0.857993972512287, 0.8312116035859974, 0.8886868130574391, 0.5695902702544526, 0.8750573328895943, 0.47134086624147714, 0.6082670858563528, 0.8571520978358925, 0.7006810412396262, 0.6001343818465046, 0.8680196363335714, 0.7833148206731655, 0.835330250744176, 0.6883000602161935, 0.4297997702781997, 0.7132181587745201, 0.941909753873568, 0.9298379484442667, 0.8950633078112005, 0.9652574497835966, 0.8593048115498744, 0.23022113319019433, 0.5548683876071567, 0.8789570823277312, 0.7176343272433334, 0.7135972690872326, 0.900955402304434, 0.89110615578316, 0.8021344726910251, 0.36734125225010755, 0.9233813125795639, 0.9269988231022361, 0.6021478506882372, 0.27064660283581765, 0.7595966254948197, 0.5317253080143199, 0.9626288904553877, 0.518871521713375, 0.4244151934213653, 0.8784852709235653, 0.667697582798242, 0.6791650855490978, 0.8659372985570389, 0.5217980090164113, 0.9757802673562255, 0.20769640873195563, 0.6900575067285889, 0.15051833553221247, 0.8476988333501053, 0.12043274000614122, 0.6546311715671466, 0.412102187638673, 0.6339696776630096, 0.6925917751558638, 0.8074446941396305, 0.8417042066658985, 0.4702054036006336, 0.8107456318417504, 0.934253622333564, 0.9671353887875448, 0.3776875782453083, 0.5133306968464912, 0.8279918435672958, 0.7295730380004212, 0.8398957027397556, 0.7470826509089123, 0.7722124156410631, 0.3944809481034696, 0.5801047158883857, 0.7134138458261836, 0.8265590446981121, 0.5836238058504062, 0.7538957359152121, 0.9708936701567454, 0.41507295289487073, 0.9039211350062085, 0.5109703825452502, 0.8880660412534, 0.6332514250278477, 0.703270618172154, 0.863031725372896, 0.9601349291832292, 0.5845797646527732, 0.8357575010967041, 0.9584406458449958, 0.8733333206292072, 0.4740801794177068, 0.5787650908025566, 0.38525623454815555, 0.5715075300165849, 0.951253157591183, 0.831291834366621, 0.6482062646591596, 0.5447536045265621, 0.8456825404777587, 0.5358725178581014, 0.8893400405584444, 0.5955893395860203, 0.9408369636189147, 0.7580589814818564, 0.4244151934213653, 0.7636885291754726, 0.9532052815091139, 0.6686700461744643, 0.39683939049776734, 0.8309978518015588, 0.06774730328187532, 0.8934061610794648, 0.9459413258233057, 0.8507977517004935, 0.9694554821790147, 0.8640493534313302, 0.8409166048571896, 0.9059760843724536, 0.7278052027863667, 0.8952246802917138, 0.39534528644804523, 0.9558702864115934, 0.9178754126151818, 0.7504628435478695, 0.7568870052952757, 0.32046258648166903, 0.9712495894387816, 0.7125870341029702, 0.8286889773580812, 0.929575727770858, 0.8422483936479932, 0.60065365322741, 0.5775074082600717, 0.7505976846167132, 0.5317253080143199, 0.9590110623565244, 0.9651712957082627, 0.7333643603414158, 0.7757825668725274, 0.8928390517037824, 0.2578168736401774, 0.5355488836719776, 0.8408692583280314, 0.7849780542174357, 0.8711681462620556, 0.8447990405440073, 0.9571933326515756, 0.9307123551507692, 0.6421242495412457, 0.9239207054420927, 0.9336219461922934, 0.4244151934213653, 0.5673643045526261, 0.8301442064454496, 0.528471943574542, 0.8835542071774324, 0.8820947700128993, 0.4561713647735051, 0.584381944856391, 0.9493936477483658, 0.7816316980556022, 0.7770145472448273, 0.8495153837633861, 0.8318035560268552, 0.5220388622338656, 0.8589980209217414, 0.21216021099657945, 0.8782303617207965, 0.901850575196968, 0.7683760396387002, 0.9559989503713009, 0.938411491366706, 0.7225398931917507, 0.5918361617892179, 0.8596378534897678, 0.8816239240572568, 0.9296844522785247, 0.8299758417251202, 0.7538846798551382, 0.931253582726863, 0.6902425303942638, 0.9299571155275668, 0.35461708236434614, 0.6119587629530028, 0.8979450471026776, 0.8782891297971865, 0.6144930729026484, 0.5601837238662909, 0.4230258756549153, 0.5115702372514986, 0.6133200318312215, 0.8287048127179734, 0.42887934024879554, 0.5543929044930882, 0.5414149972460248, 0.7453725251924848, 0.6522898344923613, 0.6445138145159856, 0.9212190995841192, 0.6991293681294938, 0.9188224881967051, 0.9444881948020799, 0.8399825546316605, 0.6440269003431431, 0.45260210695563535, 0.6678228102737954, 0.8535669746933884, 0.23469888428232324, 0.7581156815660375, 0.8329520097124233, 0.5886389680190937, 0.4250130050586104, 0.290761161529129, 0.9065968169685268, 0.39757013049667705, 0.9584529405260903, 0.24804178200132845, 0.8400605958344816, 0.9562762484868867, 0.5923100188758571, 0.5355488836719776, 0.6866862751474886, 0.753715093249364, 0.9302702282582556, 0.8405005145861136, 0.7758456574858743, 0.8270123797965384, 0.9270997487744173, 0.8779999285967196, 0.6350604679157676, 0.9057987369792326, 0.9732730617650076, 0.28007269673131574, 0.5393237551960537, 0.9509318156255189, 0.8055358405733448, 0.8512314640165554, 0.6752183046546253, 0.9766791413071304, 0.26893819095773785, 0.5105552073939665, 0.7964242570425004, 0.9159462749375985, 0.46312559485344046, 0.7889853219989779, 0.5331772070153998, 0.6250130361556073, 0.5340700079782073, 0.8981158701031157, 0.8424802355113449], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [0.78, 0.48, 0.33, 0.45, 0.47, 0.5, 0.51, 0.54, 0.67, 0.57, 0.49, 0.5, 0.52, 0.37, 0.57, 0.48, 0.38, 0.61, 0.81, 0.28, 0.72, 0.46, 0.49, 0.51, 0.66, 0.38, 0.52, 0.49, 0.4, 0.53, 0.44, 0.54, 0.46, 0.45, 0.51, 0.44, 0.48, 0.58, 0.41, 0.55, 0.38, 0.43, 0.81, 0.45, 0.41, 0.57, 0.61, 0.53, 0.5, 0.52, 0.7, 0.39, 0.34, 0.58, 0.49, 0.67, 0.65, 0.74, 0.35, 0.54, 0.74, 0.64, 0.47, 0.91, 0.47, 0.64, 1.34, 0.56, 0.56, 0.48, 0.69, 0.4, 0.46, 0.47, 0.37, 0.53, 0.52, 0.43, 0.46, 0.61, 0.39, 0.49, 0.42, 0.55, 0.37, 0.48, 0.44, 0.75, 0.42, 0.8, 0.34, 0.38, 0.7, 0.63, 0.73, 0.4, 0.34, 0.93, 0.46, 0.5, 0.43, 0.43, 0.48, 0.52, 0.46, 0.54, 0.7, 0.45, 0.41, 0.64, 0.46, 0.44, 0.75, 0.54, 0.46, 0.48, 0.67, 0.49, 0.48, 0.52, 0.37, 0.46, 0.6, 0.48, 0.54, 0.77, 0.48, 0.55, 0.54, 0.65, 0.4, 0.56, 0.63, 0.33, 0.48, 0.5, 0.7, 0.55, 0.4, 0.51, 0.42, 0.37, 0.31, 0.52, 0.63, 0.49, 0.52, 0.56, 0.54, 0.42, 0.34, 0.59, 0.72, 0.38, 0.52, 0.35, 0.4, 0.51, 0.46, 0.56, 0.57, 0.56, 0.68, 0.48, 0.5, 0.5, 0.38, 0.49, 0.38, 0.46, 0.6, 0.49, 0.38, 0.42, 0.58, 0.35, 0.31, 0.53, 0.45, 0.37, 0.39, 0.44, 0.61, 0.38, 0.52, 0.42, 0.4, 0.53, 0.59, 0.52, 0.57, 0.58, 0.5, 0.65, 0.49, 0.47, 0.46, 0.48, 0.78, 0.44, 0.52, 0.46, 0.45, 0.69, 0.3, 0.76, 0.46, 0.78, 0.33, 0.45, 0.61, 0.52, 0.64, 0.35, 0.47, 0.37, 0.57, 0.4, 0.5, 0.39, 0.46, 0.43, 0.47, 0.46, 0.45, 0.45, 0.64, 0.59, 0.39, 0.4, 0.51, 0.7, 0.37, 0.32, 0.82, 0.47, 0.45, 0.59, 0.63, 0.55, 0.72, 0.8, 0.52, 0.41, 0.5, 0.72, 0.88, 0.45, 0.52, 0.42, 0.64, 0.45, 0.42, 0.44, 0.44, 0.41, 0.41, 0.6, 0.58, 0.71, 0.65, 0.53, 0.68, 0.68, 0.49, 0.45, 0.56, 0.73, 0.44, 0.48, 0.5, 0.72, 0.41, 0.45, 0.53, 0.55, 0.68, 0.6, 0.54, 0.88, 0.53, 0.48, 0.38, 0.43, 0.88, 0.44, 0.39, 0.46, 0.28, 0.58, 0.5, 0.58, 0.52, 0.54, 0.58, 0.65, 0.42, 0.37, 0.51, 0.58, 0.46, 0.61, 0.7, 0.63, 0.5, 0.29, 0.53, 0.35, 0.58, 0.49, 0.58, 0.63, 0.62, 0.39, 0.56, 0.44, 0.46, 0.48, 0.64, 0.38, 0.61, 0.58, 0.5, 0.76, 0.52, 0.4, 0.51, 0.63, 0.48, 0.46, 0.56, 0.45, 0.5, 0.53, 0.55, 0.51, 0.51, 0.39, 0.37, 0.45, 0.45, 0.58, 0.6, 0.48, 0.63, 0.73, 0.49, 0.78, 0.37, 0.76, 0.56, 0.49], \"xaxis\": \"x2\", \"y\": [0.8142007211296887, 0.07257977436397642, 0.7430932382113554, 0.8214862427787604, 0.5698848321031316, 0.6048119589659149, 0.6466669219762841, 0.14510080060429495, 0.2250304680670007, 0.28492472637839966, 0.42061632734231896, 0.8281252124183194, 0.49622399336621903, 0.3482895521074759, 0.4678833354511545, 0.5708968386647719, 0.37048677721847617, 0.553632248395139, 0.8702137350251022, 0.42186952587750404, 0.8696774950675754, 0.5410576963494411, 0.3971326977900686, 0.3275001196198921, 0.9448289227093116, 0.7109941475090589, 0.41925580570138304, 0.3675472469853882, 0.6721911818800557, 0.5562207270314473, 0.5262426608517637, 0.3244609607385458, 0.15056615442564347, 0.15676979724311627, 0.6037730696030339, 0.6342511279653397, 0.021947035536558718, 0.32429164429335744, 0.5678746850743716, 0.3571680467137555, 0.7755534309390314, 0.3240287891037917, 0.699424662214302, 0.5151532452376618, 0.7564675819717819, 0.38343591026479057, 0.19811005648518398, 0.3168419703358067, 0.5315947262677626, 0.9269044449273315, 0.8260225289794664, 0.451791899378283, 0.830516920403184, 0.47128602930186, 0.19027823806377472, 0.5181346713949518, 0.29552777318700446, 0.45414400334446664, 0.39329840463575844, 0.42327932510626076, 0.45838907164509224, 0.2233864252642039, 0.3628419195926303, 0.6709353200988277, 0.46058046365566996, 0.25551237833043455, 0.7234147543269824, 0.1481282262733752, 0.314935793994079, 0.20050531530561894, 0.37453315488553635, 0.701015529968035, 0.6343341418527783, 0.1739320900588749, 0.734996253073231, 0.8172229478314255, 0.3598554146739685, 0.7121055211356295, 0.2620604909731644, 0.3421138035730516, 0.6951268813066005, 0.35208221297891723, 0.452099210446082, 0.18907620085798427, 0.5444201651108793, 0.6484058972837882, 0.3258186925596978, 0.5963383680780668, 0.6202666247822538, 0.576738593946626, 0.5054992484109841, 0.2972245631729925, 0.6844333356791464, 0.42629475072919953, 0.4405153833121037, 0.01207867704715336, 0.7609288944606691, 0.23951123982998349, 0.09310514674080905, 0.5084920166510624, 0.33067609257366243, 0.36481899584296196, 0.5708968386647719, 0.3194802059637459, 0.14207297841267416, 0.5776897120055972, 0.2026163425795633, 0.37909000048748537, 0.38206764842015895, 0.41324683104354176, 0.17826143731067332, 0.42339414872454434, 0.39148091864802853, 0.3511350413575442, 0.8053393751847749, 0.5937005322868365, 0.6849942580153355, 0.38930033076762494, 0.5168500865319015, 0.5699073288866824, 0.5376087249833421, 0.8185832461647057, 0.25950508036415604, 0.20394483716883388, 0.3303044530853749, 0.2528102968078532, 0.8477719856767125, 0.5217124250004609, 0.3303044530853749, 0.5382885532339231, 0.9625763866028243, 0.6536174904341296, 0.42629475072919953, 0.6458781618432388, 0.46574001023909845, 0.37268733756108086, 0.8180085473348132, 0.35493594975273335, 0.2423640089427935, 0.3636330633241046, 0.6421622311157122, 0.5444201651108793, 0.7396308412796291, 0.9036153464846048, 0.21101569987323432, 0.6004024464464508, 0.7595861882737439, 0.486549602332862, 0.2379839758891197, 0.5147825233229498, 0.2065932277190248, 0.4342628292980428, 0.5940848250235929, 0.4857193175270624, 0.5332610244722983, 0.5402196969638672, 0.8578846895389459, 0.5290225674595067, 0.6074669506688956, 0.1847839155105034, 0.3581391437324269, 0.4304380754474639, 0.8410120374942113, 0.5810086483513661, 0.19026233744636453, 0.7223494520380469, 0.8589928738613049, 0.8374625942163022, 0.781203852328267, 0.73983195178881, 0.41156537259256004, 0.7482873396984137, 0.44431713201158524, 0.7113673874393347, 0.49869552495399233, 0.7627102864663872, 0.37193390769028617, 0.37187810520956766, 0.3773291605703562, 0.8719651627687759, 0.6218762459828849, 0.3781393537983126, 0.553632248395139, 0.47624084907999176, 0.774399353278846, 0.5840424935194366, 0.5601025471409736, 0.6186690618327106, 0.620611700356168, 0.5755798886129706, 0.15047650536569443, 0.5530049338021776, 0.6597439619439023, 0.8300222117931148, 0.3490158529243493, 0.4410646109528086, 0.5067909967309752, 0.5851482063434866, 0.7149827463187939, 0.4849259975950144, 0.2094210588097294, 0.33399024531412796, 0.4083143545243069, 0.7497022835596558, 0.7817929239213606, 0.7637421953724776, 0.3825655414920891, 0.6611482494098961, 0.19022241257108333, 0.44972084577511023, 0.5476732603321269, 0.4831274653996314, 0.5077048340566679, 0.7289504589448288, 0.4379810490617926, 0.8017221455714771, 0.6434673631716396, 0.5059779734745421, 0.6065367192264559, 0.650368705032214, 0.34567471266024347, 0.39561589000187136, 0.3427787545601037, 0.4676404271158623, 0.5332283386400669, 0.4519108142444285, 0.40662831629925006, 0.42305576187259053, 0.22032895172816622, 0.5278715769330472, 0.43679486629948455, 0.743933429392776, 0.5269515041023835, 0.5008800654866953, 0.214168174561682, 0.44879088851457377, 0.683485355417811, 0.807753104897186, 0.42629475072919953, 0.8502951424821861, 0.17421175568219957, 0.25491371883486935, 0.7595861882737439, 0.6571724132942184, 0.7813188949129265, 0.5626906653340306, 0.8674288259883418, 0.6600514650598344, 0.4827749661719035, 0.5456147119159479, 0.39827550056677263, 0.27323823737433794, 0.695896529362927, 0.5048820477254727, 0.5422349097465021, 0.5610936746718964, 0.6571724132942184, 0.3088751107498249, 0.45428761266464013, 0.6604471727860799, 0.43371621376298963, 0.6171893197168647, 0.8100511550343341, 0.8100511550343341, 0.605832578461134, 0.5526475584669951, 0.4275055171336787, 0.8734720021260204, 0.8508295378350301, 0.5807723706867254, 0.8272749548927728, 0.2670652478909882, 0.7020144194675465, 0.4615566916191992, 0.7055847950248242, 0.43389869234556755, 0.6071692164257629, 0.3496825637352313, 0.23676491619791426, 0.7057755976874825, 0.15539001443149586, 0.6187538615870153, 0.8735882828904331, 0.30049486749739024, 0.23191705420611952, 0.8913917397916864, 0.4977157214618499, 0.16961113509580228, 0.8485494795219795, 0.4760032757956232, 0.5053843099270294, 0.2676015269871764, 0.3627664421236291, 0.15146266807038725, 0.7898179638281774, 0.6145296307645981, 0.3790380236797623, 0.3003532640340299, 0.6086112016774773, 0.39906793889171593, 0.8185832461647057, 0.6715802865662828, 0.8260225289794664, 0.6056902064850618, 0.400132762133902, 0.39471961640683584, 0.6449859309106076, 0.5637152910565628, 0.39949420960438964, 0.5490401551410112, 0.4398875418860128, 0.30916577334906253, 0.7093303227687476, 0.4562508424819209, 0.40444044759428516, 0.5773483646962835, 0.447777692034652, 0.4961542215384683, 0.32474312180562226, 0.21192693199409943, 0.9056903490933487, 0.5013816399998683, 0.758876109553896, 0.6364928148646596, 0.2952804752502578, 0.4748951900520853, 0.43679486629948455, 0.5479962315186364, 0.4728142838839701, 0.6343341418527783, 0.12248807650217919, 0.5052525886146573, 0.8281252124183194, 0.8930081609652758, 0.36283726088930296, 0.8098196742550625, 0.656477404357746, 0.193885049884708, 0.5269515041023835, 0.49858469647139786, 0.32780472036158087, 0.24927512797396847, 0.6148718578314069, 0.10691527318901187, 0.136775438340409, 0.8489192718114075, 0.2600203086082801, 0.8142007211296887, 0.5269515041023835, 0.7966615933629455, 0.5633234794197017, 0.767479452333631], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"sulphates\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"sulphates\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}, \"sulphates_bad\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (ref)\", \"type\": \"scatter\", \"x\": [0.42, 0.41, 0.41, 0.58, 0.51, 0.54, 0.57, 0.67, 0.5, 0.49, 1.17, 0.63, 0.4, 0.42, 0.43, 0.43, 0.6, 0.48, 0.5, 0.49, 0.45, 0.36, 0.6, 0.47, 0.81, 0.65, 0.5, 0.62, 0.5, 0.43, 0.56, 0.55, 0.55, 0.78, 0.44, 0.46, 0.36, 0.35, 0.63, 0.42, 0.48, 0.68, 0.46, 0.43, 0.5, 0.5, 0.47, 0.52, 0.64, 0.62, 0.57, 0.5, 0.38, 0.44, 0.6, 0.51, 0.43, 0.57, 0.52, 0.88, 0.57, 0.47, 0.52, 0.39, 0.48, 0.45, 0.6, 0.45, 0.64, 0.37, 0.32, 0.58, 0.46, 0.5, 0.38, 0.42, 0.38, 0.7, 0.58, 0.48, 0.5, 0.54, 0.47, 0.43, 0.62, 0.56, 0.44, 0.32, 0.29, 0.39, 0.58, 0.38, 0.66, 0.46, 0.44, 0.48, 0.4, 0.58, 0.48, 0.5, 0.47, 0.65, 0.64, 0.55, 0.53, 1.31, 0.43, 0.34, 0.57, 0.44, 0.62, 0.4, 0.56, 0.44, 0.64, 0.49, 0.5, 0.62, 0.57, 0.38, 0.46, 0.6, 0.51, 0.29, 0.49, 0.5, 0.67, 0.55, 0.59, 0.5, 0.28, 0.64, 0.4, 0.49, 0.49, 0.42, 0.35, 0.54, 0.45, 0.51, 0.53, 0.5, 0.34, 0.5, 0.48, 0.4, 0.66, 0.38, 0.56, 0.7, 0.52, 0.53, 0.42, 0.61, 0.39, 0.5, 0.95, 0.39, 0.39, 0.28, 0.36, 0.6, 0.57, 0.48, 0.39, 0.46, 0.48, 0.54, 0.57, 0.42, 0.51, 0.39, 0.49, 0.8, 0.67, 0.53, 0.47, 0.57, 0.59, 0.39, 0.49, 0.48, 0.5, 0.47, 0.46, 0.36, 0.59, 0.36, 0.52, 0.47, 0.44, 0.56, 0.6, 0.4, 0.54, 0.49, 0.54, 0.53, 0.68, 0.41, 0.71, 0.75, 0.75, 0.57, 0.73, 0.43, 0.39, 0.5, 0.58, 0.31, 0.42, 0.49, 0.44, 0.43, 0.56, 0.47, 0.53, 0.29, 0.48, 0.29, 0.47, 0.39, 0.6, 0.44, 0.38, 0.52, 0.38, 0.66, 0.51, 0.52, 0.43, 0.43, 0.44, 0.51, 0.66, 0.35, 0.53, 0.37, 0.61, 0.63, 0.71, 0.53, 0.52, 0.48, 0.39, 0.57, 0.55, 0.52, 0.39, 0.6, 0.67, 0.47, 0.55, 0.47, 0.51, 0.51, 0.79, 0.32, 0.58, 0.49, 0.41, 0.62, 0.38, 0.4, 0.43, 0.34, 0.6, 0.43, 0.97, 0.54, 0.43, 0.67, 0.55, 0.58, 0.45, 0.58, 0.48, 0.54, 0.38, 0.52, 0.52, 0.66, 0.49, 0.6, 0.35, 0.52, 0.64, 0.39, 0.39, 0.41, 0.62, 0.69, 0.37, 0.48, 0.48, 0.98, 0.52, 0.49, 0.46, 0.59, 0.73, 0.44, 0.53, 0.49, 0.53, 0.38, 0.61, 0.56, 1.05, 0.47, 0.4, 0.48, 0.66, 0.48, 0.99, 0.43, 0.51, 0.61, 0.56, 0.65, 0.63, 0.5, 0.44, 0.59, 0.46, 0.4, 0.84, 0.7, 0.51, 0.46, 0.5, 0.62, 0.51, 0.69, 0.45, 0.57, 0.45, 0.64, 0.4, 0.5, 0.46, 0.5, 0.51, 0.51, 0.51, 0.65, 0.71, 0.48, 0.47, 0.56, 0.35, 0.57, 0.64, 0.63, 0.66], \"xaxis\": \"x\", \"y\": [0.7197707895473677, 0.05448058807241418, 0.5021256787650443, 0.4710854375480472, 0.7156076129280222, 0.7966690429773311, 0.7265425252145667, 0.16771266951545494, 0.610944103187451, 0.6324527530146118, 0.42180662537268765, 0.2598044700255929, 0.5503032830239416, 0.5632112185661304, 0.6840604465833231, 0.6224375641140001, 0.8071781895370533, 0.9515482366939344, 0.3994071349416132, 0.9677746238863042, 0.572587586261062, 0.7602674855798478, 0.861098734498427, 0.1386074727873, 0.6703360831713621, 0.8064003460928679, 0.3172728283240366, 0.8039094494444462, 0.9186426431335688, 0.6026275969807151, 0.8609701260317718, 0.3485833566260712, 0.3005246278528939, 0.2859113263741919, 0.4978204971029292, 0.5125675444128744, 0.4268860326359044, 0.11791793574572085, 0.440027850275134, 0.4938434408506086, 0.4933189622152446, 0.166194347192407, 0.30200278364192557, 0.6822425768461728, 0.8693180940701344, 0.24112389044610405, 0.43189370387303117, 0.284455178085937, 0.23793737479647703, 0.5535561322468214, 0.7900402576908969, 0.47373775892899717, 0.6055733033081183, 0.7462675017011632, 0.32245623572553406, 0.7612367841042231, 0.36308410170653527, 0.6103993963703384, 0.3965676277125745, 0.2230008284200371, 0.8480025164595866, 0.43585875500482685, 0.24095331994381775, 0.4030652094068704, 0.8951637220162157, 0.2782175630406618, 0.7337660836226194, 0.8352762102164887, 0.6223987562306759, 0.2928263700360406, 0.6563137004068428, 0.16155652477357085, 0.6364666355122575, 0.2186811050870735, 0.27206300237801306, 0.4358901152617537, 0.6136035252376228, 0.07900866299327158, 0.8522855318359817, 0.11906253414448076, 0.3466831105240652, 0.11265227152414181, 0.6302693732121377, 0.7168097665217413, 0.4796298258249143, 0.4476252306691143, 0.3612478268219491, 0.611861930499026, 0.15121036728507153, 0.5363393546692182, 0.16155652477357085, 0.441733396330222, 0.7834276811132227, 0.6364666355122575, 0.44873286860252337, 0.4948960601400133, 0.4172084246960842, 0.5055831714989107, 0.5269082808529498, 0.3737404408311804, 0.4491757516278906, 0.5266720849021, 0.2882430633103308, 0.6066213483726142, 0.83534933450756, 0.2509605867776752, 0.230738949997912, 0.25680675940048736, 0.6858999083789018, 0.27626495444752697, 0.35158671089680515, 0.311480105980391, 0.5950329577300569, 0.4196263877039489, 0.3672198477254309, 0.5488429300958864, 0.6273126624389191, 0.0990306898864649, 0.935036100419004, 0.5556828679884147, 0.6003916802566726, 0.1337843055401957, 0.6898191889393818, 0.46604488826349566, 0.6668872608045229, 0.5998672378660981, 0.14712454771937833, 0.8558065212045691, 0.883276495704891, 0.5544329747085402, 0.38398791005853006, 0.8623310715459079, 0.4482795971615686, 0.4767821080964978, 0.6451659669426603, 0.5099786295438409, 0.11454219273407718, 0.5691587732433696, 0.2398813672346335, 0.8592796956842923, 0.38133093816728936, 0.4754945767078651, 0.2673740541283356, 0.43092180164799054, 0.5981491184574936, 0.7512253043619477, 0.20474988026063612, 0.12337786436138054, 0.6965484670033051, 0.4642254518352117, 0.29034758521725457, 0.7912282271603185, 0.1364389858241727, 0.5326323768611896, 0.3938848007926149, 0.886984727126295, 0.5955398539691413, 0.3667393936023857, 0.35129461810907203, 0.578130474122496, 0.1952086434691429, 0.6982941690158907, 0.6159300986783536, 0.6650580695700093, 0.8007006003287879, 0.13750802167619447, 0.47121416359091395, 0.5691587732433696, 0.5295784007050042, 0.4938434408506086, 0.4240508430342457, 0.1531205555636086, 0.7965770364050346, 0.4829168465516456, 0.6333246955344933, 0.38682769986244625, 0.5589353890471914, 0.30965836575156913, 0.6133571507425741, 0.5363393546692182, 0.5474540697204298, 0.9680074395956593, 0.29703705077451537, 0.7566858385458134, 0.451244026180727, 0.6224939697452743, 0.9340693900855184, 0.1254375450851024, 0.770680513376406, 0.7273231109206828, 0.410671569380914, 0.19928392436820586, 0.44743622108127745, 0.4991477681643879, 0.5443787589855091, 0.826082779912576, 0.5642536294664222, 0.6762559922350657, 0.39283078357423706, 0.3074847569358159, 0.40732461839200396, 0.5614584986504241, 0.5614584986504241, 0.575628870274347, 0.1938881144566701, 0.6480440770440566, 0.23946299348505806, 0.6110142157087575, 0.32489046344192996, 0.127020290619695, 0.28948900574123104, 0.27970970921902805, 0.5179212029104148, 0.579807192000203, 0.5695619245525361, 0.7471497674522103, 0.6761943115269239, 0.6052803835931642, 0.9048996801452402, 0.632953623191418, 0.7849920634816455, 0.12946409768986655, 0.3899257470968539, 0.37735505673750047, 0.27206300237801306, 0.6356505945299911, 0.9000798247851504, 0.5852448485124296, 0.3537739535016634, 0.8589709040748648, 0.5105041430354158, 0.4760479563081992, 0.3915586115462193, 0.4344526143297297, 0.04825794875232026, 0.25106204840173363, 0.5352062615150248, 0.2084678736174792, 0.5588772074146924, 0.42656597432725707, 0.3395528272139201, 0.5154796814541086, 0.30312695461308037, 0.4684625037801391, 0.13140485141127656, 0.37575572516499556, 0.7087902803012941, 0.22740617784346517, 0.7932370230268412, 0.6977827466507267, 0.8687065743771458, 0.3532210556477622, 0.3005246278528939, 0.8817461779308045, 0.5897758288136841, 0.5117334773877459, 0.2267712913026929, 0.7462523759498982, 0.5055831714989107, 0.6276122794572256, 0.34766968675436505, 0.563322001169588, 0.4035281086421867, 0.44827723495654004, 0.7588644006503809, 0.17560197311170134, 0.2736156405730563, 0.5646478519097824, 0.12788772013874206, 0.8127608550985441, 0.35130933230290007, 0.8842329534318195, 0.5671758377024384, 0.508518787579709, 0.4735654621913231, 0.6614347321502836, 0.7032589073748752, 0.418601168771625, 0.40262233345395115, 0.38045938978299354, 0.6221728234115828, 0.6769388667590319, 0.825791915264051, 0.8036522945246104, 0.5350776523934957, 0.5038683203672731, 0.4187790963850706, 0.3942708224564714, 0.36585282612655, 0.42973128126448334, 0.1395024853671747, 0.36909778672938764, 0.5126700875045708, 0.31128511290513083, 0.5841805470690385, 0.42932394036482613, 0.5168725346003686, 0.9331527243268325, 0.5090935678835011, 0.848083892739094, 0.7288594688776423, 0.23463814542978878, 0.9073343486287574, 0.5445649372592127, 0.8030108083542629, 0.30698149193503155, 0.47724620771884374, 0.49565431290071005, 0.29179072192325783, 0.53941953634433, 0.32642767658125227, 0.5714063949384225, 0.6769388667590319, 0.48314991346809855, 0.3838692085325581, 0.7654355578102645, 0.6807995217458978, 0.7803105409218809, 0.4971816769068883, 0.5662837862370104, 0.32557907866588853, 0.4059739580227363, 0.8621668957327787, 0.4863555612469991, 0.44913520001249685, 0.5044088987161788, 0.018560580499064172, 0.17397747102053363, 0.8203404366189, 0.531551035274026, 0.3951880410340851, 0.6710839680909022, 0.7545393605546251, 0.25029771644034415, 0.31651464458218903, 0.7900402576908969, 0.7649542174153934, 0.6282404390050247, 0.5124469561170844, 0.7501741577575001, 0.3717170374651112, 0.5479204837841629, 0.1799627586960565, 0.8716748635647116, 0.4700369344869263, 0.7044722268129955, 0.7597806244765397, 0.4570971226262448, 0.3688130253756654, 0.5854022956087224, 0.6067015953642416, 0.6092966434658947, 0.5713009051869427, 0.15316343939585397, 0.31191498773739224], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [0.42, 0.54, 0.53, 0.49, 0.54, 0.54, 0.53, 0.5, 0.38, 0.38, 0.34, 0.54, 0.37, 0.44, 0.67, 0.45, 0.37, 0.68, 0.48, 0.34, 0.56, 0.59, 0.42, 0.4, 0.32, 0.54, 0.4, 0.35, 0.4, 0.39, 0.42, 0.65, 0.39, 0.9, 0.63, 0.48, 0.55, 0.41, 0.53, 0.75, 0.38, 0.44, 0.71, 0.41, 0.49, 0.4, 0.47, 0.45, 1.13, 0.37, 0.37, 0.58, 0.41, 0.47, 0.54, 0.38, 0.48, 0.32, 0.29, 0.58, 0.57, 0.48, 0.41, 0.51, 0.68, 0.59, 0.39, 0.35, 0.46, 0.22, 0.64, 0.26, 0.4, 0.51, 0.69, 0.46, 0.86, 0.33, 0.75, 0.32, 0.72, 0.36, 0.51, 0.46, 0.41, 0.72, 0.48, 0.91, 0.48, 0.67, 0.51, 0.58, 0.67, 0.52, 0.44, 0.4, 0.38, 0.42, 0.48, 0.62, 0.4, 0.46, 0.69, 0.64, 0.36, 0.5, 0.45, 0.42, 0.76, 0.56, 0.45, 0.38, 0.54, 0.76, 0.44, 0.53, 0.54, 0.5, 0.59, 0.85, 0.52, 0.61, 0.41, 0.53, 0.46, 0.54, 0.56, 0.53, 0.56, 0.96, 0.39, 0.83, 0.41, 0.85, 0.5, 0.34, 0.64, 0.6, 0.47, 0.74, 0.44, 0.46, 0.52, 0.59, 0.67, 0.62, 0.78, 0.36, 0.6, 0.35, 0.39, 0.68, 0.54, 0.43, 0.54, 0.53, 0.41, 0.41, 0.41, 0.43, 0.48, 0.58, 0.5, 0.96, 0.69, 0.5, 0.49, 0.33, 0.41, 0.33, 0.79, 0.59, 0.51, 0.39, 0.57, 0.38, 0.56, 0.54, 0.43, 0.69, 0.57, 0.48, 0.8, 0.43, 0.47, 0.5, 0.39, 0.64, 0.52, 0.51, 0.48, 0.63, 0.51, 0.46, 0.53, 0.38, 0.46, 0.55, 0.47, 0.5, 0.49, 0.71, 0.58, 0.89, 0.63, 0.81, 0.94, 0.41, 0.41, 0.46, 0.38, 0.54, 0.48, 0.46, 0.39, 0.6, 0.43, 0.48, 0.38, 0.63, 0.54, 0.39, 0.46, 0.6, 0.72, 0.49, 0.53, 0.78, 0.55, 0.44, 0.54, 0.41, 0.6, 0.56, 0.58, 0.48, 0.69, 0.57, 0.43, 0.4, 0.46, 0.48, 0.43, 0.54, 0.59, 0.39, 0.5, 0.49, 0.44, 0.42, 0.69, 0.49, 0.76, 0.83, 0.65, 0.4, 0.34, 0.45, 0.44, 0.57, 0.37, 0.42, 0.5, 0.76, 0.62, 0.41, 0.43, 0.57, 0.83, 0.48, 0.54, 0.49, 0.47, 0.57, 0.49, 0.46, 0.45, 0.85, 0.63, 0.46, 0.37, 0.37, 0.52, 0.58, 0.49, 0.73, 0.62, 0.46, 0.66, 0.35, 0.58, 0.59, 0.62, 0.43, 0.59, 0.4, 0.7, 0.42, 0.68, 0.58, 0.66, 0.58, 0.61, 0.42, 0.42, 0.85, 0.37, 0.64, 0.47, 0.56, 0.59, 0.42, 0.67, 0.79, 0.42, 0.67, 0.58, 0.42, 0.63, 0.46, 0.56, 0.64, 0.66, 0.79, 0.5, 0.67, 0.36, 0.69, 0.58, 0.49, 0.37, 0.44, 0.82, 0.61, 0.54, 0.52, 0.54, 0.78, 0.64, 0.53, 0.51, 0.33, 0.64, 0.72, 0.68, 0.41, 0.54, 0.55, 0.38, 0.46, 0.4, 0.66, 0.45, 0.51, 0.5, 0.5, 0.72, 0.37, 0.97, 0.38, 0.63, 0.43, 1.36, 0.84, 0.58, 0.49, 0.54, 0.38, 0.86, 0.52, 0.42, 0.53, 0.53, 0.34, 0.62, 0.34, 0.5, 0.6, 0.44, 0.62, 0.69, 0.46, 0.62, 0.55, 0.4, 0.54, 0.77, 0.77, 0.6, 0.45, 0.47, 0.45, 0.45, 0.41, 0.54, 0.66, 0.49, 0.42, 0.31, 0.54, 0.57, 0.58, 0.65, 0.67, 0.37, 0.53, 0.38, 0.53, 0.67, 0.37, 0.61, 0.49, 0.69, 0.44, 0.33, 0.48, 0.46, 0.59, 0.51, 0.4, 0.55, 0.49, 0.39, 0.39, 0.4, 0.4, 0.32, 0.42, 0.46, 0.47, 0.38, 0.63, 0.58, 0.44, 0.44, 0.34, 0.68, 0.66, 0.79, 1.02, 0.35, 0.41, 0.61, 0.36, 0.59, 0.46, 0.59, 0.56, 0.9, 0.42, 0.38, 0.42, 0.4, 0.51, 0.57, 0.6, 0.35, 0.61, 0.5, 0.38, 0.66, 0.59, 0.91, 0.5, 0.35, 0.68, 0.42, 0.48, 0.5, 0.9, 0.54, 0.6, 0.44, 0.47, 0.67, 0.25, 0.68, 0.54, 0.52, 0.46, 0.57, 0.61, 0.46, 0.64, 0.45, 0.38, 0.46, 0.54, 0.39, 0.56, 0.71, 0.58, 0.38, 0.72, 0.52, 0.49, 0.38, 0.5, 0.53, 0.6, 0.54, 0.31, 0.46, 0.44, 0.37, 0.52, 0.43, 0.45, 0.36, 0.44, 0.46, 0.47, 0.59, 0.46, 0.5, 0.39, 0.62, 0.54, 0.59, 0.57, 0.45, 0.43, 0.34, 0.51, 0.58, 0.36, 0.73, 0.72, 0.42, 0.38, 0.77, 0.6, 0.44, 0.54, 0.42, 0.67, 0.53, 0.96, 0.54, 0.64, 0.55, 0.39, 0.6, 0.48, 0.44, 0.43, 0.65, 0.36, 0.51, 0.59, 0.67, 0.43, 0.64, 0.84, 0.49, 0.62, 0.4, 0.56, 0.61, 0.54, 0.54, 0.49, 0.51, 0.53, 0.73, 0.33, 0.37, 0.59, 0.4, 0.55, 0.47, 0.53, 1.06, 0.49, 0.65, 0.4, 0.43, 0.47, 0.59, 0.45, 0.43, 0.6, 0.42, 0.93, 0.38, 0.53, 0.53, 0.52, 0.61, 0.62, 1.95, 0.35, 0.48, 0.39, 0.57, 0.68, 0.49, 0.92, 0.49, 0.58, 0.47, 0.9, 0.5, 0.53, 0.92, 0.5, 0.74, 0.41, 0.49, 0.41, 0.34, 0.69, 0.55, 0.77, 0.38, 0.72, 0.59, 0.4, 0.73, 1.36, 0.77, 0.58, 0.66, 0.6, 0.58, 0.5, 0.79, 0.36, 0.5, 0.62, 0.44, 0.56, 0.5, 0.56, 0.46, 0.53, 0.78, 0.5, 0.65, 0.58, 0.53, 0.98, 0.44, 0.46, 0.95], \"xaxis\": \"x\", \"y\": [0.18439386755371057, 0.5750868907731637, 0.1132172353536568, 0.19850047615697952, 0.6950004168934912, 0.41826441672946313, 0.040828937665112974, 0.2145583871630251, 0.09143093017991866, 0.10013996234885614, 0.3658834999306372, 0.587897812361327, 0.23563705889496211, 0.5289998061994394, 0.5981734696485812, 0.5956194363709464, 0.11295199838815062, 0.6349332021584286, 0.09356782907078887, 0.0672754654033908, 0.3541579814831264, 0.11781588709523827, 0.3295981493457443, 0.23443288181779365, 0.13830133810679424, 0.5122546205578999, 0.03626449638205209, 0.32057959349203036, 0.3955164844050859, 0.21320459763992916, 0.08620177311633537, 0.4132497936565127, 0.19514157099220286, 0.028148892894647393, 0.03728071159582558, 0.20213762816504022, 0.39088790332760825, 0.10566618212719892, 0.11466232649727714, 0.09544364959788487, 0.07351553674018241, 0.3657542344632553, 0.05859665738698361, 0.43634835962676355, 0.4827032077898804, 0.516310366273556, 0.6480037931050455, 0.21122004543372697, 0.030344760075157406, 0.22750344576024595, 0.18673438423788624, 0.5460909738859347, 0.0666291073587214, 0.320234954276134, 0.515425573770442, 0.5751179393061847, 0.3262180383913996, 0.12192585741802231, 0.6165939755266235, 0.09365914315081003, 0.44259853952477324, 0.31958523161407537, 0.09228899111547839, 0.22815273642701062, 0.5282447951108347, 0.7777719169155834, 0.13834506443323813, 0.29425092810710396, 0.5300870647699181, 0.031947521718024174, 0.1108646816717751, 0.053339747820140615, 0.14466174791529418, 0.25697560969337485, 0.3383868137798065, 0.30803904997837983, 0.03434255320493995, 0.08689109251212201, 0.46044782253877736, 0.0973761441498977, 0.3449058470623745, 0.024212367984770777, 0.11665042079727428, 0.3333970234137619, 0.1495417879159372, 0.0679784404121434, 0.2360052425084116, 0.39147703437781534, 0.04428683932015287, 0.5381556738404795, 0.4357341587922019, 0.11843845992675284, 0.28107964630818494, 0.06989794698232743, 0.2658605825653322, 0.22408104406272966, 0.15519213452661884, 0.09873339188795927, 0.10739713799337769, 0.4712507279726723, 0.31257930793611366, 0.6259141532505736, 0.1651629894813923, 0.13024327386797574, 0.08242409751896962, 0.55355901104019, 0.11256152515999429, 0.22124325125588817, 0.05838775174278421, 0.6734770756819889, 0.06919042490492266, 0.5773286546676725, 0.5693181878572973, 0.12726917141891614, 0.27983888222674136, 0.15690954109554833, 0.18593824584442387, 0.05432525584274117, 0.33273366741371935, 0.12435295831370408, 0.48112847828662497, 0.2959384652215836, 0.5042039768350125, 0.3749869638443927, 0.7258627386781167, 0.4806866421912115, 0.6234335830956541, 0.4191951896523489, 0.20821728825178332, 0.6343085651912675, 0.27674577061671146, 0.02140654255666985, 0.42849246998341506, 0.1817444030106703, 0.4551538855951942, 0.05087080041524106, 0.516641204200833, 0.6810720245435042, 0.08151744899857294, 0.4475169494323581, 0.03995706953508171, 0.2181819033834006, 0.20372897255157485, 0.24305701296248816, 0.5381556738404795, 0.2358485729609252, 0.051323642447754336, 0.1913631294907303, 0.32154631204965056, 0.31229802093755377, 0.3917329141436472, 0.39462053822053156, 0.3680669306910641, 0.5017894292511481, 0.32120711190509066, 0.0768019282386515, 0.1168769044932052, 0.31545143431826594, 0.12007957373947853, 0.08354361700756141, 0.2180731800932174, 0.7653011157176768, 0.05076221583963347, 0.11739077279846111, 0.3639458403519926, 0.4815918747301601, 0.35998732468747585, 0.457353694020342, 0.5520498791697908, 0.22168281241722143, 0.2132287846887433, 0.4763394582576197, 0.3040153802820409, 0.20749766415549342, 0.3316810644107503, 0.8126297477835096, 0.5749367295182395, 0.27274039590582944, 0.2685808245693546, 0.5172108675362206, 0.33506587713796443, 0.09616672688355288, 0.041108213935392324, 0.10548050716105373, 0.5016695616404938, 0.20022874051447226, 0.14220640128276774, 0.23772630779738468, 0.19606080251004787, 0.2603188495268066, 0.18846597668723208, 0.19827111133563302, 0.261548791893628, 0.4140325207077993, 0.8134796325151183, 0.12265695643958285, 0.6311167068993262, 0.13481820177301163, 0.0932384579037443, 0.14050160114126486, 0.2562249115981724, 0.08547750670655718, 0.08643201081848362, 0.19981675431015722, 0.31390222338706264, 0.06221739913672386, 0.06996303880871468, 0.30029370289300306, 0.4306817897420764, 0.6595343859760441, 0.2839408857911616, 0.20468539219890003, 0.1130196126722065, 0.2360017176902124, 0.13187147729288817, 0.42313120297864704, 0.06964897436687001, 0.1624399718171824, 0.17200815643270417, 0.07333105637055992, 0.2440137653363641, 0.4900110333069776, 0.3085554157386313, 0.03480496731142946, 0.12148031785507996, 0.15002971926037112, 0.5314247042003052, 0.2758453007685677, 0.2151852748992088, 0.2658605825653322, 0.29911225563077193, 0.6594110243744711, 0.49869782335001445, 0.16788254706683048, 0.11816213334465087, 0.08230909248122409, 0.13653212507346946, 0.25639170942272826, 0.06562233405876228, 0.23311900627036541, 0.3756616197417655, 0.46674395287949066, 0.3092684534350997, 0.8337319641197457, 0.8331457111467163, 0.2591056156836542, 0.4778687671024334, 0.2542440524586721, 0.5361036306539362, 0.07073721340803463, 0.4731688813159418, 0.5755848065786346, 0.356689463387698, 0.14225616860197343, 0.21837916002376445, 0.14466174791529418, 0.29899643271856946, 0.4757427727983842, 0.08126799884203029, 0.1296501822378736, 0.3286954654423938, 0.08620177311633537, 0.13855855420831553, 0.05543377339452393, 0.11917834098009661, 0.2613621884509647, 0.11269900223777074, 0.08429051026621415, 0.3393961441870107, 0.07031960314855146, 0.11356777592095357, 0.4853279864284006, 0.1279289285514792, 0.0584572339054259, 0.08612988585012649, 0.3472440907423937, 0.1248029959061332, 0.07502335399434323, 0.19827111133563302, 0.3424151534036639, 0.3065175956815872, 0.13808860398564737, 0.058092197534895806, 0.04082786106581715, 0.1602592849246841, 0.09156161599234125, 0.5036030690663805, 0.2640411824475748, 0.6468038092930676, 0.07201805208597656, 0.22470230804277058, 0.1334773721572423, 0.04847889440667685, 0.2685808245693546, 0.10911308148570098, 0.6764508967260475, 0.6280060594576413, 0.36761958218269275, 0.16019930342079847, 0.17605308658107655, 0.14078981831089854, 0.2384997092801764, 0.13117402490907393, 0.12818959986091483, 0.4161925244315118, 0.12435295831370408, 0.09814942480303201, 0.05480698563416486, 0.3746187330143109, 0.41092354232892336, 0.507894749900129, 0.5137929421583434, 0.08293523366016065, 0.2964416548030494, 0.15236141109070434, 0.4396941021426354, 0.41893931094950754, 0.09113953260801844, 0.10967473999240707, 0.055732078845942, 0.05640314085190745, 0.06176263301115803, 0.06427139521062619, 0.20386133178572885, 0.21597661143113533, 0.7486409492386699, 0.2610715902497083, 0.09465277491899493, 0.5556171757583562, 0.137718889647652, 0.1978940751503777, 0.08472590699531857, 0.356262641598029, 0.14596950445002987, 0.13865818299932142, 0.3088915816821678, 0.11516321289421916, 0.16121169033174265, 0.40573483691789825, 0.34308606282264, 0.36300204724896845, 0.17193414756867276, 0.035926383178341514, 0.34536882843285344, 0.4400180463892147, 0.5165194668234709, 0.23319834124303085, 0.9637923675569924, 0.2635599134550337, 0.6259141532505736, 0.12324962258280003, 0.1256037712827487, 0.1248029959061332, 0.11665042079727428, 0.29081136443782263, 0.12993062945549005, 0.20959981847797426, 0.12385816607190492, 0.16931651488884025, 0.2468284110987674, 0.6181879252747016, 0.3509541008179864, 0.08619429866610873, 0.09537770951135394, 0.8204393830764495, 0.2493836920976743, 0.10367142046182065, 0.11516383353466464, 0.07169627826225977, 0.5400384130096556, 0.2709141565803237, 0.16809050322974173, 0.3421981324687273, 0.812724325423183, 0.1326589750154965, 0.054670132935181304, 0.055346153509382656, 0.8039442695404772, 0.3276168958360183, 0.6561718697940482, 0.6214102617950452, 0.3046829516703813, 0.7853649284745584, 0.7303620793003476, 0.6719087507962026, 0.16000678121984613, 0.579612101366232, 0.6347749924714103, 0.41894393066564606, 0.06936532322770372, 0.28322834609079706, 0.343263893078516, 0.4450860003239352, 0.3090838478611311, 0.408095736797927, 0.11529682880263803, 0.13359771811640497, 0.2417229185475579, 0.10092265889692065, 0.8181934133883563, 0.3777834313813965, 0.8273808576462511, 0.18439353202429143, 0.5148786056082297, 0.11287077888712382, 0.16015059460472458, 0.29672938182784603, 0.36944561074938853, 0.2505850522824452, 0.8467591712977676, 0.3840267097226593, 0.261779448872241, 0.1645479955558209, 0.14631295673285594, 0.4248523287309329, 0.09222807982804315, 0.2121484308544801, 0.33273366741371935, 0.5470626312455473, 0.8294144697045585, 0.25206662215500397, 0.15998368749433245, 0.548322128117227, 0.3917329141436472, 0.15981565308588508, 0.23631147082452741, 0.21082920466209698, 0.1871387197916503, 0.24774693401855818, 0.1913242313933492, 0.16437448769677154, 0.07582203648947516, 0.032541140295091364, 0.06311143057978008, 0.5009235508757715, 0.12343879567504301, 0.445735807756371, 0.40322837553658053, 0.09397553936597514, 0.1598391281143201, 0.26702494168661406, 0.19782301216908982, 0.06831823449824892, 0.5451167746582685, 0.20142160156100697, 0.25747632252511843, 0.4257317671215596, 0.5062318064185062, 0.10278357133077332, 0.10857266292312517, 0.06223864817381186, 0.11377411494697365, 0.14082424186384768, 0.2589321903149734, 0.31776639873426016, 0.07983414941561229, 0.30174211068680845, 0.42532907678292176, 0.23734670470511587, 0.2862296469110084, 0.24790288035387664, 0.5526146374040077, 0.20425399436950087, 0.5166825128498294, 0.12415322942140417, 0.5310696157212036, 0.3866387435262121, 0.14313186082947948, 0.31648660326859934, 0.026792916001305622, 0.7856428374245099, 0.42383310375799566, 0.5944566396871084, 0.6256605001243821, 0.08813642250468567, 0.03544811528140901, 0.06935406654889886, 0.15751976448865512, 0.22608551288474832, 0.3127311228465576, 0.1409438166611655, 0.3285615524533705, 0.3591330499592894, 0.47964497307801546, 0.7143146030302826, 0.14223944449319303, 0.06929054967731618, 0.32120711190509066, 0.16913647442041335, 0.707286257884667, 0.3230684446475647, 0.7616845263358343, 0.4104900542879092, 0.10053249234255524, 0.1106599594415556, 0.1543174595222413, 0.46003879185641183, 0.3811350878514418, 0.07185070571861518, 0.23882593985771994, 0.5344976262521839, 0.11031385635331636, 0.09610989844306939, 0.4955559099445003, 0.07845190603324759, 0.30697262074812925, 0.12767551958037127, 0.4375661224395835, 0.07737023387634634, 0.15307682457740834, 0.05694427046787409, 0.09028836937410878, 0.4011292297732457, 0.6186146927451245, 0.11561676905211238, 0.0993047499370594, 0.08102401279833105, 0.8100206966555492, 0.10768932514586738, 0.15386113005635593, 0.4026560765644126, 0.045535707525545144, 0.08229583319403, 0.08227601457953415, 0.8241544781987433, 0.0759900855540333, 0.5147505197509459, 0.11103147778198663, 0.42144961755966015, 0.24880465403270857, 0.3112403223054312, 0.3282460941643247, 0.28312386083977936, 0.2865521931047814, 0.16537364909659502, 0.4284132019637321, 0.34116073112729894, 0.051142721309942685, 0.10794707492381372, 0.1108646816717751, 0.29201805921023904, 0.07365131996157204, 0.36851051207096197, 0.2556143611338999, 0.07392456180697715, 0.045535707525545144, 0.15025986810093994, 0.4395989822566938, 0.19636656988846957, 0.21018464628148859, 0.15085686628779282, 0.3429118439192298, 0.16104008564300487, 0.2055862423584408, 0.18673310211333727, 0.5528531989583015, 0.20219789553586287, 0.5807830339134155, 0.6112381610839525, 0.07515362639458067, 0.5722084734915175, 0.3654892991508686, 0.1991057466826236, 0.4912569401667811, 0.05850610073101081, 0.3077884117234785, 0.17038242498240874, 0.14066607718466684, 0.10248584652416493, 0.4022873718442217, 0.07205214632436985, 0.35142291824287475, 0.10941760034103376, 0.06679271580157364, 0.05675388891699207, 0.058987921856350156, 0.3660303223369904, 0.28790374422385034, 0.4158290962648631, 0.40710291595796666, 0.09934102670994882, 0.06362846635195196, 0.30921476208988685, 0.23242198019285765, 0.055541210656895434, 0.5297663836663529, 0.10744632778983743, 0.18410212910939194, 0.17721960751489196, 0.1962664672709783, 0.1617648996714035, 0.10584426414108294, 0.5203501665477333, 0.07365131996157204, 0.31578819840495265, 0.35364190165315845, 0.1707951928721818, 0.41655733121321636, 0.15801546378512366, 0.7568436608419439, 0.22368578646300386, 0.0609449253562836, 0.2225096762928218, 0.18587673368692093, 0.05559101133196209, 0.569598540521716, 0.08073228430722412, 0.15724041301590164, 0.12879141548479, 0.4306817897420764, 0.17998791969802397, 0.41280880088413996, 0.5723062335690389, 0.6457404130724687, 0.10420061808672998, 0.12564769853034463, 0.21795029564941848, 0.4720930498870375, 0.11304202998506685, 0.545112257205237, 0.14852188644910969, 0.17217029085021085, 0.336250902618187, 0.48671482860553816, 0.5093433434984792, 0.35847801144896685, 0.3008706318705062, 0.18494609259573758, 0.4199330463236065, 0.04162287990776414, 0.2633909944023186, 0.4252182303976608, 0.4684623303117058, 0.1925553058603695, 0.09610989844306939, 0.09129843496680234, 0.3302708189676917, 0.4199330463236065, 0.11927294568859859, 0.4864154015695107, 0.06472081497616611, 0.6387929002666255, 0.37932906694235924, 0.093713747684541, 0.20627971812824875], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (curr)\", \"type\": \"scatter\", \"x\": [0.78, 0.48, 0.33, 0.45, 0.47, 0.5, 0.51, 0.54, 0.67, 0.57, 0.49, 0.5, 0.52, 0.37, 0.57, 0.48, 0.38, 0.61, 0.81, 0.28, 0.72, 0.46, 0.49, 0.51, 0.66, 0.38, 0.52, 0.49, 0.4, 0.53, 0.44, 0.54, 0.46, 0.45, 0.51, 0.44, 0.48, 0.58, 0.41, 0.55, 0.38, 0.43, 0.81, 0.45, 0.41, 0.57, 0.61, 0.53, 0.5, 0.52, 0.7, 0.39, 0.34, 0.58, 0.49, 0.67, 0.65, 0.74, 0.35, 0.54, 0.74, 0.64, 0.47, 0.91, 0.47, 0.64, 1.34, 0.56, 0.56, 0.48, 0.69, 0.4, 0.46, 0.47, 0.37, 0.53, 0.52, 0.43, 0.46, 0.61, 0.39, 0.49, 0.42, 0.55, 0.37, 0.48, 0.44, 0.75, 0.42, 0.8, 0.34, 0.38, 0.7, 0.63, 0.73, 0.4, 0.34, 0.93, 0.46, 0.5, 0.43, 0.43, 0.48, 0.52, 0.46, 0.54, 0.7, 0.45, 0.41, 0.64, 0.46, 0.44, 0.75, 0.54, 0.46, 0.48, 0.67, 0.49, 0.48, 0.52, 0.37, 0.46, 0.6, 0.48, 0.54, 0.77, 0.48, 0.55, 0.54, 0.65, 0.4, 0.56, 0.63, 0.33, 0.48, 0.5, 0.7, 0.55, 0.4, 0.51, 0.42, 0.37, 0.31, 0.52, 0.63, 0.49, 0.52, 0.56, 0.54, 0.42, 0.34, 0.59, 0.72, 0.38, 0.52, 0.35, 0.4, 0.51, 0.46, 0.56, 0.57, 0.56, 0.68, 0.48, 0.5, 0.5, 0.38, 0.49, 0.38, 0.46, 0.6, 0.49, 0.38, 0.42, 0.58, 0.35, 0.31, 0.53, 0.45, 0.37, 0.39, 0.44, 0.61, 0.38, 0.52, 0.42, 0.4, 0.53, 0.59, 0.52, 0.57, 0.58, 0.5, 0.65, 0.49, 0.47, 0.46, 0.48, 0.78, 0.44, 0.52, 0.46, 0.45, 0.69, 0.3, 0.76, 0.46, 0.78, 0.33, 0.45, 0.61, 0.52, 0.64, 0.35, 0.47, 0.37, 0.57, 0.4, 0.5, 0.39, 0.46, 0.43, 0.47, 0.46, 0.45, 0.45, 0.64, 0.59, 0.39, 0.4, 0.51, 0.7, 0.37, 0.32, 0.82, 0.47, 0.45, 0.59, 0.63, 0.55, 0.72, 0.8, 0.52, 0.41, 0.5, 0.72, 0.88, 0.45, 0.52, 0.42, 0.64, 0.45, 0.42, 0.44, 0.44, 0.41, 0.41, 0.6, 0.58, 0.71, 0.65, 0.53, 0.68, 0.68, 0.49, 0.45, 0.56, 0.73, 0.44, 0.48, 0.5, 0.72, 0.41, 0.45, 0.53, 0.55, 0.68, 0.6, 0.54, 0.88, 0.53, 0.48, 0.38, 0.43, 0.88, 0.44, 0.39, 0.46, 0.28, 0.58, 0.5, 0.58, 0.52, 0.54, 0.58, 0.65, 0.42, 0.37, 0.51, 0.58, 0.46, 0.61, 0.7, 0.63, 0.5, 0.29, 0.53, 0.35, 0.58, 0.49, 0.58, 0.63, 0.62, 0.39, 0.56, 0.44, 0.46, 0.48, 0.64, 0.38, 0.61, 0.58, 0.5, 0.76, 0.52, 0.4, 0.51, 0.63, 0.48, 0.46, 0.56, 0.45, 0.5, 0.53, 0.55, 0.51, 0.51, 0.39, 0.37, 0.45, 0.45, 0.58, 0.6, 0.48, 0.63, 0.73, 0.49, 0.78, 0.37, 0.76, 0.56, 0.49], \"xaxis\": \"x2\", \"y\": [0.18579927887031134, 0.9274202256360236, 0.2569067617886446, 0.17851375722123963, 0.43011516789686843, 0.3951880410340851, 0.35333307802371594, 0.854899199395705, 0.7749695319329993, 0.7150752736216004, 0.5793836726576811, 0.17187478758168062, 0.503776006633781, 0.6517104478925241, 0.5321166645488455, 0.4291031613352281, 0.6295132227815239, 0.446367751604861, 0.12978626497489776, 0.578130474122496, 0.1303225049324246, 0.4589423036505589, 0.6028673022099313, 0.6724998803801079, 0.055171077290688375, 0.28900585249094113, 0.5807441942986169, 0.6324527530146118, 0.32780881811994433, 0.4437792729685527, 0.47375733914823626, 0.6755390392614542, 0.8494338455743565, 0.8432302027568838, 0.3962269303969661, 0.36574887203466033, 0.9780529644634413, 0.6757083557066426, 0.43212531492562845, 0.6428319532862445, 0.2244465690609686, 0.6759712108962084, 0.300575337785698, 0.4848467547623382, 0.24353241802821812, 0.6165640897352094, 0.801889943514816, 0.6831580296641933, 0.4684052737322374, 0.07309555507266852, 0.17397747102053363, 0.548208100621717, 0.16948307959681597, 0.5287139706981401, 0.8097217619362252, 0.48186532860504816, 0.7044722268129955, 0.5458559966555334, 0.6067015953642416, 0.5767206748937392, 0.5416109283549078, 0.7766135747357961, 0.6371580804073698, 0.3290646799011723, 0.53941953634433, 0.7444876216695655, 0.27658524567301757, 0.8518717737266248, 0.685064206005921, 0.7994946846943811, 0.6254668451144636, 0.29898447003196504, 0.36566585814722175, 0.8260679099411251, 0.265003746926769, 0.18277705216857454, 0.6401445853260315, 0.2878944788643705, 0.7379395090268356, 0.6578861964269485, 0.3048731186933995, 0.6479177870210828, 0.5479007895539181, 0.8109237991420157, 0.4555798348891207, 0.35159410271621183, 0.6741813074403022, 0.40366163192193316, 0.3797333752177462, 0.42326140605337403, 0.49450075158901585, 0.7027754368270075, 0.31556666432085356, 0.5737052492708005, 0.5594846166878963, 0.9879213229528466, 0.23907110553933086, 0.7604887601700165, 0.906894853259191, 0.49150798334893764, 0.6693239074263375, 0.635181004157038, 0.4291031613352281, 0.6805197940362542, 0.8579270215873258, 0.42231028799440284, 0.7973836574204367, 0.6209099995125147, 0.617932351579841, 0.5867531689564582, 0.8217385626893267, 0.5766058512754557, 0.6085190813519714, 0.6488649586424557, 0.19466062481522506, 0.4062994677131635, 0.31500574198466447, 0.6106996692323751, 0.48314991346809855, 0.4300926711133176, 0.4623912750166579, 0.18141675383529432, 0.7404949196358439, 0.7960551628311661, 0.6696955469146251, 0.7471897031921468, 0.15222801432328747, 0.4782875749995391, 0.6696955469146251, 0.4617114467660769, 0.0374236133971757, 0.34638250956587036, 0.5737052492708005, 0.35412183815676124, 0.5342599897609015, 0.6273126624389191, 0.1819914526651868, 0.6450640502472667, 0.7576359910572065, 0.6363669366758954, 0.35783776888428775, 0.4555798348891207, 0.2603691587203709, 0.09638465351539516, 0.7889843001267657, 0.3995975535535492, 0.2404138117262561, 0.5134503976671381, 0.7620160241108803, 0.4852174766770502, 0.7934067722809752, 0.5657371707019572, 0.40591517497640706, 0.5142806824729376, 0.4667389755277017, 0.4597803030361328, 0.14211531046105408, 0.4709774325404933, 0.39253304933110444, 0.8152160844894966, 0.6418608562675732, 0.5695619245525361, 0.15898796250578873, 0.4189913516486339, 0.8097376625536354, 0.2776505479619531, 0.14100712613869515, 0.1625374057836978, 0.21879614767173305, 0.26016804821119, 0.5884346274074399, 0.25171266030158634, 0.5556828679884147, 0.2886326125606653, 0.5013044750460076, 0.23728971353361283, 0.6280660923097139, 0.6281218947904323, 0.6226708394296439, 0.1280348372312241, 0.37812375401711507, 0.6218606462016874, 0.446367751604861, 0.5237591509200082, 0.22560064672115399, 0.4159575064805634, 0.43989745285902637, 0.38133093816728936, 0.379388299643832, 0.4244201113870294, 0.8495234946343055, 0.44699506619782237, 0.3402560380560977, 0.16997778820688525, 0.6509841470756508, 0.5589353890471914, 0.49320900326902484, 0.41485179365651337, 0.2850172536812061, 0.5150740024049856, 0.7905789411902706, 0.6660097546858721, 0.5916856454756931, 0.25029771644034415, 0.21820707607863943, 0.23625780462752244, 0.6174344585079109, 0.33885175059010386, 0.8097775874289167, 0.5502791542248897, 0.45232673966787307, 0.5168725346003686, 0.4922951659433321, 0.2710495410551712, 0.5620189509382074, 0.19827785442852286, 0.35653263682836045, 0.4940220265254579, 0.3934632807735441, 0.349631294967786, 0.6543252873397565, 0.6043841099981286, 0.6572212454398962, 0.5323595728841377, 0.4667716613599331, 0.5480891857555714, 0.5933716837007499, 0.5769442381274095, 0.7796710482718338, 0.4721284230669528, 0.5632051337005155, 0.25606657060722404, 0.47304849589761655, 0.4991199345133047, 0.785831825438318, 0.5512091114854263, 0.31651464458218903, 0.192246895102814, 0.5737052492708005, 0.14970485751781393, 0.8257882443178004, 0.7450862811651306, 0.2404138117262561, 0.3428275867057816, 0.2186811050870735, 0.43730933466596944, 0.1325711740116582, 0.33994853494016564, 0.5172250338280965, 0.4543852880840521, 0.6017244994332274, 0.7267617626256621, 0.304103470637073, 0.49511795227452726, 0.4577650902534979, 0.4389063253281036, 0.3428275867057816, 0.6911248892501751, 0.5457123873353599, 0.3395528272139201, 0.5662837862370104, 0.38281068028313525, 0.1899488449656659, 0.1899488449656659, 0.39416742153886597, 0.4473524415330049, 0.5724944828663213, 0.12652799787397961, 0.14917046216496987, 0.4192276293132746, 0.1727250451072272, 0.7329347521090118, 0.2979855805324535, 0.5384433083808008, 0.2944152049751758, 0.5661013076544325, 0.39283078357423706, 0.6503174362647687, 0.7632350838020857, 0.29422440231251745, 0.8446099855685041, 0.3812461384129847, 0.1264117171095669, 0.6995051325026098, 0.7680829457938805, 0.1086082602083136, 0.50228427853815, 0.8303888649041977, 0.15145052047802054, 0.5239967242043768, 0.49461569007297057, 0.7323984730128237, 0.6372335578763709, 0.8485373319296128, 0.21018203617182263, 0.3854703692354019, 0.6209619763202376, 0.6996467359659702, 0.3913887983225227, 0.600932061108284, 0.18141675383529432, 0.32841971343371723, 0.17397747102053363, 0.3943097935149382, 0.5998672378660981, 0.6052803835931642, 0.35501406908939237, 0.4362847089434372, 0.6005057903956104, 0.45095984485898877, 0.5601124581139871, 0.6908342266509375, 0.29066967723125237, 0.5437491575180791, 0.5955595524057149, 0.4226516353037165, 0.552222307965348, 0.5038457784615318, 0.6752568781943777, 0.7880730680059006, 0.09430965090665133, 0.4986183600001317, 0.24112389044610405, 0.3635071851353404, 0.7047195247497422, 0.5251048099479148, 0.5632051337005155, 0.4520037684813636, 0.5271857161160298, 0.36566585814722175, 0.8775119234978208, 0.49474741138534273, 0.17187478758168062, 0.1069918390347242, 0.6371627391106971, 0.19018032574493748, 0.34352259564225396, 0.806114950115292, 0.47304849589761655, 0.5014153035286022, 0.6721952796384192, 0.7507248720260316, 0.38512814216859315, 0.8930847268109882, 0.863224561659591, 0.15108072818859253, 0.7399796913917198, 0.18579927887031134, 0.47304849589761655, 0.2033384066370545, 0.43667652058029827, 0.23252054766636898], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [0.38, 0.44, 0.87, 0.39, 0.58, 0.33, 0.7, 0.38, 0.61, 0.59, 0.56, 0.52, 0.37, 0.53, 0.36, 0.41, 0.58, 0.44, 0.87, 0.33, 0.46, 0.5, 0.38, 0.58, 0.6, 0.33, 0.3, 0.54, 0.6, 0.49, 0.35, 0.49, 0.82, 0.41, 0.34, 0.31, 0.76, 0.49, 0.53, 0.53, 0.32, 0.5, 0.38, 0.41, 0.8, 0.74, 0.38, 0.57, 0.49, 0.72, 0.61, 0.67, 0.36, 0.25, 0.49, 0.75, 0.68, 0.79, 0.44, 1.33, 0.68, 0.38, 0.47, 0.36, 0.36, 0.42, 0.58, 0.62, 0.5, 0.8, 0.53, 0.39, 0.29, 0.51, 0.37, 0.42, 0.44, 0.45, 0.47, 0.61, 0.46, 0.52, 0.85, 0.68, 0.49, 0.78, 0.73, 0.3, 0.27, 0.49, 0.35, 0.33, 0.5, 0.4, 0.48, 0.58, 0.65, 0.43, 0.72, 0.77, 0.34, 0.5, 0.84, 0.43, 0.53, 0.62, 0.54, 0.35, 0.59, 0.63, 0.5, 0.38, 0.37, 0.51, 0.5, 0.93, 0.76, 0.56, 0.65, 0.71, 0.64, 0.99, 0.56, 0.42, 0.75, 0.74, 0.74, 0.62, 0.75, 0.57, 0.36, 0.88, 0.44, 0.56, 0.44, 0.51, 0.67, 0.7, 0.57, 0.5, 0.62, 0.49, 0.61, 0.48, 0.41, 0.6, 0.58, 0.77, 0.39, 0.47, 0.38, 0.68, 0.44, 0.36, 0.68, 0.53, 0.82, 0.73, 0.45, 0.48, 0.4, 0.78, 0.26, 0.49, 0.82, 0.36, 0.45, 0.55, 0.86, 0.39, 0.57, 0.32, 0.39, 0.66, 0.45, 0.49, 0.43, 0.42, 0.47, 0.77, 0.44, 0.41, 0.95, 0.76, 0.43, 0.82, 0.87, 0.37, 0.45, 0.75, 0.39, 0.43, 0.59, 0.48, 0.46, 0.58, 0.57, 0.38, 0.58, 0.64, 0.59, 0.56, 0.57, 0.4, 0.56, 0.63, 0.53, 0.85, 0.51, 0.78, 0.41, 0.33, 0.6, 0.6, 0.56, 0.65, 0.47, 0.44, 0.5, 0.49, 0.4, 0.55, 0.6, 0.53, 0.66, 0.58, 0.68, 0.48, 0.77, 0.48, 0.72, 0.44, 0.66, 0.47, 0.66, 0.82, 0.4, 0.54, 0.31, 0.47, 0.53, 0.46, 0.39, 0.57, 0.64, 0.87, 0.41, 0.5, 0.47, 0.7, 0.76, 0.3, 0.75, 0.41, 0.55, 0.35, 0.45, 0.58, 0.48, 0.73, 0.62, 0.57, 0.47, 0.35, 0.39, 0.48, 0.51, 0.43, 0.48, 0.43, 0.37, 0.43, 0.58, 0.65, 0.4, 0.7, 0.57, 0.44, 0.56, 0.76, 1.06, 0.51, 0.51, 0.49, 0.64, 0.63, 0.36, 0.52, 0.57, 0.43, 1.11, 0.63, 0.42, 0.47, 0.49, 0.46, 0.45, 0.42, 0.33, 0.44, 0.33, 0.75, 0.59, 0.38, 0.48, 0.85, 0.56, 0.54, 0.75, 0.47, 0.38, 0.6, 0.63, 0.5, 0.52, 0.63, 0.51, 0.5, 0.51, 0.48, 0.64, 0.44, 0.59, 0.36, 0.64, 0.39, 0.4, 0.77, 0.48, 0.73, 0.81, 0.36, 0.86, 0.53, 0.43, 0.38, 0.75, 0.41, 0.43, 0.46, 0.39, 0.52, 0.58, 0.84, 0.54, 0.45, 0.42, 0.5, 0.9, 0.34, 0.35, 0.52, 0.47, 0.36, 0.4, 0.82, 0.6, 0.38, 0.82, 0.72, 0.32, 0.59, 0.75, 0.35, 0.75, 0.43, 0.46, 0.5, 0.57, 0.69, 0.46, 0.53, 0.54, 0.54, 0.56, 0.49, 0.48, 0.37, 0.65, 0.46, 0.5, 0.55, 0.55, 0.48, 0.43, 0.62, 0.46, 0.44, 0.65, 0.44, 0.58, 0.44, 0.49, 0.64, 0.42, 0.62, 0.47, 0.53, 0.59, 0.45, 0.41, 0.31, 0.64, 0.5, 0.41, 0.42, 0.46, 0.36, 0.39, 0.36, 0.7, 0.49, 0.68, 0.46, 0.5, 0.7, 0.36, 0.65, 0.6, 0.49, 0.56, 0.98, 0.77, 0.6, 0.7, 0.59, 0.6, 0.33, 0.61, 0.4, 0.34, 0.41, 0.53, 0.51, 0.71, 0.65, 0.74, 0.48, 0.7, 0.52, 0.49, 0.84, 0.32, 0.54, 0.33, 0.66, 0.75, 0.4, 0.78, 0.47, 0.37, 0.54, 0.72, 0.54, 0.43, 0.53, 0.56, 0.55, 0.43, 0.49, 0.59, 0.5, 0.42, 0.41, 0.38, 0.65, 0.27, 0.54, 0.4, 0.57, 0.45, 0.3, 0.67, 0.43, 0.41, 0.55, 0.43, 0.6, 0.35, 0.42, 0.65, 0.38, 0.77, 0.76, 0.52, 0.32, 0.32, 0.37, 0.43, 0.68, 0.57, 0.41, 0.77, 0.81, 0.36, 0.75, 0.49, 0.92, 0.52, 0.76, 0.64, 0.5, 0.49, 0.4, 0.5, 0.46, 0.44, 0.59, 0.57, 0.5, 0.82, 0.4, 0.4, 0.45, 0.32, 0.62, 0.64, 0.82, 0.43, 0.8, 0.3, 0.9, 0.38, 0.51, 0.95, 0.59, 0.72, 0.62, 0.36, 0.45, 0.6, 0.37, 0.48, 0.31, 0.81, 0.45, 0.74, 0.37, 0.6, 0.6, 0.55, 0.56, 0.87, 0.51, 0.33, 0.38, 0.72, 0.79, 0.46, 0.49, 0.66, 0.44, 0.52, 0.58, 0.55, 0.37, 0.53, 0.41, 0.42, 0.39, 0.35, 0.65, 0.44, 0.6, 0.51, 0.74, 0.37, 0.39, 0.38, 0.42, 0.69, 0.58, 0.59, 0.5, 0.39, 0.68, 0.48, 0.32, 0.42, 0.56, 0.43, 0.52, 0.34, 0.38, 0.53, 0.64, 0.6, 0.59, 0.38, 0.65, 0.63, 0.5, 0.54, 0.63, 0.58, 0.75, 0.73, 0.79, 0.46, 0.31, 0.52, 0.44, 0.45, 0.39, 0.68, 0.58, 0.75, 0.57, 0.51, 0.68, 0.36, 0.56, 0.43, 0.52, 0.56, 0.44, 0.37, 0.57, 0.6, 0.47, 0.46, 0.37, 0.45, 0.36, 0.55, 0.48, 0.39, 0.35, 0.63, 0.71, 0.59, 0.8, 0.37, 0.46, 0.47, 0.54, 0.33, 0.64, 0.52, 0.51, 0.52, 0.52, 0.66, 0.55, 0.53, 0.52, 0.59, 0.54], \"xaxis\": \"x2\", \"y\": [0.6660328535674787, 0.4955559099445003, 0.11251030999551548, 0.5313240922219649, 0.7616845263358343, 0.42881839881496897, 0.22146723198036844, 0.2709448900825402, 0.04188686298684474, 0.3198999677935893, 0.586632325439729, 0.3332859260788763, 0.0891770245136605, 0.07249138429342028, 0.0813041402249215, 0.2808128557304226, 0.18155424903412543, 0.14020593233116785, 0.20529540916933675, 0.1755850319354616, 0.5722846846512241, 0.4684623303117058, 0.2863708053899042, 0.4489302200945696, 0.3606737334686688, 0.09834172337505831, 0.1439119889738254, 0.10526388551166177, 0.08976738859769384, 0.15927641460572795, 0.07353544332944184, 0.4894096639868448, 0.24735122968283396, 0.41440459167745447, 0.10107859516115147, 0.4809249647595707, 0.043928674649753696, 0.27268427565697984, 0.07203278686513981, 0.35989685204578803, 0.08410225657903847, 0.09640449279894714, 0.2859044620344169, 0.766491644508495, 0.27194216744256416, 0.11891721880979944, 0.6033870782914414, 0.8445823904457724, 0.4148378249676725, 0.09538880480821377, 0.5822786697287807, 0.2006236885231063, 0.30215903380660414, 0.3526626332448971, 0.22921561702294402, 0.3499358724503807, 0.451050436906263, 0.01968005574460141, 0.3849224947932618, 0.608666907839271, 0.30333177217190177, 0.05732515971384944, 0.08299070223644744, 0.155374347961305, 0.4378217303747408, 0.10641916767178827, 0.3207785913922725, 0.3280003244598044, 0.4747408725557203, 0.27229542413121455, 0.5314247042003052, 0.13834506443323813, 0.652508483608137, 0.1775869136191267, 0.4659209431511335, 0.3288332341233703, 0.47224603889779837, 0.2773569186284155, 0.18590272545123854, 0.6719763059805124, 0.04569198037744582, 0.22473444069733528, 0.0776074933333939, 0.1411968215808168, 0.3654892991508686, 0.06069899520469324, 0.21029328672965164, 0.13919371635861133, 0.16321149678759816, 0.6144435769482088, 0.1388055550317996, 0.0827658987104557, 0.0793107693477757, 0.04994940743047871, 0.46220165202879504, 0.08265172102971341, 0.5554564865761329, 0.10902951494304747, 0.26480674198345266, 0.31816712550642645, 0.20184400370343658, 0.23734670470511587, 0.19264674509953905, 0.03558879485690103, 0.5314247042003052, 0.3013473679880785, 0.8043030592862955, 0.07665185966197174, 0.17816243980233548, 0.14637302723887635, 0.43623195291339645, 0.5773286546676725, 0.06996409198491005, 0.0635191394270278, 0.11839391684253864, 0.03368970372860669, 0.16544292122901683, 0.5002106013252752, 0.20783967621931676, 0.4413184352618238, 0.1377753535318076, 0.017128038770129694, 0.09070427960766203, 0.05237321155563324, 0.46044782253877736, 0.09863911308639095, 0.6058955548956951, 0.07377868677997379, 0.33726125667837825, 0.03705661785513226, 0.03856885477325478, 0.01970319875133708, 0.06623921298607705, 0.655672818127978, 0.36403826442427, 0.375635621083512, 0.25822104517587474, 0.26990817233175546, 0.30316845466795117, 0.21597661143113533, 0.10411587283779344, 0.4582573305440075, 0.28974208538397184, 0.3995654588450376, 0.48407929824265805, 0.2412117545349558, 0.49704114689177337, 0.3112403223054312, 0.13571503940671914, 0.35304273602320047, 0.18963603484652192, 0.06023564559469896, 0.305863422303413, 0.34062746964654456, 0.03532029949184434, 0.20200996882548472, 0.207876095289533, 0.11304202998506685, 0.26487496820305634, 0.46674395287949066, 0.05931266843465788, 0.6063731497207538, 0.053339747820140615, 0.16056749669580483, 0.3366557342021428, 0.18735912995827353, 0.2667542380283816, 0.9197592959547904, 0.13322255285490225, 0.3533185668595151, 0.08763312389948397, 0.343329095265401, 0.1298321532292276, 0.11240742021865013, 0.03412749239977686, 0.23316671381479437, 0.13955591125269062, 0.065615492475942, 0.03940539431326806, 0.04874684240881699, 0.42507109047861347, 0.3720756994829524, 0.20627971812824875, 0.23346983492740092, 0.299872058778726, 0.14688925552714138, 0.20529540916933675, 0.11294333341234963, 0.4523771212155355, 0.15895981664313275, 0.12633289347617382, 0.34801013400503944, 0.063056887931354, 0.09222807982804315, 0.19281104432210028, 0.11843845992675284, 0.1064686731970873, 0.12171087020281346, 0.49704114689177337, 0.4202798549667376, 0.058322454167927695, 0.40418598015134155, 0.7514842711311043, 0.067978575311199, 0.1468497162592186, 0.3655805321171328, 0.36741292271676196, 0.08785516413846428, 0.4223454464089015, 0.09472348251934337, 0.14196098925812006, 0.10013555988874479, 0.32154631204965056, 0.05416575683382341, 0.786126361492164, 0.04696516601190348, 0.26926088858349784, 0.28123172687107445, 0.3094364396730669, 0.04307250962973752, 0.07126159086244754, 0.6143015945908075, 0.495586079448059, 0.46102608015166635, 0.40789311683600216, 0.8929715185951024, 0.1227006502272181, 0.3638055988942468, 0.10470002869891348, 0.29304213908849364, 0.8936703981375603, 0.3534407380188983, 0.0883666731866185, 0.07895584641700149, 0.05166417783587085, 0.4199775765299997, 0.10304865631077798, 0.1041340676595982, 0.11031385635331636, 0.22368578646300386, 0.22137255536682798, 0.0725394352715707, 0.08320759746190642, 0.3577905591727162, 0.36362749207413336, 0.13058702032609693, 0.4306817897420764, 0.4684623303117058, 0.3185463047756948, 0.6991046594229053, 0.33105510290791684, 0.35804773811787727, 0.3499358724503807, 0.17780319308126435, 0.07142366539796174, 0.1504846162366139, 0.28643330026545544, 0.11492102279820171, 0.08716328114311156, 0.12905574960179156, 0.5528531989583015, 0.2852168598030531, 0.3185463047756948, 0.41766807389819915, 0.22818770291371737, 0.10749415552266317, 0.07500089027222667, 0.2150933620687273, 0.4879833184669665, 0.21367083697314282, 0.18281788227943807, 0.11217648511765432, 0.01860460444149037, 0.4990100838788346, 0.3212979959143686, 0.7252893191599291, 0.30018855716775616, 0.2808216200321265, 0.24332849241566534, 0.22583693263898685, 0.307128141019565, 0.12930297020615966, 0.07734813107736227, 0.38078614076753503, 0.037937415915298756, 0.18389331462546077, 0.2015421194948802, 0.10121634311933059, 0.7209948827487924, 0.252131738577411, 0.19866278493931944, 0.5569604587758099, 0.19172534874952063, 0.07516041810443141, 0.18673310211333727, 0.20736440356309183, 0.27568985010185776, 0.1748501221961516, 0.134246332983591, 0.12151400729184814, 0.03860330573341564, 0.16198960071610413, 0.062309112953929935, 0.14943540958877521, 0.46827469198568006, 0.12435295831370408, 0.11768791031746062, 0.10794707492381372, 0.04347111427796346, 0.07423675680829, 0.1602542791395647, 0.19911642350143877, 0.2379444352717226, 0.36664322039668684, 0.10130143557253446, 0.17108028607870185, 0.6143194513817134, 0.5641235853966853, 0.29864316680665437, 0.44752301946823647, 0.13459844499503626, 0.037461465199631894, 0.5002964248569376, 0.4059565893810353, 0.7035957096210382, 0.0629603198376949, 0.25036415064992923, 0.14780834332950044, 0.24800647860056513, 0.10438723399855232, 0.24366911510822187, 0.4574644219698093, 0.8347014835967527, 0.42226245660703365, 0.4073158502222598, 0.47525484003715535, 0.37845934883934684, 0.35325777167774697, 0.4763432908647238, 0.18941100564626978, 0.23853527246002126, 0.27277355193056574, 0.5556171757583562, 0.19481513110659687, 0.7460207524242459, 0.12627308236197843, 0.2115813466591615, 0.4773837842994688, 0.22238536240250728, 0.1978655273089749, 0.32057959349203036, 0.1601330373243487, 0.6256605001243821, 0.34062746964654456, 0.5899158924001677, 0.1273375405407705, 0.6866376712310945, 0.3812864953771038, 0.07918534602430627, 0.10510921928053807, 0.052405178286905496, 0.29010285216427345, 0.5802968836962079, 0.4475494904811408, 0.33107045093633036, 0.6046547135519548, 0.33132995382553565, 0.3391582818855403, 0.37109937806185267, 0.18876467901964422, 0.03244681540368277, 0.6531311156123596, 0.18281848038190407, 0.06840545126676123, 0.23876166598551407, 0.5602062902528231, 0.05478334190217349, 0.18965009362393503, 0.502081053312289, 0.0945975060483667, 0.24937367783354814, 0.14040338921272166, 0.09582424632391484, 0.4879833184669665, 0.07536550594022651, 0.37763546052463404, 0.20240400638142053, 0.06234715971662652, 0.1729504208160284, 0.2536573606029918, 0.1491704939138675, 0.47224603889779837, 0.20734784509414073, 0.1656619584420439, 0.20263687678412212, 0.4576701693643329, 0.3746187330143109, 0.06578487521364562, 0.09359041291034786, 0.15714155813810793, 0.43198081216185935, 0.17693664965610134, 0.14200602748771296, 0.16878839641400256, 0.11131318694256087, 0.43040972974554736, 0.12494266711040569, 0.5286591337585229, 0.3917329141436472, 0.14284790216410748, 0.29931895876037384, 0.3998656181534954, 0.13198036366642862, 0.2166851793268345, 0.164669749255824, 0.3116999397838065, 0.5702002297218003, 0.2867818412254799, 0.05809024612643199, 0.0701620515557333, 0.10493669218879953, 0.03474255021640338, 0.14069518845012563, 0.7697788668098057, 0.44513161239284327, 0.12104291767226882, 0.2823656727566666, 0.28640273091276736, 0.09904459769556595, 0.10889384421684001, 0.1978655273089749, 0.6326587477498924, 0.0766186874204361, 0.07300117689776386, 0.3978521493117628, 0.7293533971641823, 0.24040337450518035, 0.46827469198568006, 0.03737110954461231, 0.48112847828662497, 0.5755848065786346, 0.12151472907643468, 0.332302417201758, 0.3208349144509022, 0.13406270144296106, 0.47820199098358873, 0.024219732643774528, 0.7923035912680444, 0.3099424932714111, 0.8494816644677875, 0.15230116664989468, 0.8795672599938588, 0.34536882843285344, 0.587897812361327, 0.3660303223369904, 0.3074082248441362, 0.1925553058603695, 0.1582957933341015, 0.5297945963993664, 0.1892543681582496, 0.06574637766643598, 0.03286461121245521, 0.6223124217546917, 0.48666930315350876, 0.17200815643270417, 0.27042696199957883, 0.16010429726024444, 0.25291734909108765, 0.22778758435893687, 0.6055190518965303, 0.41989528411161425, 0.2865861541738164, 0.17344095530188786, 0.4163761941495938, 0.24610426408478792, 0.029106329843254564, 0.5849270471051293, 0.09607886499379148, 0.4890296174547498, 0.11193395874659995, 0.3667485749721523, 0.29672938182784603, 0.13696827462710404, 0.03986507081677082, 0.41542023534722683, 0.1642424989032959, 0.041559354155004224, 0.1266666793707928, 0.5259198205822933, 0.42123490919744344, 0.6147437654518444, 0.42849246998341506, 0.04874684240881699, 0.16870816563337898, 0.35179373534084035, 0.4552463954734379, 0.1543174595222413, 0.4641274821418986, 0.1106599594415556, 0.40441066041397966, 0.05916303638108533, 0.24194101851814365, 0.5755848065786346, 0.23631147082452741, 0.04679471849088612, 0.33132995382553565, 0.6031606095022326, 0.16900214819844117, 0.9322526967181247, 0.1065938389205352, 0.0540586741766943, 0.14920224829950646, 0.03054451782098533, 0.13595064656866984, 0.15908339514281045, 0.09402391562754642, 0.27219479721363327, 0.10477531970828624, 0.6046547135519548, 0.04412971358840656, 0.0821245873848182, 0.24953715645213048, 0.24311299470472425, 0.679537413518331, 0.02875041056121841, 0.2874129658970298, 0.17131102264191878, 0.07042427222914205, 0.1577516063520068, 0.39934634677258996, 0.42249259173992826, 0.24940231538328683, 0.46827469198568006, 0.040988937643475554, 0.034828704291737345, 0.26663563965858417, 0.22421743312747255, 0.10716094829621758, 0.7421831263598226, 0.4644511163280224, 0.1591307416719686, 0.21502194578256428, 0.12883185373794437, 0.15520095945599266, 0.04280666734842442, 0.06928764484923078, 0.3578757504587543, 0.0760792945579073, 0.06637805380770656, 0.5755848065786346, 0.4326356954473739, 0.16985579355455038, 0.47152805642545803, 0.11644579282256762, 0.11790522998710073, 0.5438286352264949, 0.41561805514360906, 0.050606352251634235, 0.21836830194439782, 0.22298545275517268, 0.1504846162366139, 0.16819644397314482, 0.47796113776613436, 0.14100197907825862, 0.7878397890034206, 0.12176963827920351, 0.09814942480303201, 0.23162396036129984, 0.04400104962869911, 0.061588508633294015, 0.2774601068082493, 0.40816383821078206, 0.14036214651023216, 0.11837607594274324, 0.0703155477214753, 0.17002415827487982, 0.24611532014486182, 0.06874641727313702, 0.30975746960573625, 0.07004288447243323, 0.6453829176356538, 0.3880412370469972, 0.10205495289732236, 0.12171087020281346, 0.38550692709735157, 0.4398162761337091, 0.5769741243450848, 0.48842976274850136, 0.3866799681687785, 0.17129518728202664, 0.5711206597512044, 0.4456070955069118, 0.4585850027539752, 0.25462747480751524, 0.34771016550763867, 0.35548618548401445, 0.07878090041588082, 0.3008706318705062, 0.08117751180329491, 0.055511805197920094, 0.1600174453683395, 0.35597309965685686, 0.5473978930443646, 0.3321771897262046, 0.14643302530661162, 0.7653011157176768, 0.24188431843396252, 0.16704799028757666, 0.41136103198090634, 0.5749869949413896, 0.709238838470871, 0.09340318303147321, 0.602429869503323, 0.04154705947390969, 0.7519582179986716, 0.15993940416551844, 0.04372375151311325, 0.4076899811241429, 0.4644511163280224, 0.3133137248525114, 0.24628490675063597, 0.06972977174174444, 0.15949948541388637, 0.2241543425141257, 0.1729876202034616, 0.07290025122558275, 0.1220000714032804, 0.36493953208423235, 0.09420126302076737, 0.026726938234992392, 0.7199273032686843, 0.4606762448039463, 0.04906818437448113, 0.19446415942665518, 0.14876853598344464, 0.3247816953453747, 0.023320858692869595, 0.7310618090422621, 0.48944479260603346, 0.20357574295749958, 0.0840537250624015, 0.5368744051465595, 0.21101467800102214, 0.46682279298460017, 0.3749869638443927, 0.46592999202179275, 0.10188412989688433, 0.15751976448865512], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"sulphates\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"sulphates\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}, \"All_alcohol\": {\"data\": [{\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Reference<br>alcohol=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [11.2, 10.0, 12.7, 10.5, 9.4, 10.1, 13.5, 10.4, 12.4, 11.5, 10.0, 9.8, 10.5, 9.1, 9.5, 9.6, 11.7, 11.2, 12.3, 11.9, 10.0, 12.3, 10.1, 11.9, 11.5, 10.0, 13.6, 11.3, 9.6, 12.8, 12.2, 10.0, 10.9, 11.8, 12.5, 10.0, 9.5, 12.9, 12.8, 11.3, 11.5, 10.2, 12.1, 9.7, 10.0, 8.8, 9.0, 12.3, 12.0, 12.0, 9.7, 8.9, 12.4, 10.3, 11.1, 8.6, 10.8, 11.8, 10.8, 12.5, 10.4, 12.8, 12.2, 10.2, 9.8, 9.2, 11.7, 10.5, 9.8, 13.4, 12.2, 13.4, 11.0, 12.3, 10.7, 9.8, 12.8, 12.3, 10.9, 12.4, 10.1, 13.5, 11.0, 10.4, 12.2, 11.3, 11.3, 9.9, 13.4, 9.3, 10.4, 12.2, 10.2, 12.4, 10.6, 11.3, 10.6, 12.6, 11.2, 9.4, 10.2, 8.9, 11.9, 11.0, 12.5, 9.7, 12.2, 10.6, 11.4, 10.75, 12.4, 8.8, 9.8, 10.9, 10.7, 12.7, 11.4, 11.5, 9.1, 11.0, 9.0, 9.8, 10.4, 8.9, 9.6, 10.5, 9.5, 8.9, 11.0, 9.9, 10.6, 14.0, 9.1, 11.0, 9.9, 12.9, 10.0, 11.0, 13.4, 10.0, 12.7, 10.5, 10.5, 10.6, 9.3, 10.6, 11.7, 10.9, 10.6, 9.2, 9.0, 10.5, 10.3, 9.5, 9.0, 11.9, 11.4, 12.1, 11.4, 12.0, 10.5, 9.8, 11.7, 12.1, 10.4, 9.6, 10.2, 10.1, 8.9, 12.1, 11.1, 9.4, 9.7, 10.5, 10.5, 10.1, 10.0, 9.8, 11.2, 10.8, 10.7, 12.1, 11.9, 12.7, 9.6, 11.0, 13.55, 10.1, 11.6, 10.3, 11.2, 12.8, 12.5, 12.2, 9.7, 12.1, 8.7, 11.0, 11.8, 10.5, 10.7, 12.5, 12.2, 11.8, 10.6, 12.0, 10.9, 10.8, 8.8, 9.5, 10.4, 10.8, 12.1, 10.8, 11.5, 10.0, 11.5, 10.8, 10.9, 12.8, 10.2, 8.7, 10.5, 12.9, 10.6, 10.8, 9.1, 9.1, 10.8, 10.6, 11.0, 9.9, 11.5, 10.4, 11.9, 12.2, 11.0, 9.8, 11.8, 10.7, 10.8, 9.0, 9.2, 8.8, 9.5, 11.4, 10.1, 10.1, 9.3, 12.3, 8.6, 9.1, 10.8, 11.2, 11.2, 11.0, 12.0, 9.4, 12.6, 11.5, 9.0, 12.2, 10.9, 12.3, 11.6, 11.2, 13.2, 12.5, 10.3, 13.0, 10.8, 11.4, 11.4, 11.0, 13.0, 9.9, 10.9, 11.7, 12.8, 10.5, 11.2, 11.6, 12.2, 12.75, 11.9, 11.9, 9.3, 10.0, 9.6, 12.0, 10.1, 12.0, 12.4, 11.2, 10.9666666666667, 9.1, 9.9, 10.0, 10.9, 10.7, 12.6, 10.5, 12.3, 11.0, 9.7, 11.0, 11.4, 11.5, 9.0, 10.1, 9.5, 9.0, 12.4, 11.3, 11.0, 9.7, 9.4, 12.8, 10.9, 12.2, 12.6, 11.4, 12.6, 11.7, 11.0, 9.5, 9.7, 11.2, 9.7, 12.2, 11.0, 12.4, 9.3, 10.4, 10.8, 9.1, 10.5, 12.8, 9.6, 10.5, 9.9, 11.1, 12.1, 9.5, 9.9, 10.0, 9.4, 9.0, 12.4, 8.9, 10.8, 11.2, 10.9, 11.0, 9.6, 11.4, 11.0, 12.4, 10.1, 12.2, 9.4, 10.4, 10.3, 11.5, 9.8, 9.7, 12.6, 11.2, 12.0, 9.0, 10.8, 10.3, 10.4, 10.1, 12.9, 12.5, 12.7, 10.4, 9.9, 9.5, 9.2, 10.8, 9.1, 9.3, 9.0, 10.9, 9.0, 9.5, 10.5, 12.2, 11.2666666666667, 8.9, 9.9, 11.0, 10.4, 11.0, 11.8, 10.6, 12.6, 9.4, 11.5, 9.3, 12.5, 8.8, 11.5, 10.4, 10.6, 11.3, 10.8, 8.7, 10.4, 11.1, 11.3, 11.2, 10.5, 11.9, 11.6, 9.1, 10.8, 9.4, 10.5, 10.8, 9.6, 9.0, 10.2, 11.0, 11.2, 11.4333333333333, 12.2, 12.0, 12.4, 12.4, 12.8, 11.6333333333333, 10.0, 13.1, 11.5, 11.3, 12.3, 10.6, 11.0, 10.7, 11.8, 10.1, 10.2, 10.4, 9.6, 9.5, 11.0, 10.9, 12.6, 12.4, 11.9, 10.2, 9.7, 13.0, 10.2, 10.9, 9.9, 9.1, 11.2, 9.5, 11.0, 9.2, 11.5, 11.0666666666667, 10.4, 11.0, 10.4, 13.4, 9.6, 9.4, 8.7, 8.8, 12.4, 12.9, 12.4, 11.0, 10.2, 10.0, 11.7, 8.5, 8.8, 9.7, 9.0, 12.0, 12.5, 9.0, 11.7, 9.2, 9.4, 9.5, 9.2, 10.3, 11.5, 11.4, 9.6, 10.1, 12.8, 10.5, 10.5, 12.0, 11.7, 9.0, 12.5, 10.1, 11.4, 9.9, 12.3, 12.2, 12.3, 12.1, 10.4, 9.0, 12.1, 12.3, 11.9, 9.3, 11.6, 12.7, 9.5, 13.2, 13.0, 11.5, 9.0, 12.0, 9.3, 11.6, 9.3, 11.2, 10.5, 10.1, 10.7, 10.1, 11.4, 10.7, 10.5, 12.1, 11.0, 12.2, 10.5, 12.8, 10.0, 10.6, 12.2, 13.2, 11.6, 9.4, 12.0, 11.0, 10.0, 11.3, 10.8, 9.7, 10.4, 10.4, 10.8, 9.2, 9.3, 11.4, 9.4, 9.8, 11.2, 9.8, 13.6, 11.0, 11.3666666666667, 10.5, 12.5, 10.1, 12.1, 10.1, 11.5, 12.7, 12.0, 12.9, 9.0, 10.6, 10.5, 10.5, 11.9, 12.5, 10.1, 10.7, 12.2, 10.8, 13.2, 10.8, 10.3, 11.2, 9.9, 12.5, 9.5, 12.8, 10.2, 10.1, 11.1, 10.5, 11.1, 9.2, 11.2, 11.7, 10.2, 11.0, 11.7, 8.8, 10.8, 9.7, 11.5, 8.8, 10.9333333333333, 10.5, 9.8, 10.7, 12.7, 11.8, 10.1, 9.4, 11.3, 10.2, 10.4, 11.3, 10.0, 10.9, 9.6, 10.9, 9.6, 11.7, 9.53333333333333, 12.3, 10.2, 9.5, 9.2, 11.0, 11.7, 11.3, 10.0, 9.53333333333333, 10.8, 9.5, 11.8, 9.9, 12.0, 11.8, 9.5], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Current<br>alcohol=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [9.0, 9.0, 10.9, 9.4, 9.5, 9.8, 10.1, 10.8, 12.0, 10.5, 10.0, 11.0, 12.4, 12.2, 12.8, 10.6, 11.4, 11.5, 10.3, 12.4, 8.9, 9.2, 10.5, 9.6, 10.1, 12.2, 11.0, 11.3, 12.5, 12.3, 13.0, 10.1, 9.5, 9.2, 12.1, 8.7, 11.3333333333333, 9.3, 13.4, 11.8, 12.4, 11.3, 11.8, 8.7, 9.4, 12.7, 9.0, 9.3, 9.5, 12.5, 9.2, 12.8, 10.4, 10.5, 11.4, 8.8, 9.5, 14.0, 9.8, 9.1, 10.4, 12.3, 11.8, 11.2, 9.3, 12.5, 11.0, 10.7, 10.55, 9.6, 9.1, 11.7, 9.2, 11.0, 9.7, 9.3, 9.3, 10.2, 10.8, 9.4, 12.2, 10.2, 11.4, 11.9, 9.8, 12.0, 10.9, 11.5, 11.5, 9.5, 10.8, 11.9, 12.6, 13.2, 10.1, 12.6, 10.0333333333333, 13.1, 10.2, 11.1, 11.1, 9.9, 11.2, 13.2, 9.1, 9.5, 9.4, 12.6, 11.6, 11.3, 10.7, 8.8, 12.3, 12.6, 12.4, 12.4, 11.3, 9.5, 10.4, 11.5, 11.8, 12.1, 12.0, 12.2, 10.9, 12.3, 9.2, 12.3, 10.2, 12.0, 12.5, 13.6, 12.5, 9.1, 9.8, 9.3, 10.5, 10.8, 11.6, 11.0, 11.2, 12.7, 10.8, 9.4, 9.6, 10.5, 9.4, 10.5, 10.9, 10.2, 9.8, 11.2, 9.5, 9.2, 12.5, 12.0, 10.6, 11.3, 10.0, 9.0, 12.7, 9.5, 13.4, 11.7, 10.3, 11.4, 11.5, 9.9, 11.0, 9.2, 11.4, 10.2, 10.9, 11.6, 14.0, 11.8, 11.4, 13.1, 13.6, 12.5, 11.0, 9.2, 9.5, 10.7, 9.4, 11.6, 10.3, 12.6, 8.8, 11.1, 11.0, 9.4, 11.9, 11.9, 10.8, 12.2, 10.5, 12.5, 9.4, 9.8, 12.5, 10.4, 9.6, 11.9, 11.0, 10.6, 9.7, 12.0, 10.1, 10.2, 11.4, 12.8, 10.6, 12.4, 9.0, 12.8, 10.0, 11.3, 11.6, 12.8, 12.2, 10.0, 10.8, 9.5, 9.0, 9.2, 11.2, 10.3, 12.0, 11.2, 9.25, 10.1, 10.8, 12.1, 12.8, 8.9, 12.3, 11.2, 12.0, 11.2, 10.7, 13.3, 13.0, 10.3, 10.4, 11.4, 8.8, 9.2, 10.7, 10.1, 9.6, 9.2, 8.8, 11.6, 10.7, 9.8, 10.2, 11.0, 12.2, 12.2, 10.4, 10.6, 10.7, 10.2, 11.1, 12.5, 12.7, 10.6, 9.3, 9.9, 9.9, 11.3, 12.6, 11.0, 9.3, 9.9, 10.7, 10.4, 10.6, 11.2, 9.1, 11.9, 11.8, 10.0, 12.8, 11.6, 11.45, 11.3, 9.7, 10.2, 11.0, 9.5, 10.1, 12.8, 10.4, 11.0, 9.2, 12.2, 11.0, 11.8, 12.9, 10.3, 11.3, 12.3, 9.0, 11.0, 12.0, 11.0, 12.6, 11.2, 10.5, 11.5, 11.6, 9.3, 11.4, 11.0, 9.8, 9.8, 10.1, 9.5, 12.5, 13.0, 10.3, 9.1, 10.4, 12.7, 11.0, 11.5, 9.6, 12.6, 10.6, 9.0, 9.4, 9.5, 9.2, 9.4, 9.1, 10.0, 10.2, 11.9, 10.8, 10.2, 9.7, 11.4, 9.5, 10.9, 11.4, 10.5, 10.0, 11.7, 11.3, 11.5, 8.8, 9.2, 9.3, 12.0, 10.0, 10.2, 10.4, 12.5, 12.9, 10.3, 8.7, 8.8, 10.2, 9.2, 8.9, 10.3, 9.4, 10.2, 13.05, 10.1, 10.8, 11.4, 11.7, 10.8, 12.0, 11.2, 9.6, 12.4, 9.4, 11.5, 12.2, 9.3, 11.9, 10.5, 11.0, 11.65, 11.4, 11.3, 11.0, 9.3, 11.2, 10.2, 10.2, 10.8, 9.0, 12.5, 12.6, 10.8, 10.6, 11.5, 11.4, 9.5, 12.7, 9.8, 11.0, 10.5, 9.0, 12.5, 9.6, 10.0, 10.4, 9.8, 10.6, 10.3, 9.3, 10.6, 12.6, 12.8, 11.3, 11.9, 12.1, 10.3, 9.2, 11.2, 10.2, 10.6, 12.4, 12.0, 11.7, 10.2, 11.4, 12.8, 10.5, 9.0, 10.8, 9.0, 12.0, 9.0, 9.1, 12.5, 9.8, 9.4, 12.0, 9.2, 14.0, 9.2, 10.0, 9.7, 10.6, 9.2, 9.5, 9.8, 9.0, 11.0, 11.0, 10.65, 9.0, 11.3, 11.3, 13.3, 9.4, 8.7, 10.9, 10.4, 12.7, 10.3, 11.0, 10.6, 10.4, 10.3, 12.5, 8.7, 10.3, 12.8, 9.5, 11.3, 10.2, 11.4, 10.0, 10.6, 11.4, 11.9, 9.6, 11.0, 12.7, 12.5, 9.7, 10.8, 10.1, 9.1, 12.5, 11.0, 9.8, 9.8, 11.4, 10.0, 11.5, 10.3, 11.75, 10.3, 9.1, 11.0, 13.5, 8.9, 9.4, 12.0, 10.1, 12.3, 12.9, 11.3, 14.2, 11.4, 11.5, 12.6, 10.1, 11.7, 9.2, 12.4, 13.0, 10.5, 11.0, 9.2, 11.6, 9.3, 10.7, 12.6, 11.5, 9.1, 11.3, 10.0, 9.0, 13.0, 12.5, 11.6, 11.5, 12.1, 9.7, 9.5, 11.2, 11.3333333333333, 10.9, 11.4, 13.1, 11.5, 10.9, 11.8, 12.3, 9.1, 9.5, 11.4, 10.5, 11.1, 11.0, 10.0, 10.1, 12.3, 11.9, 11.0, 9.8, 10.4, 8.7, 11.4, 9.1, 12.1, 11.4, 11.2, 13.0, 12.5, 10.5, 10.3, 11.1, 12.0, 12.4, 11.0, 11.0, 12.3, 11.0, 12.4, 9.5, 9.6, 10.5, 12.5, 10.0, 10.0, 10.2, 9.5, 10.2, 11.1, 10.0, 10.4, 10.0, 10.0, 11.2, 10.4, 12.5, 9.6, 11.5, 12.7, 10.8, 12.2, 9.4, 11.2, 10.5, 9.8, 10.5, 10.6, 10.4, 9.9, 9.6, 10.5, 9.1, 11.9, 9.8, 12.1, 12.9, 10.4, 9.5, 12.2, 10.4, 12.4, 11.0, 10.0, 10.8, 12.15, 11.45, 10.2, 11.8, 12.1, 9.8, 10.0, 12.7, 11.6, 12.3, 10.2, 13.4, 9.5, 11.0, 12.0, 12.8, 9.2, 8.8, 9.9, 8.9, 9.5, 13.4, 11.0], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Reference<br>alcohol=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [8.7, 12.6, 10.6, 10.5, 9.4, 9.5, 9.7, 10.4, 9.3, 9.7, 10.2, 11.0, 8.7, 10.7, 9.3, 9.5, 9.5, 9.8, 9.2, 10.9, 9.5, 9.1, 11.2, 11.2, 9.9, 9.8, 9.9, 10.1, 9.1, 10.1, 9.6, 10.4, 10.8, 10.0, 9.1, 10.1, 10.0, 10.8, 9.6, 9.2, 9.2, 10.6, 9.5, 8.9, 9.5, 10.1, 9.1, 10.5, 10.6, 9.3, 9.4, 9.1, 9.3, 9.6, 9.8, 9.2, 10.6, 10.6, 10.1, 11.0, 9.3, 10.0, 12.6, 9.4, 9.2, 10.4, 9.2, 9.9, 9.8, 10.1, 8.8, 11.0, 8.7, 11.4, 10.2, 10.0, 8.9, 11.1, 9.2, 12.0, 10.0, 11.1, 9.0, 9.05, 9.8, 10.9, 10.1, 10.0, 11.6, 9.2, 11.0, 9.4, 9.8, 8.7, 9.1, 9.5, 9.1, 9.5, 9.2, 9.6, 9.2, 9.7, 10.2, 9.0, 9.3, 9.3, 10.3, 11.4, 9.0, 10.5, 10.4, 9.9, 9.2, 9.0, 10.4, 9.6, 8.7, 11.4, 10.1, 9.4, 8.9, 12.8, 9.1, 9.7, 8.8, 9.5, 10.6, 9.4, 9.5, 9.4, 9.6, 11.3, 9.4, 9.2, 9.3, 10.0, 11.05, 9.1, 11.2, 9.9, 9.2, 9.4, 11.4, 9.2, 9.9, 9.0, 11.0, 10.6, 9.7, 9.6, 11.1, 9.5, 11.4, 10.2, 9.2, 9.8, 9.2, 9.5, 9.9, 10.8, 11.5, 10.2, 9.6, 8.4, 9.5, 11.5, 9.53333333333333, 9.1, 9.4, 9.2, 9.6, 11.5, 9.4, 9.3, 9.4, 10.3, 9.5, 11.4, 10.2, 9.2, 9.6, 10.9, 10.2, 9.7, 9.0, 9.4, 10.2, 11.8, 9.4, 9.0, 9.6, 10.7, 9.4, 11.0, 9.4, 9.7, 9.3, 9.5, 9.5, 9.7, 10.3, 8.8, 8.8, 11.0, 11.3, 9.0, 10.5, 9.5, 11.4, 10.8, 9.9, 10.4, 9.6, 10.0, 9.0, 9.0, 9.4, 10.8, 9.2, 10.0, 9.7, 11.2, 9.5, 10.0, 10.2, 9.2, 9.2, 9.0, 10.2, 9.2, 10.1, 10.5, 9.6, 8.7, 12.0, 11.1, 9.1, 10.6, 10.0, 9.3, 10.8, 9.5, 9.0, 9.4, 11.2, 10.5, 9.4, 10.5, 8.8, 9.3, 11.2, 10.7, 10.8, 9.6, 9.5, 9.1, 9.7, 10.4, 9.5, 9.5, 10.5, 9.2, 9.9, 9.5, 9.0, 10.8, 10.6, 10.0, 10.6, 9.2, 8.9, 9.0, 9.9, 9.9, 9.6, 9.7, 10.5, 9.3, 9.9, 10.5, 10.0, 9.8, 9.5, 9.3, 10.2, 9.5, 9.5, 9.4, 10.8, 10.2, 11.1, 10.3, 11.0, 11.2, 9.4, 10.2, 9.0, 8.7, 8.9, 9.5, 11.4, 10.7, 10.0, 8.6, 9.7, 10.6, 9.3, 9.3, 9.4, 9.3, 9.3, 9.5, 9.8, 9.5, 9.8, 9.3, 9.3, 9.4, 9.5, 9.8, 10.5, 9.5, 10.9, 9.5, 9.6, 9.5, 14.9, 10.4, 9.2, 9.4, 8.7, 9.5, 9.7, 9.4, 9.8, 9.4, 8.9, 9.5, 10.9, 9.0, 9.6, 9.4, 10.8, 9.6, 9.2, 9.8, 9.2, 10.0, 10.1, 9.4, 9.4, 10.0, 9.7, 13.0, 10.0], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Current<br>alcohol=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [11.0, 8.9, 11.0, 10.1, 8.9, 8.7, 10.7, 9.7, 10.0, 9.9, 9.2, 10.5, 9.8, 9.2, 9.1, 8.8, 9.0, 10.3, 12.0, 10.8, 11.7, 9.7, 9.7, 8.9, 12.0, 10.9, 9.4, 9.7, 9.8, 10.2, 8.7, 8.7, 9.6, 9.3, 10.5, 9.5, 9.4, 9.6, 9.4, 9.3, 12.4, 9.3, 9.2, 9.3, 11.4, 10.5666666666667, 9.4, 9.8, 9.0, 10.9, 10.4, 8.8, 11.5, 11.0, 9.7, 9.3, 9.8, 11.1, 9.4, 9.4, 11.1, 9.7, 9.0, 9.7, 9.3, 10.9, 9.2, 9.4, 10.7, 9.0, 9.5, 11.3, 10.4666666666667, 9.4, 10.5, 11.1, 8.9, 10.4, 9.2, 9.0, 9.6, 9.9, 9.5, 9.5, 10.1, 10.4, 9.0, 8.9, 9.8, 10.5, 9.5, 9.5, 9.7, 9.2, 9.7, 10.9, 10.8, 9.2, 8.9, 9.2, 9.4, 10.6, 8.8, 9.3, 9.4, 10.5, 9.4, 9.5, 9.2, 9.1, 9.4, 9.1, 9.8, 9.9, 10.6, 10.6, 9.4, 9.4, 9.5, 11.0, 10.2, 11.4, 10.6, 9.5, 10.1, 9.4, 11.0, 9.7, 10.1, 10.5, 13.4, 10.4, 9.2, 10.5, 9.4, 8.7, 11.4, 10.4, 9.4, 8.8, 10.7, 10.1, 10.3, 11.7, 9.5, 10.3, 10.9, 9.2, 9.5, 10.0, 9.2, 10.0, 10.5, 9.5, 10.1, 10.5, 10.7, 9.4, 9.6, 9.3, 10.4, 9.0, 10.4, 9.2, 9.0, 10.4, 11.3, 10.9, 11.0, 10.3, 9.2, 10.5, 9.4, 10.2, 9.5, 12.4, 10.1, 9.3, 8.8, 10.6, 10.3, 8.0, 10.3, 9.8, 10.5, 10.5, 9.3, 9.2, 10.2, 9.3, 9.7, 9.7, 10.1, 11.1, 8.6, 9.5, 9.1, 9.8, 9.1, 9.6, 9.5, 9.0, 9.0, 9.4, 11.4, 9.4, 9.0, 9.6, 9.0, 8.6, 10.2, 9.0, 9.7, 10.5, 9.3, 11.5, 9.0, 10.2, 9.3, 9.8, 8.7, 9.3, 9.3, 9.4, 9.1, 10.0, 9.1, 10.3, 10.6, 10.1, 8.8, 10.4, 8.8, 9.7, 9.6, 9.4, 9.8, 10.9, 9.2, 11.4, 9.2, 9.7, 10.9, 9.4, 11.4, 10.0, 10.7, 9.3, 9.4, 10.0, 9.0, 8.6, 10.6, 8.8, 9.9, 8.8, 9.4, 9.5, 9.5, 10.8, 9.8, 10.0, 10.1, 10.1, 9.5, 10.8, 9.7, 11.4, 12.2, 9.6, 11.4, 10.0, 9.3, 9.6, 10.2, 9.0, 9.5, 9.5, 10.1, 9.2, 10.0, 9.5, 11.4, 10.9, 9.2, 11.2, 10.1, 9.1, 11.4, 9.8, 9.5, 9.7, 9.2, 9.5, 11.1, 10.2, 9.5, 9.0, 9.2, 10.3, 11.4, 10.6, 10.4, 9.3, 9.5, 10.8, 10.5, 9.5, 9.0, 9.4, 9.4, 9.6, 10.2, 8.7, 9.9, 8.8, 9.8, 9.5, 9.5, 9.3, 11.8, 9.4, 10.1, 9.5, 11.5, 9.4, 8.8, 10.4, 9.5, 10.4666666666667, 9.8, 9.5, 10.5, 11.4, 9.7, 10.4, 9.3, 10.2, 8.8, 10.7, 8.9, 9.2, 10.4, 9.8, 8.4, 10.3, 9.3, 11.0, 8.8, 10.0, 9.3, 11.4], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Reference\", \"x\": 0.245, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Current\", \"x\": 0.755, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"barmode\": \"overlay\", \"legend\": {\"title\": {\"text\": \"target\"}, \"tracegroupgap\": 0}, \"margin\": {\"t\": 60}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.49], \"title\": {\"text\": \"alcohol\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.51, 1.0], \"matches\": \"x\", \"title\": {\"text\": \"alcohol\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"count\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}}}, \"alcohol_good\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (ref)\", \"type\": \"scatter\", \"x\": [11.2, 10.0, 12.7, 10.5, 9.4, 10.1, 13.5, 10.4, 12.4, 11.5, 10.0, 9.8, 10.5, 9.1, 9.5, 9.6, 11.7, 11.2, 12.3, 11.9, 10.0, 12.3, 10.1, 11.9, 11.5, 10.0, 13.6, 11.3, 9.6, 12.8, 12.2, 10.0, 10.9, 11.8, 12.5, 10.0, 9.5, 12.9, 12.8, 11.3, 11.5, 10.2, 12.1, 9.7, 10.0, 8.8, 9.0, 12.3, 12.0, 12.0, 9.7, 8.9, 12.4, 10.3, 11.1, 8.6, 10.8, 11.8, 10.8, 12.5, 10.4, 12.8, 12.2, 10.2, 9.8, 9.2, 11.7, 10.5, 9.8, 13.4, 12.2, 13.4, 11.0, 12.3, 10.7, 9.8, 12.8, 12.3, 10.9, 12.4, 10.1, 13.5, 11.0, 10.4, 12.2, 11.3, 11.3, 9.9, 13.4, 9.3, 10.4, 12.2, 10.2, 12.4, 10.6, 11.3, 10.6, 12.6, 11.2, 9.4, 10.2, 8.9, 11.9, 11.0, 12.5, 9.7, 12.2, 10.6, 11.4, 10.75, 12.4, 8.8, 9.8, 10.9, 10.7, 12.7, 11.4, 11.5, 9.1, 11.0, 9.0, 9.8, 10.4, 8.9, 9.6, 10.5, 9.5, 8.9, 11.0, 9.9, 10.6, 14.0, 9.1, 11.0, 9.9, 12.9, 10.0, 11.0, 13.4, 10.0, 12.7, 10.5, 10.5, 10.6, 9.3, 10.6, 11.7, 10.9, 10.6, 9.2, 9.0, 10.5, 10.3, 9.5, 9.0, 11.9, 11.4, 12.1, 11.4, 12.0, 10.5, 9.8, 11.7, 12.1, 10.4, 9.6, 10.2, 10.1, 8.9, 12.1, 11.1, 9.4, 9.7, 10.5, 10.5, 10.1, 10.0, 9.8, 11.2, 10.8, 10.7, 12.1, 11.9, 12.7, 9.6, 11.0, 13.55, 10.1, 11.6, 10.3, 11.2, 12.8, 12.5, 12.2, 9.7, 12.1, 8.7, 11.0, 11.8, 10.5, 10.7, 12.5, 12.2, 11.8, 10.6, 12.0, 10.9, 10.8, 8.8, 9.5, 10.4, 10.8, 12.1, 10.8, 11.5, 10.0, 11.5, 10.8, 10.9, 12.8, 10.2, 8.7, 10.5, 12.9, 10.6, 10.8, 9.1, 9.1, 10.8, 10.6, 11.0, 9.9, 11.5, 10.4, 11.9, 12.2, 11.0, 9.8, 11.8, 10.7, 10.8, 9.0, 9.2, 8.8, 9.5, 11.4, 10.1, 10.1, 9.3, 12.3, 8.6, 9.1, 10.8, 11.2, 11.2, 11.0, 12.0, 9.4, 12.6, 11.5, 9.0, 12.2, 10.9, 12.3, 11.6, 11.2, 13.2, 12.5, 10.3, 13.0, 10.8, 11.4, 11.4, 11.0, 13.0, 9.9, 10.9, 11.7, 12.8, 10.5, 11.2, 11.6, 12.2, 12.75, 11.9, 11.9, 9.3, 10.0, 9.6, 12.0, 10.1, 12.0, 12.4, 11.2, 10.9666666666667, 9.1, 9.9, 10.0, 10.9, 10.7, 12.6, 10.5, 12.3, 11.0, 9.7, 11.0, 11.4, 11.5, 9.0, 10.1, 9.5, 9.0, 12.4, 11.3, 11.0, 9.7, 9.4, 12.8, 10.9, 12.2, 12.6, 11.4, 12.6, 11.7, 11.0, 9.5, 9.7, 11.2, 9.7, 12.2, 11.0, 12.4, 9.3, 10.4, 10.8, 9.1, 10.5, 12.8, 9.6, 10.5, 9.9, 11.1, 12.1, 9.5, 9.9, 10.0, 9.4, 9.0, 12.4, 8.9, 10.8, 11.2, 10.9, 11.0, 9.6, 11.4, 11.0, 12.4, 10.1, 12.2, 9.4, 10.4, 10.3, 11.5, 9.8, 9.7, 12.6, 11.2, 12.0, 9.0, 10.8, 10.3, 10.4, 10.1, 12.9, 12.5, 12.7, 10.4, 9.9, 9.5, 9.2, 10.8, 9.1, 9.3, 9.0, 10.9, 9.0, 9.5, 10.5, 12.2, 11.2666666666667, 8.9, 9.9, 11.0, 10.4, 11.0, 11.8, 10.6, 12.6, 9.4, 11.5, 9.3, 12.5, 8.8, 11.5, 10.4, 10.6, 11.3, 10.8, 8.7, 10.4, 11.1, 11.3, 11.2, 10.5, 11.9, 11.6, 9.1, 10.8, 9.4, 10.5, 10.8, 9.6, 9.0, 10.2, 11.0, 11.2, 11.4333333333333, 12.2, 12.0, 12.4, 12.4, 12.8, 11.6333333333333, 10.0, 13.1, 11.5, 11.3, 12.3, 10.6, 11.0, 10.7, 11.8, 10.1, 10.2, 10.4, 9.6, 9.5, 11.0, 10.9, 12.6, 12.4, 11.9, 10.2, 9.7, 13.0, 10.2, 10.9, 9.9, 9.1, 11.2, 9.5, 11.0, 9.2, 11.5, 11.0666666666667, 10.4, 11.0, 10.4, 13.4, 9.6, 9.4, 8.7, 8.8, 12.4, 12.9, 12.4, 11.0, 10.2, 10.0, 11.7, 8.5, 8.8, 9.7, 9.0, 12.0, 12.5, 9.0, 11.7, 9.2, 9.4, 9.5, 9.2, 10.3, 11.5, 11.4, 9.6, 10.1, 12.8, 10.5, 10.5, 12.0, 11.7, 9.0, 12.5, 10.1, 11.4, 9.9, 12.3, 12.2, 12.3, 12.1, 10.4, 9.0, 12.1, 12.3, 11.9, 9.3, 11.6, 12.7, 9.5, 13.2, 13.0, 11.5, 9.0, 12.0, 9.3, 11.6, 9.3, 11.2, 10.5, 10.1, 10.7, 10.1, 11.4, 10.7, 10.5, 12.1, 11.0, 12.2, 10.5, 12.8, 10.0, 10.6, 12.2, 13.2, 11.6, 9.4, 12.0, 11.0, 10.0, 11.3, 10.8, 9.7, 10.4, 10.4, 10.8, 9.2, 9.3, 11.4, 9.4, 9.8, 11.2, 9.8, 13.6, 11.0, 11.3666666666667, 10.5, 12.5, 10.1, 12.1, 10.1, 11.5, 12.7, 12.0, 12.9, 9.0, 10.6, 10.5, 10.5, 11.9, 12.5, 10.1, 10.7, 12.2, 10.8, 13.2, 10.8, 10.3, 11.2, 9.9, 12.5, 9.5, 12.8, 10.2, 10.1, 11.1, 10.5, 11.1, 9.2, 11.2, 11.7, 10.2, 11.0, 11.7, 8.8, 10.8, 9.7, 11.5, 8.8, 10.9333333333333, 10.5, 9.8, 10.7, 12.7, 11.8, 10.1, 9.4, 11.3, 10.2, 10.4, 11.3, 10.0, 10.9, 9.6, 10.9, 9.6, 11.7, 9.53333333333333, 12.3, 10.2, 9.5, 9.2, 11.0, 11.7, 11.3, 10.0, 9.53333333333333, 10.8, 9.5, 11.8, 9.9, 12.0, 11.8, 9.5], \"xaxis\": \"x\", \"y\": [0.8156061324462894, 0.42491310922683634, 0.8867827646463432, 0.8014995238430205, 0.30499958310650876, 0.5817355832705369, 0.959171062334887, 0.7854416128369749, 0.9085690698200813, 0.8998600376511439, 0.6341165000693628, 0.412102187638673, 0.7643629411050379, 0.4710001938005606, 0.40182653035141874, 0.40438056362905367, 0.8870480016118494, 0.3650667978415713, 0.9064321709292111, 0.9327245345966092, 0.6458420185168736, 0.8821841129047617, 0.6704018506542557, 0.7655671181822064, 0.8616986618932058, 0.48774537944210006, 0.9637355036179479, 0.6794204065079696, 0.6044835155949141, 0.7867954023600708, 0.9137982268836646, 0.5867502063434873, 0.8048584290077971, 0.9718511071053526, 0.9627192884041744, 0.7978623718349598, 0.6091120966723917, 0.8943338178728011, 0.8853376735027229, 0.9045563504021151, 0.9264844632598176, 0.6342457655367447, 0.9414033426130164, 0.5636516403732365, 0.5172967922101196, 0.4836896337264441, 0.35199620689495453, 0.788779954566273, 0.9696552399248426, 0.772496554239754, 0.8132656157621138, 0.4539090261140653, 0.9333708926412786, 0.679765045723866, 0.48457442622955804, 0.4248820606938153, 0.6737819616086004, 0.8780741425819777, 0.38340602447337646, 0.90634085684919, 0.5574014604752268, 0.6804147683859246, 0.9077110088845216, 0.7718472635729894, 0.4717552048891654, 0.22222808308441652, 0.8616549355667619, 0.705749071892896, 0.4699129352300819, 0.9680524782819758, 0.8891353183282249, 0.9466602521798594, 0.8553382520847058, 0.7430243903066251, 0.6616131862201935, 0.6919609500216202, 0.96565744679506, 0.913108907487878, 0.5395521774612226, 0.9026238558501023, 0.6550941529376255, 0.9757876320152292, 0.8833495792027257, 0.6666029765862381, 0.8504582120840628, 0.9320215595878566, 0.7639947574915884, 0.6085229656221847, 0.9557131606798471, 0.46184432615952054, 0.5642658412077981, 0.8815615400732472, 0.7189203536918151, 0.9301020530176726, 0.7341394174346678, 0.7759189559372703, 0.8448078654733812, 0.9012666081120407, 0.8926028620066223, 0.5287492720273277, 0.6874206920638863, 0.37408584674942635, 0.8348370105186077, 0.8697567261320243, 0.9175759024810304, 0.44644098895981, 0.8874384748400057, 0.7787567487441118, 0.9416122482572158, 0.3265229243180111, 0.9308095750950773, 0.42267134533232753, 0.43068181214270274, 0.8727308285810839, 0.7201611177732586, 0.8430904589044517, 0.8140617541555761, 0.9456747441572588, 0.6672663325862807, 0.8756470416862959, 0.518871521713375, 0.7040615347784164, 0.4957960231649875, 0.6250130361556073, 0.27413726132188326, 0.5193133578087885, 0.37656641690434584, 0.5808048103476511, 0.7917827117482167, 0.36569143480873245, 0.7232542293832885, 0.9785934574433302, 0.5715075300165849, 0.8182555969893297, 0.5448461144048058, 0.9491291995847589, 0.4833587957991669, 0.3189279754564957, 0.9184825510014271, 0.5524830505676419, 0.9600429304649183, 0.7818180966165994, 0.7962710274484252, 0.7569429870375118, 0.46184432615952054, 0.7641514270390748, 0.9486763575522457, 0.8086368705092697, 0.6784536879503494, 0.6877019790624462, 0.6082670858563528, 0.6053794617794684, 0.6319330693089359, 0.4982105707488519, 0.6787928880949093, 0.9231980717613485, 0.8831230955067948, 0.6845485656817341, 0.8799204262605215, 0.9164563829924386, 0.7819268199067826, 0.23469888428232324, 0.9492377841603665, 0.8826092272015389, 0.6360541596480074, 0.5184081252698399, 0.6400126753125241, 0.542646305979658, 0.4479501208302092, 0.7783171875827786, 0.7867712153112567, 0.5236605417423803, 0.6959846197179591, 0.7925023358445066, 0.6683189355892497, 0.18737025221649042, 0.42506327048176057, 0.7272596040941706, 0.7314191754306454, 0.4827891324637794, 0.6649341228620356, 0.9038332731164471, 0.9588917860646077, 0.8945194928389463, 0.49833043835950624, 0.7997712594855277, 0.8577935987172323, 0.7622736922026153, 0.8039391974899521, 0.7396811504731934, 0.8115340233127679, 0.801728888664367, 0.738451208106372, 0.5859674792922007, 0.1865203674848816, 0.8773430435604171, 0.36888329310067386, 0.8651817982269884, 0.9067615420962557, 0.8594983988587351, 0.7437750884018276, 0.9145224932934428, 0.9135679891815164, 0.8001832456898428, 0.6860977766129374, 0.9377826008632761, 0.9300369611912853, 0.6997062971069969, 0.5693182102579236, 0.3404656140239559, 0.7160591142088384, 0.7953146078011, 0.8869803873277935, 0.7639982823097876, 0.8681285227071118, 0.576868797021353, 0.93035102563313, 0.8375600281828176, 0.8279918435672958, 0.9266689436294401, 0.7559862346636359, 0.5099889666930224, 0.6914445842613687, 0.9651950326885705, 0.87851968214492, 0.8499702807396289, 0.4685752957996948, 0.7241546992314323, 0.7848147251007912, 0.7341394174346678, 0.7008877443692281, 0.340588975625529, 0.5013021766499856, 0.8321174529331695, 0.8818378666553491, 0.9176909075187759, 0.8634678749265305, 0.7436082905772717, 0.9343776659412377, 0.7668809937296346, 0.6243383802582345, 0.5332560471205093, 0.6907315465649003, 0.16626803588025432, 0.1668542888532837, 0.7408943843163458, 0.5221312328975666, 0.7457559475413279, 0.46389636934606376, 0.9292627865919654, 0.5268311186840582, 0.4244151934213653, 0.643310536612302, 0.8577438313980266, 0.7816208399762355, 0.8553382520847058, 0.7010035672814305, 0.5242572272016158, 0.9187320011579697, 0.8703498177621264, 0.6713045345576062, 0.9137982268836646, 0.8614414457916845, 0.9445662266054761, 0.8808216590199034, 0.7386378115490353, 0.8873009977622293, 0.9157094897337859, 0.6606038558129893, 0.9296803968514485, 0.8864322240790464, 0.5146720135715994, 0.8720710714485208, 0.9415427660945741, 0.9138701141498735, 0.6527559092576063, 0.8751970040938668, 0.9249766460056568, 0.801728888664367, 0.6575848465963361, 0.6934824043184128, 0.8619113960143526, 0.9419078024651042, 0.9591721389341828, 0.8397407150753159, 0.9084383840076588, 0.4963969309336195, 0.7359588175524252, 0.3531961907069324, 0.9279819479140234, 0.7752976919572294, 0.8665226278427577, 0.9515211055933231, 0.7314191754306454, 0.890886918514299, 0.3235491032739525, 0.3719939405423586, 0.6323804178173072, 0.8398006965792015, 0.8239469134189235, 0.8592101816891015, 0.7615002907198236, 0.8688259750909261, 0.8718104001390852, 0.5838074755684882, 0.8756470416862959, 0.901850575196968, 0.9451930143658351, 0.6253812669856891, 0.5890764576710766, 0.4921052500998711, 0.4862070578416567, 0.9170647663398394, 0.7035583451969506, 0.8476385889092957, 0.5603058978573646, 0.5810606890504925, 0.9088604673919816, 0.8903252600075929, 0.944267921154058, 0.9435968591480925, 0.938237366988842, 0.9357286047893738, 0.7961386682142712, 0.7840233885688647, 0.2513590507613302, 0.7389284097502917, 0.9053472250810051, 0.44438282424164377, 0.862281110352348, 0.8021059248496223, 0.9152740930046814, 0.643737358401971, 0.8540304955499701, 0.8613418170006786, 0.6911084183178322, 0.8848367871057808, 0.8387883096682573, 0.5942651630821018, 0.65691393717736, 0.6369979527510315, 0.8280658524313272, 0.9640736168216585, 0.6546311715671466, 0.5599819536107853, 0.48348053317652906, 0.7668016587569692, 0.03620763244300767, 0.7364400865449663, 0.37408584674942635, 0.8767503774172, 0.8743962287172513, 0.8751970040938668, 0.8833495792027257, 0.7091886355621774, 0.87006937054451, 0.7904001815220257, 0.8761418339280951, 0.8306834851111597, 0.7531715889012326, 0.38181207472529843, 0.6490458991820136, 0.9138057013338913, 0.9046222904886461, 0.17956061692355052, 0.7506163079023257, 0.8963285795381793, 0.8848361664653354, 0.9283037217377402, 0.45996158699034445, 0.7290858434196763, 0.8319094967702583, 0.6578018675312727, 0.18727567457681707, 0.8673410249845035, 0.9453298670648187, 0.9446538464906173, 0.19605573045952288, 0.6723831041639817, 0.3438281302059518, 0.37858973820495484, 0.6953170483296187, 0.21463507152544156, 0.26963792069965237, 0.3280912492037974, 0.8399932187801539, 0.420387898633768, 0.36522500752858966, 0.5810560693343539, 0.9306346767722963, 0.7167716539092029, 0.656736106921484, 0.5549139996760648, 0.6909161521388689, 0.591904263202073, 0.884703171197362, 0.866402281883595, 0.7582770814524421, 0.8990773411030794, 0.1818065866116437, 0.6222165686186035, 0.17261914235374884, 0.8156064679757086, 0.4851213943917703, 0.8871292211128762, 0.8398494053952754, 0.703270618172154, 0.6305543892506115, 0.7494149477175548, 0.1532408287022325, 0.6159732902773407, 0.738220551127759, 0.8354520044441791, 0.8536870432671441, 0.5751476712690671, 0.9077719201719568, 0.7878515691455199, 0.6672663325862807, 0.45293736875445273, 0.17058553029544155, 0.747933377844996, 0.8400163125056676, 0.4516778718827729, 0.6082670858563528, 0.8401843469141149, 0.7636885291754726, 0.789170795337903, 0.8128612802083497, 0.7522530659814418, 0.8086757686066508, 0.8356255123032285, 0.9241779635105248, 0.9674588597049086, 0.9368885694202199, 0.4990764491242286, 0.876561204324957, 0.554264192243629, 0.5967716244634195, 0.9060244606340249, 0.8401608718856799, 0.7329750583133859, 0.8021769878309102, 0.9316817655017511, 0.45488322534173153, 0.798578398438993, 0.7425236774748816, 0.5742682328784404, 0.4937681935814938, 0.8972164286692267, 0.8914273370768748, 0.9377613518261881, 0.8862258850530264, 0.8591757581361523, 0.7410678096850266, 0.6822336012657398, 0.9201658505843877, 0.6982578893131915, 0.5746709232170782, 0.7626532952948841, 0.7137703530889916, 0.7520971196461234, 0.4473853625959922, 0.7957460056304991, 0.4833174871501707, 0.8758467705785958, 0.4689303842787964, 0.6133612564737879, 0.8568681391705205, 0.6835133967314007, 0.9732070839986944, 0.21435716257549006, 0.5761668962420043, 0.4055433603128916, 0.3743394998756179, 0.9118635774953143, 0.964551884718591, 0.9306459334511011, 0.8424802355113449, 0.7739144871152517, 0.6872688771534424, 0.8590561833388345, 0.6714384475466295, 0.6408669500407106, 0.5203550269219845, 0.2856853969697174, 0.857760555506807, 0.9307094503226838, 0.6787928880949093, 0.8308635255795866, 0.29271374211533296, 0.6769315553524353, 0.23831547366416572, 0.5895099457120908, 0.8994675076574448, 0.8893400405584444, 0.8456825404777587, 0.5399612081435882, 0.6188649121485582, 0.9281492942813848, 0.7611740601422801, 0.46550237374781617, 0.8896861436466836, 0.9038901015569306, 0.5044440900554997, 0.9215480939667524, 0.6930273792518707, 0.8723244804196287, 0.5624338775604165, 0.9226297661236537, 0.8469231754225917, 0.9430557295321259, 0.9097116306258912, 0.5988707702267543, 0.3813853072548755, 0.8843832309478876, 0.9006952500629406, 0.918975987201669, 0.18997930334445084, 0.8923106748541326, 0.8461388699436441, 0.5973439234355874, 0.9544642924744549, 0.91770416680597, 0.9177239854204658, 0.17584552180125673, 0.9240099144459667, 0.48524948024905407, 0.8889685222180134, 0.5785503824403398, 0.7511953459672914, 0.6887596776945688, 0.6717539058356753, 0.7168761391602206, 0.7134478068952186, 0.834626350903405, 0.5715867980362679, 0.6588392688727011, 0.9488572786900573, 0.8920529250761863, 0.8891353183282249, 0.707981940789761, 0.926348680038428, 0.631489487929038, 0.7443856388661001, 0.9260754381930228, 0.9544642924744549, 0.8497401318990601, 0.5604010177433062, 0.8036334301115304, 0.7898153537185114, 0.8491431337122072, 0.6570881560807702, 0.8389599143569951, 0.7944137576415592, 0.8132668978866627, 0.44714680104169846, 0.7978021044641371, 0.41921696608658454, 0.38876183891604754, 0.9248463736054193, 0.4277915265084825, 0.6345107008491314, 0.8008942533173764, 0.5087430598332189, 0.9414938992689892, 0.6922115882765215, 0.8296175750175913, 0.8593339228153332, 0.8975141534758351, 0.5977126281557783, 0.9279478536756302, 0.6485770817571253, 0.8905823996589662, 0.9332072841984264, 0.9432461110830079, 0.9410120781436498, 0.6339696776630096, 0.7120962557761497, 0.5841709037351369, 0.5928970840420333, 0.9006589732900512, 0.936371533648048, 0.6907852379101131, 0.7675780198071424, 0.9444587893431046, 0.4702336163336472, 0.8925536722101626, 0.8158978708906081, 0.822780392485108, 0.8037335327290217, 0.8382351003285965, 0.8941557358589171, 0.4796498334522667, 0.926348680038428, 0.6842118015950474, 0.6463580983468415, 0.8292048071278182, 0.5834426687867836, 0.8419845362148763, 0.2431563391580561, 0.7763142135369961, 0.9390550746437164, 0.7774903237071782, 0.8141232663130791, 0.9444089886680379, 0.430401459478284, 0.9192677156927759, 0.8427595869840984, 0.87120858451521, 0.5693182102579236, 0.820012080301976, 0.58719119911586, 0.42769376643096113, 0.3542595869275313, 0.89579938191327, 0.8743523014696554, 0.7820497043505815, 0.5279069501129625, 0.8869579700149332, 0.45488774279476296, 0.8514781135508903, 0.8278297091497892, 0.663749097381813, 0.5132851713944618, 0.4906566565015208, 0.6415219885510332, 0.6991293681294938, 0.8150539074042624, 0.5800669536763935, 0.9583771200922359, 0.7366090055976814, 0.5747817696023392, 0.5315376696882942, 0.8074446941396305, 0.9038901015569306, 0.9087015650331977, 0.6697291810323083, 0.5800669536763935, 0.8807270543114014, 0.5135845984304893, 0.9352791850238339, 0.36120709973337456, 0.6206709330576408, 0.906286252315459, 0.7937202818717513], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [8.7, 12.6, 10.6, 10.5, 9.4, 9.5, 9.7, 10.4, 9.3, 9.7, 10.2, 11.0, 8.7, 10.7, 9.3, 9.5, 9.5, 9.8, 9.2, 10.9, 9.5, 9.1, 11.2, 11.2, 9.9, 9.8, 9.9, 10.1, 9.1, 10.1, 9.6, 10.4, 10.8, 10.0, 9.1, 10.1, 10.0, 10.8, 9.6, 9.2, 9.2, 10.6, 9.5, 8.9, 9.5, 10.1, 9.1, 10.5, 10.6, 9.3, 9.4, 9.1, 9.3, 9.6, 9.8, 9.2, 10.6, 10.6, 10.1, 11.0, 9.3, 10.0, 12.6, 9.4, 9.2, 10.4, 9.2, 9.9, 9.8, 10.1, 8.8, 11.0, 8.7, 11.4, 10.2, 10.0, 8.9, 11.1, 9.2, 12.0, 10.0, 11.1, 9.0, 9.05, 9.8, 10.9, 10.1, 10.0, 11.6, 9.2, 11.0, 9.4, 9.8, 8.7, 9.1, 9.5, 9.1, 9.5, 9.2, 9.6, 9.2, 9.7, 10.2, 9.0, 9.3, 9.3, 10.3, 11.4, 9.0, 10.5, 10.4, 9.9, 9.2, 9.0, 10.4, 9.6, 8.7, 11.4, 10.1, 9.4, 8.9, 12.8, 9.1, 9.7, 8.8, 9.5, 10.6, 9.4, 9.5, 9.4, 9.6, 11.3, 9.4, 9.2, 9.3, 10.0, 11.05, 9.1, 11.2, 9.9, 9.2, 9.4, 11.4, 9.2, 9.9, 9.0, 11.0, 10.6, 9.7, 9.6, 11.1, 9.5, 11.4, 10.2, 9.2, 9.8, 9.2, 9.5, 9.9, 10.8, 11.5, 10.2, 9.6, 8.4, 9.5, 11.5, 9.53333333333333, 9.1, 9.4, 9.2, 9.6, 11.5, 9.4, 9.3, 9.4, 10.3, 9.5, 11.4, 10.2, 9.2, 9.6, 10.9, 10.2, 9.7, 9.0, 9.4, 10.2, 11.8, 9.4, 9.0, 9.6, 10.7, 9.4, 11.0, 9.4, 9.7, 9.3, 9.5, 9.5, 9.7, 10.3, 8.8, 8.8, 11.0, 11.3, 9.0, 10.5, 9.5, 11.4, 10.8, 9.9, 10.4, 9.6, 10.0, 9.0, 9.0, 9.4, 10.8, 9.2, 10.0, 9.7, 11.2, 9.5, 10.0, 10.2, 9.2, 9.2, 9.0, 10.2, 9.2, 10.1, 10.5, 9.6, 8.7, 12.0, 11.1, 9.1, 10.6, 10.0, 9.3, 10.8, 9.5, 9.0, 9.4, 11.2, 10.5, 9.4, 10.5, 8.8, 9.3, 11.2, 10.7, 10.8, 9.6, 9.5, 9.1, 9.7, 10.4, 9.5, 9.5, 10.5, 9.2, 9.9, 9.5, 9.0, 10.8, 10.6, 10.0, 10.6, 9.2, 8.9, 9.0, 9.9, 9.9, 9.6, 9.7, 10.5, 9.3, 9.9, 10.5, 10.0, 9.8, 9.5, 9.3, 10.2, 9.5, 9.5, 9.4, 10.8, 10.2, 11.1, 10.3, 11.0, 11.2, 9.4, 10.2, 9.0, 8.7, 8.9, 9.5, 11.4, 10.7, 10.0, 8.6, 9.7, 10.6, 9.3, 9.3, 9.4, 9.3, 9.3, 9.5, 9.8, 9.5, 9.8, 9.3, 9.3, 9.4, 9.5, 9.8, 10.5, 9.5, 10.9, 9.5, 9.6, 9.5, 14.9, 10.4, 9.2, 9.4, 8.7, 9.5, 9.7, 9.4, 9.8, 9.4, 8.9, 9.5, 10.9, 9.0, 9.6, 9.4, 10.8, 9.6, 9.2, 9.8, 9.2, 10.0, 10.1, 9.4, 9.4, 10.0, 9.7, 13.0, 10.0], \"xaxis\": \"x\", \"y\": [0.2802292104526322, 0.9455194119275858, 0.4978743212349556, 0.5289145624519528, 0.28439238707197784, 0.2033309570226689, 0.27345747478543325, 0.8322873304845451, 0.389055896812549, 0.3675472469853882, 0.5781933746273124, 0.7401955299744071, 0.44969671697605845, 0.4367887814338696, 0.31593955341667695, 0.3775624358859999, 0.19282181046294666, 0.048451763306065584, 0.6005928650583868, 0.032225376113695775, 0.427412413738938, 0.23973251442015217, 0.13890126550157303, 0.8613925272127, 0.329663916828638, 0.19359965390713213, 0.6827271716759634, 0.1960905505555538, 0.08135735686643118, 0.39737240301928484, 0.13902987396822816, 0.6514166433739288, 0.6994753721471061, 0.7140886736258081, 0.5021795028970708, 0.48743245558712556, 0.5731139673640956, 0.8820820642542792, 0.559972149724866, 0.5061565591493914, 0.5066810377847554, 0.833805652807593, 0.6979972163580744, 0.3177574231538272, 0.13068190592986567, 0.758876109553896, 0.5681062961269688, 0.715544821914063, 0.762062625203523, 0.4464438677531786, 0.20995974230910305, 0.5262622410710028, 0.39442669669188163, 0.2537324982988368, 0.6775437642744659, 0.23876321589577687, 0.6369158982934647, 0.38960060362966165, 0.6034323722874255, 0.7769991715799629, 0.15199748354041337, 0.5641412449951732, 0.7590466800561823, 0.5969347905931296, 0.1048362779837843, 0.7217824369593382, 0.2662339163773806, 0.16472378978351135, 0.37760124376932414, 0.7071736299639594, 0.3436862995931572, 0.8384434752264291, 0.3635333644877426, 0.7813188949129265, 0.7279369976219869, 0.5641098847382463, 0.3863964747623771, 0.9209913370067284, 0.1477144681640183, 0.8809374658555192, 0.6533168894759348, 0.8873477284758582, 0.3697306267878623, 0.28319023347825867, 0.5203701741750857, 0.5523747693308857, 0.6387521731780509, 0.3881380695009739, 0.8487896327149285, 0.4636606453307818, 0.8384434752264291, 0.558266603669778, 0.21657231888677728, 0.3635333644877426, 0.5512671313974766, 0.5051039398599867, 0.5827915753039158, 0.49441682850108926, 0.47309171914705017, 0.6262595591688196, 0.5508242483721094, 0.47332791509789995, 0.7117569366896692, 0.3933786516273859, 0.16465066549244003, 0.7490394132223248, 0.769261050002088, 0.7431932405995126, 0.3141000916210982, 0.723735045552473, 0.6484132891031948, 0.688519894019609, 0.40496704226994307, 0.5803736122960511, 0.6327801522745691, 0.45115706990411364, 0.37268733756108086, 0.9009693101135351, 0.06496389958099598, 0.44431713201158524, 0.39960831974332744, 0.8662156944598043, 0.31018081106061823, 0.5339551117365043, 0.33311273919547707, 0.400132762133902, 0.8528754522806217, 0.14419347879543085, 0.11672350429510901, 0.44556702529145975, 0.6160120899414699, 0.13766892845409207, 0.5517204028384314, 0.5232178919035022, 0.35483403305733974, 0.4900213704561591, 0.8854578072659228, 0.43084122675663034, 0.7601186327653665, 0.14072030431570776, 0.6186690618327106, 0.5245054232921349, 0.7326259458716644, 0.5690781983520095, 0.4018508815425063, 0.24877469563805235, 0.7952501197393639, 0.8766221356386195, 0.303451532996695, 0.5357745481647883, 0.7096524147827454, 0.20877177283968149, 0.8635610141758273, 0.46736762313881036, 0.6061151992073851, 0.113015272873705, 0.40446014603085867, 0.6332606063976143, 0.648705381890928, 0.42186952587750404, 0.8047913565308571, 0.3017058309841093, 0.38406990132164637, 0.33494193042999065, 0.19929939967121216, 0.8624919783238055, 0.528785836409086, 0.43084122675663034, 0.47042159929499583, 0.5061565591493914, 0.5759491569657543, 0.8468794444363914, 0.20342296359496542, 0.5170831534483544, 0.3666753044655067, 0.6131723001375537, 0.4410646109528086, 0.6903416342484309, 0.3866428492574258, 0.4636606453307818, 0.4525459302795702, 0.03199256040434073, 0.7029629492254846, 0.2433141614541866, 0.548755973819273, 0.3775060302547258, 0.06593060991448157, 0.8745624549148976, 0.22931948662359403, 0.27267688907931714, 0.589328430619086, 0.8007160756317941, 0.5525637789187225, 0.5008522318356121, 0.4556212410144909, 0.17391722008742402, 0.43574637053357784, 0.3237440077649342, 0.6071692164257629, 0.6925152430641841, 0.592675381607996, 0.43854150134957587, 0.43854150134957587, 0.42437112972565305, 0.8061118855433299, 0.35195592295594336, 0.7605370065149419, 0.38898578429124253, 0.67510953655807, 0.872979709380305, 0.710510994258769, 0.720290290780972, 0.4820787970895852, 0.42019280799979697, 0.4304380754474639, 0.25285023254778977, 0.3238056884730761, 0.39471961640683584, 0.09510031985475974, 0.367046376808582, 0.21500793651835448, 0.8705359023101334, 0.6100742529031461, 0.6226449432624995, 0.7279369976219869, 0.3643494054700089, 0.09992017521484964, 0.41475515148757036, 0.6462260464983366, 0.14102909592513518, 0.48949585696458414, 0.5239520436918008, 0.6084413884537807, 0.5655473856702703, 0.9517420512476797, 0.7489379515982664, 0.4647937384849751, 0.7915321263825208, 0.44112279258530757, 0.5734340256727429, 0.6604471727860799, 0.4845203185458914, 0.6968730453869196, 0.5315374962198609, 0.8685951485887234, 0.6242442748350044, 0.2912097196987059, 0.7725938221565348, 0.2067629769731588, 0.30221725334927335, 0.13129342562285412, 0.6467789443522378, 0.6994753721471061, 0.11825382206919556, 0.41022417118631593, 0.4882665226122541, 0.7732287086973071, 0.25374762405010176, 0.49441682850108926, 0.3723877205427743, 0.652330313245635, 0.43667799883041203, 0.5964718913578133, 0.55172276504346, 0.24113559934961917, 0.8243980268882987, 0.7263843594269437, 0.43535214809021755, 0.8721122798612579, 0.18723914490145582, 0.6486906676970999, 0.11576704656818047, 0.4328241622975616, 0.491481212420291, 0.5264345378086769, 0.33856526784971647, 0.2967410926251248, 0.581398831228375, 0.5973776665460488, 0.6195406102170065, 0.37782717658841725, 0.323061133240968, 0.17420808473594895, 0.19634770547538957, 0.46492234760650425, 0.49613167963272686, 0.5812209036149294, 0.6057291775435286, 0.63414717387345, 0.5702687187355167, 0.8604975146328253, 0.6309022132706124, 0.48732991249542923, 0.6887148870948692, 0.41581945293096145, 0.5706760596351739, 0.4831274653996314, 0.06684727567316755, 0.49090643211649887, 0.15191610726090596, 0.2711405311223577, 0.7653618545702112, 0.09266565137124261, 0.4554350627407873, 0.19698919164573708, 0.6930185080649685, 0.5227537922811563, 0.50434568709929, 0.7082092780767422, 0.46058046365566996, 0.6735723234187477, 0.4285936050615775, 0.323061133240968, 0.5168500865319015, 0.6161307914674419, 0.23456444218973552, 0.3192004782541023, 0.21968945907811915, 0.5028183230931117, 0.43371621376298963, 0.6744209213341115, 0.5940260419772637, 0.13783310426722128, 0.5136444387530009, 0.5508647999875032, 0.4955911012838212, 0.9814394195009358, 0.8260225289794664, 0.17965956338109995, 0.46844896472597397, 0.6048119589659149, 0.3289160319090978, 0.2454606394453749, 0.7497022835596558, 0.683485355417811, 0.20995974230910305, 0.23504578258460665, 0.37175956099497537, 0.4875530438829156, 0.24982584224249993, 0.6282829625348888, 0.4520795162158371, 0.8200372413039435, 0.12832513643528837, 0.5299630655130737, 0.29552777318700446, 0.24021937552346023, 0.5429028773737552, 0.6311869746243346, 0.4145977043912777, 0.39329840463575844, 0.39070335653410526, 0.4286990948130573, 0.846836560604146, 0.6880850122626078], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (curr)\", \"type\": \"scatter\", \"x\": [9.0, 9.0, 10.9, 9.4, 9.5, 9.8, 10.1, 10.8, 12.0, 10.5, 10.0, 11.0, 12.4, 12.2, 12.8, 10.6, 11.4, 11.5, 10.3, 12.4, 8.9, 9.2, 10.5, 9.6, 10.1, 12.2, 11.0, 11.3, 12.5, 12.3, 13.0, 10.1, 9.5, 9.2, 12.1, 8.7, 11.3333333333333, 9.3, 13.4, 11.8, 12.4, 11.3, 11.8, 8.7, 9.4, 12.7, 9.0, 9.3, 9.5, 12.5, 9.2, 12.8, 10.4, 10.5, 11.4, 8.8, 9.5, 14.0, 9.8, 9.1, 10.4, 12.3, 11.8, 11.2, 9.3, 12.5, 11.0, 10.7, 10.55, 9.6, 9.1, 11.7, 9.2, 11.0, 9.7, 9.3, 9.3, 10.2, 10.8, 9.4, 12.2, 10.2, 11.4, 11.9, 9.8, 12.0, 10.9, 11.5, 11.5, 9.5, 10.8, 11.9, 12.6, 13.2, 10.1, 12.6, 10.0333333333333, 13.1, 10.2, 11.1, 11.1, 9.9, 11.2, 13.2, 9.1, 9.5, 9.4, 12.6, 11.6, 11.3, 10.7, 8.8, 12.3, 12.6, 12.4, 12.4, 11.3, 9.5, 10.4, 11.5, 11.8, 12.1, 12.0, 12.2, 10.9, 12.3, 9.2, 12.3, 10.2, 12.0, 12.5, 13.6, 12.5, 9.1, 9.8, 9.3, 10.5, 10.8, 11.6, 11.0, 11.2, 12.7, 10.8, 9.4, 9.6, 10.5, 9.4, 10.5, 10.9, 10.2, 9.8, 11.2, 9.5, 9.2, 12.5, 12.0, 10.6, 11.3, 10.0, 9.0, 12.7, 9.5, 13.4, 11.7, 10.3, 11.4, 11.5, 9.9, 11.0, 9.2, 11.4, 10.2, 10.9, 11.6, 14.0, 11.8, 11.4, 13.1, 13.6, 12.5, 11.0, 9.2, 9.5, 10.7, 9.4, 11.6, 10.3, 12.6, 8.8, 11.1, 11.0, 9.4, 11.9, 11.9, 10.8, 12.2, 10.5, 12.5, 9.4, 9.8, 12.5, 10.4, 9.6, 11.9, 11.0, 10.6, 9.7, 12.0, 10.1, 10.2, 11.4, 12.8, 10.6, 12.4, 9.0, 12.8, 10.0, 11.3, 11.6, 12.8, 12.2, 10.0, 10.8, 9.5, 9.0, 9.2, 11.2, 10.3, 12.0, 11.2, 9.25, 10.1, 10.8, 12.1, 12.8, 8.9, 12.3, 11.2, 12.0, 11.2, 10.7, 13.3, 13.0, 10.3, 10.4, 11.4, 8.8, 9.2, 10.7, 10.1, 9.6, 9.2, 8.8, 11.6, 10.7, 9.8, 10.2, 11.0, 12.2, 12.2, 10.4, 10.6, 10.7, 10.2, 11.1, 12.5, 12.7, 10.6, 9.3, 9.9, 9.9, 11.3, 12.6, 11.0, 9.3, 9.9, 10.7, 10.4, 10.6, 11.2, 9.1, 11.9, 11.8, 10.0, 12.8, 11.6, 11.45, 11.3, 9.7, 10.2, 11.0, 9.5, 10.1, 12.8, 10.4, 11.0, 9.2, 12.2, 11.0, 11.8, 12.9, 10.3, 11.3, 12.3, 9.0, 11.0, 12.0, 11.0, 12.6, 11.2, 10.5, 11.5, 11.6, 9.3, 11.4, 11.0, 9.8, 9.8, 10.1, 9.5, 12.5, 13.0, 10.3, 9.1, 10.4, 12.7, 11.0, 11.5, 9.6, 12.6, 10.6, 9.0, 9.4, 9.5, 9.2, 9.4, 9.1, 10.0, 10.2, 11.9, 10.8, 10.2, 9.7, 11.4, 9.5, 10.9, 11.4, 10.5, 10.0, 11.7, 11.3, 11.5, 8.8, 9.2, 9.3, 12.0, 10.0, 10.2, 10.4, 12.5, 12.9, 10.3, 8.7, 8.8, 10.2, 9.2, 8.9, 10.3, 9.4, 10.2, 13.05, 10.1, 10.8, 11.4, 11.7, 10.8, 12.0, 11.2, 9.6, 12.4, 9.4, 11.5, 12.2, 9.3, 11.9, 10.5, 11.0, 11.65, 11.4, 11.3, 11.0, 9.3, 11.2, 10.2, 10.2, 10.8, 9.0, 12.5, 12.6, 10.8, 10.6, 11.5, 11.4, 9.5, 12.7, 9.8, 11.0, 10.5, 9.0, 12.5, 9.6, 10.0, 10.4, 9.8, 10.6, 10.3, 9.3, 10.6, 12.6, 12.8, 11.3, 11.9, 12.1, 10.3, 9.2, 11.2, 10.2, 10.6, 12.4, 12.0, 11.7, 10.2, 11.4, 12.8, 10.5, 9.0, 10.8, 9.0, 12.0, 9.0, 9.1, 12.5, 9.8, 9.4, 12.0, 9.2, 14.0, 9.2, 10.0, 9.7, 10.6, 9.2, 9.5, 9.8, 9.0, 11.0, 11.0, 10.65, 9.0, 11.3, 11.3, 13.3, 9.4, 8.7, 10.9, 10.4, 12.7, 10.3, 11.0, 10.6, 10.4, 10.3, 12.5, 8.7, 10.3, 12.8, 9.5, 11.3, 10.2, 11.4, 10.0, 10.6, 11.4, 11.9, 9.6, 11.0, 12.7, 12.5, 9.7, 10.8, 10.1, 9.1, 12.5, 11.0, 9.8, 9.8, 11.4, 10.0, 11.5, 10.3, 11.75, 10.3, 9.1, 11.0, 13.5, 8.9, 9.4, 12.0, 10.1, 12.3, 12.9, 11.3, 14.2, 11.4, 11.5, 12.6, 10.1, 11.7, 9.2, 12.4, 13.0, 10.5, 11.0, 9.2, 11.6, 9.3, 10.7, 12.6, 11.5, 9.1, 11.3, 10.0, 9.0, 13.0, 12.5, 11.6, 11.5, 12.1, 9.7, 9.5, 11.2, 11.3333333333333, 10.9, 11.4, 13.1, 11.5, 10.9, 11.8, 12.3, 9.1, 9.5, 11.4, 10.5, 11.1, 11.0, 10.0, 10.1, 12.3, 11.9, 11.0, 9.8, 10.4, 8.7, 11.4, 9.1, 12.1, 11.4, 11.2, 13.0, 12.5, 10.5, 10.3, 11.1, 12.0, 12.4, 11.0, 11.0, 12.3, 11.0, 12.4, 9.5, 9.6, 10.5, 12.5, 10.0, 10.0, 10.2, 9.5, 10.2, 11.1, 10.0, 10.4, 10.0, 10.0, 11.2, 10.4, 12.5, 9.6, 11.5, 12.7, 10.8, 12.2, 9.4, 11.2, 10.5, 9.8, 10.5, 10.6, 10.4, 9.9, 9.6, 10.5, 9.1, 11.9, 9.8, 12.1, 12.9, 10.4, 9.5, 12.2, 10.4, 12.4, 11.0, 10.0, 10.8, 12.15, 11.45, 10.2, 11.8, 12.1, 9.8, 10.0, 12.7, 11.6, 12.3, 10.2, 13.4, 9.5, 11.0, 12.0, 12.8, 9.2, 8.8, 9.9, 8.9, 9.5, 13.4, 11.0], \"xaxis\": \"x2\", \"y\": [0.33396714643252134, 0.5044440900554997, 0.8874896900044845, 0.4686759077780351, 0.23831547366416572, 0.571181601185031, 0.7785327680196316, 0.7290551099174598, 0.9581131370131553, 0.6801000322064107, 0.413367674560271, 0.6667140739211237, 0.9108229754863395, 0.9275086157065797, 0.9186958597750785, 0.7191871442695774, 0.8184457509658746, 0.8597940676688322, 0.7947045908306632, 0.8244149680645384, 0.42771531534877594, 0.5315376696882942, 0.7136291946100958, 0.5510697799054304, 0.6393262665313312, 0.9016582766249417, 0.8560880110261746, 0.8947361144883382, 0.9102326114023062, 0.840723585394272, 0.9264645566705582, 0.5105903360131552, 0.752648770317166, 0.5855954083225455, 0.8989214048388485, 0.5190750352404293, 0.9560713253502463, 0.7273157243430202, 0.9279672131348602, 0.640103147954212, 0.9158977434209615, 0.9035955072010529, 0.7140955379655831, 0.233508355491505, 0.7280578325574358, 0.8810827811902006, 0.3966129217085586, 0.15541760955422754, 0.5851621750323275, 0.9046111951917862, 0.4177213302712193, 0.7993763114768937, 0.6978409661933959, 0.6473373667551029, 0.770784382977056, 0.6500641275496193, 0.548949563093737, 0.9803199442553986, 0.6150775052067382, 0.391333092160729, 0.6966682278280982, 0.9426748402861506, 0.9170092977635526, 0.844625652038695, 0.5621782696252592, 0.8935808323282117, 0.6792214086077275, 0.6719996755401956, 0.5252591274442797, 0.7277045758687855, 0.4685752957996948, 0.8616549355667619, 0.347491516391863, 0.8224130863808733, 0.5340790568488665, 0.6711667658766297, 0.5277539611022016, 0.7226430813715845, 0.8140972745487615, 0.3280236940194876, 0.9543080196225542, 0.7752655593026647, 0.9223925066666061, 0.8588031784191832, 0.6345107008491314, 0.9393010047953068, 0.7897067132703484, 0.8608062836413887, 0.8367885032124018, 0.38555642305179116, 0.8611944449682004, 0.9172341012895443, 0.9206892306522243, 0.9500505925695213, 0.537798347971205, 0.9173482789702866, 0.44454351342386716, 0.8909704850569525, 0.7351932580165473, 0.6818328744935735, 0.7981559962965634, 0.7626532952948841, 0.807353254900461, 0.964411205143099, 0.4685752957996948, 0.6986526320119215, 0.1956969407137045, 0.9233481403380283, 0.8218375601976645, 0.8536269727611236, 0.5637680470866036, 0.42267134533232753, 0.93003590801509, 0.9364808605729722, 0.8816060831574614, 0.9663102962713933, 0.8345570787709832, 0.4997893986747249, 0.7921603237806832, 0.5586815647381762, 0.8622246464681924, 0.9828719612298703, 0.909295720392338, 0.9476267884443668, 0.5395521774612226, 0.901360886913609, 0.39410444510430487, 0.9262213132200262, 0.6627387433216217, 0.9629433821448677, 0.9614311452267452, 0.9802968012486629, 0.933760787013923, 0.34432718187202205, 0.63596173557573, 0.624364378916488, 0.7417789548241253, 0.7300918276682445, 0.6968315453320488, 0.7840233885688647, 0.8958841271622066, 0.5417426694559925, 0.7102579146160282, 0.6004345411549624, 0.515920701757342, 0.7587882454650442, 0.5029588531082266, 0.6887596776945688, 0.8642849605932809, 0.6469572639767995, 0.8103639651534781, 0.939764354405301, 0.694136577696587, 0.6593725303534554, 0.9646797005081557, 0.7979900311745153, 0.792123904710467, 0.8869579700149332, 0.7351250317969437, 0.5332560471205093, 0.9406873315653421, 0.39362685027924615, 0.9466602521798594, 0.8394325033041952, 0.6633442657978572, 0.8126408700417265, 0.7332457619716184, 0.08024070404520958, 0.8667774471450977, 0.6466814331404849, 0.912366876100516, 0.656670904734599, 0.8701678467707724, 0.8875925797813499, 0.9658725076002231, 0.7668332861852056, 0.8604440887473094, 0.934384507524058, 0.9605946056867319, 0.951253157591183, 0.5749289095213865, 0.6279243005170476, 0.7937202818717513, 0.7665301650725991, 0.700127941221274, 0.8531107444728586, 0.7947045908306632, 0.8870566665876504, 0.5476228787844645, 0.8410401833568673, 0.8736671065238262, 0.6519898659949606, 0.936943112068646, 0.9077719201719568, 0.8071889556778997, 0.8815615400732472, 0.8935313268029127, 0.8782891297971865, 0.5029588531082266, 0.5797201450332624, 0.9416775458320723, 0.5958140198486584, 0.2485157288688957, 0.932021424688801, 0.8531502837407814, 0.6344194678828672, 0.632587077283238, 0.9121448358615357, 0.5776545535910985, 0.9052765174806566, 0.8580390107418799, 0.8998644401112552, 0.6784536879503494, 0.9458342431661766, 0.21387363850783603, 0.9530348339880965, 0.7307391114165022, 0.7187682731289255, 0.6905635603269331, 0.9569274903702625, 0.9287384091375525, 0.3856984054091925, 0.504413920551941, 0.5389739198483336, 0.5921068831639978, 0.10702848140489757, 0.8772993497727819, 0.6361944011057532, 0.8952999713010865, 0.7069578609115064, 0.10632960186243966, 0.6465592619811017, 0.9116333268133815, 0.9210441535829985, 0.9483358221641291, 0.5800224234700003, 0.896951343689222, 0.8958659323404018, 0.8896861436466836, 0.7763142135369961, 0.778627444633172, 0.9274605647284293, 0.9167924025380936, 0.6422094408272838, 0.6363725079258666, 0.8694129796739031, 0.5693182102579236, 0.5315376696882942, 0.6814536952243052, 0.30089534057709466, 0.6689448970920832, 0.6419522618821227, 0.6500641275496193, 0.8221968069187356, 0.9285763346020383, 0.8495153837633861, 0.7135666997345446, 0.8850789772017983, 0.9128367188568884, 0.8709442503982084, 0.44714680104169846, 0.7147831401969469, 0.6814536952243052, 0.5823319261018008, 0.7718122970862826, 0.8925058444773368, 0.9249991097277733, 0.7849066379312727, 0.5120166815330335, 0.7863291630268572, 0.8171821177205619, 0.8878235148823457, 0.9813953955585096, 0.5009899161211654, 0.6787020040856314, 0.2747106808400709, 0.6998114428322438, 0.7191783799678735, 0.7566715075843347, 0.7741630673610131, 0.692871858980435, 0.8706970297938403, 0.9226518689226377, 0.619213859232465, 0.9620625840847012, 0.8161066853745392, 0.7984578805051198, 0.8987836568806694, 0.27900511725120763, 0.747868261422589, 0.8013372150606806, 0.4430395412241901, 0.8082746512504794, 0.9248395818955686, 0.8132668978866627, 0.7926355964369082, 0.7243101498981422, 0.8251498778038484, 0.865753667016409, 0.8784859927081519, 0.9613966942665844, 0.8380103992838959, 0.9376908870460701, 0.8505645904112248, 0.5317253080143199, 0.8756470416862959, 0.8823120896825394, 0.8920529250761863, 0.9565288857220365, 0.92576324319171, 0.8397457208604353, 0.8008835764985612, 0.7620555647282774, 0.6333567796033132, 0.8986985644274655, 0.8289197139212982, 0.38568054861828666, 0.4358764146033148, 0.7013568331933456, 0.5524769805317635, 0.8654015550049637, 0.9625385348003681, 0.4997035751430624, 0.5940434106189647, 0.29640429037896177, 0.9370396801623051, 0.7496358493500708, 0.8521916566704996, 0.7519935213994349, 0.8956127660014477, 0.7563308848917781, 0.5425355780301907, 0.1652985164032473, 0.5777375433929663, 0.5926841497777402, 0.5247451599628447, 0.6215406511606532, 0.646742228322253, 0.5236567091352762, 0.8105889943537302, 0.7614647275399787, 0.7272264480694343, 0.44438282424164377, 0.8051848688934031, 0.253979247575754, 0.8737269176380216, 0.7884186533408385, 0.5226162157005312, 0.7776146375974927, 0.8021344726910251, 0.6794204065079696, 0.8398669626756513, 0.3743394998756179, 0.6593725303534554, 0.41008410759983227, 0.8726624594592295, 0.31336232876890546, 0.6187135046228962, 0.9208146539756937, 0.8948907807194619, 0.9475948217130945, 0.7098971478357265, 0.41970311630379203, 0.5524505095188592, 0.6689295490636696, 0.39534528644804523, 0.6686700461744643, 0.6608417181144597, 0.6289006219381473, 0.8112353209803558, 0.9675531845963172, 0.3468688843876404, 0.8171815196180959, 0.9315945487332388, 0.7612383340144859, 0.43979370974717685, 0.9452166580978265, 0.810349906376065, 0.4979189466877109, 0.9054024939516333, 0.7506263221664519, 0.8595966107872783, 0.9041757536760852, 0.5120166815330335, 0.9246344940597735, 0.622364539475366, 0.7975959936185795, 0.9376528402833735, 0.8270495791839716, 0.7463426393970082, 0.8508295060861325, 0.5277539611022016, 0.7926521549058593, 0.8343380415579561, 0.7973631232158779, 0.5423298306356671, 0.6253812669856891, 0.9342151247863544, 0.9064095870896521, 0.8428584418618921, 0.5680191878381406, 0.8230633503438987, 0.857993972512287, 0.8312116035859974, 0.8886868130574391, 0.5695902702544526, 0.8750573328895943, 0.47134086624147714, 0.6082670858563528, 0.8571520978358925, 0.7006810412396262, 0.6001343818465046, 0.8680196363335714, 0.7833148206731655, 0.835330250744176, 0.6883000602161935, 0.4297997702781997, 0.7132181587745201, 0.941909753873568, 0.9298379484442667, 0.8950633078112005, 0.9652574497835966, 0.8593048115498744, 0.23022113319019433, 0.5548683876071567, 0.8789570823277312, 0.7176343272433334, 0.7135972690872326, 0.900955402304434, 0.89110615578316, 0.8021344726910251, 0.36734125225010755, 0.9233813125795639, 0.9269988231022361, 0.6021478506882372, 0.27064660283581765, 0.7595966254948197, 0.5317253080143199, 0.9626288904553877, 0.518871521713375, 0.4244151934213653, 0.8784852709235653, 0.667697582798242, 0.6791650855490978, 0.8659372985570389, 0.5217980090164113, 0.9757802673562255, 0.20769640873195563, 0.6900575067285889, 0.15051833553221247, 0.8476988333501053, 0.12043274000614122, 0.6546311715671466, 0.412102187638673, 0.6339696776630096, 0.6925917751558638, 0.8074446941396305, 0.8417042066658985, 0.4702054036006336, 0.8107456318417504, 0.934253622333564, 0.9671353887875448, 0.3776875782453083, 0.5133306968464912, 0.8279918435672958, 0.7295730380004212, 0.8398957027397556, 0.7470826509089123, 0.7722124156410631, 0.3944809481034696, 0.5801047158883857, 0.7134138458261836, 0.8265590446981121, 0.5836238058504062, 0.7538957359152121, 0.9708936701567454, 0.41507295289487073, 0.9039211350062085, 0.5109703825452502, 0.8880660412534, 0.6332514250278477, 0.703270618172154, 0.863031725372896, 0.9601349291832292, 0.5845797646527732, 0.8357575010967041, 0.9584406458449958, 0.8733333206292072, 0.4740801794177068, 0.5787650908025566, 0.38525623454815555, 0.5715075300165849, 0.951253157591183, 0.831291834366621, 0.6482062646591596, 0.5447536045265621, 0.8456825404777587, 0.5358725178581014, 0.8893400405584444, 0.5955893395860203, 0.9408369636189147, 0.7580589814818564, 0.4244151934213653, 0.7636885291754726, 0.9532052815091139, 0.6686700461744643, 0.39683939049776734, 0.8309978518015588, 0.06774730328187532, 0.8934061610794648, 0.9459413258233057, 0.8507977517004935, 0.9694554821790147, 0.8640493534313302, 0.8409166048571896, 0.9059760843724536, 0.7278052027863667, 0.8952246802917138, 0.39534528644804523, 0.9558702864115934, 0.9178754126151818, 0.7504628435478695, 0.7568870052952757, 0.32046258648166903, 0.9712495894387816, 0.7125870341029702, 0.8286889773580812, 0.929575727770858, 0.8422483936479932, 0.60065365322741, 0.5775074082600717, 0.7505976846167132, 0.5317253080143199, 0.9590110623565244, 0.9651712957082627, 0.7333643603414158, 0.7757825668725274, 0.8928390517037824, 0.2578168736401774, 0.5355488836719776, 0.8408692583280314, 0.7849780542174357, 0.8711681462620556, 0.8447990405440073, 0.9571933326515756, 0.9307123551507692, 0.6421242495412457, 0.9239207054420927, 0.9336219461922934, 0.4244151934213653, 0.5673643045526261, 0.8301442064454496, 0.528471943574542, 0.8835542071774324, 0.8820947700128993, 0.4561713647735051, 0.584381944856391, 0.9493936477483658, 0.7816316980556022, 0.7770145472448273, 0.8495153837633861, 0.8318035560268552, 0.5220388622338656, 0.8589980209217414, 0.21216021099657945, 0.8782303617207965, 0.901850575196968, 0.7683760396387002, 0.9559989503713009, 0.938411491366706, 0.7225398931917507, 0.5918361617892179, 0.8596378534897678, 0.8816239240572568, 0.9296844522785247, 0.8299758417251202, 0.7538846798551382, 0.931253582726863, 0.6902425303942638, 0.9299571155275668, 0.35461708236434614, 0.6119587629530028, 0.8979450471026776, 0.8782891297971865, 0.6144930729026484, 0.5601837238662909, 0.4230258756549153, 0.5115702372514986, 0.6133200318312215, 0.8287048127179734, 0.42887934024879554, 0.5543929044930882, 0.5414149972460248, 0.7453725251924848, 0.6522898344923613, 0.6445138145159856, 0.9212190995841192, 0.6991293681294938, 0.9188224881967051, 0.9444881948020799, 0.8399825546316605, 0.6440269003431431, 0.45260210695563535, 0.6678228102737954, 0.8535669746933884, 0.23469888428232324, 0.7581156815660375, 0.8329520097124233, 0.5886389680190937, 0.4250130050586104, 0.290761161529129, 0.9065968169685268, 0.39757013049667705, 0.9584529405260903, 0.24804178200132845, 0.8400605958344816, 0.9562762484868867, 0.5923100188758571, 0.5355488836719776, 0.6866862751474886, 0.753715093249364, 0.9302702282582556, 0.8405005145861136, 0.7758456574858743, 0.8270123797965384, 0.9270997487744173, 0.8779999285967196, 0.6350604679157676, 0.9057987369792326, 0.9732730617650076, 0.28007269673131574, 0.5393237551960537, 0.9509318156255189, 0.8055358405733448, 0.8512314640165554, 0.6752183046546253, 0.9766791413071304, 0.26893819095773785, 0.5105552073939665, 0.7964242570425004, 0.9159462749375985, 0.46312559485344046, 0.7889853219989779, 0.5331772070153998, 0.6250130361556073, 0.5340700079782073, 0.8981158701031157, 0.8424802355113449], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [11.0, 8.9, 11.0, 10.1, 8.9, 8.7, 10.7, 9.7, 10.0, 9.9, 9.2, 10.5, 9.8, 9.2, 9.1, 8.8, 9.0, 10.3, 12.0, 10.8, 11.7, 9.7, 9.7, 8.9, 12.0, 10.9, 9.4, 9.7, 9.8, 10.2, 8.7, 8.7, 9.6, 9.3, 10.5, 9.5, 9.4, 9.6, 9.4, 9.3, 12.4, 9.3, 9.2, 9.3, 11.4, 10.5666666666667, 9.4, 9.8, 9.0, 10.9, 10.4, 8.8, 11.5, 11.0, 9.7, 9.3, 9.8, 11.1, 9.4, 9.4, 11.1, 9.7, 9.0, 9.7, 9.3, 10.9, 9.2, 9.4, 10.7, 9.0, 9.5, 11.3, 10.4666666666667, 9.4, 10.5, 11.1, 8.9, 10.4, 9.2, 9.0, 9.6, 9.9, 9.5, 9.5, 10.1, 10.4, 9.0, 8.9, 9.8, 10.5, 9.5, 9.5, 9.7, 9.2, 9.7, 10.9, 10.8, 9.2, 8.9, 9.2, 9.4, 10.6, 8.8, 9.3, 9.4, 10.5, 9.4, 9.5, 9.2, 9.1, 9.4, 9.1, 9.8, 9.9, 10.6, 10.6, 9.4, 9.4, 9.5, 11.0, 10.2, 11.4, 10.6, 9.5, 10.1, 9.4, 11.0, 9.7, 10.1, 10.5, 13.4, 10.4, 9.2, 10.5, 9.4, 8.7, 11.4, 10.4, 9.4, 8.8, 10.7, 10.1, 10.3, 11.7, 9.5, 10.3, 10.9, 9.2, 9.5, 10.0, 9.2, 10.0, 10.5, 9.5, 10.1, 10.5, 10.7, 9.4, 9.6, 9.3, 10.4, 9.0, 10.4, 9.2, 9.0, 10.4, 11.3, 10.9, 11.0, 10.3, 9.2, 10.5, 9.4, 10.2, 9.5, 12.4, 10.1, 9.3, 8.8, 10.6, 10.3, 8.0, 10.3, 9.8, 10.5, 10.5, 9.3, 9.2, 10.2, 9.3, 9.7, 9.7, 10.1, 11.1, 8.6, 9.5, 9.1, 9.8, 9.1, 9.6, 9.5, 9.0, 9.0, 9.4, 11.4, 9.4, 9.0, 9.6, 9.0, 8.6, 10.2, 9.0, 9.7, 10.5, 9.3, 11.5, 9.0, 10.2, 9.3, 9.8, 8.7, 9.3, 9.3, 9.4, 9.1, 10.0, 9.1, 10.3, 10.6, 10.1, 8.8, 10.4, 8.8, 9.7, 9.6, 9.4, 9.8, 10.9, 9.2, 11.4, 9.2, 9.7, 10.9, 9.4, 11.4, 10.0, 10.7, 9.3, 9.4, 10.0, 9.0, 8.6, 10.6, 8.8, 9.9, 8.8, 9.4, 9.5, 9.5, 10.8, 9.8, 10.0, 10.1, 10.1, 9.5, 10.8, 9.7, 11.4, 12.2, 9.6, 11.4, 10.0, 9.3, 9.6, 10.2, 9.0, 9.5, 9.5, 10.1, 9.2, 10.0, 9.5, 11.4, 10.9, 9.2, 11.2, 10.1, 9.1, 11.4, 9.8, 9.5, 9.7, 9.2, 9.5, 11.1, 10.2, 9.5, 9.0, 9.2, 10.3, 11.4, 10.6, 10.4, 9.3, 9.5, 10.8, 10.5, 9.5, 9.0, 9.4, 9.4, 9.6, 10.2, 8.7, 9.9, 8.8, 9.8, 9.5, 9.5, 9.3, 11.8, 9.4, 10.1, 9.5, 11.5, 9.4, 8.8, 10.4, 9.5, 10.4666666666667, 9.8, 9.5, 10.5, 11.4, 9.7, 10.4, 9.3, 10.2, 8.8, 10.7, 8.9, 9.2, 10.4, 9.8, 8.4, 10.3, 9.3, 11.0, 8.8, 10.0, 9.3, 11.4], \"xaxis\": \"x2\", \"y\": [0.8142007211296887, 0.07257977436397642, 0.7430932382113554, 0.8214862427787604, 0.5698848321031316, 0.6048119589659149, 0.6466669219762841, 0.14510080060429495, 0.2250304680670007, 0.28492472637839966, 0.42061632734231896, 0.8281252124183194, 0.49622399336621903, 0.3482895521074759, 0.4678833354511545, 0.5708968386647719, 0.37048677721847617, 0.553632248395139, 0.8702137350251022, 0.42186952587750404, 0.8696774950675754, 0.5410576963494411, 0.3971326977900686, 0.3275001196198921, 0.9448289227093116, 0.7109941475090589, 0.41925580570138304, 0.3675472469853882, 0.6721911818800557, 0.5562207270314473, 0.5262426608517637, 0.3244609607385458, 0.15056615442564347, 0.15676979724311627, 0.6037730696030339, 0.6342511279653397, 0.021947035536558718, 0.32429164429335744, 0.5678746850743716, 0.3571680467137555, 0.7755534309390314, 0.3240287891037917, 0.699424662214302, 0.5151532452376618, 0.7564675819717819, 0.38343591026479057, 0.19811005648518398, 0.3168419703358067, 0.5315947262677626, 0.9269044449273315, 0.8260225289794664, 0.451791899378283, 0.830516920403184, 0.47128602930186, 0.19027823806377472, 0.5181346713949518, 0.29552777318700446, 0.45414400334446664, 0.39329840463575844, 0.42327932510626076, 0.45838907164509224, 0.2233864252642039, 0.3628419195926303, 0.6709353200988277, 0.46058046365566996, 0.25551237833043455, 0.7234147543269824, 0.1481282262733752, 0.314935793994079, 0.20050531530561894, 0.37453315488553635, 0.701015529968035, 0.6343341418527783, 0.1739320900588749, 0.734996253073231, 0.8172229478314255, 0.3598554146739685, 0.7121055211356295, 0.2620604909731644, 0.3421138035730516, 0.6951268813066005, 0.35208221297891723, 0.452099210446082, 0.18907620085798427, 0.5444201651108793, 0.6484058972837882, 0.3258186925596978, 0.5963383680780668, 0.6202666247822538, 0.576738593946626, 0.5054992484109841, 0.2972245631729925, 0.6844333356791464, 0.42629475072919953, 0.4405153833121037, 0.01207867704715336, 0.7609288944606691, 0.23951123982998349, 0.09310514674080905, 0.5084920166510624, 0.33067609257366243, 0.36481899584296196, 0.5708968386647719, 0.3194802059637459, 0.14207297841267416, 0.5776897120055972, 0.2026163425795633, 0.37909000048748537, 0.38206764842015895, 0.41324683104354176, 0.17826143731067332, 0.42339414872454434, 0.39148091864802853, 0.3511350413575442, 0.8053393751847749, 0.5937005322868365, 0.6849942580153355, 0.38930033076762494, 0.5168500865319015, 0.5699073288866824, 0.5376087249833421, 0.8185832461647057, 0.25950508036415604, 0.20394483716883388, 0.3303044530853749, 0.2528102968078532, 0.8477719856767125, 0.5217124250004609, 0.3303044530853749, 0.5382885532339231, 0.9625763866028243, 0.6536174904341296, 0.42629475072919953, 0.6458781618432388, 0.46574001023909845, 0.37268733756108086, 0.8180085473348132, 0.35493594975273335, 0.2423640089427935, 0.3636330633241046, 0.6421622311157122, 0.5444201651108793, 0.7396308412796291, 0.9036153464846048, 0.21101569987323432, 0.6004024464464508, 0.7595861882737439, 0.486549602332862, 0.2379839758891197, 0.5147825233229498, 0.2065932277190248, 0.4342628292980428, 0.5940848250235929, 0.4857193175270624, 0.5332610244722983, 0.5402196969638672, 0.8578846895389459, 0.5290225674595067, 0.6074669506688956, 0.1847839155105034, 0.3581391437324269, 0.4304380754474639, 0.8410120374942113, 0.5810086483513661, 0.19026233744636453, 0.7223494520380469, 0.8589928738613049, 0.8374625942163022, 0.781203852328267, 0.73983195178881, 0.41156537259256004, 0.7482873396984137, 0.44431713201158524, 0.7113673874393347, 0.49869552495399233, 0.7627102864663872, 0.37193390769028617, 0.37187810520956766, 0.3773291605703562, 0.8719651627687759, 0.6218762459828849, 0.3781393537983126, 0.553632248395139, 0.47624084907999176, 0.774399353278846, 0.5840424935194366, 0.5601025471409736, 0.6186690618327106, 0.620611700356168, 0.5755798886129706, 0.15047650536569443, 0.5530049338021776, 0.6597439619439023, 0.8300222117931148, 0.3490158529243493, 0.4410646109528086, 0.5067909967309752, 0.5851482063434866, 0.7149827463187939, 0.4849259975950144, 0.2094210588097294, 0.33399024531412796, 0.4083143545243069, 0.7497022835596558, 0.7817929239213606, 0.7637421953724776, 0.3825655414920891, 0.6611482494098961, 0.19022241257108333, 0.44972084577511023, 0.5476732603321269, 0.4831274653996314, 0.5077048340566679, 0.7289504589448288, 0.4379810490617926, 0.8017221455714771, 0.6434673631716396, 0.5059779734745421, 0.6065367192264559, 0.650368705032214, 0.34567471266024347, 0.39561589000187136, 0.3427787545601037, 0.4676404271158623, 0.5332283386400669, 0.4519108142444285, 0.40662831629925006, 0.42305576187259053, 0.22032895172816622, 0.5278715769330472, 0.43679486629948455, 0.743933429392776, 0.5269515041023835, 0.5008800654866953, 0.214168174561682, 0.44879088851457377, 0.683485355417811, 0.807753104897186, 0.42629475072919953, 0.8502951424821861, 0.17421175568219957, 0.25491371883486935, 0.7595861882737439, 0.6571724132942184, 0.7813188949129265, 0.5626906653340306, 0.8674288259883418, 0.6600514650598344, 0.4827749661719035, 0.5456147119159479, 0.39827550056677263, 0.27323823737433794, 0.695896529362927, 0.5048820477254727, 0.5422349097465021, 0.5610936746718964, 0.6571724132942184, 0.3088751107498249, 0.45428761266464013, 0.6604471727860799, 0.43371621376298963, 0.6171893197168647, 0.8100511550343341, 0.8100511550343341, 0.605832578461134, 0.5526475584669951, 0.4275055171336787, 0.8734720021260204, 0.8508295378350301, 0.5807723706867254, 0.8272749548927728, 0.2670652478909882, 0.7020144194675465, 0.4615566916191992, 0.7055847950248242, 0.43389869234556755, 0.6071692164257629, 0.3496825637352313, 0.23676491619791426, 0.7057755976874825, 0.15539001443149586, 0.6187538615870153, 0.8735882828904331, 0.30049486749739024, 0.23191705420611952, 0.8913917397916864, 0.4977157214618499, 0.16961113509580228, 0.8485494795219795, 0.4760032757956232, 0.5053843099270294, 0.2676015269871764, 0.3627664421236291, 0.15146266807038725, 0.7898179638281774, 0.6145296307645981, 0.3790380236797623, 0.3003532640340299, 0.6086112016774773, 0.39906793889171593, 0.8185832461647057, 0.6715802865662828, 0.8260225289794664, 0.6056902064850618, 0.400132762133902, 0.39471961640683584, 0.6449859309106076, 0.5637152910565628, 0.39949420960438964, 0.5490401551410112, 0.4398875418860128, 0.30916577334906253, 0.7093303227687476, 0.4562508424819209, 0.40444044759428516, 0.5773483646962835, 0.447777692034652, 0.4961542215384683, 0.32474312180562226, 0.21192693199409943, 0.9056903490933487, 0.5013816399998683, 0.758876109553896, 0.6364928148646596, 0.2952804752502578, 0.4748951900520853, 0.43679486629948455, 0.5479962315186364, 0.4728142838839701, 0.6343341418527783, 0.12248807650217919, 0.5052525886146573, 0.8281252124183194, 0.8930081609652758, 0.36283726088930296, 0.8098196742550625, 0.656477404357746, 0.193885049884708, 0.5269515041023835, 0.49858469647139786, 0.32780472036158087, 0.24927512797396847, 0.6148718578314069, 0.10691527318901187, 0.136775438340409, 0.8489192718114075, 0.2600203086082801, 0.8142007211296887, 0.5269515041023835, 0.7966615933629455, 0.5633234794197017, 0.767479452333631], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"alcohol\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"alcohol\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}, \"alcohol_bad\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (ref)\", \"type\": \"scatter\", \"x\": [8.7, 12.6, 10.6, 10.5, 9.4, 9.5, 9.7, 10.4, 9.3, 9.7, 10.2, 11.0, 8.7, 10.7, 9.3, 9.5, 9.5, 9.8, 9.2, 10.9, 9.5, 9.1, 11.2, 11.2, 9.9, 9.8, 9.9, 10.1, 9.1, 10.1, 9.6, 10.4, 10.8, 10.0, 9.1, 10.1, 10.0, 10.8, 9.6, 9.2, 9.2, 10.6, 9.5, 8.9, 9.5, 10.1, 9.1, 10.5, 10.6, 9.3, 9.4, 9.1, 9.3, 9.6, 9.8, 9.2, 10.6, 10.6, 10.1, 11.0, 9.3, 10.0, 12.6, 9.4, 9.2, 10.4, 9.2, 9.9, 9.8, 10.1, 8.8, 11.0, 8.7, 11.4, 10.2, 10.0, 8.9, 11.1, 9.2, 12.0, 10.0, 11.1, 9.0, 9.05, 9.8, 10.9, 10.1, 10.0, 11.6, 9.2, 11.0, 9.4, 9.8, 8.7, 9.1, 9.5, 9.1, 9.5, 9.2, 9.6, 9.2, 9.7, 10.2, 9.0, 9.3, 9.3, 10.3, 11.4, 9.0, 10.5, 10.4, 9.9, 9.2, 9.0, 10.4, 9.6, 8.7, 11.4, 10.1, 9.4, 8.9, 12.8, 9.1, 9.7, 8.8, 9.5, 10.6, 9.4, 9.5, 9.4, 9.6, 11.3, 9.4, 9.2, 9.3, 10.0, 11.05, 9.1, 11.2, 9.9, 9.2, 9.4, 11.4, 9.2, 9.9, 9.0, 11.0, 10.6, 9.7, 9.6, 11.1, 9.5, 11.4, 10.2, 9.2, 9.8, 9.2, 9.5, 9.9, 10.8, 11.5, 10.2, 9.6, 8.4, 9.5, 11.5, 9.53333333333333, 9.1, 9.4, 9.2, 9.6, 11.5, 9.4, 9.3, 9.4, 10.3, 9.5, 11.4, 10.2, 9.2, 9.6, 10.9, 10.2, 9.7, 9.0, 9.4, 10.2, 11.8, 9.4, 9.0, 9.6, 10.7, 9.4, 11.0, 9.4, 9.7, 9.3, 9.5, 9.5, 9.7, 10.3, 8.8, 8.8, 11.0, 11.3, 9.0, 10.5, 9.5, 11.4, 10.8, 9.9, 10.4, 9.6, 10.0, 9.0, 9.0, 9.4, 10.8, 9.2, 10.0, 9.7, 11.2, 9.5, 10.0, 10.2, 9.2, 9.2, 9.0, 10.2, 9.2, 10.1, 10.5, 9.6, 8.7, 12.0, 11.1, 9.1, 10.6, 10.0, 9.3, 10.8, 9.5, 9.0, 9.4, 11.2, 10.5, 9.4, 10.5, 8.8, 9.3, 11.2, 10.7, 10.8, 9.6, 9.5, 9.1, 9.7, 10.4, 9.5, 9.5, 10.5, 9.2, 9.9, 9.5, 9.0, 10.8, 10.6, 10.0, 10.6, 9.2, 8.9, 9.0, 9.9, 9.9, 9.6, 9.7, 10.5, 9.3, 9.9, 10.5, 10.0, 9.8, 9.5, 9.3, 10.2, 9.5, 9.5, 9.4, 10.8, 10.2, 11.1, 10.3, 11.0, 11.2, 9.4, 10.2, 9.0, 8.7, 8.9, 9.5, 11.4, 10.7, 10.0, 8.6, 9.7, 10.6, 9.3, 9.3, 9.4, 9.3, 9.3, 9.5, 9.8, 9.5, 9.8, 9.3, 9.3, 9.4, 9.5, 9.8, 10.5, 9.5, 10.9, 9.5, 9.6, 9.5, 14.9, 10.4, 9.2, 9.4, 8.7, 9.5, 9.7, 9.4, 9.8, 9.4, 8.9, 9.5, 10.9, 9.0, 9.6, 9.4, 10.8, 9.6, 9.2, 9.8, 9.2, 10.0, 10.1, 9.4, 9.4, 10.0, 9.7, 13.0, 10.0], \"xaxis\": \"x\", \"y\": [0.7197707895473677, 0.05448058807241418, 0.5021256787650443, 0.4710854375480472, 0.7156076129280222, 0.7966690429773311, 0.7265425252145667, 0.16771266951545494, 0.610944103187451, 0.6324527530146118, 0.42180662537268765, 0.2598044700255929, 0.5503032830239416, 0.5632112185661304, 0.6840604465833231, 0.6224375641140001, 0.8071781895370533, 0.9515482366939344, 0.3994071349416132, 0.9677746238863042, 0.572587586261062, 0.7602674855798478, 0.861098734498427, 0.1386074727873, 0.6703360831713621, 0.8064003460928679, 0.3172728283240366, 0.8039094494444462, 0.9186426431335688, 0.6026275969807151, 0.8609701260317718, 0.3485833566260712, 0.3005246278528939, 0.2859113263741919, 0.4978204971029292, 0.5125675444128744, 0.4268860326359044, 0.11791793574572085, 0.440027850275134, 0.4938434408506086, 0.4933189622152446, 0.166194347192407, 0.30200278364192557, 0.6822425768461728, 0.8693180940701344, 0.24112389044610405, 0.43189370387303117, 0.284455178085937, 0.23793737479647703, 0.5535561322468214, 0.7900402576908969, 0.47373775892899717, 0.6055733033081183, 0.7462675017011632, 0.32245623572553406, 0.7612367841042231, 0.36308410170653527, 0.6103993963703384, 0.3965676277125745, 0.2230008284200371, 0.8480025164595866, 0.43585875500482685, 0.24095331994381775, 0.4030652094068704, 0.8951637220162157, 0.2782175630406618, 0.7337660836226194, 0.8352762102164887, 0.6223987562306759, 0.2928263700360406, 0.6563137004068428, 0.16155652477357085, 0.6364666355122575, 0.2186811050870735, 0.27206300237801306, 0.4358901152617537, 0.6136035252376228, 0.07900866299327158, 0.8522855318359817, 0.11906253414448076, 0.3466831105240652, 0.11265227152414181, 0.6302693732121377, 0.7168097665217413, 0.4796298258249143, 0.4476252306691143, 0.3612478268219491, 0.611861930499026, 0.15121036728507153, 0.5363393546692182, 0.16155652477357085, 0.441733396330222, 0.7834276811132227, 0.6364666355122575, 0.44873286860252337, 0.4948960601400133, 0.4172084246960842, 0.5055831714989107, 0.5269082808529498, 0.3737404408311804, 0.4491757516278906, 0.5266720849021, 0.2882430633103308, 0.6066213483726142, 0.83534933450756, 0.2509605867776752, 0.230738949997912, 0.25680675940048736, 0.6858999083789018, 0.27626495444752697, 0.35158671089680515, 0.311480105980391, 0.5950329577300569, 0.4196263877039489, 0.3672198477254309, 0.5488429300958864, 0.6273126624389191, 0.0990306898864649, 0.935036100419004, 0.5556828679884147, 0.6003916802566726, 0.1337843055401957, 0.6898191889393818, 0.46604488826349566, 0.6668872608045229, 0.5998672378660981, 0.14712454771937833, 0.8558065212045691, 0.883276495704891, 0.5544329747085402, 0.38398791005853006, 0.8623310715459079, 0.4482795971615686, 0.4767821080964978, 0.6451659669426603, 0.5099786295438409, 0.11454219273407718, 0.5691587732433696, 0.2398813672346335, 0.8592796956842923, 0.38133093816728936, 0.4754945767078651, 0.2673740541283356, 0.43092180164799054, 0.5981491184574936, 0.7512253043619477, 0.20474988026063612, 0.12337786436138054, 0.6965484670033051, 0.4642254518352117, 0.29034758521725457, 0.7912282271603185, 0.1364389858241727, 0.5326323768611896, 0.3938848007926149, 0.886984727126295, 0.5955398539691413, 0.3667393936023857, 0.35129461810907203, 0.578130474122496, 0.1952086434691429, 0.6982941690158907, 0.6159300986783536, 0.6650580695700093, 0.8007006003287879, 0.13750802167619447, 0.47121416359091395, 0.5691587732433696, 0.5295784007050042, 0.4938434408506086, 0.4240508430342457, 0.1531205555636086, 0.7965770364050346, 0.4829168465516456, 0.6333246955344933, 0.38682769986244625, 0.5589353890471914, 0.30965836575156913, 0.6133571507425741, 0.5363393546692182, 0.5474540697204298, 0.9680074395956593, 0.29703705077451537, 0.7566858385458134, 0.451244026180727, 0.6224939697452743, 0.9340693900855184, 0.1254375450851024, 0.770680513376406, 0.7273231109206828, 0.410671569380914, 0.19928392436820586, 0.44743622108127745, 0.4991477681643879, 0.5443787589855091, 0.826082779912576, 0.5642536294664222, 0.6762559922350657, 0.39283078357423706, 0.3074847569358159, 0.40732461839200396, 0.5614584986504241, 0.5614584986504241, 0.575628870274347, 0.1938881144566701, 0.6480440770440566, 0.23946299348505806, 0.6110142157087575, 0.32489046344192996, 0.127020290619695, 0.28948900574123104, 0.27970970921902805, 0.5179212029104148, 0.579807192000203, 0.5695619245525361, 0.7471497674522103, 0.6761943115269239, 0.6052803835931642, 0.9048996801452402, 0.632953623191418, 0.7849920634816455, 0.12946409768986655, 0.3899257470968539, 0.37735505673750047, 0.27206300237801306, 0.6356505945299911, 0.9000798247851504, 0.5852448485124296, 0.3537739535016634, 0.8589709040748648, 0.5105041430354158, 0.4760479563081992, 0.3915586115462193, 0.4344526143297297, 0.04825794875232026, 0.25106204840173363, 0.5352062615150248, 0.2084678736174792, 0.5588772074146924, 0.42656597432725707, 0.3395528272139201, 0.5154796814541086, 0.30312695461308037, 0.4684625037801391, 0.13140485141127656, 0.37575572516499556, 0.7087902803012941, 0.22740617784346517, 0.7932370230268412, 0.6977827466507267, 0.8687065743771458, 0.3532210556477622, 0.3005246278528939, 0.8817461779308045, 0.5897758288136841, 0.5117334773877459, 0.2267712913026929, 0.7462523759498982, 0.5055831714989107, 0.6276122794572256, 0.34766968675436505, 0.563322001169588, 0.4035281086421867, 0.44827723495654004, 0.7588644006503809, 0.17560197311170134, 0.2736156405730563, 0.5646478519097824, 0.12788772013874206, 0.8127608550985441, 0.35130933230290007, 0.8842329534318195, 0.5671758377024384, 0.508518787579709, 0.4735654621913231, 0.6614347321502836, 0.7032589073748752, 0.418601168771625, 0.40262233345395115, 0.38045938978299354, 0.6221728234115828, 0.6769388667590319, 0.825791915264051, 0.8036522945246104, 0.5350776523934957, 0.5038683203672731, 0.4187790963850706, 0.3942708224564714, 0.36585282612655, 0.42973128126448334, 0.1395024853671747, 0.36909778672938764, 0.5126700875045708, 0.31128511290513083, 0.5841805470690385, 0.42932394036482613, 0.5168725346003686, 0.9331527243268325, 0.5090935678835011, 0.848083892739094, 0.7288594688776423, 0.23463814542978878, 0.9073343486287574, 0.5445649372592127, 0.8030108083542629, 0.30698149193503155, 0.47724620771884374, 0.49565431290071005, 0.29179072192325783, 0.53941953634433, 0.32642767658125227, 0.5714063949384225, 0.6769388667590319, 0.48314991346809855, 0.3838692085325581, 0.7654355578102645, 0.6807995217458978, 0.7803105409218809, 0.4971816769068883, 0.5662837862370104, 0.32557907866588853, 0.4059739580227363, 0.8621668957327787, 0.4863555612469991, 0.44913520001249685, 0.5044088987161788, 0.018560580499064172, 0.17397747102053363, 0.8203404366189, 0.531551035274026, 0.3951880410340851, 0.6710839680909022, 0.7545393605546251, 0.25029771644034415, 0.31651464458218903, 0.7900402576908969, 0.7649542174153934, 0.6282404390050247, 0.5124469561170844, 0.7501741577575001, 0.3717170374651112, 0.5479204837841629, 0.1799627586960565, 0.8716748635647116, 0.4700369344869263, 0.7044722268129955, 0.7597806244765397, 0.4570971226262448, 0.3688130253756654, 0.5854022956087224, 0.6067015953642416, 0.6092966434658947, 0.5713009051869427, 0.15316343939585397, 0.31191498773739224], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [11.2, 10.0, 12.7, 10.5, 9.4, 10.1, 13.5, 10.4, 12.4, 11.5, 10.0, 9.8, 10.5, 9.1, 9.5, 9.6, 11.7, 11.2, 12.3, 11.9, 10.0, 12.3, 10.1, 11.9, 11.5, 10.0, 13.6, 11.3, 9.6, 12.8, 12.2, 10.0, 10.9, 11.8, 12.5, 10.0, 9.5, 12.9, 12.8, 11.3, 11.5, 10.2, 12.1, 9.7, 10.0, 8.8, 9.0, 12.3, 12.0, 12.0, 9.7, 8.9, 12.4, 10.3, 11.1, 8.6, 10.8, 11.8, 10.8, 12.5, 10.4, 12.8, 12.2, 10.2, 9.8, 9.2, 11.7, 10.5, 9.8, 13.4, 12.2, 13.4, 11.0, 12.3, 10.7, 9.8, 12.8, 12.3, 10.9, 12.4, 10.1, 13.5, 11.0, 10.4, 12.2, 11.3, 11.3, 9.9, 13.4, 9.3, 10.4, 12.2, 10.2, 12.4, 10.6, 11.3, 10.6, 12.6, 11.2, 9.4, 10.2, 8.9, 11.9, 11.0, 12.5, 9.7, 12.2, 10.6, 11.4, 10.75, 12.4, 8.8, 9.8, 10.9, 10.7, 12.7, 11.4, 11.5, 9.1, 11.0, 9.0, 9.8, 10.4, 8.9, 9.6, 10.5, 9.5, 8.9, 11.0, 9.9, 10.6, 14.0, 9.1, 11.0, 9.9, 12.9, 10.0, 11.0, 13.4, 10.0, 12.7, 10.5, 10.5, 10.6, 9.3, 10.6, 11.7, 10.9, 10.6, 9.2, 9.0, 10.5, 10.3, 9.5, 9.0, 11.9, 11.4, 12.1, 11.4, 12.0, 10.5, 9.8, 11.7, 12.1, 10.4, 9.6, 10.2, 10.1, 8.9, 12.1, 11.1, 9.4, 9.7, 10.5, 10.5, 10.1, 10.0, 9.8, 11.2, 10.8, 10.7, 12.1, 11.9, 12.7, 9.6, 11.0, 13.55, 10.1, 11.6, 10.3, 11.2, 12.8, 12.5, 12.2, 9.7, 12.1, 8.7, 11.0, 11.8, 10.5, 10.7, 12.5, 12.2, 11.8, 10.6, 12.0, 10.9, 10.8, 8.8, 9.5, 10.4, 10.8, 12.1, 10.8, 11.5, 10.0, 11.5, 10.8, 10.9, 12.8, 10.2, 8.7, 10.5, 12.9, 10.6, 10.8, 9.1, 9.1, 10.8, 10.6, 11.0, 9.9, 11.5, 10.4, 11.9, 12.2, 11.0, 9.8, 11.8, 10.7, 10.8, 9.0, 9.2, 8.8, 9.5, 11.4, 10.1, 10.1, 9.3, 12.3, 8.6, 9.1, 10.8, 11.2, 11.2, 11.0, 12.0, 9.4, 12.6, 11.5, 9.0, 12.2, 10.9, 12.3, 11.6, 11.2, 13.2, 12.5, 10.3, 13.0, 10.8, 11.4, 11.4, 11.0, 13.0, 9.9, 10.9, 11.7, 12.8, 10.5, 11.2, 11.6, 12.2, 12.75, 11.9, 11.9, 9.3, 10.0, 9.6, 12.0, 10.1, 12.0, 12.4, 11.2, 10.9666666666667, 9.1, 9.9, 10.0, 10.9, 10.7, 12.6, 10.5, 12.3, 11.0, 9.7, 11.0, 11.4, 11.5, 9.0, 10.1, 9.5, 9.0, 12.4, 11.3, 11.0, 9.7, 9.4, 12.8, 10.9, 12.2, 12.6, 11.4, 12.6, 11.7, 11.0, 9.5, 9.7, 11.2, 9.7, 12.2, 11.0, 12.4, 9.3, 10.4, 10.8, 9.1, 10.5, 12.8, 9.6, 10.5, 9.9, 11.1, 12.1, 9.5, 9.9, 10.0, 9.4, 9.0, 12.4, 8.9, 10.8, 11.2, 10.9, 11.0, 9.6, 11.4, 11.0, 12.4, 10.1, 12.2, 9.4, 10.4, 10.3, 11.5, 9.8, 9.7, 12.6, 11.2, 12.0, 9.0, 10.8, 10.3, 10.4, 10.1, 12.9, 12.5, 12.7, 10.4, 9.9, 9.5, 9.2, 10.8, 9.1, 9.3, 9.0, 10.9, 9.0, 9.5, 10.5, 12.2, 11.2666666666667, 8.9, 9.9, 11.0, 10.4, 11.0, 11.8, 10.6, 12.6, 9.4, 11.5, 9.3, 12.5, 8.8, 11.5, 10.4, 10.6, 11.3, 10.8, 8.7, 10.4, 11.1, 11.3, 11.2, 10.5, 11.9, 11.6, 9.1, 10.8, 9.4, 10.5, 10.8, 9.6, 9.0, 10.2, 11.0, 11.2, 11.4333333333333, 12.2, 12.0, 12.4, 12.4, 12.8, 11.6333333333333, 10.0, 13.1, 11.5, 11.3, 12.3, 10.6, 11.0, 10.7, 11.8, 10.1, 10.2, 10.4, 9.6, 9.5, 11.0, 10.9, 12.6, 12.4, 11.9, 10.2, 9.7, 13.0, 10.2, 10.9, 9.9, 9.1, 11.2, 9.5, 11.0, 9.2, 11.5, 11.0666666666667, 10.4, 11.0, 10.4, 13.4, 9.6, 9.4, 8.7, 8.8, 12.4, 12.9, 12.4, 11.0, 10.2, 10.0, 11.7, 8.5, 8.8, 9.7, 9.0, 12.0, 12.5, 9.0, 11.7, 9.2, 9.4, 9.5, 9.2, 10.3, 11.5, 11.4, 9.6, 10.1, 12.8, 10.5, 10.5, 12.0, 11.7, 9.0, 12.5, 10.1, 11.4, 9.9, 12.3, 12.2, 12.3, 12.1, 10.4, 9.0, 12.1, 12.3, 11.9, 9.3, 11.6, 12.7, 9.5, 13.2, 13.0, 11.5, 9.0, 12.0, 9.3, 11.6, 9.3, 11.2, 10.5, 10.1, 10.7, 10.1, 11.4, 10.7, 10.5, 12.1, 11.0, 12.2, 10.5, 12.8, 10.0, 10.6, 12.2, 13.2, 11.6, 9.4, 12.0, 11.0, 10.0, 11.3, 10.8, 9.7, 10.4, 10.4, 10.8, 9.2, 9.3, 11.4, 9.4, 9.8, 11.2, 9.8, 13.6, 11.0, 11.3666666666667, 10.5, 12.5, 10.1, 12.1, 10.1, 11.5, 12.7, 12.0, 12.9, 9.0, 10.6, 10.5, 10.5, 11.9, 12.5, 10.1, 10.7, 12.2, 10.8, 13.2, 10.8, 10.3, 11.2, 9.9, 12.5, 9.5, 12.8, 10.2, 10.1, 11.1, 10.5, 11.1, 9.2, 11.2, 11.7, 10.2, 11.0, 11.7, 8.8, 10.8, 9.7, 11.5, 8.8, 10.9333333333333, 10.5, 9.8, 10.7, 12.7, 11.8, 10.1, 9.4, 11.3, 10.2, 10.4, 11.3, 10.0, 10.9, 9.6, 10.9, 9.6, 11.7, 9.53333333333333, 12.3, 10.2, 9.5, 9.2, 11.0, 11.7, 11.3, 10.0, 9.53333333333333, 10.8, 9.5, 11.8, 9.9, 12.0, 11.8, 9.5], \"xaxis\": \"x\", \"y\": [0.18439386755371057, 0.5750868907731637, 0.1132172353536568, 0.19850047615697952, 0.6950004168934912, 0.41826441672946313, 0.040828937665112974, 0.2145583871630251, 0.09143093017991866, 0.10013996234885614, 0.3658834999306372, 0.587897812361327, 0.23563705889496211, 0.5289998061994394, 0.5981734696485812, 0.5956194363709464, 0.11295199838815062, 0.6349332021584286, 0.09356782907078887, 0.0672754654033908, 0.3541579814831264, 0.11781588709523827, 0.3295981493457443, 0.23443288181779365, 0.13830133810679424, 0.5122546205578999, 0.03626449638205209, 0.32057959349203036, 0.3955164844050859, 0.21320459763992916, 0.08620177311633537, 0.4132497936565127, 0.19514157099220286, 0.028148892894647393, 0.03728071159582558, 0.20213762816504022, 0.39088790332760825, 0.10566618212719892, 0.11466232649727714, 0.09544364959788487, 0.07351553674018241, 0.3657542344632553, 0.05859665738698361, 0.43634835962676355, 0.4827032077898804, 0.516310366273556, 0.6480037931050455, 0.21122004543372697, 0.030344760075157406, 0.22750344576024595, 0.18673438423788624, 0.5460909738859347, 0.0666291073587214, 0.320234954276134, 0.515425573770442, 0.5751179393061847, 0.3262180383913996, 0.12192585741802231, 0.6165939755266235, 0.09365914315081003, 0.44259853952477324, 0.31958523161407537, 0.09228899111547839, 0.22815273642701062, 0.5282447951108347, 0.7777719169155834, 0.13834506443323813, 0.29425092810710396, 0.5300870647699181, 0.031947521718024174, 0.1108646816717751, 0.053339747820140615, 0.14466174791529418, 0.25697560969337485, 0.3383868137798065, 0.30803904997837983, 0.03434255320493995, 0.08689109251212201, 0.46044782253877736, 0.0973761441498977, 0.3449058470623745, 0.024212367984770777, 0.11665042079727428, 0.3333970234137619, 0.1495417879159372, 0.0679784404121434, 0.2360052425084116, 0.39147703437781534, 0.04428683932015287, 0.5381556738404795, 0.4357341587922019, 0.11843845992675284, 0.28107964630818494, 0.06989794698232743, 0.2658605825653322, 0.22408104406272966, 0.15519213452661884, 0.09873339188795927, 0.10739713799337769, 0.4712507279726723, 0.31257930793611366, 0.6259141532505736, 0.1651629894813923, 0.13024327386797574, 0.08242409751896962, 0.55355901104019, 0.11256152515999429, 0.22124325125588817, 0.05838775174278421, 0.6734770756819889, 0.06919042490492266, 0.5773286546676725, 0.5693181878572973, 0.12726917141891614, 0.27983888222674136, 0.15690954109554833, 0.18593824584442387, 0.05432525584274117, 0.33273366741371935, 0.12435295831370408, 0.48112847828662497, 0.2959384652215836, 0.5042039768350125, 0.3749869638443927, 0.7258627386781167, 0.4806866421912115, 0.6234335830956541, 0.4191951896523489, 0.20821728825178332, 0.6343085651912675, 0.27674577061671146, 0.02140654255666985, 0.42849246998341506, 0.1817444030106703, 0.4551538855951942, 0.05087080041524106, 0.516641204200833, 0.6810720245435042, 0.08151744899857294, 0.4475169494323581, 0.03995706953508171, 0.2181819033834006, 0.20372897255157485, 0.24305701296248816, 0.5381556738404795, 0.2358485729609252, 0.051323642447754336, 0.1913631294907303, 0.32154631204965056, 0.31229802093755377, 0.3917329141436472, 0.39462053822053156, 0.3680669306910641, 0.5017894292511481, 0.32120711190509066, 0.0768019282386515, 0.1168769044932052, 0.31545143431826594, 0.12007957373947853, 0.08354361700756141, 0.2180731800932174, 0.7653011157176768, 0.05076221583963347, 0.11739077279846111, 0.3639458403519926, 0.4815918747301601, 0.35998732468747585, 0.457353694020342, 0.5520498791697908, 0.22168281241722143, 0.2132287846887433, 0.4763394582576197, 0.3040153802820409, 0.20749766415549342, 0.3316810644107503, 0.8126297477835096, 0.5749367295182395, 0.27274039590582944, 0.2685808245693546, 0.5172108675362206, 0.33506587713796443, 0.09616672688355288, 0.041108213935392324, 0.10548050716105373, 0.5016695616404938, 0.20022874051447226, 0.14220640128276774, 0.23772630779738468, 0.19606080251004787, 0.2603188495268066, 0.18846597668723208, 0.19827111133563302, 0.261548791893628, 0.4140325207077993, 0.8134796325151183, 0.12265695643958285, 0.6311167068993262, 0.13481820177301163, 0.0932384579037443, 0.14050160114126486, 0.2562249115981724, 0.08547750670655718, 0.08643201081848362, 0.19981675431015722, 0.31390222338706264, 0.06221739913672386, 0.06996303880871468, 0.30029370289300306, 0.4306817897420764, 0.6595343859760441, 0.2839408857911616, 0.20468539219890003, 0.1130196126722065, 0.2360017176902124, 0.13187147729288817, 0.42313120297864704, 0.06964897436687001, 0.1624399718171824, 0.17200815643270417, 0.07333105637055992, 0.2440137653363641, 0.4900110333069776, 0.3085554157386313, 0.03480496731142946, 0.12148031785507996, 0.15002971926037112, 0.5314247042003052, 0.2758453007685677, 0.2151852748992088, 0.2658605825653322, 0.29911225563077193, 0.6594110243744711, 0.49869782335001445, 0.16788254706683048, 0.11816213334465087, 0.08230909248122409, 0.13653212507346946, 0.25639170942272826, 0.06562233405876228, 0.23311900627036541, 0.3756616197417655, 0.46674395287949066, 0.3092684534350997, 0.8337319641197457, 0.8331457111467163, 0.2591056156836542, 0.4778687671024334, 0.2542440524586721, 0.5361036306539362, 0.07073721340803463, 0.4731688813159418, 0.5755848065786346, 0.356689463387698, 0.14225616860197343, 0.21837916002376445, 0.14466174791529418, 0.29899643271856946, 0.4757427727983842, 0.08126799884203029, 0.1296501822378736, 0.3286954654423938, 0.08620177311633537, 0.13855855420831553, 0.05543377339452393, 0.11917834098009661, 0.2613621884509647, 0.11269900223777074, 0.08429051026621415, 0.3393961441870107, 0.07031960314855146, 0.11356777592095357, 0.4853279864284006, 0.1279289285514792, 0.0584572339054259, 0.08612988585012649, 0.3472440907423937, 0.1248029959061332, 0.07502335399434323, 0.19827111133563302, 0.3424151534036639, 0.3065175956815872, 0.13808860398564737, 0.058092197534895806, 0.04082786106581715, 0.1602592849246841, 0.09156161599234125, 0.5036030690663805, 0.2640411824475748, 0.6468038092930676, 0.07201805208597656, 0.22470230804277058, 0.1334773721572423, 0.04847889440667685, 0.2685808245693546, 0.10911308148570098, 0.6764508967260475, 0.6280060594576413, 0.36761958218269275, 0.16019930342079847, 0.17605308658107655, 0.14078981831089854, 0.2384997092801764, 0.13117402490907393, 0.12818959986091483, 0.4161925244315118, 0.12435295831370408, 0.09814942480303201, 0.05480698563416486, 0.3746187330143109, 0.41092354232892336, 0.507894749900129, 0.5137929421583434, 0.08293523366016065, 0.2964416548030494, 0.15236141109070434, 0.4396941021426354, 0.41893931094950754, 0.09113953260801844, 0.10967473999240707, 0.055732078845942, 0.05640314085190745, 0.06176263301115803, 0.06427139521062619, 0.20386133178572885, 0.21597661143113533, 0.7486409492386699, 0.2610715902497083, 0.09465277491899493, 0.5556171757583562, 0.137718889647652, 0.1978940751503777, 0.08472590699531857, 0.356262641598029, 0.14596950445002987, 0.13865818299932142, 0.3088915816821678, 0.11516321289421916, 0.16121169033174265, 0.40573483691789825, 0.34308606282264, 0.36300204724896845, 0.17193414756867276, 0.035926383178341514, 0.34536882843285344, 0.4400180463892147, 0.5165194668234709, 0.23319834124303085, 0.9637923675569924, 0.2635599134550337, 0.6259141532505736, 0.12324962258280003, 0.1256037712827487, 0.1248029959061332, 0.11665042079727428, 0.29081136443782263, 0.12993062945549005, 0.20959981847797426, 0.12385816607190492, 0.16931651488884025, 0.2468284110987674, 0.6181879252747016, 0.3509541008179864, 0.08619429866610873, 0.09537770951135394, 0.8204393830764495, 0.2493836920976743, 0.10367142046182065, 0.11516383353466464, 0.07169627826225977, 0.5400384130096556, 0.2709141565803237, 0.16809050322974173, 0.3421981324687273, 0.812724325423183, 0.1326589750154965, 0.054670132935181304, 0.055346153509382656, 0.8039442695404772, 0.3276168958360183, 0.6561718697940482, 0.6214102617950452, 0.3046829516703813, 0.7853649284745584, 0.7303620793003476, 0.6719087507962026, 0.16000678121984613, 0.579612101366232, 0.6347749924714103, 0.41894393066564606, 0.06936532322770372, 0.28322834609079706, 0.343263893078516, 0.4450860003239352, 0.3090838478611311, 0.408095736797927, 0.11529682880263803, 0.13359771811640497, 0.2417229185475579, 0.10092265889692065, 0.8181934133883563, 0.3777834313813965, 0.8273808576462511, 0.18439353202429143, 0.5148786056082297, 0.11287077888712382, 0.16015059460472458, 0.29672938182784603, 0.36944561074938853, 0.2505850522824452, 0.8467591712977676, 0.3840267097226593, 0.261779448872241, 0.1645479955558209, 0.14631295673285594, 0.4248523287309329, 0.09222807982804315, 0.2121484308544801, 0.33273366741371935, 0.5470626312455473, 0.8294144697045585, 0.25206662215500397, 0.15998368749433245, 0.548322128117227, 0.3917329141436472, 0.15981565308588508, 0.23631147082452741, 0.21082920466209698, 0.1871387197916503, 0.24774693401855818, 0.1913242313933492, 0.16437448769677154, 0.07582203648947516, 0.032541140295091364, 0.06311143057978008, 0.5009235508757715, 0.12343879567504301, 0.445735807756371, 0.40322837553658053, 0.09397553936597514, 0.1598391281143201, 0.26702494168661406, 0.19782301216908982, 0.06831823449824892, 0.5451167746582685, 0.20142160156100697, 0.25747632252511843, 0.4257317671215596, 0.5062318064185062, 0.10278357133077332, 0.10857266292312517, 0.06223864817381186, 0.11377411494697365, 0.14082424186384768, 0.2589321903149734, 0.31776639873426016, 0.07983414941561229, 0.30174211068680845, 0.42532907678292176, 0.23734670470511587, 0.2862296469110084, 0.24790288035387664, 0.5526146374040077, 0.20425399436950087, 0.5166825128498294, 0.12415322942140417, 0.5310696157212036, 0.3866387435262121, 0.14313186082947948, 0.31648660326859934, 0.026792916001305622, 0.7856428374245099, 0.42383310375799566, 0.5944566396871084, 0.6256605001243821, 0.08813642250468567, 0.03544811528140901, 0.06935406654889886, 0.15751976448865512, 0.22608551288474832, 0.3127311228465576, 0.1409438166611655, 0.3285615524533705, 0.3591330499592894, 0.47964497307801546, 0.7143146030302826, 0.14223944449319303, 0.06929054967731618, 0.32120711190509066, 0.16913647442041335, 0.707286257884667, 0.3230684446475647, 0.7616845263358343, 0.4104900542879092, 0.10053249234255524, 0.1106599594415556, 0.1543174595222413, 0.46003879185641183, 0.3811350878514418, 0.07185070571861518, 0.23882593985771994, 0.5344976262521839, 0.11031385635331636, 0.09610989844306939, 0.4955559099445003, 0.07845190603324759, 0.30697262074812925, 0.12767551958037127, 0.4375661224395835, 0.07737023387634634, 0.15307682457740834, 0.05694427046787409, 0.09028836937410878, 0.4011292297732457, 0.6186146927451245, 0.11561676905211238, 0.0993047499370594, 0.08102401279833105, 0.8100206966555492, 0.10768932514586738, 0.15386113005635593, 0.4026560765644126, 0.045535707525545144, 0.08229583319403, 0.08227601457953415, 0.8241544781987433, 0.0759900855540333, 0.5147505197509459, 0.11103147778198663, 0.42144961755966015, 0.24880465403270857, 0.3112403223054312, 0.3282460941643247, 0.28312386083977936, 0.2865521931047814, 0.16537364909659502, 0.4284132019637321, 0.34116073112729894, 0.051142721309942685, 0.10794707492381372, 0.1108646816717751, 0.29201805921023904, 0.07365131996157204, 0.36851051207096197, 0.2556143611338999, 0.07392456180697715, 0.045535707525545144, 0.15025986810093994, 0.4395989822566938, 0.19636656988846957, 0.21018464628148859, 0.15085686628779282, 0.3429118439192298, 0.16104008564300487, 0.2055862423584408, 0.18673310211333727, 0.5528531989583015, 0.20219789553586287, 0.5807830339134155, 0.6112381610839525, 0.07515362639458067, 0.5722084734915175, 0.3654892991508686, 0.1991057466826236, 0.4912569401667811, 0.05850610073101081, 0.3077884117234785, 0.17038242498240874, 0.14066607718466684, 0.10248584652416493, 0.4022873718442217, 0.07205214632436985, 0.35142291824287475, 0.10941760034103376, 0.06679271580157364, 0.05675388891699207, 0.058987921856350156, 0.3660303223369904, 0.28790374422385034, 0.4158290962648631, 0.40710291595796666, 0.09934102670994882, 0.06362846635195196, 0.30921476208988685, 0.23242198019285765, 0.055541210656895434, 0.5297663836663529, 0.10744632778983743, 0.18410212910939194, 0.17721960751489196, 0.1962664672709783, 0.1617648996714035, 0.10584426414108294, 0.5203501665477333, 0.07365131996157204, 0.31578819840495265, 0.35364190165315845, 0.1707951928721818, 0.41655733121321636, 0.15801546378512366, 0.7568436608419439, 0.22368578646300386, 0.0609449253562836, 0.2225096762928218, 0.18587673368692093, 0.05559101133196209, 0.569598540521716, 0.08073228430722412, 0.15724041301590164, 0.12879141548479, 0.4306817897420764, 0.17998791969802397, 0.41280880088413996, 0.5723062335690389, 0.6457404130724687, 0.10420061808672998, 0.12564769853034463, 0.21795029564941848, 0.4720930498870375, 0.11304202998506685, 0.545112257205237, 0.14852188644910969, 0.17217029085021085, 0.336250902618187, 0.48671482860553816, 0.5093433434984792, 0.35847801144896685, 0.3008706318705062, 0.18494609259573758, 0.4199330463236065, 0.04162287990776414, 0.2633909944023186, 0.4252182303976608, 0.4684623303117058, 0.1925553058603695, 0.09610989844306939, 0.09129843496680234, 0.3302708189676917, 0.4199330463236065, 0.11927294568859859, 0.4864154015695107, 0.06472081497616611, 0.6387929002666255, 0.37932906694235924, 0.093713747684541, 0.20627971812824875], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (curr)\", \"type\": \"scatter\", \"x\": [11.0, 8.9, 11.0, 10.1, 8.9, 8.7, 10.7, 9.7, 10.0, 9.9, 9.2, 10.5, 9.8, 9.2, 9.1, 8.8, 9.0, 10.3, 12.0, 10.8, 11.7, 9.7, 9.7, 8.9, 12.0, 10.9, 9.4, 9.7, 9.8, 10.2, 8.7, 8.7, 9.6, 9.3, 10.5, 9.5, 9.4, 9.6, 9.4, 9.3, 12.4, 9.3, 9.2, 9.3, 11.4, 10.5666666666667, 9.4, 9.8, 9.0, 10.9, 10.4, 8.8, 11.5, 11.0, 9.7, 9.3, 9.8, 11.1, 9.4, 9.4, 11.1, 9.7, 9.0, 9.7, 9.3, 10.9, 9.2, 9.4, 10.7, 9.0, 9.5, 11.3, 10.4666666666667, 9.4, 10.5, 11.1, 8.9, 10.4, 9.2, 9.0, 9.6, 9.9, 9.5, 9.5, 10.1, 10.4, 9.0, 8.9, 9.8, 10.5, 9.5, 9.5, 9.7, 9.2, 9.7, 10.9, 10.8, 9.2, 8.9, 9.2, 9.4, 10.6, 8.8, 9.3, 9.4, 10.5, 9.4, 9.5, 9.2, 9.1, 9.4, 9.1, 9.8, 9.9, 10.6, 10.6, 9.4, 9.4, 9.5, 11.0, 10.2, 11.4, 10.6, 9.5, 10.1, 9.4, 11.0, 9.7, 10.1, 10.5, 13.4, 10.4, 9.2, 10.5, 9.4, 8.7, 11.4, 10.4, 9.4, 8.8, 10.7, 10.1, 10.3, 11.7, 9.5, 10.3, 10.9, 9.2, 9.5, 10.0, 9.2, 10.0, 10.5, 9.5, 10.1, 10.5, 10.7, 9.4, 9.6, 9.3, 10.4, 9.0, 10.4, 9.2, 9.0, 10.4, 11.3, 10.9, 11.0, 10.3, 9.2, 10.5, 9.4, 10.2, 9.5, 12.4, 10.1, 9.3, 8.8, 10.6, 10.3, 8.0, 10.3, 9.8, 10.5, 10.5, 9.3, 9.2, 10.2, 9.3, 9.7, 9.7, 10.1, 11.1, 8.6, 9.5, 9.1, 9.8, 9.1, 9.6, 9.5, 9.0, 9.0, 9.4, 11.4, 9.4, 9.0, 9.6, 9.0, 8.6, 10.2, 9.0, 9.7, 10.5, 9.3, 11.5, 9.0, 10.2, 9.3, 9.8, 8.7, 9.3, 9.3, 9.4, 9.1, 10.0, 9.1, 10.3, 10.6, 10.1, 8.8, 10.4, 8.8, 9.7, 9.6, 9.4, 9.8, 10.9, 9.2, 11.4, 9.2, 9.7, 10.9, 9.4, 11.4, 10.0, 10.7, 9.3, 9.4, 10.0, 9.0, 8.6, 10.6, 8.8, 9.9, 8.8, 9.4, 9.5, 9.5, 10.8, 9.8, 10.0, 10.1, 10.1, 9.5, 10.8, 9.7, 11.4, 12.2, 9.6, 11.4, 10.0, 9.3, 9.6, 10.2, 9.0, 9.5, 9.5, 10.1, 9.2, 10.0, 9.5, 11.4, 10.9, 9.2, 11.2, 10.1, 9.1, 11.4, 9.8, 9.5, 9.7, 9.2, 9.5, 11.1, 10.2, 9.5, 9.0, 9.2, 10.3, 11.4, 10.6, 10.4, 9.3, 9.5, 10.8, 10.5, 9.5, 9.0, 9.4, 9.4, 9.6, 10.2, 8.7, 9.9, 8.8, 9.8, 9.5, 9.5, 9.3, 11.8, 9.4, 10.1, 9.5, 11.5, 9.4, 8.8, 10.4, 9.5, 10.4666666666667, 9.8, 9.5, 10.5, 11.4, 9.7, 10.4, 9.3, 10.2, 8.8, 10.7, 8.9, 9.2, 10.4, 9.8, 8.4, 10.3, 9.3, 11.0, 8.8, 10.0, 9.3, 11.4], \"xaxis\": \"x2\", \"y\": [0.18579927887031134, 0.9274202256360236, 0.2569067617886446, 0.17851375722123963, 0.43011516789686843, 0.3951880410340851, 0.35333307802371594, 0.854899199395705, 0.7749695319329993, 0.7150752736216004, 0.5793836726576811, 0.17187478758168062, 0.503776006633781, 0.6517104478925241, 0.5321166645488455, 0.4291031613352281, 0.6295132227815239, 0.446367751604861, 0.12978626497489776, 0.578130474122496, 0.1303225049324246, 0.4589423036505589, 0.6028673022099313, 0.6724998803801079, 0.055171077290688375, 0.28900585249094113, 0.5807441942986169, 0.6324527530146118, 0.32780881811994433, 0.4437792729685527, 0.47375733914823626, 0.6755390392614542, 0.8494338455743565, 0.8432302027568838, 0.3962269303969661, 0.36574887203466033, 0.9780529644634413, 0.6757083557066426, 0.43212531492562845, 0.6428319532862445, 0.2244465690609686, 0.6759712108962084, 0.300575337785698, 0.4848467547623382, 0.24353241802821812, 0.6165640897352094, 0.801889943514816, 0.6831580296641933, 0.4684052737322374, 0.07309555507266852, 0.17397747102053363, 0.548208100621717, 0.16948307959681597, 0.5287139706981401, 0.8097217619362252, 0.48186532860504816, 0.7044722268129955, 0.5458559966555334, 0.6067015953642416, 0.5767206748937392, 0.5416109283549078, 0.7766135747357961, 0.6371580804073698, 0.3290646799011723, 0.53941953634433, 0.7444876216695655, 0.27658524567301757, 0.8518717737266248, 0.685064206005921, 0.7994946846943811, 0.6254668451144636, 0.29898447003196504, 0.36566585814722175, 0.8260679099411251, 0.265003746926769, 0.18277705216857454, 0.6401445853260315, 0.2878944788643705, 0.7379395090268356, 0.6578861964269485, 0.3048731186933995, 0.6479177870210828, 0.5479007895539181, 0.8109237991420157, 0.4555798348891207, 0.35159410271621183, 0.6741813074403022, 0.40366163192193316, 0.3797333752177462, 0.42326140605337403, 0.49450075158901585, 0.7027754368270075, 0.31556666432085356, 0.5737052492708005, 0.5594846166878963, 0.9879213229528466, 0.23907110553933086, 0.7604887601700165, 0.906894853259191, 0.49150798334893764, 0.6693239074263375, 0.635181004157038, 0.4291031613352281, 0.6805197940362542, 0.8579270215873258, 0.42231028799440284, 0.7973836574204367, 0.6209099995125147, 0.617932351579841, 0.5867531689564582, 0.8217385626893267, 0.5766058512754557, 0.6085190813519714, 0.6488649586424557, 0.19466062481522506, 0.4062994677131635, 0.31500574198466447, 0.6106996692323751, 0.48314991346809855, 0.4300926711133176, 0.4623912750166579, 0.18141675383529432, 0.7404949196358439, 0.7960551628311661, 0.6696955469146251, 0.7471897031921468, 0.15222801432328747, 0.4782875749995391, 0.6696955469146251, 0.4617114467660769, 0.0374236133971757, 0.34638250956587036, 0.5737052492708005, 0.35412183815676124, 0.5342599897609015, 0.6273126624389191, 0.1819914526651868, 0.6450640502472667, 0.7576359910572065, 0.6363669366758954, 0.35783776888428775, 0.4555798348891207, 0.2603691587203709, 0.09638465351539516, 0.7889843001267657, 0.3995975535535492, 0.2404138117262561, 0.5134503976671381, 0.7620160241108803, 0.4852174766770502, 0.7934067722809752, 0.5657371707019572, 0.40591517497640706, 0.5142806824729376, 0.4667389755277017, 0.4597803030361328, 0.14211531046105408, 0.4709774325404933, 0.39253304933110444, 0.8152160844894966, 0.6418608562675732, 0.5695619245525361, 0.15898796250578873, 0.4189913516486339, 0.8097376625536354, 0.2776505479619531, 0.14100712613869515, 0.1625374057836978, 0.21879614767173305, 0.26016804821119, 0.5884346274074399, 0.25171266030158634, 0.5556828679884147, 0.2886326125606653, 0.5013044750460076, 0.23728971353361283, 0.6280660923097139, 0.6281218947904323, 0.6226708394296439, 0.1280348372312241, 0.37812375401711507, 0.6218606462016874, 0.446367751604861, 0.5237591509200082, 0.22560064672115399, 0.4159575064805634, 0.43989745285902637, 0.38133093816728936, 0.379388299643832, 0.4244201113870294, 0.8495234946343055, 0.44699506619782237, 0.3402560380560977, 0.16997778820688525, 0.6509841470756508, 0.5589353890471914, 0.49320900326902484, 0.41485179365651337, 0.2850172536812061, 0.5150740024049856, 0.7905789411902706, 0.6660097546858721, 0.5916856454756931, 0.25029771644034415, 0.21820707607863943, 0.23625780462752244, 0.6174344585079109, 0.33885175059010386, 0.8097775874289167, 0.5502791542248897, 0.45232673966787307, 0.5168725346003686, 0.4922951659433321, 0.2710495410551712, 0.5620189509382074, 0.19827785442852286, 0.35653263682836045, 0.4940220265254579, 0.3934632807735441, 0.349631294967786, 0.6543252873397565, 0.6043841099981286, 0.6572212454398962, 0.5323595728841377, 0.4667716613599331, 0.5480891857555714, 0.5933716837007499, 0.5769442381274095, 0.7796710482718338, 0.4721284230669528, 0.5632051337005155, 0.25606657060722404, 0.47304849589761655, 0.4991199345133047, 0.785831825438318, 0.5512091114854263, 0.31651464458218903, 0.192246895102814, 0.5737052492708005, 0.14970485751781393, 0.8257882443178004, 0.7450862811651306, 0.2404138117262561, 0.3428275867057816, 0.2186811050870735, 0.43730933466596944, 0.1325711740116582, 0.33994853494016564, 0.5172250338280965, 0.4543852880840521, 0.6017244994332274, 0.7267617626256621, 0.304103470637073, 0.49511795227452726, 0.4577650902534979, 0.4389063253281036, 0.3428275867057816, 0.6911248892501751, 0.5457123873353599, 0.3395528272139201, 0.5662837862370104, 0.38281068028313525, 0.1899488449656659, 0.1899488449656659, 0.39416742153886597, 0.4473524415330049, 0.5724944828663213, 0.12652799787397961, 0.14917046216496987, 0.4192276293132746, 0.1727250451072272, 0.7329347521090118, 0.2979855805324535, 0.5384433083808008, 0.2944152049751758, 0.5661013076544325, 0.39283078357423706, 0.6503174362647687, 0.7632350838020857, 0.29422440231251745, 0.8446099855685041, 0.3812461384129847, 0.1264117171095669, 0.6995051325026098, 0.7680829457938805, 0.1086082602083136, 0.50228427853815, 0.8303888649041977, 0.15145052047802054, 0.5239967242043768, 0.49461569007297057, 0.7323984730128237, 0.6372335578763709, 0.8485373319296128, 0.21018203617182263, 0.3854703692354019, 0.6209619763202376, 0.6996467359659702, 0.3913887983225227, 0.600932061108284, 0.18141675383529432, 0.32841971343371723, 0.17397747102053363, 0.3943097935149382, 0.5998672378660981, 0.6052803835931642, 0.35501406908939237, 0.4362847089434372, 0.6005057903956104, 0.45095984485898877, 0.5601124581139871, 0.6908342266509375, 0.29066967723125237, 0.5437491575180791, 0.5955595524057149, 0.4226516353037165, 0.552222307965348, 0.5038457784615318, 0.6752568781943777, 0.7880730680059006, 0.09430965090665133, 0.4986183600001317, 0.24112389044610405, 0.3635071851353404, 0.7047195247497422, 0.5251048099479148, 0.5632051337005155, 0.4520037684813636, 0.5271857161160298, 0.36566585814722175, 0.8775119234978208, 0.49474741138534273, 0.17187478758168062, 0.1069918390347242, 0.6371627391106971, 0.19018032574493748, 0.34352259564225396, 0.806114950115292, 0.47304849589761655, 0.5014153035286022, 0.6721952796384192, 0.7507248720260316, 0.38512814216859315, 0.8930847268109882, 0.863224561659591, 0.15108072818859253, 0.7399796913917198, 0.18579927887031134, 0.47304849589761655, 0.2033384066370545, 0.43667652058029827, 0.23252054766636898], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [9.0, 9.0, 10.9, 9.4, 9.5, 9.8, 10.1, 10.8, 12.0, 10.5, 10.0, 11.0, 12.4, 12.2, 12.8, 10.6, 11.4, 11.5, 10.3, 12.4, 8.9, 9.2, 10.5, 9.6, 10.1, 12.2, 11.0, 11.3, 12.5, 12.3, 13.0, 10.1, 9.5, 9.2, 12.1, 8.7, 11.3333333333333, 9.3, 13.4, 11.8, 12.4, 11.3, 11.8, 8.7, 9.4, 12.7, 9.0, 9.3, 9.5, 12.5, 9.2, 12.8, 10.4, 10.5, 11.4, 8.8, 9.5, 14.0, 9.8, 9.1, 10.4, 12.3, 11.8, 11.2, 9.3, 12.5, 11.0, 10.7, 10.55, 9.6, 9.1, 11.7, 9.2, 11.0, 9.7, 9.3, 9.3, 10.2, 10.8, 9.4, 12.2, 10.2, 11.4, 11.9, 9.8, 12.0, 10.9, 11.5, 11.5, 9.5, 10.8, 11.9, 12.6, 13.2, 10.1, 12.6, 10.0333333333333, 13.1, 10.2, 11.1, 11.1, 9.9, 11.2, 13.2, 9.1, 9.5, 9.4, 12.6, 11.6, 11.3, 10.7, 8.8, 12.3, 12.6, 12.4, 12.4, 11.3, 9.5, 10.4, 11.5, 11.8, 12.1, 12.0, 12.2, 10.9, 12.3, 9.2, 12.3, 10.2, 12.0, 12.5, 13.6, 12.5, 9.1, 9.8, 9.3, 10.5, 10.8, 11.6, 11.0, 11.2, 12.7, 10.8, 9.4, 9.6, 10.5, 9.4, 10.5, 10.9, 10.2, 9.8, 11.2, 9.5, 9.2, 12.5, 12.0, 10.6, 11.3, 10.0, 9.0, 12.7, 9.5, 13.4, 11.7, 10.3, 11.4, 11.5, 9.9, 11.0, 9.2, 11.4, 10.2, 10.9, 11.6, 14.0, 11.8, 11.4, 13.1, 13.6, 12.5, 11.0, 9.2, 9.5, 10.7, 9.4, 11.6, 10.3, 12.6, 8.8, 11.1, 11.0, 9.4, 11.9, 11.9, 10.8, 12.2, 10.5, 12.5, 9.4, 9.8, 12.5, 10.4, 9.6, 11.9, 11.0, 10.6, 9.7, 12.0, 10.1, 10.2, 11.4, 12.8, 10.6, 12.4, 9.0, 12.8, 10.0, 11.3, 11.6, 12.8, 12.2, 10.0, 10.8, 9.5, 9.0, 9.2, 11.2, 10.3, 12.0, 11.2, 9.25, 10.1, 10.8, 12.1, 12.8, 8.9, 12.3, 11.2, 12.0, 11.2, 10.7, 13.3, 13.0, 10.3, 10.4, 11.4, 8.8, 9.2, 10.7, 10.1, 9.6, 9.2, 8.8, 11.6, 10.7, 9.8, 10.2, 11.0, 12.2, 12.2, 10.4, 10.6, 10.7, 10.2, 11.1, 12.5, 12.7, 10.6, 9.3, 9.9, 9.9, 11.3, 12.6, 11.0, 9.3, 9.9, 10.7, 10.4, 10.6, 11.2, 9.1, 11.9, 11.8, 10.0, 12.8, 11.6, 11.45, 11.3, 9.7, 10.2, 11.0, 9.5, 10.1, 12.8, 10.4, 11.0, 9.2, 12.2, 11.0, 11.8, 12.9, 10.3, 11.3, 12.3, 9.0, 11.0, 12.0, 11.0, 12.6, 11.2, 10.5, 11.5, 11.6, 9.3, 11.4, 11.0, 9.8, 9.8, 10.1, 9.5, 12.5, 13.0, 10.3, 9.1, 10.4, 12.7, 11.0, 11.5, 9.6, 12.6, 10.6, 9.0, 9.4, 9.5, 9.2, 9.4, 9.1, 10.0, 10.2, 11.9, 10.8, 10.2, 9.7, 11.4, 9.5, 10.9, 11.4, 10.5, 10.0, 11.7, 11.3, 11.5, 8.8, 9.2, 9.3, 12.0, 10.0, 10.2, 10.4, 12.5, 12.9, 10.3, 8.7, 8.8, 10.2, 9.2, 8.9, 10.3, 9.4, 10.2, 13.05, 10.1, 10.8, 11.4, 11.7, 10.8, 12.0, 11.2, 9.6, 12.4, 9.4, 11.5, 12.2, 9.3, 11.9, 10.5, 11.0, 11.65, 11.4, 11.3, 11.0, 9.3, 11.2, 10.2, 10.2, 10.8, 9.0, 12.5, 12.6, 10.8, 10.6, 11.5, 11.4, 9.5, 12.7, 9.8, 11.0, 10.5, 9.0, 12.5, 9.6, 10.0, 10.4, 9.8, 10.6, 10.3, 9.3, 10.6, 12.6, 12.8, 11.3, 11.9, 12.1, 10.3, 9.2, 11.2, 10.2, 10.6, 12.4, 12.0, 11.7, 10.2, 11.4, 12.8, 10.5, 9.0, 10.8, 9.0, 12.0, 9.0, 9.1, 12.5, 9.8, 9.4, 12.0, 9.2, 14.0, 9.2, 10.0, 9.7, 10.6, 9.2, 9.5, 9.8, 9.0, 11.0, 11.0, 10.65, 9.0, 11.3, 11.3, 13.3, 9.4, 8.7, 10.9, 10.4, 12.7, 10.3, 11.0, 10.6, 10.4, 10.3, 12.5, 8.7, 10.3, 12.8, 9.5, 11.3, 10.2, 11.4, 10.0, 10.6, 11.4, 11.9, 9.6, 11.0, 12.7, 12.5, 9.7, 10.8, 10.1, 9.1, 12.5, 11.0, 9.8, 9.8, 11.4, 10.0, 11.5, 10.3, 11.75, 10.3, 9.1, 11.0, 13.5, 8.9, 9.4, 12.0, 10.1, 12.3, 12.9, 11.3, 14.2, 11.4, 11.5, 12.6, 10.1, 11.7, 9.2, 12.4, 13.0, 10.5, 11.0, 9.2, 11.6, 9.3, 10.7, 12.6, 11.5, 9.1, 11.3, 10.0, 9.0, 13.0, 12.5, 11.6, 11.5, 12.1, 9.7, 9.5, 11.2, 11.3333333333333, 10.9, 11.4, 13.1, 11.5, 10.9, 11.8, 12.3, 9.1, 9.5, 11.4, 10.5, 11.1, 11.0, 10.0, 10.1, 12.3, 11.9, 11.0, 9.8, 10.4, 8.7, 11.4, 9.1, 12.1, 11.4, 11.2, 13.0, 12.5, 10.5, 10.3, 11.1, 12.0, 12.4, 11.0, 11.0, 12.3, 11.0, 12.4, 9.5, 9.6, 10.5, 12.5, 10.0, 10.0, 10.2, 9.5, 10.2, 11.1, 10.0, 10.4, 10.0, 10.0, 11.2, 10.4, 12.5, 9.6, 11.5, 12.7, 10.8, 12.2, 9.4, 11.2, 10.5, 9.8, 10.5, 10.6, 10.4, 9.9, 9.6, 10.5, 9.1, 11.9, 9.8, 12.1, 12.9, 10.4, 9.5, 12.2, 10.4, 12.4, 11.0, 10.0, 10.8, 12.15, 11.45, 10.2, 11.8, 12.1, 9.8, 10.0, 12.7, 11.6, 12.3, 10.2, 13.4, 9.5, 11.0, 12.0, 12.8, 9.2, 8.8, 9.9, 8.9, 9.5, 13.4, 11.0], \"xaxis\": \"x2\", \"y\": [0.6660328535674787, 0.4955559099445003, 0.11251030999551548, 0.5313240922219649, 0.7616845263358343, 0.42881839881496897, 0.22146723198036844, 0.2709448900825402, 0.04188686298684474, 0.3198999677935893, 0.586632325439729, 0.3332859260788763, 0.0891770245136605, 0.07249138429342028, 0.0813041402249215, 0.2808128557304226, 0.18155424903412543, 0.14020593233116785, 0.20529540916933675, 0.1755850319354616, 0.5722846846512241, 0.4684623303117058, 0.2863708053899042, 0.4489302200945696, 0.3606737334686688, 0.09834172337505831, 0.1439119889738254, 0.10526388551166177, 0.08976738859769384, 0.15927641460572795, 0.07353544332944184, 0.4894096639868448, 0.24735122968283396, 0.41440459167745447, 0.10107859516115147, 0.4809249647595707, 0.043928674649753696, 0.27268427565697984, 0.07203278686513981, 0.35989685204578803, 0.08410225657903847, 0.09640449279894714, 0.2859044620344169, 0.766491644508495, 0.27194216744256416, 0.11891721880979944, 0.6033870782914414, 0.8445823904457724, 0.4148378249676725, 0.09538880480821377, 0.5822786697287807, 0.2006236885231063, 0.30215903380660414, 0.3526626332448971, 0.22921561702294402, 0.3499358724503807, 0.451050436906263, 0.01968005574460141, 0.3849224947932618, 0.608666907839271, 0.30333177217190177, 0.05732515971384944, 0.08299070223644744, 0.155374347961305, 0.4378217303747408, 0.10641916767178827, 0.3207785913922725, 0.3280003244598044, 0.4747408725557203, 0.27229542413121455, 0.5314247042003052, 0.13834506443323813, 0.652508483608137, 0.1775869136191267, 0.4659209431511335, 0.3288332341233703, 0.47224603889779837, 0.2773569186284155, 0.18590272545123854, 0.6719763059805124, 0.04569198037744582, 0.22473444069733528, 0.0776074933333939, 0.1411968215808168, 0.3654892991508686, 0.06069899520469324, 0.21029328672965164, 0.13919371635861133, 0.16321149678759816, 0.6144435769482088, 0.1388055550317996, 0.0827658987104557, 0.0793107693477757, 0.04994940743047871, 0.46220165202879504, 0.08265172102971341, 0.5554564865761329, 0.10902951494304747, 0.26480674198345266, 0.31816712550642645, 0.20184400370343658, 0.23734670470511587, 0.19264674509953905, 0.03558879485690103, 0.5314247042003052, 0.3013473679880785, 0.8043030592862955, 0.07665185966197174, 0.17816243980233548, 0.14637302723887635, 0.43623195291339645, 0.5773286546676725, 0.06996409198491005, 0.0635191394270278, 0.11839391684253864, 0.03368970372860669, 0.16544292122901683, 0.5002106013252752, 0.20783967621931676, 0.4413184352618238, 0.1377753535318076, 0.017128038770129694, 0.09070427960766203, 0.05237321155563324, 0.46044782253877736, 0.09863911308639095, 0.6058955548956951, 0.07377868677997379, 0.33726125667837825, 0.03705661785513226, 0.03856885477325478, 0.01970319875133708, 0.06623921298607705, 0.655672818127978, 0.36403826442427, 0.375635621083512, 0.25822104517587474, 0.26990817233175546, 0.30316845466795117, 0.21597661143113533, 0.10411587283779344, 0.4582573305440075, 0.28974208538397184, 0.3995654588450376, 0.48407929824265805, 0.2412117545349558, 0.49704114689177337, 0.3112403223054312, 0.13571503940671914, 0.35304273602320047, 0.18963603484652192, 0.06023564559469896, 0.305863422303413, 0.34062746964654456, 0.03532029949184434, 0.20200996882548472, 0.207876095289533, 0.11304202998506685, 0.26487496820305634, 0.46674395287949066, 0.05931266843465788, 0.6063731497207538, 0.053339747820140615, 0.16056749669580483, 0.3366557342021428, 0.18735912995827353, 0.2667542380283816, 0.9197592959547904, 0.13322255285490225, 0.3533185668595151, 0.08763312389948397, 0.343329095265401, 0.1298321532292276, 0.11240742021865013, 0.03412749239977686, 0.23316671381479437, 0.13955591125269062, 0.065615492475942, 0.03940539431326806, 0.04874684240881699, 0.42507109047861347, 0.3720756994829524, 0.20627971812824875, 0.23346983492740092, 0.299872058778726, 0.14688925552714138, 0.20529540916933675, 0.11294333341234963, 0.4523771212155355, 0.15895981664313275, 0.12633289347617382, 0.34801013400503944, 0.063056887931354, 0.09222807982804315, 0.19281104432210028, 0.11843845992675284, 0.1064686731970873, 0.12171087020281346, 0.49704114689177337, 0.4202798549667376, 0.058322454167927695, 0.40418598015134155, 0.7514842711311043, 0.067978575311199, 0.1468497162592186, 0.3655805321171328, 0.36741292271676196, 0.08785516413846428, 0.4223454464089015, 0.09472348251934337, 0.14196098925812006, 0.10013555988874479, 0.32154631204965056, 0.05416575683382341, 0.786126361492164, 0.04696516601190348, 0.26926088858349784, 0.28123172687107445, 0.3094364396730669, 0.04307250962973752, 0.07126159086244754, 0.6143015945908075, 0.495586079448059, 0.46102608015166635, 0.40789311683600216, 0.8929715185951024, 0.1227006502272181, 0.3638055988942468, 0.10470002869891348, 0.29304213908849364, 0.8936703981375603, 0.3534407380188983, 0.0883666731866185, 0.07895584641700149, 0.05166417783587085, 0.4199775765299997, 0.10304865631077798, 0.1041340676595982, 0.11031385635331636, 0.22368578646300386, 0.22137255536682798, 0.0725394352715707, 0.08320759746190642, 0.3577905591727162, 0.36362749207413336, 0.13058702032609693, 0.4306817897420764, 0.4684623303117058, 0.3185463047756948, 0.6991046594229053, 0.33105510290791684, 0.35804773811787727, 0.3499358724503807, 0.17780319308126435, 0.07142366539796174, 0.1504846162366139, 0.28643330026545544, 0.11492102279820171, 0.08716328114311156, 0.12905574960179156, 0.5528531989583015, 0.2852168598030531, 0.3185463047756948, 0.41766807389819915, 0.22818770291371737, 0.10749415552266317, 0.07500089027222667, 0.2150933620687273, 0.4879833184669665, 0.21367083697314282, 0.18281788227943807, 0.11217648511765432, 0.01860460444149037, 0.4990100838788346, 0.3212979959143686, 0.7252893191599291, 0.30018855716775616, 0.2808216200321265, 0.24332849241566534, 0.22583693263898685, 0.307128141019565, 0.12930297020615966, 0.07734813107736227, 0.38078614076753503, 0.037937415915298756, 0.18389331462546077, 0.2015421194948802, 0.10121634311933059, 0.7209948827487924, 0.252131738577411, 0.19866278493931944, 0.5569604587758099, 0.19172534874952063, 0.07516041810443141, 0.18673310211333727, 0.20736440356309183, 0.27568985010185776, 0.1748501221961516, 0.134246332983591, 0.12151400729184814, 0.03860330573341564, 0.16198960071610413, 0.062309112953929935, 0.14943540958877521, 0.46827469198568006, 0.12435295831370408, 0.11768791031746062, 0.10794707492381372, 0.04347111427796346, 0.07423675680829, 0.1602542791395647, 0.19911642350143877, 0.2379444352717226, 0.36664322039668684, 0.10130143557253446, 0.17108028607870185, 0.6143194513817134, 0.5641235853966853, 0.29864316680665437, 0.44752301946823647, 0.13459844499503626, 0.037461465199631894, 0.5002964248569376, 0.4059565893810353, 0.7035957096210382, 0.0629603198376949, 0.25036415064992923, 0.14780834332950044, 0.24800647860056513, 0.10438723399855232, 0.24366911510822187, 0.4574644219698093, 0.8347014835967527, 0.42226245660703365, 0.4073158502222598, 0.47525484003715535, 0.37845934883934684, 0.35325777167774697, 0.4763432908647238, 0.18941100564626978, 0.23853527246002126, 0.27277355193056574, 0.5556171757583562, 0.19481513110659687, 0.7460207524242459, 0.12627308236197843, 0.2115813466591615, 0.4773837842994688, 0.22238536240250728, 0.1978655273089749, 0.32057959349203036, 0.1601330373243487, 0.6256605001243821, 0.34062746964654456, 0.5899158924001677, 0.1273375405407705, 0.6866376712310945, 0.3812864953771038, 0.07918534602430627, 0.10510921928053807, 0.052405178286905496, 0.29010285216427345, 0.5802968836962079, 0.4475494904811408, 0.33107045093633036, 0.6046547135519548, 0.33132995382553565, 0.3391582818855403, 0.37109937806185267, 0.18876467901964422, 0.03244681540368277, 0.6531311156123596, 0.18281848038190407, 0.06840545126676123, 0.23876166598551407, 0.5602062902528231, 0.05478334190217349, 0.18965009362393503, 0.502081053312289, 0.0945975060483667, 0.24937367783354814, 0.14040338921272166, 0.09582424632391484, 0.4879833184669665, 0.07536550594022651, 0.37763546052463404, 0.20240400638142053, 0.06234715971662652, 0.1729504208160284, 0.2536573606029918, 0.1491704939138675, 0.47224603889779837, 0.20734784509414073, 0.1656619584420439, 0.20263687678412212, 0.4576701693643329, 0.3746187330143109, 0.06578487521364562, 0.09359041291034786, 0.15714155813810793, 0.43198081216185935, 0.17693664965610134, 0.14200602748771296, 0.16878839641400256, 0.11131318694256087, 0.43040972974554736, 0.12494266711040569, 0.5286591337585229, 0.3917329141436472, 0.14284790216410748, 0.29931895876037384, 0.3998656181534954, 0.13198036366642862, 0.2166851793268345, 0.164669749255824, 0.3116999397838065, 0.5702002297218003, 0.2867818412254799, 0.05809024612643199, 0.0701620515557333, 0.10493669218879953, 0.03474255021640338, 0.14069518845012563, 0.7697788668098057, 0.44513161239284327, 0.12104291767226882, 0.2823656727566666, 0.28640273091276736, 0.09904459769556595, 0.10889384421684001, 0.1978655273089749, 0.6326587477498924, 0.0766186874204361, 0.07300117689776386, 0.3978521493117628, 0.7293533971641823, 0.24040337450518035, 0.46827469198568006, 0.03737110954461231, 0.48112847828662497, 0.5755848065786346, 0.12151472907643468, 0.332302417201758, 0.3208349144509022, 0.13406270144296106, 0.47820199098358873, 0.024219732643774528, 0.7923035912680444, 0.3099424932714111, 0.8494816644677875, 0.15230116664989468, 0.8795672599938588, 0.34536882843285344, 0.587897812361327, 0.3660303223369904, 0.3074082248441362, 0.1925553058603695, 0.1582957933341015, 0.5297945963993664, 0.1892543681582496, 0.06574637766643598, 0.03286461121245521, 0.6223124217546917, 0.48666930315350876, 0.17200815643270417, 0.27042696199957883, 0.16010429726024444, 0.25291734909108765, 0.22778758435893687, 0.6055190518965303, 0.41989528411161425, 0.2865861541738164, 0.17344095530188786, 0.4163761941495938, 0.24610426408478792, 0.029106329843254564, 0.5849270471051293, 0.09607886499379148, 0.4890296174547498, 0.11193395874659995, 0.3667485749721523, 0.29672938182784603, 0.13696827462710404, 0.03986507081677082, 0.41542023534722683, 0.1642424989032959, 0.041559354155004224, 0.1266666793707928, 0.5259198205822933, 0.42123490919744344, 0.6147437654518444, 0.42849246998341506, 0.04874684240881699, 0.16870816563337898, 0.35179373534084035, 0.4552463954734379, 0.1543174595222413, 0.4641274821418986, 0.1106599594415556, 0.40441066041397966, 0.05916303638108533, 0.24194101851814365, 0.5755848065786346, 0.23631147082452741, 0.04679471849088612, 0.33132995382553565, 0.6031606095022326, 0.16900214819844117, 0.9322526967181247, 0.1065938389205352, 0.0540586741766943, 0.14920224829950646, 0.03054451782098533, 0.13595064656866984, 0.15908339514281045, 0.09402391562754642, 0.27219479721363327, 0.10477531970828624, 0.6046547135519548, 0.04412971358840656, 0.0821245873848182, 0.24953715645213048, 0.24311299470472425, 0.679537413518331, 0.02875041056121841, 0.2874129658970298, 0.17131102264191878, 0.07042427222914205, 0.1577516063520068, 0.39934634677258996, 0.42249259173992826, 0.24940231538328683, 0.46827469198568006, 0.040988937643475554, 0.034828704291737345, 0.26663563965858417, 0.22421743312747255, 0.10716094829621758, 0.7421831263598226, 0.4644511163280224, 0.1591307416719686, 0.21502194578256428, 0.12883185373794437, 0.15520095945599266, 0.04280666734842442, 0.06928764484923078, 0.3578757504587543, 0.0760792945579073, 0.06637805380770656, 0.5755848065786346, 0.4326356954473739, 0.16985579355455038, 0.47152805642545803, 0.11644579282256762, 0.11790522998710073, 0.5438286352264949, 0.41561805514360906, 0.050606352251634235, 0.21836830194439782, 0.22298545275517268, 0.1504846162366139, 0.16819644397314482, 0.47796113776613436, 0.14100197907825862, 0.7878397890034206, 0.12176963827920351, 0.09814942480303201, 0.23162396036129984, 0.04400104962869911, 0.061588508633294015, 0.2774601068082493, 0.40816383821078206, 0.14036214651023216, 0.11837607594274324, 0.0703155477214753, 0.17002415827487982, 0.24611532014486182, 0.06874641727313702, 0.30975746960573625, 0.07004288447243323, 0.6453829176356538, 0.3880412370469972, 0.10205495289732236, 0.12171087020281346, 0.38550692709735157, 0.4398162761337091, 0.5769741243450848, 0.48842976274850136, 0.3866799681687785, 0.17129518728202664, 0.5711206597512044, 0.4456070955069118, 0.4585850027539752, 0.25462747480751524, 0.34771016550763867, 0.35548618548401445, 0.07878090041588082, 0.3008706318705062, 0.08117751180329491, 0.055511805197920094, 0.1600174453683395, 0.35597309965685686, 0.5473978930443646, 0.3321771897262046, 0.14643302530661162, 0.7653011157176768, 0.24188431843396252, 0.16704799028757666, 0.41136103198090634, 0.5749869949413896, 0.709238838470871, 0.09340318303147321, 0.602429869503323, 0.04154705947390969, 0.7519582179986716, 0.15993940416551844, 0.04372375151311325, 0.4076899811241429, 0.4644511163280224, 0.3133137248525114, 0.24628490675063597, 0.06972977174174444, 0.15949948541388637, 0.2241543425141257, 0.1729876202034616, 0.07290025122558275, 0.1220000714032804, 0.36493953208423235, 0.09420126302076737, 0.026726938234992392, 0.7199273032686843, 0.4606762448039463, 0.04906818437448113, 0.19446415942665518, 0.14876853598344464, 0.3247816953453747, 0.023320858692869595, 0.7310618090422621, 0.48944479260603346, 0.20357574295749958, 0.0840537250624015, 0.5368744051465595, 0.21101467800102214, 0.46682279298460017, 0.3749869638443927, 0.46592999202179275, 0.10188412989688433, 0.15751976448865512], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"alcohol\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"alcohol\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}};\n",
315         "</script>\n",
316         "<script>\n",
317         "function domReady(fn) {\n",
318         "  // If we're early to the party\n",
319         "  document.addEventListener(\"DOMContentLoaded\", fn);\n",
320         "  // If late; I mean on time.\n",
321         "  if (document.readyState === \"interactive\" || document.readyState === \"complete\" ) {\n",
322         "    fn();\n",
323         "  }\n",
324         "}\n",
325         "\n",
326         "domReady(function () {\n",
327         "    requirejs([\"evidently\"], function(ev) {\n",
328         "        drawDashboard(evidently_dashboard_522f08a9c3494994bcc173c8e0de5a16,\n",
329         "        new Map(Object.entries(additional_graphs_evidently_dashboard_522f08a9c3494994bcc173c8e0de5a16)),\n",
330         "        \"root_evidently_dashboard_522f08a9c3494994bcc173c8e0de5a16\");\n",
331         "    },\n",
332         "    function(err) {\n",
333         "        $(\"#root_evidently_dashboard_522f08a9c3494994bcc173c8e0de5a16\").innerHTML = \"Failed to load\";\n",
334         "    })\n",
335         "});\n",
336         "</script>\n",
337         "<div class=\"reset-this-parent\" id=\"root_evidently_dashboard_522f08a9c3494994bcc173c8e0de5a16\">Loading...</div>\n",
338         "\n"
339        ],
340        "text/plain": [
341         "<IPython.core.display.HTML object>"
342        ]
343       },
344       "execution_count": 184,
345       "metadata": {},
346       "output_type": "execute_result"
347      }
348     ],
349     "source": [
350      "wine_model_performance_dashboard = Dashboard(tabs=[ProbClassificationPerformanceTab(verbose_level=1)])\n",
351      "wine_model_performance_dashboard.calculate(merged_train_data.sample(1000, random_state=0), \n",
352      "                                           merged_test_data.sample(1000, random_state=0), \n",
353      "                                              column_mapping = wine_column_mapping)\n",
354      "wine_model_performance_dashboard.show()"
355     ]
356    },
357    {
358     "cell_type": "code",
359     "execution_count": 181,
360     "id": "9535c77d",
361     "metadata": {},
362     "outputs": [],
363     "source": "from evidently.legacy.options import QualityMetricsOptions"
364    },
365    {
366     "cell_type": "code",
367     "execution_count": 185,
368     "id": "25ef8bf5",
369     "metadata": {},
370     "outputs": [],
371     "source": [
372      "m_options = QualityMetricsOptions(cut_quantile={'chlorides': ('right', 0.95), 'MedHouseVal': ('right', 0.5)}, \n",
373      "                                  classification_threshold = 0.8,\n",
374      "                                  conf_interval_n_sigmas=3)"
375     ]
376    },
377    {
378     "cell_type": "code",
379     "execution_count": 186,
380     "id": "e81bc1da",
381     "metadata": {},
382     "outputs": [
383      {
384       "data": {
385        "text/html": [
386         "\n",
387         "<link rel=\"stylesheet\" href=\"https://fonts.googleapis.com/icon?family=Material+Icons\"/>\n",
388         "<style>\n",
389         ".reset-this-parent {\n",
390         "  all: initial;\n",
391         "}\n",
392         ".reset-this-parent h5 {\n",
393         "  all: initial;\n",
394         "  font: initial;\n",
395         "}\n",
396         "</style>\n",
397         "<script>\n",
398         "    var evidently_dashboard_cf026d3015f94e9a8797581f20ae8f6c = {\"name\": \"evidently_dashboard_cf026d3015f94e9a8797581f20ae8f6c\", \"widgets\": [{\"type\": \"counter\", \"title\": \"\", \"size\": 2, \"details\": \"\", \"alertsPosition\": null, \"alertStats\": null, \"params\": {\"counters\": [{\"value\": \"\", \"label\": \"Probabilistic Classification Model Performance Report. Target: 'target'\"}]}, \"insights\": [], \"additionalGraphs\": [], \"alerts\": [], \"tabs\": []}, {\"type\": \"counter\", \"title\": \"Reference: Model Quality With Macro-average Metrics\", \"size\": 2, \"details\": \"\", \"alertsPosition\": null, \"alertStats\": null, \"params\": {\"counters\": [{\"value\": \"0.608\", \"label\": \"Accuracy\"}, {\"value\": \"0.683\", \"label\": \"Precision\"}, {\"value\": \"0.675\", \"label\": \"Recall\"}, {\"value\": \"0.608\", \"label\": \"F1\"}, {\"value\": \"0.782\", \"label\": \"ROC AUC\"}, {\"value\": \"0.533\", \"label\": \"LogLoss\"}]}, \"insights\": [], \"additionalGraphs\": [], \"alerts\": [], \"tabs\": []}, {\"type\": \"counter\", \"title\": \"Current: Model Quality With Macro-average Metrics\", \"size\": 2, \"details\": \"\", \"alertsPosition\": null, \"alertStats\": null, \"params\": {\"counters\": [{\"value\": \"0.604\", \"label\": \"Accuracy\"}, {\"value\": \"0.671\", \"label\": \"Precision\"}, {\"value\": \"0.667\", \"label\": \"Recall\"}, {\"value\": \"0.604\", \"label\": \"F1\"}, {\"value\": \"0.775\", \"label\": \"ROC AUC\"}, {\"value\": \"0.539\", \"label\": \"LogLoss\"}]}, \"insights\": [], \"additionalGraphs\": [], \"alerts\": [], \"tabs\": []}, {\"type\": \"big_graph\", \"title\": \"Reference: Class Representation\", \"size\": 1, \"details\": \"\", \"alertsPosition\": null, \"alertStats\": null, \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\"}, \"name\": \"Support\", \"type\": \"bar\", \"x\": [\"bad\", \"good\"], \"y\": [355.0, 645.0]}], \"layout\": {\"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"Class\"}}, \"yaxis\": {\"title\": {\"text\": \"Number of Objects\"}}}}, \"insights\": [], \"additionalGraphs\": [], \"alerts\": [], \"tabs\": []}, {\"type\": \"big_graph\", \"title\": \"Current: Class Representation\", \"size\": 1, \"details\": \"\", \"alertsPosition\": null, \"alertStats\": null, \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\"}, \"name\": \"Support\", \"type\": \"bar\", \"x\": [\"bad\", \"good\"], \"y\": [352.0, 648.0]}], \"layout\": {\"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"Class\"}}, \"yaxis\": {\"title\": {\"text\": \"Number of Objects\"}}}}, \"insights\": [], \"additionalGraphs\": [], \"alerts\": [], \"tabs\": []}, {\"type\": \"big_graph\", \"title\": \"Reference: Confusion Matrix\", \"size\": 1, \"details\": \"\", \"alertsPosition\": null, \"alertStats\": null, \"params\": {\"data\": [{\"colorscale\": [[0.0, \"rgb(0,0,255)\"], [1.0, \"rgb(255,0,0)\"]], \"reversescale\": false, \"showscale\": true, \"type\": \"heatmap\", \"x\": [\"bad\", \"good\"], \"y\": [\"bad\", \"good\"], \"z\": [[321, 34], [358, 287]]}], \"layout\": {\"annotations\": [{\"font\": {\"color\": \"#FFFFFF\"}, \"showarrow\": false, \"text\": \"321\", \"x\": \"bad\", \"xref\": \"x\", \"y\": \"bad\", \"yref\": \"y\"}, {\"font\": {\"color\": \"#FFFFFF\"}, \"showarrow\": false, \"text\": \"34\", \"x\": \"good\", \"xref\": \"x\", \"y\": \"bad\", \"yref\": \"y\"}, {\"font\": {\"color\": \"#FFFFFF\"}, \"showarrow\": false, \"text\": \"358\", \"x\": \"bad\", \"xref\": \"x\", \"y\": \"good\", \"yref\": \"y\"}, {\"font\": {\"color\": \"#FFFFFF\"}, \"showarrow\": false, \"text\": \"287\", \"x\": \"good\", \"xref\": \"x\", \"y\": \"good\", \"yref\": \"y\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"dtick\": 1, \"gridcolor\": \"rgb(0, 0, 0)\", \"side\": \"top\", \"ticks\": \"\", \"title\": {\"text\": \"Predicted value\"}}, \"yaxis\": {\"dtick\": 1, \"ticks\": \"\", \"ticksuffix\": \"  \", \"title\": {\"text\": \"Actual value\"}}}}, \"insights\": [], \"additionalGraphs\": [], \"alerts\": [], \"tabs\": []}, {\"type\": \"big_graph\", \"title\": \"Current: Confusion Matrix\", \"size\": 1, \"details\": \"\", \"alertsPosition\": null, \"alertStats\": null, \"params\": {\"data\": [{\"colorscale\": [[0.0, \"rgb(0,0,255)\"], [1.0, \"rgb(255,0,0)\"]], \"reversescale\": false, \"showscale\": true, \"type\": \"heatmap\", \"x\": [\"bad\", \"good\"], \"y\": [\"bad\", \"good\"], \"z\": [[310, 42], [354, 294]]}], \"layout\": {\"annotations\": [{\"font\": {\"color\": \"#FFFFFF\"}, \"showarrow\": false, \"text\": \"310\", \"x\": \"bad\", \"xref\": \"x\", \"y\": \"bad\", \"yref\": \"y\"}, {\"font\": {\"color\": \"#FFFFFF\"}, \"showarrow\": false, \"text\": \"42\", \"x\": \"good\", \"xref\": \"x\", \"y\": \"bad\", \"yref\": \"y\"}, {\"font\": {\"color\": \"#FFFFFF\"}, \"showarrow\": false, \"text\": \"354\", \"x\": \"bad\", \"xref\": \"x\", \"y\": \"good\", \"yref\": \"y\"}, {\"font\": {\"color\": \"#FFFFFF\"}, \"showarrow\": false, \"text\": \"294\", \"x\": \"good\", \"xref\": \"x\", \"y\": \"good\", \"yref\": \"y\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"dtick\": 1, \"gridcolor\": \"rgb(0, 0, 0)\", \"side\": \"top\", \"ticks\": \"\", \"title\": {\"text\": \"Predicted value\"}}, \"yaxis\": {\"dtick\": 1, \"ticks\": \"\", \"ticksuffix\": \"  \", \"title\": {\"text\": \"Actual value\"}}}}, \"insights\": [], \"additionalGraphs\": [], \"alerts\": [], \"tabs\": []}, {\"type\": \"big_graph\", \"title\": \"Reference: Quality Metrics by Class\", \"size\": 1, \"details\": \"\", \"alertsPosition\": null, \"alertStats\": null, \"params\": {\"data\": [{\"colorscale\": [[0.0, \"rgb(0,0,255)\"], [1.0, \"rgb(255,0,0)\"]], \"reversescale\": false, \"showscale\": true, \"type\": \"heatmap\", \"x\": [\"bad\", \"good\"], \"y\": [\"precision\", \"recall\", \"f1-score\"], \"z\": [[0.4727540500736377, 0.8940809968847352], [0.9042253521126761, 0.4449612403100775], [0.620889748549323, 0.5942028985507246]]}], \"layout\": {\"annotations\": [{\"font\": {\"color\": \"#FFFFFF\"}, \"showarrow\": false, \"text\": \"0.473\", \"x\": \"bad\", \"xref\": \"x\", \"y\": \"precision\", \"yref\": \"y\"}, {\"font\": {\"color\": \"#FFFFFF\"}, \"showarrow\": false, \"text\": \"0.894\", \"x\": \"good\", \"xref\": \"x\", \"y\": \"precision\", \"yref\": \"y\"}, {\"font\": {\"color\": \"#FFFFFF\"}, \"showarrow\": false, \"text\": \"0.904\", \"x\": \"bad\", \"xref\": \"x\", \"y\": \"recall\", \"yref\": \"y\"}, {\"font\": {\"color\": \"#FFFFFF\"}, \"showarrow\": false, \"text\": \"0.445\", \"x\": \"good\", \"xref\": \"x\", \"y\": \"recall\", \"yref\": \"y\"}, {\"font\": {\"color\": \"#FFFFFF\"}, \"showarrow\": false, \"text\": \"0.621\", \"x\": \"bad\", \"xref\": \"x\", \"y\": \"f1-score\", \"yref\": \"y\"}, {\"font\": {\"color\": \"#FFFFFF\"}, \"showarrow\": false, \"text\": \"0.594\", \"x\": \"good\", \"xref\": \"x\", \"y\": \"f1-score\", \"yref\": \"y\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"dtick\": 1, \"gridcolor\": \"rgb(0, 0, 0)\", \"side\": \"top\", \"ticks\": \"\", \"title\": {\"text\": \"Class\"}}, \"yaxis\": {\"dtick\": 1, \"ticks\": \"\", \"ticksuffix\": \"  \", \"title\": {\"text\": \"Metric\"}}}}, \"insights\": [], \"additionalGraphs\": [], \"alerts\": [], \"tabs\": []}, {\"type\": \"big_graph\", \"title\": \"Current: Quality Metrics by Class\", \"size\": 1, \"details\": \"\", \"alertsPosition\": null, \"alertStats\": null, \"params\": {\"data\": [{\"colorscale\": [[0.0, \"rgb(0,0,255)\"], [1.0, \"rgb(255,0,0)\"]], \"reversescale\": false, \"showscale\": true, \"type\": \"heatmap\", \"x\": [\"bad\", \"good\"], \"y\": [\"precision\", \"recall\", \"f1-score\"], \"z\": [[0.46686746987951805, 0.875], [0.8806818181818182, 0.4537037037037037], [0.610236220472441, 0.5975609756097561]]}], \"layout\": {\"annotations\": [{\"font\": {\"color\": \"#FFFFFF\"}, \"showarrow\": false, \"text\": \"0.467\", \"x\": \"bad\", \"xref\": \"x\", \"y\": \"precision\", \"yref\": \"y\"}, {\"font\": {\"color\": \"#FFFFFF\"}, \"showarrow\": false, \"text\": \"0.875\", \"x\": \"good\", \"xref\": \"x\", \"y\": \"precision\", \"yref\": \"y\"}, {\"font\": {\"color\": \"#FFFFFF\"}, \"showarrow\": false, \"text\": \"0.881\", \"x\": \"bad\", \"xref\": \"x\", \"y\": \"recall\", \"yref\": \"y\"}, {\"font\": {\"color\": \"#FFFFFF\"}, \"showarrow\": false, \"text\": \"0.454\", \"x\": \"good\", \"xref\": \"x\", \"y\": \"recall\", \"yref\": \"y\"}, {\"font\": {\"color\": \"#FFFFFF\"}, \"showarrow\": false, \"text\": \"0.61\", \"x\": \"bad\", \"xref\": \"x\", \"y\": \"f1-score\", \"yref\": \"y\"}, {\"font\": {\"color\": \"#FFFFFF\"}, \"showarrow\": false, \"text\": \"0.598\", \"x\": \"good\", \"xref\": \"x\", \"y\": \"f1-score\", \"yref\": \"y\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"dtick\": 1, \"gridcolor\": \"rgb(0, 0, 0)\", \"side\": \"top\", \"ticks\": \"\", \"title\": {\"text\": \"Class\"}}, \"yaxis\": {\"dtick\": 1, \"ticks\": \"\", \"ticksuffix\": \"  \", \"title\": {\"text\": \"Metric\"}}}}, \"insights\": [], \"additionalGraphs\": [], \"alerts\": [], \"tabs\": []}, {\"type\": \"tabbed_graph\", \"title\": \"Reference: Class Separation Quality\", \"size\": 1, \"details\": \"\", \"alertsPosition\": \"row\", \"alertStats\": {}, \"params\": {\"graphs\": [{\"id\": \"tab_good\", \"title\": \"good\", \"graph\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good\", \"type\": \"scatter\", \"x\": [0.7617360768461277, 0.7117665640837773, 0.24092226937629524, 0.3485171337256695, 0.815822380157347, 0.8134455835940797, 0.02966741873485912, 0.881558265596424, 0.46327153743419824, 0.34747683575993227, 0.6587549351720965, 0.530885492770756, 0.04123949358657375, 0.6137619748178368, 0.25464143317047583, 0.9089622519128124, 0.8902534457268915, 0.696886315960691, 0.11771988182736781, 0.9244162396031173, 0.6684689698464115, 0.7550947549167449, 0.5766020016312321, 0.6143927732507369, 0.9533464368664376, 0.30966797653766664, 0.550473247166797, 0.31863998110924086, 0.8575935526467252, 0.9592957484050761, 0.7679969019137441, 0.9492225948755397, 0.7983000474995527, 0.5406545769627767, 0.284583508742588, 0.6641637582422236, 0.0078490112167523, 0.5437381578086946, 0.2211447335334793, 0.6279074891418744, 0.2161294647709353, 0.588162749793632, 0.41572868101325255, 0.30837884722638886, 0.9256749788953701, 0.9564529174754186, 0.5880365308601304, 0.06511577060679685, 0.5186636184319139, 0.6530848444484797, 0.2910328142642846, 0.790208434951282, 0.7963966058344659, 0.9822466017927972, 0.8019745785985709, 0.7028720489781505, 0.6426426266753272, 0.7218279549308536, 0.470270103475522, 0.3553151707993165, 0.43560324594668354, 0.4134122157700817, 0.343926860829771, 0.0018851863258151358, 0.4697831084009906, 0.15625966909142475, 0.012179696846155497, 0.575439831068484, 0.2635850364448785, 0.5583630284549252, 0.6058819071807003, 0.19021059561470144, 0.46082198407645014, 0.7975444216216985, 0.05877806628728499, 0.3738186076889345, 0.7472863947969344, 0.17464423345351188, 0.6842931664302776, 0.09372494453428859, 0.02292262446297766, 0.33542704609113594, 0.293326128764676, 0.9612307389871078, 0.08467427955563167, 0.8962846191726882, 0.4884038807601473, 0.6192620454965795, 0.5515192294391579, 0.2961083682586412, 0.3288987548455159, 0.7268215665554855, 0.3387269669835069, 0.04414685141359109, 0.9442478929321282, 0.7086174442931987, 0.5133007426168377, 0.33210052011362856, 0.9203077863396072, 0.5681916851932491, 0.638300338761737, 0.08315199779356708, 0.8539577286793928, 0.7575510814998455, 0.19784293662428065, 0.2599958671640821, 0.900341715086683, 0.19572550962188184, 0.1965959885094024, 0.0979507608385729, 0.17487652750991378, 0.8667064353426192, 0.6623453554731263, 0.8102326718373384, 0.4154005242927329, 0.3715513906893455, 0.5371239342863421, 0.6614913013885492, 0.9701482586972491, 0.9474686071576095, 0.7060327197160416, 0.2422852238726031, 0.4603050258362361, 0.8085217226316671, 0.8508137014445704, 0.050021513965625486, 0.9946746844261809, 0.7789048546949606, 0.47516189286990496, 0.6217666895078138, 0.28457507591539843, 0.7414194665690951, 0.9256130672739629, 0.7245635520958054, 0.06651254570814036, 0.737572677859554, 0.6102436027763253, 0.8962425048686339, 0.05126536223715139, 0.6465713117314484, 0.45309688792417635, 0.8940856986821976, 0.37762517291055286, 0.05313333424345135, 0.7601733524576627, 0.4249548438507533, 0.050798886112711994, 0.18435297170147946, 0.14891950755283023, 0.9355677480870057, 0.5399319518197963, 0.10676763052026739, 0.06195248272362586, 0.3556558255507749, 0.2392437472608655, 0.9731687772315275, 0.7797733170887854, 0.5841971638356026, 0.30032819014599355, 0.20240160649698213, 0.8623179695267423, 0.30342090252023934, 0.3231062745860428, 0.3318746811148423, 0.47130358539843586, 0.17550361760749522, 0.5468653350917715, 0.9928243554956322, 0.8386492950960911, 0.895773281607467, 0.770528578797604, 0.7875881306902505, 0.17439835230229395, 0.782463689849288, 0.8397132362124843, 0.03808623514464182, 0.3055451670535909, 0.3954277161918126, 0.13299196600001262, 0.24941168362378252, 0.21180875979463842, 0.5619760150349079, 0.5706723254370285, 0.5494579088781758, 0.6029017524184103, 0.5309812396980967, 0.42039556118981347, 0.6404220952137645, 0.9678806947166088, 0.0770601422059416, 0.9701188487816376, 0.48804585384766563, 0.761794700886257, 0.6332987942699204, 0.9653931818606099, 0.2886655666265192, 0.35248815532218014, 0.20724829541499645, 0.8972287578645277, 0.5527981080354565, 0.035391848525879954, 0.7905878492625245, 0.7798323951134165, 0.30170116543818926, 0.1839406701948869, 0.08413906674097626, 0.07325324037556047, 0.6489950203994896, 0.4766746075731545, 0.07315577030284326, 0.2579438615966332, 0.9415416644927267, 0.12949476218444522, 0.2166269901525586, 0.3976873884410157, 0.225535627519732, 0.40983644735790403, 0.6586038985580676, 0.5732577932017745, 0.8446407999125335, 0.2400954911862987, 0.8199917547882218, 0.25725142455652994, 0.8333558199196786, 0.5748016913857145, 0.8385499474744007, 0.8303670508842683, 0.2586079953758216, 0.8793952037024532, 0.14838480611593363, 0.5952432023367035, 0.3803404079921855, 0.24075028912594065, 0.7671758156015515, 0.7767883618697197, 0.5576080259777632, 0.6969864736136694, 0.5725374534426335, 0.2235500150412959, 0.8170998546277043, 0.5746389813904018, 0.00557619789410535, 0.435016377900207, 0.24442032861599594, 0.5183305519748823, 0.9824384983573543, 0.06833360710160585, 0.9961535879295611, 0.5230247881332392, 0.9386533105792023, 0.4172513498476116, 0.9844304722189122, 0.08373985366350556, 0.36739971238572855, 0.18000442520917692, 0.5388986812469267, 0.3569452151909497, 0.4947427676721192, 0.12706329819581486, 0.6864264376459692, 0.25558070614126904, 0.7987448959678047, 0.7450112249261431, 0.23019627100851936, 0.9428779631044346, 0.1697936458401611, 0.5483674888713901, 0.23001295519827603, 0.9922201047746425, 0.9263468409173371, 0.3452647433132967, 0.7012196377878361, 0.5120098650165357, 0.9668003782460102, 0.30976443545756505, 0.6916851553126815, 0.023267754160934073, 0.6206414541101598, 0.1272952110849772, 0.43926950451263447, 0.4864747011299476, 0.6279495329324976, 0.3874148088310968, 0.9966261270622118, 0.9313235161094949, 0.2520268854598906, 0.9101747481384507, 0.13617193037771957, 0.37453595734911715, 0.5799850340857478, 0.5565840670481048, 0.6832725974137465, 0.7456662663357435, 0.18047739716262945, 0.6417544231926628, 0.7689351948396665, 0.17118516455463395, 0.4733715415775043, 0.8896875527093638, 0.1354625647046811, 0.6893210429960492, 0.9841935695886926, 0.26328257049037407, 0.8607969433939812, 0.47831677758649305, 0.9169403886245703, 0.8594887588058876, 0.19072648468229592, 0.19989881327868808, 0.21704597256772218, 0.42683623846197105, 0.9622372962107579, 0.5888710884452371, 0.42917933389042295, 0.43575424206182856, 0.8161946010920683, 0.031939396657368224, 0.557286658560669, 0.9859046888638591, 0.8518111233470861, 0.5223873101696035, 0.04545879867405034, 0.5840067835469837, 0.4903454028445341, 0.4799566807394231, 0.4027147222856957, 0.43323659630662503, 0.509346477199162, 0.23751965671909003, 0.09592634765469965, 0.04761685565670548, 0.15124812565777457, 0.2805317897908932, 0.11246910398259036, 0.11179713492275889, 0.7748449944241984, 0.5959264275724415, 0.9701566348191335, 0.752245770078565, 0.31714869885407604, 0.3060819246847961, 0.7461811580104007, 0.8637051131210309, 0.6461216616305366, 0.7602286587915751, 0.2349417901828943, 0.9298354192682202, 0.12927807415831638, 0.8029335825529714, 0.3386166760211522, 0.7235305346047136, 0.24057880647977015, 0.316132196457526, 0.3531424247972448, 0.3469291537880902, 0.45288067488484285, 0.6103055038956237, 0.6749869755230521, 0.2806751730203012, 0.6018004932897353, 0.3235966035763924, 0.9752567600530203, 0.6273513039814502, 0.05171850328977601, 0.004246593881193972, 0.16435002987255143, 0.41150723849833615, 0.5332878687207219, 0.5998322885015868, 0.7311888306759691, 0.3743571855165958, 0.41996156556549125, 0.47176808965137107, 0.12397907276497322, 0.9900152021628463, 0.8931249177652409, 0.7125409796385963, 0.97255498501931, 0.032424430760641054, 0.7502555851941214, 0.07682909754183964, 0.9491676041593342, 0.28488873896369893, 0.6130598710207941, 0.7911307734232278, 0.35826182891347813, 0.3846576647757056, 0.5725722457238207, 0.7035654475650611, 0.7857313341342425, 0.5689940946554776, 0.5918921675421804, 0.32316167383246763, 0.2861655923344918, 0.9432834451471284, 0.3999752744805869, 0.17044024573489291, 0.9172774491928453, 0.8831844053960597, 0.9280046932432092, 0.46304582327728694, 0.781118788105146, 0.9301757327532839, 0.568467623275858, 0.6513322572485515, 0.5988746520689747, 0.29550534038915066, 0.3178597427975689, 0.7118642868270029, 0.23250511693211984, 0.49839844598769256, 0.32830654020225425, 0.07636588499053432, 0.24243587969105396, 0.6551122562583941, 0.7225603783114162, 0.8037969585890655, 0.4136344332947155, 0.5925441904551635, 0.5581530120781747, 0.16967964542246283, 0.4159258302062069, 0.6274538612552453, 0.2674580999384727, 0.31844947290605397, 0.05549792272157916, 0.5840583621963557, 0.41383755571507175, 0.21646787600476702, 0.0316046123125604, 0.9880551571423606, 0.8685538683003555, 0.3083561257400683, 0.16599836840044924, 0.4242417003656186, 0.5543658727865076, 0.01968088585541028, 0.08414039944825336, 0.45025822948081706, 0.9028881702341964, 0.5909985212790673, 0.8318246966507068, 0.5821017592096267, 0.6564446513854538, 0.3404886252148981, 0.3823161401573908, 0.6882347855650244, 0.18751747131381724, 0.3121222048394734, 0.9992949178548766, 0.9414399371980052, 0.45593553637080797, 0.2460167320824107, 0.03907061483321306, 0.6331765760853164, 0.6379123704145314, 0.22078779206592192, 0.4889800949231494, 0.7628297195571108, 0.04152180161294239, 0.08295518682753023, 0.0006988036246126095, 0.09807911245336964, 0.6927038984207253, 0.58284958791072, 0.47707391435428015, 0.18426234641554506, 0.9485534454400989, 0.6512988021384807, 0.2908125984968529, 0.03608689699942169, 0.17699292746479955, 0.46518625364839383, 0.6684589372023035, 0.9568297208526794, 0.06348349736409487, 0.93139353374589, 0.9647108347115421, 0.014535600687590189, 0.1657112240308255, 0.9641320866752564, 0.1641720912721506, 0.38262070886257193, 0.4882313597543071, 0.4736113184274363, 0.7793726124980277, 0.5334103266035077, 0.2524502745732836, 0.04608548863679662, 0.02980688012926236, 0.8385418645643702, 0.971105853509526, 0.21403051682379393, 0.5669592164866882, 0.2722887083056449, 0.47831846029039937, 0.8474583086877889, 0.3840287514867958, 0.36940911785993535, 0.9681353544864029, 0.6627991359640419, 0.46932968843878564, 0.8638235157009574, 0.7905925719135359, 0.898769248988266, 0.9894202118663711, 0.5719128046299873, 0.23296936248855182, 0.4891800168315775, 0.07591289646890764, 0.67790726148209, 0.9309671249840384, 0.4092084094351325, 0.49234310011652493, 0.6524281638718938, 0.7389800995259823, 0.09643918398908935, 0.972722892178775, 0.7403984611507569, 0.02440873227888929, 0.6148492574121273, 0.6923835724742669, 0.7019105958271833, 0.4473174891199023, 0.1718159017363452, 0.4867475410595934, 0.08087051932231959, 0.6572226701884756, 0.24630534234395585, 0.5800035368806983, 0.47961552838766697, 0.3351805439117066, 0.197720670834015, 0.2824312853913692, 0.03317107607315539, 0.8829843051526088, 0.11244668498448174, 0.5836642450347675, 0.37273435896415785, 0.6396060490395109, 0.8437154273008302, 0.889212235510299, 0.4911277656448769, 0.04763197474550973, 0.8950531686957527, 0.9181338529920378, 0.6440034265419788, 0.1912620449955701, 0.9348247431293247, 0.9084794853270354, 0.4180353154845847, 0.6766025135974558, 0.27807667498171773, 0.01025386858101629, 0.5106252449109003, 0.04821338587341717, 0.6677583689762103, 0.4135972661866618, 0.25171937579356984, 0.7284466258795107, 0.3746510633509923, 0.3349278149627919, 0.6353535220627434, 0.8059433022044533, 0.38762830963859496, 0.011549770278577842, 0.3112150988556964, 0.6829423565373367, 0.3417407257717412, 0.35187081372885176, 0.631588898374122, 0.4248968763057338, 0.34252516066325356, 0.22810682316123287, 0.14757243532438846, 0.68952922565868, 0.22641553365429135, 0.6417065503066618, 0.31449852912871556, 0.4111298416566904, 0.09250622987997226, 0.3381033272965468, 0.7080322065606576, 0.04822354837511522, 0.9551419842466509, 0.12201241276815522, 0.16016235923242128, 0.6716959228181367, 0.703664798986146, 0.6335155314514572, 0.9512604263796725, 0.18760328572063822, 0.7920194479413875, 0.312297876091969, 0.599144412333814, 0.5354394803376588, 0.43080635439552883, 0.025381983786682993, 0.6822459316385469, 0.903567918343585, 0.5717771468698455, 0.5464627096518349, 0.9238861770262721, 0.30186229005212384, 0.3027928584857491, 0.9601170901672758, 0.6988055468711617, 0.4240179768856971, 0.4068395906114566, 0.3161650304995761, 0.8067963439236152, 0.4333210435554349, 0.07053247981359323, 0.05884837203496551, 0.08093666032291669, 0.3673997634510574, 0.20966606405476784, 0.6180882850144944, 0.9488480461659199, 0.4078110223361182, 0.08008661361271618, 0.06749042473444944, 0.5969828976915379, 0.6473171335677821, 0.57447659699663, 0.00310105820458495, 0.8413917802224364, 0.17418476056796717, 0.6278624276066833, 0.5497197012651764, 0.5982002299475611, 0.44750145448539924, 0.6986435720620998, 0.4289844291449355, 0.5253786770965565, 0.49681398978312574, 0.6894518553488626, 0.3400780352286016, 0.538596552238276, 0.9145882645742153, 0.5771243866582018, 0.08102768899413781, 0.26847758926528964, 0.4993318421758004, 0.515086285516116], \"y\": [0.8156061324462894, 0.42491310922683634, 0.8867827646463432, 0.8014995238430205, 0.30499958310650876, 0.5817355832705369, 0.959171062334887, 0.7854416128369749, 0.9085690698200813, 0.8998600376511439, 0.6341165000693628, 0.412102187638673, 0.7643629411050379, 0.4710001938005606, 0.40182653035141874, 0.40438056362905367, 0.8870480016118494, 0.3650667978415713, 0.9064321709292111, 0.9327245345966092, 0.6458420185168736, 0.8821841129047617, 0.6704018506542557, 0.7655671181822064, 0.8616986618932058, 0.48774537944210006, 0.9637355036179479, 0.6794204065079696, 0.6044835155949141, 0.7867954023600708, 0.9137982268836646, 0.5867502063434873, 0.8048584290077971, 0.9718511071053526, 0.9627192884041744, 0.7978623718349598, 0.6091120966723917, 0.8943338178728011, 0.8853376735027229, 0.9045563504021151, 0.9264844632598176, 0.6342457655367447, 0.9414033426130164, 0.5636516403732365, 0.5172967922101196, 0.4836896337264441, 0.35199620689495453, 0.788779954566273, 0.9696552399248426, 0.772496554239754, 0.8132656157621138, 0.4539090261140653, 0.9333708926412786, 0.679765045723866, 0.48457442622955804, 0.4248820606938153, 0.6737819616086004, 0.8780741425819777, 0.38340602447337646, 0.90634085684919, 0.5574014604752268, 0.6804147683859246, 0.9077110088845216, 0.7718472635729894, 0.4717552048891654, 0.22222808308441652, 0.8616549355667619, 0.705749071892896, 0.4699129352300819, 0.9680524782819758, 0.8891353183282249, 0.9466602521798594, 0.8553382520847058, 0.7430243903066251, 0.6616131862201935, 0.6919609500216202, 0.96565744679506, 0.913108907487878, 0.5395521774612226, 0.9026238558501023, 0.6550941529376255, 0.9757876320152292, 0.8833495792027257, 0.6666029765862381, 0.8504582120840628, 0.9320215595878566, 0.7639947574915884, 0.6085229656221847, 0.9557131606798471, 0.46184432615952054, 0.5642658412077981, 0.8815615400732472, 0.7189203536918151, 0.9301020530176726, 0.7341394174346678, 0.7759189559372703, 0.8448078654733812, 0.9012666081120407, 0.8926028620066223, 0.5287492720273277, 0.6874206920638863, 0.37408584674942635, 0.8348370105186077, 0.8697567261320243, 0.9175759024810304, 0.44644098895981, 0.8874384748400057, 0.7787567487441118, 0.9416122482572158, 0.3265229243180111, 0.9308095750950773, 0.42267134533232753, 0.43068181214270274, 0.8727308285810839, 0.7201611177732586, 0.8430904589044517, 0.8140617541555761, 0.9456747441572588, 0.6672663325862807, 0.8756470416862959, 0.518871521713375, 0.7040615347784164, 0.4957960231649875, 0.6250130361556073, 0.27413726132188326, 0.5193133578087885, 0.37656641690434584, 0.5808048103476511, 0.7917827117482167, 0.36569143480873245, 0.7232542293832885, 0.9785934574433302, 0.5715075300165849, 0.8182555969893297, 0.5448461144048058, 0.9491291995847589, 0.4833587957991669, 0.3189279754564957, 0.9184825510014271, 0.5524830505676419, 0.9600429304649183, 0.7818180966165994, 0.7962710274484252, 0.7569429870375118, 0.46184432615952054, 0.7641514270390748, 0.9486763575522457, 0.8086368705092697, 0.6784536879503494, 0.6877019790624462, 0.6082670858563528, 0.6053794617794684, 0.6319330693089359, 0.4982105707488519, 0.6787928880949093, 0.9231980717613485, 0.8831230955067948, 0.6845485656817341, 0.8799204262605215, 0.9164563829924386, 0.7819268199067826, 0.23469888428232324, 0.9492377841603665, 0.8826092272015389, 0.6360541596480074, 0.5184081252698399, 0.6400126753125241, 0.542646305979658, 0.4479501208302092, 0.7783171875827786, 0.7867712153112567, 0.5236605417423803, 0.6959846197179591, 0.7925023358445066, 0.6683189355892497, 0.18737025221649042, 0.42506327048176057, 0.7272596040941706, 0.7314191754306454, 0.4827891324637794, 0.6649341228620356, 0.9038332731164471, 0.9588917860646077, 0.8945194928389463, 0.49833043835950624, 0.7997712594855277, 0.8577935987172323, 0.7622736922026153, 0.8039391974899521, 0.7396811504731934, 0.8115340233127679, 0.801728888664367, 0.738451208106372, 0.5859674792922007, 0.1865203674848816, 0.8773430435604171, 0.36888329310067386, 0.8651817982269884, 0.9067615420962557, 0.8594983988587351, 0.7437750884018276, 0.9145224932934428, 0.9135679891815164, 0.8001832456898428, 0.6860977766129374, 0.9377826008632761, 0.9300369611912853, 0.6997062971069969, 0.5693182102579236, 0.3404656140239559, 0.7160591142088384, 0.7953146078011, 0.8869803873277935, 0.7639982823097876, 0.8681285227071118, 0.576868797021353, 0.93035102563313, 0.8375600281828176, 0.8279918435672958, 0.9266689436294401, 0.7559862346636359, 0.5099889666930224, 0.6914445842613687, 0.9651950326885705, 0.87851968214492, 0.8499702807396289, 0.4685752957996948, 0.7241546992314323, 0.7848147251007912, 0.7341394174346678, 0.7008877443692281, 0.340588975625529, 0.5013021766499856, 0.8321174529331695, 0.8818378666553491, 0.9176909075187759, 0.8634678749265305, 0.7436082905772717, 0.9343776659412377, 0.7668809937296346, 0.6243383802582345, 0.5332560471205093, 0.6907315465649003, 0.16626803588025432, 0.1668542888532837, 0.7408943843163458, 0.5221312328975666, 0.7457559475413279, 0.46389636934606376, 0.9292627865919654, 0.5268311186840582, 0.4244151934213653, 0.643310536612302, 0.8577438313980266, 0.7816208399762355, 0.8553382520847058, 0.7010035672814305, 0.5242572272016158, 0.9187320011579697, 0.8703498177621264, 0.6713045345576062, 0.9137982268836646, 0.8614414457916845, 0.9445662266054761, 0.8808216590199034, 0.7386378115490353, 0.8873009977622293, 0.9157094897337859, 0.6606038558129893, 0.9296803968514485, 0.8864322240790464, 0.5146720135715994, 0.8720710714485208, 0.9415427660945741, 0.9138701141498735, 0.6527559092576063, 0.8751970040938668, 0.9249766460056568, 0.801728888664367, 0.6575848465963361, 0.6934824043184128, 0.8619113960143526, 0.9419078024651042, 0.9591721389341828, 0.8397407150753159, 0.9084383840076588, 0.4963969309336195, 0.7359588175524252, 0.3531961907069324, 0.9279819479140234, 0.7752976919572294, 0.8665226278427577, 0.9515211055933231, 0.7314191754306454, 0.890886918514299, 0.3235491032739525, 0.3719939405423586, 0.6323804178173072, 0.8398006965792015, 0.8239469134189235, 0.8592101816891015, 0.7615002907198236, 0.8688259750909261, 0.8718104001390852, 0.5838074755684882, 0.8756470416862959, 0.901850575196968, 0.9451930143658351, 0.6253812669856891, 0.5890764576710766, 0.4921052500998711, 0.4862070578416567, 0.9170647663398394, 0.7035583451969506, 0.8476385889092957, 0.5603058978573646, 0.5810606890504925, 0.9088604673919816, 0.8903252600075929, 0.944267921154058, 0.9435968591480925, 0.938237366988842, 0.9357286047893738, 0.7961386682142712, 0.7840233885688647, 0.2513590507613302, 0.7389284097502917, 0.9053472250810051, 0.44438282424164377, 0.862281110352348, 0.8021059248496223, 0.9152740930046814, 0.643737358401971, 0.8540304955499701, 0.8613418170006786, 0.6911084183178322, 0.8848367871057808, 0.8387883096682573, 0.5942651630821018, 0.65691393717736, 0.6369979527510315, 0.8280658524313272, 0.9640736168216585, 0.6546311715671466, 0.5599819536107853, 0.48348053317652906, 0.7668016587569692, 0.03620763244300767, 0.7364400865449663, 0.37408584674942635, 0.8767503774172, 0.8743962287172513, 0.8751970040938668, 0.8833495792027257, 0.7091886355621774, 0.87006937054451, 0.7904001815220257, 0.8761418339280951, 0.8306834851111597, 0.7531715889012326, 0.38181207472529843, 0.6490458991820136, 0.9138057013338913, 0.9046222904886461, 0.17956061692355052, 0.7506163079023257, 0.8963285795381793, 0.8848361664653354, 0.9283037217377402, 0.45996158699034445, 0.7290858434196763, 0.8319094967702583, 0.6578018675312727, 0.18727567457681707, 0.8673410249845035, 0.9453298670648187, 0.9446538464906173, 0.19605573045952288, 0.6723831041639817, 0.3438281302059518, 0.37858973820495484, 0.6953170483296187, 0.21463507152544156, 0.26963792069965237, 0.3280912492037974, 0.8399932187801539, 0.420387898633768, 0.36522500752858966, 0.5810560693343539, 0.9306346767722963, 0.7167716539092029, 0.656736106921484, 0.5549139996760648, 0.6909161521388689, 0.591904263202073, 0.884703171197362, 0.866402281883595, 0.7582770814524421, 0.8990773411030794, 0.1818065866116437, 0.6222165686186035, 0.17261914235374884, 0.8156064679757086, 0.4851213943917703, 0.8871292211128762, 0.8398494053952754, 0.703270618172154, 0.6305543892506115, 0.7494149477175548, 0.1532408287022325, 0.6159732902773407, 0.738220551127759, 0.8354520044441791, 0.8536870432671441, 0.5751476712690671, 0.9077719201719568, 0.7878515691455199, 0.6672663325862807, 0.45293736875445273, 0.17058553029544155, 0.747933377844996, 0.8400163125056676, 0.4516778718827729, 0.6082670858563528, 0.8401843469141149, 0.7636885291754726, 0.789170795337903, 0.8128612802083497, 0.7522530659814418, 0.8086757686066508, 0.8356255123032285, 0.9241779635105248, 0.9674588597049086, 0.9368885694202199, 0.4990764491242286, 0.876561204324957, 0.554264192243629, 0.5967716244634195, 0.9060244606340249, 0.8401608718856799, 0.7329750583133859, 0.8021769878309102, 0.9316817655017511, 0.45488322534173153, 0.798578398438993, 0.7425236774748816, 0.5742682328784404, 0.4937681935814938, 0.8972164286692267, 0.8914273370768748, 0.9377613518261881, 0.8862258850530264, 0.8591757581361523, 0.7410678096850266, 0.6822336012657398, 0.9201658505843877, 0.6982578893131915, 0.5746709232170782, 0.7626532952948841, 0.7137703530889916, 0.7520971196461234, 0.4473853625959922, 0.7957460056304991, 0.4833174871501707, 0.8758467705785958, 0.4689303842787964, 0.6133612564737879, 0.8568681391705205, 0.6835133967314007, 0.9732070839986944, 0.21435716257549006, 0.5761668962420043, 0.4055433603128916, 0.3743394998756179, 0.9118635774953143, 0.964551884718591, 0.9306459334511011, 0.8424802355113449, 0.7739144871152517, 0.6872688771534424, 0.8590561833388345, 0.6714384475466295, 0.6408669500407106, 0.5203550269219845, 0.2856853969697174, 0.857760555506807, 0.9307094503226838, 0.6787928880949093, 0.8308635255795866, 0.29271374211533296, 0.6769315553524353, 0.23831547366416572, 0.5895099457120908, 0.8994675076574448, 0.8893400405584444, 0.8456825404777587, 0.5399612081435882, 0.6188649121485582, 0.9281492942813848, 0.7611740601422801, 0.46550237374781617, 0.8896861436466836, 0.9038901015569306, 0.5044440900554997, 0.9215480939667524, 0.6930273792518707, 0.8723244804196287, 0.5624338775604165, 0.9226297661236537, 0.8469231754225917, 0.9430557295321259, 0.9097116306258912, 0.5988707702267543, 0.3813853072548755, 0.8843832309478876, 0.9006952500629406, 0.918975987201669, 0.18997930334445084, 0.8923106748541326, 0.8461388699436441, 0.5973439234355874, 0.9544642924744549, 0.91770416680597, 0.9177239854204658, 0.17584552180125673, 0.9240099144459667, 0.48524948024905407, 0.8889685222180134, 0.5785503824403398, 0.7511953459672914, 0.6887596776945688, 0.6717539058356753, 0.7168761391602206, 0.7134478068952186, 0.834626350903405, 0.5715867980362679, 0.6588392688727011, 0.9488572786900573, 0.8920529250761863, 0.8891353183282249, 0.707981940789761, 0.926348680038428, 0.631489487929038, 0.7443856388661001, 0.9260754381930228, 0.9544642924744549, 0.8497401318990601, 0.5604010177433062, 0.8036334301115304, 0.7898153537185114, 0.8491431337122072, 0.6570881560807702, 0.8389599143569951, 0.7944137576415592, 0.8132668978866627, 0.44714680104169846, 0.7978021044641371, 0.41921696608658454, 0.38876183891604754, 0.9248463736054193, 0.4277915265084825, 0.6345107008491314, 0.8008942533173764, 0.5087430598332189, 0.9414938992689892, 0.6922115882765215, 0.8296175750175913, 0.8593339228153332, 0.8975141534758351, 0.5977126281557783, 0.9279478536756302, 0.6485770817571253, 0.8905823996589662, 0.9332072841984264, 0.9432461110830079, 0.9410120781436498, 0.6339696776630096, 0.7120962557761497, 0.5841709037351369, 0.5928970840420333, 0.9006589732900512, 0.936371533648048, 0.6907852379101131, 0.7675780198071424, 0.9444587893431046, 0.4702336163336472, 0.8925536722101626, 0.8158978708906081, 0.822780392485108, 0.8037335327290217, 0.8382351003285965, 0.8941557358589171, 0.4796498334522667, 0.926348680038428, 0.6842118015950474, 0.6463580983468415, 0.8292048071278182, 0.5834426687867836, 0.8419845362148763, 0.2431563391580561, 0.7763142135369961, 0.9390550746437164, 0.7774903237071782, 0.8141232663130791, 0.9444089886680379, 0.430401459478284, 0.9192677156927759, 0.8427595869840984, 0.87120858451521, 0.5693182102579236, 0.820012080301976, 0.58719119911586, 0.42769376643096113, 0.3542595869275313, 0.89579938191327, 0.8743523014696554, 0.7820497043505815, 0.5279069501129625, 0.8869579700149332, 0.45488774279476296, 0.8514781135508903, 0.8278297091497892, 0.663749097381813, 0.5132851713944618, 0.4906566565015208, 0.6415219885510332, 0.6991293681294938, 0.8150539074042624, 0.5800669536763935, 0.9583771200922359, 0.7366090055976814, 0.5747817696023392, 0.5315376696882942, 0.8074446941396305, 0.9038901015569306, 0.9087015650331977, 0.6697291810323083, 0.5800669536763935, 0.8807270543114014, 0.5135845984304893, 0.9352791850238339, 0.36120709973337456, 0.6206709330576408, 0.906286252315459, 0.7937202818717513]}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other\", \"type\": \"scatter\", \"x\": [0.8250980635870118, 0.8555547207909825, 0.5154289344963635, 0.7498660675843439, 0.29870377277181615, 0.00434310935948512, 0.8532983765840789, 0.32702743602527473, 0.6199122846742784, 0.456508674853108, 0.7455157665353341, 0.029990698261349702, 0.40047104050223736, 0.37453115465449827, 0.9590656821827026, 0.05803473264478509, 0.04856468455760665, 0.14700302447611746, 0.21558106751732353, 0.5220632100877017, 0.9206313451733806, 0.44345286446344645, 0.4292612864088653, 0.1762554965471168, 0.41431229231063327, 0.7127041826412887, 0.4759563644024527, 0.6437903796023373, 0.5051790460538542, 0.49740213683266665, 0.7306504808404297, 0.3453651882801203, 0.7831715813446519, 0.09136858067855036, 0.08781040814926011, 0.4440452813604473, 0.5635862840361466, 0.3670146535645148, 0.7740213051851697, 0.5980407266650157, 0.8064023519506286, 0.8323857674176683, 0.3744232791431171, 0.5164196855830812, 0.5079235527843299, 0.9093820128760414, 0.9672306791904443, 0.7522742910785808, 0.22708285787498017, 0.36405545834733166, 0.4488393139022445, 0.8229504992476903, 0.6964812058669466, 0.09620695888757846, 0.6354224150124754, 0.9857027329071266, 0.5864362204282884, 0.5590379702026368, 0.11638472315100767, 0.402177694955713, 0.5311835157248601, 0.189537702011373, 0.14629276048238093, 0.3080871997039436, 0.49834391774779174, 0.07103107873426895, 0.8867741679544597, 0.4201772666025545, 0.690360893686047, 0.8158739267088674, 0.5629699040703218, 0.954315586643672, 0.08395041995514141, 0.8778204459603218, 0.41040556672272144, 0.25755621033862874, 0.946992025523118, 0.0955904047339019, 0.7114207443641575, 0.2953335199858641, 0.17410485391281394, 0.8319331963264415, 0.4374427341512639, 0.6546023166463549, 0.5516542351929355, 0.4915346520149688, 0.3873796249751559, 0.711905194123006, 0.9152264261392576, 0.5799828765935522, 0.3018518655459812, 0.6132003144806902, 0.12520257400235413, 0.5812944809047573, 0.17149773637833265, 0.875687860309732, 0.2939766574841909, 0.049236214202921014, 0.6626846971099355, 0.3370656370966576, 0.19644966678545261, 0.33083303630559513, 0.035283839770087644, 0.61470829989595, 0.5060754886443798, 0.2501713549632154, 0.4698470036941558, 0.7763676386444806, 0.5615978510660037, 0.21474663416947504, 0.13237981213308236, 0.2106873003858194, 0.26942743423535753, 0.022394039606816962, 0.39248099430403127, 0.7912802127887747, 0.07198863784702136, 0.9652094898653559, 0.7129431449464808, 0.2221728579285559, 0.21997584751444565, 0.5892827545695655, 0.007655416388485881, 0.310137199757648, 0.7164257721223137, 0.9156969992668758, 0.16669275507684822, 0.1509504084417317, 0.06684409107305678, 0.7177312624900296, 0.8198993101211652, 0.10344582325338081, 0.9091104447209033, 0.9150798002726496, 0.7853958081945257, 0.336353627830249, 0.9554638317801789, 0.07064569963706324, 0.08642890201297815, 0.668556831960366, 0.6573487384083994, 0.8559154088506378, 0.3074056411535422, 0.6369569061307422, 0.29620181135400836, 0.8092213161685072, 0.5518035955794763, 0.5940035765378054, 0.24188777208786594, 0.8064209889533909, 0.43163343710517965, 0.8325535925051085, 0.947964825469607, 0.24903512035768816, 0.808533925987858, 0.39511186214541716, 0.9052292079160933, 0.7690275462558256, 0.35459915249956264, 0.8650682555267024, 0.4731035346669651, 0.057957621276658045, 0.04034047040776012, 0.12383144811024294, 0.9977967004267044, 0.5204607779972448, 0.36084080324889944, 0.9507379249522051, 0.0951468328878492, 0.400784156218865, 0.35962964001269926, 0.7602483700360032, 0.6922243660279023, 0.13724328979603806, 0.35471883113726577, 0.47419113104097743, 0.25650561579779296, 0.7691503959748437, 0.49722696030522373, 0.7945362569258674, 0.7465856387750412, 0.13174174398566896, 0.8243042207577035, 0.6259072460532166, 0.01196378475335258, 0.7061432991187861, 0.57528941582938, 0.04528093536039435, 0.9900067494205022, 0.2768988126715123, 0.4076655975056409, 0.7735821764120483, 0.7540784142075141, 0.24783090937878927, 0.7187540576649528, 0.9213917419160685, 0.7747218183090568, 0.02182606563491374, 0.03197241630903458, 0.1906398411801955, 0.16635546299623927, 0.24819038527946968, 0.9001385733433931, 0.5855936750139938, 0.1708682404130557, 0.7325821261130283, 0.25506688161439217, 0.5817933670968556, 0.811851880483118, 0.8938713309987729, 0.7759892948545104, 0.41629009418951113, 0.016531433656742478, 0.7337617477366816, 0.13352657405354174, 0.560858308196033, 0.05206667833549339, 0.23591594609358701, 0.8087099672523714, 0.6849704300264312, 0.5951077309409963, 0.7214603927229325, 0.8249922220459901, 0.8820611806830444, 0.32207853923249863, 0.9307619782382167, 0.5306911304306717, 0.008974412298711543, 0.898507024491247, 0.1834868782421465, 0.3291649996003042, 0.4291593845120938, 0.7041815935913311, 0.7656903602716126, 0.3870604912932818, 0.4273708471283013, 0.7121148917509916, 0.39968210575135354, 0.9920597346808374, 0.27692752770196216, 0.6324882094160763, 0.2777888756327178, 0.5583028135809082, 0.013284078165336277, 0.035965195500163305, 0.8893695195613037, 0.656867452773029, 0.4143258026729143, 0.7475513326076303, 0.9110018479717368, 0.009492001593451538, 0.33960413755911945, 0.1981361183181406, 0.029557825224256762, 0.8739937024085198, 0.8815951656431399, 0.4336657276430963, 0.17919102798810993, 0.4035633366976651, 0.6926871832939585, 0.16954428977214353, 0.47245888045270745, 0.7767656065164062, 0.3130898696251816, 0.2379413238730993, 0.10324720043681002, 0.17959078618375635, 0.873521475541735, 0.43284770411094875, 0.4878890474719938, 0.3587736859889219, 0.8986996867853103, 0.5802696913281066, 0.7451366377968586, 0.19747998946960998, 0.3630865358278993, 0.25762235633728714, 0.6050634405138575, 0.7917092429330405, 0.9943174098550207, 0.7557284575164376, 0.8171350562868674, 0.5514473152073828, 0.9176484269732311, 0.8533642752171696, 0.9945468544224183, 0.2919375132432299, 0.8286246068433872, 0.6866413943409883, 0.38874814759137455, 0.7322221546808326, 0.7534164412763013, 0.8516545587804287, 0.15189524713782665, 0.08700025306398895, 0.8270603038502965, 0.6659141363064193, 0.8614443644357328, 0.26771017310306344, 0.5629294536059335, 0.3477700419897387, 0.3777060268459673, 0.11880062674344527, 0.8042685764252085, 0.8102237462916537, 0.12076048062119238, 0.6201570683126625, 0.49787171372085315, 0.4179925405750996, 0.7161526914663497, 0.495617001957779, 0.1796031814509007, 0.5016554758055916, 0.6357909034260428, 0.6680428472874916, 0.3316150898551081, 0.18331437943579576, 0.5692861920193178, 0.6859425321185764, 0.5983773003264518, 0.9333727275236261, 0.3239368135627352, 0.5810741916985865, 0.7511060458350274, 0.26395936101483763, 0.7623020657337906, 0.001208291739234424, 0.41787598002644677, 0.6403782108529393, 0.4028997366081669, 0.5807229922537487, 0.4375417909985221, 0.1519658668185876, 0.6721482649123706, 0.03544748454581459, 0.349010068694915, 0.24414821549616428, 0.9270808961121317, 0.8419257173432488, 0.23176024336208456, 0.8549673798843052, 0.7390069836100946, 0.3423640966122977, 0.49518899372707503, 0.5404334320692397, 0.7883891345829763, 0.38658022796422875, 0.5902920319569896, 0.4030940379799467, 0.5413654011653641, 0.2830205982192119, 0.223011308216567, 0.3404287321846151, 0.14518057416685182, 0.25863096104596595], \"y\": [0.2802292104526322, 0.9455194119275858, 0.4978743212349556, 0.5289145624519528, 0.28439238707197784, 0.2033309570226689, 0.27345747478543325, 0.8322873304845451, 0.389055896812549, 0.3675472469853882, 0.5781933746273124, 0.7401955299744071, 0.44969671697605845, 0.4367887814338696, 0.31593955341667695, 0.3775624358859999, 0.19282181046294666, 0.048451763306065584, 0.6005928650583868, 0.032225376113695775, 0.427412413738938, 0.23973251442015217, 0.13890126550157303, 0.8613925272127, 0.329663916828638, 0.19359965390713213, 0.6827271716759634, 0.1960905505555538, 0.08135735686643118, 0.39737240301928484, 0.13902987396822816, 0.6514166433739288, 0.6994753721471061, 0.7140886736258081, 0.5021795028970708, 0.48743245558712556, 0.5731139673640956, 0.8820820642542792, 0.559972149724866, 0.5061565591493914, 0.5066810377847554, 0.833805652807593, 0.6979972163580744, 0.3177574231538272, 0.13068190592986567, 0.758876109553896, 0.5681062961269688, 0.715544821914063, 0.762062625203523, 0.4464438677531786, 0.20995974230910305, 0.5262622410710028, 0.39442669669188163, 0.2537324982988368, 0.6775437642744659, 0.23876321589577687, 0.6369158982934647, 0.38960060362966165, 0.6034323722874255, 0.7769991715799629, 0.15199748354041337, 0.5641412449951732, 0.7590466800561823, 0.5969347905931296, 0.1048362779837843, 0.7217824369593382, 0.2662339163773806, 0.16472378978351135, 0.37760124376932414, 0.7071736299639594, 0.3436862995931572, 0.8384434752264291, 0.3635333644877426, 0.7813188949129265, 0.7279369976219869, 0.5641098847382463, 0.3863964747623771, 0.9209913370067284, 0.1477144681640183, 0.8809374658555192, 0.6533168894759348, 0.8873477284758582, 0.3697306267878623, 0.28319023347825867, 0.5203701741750857, 0.5523747693308857, 0.6387521731780509, 0.3881380695009739, 0.8487896327149285, 0.4636606453307818, 0.8384434752264291, 0.558266603669778, 0.21657231888677728, 0.3635333644877426, 0.5512671313974766, 0.5051039398599867, 0.5827915753039158, 0.49441682850108926, 0.47309171914705017, 0.6262595591688196, 0.5508242483721094, 0.47332791509789995, 0.7117569366896692, 0.3933786516273859, 0.16465066549244003, 0.7490394132223248, 0.769261050002088, 0.7431932405995126, 0.3141000916210982, 0.723735045552473, 0.6484132891031948, 0.688519894019609, 0.40496704226994307, 0.5803736122960511, 0.6327801522745691, 0.45115706990411364, 0.37268733756108086, 0.9009693101135351, 0.06496389958099598, 0.44431713201158524, 0.39960831974332744, 0.8662156944598043, 0.31018081106061823, 0.5339551117365043, 0.33311273919547707, 0.400132762133902, 0.8528754522806217, 0.14419347879543085, 0.11672350429510901, 0.44556702529145975, 0.6160120899414699, 0.13766892845409207, 0.5517204028384314, 0.5232178919035022, 0.35483403305733974, 0.4900213704561591, 0.8854578072659228, 0.43084122675663034, 0.7601186327653665, 0.14072030431570776, 0.6186690618327106, 0.5245054232921349, 0.7326259458716644, 0.5690781983520095, 0.4018508815425063, 0.24877469563805235, 0.7952501197393639, 0.8766221356386195, 0.303451532996695, 0.5357745481647883, 0.7096524147827454, 0.20877177283968149, 0.8635610141758273, 0.46736762313881036, 0.6061151992073851, 0.113015272873705, 0.40446014603085867, 0.6332606063976143, 0.648705381890928, 0.42186952587750404, 0.8047913565308571, 0.3017058309841093, 0.38406990132164637, 0.33494193042999065, 0.19929939967121216, 0.8624919783238055, 0.528785836409086, 0.43084122675663034, 0.47042159929499583, 0.5061565591493914, 0.5759491569657543, 0.8468794444363914, 0.20342296359496542, 0.5170831534483544, 0.3666753044655067, 0.6131723001375537, 0.4410646109528086, 0.6903416342484309, 0.3866428492574258, 0.4636606453307818, 0.4525459302795702, 0.03199256040434073, 0.7029629492254846, 0.2433141614541866, 0.548755973819273, 0.3775060302547258, 0.06593060991448157, 0.8745624549148976, 0.22931948662359403, 0.27267688907931714, 0.589328430619086, 0.8007160756317941, 0.5525637789187225, 0.5008522318356121, 0.4556212410144909, 0.17391722008742402, 0.43574637053357784, 0.3237440077649342, 0.6071692164257629, 0.6925152430641841, 0.592675381607996, 0.43854150134957587, 0.43854150134957587, 0.42437112972565305, 0.8061118855433299, 0.35195592295594336, 0.7605370065149419, 0.38898578429124253, 0.67510953655807, 0.872979709380305, 0.710510994258769, 0.720290290780972, 0.4820787970895852, 0.42019280799979697, 0.4304380754474639, 0.25285023254778977, 0.3238056884730761, 0.39471961640683584, 0.09510031985475974, 0.367046376808582, 0.21500793651835448, 0.8705359023101334, 0.6100742529031461, 0.6226449432624995, 0.7279369976219869, 0.3643494054700089, 0.09992017521484964, 0.41475515148757036, 0.6462260464983366, 0.14102909592513518, 0.48949585696458414, 0.5239520436918008, 0.6084413884537807, 0.5655473856702703, 0.9517420512476797, 0.7489379515982664, 0.4647937384849751, 0.7915321263825208, 0.44112279258530757, 0.5734340256727429, 0.6604471727860799, 0.4845203185458914, 0.6968730453869196, 0.5315374962198609, 0.8685951485887234, 0.6242442748350044, 0.2912097196987059, 0.7725938221565348, 0.2067629769731588, 0.30221725334927335, 0.13129342562285412, 0.6467789443522378, 0.6994753721471061, 0.11825382206919556, 0.41022417118631593, 0.4882665226122541, 0.7732287086973071, 0.25374762405010176, 0.49441682850108926, 0.3723877205427743, 0.652330313245635, 0.43667799883041203, 0.5964718913578133, 0.55172276504346, 0.24113559934961917, 0.8243980268882987, 0.7263843594269437, 0.43535214809021755, 0.8721122798612579, 0.18723914490145582, 0.6486906676970999, 0.11576704656818047, 0.4328241622975616, 0.491481212420291, 0.5264345378086769, 0.33856526784971647, 0.2967410926251248, 0.581398831228375, 0.5973776665460488, 0.6195406102170065, 0.37782717658841725, 0.323061133240968, 0.17420808473594895, 0.19634770547538957, 0.46492234760650425, 0.49613167963272686, 0.5812209036149294, 0.6057291775435286, 0.63414717387345, 0.5702687187355167, 0.8604975146328253, 0.6309022132706124, 0.48732991249542923, 0.6887148870948692, 0.41581945293096145, 0.5706760596351739, 0.4831274653996314, 0.06684727567316755, 0.49090643211649887, 0.15191610726090596, 0.2711405311223577, 0.7653618545702112, 0.09266565137124261, 0.4554350627407873, 0.19698919164573708, 0.6930185080649685, 0.5227537922811563, 0.50434568709929, 0.7082092780767422, 0.46058046365566996, 0.6735723234187477, 0.4285936050615775, 0.323061133240968, 0.5168500865319015, 0.6161307914674419, 0.23456444218973552, 0.3192004782541023, 0.21968945907811915, 0.5028183230931117, 0.43371621376298963, 0.6744209213341115, 0.5940260419772637, 0.13783310426722128, 0.5136444387530009, 0.5508647999875032, 0.4955911012838212, 0.9814394195009358, 0.8260225289794664, 0.17965956338109995, 0.46844896472597397, 0.6048119589659149, 0.3289160319090978, 0.2454606394453749, 0.7497022835596558, 0.683485355417811, 0.20995974230910305, 0.23504578258460665, 0.37175956099497537, 0.4875530438829156, 0.24982584224249993, 0.6282829625348888, 0.4520795162158371, 0.8200372413039435, 0.12832513643528837, 0.5299630655130737, 0.29552777318700446, 0.24021937552346023, 0.5429028773737552, 0.6311869746243346, 0.4145977043912777, 0.39329840463575844, 0.39070335653410526, 0.4286990948130573, 0.846836560604146, 0.6880850122626078]}], \"layout\": {\"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"range\": [-2, 3], \"showticklabels\": false}, \"yaxis\": {\"title\": {\"text\": \"Probability\"}}}}}, {\"id\": \"tab_bad\", \"title\": \"bad\", \"graph\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad\", \"type\": \"scatter\", \"x\": [0.004465888286083519, 0.9408694986521056, 0.8408745908689577, 0.8849076349780715, 0.585912232340941, 0.6095762008609285, 0.014482125349553177, 0.04447049301927797, 0.27815835825967705, 0.16548063427785487, 0.9071557623393336, 0.9404940812914111, 0.7925563382364472, 0.5934964087324328, 0.29235076494037415, 0.7869483659397631, 0.7165035202636326, 0.7201300632468919, 0.33794147904725724, 0.30135876495531666, 0.7793891276189248, 0.3821093537398509, 0.6767669362700197, 0.7610802212891756, 0.42279405235209766, 0.35742080996612546, 0.978360611588977, 0.5602047232789623, 0.5737298115434173, 0.5115226762758451, 0.3846028623125093, 0.20209651211690594, 0.595785180301918, 0.39683321226943413, 0.23907311459258107, 0.12755246131937925, 0.7308504123532138, 0.49831188251597847, 0.3780894556172498, 0.9256771411337107, 0.16519906491012726, 0.6458828615359701, 0.9038435047832587, 0.6885395879636497, 0.4740056616183024, 0.22180651349757874, 0.43788188342428214, 0.3147985178585462, 0.6718664275856925, 0.7715943539745707, 0.3534164743807059, 0.08843300050305358, 0.29450311883340874, 0.4040036784326727, 0.9768927377393009, 0.26881132578499756, 0.3779824140477622, 0.376906923434455, 0.6921283224191593, 0.418719829089665, 0.11856786282008047, 0.02634996731947037, 0.39786496332351884, 0.6209152590118924, 0.037855398598301226, 0.3249506066459795, 0.4769949724502892, 0.05375998199003984, 0.23379679529320063, 0.17722134513990329, 0.6870034448426389, 0.12649190302012703, 0.31729425556295243, 0.09045308259202234, 0.4568991377899717, 0.942811228585781, 0.455111192718063, 0.5531449824750754, 0.578924304502448, 0.4788500197692771, 0.7242616348016271, 0.9121818359133429, 0.40157051267749433, 0.3440562050845599, 0.40884874355108003, 0.6920502578157268, 0.2853868788820114, 0.9034822794215082, 0.8152958432972176, 0.7075217147423015, 0.6068202716566775, 0.2892822322367836, 0.8591931307551852, 0.5856561486580837, 0.5390471165516343, 0.23653238169987767, 0.5743765484960344, 0.10882181377526423, 0.05785202149861768, 0.7797430681904606, 0.13318515468945447, 0.5390345621596463, 0.9249202942933158, 0.5735223796779911, 0.9991530494896719, 0.280085509668915, 0.9354241387200974, 0.8164730340676233, 0.4454256606992163, 0.5228504810479155, 0.0035384862900436076, 0.5810907697589687, 0.8223293813032522, 0.5735608028255781, 0.41498337163368104, 0.4809593265197697, 0.3508310618069468, 0.9831658036207188, 0.6697766712329515, 0.8228818292377713, 0.5261722117841058, 0.2126342329684504, 0.9142422251956641, 0.3036542282197956, 0.8824273594341591, 0.5372132031390455, 0.9104197273494838, 0.30805512065330987, 0.6914556669635097, 0.9395248821483689, 0.9554277419417874, 0.624508452917389, 0.10840726798731548, 0.9923008619508665, 0.5724136617071202, 0.9840110934306847, 0.34005983950245733, 0.6280728529571518, 0.9382850871341335, 0.6309299048997681, 0.8074440289956567, 0.5399521964280547, 0.2770455844676901, 0.7675531636452437, 0.15025555421767367, 0.5565656864038406, 0.7822795058280884, 0.39187201993200993, 0.30700342273963477, 0.4682449097830894, 0.24696673461785867, 0.2700853071887971, 0.827594501758405, 0.9554142601392703, 0.3196653869681543, 0.1614588108226338, 0.19829784021571673, 0.4691512246454195, 0.8802953206709512, 0.5070636523022839, 0.5154340158470648, 0.985790054940955, 0.12928506554453278, 0.4782629454930283, 0.23826514667176668, 0.36151400877719053, 0.08113563655342315, 0.6251289611954832, 0.831432110880387, 0.5728893151946175, 0.9607847497016466, 0.6261457333790637, 0.4905422562286249, 0.8907229122382506, 0.38202826929782396, 0.11090017832347654, 0.955419646226901, 0.5051622878520713, 0.450043902204617, 0.15274175208878626, 0.06508523367646357, 0.009069257204799785, 0.28450087334647634, 0.012861521221436467, 0.613706410984351, 0.42773808054798845, 0.862450871166436, 0.039624131681666674, 0.10513367720066813, 0.8003855252358409, 0.17941052598978335, 0.9722383156585768, 0.24837337492564504, 0.3091374378799373, 0.5432094141087978, 0.35638262168771995, 0.7617214638912344, 0.30926247323654565, 0.22914124729527996, 0.255212903213741, 0.8416557100499186, 0.06504619929309441, 0.47385110845751843, 0.41152557902303466, 0.15390186610332268, 0.5938884900347499, 0.014740158043424878, 0.938279599543316, 0.8158039154220702, 0.9873526350412033, 0.673385302651074, 0.15623361713999628, 0.3231897370251753, 0.9358360451088533, 0.4037596389782484, 0.25926260792371747, 0.7419689259507559, 0.7788113280713603, 0.4554644432629139, 0.8433564025710163, 0.7727295519415798, 0.5503286753054618, 0.9037420455447696, 0.5089535066762219, 0.2599556086152891, 0.9131706893492784, 0.18779463342082015, 0.21351720905496374, 0.47589736695848917, 0.23604268424289476, 0.28469829058528495, 0.5275261317875632, 0.6158852589538972, 0.8052367780089364, 0.8450170609700696, 0.09424936720447752, 0.26715936836243337, 0.4118862445913566, 0.49705338874237404, 0.5034458929915805, 0.1374019175781943, 0.8939001066250131, 0.5246652703665053, 0.11367426275672488, 0.617965212245794, 0.2101171158712387, 0.14992837318271013, 0.37191829624662365, 0.28532737692480215, 0.06536339824770987, 0.0001538785069227222, 0.7708650131631929, 0.10230142435098544, 0.4464989338466463, 0.8601766838430828, 0.7007934104018171, 0.46900859395535344, 0.83687516642442, 0.5364493901215365, 0.2804983263555376, 0.7537841194222827, 0.18302812052225048, 0.8585501017795847, 0.75362098194634, 0.03158691872274022, 0.5846586467085443, 0.8285438376319314, 0.4318178541108758, 0.9155446020216184, 0.32492907128649307, 0.9429205678617796, 0.4844123816628073, 0.48949366166497, 0.036296808570851824, 0.3521166389047218, 0.40010573446044495, 0.23971011046458857, 0.4142139864476675, 0.9401922605948885, 0.8449688925747153, 0.36479604490381834, 0.8026273723360507, 0.5102908662562488, 0.06848134221733848, 0.4365819631358815, 0.8638299920955648, 0.9879771933345154, 0.9833853621583337, 0.9285610959963002, 0.42816820921291476, 0.8832363807335891, 0.8837211418489084, 0.43318431847521677, 0.9201449721035356, 0.2529397182311779, 0.2709024355095878, 0.3710778196726332, 0.011596160802607614, 0.6306282726910585, 0.9782705483027765, 0.4472734655813888, 0.5814752343960898, 0.08731629996268297, 0.059127885178649975, 0.5505857260067009, 0.36593626284899894, 0.7332424934560129, 0.14873513340418076, 0.046948157814378444, 0.471665683947629, 0.8017523428924905, 0.8029136608902511, 0.5778723682358579, 0.43201122847508, 0.3117364608976618, 0.34261074784192236, 0.1606991239500406, 0.11903386709048658, 0.38341493843636654, 0.7746184031656195, 0.41769886988341176, 0.5768773517147646, 0.24023296967059216, 0.04124682393437884, 0.7377796879700868, 0.6311122582572506, 0.8147564598710483, 0.4704699794295062, 0.5500658838864736, 0.6955214129998322, 0.6654359382830574, 0.6798212944269463, 0.20377717146451158, 0.602008314680259, 0.3280322047348808, 0.30615311945581625, 0.36696538321566985, 0.6234938181053306, 0.5000790974244974, 0.7548515086473924, 0.40603072952619323, 0.7310142682345643, 0.709999714871268, 0.1872755067550187, 0.7427483192834786, 0.48367986378067573, 0.26797707124912296, 0.3778262123349885, 0.8372208939217385, 0.5327637291355211, 0.8566237857181531, 0.4870182926460781, 0.4057372504074487, 0.6587299580880724, 0.401240603916477], \"y\": [0.7197707895473677, 0.05448058807241418, 0.5021256787650443, 0.4710854375480472, 0.7156076129280222, 0.7966690429773311, 0.7265425252145667, 0.16771266951545494, 0.610944103187451, 0.6324527530146118, 0.42180662537268765, 0.2598044700255929, 0.5503032830239416, 0.5632112185661304, 0.6840604465833231, 0.6224375641140001, 0.8071781895370533, 0.9515482366939344, 0.3994071349416132, 0.9677746238863042, 0.572587586261062, 0.7602674855798478, 0.861098734498427, 0.1386074727873, 0.6703360831713621, 0.8064003460928679, 0.3172728283240366, 0.8039094494444462, 0.9186426431335688, 0.6026275969807151, 0.8609701260317718, 0.3485833566260712, 0.3005246278528939, 0.2859113263741919, 0.4978204971029292, 0.5125675444128744, 0.4268860326359044, 0.11791793574572085, 0.440027850275134, 0.4938434408506086, 0.4933189622152446, 0.166194347192407, 0.30200278364192557, 0.6822425768461728, 0.8693180940701344, 0.24112389044610405, 0.43189370387303117, 0.284455178085937, 0.23793737479647703, 0.5535561322468214, 0.7900402576908969, 0.47373775892899717, 0.6055733033081183, 0.7462675017011632, 0.32245623572553406, 0.7612367841042231, 0.36308410170653527, 0.6103993963703384, 0.3965676277125745, 0.2230008284200371, 0.8480025164595866, 0.43585875500482685, 0.24095331994381775, 0.4030652094068704, 0.8951637220162157, 0.2782175630406618, 0.7337660836226194, 0.8352762102164887, 0.6223987562306759, 0.2928263700360406, 0.6563137004068428, 0.16155652477357085, 0.6364666355122575, 0.2186811050870735, 0.27206300237801306, 0.4358901152617537, 0.6136035252376228, 0.07900866299327158, 0.8522855318359817, 0.11906253414448076, 0.3466831105240652, 0.11265227152414181, 0.6302693732121377, 0.7168097665217413, 0.4796298258249143, 0.4476252306691143, 0.3612478268219491, 0.611861930499026, 0.15121036728507153, 0.5363393546692182, 0.16155652477357085, 0.441733396330222, 0.7834276811132227, 0.6364666355122575, 0.44873286860252337, 0.4948960601400133, 0.4172084246960842, 0.5055831714989107, 0.5269082808529498, 0.3737404408311804, 0.4491757516278906, 0.5266720849021, 0.2882430633103308, 0.6066213483726142, 0.83534933450756, 0.2509605867776752, 0.230738949997912, 0.25680675940048736, 0.6858999083789018, 0.27626495444752697, 0.35158671089680515, 0.311480105980391, 0.5950329577300569, 0.4196263877039489, 0.3672198477254309, 0.5488429300958864, 0.6273126624389191, 0.0990306898864649, 0.935036100419004, 0.5556828679884147, 0.6003916802566726, 0.1337843055401957, 0.6898191889393818, 0.46604488826349566, 0.6668872608045229, 0.5998672378660981, 0.14712454771937833, 0.8558065212045691, 0.883276495704891, 0.5544329747085402, 0.38398791005853006, 0.8623310715459079, 0.4482795971615686, 0.4767821080964978, 0.6451659669426603, 0.5099786295438409, 0.11454219273407718, 0.5691587732433696, 0.2398813672346335, 0.8592796956842923, 0.38133093816728936, 0.4754945767078651, 0.2673740541283356, 0.43092180164799054, 0.5981491184574936, 0.7512253043619477, 0.20474988026063612, 0.12337786436138054, 0.6965484670033051, 0.4642254518352117, 0.29034758521725457, 0.7912282271603185, 0.1364389858241727, 0.5326323768611896, 0.3938848007926149, 0.886984727126295, 0.5955398539691413, 0.3667393936023857, 0.35129461810907203, 0.578130474122496, 0.1952086434691429, 0.6982941690158907, 0.6159300986783536, 0.6650580695700093, 0.8007006003287879, 0.13750802167619447, 0.47121416359091395, 0.5691587732433696, 0.5295784007050042, 0.4938434408506086, 0.4240508430342457, 0.1531205555636086, 0.7965770364050346, 0.4829168465516456, 0.6333246955344933, 0.38682769986244625, 0.5589353890471914, 0.30965836575156913, 0.6133571507425741, 0.5363393546692182, 0.5474540697204298, 0.9680074395956593, 0.29703705077451537, 0.7566858385458134, 0.451244026180727, 0.6224939697452743, 0.9340693900855184, 0.1254375450851024, 0.770680513376406, 0.7273231109206828, 0.410671569380914, 0.19928392436820586, 0.44743622108127745, 0.4991477681643879, 0.5443787589855091, 0.826082779912576, 0.5642536294664222, 0.6762559922350657, 0.39283078357423706, 0.3074847569358159, 0.40732461839200396, 0.5614584986504241, 0.5614584986504241, 0.575628870274347, 0.1938881144566701, 0.6480440770440566, 0.23946299348505806, 0.6110142157087575, 0.32489046344192996, 0.127020290619695, 0.28948900574123104, 0.27970970921902805, 0.5179212029104148, 0.579807192000203, 0.5695619245525361, 0.7471497674522103, 0.6761943115269239, 0.6052803835931642, 0.9048996801452402, 0.632953623191418, 0.7849920634816455, 0.12946409768986655, 0.3899257470968539, 0.37735505673750047, 0.27206300237801306, 0.6356505945299911, 0.9000798247851504, 0.5852448485124296, 0.3537739535016634, 0.8589709040748648, 0.5105041430354158, 0.4760479563081992, 0.3915586115462193, 0.4344526143297297, 0.04825794875232026, 0.25106204840173363, 0.5352062615150248, 0.2084678736174792, 0.5588772074146924, 0.42656597432725707, 0.3395528272139201, 0.5154796814541086, 0.30312695461308037, 0.4684625037801391, 0.13140485141127656, 0.37575572516499556, 0.7087902803012941, 0.22740617784346517, 0.7932370230268412, 0.6977827466507267, 0.8687065743771458, 0.3532210556477622, 0.3005246278528939, 0.8817461779308045, 0.5897758288136841, 0.5117334773877459, 0.2267712913026929, 0.7462523759498982, 0.5055831714989107, 0.6276122794572256, 0.34766968675436505, 0.563322001169588, 0.4035281086421867, 0.44827723495654004, 0.7588644006503809, 0.17560197311170134, 0.2736156405730563, 0.5646478519097824, 0.12788772013874206, 0.8127608550985441, 0.35130933230290007, 0.8842329534318195, 0.5671758377024384, 0.508518787579709, 0.4735654621913231, 0.6614347321502836, 0.7032589073748752, 0.418601168771625, 0.40262233345395115, 0.38045938978299354, 0.6221728234115828, 0.6769388667590319, 0.825791915264051, 0.8036522945246104, 0.5350776523934957, 0.5038683203672731, 0.4187790963850706, 0.3942708224564714, 0.36585282612655, 0.42973128126448334, 0.1395024853671747, 0.36909778672938764, 0.5126700875045708, 0.31128511290513083, 0.5841805470690385, 0.42932394036482613, 0.5168725346003686, 0.9331527243268325, 0.5090935678835011, 0.848083892739094, 0.7288594688776423, 0.23463814542978878, 0.9073343486287574, 0.5445649372592127, 0.8030108083542629, 0.30698149193503155, 0.47724620771884374, 0.49565431290071005, 0.29179072192325783, 0.53941953634433, 0.32642767658125227, 0.5714063949384225, 0.6769388667590319, 0.48314991346809855, 0.3838692085325581, 0.7654355578102645, 0.6807995217458978, 0.7803105409218809, 0.4971816769068883, 0.5662837862370104, 0.32557907866588853, 0.4059739580227363, 0.8621668957327787, 0.4863555612469991, 0.44913520001249685, 0.5044088987161788, 0.018560580499064172, 0.17397747102053363, 0.8203404366189, 0.531551035274026, 0.3951880410340851, 0.6710839680909022, 0.7545393605546251, 0.25029771644034415, 0.31651464458218903, 0.7900402576908969, 0.7649542174153934, 0.6282404390050247, 0.5124469561170844, 0.7501741577575001, 0.3717170374651112, 0.5479204837841629, 0.1799627586960565, 0.8716748635647116, 0.4700369344869263, 0.7044722268129955, 0.7597806244765397, 0.4570971226262448, 0.3688130253756654, 0.5854022956087224, 0.6067015953642416, 0.6092966434658947, 0.5713009051869427, 0.15316343939585397, 0.31191498773739224]}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other\", \"type\": \"scatter\", \"x\": [0.7028912441074052, 0.622134002095606, 0.5944116563932291, 0.7012192590346278, 0.6123965265692397, 0.994911156913472, 0.6305174526645445, 0.7982275215651237, 0.04202174866025865, 0.4553203420292018, 0.41323293924205906, 0.20988180675039458, 0.5354769420057243, 0.8269267255477994, 0.5161264559009818, 0.06876668099157124, 0.5490713559831838, 0.889225765963275, 0.30631681255468657, 0.20966745756095684, 0.4750372372703249, 0.8590536416533525, 0.17435077599195292, 0.29741888322259147, 0.1514736884419985, 0.4608189797755925, 0.5075804933657593, 0.8972634186799517, 0.9385262629349205, 0.5205627646708809, 0.19972751539351308, 0.44068563307531716, 0.8194346645694636, 0.9907255209011145, 0.22182648244281078, 0.11623565378557765, 0.5481242559371372, 0.8258968038877446, 0.5402103273583172, 0.8212464250748964, 0.2230143087584896, 0.15057062240896135, 0.15947884743559193, 0.64655134556456, 0.6895464929588426, 0.8216762756743855, 0.10565911958500662, 0.6860959264637069, 0.45631571592707687, 0.3146123452036701, 0.42636823750295716, 0.9976794751528935, 0.008279346939816246, 0.8635822633510402, 0.5923410066777034, 0.5767836058566178, 0.6690278706025766, 0.11866047464293006, 0.5189295427311148, 0.06541846985549005, 0.6950965410353449, 0.36842168887677273, 0.6724859840612001, 0.5646573388649155, 0.7899744428556918, 0.15913901476679582, 0.7106153426630677, 0.42181991942983776, 0.1425455101751657, 0.9988499413559215, 0.6297615221522959, 0.5606129518074165, 0.7187413176027293, 0.9485493522339011, 0.2659537169560059, 0.7085110623120121, 0.36108910876346767, 0.8126716184375028, 0.3237981944446344, 0.37688052396885907, 0.5034698694280811, 0.788090818387533, 0.5453495705839427, 0.7162420620637451, 0.27535607967298337, 0.2025983629979089, 0.7351098548911675, 0.1677201823840424, 0.3201289320986047, 0.8636463671969811, 0.5717225456770352, 0.39967503939694204, 0.9844837588110715, 0.16295945928129052, 0.563179655184238, 0.4075852789680464, 0.738500172511297, 0.8017965936418086, 0.4114222728540514, 0.3937766415780477, 0.1800352282864187, 0.9453833256877364, 0.026795017527924347, 0.2509672360438776, 0.49952392218066444, 0.9947732412520355, 0.13955017140596282, 0.6586649351904716, 0.9200742266514528, 0.8965345843961103, 0.828694796583823, 0.36466043893611333, 0.017904834915061674, 0.4290095329828564, 0.7260725064658848, 0.8535183341653275, 0.06944728333257288, 0.5464380273401942, 0.4288072518935747, 0.7200279174725206, 0.045062538220249304, 0.5456181140746441, 0.5954019101760607, 0.38911518752605556, 0.34383824898975535, 0.8060488742377111, 0.2504627958522415, 0.900227856255162, 0.2254052878292303, 0.961237859744595, 0.9707729431200018, 0.14454018071358332, 0.5807603522778286, 0.7304328449487465, 0.7318693456075567, 0.9867658274188765, 0.6879061367643162, 0.2745011455770272, 0.0890282348322321, 0.5395920426814952, 0.32712729840195975, 0.4047536708833135, 0.6066679656421237, 0.2920112226441749, 0.6716662518088223, 0.9319548128482898, 0.8256633755514934, 0.36887036002874996, 0.2107642448982021, 0.9866642063984448, 0.3685910151927704, 0.6352586549402415, 0.6807992485599252, 0.9718827316774402, 0.6830710754846478, 0.8088984890723129, 0.8653421724402535, 0.9787589007526397, 0.26570160246027474, 0.6216377277013645, 0.5353312507288907, 0.2282541177865799, 0.5871061850618018, 0.034801432180372016, 0.3953079161982135, 0.8476453421312226, 0.2957256697524536, 0.45290815509655846, 0.09396195648714589, 0.4625830064626345, 0.9125645665229366, 0.9134653711295198, 0.5018430748479007, 0.41639541462107577, 0.9793508055037844, 0.890539614426353, 0.052158011768822066, 0.028844725145182548, 0.041780900377449526, 0.6156398304053029, 0.6833228425392721, 0.08873067216363739, 0.2580692029193239, 0.7553651779258089, 0.24076252112101182, 0.09811323377688796, 0.9993751733700346, 0.36062634872115906, 0.2330175997721956, 0.7244961687442497, 0.959660139765777, 0.39558971543425847, 0.8340538444427648, 0.06746037696656781, 0.7007543141184702, 0.47720844894659686, 0.9442965938106327, 0.028803342007346133, 0.24494015367815336, 0.7599885872010516, 0.1544511038526687, 0.47856004156388054, 0.7753749131525489, 0.48809943881728635, 0.6910855946078017, 0.38201551690341173, 0.8567495190028709, 0.563791088912383, 0.473433460658514, 0.7595802634445853, 0.030406728660013926, 0.043113441876633574, 0.9392374899014229, 0.7805335041618232, 0.988809470284843, 0.08117927882115339, 0.08689185250300868, 0.7294300135051947, 0.4575189846122274, 0.10118554007187208, 0.3774852398985934, 0.8734302092743302, 0.331118152359238, 0.5975834762981174, 0.2135075043751461, 0.24531133971635544, 0.9596419543656847, 0.43499285442805313, 0.943310399527123, 0.5841925821235542, 0.23286502442892565, 0.4275289747387818, 0.8408605020191526, 0.06882182507231993, 0.6063350082217256, 0.0715781729164977, 0.8032055449479214, 0.1386275864839639, 0.4073885916842498, 0.014716654513150296, 0.9630135551829402, 0.9371675652835597, 0.032218174464997085, 0.5243871693168086, 0.24869216601244015, 0.7799292578294214, 0.0637419984943901, 0.9764737702000637, 0.6530893222507698, 0.6034685854091388, 0.07568947818119087, 0.27953596567292516, 0.45718484406785576, 0.6242373071303263, 0.17797866361552905, 0.6765152178322029, 0.6164419228438326, 0.489645954798387, 0.1258956129245402, 0.15986564208811127, 0.44471435693287686, 0.8868711822834052, 0.4299315488862463, 0.157065436782441, 0.9262872767370688, 0.7771144319427805, 0.8452124989190681, 0.25837897968521195, 0.8446470659805614, 0.28538074899758226, 0.2775442388818746, 0.5154610692920639, 0.9919231030908309, 0.42016084515174945, 0.03378385021039465, 0.22418618991826322, 0.6766816018254748, 0.685863236299443, 0.8450838396353051, 0.23854214295680143, 0.8451923952632835, 0.2749717410437841, 0.41870758371325334, 0.766032064473798, 0.41103195903836987, 0.3833414402774764, 0.27713496035344776, 0.8386484652170039, 0.2545355846128534, 0.6910055756554728, 0.1336169829668553, 0.7240791427216448, 0.9587657413328815, 0.5675060845473826, 0.8216311991319751, 0.002856631904142648, 0.831762123697149, 0.46528827535670325, 0.11744630067300332, 0.6499023856495617, 0.5508868821538284, 0.6528679513816767, 0.42741657922242327, 0.1855629461438636, 0.9799949555862961, 0.6521839891906942, 0.5054782852367679, 0.24673996683067656, 0.7599724246243296, 0.19816701332432018, 0.7626973355316026, 0.45083484936515894, 0.9227371659416999, 0.07252954013420299, 0.008483271514985957, 0.9189754773879667, 0.48256723801354806, 0.44920034994614577, 0.5671399439807407, 0.6508257353711634, 0.7938753205531381, 0.6211648167653506, 0.3250540184251497, 0.8153938598706212, 0.3680111758502327, 0.6507902511819466, 0.7843383969005744, 0.205940847357717, 0.19308267117754818, 0.4239157580463975, 0.5385554759637041, 0.16953807092331696, 0.36780911122322224, 0.9917800942152192, 0.9996234815926643, 0.785253708281069, 0.15679404812522724, 0.7847299984942578, 0.867700170050897, 0.4233360981451352, 0.7536314028025485, 0.5998927740839531, 0.6683611131247841, 0.47760819697943635, 0.39358373564006766, 0.9558564778409091, 0.809057842684616, 0.12897610795026626, 0.9345346838806847, 0.6209203965355774, 0.7938451149576928, 0.22139837980687183, 0.5277925286852136, 0.617663479099592, 0.9923952403859219, 0.945273465831942, 0.9607614684063741, 0.8433427014222202, 0.03049302329755499, 0.06839412780763954, 0.8276890357077021, 0.12248299193591627, 0.4130576951584679, 0.4668531171117605, 0.11893456067595554, 0.010806943290949111, 0.6913052061273236, 0.9194968977275239, 0.9812829758245747, 0.5931867996286336, 0.5699993550788802, 0.19492254310951662, 0.7762110143461541, 0.037745361338164196, 0.16638926411751065, 0.14200109239430414, 0.9924291473585851, 0.583997804618713, 0.4517074387575004, 0.7186358865997473, 0.1739919717921894, 0.09510244118171518, 0.47578098432426585, 0.8670588849874078, 0.4996883622143198, 0.47922092408294426, 0.4216703699662576, 0.37930770962557114, 0.40362696901861217, 0.5392015289301926, 0.12954118116142088, 0.3624557327211836, 0.9528991700238484, 0.4415436368386525, 0.6684246942513057, 0.32312064299221455, 0.1676638965309465, 0.6956857811751321, 0.7563160270796178, 0.10360879386969357, 0.7154334967413348, 0.8913834656805366, 0.4292896794210548, 0.9156002352546805, 0.7558698138440688, 0.484416813719449, 0.39090208512843405, 0.6565684106502427, 0.5760007799782672, 0.15175347653450566, 0.44952246574931576, 0.010171042119673568, 0.22769796848292834, 0.7629249940549442, 0.7624467299395171, 0.9168374203202342, 0.030025592091957654, 0.15478140017472053, 0.41908291860659874, 0.42576108496709586, 0.9548068416624593, 0.11001770500048058, 0.2956270694614459, 0.897075355642939, 0.42847462704331674, 0.41179537158119905, 0.6140024925015374, 0.4364735242659765, 0.9362572384680522, 0.25296678672868, 0.5892273074364918, 0.23887319125004947, 0.09113171410464704, 0.8971932346262795, 0.22287355160421263, 0.4462769497756116, 0.08640307134108016, 0.5749434426076071, 0.7230971546115778, 0.584065191049965, 0.7905252005499879, 0.7735796135990489, 0.9127116012190108, 0.40621940145675695, 0.9751579074129983, 0.9651075831498488, 0.8242718536726854, 0.11282825522839357, 0.7493403544061014, 0.22847352381746866, 0.11162593096972884, 0.4169885346384884, 0.41797699405103217, 0.7044762343889699, 0.42527400610091626, 0.09977047771677261, 0.09802678348456573, 0.5491056412217384, 0.5813112064444063, 0.9787377719629864, 0.7816869232696223, 0.8476391331213644, 0.28961283926708636, 0.36853355641794916, 0.26311913788740215, 0.6379549733101186, 0.19413659159902863, 0.9721598986912666, 0.7566392840951681, 0.0861142954302957, 0.0805748260535245, 0.9710100635872837, 0.5886798131492696, 0.7620524680845606, 0.7666608439759836, 0.2488158428259145, 0.0510922469636691, 0.0047871619014527855, 0.701529367749289, 0.14625040334129635, 0.24223725700891552, 0.3508028742494995, 0.9816357818266654, 0.5145094250995697, 0.6450063508687266, 0.9898758374955043, 0.8616002663453906, 0.6767803142489348, 0.1324141092658918, 0.5824549382214532, 0.8313140418219842, 0.04416495657000319, 0.10797620954643472, 0.09367404555028813, 0.6108966304367051, 0.5145124414219839, 0.7676135535479811, 0.875274810961514, 0.1807536977683437, 0.17349940904842176, 0.2344874347801601, 0.3506505955468998, 0.47126535077088627, 0.029893691534414346, 0.8390557758532543, 0.3421608141082634, 0.6995894243360277, 0.5801568295634028, 0.7964787226210055, 0.6100183139125263, 0.4776505110759499, 0.6885588289766171, 0.21844549996899243, 0.0946024371886236, 0.9257486433245596, 0.1657861693075342, 0.034512938570161245, 0.09436842779745058, 0.10671427806390432, 0.9491346635023733, 0.0472862285738469, 0.08026496503179692, 0.6936219571749045, 0.262190395924091, 0.7312383681511413, 0.2536498187835693, 0.06938345914812472, 0.9016122972806191, 0.6905168319317387, 0.05610283584765785, 0.6912575425702746, 0.9145689429474237, 0.7960321127907445, 0.7429328280902949, 0.0649315910156969, 0.19085809729243441, 0.9193791131502627, 0.771557547368468, 0.7611431116691049, 0.7128457439527224, 0.9858118084760557, 0.03395083692625933, 0.5971820785605187, 0.3001220867058355, 0.9677787442783751, 0.6712760883853325, 0.8737998494703866, 0.5264168792295768, 0.04649493701791807, 0.029106166280163492, 0.925527695849072, 0.753996616664523, 0.1688412379501395, 0.10812735011391927, 0.20969136120571819, 0.5297123930661164, 0.08416969620051251, 0.3629982651046819, 0.5670514499641923, 0.1528778780173592, 0.2948679244184318, 0.5053823221136429, 0.21024959927693776, 0.3813101188754743, 0.5232273358031145, 0.17832207586249926, 0.20094594363573237, 0.20939095545731723, 0.7930482476371178, 0.16111224892945553, 0.8373787487599454, 0.33457176940879896, 0.10804641684999372, 0.06366204190386626, 0.7600188854711799, 0.8467753872422752, 0.32715126801813155, 0.17692576951752903, 0.07564472269804023, 0.5976648326762177, 0.4458293287525774, 0.09346316660803877, 0.710313268397686, 0.3477723026779408, 0.0838867069345206, 0.852398593389186, 0.18020055884630304, 0.46743504778855927, 0.8053623448674037, 0.8376288646008161, 0.8244817455843068, 0.16137890939122634, 0.6626602832995545, 0.7149818278133162, 0.33974758750852174, 0.8541907451710131, 0.3752923706393252, 0.1587930874386443, 0.23979524658069007, 0.783504049820666, 0.2734735877070045, 0.23368832998215838, 0.7237315770804013, 0.8382614726418527, 0.38977164892102545, 0.002171262166795751, 0.15183979520663637, 0.4870536419739476, 0.9747181010070249, 0.3131322759579541, 0.2310231442722006, 0.5598929399030631, 0.1713143658890688, 0.7424299470275755, 0.22484749353400257, 0.7903399427758538, 0.04356359094358553, 0.06657418645441537, 0.495636864982794, 0.21962796330329515, 0.7669524083250276, 0.21527295096356336, 0.8175470402051809, 0.8705948296278143, 0.5771203284101061, 0.7093221784605586, 0.7746029928418674, 0.9207219356398004, 0.6067341796078973, 0.9125782692068141, 0.3283769379514476, 0.005957180751282265, 0.04972147605193067, 0.7126033259068956, 0.4657139417130266, 0.7999992812085194, 0.8256555120984383, 0.028778537831112505, 0.2954502887899031, 0.7728039040954992, 0.16478211439838442, 0.10537543514936731, 0.28731610137215435, 0.931268956326261, 0.511628111235036], \"y\": [0.18439386755371057, 0.5750868907731637, 0.1132172353536568, 0.19850047615697952, 0.6950004168934912, 0.41826441672946313, 0.040828937665112974, 0.2145583871630251, 0.09143093017991866, 0.10013996234885614, 0.3658834999306372, 0.587897812361327, 0.23563705889496211, 0.5289998061994394, 0.5981734696485812, 0.5956194363709464, 0.11295199838815062, 0.6349332021584286, 0.09356782907078887, 0.0672754654033908, 0.3541579814831264, 0.11781588709523827, 0.3295981493457443, 0.23443288181779365, 0.13830133810679424, 0.5122546205578999, 0.03626449638205209, 0.32057959349203036, 0.3955164844050859, 0.21320459763992916, 0.08620177311633537, 0.4132497936565127, 0.19514157099220286, 0.028148892894647393, 0.03728071159582558, 0.20213762816504022, 0.39088790332760825, 0.10566618212719892, 0.11466232649727714, 0.09544364959788487, 0.07351553674018241, 0.3657542344632553, 0.05859665738698361, 0.43634835962676355, 0.4827032077898804, 0.516310366273556, 0.6480037931050455, 0.21122004543372697, 0.030344760075157406, 0.22750344576024595, 0.18673438423788624, 0.5460909738859347, 0.0666291073587214, 0.320234954276134, 0.515425573770442, 0.5751179393061847, 0.3262180383913996, 0.12192585741802231, 0.6165939755266235, 0.09365914315081003, 0.44259853952477324, 0.31958523161407537, 0.09228899111547839, 0.22815273642701062, 0.5282447951108347, 0.7777719169155834, 0.13834506443323813, 0.29425092810710396, 0.5300870647699181, 0.031947521718024174, 0.1108646816717751, 0.053339747820140615, 0.14466174791529418, 0.25697560969337485, 0.3383868137798065, 0.30803904997837983, 0.03434255320493995, 0.08689109251212201, 0.46044782253877736, 0.0973761441498977, 0.3449058470623745, 0.024212367984770777, 0.11665042079727428, 0.3333970234137619, 0.1495417879159372, 0.0679784404121434, 0.2360052425084116, 0.39147703437781534, 0.04428683932015287, 0.5381556738404795, 0.4357341587922019, 0.11843845992675284, 0.28107964630818494, 0.06989794698232743, 0.2658605825653322, 0.22408104406272966, 0.15519213452661884, 0.09873339188795927, 0.10739713799337769, 0.4712507279726723, 0.31257930793611366, 0.6259141532505736, 0.1651629894813923, 0.13024327386797574, 0.08242409751896962, 0.55355901104019, 0.11256152515999429, 0.22124325125588817, 0.05838775174278421, 0.6734770756819889, 0.06919042490492266, 0.5773286546676725, 0.5693181878572973, 0.12726917141891614, 0.27983888222674136, 0.15690954109554833, 0.18593824584442387, 0.05432525584274117, 0.33273366741371935, 0.12435295831370408, 0.48112847828662497, 0.2959384652215836, 0.5042039768350125, 0.3749869638443927, 0.7258627386781167, 0.4806866421912115, 0.6234335830956541, 0.4191951896523489, 0.20821728825178332, 0.6343085651912675, 0.27674577061671146, 0.02140654255666985, 0.42849246998341506, 0.1817444030106703, 0.4551538855951942, 0.05087080041524106, 0.516641204200833, 0.6810720245435042, 0.08151744899857294, 0.4475169494323581, 0.03995706953508171, 0.2181819033834006, 0.20372897255157485, 0.24305701296248816, 0.5381556738404795, 0.2358485729609252, 0.051323642447754336, 0.1913631294907303, 0.32154631204965056, 0.31229802093755377, 0.3917329141436472, 0.39462053822053156, 0.3680669306910641, 0.5017894292511481, 0.32120711190509066, 0.0768019282386515, 0.1168769044932052, 0.31545143431826594, 0.12007957373947853, 0.08354361700756141, 0.2180731800932174, 0.7653011157176768, 0.05076221583963347, 0.11739077279846111, 0.3639458403519926, 0.4815918747301601, 0.35998732468747585, 0.457353694020342, 0.5520498791697908, 0.22168281241722143, 0.2132287846887433, 0.4763394582576197, 0.3040153802820409, 0.20749766415549342, 0.3316810644107503, 0.8126297477835096, 0.5749367295182395, 0.27274039590582944, 0.2685808245693546, 0.5172108675362206, 0.33506587713796443, 0.09616672688355288, 0.041108213935392324, 0.10548050716105373, 0.5016695616404938, 0.20022874051447226, 0.14220640128276774, 0.23772630779738468, 0.19606080251004787, 0.2603188495268066, 0.18846597668723208, 0.19827111133563302, 0.261548791893628, 0.4140325207077993, 0.8134796325151183, 0.12265695643958285, 0.6311167068993262, 0.13481820177301163, 0.0932384579037443, 0.14050160114126486, 0.2562249115981724, 0.08547750670655718, 0.08643201081848362, 0.19981675431015722, 0.31390222338706264, 0.06221739913672386, 0.06996303880871468, 0.30029370289300306, 0.4306817897420764, 0.6595343859760441, 0.2839408857911616, 0.20468539219890003, 0.1130196126722065, 0.2360017176902124, 0.13187147729288817, 0.42313120297864704, 0.06964897436687001, 0.1624399718171824, 0.17200815643270417, 0.07333105637055992, 0.2440137653363641, 0.4900110333069776, 0.3085554157386313, 0.03480496731142946, 0.12148031785507996, 0.15002971926037112, 0.5314247042003052, 0.2758453007685677, 0.2151852748992088, 0.2658605825653322, 0.29911225563077193, 0.6594110243744711, 0.49869782335001445, 0.16788254706683048, 0.11816213334465087, 0.08230909248122409, 0.13653212507346946, 0.25639170942272826, 0.06562233405876228, 0.23311900627036541, 0.3756616197417655, 0.46674395287949066, 0.3092684534350997, 0.8337319641197457, 0.8331457111467163, 0.2591056156836542, 0.4778687671024334, 0.2542440524586721, 0.5361036306539362, 0.07073721340803463, 0.4731688813159418, 0.5755848065786346, 0.356689463387698, 0.14225616860197343, 0.21837916002376445, 0.14466174791529418, 0.29899643271856946, 0.4757427727983842, 0.08126799884203029, 0.1296501822378736, 0.3286954654423938, 0.08620177311633537, 0.13855855420831553, 0.05543377339452393, 0.11917834098009661, 0.2613621884509647, 0.11269900223777074, 0.08429051026621415, 0.3393961441870107, 0.07031960314855146, 0.11356777592095357, 0.4853279864284006, 0.1279289285514792, 0.0584572339054259, 0.08612988585012649, 0.3472440907423937, 0.1248029959061332, 0.07502335399434323, 0.19827111133563302, 0.3424151534036639, 0.3065175956815872, 0.13808860398564737, 0.058092197534895806, 0.04082786106581715, 0.1602592849246841, 0.09156161599234125, 0.5036030690663805, 0.2640411824475748, 0.6468038092930676, 0.07201805208597656, 0.22470230804277058, 0.1334773721572423, 0.04847889440667685, 0.2685808245693546, 0.10911308148570098, 0.6764508967260475, 0.6280060594576413, 0.36761958218269275, 0.16019930342079847, 0.17605308658107655, 0.14078981831089854, 0.2384997092801764, 0.13117402490907393, 0.12818959986091483, 0.4161925244315118, 0.12435295831370408, 0.09814942480303201, 0.05480698563416486, 0.3746187330143109, 0.41092354232892336, 0.507894749900129, 0.5137929421583434, 0.08293523366016065, 0.2964416548030494, 0.15236141109070434, 0.4396941021426354, 0.41893931094950754, 0.09113953260801844, 0.10967473999240707, 0.055732078845942, 0.05640314085190745, 0.06176263301115803, 0.06427139521062619, 0.20386133178572885, 0.21597661143113533, 0.7486409492386699, 0.2610715902497083, 0.09465277491899493, 0.5556171757583562, 0.137718889647652, 0.1978940751503777, 0.08472590699531857, 0.356262641598029, 0.14596950445002987, 0.13865818299932142, 0.3088915816821678, 0.11516321289421916, 0.16121169033174265, 0.40573483691789825, 0.34308606282264, 0.36300204724896845, 0.17193414756867276, 0.035926383178341514, 0.34536882843285344, 0.4400180463892147, 0.5165194668234709, 0.23319834124303085, 0.9637923675569924, 0.2635599134550337, 0.6259141532505736, 0.12324962258280003, 0.1256037712827487, 0.1248029959061332, 0.11665042079727428, 0.29081136443782263, 0.12993062945549005, 0.20959981847797426, 0.12385816607190492, 0.16931651488884025, 0.2468284110987674, 0.6181879252747016, 0.3509541008179864, 0.08619429866610873, 0.09537770951135394, 0.8204393830764495, 0.2493836920976743, 0.10367142046182065, 0.11516383353466464, 0.07169627826225977, 0.5400384130096556, 0.2709141565803237, 0.16809050322974173, 0.3421981324687273, 0.812724325423183, 0.1326589750154965, 0.054670132935181304, 0.055346153509382656, 0.8039442695404772, 0.3276168958360183, 0.6561718697940482, 0.6214102617950452, 0.3046829516703813, 0.7853649284745584, 0.7303620793003476, 0.6719087507962026, 0.16000678121984613, 0.579612101366232, 0.6347749924714103, 0.41894393066564606, 0.06936532322770372, 0.28322834609079706, 0.343263893078516, 0.4450860003239352, 0.3090838478611311, 0.408095736797927, 0.11529682880263803, 0.13359771811640497, 0.2417229185475579, 0.10092265889692065, 0.8181934133883563, 0.3777834313813965, 0.8273808576462511, 0.18439353202429143, 0.5148786056082297, 0.11287077888712382, 0.16015059460472458, 0.29672938182784603, 0.36944561074938853, 0.2505850522824452, 0.8467591712977676, 0.3840267097226593, 0.261779448872241, 0.1645479955558209, 0.14631295673285594, 0.4248523287309329, 0.09222807982804315, 0.2121484308544801, 0.33273366741371935, 0.5470626312455473, 0.8294144697045585, 0.25206662215500397, 0.15998368749433245, 0.548322128117227, 0.3917329141436472, 0.15981565308588508, 0.23631147082452741, 0.21082920466209698, 0.1871387197916503, 0.24774693401855818, 0.1913242313933492, 0.16437448769677154, 0.07582203648947516, 0.032541140295091364, 0.06311143057978008, 0.5009235508757715, 0.12343879567504301, 0.445735807756371, 0.40322837553658053, 0.09397553936597514, 0.1598391281143201, 0.26702494168661406, 0.19782301216908982, 0.06831823449824892, 0.5451167746582685, 0.20142160156100697, 0.25747632252511843, 0.4257317671215596, 0.5062318064185062, 0.10278357133077332, 0.10857266292312517, 0.06223864817381186, 0.11377411494697365, 0.14082424186384768, 0.2589321903149734, 0.31776639873426016, 0.07983414941561229, 0.30174211068680845, 0.42532907678292176, 0.23734670470511587, 0.2862296469110084, 0.24790288035387664, 0.5526146374040077, 0.20425399436950087, 0.5166825128498294, 0.12415322942140417, 0.5310696157212036, 0.3866387435262121, 0.14313186082947948, 0.31648660326859934, 0.026792916001305622, 0.7856428374245099, 0.42383310375799566, 0.5944566396871084, 0.6256605001243821, 0.08813642250468567, 0.03544811528140901, 0.06935406654889886, 0.15751976448865512, 0.22608551288474832, 0.3127311228465576, 0.1409438166611655, 0.3285615524533705, 0.3591330499592894, 0.47964497307801546, 0.7143146030302826, 0.14223944449319303, 0.06929054967731618, 0.32120711190509066, 0.16913647442041335, 0.707286257884667, 0.3230684446475647, 0.7616845263358343, 0.4104900542879092, 0.10053249234255524, 0.1106599594415556, 0.1543174595222413, 0.46003879185641183, 0.3811350878514418, 0.07185070571861518, 0.23882593985771994, 0.5344976262521839, 0.11031385635331636, 0.09610989844306939, 0.4955559099445003, 0.07845190603324759, 0.30697262074812925, 0.12767551958037127, 0.4375661224395835, 0.07737023387634634, 0.15307682457740834, 0.05694427046787409, 0.09028836937410878, 0.4011292297732457, 0.6186146927451245, 0.11561676905211238, 0.0993047499370594, 0.08102401279833105, 0.8100206966555492, 0.10768932514586738, 0.15386113005635593, 0.4026560765644126, 0.045535707525545144, 0.08229583319403, 0.08227601457953415, 0.8241544781987433, 0.0759900855540333, 0.5147505197509459, 0.11103147778198663, 0.42144961755966015, 0.24880465403270857, 0.3112403223054312, 0.3282460941643247, 0.28312386083977936, 0.2865521931047814, 0.16537364909659502, 0.4284132019637321, 0.34116073112729894, 0.051142721309942685, 0.10794707492381372, 0.1108646816717751, 0.29201805921023904, 0.07365131996157204, 0.36851051207096197, 0.2556143611338999, 0.07392456180697715, 0.045535707525545144, 0.15025986810093994, 0.4395989822566938, 0.19636656988846957, 0.21018464628148859, 0.15085686628779282, 0.3429118439192298, 0.16104008564300487, 0.2055862423584408, 0.18673310211333727, 0.5528531989583015, 0.20219789553586287, 0.5807830339134155, 0.6112381610839525, 0.07515362639458067, 0.5722084734915175, 0.3654892991508686, 0.1991057466826236, 0.4912569401667811, 0.05850610073101081, 0.3077884117234785, 0.17038242498240874, 0.14066607718466684, 0.10248584652416493, 0.4022873718442217, 0.07205214632436985, 0.35142291824287475, 0.10941760034103376, 0.06679271580157364, 0.05675388891699207, 0.058987921856350156, 0.3660303223369904, 0.28790374422385034, 0.4158290962648631, 0.40710291595796666, 0.09934102670994882, 0.06362846635195196, 0.30921476208988685, 0.23242198019285765, 0.055541210656895434, 0.5297663836663529, 0.10744632778983743, 0.18410212910939194, 0.17721960751489196, 0.1962664672709783, 0.1617648996714035, 0.10584426414108294, 0.5203501665477333, 0.07365131996157204, 0.31578819840495265, 0.35364190165315845, 0.1707951928721818, 0.41655733121321636, 0.15801546378512366, 0.7568436608419439, 0.22368578646300386, 0.0609449253562836, 0.2225096762928218, 0.18587673368692093, 0.05559101133196209, 0.569598540521716, 0.08073228430722412, 0.15724041301590164, 0.12879141548479, 0.4306817897420764, 0.17998791969802397, 0.41280880088413996, 0.5723062335690389, 0.6457404130724687, 0.10420061808672998, 0.12564769853034463, 0.21795029564941848, 0.4720930498870375, 0.11304202998506685, 0.545112257205237, 0.14852188644910969, 0.17217029085021085, 0.336250902618187, 0.48671482860553816, 0.5093433434984792, 0.35847801144896685, 0.3008706318705062, 0.18494609259573758, 0.4199330463236065, 0.04162287990776414, 0.2633909944023186, 0.4252182303976608, 0.4684623303117058, 0.1925553058603695, 0.09610989844306939, 0.09129843496680234, 0.3302708189676917, 0.4199330463236065, 0.11927294568859859, 0.4864154015695107, 0.06472081497616611, 0.6387929002666255, 0.37932906694235924, 0.093713747684541, 0.20627971812824875]}], \"layout\": {\"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"range\": [-2, 3], \"showticklabels\": false}, \"yaxis\": {\"title\": {\"text\": \"Probability\"}}}}}]}, \"insights\": [], \"additionalGraphs\": [], \"alerts\": [], \"tabs\": []}, {\"type\": \"tabbed_graph\", \"title\": \"Current: Class Separation Quality\", \"size\": 1, \"details\": \"\", \"alertsPosition\": \"row\", \"alertStats\": {}, \"params\": {\"graphs\": [{\"id\": \"tab_good\", \"title\": \"good\", \"graph\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good\", \"type\": \"scatter\", \"x\": [0.9615247577254722, 0.6997865765051272, 0.2518946157322368, 0.20141014937302804, 0.364258802294285, 0.7325765709702108, 0.5023496505815825, 0.15562826819117814, 0.5029915669341691, 0.9859381992346332, 0.5957158482336842, 0.0028945230732493332, 0.2807811574938057, 0.8117458116811621, 0.4583664190263288, 0.2968135616697236, 0.444663828435107, 0.36788865048121, 0.8281359827898491, 0.48403876311366656, 0.03393448703671087, 0.7310489151497199, 0.84012294027716, 0.06803820693208062, 0.02077908704196396, 0.5360710086086863, 0.8784771790174735, 0.9011999465450881, 0.22221909654759653, 0.4004269092198911, 0.2575648735218541, 0.9207026761541195, 0.044227048985774786, 0.2356122950060746, 0.6868209710112956, 0.9254025389457101, 0.11316154338916184, 0.5342972798011961, 0.4628060843229673, 0.6338552622041217, 0.23873335805400064, 0.31781978275390144, 0.48464501149511896, 0.27767607924635807, 0.19450241417382008, 0.682255551006776, 0.16040679659178447, 0.9497750304830153, 0.932530094394184, 0.8527975022553191, 0.16777314486636652, 0.19604616685313547, 0.7077535760525835, 0.45205733079361, 0.8471973608211323, 0.6516307795448433, 0.35395154646063876, 0.6641201755959938, 0.00946785706887654, 0.5764827543078666, 0.8236923004631372, 0.4135101077782689, 0.3240278488343452, 0.47104958513705264, 0.5423812237410619, 0.5424743363643136, 0.6181653154095471, 0.33525271332699225, 0.07530541627019494, 0.1494499858121916, 0.4006526428548164, 0.275013936278356, 0.4641480657637205, 0.9334026262213255, 0.19697278879450342, 0.8928579818622597, 0.09986851523508689, 0.9965085312070774, 0.7417128311572085, 0.1461114363724878, 0.6852746530945512, 0.014899785326128012, 0.7323047935319275, 0.6576503670360059, 0.43850989377202454, 0.2649811698983815, 0.6459763393475715, 0.8114224184847757, 0.9194873862986991, 0.7061332945205108, 0.15521913292916922, 0.8713850299260905, 0.8283362695791566, 0.5598934918275639, 0.058423344277443, 0.8596496325339285, 0.8880507443349321, 0.5266972693929384, 0.9368015146980984, 0.6409418854219554, 0.08406805528202643, 0.3266696206889842, 0.2358172828413433, 0.6717586068329737, 0.8598929378484964, 0.23561411921294406, 0.04753126541872299, 0.26007978979399315, 0.021837681068495818, 0.588896358775337, 0.5940095748252943, 0.12694153182739298, 0.9281528240016168, 0.08947284612281692, 0.8424490467797534, 0.22739854178859142, 0.9875426602936784, 0.6651316078202592, 0.7440998770036406, 0.5232911530587683, 0.8722745723915942, 0.00769343503262887, 0.2746589613165733, 0.7407282739787934, 0.4068357213124313, 0.19789694255840284, 0.7907319787083017, 0.3561300875496958, 0.10786925554001614, 0.8171883853591166, 0.24943066726395435, 0.5336821957250945, 0.8873944878834834, 0.3140241195123554, 0.8131525047300919, 0.7599740656695398, 0.9808800624962687, 0.03467371697419641, 0.6959014774966339, 0.3286794730313467, 0.2475319520181869, 0.510312101857998, 0.3144506299284603, 0.6470515627093346, 0.886566059239055, 0.8874378146413572, 0.32611751093976793, 0.12908842307115043, 0.9000242633778186, 0.27652109926136037, 0.8217204945751425, 0.7528019615724968, 0.5966693942490886, 0.8117384515526418, 0.3865342030717862, 0.7493795431986165, 0.4452162993333947, 0.9270003271960349, 0.07985128141462428, 0.750922454475697, 0.3117027422737272, 0.8782532256530192, 0.5199183341392883, 0.1864334011052301, 0.8500864232478464, 0.8289182870222823, 0.8326032902081303, 0.9051271508621913, 0.5136933785213358, 0.7853032352612217, 0.3038311918061092, 0.43341751388806193, 0.819047148791886, 0.06883916597935558, 0.0026461332959750727, 0.9091293076547453, 0.7895057934727807, 0.3197536481145631, 0.48730329110113757, 0.21005045832354952, 0.7082938986097503, 0.00474222241397082, 0.2771897575161396, 0.399391479845824, 0.8747116626431923, 0.856589789001851, 0.5198341774232775, 0.02539684635402717, 0.8275781879728468, 0.4535616624983069, 0.4789945886404985, 0.21750979120794234, 0.10867131207491809, 0.530386818598747, 0.6935503617516541, 0.9654977070557665, 0.8355915852502656, 0.6979436781553734, 0.363652353264313, 0.991461903044596, 0.04660204961573311, 0.08068641514954811, 0.38880171165218746, 0.760401029022302, 0.9249781190112545, 0.3431032671579227, 0.45668685955775, 0.432733654255978, 0.3940293956170924, 0.7227335198782444, 0.20766015401960447, 0.571318400580019, 0.030105155319333887, 0.19973756275224386, 0.628998550980941, 0.7097199496040356, 0.4338978416146281, 0.5095954734934128, 0.6334820127903026, 0.5403205691304087, 0.37638815706447815, 0.5468808759000313, 0.7865004829305937, 0.9778300286611586, 0.966558654436985, 0.2668384938935958, 0.15760580986722483, 0.9368716571840254, 0.5158412688287868, 0.40310050559133903, 0.7186430642452136, 0.6245376540242805, 0.5899186779289111, 0.9930554146479881, 0.525163935109968, 0.34530109938348097, 0.3573521532494859, 0.2560436235542338, 0.14166798429404615, 0.5372090591032297, 0.6496184914635361, 0.5689758616674606, 0.7811213222002874, 0.9821504480156666, 0.8914668415948666, 0.6668725920669334, 0.7433454092546525, 0.16460123993780296, 0.3349226231413467, 0.5080919115697813, 0.44622513720192303, 0.4050094635296443, 0.32530633561879985, 0.36383508291064615, 0.9339220493428332, 0.4174422039674348, 0.7318092649250706, 0.07710809055378998, 0.9130675110600248, 0.7524790304440193, 0.7069077637286757, 0.3366609814738579, 0.6576839545162803, 0.009254519195181388, 0.8057202418705841, 0.5938517352448942, 0.9110351567777554, 0.6297132029853937, 0.5462909698943262, 0.11133059701291981, 0.08908813304177365, 0.9909753785285182, 0.2797192561431634, 0.27253964977586476, 0.10085074290834861, 0.8315282161826753, 0.16678169999141346, 0.4924156186943105, 0.5547808602605455, 0.697155418988403, 0.04473137427663876, 0.9054028735356302, 0.9251007173290383, 0.5105134602312157, 0.23978409657458521, 0.9268767110915317, 0.20312272511381724, 0.800589040175047, 0.8771467513054635, 0.015363162911206318, 0.8401258677037826, 0.3364304593687747, 0.08363415045926581, 0.5570514513041519, 0.5589647079035953, 0.8452669879114327, 0.9547215976770831, 0.2839399476074389, 0.025052539830310194, 0.028148859920776537, 0.6810164104587281, 0.21844850080355327, 0.9356686922611235, 0.19954999627040082, 0.1552735162973069, 0.3465371553736849, 0.8426982549483015, 0.5055705227701228, 0.948229229647403, 0.9136307050887476, 0.0036364062600531266, 0.8152893006001712, 0.9660633890399573, 0.27731485643234277, 0.46617370196375596, 0.9126485966220479, 0.8533337569711033, 0.6505454903463664, 0.5854527904969985, 0.8849633181968508, 0.036180749103996934, 0.5237239142786736, 0.8038485903010661, 0.9325115059824393, 0.20747893149686836, 0.1735439351894722, 0.5579450642556387, 0.2755395527967901, 0.5084442058491702, 0.6966324640351406, 0.49311387199825885, 0.9016216322804594, 0.4781655655117406, 0.6181018533595417, 0.8999845779238337, 0.10014329672751143, 0.9507475329518973, 0.2741303561256475, 0.3869922555586921, 0.3586700218734148, 0.6483705762691001, 0.2934601371873281, 0.8455334992732264, 0.21427017815788463, 0.5599306003133191, 0.3958282043510475, 0.6924703739442527, 0.5544071905661744, 0.6157724247558994, 0.5397983337344929, 0.9301980910227188, 0.6818027812985002, 0.046395708344523334, 0.2934468254238648, 0.08852637613350467, 0.3547845633649278, 0.268789541512248, 0.18034804460141296, 0.018430959640813205, 0.6259803401195957, 0.012123168722211752, 0.09650056061105405, 0.05875666113814504, 0.6816620749815276, 0.26277207328677255, 0.8871239860610298, 0.6966922542254292, 0.6491470140163448, 0.3745704796591314, 0.6311418662549189, 0.980606058014941, 0.29919854828050874, 0.9698279663178376, 0.43836943920010085, 0.9427882894227667, 0.5896055538584831, 0.8674895719735852, 0.7587782035728342, 0.11991852032769934, 0.9593300222377992, 0.06087951106966705, 0.9775072764922288, 0.24447749596218715, 0.8278760921035394, 0.33221110459817227, 0.9295827322764988, 0.7087686459281953, 0.6989667710467323, 0.6195576466875733, 0.2132733179526981, 0.5295715205074838, 0.38495572215154694, 0.08863786213746461, 0.20590823098846744, 0.7198755662934231, 0.09871148063155355, 0.6294810080228114, 0.579157026638708, 0.3886476737655443, 0.4596701912322343, 0.18125038762656498, 0.4859781157886074, 0.06529529039586779, 0.3727986582849876, 0.14039227910480456, 0.3142210226540665, 0.30863506245291283, 0.5261952638420102, 0.4175756352266978, 0.13390819921149144, 0.41426910223031865, 0.16649135555128802, 0.5865897083675211, 0.14111611107655808, 0.35691948927702744, 0.020904815051163816, 0.49107637787718006, 0.11466530734661218, 0.19941342033700094, 0.4080378533609037, 0.6802768955920813, 0.052479070155217356, 0.14589726407637893, 0.1960669009550262, 0.09856182434622252, 0.4512834133323963, 0.9652231173378425, 0.6052584063705255, 0.2721243045891981, 0.13225851354181717, 0.2659793002102795, 0.79869003117435, 0.43537367513342007, 0.13189788074472242, 0.862832265589239, 0.8890411369348097, 0.1254082363940363, 0.8378544366589182, 0.6983299861904628, 0.08968082107461506, 0.5250265113291338, 0.6873212216166322, 0.7512289524036821, 0.8787617231376971, 0.6901843624960201, 0.5607586254060416, 0.767333244662122, 0.42884247376081364, 0.6603250586148272, 0.09977183025320047, 0.37948329704668515, 0.5677109053292515, 0.8145459748939441, 0.09434217373592624, 0.35048155443171236, 0.11360469873043777, 0.5894200788256395, 0.13498521561814691, 0.999286112650573, 0.2555816873569524, 0.5273039270096982, 0.07908925533064093, 0.318548867792235, 0.643024411603001, 0.011298595014125445, 0.3299906689625237, 0.09086618130125323, 0.003493219700040573, 0.7071043277072263, 0.8295029534826082, 0.35702551266542637, 0.3767222007843082, 0.3039845433779257, 0.5008540578297035, 0.8797255016840279, 0.9058017134799795, 0.30690802389123706, 0.3114782667639049, 0.9873213807683962, 0.18050796825500726, 0.9169357663940444, 0.33107232919460217, 0.9892132378839226, 0.8001587879838843, 0.23861032264308835, 0.6584869571881796, 0.12203691442783349, 0.21129333731760913, 0.6799247526822777, 0.5351748649881801, 0.48333542089138926, 0.010627008516309155, 0.2899390420181428, 0.9342261748012411, 0.5310489040267204, 0.8238121130248288, 0.21874793317129315, 0.9481410508274662, 0.5369137410109139, 0.5629272560678312, 0.3058161052155377, 0.643226937407271, 0.1884903259896199, 0.7484910290577333, 0.967530490105946, 0.18140331310197855, 0.8385807116236752, 0.875699808051767, 0.7334730364602289, 0.8437410589527629, 0.4718018272417256, 0.19346245958896435, 0.943287757097537, 0.15193635821108176, 0.8254415432007688, 0.01483890242359387, 0.6209623455050037, 0.845045959279708, 0.07019516613175047, 0.6567034813706004, 0.09092658639213869, 0.4251601902041522, 0.5428643691543744, 0.9981085312315991, 0.7419771948043472, 0.13040276743440515, 0.3216555644042144, 0.0719045769481862, 0.7324542231929196, 0.6861169879414415, 0.8180241981462699, 0.2520039648887956, 0.12634108614389128, 0.6986962458843553, 0.3056130133488194, 0.9082676735000069, 0.015892574451346175, 0.10564424568573949, 0.9068162276368757, 0.4319141126851874, 0.9763610988935039, 0.2885095353768439, 0.5981957364768262, 0.6527517959943316, 0.05971653986164194, 0.11922377670482853, 0.5172074508022385, 0.8976581475693489, 0.8969700610708128, 0.33037149060529014, 0.268570142987987, 0.368260108697392, 0.5966936864313913, 0.9745354101979965, 0.8414452046537634, 0.17785347315405442, 0.6734926669141535, 0.555449370915695, 0.29093499694232205, 0.598868794534095, 0.8241638341654393, 0.9606709025877854, 0.13896693245020564, 0.16500683296961272, 0.13312932834112068, 0.5427993063699409, 0.3075693906257111, 0.9432626093798575, 0.8129665849752258, 0.5673175392347931, 0.36944500027457994, 0.8270812052011751, 0.7039484772344604, 0.9100875327676355, 0.7808494553623675, 0.4358834905160338, 0.16511269145252372, 0.5317817443703736, 0.5907843156832336, 0.854847204580807, 0.9810810671114014, 0.6858720230873547, 0.7203692640407693, 0.04971296324940755, 0.12904673354070317, 0.4444051950794552, 0.5657864651321765, 0.6942176726726617, 0.5597870133183248, 0.08984300306119941, 0.1623727888829657, 0.347849407787572, 0.2668075834625411, 0.9545217671952384, 0.7299014769472917, 0.7408325843256042, 0.04912144682740738, 0.627552395672951, 0.9241763894144912, 0.38868433592616913, 0.7147747336530859, 0.633660555129806, 0.9618638248568567, 0.24957498757569052, 0.8792091444072124, 0.033823429598029864, 0.1257854894687187, 0.5008482950545526, 0.37335892680379623, 0.639651624693762, 0.47829631108096626, 0.4331790460342284, 0.12886590802246267, 0.7853537058609816, 0.822890648434725, 0.9390271689194302, 0.5116974036744214, 0.28026691265802783, 0.3068678231787223, 0.053273212765189704, 0.4051298892173444, 0.7641775113249022, 0.770314667058996, 0.40633832473152365, 0.1336420147002768, 0.38748474207496564, 0.07067644271909213, 0.7165569526617034, 0.3937076936265479, 0.122734484004972, 0.02072369305740618, 0.3762390427076594, 0.7981936884536984, 0.88804570464669, 0.6443996205813997, 0.22770687708793058, 0.19828348028832277, 0.6403515046049428, 0.06181360267798486, 0.6225802644982557, 0.8080090781306234, 0.8330476377421181, 0.29870809892493844, 0.3809757086715415, 0.9914062015120535, 0.528055558656701, 0.05347188667066116, 0.8048801193801388], \"y\": [0.33396714643252134, 0.5044440900554997, 0.8874896900044845, 0.4686759077780351, 0.23831547366416572, 0.571181601185031, 0.7785327680196316, 0.7290551099174598, 0.9581131370131553, 0.6801000322064107, 0.413367674560271, 0.6667140739211237, 0.9108229754863395, 0.9275086157065797, 0.9186958597750785, 0.7191871442695774, 0.8184457509658746, 0.8597940676688322, 0.7947045908306632, 0.8244149680645384, 0.42771531534877594, 0.5315376696882942, 0.7136291946100958, 0.5510697799054304, 0.6393262665313312, 0.9016582766249417, 0.8560880110261746, 0.8947361144883382, 0.9102326114023062, 0.840723585394272, 0.9264645566705582, 0.5105903360131552, 0.752648770317166, 0.5855954083225455, 0.8989214048388485, 0.5190750352404293, 0.9560713253502463, 0.7273157243430202, 0.9279672131348602, 0.640103147954212, 0.9158977434209615, 0.9035955072010529, 0.7140955379655831, 0.233508355491505, 0.7280578325574358, 0.8810827811902006, 0.3966129217085586, 0.15541760955422754, 0.5851621750323275, 0.9046111951917862, 0.4177213302712193, 0.7993763114768937, 0.6978409661933959, 0.6473373667551029, 0.770784382977056, 0.6500641275496193, 0.548949563093737, 0.9803199442553986, 0.6150775052067382, 0.391333092160729, 0.6966682278280982, 0.9426748402861506, 0.9170092977635526, 0.844625652038695, 0.5621782696252592, 0.8935808323282117, 0.6792214086077275, 0.6719996755401956, 0.5252591274442797, 0.7277045758687855, 0.4685752957996948, 0.8616549355667619, 0.347491516391863, 0.8224130863808733, 0.5340790568488665, 0.6711667658766297, 0.5277539611022016, 0.7226430813715845, 0.8140972745487615, 0.3280236940194876, 0.9543080196225542, 0.7752655593026647, 0.9223925066666061, 0.8588031784191832, 0.6345107008491314, 0.9393010047953068, 0.7897067132703484, 0.8608062836413887, 0.8367885032124018, 0.38555642305179116, 0.8611944449682004, 0.9172341012895443, 0.9206892306522243, 0.9500505925695213, 0.537798347971205, 0.9173482789702866, 0.44454351342386716, 0.8909704850569525, 0.7351932580165473, 0.6818328744935735, 0.7981559962965634, 0.7626532952948841, 0.807353254900461, 0.964411205143099, 0.4685752957996948, 0.6986526320119215, 0.1956969407137045, 0.9233481403380283, 0.8218375601976645, 0.8536269727611236, 0.5637680470866036, 0.42267134533232753, 0.93003590801509, 0.9364808605729722, 0.8816060831574614, 0.9663102962713933, 0.8345570787709832, 0.4997893986747249, 0.7921603237806832, 0.5586815647381762, 0.8622246464681924, 0.9828719612298703, 0.909295720392338, 0.9476267884443668, 0.5395521774612226, 0.901360886913609, 0.39410444510430487, 0.9262213132200262, 0.6627387433216217, 0.9629433821448677, 0.9614311452267452, 0.9802968012486629, 0.933760787013923, 0.34432718187202205, 0.63596173557573, 0.624364378916488, 0.7417789548241253, 0.7300918276682445, 0.6968315453320488, 0.7840233885688647, 0.8958841271622066, 0.5417426694559925, 0.7102579146160282, 0.6004345411549624, 0.515920701757342, 0.7587882454650442, 0.5029588531082266, 0.6887596776945688, 0.8642849605932809, 0.6469572639767995, 0.8103639651534781, 0.939764354405301, 0.694136577696587, 0.6593725303534554, 0.9646797005081557, 0.7979900311745153, 0.792123904710467, 0.8869579700149332, 0.7351250317969437, 0.5332560471205093, 0.9406873315653421, 0.39362685027924615, 0.9466602521798594, 0.8394325033041952, 0.6633442657978572, 0.8126408700417265, 0.7332457619716184, 0.08024070404520958, 0.8667774471450977, 0.6466814331404849, 0.912366876100516, 0.656670904734599, 0.8701678467707724, 0.8875925797813499, 0.9658725076002231, 0.7668332861852056, 0.8604440887473094, 0.934384507524058, 0.9605946056867319, 0.951253157591183, 0.5749289095213865, 0.6279243005170476, 0.7937202818717513, 0.7665301650725991, 0.700127941221274, 0.8531107444728586, 0.7947045908306632, 0.8870566665876504, 0.5476228787844645, 0.8410401833568673, 0.8736671065238262, 0.6519898659949606, 0.936943112068646, 0.9077719201719568, 0.8071889556778997, 0.8815615400732472, 0.8935313268029127, 0.8782891297971865, 0.5029588531082266, 0.5797201450332624, 0.9416775458320723, 0.5958140198486584, 0.2485157288688957, 0.932021424688801, 0.8531502837407814, 0.6344194678828672, 0.632587077283238, 0.9121448358615357, 0.5776545535910985, 0.9052765174806566, 0.8580390107418799, 0.8998644401112552, 0.6784536879503494, 0.9458342431661766, 0.21387363850783603, 0.9530348339880965, 0.7307391114165022, 0.7187682731289255, 0.6905635603269331, 0.9569274903702625, 0.9287384091375525, 0.3856984054091925, 0.504413920551941, 0.5389739198483336, 0.5921068831639978, 0.10702848140489757, 0.8772993497727819, 0.6361944011057532, 0.8952999713010865, 0.7069578609115064, 0.10632960186243966, 0.6465592619811017, 0.9116333268133815, 0.9210441535829985, 0.9483358221641291, 0.5800224234700003, 0.896951343689222, 0.8958659323404018, 0.8896861436466836, 0.7763142135369961, 0.778627444633172, 0.9274605647284293, 0.9167924025380936, 0.6422094408272838, 0.6363725079258666, 0.8694129796739031, 0.5693182102579236, 0.5315376696882942, 0.6814536952243052, 0.30089534057709466, 0.6689448970920832, 0.6419522618821227, 0.6500641275496193, 0.8221968069187356, 0.9285763346020383, 0.8495153837633861, 0.7135666997345446, 0.8850789772017983, 0.9128367188568884, 0.8709442503982084, 0.44714680104169846, 0.7147831401969469, 0.6814536952243052, 0.5823319261018008, 0.7718122970862826, 0.8925058444773368, 0.9249991097277733, 0.7849066379312727, 0.5120166815330335, 0.7863291630268572, 0.8171821177205619, 0.8878235148823457, 0.9813953955585096, 0.5009899161211654, 0.6787020040856314, 0.2747106808400709, 0.6998114428322438, 0.7191783799678735, 0.7566715075843347, 0.7741630673610131, 0.692871858980435, 0.8706970297938403, 0.9226518689226377, 0.619213859232465, 0.9620625840847012, 0.8161066853745392, 0.7984578805051198, 0.8987836568806694, 0.27900511725120763, 0.747868261422589, 0.8013372150606806, 0.4430395412241901, 0.8082746512504794, 0.9248395818955686, 0.8132668978866627, 0.7926355964369082, 0.7243101498981422, 0.8251498778038484, 0.865753667016409, 0.8784859927081519, 0.9613966942665844, 0.8380103992838959, 0.9376908870460701, 0.8505645904112248, 0.5317253080143199, 0.8756470416862959, 0.8823120896825394, 0.8920529250761863, 0.9565288857220365, 0.92576324319171, 0.8397457208604353, 0.8008835764985612, 0.7620555647282774, 0.6333567796033132, 0.8986985644274655, 0.8289197139212982, 0.38568054861828666, 0.4358764146033148, 0.7013568331933456, 0.5524769805317635, 0.8654015550049637, 0.9625385348003681, 0.4997035751430624, 0.5940434106189647, 0.29640429037896177, 0.9370396801623051, 0.7496358493500708, 0.8521916566704996, 0.7519935213994349, 0.8956127660014477, 0.7563308848917781, 0.5425355780301907, 0.1652985164032473, 0.5777375433929663, 0.5926841497777402, 0.5247451599628447, 0.6215406511606532, 0.646742228322253, 0.5236567091352762, 0.8105889943537302, 0.7614647275399787, 0.7272264480694343, 0.44438282424164377, 0.8051848688934031, 0.253979247575754, 0.8737269176380216, 0.7884186533408385, 0.5226162157005312, 0.7776146375974927, 0.8021344726910251, 0.6794204065079696, 0.8398669626756513, 0.3743394998756179, 0.6593725303534554, 0.41008410759983227, 0.8726624594592295, 0.31336232876890546, 0.6187135046228962, 0.9208146539756937, 0.8948907807194619, 0.9475948217130945, 0.7098971478357265, 0.41970311630379203, 0.5524505095188592, 0.6689295490636696, 0.39534528644804523, 0.6686700461744643, 0.6608417181144597, 0.6289006219381473, 0.8112353209803558, 0.9675531845963172, 0.3468688843876404, 0.8171815196180959, 0.9315945487332388, 0.7612383340144859, 0.43979370974717685, 0.9452166580978265, 0.810349906376065, 0.4979189466877109, 0.9054024939516333, 0.7506263221664519, 0.8595966107872783, 0.9041757536760852, 0.5120166815330335, 0.9246344940597735, 0.622364539475366, 0.7975959936185795, 0.9376528402833735, 0.8270495791839716, 0.7463426393970082, 0.8508295060861325, 0.5277539611022016, 0.7926521549058593, 0.8343380415579561, 0.7973631232158779, 0.5423298306356671, 0.6253812669856891, 0.9342151247863544, 0.9064095870896521, 0.8428584418618921, 0.5680191878381406, 0.8230633503438987, 0.857993972512287, 0.8312116035859974, 0.8886868130574391, 0.5695902702544526, 0.8750573328895943, 0.47134086624147714, 0.6082670858563528, 0.8571520978358925, 0.7006810412396262, 0.6001343818465046, 0.8680196363335714, 0.7833148206731655, 0.835330250744176, 0.6883000602161935, 0.4297997702781997, 0.7132181587745201, 0.941909753873568, 0.9298379484442667, 0.8950633078112005, 0.9652574497835966, 0.8593048115498744, 0.23022113319019433, 0.5548683876071567, 0.8789570823277312, 0.7176343272433334, 0.7135972690872326, 0.900955402304434, 0.89110615578316, 0.8021344726910251, 0.36734125225010755, 0.9233813125795639, 0.9269988231022361, 0.6021478506882372, 0.27064660283581765, 0.7595966254948197, 0.5317253080143199, 0.9626288904553877, 0.518871521713375, 0.4244151934213653, 0.8784852709235653, 0.667697582798242, 0.6791650855490978, 0.8659372985570389, 0.5217980090164113, 0.9757802673562255, 0.20769640873195563, 0.6900575067285889, 0.15051833553221247, 0.8476988333501053, 0.12043274000614122, 0.6546311715671466, 0.412102187638673, 0.6339696776630096, 0.6925917751558638, 0.8074446941396305, 0.8417042066658985, 0.4702054036006336, 0.8107456318417504, 0.934253622333564, 0.9671353887875448, 0.3776875782453083, 0.5133306968464912, 0.8279918435672958, 0.7295730380004212, 0.8398957027397556, 0.7470826509089123, 0.7722124156410631, 0.3944809481034696, 0.5801047158883857, 0.7134138458261836, 0.8265590446981121, 0.5836238058504062, 0.7538957359152121, 0.9708936701567454, 0.41507295289487073, 0.9039211350062085, 0.5109703825452502, 0.8880660412534, 0.6332514250278477, 0.703270618172154, 0.863031725372896, 0.9601349291832292, 0.5845797646527732, 0.8357575010967041, 0.9584406458449958, 0.8733333206292072, 0.4740801794177068, 0.5787650908025566, 0.38525623454815555, 0.5715075300165849, 0.951253157591183, 0.831291834366621, 0.6482062646591596, 0.5447536045265621, 0.8456825404777587, 0.5358725178581014, 0.8893400405584444, 0.5955893395860203, 0.9408369636189147, 0.7580589814818564, 0.4244151934213653, 0.7636885291754726, 0.9532052815091139, 0.6686700461744643, 0.39683939049776734, 0.8309978518015588, 0.06774730328187532, 0.8934061610794648, 0.9459413258233057, 0.8507977517004935, 0.9694554821790147, 0.8640493534313302, 0.8409166048571896, 0.9059760843724536, 0.7278052027863667, 0.8952246802917138, 0.39534528644804523, 0.9558702864115934, 0.9178754126151818, 0.7504628435478695, 0.7568870052952757, 0.32046258648166903, 0.9712495894387816, 0.7125870341029702, 0.8286889773580812, 0.929575727770858, 0.8422483936479932, 0.60065365322741, 0.5775074082600717, 0.7505976846167132, 0.5317253080143199, 0.9590110623565244, 0.9651712957082627, 0.7333643603414158, 0.7757825668725274, 0.8928390517037824, 0.2578168736401774, 0.5355488836719776, 0.8408692583280314, 0.7849780542174357, 0.8711681462620556, 0.8447990405440073, 0.9571933326515756, 0.9307123551507692, 0.6421242495412457, 0.9239207054420927, 0.9336219461922934, 0.4244151934213653, 0.5673643045526261, 0.8301442064454496, 0.528471943574542, 0.8835542071774324, 0.8820947700128993, 0.4561713647735051, 0.584381944856391, 0.9493936477483658, 0.7816316980556022, 0.7770145472448273, 0.8495153837633861, 0.8318035560268552, 0.5220388622338656, 0.8589980209217414, 0.21216021099657945, 0.8782303617207965, 0.901850575196968, 0.7683760396387002, 0.9559989503713009, 0.938411491366706, 0.7225398931917507, 0.5918361617892179, 0.8596378534897678, 0.8816239240572568, 0.9296844522785247, 0.8299758417251202, 0.7538846798551382, 0.931253582726863, 0.6902425303942638, 0.9299571155275668, 0.35461708236434614, 0.6119587629530028, 0.8979450471026776, 0.8782891297971865, 0.6144930729026484, 0.5601837238662909, 0.4230258756549153, 0.5115702372514986, 0.6133200318312215, 0.8287048127179734, 0.42887934024879554, 0.5543929044930882, 0.5414149972460248, 0.7453725251924848, 0.6522898344923613, 0.6445138145159856, 0.9212190995841192, 0.6991293681294938, 0.9188224881967051, 0.9444881948020799, 0.8399825546316605, 0.6440269003431431, 0.45260210695563535, 0.6678228102737954, 0.8535669746933884, 0.23469888428232324, 0.7581156815660375, 0.8329520097124233, 0.5886389680190937, 0.4250130050586104, 0.290761161529129, 0.9065968169685268, 0.39757013049667705, 0.9584529405260903, 0.24804178200132845, 0.8400605958344816, 0.9562762484868867, 0.5923100188758571, 0.5355488836719776, 0.6866862751474886, 0.753715093249364, 0.9302702282582556, 0.8405005145861136, 0.7758456574858743, 0.8270123797965384, 0.9270997487744173, 0.8779999285967196, 0.6350604679157676, 0.9057987369792326, 0.9732730617650076, 0.28007269673131574, 0.5393237551960537, 0.9509318156255189, 0.8055358405733448, 0.8512314640165554, 0.6752183046546253, 0.9766791413071304, 0.26893819095773785, 0.5105552073939665, 0.7964242570425004, 0.9159462749375985, 0.46312559485344046, 0.7889853219989779, 0.5331772070153998, 0.6250130361556073, 0.5340700079782073, 0.8981158701031157, 0.8424802355113449]}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other\", \"type\": \"scatter\", \"x\": [0.5927202135199882, 0.8761115807622759, 0.3918101162261932, 0.4274499708604883, 0.2045605510046583, 0.41267175662887723, 0.8467287164565859, 0.42856443171787273, 0.0649472763136536, 0.7091036705843383, 0.007694825400027527, 0.005041346945226177, 0.4034496669307166, 0.6677985043323578, 0.4886264400538315, 0.47166821863478003, 0.4525749156625526, 0.33130297876886583, 0.8299072070571033, 0.8205579824441552, 0.10500963120081785, 0.5966113215705039, 0.11124289864611725, 0.4514472575169446, 0.4492060250597031, 0.13518610605106296, 0.2736711518924916, 0.6142249111111682, 0.9173677347227654, 0.6830915875576619, 0.24782867008615117, 0.8161457062158467, 0.3374656994942917, 0.3857493376246194, 0.12700589317786326, 0.9237431447214729, 0.9230036338839108, 0.9624781962810091, 0.29199518164404104, 0.4834490700097318, 0.9776373841887149, 0.6984232863316076, 0.9186090698189877, 0.7120599145956888, 0.8544042405248635, 0.5280823477278406, 0.5161913524197785, 0.5552025661241904, 0.6101926718332877, 0.6765446528510498, 0.7900309148852879, 0.8071007540329124, 0.4240930114588197, 0.5732654453582814, 0.17540752537327042, 0.9859719508648779, 0.7081019011445829, 0.910030565588276, 0.24922522090623234, 0.20354673094140807, 0.36179776255771534, 0.5902659824246745, 0.4818893657316753, 0.5510234505759988, 0.5058183850199637, 0.0809490191431208, 0.8236905664344449, 0.3416948659779043, 0.11350423702979939, 0.39554945317938894, 0.5847727000963485, 0.9830946452014604, 0.5046545834840445, 0.295408401823402, 0.22182239427308048, 0.5459512618892078, 0.9016605356366756, 0.5248642625570527, 0.13722986630721745, 0.49464203238882964, 0.9855351087053301, 0.48581147132655667, 0.4090164245089405, 0.12574252405590203, 0.1845207675642655, 0.1440583266552986, 0.1587709652722512, 0.7192264941805321, 0.28715788164051514, 0.19955423045796572, 0.8701875801835426, 0.23281611333257923, 0.7427893804588052, 0.7100974409062142, 0.8568883108302742, 0.41989321310963224, 0.4905551538432338, 0.8797185155806555, 0.346417836202079, 0.9824756812692246, 0.2329155212367745, 0.4644291593866855, 0.8088075085642026, 0.2421356833895314, 0.677222830609727, 0.08268299119286271, 0.1619189985679772, 0.5229621065623056, 0.7363579188382858, 0.14569141751362757, 0.9291765124685596, 0.8208828634853084, 0.21668143604658108, 0.43876362512116307, 0.1459465942276652, 0.6786370892783796, 0.5361412516029527, 0.23974715210189357, 0.9790698320868946, 0.6497755381707232, 0.2457862082331409, 0.7876489414931365, 0.6452268976221684, 0.5960204661113176, 0.5695841598704651, 0.7888820526139767, 0.7623291199259367, 0.017443794623043685, 0.9137198280552097, 0.7251789897240168, 0.8238937907589118, 0.20481341533744035, 0.987949668702708, 0.6576344983667278, 0.8943273377239787, 0.2915662205234639, 0.19898363621189563, 0.2779464504637691, 0.8258432329517984, 0.8077352592158441, 0.9101447929230168, 0.2162835593018605, 0.250266002703492, 0.8432263242170599, 0.7177825084567547, 0.7230229083985307, 0.9015409493034308, 0.5121093338856102, 0.8517831194543951, 0.2769389132440947, 0.23710718706347877, 0.22321844355704956, 0.8994899561397474, 0.011576335284223638, 0.638970037544863, 0.46047168202950584, 0.7098986330950419, 0.06481907643433626, 0.4028182163343239, 0.3806624341618765, 0.6408061691983068, 0.0037894955361736926, 0.27157103759840484, 0.723514564690817, 0.92694625927694, 0.9513879186681692, 0.5719536669064332, 0.46024134121500015, 0.948070728940375, 0.48311481887682217, 0.9338939182124297, 0.9305594454440519, 0.88441944607585, 0.9960032099177529, 0.49401489661857845, 0.03357619644983112, 0.5010816340180329, 0.5115124302795885, 0.49932015179803735, 0.364505859027785, 0.28027124020489524, 0.11272455521769176, 0.7009085749573951, 0.42513604243012015, 0.11570324648405872, 0.1745899383470847, 0.3078430839293248, 0.07228536767985927, 0.34829362803975983, 0.6252795768197993, 0.1785243076126768, 0.20039690119753362, 0.30914199967572287, 0.45491982312867596, 0.6003814929399888, 0.33272257819214923, 0.11438509712493616, 0.28468544979142507, 0.913072824108533, 0.48512308734143705, 0.6677363580119975, 0.7376541515898183, 0.9979569230288893, 0.718683375128945, 0.1849946309731786, 0.03996256378612695, 0.9156361790194649, 0.10968256091043427, 0.8751755978012553, 0.12288242455147214, 0.4981018980140459, 0.0979630009466883, 0.7113590910083605, 0.6683214774112632, 0.36253861545821087, 0.9083804960887787, 0.10539189535659077, 0.3842846750354535, 0.748019501708763, 0.8478922525733515, 0.9707044131276098, 0.8472577592807372, 0.5426706691908734, 0.22867775500019794, 0.56653936563771, 0.08769067327645619, 0.9802662170779552, 0.7955375007752645, 0.2510214030411263, 0.4253390361288484, 0.1018880677368289, 0.2134397840758735, 0.2344179080864187, 0.2163909816916113, 0.013807404340310803, 0.26060654612816536, 0.6490025450007294, 0.5350855019582071, 0.014791182586369578, 0.23674842958631925, 0.5599548274985917, 0.5745024878907526, 0.9849620680797863, 0.2054640377372451, 0.48991115103397553, 0.36231484138722236, 0.4764064052117929, 0.6894259335240571, 0.2825467860553731, 0.3424220416911462, 0.19861403971607927, 0.6718336141816942, 0.24365072642053254, 0.27896180155200956, 0.21763334574754978, 0.6510614779626678, 0.9398631260593692, 0.6371193761028485, 0.13391883112071834, 0.25919251210395033, 0.09835896855761384, 0.6975400743322736, 0.13052798508299046, 0.3999502440401307, 0.6520248227287526, 0.1878888995209217, 0.3392841846991035, 0.9757713362425628, 0.34845893386821525, 0.44428807723904074, 0.9793948877105402, 0.8309607301163381, 0.9805521748413945, 0.7749704346961331, 0.11101665574432007, 0.20505008438242678, 0.11493665824468324, 0.5430772080585259, 0.5347748166203062, 0.3173609663922904, 0.939483434178224, 0.6050796155553321, 0.4107629826446121, 0.2546862152439775, 0.6405091327330938, 0.6878509521568266, 0.431168305706883, 0.8763980228684373, 0.3153319728863624, 0.5239256971884158, 0.8291933757460689, 0.6386683687072184, 0.18439927210637386, 0.7656079106637799, 0.31200251155173964, 0.09212201063751668, 0.6296041073743401, 0.10848784948881762, 0.4043041094504556, 0.4489155953135152, 0.5311511012981767, 0.2895702740852105, 0.3187901348121731, 0.9404025539608161, 0.299760394366531, 0.4322056091560108, 0.4740353503583611, 0.7903913260268024, 0.21010228315500457, 0.9057376965875259, 0.8517332570139133, 0.6414178762541543, 0.9275425475775464, 0.596468646283554, 0.21833233844246258, 0.4415603633165933, 0.05047427501488455, 0.4240656533741344, 0.75191413941881, 0.9515316844896207, 0.6750427232033008, 0.747725305359278, 0.9935202180119463, 0.839496033375344, 0.6012722565024199, 0.6300958577701455, 0.01627745910528189, 0.5612658646845253, 0.9758711667609092, 0.4111985384365585, 0.593299113276026, 0.04273369715138198, 0.9898917358286722, 0.858665523283154, 0.7924805637309065, 0.07509579999200489, 0.7205083495104293, 0.5383705435520515, 0.46656884190478154, 0.12321813832145867, 0.5020459839190519, 0.4329605914886008, 0.7339657705385408, 0.908343447312965, 0.5265283033398022, 0.8756254399199854, 0.35323721593384694, 0.03905728641610717, 0.3356184203476278, 0.43030240058445035, 0.15247986070363173, 0.3096582543568237], \"y\": [0.8142007211296887, 0.07257977436397642, 0.7430932382113554, 0.8214862427787604, 0.5698848321031316, 0.6048119589659149, 0.6466669219762841, 0.14510080060429495, 0.2250304680670007, 0.28492472637839966, 0.42061632734231896, 0.8281252124183194, 0.49622399336621903, 0.3482895521074759, 0.4678833354511545, 0.5708968386647719, 0.37048677721847617, 0.553632248395139, 0.8702137350251022, 0.42186952587750404, 0.8696774950675754, 0.5410576963494411, 0.3971326977900686, 0.3275001196198921, 0.9448289227093116, 0.7109941475090589, 0.41925580570138304, 0.3675472469853882, 0.6721911818800557, 0.5562207270314473, 0.5262426608517637, 0.3244609607385458, 0.15056615442564347, 0.15676979724311627, 0.6037730696030339, 0.6342511279653397, 0.021947035536558718, 0.32429164429335744, 0.5678746850743716, 0.3571680467137555, 0.7755534309390314, 0.3240287891037917, 0.699424662214302, 0.5151532452376618, 0.7564675819717819, 0.38343591026479057, 0.19811005648518398, 0.3168419703358067, 0.5315947262677626, 0.9269044449273315, 0.8260225289794664, 0.451791899378283, 0.830516920403184, 0.47128602930186, 0.19027823806377472, 0.5181346713949518, 0.29552777318700446, 0.45414400334446664, 0.39329840463575844, 0.42327932510626076, 0.45838907164509224, 0.2233864252642039, 0.3628419195926303, 0.6709353200988277, 0.46058046365566996, 0.25551237833043455, 0.7234147543269824, 0.1481282262733752, 0.314935793994079, 0.20050531530561894, 0.37453315488553635, 0.701015529968035, 0.6343341418527783, 0.1739320900588749, 0.734996253073231, 0.8172229478314255, 0.3598554146739685, 0.7121055211356295, 0.2620604909731644, 0.3421138035730516, 0.6951268813066005, 0.35208221297891723, 0.452099210446082, 0.18907620085798427, 0.5444201651108793, 0.6484058972837882, 0.3258186925596978, 0.5963383680780668, 0.6202666247822538, 0.576738593946626, 0.5054992484109841, 0.2972245631729925, 0.6844333356791464, 0.42629475072919953, 0.4405153833121037, 0.01207867704715336, 0.7609288944606691, 0.23951123982998349, 0.09310514674080905, 0.5084920166510624, 0.33067609257366243, 0.36481899584296196, 0.5708968386647719, 0.3194802059637459, 0.14207297841267416, 0.5776897120055972, 0.2026163425795633, 0.37909000048748537, 0.38206764842015895, 0.41324683104354176, 0.17826143731067332, 0.42339414872454434, 0.39148091864802853, 0.3511350413575442, 0.8053393751847749, 0.5937005322868365, 0.6849942580153355, 0.38930033076762494, 0.5168500865319015, 0.5699073288866824, 0.5376087249833421, 0.8185832461647057, 0.25950508036415604, 0.20394483716883388, 0.3303044530853749, 0.2528102968078532, 0.8477719856767125, 0.5217124250004609, 0.3303044530853749, 0.5382885532339231, 0.9625763866028243, 0.6536174904341296, 0.42629475072919953, 0.6458781618432388, 0.46574001023909845, 0.37268733756108086, 0.8180085473348132, 0.35493594975273335, 0.2423640089427935, 0.3636330633241046, 0.6421622311157122, 0.5444201651108793, 0.7396308412796291, 0.9036153464846048, 0.21101569987323432, 0.6004024464464508, 0.7595861882737439, 0.486549602332862, 0.2379839758891197, 0.5147825233229498, 0.2065932277190248, 0.4342628292980428, 0.5940848250235929, 0.4857193175270624, 0.5332610244722983, 0.5402196969638672, 0.8578846895389459, 0.5290225674595067, 0.6074669506688956, 0.1847839155105034, 0.3581391437324269, 0.4304380754474639, 0.8410120374942113, 0.5810086483513661, 0.19026233744636453, 0.7223494520380469, 0.8589928738613049, 0.8374625942163022, 0.781203852328267, 0.73983195178881, 0.41156537259256004, 0.7482873396984137, 0.44431713201158524, 0.7113673874393347, 0.49869552495399233, 0.7627102864663872, 0.37193390769028617, 0.37187810520956766, 0.3773291605703562, 0.8719651627687759, 0.6218762459828849, 0.3781393537983126, 0.553632248395139, 0.47624084907999176, 0.774399353278846, 0.5840424935194366, 0.5601025471409736, 0.6186690618327106, 0.620611700356168, 0.5755798886129706, 0.15047650536569443, 0.5530049338021776, 0.6597439619439023, 0.8300222117931148, 0.3490158529243493, 0.4410646109528086, 0.5067909967309752, 0.5851482063434866, 0.7149827463187939, 0.4849259975950144, 0.2094210588097294, 0.33399024531412796, 0.4083143545243069, 0.7497022835596558, 0.7817929239213606, 0.7637421953724776, 0.3825655414920891, 0.6611482494098961, 0.19022241257108333, 0.44972084577511023, 0.5476732603321269, 0.4831274653996314, 0.5077048340566679, 0.7289504589448288, 0.4379810490617926, 0.8017221455714771, 0.6434673631716396, 0.5059779734745421, 0.6065367192264559, 0.650368705032214, 0.34567471266024347, 0.39561589000187136, 0.3427787545601037, 0.4676404271158623, 0.5332283386400669, 0.4519108142444285, 0.40662831629925006, 0.42305576187259053, 0.22032895172816622, 0.5278715769330472, 0.43679486629948455, 0.743933429392776, 0.5269515041023835, 0.5008800654866953, 0.214168174561682, 0.44879088851457377, 0.683485355417811, 0.807753104897186, 0.42629475072919953, 0.8502951424821861, 0.17421175568219957, 0.25491371883486935, 0.7595861882737439, 0.6571724132942184, 0.7813188949129265, 0.5626906653340306, 0.8674288259883418, 0.6600514650598344, 0.4827749661719035, 0.5456147119159479, 0.39827550056677263, 0.27323823737433794, 0.695896529362927, 0.5048820477254727, 0.5422349097465021, 0.5610936746718964, 0.6571724132942184, 0.3088751107498249, 0.45428761266464013, 0.6604471727860799, 0.43371621376298963, 0.6171893197168647, 0.8100511550343341, 0.8100511550343341, 0.605832578461134, 0.5526475584669951, 0.4275055171336787, 0.8734720021260204, 0.8508295378350301, 0.5807723706867254, 0.8272749548927728, 0.2670652478909882, 0.7020144194675465, 0.4615566916191992, 0.7055847950248242, 0.43389869234556755, 0.6071692164257629, 0.3496825637352313, 0.23676491619791426, 0.7057755976874825, 0.15539001443149586, 0.6187538615870153, 0.8735882828904331, 0.30049486749739024, 0.23191705420611952, 0.8913917397916864, 0.4977157214618499, 0.16961113509580228, 0.8485494795219795, 0.4760032757956232, 0.5053843099270294, 0.2676015269871764, 0.3627664421236291, 0.15146266807038725, 0.7898179638281774, 0.6145296307645981, 0.3790380236797623, 0.3003532640340299, 0.6086112016774773, 0.39906793889171593, 0.8185832461647057, 0.6715802865662828, 0.8260225289794664, 0.6056902064850618, 0.400132762133902, 0.39471961640683584, 0.6449859309106076, 0.5637152910565628, 0.39949420960438964, 0.5490401551410112, 0.4398875418860128, 0.30916577334906253, 0.7093303227687476, 0.4562508424819209, 0.40444044759428516, 0.5773483646962835, 0.447777692034652, 0.4961542215384683, 0.32474312180562226, 0.21192693199409943, 0.9056903490933487, 0.5013816399998683, 0.758876109553896, 0.6364928148646596, 0.2952804752502578, 0.4748951900520853, 0.43679486629948455, 0.5479962315186364, 0.4728142838839701, 0.6343341418527783, 0.12248807650217919, 0.5052525886146573, 0.8281252124183194, 0.8930081609652758, 0.36283726088930296, 0.8098196742550625, 0.656477404357746, 0.193885049884708, 0.5269515041023835, 0.49858469647139786, 0.32780472036158087, 0.24927512797396847, 0.6148718578314069, 0.10691527318901187, 0.136775438340409, 0.8489192718114075, 0.2600203086082801, 0.8142007211296887, 0.5269515041023835, 0.7966615933629455, 0.5633234794197017, 0.767479452333631]}], \"layout\": {\"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"range\": [-2, 3], \"showticklabels\": false}, \"yaxis\": {\"title\": {\"text\": \"Probability\"}}}}}, {\"id\": \"tab_bad\", \"title\": \"bad\", \"graph\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad\", \"type\": \"scatter\", \"x\": [0.6945133436161901, 0.9290043780538242, 0.9745368790406508, 0.4747713875044325, 0.9414398478208361, 0.9347379424446393, 0.004402729530429528, 0.6152560455532748, 0.22123511891900993, 0.4360145052107842, 0.09348804460476656, 0.12831261708976238, 0.32322223159397523, 0.20568037705038622, 0.5021458490497139, 0.47827374957360747, 0.5565625927819525, 0.9416341528570359, 0.4985695983825368, 0.6094396609184083, 0.8632492891097867, 0.6031830398517409, 0.4206888643810569, 0.5747477752473803, 0.3454350617601821, 0.7545425161745575, 0.8232164498806988, 0.5606742265488307, 0.06211955342585784, 0.9098955297941635, 0.7879714891559291, 0.41199646797976397, 0.5044048083147888, 0.0020483758315926748, 0.9936169765830819, 0.5723950453064087, 0.9464055632781533, 0.3679641423951372, 0.9188927417357143, 0.8306023303233657, 0.03548361683256318, 0.23828654036827535, 0.9217151415900128, 0.28939974093612164, 0.9655921545544818, 0.07840632745739129, 0.8550145239885786, 0.9119274302098719, 0.8115317451387959, 0.6242346071880239, 0.9091391351867049, 0.26927809181830586, 0.901570890678721, 0.2357240658004106, 0.6885840232275003, 0.8819891596844938, 0.7771720167997429, 0.46397707246612596, 0.2532641634818328, 0.4068604748953836, 0.4609797629965551, 0.9517723854606861, 0.36463671545908005, 0.27906161654582085, 0.10390010593277299, 0.5251047423849057, 0.6867205875572856, 0.27493466929769617, 0.22070822737209006, 0.8838941403888751, 0.0072777488081239294, 0.9075228637394562, 0.07350938313576505, 0.4191740536772175, 0.9058391972330774, 0.15759476966290975, 0.8520367175971238, 0.45286508631747646, 0.46027472097217315, 0.44537394608833825, 0.47661940151872095, 0.24979871885858895, 0.7530427866443734, 0.5196437051852629, 0.5811933352802248, 0.044654919797038506, 0.22280512695374322, 0.807264478936403, 0.5473190328651437, 0.9423140820786228, 0.9277915241967436, 0.6961822311983699, 0.08746282425782104, 0.08946686127699355, 0.6549125090731284, 0.5440518094217073, 0.6336718918879415, 0.5704921671247349, 0.7609241853446091, 0.4030031475182543, 0.08035980172704005, 0.9279245220657572, 0.7303456863294485, 0.16910362970746484, 0.9069658797149827, 0.9249986456365848, 0.8499500298302155, 0.6505104274428446, 0.35022378405198995, 0.42276932579895943, 0.33999408845714474, 0.6272919330562772, 0.5630465199382533, 0.020445281706281904, 0.7555184164522467, 0.43762226634085444, 0.2932269226602161, 0.7965741362908232, 0.7877224420972303, 0.17264009167232097, 0.4374044703406734, 0.9458839519858071, 0.6745021741898339, 0.4085480810073092, 0.6289045748742381, 0.681942172938474, 0.2990065765442209, 0.03439528230527744, 0.050347046569058196, 0.7165899684507757, 0.26353726974172953, 0.259780913042747, 0.924360054995043, 0.3182297887381704, 0.4989827899912027, 0.6839712035176936, 0.3178839800750163, 0.86304457178468, 0.7220615963934327, 0.4125589823056923, 0.41470060641061346, 0.8663772359471514, 0.2555874438155592, 0.31087814948264814, 0.0036171310302444137, 0.778965977333069, 0.5152558224048357, 0.025567419099053357, 0.8215592910321091, 0.3643806352000494, 0.6134308390089209, 0.9715962273602586, 0.4949674257576261, 0.6375361756241461, 0.25808782488418036, 0.7291839746706447, 0.4493737268776623, 0.4636877704354181, 0.9861219779398296, 0.9165242905874101, 0.7945935916553226, 0.4081765429117715, 0.746413737003348, 0.6814927225275178, 0.2162459464475457, 0.7608165455228282, 0.13671962801301307, 0.36019014420729845, 0.6143484259582898, 0.9638704743330567, 0.9823471514048153, 0.06738119803128972, 0.8172225517892254, 0.6664475643634815, 0.001501578529309433, 0.7315281415300865, 0.7095552680262592, 0.4062161666194323, 0.5649927921100781, 0.515451499580615, 0.778203955668923, 0.21556179924957786, 0.8301241851976717, 0.8557847584350948, 0.8277672190055282, 0.30307773371784774, 0.02060309976457686, 0.16568686620708917, 0.08705452492724242, 0.3912135989998423, 0.36816672851646104, 0.19560281840106208, 0.8274957025075701, 0.8693748339780231, 0.5744736119406405, 0.3686033090999856, 0.20622302541968363, 0.47454986585156045, 0.5334427077581664, 0.15996444627940565, 0.9853025480826176, 0.9396028885346598, 0.3078599308147716, 0.8904481334906328, 0.384282703955113, 0.0266201812316591, 0.4406008041767292, 0.02359275719846432, 0.5376622986581399, 0.6723719554821027, 0.08548343477710085, 0.4285064471146962, 0.04294796388380573, 0.5211208642404895, 0.3349283747830166, 0.5979074820692757, 0.7732319055694562, 0.47887623388724787, 0.974902929436946, 0.9070828301329131, 0.8599649440605153, 0.5031129904261222, 0.8407970107009505, 0.11830625849808984, 0.025954534937059348, 0.7665048684112844, 0.44438347903210684, 0.1551802382203965, 0.9892274983118078, 0.047501676735420384, 0.9152077487270418, 0.740146316999102, 0.7230565402899776, 0.9834831346002063, 0.16351911694501053, 0.10584654950085093, 0.3583310584806787, 0.061420161886830194, 0.07387989090501423, 0.6748881449333728, 0.036016116086298955, 0.787965435252989, 0.2617898484201707, 0.43520674998363373, 0.19745756173741857, 0.5188316424471732, 0.9542392652295424, 0.6991830041727913, 0.4715785767329952, 0.5321091670580588, 0.8793362862668325, 0.7216002826632927, 0.44338900235535705, 0.676362257153599, 0.895051016255122, 0.3821384413262259, 0.8083965081509129, 0.6621354705230464, 0.847202670152689, 0.7532815991050448, 0.8735548033483497, 0.9925950475202704, 0.8509580063981792, 0.5191048459200948, 0.1383329157163643, 0.7653056725192289, 0.9563171561792126, 0.5735048846959905, 0.18267729263023236, 0.5177171279876206, 0.44679941899954245, 0.8501428223438362, 0.26971579009502855, 0.10088604179937788, 0.8132911031955237, 0.07924861330489796, 0.31897812041446183, 0.08162669885629781, 0.2257033211859879, 0.2815918437248599, 0.5824964615791655, 0.15708465537530192, 0.8287828101328146, 0.30655478252029966, 0.15170441768374543, 0.32374194389109, 0.8873543165629599, 0.8998426350350862, 0.69353272335158, 0.11027423349000243, 0.061261889859865026, 0.15855962439358762, 0.7159293371341319, 0.1621989544326976, 0.8939315654807526, 0.22697595244622815, 0.465144242238015, 0.8377893248657062, 0.32236749392643704, 0.030836891030663782, 0.7169499160597871, 0.35303940846762816, 0.25880053199202313, 0.2856131004564919, 0.8889475051326189, 0.22486912430516526, 0.910201595171699, 0.09936627236509832, 0.9437081030253363, 0.8835397936990476, 0.6467328578531738, 0.6991585066936384, 0.8499529773479223, 0.9294483647885038, 0.4191967768246607, 0.14377838229685247, 0.28875488147165884, 0.14333746862173458, 0.8392758575057805, 0.42458456876715034, 0.5371197289845651, 0.06131570900068917, 0.4384243627308444, 0.2678173241857973, 0.9139365875000052, 0.5332851047229166, 0.8152488522599945, 0.3229896948225993, 0.7820931745082625, 0.10174973448394364, 0.4206855795382688, 0.03101974943737873, 0.24661072230779868, 0.9917909566204204, 0.941412684642982, 0.2856798516871001, 0.10918075913940961, 0.6343343341004803, 0.5395958606308988, 0.5984173790500674, 0.5241338808562931, 0.04337965128211663, 0.10025577367284988, 0.3981158428833145, 0.7266418910843475, 0.3675999376938166, 0.39134540861957445, 0.7175691258482368, 0.3820037588432622, 0.13840894948690308, 0.5390749625737173, 0.9663234405085946], \"y\": [0.18579927887031134, 0.9274202256360236, 0.2569067617886446, 0.17851375722123963, 0.43011516789686843, 0.3951880410340851, 0.35333307802371594, 0.854899199395705, 0.7749695319329993, 0.7150752736216004, 0.5793836726576811, 0.17187478758168062, 0.503776006633781, 0.6517104478925241, 0.5321166645488455, 0.4291031613352281, 0.6295132227815239, 0.446367751604861, 0.12978626497489776, 0.578130474122496, 0.1303225049324246, 0.4589423036505589, 0.6028673022099313, 0.6724998803801079, 0.055171077290688375, 0.28900585249094113, 0.5807441942986169, 0.6324527530146118, 0.32780881811994433, 0.4437792729685527, 0.47375733914823626, 0.6755390392614542, 0.8494338455743565, 0.8432302027568838, 0.3962269303969661, 0.36574887203466033, 0.9780529644634413, 0.6757083557066426, 0.43212531492562845, 0.6428319532862445, 0.2244465690609686, 0.6759712108962084, 0.300575337785698, 0.4848467547623382, 0.24353241802821812, 0.6165640897352094, 0.801889943514816, 0.6831580296641933, 0.4684052737322374, 0.07309555507266852, 0.17397747102053363, 0.548208100621717, 0.16948307959681597, 0.5287139706981401, 0.8097217619362252, 0.48186532860504816, 0.7044722268129955, 0.5458559966555334, 0.6067015953642416, 0.5767206748937392, 0.5416109283549078, 0.7766135747357961, 0.6371580804073698, 0.3290646799011723, 0.53941953634433, 0.7444876216695655, 0.27658524567301757, 0.8518717737266248, 0.685064206005921, 0.7994946846943811, 0.6254668451144636, 0.29898447003196504, 0.36566585814722175, 0.8260679099411251, 0.265003746926769, 0.18277705216857454, 0.6401445853260315, 0.2878944788643705, 0.7379395090268356, 0.6578861964269485, 0.3048731186933995, 0.6479177870210828, 0.5479007895539181, 0.8109237991420157, 0.4555798348891207, 0.35159410271621183, 0.6741813074403022, 0.40366163192193316, 0.3797333752177462, 0.42326140605337403, 0.49450075158901585, 0.7027754368270075, 0.31556666432085356, 0.5737052492708005, 0.5594846166878963, 0.9879213229528466, 0.23907110553933086, 0.7604887601700165, 0.906894853259191, 0.49150798334893764, 0.6693239074263375, 0.635181004157038, 0.4291031613352281, 0.6805197940362542, 0.8579270215873258, 0.42231028799440284, 0.7973836574204367, 0.6209099995125147, 0.617932351579841, 0.5867531689564582, 0.8217385626893267, 0.5766058512754557, 0.6085190813519714, 0.6488649586424557, 0.19466062481522506, 0.4062994677131635, 0.31500574198466447, 0.6106996692323751, 0.48314991346809855, 0.4300926711133176, 0.4623912750166579, 0.18141675383529432, 0.7404949196358439, 0.7960551628311661, 0.6696955469146251, 0.7471897031921468, 0.15222801432328747, 0.4782875749995391, 0.6696955469146251, 0.4617114467660769, 0.0374236133971757, 0.34638250956587036, 0.5737052492708005, 0.35412183815676124, 0.5342599897609015, 0.6273126624389191, 0.1819914526651868, 0.6450640502472667, 0.7576359910572065, 0.6363669366758954, 0.35783776888428775, 0.4555798348891207, 0.2603691587203709, 0.09638465351539516, 0.7889843001267657, 0.3995975535535492, 0.2404138117262561, 0.5134503976671381, 0.7620160241108803, 0.4852174766770502, 0.7934067722809752, 0.5657371707019572, 0.40591517497640706, 0.5142806824729376, 0.4667389755277017, 0.4597803030361328, 0.14211531046105408, 0.4709774325404933, 0.39253304933110444, 0.8152160844894966, 0.6418608562675732, 0.5695619245525361, 0.15898796250578873, 0.4189913516486339, 0.8097376625536354, 0.2776505479619531, 0.14100712613869515, 0.1625374057836978, 0.21879614767173305, 0.26016804821119, 0.5884346274074399, 0.25171266030158634, 0.5556828679884147, 0.2886326125606653, 0.5013044750460076, 0.23728971353361283, 0.6280660923097139, 0.6281218947904323, 0.6226708394296439, 0.1280348372312241, 0.37812375401711507, 0.6218606462016874, 0.446367751604861, 0.5237591509200082, 0.22560064672115399, 0.4159575064805634, 0.43989745285902637, 0.38133093816728936, 0.379388299643832, 0.4244201113870294, 0.8495234946343055, 0.44699506619782237, 0.3402560380560977, 0.16997778820688525, 0.6509841470756508, 0.5589353890471914, 0.49320900326902484, 0.41485179365651337, 0.2850172536812061, 0.5150740024049856, 0.7905789411902706, 0.6660097546858721, 0.5916856454756931, 0.25029771644034415, 0.21820707607863943, 0.23625780462752244, 0.6174344585079109, 0.33885175059010386, 0.8097775874289167, 0.5502791542248897, 0.45232673966787307, 0.5168725346003686, 0.4922951659433321, 0.2710495410551712, 0.5620189509382074, 0.19827785442852286, 0.35653263682836045, 0.4940220265254579, 0.3934632807735441, 0.349631294967786, 0.6543252873397565, 0.6043841099981286, 0.6572212454398962, 0.5323595728841377, 0.4667716613599331, 0.5480891857555714, 0.5933716837007499, 0.5769442381274095, 0.7796710482718338, 0.4721284230669528, 0.5632051337005155, 0.25606657060722404, 0.47304849589761655, 0.4991199345133047, 0.785831825438318, 0.5512091114854263, 0.31651464458218903, 0.192246895102814, 0.5737052492708005, 0.14970485751781393, 0.8257882443178004, 0.7450862811651306, 0.2404138117262561, 0.3428275867057816, 0.2186811050870735, 0.43730933466596944, 0.1325711740116582, 0.33994853494016564, 0.5172250338280965, 0.4543852880840521, 0.6017244994332274, 0.7267617626256621, 0.304103470637073, 0.49511795227452726, 0.4577650902534979, 0.4389063253281036, 0.3428275867057816, 0.6911248892501751, 0.5457123873353599, 0.3395528272139201, 0.5662837862370104, 0.38281068028313525, 0.1899488449656659, 0.1899488449656659, 0.39416742153886597, 0.4473524415330049, 0.5724944828663213, 0.12652799787397961, 0.14917046216496987, 0.4192276293132746, 0.1727250451072272, 0.7329347521090118, 0.2979855805324535, 0.5384433083808008, 0.2944152049751758, 0.5661013076544325, 0.39283078357423706, 0.6503174362647687, 0.7632350838020857, 0.29422440231251745, 0.8446099855685041, 0.3812461384129847, 0.1264117171095669, 0.6995051325026098, 0.7680829457938805, 0.1086082602083136, 0.50228427853815, 0.8303888649041977, 0.15145052047802054, 0.5239967242043768, 0.49461569007297057, 0.7323984730128237, 0.6372335578763709, 0.8485373319296128, 0.21018203617182263, 0.3854703692354019, 0.6209619763202376, 0.6996467359659702, 0.3913887983225227, 0.600932061108284, 0.18141675383529432, 0.32841971343371723, 0.17397747102053363, 0.3943097935149382, 0.5998672378660981, 0.6052803835931642, 0.35501406908939237, 0.4362847089434372, 0.6005057903956104, 0.45095984485898877, 0.5601124581139871, 0.6908342266509375, 0.29066967723125237, 0.5437491575180791, 0.5955595524057149, 0.4226516353037165, 0.552222307965348, 0.5038457784615318, 0.6752568781943777, 0.7880730680059006, 0.09430965090665133, 0.4986183600001317, 0.24112389044610405, 0.3635071851353404, 0.7047195247497422, 0.5251048099479148, 0.5632051337005155, 0.4520037684813636, 0.5271857161160298, 0.36566585814722175, 0.8775119234978208, 0.49474741138534273, 0.17187478758168062, 0.1069918390347242, 0.6371627391106971, 0.19018032574493748, 0.34352259564225396, 0.806114950115292, 0.47304849589761655, 0.5014153035286022, 0.6721952796384192, 0.7507248720260316, 0.38512814216859315, 0.8930847268109882, 0.863224561659591, 0.15108072818859253, 0.7399796913917198, 0.18579927887031134, 0.47304849589761655, 0.2033384066370545, 0.43667652058029827, 0.23252054766636898]}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other\", \"type\": \"scatter\", \"x\": [0.6966900869006295, 0.6953629626602431, 0.9048910477483151, 0.7430016104974008, 0.20806298706926707, 0.5640461609967596, 0.31961525562356863, 0.286837833726559, 0.6160318447653259, 0.689519393426115, 0.9331589403660295, 0.9938047256217271, 0.7985046970337618, 0.6755493159167433, 0.23265733277255507, 0.3296059889683003, 0.625033313421599, 0.0030304727270543674, 0.8063690689385391, 0.6635816480971005, 0.5673428167087099, 0.32677036147681693, 0.7423914825703803, 0.5220523132105848, 0.3841000866775053, 0.20122584893174889, 0.730308491496386, 0.10998940440157523, 0.962598727434557, 0.3432827785886139, 0.21371044523199412, 0.01452845807815728, 0.7894733738686378, 0.6516687343456248, 0.40951123445688387, 0.797566267460254, 0.8511693912275501, 0.2752653554308291, 0.9224202195751187, 0.4128916676966421, 0.6314053053627112, 0.2697824883544484, 0.3597269917757271, 0.10117891328503947, 0.7164862018359469, 0.3884115977738769, 0.9142579455662934, 0.16733498893505072, 0.2404589512222538, 0.18335809023131988, 0.7983374106793029, 0.43323528260199007, 0.8025828671522283, 0.1017914259005791, 0.46940780159110895, 0.4014186189565897, 0.763727803190833, 0.39065506055069776, 0.4314564704750845, 0.9195076812315697, 0.057808219940675976, 0.770623955197419, 0.6760169461907539, 0.8134559976862624, 0.06629732399074661, 0.21153229456256673, 0.2271652074682704, 0.5115061931287458, 0.42927746100075803, 0.020023366635387063, 0.39644108917096643, 0.865413865611337, 0.3413906255733077, 0.9177338672592601, 0.692326174951415, 0.3158457287092362, 0.5467750847254491, 0.21244391671661012, 0.09243405686569683, 0.4250173880494722, 0.07274744293755953, 0.03595157278264438, 0.6941235070149148, 0.5487165480543376, 0.7692808758670816, 0.2657701326313986, 0.11922093885252982, 0.3410685283488447, 0.3812235583335267, 0.13595873978287, 0.9304027769437783, 0.38829758832728, 0.8319366466483217, 0.2885854572691827, 0.1775281148586425, 0.4117654847440346, 0.5162201348081562, 0.6860312519089233, 0.9446436605333514, 0.11269915884899562, 0.7199261386107361, 0.9821218323988966, 0.15898662159409238, 0.32101938418413545, 0.6436858547879827, 0.06019339088162934, 0.9168006859069241, 0.7062050792513394, 0.7391221035270472, 0.38618940922638745, 0.32460440000092095, 0.6201104475979815, 0.15517474754992955, 0.8156218558688239, 0.6075396130262308, 0.0941166800330463, 0.9247523228892386, 0.29904006612782663, 0.2903234525565822, 0.20550890159480906, 0.7279943022950781, 0.3177947245251832, 0.5471309532583479, 0.845447831939054, 0.09958783323211651, 0.5275488223382969, 0.07042681066483114, 0.3657315217000411, 0.6826868658505343, 0.4282534880777912, 0.6040557176689166, 0.23747339532416045, 0.8180351245810754, 0.582490022645805, 0.09946968694577052, 0.71824543099307, 0.5588370840883117, 0.07305163487887567, 0.013784670223765172, 0.7039244214005753, 0.6396933898644868, 0.5513682334643536, 0.08422326727432883, 0.4597487165600155, 0.28551501497703013, 0.7097690744218746, 0.05138920538784575, 0.44581427531177753, 0.9855247028112919, 0.8658268597514043, 0.7068470072672871, 0.4723645965435713, 0.5760700517092734, 0.09077544351200917, 0.8612526391261781, 0.36563293053483525, 0.6259927150575066, 0.09228778463616738, 0.5672052724292256, 0.6134795274713909, 0.4638811490543072, 0.2615897483585884, 0.2511361718799734, 0.4530642363221591, 0.2840883499665616, 0.06610712381968609, 0.3023427667091505, 0.770623593781128, 0.5474293927054368, 0.09332046451003606, 0.2537657385528893, 0.32190479120925175, 0.09118151099743577, 0.6381595017469747, 0.3448639498087376, 0.7466416613951204, 0.5742257251894679, 0.6852241980368495, 0.3365624890110044, 0.8644298200998666, 0.003271626571830555, 0.6992899325071991, 0.42643500350105024, 0.5526477353653252, 0.12129383788157355, 0.32548515508660003, 0.31176962195276603, 0.6929305457871858, 0.38911592628288505, 0.09576809372468054, 0.25693305780939957, 0.13723181547590868, 0.24855184770672223, 0.36341952016040246, 0.5100208782143155, 0.1506667729276615, 0.6013379146563659, 0.40267196842382424, 0.048176942702936376, 0.015428622969075212, 0.5683479813262308, 0.7061846781988076, 0.6392876263728087, 0.8426178720538152, 0.8180960808515604, 0.7640031382357916, 0.7149006009059036, 0.9839423947364278, 0.11926012878322079, 0.6543996751732918, 0.4735938621912802, 0.23308037012471905, 0.8965837016652435, 0.02673060125442961, 0.8680187622144123, 0.9946480207683429, 0.44701073165085004, 0.9043185784819783, 0.6694948596367954, 0.5170602656258785, 0.9178344237215658, 0.9374087981372216, 0.4211730055726325, 0.725433908523228, 0.6341776097790708, 0.3331216910686655, 0.11705440809117162, 0.6135790405959358, 0.6468943398663377, 0.6910284811589038, 0.20940156660855946, 0.7117498239548272, 0.8074506424880834, 0.8960392241940672, 0.17959528791905355, 0.9964519456215781, 0.6661101533512175, 0.6612183078607633, 0.14224441057263215, 0.8474189640157644, 0.5412592098296808, 0.34892484123785694, 0.7719986142838221, 0.1559941223188911, 0.205007630635198, 0.20740022212476927, 0.6888791248297197, 0.305456322753082, 0.4072490925248172, 0.43790000414358765, 0.2500065300887957, 0.005043877828916354, 0.684465096169826, 0.12433746277816449, 0.9240334169274904, 0.587781645600408, 0.5359303518123311, 0.6136024940430492, 0.1099192715881947, 0.38574666580791184, 0.3553596492135196, 0.44656735645969403, 0.7250917107435251, 0.13848341181462787, 0.85385305946213, 0.35374419469495455, 0.40656594127691814, 0.30890912841001994, 0.4025793375446477, 0.8566683224775707, 0.37130331676378125, 0.8033949868973832, 0.6011634173998025, 0.7204946573958944, 0.18177198593190558, 0.7769983222125448, 0.0439549992414453, 0.49852509179013216, 0.4204869166507442, 0.549952996536416, 0.13340581185945277, 0.6365481035032954, 0.3318376282293205, 0.07333183571103596, 0.9136509552301499, 0.7323146687644287, 0.42480298110793013, 0.4026865445495502, 0.7911856909732382, 0.15103954365909988, 0.07984343915468795, 0.3678996713931836, 0.9211506046105561, 0.1528919926750837, 0.5239135742923037, 0.2732792467643552, 0.782475563634252, 0.693203530683, 0.5208796166078257, 0.9837989980533118, 0.22712033011373822, 0.6991356029074085, 0.40849990880328757, 0.2499197476390227, 0.25981777488584057, 0.6375814365946139, 0.8803180471982273, 0.5777296611256239, 0.7991377968744949, 0.30552773020947155, 0.4153002426876129, 0.3562185468796617, 0.84262387476003, 0.9729769107074641, 0.3231891294422611, 0.8637643348213615, 0.07720873224881364, 0.38954676086197493, 0.3845811636548746, 0.4746263541024488, 0.03825043128120742, 0.84588423464299, 0.21987130508442532, 0.22728921516159095, 0.027752815755540228, 0.8617241100282694, 0.06927250684474184, 0.42873517489651214, 0.5173010270455005, 0.6909950788084285, 0.032829477155535414, 0.10452404330195797, 0.7599470995939345, 0.24495965662944996, 0.19645844359139364, 0.19826091848663785, 0.2892879485831661, 0.8301209323766087, 0.2672569813557185, 0.2676180451348452, 0.41901148538475985, 0.5814029243629582, 0.5292737447342111, 0.4902116654866968, 0.48431140162606856, 0.06288767177225574, 0.606270633225192, 0.09892627258304831, 0.9749592702423758, 0.17098698259313305, 0.018248883452649856, 0.40633705621021965, 0.040620981364058895, 0.5685542778307227, 0.755736316265404, 0.9755862760708467, 0.4200270871530055, 0.8616160744909873, 0.8731195902223154, 0.2584662471866894, 0.7583098240829018, 0.6278588659261372, 0.8465463363034749, 0.9860362322773609, 0.35792325585532403, 0.04542356473841869, 0.2965421676053166, 0.8591040380014964, 0.9146361468593205, 0.6909405585111971, 0.27360707995175715, 0.16398337198078117, 0.942396270842801, 0.6687509266472763, 0.36476041170131857, 0.053609737172578886, 0.8549565899176692, 0.3746734357444127, 0.056984774190680376, 0.45443707330656136, 0.812324648537238, 0.35189160062318214, 0.8652489234941017, 0.24263002864080996, 0.09959920598449312, 0.8818305456604119, 0.4364366890098137, 0.3292170428085709, 0.129208550621576, 0.25605613419063233, 0.7052485330605364, 0.7039312757845827, 0.3106870527484561, 0.46052248777803373, 0.8393424494926147, 0.4130792665366221, 0.4089036710000383, 0.7508176262153601, 0.8647333858009995, 0.9761338548756076, 0.6886387235527971, 0.7886564894235965, 0.09213063436253377, 0.09722846142867203, 0.59626686565989, 0.013983881684732191, 0.44048420438942215, 0.9288884736575748, 0.89802517470458, 0.6791135875188967, 0.41700981475611465, 0.6175819092516301, 0.5144224198175728, 0.8351749191861252, 0.2565757515101096, 0.5682441791978509, 0.5251603354672761, 0.381896012926776, 0.12758585112016485, 0.6425416803192706, 0.23308680258719217, 0.6342166934680221, 0.23521403335629232, 0.6360149157411881, 0.9444856855543187, 0.8455155112889913, 0.7951735764578816, 0.39462900423974023, 0.39689565989207487, 0.8232168195818466, 0.5331779585379041, 0.9035067851043048, 0.4518064501896296, 0.7028932120518651, 0.9381208429495467, 0.615029787569045, 0.16631931978766512, 0.3092067147902271, 0.5268187445702888, 0.18543815463268531, 0.3146329289160815, 0.24078393620024896, 0.49909297989118795, 0.6920382753994018, 0.1429411930636526, 0.9883881711071373, 0.8273282537911179, 0.5231998494510556, 0.5232382904533345, 0.47989884409586014, 0.561384532632976, 0.18374413275405654, 0.03637518566763642, 0.02105854248790162, 0.9683557864480118, 0.7658869161192506, 0.15001155431617907, 0.35752943732130615, 0.7420484996189338, 0.6752328655562005, 0.711745364416717, 0.8640867183828186, 0.43310600542152367, 0.9854927206786273, 0.6508332526032102, 0.5998648260777241, 0.7750981711063453, 0.1658647613055132, 0.6662264428342405, 0.8694545691573204, 0.8436449857572346, 0.08552680434263371, 0.7563505520866582, 0.747758744914542, 0.4481690078842646, 0.8232695269913234, 0.18925935349731293, 0.28526540334827943, 0.2967682885484576, 0.07915411192892008, 0.16372183243696847, 0.007206066329894845, 0.06748668253209211, 0.8830303823574521, 0.4443544568887632, 0.5952328542580857, 0.4358271588924667, 0.9890725949478896, 0.7756194424294659, 0.8806273783187722, 0.11700959929041566, 0.5798294496797445, 0.21673891657229993, 0.5534755793870226, 0.4833739954453685, 0.21746839364880566, 0.6917644786751267, 0.7594241364618992, 0.5040925285793458, 0.24599707891269407, 0.32631928250906106, 0.811423894801629, 0.0014380958220131523, 0.49786727441735923, 0.4101675882055107, 0.7259466969947344, 0.7901542686925396, 0.40448485057850003, 0.6264619897778017, 0.6103529923835719, 0.41430117501991803, 0.7004592079478454, 0.3708849547623566, 0.1571824739809804, 0.5026801394327733, 0.45321090289197474, 0.003514134690203563, 0.8320499567717163, 0.5841315000848677, 0.1434166059621247, 0.21903220495497455, 0.5688768373321852, 0.3078816501317231, 0.9995451182038299, 0.2130278557222065, 0.15848374918318708, 0.9878836448654039, 0.7625713469701559, 0.2661561701474152, 0.6544079197202097, 0.4168352326306827, 0.8675882900336179, 0.31311430370263604, 0.5770470356223192, 0.020629390572788897, 0.7465882549152739, 0.5084635039412251, 0.966231193043134, 0.26475841024704094, 0.7987949376380663, 0.4866212015742952, 0.055569687380784605, 0.34004942005907224, 0.838588758761579, 0.24186318545043917, 0.7989383235116152, 0.8521848178255973, 0.04447868053763526, 0.5116500916452054, 0.3113716405107413, 0.501354679497291, 0.9853667940008434, 0.5590876507427741, 0.06011660651960182, 0.8116337328152072, 0.5769051972498523, 0.5487889276955765, 0.6333214694977193, 0.8325909589485209, 0.10814411310375449, 0.28606069715904425, 0.21014354589221929, 0.7567179826754683, 0.22453391019109692, 0.1577458737878924, 0.5459135737709179, 0.17258847150324896, 0.9454474330495732, 0.07457600636306316, 0.9428332199979543, 0.15439564631553715, 0.7785675185934897, 0.6616401577966624, 0.2436377339352016, 0.31191031976934824, 0.623049093297175, 0.6943457369898334, 0.8594474349448951, 0.5426957965991329, 0.3660938943776251, 0.41317932241124744, 0.8597944934079952, 0.2869823270828068, 0.911291450650173, 0.9573720845814024, 0.06240409909545874, 0.3827923403299317, 0.8016089677228512, 0.6373200781209042, 0.1426627886964148, 0.01757956273792316, 0.5174949628975284, 0.19429978561373917, 0.6200284218406322, 0.16706017906804727, 0.40480047355846815, 0.33604223986875503, 0.35790732180484974, 0.13786884276666778, 0.6068941875855323, 0.06372068637520978, 0.4213702878611131, 0.9396561494710062, 0.04756757242989862, 0.2760676099147209, 0.8097182912189674, 0.6700263338227577, 0.08415515277717978, 0.6347090804693241, 0.5272415646327704, 0.7002726133926648, 0.5177089335701842, 0.1268151901189487, 0.07925962579664014, 0.1288521251189838, 0.506923009011914, 0.7905053193429653, 0.9051203898131881, 0.2196587927635375, 0.902419870887737, 0.8974549388834403, 0.986340230960395, 0.23398416798898658, 0.7392475110713226, 0.4232811855730937, 0.6679774757735311, 0.14561230918233736, 0.7171178949686057, 0.14186096352771504, 0.6512290854688936, 0.6488270869572966, 0.21337635504213015, 0.13729074598633728, 0.5553641514485609, 0.3825111379388899, 0.13539433658926037, 0.9608511583705941, 0.9689957566738054, 0.6295832156595482, 0.8602133488818653, 0.8078714492867474, 0.5132956724457122, 0.4430591752698755, 0.5936424497631876, 0.12860764644718303, 0.5544293652521474, 0.3521029292721939, 0.4939237858156248], \"y\": [0.6660328535674787, 0.4955559099445003, 0.11251030999551548, 0.5313240922219649, 0.7616845263358343, 0.42881839881496897, 0.22146723198036844, 0.2709448900825402, 0.04188686298684474, 0.3198999677935893, 0.586632325439729, 0.3332859260788763, 0.0891770245136605, 0.07249138429342028, 0.0813041402249215, 0.2808128557304226, 0.18155424903412543, 0.14020593233116785, 0.20529540916933675, 0.1755850319354616, 0.5722846846512241, 0.4684623303117058, 0.2863708053899042, 0.4489302200945696, 0.3606737334686688, 0.09834172337505831, 0.1439119889738254, 0.10526388551166177, 0.08976738859769384, 0.15927641460572795, 0.07353544332944184, 0.4894096639868448, 0.24735122968283396, 0.41440459167745447, 0.10107859516115147, 0.4809249647595707, 0.043928674649753696, 0.27268427565697984, 0.07203278686513981, 0.35989685204578803, 0.08410225657903847, 0.09640449279894714, 0.2859044620344169, 0.766491644508495, 0.27194216744256416, 0.11891721880979944, 0.6033870782914414, 0.8445823904457724, 0.4148378249676725, 0.09538880480821377, 0.5822786697287807, 0.2006236885231063, 0.30215903380660414, 0.3526626332448971, 0.22921561702294402, 0.3499358724503807, 0.451050436906263, 0.01968005574460141, 0.3849224947932618, 0.608666907839271, 0.30333177217190177, 0.05732515971384944, 0.08299070223644744, 0.155374347961305, 0.4378217303747408, 0.10641916767178827, 0.3207785913922725, 0.3280003244598044, 0.4747408725557203, 0.27229542413121455, 0.5314247042003052, 0.13834506443323813, 0.652508483608137, 0.1775869136191267, 0.4659209431511335, 0.3288332341233703, 0.47224603889779837, 0.2773569186284155, 0.18590272545123854, 0.6719763059805124, 0.04569198037744582, 0.22473444069733528, 0.0776074933333939, 0.1411968215808168, 0.3654892991508686, 0.06069899520469324, 0.21029328672965164, 0.13919371635861133, 0.16321149678759816, 0.6144435769482088, 0.1388055550317996, 0.0827658987104557, 0.0793107693477757, 0.04994940743047871, 0.46220165202879504, 0.08265172102971341, 0.5554564865761329, 0.10902951494304747, 0.26480674198345266, 0.31816712550642645, 0.20184400370343658, 0.23734670470511587, 0.19264674509953905, 0.03558879485690103, 0.5314247042003052, 0.3013473679880785, 0.8043030592862955, 0.07665185966197174, 0.17816243980233548, 0.14637302723887635, 0.43623195291339645, 0.5773286546676725, 0.06996409198491005, 0.0635191394270278, 0.11839391684253864, 0.03368970372860669, 0.16544292122901683, 0.5002106013252752, 0.20783967621931676, 0.4413184352618238, 0.1377753535318076, 0.017128038770129694, 0.09070427960766203, 0.05237321155563324, 0.46044782253877736, 0.09863911308639095, 0.6058955548956951, 0.07377868677997379, 0.33726125667837825, 0.03705661785513226, 0.03856885477325478, 0.01970319875133708, 0.06623921298607705, 0.655672818127978, 0.36403826442427, 0.375635621083512, 0.25822104517587474, 0.26990817233175546, 0.30316845466795117, 0.21597661143113533, 0.10411587283779344, 0.4582573305440075, 0.28974208538397184, 0.3995654588450376, 0.48407929824265805, 0.2412117545349558, 0.49704114689177337, 0.3112403223054312, 0.13571503940671914, 0.35304273602320047, 0.18963603484652192, 0.06023564559469896, 0.305863422303413, 0.34062746964654456, 0.03532029949184434, 0.20200996882548472, 0.207876095289533, 0.11304202998506685, 0.26487496820305634, 0.46674395287949066, 0.05931266843465788, 0.6063731497207538, 0.053339747820140615, 0.16056749669580483, 0.3366557342021428, 0.18735912995827353, 0.2667542380283816, 0.9197592959547904, 0.13322255285490225, 0.3533185668595151, 0.08763312389948397, 0.343329095265401, 0.1298321532292276, 0.11240742021865013, 0.03412749239977686, 0.23316671381479437, 0.13955591125269062, 0.065615492475942, 0.03940539431326806, 0.04874684240881699, 0.42507109047861347, 0.3720756994829524, 0.20627971812824875, 0.23346983492740092, 0.299872058778726, 0.14688925552714138, 0.20529540916933675, 0.11294333341234963, 0.4523771212155355, 0.15895981664313275, 0.12633289347617382, 0.34801013400503944, 0.063056887931354, 0.09222807982804315, 0.19281104432210028, 0.11843845992675284, 0.1064686731970873, 0.12171087020281346, 0.49704114689177337, 0.4202798549667376, 0.058322454167927695, 0.40418598015134155, 0.7514842711311043, 0.067978575311199, 0.1468497162592186, 0.3655805321171328, 0.36741292271676196, 0.08785516413846428, 0.4223454464089015, 0.09472348251934337, 0.14196098925812006, 0.10013555988874479, 0.32154631204965056, 0.05416575683382341, 0.786126361492164, 0.04696516601190348, 0.26926088858349784, 0.28123172687107445, 0.3094364396730669, 0.04307250962973752, 0.07126159086244754, 0.6143015945908075, 0.495586079448059, 0.46102608015166635, 0.40789311683600216, 0.8929715185951024, 0.1227006502272181, 0.3638055988942468, 0.10470002869891348, 0.29304213908849364, 0.8936703981375603, 0.3534407380188983, 0.0883666731866185, 0.07895584641700149, 0.05166417783587085, 0.4199775765299997, 0.10304865631077798, 0.1041340676595982, 0.11031385635331636, 0.22368578646300386, 0.22137255536682798, 0.0725394352715707, 0.08320759746190642, 0.3577905591727162, 0.36362749207413336, 0.13058702032609693, 0.4306817897420764, 0.4684623303117058, 0.3185463047756948, 0.6991046594229053, 0.33105510290791684, 0.35804773811787727, 0.3499358724503807, 0.17780319308126435, 0.07142366539796174, 0.1504846162366139, 0.28643330026545544, 0.11492102279820171, 0.08716328114311156, 0.12905574960179156, 0.5528531989583015, 0.2852168598030531, 0.3185463047756948, 0.41766807389819915, 0.22818770291371737, 0.10749415552266317, 0.07500089027222667, 0.2150933620687273, 0.4879833184669665, 0.21367083697314282, 0.18281788227943807, 0.11217648511765432, 0.01860460444149037, 0.4990100838788346, 0.3212979959143686, 0.7252893191599291, 0.30018855716775616, 0.2808216200321265, 0.24332849241566534, 0.22583693263898685, 0.307128141019565, 0.12930297020615966, 0.07734813107736227, 0.38078614076753503, 0.037937415915298756, 0.18389331462546077, 0.2015421194948802, 0.10121634311933059, 0.7209948827487924, 0.252131738577411, 0.19866278493931944, 0.5569604587758099, 0.19172534874952063, 0.07516041810443141, 0.18673310211333727, 0.20736440356309183, 0.27568985010185776, 0.1748501221961516, 0.134246332983591, 0.12151400729184814, 0.03860330573341564, 0.16198960071610413, 0.062309112953929935, 0.14943540958877521, 0.46827469198568006, 0.12435295831370408, 0.11768791031746062, 0.10794707492381372, 0.04347111427796346, 0.07423675680829, 0.1602542791395647, 0.19911642350143877, 0.2379444352717226, 0.36664322039668684, 0.10130143557253446, 0.17108028607870185, 0.6143194513817134, 0.5641235853966853, 0.29864316680665437, 0.44752301946823647, 0.13459844499503626, 0.037461465199631894, 0.5002964248569376, 0.4059565893810353, 0.7035957096210382, 0.0629603198376949, 0.25036415064992923, 0.14780834332950044, 0.24800647860056513, 0.10438723399855232, 0.24366911510822187, 0.4574644219698093, 0.8347014835967527, 0.42226245660703365, 0.4073158502222598, 0.47525484003715535, 0.37845934883934684, 0.35325777167774697, 0.4763432908647238, 0.18941100564626978, 0.23853527246002126, 0.27277355193056574, 0.5556171757583562, 0.19481513110659687, 0.7460207524242459, 0.12627308236197843, 0.2115813466591615, 0.4773837842994688, 0.22238536240250728, 0.1978655273089749, 0.32057959349203036, 0.1601330373243487, 0.6256605001243821, 0.34062746964654456, 0.5899158924001677, 0.1273375405407705, 0.6866376712310945, 0.3812864953771038, 0.07918534602430627, 0.10510921928053807, 0.052405178286905496, 0.29010285216427345, 0.5802968836962079, 0.4475494904811408, 0.33107045093633036, 0.6046547135519548, 0.33132995382553565, 0.3391582818855403, 0.37109937806185267, 0.18876467901964422, 0.03244681540368277, 0.6531311156123596, 0.18281848038190407, 0.06840545126676123, 0.23876166598551407, 0.5602062902528231, 0.05478334190217349, 0.18965009362393503, 0.502081053312289, 0.0945975060483667, 0.24937367783354814, 0.14040338921272166, 0.09582424632391484, 0.4879833184669665, 0.07536550594022651, 0.37763546052463404, 0.20240400638142053, 0.06234715971662652, 0.1729504208160284, 0.2536573606029918, 0.1491704939138675, 0.47224603889779837, 0.20734784509414073, 0.1656619584420439, 0.20263687678412212, 0.4576701693643329, 0.3746187330143109, 0.06578487521364562, 0.09359041291034786, 0.15714155813810793, 0.43198081216185935, 0.17693664965610134, 0.14200602748771296, 0.16878839641400256, 0.11131318694256087, 0.43040972974554736, 0.12494266711040569, 0.5286591337585229, 0.3917329141436472, 0.14284790216410748, 0.29931895876037384, 0.3998656181534954, 0.13198036366642862, 0.2166851793268345, 0.164669749255824, 0.3116999397838065, 0.5702002297218003, 0.2867818412254799, 0.05809024612643199, 0.0701620515557333, 0.10493669218879953, 0.03474255021640338, 0.14069518845012563, 0.7697788668098057, 0.44513161239284327, 0.12104291767226882, 0.2823656727566666, 0.28640273091276736, 0.09904459769556595, 0.10889384421684001, 0.1978655273089749, 0.6326587477498924, 0.0766186874204361, 0.07300117689776386, 0.3978521493117628, 0.7293533971641823, 0.24040337450518035, 0.46827469198568006, 0.03737110954461231, 0.48112847828662497, 0.5755848065786346, 0.12151472907643468, 0.332302417201758, 0.3208349144509022, 0.13406270144296106, 0.47820199098358873, 0.024219732643774528, 0.7923035912680444, 0.3099424932714111, 0.8494816644677875, 0.15230116664989468, 0.8795672599938588, 0.34536882843285344, 0.587897812361327, 0.3660303223369904, 0.3074082248441362, 0.1925553058603695, 0.1582957933341015, 0.5297945963993664, 0.1892543681582496, 0.06574637766643598, 0.03286461121245521, 0.6223124217546917, 0.48666930315350876, 0.17200815643270417, 0.27042696199957883, 0.16010429726024444, 0.25291734909108765, 0.22778758435893687, 0.6055190518965303, 0.41989528411161425, 0.2865861541738164, 0.17344095530188786, 0.4163761941495938, 0.24610426408478792, 0.029106329843254564, 0.5849270471051293, 0.09607886499379148, 0.4890296174547498, 0.11193395874659995, 0.3667485749721523, 0.29672938182784603, 0.13696827462710404, 0.03986507081677082, 0.41542023534722683, 0.1642424989032959, 0.041559354155004224, 0.1266666793707928, 0.5259198205822933, 0.42123490919744344, 0.6147437654518444, 0.42849246998341506, 0.04874684240881699, 0.16870816563337898, 0.35179373534084035, 0.4552463954734379, 0.1543174595222413, 0.4641274821418986, 0.1106599594415556, 0.40441066041397966, 0.05916303638108533, 0.24194101851814365, 0.5755848065786346, 0.23631147082452741, 0.04679471849088612, 0.33132995382553565, 0.6031606095022326, 0.16900214819844117, 0.9322526967181247, 0.1065938389205352, 0.0540586741766943, 0.14920224829950646, 0.03054451782098533, 0.13595064656866984, 0.15908339514281045, 0.09402391562754642, 0.27219479721363327, 0.10477531970828624, 0.6046547135519548, 0.04412971358840656, 0.0821245873848182, 0.24953715645213048, 0.24311299470472425, 0.679537413518331, 0.02875041056121841, 0.2874129658970298, 0.17131102264191878, 0.07042427222914205, 0.1577516063520068, 0.39934634677258996, 0.42249259173992826, 0.24940231538328683, 0.46827469198568006, 0.040988937643475554, 0.034828704291737345, 0.26663563965858417, 0.22421743312747255, 0.10716094829621758, 0.7421831263598226, 0.4644511163280224, 0.1591307416719686, 0.21502194578256428, 0.12883185373794437, 0.15520095945599266, 0.04280666734842442, 0.06928764484923078, 0.3578757504587543, 0.0760792945579073, 0.06637805380770656, 0.5755848065786346, 0.4326356954473739, 0.16985579355455038, 0.47152805642545803, 0.11644579282256762, 0.11790522998710073, 0.5438286352264949, 0.41561805514360906, 0.050606352251634235, 0.21836830194439782, 0.22298545275517268, 0.1504846162366139, 0.16819644397314482, 0.47796113776613436, 0.14100197907825862, 0.7878397890034206, 0.12176963827920351, 0.09814942480303201, 0.23162396036129984, 0.04400104962869911, 0.061588508633294015, 0.2774601068082493, 0.40816383821078206, 0.14036214651023216, 0.11837607594274324, 0.0703155477214753, 0.17002415827487982, 0.24611532014486182, 0.06874641727313702, 0.30975746960573625, 0.07004288447243323, 0.6453829176356538, 0.3880412370469972, 0.10205495289732236, 0.12171087020281346, 0.38550692709735157, 0.4398162761337091, 0.5769741243450848, 0.48842976274850136, 0.3866799681687785, 0.17129518728202664, 0.5711206597512044, 0.4456070955069118, 0.4585850027539752, 0.25462747480751524, 0.34771016550763867, 0.35548618548401445, 0.07878090041588082, 0.3008706318705062, 0.08117751180329491, 0.055511805197920094, 0.1600174453683395, 0.35597309965685686, 0.5473978930443646, 0.3321771897262046, 0.14643302530661162, 0.7653011157176768, 0.24188431843396252, 0.16704799028757666, 0.41136103198090634, 0.5749869949413896, 0.709238838470871, 0.09340318303147321, 0.602429869503323, 0.04154705947390969, 0.7519582179986716, 0.15993940416551844, 0.04372375151311325, 0.4076899811241429, 0.4644511163280224, 0.3133137248525114, 0.24628490675063597, 0.06972977174174444, 0.15949948541388637, 0.2241543425141257, 0.1729876202034616, 0.07290025122558275, 0.1220000714032804, 0.36493953208423235, 0.09420126302076737, 0.026726938234992392, 0.7199273032686843, 0.4606762448039463, 0.04906818437448113, 0.19446415942665518, 0.14876853598344464, 0.3247816953453747, 0.023320858692869595, 0.7310618090422621, 0.48944479260603346, 0.20357574295749958, 0.0840537250624015, 0.5368744051465595, 0.21101467800102214, 0.46682279298460017, 0.3749869638443927, 0.46592999202179275, 0.10188412989688433, 0.15751976448865512]}], \"layout\": {\"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"range\": [-2, 3], \"showticklabels\": false}, \"yaxis\": {\"title\": {\"text\": \"Probability\"}}}}}]}, \"insights\": [], \"additionalGraphs\": [], \"alerts\": [], \"tabs\": []}, {\"type\": \"tabbed_graph\", \"title\": \"Reference: Probability Distribution\", \"size\": 1, \"details\": \"\", \"alertsPosition\": null, \"alertStats\": null, \"params\": {\"graphs\": [{\"id\": \"tab_good\", \"title\": \"good\", \"graph\": {\"data\": [{\"autobinx\": false, \"histnorm\": \"probability density\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#ed0400\"}, \"name\": \"good\", \"opacity\": 0.7, \"type\": \"histogram\", \"x\": [0.8156061324462894, 0.42491310922683634, 0.8867827646463432, 0.8014995238430205, 0.30499958310650876, 0.5817355832705369, 0.959171062334887, 0.7854416128369749, 0.9085690698200813, 0.8998600376511439, 0.6341165000693628, 0.412102187638673, 0.7643629411050379, 0.4710001938005606, 0.40182653035141874, 0.40438056362905367, 0.8870480016118494, 0.3650667978415713, 0.9064321709292111, 0.9327245345966092, 0.6458420185168736, 0.8821841129047617, 0.6704018506542557, 0.7655671181822064, 0.8616986618932058, 0.48774537944210006, 0.9637355036179479, 0.6794204065079696, 0.6044835155949141, 0.7867954023600708, 0.9137982268836646, 0.5867502063434873, 0.8048584290077971, 0.9718511071053526, 0.9627192884041744, 0.7978623718349598, 0.6091120966723917, 0.8943338178728011, 0.8853376735027229, 0.9045563504021151, 0.9264844632598176, 0.6342457655367447, 0.9414033426130164, 0.5636516403732365, 0.5172967922101196, 0.4836896337264441, 0.35199620689495453, 0.788779954566273, 0.9696552399248426, 0.772496554239754, 0.8132656157621138, 0.4539090261140653, 0.9333708926412786, 0.679765045723866, 0.48457442622955804, 0.4248820606938153, 0.6737819616086004, 0.8780741425819777, 0.38340602447337646, 0.90634085684919, 0.5574014604752268, 0.6804147683859246, 0.9077110088845216, 0.7718472635729894, 0.4717552048891654, 0.22222808308441652, 0.8616549355667619, 0.705749071892896, 0.4699129352300819, 0.9680524782819758, 0.8891353183282249, 0.9466602521798594, 0.8553382520847058, 0.7430243903066251, 0.6616131862201935, 0.6919609500216202, 0.96565744679506, 0.913108907487878, 0.5395521774612226, 0.9026238558501023, 0.6550941529376255, 0.9757876320152292, 0.8833495792027257, 0.6666029765862381, 0.8504582120840628, 0.9320215595878566, 0.7639947574915884, 0.6085229656221847, 0.9557131606798471, 0.46184432615952054, 0.5642658412077981, 0.8815615400732472, 0.7189203536918151, 0.9301020530176726, 0.7341394174346678, 0.7759189559372703, 0.8448078654733812, 0.9012666081120407, 0.8926028620066223, 0.5287492720273277, 0.6874206920638863, 0.37408584674942635, 0.8348370105186077, 0.8697567261320243, 0.9175759024810304, 0.44644098895981, 0.8874384748400057, 0.7787567487441118, 0.9416122482572158, 0.3265229243180111, 0.9308095750950773, 0.42267134533232753, 0.43068181214270274, 0.8727308285810839, 0.7201611177732586, 0.8430904589044517, 0.8140617541555761, 0.9456747441572588, 0.6672663325862807, 0.8756470416862959, 0.518871521713375, 0.7040615347784164, 0.4957960231649875, 0.6250130361556073, 0.27413726132188326, 0.5193133578087885, 0.37656641690434584, 0.5808048103476511, 0.7917827117482167, 0.36569143480873245, 0.7232542293832885, 0.9785934574433302, 0.5715075300165849, 0.8182555969893297, 0.5448461144048058, 0.9491291995847589, 0.4833587957991669, 0.3189279754564957, 0.9184825510014271, 0.5524830505676419, 0.9600429304649183, 0.7818180966165994, 0.7962710274484252, 0.7569429870375118, 0.46184432615952054, 0.7641514270390748, 0.9486763575522457, 0.8086368705092697, 0.6784536879503494, 0.6877019790624462, 0.6082670858563528, 0.6053794617794684, 0.6319330693089359, 0.4982105707488519, 0.6787928880949093, 0.9231980717613485, 0.8831230955067948, 0.6845485656817341, 0.8799204262605215, 0.9164563829924386, 0.7819268199067826, 0.23469888428232324, 0.9492377841603665, 0.8826092272015389, 0.6360541596480074, 0.5184081252698399, 0.6400126753125241, 0.542646305979658, 0.4479501208302092, 0.7783171875827786, 0.7867712153112567, 0.5236605417423803, 0.6959846197179591, 0.7925023358445066, 0.6683189355892497, 0.18737025221649042, 0.42506327048176057, 0.7272596040941706, 0.7314191754306454, 0.4827891324637794, 0.6649341228620356, 0.9038332731164471, 0.9588917860646077, 0.8945194928389463, 0.49833043835950624, 0.7997712594855277, 0.8577935987172323, 0.7622736922026153, 0.8039391974899521, 0.7396811504731934, 0.8115340233127679, 0.801728888664367, 0.738451208106372, 0.5859674792922007, 0.1865203674848816, 0.8773430435604171, 0.36888329310067386, 0.8651817982269884, 0.9067615420962557, 0.8594983988587351, 0.7437750884018276, 0.9145224932934428, 0.9135679891815164, 0.8001832456898428, 0.6860977766129374, 0.9377826008632761, 0.9300369611912853, 0.6997062971069969, 0.5693182102579236, 0.3404656140239559, 0.7160591142088384, 0.7953146078011, 0.8869803873277935, 0.7639982823097876, 0.8681285227071118, 0.576868797021353, 0.93035102563313, 0.8375600281828176, 0.8279918435672958, 0.9266689436294401, 0.7559862346636359, 0.5099889666930224, 0.6914445842613687, 0.9651950326885705, 0.87851968214492, 0.8499702807396289, 0.4685752957996948, 0.7241546992314323, 0.7848147251007912, 0.7341394174346678, 0.7008877443692281, 0.340588975625529, 0.5013021766499856, 0.8321174529331695, 0.8818378666553491, 0.9176909075187759, 0.8634678749265305, 0.7436082905772717, 0.9343776659412377, 0.7668809937296346, 0.6243383802582345, 0.5332560471205093, 0.6907315465649003, 0.16626803588025432, 0.1668542888532837, 0.7408943843163458, 0.5221312328975666, 0.7457559475413279, 0.46389636934606376, 0.9292627865919654, 0.5268311186840582, 0.4244151934213653, 0.643310536612302, 0.8577438313980266, 0.7816208399762355, 0.8553382520847058, 0.7010035672814305, 0.5242572272016158, 0.9187320011579697, 0.8703498177621264, 0.6713045345576062, 0.9137982268836646, 0.8614414457916845, 0.9445662266054761, 0.8808216590199034, 0.7386378115490353, 0.8873009977622293, 0.9157094897337859, 0.6606038558129893, 0.9296803968514485, 0.8864322240790464, 0.5146720135715994, 0.8720710714485208, 0.9415427660945741, 0.9138701141498735, 0.6527559092576063, 0.8751970040938668, 0.9249766460056568, 0.801728888664367, 0.6575848465963361, 0.6934824043184128, 0.8619113960143526, 0.9419078024651042, 0.9591721389341828, 0.8397407150753159, 0.9084383840076588, 0.4963969309336195, 0.7359588175524252, 0.3531961907069324, 0.9279819479140234, 0.7752976919572294, 0.8665226278427577, 0.9515211055933231, 0.7314191754306454, 0.890886918514299, 0.3235491032739525, 0.3719939405423586, 0.6323804178173072, 0.8398006965792015, 0.8239469134189235, 0.8592101816891015, 0.7615002907198236, 0.8688259750909261, 0.8718104001390852, 0.5838074755684882, 0.8756470416862959, 0.901850575196968, 0.9451930143658351, 0.6253812669856891, 0.5890764576710766, 0.4921052500998711, 0.4862070578416567, 0.9170647663398394, 0.7035583451969506, 0.8476385889092957, 0.5603058978573646, 0.5810606890504925, 0.9088604673919816, 0.8903252600075929, 0.944267921154058, 0.9435968591480925, 0.938237366988842, 0.9357286047893738, 0.7961386682142712, 0.7840233885688647, 0.2513590507613302, 0.7389284097502917, 0.9053472250810051, 0.44438282424164377, 0.862281110352348, 0.8021059248496223, 0.9152740930046814, 0.643737358401971, 0.8540304955499701, 0.8613418170006786, 0.6911084183178322, 0.8848367871057808, 0.8387883096682573, 0.5942651630821018, 0.65691393717736, 0.6369979527510315, 0.8280658524313272, 0.9640736168216585, 0.6546311715671466, 0.5599819536107853, 0.48348053317652906, 0.7668016587569692, 0.03620763244300767, 0.7364400865449663, 0.37408584674942635, 0.8767503774172, 0.8743962287172513, 0.8751970040938668, 0.8833495792027257, 0.7091886355621774, 0.87006937054451, 0.7904001815220257, 0.8761418339280951, 0.8306834851111597, 0.7531715889012326, 0.38181207472529843, 0.6490458991820136, 0.9138057013338913, 0.9046222904886461, 0.17956061692355052, 0.7506163079023257, 0.8963285795381793, 0.8848361664653354, 0.9283037217377402, 0.45996158699034445, 0.7290858434196763, 0.8319094967702583, 0.6578018675312727, 0.18727567457681707, 0.8673410249845035, 0.9453298670648187, 0.9446538464906173, 0.19605573045952288, 0.6723831041639817, 0.3438281302059518, 0.37858973820495484, 0.6953170483296187, 0.21463507152544156, 0.26963792069965237, 0.3280912492037974, 0.8399932187801539, 0.420387898633768, 0.36522500752858966, 0.5810560693343539, 0.9306346767722963, 0.7167716539092029, 0.656736106921484, 0.5549139996760648, 0.6909161521388689, 0.591904263202073, 0.884703171197362, 0.866402281883595, 0.7582770814524421, 0.8990773411030794, 0.1818065866116437, 0.6222165686186035, 0.17261914235374884, 0.8156064679757086, 0.4851213943917703, 0.8871292211128762, 0.8398494053952754, 0.703270618172154, 0.6305543892506115, 0.7494149477175548, 0.1532408287022325, 0.6159732902773407, 0.738220551127759, 0.8354520044441791, 0.8536870432671441, 0.5751476712690671, 0.9077719201719568, 0.7878515691455199, 0.6672663325862807, 0.45293736875445273, 0.17058553029544155, 0.747933377844996, 0.8400163125056676, 0.4516778718827729, 0.6082670858563528, 0.8401843469141149, 0.7636885291754726, 0.789170795337903, 0.8128612802083497, 0.7522530659814418, 0.8086757686066508, 0.8356255123032285, 0.9241779635105248, 0.9674588597049086, 0.9368885694202199, 0.4990764491242286, 0.876561204324957, 0.554264192243629, 0.5967716244634195, 0.9060244606340249, 0.8401608718856799, 0.7329750583133859, 0.8021769878309102, 0.9316817655017511, 0.45488322534173153, 0.798578398438993, 0.7425236774748816, 0.5742682328784404, 0.4937681935814938, 0.8972164286692267, 0.8914273370768748, 0.9377613518261881, 0.8862258850530264, 0.8591757581361523, 0.7410678096850266, 0.6822336012657398, 0.9201658505843877, 0.6982578893131915, 0.5746709232170782, 0.7626532952948841, 0.7137703530889916, 0.7520971196461234, 0.4473853625959922, 0.7957460056304991, 0.4833174871501707, 0.8758467705785958, 0.4689303842787964, 0.6133612564737879, 0.8568681391705205, 0.6835133967314007, 0.9732070839986944, 0.21435716257549006, 0.5761668962420043, 0.4055433603128916, 0.3743394998756179, 0.9118635774953143, 0.964551884718591, 0.9306459334511011, 0.8424802355113449, 0.7739144871152517, 0.6872688771534424, 0.8590561833388345, 0.6714384475466295, 0.6408669500407106, 0.5203550269219845, 0.2856853969697174, 0.857760555506807, 0.9307094503226838, 0.6787928880949093, 0.8308635255795866, 0.29271374211533296, 0.6769315553524353, 0.23831547366416572, 0.5895099457120908, 0.8994675076574448, 0.8893400405584444, 0.8456825404777587, 0.5399612081435882, 0.6188649121485582, 0.9281492942813848, 0.7611740601422801, 0.46550237374781617, 0.8896861436466836, 0.9038901015569306, 0.5044440900554997, 0.9215480939667524, 0.6930273792518707, 0.8723244804196287, 0.5624338775604165, 0.9226297661236537, 0.8469231754225917, 0.9430557295321259, 0.9097116306258912, 0.5988707702267543, 0.3813853072548755, 0.8843832309478876, 0.9006952500629406, 0.918975987201669, 0.18997930334445084, 0.8923106748541326, 0.8461388699436441, 0.5973439234355874, 0.9544642924744549, 0.91770416680597, 0.9177239854204658, 0.17584552180125673, 0.9240099144459667, 0.48524948024905407, 0.8889685222180134, 0.5785503824403398, 0.7511953459672914, 0.6887596776945688, 0.6717539058356753, 0.7168761391602206, 0.7134478068952186, 0.834626350903405, 0.5715867980362679, 0.6588392688727011, 0.9488572786900573, 0.8920529250761863, 0.8891353183282249, 0.707981940789761, 0.926348680038428, 0.631489487929038, 0.7443856388661001, 0.9260754381930228, 0.9544642924744549, 0.8497401318990601, 0.5604010177433062, 0.8036334301115304, 0.7898153537185114, 0.8491431337122072, 0.6570881560807702, 0.8389599143569951, 0.7944137576415592, 0.8132668978866627, 0.44714680104169846, 0.7978021044641371, 0.41921696608658454, 0.38876183891604754, 0.9248463736054193, 0.4277915265084825, 0.6345107008491314, 0.8008942533173764, 0.5087430598332189, 0.9414938992689892, 0.6922115882765215, 0.8296175750175913, 0.8593339228153332, 0.8975141534758351, 0.5977126281557783, 0.9279478536756302, 0.6485770817571253, 0.8905823996589662, 0.9332072841984264, 0.9432461110830079, 0.9410120781436498, 0.6339696776630096, 0.7120962557761497, 0.5841709037351369, 0.5928970840420333, 0.9006589732900512, 0.936371533648048, 0.6907852379101131, 0.7675780198071424, 0.9444587893431046, 0.4702336163336472, 0.8925536722101626, 0.8158978708906081, 0.822780392485108, 0.8037335327290217, 0.8382351003285965, 0.8941557358589171, 0.4796498334522667, 0.926348680038428, 0.6842118015950474, 0.6463580983468415, 0.8292048071278182, 0.5834426687867836, 0.8419845362148763, 0.2431563391580561, 0.7763142135369961, 0.9390550746437164, 0.7774903237071782, 0.8141232663130791, 0.9444089886680379, 0.430401459478284, 0.9192677156927759, 0.8427595869840984, 0.87120858451521, 0.5693182102579236, 0.820012080301976, 0.58719119911586, 0.42769376643096113, 0.3542595869275313, 0.89579938191327, 0.8743523014696554, 0.7820497043505815, 0.5279069501129625, 0.8869579700149332, 0.45488774279476296, 0.8514781135508903, 0.8278297091497892, 0.663749097381813, 0.5132851713944618, 0.4906566565015208, 0.6415219885510332, 0.6991293681294938, 0.8150539074042624, 0.5800669536763935, 0.9583771200922359, 0.7366090055976814, 0.5747817696023392, 0.5315376696882942, 0.8074446941396305, 0.9038901015569306, 0.9087015650331977, 0.6697291810323083, 0.5800669536763935, 0.8807270543114014, 0.5135845984304893, 0.9352791850238339, 0.36120709973337456, 0.6206709330576408, 0.906286252315459, 0.7937202818717513], \"xaxis\": \"x\", \"xbins\": {\"end\": 0.9785934574433302, \"size\": 0.05, \"start\": 0.03620763244300767}, \"yaxis\": \"y\"}, {\"autobinx\": false, \"histnorm\": \"probability density\", \"legendgroup\": \"other\", \"marker\": {\"color\": \"#4d4d4d\"}, \"name\": \"other\", \"opacity\": 0.7, \"type\": \"histogram\", \"x\": [0.2802292104526322, 0.9455194119275858, 0.4978743212349556, 0.5289145624519528, 0.28439238707197784, 0.2033309570226689, 0.27345747478543325, 0.8322873304845451, 0.389055896812549, 0.3675472469853882, 0.5781933746273124, 0.7401955299744071, 0.44969671697605845, 0.4367887814338696, 0.31593955341667695, 0.3775624358859999, 0.19282181046294666, 0.048451763306065584, 0.6005928650583868, 0.032225376113695775, 0.427412413738938, 0.23973251442015217, 0.13890126550157303, 0.8613925272127, 0.329663916828638, 0.19359965390713213, 0.6827271716759634, 0.1960905505555538, 0.08135735686643118, 0.39737240301928484, 0.13902987396822816, 0.6514166433739288, 0.6994753721471061, 0.7140886736258081, 0.5021795028970708, 0.48743245558712556, 0.5731139673640956, 0.8820820642542792, 0.559972149724866, 0.5061565591493914, 0.5066810377847554, 0.833805652807593, 0.6979972163580744, 0.3177574231538272, 0.13068190592986567, 0.758876109553896, 0.5681062961269688, 0.715544821914063, 0.762062625203523, 0.4464438677531786, 0.20995974230910305, 0.5262622410710028, 0.39442669669188163, 0.2537324982988368, 0.6775437642744659, 0.23876321589577687, 0.6369158982934647, 0.38960060362966165, 0.6034323722874255, 0.7769991715799629, 0.15199748354041337, 0.5641412449951732, 0.7590466800561823, 0.5969347905931296, 0.1048362779837843, 0.7217824369593382, 0.2662339163773806, 0.16472378978351135, 0.37760124376932414, 0.7071736299639594, 0.3436862995931572, 0.8384434752264291, 0.3635333644877426, 0.7813188949129265, 0.7279369976219869, 0.5641098847382463, 0.3863964747623771, 0.9209913370067284, 0.1477144681640183, 0.8809374658555192, 0.6533168894759348, 0.8873477284758582, 0.3697306267878623, 0.28319023347825867, 0.5203701741750857, 0.5523747693308857, 0.6387521731780509, 0.3881380695009739, 0.8487896327149285, 0.4636606453307818, 0.8384434752264291, 0.558266603669778, 0.21657231888677728, 0.3635333644877426, 0.5512671313974766, 0.5051039398599867, 0.5827915753039158, 0.49441682850108926, 0.47309171914705017, 0.6262595591688196, 0.5508242483721094, 0.47332791509789995, 0.7117569366896692, 0.3933786516273859, 0.16465066549244003, 0.7490394132223248, 0.769261050002088, 0.7431932405995126, 0.3141000916210982, 0.723735045552473, 0.6484132891031948, 0.688519894019609, 0.40496704226994307, 0.5803736122960511, 0.6327801522745691, 0.45115706990411364, 0.37268733756108086, 0.9009693101135351, 0.06496389958099598, 0.44431713201158524, 0.39960831974332744, 0.8662156944598043, 0.31018081106061823, 0.5339551117365043, 0.33311273919547707, 0.400132762133902, 0.8528754522806217, 0.14419347879543085, 0.11672350429510901, 0.44556702529145975, 0.6160120899414699, 0.13766892845409207, 0.5517204028384314, 0.5232178919035022, 0.35483403305733974, 0.4900213704561591, 0.8854578072659228, 0.43084122675663034, 0.7601186327653665, 0.14072030431570776, 0.6186690618327106, 0.5245054232921349, 0.7326259458716644, 0.5690781983520095, 0.4018508815425063, 0.24877469563805235, 0.7952501197393639, 0.8766221356386195, 0.303451532996695, 0.5357745481647883, 0.7096524147827454, 0.20877177283968149, 0.8635610141758273, 0.46736762313881036, 0.6061151992073851, 0.113015272873705, 0.40446014603085867, 0.6332606063976143, 0.648705381890928, 0.42186952587750404, 0.8047913565308571, 0.3017058309841093, 0.38406990132164637, 0.33494193042999065, 0.19929939967121216, 0.8624919783238055, 0.528785836409086, 0.43084122675663034, 0.47042159929499583, 0.5061565591493914, 0.5759491569657543, 0.8468794444363914, 0.20342296359496542, 0.5170831534483544, 0.3666753044655067, 0.6131723001375537, 0.4410646109528086, 0.6903416342484309, 0.3866428492574258, 0.4636606453307818, 0.4525459302795702, 0.03199256040434073, 0.7029629492254846, 0.2433141614541866, 0.548755973819273, 0.3775060302547258, 0.06593060991448157, 0.8745624549148976, 0.22931948662359403, 0.27267688907931714, 0.589328430619086, 0.8007160756317941, 0.5525637789187225, 0.5008522318356121, 0.4556212410144909, 0.17391722008742402, 0.43574637053357784, 0.3237440077649342, 0.6071692164257629, 0.6925152430641841, 0.592675381607996, 0.43854150134957587, 0.43854150134957587, 0.42437112972565305, 0.8061118855433299, 0.35195592295594336, 0.7605370065149419, 0.38898578429124253, 0.67510953655807, 0.872979709380305, 0.710510994258769, 0.720290290780972, 0.4820787970895852, 0.42019280799979697, 0.4304380754474639, 0.25285023254778977, 0.3238056884730761, 0.39471961640683584, 0.09510031985475974, 0.367046376808582, 0.21500793651835448, 0.8705359023101334, 0.6100742529031461, 0.6226449432624995, 0.7279369976219869, 0.3643494054700089, 0.09992017521484964, 0.41475515148757036, 0.6462260464983366, 0.14102909592513518, 0.48949585696458414, 0.5239520436918008, 0.6084413884537807, 0.5655473856702703, 0.9517420512476797, 0.7489379515982664, 0.4647937384849751, 0.7915321263825208, 0.44112279258530757, 0.5734340256727429, 0.6604471727860799, 0.4845203185458914, 0.6968730453869196, 0.5315374962198609, 0.8685951485887234, 0.6242442748350044, 0.2912097196987059, 0.7725938221565348, 0.2067629769731588, 0.30221725334927335, 0.13129342562285412, 0.6467789443522378, 0.6994753721471061, 0.11825382206919556, 0.41022417118631593, 0.4882665226122541, 0.7732287086973071, 0.25374762405010176, 0.49441682850108926, 0.3723877205427743, 0.652330313245635, 0.43667799883041203, 0.5964718913578133, 0.55172276504346, 0.24113559934961917, 0.8243980268882987, 0.7263843594269437, 0.43535214809021755, 0.8721122798612579, 0.18723914490145582, 0.6486906676970999, 0.11576704656818047, 0.4328241622975616, 0.491481212420291, 0.5264345378086769, 0.33856526784971647, 0.2967410926251248, 0.581398831228375, 0.5973776665460488, 0.6195406102170065, 0.37782717658841725, 0.323061133240968, 0.17420808473594895, 0.19634770547538957, 0.46492234760650425, 0.49613167963272686, 0.5812209036149294, 0.6057291775435286, 0.63414717387345, 0.5702687187355167, 0.8604975146328253, 0.6309022132706124, 0.48732991249542923, 0.6887148870948692, 0.41581945293096145, 0.5706760596351739, 0.4831274653996314, 0.06684727567316755, 0.49090643211649887, 0.15191610726090596, 0.2711405311223577, 0.7653618545702112, 0.09266565137124261, 0.4554350627407873, 0.19698919164573708, 0.6930185080649685, 0.5227537922811563, 0.50434568709929, 0.7082092780767422, 0.46058046365566996, 0.6735723234187477, 0.4285936050615775, 0.323061133240968, 0.5168500865319015, 0.6161307914674419, 0.23456444218973552, 0.3192004782541023, 0.21968945907811915, 0.5028183230931117, 0.43371621376298963, 0.6744209213341115, 0.5940260419772637, 0.13783310426722128, 0.5136444387530009, 0.5508647999875032, 0.4955911012838212, 0.9814394195009358, 0.8260225289794664, 0.17965956338109995, 0.46844896472597397, 0.6048119589659149, 0.3289160319090978, 0.2454606394453749, 0.7497022835596558, 0.683485355417811, 0.20995974230910305, 0.23504578258460665, 0.37175956099497537, 0.4875530438829156, 0.24982584224249993, 0.6282829625348888, 0.4520795162158371, 0.8200372413039435, 0.12832513643528837, 0.5299630655130737, 0.29552777318700446, 0.24021937552346023, 0.5429028773737552, 0.6311869746243346, 0.4145977043912777, 0.39329840463575844, 0.39070335653410526, 0.4286990948130573, 0.846836560604146, 0.6880850122626078], \"xaxis\": \"x\", \"xbins\": {\"end\": 0.9814394195009358, \"size\": 0.05, \"start\": 0.03199256040434073}, \"yaxis\": \"y\"}, {\"legendgroup\": \"good\", \"marker\": {\"color\": \"#ed0400\", \"symbol\": \"line-ns-open\"}, \"mode\": \"markers\", \"name\": \"good\", \"showlegend\": false, \"type\": \"scatter\", \"x\": [0.8156061324462894, 0.42491310922683634, 0.8867827646463432, 0.8014995238430205, 0.30499958310650876, 0.5817355832705369, 0.959171062334887, 0.7854416128369749, 0.9085690698200813, 0.8998600376511439, 0.6341165000693628, 0.412102187638673, 0.7643629411050379, 0.4710001938005606, 0.40182653035141874, 0.40438056362905367, 0.8870480016118494, 0.3650667978415713, 0.9064321709292111, 0.9327245345966092, 0.6458420185168736, 0.8821841129047617, 0.6704018506542557, 0.7655671181822064, 0.8616986618932058, 0.48774537944210006, 0.9637355036179479, 0.6794204065079696, 0.6044835155949141, 0.7867954023600708, 0.9137982268836646, 0.5867502063434873, 0.8048584290077971, 0.9718511071053526, 0.9627192884041744, 0.7978623718349598, 0.6091120966723917, 0.8943338178728011, 0.8853376735027229, 0.9045563504021151, 0.9264844632598176, 0.6342457655367447, 0.9414033426130164, 0.5636516403732365, 0.5172967922101196, 0.4836896337264441, 0.35199620689495453, 0.788779954566273, 0.9696552399248426, 0.772496554239754, 0.8132656157621138, 0.4539090261140653, 0.9333708926412786, 0.679765045723866, 0.48457442622955804, 0.4248820606938153, 0.6737819616086004, 0.8780741425819777, 0.38340602447337646, 0.90634085684919, 0.5574014604752268, 0.6804147683859246, 0.9077110088845216, 0.7718472635729894, 0.4717552048891654, 0.22222808308441652, 0.8616549355667619, 0.705749071892896, 0.4699129352300819, 0.9680524782819758, 0.8891353183282249, 0.9466602521798594, 0.8553382520847058, 0.7430243903066251, 0.6616131862201935, 0.6919609500216202, 0.96565744679506, 0.913108907487878, 0.5395521774612226, 0.9026238558501023, 0.6550941529376255, 0.9757876320152292, 0.8833495792027257, 0.6666029765862381, 0.8504582120840628, 0.9320215595878566, 0.7639947574915884, 0.6085229656221847, 0.9557131606798471, 0.46184432615952054, 0.5642658412077981, 0.8815615400732472, 0.7189203536918151, 0.9301020530176726, 0.7341394174346678, 0.7759189559372703, 0.8448078654733812, 0.9012666081120407, 0.8926028620066223, 0.5287492720273277, 0.6874206920638863, 0.37408584674942635, 0.8348370105186077, 0.8697567261320243, 0.9175759024810304, 0.44644098895981, 0.8874384748400057, 0.7787567487441118, 0.9416122482572158, 0.3265229243180111, 0.9308095750950773, 0.42267134533232753, 0.43068181214270274, 0.8727308285810839, 0.7201611177732586, 0.8430904589044517, 0.8140617541555761, 0.9456747441572588, 0.6672663325862807, 0.8756470416862959, 0.518871521713375, 0.7040615347784164, 0.4957960231649875, 0.6250130361556073, 0.27413726132188326, 0.5193133578087885, 0.37656641690434584, 0.5808048103476511, 0.7917827117482167, 0.36569143480873245, 0.7232542293832885, 0.9785934574433302, 0.5715075300165849, 0.8182555969893297, 0.5448461144048058, 0.9491291995847589, 0.4833587957991669, 0.3189279754564957, 0.9184825510014271, 0.5524830505676419, 0.9600429304649183, 0.7818180966165994, 0.7962710274484252, 0.7569429870375118, 0.46184432615952054, 0.7641514270390748, 0.9486763575522457, 0.8086368705092697, 0.6784536879503494, 0.6877019790624462, 0.6082670858563528, 0.6053794617794684, 0.6319330693089359, 0.4982105707488519, 0.6787928880949093, 0.9231980717613485, 0.8831230955067948, 0.6845485656817341, 0.8799204262605215, 0.9164563829924386, 0.7819268199067826, 0.23469888428232324, 0.9492377841603665, 0.8826092272015389, 0.6360541596480074, 0.5184081252698399, 0.6400126753125241, 0.542646305979658, 0.4479501208302092, 0.7783171875827786, 0.7867712153112567, 0.5236605417423803, 0.6959846197179591, 0.7925023358445066, 0.6683189355892497, 0.18737025221649042, 0.42506327048176057, 0.7272596040941706, 0.7314191754306454, 0.4827891324637794, 0.6649341228620356, 0.9038332731164471, 0.9588917860646077, 0.8945194928389463, 0.49833043835950624, 0.7997712594855277, 0.8577935987172323, 0.7622736922026153, 0.8039391974899521, 0.7396811504731934, 0.8115340233127679, 0.801728888664367, 0.738451208106372, 0.5859674792922007, 0.1865203674848816, 0.8773430435604171, 0.36888329310067386, 0.8651817982269884, 0.9067615420962557, 0.8594983988587351, 0.7437750884018276, 0.9145224932934428, 0.9135679891815164, 0.8001832456898428, 0.6860977766129374, 0.9377826008632761, 0.9300369611912853, 0.6997062971069969, 0.5693182102579236, 0.3404656140239559, 0.7160591142088384, 0.7953146078011, 0.8869803873277935, 0.7639982823097876, 0.8681285227071118, 0.576868797021353, 0.93035102563313, 0.8375600281828176, 0.8279918435672958, 0.9266689436294401, 0.7559862346636359, 0.5099889666930224, 0.6914445842613687, 0.9651950326885705, 0.87851968214492, 0.8499702807396289, 0.4685752957996948, 0.7241546992314323, 0.7848147251007912, 0.7341394174346678, 0.7008877443692281, 0.340588975625529, 0.5013021766499856, 0.8321174529331695, 0.8818378666553491, 0.9176909075187759, 0.8634678749265305, 0.7436082905772717, 0.9343776659412377, 0.7668809937296346, 0.6243383802582345, 0.5332560471205093, 0.6907315465649003, 0.16626803588025432, 0.1668542888532837, 0.7408943843163458, 0.5221312328975666, 0.7457559475413279, 0.46389636934606376, 0.9292627865919654, 0.5268311186840582, 0.4244151934213653, 0.643310536612302, 0.8577438313980266, 0.7816208399762355, 0.8553382520847058, 0.7010035672814305, 0.5242572272016158, 0.9187320011579697, 0.8703498177621264, 0.6713045345576062, 0.9137982268836646, 0.8614414457916845, 0.9445662266054761, 0.8808216590199034, 0.7386378115490353, 0.8873009977622293, 0.9157094897337859, 0.6606038558129893, 0.9296803968514485, 0.8864322240790464, 0.5146720135715994, 0.8720710714485208, 0.9415427660945741, 0.9138701141498735, 0.6527559092576063, 0.8751970040938668, 0.9249766460056568, 0.801728888664367, 0.6575848465963361, 0.6934824043184128, 0.8619113960143526, 0.9419078024651042, 0.9591721389341828, 0.8397407150753159, 0.9084383840076588, 0.4963969309336195, 0.7359588175524252, 0.3531961907069324, 0.9279819479140234, 0.7752976919572294, 0.8665226278427577, 0.9515211055933231, 0.7314191754306454, 0.890886918514299, 0.3235491032739525, 0.3719939405423586, 0.6323804178173072, 0.8398006965792015, 0.8239469134189235, 0.8592101816891015, 0.7615002907198236, 0.8688259750909261, 0.8718104001390852, 0.5838074755684882, 0.8756470416862959, 0.901850575196968, 0.9451930143658351, 0.6253812669856891, 0.5890764576710766, 0.4921052500998711, 0.4862070578416567, 0.9170647663398394, 0.7035583451969506, 0.8476385889092957, 0.5603058978573646, 0.5810606890504925, 0.9088604673919816, 0.8903252600075929, 0.944267921154058, 0.9435968591480925, 0.938237366988842, 0.9357286047893738, 0.7961386682142712, 0.7840233885688647, 0.2513590507613302, 0.7389284097502917, 0.9053472250810051, 0.44438282424164377, 0.862281110352348, 0.8021059248496223, 0.9152740930046814, 0.643737358401971, 0.8540304955499701, 0.8613418170006786, 0.6911084183178322, 0.8848367871057808, 0.8387883096682573, 0.5942651630821018, 0.65691393717736, 0.6369979527510315, 0.8280658524313272, 0.9640736168216585, 0.6546311715671466, 0.5599819536107853, 0.48348053317652906, 0.7668016587569692, 0.03620763244300767, 0.7364400865449663, 0.37408584674942635, 0.8767503774172, 0.8743962287172513, 0.8751970040938668, 0.8833495792027257, 0.7091886355621774, 0.87006937054451, 0.7904001815220257, 0.8761418339280951, 0.8306834851111597, 0.7531715889012326, 0.38181207472529843, 0.6490458991820136, 0.9138057013338913, 0.9046222904886461, 0.17956061692355052, 0.7506163079023257, 0.8963285795381793, 0.8848361664653354, 0.9283037217377402, 0.45996158699034445, 0.7290858434196763, 0.8319094967702583, 0.6578018675312727, 0.18727567457681707, 0.8673410249845035, 0.9453298670648187, 0.9446538464906173, 0.19605573045952288, 0.6723831041639817, 0.3438281302059518, 0.37858973820495484, 0.6953170483296187, 0.21463507152544156, 0.26963792069965237, 0.3280912492037974, 0.8399932187801539, 0.420387898633768, 0.36522500752858966, 0.5810560693343539, 0.9306346767722963, 0.7167716539092029, 0.656736106921484, 0.5549139996760648, 0.6909161521388689, 0.591904263202073, 0.884703171197362, 0.866402281883595, 0.7582770814524421, 0.8990773411030794, 0.1818065866116437, 0.6222165686186035, 0.17261914235374884, 0.8156064679757086, 0.4851213943917703, 0.8871292211128762, 0.8398494053952754, 0.703270618172154, 0.6305543892506115, 0.7494149477175548, 0.1532408287022325, 0.6159732902773407, 0.738220551127759, 0.8354520044441791, 0.8536870432671441, 0.5751476712690671, 0.9077719201719568, 0.7878515691455199, 0.6672663325862807, 0.45293736875445273, 0.17058553029544155, 0.747933377844996, 0.8400163125056676, 0.4516778718827729, 0.6082670858563528, 0.8401843469141149, 0.7636885291754726, 0.789170795337903, 0.8128612802083497, 0.7522530659814418, 0.8086757686066508, 0.8356255123032285, 0.9241779635105248, 0.9674588597049086, 0.9368885694202199, 0.4990764491242286, 0.876561204324957, 0.554264192243629, 0.5967716244634195, 0.9060244606340249, 0.8401608718856799, 0.7329750583133859, 0.8021769878309102, 0.9316817655017511, 0.45488322534173153, 0.798578398438993, 0.7425236774748816, 0.5742682328784404, 0.4937681935814938, 0.8972164286692267, 0.8914273370768748, 0.9377613518261881, 0.8862258850530264, 0.8591757581361523, 0.7410678096850266, 0.6822336012657398, 0.9201658505843877, 0.6982578893131915, 0.5746709232170782, 0.7626532952948841, 0.7137703530889916, 0.7520971196461234, 0.4473853625959922, 0.7957460056304991, 0.4833174871501707, 0.8758467705785958, 0.4689303842787964, 0.6133612564737879, 0.8568681391705205, 0.6835133967314007, 0.9732070839986944, 0.21435716257549006, 0.5761668962420043, 0.4055433603128916, 0.3743394998756179, 0.9118635774953143, 0.964551884718591, 0.9306459334511011, 0.8424802355113449, 0.7739144871152517, 0.6872688771534424, 0.8590561833388345, 0.6714384475466295, 0.6408669500407106, 0.5203550269219845, 0.2856853969697174, 0.857760555506807, 0.9307094503226838, 0.6787928880949093, 0.8308635255795866, 0.29271374211533296, 0.6769315553524353, 0.23831547366416572, 0.5895099457120908, 0.8994675076574448, 0.8893400405584444, 0.8456825404777587, 0.5399612081435882, 0.6188649121485582, 0.9281492942813848, 0.7611740601422801, 0.46550237374781617, 0.8896861436466836, 0.9038901015569306, 0.5044440900554997, 0.9215480939667524, 0.6930273792518707, 0.8723244804196287, 0.5624338775604165, 0.9226297661236537, 0.8469231754225917, 0.9430557295321259, 0.9097116306258912, 0.5988707702267543, 0.3813853072548755, 0.8843832309478876, 0.9006952500629406, 0.918975987201669, 0.18997930334445084, 0.8923106748541326, 0.8461388699436441, 0.5973439234355874, 0.9544642924744549, 0.91770416680597, 0.9177239854204658, 0.17584552180125673, 0.9240099144459667, 0.48524948024905407, 0.8889685222180134, 0.5785503824403398, 0.7511953459672914, 0.6887596776945688, 0.6717539058356753, 0.7168761391602206, 0.7134478068952186, 0.834626350903405, 0.5715867980362679, 0.6588392688727011, 0.9488572786900573, 0.8920529250761863, 0.8891353183282249, 0.707981940789761, 0.926348680038428, 0.631489487929038, 0.7443856388661001, 0.9260754381930228, 0.9544642924744549, 0.8497401318990601, 0.5604010177433062, 0.8036334301115304, 0.7898153537185114, 0.8491431337122072, 0.6570881560807702, 0.8389599143569951, 0.7944137576415592, 0.8132668978866627, 0.44714680104169846, 0.7978021044641371, 0.41921696608658454, 0.38876183891604754, 0.9248463736054193, 0.4277915265084825, 0.6345107008491314, 0.8008942533173764, 0.5087430598332189, 0.9414938992689892, 0.6922115882765215, 0.8296175750175913, 0.8593339228153332, 0.8975141534758351, 0.5977126281557783, 0.9279478536756302, 0.6485770817571253, 0.8905823996589662, 0.9332072841984264, 0.9432461110830079, 0.9410120781436498, 0.6339696776630096, 0.7120962557761497, 0.5841709037351369, 0.5928970840420333, 0.9006589732900512, 0.936371533648048, 0.6907852379101131, 0.7675780198071424, 0.9444587893431046, 0.4702336163336472, 0.8925536722101626, 0.8158978708906081, 0.822780392485108, 0.8037335327290217, 0.8382351003285965, 0.8941557358589171, 0.4796498334522667, 0.926348680038428, 0.6842118015950474, 0.6463580983468415, 0.8292048071278182, 0.5834426687867836, 0.8419845362148763, 0.2431563391580561, 0.7763142135369961, 0.9390550746437164, 0.7774903237071782, 0.8141232663130791, 0.9444089886680379, 0.430401459478284, 0.9192677156927759, 0.8427595869840984, 0.87120858451521, 0.5693182102579236, 0.820012080301976, 0.58719119911586, 0.42769376643096113, 0.3542595869275313, 0.89579938191327, 0.8743523014696554, 0.7820497043505815, 0.5279069501129625, 0.8869579700149332, 0.45488774279476296, 0.8514781135508903, 0.8278297091497892, 0.663749097381813, 0.5132851713944618, 0.4906566565015208, 0.6415219885510332, 0.6991293681294938, 0.8150539074042624, 0.5800669536763935, 0.9583771200922359, 0.7366090055976814, 0.5747817696023392, 0.5315376696882942, 0.8074446941396305, 0.9038901015569306, 0.9087015650331977, 0.6697291810323083, 0.5800669536763935, 0.8807270543114014, 0.5135845984304893, 0.9352791850238339, 0.36120709973337456, 0.6206709330576408, 0.906286252315459, 0.7937202818717513], \"xaxis\": \"x\", \"y\": [\"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\"], \"yaxis\": \"y2\"}, {\"legendgroup\": \"other\", \"marker\": {\"color\": \"#4d4d4d\", \"symbol\": \"line-ns-open\"}, \"mode\": \"markers\", \"name\": \"other\", \"showlegend\": false, \"type\": \"scatter\", \"x\": [0.2802292104526322, 0.9455194119275858, 0.4978743212349556, 0.5289145624519528, 0.28439238707197784, 0.2033309570226689, 0.27345747478543325, 0.8322873304845451, 0.389055896812549, 0.3675472469853882, 0.5781933746273124, 0.7401955299744071, 0.44969671697605845, 0.4367887814338696, 0.31593955341667695, 0.3775624358859999, 0.19282181046294666, 0.048451763306065584, 0.6005928650583868, 0.032225376113695775, 0.427412413738938, 0.23973251442015217, 0.13890126550157303, 0.8613925272127, 0.329663916828638, 0.19359965390713213, 0.6827271716759634, 0.1960905505555538, 0.08135735686643118, 0.39737240301928484, 0.13902987396822816, 0.6514166433739288, 0.6994753721471061, 0.7140886736258081, 0.5021795028970708, 0.48743245558712556, 0.5731139673640956, 0.8820820642542792, 0.559972149724866, 0.5061565591493914, 0.5066810377847554, 0.833805652807593, 0.6979972163580744, 0.3177574231538272, 0.13068190592986567, 0.758876109553896, 0.5681062961269688, 0.715544821914063, 0.762062625203523, 0.4464438677531786, 0.20995974230910305, 0.5262622410710028, 0.39442669669188163, 0.2537324982988368, 0.6775437642744659, 0.23876321589577687, 0.6369158982934647, 0.38960060362966165, 0.6034323722874255, 0.7769991715799629, 0.15199748354041337, 0.5641412449951732, 0.7590466800561823, 0.5969347905931296, 0.1048362779837843, 0.7217824369593382, 0.2662339163773806, 0.16472378978351135, 0.37760124376932414, 0.7071736299639594, 0.3436862995931572, 0.8384434752264291, 0.3635333644877426, 0.7813188949129265, 0.7279369976219869, 0.5641098847382463, 0.3863964747623771, 0.9209913370067284, 0.1477144681640183, 0.8809374658555192, 0.6533168894759348, 0.8873477284758582, 0.3697306267878623, 0.28319023347825867, 0.5203701741750857, 0.5523747693308857, 0.6387521731780509, 0.3881380695009739, 0.8487896327149285, 0.4636606453307818, 0.8384434752264291, 0.558266603669778, 0.21657231888677728, 0.3635333644877426, 0.5512671313974766, 0.5051039398599867, 0.5827915753039158, 0.49441682850108926, 0.47309171914705017, 0.6262595591688196, 0.5508242483721094, 0.47332791509789995, 0.7117569366896692, 0.3933786516273859, 0.16465066549244003, 0.7490394132223248, 0.769261050002088, 0.7431932405995126, 0.3141000916210982, 0.723735045552473, 0.6484132891031948, 0.688519894019609, 0.40496704226994307, 0.5803736122960511, 0.6327801522745691, 0.45115706990411364, 0.37268733756108086, 0.9009693101135351, 0.06496389958099598, 0.44431713201158524, 0.39960831974332744, 0.8662156944598043, 0.31018081106061823, 0.5339551117365043, 0.33311273919547707, 0.400132762133902, 0.8528754522806217, 0.14419347879543085, 0.11672350429510901, 0.44556702529145975, 0.6160120899414699, 0.13766892845409207, 0.5517204028384314, 0.5232178919035022, 0.35483403305733974, 0.4900213704561591, 0.8854578072659228, 0.43084122675663034, 0.7601186327653665, 0.14072030431570776, 0.6186690618327106, 0.5245054232921349, 0.7326259458716644, 0.5690781983520095, 0.4018508815425063, 0.24877469563805235, 0.7952501197393639, 0.8766221356386195, 0.303451532996695, 0.5357745481647883, 0.7096524147827454, 0.20877177283968149, 0.8635610141758273, 0.46736762313881036, 0.6061151992073851, 0.113015272873705, 0.40446014603085867, 0.6332606063976143, 0.648705381890928, 0.42186952587750404, 0.8047913565308571, 0.3017058309841093, 0.38406990132164637, 0.33494193042999065, 0.19929939967121216, 0.8624919783238055, 0.528785836409086, 0.43084122675663034, 0.47042159929499583, 0.5061565591493914, 0.5759491569657543, 0.8468794444363914, 0.20342296359496542, 0.5170831534483544, 0.3666753044655067, 0.6131723001375537, 0.4410646109528086, 0.6903416342484309, 0.3866428492574258, 0.4636606453307818, 0.4525459302795702, 0.03199256040434073, 0.7029629492254846, 0.2433141614541866, 0.548755973819273, 0.3775060302547258, 0.06593060991448157, 0.8745624549148976, 0.22931948662359403, 0.27267688907931714, 0.589328430619086, 0.8007160756317941, 0.5525637789187225, 0.5008522318356121, 0.4556212410144909, 0.17391722008742402, 0.43574637053357784, 0.3237440077649342, 0.6071692164257629, 0.6925152430641841, 0.592675381607996, 0.43854150134957587, 0.43854150134957587, 0.42437112972565305, 0.8061118855433299, 0.35195592295594336, 0.7605370065149419, 0.38898578429124253, 0.67510953655807, 0.872979709380305, 0.710510994258769, 0.720290290780972, 0.4820787970895852, 0.42019280799979697, 0.4304380754474639, 0.25285023254778977, 0.3238056884730761, 0.39471961640683584, 0.09510031985475974, 0.367046376808582, 0.21500793651835448, 0.8705359023101334, 0.6100742529031461, 0.6226449432624995, 0.7279369976219869, 0.3643494054700089, 0.09992017521484964, 0.41475515148757036, 0.6462260464983366, 0.14102909592513518, 0.48949585696458414, 0.5239520436918008, 0.6084413884537807, 0.5655473856702703, 0.9517420512476797, 0.7489379515982664, 0.4647937384849751, 0.7915321263825208, 0.44112279258530757, 0.5734340256727429, 0.6604471727860799, 0.4845203185458914, 0.6968730453869196, 0.5315374962198609, 0.8685951485887234, 0.6242442748350044, 0.2912097196987059, 0.7725938221565348, 0.2067629769731588, 0.30221725334927335, 0.13129342562285412, 0.6467789443522378, 0.6994753721471061, 0.11825382206919556, 0.41022417118631593, 0.4882665226122541, 0.7732287086973071, 0.25374762405010176, 0.49441682850108926, 0.3723877205427743, 0.652330313245635, 0.43667799883041203, 0.5964718913578133, 0.55172276504346, 0.24113559934961917, 0.8243980268882987, 0.7263843594269437, 0.43535214809021755, 0.8721122798612579, 0.18723914490145582, 0.6486906676970999, 0.11576704656818047, 0.4328241622975616, 0.491481212420291, 0.5264345378086769, 0.33856526784971647, 0.2967410926251248, 0.581398831228375, 0.5973776665460488, 0.6195406102170065, 0.37782717658841725, 0.323061133240968, 0.17420808473594895, 0.19634770547538957, 0.46492234760650425, 0.49613167963272686, 0.5812209036149294, 0.6057291775435286, 0.63414717387345, 0.5702687187355167, 0.8604975146328253, 0.6309022132706124, 0.48732991249542923, 0.6887148870948692, 0.41581945293096145, 0.5706760596351739, 0.4831274653996314, 0.06684727567316755, 0.49090643211649887, 0.15191610726090596, 0.2711405311223577, 0.7653618545702112, 0.09266565137124261, 0.4554350627407873, 0.19698919164573708, 0.6930185080649685, 0.5227537922811563, 0.50434568709929, 0.7082092780767422, 0.46058046365566996, 0.6735723234187477, 0.4285936050615775, 0.323061133240968, 0.5168500865319015, 0.6161307914674419, 0.23456444218973552, 0.3192004782541023, 0.21968945907811915, 0.5028183230931117, 0.43371621376298963, 0.6744209213341115, 0.5940260419772637, 0.13783310426722128, 0.5136444387530009, 0.5508647999875032, 0.4955911012838212, 0.9814394195009358, 0.8260225289794664, 0.17965956338109995, 0.46844896472597397, 0.6048119589659149, 0.3289160319090978, 0.2454606394453749, 0.7497022835596558, 0.683485355417811, 0.20995974230910305, 0.23504578258460665, 0.37175956099497537, 0.4875530438829156, 0.24982584224249993, 0.6282829625348888, 0.4520795162158371, 0.8200372413039435, 0.12832513643528837, 0.5299630655130737, 0.29552777318700446, 0.24021937552346023, 0.5429028773737552, 0.6311869746243346, 0.4145977043912777, 0.39329840463575844, 0.39070335653410526, 0.4286990948130573, 0.846836560604146, 0.6880850122626078], \"xaxis\": \"x\", \"y\": [\"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\"], \"yaxis\": \"y2\"}], \"layout\": {\"barmode\": \"overlay\", \"hovermode\": \"closest\", \"legend\": {\"orientation\": \"h\", \"traceorder\": \"reversed\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y2\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"Probability\"}, \"zeroline\": false}, \"yaxis\": {\"anchor\": \"free\", \"domain\": [0.35, 1], \"position\": 0.0, \"title\": {\"text\": \"Share\"}}, \"yaxis2\": {\"anchor\": \"x\", \"domain\": [0, 0.25], \"dtick\": 1, \"showticklabels\": false}}}}, {\"id\": \"tab_bad\", \"title\": \"bad\", \"graph\": {\"data\": [{\"autobinx\": false, \"histnorm\": \"probability density\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#ed0400\"}, \"name\": \"bad\", \"opacity\": 0.7, \"type\": \"histogram\", \"x\": [0.7197707895473677, 0.05448058807241418, 0.5021256787650443, 0.4710854375480472, 0.7156076129280222, 0.7966690429773311, 0.7265425252145667, 0.16771266951545494, 0.610944103187451, 0.6324527530146118, 0.42180662537268765, 0.2598044700255929, 0.5503032830239416, 0.5632112185661304, 0.6840604465833231, 0.6224375641140001, 0.8071781895370533, 0.9515482366939344, 0.3994071349416132, 0.9677746238863042, 0.572587586261062, 0.7602674855798478, 0.861098734498427, 0.1386074727873, 0.6703360831713621, 0.8064003460928679, 0.3172728283240366, 0.8039094494444462, 0.9186426431335688, 0.6026275969807151, 0.8609701260317718, 0.3485833566260712, 0.3005246278528939, 0.2859113263741919, 0.4978204971029292, 0.5125675444128744, 0.4268860326359044, 0.11791793574572085, 0.440027850275134, 0.4938434408506086, 0.4933189622152446, 0.166194347192407, 0.30200278364192557, 0.6822425768461728, 0.8693180940701344, 0.24112389044610405, 0.43189370387303117, 0.284455178085937, 0.23793737479647703, 0.5535561322468214, 0.7900402576908969, 0.47373775892899717, 0.6055733033081183, 0.7462675017011632, 0.32245623572553406, 0.7612367841042231, 0.36308410170653527, 0.6103993963703384, 0.3965676277125745, 0.2230008284200371, 0.8480025164595866, 0.43585875500482685, 0.24095331994381775, 0.4030652094068704, 0.8951637220162157, 0.2782175630406618, 0.7337660836226194, 0.8352762102164887, 0.6223987562306759, 0.2928263700360406, 0.6563137004068428, 0.16155652477357085, 0.6364666355122575, 0.2186811050870735, 0.27206300237801306, 0.4358901152617537, 0.6136035252376228, 0.07900866299327158, 0.8522855318359817, 0.11906253414448076, 0.3466831105240652, 0.11265227152414181, 0.6302693732121377, 0.7168097665217413, 0.4796298258249143, 0.4476252306691143, 0.3612478268219491, 0.611861930499026, 0.15121036728507153, 0.5363393546692182, 0.16155652477357085, 0.441733396330222, 0.7834276811132227, 0.6364666355122575, 0.44873286860252337, 0.4948960601400133, 0.4172084246960842, 0.5055831714989107, 0.5269082808529498, 0.3737404408311804, 0.4491757516278906, 0.5266720849021, 0.2882430633103308, 0.6066213483726142, 0.83534933450756, 0.2509605867776752, 0.230738949997912, 0.25680675940048736, 0.6858999083789018, 0.27626495444752697, 0.35158671089680515, 0.311480105980391, 0.5950329577300569, 0.4196263877039489, 0.3672198477254309, 0.5488429300958864, 0.6273126624389191, 0.0990306898864649, 0.935036100419004, 0.5556828679884147, 0.6003916802566726, 0.1337843055401957, 0.6898191889393818, 0.46604488826349566, 0.6668872608045229, 0.5998672378660981, 0.14712454771937833, 0.8558065212045691, 0.883276495704891, 0.5544329747085402, 0.38398791005853006, 0.8623310715459079, 0.4482795971615686, 0.4767821080964978, 0.6451659669426603, 0.5099786295438409, 0.11454219273407718, 0.5691587732433696, 0.2398813672346335, 0.8592796956842923, 0.38133093816728936, 0.4754945767078651, 0.2673740541283356, 0.43092180164799054, 0.5981491184574936, 0.7512253043619477, 0.20474988026063612, 0.12337786436138054, 0.6965484670033051, 0.4642254518352117, 0.29034758521725457, 0.7912282271603185, 0.1364389858241727, 0.5326323768611896, 0.3938848007926149, 0.886984727126295, 0.5955398539691413, 0.3667393936023857, 0.35129461810907203, 0.578130474122496, 0.1952086434691429, 0.6982941690158907, 0.6159300986783536, 0.6650580695700093, 0.8007006003287879, 0.13750802167619447, 0.47121416359091395, 0.5691587732433696, 0.5295784007050042, 0.4938434408506086, 0.4240508430342457, 0.1531205555636086, 0.7965770364050346, 0.4829168465516456, 0.6333246955344933, 0.38682769986244625, 0.5589353890471914, 0.30965836575156913, 0.6133571507425741, 0.5363393546692182, 0.5474540697204298, 0.9680074395956593, 0.29703705077451537, 0.7566858385458134, 0.451244026180727, 0.6224939697452743, 0.9340693900855184, 0.1254375450851024, 0.770680513376406, 0.7273231109206828, 0.410671569380914, 0.19928392436820586, 0.44743622108127745, 0.4991477681643879, 0.5443787589855091, 0.826082779912576, 0.5642536294664222, 0.6762559922350657, 0.39283078357423706, 0.3074847569358159, 0.40732461839200396, 0.5614584986504241, 0.5614584986504241, 0.575628870274347, 0.1938881144566701, 0.6480440770440566, 0.23946299348505806, 0.6110142157087575, 0.32489046344192996, 0.127020290619695, 0.28948900574123104, 0.27970970921902805, 0.5179212029104148, 0.579807192000203, 0.5695619245525361, 0.7471497674522103, 0.6761943115269239, 0.6052803835931642, 0.9048996801452402, 0.632953623191418, 0.7849920634816455, 0.12946409768986655, 0.3899257470968539, 0.37735505673750047, 0.27206300237801306, 0.6356505945299911, 0.9000798247851504, 0.5852448485124296, 0.3537739535016634, 0.8589709040748648, 0.5105041430354158, 0.4760479563081992, 0.3915586115462193, 0.4344526143297297, 0.04825794875232026, 0.25106204840173363, 0.5352062615150248, 0.2084678736174792, 0.5588772074146924, 0.42656597432725707, 0.3395528272139201, 0.5154796814541086, 0.30312695461308037, 0.4684625037801391, 0.13140485141127656, 0.37575572516499556, 0.7087902803012941, 0.22740617784346517, 0.7932370230268412, 0.6977827466507267, 0.8687065743771458, 0.3532210556477622, 0.3005246278528939, 0.8817461779308045, 0.5897758288136841, 0.5117334773877459, 0.2267712913026929, 0.7462523759498982, 0.5055831714989107, 0.6276122794572256, 0.34766968675436505, 0.563322001169588, 0.4035281086421867, 0.44827723495654004, 0.7588644006503809, 0.17560197311170134, 0.2736156405730563, 0.5646478519097824, 0.12788772013874206, 0.8127608550985441, 0.35130933230290007, 0.8842329534318195, 0.5671758377024384, 0.508518787579709, 0.4735654621913231, 0.6614347321502836, 0.7032589073748752, 0.418601168771625, 0.40262233345395115, 0.38045938978299354, 0.6221728234115828, 0.6769388667590319, 0.825791915264051, 0.8036522945246104, 0.5350776523934957, 0.5038683203672731, 0.4187790963850706, 0.3942708224564714, 0.36585282612655, 0.42973128126448334, 0.1395024853671747, 0.36909778672938764, 0.5126700875045708, 0.31128511290513083, 0.5841805470690385, 0.42932394036482613, 0.5168725346003686, 0.9331527243268325, 0.5090935678835011, 0.848083892739094, 0.7288594688776423, 0.23463814542978878, 0.9073343486287574, 0.5445649372592127, 0.8030108083542629, 0.30698149193503155, 0.47724620771884374, 0.49565431290071005, 0.29179072192325783, 0.53941953634433, 0.32642767658125227, 0.5714063949384225, 0.6769388667590319, 0.48314991346809855, 0.3838692085325581, 0.7654355578102645, 0.6807995217458978, 0.7803105409218809, 0.4971816769068883, 0.5662837862370104, 0.32557907866588853, 0.4059739580227363, 0.8621668957327787, 0.4863555612469991, 0.44913520001249685, 0.5044088987161788, 0.018560580499064172, 0.17397747102053363, 0.8203404366189, 0.531551035274026, 0.3951880410340851, 0.6710839680909022, 0.7545393605546251, 0.25029771644034415, 0.31651464458218903, 0.7900402576908969, 0.7649542174153934, 0.6282404390050247, 0.5124469561170844, 0.7501741577575001, 0.3717170374651112, 0.5479204837841629, 0.1799627586960565, 0.8716748635647116, 0.4700369344869263, 0.7044722268129955, 0.7597806244765397, 0.4570971226262448, 0.3688130253756654, 0.5854022956087224, 0.6067015953642416, 0.6092966434658947, 0.5713009051869427, 0.15316343939585397, 0.31191498773739224], \"xaxis\": \"x\", \"xbins\": {\"end\": 0.9680074395956593, \"size\": 0.05, \"start\": 0.018560580499064172}, \"yaxis\": \"y\"}, {\"autobinx\": false, \"histnorm\": \"probability density\", \"legendgroup\": \"other\", \"marker\": {\"color\": \"#4d4d4d\"}, \"name\": \"other\", \"opacity\": 0.7, \"type\": \"histogram\", \"x\": [0.18439386755371057, 0.5750868907731637, 0.1132172353536568, 0.19850047615697952, 0.6950004168934912, 0.41826441672946313, 0.040828937665112974, 0.2145583871630251, 0.09143093017991866, 0.10013996234885614, 0.3658834999306372, 0.587897812361327, 0.23563705889496211, 0.5289998061994394, 0.5981734696485812, 0.5956194363709464, 0.11295199838815062, 0.6349332021584286, 0.09356782907078887, 0.0672754654033908, 0.3541579814831264, 0.11781588709523827, 0.3295981493457443, 0.23443288181779365, 0.13830133810679424, 0.5122546205578999, 0.03626449638205209, 0.32057959349203036, 0.3955164844050859, 0.21320459763992916, 0.08620177311633537, 0.4132497936565127, 0.19514157099220286, 0.028148892894647393, 0.03728071159582558, 0.20213762816504022, 0.39088790332760825, 0.10566618212719892, 0.11466232649727714, 0.09544364959788487, 0.07351553674018241, 0.3657542344632553, 0.05859665738698361, 0.43634835962676355, 0.4827032077898804, 0.516310366273556, 0.6480037931050455, 0.21122004543372697, 0.030344760075157406, 0.22750344576024595, 0.18673438423788624, 0.5460909738859347, 0.0666291073587214, 0.320234954276134, 0.515425573770442, 0.5751179393061847, 0.3262180383913996, 0.12192585741802231, 0.6165939755266235, 0.09365914315081003, 0.44259853952477324, 0.31958523161407537, 0.09228899111547839, 0.22815273642701062, 0.5282447951108347, 0.7777719169155834, 0.13834506443323813, 0.29425092810710396, 0.5300870647699181, 0.031947521718024174, 0.1108646816717751, 0.053339747820140615, 0.14466174791529418, 0.25697560969337485, 0.3383868137798065, 0.30803904997837983, 0.03434255320493995, 0.08689109251212201, 0.46044782253877736, 0.0973761441498977, 0.3449058470623745, 0.024212367984770777, 0.11665042079727428, 0.3333970234137619, 0.1495417879159372, 0.0679784404121434, 0.2360052425084116, 0.39147703437781534, 0.04428683932015287, 0.5381556738404795, 0.4357341587922019, 0.11843845992675284, 0.28107964630818494, 0.06989794698232743, 0.2658605825653322, 0.22408104406272966, 0.15519213452661884, 0.09873339188795927, 0.10739713799337769, 0.4712507279726723, 0.31257930793611366, 0.6259141532505736, 0.1651629894813923, 0.13024327386797574, 0.08242409751896962, 0.55355901104019, 0.11256152515999429, 0.22124325125588817, 0.05838775174278421, 0.6734770756819889, 0.06919042490492266, 0.5773286546676725, 0.5693181878572973, 0.12726917141891614, 0.27983888222674136, 0.15690954109554833, 0.18593824584442387, 0.05432525584274117, 0.33273366741371935, 0.12435295831370408, 0.48112847828662497, 0.2959384652215836, 0.5042039768350125, 0.3749869638443927, 0.7258627386781167, 0.4806866421912115, 0.6234335830956541, 0.4191951896523489, 0.20821728825178332, 0.6343085651912675, 0.27674577061671146, 0.02140654255666985, 0.42849246998341506, 0.1817444030106703, 0.4551538855951942, 0.05087080041524106, 0.516641204200833, 0.6810720245435042, 0.08151744899857294, 0.4475169494323581, 0.03995706953508171, 0.2181819033834006, 0.20372897255157485, 0.24305701296248816, 0.5381556738404795, 0.2358485729609252, 0.051323642447754336, 0.1913631294907303, 0.32154631204965056, 0.31229802093755377, 0.3917329141436472, 0.39462053822053156, 0.3680669306910641, 0.5017894292511481, 0.32120711190509066, 0.0768019282386515, 0.1168769044932052, 0.31545143431826594, 0.12007957373947853, 0.08354361700756141, 0.2180731800932174, 0.7653011157176768, 0.05076221583963347, 0.11739077279846111, 0.3639458403519926, 0.4815918747301601, 0.35998732468747585, 0.457353694020342, 0.5520498791697908, 0.22168281241722143, 0.2132287846887433, 0.4763394582576197, 0.3040153802820409, 0.20749766415549342, 0.3316810644107503, 0.8126297477835096, 0.5749367295182395, 0.27274039590582944, 0.2685808245693546, 0.5172108675362206, 0.33506587713796443, 0.09616672688355288, 0.041108213935392324, 0.10548050716105373, 0.5016695616404938, 0.20022874051447226, 0.14220640128276774, 0.23772630779738468, 0.19606080251004787, 0.2603188495268066, 0.18846597668723208, 0.19827111133563302, 0.261548791893628, 0.4140325207077993, 0.8134796325151183, 0.12265695643958285, 0.6311167068993262, 0.13481820177301163, 0.0932384579037443, 0.14050160114126486, 0.2562249115981724, 0.08547750670655718, 0.08643201081848362, 0.19981675431015722, 0.31390222338706264, 0.06221739913672386, 0.06996303880871468, 0.30029370289300306, 0.4306817897420764, 0.6595343859760441, 0.2839408857911616, 0.20468539219890003, 0.1130196126722065, 0.2360017176902124, 0.13187147729288817, 0.42313120297864704, 0.06964897436687001, 0.1624399718171824, 0.17200815643270417, 0.07333105637055992, 0.2440137653363641, 0.4900110333069776, 0.3085554157386313, 0.03480496731142946, 0.12148031785507996, 0.15002971926037112, 0.5314247042003052, 0.2758453007685677, 0.2151852748992088, 0.2658605825653322, 0.29911225563077193, 0.6594110243744711, 0.49869782335001445, 0.16788254706683048, 0.11816213334465087, 0.08230909248122409, 0.13653212507346946, 0.25639170942272826, 0.06562233405876228, 0.23311900627036541, 0.3756616197417655, 0.46674395287949066, 0.3092684534350997, 0.8337319641197457, 0.8331457111467163, 0.2591056156836542, 0.4778687671024334, 0.2542440524586721, 0.5361036306539362, 0.07073721340803463, 0.4731688813159418, 0.5755848065786346, 0.356689463387698, 0.14225616860197343, 0.21837916002376445, 0.14466174791529418, 0.29899643271856946, 0.4757427727983842, 0.08126799884203029, 0.1296501822378736, 0.3286954654423938, 0.08620177311633537, 0.13855855420831553, 0.05543377339452393, 0.11917834098009661, 0.2613621884509647, 0.11269900223777074, 0.08429051026621415, 0.3393961441870107, 0.07031960314855146, 0.11356777592095357, 0.4853279864284006, 0.1279289285514792, 0.0584572339054259, 0.08612988585012649, 0.3472440907423937, 0.1248029959061332, 0.07502335399434323, 0.19827111133563302, 0.3424151534036639, 0.3065175956815872, 0.13808860398564737, 0.058092197534895806, 0.04082786106581715, 0.1602592849246841, 0.09156161599234125, 0.5036030690663805, 0.2640411824475748, 0.6468038092930676, 0.07201805208597656, 0.22470230804277058, 0.1334773721572423, 0.04847889440667685, 0.2685808245693546, 0.10911308148570098, 0.6764508967260475, 0.6280060594576413, 0.36761958218269275, 0.16019930342079847, 0.17605308658107655, 0.14078981831089854, 0.2384997092801764, 0.13117402490907393, 0.12818959986091483, 0.4161925244315118, 0.12435295831370408, 0.09814942480303201, 0.05480698563416486, 0.3746187330143109, 0.41092354232892336, 0.507894749900129, 0.5137929421583434, 0.08293523366016065, 0.2964416548030494, 0.15236141109070434, 0.4396941021426354, 0.41893931094950754, 0.09113953260801844, 0.10967473999240707, 0.055732078845942, 0.05640314085190745, 0.06176263301115803, 0.06427139521062619, 0.20386133178572885, 0.21597661143113533, 0.7486409492386699, 0.2610715902497083, 0.09465277491899493, 0.5556171757583562, 0.137718889647652, 0.1978940751503777, 0.08472590699531857, 0.356262641598029, 0.14596950445002987, 0.13865818299932142, 0.3088915816821678, 0.11516321289421916, 0.16121169033174265, 0.40573483691789825, 0.34308606282264, 0.36300204724896845, 0.17193414756867276, 0.035926383178341514, 0.34536882843285344, 0.4400180463892147, 0.5165194668234709, 0.23319834124303085, 0.9637923675569924, 0.2635599134550337, 0.6259141532505736, 0.12324962258280003, 0.1256037712827487, 0.1248029959061332, 0.11665042079727428, 0.29081136443782263, 0.12993062945549005, 0.20959981847797426, 0.12385816607190492, 0.16931651488884025, 0.2468284110987674, 0.6181879252747016, 0.3509541008179864, 0.08619429866610873, 0.09537770951135394, 0.8204393830764495, 0.2493836920976743, 0.10367142046182065, 0.11516383353466464, 0.07169627826225977, 0.5400384130096556, 0.2709141565803237, 0.16809050322974173, 0.3421981324687273, 0.812724325423183, 0.1326589750154965, 0.054670132935181304, 0.055346153509382656, 0.8039442695404772, 0.3276168958360183, 0.6561718697940482, 0.6214102617950452, 0.3046829516703813, 0.7853649284745584, 0.7303620793003476, 0.6719087507962026, 0.16000678121984613, 0.579612101366232, 0.6347749924714103, 0.41894393066564606, 0.06936532322770372, 0.28322834609079706, 0.343263893078516, 0.4450860003239352, 0.3090838478611311, 0.408095736797927, 0.11529682880263803, 0.13359771811640497, 0.2417229185475579, 0.10092265889692065, 0.8181934133883563, 0.3777834313813965, 0.8273808576462511, 0.18439353202429143, 0.5148786056082297, 0.11287077888712382, 0.16015059460472458, 0.29672938182784603, 0.36944561074938853, 0.2505850522824452, 0.8467591712977676, 0.3840267097226593, 0.261779448872241, 0.1645479955558209, 0.14631295673285594, 0.4248523287309329, 0.09222807982804315, 0.2121484308544801, 0.33273366741371935, 0.5470626312455473, 0.8294144697045585, 0.25206662215500397, 0.15998368749433245, 0.548322128117227, 0.3917329141436472, 0.15981565308588508, 0.23631147082452741, 0.21082920466209698, 0.1871387197916503, 0.24774693401855818, 0.1913242313933492, 0.16437448769677154, 0.07582203648947516, 0.032541140295091364, 0.06311143057978008, 0.5009235508757715, 0.12343879567504301, 0.445735807756371, 0.40322837553658053, 0.09397553936597514, 0.1598391281143201, 0.26702494168661406, 0.19782301216908982, 0.06831823449824892, 0.5451167746582685, 0.20142160156100697, 0.25747632252511843, 0.4257317671215596, 0.5062318064185062, 0.10278357133077332, 0.10857266292312517, 0.06223864817381186, 0.11377411494697365, 0.14082424186384768, 0.2589321903149734, 0.31776639873426016, 0.07983414941561229, 0.30174211068680845, 0.42532907678292176, 0.23734670470511587, 0.2862296469110084, 0.24790288035387664, 0.5526146374040077, 0.20425399436950087, 0.5166825128498294, 0.12415322942140417, 0.5310696157212036, 0.3866387435262121, 0.14313186082947948, 0.31648660326859934, 0.026792916001305622, 0.7856428374245099, 0.42383310375799566, 0.5944566396871084, 0.6256605001243821, 0.08813642250468567, 0.03544811528140901, 0.06935406654889886, 0.15751976448865512, 0.22608551288474832, 0.3127311228465576, 0.1409438166611655, 0.3285615524533705, 0.3591330499592894, 0.47964497307801546, 0.7143146030302826, 0.14223944449319303, 0.06929054967731618, 0.32120711190509066, 0.16913647442041335, 0.707286257884667, 0.3230684446475647, 0.7616845263358343, 0.4104900542879092, 0.10053249234255524, 0.1106599594415556, 0.1543174595222413, 0.46003879185641183, 0.3811350878514418, 0.07185070571861518, 0.23882593985771994, 0.5344976262521839, 0.11031385635331636, 0.09610989844306939, 0.4955559099445003, 0.07845190603324759, 0.30697262074812925, 0.12767551958037127, 0.4375661224395835, 0.07737023387634634, 0.15307682457740834, 0.05694427046787409, 0.09028836937410878, 0.4011292297732457, 0.6186146927451245, 0.11561676905211238, 0.0993047499370594, 0.08102401279833105, 0.8100206966555492, 0.10768932514586738, 0.15386113005635593, 0.4026560765644126, 0.045535707525545144, 0.08229583319403, 0.08227601457953415, 0.8241544781987433, 0.0759900855540333, 0.5147505197509459, 0.11103147778198663, 0.42144961755966015, 0.24880465403270857, 0.3112403223054312, 0.3282460941643247, 0.28312386083977936, 0.2865521931047814, 0.16537364909659502, 0.4284132019637321, 0.34116073112729894, 0.051142721309942685, 0.10794707492381372, 0.1108646816717751, 0.29201805921023904, 0.07365131996157204, 0.36851051207096197, 0.2556143611338999, 0.07392456180697715, 0.045535707525545144, 0.15025986810093994, 0.4395989822566938, 0.19636656988846957, 0.21018464628148859, 0.15085686628779282, 0.3429118439192298, 0.16104008564300487, 0.2055862423584408, 0.18673310211333727, 0.5528531989583015, 0.20219789553586287, 0.5807830339134155, 0.6112381610839525, 0.07515362639458067, 0.5722084734915175, 0.3654892991508686, 0.1991057466826236, 0.4912569401667811, 0.05850610073101081, 0.3077884117234785, 0.17038242498240874, 0.14066607718466684, 0.10248584652416493, 0.4022873718442217, 0.07205214632436985, 0.35142291824287475, 0.10941760034103376, 0.06679271580157364, 0.05675388891699207, 0.058987921856350156, 0.3660303223369904, 0.28790374422385034, 0.4158290962648631, 0.40710291595796666, 0.09934102670994882, 0.06362846635195196, 0.30921476208988685, 0.23242198019285765, 0.055541210656895434, 0.5297663836663529, 0.10744632778983743, 0.18410212910939194, 0.17721960751489196, 0.1962664672709783, 0.1617648996714035, 0.10584426414108294, 0.5203501665477333, 0.07365131996157204, 0.31578819840495265, 0.35364190165315845, 0.1707951928721818, 0.41655733121321636, 0.15801546378512366, 0.7568436608419439, 0.22368578646300386, 0.0609449253562836, 0.2225096762928218, 0.18587673368692093, 0.05559101133196209, 0.569598540521716, 0.08073228430722412, 0.15724041301590164, 0.12879141548479, 0.4306817897420764, 0.17998791969802397, 0.41280880088413996, 0.5723062335690389, 0.6457404130724687, 0.10420061808672998, 0.12564769853034463, 0.21795029564941848, 0.4720930498870375, 0.11304202998506685, 0.545112257205237, 0.14852188644910969, 0.17217029085021085, 0.336250902618187, 0.48671482860553816, 0.5093433434984792, 0.35847801144896685, 0.3008706318705062, 0.18494609259573758, 0.4199330463236065, 0.04162287990776414, 0.2633909944023186, 0.4252182303976608, 0.4684623303117058, 0.1925553058603695, 0.09610989844306939, 0.09129843496680234, 0.3302708189676917, 0.4199330463236065, 0.11927294568859859, 0.4864154015695107, 0.06472081497616611, 0.6387929002666255, 0.37932906694235924, 0.093713747684541, 0.20627971812824875], \"xaxis\": \"x\", \"xbins\": {\"end\": 0.9637923675569924, \"size\": 0.05, \"start\": 0.02140654255666985}, \"yaxis\": \"y\"}, {\"legendgroup\": \"bad\", \"marker\": {\"color\": \"#ed0400\", \"symbol\": \"line-ns-open\"}, \"mode\": \"markers\", \"name\": \"bad\", \"showlegend\": false, \"type\": \"scatter\", \"x\": [0.7197707895473677, 0.05448058807241418, 0.5021256787650443, 0.4710854375480472, 0.7156076129280222, 0.7966690429773311, 0.7265425252145667, 0.16771266951545494, 0.610944103187451, 0.6324527530146118, 0.42180662537268765, 0.2598044700255929, 0.5503032830239416, 0.5632112185661304, 0.6840604465833231, 0.6224375641140001, 0.8071781895370533, 0.9515482366939344, 0.3994071349416132, 0.9677746238863042, 0.572587586261062, 0.7602674855798478, 0.861098734498427, 0.1386074727873, 0.6703360831713621, 0.8064003460928679, 0.3172728283240366, 0.8039094494444462, 0.9186426431335688, 0.6026275969807151, 0.8609701260317718, 0.3485833566260712, 0.3005246278528939, 0.2859113263741919, 0.4978204971029292, 0.5125675444128744, 0.4268860326359044, 0.11791793574572085, 0.440027850275134, 0.4938434408506086, 0.4933189622152446, 0.166194347192407, 0.30200278364192557, 0.6822425768461728, 0.8693180940701344, 0.24112389044610405, 0.43189370387303117, 0.284455178085937, 0.23793737479647703, 0.5535561322468214, 0.7900402576908969, 0.47373775892899717, 0.6055733033081183, 0.7462675017011632, 0.32245623572553406, 0.7612367841042231, 0.36308410170653527, 0.6103993963703384, 0.3965676277125745, 0.2230008284200371, 0.8480025164595866, 0.43585875500482685, 0.24095331994381775, 0.4030652094068704, 0.8951637220162157, 0.2782175630406618, 0.7337660836226194, 0.8352762102164887, 0.6223987562306759, 0.2928263700360406, 0.6563137004068428, 0.16155652477357085, 0.6364666355122575, 0.2186811050870735, 0.27206300237801306, 0.4358901152617537, 0.6136035252376228, 0.07900866299327158, 0.8522855318359817, 0.11906253414448076, 0.3466831105240652, 0.11265227152414181, 0.6302693732121377, 0.7168097665217413, 0.4796298258249143, 0.4476252306691143, 0.3612478268219491, 0.611861930499026, 0.15121036728507153, 0.5363393546692182, 0.16155652477357085, 0.441733396330222, 0.7834276811132227, 0.6364666355122575, 0.44873286860252337, 0.4948960601400133, 0.4172084246960842, 0.5055831714989107, 0.5269082808529498, 0.3737404408311804, 0.4491757516278906, 0.5266720849021, 0.2882430633103308, 0.6066213483726142, 0.83534933450756, 0.2509605867776752, 0.230738949997912, 0.25680675940048736, 0.6858999083789018, 0.27626495444752697, 0.35158671089680515, 0.311480105980391, 0.5950329577300569, 0.4196263877039489, 0.3672198477254309, 0.5488429300958864, 0.6273126624389191, 0.0990306898864649, 0.935036100419004, 0.5556828679884147, 0.6003916802566726, 0.1337843055401957, 0.6898191889393818, 0.46604488826349566, 0.6668872608045229, 0.5998672378660981, 0.14712454771937833, 0.8558065212045691, 0.883276495704891, 0.5544329747085402, 0.38398791005853006, 0.8623310715459079, 0.4482795971615686, 0.4767821080964978, 0.6451659669426603, 0.5099786295438409, 0.11454219273407718, 0.5691587732433696, 0.2398813672346335, 0.8592796956842923, 0.38133093816728936, 0.4754945767078651, 0.2673740541283356, 0.43092180164799054, 0.5981491184574936, 0.7512253043619477, 0.20474988026063612, 0.12337786436138054, 0.6965484670033051, 0.4642254518352117, 0.29034758521725457, 0.7912282271603185, 0.1364389858241727, 0.5326323768611896, 0.3938848007926149, 0.886984727126295, 0.5955398539691413, 0.3667393936023857, 0.35129461810907203, 0.578130474122496, 0.1952086434691429, 0.6982941690158907, 0.6159300986783536, 0.6650580695700093, 0.8007006003287879, 0.13750802167619447, 0.47121416359091395, 0.5691587732433696, 0.5295784007050042, 0.4938434408506086, 0.4240508430342457, 0.1531205555636086, 0.7965770364050346, 0.4829168465516456, 0.6333246955344933, 0.38682769986244625, 0.5589353890471914, 0.30965836575156913, 0.6133571507425741, 0.5363393546692182, 0.5474540697204298, 0.9680074395956593, 0.29703705077451537, 0.7566858385458134, 0.451244026180727, 0.6224939697452743, 0.9340693900855184, 0.1254375450851024, 0.770680513376406, 0.7273231109206828, 0.410671569380914, 0.19928392436820586, 0.44743622108127745, 0.4991477681643879, 0.5443787589855091, 0.826082779912576, 0.5642536294664222, 0.6762559922350657, 0.39283078357423706, 0.3074847569358159, 0.40732461839200396, 0.5614584986504241, 0.5614584986504241, 0.575628870274347, 0.1938881144566701, 0.6480440770440566, 0.23946299348505806, 0.6110142157087575, 0.32489046344192996, 0.127020290619695, 0.28948900574123104, 0.27970970921902805, 0.5179212029104148, 0.579807192000203, 0.5695619245525361, 0.7471497674522103, 0.6761943115269239, 0.6052803835931642, 0.9048996801452402, 0.632953623191418, 0.7849920634816455, 0.12946409768986655, 0.3899257470968539, 0.37735505673750047, 0.27206300237801306, 0.6356505945299911, 0.9000798247851504, 0.5852448485124296, 0.3537739535016634, 0.8589709040748648, 0.5105041430354158, 0.4760479563081992, 0.3915586115462193, 0.4344526143297297, 0.04825794875232026, 0.25106204840173363, 0.5352062615150248, 0.2084678736174792, 0.5588772074146924, 0.42656597432725707, 0.3395528272139201, 0.5154796814541086, 0.30312695461308037, 0.4684625037801391, 0.13140485141127656, 0.37575572516499556, 0.7087902803012941, 0.22740617784346517, 0.7932370230268412, 0.6977827466507267, 0.8687065743771458, 0.3532210556477622, 0.3005246278528939, 0.8817461779308045, 0.5897758288136841, 0.5117334773877459, 0.2267712913026929, 0.7462523759498982, 0.5055831714989107, 0.6276122794572256, 0.34766968675436505, 0.563322001169588, 0.4035281086421867, 0.44827723495654004, 0.7588644006503809, 0.17560197311170134, 0.2736156405730563, 0.5646478519097824, 0.12788772013874206, 0.8127608550985441, 0.35130933230290007, 0.8842329534318195, 0.5671758377024384, 0.508518787579709, 0.4735654621913231, 0.6614347321502836, 0.7032589073748752, 0.418601168771625, 0.40262233345395115, 0.38045938978299354, 0.6221728234115828, 0.6769388667590319, 0.825791915264051, 0.8036522945246104, 0.5350776523934957, 0.5038683203672731, 0.4187790963850706, 0.3942708224564714, 0.36585282612655, 0.42973128126448334, 0.1395024853671747, 0.36909778672938764, 0.5126700875045708, 0.31128511290513083, 0.5841805470690385, 0.42932394036482613, 0.5168725346003686, 0.9331527243268325, 0.5090935678835011, 0.848083892739094, 0.7288594688776423, 0.23463814542978878, 0.9073343486287574, 0.5445649372592127, 0.8030108083542629, 0.30698149193503155, 0.47724620771884374, 0.49565431290071005, 0.29179072192325783, 0.53941953634433, 0.32642767658125227, 0.5714063949384225, 0.6769388667590319, 0.48314991346809855, 0.3838692085325581, 0.7654355578102645, 0.6807995217458978, 0.7803105409218809, 0.4971816769068883, 0.5662837862370104, 0.32557907866588853, 0.4059739580227363, 0.8621668957327787, 0.4863555612469991, 0.44913520001249685, 0.5044088987161788, 0.018560580499064172, 0.17397747102053363, 0.8203404366189, 0.531551035274026, 0.3951880410340851, 0.6710839680909022, 0.7545393605546251, 0.25029771644034415, 0.31651464458218903, 0.7900402576908969, 0.7649542174153934, 0.6282404390050247, 0.5124469561170844, 0.7501741577575001, 0.3717170374651112, 0.5479204837841629, 0.1799627586960565, 0.8716748635647116, 0.4700369344869263, 0.7044722268129955, 0.7597806244765397, 0.4570971226262448, 0.3688130253756654, 0.5854022956087224, 0.6067015953642416, 0.6092966434658947, 0.5713009051869427, 0.15316343939585397, 0.31191498773739224], \"xaxis\": \"x\", \"y\": [\"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\"], \"yaxis\": \"y2\"}, {\"legendgroup\": \"other\", \"marker\": {\"color\": \"#4d4d4d\", \"symbol\": \"line-ns-open\"}, \"mode\": \"markers\", \"name\": \"other\", \"showlegend\": false, \"type\": \"scatter\", \"x\": [0.18439386755371057, 0.5750868907731637, 0.1132172353536568, 0.19850047615697952, 0.6950004168934912, 0.41826441672946313, 0.040828937665112974, 0.2145583871630251, 0.09143093017991866, 0.10013996234885614, 0.3658834999306372, 0.587897812361327, 0.23563705889496211, 0.5289998061994394, 0.5981734696485812, 0.5956194363709464, 0.11295199838815062, 0.6349332021584286, 0.09356782907078887, 0.0672754654033908, 0.3541579814831264, 0.11781588709523827, 0.3295981493457443, 0.23443288181779365, 0.13830133810679424, 0.5122546205578999, 0.03626449638205209, 0.32057959349203036, 0.3955164844050859, 0.21320459763992916, 0.08620177311633537, 0.4132497936565127, 0.19514157099220286, 0.028148892894647393, 0.03728071159582558, 0.20213762816504022, 0.39088790332760825, 0.10566618212719892, 0.11466232649727714, 0.09544364959788487, 0.07351553674018241, 0.3657542344632553, 0.05859665738698361, 0.43634835962676355, 0.4827032077898804, 0.516310366273556, 0.6480037931050455, 0.21122004543372697, 0.030344760075157406, 0.22750344576024595, 0.18673438423788624, 0.5460909738859347, 0.0666291073587214, 0.320234954276134, 0.515425573770442, 0.5751179393061847, 0.3262180383913996, 0.12192585741802231, 0.6165939755266235, 0.09365914315081003, 0.44259853952477324, 0.31958523161407537, 0.09228899111547839, 0.22815273642701062, 0.5282447951108347, 0.7777719169155834, 0.13834506443323813, 0.29425092810710396, 0.5300870647699181, 0.031947521718024174, 0.1108646816717751, 0.053339747820140615, 0.14466174791529418, 0.25697560969337485, 0.3383868137798065, 0.30803904997837983, 0.03434255320493995, 0.08689109251212201, 0.46044782253877736, 0.0973761441498977, 0.3449058470623745, 0.024212367984770777, 0.11665042079727428, 0.3333970234137619, 0.1495417879159372, 0.0679784404121434, 0.2360052425084116, 0.39147703437781534, 0.04428683932015287, 0.5381556738404795, 0.4357341587922019, 0.11843845992675284, 0.28107964630818494, 0.06989794698232743, 0.2658605825653322, 0.22408104406272966, 0.15519213452661884, 0.09873339188795927, 0.10739713799337769, 0.4712507279726723, 0.31257930793611366, 0.6259141532505736, 0.1651629894813923, 0.13024327386797574, 0.08242409751896962, 0.55355901104019, 0.11256152515999429, 0.22124325125588817, 0.05838775174278421, 0.6734770756819889, 0.06919042490492266, 0.5773286546676725, 0.5693181878572973, 0.12726917141891614, 0.27983888222674136, 0.15690954109554833, 0.18593824584442387, 0.05432525584274117, 0.33273366741371935, 0.12435295831370408, 0.48112847828662497, 0.2959384652215836, 0.5042039768350125, 0.3749869638443927, 0.7258627386781167, 0.4806866421912115, 0.6234335830956541, 0.4191951896523489, 0.20821728825178332, 0.6343085651912675, 0.27674577061671146, 0.02140654255666985, 0.42849246998341506, 0.1817444030106703, 0.4551538855951942, 0.05087080041524106, 0.516641204200833, 0.6810720245435042, 0.08151744899857294, 0.4475169494323581, 0.03995706953508171, 0.2181819033834006, 0.20372897255157485, 0.24305701296248816, 0.5381556738404795, 0.2358485729609252, 0.051323642447754336, 0.1913631294907303, 0.32154631204965056, 0.31229802093755377, 0.3917329141436472, 0.39462053822053156, 0.3680669306910641, 0.5017894292511481, 0.32120711190509066, 0.0768019282386515, 0.1168769044932052, 0.31545143431826594, 0.12007957373947853, 0.08354361700756141, 0.2180731800932174, 0.7653011157176768, 0.05076221583963347, 0.11739077279846111, 0.3639458403519926, 0.4815918747301601, 0.35998732468747585, 0.457353694020342, 0.5520498791697908, 0.22168281241722143, 0.2132287846887433, 0.4763394582576197, 0.3040153802820409, 0.20749766415549342, 0.3316810644107503, 0.8126297477835096, 0.5749367295182395, 0.27274039590582944, 0.2685808245693546, 0.5172108675362206, 0.33506587713796443, 0.09616672688355288, 0.041108213935392324, 0.10548050716105373, 0.5016695616404938, 0.20022874051447226, 0.14220640128276774, 0.23772630779738468, 0.19606080251004787, 0.2603188495268066, 0.18846597668723208, 0.19827111133563302, 0.261548791893628, 0.4140325207077993, 0.8134796325151183, 0.12265695643958285, 0.6311167068993262, 0.13481820177301163, 0.0932384579037443, 0.14050160114126486, 0.2562249115981724, 0.08547750670655718, 0.08643201081848362, 0.19981675431015722, 0.31390222338706264, 0.06221739913672386, 0.06996303880871468, 0.30029370289300306, 0.4306817897420764, 0.6595343859760441, 0.2839408857911616, 0.20468539219890003, 0.1130196126722065, 0.2360017176902124, 0.13187147729288817, 0.42313120297864704, 0.06964897436687001, 0.1624399718171824, 0.17200815643270417, 0.07333105637055992, 0.2440137653363641, 0.4900110333069776, 0.3085554157386313, 0.03480496731142946, 0.12148031785507996, 0.15002971926037112, 0.5314247042003052, 0.2758453007685677, 0.2151852748992088, 0.2658605825653322, 0.29911225563077193, 0.6594110243744711, 0.49869782335001445, 0.16788254706683048, 0.11816213334465087, 0.08230909248122409, 0.13653212507346946, 0.25639170942272826, 0.06562233405876228, 0.23311900627036541, 0.3756616197417655, 0.46674395287949066, 0.3092684534350997, 0.8337319641197457, 0.8331457111467163, 0.2591056156836542, 0.4778687671024334, 0.2542440524586721, 0.5361036306539362, 0.07073721340803463, 0.4731688813159418, 0.5755848065786346, 0.356689463387698, 0.14225616860197343, 0.21837916002376445, 0.14466174791529418, 0.29899643271856946, 0.4757427727983842, 0.08126799884203029, 0.1296501822378736, 0.3286954654423938, 0.08620177311633537, 0.13855855420831553, 0.05543377339452393, 0.11917834098009661, 0.2613621884509647, 0.11269900223777074, 0.08429051026621415, 0.3393961441870107, 0.07031960314855146, 0.11356777592095357, 0.4853279864284006, 0.1279289285514792, 0.0584572339054259, 0.08612988585012649, 0.3472440907423937, 0.1248029959061332, 0.07502335399434323, 0.19827111133563302, 0.3424151534036639, 0.3065175956815872, 0.13808860398564737, 0.058092197534895806, 0.04082786106581715, 0.1602592849246841, 0.09156161599234125, 0.5036030690663805, 0.2640411824475748, 0.6468038092930676, 0.07201805208597656, 0.22470230804277058, 0.1334773721572423, 0.04847889440667685, 0.2685808245693546, 0.10911308148570098, 0.6764508967260475, 0.6280060594576413, 0.36761958218269275, 0.16019930342079847, 0.17605308658107655, 0.14078981831089854, 0.2384997092801764, 0.13117402490907393, 0.12818959986091483, 0.4161925244315118, 0.12435295831370408, 0.09814942480303201, 0.05480698563416486, 0.3746187330143109, 0.41092354232892336, 0.507894749900129, 0.5137929421583434, 0.08293523366016065, 0.2964416548030494, 0.15236141109070434, 0.4396941021426354, 0.41893931094950754, 0.09113953260801844, 0.10967473999240707, 0.055732078845942, 0.05640314085190745, 0.06176263301115803, 0.06427139521062619, 0.20386133178572885, 0.21597661143113533, 0.7486409492386699, 0.2610715902497083, 0.09465277491899493, 0.5556171757583562, 0.137718889647652, 0.1978940751503777, 0.08472590699531857, 0.356262641598029, 0.14596950445002987, 0.13865818299932142, 0.3088915816821678, 0.11516321289421916, 0.16121169033174265, 0.40573483691789825, 0.34308606282264, 0.36300204724896845, 0.17193414756867276, 0.035926383178341514, 0.34536882843285344, 0.4400180463892147, 0.5165194668234709, 0.23319834124303085, 0.9637923675569924, 0.2635599134550337, 0.6259141532505736, 0.12324962258280003, 0.1256037712827487, 0.1248029959061332, 0.11665042079727428, 0.29081136443782263, 0.12993062945549005, 0.20959981847797426, 0.12385816607190492, 0.16931651488884025, 0.2468284110987674, 0.6181879252747016, 0.3509541008179864, 0.08619429866610873, 0.09537770951135394, 0.8204393830764495, 0.2493836920976743, 0.10367142046182065, 0.11516383353466464, 0.07169627826225977, 0.5400384130096556, 0.2709141565803237, 0.16809050322974173, 0.3421981324687273, 0.812724325423183, 0.1326589750154965, 0.054670132935181304, 0.055346153509382656, 0.8039442695404772, 0.3276168958360183, 0.6561718697940482, 0.6214102617950452, 0.3046829516703813, 0.7853649284745584, 0.7303620793003476, 0.6719087507962026, 0.16000678121984613, 0.579612101366232, 0.6347749924714103, 0.41894393066564606, 0.06936532322770372, 0.28322834609079706, 0.343263893078516, 0.4450860003239352, 0.3090838478611311, 0.408095736797927, 0.11529682880263803, 0.13359771811640497, 0.2417229185475579, 0.10092265889692065, 0.8181934133883563, 0.3777834313813965, 0.8273808576462511, 0.18439353202429143, 0.5148786056082297, 0.11287077888712382, 0.16015059460472458, 0.29672938182784603, 0.36944561074938853, 0.2505850522824452, 0.8467591712977676, 0.3840267097226593, 0.261779448872241, 0.1645479955558209, 0.14631295673285594, 0.4248523287309329, 0.09222807982804315, 0.2121484308544801, 0.33273366741371935, 0.5470626312455473, 0.8294144697045585, 0.25206662215500397, 0.15998368749433245, 0.548322128117227, 0.3917329141436472, 0.15981565308588508, 0.23631147082452741, 0.21082920466209698, 0.1871387197916503, 0.24774693401855818, 0.1913242313933492, 0.16437448769677154, 0.07582203648947516, 0.032541140295091364, 0.06311143057978008, 0.5009235508757715, 0.12343879567504301, 0.445735807756371, 0.40322837553658053, 0.09397553936597514, 0.1598391281143201, 0.26702494168661406, 0.19782301216908982, 0.06831823449824892, 0.5451167746582685, 0.20142160156100697, 0.25747632252511843, 0.4257317671215596, 0.5062318064185062, 0.10278357133077332, 0.10857266292312517, 0.06223864817381186, 0.11377411494697365, 0.14082424186384768, 0.2589321903149734, 0.31776639873426016, 0.07983414941561229, 0.30174211068680845, 0.42532907678292176, 0.23734670470511587, 0.2862296469110084, 0.24790288035387664, 0.5526146374040077, 0.20425399436950087, 0.5166825128498294, 0.12415322942140417, 0.5310696157212036, 0.3866387435262121, 0.14313186082947948, 0.31648660326859934, 0.026792916001305622, 0.7856428374245099, 0.42383310375799566, 0.5944566396871084, 0.6256605001243821, 0.08813642250468567, 0.03544811528140901, 0.06935406654889886, 0.15751976448865512, 0.22608551288474832, 0.3127311228465576, 0.1409438166611655, 0.3285615524533705, 0.3591330499592894, 0.47964497307801546, 0.7143146030302826, 0.14223944449319303, 0.06929054967731618, 0.32120711190509066, 0.16913647442041335, 0.707286257884667, 0.3230684446475647, 0.7616845263358343, 0.4104900542879092, 0.10053249234255524, 0.1106599594415556, 0.1543174595222413, 0.46003879185641183, 0.3811350878514418, 0.07185070571861518, 0.23882593985771994, 0.5344976262521839, 0.11031385635331636, 0.09610989844306939, 0.4955559099445003, 0.07845190603324759, 0.30697262074812925, 0.12767551958037127, 0.4375661224395835, 0.07737023387634634, 0.15307682457740834, 0.05694427046787409, 0.09028836937410878, 0.4011292297732457, 0.6186146927451245, 0.11561676905211238, 0.0993047499370594, 0.08102401279833105, 0.8100206966555492, 0.10768932514586738, 0.15386113005635593, 0.4026560765644126, 0.045535707525545144, 0.08229583319403, 0.08227601457953415, 0.8241544781987433, 0.0759900855540333, 0.5147505197509459, 0.11103147778198663, 0.42144961755966015, 0.24880465403270857, 0.3112403223054312, 0.3282460941643247, 0.28312386083977936, 0.2865521931047814, 0.16537364909659502, 0.4284132019637321, 0.34116073112729894, 0.051142721309942685, 0.10794707492381372, 0.1108646816717751, 0.29201805921023904, 0.07365131996157204, 0.36851051207096197, 0.2556143611338999, 0.07392456180697715, 0.045535707525545144, 0.15025986810093994, 0.4395989822566938, 0.19636656988846957, 0.21018464628148859, 0.15085686628779282, 0.3429118439192298, 0.16104008564300487, 0.2055862423584408, 0.18673310211333727, 0.5528531989583015, 0.20219789553586287, 0.5807830339134155, 0.6112381610839525, 0.07515362639458067, 0.5722084734915175, 0.3654892991508686, 0.1991057466826236, 0.4912569401667811, 0.05850610073101081, 0.3077884117234785, 0.17038242498240874, 0.14066607718466684, 0.10248584652416493, 0.4022873718442217, 0.07205214632436985, 0.35142291824287475, 0.10941760034103376, 0.06679271580157364, 0.05675388891699207, 0.058987921856350156, 0.3660303223369904, 0.28790374422385034, 0.4158290962648631, 0.40710291595796666, 0.09934102670994882, 0.06362846635195196, 0.30921476208988685, 0.23242198019285765, 0.055541210656895434, 0.5297663836663529, 0.10744632778983743, 0.18410212910939194, 0.17721960751489196, 0.1962664672709783, 0.1617648996714035, 0.10584426414108294, 0.5203501665477333, 0.07365131996157204, 0.31578819840495265, 0.35364190165315845, 0.1707951928721818, 0.41655733121321636, 0.15801546378512366, 0.7568436608419439, 0.22368578646300386, 0.0609449253562836, 0.2225096762928218, 0.18587673368692093, 0.05559101133196209, 0.569598540521716, 0.08073228430722412, 0.15724041301590164, 0.12879141548479, 0.4306817897420764, 0.17998791969802397, 0.41280880088413996, 0.5723062335690389, 0.6457404130724687, 0.10420061808672998, 0.12564769853034463, 0.21795029564941848, 0.4720930498870375, 0.11304202998506685, 0.545112257205237, 0.14852188644910969, 0.17217029085021085, 0.336250902618187, 0.48671482860553816, 0.5093433434984792, 0.35847801144896685, 0.3008706318705062, 0.18494609259573758, 0.4199330463236065, 0.04162287990776414, 0.2633909944023186, 0.4252182303976608, 0.4684623303117058, 0.1925553058603695, 0.09610989844306939, 0.09129843496680234, 0.3302708189676917, 0.4199330463236065, 0.11927294568859859, 0.4864154015695107, 0.06472081497616611, 0.6387929002666255, 0.37932906694235924, 0.093713747684541, 0.20627971812824875], \"xaxis\": \"x\", \"y\": [\"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\"], \"yaxis\": \"y2\"}], \"layout\": {\"barmode\": \"overlay\", \"hovermode\": \"closest\", \"legend\": {\"orientation\": \"h\", \"traceorder\": \"reversed\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y2\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"Probability\"}, \"zeroline\": false}, \"yaxis\": {\"anchor\": \"free\", \"domain\": [0.35, 1], \"position\": 0.0, \"title\": {\"text\": \"Share\"}}, \"yaxis2\": {\"anchor\": \"x\", \"domain\": [0, 0.25], \"dtick\": 1, \"showticklabels\": false}}}}]}, \"insights\": [], \"additionalGraphs\": [], \"alerts\": [], \"tabs\": []}, {\"type\": \"tabbed_graph\", \"title\": \"Current: Probability Distribution\", \"size\": 1, \"details\": \"\", \"alertsPosition\": null, \"alertStats\": null, \"params\": {\"graphs\": [{\"id\": \"tab_good\", \"title\": \"good\", \"graph\": {\"data\": [{\"autobinx\": false, \"histnorm\": \"probability density\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#ed0400\"}, \"name\": \"good\", \"opacity\": 0.7, \"type\": \"histogram\", \"x\": [0.33396714643252134, 0.5044440900554997, 0.8874896900044845, 0.4686759077780351, 0.23831547366416572, 0.571181601185031, 0.7785327680196316, 0.7290551099174598, 0.9581131370131553, 0.6801000322064107, 0.413367674560271, 0.6667140739211237, 0.9108229754863395, 0.9275086157065797, 0.9186958597750785, 0.7191871442695774, 0.8184457509658746, 0.8597940676688322, 0.7947045908306632, 0.8244149680645384, 0.42771531534877594, 0.5315376696882942, 0.7136291946100958, 0.5510697799054304, 0.6393262665313312, 0.9016582766249417, 0.8560880110261746, 0.8947361144883382, 0.9102326114023062, 0.840723585394272, 0.9264645566705582, 0.5105903360131552, 0.752648770317166, 0.5855954083225455, 0.8989214048388485, 0.5190750352404293, 0.9560713253502463, 0.7273157243430202, 0.9279672131348602, 0.640103147954212, 0.9158977434209615, 0.9035955072010529, 0.7140955379655831, 0.233508355491505, 0.7280578325574358, 0.8810827811902006, 0.3966129217085586, 0.15541760955422754, 0.5851621750323275, 0.9046111951917862, 0.4177213302712193, 0.7993763114768937, 0.6978409661933959, 0.6473373667551029, 0.770784382977056, 0.6500641275496193, 0.548949563093737, 0.9803199442553986, 0.6150775052067382, 0.391333092160729, 0.6966682278280982, 0.9426748402861506, 0.9170092977635526, 0.844625652038695, 0.5621782696252592, 0.8935808323282117, 0.6792214086077275, 0.6719996755401956, 0.5252591274442797, 0.7277045758687855, 0.4685752957996948, 0.8616549355667619, 0.347491516391863, 0.8224130863808733, 0.5340790568488665, 0.6711667658766297, 0.5277539611022016, 0.7226430813715845, 0.8140972745487615, 0.3280236940194876, 0.9543080196225542, 0.7752655593026647, 0.9223925066666061, 0.8588031784191832, 0.6345107008491314, 0.9393010047953068, 0.7897067132703484, 0.8608062836413887, 0.8367885032124018, 0.38555642305179116, 0.8611944449682004, 0.9172341012895443, 0.9206892306522243, 0.9500505925695213, 0.537798347971205, 0.9173482789702866, 0.44454351342386716, 0.8909704850569525, 0.7351932580165473, 0.6818328744935735, 0.7981559962965634, 0.7626532952948841, 0.807353254900461, 0.964411205143099, 0.4685752957996948, 0.6986526320119215, 0.1956969407137045, 0.9233481403380283, 0.8218375601976645, 0.8536269727611236, 0.5637680470866036, 0.42267134533232753, 0.93003590801509, 0.9364808605729722, 0.8816060831574614, 0.9663102962713933, 0.8345570787709832, 0.4997893986747249, 0.7921603237806832, 0.5586815647381762, 0.8622246464681924, 0.9828719612298703, 0.909295720392338, 0.9476267884443668, 0.5395521774612226, 0.901360886913609, 0.39410444510430487, 0.9262213132200262, 0.6627387433216217, 0.9629433821448677, 0.9614311452267452, 0.9802968012486629, 0.933760787013923, 0.34432718187202205, 0.63596173557573, 0.624364378916488, 0.7417789548241253, 0.7300918276682445, 0.6968315453320488, 0.7840233885688647, 0.8958841271622066, 0.5417426694559925, 0.7102579146160282, 0.6004345411549624, 0.515920701757342, 0.7587882454650442, 0.5029588531082266, 0.6887596776945688, 0.8642849605932809, 0.6469572639767995, 0.8103639651534781, 0.939764354405301, 0.694136577696587, 0.6593725303534554, 0.9646797005081557, 0.7979900311745153, 0.792123904710467, 0.8869579700149332, 0.7351250317969437, 0.5332560471205093, 0.9406873315653421, 0.39362685027924615, 0.9466602521798594, 0.8394325033041952, 0.6633442657978572, 0.8126408700417265, 0.7332457619716184, 0.08024070404520958, 0.8667774471450977, 0.6466814331404849, 0.912366876100516, 0.656670904734599, 0.8701678467707724, 0.8875925797813499, 0.9658725076002231, 0.7668332861852056, 0.8604440887473094, 0.934384507524058, 0.9605946056867319, 0.951253157591183, 0.5749289095213865, 0.6279243005170476, 0.7937202818717513, 0.7665301650725991, 0.700127941221274, 0.8531107444728586, 0.7947045908306632, 0.8870566665876504, 0.5476228787844645, 0.8410401833568673, 0.8736671065238262, 0.6519898659949606, 0.936943112068646, 0.9077719201719568, 0.8071889556778997, 0.8815615400732472, 0.8935313268029127, 0.8782891297971865, 0.5029588531082266, 0.5797201450332624, 0.9416775458320723, 0.5958140198486584, 0.2485157288688957, 0.932021424688801, 0.8531502837407814, 0.6344194678828672, 0.632587077283238, 0.9121448358615357, 0.5776545535910985, 0.9052765174806566, 0.8580390107418799, 0.8998644401112552, 0.6784536879503494, 0.9458342431661766, 0.21387363850783603, 0.9530348339880965, 0.7307391114165022, 0.7187682731289255, 0.6905635603269331, 0.9569274903702625, 0.9287384091375525, 0.3856984054091925, 0.504413920551941, 0.5389739198483336, 0.5921068831639978, 0.10702848140489757, 0.8772993497727819, 0.6361944011057532, 0.8952999713010865, 0.7069578609115064, 0.10632960186243966, 0.6465592619811017, 0.9116333268133815, 0.9210441535829985, 0.9483358221641291, 0.5800224234700003, 0.896951343689222, 0.8958659323404018, 0.8896861436466836, 0.7763142135369961, 0.778627444633172, 0.9274605647284293, 0.9167924025380936, 0.6422094408272838, 0.6363725079258666, 0.8694129796739031, 0.5693182102579236, 0.5315376696882942, 0.6814536952243052, 0.30089534057709466, 0.6689448970920832, 0.6419522618821227, 0.6500641275496193, 0.8221968069187356, 0.9285763346020383, 0.8495153837633861, 0.7135666997345446, 0.8850789772017983, 0.9128367188568884, 0.8709442503982084, 0.44714680104169846, 0.7147831401969469, 0.6814536952243052, 0.5823319261018008, 0.7718122970862826, 0.8925058444773368, 0.9249991097277733, 0.7849066379312727, 0.5120166815330335, 0.7863291630268572, 0.8171821177205619, 0.8878235148823457, 0.9813953955585096, 0.5009899161211654, 0.6787020040856314, 0.2747106808400709, 0.6998114428322438, 0.7191783799678735, 0.7566715075843347, 0.7741630673610131, 0.692871858980435, 0.8706970297938403, 0.9226518689226377, 0.619213859232465, 0.9620625840847012, 0.8161066853745392, 0.7984578805051198, 0.8987836568806694, 0.27900511725120763, 0.747868261422589, 0.8013372150606806, 0.4430395412241901, 0.8082746512504794, 0.9248395818955686, 0.8132668978866627, 0.7926355964369082, 0.7243101498981422, 0.8251498778038484, 0.865753667016409, 0.8784859927081519, 0.9613966942665844, 0.8380103992838959, 0.9376908870460701, 0.8505645904112248, 0.5317253080143199, 0.8756470416862959, 0.8823120896825394, 0.8920529250761863, 0.9565288857220365, 0.92576324319171, 0.8397457208604353, 0.8008835764985612, 0.7620555647282774, 0.6333567796033132, 0.8986985644274655, 0.8289197139212982, 0.38568054861828666, 0.4358764146033148, 0.7013568331933456, 0.5524769805317635, 0.8654015550049637, 0.9625385348003681, 0.4997035751430624, 0.5940434106189647, 0.29640429037896177, 0.9370396801623051, 0.7496358493500708, 0.8521916566704996, 0.7519935213994349, 0.8956127660014477, 0.7563308848917781, 0.5425355780301907, 0.1652985164032473, 0.5777375433929663, 0.5926841497777402, 0.5247451599628447, 0.6215406511606532, 0.646742228322253, 0.5236567091352762, 0.8105889943537302, 0.7614647275399787, 0.7272264480694343, 0.44438282424164377, 0.8051848688934031, 0.253979247575754, 0.8737269176380216, 0.7884186533408385, 0.5226162157005312, 0.7776146375974927, 0.8021344726910251, 0.6794204065079696, 0.8398669626756513, 0.3743394998756179, 0.6593725303534554, 0.41008410759983227, 0.8726624594592295, 0.31336232876890546, 0.6187135046228962, 0.9208146539756937, 0.8948907807194619, 0.9475948217130945, 0.7098971478357265, 0.41970311630379203, 0.5524505095188592, 0.6689295490636696, 0.39534528644804523, 0.6686700461744643, 0.6608417181144597, 0.6289006219381473, 0.8112353209803558, 0.9675531845963172, 0.3468688843876404, 0.8171815196180959, 0.9315945487332388, 0.7612383340144859, 0.43979370974717685, 0.9452166580978265, 0.810349906376065, 0.4979189466877109, 0.9054024939516333, 0.7506263221664519, 0.8595966107872783, 0.9041757536760852, 0.5120166815330335, 0.9246344940597735, 0.622364539475366, 0.7975959936185795, 0.9376528402833735, 0.8270495791839716, 0.7463426393970082, 0.8508295060861325, 0.5277539611022016, 0.7926521549058593, 0.8343380415579561, 0.7973631232158779, 0.5423298306356671, 0.6253812669856891, 0.9342151247863544, 0.9064095870896521, 0.8428584418618921, 0.5680191878381406, 0.8230633503438987, 0.857993972512287, 0.8312116035859974, 0.8886868130574391, 0.5695902702544526, 0.8750573328895943, 0.47134086624147714, 0.6082670858563528, 0.8571520978358925, 0.7006810412396262, 0.6001343818465046, 0.8680196363335714, 0.7833148206731655, 0.835330250744176, 0.6883000602161935, 0.4297997702781997, 0.7132181587745201, 0.941909753873568, 0.9298379484442667, 0.8950633078112005, 0.9652574497835966, 0.8593048115498744, 0.23022113319019433, 0.5548683876071567, 0.8789570823277312, 0.7176343272433334, 0.7135972690872326, 0.900955402304434, 0.89110615578316, 0.8021344726910251, 0.36734125225010755, 0.9233813125795639, 0.9269988231022361, 0.6021478506882372, 0.27064660283581765, 0.7595966254948197, 0.5317253080143199, 0.9626288904553877, 0.518871521713375, 0.4244151934213653, 0.8784852709235653, 0.667697582798242, 0.6791650855490978, 0.8659372985570389, 0.5217980090164113, 0.9757802673562255, 0.20769640873195563, 0.6900575067285889, 0.15051833553221247, 0.8476988333501053, 0.12043274000614122, 0.6546311715671466, 0.412102187638673, 0.6339696776630096, 0.6925917751558638, 0.8074446941396305, 0.8417042066658985, 0.4702054036006336, 0.8107456318417504, 0.934253622333564, 0.9671353887875448, 0.3776875782453083, 0.5133306968464912, 0.8279918435672958, 0.7295730380004212, 0.8398957027397556, 0.7470826509089123, 0.7722124156410631, 0.3944809481034696, 0.5801047158883857, 0.7134138458261836, 0.8265590446981121, 0.5836238058504062, 0.7538957359152121, 0.9708936701567454, 0.41507295289487073, 0.9039211350062085, 0.5109703825452502, 0.8880660412534, 0.6332514250278477, 0.703270618172154, 0.863031725372896, 0.9601349291832292, 0.5845797646527732, 0.8357575010967041, 0.9584406458449958, 0.8733333206292072, 0.4740801794177068, 0.5787650908025566, 0.38525623454815555, 0.5715075300165849, 0.951253157591183, 0.831291834366621, 0.6482062646591596, 0.5447536045265621, 0.8456825404777587, 0.5358725178581014, 0.8893400405584444, 0.5955893395860203, 0.9408369636189147, 0.7580589814818564, 0.4244151934213653, 0.7636885291754726, 0.9532052815091139, 0.6686700461744643, 0.39683939049776734, 0.8309978518015588, 0.06774730328187532, 0.8934061610794648, 0.9459413258233057, 0.8507977517004935, 0.9694554821790147, 0.8640493534313302, 0.8409166048571896, 0.9059760843724536, 0.7278052027863667, 0.8952246802917138, 0.39534528644804523, 0.9558702864115934, 0.9178754126151818, 0.7504628435478695, 0.7568870052952757, 0.32046258648166903, 0.9712495894387816, 0.7125870341029702, 0.8286889773580812, 0.929575727770858, 0.8422483936479932, 0.60065365322741, 0.5775074082600717, 0.7505976846167132, 0.5317253080143199, 0.9590110623565244, 0.9651712957082627, 0.7333643603414158, 0.7757825668725274, 0.8928390517037824, 0.2578168736401774, 0.5355488836719776, 0.8408692583280314, 0.7849780542174357, 0.8711681462620556, 0.8447990405440073, 0.9571933326515756, 0.9307123551507692, 0.6421242495412457, 0.9239207054420927, 0.9336219461922934, 0.4244151934213653, 0.5673643045526261, 0.8301442064454496, 0.528471943574542, 0.8835542071774324, 0.8820947700128993, 0.4561713647735051, 0.584381944856391, 0.9493936477483658, 0.7816316980556022, 0.7770145472448273, 0.8495153837633861, 0.8318035560268552, 0.5220388622338656, 0.8589980209217414, 0.21216021099657945, 0.8782303617207965, 0.901850575196968, 0.7683760396387002, 0.9559989503713009, 0.938411491366706, 0.7225398931917507, 0.5918361617892179, 0.8596378534897678, 0.8816239240572568, 0.9296844522785247, 0.8299758417251202, 0.7538846798551382, 0.931253582726863, 0.6902425303942638, 0.9299571155275668, 0.35461708236434614, 0.6119587629530028, 0.8979450471026776, 0.8782891297971865, 0.6144930729026484, 0.5601837238662909, 0.4230258756549153, 0.5115702372514986, 0.6133200318312215, 0.8287048127179734, 0.42887934024879554, 0.5543929044930882, 0.5414149972460248, 0.7453725251924848, 0.6522898344923613, 0.6445138145159856, 0.9212190995841192, 0.6991293681294938, 0.9188224881967051, 0.9444881948020799, 0.8399825546316605, 0.6440269003431431, 0.45260210695563535, 0.6678228102737954, 0.8535669746933884, 0.23469888428232324, 0.7581156815660375, 0.8329520097124233, 0.5886389680190937, 0.4250130050586104, 0.290761161529129, 0.9065968169685268, 0.39757013049667705, 0.9584529405260903, 0.24804178200132845, 0.8400605958344816, 0.9562762484868867, 0.5923100188758571, 0.5355488836719776, 0.6866862751474886, 0.753715093249364, 0.9302702282582556, 0.8405005145861136, 0.7758456574858743, 0.8270123797965384, 0.9270997487744173, 0.8779999285967196, 0.6350604679157676, 0.9057987369792326, 0.9732730617650076, 0.28007269673131574, 0.5393237551960537, 0.9509318156255189, 0.8055358405733448, 0.8512314640165554, 0.6752183046546253, 0.9766791413071304, 0.26893819095773785, 0.5105552073939665, 0.7964242570425004, 0.9159462749375985, 0.46312559485344046, 0.7889853219989779, 0.5331772070153998, 0.6250130361556073, 0.5340700079782073, 0.8981158701031157, 0.8424802355113449], \"xaxis\": \"x\", \"xbins\": {\"end\": 0.9828719612298703, \"size\": 0.05, \"start\": 0.06774730328187532}, \"yaxis\": \"y\"}, {\"autobinx\": false, \"histnorm\": \"probability density\", \"legendgroup\": \"other\", \"marker\": {\"color\": \"#4d4d4d\"}, \"name\": \"other\", \"opacity\": 0.7, \"type\": \"histogram\", \"x\": [0.8142007211296887, 0.07257977436397642, 0.7430932382113554, 0.8214862427787604, 0.5698848321031316, 0.6048119589659149, 0.6466669219762841, 0.14510080060429495, 0.2250304680670007, 0.28492472637839966, 0.42061632734231896, 0.8281252124183194, 0.49622399336621903, 0.3482895521074759, 0.4678833354511545, 0.5708968386647719, 0.37048677721847617, 0.553632248395139, 0.8702137350251022, 0.42186952587750404, 0.8696774950675754, 0.5410576963494411, 0.3971326977900686, 0.3275001196198921, 0.9448289227093116, 0.7109941475090589, 0.41925580570138304, 0.3675472469853882, 0.6721911818800557, 0.5562207270314473, 0.5262426608517637, 0.3244609607385458, 0.15056615442564347, 0.15676979724311627, 0.6037730696030339, 0.6342511279653397, 0.021947035536558718, 0.32429164429335744, 0.5678746850743716, 0.3571680467137555, 0.7755534309390314, 0.3240287891037917, 0.699424662214302, 0.5151532452376618, 0.7564675819717819, 0.38343591026479057, 0.19811005648518398, 0.3168419703358067, 0.5315947262677626, 0.9269044449273315, 0.8260225289794664, 0.451791899378283, 0.830516920403184, 0.47128602930186, 0.19027823806377472, 0.5181346713949518, 0.29552777318700446, 0.45414400334446664, 0.39329840463575844, 0.42327932510626076, 0.45838907164509224, 0.2233864252642039, 0.3628419195926303, 0.6709353200988277, 0.46058046365566996, 0.25551237833043455, 0.7234147543269824, 0.1481282262733752, 0.314935793994079, 0.20050531530561894, 0.37453315488553635, 0.701015529968035, 0.6343341418527783, 0.1739320900588749, 0.734996253073231, 0.8172229478314255, 0.3598554146739685, 0.7121055211356295, 0.2620604909731644, 0.3421138035730516, 0.6951268813066005, 0.35208221297891723, 0.452099210446082, 0.18907620085798427, 0.5444201651108793, 0.6484058972837882, 0.3258186925596978, 0.5963383680780668, 0.6202666247822538, 0.576738593946626, 0.5054992484109841, 0.2972245631729925, 0.6844333356791464, 0.42629475072919953, 0.4405153833121037, 0.01207867704715336, 0.7609288944606691, 0.23951123982998349, 0.09310514674080905, 0.5084920166510624, 0.33067609257366243, 0.36481899584296196, 0.5708968386647719, 0.3194802059637459, 0.14207297841267416, 0.5776897120055972, 0.2026163425795633, 0.37909000048748537, 0.38206764842015895, 0.41324683104354176, 0.17826143731067332, 0.42339414872454434, 0.39148091864802853, 0.3511350413575442, 0.8053393751847749, 0.5937005322868365, 0.6849942580153355, 0.38930033076762494, 0.5168500865319015, 0.5699073288866824, 0.5376087249833421, 0.8185832461647057, 0.25950508036415604, 0.20394483716883388, 0.3303044530853749, 0.2528102968078532, 0.8477719856767125, 0.5217124250004609, 0.3303044530853749, 0.5382885532339231, 0.9625763866028243, 0.6536174904341296, 0.42629475072919953, 0.6458781618432388, 0.46574001023909845, 0.37268733756108086, 0.8180085473348132, 0.35493594975273335, 0.2423640089427935, 0.3636330633241046, 0.6421622311157122, 0.5444201651108793, 0.7396308412796291, 0.9036153464846048, 0.21101569987323432, 0.6004024464464508, 0.7595861882737439, 0.486549602332862, 0.2379839758891197, 0.5147825233229498, 0.2065932277190248, 0.4342628292980428, 0.5940848250235929, 0.4857193175270624, 0.5332610244722983, 0.5402196969638672, 0.8578846895389459, 0.5290225674595067, 0.6074669506688956, 0.1847839155105034, 0.3581391437324269, 0.4304380754474639, 0.8410120374942113, 0.5810086483513661, 0.19026233744636453, 0.7223494520380469, 0.8589928738613049, 0.8374625942163022, 0.781203852328267, 0.73983195178881, 0.41156537259256004, 0.7482873396984137, 0.44431713201158524, 0.7113673874393347, 0.49869552495399233, 0.7627102864663872, 0.37193390769028617, 0.37187810520956766, 0.3773291605703562, 0.8719651627687759, 0.6218762459828849, 0.3781393537983126, 0.553632248395139, 0.47624084907999176, 0.774399353278846, 0.5840424935194366, 0.5601025471409736, 0.6186690618327106, 0.620611700356168, 0.5755798886129706, 0.15047650536569443, 0.5530049338021776, 0.6597439619439023, 0.8300222117931148, 0.3490158529243493, 0.4410646109528086, 0.5067909967309752, 0.5851482063434866, 0.7149827463187939, 0.4849259975950144, 0.2094210588097294, 0.33399024531412796, 0.4083143545243069, 0.7497022835596558, 0.7817929239213606, 0.7637421953724776, 0.3825655414920891, 0.6611482494098961, 0.19022241257108333, 0.44972084577511023, 0.5476732603321269, 0.4831274653996314, 0.5077048340566679, 0.7289504589448288, 0.4379810490617926, 0.8017221455714771, 0.6434673631716396, 0.5059779734745421, 0.6065367192264559, 0.650368705032214, 0.34567471266024347, 0.39561589000187136, 0.3427787545601037, 0.4676404271158623, 0.5332283386400669, 0.4519108142444285, 0.40662831629925006, 0.42305576187259053, 0.22032895172816622, 0.5278715769330472, 0.43679486629948455, 0.743933429392776, 0.5269515041023835, 0.5008800654866953, 0.214168174561682, 0.44879088851457377, 0.683485355417811, 0.807753104897186, 0.42629475072919953, 0.8502951424821861, 0.17421175568219957, 0.25491371883486935, 0.7595861882737439, 0.6571724132942184, 0.7813188949129265, 0.5626906653340306, 0.8674288259883418, 0.6600514650598344, 0.4827749661719035, 0.5456147119159479, 0.39827550056677263, 0.27323823737433794, 0.695896529362927, 0.5048820477254727, 0.5422349097465021, 0.5610936746718964, 0.6571724132942184, 0.3088751107498249, 0.45428761266464013, 0.6604471727860799, 0.43371621376298963, 0.6171893197168647, 0.8100511550343341, 0.8100511550343341, 0.605832578461134, 0.5526475584669951, 0.4275055171336787, 0.8734720021260204, 0.8508295378350301, 0.5807723706867254, 0.8272749548927728, 0.2670652478909882, 0.7020144194675465, 0.4615566916191992, 0.7055847950248242, 0.43389869234556755, 0.6071692164257629, 0.3496825637352313, 0.23676491619791426, 0.7057755976874825, 0.15539001443149586, 0.6187538615870153, 0.8735882828904331, 0.30049486749739024, 0.23191705420611952, 0.8913917397916864, 0.4977157214618499, 0.16961113509580228, 0.8485494795219795, 0.4760032757956232, 0.5053843099270294, 0.2676015269871764, 0.3627664421236291, 0.15146266807038725, 0.7898179638281774, 0.6145296307645981, 0.3790380236797623, 0.3003532640340299, 0.6086112016774773, 0.39906793889171593, 0.8185832461647057, 0.6715802865662828, 0.8260225289794664, 0.6056902064850618, 0.400132762133902, 0.39471961640683584, 0.6449859309106076, 0.5637152910565628, 0.39949420960438964, 0.5490401551410112, 0.4398875418860128, 0.30916577334906253, 0.7093303227687476, 0.4562508424819209, 0.40444044759428516, 0.5773483646962835, 0.447777692034652, 0.4961542215384683, 0.32474312180562226, 0.21192693199409943, 0.9056903490933487, 0.5013816399998683, 0.758876109553896, 0.6364928148646596, 0.2952804752502578, 0.4748951900520853, 0.43679486629948455, 0.5479962315186364, 0.4728142838839701, 0.6343341418527783, 0.12248807650217919, 0.5052525886146573, 0.8281252124183194, 0.8930081609652758, 0.36283726088930296, 0.8098196742550625, 0.656477404357746, 0.193885049884708, 0.5269515041023835, 0.49858469647139786, 0.32780472036158087, 0.24927512797396847, 0.6148718578314069, 0.10691527318901187, 0.136775438340409, 0.8489192718114075, 0.2600203086082801, 0.8142007211296887, 0.5269515041023835, 0.7966615933629455, 0.5633234794197017, 0.767479452333631], \"xaxis\": \"x\", \"xbins\": {\"end\": 0.9625763866028243, \"size\": 0.05, \"start\": 0.01207867704715336}, \"yaxis\": \"y\"}, {\"legendgroup\": \"good\", \"marker\": {\"color\": \"#ed0400\", \"symbol\": \"line-ns-open\"}, \"mode\": \"markers\", \"name\": \"good\", \"showlegend\": false, \"type\": \"scatter\", \"x\": [0.33396714643252134, 0.5044440900554997, 0.8874896900044845, 0.4686759077780351, 0.23831547366416572, 0.571181601185031, 0.7785327680196316, 0.7290551099174598, 0.9581131370131553, 0.6801000322064107, 0.413367674560271, 0.6667140739211237, 0.9108229754863395, 0.9275086157065797, 0.9186958597750785, 0.7191871442695774, 0.8184457509658746, 0.8597940676688322, 0.7947045908306632, 0.8244149680645384, 0.42771531534877594, 0.5315376696882942, 0.7136291946100958, 0.5510697799054304, 0.6393262665313312, 0.9016582766249417, 0.8560880110261746, 0.8947361144883382, 0.9102326114023062, 0.840723585394272, 0.9264645566705582, 0.5105903360131552, 0.752648770317166, 0.5855954083225455, 0.8989214048388485, 0.5190750352404293, 0.9560713253502463, 0.7273157243430202, 0.9279672131348602, 0.640103147954212, 0.9158977434209615, 0.9035955072010529, 0.7140955379655831, 0.233508355491505, 0.7280578325574358, 0.8810827811902006, 0.3966129217085586, 0.15541760955422754, 0.5851621750323275, 0.9046111951917862, 0.4177213302712193, 0.7993763114768937, 0.6978409661933959, 0.6473373667551029, 0.770784382977056, 0.6500641275496193, 0.548949563093737, 0.9803199442553986, 0.6150775052067382, 0.391333092160729, 0.6966682278280982, 0.9426748402861506, 0.9170092977635526, 0.844625652038695, 0.5621782696252592, 0.8935808323282117, 0.6792214086077275, 0.6719996755401956, 0.5252591274442797, 0.7277045758687855, 0.4685752957996948, 0.8616549355667619, 0.347491516391863, 0.8224130863808733, 0.5340790568488665, 0.6711667658766297, 0.5277539611022016, 0.7226430813715845, 0.8140972745487615, 0.3280236940194876, 0.9543080196225542, 0.7752655593026647, 0.9223925066666061, 0.8588031784191832, 0.6345107008491314, 0.9393010047953068, 0.7897067132703484, 0.8608062836413887, 0.8367885032124018, 0.38555642305179116, 0.8611944449682004, 0.9172341012895443, 0.9206892306522243, 0.9500505925695213, 0.537798347971205, 0.9173482789702866, 0.44454351342386716, 0.8909704850569525, 0.7351932580165473, 0.6818328744935735, 0.7981559962965634, 0.7626532952948841, 0.807353254900461, 0.964411205143099, 0.4685752957996948, 0.6986526320119215, 0.1956969407137045, 0.9233481403380283, 0.8218375601976645, 0.8536269727611236, 0.5637680470866036, 0.42267134533232753, 0.93003590801509, 0.9364808605729722, 0.8816060831574614, 0.9663102962713933, 0.8345570787709832, 0.4997893986747249, 0.7921603237806832, 0.5586815647381762, 0.8622246464681924, 0.9828719612298703, 0.909295720392338, 0.9476267884443668, 0.5395521774612226, 0.901360886913609, 0.39410444510430487, 0.9262213132200262, 0.6627387433216217, 0.9629433821448677, 0.9614311452267452, 0.9802968012486629, 0.933760787013923, 0.34432718187202205, 0.63596173557573, 0.624364378916488, 0.7417789548241253, 0.7300918276682445, 0.6968315453320488, 0.7840233885688647, 0.8958841271622066, 0.5417426694559925, 0.7102579146160282, 0.6004345411549624, 0.515920701757342, 0.7587882454650442, 0.5029588531082266, 0.6887596776945688, 0.8642849605932809, 0.6469572639767995, 0.8103639651534781, 0.939764354405301, 0.694136577696587, 0.6593725303534554, 0.9646797005081557, 0.7979900311745153, 0.792123904710467, 0.8869579700149332, 0.7351250317969437, 0.5332560471205093, 0.9406873315653421, 0.39362685027924615, 0.9466602521798594, 0.8394325033041952, 0.6633442657978572, 0.8126408700417265, 0.7332457619716184, 0.08024070404520958, 0.8667774471450977, 0.6466814331404849, 0.912366876100516, 0.656670904734599, 0.8701678467707724, 0.8875925797813499, 0.9658725076002231, 0.7668332861852056, 0.8604440887473094, 0.934384507524058, 0.9605946056867319, 0.951253157591183, 0.5749289095213865, 0.6279243005170476, 0.7937202818717513, 0.7665301650725991, 0.700127941221274, 0.8531107444728586, 0.7947045908306632, 0.8870566665876504, 0.5476228787844645, 0.8410401833568673, 0.8736671065238262, 0.6519898659949606, 0.936943112068646, 0.9077719201719568, 0.8071889556778997, 0.8815615400732472, 0.8935313268029127, 0.8782891297971865, 0.5029588531082266, 0.5797201450332624, 0.9416775458320723, 0.5958140198486584, 0.2485157288688957, 0.932021424688801, 0.8531502837407814, 0.6344194678828672, 0.632587077283238, 0.9121448358615357, 0.5776545535910985, 0.9052765174806566, 0.8580390107418799, 0.8998644401112552, 0.6784536879503494, 0.9458342431661766, 0.21387363850783603, 0.9530348339880965, 0.7307391114165022, 0.7187682731289255, 0.6905635603269331, 0.9569274903702625, 0.9287384091375525, 0.3856984054091925, 0.504413920551941, 0.5389739198483336, 0.5921068831639978, 0.10702848140489757, 0.8772993497727819, 0.6361944011057532, 0.8952999713010865, 0.7069578609115064, 0.10632960186243966, 0.6465592619811017, 0.9116333268133815, 0.9210441535829985, 0.9483358221641291, 0.5800224234700003, 0.896951343689222, 0.8958659323404018, 0.8896861436466836, 0.7763142135369961, 0.778627444633172, 0.9274605647284293, 0.9167924025380936, 0.6422094408272838, 0.6363725079258666, 0.8694129796739031, 0.5693182102579236, 0.5315376696882942, 0.6814536952243052, 0.30089534057709466, 0.6689448970920832, 0.6419522618821227, 0.6500641275496193, 0.8221968069187356, 0.9285763346020383, 0.8495153837633861, 0.7135666997345446, 0.8850789772017983, 0.9128367188568884, 0.8709442503982084, 0.44714680104169846, 0.7147831401969469, 0.6814536952243052, 0.5823319261018008, 0.7718122970862826, 0.8925058444773368, 0.9249991097277733, 0.7849066379312727, 0.5120166815330335, 0.7863291630268572, 0.8171821177205619, 0.8878235148823457, 0.9813953955585096, 0.5009899161211654, 0.6787020040856314, 0.2747106808400709, 0.6998114428322438, 0.7191783799678735, 0.7566715075843347, 0.7741630673610131, 0.692871858980435, 0.8706970297938403, 0.9226518689226377, 0.619213859232465, 0.9620625840847012, 0.8161066853745392, 0.7984578805051198, 0.8987836568806694, 0.27900511725120763, 0.747868261422589, 0.8013372150606806, 0.4430395412241901, 0.8082746512504794, 0.9248395818955686, 0.8132668978866627, 0.7926355964369082, 0.7243101498981422, 0.8251498778038484, 0.865753667016409, 0.8784859927081519, 0.9613966942665844, 0.8380103992838959, 0.9376908870460701, 0.8505645904112248, 0.5317253080143199, 0.8756470416862959, 0.8823120896825394, 0.8920529250761863, 0.9565288857220365, 0.92576324319171, 0.8397457208604353, 0.8008835764985612, 0.7620555647282774, 0.6333567796033132, 0.8986985644274655, 0.8289197139212982, 0.38568054861828666, 0.4358764146033148, 0.7013568331933456, 0.5524769805317635, 0.8654015550049637, 0.9625385348003681, 0.4997035751430624, 0.5940434106189647, 0.29640429037896177, 0.9370396801623051, 0.7496358493500708, 0.8521916566704996, 0.7519935213994349, 0.8956127660014477, 0.7563308848917781, 0.5425355780301907, 0.1652985164032473, 0.5777375433929663, 0.5926841497777402, 0.5247451599628447, 0.6215406511606532, 0.646742228322253, 0.5236567091352762, 0.8105889943537302, 0.7614647275399787, 0.7272264480694343, 0.44438282424164377, 0.8051848688934031, 0.253979247575754, 0.8737269176380216, 0.7884186533408385, 0.5226162157005312, 0.7776146375974927, 0.8021344726910251, 0.6794204065079696, 0.8398669626756513, 0.3743394998756179, 0.6593725303534554, 0.41008410759983227, 0.8726624594592295, 0.31336232876890546, 0.6187135046228962, 0.9208146539756937, 0.8948907807194619, 0.9475948217130945, 0.7098971478357265, 0.41970311630379203, 0.5524505095188592, 0.6689295490636696, 0.39534528644804523, 0.6686700461744643, 0.6608417181144597, 0.6289006219381473, 0.8112353209803558, 0.9675531845963172, 0.3468688843876404, 0.8171815196180959, 0.9315945487332388, 0.7612383340144859, 0.43979370974717685, 0.9452166580978265, 0.810349906376065, 0.4979189466877109, 0.9054024939516333, 0.7506263221664519, 0.8595966107872783, 0.9041757536760852, 0.5120166815330335, 0.9246344940597735, 0.622364539475366, 0.7975959936185795, 0.9376528402833735, 0.8270495791839716, 0.7463426393970082, 0.8508295060861325, 0.5277539611022016, 0.7926521549058593, 0.8343380415579561, 0.7973631232158779, 0.5423298306356671, 0.6253812669856891, 0.9342151247863544, 0.9064095870896521, 0.8428584418618921, 0.5680191878381406, 0.8230633503438987, 0.857993972512287, 0.8312116035859974, 0.8886868130574391, 0.5695902702544526, 0.8750573328895943, 0.47134086624147714, 0.6082670858563528, 0.8571520978358925, 0.7006810412396262, 0.6001343818465046, 0.8680196363335714, 0.7833148206731655, 0.835330250744176, 0.6883000602161935, 0.4297997702781997, 0.7132181587745201, 0.941909753873568, 0.9298379484442667, 0.8950633078112005, 0.9652574497835966, 0.8593048115498744, 0.23022113319019433, 0.5548683876071567, 0.8789570823277312, 0.7176343272433334, 0.7135972690872326, 0.900955402304434, 0.89110615578316, 0.8021344726910251, 0.36734125225010755, 0.9233813125795639, 0.9269988231022361, 0.6021478506882372, 0.27064660283581765, 0.7595966254948197, 0.5317253080143199, 0.9626288904553877, 0.518871521713375, 0.4244151934213653, 0.8784852709235653, 0.667697582798242, 0.6791650855490978, 0.8659372985570389, 0.5217980090164113, 0.9757802673562255, 0.20769640873195563, 0.6900575067285889, 0.15051833553221247, 0.8476988333501053, 0.12043274000614122, 0.6546311715671466, 0.412102187638673, 0.6339696776630096, 0.6925917751558638, 0.8074446941396305, 0.8417042066658985, 0.4702054036006336, 0.8107456318417504, 0.934253622333564, 0.9671353887875448, 0.3776875782453083, 0.5133306968464912, 0.8279918435672958, 0.7295730380004212, 0.8398957027397556, 0.7470826509089123, 0.7722124156410631, 0.3944809481034696, 0.5801047158883857, 0.7134138458261836, 0.8265590446981121, 0.5836238058504062, 0.7538957359152121, 0.9708936701567454, 0.41507295289487073, 0.9039211350062085, 0.5109703825452502, 0.8880660412534, 0.6332514250278477, 0.703270618172154, 0.863031725372896, 0.9601349291832292, 0.5845797646527732, 0.8357575010967041, 0.9584406458449958, 0.8733333206292072, 0.4740801794177068, 0.5787650908025566, 0.38525623454815555, 0.5715075300165849, 0.951253157591183, 0.831291834366621, 0.6482062646591596, 0.5447536045265621, 0.8456825404777587, 0.5358725178581014, 0.8893400405584444, 0.5955893395860203, 0.9408369636189147, 0.7580589814818564, 0.4244151934213653, 0.7636885291754726, 0.9532052815091139, 0.6686700461744643, 0.39683939049776734, 0.8309978518015588, 0.06774730328187532, 0.8934061610794648, 0.9459413258233057, 0.8507977517004935, 0.9694554821790147, 0.8640493534313302, 0.8409166048571896, 0.9059760843724536, 0.7278052027863667, 0.8952246802917138, 0.39534528644804523, 0.9558702864115934, 0.9178754126151818, 0.7504628435478695, 0.7568870052952757, 0.32046258648166903, 0.9712495894387816, 0.7125870341029702, 0.8286889773580812, 0.929575727770858, 0.8422483936479932, 0.60065365322741, 0.5775074082600717, 0.7505976846167132, 0.5317253080143199, 0.9590110623565244, 0.9651712957082627, 0.7333643603414158, 0.7757825668725274, 0.8928390517037824, 0.2578168736401774, 0.5355488836719776, 0.8408692583280314, 0.7849780542174357, 0.8711681462620556, 0.8447990405440073, 0.9571933326515756, 0.9307123551507692, 0.6421242495412457, 0.9239207054420927, 0.9336219461922934, 0.4244151934213653, 0.5673643045526261, 0.8301442064454496, 0.528471943574542, 0.8835542071774324, 0.8820947700128993, 0.4561713647735051, 0.584381944856391, 0.9493936477483658, 0.7816316980556022, 0.7770145472448273, 0.8495153837633861, 0.8318035560268552, 0.5220388622338656, 0.8589980209217414, 0.21216021099657945, 0.8782303617207965, 0.901850575196968, 0.7683760396387002, 0.9559989503713009, 0.938411491366706, 0.7225398931917507, 0.5918361617892179, 0.8596378534897678, 0.8816239240572568, 0.9296844522785247, 0.8299758417251202, 0.7538846798551382, 0.931253582726863, 0.6902425303942638, 0.9299571155275668, 0.35461708236434614, 0.6119587629530028, 0.8979450471026776, 0.8782891297971865, 0.6144930729026484, 0.5601837238662909, 0.4230258756549153, 0.5115702372514986, 0.6133200318312215, 0.8287048127179734, 0.42887934024879554, 0.5543929044930882, 0.5414149972460248, 0.7453725251924848, 0.6522898344923613, 0.6445138145159856, 0.9212190995841192, 0.6991293681294938, 0.9188224881967051, 0.9444881948020799, 0.8399825546316605, 0.6440269003431431, 0.45260210695563535, 0.6678228102737954, 0.8535669746933884, 0.23469888428232324, 0.7581156815660375, 0.8329520097124233, 0.5886389680190937, 0.4250130050586104, 0.290761161529129, 0.9065968169685268, 0.39757013049667705, 0.9584529405260903, 0.24804178200132845, 0.8400605958344816, 0.9562762484868867, 0.5923100188758571, 0.5355488836719776, 0.6866862751474886, 0.753715093249364, 0.9302702282582556, 0.8405005145861136, 0.7758456574858743, 0.8270123797965384, 0.9270997487744173, 0.8779999285967196, 0.6350604679157676, 0.9057987369792326, 0.9732730617650076, 0.28007269673131574, 0.5393237551960537, 0.9509318156255189, 0.8055358405733448, 0.8512314640165554, 0.6752183046546253, 0.9766791413071304, 0.26893819095773785, 0.5105552073939665, 0.7964242570425004, 0.9159462749375985, 0.46312559485344046, 0.7889853219989779, 0.5331772070153998, 0.6250130361556073, 0.5340700079782073, 0.8981158701031157, 0.8424802355113449], \"xaxis\": \"x\", \"y\": [\"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\", \"good\"], \"yaxis\": \"y2\"}, {\"legendgroup\": \"other\", \"marker\": {\"color\": \"#4d4d4d\", \"symbol\": \"line-ns-open\"}, \"mode\": \"markers\", \"name\": \"other\", \"showlegend\": false, \"type\": \"scatter\", \"x\": [0.8142007211296887, 0.07257977436397642, 0.7430932382113554, 0.8214862427787604, 0.5698848321031316, 0.6048119589659149, 0.6466669219762841, 0.14510080060429495, 0.2250304680670007, 0.28492472637839966, 0.42061632734231896, 0.8281252124183194, 0.49622399336621903, 0.3482895521074759, 0.4678833354511545, 0.5708968386647719, 0.37048677721847617, 0.553632248395139, 0.8702137350251022, 0.42186952587750404, 0.8696774950675754, 0.5410576963494411, 0.3971326977900686, 0.3275001196198921, 0.9448289227093116, 0.7109941475090589, 0.41925580570138304, 0.3675472469853882, 0.6721911818800557, 0.5562207270314473, 0.5262426608517637, 0.3244609607385458, 0.15056615442564347, 0.15676979724311627, 0.6037730696030339, 0.6342511279653397, 0.021947035536558718, 0.32429164429335744, 0.5678746850743716, 0.3571680467137555, 0.7755534309390314, 0.3240287891037917, 0.699424662214302, 0.5151532452376618, 0.7564675819717819, 0.38343591026479057, 0.19811005648518398, 0.3168419703358067, 0.5315947262677626, 0.9269044449273315, 0.8260225289794664, 0.451791899378283, 0.830516920403184, 0.47128602930186, 0.19027823806377472, 0.5181346713949518, 0.29552777318700446, 0.45414400334446664, 0.39329840463575844, 0.42327932510626076, 0.45838907164509224, 0.2233864252642039, 0.3628419195926303, 0.6709353200988277, 0.46058046365566996, 0.25551237833043455, 0.7234147543269824, 0.1481282262733752, 0.314935793994079, 0.20050531530561894, 0.37453315488553635, 0.701015529968035, 0.6343341418527783, 0.1739320900588749, 0.734996253073231, 0.8172229478314255, 0.3598554146739685, 0.7121055211356295, 0.2620604909731644, 0.3421138035730516, 0.6951268813066005, 0.35208221297891723, 0.452099210446082, 0.18907620085798427, 0.5444201651108793, 0.6484058972837882, 0.3258186925596978, 0.5963383680780668, 0.6202666247822538, 0.576738593946626, 0.5054992484109841, 0.2972245631729925, 0.6844333356791464, 0.42629475072919953, 0.4405153833121037, 0.01207867704715336, 0.7609288944606691, 0.23951123982998349, 0.09310514674080905, 0.5084920166510624, 0.33067609257366243, 0.36481899584296196, 0.5708968386647719, 0.3194802059637459, 0.14207297841267416, 0.5776897120055972, 0.2026163425795633, 0.37909000048748537, 0.38206764842015895, 0.41324683104354176, 0.17826143731067332, 0.42339414872454434, 0.39148091864802853, 0.3511350413575442, 0.8053393751847749, 0.5937005322868365, 0.6849942580153355, 0.38930033076762494, 0.5168500865319015, 0.5699073288866824, 0.5376087249833421, 0.8185832461647057, 0.25950508036415604, 0.20394483716883388, 0.3303044530853749, 0.2528102968078532, 0.8477719856767125, 0.5217124250004609, 0.3303044530853749, 0.5382885532339231, 0.9625763866028243, 0.6536174904341296, 0.42629475072919953, 0.6458781618432388, 0.46574001023909845, 0.37268733756108086, 0.8180085473348132, 0.35493594975273335, 0.2423640089427935, 0.3636330633241046, 0.6421622311157122, 0.5444201651108793, 0.7396308412796291, 0.9036153464846048, 0.21101569987323432, 0.6004024464464508, 0.7595861882737439, 0.486549602332862, 0.2379839758891197, 0.5147825233229498, 0.2065932277190248, 0.4342628292980428, 0.5940848250235929, 0.4857193175270624, 0.5332610244722983, 0.5402196969638672, 0.8578846895389459, 0.5290225674595067, 0.6074669506688956, 0.1847839155105034, 0.3581391437324269, 0.4304380754474639, 0.8410120374942113, 0.5810086483513661, 0.19026233744636453, 0.7223494520380469, 0.8589928738613049, 0.8374625942163022, 0.781203852328267, 0.73983195178881, 0.41156537259256004, 0.7482873396984137, 0.44431713201158524, 0.7113673874393347, 0.49869552495399233, 0.7627102864663872, 0.37193390769028617, 0.37187810520956766, 0.3773291605703562, 0.8719651627687759, 0.6218762459828849, 0.3781393537983126, 0.553632248395139, 0.47624084907999176, 0.774399353278846, 0.5840424935194366, 0.5601025471409736, 0.6186690618327106, 0.620611700356168, 0.5755798886129706, 0.15047650536569443, 0.5530049338021776, 0.6597439619439023, 0.8300222117931148, 0.3490158529243493, 0.4410646109528086, 0.5067909967309752, 0.5851482063434866, 0.7149827463187939, 0.4849259975950144, 0.2094210588097294, 0.33399024531412796, 0.4083143545243069, 0.7497022835596558, 0.7817929239213606, 0.7637421953724776, 0.3825655414920891, 0.6611482494098961, 0.19022241257108333, 0.44972084577511023, 0.5476732603321269, 0.4831274653996314, 0.5077048340566679, 0.7289504589448288, 0.4379810490617926, 0.8017221455714771, 0.6434673631716396, 0.5059779734745421, 0.6065367192264559, 0.650368705032214, 0.34567471266024347, 0.39561589000187136, 0.3427787545601037, 0.4676404271158623, 0.5332283386400669, 0.4519108142444285, 0.40662831629925006, 0.42305576187259053, 0.22032895172816622, 0.5278715769330472, 0.43679486629948455, 0.743933429392776, 0.5269515041023835, 0.5008800654866953, 0.214168174561682, 0.44879088851457377, 0.683485355417811, 0.807753104897186, 0.42629475072919953, 0.8502951424821861, 0.17421175568219957, 0.25491371883486935, 0.7595861882737439, 0.6571724132942184, 0.7813188949129265, 0.5626906653340306, 0.8674288259883418, 0.6600514650598344, 0.4827749661719035, 0.5456147119159479, 0.39827550056677263, 0.27323823737433794, 0.695896529362927, 0.5048820477254727, 0.5422349097465021, 0.5610936746718964, 0.6571724132942184, 0.3088751107498249, 0.45428761266464013, 0.6604471727860799, 0.43371621376298963, 0.6171893197168647, 0.8100511550343341, 0.8100511550343341, 0.605832578461134, 0.5526475584669951, 0.4275055171336787, 0.8734720021260204, 0.8508295378350301, 0.5807723706867254, 0.8272749548927728, 0.2670652478909882, 0.7020144194675465, 0.4615566916191992, 0.7055847950248242, 0.43389869234556755, 0.6071692164257629, 0.3496825637352313, 0.23676491619791426, 0.7057755976874825, 0.15539001443149586, 0.6187538615870153, 0.8735882828904331, 0.30049486749739024, 0.23191705420611952, 0.8913917397916864, 0.4977157214618499, 0.16961113509580228, 0.8485494795219795, 0.4760032757956232, 0.5053843099270294, 0.2676015269871764, 0.3627664421236291, 0.15146266807038725, 0.7898179638281774, 0.6145296307645981, 0.3790380236797623, 0.3003532640340299, 0.6086112016774773, 0.39906793889171593, 0.8185832461647057, 0.6715802865662828, 0.8260225289794664, 0.6056902064850618, 0.400132762133902, 0.39471961640683584, 0.6449859309106076, 0.5637152910565628, 0.39949420960438964, 0.5490401551410112, 0.4398875418860128, 0.30916577334906253, 0.7093303227687476, 0.4562508424819209, 0.40444044759428516, 0.5773483646962835, 0.447777692034652, 0.4961542215384683, 0.32474312180562226, 0.21192693199409943, 0.9056903490933487, 0.5013816399998683, 0.758876109553896, 0.6364928148646596, 0.2952804752502578, 0.4748951900520853, 0.43679486629948455, 0.5479962315186364, 0.4728142838839701, 0.6343341418527783, 0.12248807650217919, 0.5052525886146573, 0.8281252124183194, 0.8930081609652758, 0.36283726088930296, 0.8098196742550625, 0.656477404357746, 0.193885049884708, 0.5269515041023835, 0.49858469647139786, 0.32780472036158087, 0.24927512797396847, 0.6148718578314069, 0.10691527318901187, 0.136775438340409, 0.8489192718114075, 0.2600203086082801, 0.8142007211296887, 0.5269515041023835, 0.7966615933629455, 0.5633234794197017, 0.767479452333631], \"xaxis\": \"x\", \"y\": [\"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\"], \"yaxis\": \"y2\"}], \"layout\": {\"barmode\": \"overlay\", \"hovermode\": \"closest\", \"legend\": {\"orientation\": \"h\", \"traceorder\": \"reversed\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y2\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"Probability\"}, \"zeroline\": false}, \"yaxis\": {\"anchor\": \"free\", \"domain\": [0.35, 1], \"position\": 0.0, \"title\": {\"text\": \"Share\"}}, \"yaxis2\": {\"anchor\": \"x\", \"domain\": [0, 0.25], \"dtick\": 1, \"showticklabels\": false}}}}, {\"id\": \"tab_bad\", \"title\": \"bad\", \"graph\": {\"data\": [{\"autobinx\": false, \"histnorm\": \"probability density\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#ed0400\"}, \"name\": \"bad\", \"opacity\": 0.7, \"type\": \"histogram\", \"x\": [0.18579927887031134, 0.9274202256360236, 0.2569067617886446, 0.17851375722123963, 0.43011516789686843, 0.3951880410340851, 0.35333307802371594, 0.854899199395705, 0.7749695319329993, 0.7150752736216004, 0.5793836726576811, 0.17187478758168062, 0.503776006633781, 0.6517104478925241, 0.5321166645488455, 0.4291031613352281, 0.6295132227815239, 0.446367751604861, 0.12978626497489776, 0.578130474122496, 0.1303225049324246, 0.4589423036505589, 0.6028673022099313, 0.6724998803801079, 0.055171077290688375, 0.28900585249094113, 0.5807441942986169, 0.6324527530146118, 0.32780881811994433, 0.4437792729685527, 0.47375733914823626, 0.6755390392614542, 0.8494338455743565, 0.8432302027568838, 0.3962269303969661, 0.36574887203466033, 0.9780529644634413, 0.6757083557066426, 0.43212531492562845, 0.6428319532862445, 0.2244465690609686, 0.6759712108962084, 0.300575337785698, 0.4848467547623382, 0.24353241802821812, 0.6165640897352094, 0.801889943514816, 0.6831580296641933, 0.4684052737322374, 0.07309555507266852, 0.17397747102053363, 0.548208100621717, 0.16948307959681597, 0.5287139706981401, 0.8097217619362252, 0.48186532860504816, 0.7044722268129955, 0.5458559966555334, 0.6067015953642416, 0.5767206748937392, 0.5416109283549078, 0.7766135747357961, 0.6371580804073698, 0.3290646799011723, 0.53941953634433, 0.7444876216695655, 0.27658524567301757, 0.8518717737266248, 0.685064206005921, 0.7994946846943811, 0.6254668451144636, 0.29898447003196504, 0.36566585814722175, 0.8260679099411251, 0.265003746926769, 0.18277705216857454, 0.6401445853260315, 0.2878944788643705, 0.7379395090268356, 0.6578861964269485, 0.3048731186933995, 0.6479177870210828, 0.5479007895539181, 0.8109237991420157, 0.4555798348891207, 0.35159410271621183, 0.6741813074403022, 0.40366163192193316, 0.3797333752177462, 0.42326140605337403, 0.49450075158901585, 0.7027754368270075, 0.31556666432085356, 0.5737052492708005, 0.5594846166878963, 0.9879213229528466, 0.23907110553933086, 0.7604887601700165, 0.906894853259191, 0.49150798334893764, 0.6693239074263375, 0.635181004157038, 0.4291031613352281, 0.6805197940362542, 0.8579270215873258, 0.42231028799440284, 0.7973836574204367, 0.6209099995125147, 0.617932351579841, 0.5867531689564582, 0.8217385626893267, 0.5766058512754557, 0.6085190813519714, 0.6488649586424557, 0.19466062481522506, 0.4062994677131635, 0.31500574198466447, 0.6106996692323751, 0.48314991346809855, 0.4300926711133176, 0.4623912750166579, 0.18141675383529432, 0.7404949196358439, 0.7960551628311661, 0.6696955469146251, 0.7471897031921468, 0.15222801432328747, 0.4782875749995391, 0.6696955469146251, 0.4617114467660769, 0.0374236133971757, 0.34638250956587036, 0.5737052492708005, 0.35412183815676124, 0.5342599897609015, 0.6273126624389191, 0.1819914526651868, 0.6450640502472667, 0.7576359910572065, 0.6363669366758954, 0.35783776888428775, 0.4555798348891207, 0.2603691587203709, 0.09638465351539516, 0.7889843001267657, 0.3995975535535492, 0.2404138117262561, 0.5134503976671381, 0.7620160241108803, 0.4852174766770502, 0.7934067722809752, 0.5657371707019572, 0.40591517497640706, 0.5142806824729376, 0.4667389755277017, 0.4597803030361328, 0.14211531046105408, 0.4709774325404933, 0.39253304933110444, 0.8152160844894966, 0.6418608562675732, 0.5695619245525361, 0.15898796250578873, 0.4189913516486339, 0.8097376625536354, 0.2776505479619531, 0.14100712613869515, 0.1625374057836978, 0.21879614767173305, 0.26016804821119, 0.5884346274074399, 0.25171266030158634, 0.5556828679884147, 0.2886326125606653, 0.5013044750460076, 0.23728971353361283, 0.6280660923097139, 0.6281218947904323, 0.6226708394296439, 0.1280348372312241, 0.37812375401711507, 0.6218606462016874, 0.446367751604861, 0.5237591509200082, 0.22560064672115399, 0.4159575064805634, 0.43989745285902637, 0.38133093816728936, 0.379388299643832, 0.4244201113870294, 0.8495234946343055, 0.44699506619782237, 0.3402560380560977, 0.16997778820688525, 0.6509841470756508, 0.5589353890471914, 0.49320900326902484, 0.41485179365651337, 0.2850172536812061, 0.5150740024049856, 0.7905789411902706, 0.6660097546858721, 0.5916856454756931, 0.25029771644034415, 0.21820707607863943, 0.23625780462752244, 0.6174344585079109, 0.33885175059010386, 0.8097775874289167, 0.5502791542248897, 0.45232673966787307, 0.5168725346003686, 0.4922951659433321, 0.2710495410551712, 0.5620189509382074, 0.19827785442852286, 0.35653263682836045, 0.4940220265254579, 0.3934632807735441, 0.349631294967786, 0.6543252873397565, 0.6043841099981286, 0.6572212454398962, 0.5323595728841377, 0.4667716613599331, 0.5480891857555714, 0.5933716837007499, 0.5769442381274095, 0.7796710482718338, 0.4721284230669528, 0.5632051337005155, 0.25606657060722404, 0.47304849589761655, 0.4991199345133047, 0.785831825438318, 0.5512091114854263, 0.31651464458218903, 0.192246895102814, 0.5737052492708005, 0.14970485751781393, 0.8257882443178004, 0.7450862811651306, 0.2404138117262561, 0.3428275867057816, 0.2186811050870735, 0.43730933466596944, 0.1325711740116582, 0.33994853494016564, 0.5172250338280965, 0.4543852880840521, 0.6017244994332274, 0.7267617626256621, 0.304103470637073, 0.49511795227452726, 0.4577650902534979, 0.4389063253281036, 0.3428275867057816, 0.6911248892501751, 0.5457123873353599, 0.3395528272139201, 0.5662837862370104, 0.38281068028313525, 0.1899488449656659, 0.1899488449656659, 0.39416742153886597, 0.4473524415330049, 0.5724944828663213, 0.12652799787397961, 0.14917046216496987, 0.4192276293132746, 0.1727250451072272, 0.7329347521090118, 0.2979855805324535, 0.5384433083808008, 0.2944152049751758, 0.5661013076544325, 0.39283078357423706, 0.6503174362647687, 0.7632350838020857, 0.29422440231251745, 0.8446099855685041, 0.3812461384129847, 0.1264117171095669, 0.6995051325026098, 0.7680829457938805, 0.1086082602083136, 0.50228427853815, 0.8303888649041977, 0.15145052047802054, 0.5239967242043768, 0.49461569007297057, 0.7323984730128237, 0.6372335578763709, 0.8485373319296128, 0.21018203617182263, 0.3854703692354019, 0.6209619763202376, 0.6996467359659702, 0.3913887983225227, 0.600932061108284, 0.18141675383529432, 0.32841971343371723, 0.17397747102053363, 0.3943097935149382, 0.5998672378660981, 0.6052803835931642, 0.35501406908939237, 0.4362847089434372, 0.6005057903956104, 0.45095984485898877, 0.5601124581139871, 0.6908342266509375, 0.29066967723125237, 0.5437491575180791, 0.5955595524057149, 0.4226516353037165, 0.552222307965348, 0.5038457784615318, 0.6752568781943777, 0.7880730680059006, 0.09430965090665133, 0.4986183600001317, 0.24112389044610405, 0.3635071851353404, 0.7047195247497422, 0.5251048099479148, 0.5632051337005155, 0.4520037684813636, 0.5271857161160298, 0.36566585814722175, 0.8775119234978208, 0.49474741138534273, 0.17187478758168062, 0.1069918390347242, 0.6371627391106971, 0.19018032574493748, 0.34352259564225396, 0.806114950115292, 0.47304849589761655, 0.5014153035286022, 0.6721952796384192, 0.7507248720260316, 0.38512814216859315, 0.8930847268109882, 0.863224561659591, 0.15108072818859253, 0.7399796913917198, 0.18579927887031134, 0.47304849589761655, 0.2033384066370545, 0.43667652058029827, 0.23252054766636898], \"xaxis\": \"x\", \"xbins\": {\"end\": 0.9879213229528466, \"size\": 0.05, \"start\": 0.0374236133971757}, \"yaxis\": \"y\"}, {\"autobinx\": false, \"histnorm\": \"probability density\", \"legendgroup\": \"other\", \"marker\": {\"color\": \"#4d4d4d\"}, \"name\": \"other\", \"opacity\": 0.7, \"type\": \"histogram\", \"x\": [0.6660328535674787, 0.4955559099445003, 0.11251030999551548, 0.5313240922219649, 0.7616845263358343, 0.42881839881496897, 0.22146723198036844, 0.2709448900825402, 0.04188686298684474, 0.3198999677935893, 0.586632325439729, 0.3332859260788763, 0.0891770245136605, 0.07249138429342028, 0.0813041402249215, 0.2808128557304226, 0.18155424903412543, 0.14020593233116785, 0.20529540916933675, 0.1755850319354616, 0.5722846846512241, 0.4684623303117058, 0.2863708053899042, 0.4489302200945696, 0.3606737334686688, 0.09834172337505831, 0.1439119889738254, 0.10526388551166177, 0.08976738859769384, 0.15927641460572795, 0.07353544332944184, 0.4894096639868448, 0.24735122968283396, 0.41440459167745447, 0.10107859516115147, 0.4809249647595707, 0.043928674649753696, 0.27268427565697984, 0.07203278686513981, 0.35989685204578803, 0.08410225657903847, 0.09640449279894714, 0.2859044620344169, 0.766491644508495, 0.27194216744256416, 0.11891721880979944, 0.6033870782914414, 0.8445823904457724, 0.4148378249676725, 0.09538880480821377, 0.5822786697287807, 0.2006236885231063, 0.30215903380660414, 0.3526626332448971, 0.22921561702294402, 0.3499358724503807, 0.451050436906263, 0.01968005574460141, 0.3849224947932618, 0.608666907839271, 0.30333177217190177, 0.05732515971384944, 0.08299070223644744, 0.155374347961305, 0.4378217303747408, 0.10641916767178827, 0.3207785913922725, 0.3280003244598044, 0.4747408725557203, 0.27229542413121455, 0.5314247042003052, 0.13834506443323813, 0.652508483608137, 0.1775869136191267, 0.4659209431511335, 0.3288332341233703, 0.47224603889779837, 0.2773569186284155, 0.18590272545123854, 0.6719763059805124, 0.04569198037744582, 0.22473444069733528, 0.0776074933333939, 0.1411968215808168, 0.3654892991508686, 0.06069899520469324, 0.21029328672965164, 0.13919371635861133, 0.16321149678759816, 0.6144435769482088, 0.1388055550317996, 0.0827658987104557, 0.0793107693477757, 0.04994940743047871, 0.46220165202879504, 0.08265172102971341, 0.5554564865761329, 0.10902951494304747, 0.26480674198345266, 0.31816712550642645, 0.20184400370343658, 0.23734670470511587, 0.19264674509953905, 0.03558879485690103, 0.5314247042003052, 0.3013473679880785, 0.8043030592862955, 0.07665185966197174, 0.17816243980233548, 0.14637302723887635, 0.43623195291339645, 0.5773286546676725, 0.06996409198491005, 0.0635191394270278, 0.11839391684253864, 0.03368970372860669, 0.16544292122901683, 0.5002106013252752, 0.20783967621931676, 0.4413184352618238, 0.1377753535318076, 0.017128038770129694, 0.09070427960766203, 0.05237321155563324, 0.46044782253877736, 0.09863911308639095, 0.6058955548956951, 0.07377868677997379, 0.33726125667837825, 0.03705661785513226, 0.03856885477325478, 0.01970319875133708, 0.06623921298607705, 0.655672818127978, 0.36403826442427, 0.375635621083512, 0.25822104517587474, 0.26990817233175546, 0.30316845466795117, 0.21597661143113533, 0.10411587283779344, 0.4582573305440075, 0.28974208538397184, 0.3995654588450376, 0.48407929824265805, 0.2412117545349558, 0.49704114689177337, 0.3112403223054312, 0.13571503940671914, 0.35304273602320047, 0.18963603484652192, 0.06023564559469896, 0.305863422303413, 0.34062746964654456, 0.03532029949184434, 0.20200996882548472, 0.207876095289533, 0.11304202998506685, 0.26487496820305634, 0.46674395287949066, 0.05931266843465788, 0.6063731497207538, 0.053339747820140615, 0.16056749669580483, 0.3366557342021428, 0.18735912995827353, 0.2667542380283816, 0.9197592959547904, 0.13322255285490225, 0.3533185668595151, 0.08763312389948397, 0.343329095265401, 0.1298321532292276, 0.11240742021865013, 0.03412749239977686, 0.23316671381479437, 0.13955591125269062, 0.065615492475942, 0.03940539431326806, 0.04874684240881699, 0.42507109047861347, 0.3720756994829524, 0.20627971812824875, 0.23346983492740092, 0.299872058778726, 0.14688925552714138, 0.20529540916933675, 0.11294333341234963, 0.4523771212155355, 0.15895981664313275, 0.12633289347617382, 0.34801013400503944, 0.063056887931354, 0.09222807982804315, 0.19281104432210028, 0.11843845992675284, 0.1064686731970873, 0.12171087020281346, 0.49704114689177337, 0.4202798549667376, 0.058322454167927695, 0.40418598015134155, 0.7514842711311043, 0.067978575311199, 0.1468497162592186, 0.3655805321171328, 0.36741292271676196, 0.08785516413846428, 0.4223454464089015, 0.09472348251934337, 0.14196098925812006, 0.10013555988874479, 0.32154631204965056, 0.05416575683382341, 0.786126361492164, 0.04696516601190348, 0.26926088858349784, 0.28123172687107445, 0.3094364396730669, 0.04307250962973752, 0.07126159086244754, 0.6143015945908075, 0.495586079448059, 0.46102608015166635, 0.40789311683600216, 0.8929715185951024, 0.1227006502272181, 0.3638055988942468, 0.10470002869891348, 0.29304213908849364, 0.8936703981375603, 0.3534407380188983, 0.0883666731866185, 0.07895584641700149, 0.05166417783587085, 0.4199775765299997, 0.10304865631077798, 0.1041340676595982, 0.11031385635331636, 0.22368578646300386, 0.22137255536682798, 0.0725394352715707, 0.08320759746190642, 0.3577905591727162, 0.36362749207413336, 0.13058702032609693, 0.4306817897420764, 0.4684623303117058, 0.3185463047756948, 0.6991046594229053, 0.33105510290791684, 0.35804773811787727, 0.3499358724503807, 0.17780319308126435, 0.07142366539796174, 0.1504846162366139, 0.28643330026545544, 0.11492102279820171, 0.08716328114311156, 0.12905574960179156, 0.5528531989583015, 0.2852168598030531, 0.3185463047756948, 0.41766807389819915, 0.22818770291371737, 0.10749415552266317, 0.07500089027222667, 0.2150933620687273, 0.4879833184669665, 0.21367083697314282, 0.18281788227943807, 0.11217648511765432, 0.01860460444149037, 0.4990100838788346, 0.3212979959143686, 0.7252893191599291, 0.30018855716775616, 0.2808216200321265, 0.24332849241566534, 0.22583693263898685, 0.307128141019565, 0.12930297020615966, 0.07734813107736227, 0.38078614076753503, 0.037937415915298756, 0.18389331462546077, 0.2015421194948802, 0.10121634311933059, 0.7209948827487924, 0.252131738577411, 0.19866278493931944, 0.5569604587758099, 0.19172534874952063, 0.07516041810443141, 0.18673310211333727, 0.20736440356309183, 0.27568985010185776, 0.1748501221961516, 0.134246332983591, 0.12151400729184814, 0.03860330573341564, 0.16198960071610413, 0.062309112953929935, 0.14943540958877521, 0.46827469198568006, 0.12435295831370408, 0.11768791031746062, 0.10794707492381372, 0.04347111427796346, 0.07423675680829, 0.1602542791395647, 0.19911642350143877, 0.2379444352717226, 0.36664322039668684, 0.10130143557253446, 0.17108028607870185, 0.6143194513817134, 0.5641235853966853, 0.29864316680665437, 0.44752301946823647, 0.13459844499503626, 0.037461465199631894, 0.5002964248569376, 0.4059565893810353, 0.7035957096210382, 0.0629603198376949, 0.25036415064992923, 0.14780834332950044, 0.24800647860056513, 0.10438723399855232, 0.24366911510822187, 0.4574644219698093, 0.8347014835967527, 0.42226245660703365, 0.4073158502222598, 0.47525484003715535, 0.37845934883934684, 0.35325777167774697, 0.4763432908647238, 0.18941100564626978, 0.23853527246002126, 0.27277355193056574, 0.5556171757583562, 0.19481513110659687, 0.7460207524242459, 0.12627308236197843, 0.2115813466591615, 0.4773837842994688, 0.22238536240250728, 0.1978655273089749, 0.32057959349203036, 0.1601330373243487, 0.6256605001243821, 0.34062746964654456, 0.5899158924001677, 0.1273375405407705, 0.6866376712310945, 0.3812864953771038, 0.07918534602430627, 0.10510921928053807, 0.052405178286905496, 0.29010285216427345, 0.5802968836962079, 0.4475494904811408, 0.33107045093633036, 0.6046547135519548, 0.33132995382553565, 0.3391582818855403, 0.37109937806185267, 0.18876467901964422, 0.03244681540368277, 0.6531311156123596, 0.18281848038190407, 0.06840545126676123, 0.23876166598551407, 0.5602062902528231, 0.05478334190217349, 0.18965009362393503, 0.502081053312289, 0.0945975060483667, 0.24937367783354814, 0.14040338921272166, 0.09582424632391484, 0.4879833184669665, 0.07536550594022651, 0.37763546052463404, 0.20240400638142053, 0.06234715971662652, 0.1729504208160284, 0.2536573606029918, 0.1491704939138675, 0.47224603889779837, 0.20734784509414073, 0.1656619584420439, 0.20263687678412212, 0.4576701693643329, 0.3746187330143109, 0.06578487521364562, 0.09359041291034786, 0.15714155813810793, 0.43198081216185935, 0.17693664965610134, 0.14200602748771296, 0.16878839641400256, 0.11131318694256087, 0.43040972974554736, 0.12494266711040569, 0.5286591337585229, 0.3917329141436472, 0.14284790216410748, 0.29931895876037384, 0.3998656181534954, 0.13198036366642862, 0.2166851793268345, 0.164669749255824, 0.3116999397838065, 0.5702002297218003, 0.2867818412254799, 0.05809024612643199, 0.0701620515557333, 0.10493669218879953, 0.03474255021640338, 0.14069518845012563, 0.7697788668098057, 0.44513161239284327, 0.12104291767226882, 0.2823656727566666, 0.28640273091276736, 0.09904459769556595, 0.10889384421684001, 0.1978655273089749, 0.6326587477498924, 0.0766186874204361, 0.07300117689776386, 0.3978521493117628, 0.7293533971641823, 0.24040337450518035, 0.46827469198568006, 0.03737110954461231, 0.48112847828662497, 0.5755848065786346, 0.12151472907643468, 0.332302417201758, 0.3208349144509022, 0.13406270144296106, 0.47820199098358873, 0.024219732643774528, 0.7923035912680444, 0.3099424932714111, 0.8494816644677875, 0.15230116664989468, 0.8795672599938588, 0.34536882843285344, 0.587897812361327, 0.3660303223369904, 0.3074082248441362, 0.1925553058603695, 0.1582957933341015, 0.5297945963993664, 0.1892543681582496, 0.06574637766643598, 0.03286461121245521, 0.6223124217546917, 0.48666930315350876, 0.17200815643270417, 0.27042696199957883, 0.16010429726024444, 0.25291734909108765, 0.22778758435893687, 0.6055190518965303, 0.41989528411161425, 0.2865861541738164, 0.17344095530188786, 0.4163761941495938, 0.24610426408478792, 0.029106329843254564, 0.5849270471051293, 0.09607886499379148, 0.4890296174547498, 0.11193395874659995, 0.3667485749721523, 0.29672938182784603, 0.13696827462710404, 0.03986507081677082, 0.41542023534722683, 0.1642424989032959, 0.041559354155004224, 0.1266666793707928, 0.5259198205822933, 0.42123490919744344, 0.6147437654518444, 0.42849246998341506, 0.04874684240881699, 0.16870816563337898, 0.35179373534084035, 0.4552463954734379, 0.1543174595222413, 0.4641274821418986, 0.1106599594415556, 0.40441066041397966, 0.05916303638108533, 0.24194101851814365, 0.5755848065786346, 0.23631147082452741, 0.04679471849088612, 0.33132995382553565, 0.6031606095022326, 0.16900214819844117, 0.9322526967181247, 0.1065938389205352, 0.0540586741766943, 0.14920224829950646, 0.03054451782098533, 0.13595064656866984, 0.15908339514281045, 0.09402391562754642, 0.27219479721363327, 0.10477531970828624, 0.6046547135519548, 0.04412971358840656, 0.0821245873848182, 0.24953715645213048, 0.24311299470472425, 0.679537413518331, 0.02875041056121841, 0.2874129658970298, 0.17131102264191878, 0.07042427222914205, 0.1577516063520068, 0.39934634677258996, 0.42249259173992826, 0.24940231538328683, 0.46827469198568006, 0.040988937643475554, 0.034828704291737345, 0.26663563965858417, 0.22421743312747255, 0.10716094829621758, 0.7421831263598226, 0.4644511163280224, 0.1591307416719686, 0.21502194578256428, 0.12883185373794437, 0.15520095945599266, 0.04280666734842442, 0.06928764484923078, 0.3578757504587543, 0.0760792945579073, 0.06637805380770656, 0.5755848065786346, 0.4326356954473739, 0.16985579355455038, 0.47152805642545803, 0.11644579282256762, 0.11790522998710073, 0.5438286352264949, 0.41561805514360906, 0.050606352251634235, 0.21836830194439782, 0.22298545275517268, 0.1504846162366139, 0.16819644397314482, 0.47796113776613436, 0.14100197907825862, 0.7878397890034206, 0.12176963827920351, 0.09814942480303201, 0.23162396036129984, 0.04400104962869911, 0.061588508633294015, 0.2774601068082493, 0.40816383821078206, 0.14036214651023216, 0.11837607594274324, 0.0703155477214753, 0.17002415827487982, 0.24611532014486182, 0.06874641727313702, 0.30975746960573625, 0.07004288447243323, 0.6453829176356538, 0.3880412370469972, 0.10205495289732236, 0.12171087020281346, 0.38550692709735157, 0.4398162761337091, 0.5769741243450848, 0.48842976274850136, 0.3866799681687785, 0.17129518728202664, 0.5711206597512044, 0.4456070955069118, 0.4585850027539752, 0.25462747480751524, 0.34771016550763867, 0.35548618548401445, 0.07878090041588082, 0.3008706318705062, 0.08117751180329491, 0.055511805197920094, 0.1600174453683395, 0.35597309965685686, 0.5473978930443646, 0.3321771897262046, 0.14643302530661162, 0.7653011157176768, 0.24188431843396252, 0.16704799028757666, 0.41136103198090634, 0.5749869949413896, 0.709238838470871, 0.09340318303147321, 0.602429869503323, 0.04154705947390969, 0.7519582179986716, 0.15993940416551844, 0.04372375151311325, 0.4076899811241429, 0.4644511163280224, 0.3133137248525114, 0.24628490675063597, 0.06972977174174444, 0.15949948541388637, 0.2241543425141257, 0.1729876202034616, 0.07290025122558275, 0.1220000714032804, 0.36493953208423235, 0.09420126302076737, 0.026726938234992392, 0.7199273032686843, 0.4606762448039463, 0.04906818437448113, 0.19446415942665518, 0.14876853598344464, 0.3247816953453747, 0.023320858692869595, 0.7310618090422621, 0.48944479260603346, 0.20357574295749958, 0.0840537250624015, 0.5368744051465595, 0.21101467800102214, 0.46682279298460017, 0.3749869638443927, 0.46592999202179275, 0.10188412989688433, 0.15751976448865512], \"xaxis\": \"x\", \"xbins\": {\"end\": 0.9322526967181247, \"size\": 0.05, \"start\": 0.017128038770129694}, \"yaxis\": \"y\"}, {\"legendgroup\": \"bad\", \"marker\": {\"color\": \"#ed0400\", \"symbol\": \"line-ns-open\"}, \"mode\": \"markers\", \"name\": \"bad\", \"showlegend\": false, \"type\": \"scatter\", \"x\": [0.18579927887031134, 0.9274202256360236, 0.2569067617886446, 0.17851375722123963, 0.43011516789686843, 0.3951880410340851, 0.35333307802371594, 0.854899199395705, 0.7749695319329993, 0.7150752736216004, 0.5793836726576811, 0.17187478758168062, 0.503776006633781, 0.6517104478925241, 0.5321166645488455, 0.4291031613352281, 0.6295132227815239, 0.446367751604861, 0.12978626497489776, 0.578130474122496, 0.1303225049324246, 0.4589423036505589, 0.6028673022099313, 0.6724998803801079, 0.055171077290688375, 0.28900585249094113, 0.5807441942986169, 0.6324527530146118, 0.32780881811994433, 0.4437792729685527, 0.47375733914823626, 0.6755390392614542, 0.8494338455743565, 0.8432302027568838, 0.3962269303969661, 0.36574887203466033, 0.9780529644634413, 0.6757083557066426, 0.43212531492562845, 0.6428319532862445, 0.2244465690609686, 0.6759712108962084, 0.300575337785698, 0.4848467547623382, 0.24353241802821812, 0.6165640897352094, 0.801889943514816, 0.6831580296641933, 0.4684052737322374, 0.07309555507266852, 0.17397747102053363, 0.548208100621717, 0.16948307959681597, 0.5287139706981401, 0.8097217619362252, 0.48186532860504816, 0.7044722268129955, 0.5458559966555334, 0.6067015953642416, 0.5767206748937392, 0.5416109283549078, 0.7766135747357961, 0.6371580804073698, 0.3290646799011723, 0.53941953634433, 0.7444876216695655, 0.27658524567301757, 0.8518717737266248, 0.685064206005921, 0.7994946846943811, 0.6254668451144636, 0.29898447003196504, 0.36566585814722175, 0.8260679099411251, 0.265003746926769, 0.18277705216857454, 0.6401445853260315, 0.2878944788643705, 0.7379395090268356, 0.6578861964269485, 0.3048731186933995, 0.6479177870210828, 0.5479007895539181, 0.8109237991420157, 0.4555798348891207, 0.35159410271621183, 0.6741813074403022, 0.40366163192193316, 0.3797333752177462, 0.42326140605337403, 0.49450075158901585, 0.7027754368270075, 0.31556666432085356, 0.5737052492708005, 0.5594846166878963, 0.9879213229528466, 0.23907110553933086, 0.7604887601700165, 0.906894853259191, 0.49150798334893764, 0.6693239074263375, 0.635181004157038, 0.4291031613352281, 0.6805197940362542, 0.8579270215873258, 0.42231028799440284, 0.7973836574204367, 0.6209099995125147, 0.617932351579841, 0.5867531689564582, 0.8217385626893267, 0.5766058512754557, 0.6085190813519714, 0.6488649586424557, 0.19466062481522506, 0.4062994677131635, 0.31500574198466447, 0.6106996692323751, 0.48314991346809855, 0.4300926711133176, 0.4623912750166579, 0.18141675383529432, 0.7404949196358439, 0.7960551628311661, 0.6696955469146251, 0.7471897031921468, 0.15222801432328747, 0.4782875749995391, 0.6696955469146251, 0.4617114467660769, 0.0374236133971757, 0.34638250956587036, 0.5737052492708005, 0.35412183815676124, 0.5342599897609015, 0.6273126624389191, 0.1819914526651868, 0.6450640502472667, 0.7576359910572065, 0.6363669366758954, 0.35783776888428775, 0.4555798348891207, 0.2603691587203709, 0.09638465351539516, 0.7889843001267657, 0.3995975535535492, 0.2404138117262561, 0.5134503976671381, 0.7620160241108803, 0.4852174766770502, 0.7934067722809752, 0.5657371707019572, 0.40591517497640706, 0.5142806824729376, 0.4667389755277017, 0.4597803030361328, 0.14211531046105408, 0.4709774325404933, 0.39253304933110444, 0.8152160844894966, 0.6418608562675732, 0.5695619245525361, 0.15898796250578873, 0.4189913516486339, 0.8097376625536354, 0.2776505479619531, 0.14100712613869515, 0.1625374057836978, 0.21879614767173305, 0.26016804821119, 0.5884346274074399, 0.25171266030158634, 0.5556828679884147, 0.2886326125606653, 0.5013044750460076, 0.23728971353361283, 0.6280660923097139, 0.6281218947904323, 0.6226708394296439, 0.1280348372312241, 0.37812375401711507, 0.6218606462016874, 0.446367751604861, 0.5237591509200082, 0.22560064672115399, 0.4159575064805634, 0.43989745285902637, 0.38133093816728936, 0.379388299643832, 0.4244201113870294, 0.8495234946343055, 0.44699506619782237, 0.3402560380560977, 0.16997778820688525, 0.6509841470756508, 0.5589353890471914, 0.49320900326902484, 0.41485179365651337, 0.2850172536812061, 0.5150740024049856, 0.7905789411902706, 0.6660097546858721, 0.5916856454756931, 0.25029771644034415, 0.21820707607863943, 0.23625780462752244, 0.6174344585079109, 0.33885175059010386, 0.8097775874289167, 0.5502791542248897, 0.45232673966787307, 0.5168725346003686, 0.4922951659433321, 0.2710495410551712, 0.5620189509382074, 0.19827785442852286, 0.35653263682836045, 0.4940220265254579, 0.3934632807735441, 0.349631294967786, 0.6543252873397565, 0.6043841099981286, 0.6572212454398962, 0.5323595728841377, 0.4667716613599331, 0.5480891857555714, 0.5933716837007499, 0.5769442381274095, 0.7796710482718338, 0.4721284230669528, 0.5632051337005155, 0.25606657060722404, 0.47304849589761655, 0.4991199345133047, 0.785831825438318, 0.5512091114854263, 0.31651464458218903, 0.192246895102814, 0.5737052492708005, 0.14970485751781393, 0.8257882443178004, 0.7450862811651306, 0.2404138117262561, 0.3428275867057816, 0.2186811050870735, 0.43730933466596944, 0.1325711740116582, 0.33994853494016564, 0.5172250338280965, 0.4543852880840521, 0.6017244994332274, 0.7267617626256621, 0.304103470637073, 0.49511795227452726, 0.4577650902534979, 0.4389063253281036, 0.3428275867057816, 0.6911248892501751, 0.5457123873353599, 0.3395528272139201, 0.5662837862370104, 0.38281068028313525, 0.1899488449656659, 0.1899488449656659, 0.39416742153886597, 0.4473524415330049, 0.5724944828663213, 0.12652799787397961, 0.14917046216496987, 0.4192276293132746, 0.1727250451072272, 0.7329347521090118, 0.2979855805324535, 0.5384433083808008, 0.2944152049751758, 0.5661013076544325, 0.39283078357423706, 0.6503174362647687, 0.7632350838020857, 0.29422440231251745, 0.8446099855685041, 0.3812461384129847, 0.1264117171095669, 0.6995051325026098, 0.7680829457938805, 0.1086082602083136, 0.50228427853815, 0.8303888649041977, 0.15145052047802054, 0.5239967242043768, 0.49461569007297057, 0.7323984730128237, 0.6372335578763709, 0.8485373319296128, 0.21018203617182263, 0.3854703692354019, 0.6209619763202376, 0.6996467359659702, 0.3913887983225227, 0.600932061108284, 0.18141675383529432, 0.32841971343371723, 0.17397747102053363, 0.3943097935149382, 0.5998672378660981, 0.6052803835931642, 0.35501406908939237, 0.4362847089434372, 0.6005057903956104, 0.45095984485898877, 0.5601124581139871, 0.6908342266509375, 0.29066967723125237, 0.5437491575180791, 0.5955595524057149, 0.4226516353037165, 0.552222307965348, 0.5038457784615318, 0.6752568781943777, 0.7880730680059006, 0.09430965090665133, 0.4986183600001317, 0.24112389044610405, 0.3635071851353404, 0.7047195247497422, 0.5251048099479148, 0.5632051337005155, 0.4520037684813636, 0.5271857161160298, 0.36566585814722175, 0.8775119234978208, 0.49474741138534273, 0.17187478758168062, 0.1069918390347242, 0.6371627391106971, 0.19018032574493748, 0.34352259564225396, 0.806114950115292, 0.47304849589761655, 0.5014153035286022, 0.6721952796384192, 0.7507248720260316, 0.38512814216859315, 0.8930847268109882, 0.863224561659591, 0.15108072818859253, 0.7399796913917198, 0.18579927887031134, 0.47304849589761655, 0.2033384066370545, 0.43667652058029827, 0.23252054766636898], \"xaxis\": \"x\", \"y\": [\"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\", \"bad\"], \"yaxis\": \"y2\"}, {\"legendgroup\": \"other\", \"marker\": {\"color\": \"#4d4d4d\", \"symbol\": \"line-ns-open\"}, \"mode\": \"markers\", \"name\": \"other\", \"showlegend\": false, \"type\": \"scatter\", \"x\": [0.6660328535674787, 0.4955559099445003, 0.11251030999551548, 0.5313240922219649, 0.7616845263358343, 0.42881839881496897, 0.22146723198036844, 0.2709448900825402, 0.04188686298684474, 0.3198999677935893, 0.586632325439729, 0.3332859260788763, 0.0891770245136605, 0.07249138429342028, 0.0813041402249215, 0.2808128557304226, 0.18155424903412543, 0.14020593233116785, 0.20529540916933675, 0.1755850319354616, 0.5722846846512241, 0.4684623303117058, 0.2863708053899042, 0.4489302200945696, 0.3606737334686688, 0.09834172337505831, 0.1439119889738254, 0.10526388551166177, 0.08976738859769384, 0.15927641460572795, 0.07353544332944184, 0.4894096639868448, 0.24735122968283396, 0.41440459167745447, 0.10107859516115147, 0.4809249647595707, 0.043928674649753696, 0.27268427565697984, 0.07203278686513981, 0.35989685204578803, 0.08410225657903847, 0.09640449279894714, 0.2859044620344169, 0.766491644508495, 0.27194216744256416, 0.11891721880979944, 0.6033870782914414, 0.8445823904457724, 0.4148378249676725, 0.09538880480821377, 0.5822786697287807, 0.2006236885231063, 0.30215903380660414, 0.3526626332448971, 0.22921561702294402, 0.3499358724503807, 0.451050436906263, 0.01968005574460141, 0.3849224947932618, 0.608666907839271, 0.30333177217190177, 0.05732515971384944, 0.08299070223644744, 0.155374347961305, 0.4378217303747408, 0.10641916767178827, 0.3207785913922725, 0.3280003244598044, 0.4747408725557203, 0.27229542413121455, 0.5314247042003052, 0.13834506443323813, 0.652508483608137, 0.1775869136191267, 0.4659209431511335, 0.3288332341233703, 0.47224603889779837, 0.2773569186284155, 0.18590272545123854, 0.6719763059805124, 0.04569198037744582, 0.22473444069733528, 0.0776074933333939, 0.1411968215808168, 0.3654892991508686, 0.06069899520469324, 0.21029328672965164, 0.13919371635861133, 0.16321149678759816, 0.6144435769482088, 0.1388055550317996, 0.0827658987104557, 0.0793107693477757, 0.04994940743047871, 0.46220165202879504, 0.08265172102971341, 0.5554564865761329, 0.10902951494304747, 0.26480674198345266, 0.31816712550642645, 0.20184400370343658, 0.23734670470511587, 0.19264674509953905, 0.03558879485690103, 0.5314247042003052, 0.3013473679880785, 0.8043030592862955, 0.07665185966197174, 0.17816243980233548, 0.14637302723887635, 0.43623195291339645, 0.5773286546676725, 0.06996409198491005, 0.0635191394270278, 0.11839391684253864, 0.03368970372860669, 0.16544292122901683, 0.5002106013252752, 0.20783967621931676, 0.4413184352618238, 0.1377753535318076, 0.017128038770129694, 0.09070427960766203, 0.05237321155563324, 0.46044782253877736, 0.09863911308639095, 0.6058955548956951, 0.07377868677997379, 0.33726125667837825, 0.03705661785513226, 0.03856885477325478, 0.01970319875133708, 0.06623921298607705, 0.655672818127978, 0.36403826442427, 0.375635621083512, 0.25822104517587474, 0.26990817233175546, 0.30316845466795117, 0.21597661143113533, 0.10411587283779344, 0.4582573305440075, 0.28974208538397184, 0.3995654588450376, 0.48407929824265805, 0.2412117545349558, 0.49704114689177337, 0.3112403223054312, 0.13571503940671914, 0.35304273602320047, 0.18963603484652192, 0.06023564559469896, 0.305863422303413, 0.34062746964654456, 0.03532029949184434, 0.20200996882548472, 0.207876095289533, 0.11304202998506685, 0.26487496820305634, 0.46674395287949066, 0.05931266843465788, 0.6063731497207538, 0.053339747820140615, 0.16056749669580483, 0.3366557342021428, 0.18735912995827353, 0.2667542380283816, 0.9197592959547904, 0.13322255285490225, 0.3533185668595151, 0.08763312389948397, 0.343329095265401, 0.1298321532292276, 0.11240742021865013, 0.03412749239977686, 0.23316671381479437, 0.13955591125269062, 0.065615492475942, 0.03940539431326806, 0.04874684240881699, 0.42507109047861347, 0.3720756994829524, 0.20627971812824875, 0.23346983492740092, 0.299872058778726, 0.14688925552714138, 0.20529540916933675, 0.11294333341234963, 0.4523771212155355, 0.15895981664313275, 0.12633289347617382, 0.34801013400503944, 0.063056887931354, 0.09222807982804315, 0.19281104432210028, 0.11843845992675284, 0.1064686731970873, 0.12171087020281346, 0.49704114689177337, 0.4202798549667376, 0.058322454167927695, 0.40418598015134155, 0.7514842711311043, 0.067978575311199, 0.1468497162592186, 0.3655805321171328, 0.36741292271676196, 0.08785516413846428, 0.4223454464089015, 0.09472348251934337, 0.14196098925812006, 0.10013555988874479, 0.32154631204965056, 0.05416575683382341, 0.786126361492164, 0.04696516601190348, 0.26926088858349784, 0.28123172687107445, 0.3094364396730669, 0.04307250962973752, 0.07126159086244754, 0.6143015945908075, 0.495586079448059, 0.46102608015166635, 0.40789311683600216, 0.8929715185951024, 0.1227006502272181, 0.3638055988942468, 0.10470002869891348, 0.29304213908849364, 0.8936703981375603, 0.3534407380188983, 0.0883666731866185, 0.07895584641700149, 0.05166417783587085, 0.4199775765299997, 0.10304865631077798, 0.1041340676595982, 0.11031385635331636, 0.22368578646300386, 0.22137255536682798, 0.0725394352715707, 0.08320759746190642, 0.3577905591727162, 0.36362749207413336, 0.13058702032609693, 0.4306817897420764, 0.4684623303117058, 0.3185463047756948, 0.6991046594229053, 0.33105510290791684, 0.35804773811787727, 0.3499358724503807, 0.17780319308126435, 0.07142366539796174, 0.1504846162366139, 0.28643330026545544, 0.11492102279820171, 0.08716328114311156, 0.12905574960179156, 0.5528531989583015, 0.2852168598030531, 0.3185463047756948, 0.41766807389819915, 0.22818770291371737, 0.10749415552266317, 0.07500089027222667, 0.2150933620687273, 0.4879833184669665, 0.21367083697314282, 0.18281788227943807, 0.11217648511765432, 0.01860460444149037, 0.4990100838788346, 0.3212979959143686, 0.7252893191599291, 0.30018855716775616, 0.2808216200321265, 0.24332849241566534, 0.22583693263898685, 0.307128141019565, 0.12930297020615966, 0.07734813107736227, 0.38078614076753503, 0.037937415915298756, 0.18389331462546077, 0.2015421194948802, 0.10121634311933059, 0.7209948827487924, 0.252131738577411, 0.19866278493931944, 0.5569604587758099, 0.19172534874952063, 0.07516041810443141, 0.18673310211333727, 0.20736440356309183, 0.27568985010185776, 0.1748501221961516, 0.134246332983591, 0.12151400729184814, 0.03860330573341564, 0.16198960071610413, 0.062309112953929935, 0.14943540958877521, 0.46827469198568006, 0.12435295831370408, 0.11768791031746062, 0.10794707492381372, 0.04347111427796346, 0.07423675680829, 0.1602542791395647, 0.19911642350143877, 0.2379444352717226, 0.36664322039668684, 0.10130143557253446, 0.17108028607870185, 0.6143194513817134, 0.5641235853966853, 0.29864316680665437, 0.44752301946823647, 0.13459844499503626, 0.037461465199631894, 0.5002964248569376, 0.4059565893810353, 0.7035957096210382, 0.0629603198376949, 0.25036415064992923, 0.14780834332950044, 0.24800647860056513, 0.10438723399855232, 0.24366911510822187, 0.4574644219698093, 0.8347014835967527, 0.42226245660703365, 0.4073158502222598, 0.47525484003715535, 0.37845934883934684, 0.35325777167774697, 0.4763432908647238, 0.18941100564626978, 0.23853527246002126, 0.27277355193056574, 0.5556171757583562, 0.19481513110659687, 0.7460207524242459, 0.12627308236197843, 0.2115813466591615, 0.4773837842994688, 0.22238536240250728, 0.1978655273089749, 0.32057959349203036, 0.1601330373243487, 0.6256605001243821, 0.34062746964654456, 0.5899158924001677, 0.1273375405407705, 0.6866376712310945, 0.3812864953771038, 0.07918534602430627, 0.10510921928053807, 0.052405178286905496, 0.29010285216427345, 0.5802968836962079, 0.4475494904811408, 0.33107045093633036, 0.6046547135519548, 0.33132995382553565, 0.3391582818855403, 0.37109937806185267, 0.18876467901964422, 0.03244681540368277, 0.6531311156123596, 0.18281848038190407, 0.06840545126676123, 0.23876166598551407, 0.5602062902528231, 0.05478334190217349, 0.18965009362393503, 0.502081053312289, 0.0945975060483667, 0.24937367783354814, 0.14040338921272166, 0.09582424632391484, 0.4879833184669665, 0.07536550594022651, 0.37763546052463404, 0.20240400638142053, 0.06234715971662652, 0.1729504208160284, 0.2536573606029918, 0.1491704939138675, 0.47224603889779837, 0.20734784509414073, 0.1656619584420439, 0.20263687678412212, 0.4576701693643329, 0.3746187330143109, 0.06578487521364562, 0.09359041291034786, 0.15714155813810793, 0.43198081216185935, 0.17693664965610134, 0.14200602748771296, 0.16878839641400256, 0.11131318694256087, 0.43040972974554736, 0.12494266711040569, 0.5286591337585229, 0.3917329141436472, 0.14284790216410748, 0.29931895876037384, 0.3998656181534954, 0.13198036366642862, 0.2166851793268345, 0.164669749255824, 0.3116999397838065, 0.5702002297218003, 0.2867818412254799, 0.05809024612643199, 0.0701620515557333, 0.10493669218879953, 0.03474255021640338, 0.14069518845012563, 0.7697788668098057, 0.44513161239284327, 0.12104291767226882, 0.2823656727566666, 0.28640273091276736, 0.09904459769556595, 0.10889384421684001, 0.1978655273089749, 0.6326587477498924, 0.0766186874204361, 0.07300117689776386, 0.3978521493117628, 0.7293533971641823, 0.24040337450518035, 0.46827469198568006, 0.03737110954461231, 0.48112847828662497, 0.5755848065786346, 0.12151472907643468, 0.332302417201758, 0.3208349144509022, 0.13406270144296106, 0.47820199098358873, 0.024219732643774528, 0.7923035912680444, 0.3099424932714111, 0.8494816644677875, 0.15230116664989468, 0.8795672599938588, 0.34536882843285344, 0.587897812361327, 0.3660303223369904, 0.3074082248441362, 0.1925553058603695, 0.1582957933341015, 0.5297945963993664, 0.1892543681582496, 0.06574637766643598, 0.03286461121245521, 0.6223124217546917, 0.48666930315350876, 0.17200815643270417, 0.27042696199957883, 0.16010429726024444, 0.25291734909108765, 0.22778758435893687, 0.6055190518965303, 0.41989528411161425, 0.2865861541738164, 0.17344095530188786, 0.4163761941495938, 0.24610426408478792, 0.029106329843254564, 0.5849270471051293, 0.09607886499379148, 0.4890296174547498, 0.11193395874659995, 0.3667485749721523, 0.29672938182784603, 0.13696827462710404, 0.03986507081677082, 0.41542023534722683, 0.1642424989032959, 0.041559354155004224, 0.1266666793707928, 0.5259198205822933, 0.42123490919744344, 0.6147437654518444, 0.42849246998341506, 0.04874684240881699, 0.16870816563337898, 0.35179373534084035, 0.4552463954734379, 0.1543174595222413, 0.4641274821418986, 0.1106599594415556, 0.40441066041397966, 0.05916303638108533, 0.24194101851814365, 0.5755848065786346, 0.23631147082452741, 0.04679471849088612, 0.33132995382553565, 0.6031606095022326, 0.16900214819844117, 0.9322526967181247, 0.1065938389205352, 0.0540586741766943, 0.14920224829950646, 0.03054451782098533, 0.13595064656866984, 0.15908339514281045, 0.09402391562754642, 0.27219479721363327, 0.10477531970828624, 0.6046547135519548, 0.04412971358840656, 0.0821245873848182, 0.24953715645213048, 0.24311299470472425, 0.679537413518331, 0.02875041056121841, 0.2874129658970298, 0.17131102264191878, 0.07042427222914205, 0.1577516063520068, 0.39934634677258996, 0.42249259173992826, 0.24940231538328683, 0.46827469198568006, 0.040988937643475554, 0.034828704291737345, 0.26663563965858417, 0.22421743312747255, 0.10716094829621758, 0.7421831263598226, 0.4644511163280224, 0.1591307416719686, 0.21502194578256428, 0.12883185373794437, 0.15520095945599266, 0.04280666734842442, 0.06928764484923078, 0.3578757504587543, 0.0760792945579073, 0.06637805380770656, 0.5755848065786346, 0.4326356954473739, 0.16985579355455038, 0.47152805642545803, 0.11644579282256762, 0.11790522998710073, 0.5438286352264949, 0.41561805514360906, 0.050606352251634235, 0.21836830194439782, 0.22298545275517268, 0.1504846162366139, 0.16819644397314482, 0.47796113776613436, 0.14100197907825862, 0.7878397890034206, 0.12176963827920351, 0.09814942480303201, 0.23162396036129984, 0.04400104962869911, 0.061588508633294015, 0.2774601068082493, 0.40816383821078206, 0.14036214651023216, 0.11837607594274324, 0.0703155477214753, 0.17002415827487982, 0.24611532014486182, 0.06874641727313702, 0.30975746960573625, 0.07004288447243323, 0.6453829176356538, 0.3880412370469972, 0.10205495289732236, 0.12171087020281346, 0.38550692709735157, 0.4398162761337091, 0.5769741243450848, 0.48842976274850136, 0.3866799681687785, 0.17129518728202664, 0.5711206597512044, 0.4456070955069118, 0.4585850027539752, 0.25462747480751524, 0.34771016550763867, 0.35548618548401445, 0.07878090041588082, 0.3008706318705062, 0.08117751180329491, 0.055511805197920094, 0.1600174453683395, 0.35597309965685686, 0.5473978930443646, 0.3321771897262046, 0.14643302530661162, 0.7653011157176768, 0.24188431843396252, 0.16704799028757666, 0.41136103198090634, 0.5749869949413896, 0.709238838470871, 0.09340318303147321, 0.602429869503323, 0.04154705947390969, 0.7519582179986716, 0.15993940416551844, 0.04372375151311325, 0.4076899811241429, 0.4644511163280224, 0.3133137248525114, 0.24628490675063597, 0.06972977174174444, 0.15949948541388637, 0.2241543425141257, 0.1729876202034616, 0.07290025122558275, 0.1220000714032804, 0.36493953208423235, 0.09420126302076737, 0.026726938234992392, 0.7199273032686843, 0.4606762448039463, 0.04906818437448113, 0.19446415942665518, 0.14876853598344464, 0.3247816953453747, 0.023320858692869595, 0.7310618090422621, 0.48944479260603346, 0.20357574295749958, 0.0840537250624015, 0.5368744051465595, 0.21101467800102214, 0.46682279298460017, 0.3749869638443927, 0.46592999202179275, 0.10188412989688433, 0.15751976448865512], \"xaxis\": \"x\", \"y\": [\"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\", \"other\"], \"yaxis\": \"y2\"}], \"layout\": {\"barmode\": \"overlay\", \"hovermode\": \"closest\", \"legend\": {\"orientation\": \"h\", \"traceorder\": \"reversed\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y2\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"Probability\"}, \"zeroline\": false}, \"yaxis\": {\"anchor\": \"free\", \"domain\": [0.35, 1], \"position\": 0.0, \"title\": {\"text\": \"Share\"}}, \"yaxis2\": {\"anchor\": \"x\", \"domain\": [0, 0.25], \"dtick\": 1, \"showticklabels\": false}}}}]}, \"insights\": [], \"additionalGraphs\": [], \"alerts\": [], \"tabs\": []}, {\"type\": \"big_graph\", \"title\": \"Reference: ROC Curve\", \"size\": 1, \"details\": \"\", \"alertsPosition\": null, \"alertStats\": null, \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"lines\", \"name\": \"ROC\", \"type\": \"scatter\", \"x\": [0.0, 0.0028169014084507044, 0.0028169014084507044, 0.0028169014084507044, 0.005633802816901409, 0.005633802816901409, 0.008450704225352112, 0.008450704225352112, 0.008450704225352112, 0.008450704225352112, 0.011267605633802818, 0.011267605633802818, 0.011267605633802818, 0.011267605633802818, 0.011267605633802818, 0.011267605633802818, 0.014084507042253521, 0.014084507042253521, 0.014084507042253521, 0.014084507042253521, 0.016901408450704224, 0.016901408450704224, 0.01971830985915493, 0.01971830985915493, 0.01971830985915493, 0.01971830985915493, 0.022535211267605635, 0.022535211267605635, 0.02535211267605634, 0.02535211267605634, 0.028169014084507043, 0.028169014084507043, 0.028169014084507043, 0.030985915492957747, 0.030985915492957747, 0.03380281690140845, 0.03380281690140845, 0.036619718309859155, 0.036619718309859155, 0.03943661971830986, 0.03943661971830986, 0.04225352112676056, 0.04225352112676056, 0.04507042253521127, 0.04507042253521127, 0.04788732394366197, 0.04788732394366197, 0.05070422535211268, 0.05070422535211268, 0.05352112676056338, 0.05352112676056338, 0.056338028169014086, 0.056338028169014086, 0.056338028169014086, 0.056338028169014086, 0.059154929577464786, 0.059154929577464786, 0.061971830985915494, 0.061971830985915494, 0.0676056338028169, 0.0676056338028169, 0.07323943661971831, 0.07323943661971831, 0.07887323943661972, 0.07887323943661972, 0.08450704225352113, 0.08450704225352113, 0.08732394366197183, 0.08732394366197183, 0.09014084507042254, 0.09014084507042254, 0.09295774647887324, 0.09295774647887324, 0.09295774647887324, 0.09295774647887324, 0.09577464788732394, 0.09577464788732394, 0.09859154929577464, 0.09859154929577464, 0.10140845070422536, 0.10140845070422536, 0.10422535211267606, 0.10422535211267606, 0.10704225352112676, 0.10704225352112676, 0.11267605633802817, 0.11267605633802817, 0.11549295774647887, 0.11549295774647887, 0.11830985915492957, 0.11830985915492957, 0.12112676056338029, 0.12112676056338029, 0.1323943661971831, 0.1323943661971831, 0.1352112676056338, 0.1352112676056338, 0.14084507042253522, 0.14084507042253522, 0.14366197183098592, 0.14366197183098592, 0.14647887323943662, 0.14647887323943662, 0.14647887323943662, 0.14647887323943662, 0.14929577464788732, 0.14929577464788732, 0.14929577464788732, 0.15492957746478872, 0.15492957746478872, 0.15774647887323945, 0.15774647887323945, 0.16056338028169015, 0.16056338028169015, 0.16619718309859155, 0.16619718309859155, 0.17183098591549295, 0.17183098591549295, 0.18028169014084508, 0.18028169014084508, 0.18309859154929578, 0.18309859154929578, 0.18591549295774648, 0.18591549295774648, 0.18873239436619718, 0.18873239436619718, 0.19436619718309858, 0.19436619718309858, 0.2, 0.2, 0.2056338028169014, 0.2056338028169014, 0.2084507042253521, 0.2084507042253521, 0.21690140845070421, 0.21690140845070421, 0.22253521126760564, 0.22253521126760564, 0.22253521126760564, 0.22253521126760564, 0.22535211267605634, 0.22535211267605634, 0.23098591549295774, 0.23098591549295774, 0.23380281690140844, 0.23380281690140844, 0.23380281690140844, 0.23380281690140844, 0.23661971830985915, 0.23661971830985915, 0.23943661971830985, 0.23943661971830985, 0.24507042253521127, 0.24507042253521127, 0.2507042253521127, 0.2507042253521127, 0.2563380281690141, 0.2563380281690141, 0.2591549295774648, 0.2591549295774648, 0.2619718309859155, 0.2619718309859155, 0.2647887323943662, 0.2647887323943662, 0.2676056338028169, 0.2676056338028169, 0.27323943661971833, 0.27323943661971833, 0.27887323943661974, 0.27887323943661974, 0.28450704225352114, 0.28450704225352114, 0.29014084507042254, 0.29014084507042254, 0.29295774647887324, 0.29295774647887324, 0.30140845070422534, 0.30140845070422534, 0.30704225352112674, 0.30704225352112674, 0.30985915492957744, 0.30985915492957744, 0.3183098591549296, 0.3183098591549296, 0.3211267605633803, 0.3211267605633803, 0.3267605633802817, 0.3267605633802817, 0.3295774647887324, 0.3295774647887324, 0.3323943661971831, 0.3323943661971831, 0.3352112676056338, 0.3352112676056338, 0.3380281690140845, 0.3380281690140845, 0.3408450704225352, 0.3408450704225352, 0.3436619718309859, 0.3436619718309859, 0.3464788732394366, 0.3464788732394366, 0.352112676056338, 0.352112676056338, 0.35492957746478876, 0.35492957746478876, 0.35492957746478876, 0.35774647887323946, 0.35774647887323946, 0.36056338028169016, 0.36056338028169016, 0.36619718309859156, 0.36619718309859156, 0.37183098591549296, 0.37183098591549296, 0.38028169014084506, 0.38028169014084506, 0.38591549295774646, 0.38591549295774646, 0.39154929577464787, 0.39154929577464787, 0.39436619718309857, 0.39436619718309857, 0.4140845070422535, 0.4140845070422535, 0.4169014084507042, 0.4169014084507042, 0.4225352112676056, 0.4225352112676056, 0.43380281690140843, 0.43380281690140843, 0.4422535211267606, 0.4422535211267606, 0.4450704225352113, 0.4450704225352113, 0.4507042253521127, 0.4507042253521127, 0.4535211267605634, 0.4535211267605634, 0.4591549295774648, 0.4591549295774648, 0.4619718309859155, 0.4619718309859155, 0.4647887323943662, 0.4704225352112676, 0.4732394366197183, 0.4732394366197183, 0.48169014084507045, 0.48169014084507045, 0.48450704225352115, 0.48450704225352115, 0.48732394366197185, 0.48732394366197185, 0.49014084507042255, 0.49014084507042255, 0.49295774647887325, 0.49859154929577465, 0.49859154929577465, 0.504225352112676, 0.504225352112676, 0.5126760563380282, 0.5126760563380282, 0.5211267605633803, 0.5211267605633803, 0.523943661971831, 0.523943661971831, 0.5267605633802817, 0.5267605633802817, 0.5295774647887324, 0.5295774647887324, 0.5352112676056338, 0.5352112676056338, 0.5380281690140845, 0.5380281690140845, 0.543661971830986, 0.543661971830986, 0.5492957746478874, 0.5492957746478874, 0.5549295774647888, 0.5549295774647888, 0.5577464788732395, 0.5577464788732395, 0.5633802816901409, 0.5633802816901409, 0.5690140845070423, 0.5690140845070423, 0.5746478873239437, 0.5746478873239437, 0.5774647887323944, 0.5774647887323944, 0.5802816901408451, 0.5802816901408451, 0.5887323943661972, 0.5943661971830986, 0.6112676056338028, 0.6169014084507042, 0.6169014084507042, 0.6197183098591549, 0.6197183098591549, 0.6253521126760564, 0.6253521126760564, 0.6281690140845071, 0.6281690140845071, 0.6309859154929578, 0.6309859154929578, 0.6338028169014085, 0.6338028169014085, 0.6366197183098592, 0.6366197183098592, 0.6450704225352113, 0.6450704225352113, 0.647887323943662, 0.647887323943662, 0.6535211267605634, 0.6535211267605634, 0.6563380281690141, 0.6563380281690141, 0.6873239436619718, 0.6873239436619718, 0.6985915492957746, 0.6985915492957746, 0.7098591549295775, 0.7098591549295775, 0.7098591549295775, 0.7154929577464789, 0.7154929577464789, 0.7211267605633803, 0.7211267605633803, 0.7295774647887324, 0.7295774647887324, 0.7323943661971831, 0.7380281690140845, 0.7380281690140845, 0.7408450704225352, 0.7408450704225352, 0.7436619718309859, 0.7436619718309859, 0.7464788732394366, 0.7464788732394366, 0.7605633802816901, 0.7605633802816901, 0.7661971830985915, 0.7661971830985915, 0.7718309859154929, 0.7746478873239436, 0.7746478873239436, 0.7859154929577464, 0.7859154929577464, 0.8, 0.8, 0.8028169014084507, 0.8028169014084507, 0.8112676056338028, 0.8112676056338028, 0.819718309859155, 0.819718309859155, 0.8309859154929577, 0.8309859154929577, 0.8422535211267606, 0.8422535211267606, 0.8535211267605634, 0.8535211267605634, 0.856338028169014, 0.856338028169014, 0.8619718309859155, 0.8619718309859155, 0.8704225352112676, 0.8704225352112676, 0.8760563380281691, 0.8985915492957747, 0.8985915492957747, 0.9042253521126761, 0.9042253521126761, 0.9070422535211268, 0.9070422535211268, 0.9098591549295775, 0.9098591549295775, 0.9154929577464789, 0.9154929577464789, 0.9211267605633803, 0.9211267605633803, 0.9943661971830986, 0.9943661971830986, 1.0], \"y\": [0.0, 0.0, 0.02945736434108527, 0.03255813953488372, 0.03255813953488372, 0.043410852713178294, 0.043410852713178294, 0.11317829457364341, 0.11627906976744186, 0.12868217054263567, 0.12868217054263567, 0.15348837209302327, 0.15658914728682172, 0.18449612403100776, 0.1875968992248062, 0.1937984496124031, 0.1937984496124031, 0.22790697674418606, 0.2310077519379845, 0.23410852713178296, 0.23410852713178296, 0.24651162790697675, 0.24651162790697675, 0.25426356589147286, 0.25736434108527134, 0.262015503875969, 0.262015503875969, 0.2651162790697674, 0.2651162790697674, 0.27596899224806204, 0.27596899224806204, 0.2806201550387597, 0.2868217054263566, 0.2868217054263566, 0.289922480620155, 0.289922480620155, 0.2930232558139535, 0.2930232558139535, 0.29767441860465116, 0.29767441860465116, 0.30387596899224806, 0.30387596899224806, 0.31007751937984496, 0.31007751937984496, 0.3116279069767442, 0.3116279069767442, 0.31317829457364343, 0.31317829457364343, 0.3209302325581395, 0.3209302325581395, 0.32248062015503876, 0.32248062015503876, 0.3364341085271318, 0.3395348837209302, 0.3426356589147287, 0.3426356589147287, 0.35038759689922483, 0.35038759689922483, 0.35348837209302325, 0.35348837209302325, 0.37829457364341085, 0.37829457364341085, 0.3875968992248062, 0.3875968992248062, 0.4015503875968992, 0.4015503875968992, 0.4046511627906977, 0.4046511627906977, 0.42790697674418604, 0.42790697674418604, 0.4294573643410853, 0.4294573643410853, 0.4372093023255814, 0.44031007751937984, 0.4434108527131783, 0.4434108527131783, 0.4573643410852713, 0.4573643410852713, 0.4635658914728682, 0.4635658914728682, 0.48527131782945737, 0.48527131782945737, 0.48992248062015503, 0.48992248062015503, 0.49612403100775193, 0.49612403100775193, 0.4992248062015504, 0.4992248062015504, 0.5054263565891473, 0.5054263565891473, 0.5162790697674419, 0.5162790697674419, 0.5193798449612403, 0.5193798449612403, 0.5317829457364341, 0.5317829457364341, 0.5333333333333333, 0.5333333333333333, 0.5410852713178295, 0.5410852713178295, 0.5472868217054263, 0.5472868217054263, 0.5596899224806201, 0.5627906976744186, 0.5643410852713179, 0.5643410852713179, 0.5674418604651162, 0.5689922480620155, 0.5689922480620155, 0.5705426356589147, 0.5705426356589147, 0.5720930232558139, 0.5720930232558139, 0.5736434108527132, 0.5736434108527132, 0.5813953488372093, 0.5813953488372093, 0.586046511627907, 0.586046511627907, 0.5875968992248062, 0.5875968992248062, 0.5891472868217055, 0.5891472868217055, 0.5953488372093023, 0.5953488372093023, 0.6, 0.6, 0.6031007751937985, 0.6031007751937985, 0.6093023255813953, 0.6093023255813953, 0.6201550387596899, 0.6201550387596899, 0.6217054263565891, 0.6217054263565891, 0.6325581395348837, 0.6325581395348837, 0.6387596899224807, 0.641860465116279, 0.6434108527131783, 0.6434108527131783, 0.6449612403100775, 0.6449612403100775, 0.6465116279069767, 0.6465116279069767, 0.6573643410852713, 0.6604651162790698, 0.6682170542635659, 0.6682170542635659, 0.6806201550387597, 0.6806201550387597, 0.6821705426356589, 0.6821705426356589, 0.6837209302325581, 0.6837209302325581, 0.6852713178294574, 0.6852713178294574, 0.6868217054263566, 0.6868217054263566, 0.6961240310077519, 0.6961240310077519, 0.6976744186046512, 0.6976744186046512, 0.7023255813953488, 0.7023255813953488, 0.7054263565891473, 0.7054263565891473, 0.710077519379845, 0.710077519379845, 0.7116279069767442, 0.7116279069767442, 0.7162790697674418, 0.7162790697674418, 0.7193798449612403, 0.7193798449612403, 0.7209302325581395, 0.7209302325581395, 0.724031007751938, 0.724031007751938, 0.7271317829457364, 0.7271317829457364, 0.7302325581395349, 0.7302325581395349, 0.7317829457364341, 0.7317829457364341, 0.7333333333333333, 0.7333333333333333, 0.7364341085271318, 0.7364341085271318, 0.737984496124031, 0.737984496124031, 0.7395348837209302, 0.7395348837209302, 0.7410852713178294, 0.7410852713178294, 0.7426356589147287, 0.7426356589147287, 0.7457364341085271, 0.7457364341085271, 0.7565891472868217, 0.7565891472868217, 0.7581395348837209, 0.7581395348837209, 0.7627906976744186, 0.7627906976744186, 0.765891472868217, 0.7674418604651163, 0.7674418604651163, 0.7705426356589147, 0.7705426356589147, 0.7767441860465116, 0.7767441860465116, 0.7798449612403101, 0.7798449612403101, 0.7829457364341085, 0.7829457364341085, 0.7844961240310078, 0.7844961240310078, 0.7922480620155039, 0.7922480620155039, 0.7968992248062016, 0.7968992248062016, 0.7984496124031008, 0.7984496124031008, 0.8, 0.8, 0.8046511627906977, 0.8046511627906977, 0.8077519379844961, 0.8077519379844961, 0.8124031007751938, 0.8124031007751938, 0.813953488372093, 0.813953488372093, 0.8155038759689922, 0.8155038759689922, 0.8170542635658915, 0.8170542635658915, 0.8248062015503876, 0.8248062015503876, 0.8263565891472868, 0.8263565891472868, 0.8325581395348837, 0.8325581395348837, 0.8325581395348837, 0.8325581395348837, 0.834108527131783, 0.834108527131783, 0.8356589147286821, 0.8356589147286821, 0.8403100775193798, 0.8403100775193798, 0.8418604651162791, 0.8418604651162791, 0.8434108527131783, 0.8434108527131783, 0.8434108527131783, 0.8465116279069768, 0.8465116279069768, 0.8480620155038759, 0.8480620155038759, 0.8496124031007752, 0.8496124031007752, 0.8558139534883721, 0.8558139534883721, 0.862015503875969, 0.862015503875969, 0.8635658914728682, 0.8635658914728682, 0.8651162790697674, 0.8651162790697674, 0.8682170542635659, 0.8682170542635659, 0.8744186046511628, 0.8744186046511628, 0.875968992248062, 0.875968992248062, 0.8775193798449612, 0.8775193798449612, 0.8806201550387597, 0.8806201550387597, 0.8821705426356589, 0.8821705426356589, 0.8883720930232558, 0.8883720930232558, 0.889922480620155, 0.889922480620155, 0.8945736434108527, 0.8945736434108527, 0.896124031007752, 0.896124031007752, 0.8976744186046511, 0.8976744186046511, 0.8976744186046511, 0.8976744186046511, 0.8976744186046511, 0.8992248062015504, 0.8992248062015504, 0.9007751937984496, 0.9007751937984496, 0.9038759689922481, 0.9038759689922481, 0.9100775193798449, 0.9100775193798449, 0.9116279069767442, 0.9116279069767442, 0.9131782945736434, 0.9131782945736434, 0.9147286821705426, 0.9147286821705426, 0.9162790697674419, 0.9162790697674419, 0.9178294573643411, 0.9178294573643411, 0.9193798449612403, 0.9193798449612403, 0.9209302325581395, 0.9209302325581395, 0.9224806201550387, 0.9224806201550387, 0.9286821705426357, 0.9286821705426357, 0.931782945736434, 0.9348837209302325, 0.9348837209302325, 0.9364341085271318, 0.9364341085271318, 0.937984496124031, 0.937984496124031, 0.9426356589147287, 0.9426356589147287, 0.9426356589147287, 0.9441860465116279, 0.9441860465116279, 0.9488372093023256, 0.9488372093023256, 0.9503875968992248, 0.9503875968992248, 0.9534883720930233, 0.9534883720930233, 0.9565891472868217, 0.9565891472868217, 0.958139534883721, 0.958139534883721, 0.958139534883721, 0.9596899224806201, 0.9596899224806201, 0.9612403100775194, 0.9612403100775194, 0.9627906976744186, 0.9627906976744186, 0.9643410852713178, 0.9643410852713178, 0.9658914728682171, 0.9658914728682171, 0.9674418604651163, 0.9674418604651163, 0.9689922480620154, 0.9689922480620154, 0.9705426356589147, 0.9705426356589147, 0.9720930232558139, 0.9720930232558139, 0.9736434108527132, 0.9736434108527132, 0.9751937984496124, 0.9751937984496124, 0.9782945736434109, 0.9782945736434109, 0.9782945736434109, 0.9798449612403101, 0.9798449612403101, 0.9844961240310077, 0.9844961240310077, 0.9875968992248062, 0.9875968992248062, 0.9906976744186047, 0.9906976744186047, 0.9968992248062015, 0.9968992248062015, 0.9984496124031008, 0.9984496124031008, 1.0, 1.0]}], \"layout\": {\"showlegend\": true, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"False Positive Rate\"}}, \"yaxis\": {\"title\": {\"text\": \"True Positive Rate\"}}}}, \"insights\": [], \"additionalGraphs\": [], \"alerts\": [], \"tabs\": []}, {\"type\": \"big_graph\", \"title\": \"Current: ROC Curve\", \"size\": 1, \"details\": \"\", \"alertsPosition\": null, \"alertStats\": null, \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"lines\", \"name\": \"ROC\", \"type\": \"scatter\", \"x\": [0.0, 0.0, 0.0, 0.002840909090909091, 0.002840909090909091, 0.002840909090909091, 0.002840909090909091, 0.005681818181818182, 0.005681818181818182, 0.008522727272727272, 0.008522727272727272, 0.011363636363636364, 0.011363636363636364, 0.014204545454545454, 0.014204545454545454, 0.017045454545454544, 0.017045454545454544, 0.019886363636363636, 0.019886363636363636, 0.019886363636363636, 0.019886363636363636, 0.02556818181818182, 0.02556818181818182, 0.028409090909090908, 0.028409090909090908, 0.03125, 0.03125, 0.03409090909090909, 0.03409090909090909, 0.036931818181818184, 0.036931818181818184, 0.03977272727272727, 0.03977272727272727, 0.04261363636363636, 0.04261363636363636, 0.045454545454545456, 0.045454545454545456, 0.048295454545454544, 0.048295454545454544, 0.056818181818181816, 0.056818181818181816, 0.05965909090909091, 0.05965909090909091, 0.0625, 0.0625, 0.06534090909090909, 0.06534090909090909, 0.06818181818181818, 0.06818181818181818, 0.07386363636363637, 0.07386363636363637, 0.07670454545454546, 0.07670454545454546, 0.08238636363636363, 0.08238636363636363, 0.08522727272727272, 0.09090909090909091, 0.09090909090909091, 0.09659090909090909, 0.09659090909090909, 0.10227272727272728, 0.10227272727272728, 0.10795454545454546, 0.11079545454545454, 0.11079545454545454, 0.11363636363636363, 0.11363636363636363, 0.11647727272727272, 0.11647727272727272, 0.11647727272727272, 0.11931818181818182, 0.11931818181818182, 0.12215909090909091, 0.12215909090909091, 0.12215909090909091, 0.12215909090909091, 0.125, 0.125, 0.1278409090909091, 0.1278409090909091, 0.13352272727272727, 0.13352272727272727, 0.13636363636363635, 0.13636363636363635, 0.13920454545454544, 0.13920454545454544, 0.14204545454545456, 0.14204545454545456, 0.14488636363636365, 0.14488636363636365, 0.14772727272727273, 0.14772727272727273, 0.15056818181818182, 0.15056818181818182, 0.15625, 0.1590909090909091, 0.1590909090909091, 0.16193181818181818, 0.16193181818181818, 0.16477272727272727, 0.16477272727272727, 0.16761363636363635, 0.16761363636363635, 0.17329545454545456, 0.17329545454545456, 0.17897727272727273, 0.17897727272727273, 0.18181818181818182, 0.18181818181818182, 0.1846590909090909, 0.1846590909090909, 0.1875, 0.1875, 0.1903409090909091, 0.1903409090909091, 0.19318181818181818, 0.19318181818181818, 0.20170454545454544, 0.20170454545454544, 0.20454545454545456, 0.20454545454545456, 0.21022727272727273, 0.21022727272727273, 0.21306818181818182, 0.21306818181818182, 0.2159090909090909, 0.2159090909090909, 0.21875, 0.21875, 0.22443181818181818, 0.22443181818181818, 0.23295454545454544, 0.23295454545454544, 0.23295454545454544, 0.23295454545454544, 0.23579545454545456, 0.23579545454545456, 0.23863636363636365, 0.23863636363636365, 0.24147727272727273, 0.24147727272727273, 0.24147727272727273, 0.24147727272727273, 0.24431818181818182, 0.24431818181818182, 0.2528409090909091, 0.2528409090909091, 0.2585227272727273, 0.2585227272727273, 0.26136363636363635, 0.26136363636363635, 0.26420454545454547, 0.26420454545454547, 0.26704545454545453, 0.26704545454545453, 0.26988636363636365, 0.26988636363636365, 0.2727272727272727, 0.2727272727272727, 0.2784090909090909, 0.2784090909090909, 0.28125, 0.28125, 0.2840909090909091, 0.2840909090909091, 0.2869318181818182, 0.2869318181818182, 0.29261363636363635, 0.29545454545454547, 0.29545454545454547, 0.29829545454545453, 0.29829545454545453, 0.3039772727272727, 0.3039772727272727, 0.3068181818181818, 0.3068181818181818, 0.3125, 0.3125, 0.3181818181818182, 0.3181818181818182, 0.3210227272727273, 0.3210227272727273, 0.3409090909090909, 0.3409090909090909, 0.34375, 0.34375, 0.3465909090909091, 0.3465909090909091, 0.3494318181818182, 0.3494318181818182, 0.3522727272727273, 0.3522727272727273, 0.35511363636363635, 0.35511363636363635, 0.35795454545454547, 0.35795454545454547, 0.36363636363636365, 0.36363636363636365, 0.3664772727272727, 0.3664772727272727, 0.375, 0.375, 0.3806818181818182, 0.38636363636363635, 0.38636363636363635, 0.38920454545454547, 0.38920454545454547, 0.3977272727272727, 0.3977272727272727, 0.4005681818181818, 0.4005681818181818, 0.4034090909090909, 0.4034090909090909, 0.40625, 0.40625, 0.4119318181818182, 0.41761363636363635, 0.41761363636363635, 0.42045454545454547, 0.42045454545454547, 0.42613636363636365, 0.42613636363636365, 0.4289772727272727, 0.4289772727272727, 0.4346590909090909, 0.4346590909090909, 0.4375, 0.4375, 0.4431818181818182, 0.4431818181818182, 0.4460227272727273, 0.4460227272727273, 0.44886363636363635, 0.44886363636363635, 0.44886363636363635, 0.44886363636363635, 0.45170454545454547, 0.45170454545454547, 0.45454545454545453, 0.45454545454545453, 0.45454545454545453, 0.45738636363636365, 0.45738636363636365, 0.4602272727272727, 0.4602272727272727, 0.4630681818181818, 0.4630681818181818, 0.4715909090909091, 0.4744318181818182, 0.4744318181818182, 0.4772727272727273, 0.4772727272727273, 0.48295454545454547, 0.48295454545454547, 0.48863636363636365, 0.48863636363636365, 0.48863636363636365, 0.48863636363636365, 0.5113636363636364, 0.5113636363636364, 0.5113636363636364, 0.5142045454545454, 0.5142045454545454, 0.5170454545454546, 0.5170454545454546, 0.5227272727272727, 0.5227272727272727, 0.5539772727272727, 0.5539772727272727, 0.5568181818181818, 0.5568181818181818, 0.5596590909090909, 0.5596590909090909, 0.5596590909090909, 0.5681818181818182, 0.5681818181818182, 0.5795454545454546, 0.5795454545454546, 0.5852272727272727, 0.5852272727272727, 0.6022727272727273, 0.6022727272727273, 0.6051136363636364, 0.6051136363636364, 0.6136363636363636, 0.6136363636363636, 0.6164772727272727, 0.6221590909090909, 0.6221590909090909, 0.6335227272727273, 0.6335227272727273, 0.6363636363636364, 0.6448863636363636, 0.6448863636363636, 0.6448863636363636, 0.6534090909090909, 0.6534090909090909, 0.6590909090909091, 0.6590909090909091, 0.6619318181818182, 0.6619318181818182, 0.6647727272727273, 0.6647727272727273, 0.6676136363636364, 0.6676136363636364, 0.6875, 0.6875, 0.6903409090909091, 0.6903409090909091, 0.6931818181818182, 0.6931818181818182, 0.6960227272727273, 0.6960227272727273, 0.7017045454545454, 0.7017045454545454, 0.7045454545454546, 0.7045454545454546, 0.7215909090909091, 0.7215909090909091, 0.7272727272727273, 0.7272727272727273, 0.7414772727272727, 0.7414772727272727, 0.7670454545454546, 0.7670454545454546, 0.78125, 0.78125, 0.7840909090909091, 0.7840909090909091, 0.7926136363636364, 0.7926136363636364, 0.7954545454545454, 0.8011363636363636, 0.8011363636363636, 0.8210227272727273, 0.8210227272727273, 0.8295454545454546, 0.8295454545454546, 0.8352272727272727, 0.8352272727272727, 0.84375, 0.84375, 0.8494318181818182, 0.8494318181818182, 0.8522727272727273, 0.8522727272727273, 0.8551136363636364, 0.8551136363636364, 0.8693181818181818, 0.8693181818181818, 0.875, 0.875, 0.8806818181818182, 0.8806818181818182, 0.8863636363636364, 0.8863636363636364, 0.8920454545454546, 0.8920454545454546, 0.8948863636363636, 0.8948863636363636, 0.90625, 0.90625, 0.9147727272727273, 0.9147727272727273, 0.9289772727272727, 0.9289772727272727, 0.9573863636363636, 0.9573863636363636, 0.9602272727272727, 0.9602272727272727, 0.96875, 0.96875, 0.9857954545454546, 0.9857954545454546, 0.9886363636363636, 0.9886363636363636, 0.9914772727272727, 0.9914772727272727, 0.9943181818181818, 0.9943181818181818, 1.0], \"y\": [0.0, 0.0015432098765432098, 0.030864197530864196, 0.030864197530864196, 0.06172839506172839, 0.06481481481481481, 0.08024691358024691, 0.08024691358024691, 0.13580246913580246, 0.13580246913580246, 0.19135802469135801, 0.19135802469135801, 0.19907407407407407, 0.19907407407407407, 0.2345679012345679, 0.2345679012345679, 0.23919753086419754, 0.23919753086419754, 0.27314814814814814, 0.2762345679012346, 0.28703703703703703, 0.28703703703703703, 0.29012345679012347, 0.29012345679012347, 0.29475308641975306, 0.29475308641975306, 0.2962962962962963, 0.2962962962962963, 0.2993827160493827, 0.2993827160493827, 0.3256172839506173, 0.3256172839506173, 0.33024691358024694, 0.33024691358024694, 0.3425925925925926, 0.3425925925925926, 0.3472222222222222, 0.3472222222222222, 0.35030864197530864, 0.35030864197530864, 0.36419753086419754, 0.36419753086419754, 0.38117283950617287, 0.38117283950617287, 0.3966049382716049, 0.3966049382716049, 0.39814814814814814, 0.39814814814814814, 0.404320987654321, 0.404320987654321, 0.4058641975308642, 0.4058641975308642, 0.4104938271604938, 0.4104938271604938, 0.41975308641975306, 0.41975308641975306, 0.41975308641975306, 0.4212962962962963, 0.4212962962962963, 0.42592592592592593, 0.42592592592592593, 0.4382716049382716, 0.4382716049382716, 0.4382716049382716, 0.4398148148148148, 0.4398148148148148, 0.44598765432098764, 0.44598765432098764, 0.44753086419753085, 0.4506172839506173, 0.4506172839506173, 0.46296296296296297, 0.46296296296296297, 0.4645061728395062, 0.4675925925925926, 0.47530864197530864, 0.47530864197530864, 0.4876543209876543, 0.4876543209876543, 0.48919753086419754, 0.48919753086419754, 0.5, 0.5, 0.5015432098765432, 0.5015432098765432, 0.5092592592592593, 0.5092592592592593, 0.5123456790123457, 0.5123456790123457, 0.5138888888888888, 0.5138888888888888, 0.5200617283950617, 0.5200617283950617, 0.5216049382716049, 0.5216049382716049, 0.5216049382716049, 0.529320987654321, 0.529320987654321, 0.5432098765432098, 0.5432098765432098, 0.5447530864197531, 0.5447530864197531, 0.5509259259259259, 0.5509259259259259, 0.5524691358024691, 0.5524691358024691, 0.5555555555555556, 0.5555555555555556, 0.5648148148148148, 0.5648148148148148, 0.5740740740740741, 0.5740740740740741, 0.5771604938271605, 0.5771604938271605, 0.5833333333333334, 0.5833333333333334, 0.595679012345679, 0.595679012345679, 0.5987654320987654, 0.5987654320987654, 0.6003086419753086, 0.6003086419753086, 0.6018518518518519, 0.6018518518518519, 0.6033950617283951, 0.6033950617283951, 0.6080246913580247, 0.6080246913580247, 0.6157407407407407, 0.6157407407407407, 0.6296296296296297, 0.6296296296296297, 0.6311728395061729, 0.6342592592592593, 0.6450617283950617, 0.6450617283950617, 0.6466049382716049, 0.6466049382716049, 0.6481481481481481, 0.6481481481481481, 0.6512345679012346, 0.654320987654321, 0.6620370370370371, 0.6620370370370371, 0.6635802469135802, 0.6635802469135802, 0.6666666666666666, 0.6666666666666666, 0.6682098765432098, 0.6682098765432098, 0.6697530864197531, 0.6697530864197531, 0.6728395061728395, 0.6728395061728395, 0.6759259259259259, 0.6759259259259259, 0.683641975308642, 0.683641975308642, 0.6851851851851852, 0.6851851851851852, 0.6882716049382716, 0.6882716049382716, 0.6898148148148148, 0.6898148148148148, 0.6959876543209876, 0.6959876543209876, 0.7052469135802469, 0.7052469135802469, 0.7052469135802469, 0.720679012345679, 0.720679012345679, 0.7222222222222222, 0.7222222222222222, 0.7237654320987654, 0.7237654320987654, 0.7253086419753086, 0.7253086419753086, 0.7268518518518519, 0.7268518518518519, 0.7314814814814815, 0.7314814814814815, 0.7330246913580247, 0.7330246913580247, 0.7376543209876543, 0.7376543209876543, 0.7391975308641975, 0.7391975308641975, 0.7422839506172839, 0.7422839506172839, 0.7438271604938271, 0.7438271604938271, 0.7546296296296297, 0.7546296296296297, 0.7577160493827161, 0.7577160493827161, 0.7608024691358025, 0.7608024691358025, 0.7685185185185185, 0.7685185185185185, 0.7716049382716049, 0.7716049382716049, 0.7762345679012346, 0.7762345679012346, 0.7762345679012346, 0.7808641975308642, 0.7808641975308642, 0.7839506172839507, 0.7839506172839507, 0.7854938271604939, 0.7854938271604939, 0.7870370370370371, 0.7870370370370371, 0.7885802469135802, 0.7885802469135802, 0.7916666666666666, 0.7916666666666666, 0.7916666666666666, 0.7962962962962963, 0.7962962962962963, 0.7978395061728395, 0.7978395061728395, 0.7993827160493827, 0.7993827160493827, 0.8009259259259259, 0.8009259259259259, 0.8040123456790124, 0.8040123456790124, 0.8070987654320988, 0.8070987654320988, 0.8117283950617284, 0.8117283950617284, 0.8132716049382716, 0.8132716049382716, 0.8148148148148148, 0.8179012345679012, 0.8209876543209876, 0.8209876543209876, 0.8225308641975309, 0.8225308641975309, 0.8240740740740741, 0.8287037037037037, 0.8287037037037037, 0.8317901234567902, 0.8317901234567902, 0.8333333333333334, 0.8333333333333334, 0.8364197530864198, 0.8364197530864198, 0.8364197530864198, 0.845679012345679, 0.845679012345679, 0.8487654320987654, 0.8487654320987654, 0.8503086419753086, 0.8503086419753086, 0.8518518518518519, 0.8549382716049383, 0.8611111111111112, 0.8611111111111112, 0.8641975308641975, 0.8672839506172839, 0.8672839506172839, 0.8688271604938271, 0.8688271604938271, 0.8719135802469136, 0.8719135802469136, 0.8734567901234568, 0.8734567901234568, 0.875, 0.875, 0.8765432098765432, 0.8765432098765432, 0.8796296296296297, 0.8827160493827161, 0.8827160493827161, 0.8842592592592593, 0.8842592592592593, 0.8858024691358025, 0.8858024691358025, 0.8873456790123457, 0.8873456790123457, 0.8919753086419753, 0.8919753086419753, 0.8935185185185185, 0.8935185185185185, 0.8950617283950617, 0.8950617283950617, 0.8950617283950617, 0.8966049382716049, 0.8966049382716049, 0.9012345679012346, 0.9012345679012346, 0.9012345679012346, 0.9027777777777778, 0.9074074074074074, 0.9074074074074074, 0.9104938271604939, 0.9104938271604939, 0.9120370370370371, 0.9120370370370371, 0.9166666666666666, 0.9166666666666666, 0.9182098765432098, 0.9182098765432098, 0.9197530864197531, 0.9197530864197531, 0.9212962962962963, 0.9212962962962963, 0.9243827160493827, 0.9243827160493827, 0.9274691358024691, 0.9274691358024691, 0.9320987654320988, 0.9320987654320988, 0.933641975308642, 0.933641975308642, 0.9398148148148148, 0.9398148148148148, 0.941358024691358, 0.941358024691358, 0.9429012345679012, 0.9429012345679012, 0.9444444444444444, 0.9444444444444444, 0.9459876543209876, 0.9459876543209876, 0.9490740740740741, 0.9490740740740741, 0.9506172839506173, 0.9506172839506173, 0.9521604938271605, 0.9521604938271605, 0.9521604938271605, 0.9537037037037037, 0.9537037037037037, 0.9552469135802469, 0.9552469135802469, 0.9567901234567902, 0.9567901234567902, 0.9583333333333334, 0.9583333333333334, 0.9598765432098766, 0.9598765432098766, 0.9614197530864198, 0.9614197530864198, 0.9660493827160493, 0.9660493827160493, 0.9691358024691358, 0.9691358024691358, 0.970679012345679, 0.970679012345679, 0.9722222222222222, 0.9722222222222222, 0.9753086419753086, 0.9753086419753086, 0.9768518518518519, 0.9768518518518519, 0.9799382716049383, 0.9799382716049383, 0.9814814814814815, 0.9814814814814815, 0.9845679012345679, 0.9845679012345679, 0.9861111111111112, 0.9861111111111112, 0.9876543209876543, 0.9876543209876543, 0.9891975308641975, 0.9891975308641975, 0.9907407407407407, 0.9907407407407407, 0.9922839506172839, 0.9922839506172839, 0.9953703703703703, 0.9953703703703703, 0.9969135802469136, 0.9969135802469136, 0.9984567901234568, 0.9984567901234568, 1.0, 1.0]}], \"layout\": {\"showlegend\": true, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"False Positive Rate\"}}, \"yaxis\": {\"title\": {\"text\": \"True Positive Rate\"}}}}, \"insights\": [], \"additionalGraphs\": [], \"alerts\": [], \"tabs\": []}, {\"type\": \"big_graph\", \"title\": \"Reference: Precision-Recall Curve\", \"size\": 1, \"details\": \"\", \"alertsPosition\": null, \"alertStats\": null, \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"lines\", \"name\": \"PR\", \"type\": \"scatter\", \"x\": [0.6462925851703407, 0.645937813440321, 0.6465863453815262, 0.6472361809045226, 0.647887323943662, 0.648539778449144, 0.6491935483870968, 0.649848637739657, 0.6505050505050505, 0.6511627906976745, 0.6518218623481782, 0.6524822695035462, 0.6531440162271805, 0.6538071065989848, 0.6544715447154471, 0.6551373346897253, 0.6558044806517311, 0.6564729867482161, 0.6571428571428571, 0.6578140960163432, 0.6584867075664622, 0.6591606960081884, 0.6598360655737705, 0.6605128205128206, 0.6611909650924025, 0.6618705035971223, 0.6625514403292181, 0.6632337796086509, 0.6628865979381443, 0.6635706914344686, 0.6642561983471075, 0.6639089968976215, 0.6635610766045549, 0.6632124352331606, 0.6628630705394191, 0.6635514018691588, 0.6642411642411642, 0.663891779396462, 0.6635416666666667, 0.6642335766423357, 0.6638830897703549, 0.6635318704284221, 0.6642259414225942, 0.6638743455497382, 0.6635220125786163, 0.6631689401888772, 0.6638655462184874, 0.6645636172450052, 0.6642105263157895, 0.6649104320337197, 0.6656118143459916, 0.6663146779303062, 0.6670190274841438, 0.6677248677248677, 0.6684322033898306, 0.6691410392364793, 0.6698513800424628, 0.6712765957446809, 0.670926517571885, 0.6705756929637526, 0.6712913553895411, 0.6720085470085471, 0.6727272727272727, 0.6723768736616702, 0.6730975348338692, 0.6738197424892703, 0.673469387755102, 0.6741935483870968, 0.673842841765339, 0.6745689655172413, 0.6752966558791802, 0.6760259179265659, 0.6767567567567567, 0.6764069264069265, 0.6771397616468039, 0.6778741865509761, 0.6786102062975027, 0.6793478260869565, 0.6789989118607181, 0.6797385620915033, 0.6804798255179935, 0.6812227074235808, 0.6819672131147541, 0.6816192560175055, 0.6823658269441402, 0.6831140350877193, 0.6838638858397366, 0.6835164835164835, 0.6842684268426843, 0.6850220264317181, 0.6857772877618522, 0.6854304635761589, 0.6861878453038674, 0.6858407079646017, 0.6866002214839424, 0.6873614190687362, 0.6881243063263041, 0.6888888888888889, 0.6896551724137931, 0.6893095768374164, 0.6900780379041248, 0.6908482142857143, 0.6916201117318436, 0.6923937360178971, 0.6920492721164614, 0.6928251121076233, 0.6943820224719102, 0.6940382452193475, 0.6948198198198198, 0.6956031567080045, 0.6952595936794582, 0.6949152542372882, 0.6957013574660633, 0.6964892412231031, 0.6972789115646258, 0.6980703745743473, 0.6988636363636364, 0.6985210466439136, 0.6981776765375854, 0.6989737742303307, 0.6986301369863014, 0.6994285714285714, 0.6990846681922197, 0.6987399770904925, 0.698394495412844, 0.6991963260619977, 0.6988505747126437, 0.7004608294930875, 0.7012687427912342, 0.7009237875288684, 0.7005780346820809, 0.7002314814814815, 0.7010428736964078, 0.7018561484918794, 0.70267131242741, 0.7023255813953488, 0.7031431897555297, 0.703962703962704, 0.7036172695449242, 0.7044392523364486, 0.7052631578947368, 0.7045720984759671, 0.704225352112676, 0.7038777908343126, 0.7047058823529412, 0.7055359246171967, 0.7063679245283019, 0.7072018890200709, 0.706855791962175, 0.7065088757396449, 0.7061611374407583, 0.7058125741399762, 0.7066508313539193, 0.7074910820451843, 0.7083333333333334, 0.7091775923718713, 0.7088305489260143, 0.7096774193548387, 0.7105263157894737, 0.7113772455089821, 0.7122302158273381, 0.7130852340936374, 0.7139423076923077, 0.7148014440433214, 0.7156626506024096, 0.7165259348612787, 0.717391304347826, 0.7182587666263603, 0.7179176755447942, 0.7187878787878788, 0.7184466019417476, 0.7193195625759417, 0.7201946472019465, 0.7198538367844093, 0.7207317073170731, 0.7203907203907204, 0.7212713936430318, 0.7221542227662179, 0.7230392156862745, 0.7226993865030675, 0.7235872235872236, 0.7232472324723247, 0.7241379310344828, 0.7237977805178791, 0.7246913580246913, 0.7243510506798516, 0.724009900990099, 0.7236679058240396, 0.7233250620347395, 0.724223602484472, 0.7238805970149254, 0.7235367372353674, 0.7244389027431422, 0.7253433208489388, 0.725, 0.7259073842302879, 0.7255639097744361, 0.7273869346733668, 0.7283018867924528, 0.7292191435768262, 0.7301387137452712, 0.7310606060606061, 0.7319848293299621, 0.7329113924050633, 0.7347715736040609, 0.735705209656925, 0.7366412213740458, 0.7375796178343949, 0.7372448979591837, 0.7381864623243933, 0.7378516624040921, 0.7387964148527529, 0.7384615384615385, 0.7381258023106547, 0.7377892030848329, 0.7387387387387387, 0.7396907216494846, 0.7393548387096774, 0.7403100775193798, 0.741267787839586, 0.7409326424870466, 0.7405966277561609, 0.7402597402597403, 0.7399219765929779, 0.7408854166666666, 0.741851368970013, 0.741514360313316, 0.742483660130719, 0.7418086500655308, 0.7437582128777924, 0.743421052631579, 0.7444005270092227, 0.7453825857519789, 0.7450462351387054, 0.746031746031746, 0.7470198675496689, 0.746684350132626, 0.7463479415670651, 0.7460106382978723, 0.7456724367509987, 0.7466666666666667, 0.7463284379172229, 0.7459893048128342, 0.7469879518072289, 0.7479892761394102, 0.7476510067114094, 0.7486559139784946, 0.7483176312247645, 0.7493261455525606, 0.7489878542510121, 0.7486486486486487, 0.7483085250338295, 0.7479674796747967, 0.7489823609226595, 0.748641304347826, 0.7482993197278912, 0.7479564032697548, 0.747612551159618, 0.7486338797814208, 0.7496580027359782, 0.7506849315068493, 0.7503429355281207, 0.7513736263736264, 0.7524071526822559, 0.7534435261707989, 0.7531034482758621, 0.7541436464088398, 0.7551867219917012, 0.7548476454293629, 0.7545076282940361, 0.7566063977746871, 0.7576601671309192, 0.7573221757322176, 0.7583798882681564, 0.7580419580419581, 0.7591036414565826, 0.758765778401122, 0.7584269662921348, 0.7580872011251758, 0.7591549295774648, 0.7588152327221439, 0.7598870056497176, 0.7609618104667609, 0.7620396600566572, 0.7617021276595745, 0.7627840909090909, 0.7649572649572649, 0.7660485021398002, 0.7657142857142857, 0.765379113018598, 0.7650429799426934, 0.7647058823529411, 0.7658045977011494, 0.7654676258992805, 0.7665706051873199, 0.7676767676767676, 0.7673410404624278, 0.7670043415340086, 0.7666666666666667, 0.7663280116110305, 0.7659883720930233, 0.7671033478893741, 0.7667638483965015, 0.7678832116788321, 0.7690058479532164, 0.7686676427525623, 0.7697947214076246, 0.7694566813509545, 0.7705882352941177, 0.7717231222385862, 0.7728613569321534, 0.7725258493353028, 0.772189349112426, 0.7718518518518519, 0.7729970326409495, 0.774145616641902, 0.7752976190476191, 0.7764530551415797, 0.7761194029850746, 0.7757847533632287, 0.7769461077844312, 0.7781109445277361, 0.7777777777777778, 0.7774436090225564, 0.7771084337349398, 0.7782805429864253, 0.7779456193353474, 0.7791225416036308, 0.7803030303030303, 0.7814871016691958, 0.7826747720364742, 0.7838660578386606, 0.7850609756097561, 0.7862595419847328, 0.7859327217125383, 0.7871362940275651, 0.7868098159509203, 0.7864823348694316, 0.7861538461538462, 0.7873651771956857, 0.7885802469135802, 0.7882534775888718, 0.7879256965944272, 0.7875968992248062, 0.7872670807453416, 0.7869362363919129, 0.7881619937694704, 0.7893915756630265, 0.7890625, 0.7902973395931142, 0.7915360501567398, 0.792778649921507, 0.7921259842519685, 0.7933753943217665, 0.7946287519747235, 0.7943037974683544, 0.7939778129952456, 0.7952380952380952, 0.7965023847376789, 0.7961783439490446, 0.79585326953748, 0.7955271565495208, 0.7952, 0.7964743589743589, 0.7961476725521669, 0.7958199356913184, 0.7971014492753623, 0.7967741935483871, 0.7961165048543689, 0.7974068071312804, 0.797077922077922, 0.7967479674796748, 0.7964169381107492, 0.797716150081566, 0.7990196078431373, 0.7986906710310966, 0.8, 0.7996715927750411, 0.7993421052631579, 0.7990115321252059, 0.7986798679867987, 0.7983471074380165, 0.7980132450331126, 0.7976782752902156, 0.7990033222591362, 0.7986688851913477, 0.7983333333333333, 0.7996661101836394, 0.7993311036789298, 0.8006700167504187, 0.8003355704697986, 0.8016806722689076, 0.8013468013468014, 0.8026981450252951, 0.8023648648648649, 0.8037225042301185, 0.8033898305084746, 0.8030560271646859, 0.8044217687074829, 0.8057921635434412, 0.8054607508532423, 0.8068376068376069, 0.8065068493150684, 0.8078902229845626, 0.8092783505154639, 0.810671256454389, 0.8100172711571675, 0.8114186851211073, 0.8110918544194108, 0.8107638888888888, 0.8121739130434783, 0.813588850174216, 0.8132635253054101, 0.8129370629370629, 0.8143607705779334, 0.8157894736842105, 0.8172231985940246, 0.8169014084507042, 0.818342151675485, 0.8180212014134276, 0.8176991150442477, 0.8191489361702128, 0.8206039076376554, 0.8202846975088968, 0.8199643493761141, 0.8196428571428571, 0.8211091234347049, 0.8225806451612904, 0.822262118491921, 0.8237410071942446, 0.8252252252252252, 0.8249097472924187, 0.8245931283905967, 0.8242753623188406, 0.8257713248638838, 0.8272727272727273, 0.8269581056466302, 0.8266423357664233, 0.8281535648994516, 0.8278388278388278, 0.8275229357798165, 0.8272058823529411, 0.8287292817679558, 0.8284132841328413, 0.8299445471349353, 0.8296296296296296, 0.8293135435992579, 0.828996282527881, 0.8286778398510242, 0.8283582089552238, 0.8280373831775701, 0.8295880149812734, 0.8292682926829268, 0.8308270676691729, 0.832391713747646, 0.8320754716981132, 0.833648393194707, 0.8352272727272727, 0.8349146110056926, 0.8365019011406845, 0.8380952380952381, 0.8377862595419847, 0.8393881453154876, 0.8390804597701149, 0.8387715930902111, 0.8384615384615385, 0.838150289017341, 0.8378378378378378, 0.8375241779497099, 0.8372093023255814, 0.8368932038834952, 0.8385214007782101, 0.8382066276803118, 0.837890625, 0.837573385518591, 0.8372549019607843, 0.8369351669941061, 0.8362919132149902, 0.8359683794466403, 0.8356435643564356, 0.8353174603174603, 0.8349900596421471, 0.8346613545816733, 0.8343313373253493, 0.834, 0.8356713426853707, 0.8353413654618473, 0.8370221327967807, 0.8387096774193549, 0.8383838383838383, 0.840080971659919, 0.8397565922920892, 0.8391038696537678, 0.8387755102040816, 0.8384458077709611, 0.8381147540983607, 0.837782340862423, 0.8395061728395061, 0.8412371134020619, 0.8409090909090909, 0.8405797101449275, 0.8402489626556017, 0.83991683991684, 0.8395833333333333, 0.8392484342379958, 0.8389121338912134, 0.8406708595387841, 0.842436974789916, 0.8442105263157895, 0.8438818565400844, 0.8456659619450317, 0.8453389830508474, 0.8450106157112527, 0.8446808510638298, 0.8443496801705757, 0.844017094017094, 0.8436830835117773, 0.8433476394849786, 0.8451612903225807, 0.8469827586206896, 0.8466522678185745, 0.8463203463203464, 0.8459869848156182, 0.8456521739130435, 0.8474945533769063, 0.8493449781659389, 0.849015317286652, 0.8486842105263158, 0.8524229074889867, 0.8520971302428256, 0.8517699115044248, 0.8514412416851441, 0.8533333333333334, 0.8530066815144766, 0.8526785714285714, 0.8523489932885906, 0.852017937219731, 0.8539325842696629, 0.8536036036036037, 0.8555304740406321, 0.8552036199095022, 0.8571428571428571, 0.8590909090909091, 0.8610478359908884, 0.860730593607306, 0.8604118993135011, 0.8600917431192661, 0.8620689655172413, 0.8640552995391705, 0.8637413394919169, 0.8634259259259259, 0.8631090487238979, 0.8627906976744186, 0.8624708624708625, 0.8644859813084113, 0.8665105386416861, 0.8661971830985915, 0.8682352941176471, 0.8679245283018868, 0.8699763593380615, 0.8696682464454977, 0.8738095238095238, 0.8735083532219571, 0.8729016786570744, 0.875, 0.8746987951807229, 0.87409200968523, 0.8737864077669902, 0.8734793187347932, 0.8731707317073171, 0.8728606356968215, 0.8725490196078431, 0.8722358722358723, 0.8719211822660099, 0.8716049382716049, 0.8737623762376238, 0.8734491315136477, 0.8731343283582089, 0.8728179551122195, 0.8725, 0.87468671679198, 0.8743718592964824, 0.8740554156171285, 0.8737373737373737, 0.8734177215189873, 0.8730964467005076, 0.8753180661577609, 0.8775510204081632, 0.8772378516624041, 0.8794871794871795, 0.8791773778920309, 0.8788659793814433, 0.8785529715762274, 0.8782383419689119, 0.8779220779220779, 0.8776041666666666, 0.8772845953002611, 0.8769633507853403, 0.8792650918635171, 0.881578947368421, 0.8839050131926122, 0.8862433862433863, 0.8859416445623343, 0.8856382978723404, 0.888, 0.8877005347593583, 0.8873994638069705, 0.8870967741935484, 0.8867924528301887, 0.8864864864864865, 0.8861788617886179, 0.8858695652173914, 0.888283378746594, 0.8879781420765027, 0.8876712328767123, 0.8873626373626373, 0.8870523415977961, 0.8895027624309392, 0.889196675900277, 0.8888888888888888, 0.8913649025069638, 0.8938547486033519, 0.8935574229691877, 0.8932584269662921, 0.8929577464788733, 0.8926553672316384, 0.8951841359773371, 0.8948863636363636, 0.8945868945868946, 0.8942857142857142, 0.8968481375358166, 0.896551724137931, 0.8962536023054755, 0.8959537572254336, 0.8956521739130435, 0.8953488372093024, 0.8950437317784257, 0.8947368421052632, 0.8944281524926686, 0.8941176470588236, 0.8938053097345132, 0.893491124260355, 0.8931750741839762, 0.8928571428571429, 0.8925373134328358, 0.8952095808383234, 0.8948948948948949, 0.8945783132530121, 0.8942598187311178, 0.8939393939393939, 0.8966565349544073, 0.8963414634146342, 0.8960244648318043, 0.8957055214723927, 0.8953846153846153, 0.8950617283950617, 0.8947368421052632, 0.8944099378881988, 0.8940809968847352, 0.89375, 0.896551724137931, 0.8962264150943396, 0.8958990536277602, 0.8952380952380953, 0.8949044585987261, 0.8945686900958466, 0.8942307692307693, 0.8938906752411575, 0.8935483870967742, 0.8964401294498382, 0.8961038961038961, 0.8990228013029316, 0.8986928104575164, 0.898360655737705, 0.8980263157894737, 0.8976897689768977, 0.8973509933774835, 0.8970099667774086, 0.8966666666666666, 0.8963210702341137, 0.8959731543624161, 0.8956228956228957, 0.8952702702702703, 0.8949152542372881, 0.8945578231292517, 0.89419795221843, 0.8938356164383562, 0.8969072164948454, 0.896551724137931, 0.8961937716262975, 0.8993055555555556, 0.9024390243902439, 0.9020979020979021, 0.9017543859649123, 0.9014084507042254, 0.901060070671378, 0.900709219858156, 0.900355871886121, 0.9, 0.899641577060932, 0.8992805755395683, 0.9025270758122743, 0.9057971014492754, 0.9054545454545454, 0.9051094890510949, 0.9047619047619048, 0.9044117647058824, 0.9040590405904059, 0.9037037037037037, 0.9104477611940298, 0.9101123595505618, 0.9097744360902256, 0.909433962264151, 0.9090909090909091, 0.908745247148289, 0.9083969465648855, 0.9080459770114943, 0.9076923076923077, 0.9073359073359073, 0.9069767441860465, 0.9066147859922179, 0.90625, 0.9058823529411765, 0.905511811023622, 0.9051383399209486, 0.9047619047619048, 0.9083665338645418, 0.912, 0.9116465863453815, 0.9112903225806451, 0.9149797570850202, 0.9146341463414634, 0.9142857142857143, 0.9139344262295082, 0.9135802469135802, 0.9132231404958677, 0.91701244813278, 0.9166666666666666, 0.9163179916317992, 0.9156118143459916, 0.9152542372881356, 0.9148936170212766, 0.9145299145299145, 0.9141630901287554, 0.9137931034482759, 0.9134199134199135, 0.9130434782608695, 0.9126637554585153, 0.9122807017543859, 0.9162995594713657, 0.915929203539823, 0.92, 0.9196428571428571, 0.9192825112107623, 0.918918918918919, 0.918552036199095, 0.9181818181818182, 0.9223744292237442, 0.9220183486238532, 0.9262672811059908, 0.9259259259259259, 0.9302325581395349, 0.9299065420560748, 0.9295774647887324, 0.9292452830188679, 0.9289099526066351, 0.9333333333333333, 0.9330143540669856, 0.9326923076923077, 0.9323671497584541, 0.9320388349514563, 0.9365853658536586, 0.9362745098039216, 0.9359605911330049, 0.9356435643564357, 0.9402985074626866, 0.94, 0.9396984924623115, 0.9444444444444444, 0.9441624365482234, 0.9438775510204082, 0.9487179487179487, 0.9481865284974094, 0.9476439790575916, 0.9473684210526315, 0.9470899470899471, 0.9468085106382979, 0.9518716577540107, 0.9516129032258065, 0.9513513513513514, 0.9510869565217391, 0.9508196721311475, 0.9505494505494505, 0.9502762430939227, 0.95, 0.9553072625698324, 0.9550561797752809, 0.9548022598870056, 0.9602272727272727, 0.96, 0.9597701149425287, 0.9595375722543352, 0.9590643274853801, 0.9588235294117647, 0.9585798816568047, 0.9583333333333334, 0.9580838323353293, 0.9578313253012049, 0.9636363636363636, 0.9634146341463414, 0.9631901840490797, 0.9629629629629629, 0.9627329192546584, 0.9625, 0.9622641509433962, 0.9620253164556962, 0.9617834394904459, 0.967948717948718, 0.967741935483871, 0.9675324675324676, 0.9671052631578947, 0.9668874172185431, 0.9666666666666667, 0.9664429530201343, 0.9662162162162162, 0.9659863945578231, 0.9657534246575342, 0.9655172413793104, 0.9652777777777778, 0.965034965034965, 0.9647887323943662, 0.9645390070921985, 0.9642857142857143, 0.9640287769784173, 0.9637681159420289, 0.9635036496350365, 0.9632352941176471, 0.9629629629629629, 0.9626865671641791, 0.9624060150375939, 0.9621212121212122, 0.9618320610687023, 0.9615384615384616, 0.9689922480620154, 0.96875, 0.968503937007874, 0.9682539682539683, 0.968, 0.967479674796748, 0.9672131147540983, 0.9669421487603306, 0.9666666666666667, 0.9663865546218487, 0.9661016949152542, 0.9658119658119658, 0.9655172413793104, 0.9652173913043478, 0.9649122807017544, 0.9646017699115044, 0.9642857142857143, 0.963963963963964, 0.9636363636363636, 0.963302752293578, 0.9629629629629629, 0.9626168224299065, 0.9622641509433962, 0.9619047619047619, 0.9611650485436893, 0.9607843137254902, 0.9603960396039604, 0.96, 0.9595959595959596, 0.9591836734693877, 0.9587628865979382, 0.9583333333333334, 0.9578947368421052, 0.9574468085106383, 0.956989247311828, 0.9565217391304348, 0.9560439560439561, 0.9555555555555556, 0.9550561797752809, 0.9545454545454546, 0.9540229885057471, 0.9651162790697675, 0.9647058823529412, 0.9642857142857143, 0.963855421686747, 0.9634146341463414, 0.9629629629629629, 0.9625, 0.9620253164556962, 0.9615384615384616, 0.9605263157894737, 0.96, 0.9594594594594594, 0.958904109589041, 0.9583333333333334, 0.9577464788732394, 0.9571428571428572, 0.9565217391304348, 0.9558823529411765, 0.9552238805970149, 0.9545454545454546, 0.9538461538461539, 0.953125, 0.9523809523809523, 0.9516129032258065, 0.9508196721311475, 0.95, 0.9491525423728814, 0.9482758620689655, 0.9473684210526315, 0.9464285714285714, 0.9454545454545454, 0.9444444444444444, 0.9433962264150944, 0.9423076923076923, 0.9411764705882353, 0.94, 0.9387755102040817, 0.9375, 0.9361702127659575, 0.9347826086956522, 0.9333333333333333, 0.9318181818181818, 0.9302325581395349, 0.9285714285714286, 0.926829268292683, 0.925, 0.9230769230769231, 0.9210526315789473, 0.918918918918919, 0.9166666666666666, 0.9142857142857143, 0.9117647058823529, 0.9090909090909091, 0.90625, 0.9032258064516129, 0.9333333333333333, 0.9310344827586207, 0.9285714285714286, 0.9259259259259259, 0.9230769230769231, 0.92, 0.9166666666666666, 0.9130434782608695, 0.9545454545454546, 0.95, 0.9473684210526315, 0.9444444444444444, 0.9411764705882353, 0.9375, 0.9333333333333333, 0.9285714285714286, 0.9230769230769231, 0.9166666666666666, 0.9090909090909091, 0.9, 0.8888888888888888, 0.875, 0.8571428571428571, 0.8333333333333334, 0.8, 0.75, 0.6666666666666666, 0.5, 0.0, 1.0], \"y\": [1.0, 0.9984496124031008, 0.9984496124031008, 0.9984496124031008, 0.9984496124031008, 0.9984496124031008, 0.9984496124031008, 0.9984496124031008, 0.9984496124031008, 0.9984496124031008, 0.9984496124031008, 0.9984496124031008, 0.9984496124031008, 0.9984496124031008, 0.9984496124031008, 0.9984496124031008, 0.9984496124031008, 0.9984496124031008, 0.9984496124031008, 0.9984496124031008, 0.9984496124031008, 0.9984496124031008, 0.9984496124031008, 0.9984496124031008, 0.9984496124031008, 0.9984496124031008, 0.9984496124031008, 0.9984496124031008, 0.9968992248062015, 0.9968992248062015, 0.9968992248062015, 0.9953488372093023, 0.993798449612403, 0.9922480620155039, 0.9906976744186047, 0.9906976744186047, 0.9906976744186047, 0.9891472868217054, 0.9875968992248062, 0.9875968992248062, 0.986046511627907, 0.9844961240310077, 0.9844961240310077, 0.9829457364341085, 0.9813953488372092, 0.9798449612403101, 0.9798449612403101, 0.9798449612403101, 0.9782945736434109, 0.9782945736434109, 0.9782945736434109, 0.9782945736434109, 0.9782945736434109, 0.9782945736434109, 0.9782945736434109, 0.9782945736434109, 0.9782945736434109, 0.9782945736434109, 0.9767441860465116, 0.9751937984496124, 0.9751937984496124, 0.9751937984496124, 0.9751937984496124, 0.9736434108527132, 0.9736434108527132, 0.9736434108527132, 0.9720930232558139, 0.9720930232558139, 0.9705426356589147, 0.9705426356589147, 0.9705426356589147, 0.9705426356589147, 0.9705426356589147, 0.9689922480620154, 0.9689922480620154, 0.9689922480620154, 0.9689922480620154, 0.9689922480620154, 0.9674418604651163, 0.9674418604651163, 0.9674418604651163, 0.9674418604651163, 0.9674418604651163, 0.9658914728682171, 0.9658914728682171, 0.9658914728682171, 0.9658914728682171, 0.9643410852713178, 0.9643410852713178, 0.9643410852713178, 0.9643410852713178, 0.9627906976744186, 0.9627906976744186, 0.9612403100775194, 0.9612403100775194, 0.9612403100775194, 0.9612403100775194, 0.9612403100775194, 0.9612403100775194, 0.9596899224806201, 0.9596899224806201, 0.9596899224806201, 0.9596899224806201, 0.9596899224806201, 0.958139534883721, 0.958139534883721, 0.958139534883721, 0.9565891472868217, 0.9565891472868217, 0.9565891472868217, 0.9550387596899225, 0.9534883720930233, 0.9534883720930233, 0.9534883720930233, 0.9534883720930233, 0.9534883720930233, 0.9534883720930233, 0.951937984496124, 0.9503875968992248, 0.9503875968992248, 0.9488372093023256, 0.9488372093023256, 0.9472868217054263, 0.9457364341085271, 0.9441860465116279, 0.9441860465116279, 0.9426356589147287, 0.9426356589147287, 0.9426356589147287, 0.9410852713178295, 0.9395348837209302, 0.937984496124031, 0.937984496124031, 0.937984496124031, 0.937984496124031, 0.9364341085271318, 0.9364341085271318, 0.9364341085271318, 0.9348837209302325, 0.9348837209302325, 0.9348837209302325, 0.931782945736434, 0.9302325581395349, 0.9286821705426357, 0.9286821705426357, 0.9286821705426357, 0.9286821705426357, 0.9286821705426357, 0.9271317829457364, 0.9255813953488372, 0.924031007751938, 0.9224806201550387, 0.9224806201550387, 0.9224806201550387, 0.9224806201550387, 0.9224806201550387, 0.9209302325581395, 0.9209302325581395, 0.9209302325581395, 0.9209302325581395, 0.9209302325581395, 0.9209302325581395, 0.9209302325581395, 0.9209302325581395, 0.9209302325581395, 0.9209302325581395, 0.9209302325581395, 0.9209302325581395, 0.9193798449612403, 0.9193798449612403, 0.9178294573643411, 0.9178294573643411, 0.9178294573643411, 0.9162790697674419, 0.9162790697674419, 0.9147286821705426, 0.9147286821705426, 0.9147286821705426, 0.9147286821705426, 0.9131782945736434, 0.9131782945736434, 0.9116279069767442, 0.9116279069767442, 0.9100775193798449, 0.9100775193798449, 0.9085271317829458, 0.9069767441860465, 0.9054263565891473, 0.9038759689922481, 0.9038759689922481, 0.9023255813953488, 0.9007751937984496, 0.9007751937984496, 0.9007751937984496, 0.8992248062015504, 0.8992248062015504, 0.8976744186046511, 0.8976744186046511, 0.8976744186046511, 0.8976744186046511, 0.8976744186046511, 0.8976744186046511, 0.8976744186046511, 0.8976744186046511, 0.8976744186046511, 0.8976744186046511, 0.8976744186046511, 0.8976744186046511, 0.896124031007752, 0.896124031007752, 0.8945736434108527, 0.8945736434108527, 0.8930232558139535, 0.8914728682170543, 0.889922480620155, 0.889922480620155, 0.889922480620155, 0.8883720930232558, 0.8883720930232558, 0.8883720930232558, 0.8868217054263566, 0.8852713178294573, 0.8837209302325582, 0.8821705426356589, 0.8821705426356589, 0.8821705426356589, 0.8806201550387597, 0.8806201550387597, 0.8775193798449612, 0.8775193798449612, 0.875968992248062, 0.875968992248062, 0.875968992248062, 0.8744186046511628, 0.8744186046511628, 0.8744186046511628, 0.8728682170542635, 0.8713178294573644, 0.8697674418604651, 0.8682170542635659, 0.8682170542635659, 0.8666666666666667, 0.8651162790697674, 0.8651162790697674, 0.8651162790697674, 0.8635658914728682, 0.8635658914728682, 0.862015503875969, 0.862015503875969, 0.8604651162790697, 0.8589147286821706, 0.8573643410852713, 0.8558139534883721, 0.8558139534883721, 0.8542635658914729, 0.8527131782945736, 0.8511627906976744, 0.8496124031007752, 0.8496124031007752, 0.8496124031007752, 0.8496124031007752, 0.8480620155038759, 0.8480620155038759, 0.8480620155038759, 0.8480620155038759, 0.8465116279069768, 0.8465116279069768, 0.8465116279069768, 0.8449612403100775, 0.8434108527131783, 0.8434108527131783, 0.8434108527131783, 0.8418604651162791, 0.8418604651162791, 0.8403100775193798, 0.8403100775193798, 0.8387596899224806, 0.8372093023255814, 0.8356589147286821, 0.8356589147286821, 0.834108527131783, 0.834108527131783, 0.834108527131783, 0.834108527131783, 0.8325581395348837, 0.8325581395348837, 0.8325581395348837, 0.8325581395348837, 0.8310077519379845, 0.8294573643410853, 0.827906976744186, 0.8263565891472868, 0.8263565891472868, 0.8248062015503876, 0.8248062015503876, 0.8248062015503876, 0.8232558139534883, 0.8217054263565892, 0.8201550387596899, 0.8186046511627907, 0.8170542635658915, 0.8170542635658915, 0.8155038759689922, 0.8155038759689922, 0.8155038759689922, 0.813953488372093, 0.813953488372093, 0.8124031007751938, 0.8124031007751938, 0.8124031007751938, 0.8124031007751938, 0.8108527131782945, 0.8093023255813954, 0.8077519379844961, 0.8077519379844961, 0.8077519379844961, 0.8077519379844961, 0.8077519379844961, 0.8062015503875969, 0.8046511627906977, 0.8046511627906977, 0.8046511627906977, 0.8031007751937984, 0.8015503875968992, 0.8, 0.8, 0.7984496124031008, 0.7984496124031008, 0.7984496124031008, 0.7984496124031008, 0.7984496124031008, 0.7984496124031008, 0.7984496124031008, 0.7984496124031008, 0.7968992248062016, 0.7968992248062016, 0.7953488372093023, 0.7937984496124031, 0.7922480620155039, 0.7922480620155039, 0.7922480620155039, 0.7906976744186046, 0.7891472868217054, 0.7875968992248062, 0.786046511627907, 0.7844961240310078, 0.7844961240310078, 0.7844961240310078, 0.7829457364341085, 0.7829457364341085, 0.7829457364341085, 0.7829457364341085, 0.7798449612403101, 0.7798449612403101, 0.7798449612403101, 0.7782945736434108, 0.7767441860465116, 0.7767441860465116, 0.7767441860465116, 0.7751937984496124, 0.7736434108527132, 0.772093023255814, 0.7705426356589147, 0.7705426356589147, 0.7689922480620155, 0.7674418604651163, 0.7674418604651163, 0.765891472868217, 0.7627906976744186, 0.7627906976744186, 0.7612403100775194, 0.7596899224806202, 0.7581395348837209, 0.7581395348837209, 0.7581395348837209, 0.7565891472868217, 0.7565891472868217, 0.7550387596899225, 0.7534883720930232, 0.751937984496124, 0.7503875968992249, 0.7488372093023256, 0.7472868217054264, 0.7457364341085271, 0.7457364341085271, 0.7441860465116279, 0.7426356589147287, 0.7426356589147287, 0.7410852713178294, 0.7410852713178294, 0.7395348837209302, 0.7395348837209302, 0.737984496124031, 0.737984496124031, 0.7364341085271318, 0.7364341085271318, 0.7348837209302326, 0.7333333333333333, 0.7333333333333333, 0.7333333333333333, 0.7317829457364341, 0.7317829457364341, 0.7302325581395349, 0.7302325581395349, 0.7302325581395349, 0.7302325581395349, 0.7271317829457364, 0.7271317829457364, 0.7255813953488373, 0.724031007751938, 0.724031007751938, 0.724031007751938, 0.7224806201550388, 0.7209302325581395, 0.7209302325581395, 0.7209302325581395, 0.7209302325581395, 0.7193798449612403, 0.7193798449612403, 0.7178294573643411, 0.7162790697674418, 0.7162790697674418, 0.7162790697674418, 0.7147286821705426, 0.7131782945736435, 0.7116279069767442, 0.7116279069767442, 0.7116279069767442, 0.710077519379845, 0.710077519379845, 0.710077519379845, 0.7085271317829457, 0.7069767441860465, 0.7054263565891473, 0.7054263565891473, 0.7054263565891473, 0.703875968992248, 0.7023255813953488, 0.7023255813953488, 0.7007751937984497, 0.6992248062015504, 0.6976744186046512, 0.6976744186046512, 0.6961240310077519, 0.6961240310077519, 0.6945736434108527, 0.6930232558139535, 0.6914728682170542, 0.689922480620155, 0.6883720930232559, 0.6868217054263566, 0.6868217054263566, 0.6852713178294574, 0.6852713178294574, 0.6852713178294574, 0.6837209302325581, 0.6837209302325581, 0.6837209302325581, 0.6821705426356589, 0.6821705426356589, 0.6821705426356589, 0.6806201550387597, 0.6806201550387597, 0.6790697674418604, 0.6775193798449612, 0.6759689922480621, 0.6744186046511628, 0.6728682170542636, 0.6713178294573643, 0.6697674418604651, 0.6682170542635659, 0.6682170542635659, 0.6666666666666666, 0.6651162790697674, 0.6635658914728683, 0.662015503875969, 0.6604651162790698, 0.6573643410852713, 0.6558139534883721, 0.6542635658914728, 0.6527131782945736, 0.6511627906976745, 0.6496124031007752, 0.648062015503876, 0.6465116279069767, 0.6465116279069767, 0.6449612403100775, 0.6449612403100775, 0.6449612403100775, 0.6434108527131783, 0.6434108527131783, 0.641860465116279, 0.6387596899224807, 0.6372093023255814, 0.6356589147286822, 0.6341085271317829, 0.6325581395348837, 0.6325581395348837, 0.6325581395348837, 0.6310077519379845, 0.6294573643410852, 0.627906976744186, 0.6263565891472869, 0.6248062015503876, 0.6232558139534884, 0.6217054263565891, 0.6217054263565891, 0.6217054263565891, 0.6217054263565891, 0.6201550387596899, 0.6201550387596899, 0.6186046511627907, 0.6170542635658914, 0.6155038759689923, 0.6139534883720931, 0.6124031007751938, 0.6108527131782946, 0.6093023255813953, 0.6093023255813953, 0.6093023255813953, 0.6077519379844961, 0.6062015503875969, 0.6046511627906976, 0.6031007751937985, 0.6031007751937985, 0.6031007751937985, 0.6015503875968993, 0.6, 0.6, 0.5984496124031008, 0.5968992248062015, 0.5953488372093023, 0.5953488372093023, 0.5937984496124031, 0.5922480620155038, 0.5906976744186047, 0.5891472868217055, 0.5891472868217055, 0.5875968992248062, 0.5875968992248062, 0.586046511627907, 0.586046511627907, 0.586046511627907, 0.586046511627907, 0.5844961240310077, 0.5829457364341085, 0.5813953488372093, 0.5813953488372093, 0.5813953488372093, 0.57984496124031, 0.5782945736434109, 0.5767441860465117, 0.5751937984496124, 0.5736434108527132, 0.5736434108527132, 0.5736434108527132, 0.5720930232558139, 0.5720930232558139, 0.5705426356589147, 0.5705426356589147, 0.5689922480620155, 0.5689922480620155, 0.5674418604651162, 0.5643410852713179, 0.5643410852713179, 0.5627906976744186, 0.5596899224806201, 0.5581395348837209, 0.5565891472868217, 0.5550387596899224, 0.5534883720930233, 0.5519379844961241, 0.5503875968992248, 0.5488372093023256, 0.5472868217054263, 0.5472868217054263, 0.5457364341085271, 0.5441860465116279, 0.5426356589147286, 0.5410852713178295, 0.5410852713178295, 0.5395348837209303, 0.537984496124031, 0.5364341085271318, 0.5348837209302325, 0.5333333333333333, 0.5333333333333333, 0.5333333333333333, 0.5317829457364341, 0.5317829457364341, 0.5302325581395348, 0.5286821705426357, 0.5271317829457365, 0.5255813953488372, 0.524031007751938, 0.5224806201550387, 0.5209302325581395, 0.5193798449612403, 0.5193798449612403, 0.5193798449612403, 0.5193798449612403, 0.5193798449612403, 0.517829457364341, 0.5162790697674419, 0.5162790697674419, 0.5147286821705427, 0.5131782945736434, 0.5116279069767442, 0.5100775193798449, 0.5085271317829457, 0.5069767441860465, 0.5054263565891473, 0.5054263565891473, 0.5038759689922481, 0.5023255813953489, 0.5007751937984496, 0.4992248062015504, 0.4992248062015504, 0.49767441860465117, 0.49612403100775193, 0.49612403100775193, 0.49612403100775193, 0.4945736434108527, 0.4930232558139535, 0.49147286821705427, 0.48992248062015503, 0.48992248062015503, 0.4883720930232558, 0.4868217054263566, 0.48527131782945737, 0.48527131782945737, 0.48372093023255813, 0.4821705426356589, 0.4806201550387597, 0.4790697674418605, 0.47751937984496123, 0.475968992248062, 0.4744186046511628, 0.4728682170542636, 0.47131782945736433, 0.4697674418604651, 0.4682170542635659, 0.4666666666666667, 0.46511627906976744, 0.4635658914728682, 0.4635658914728682, 0.462015503875969, 0.4604651162790698, 0.45891472868217054, 0.4573643410852713, 0.4573643410852713, 0.4558139534883721, 0.4542635658914729, 0.45271317829457364, 0.4511627906976744, 0.4496124031007752, 0.448062015503876, 0.44651162790697674, 0.4449612403100775, 0.4434108527131783, 0.4434108527131783, 0.4418604651162791, 0.44031007751937984, 0.4372093023255814, 0.4356589147286822, 0.43410852713178294, 0.4325581395348837, 0.4310077519379845, 0.4294573643410853, 0.4294573643410853, 0.42790697674418604, 0.42790697674418604, 0.4263565891472868, 0.4248062015503876, 0.4232558139534884, 0.42170542635658914, 0.4201550387596899, 0.4186046511627907, 0.4170542635658915, 0.41550387596899224, 0.413953488372093, 0.4124031007751938, 0.4108527131782946, 0.40930232558139534, 0.4077519379844961, 0.4062015503875969, 0.4046511627906977, 0.4046511627906977, 0.40310077519379844, 0.4015503875968992, 0.4015503875968992, 0.4015503875968992, 0.4, 0.3984496124031008, 0.39689922480620154, 0.3953488372093023, 0.3937984496124031, 0.3922480620155039, 0.39069767441860465, 0.3891472868217054, 0.3875968992248062, 0.3875968992248062, 0.3875968992248062, 0.386046511627907, 0.38449612403100775, 0.3829457364341085, 0.3813953488372093, 0.3798449612403101, 0.37829457364341085, 0.37829457364341085, 0.3767441860465116, 0.3751937984496124, 0.3736434108527132, 0.37209302325581395, 0.3705426356589147, 0.3689922480620155, 0.3674418604651163, 0.36589147286821705, 0.3643410852713178, 0.3627906976744186, 0.3612403100775194, 0.35968992248062015, 0.3581395348837209, 0.35658914728682173, 0.3550387596899225, 0.35348837209302325, 0.35348837209302325, 0.35348837209302325, 0.351937984496124, 0.35038759689922483, 0.35038759689922483, 0.3488372093023256, 0.34728682170542635, 0.3457364341085271, 0.34418604651162793, 0.3426356589147287, 0.3426356589147287, 0.34108527131782945, 0.3395348837209302, 0.3364341085271318, 0.33488372093023255, 0.3333333333333333, 0.33178294573643413, 0.3302325581395349, 0.32868217054263565, 0.3271317829457364, 0.32558139534883723, 0.324031007751938, 0.32248062015503876, 0.32248062015503876, 0.3209302325581395, 0.3209302325581395, 0.31937984496124033, 0.3178294573643411, 0.31627906976744186, 0.3147286821705426, 0.31317829457364343, 0.31317829457364343, 0.3116279069767442, 0.3116279069767442, 0.31007751937984496, 0.31007751937984496, 0.3085271317829457, 0.30697674418604654, 0.3054263565891473, 0.30387596899224806, 0.30387596899224806, 0.3023255813953488, 0.30077519379844964, 0.2992248062015504, 0.29767441860465116, 0.29767441860465116, 0.2961240310077519, 0.29457364341085274, 0.2930232558139535, 0.2930232558139535, 0.29147286821705426, 0.289922480620155, 0.289922480620155, 0.28837209302325584, 0.2868217054263566, 0.2868217054263566, 0.2837209302325581, 0.2806201550387597, 0.27906976744186046, 0.2775193798449612, 0.27596899224806204, 0.27596899224806204, 0.2744186046511628, 0.27286821705426356, 0.2713178294573643, 0.26976744186046514, 0.2682170542635659, 0.26666666666666666, 0.2651162790697674, 0.2651162790697674, 0.26356589147286824, 0.262015503875969, 0.262015503875969, 0.26046511627906976, 0.2589147286821705, 0.25736434108527134, 0.25426356589147286, 0.2527131782945736, 0.25116279069767444, 0.2496124031007752, 0.24806201550387597, 0.24651162790697675, 0.24651162790697675, 0.24496124031007752, 0.2434108527131783, 0.24186046511627907, 0.24031007751937986, 0.23875968992248062, 0.2372093023255814, 0.23565891472868217, 0.23410852713178296, 0.23410852713178296, 0.23255813953488372, 0.2310077519379845, 0.22790697674418606, 0.22635658914728682, 0.2248062015503876, 0.22325581395348837, 0.22170542635658916, 0.22015503875968992, 0.2186046511627907, 0.21705426356589147, 0.21550387596899226, 0.21395348837209302, 0.2124031007751938, 0.21085271317829457, 0.20930232558139536, 0.20775193798449612, 0.2062015503875969, 0.20465116279069767, 0.20310077519379846, 0.20155038759689922, 0.2, 0.19844961240310077, 0.19689922480620156, 0.19534883720930232, 0.1937984496124031, 0.1937984496124031, 0.19224806201550387, 0.19069767441860466, 0.18914728682170542, 0.1875968992248062, 0.18449612403100776, 0.18294573643410852, 0.1813953488372093, 0.17984496124031008, 0.17829457364341086, 0.17674418604651163, 0.17519379844961241, 0.17364341085271318, 0.17209302325581396, 0.17054263565891473, 0.16899224806201552, 0.16744186046511628, 0.16589147286821707, 0.16434108527131783, 0.16279069767441862, 0.16124031007751938, 0.15968992248062017, 0.15813953488372093, 0.15658914728682172, 0.15348837209302327, 0.15193798449612403, 0.15038759689922482, 0.14883720930232558, 0.14728682170542637, 0.14573643410852713, 0.14418604651162792, 0.14263565891472868, 0.14108527131782947, 0.13953488372093023, 0.13798449612403102, 0.13643410852713178, 0.13488372093023257, 0.13333333333333333, 0.13178294573643412, 0.13023255813953488, 0.12868217054263567, 0.12868217054263567, 0.12713178294573643, 0.12558139534883722, 0.12403100775193798, 0.12248062015503876, 0.12093023255813953, 0.11937984496124031, 0.11782945736434108, 0.11627906976744186, 0.11317829457364341, 0.11162790697674418, 0.11007751937984496, 0.10852713178294573, 0.10697674418604651, 0.10542635658914729, 0.10387596899224806, 0.10232558139534884, 0.10077519379844961, 0.09922480620155039, 0.09767441860465116, 0.09612403100775194, 0.09457364341085271, 0.09302325581395349, 0.09147286821705426, 0.08992248062015504, 0.08837209302325581, 0.08682170542635659, 0.08527131782945736, 0.08372093023255814, 0.08217054263565891, 0.08062015503875969, 0.07906976744186046, 0.07751937984496124, 0.07596899224806201, 0.07441860465116279, 0.07286821705426356, 0.07131782945736434, 0.06976744186046512, 0.06821705426356589, 0.06666666666666667, 0.06511627906976744, 0.06356589147286822, 0.06201550387596899, 0.06046511627906977, 0.05891472868217054, 0.05736434108527132, 0.05581395348837209, 0.05426356589147287, 0.05271317829457364, 0.05116279069767442, 0.04961240310077519, 0.04806201550387597, 0.046511627906976744, 0.04496124031007752, 0.043410852713178294, 0.043410852713178294, 0.04186046511627907, 0.040310077519379844, 0.03875968992248062, 0.037209302325581395, 0.03565891472868217, 0.034108527131782945, 0.03255813953488372, 0.03255813953488372, 0.02945736434108527, 0.027906976744186046, 0.02635658914728682, 0.024806201550387597, 0.023255813953488372, 0.021705426356589147, 0.020155038759689922, 0.018604651162790697, 0.017054263565891473, 0.015503875968992248, 0.013953488372093023, 0.012403100775193798, 0.010852713178294573, 0.009302325581395349, 0.007751937984496124, 0.006201550387596899, 0.004651162790697674, 0.0031007751937984496, 0.0015503875968992248, 0.0, 0.0]}], \"layout\": {\"showlegend\": true, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"Recall\"}}, \"yaxis\": {\"title\": {\"text\": \"Precision\"}}}}, \"insights\": [], \"additionalGraphs\": [], \"alerts\": [], \"tabs\": []}, {\"type\": \"big_graph\", \"title\": \"Current: Precision-Recall Curve\", \"size\": 1, \"details\": \"\", \"alertsPosition\": null, \"alertStats\": null, \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"lines\", \"name\": \"PR\", \"type\": \"scatter\", \"x\": [0.6492985971943888, 0.6489468405215647, 0.6495983935742972, 0.6492462311557788, 0.6498993963782697, 0.649546827794562, 0.6502016129032258, 0.649848637739657, 0.6494949494949495, 0.6501516683518705, 0.6508097165991903, 0.6514690982776089, 0.652129817444219, 0.6527918781725889, 0.6534552845528455, 0.6531027466937945, 0.6537678207739308, 0.654434250764526, 0.6551020408163265, 0.6547497446373851, 0.6554192229038854, 0.6550665301944729, 0.6557377049180327, 0.6564102564102564, 0.6570841889117043, 0.65775950668037, 0.6584362139917695, 0.659114315139032, 0.6597938144329897, 0.6604747162022704, 0.6611570247933884, 0.6618407445708376, 0.6614906832298136, 0.6621761658031088, 0.6628630705394191, 0.6635514018691588, 0.6642411642411642, 0.6649323621227887, 0.6645833333333333, 0.6652763295099061, 0.6659707724425887, 0.6666666666666666, 0.6663179916317992, 0.6659685863874345, 0.6666666666666666, 0.6673662119622246, 0.6680672268907563, 0.668769716088328, 0.6684210526315789, 0.6691253951527925, 0.6687763713080169, 0.6684266103484688, 0.6691331923890064, 0.6698412698412698, 0.6694915254237288, 0.6702014846235419, 0.6709129511677282, 0.6705632306057385, 0.6702127659574468, 0.670926517571885, 0.6716417910447762, 0.6712913553895411, 0.6720085470085471, 0.6727272727272727, 0.6723768736616702, 0.6730975348338692, 0.6738197424892703, 0.6745435016111708, 0.6752688172043011, 0.6759956942949408, 0.6756465517241379, 0.6752966558791802, 0.6760259179265659, 0.6756756756756757, 0.6753246753246753, 0.6749729144095341, 0.675704989154013, 0.6753528773072747, 0.6760869565217391, 0.676822633297062, 0.6764705882352942, 0.6772082878953108, 0.6779475982532751, 0.6786885245901639, 0.6783369803063457, 0.6790799561883899, 0.6798245614035088, 0.6794731064763996, 0.6802197802197802, 0.680968096809681, 0.6817180616740088, 0.681367144432194, 0.6821192052980133, 0.6828729281767956, 0.6836283185840708, 0.6843853820598007, 0.6851441241685144, 0.6859045504994451, 0.6866666666666666, 0.6863181312569522, 0.6878483835005574, 0.6886160714285714, 0.6882681564245811, 0.6890380313199105, 0.6898096304591266, 0.6905829596412556, 0.6902356902356902, 0.6910112359550562, 0.6906636670416197, 0.6903153153153153, 0.6910935738444194, 0.6918735891647856, 0.6926553672316385, 0.6934389140271493, 0.6942242355605889, 0.6938775510204082, 0.6946651532349603, 0.6954545454545454, 0.6962457337883959, 0.6970387243735763, 0.6978335233751425, 0.6986301369863014, 0.6994285714285714, 0.700228832951945, 0.7010309278350515, 0.7006880733944955, 0.7014925373134329, 0.7022988505747126, 0.7031070195627158, 0.7039170506912442, 0.7047289504036909, 0.7043879907621247, 0.7052023121387283, 0.7060185185185185, 0.7056778679026651, 0.7064965197215777, 0.7073170731707317, 0.708139534883721, 0.7089639115250291, 0.7097902097902098, 0.7106184364060677, 0.7102803738317757, 0.7099415204678362, 0.7096018735362998, 0.7092614302461899, 0.710093896713615, 0.7097532314923619, 0.7105882352941176, 0.7114252061248527, 0.7110849056603774, 0.7107438016528925, 0.710401891252955, 0.7112426035502959, 0.7105575326215896, 0.7114014251781473, 0.7110582639714625, 0.7107142857142857, 0.7115613825983313, 0.711217183770883, 0.7120669056152927, 0.7129186602870813, 0.7137724550898203, 0.7146282973621103, 0.7154861944777912, 0.7163461538461539, 0.717208182912154, 0.7168674698795181, 0.7177322074788902, 0.717391304347826, 0.7182587666263603, 0.7179176755447942, 0.7175757575757575, 0.7172330097087378, 0.7181044957472661, 0.7177615571776156, 0.7186358099878197, 0.7195121951219512, 0.7191697191697192, 0.7188264058679706, 0.7197062423500612, 0.7205882352941176, 0.7214723926380369, 0.7204433497536946, 0.720098643649815, 0.7227722772277227, 0.7236679058240396, 0.7233250620347395, 0.7229813664596273, 0.722636815920398, 0.7235367372353674, 0.7244389027431422, 0.7253433208489388, 0.72625, 0.7259073842302879, 0.7277289836888331, 0.7286432160804021, 0.7283018867924528, 0.7292191435768262, 0.7301387137452712, 0.7310606060606061, 0.7307206068268015, 0.7316455696202532, 0.7313054499366286, 0.7309644670050761, 0.7306226175349428, 0.7315521628498728, 0.732484076433121, 0.7334183673469388, 0.7343550446998723, 0.7352941176470589, 0.736235595390525, 0.735897435897436, 0.7368421052631579, 0.7377892030848329, 0.7374517374517374, 0.7384020618556701, 0.7393548387096774, 0.7403100775193798, 0.741267787839586, 0.7409326424870466, 0.74189364461738, 0.7428571428571429, 0.7438231469440832, 0.7431551499348109, 0.7428198433420365, 0.742483660130719, 0.743455497382199, 0.7431192660550459, 0.7440944881889764, 0.7437582128777924, 0.7447368421052631, 0.7457180500658761, 0.7467018469656992, 0.7476882430647291, 0.7486772486772487, 0.7496688741721854, 0.7506631299734748, 0.751660026560425, 0.7526595744680851, 0.7536617842876165, 0.7546666666666667, 0.7543391188251002, 0.7553475935828877, 0.7563587684069611, 0.7560321715817694, 0.7557046979865771, 0.7567204301075269, 0.756393001345895, 0.7574123989218329, 0.7567567567567568, 0.7564276048714479, 0.7560975609756098, 0.757123473541384, 0.7581521739130435, 0.7591836734693878, 0.7602179836512262, 0.7612551159618008, 0.7622950819672131, 0.7633378932968536, 0.7643835616438356, 0.7640603566529492, 0.7637362637362637, 0.7634112792297112, 0.7630853994490359, 0.7624309392265194, 0.7621023513139695, 0.7631578947368421, 0.7642163661581137, 0.7638888888888888, 0.7649513212795549, 0.766016713091922, 0.7656903765690377, 0.7653631284916201, 0.7664335664335664, 0.7661064425770309, 0.7657784011220197, 0.7654494382022472, 0.7651195499296765, 0.7647887323943662, 0.764456981664316, 0.7655367231638418, 0.7687943262411348, 0.7681365576102418, 0.7692307692307693, 0.7689015691868759, 0.77, 0.7693409742120344, 0.7704447632711621, 0.7694524495677233, 0.7691197691197691, 0.7702312138728323, 0.7698986975397974, 0.7710144927536232, 0.7706821480406386, 0.7703488372093024, 0.7696793002915452, 0.7693430656934307, 0.77046783625731, 0.7701317715959004, 0.7712609970674487, 0.7709251101321586, 0.7705882352941177, 0.7702503681885126, 0.7713864306784661, 0.7725258493353028, 0.772189349112426, 0.7718518518518519, 0.7729970326409495, 0.7726597325408618, 0.7723214285714286, 0.7746268656716417, 0.7742899850523169, 0.7754491017964071, 0.775112443778111, 0.7762762762762763, 0.7774436090225564, 0.7771084337349398, 0.7782805429864253, 0.7779456193353474, 0.7776096822995462, 0.7772727272727272, 0.7784522003034902, 0.7796352583586627, 0.7820121951219512, 0.7816793893129771, 0.7813455657492355, 0.7825421133231241, 0.7822085889570553, 0.783410138248848, 0.7830769230769231, 0.7842835130970724, 0.7839506172839507, 0.7851622874806801, 0.7863777089783281, 0.7875968992248062, 0.7872670807453416, 0.7869362363919129, 0.7881619937694704, 0.7878315132605305, 0.7875, 0.7871674491392802, 0.7884012539184952, 0.7896389324960753, 0.7921259842519685, 0.7917981072555205, 0.7914691943127962, 0.7911392405063291, 0.7923930269413629, 0.7936507936507936, 0.794912559618442, 0.7945859872611465, 0.7942583732057417, 0.7955271565495208, 0.7952, 0.7948717948717948, 0.7945425361155698, 0.7942122186495176, 0.7938808373590982, 0.7951612903225806, 0.7964458804523424, 0.7961165048543689, 0.7957860615883307, 0.797077922077922, 0.7967479674796748, 0.7964169381107492, 0.797716150081566, 0.7973856209150327, 0.7970540098199672, 0.7967213114754098, 0.7963875205254516, 0.7960526315789473, 0.7957166392092258, 0.7953795379537953, 0.7966942148760331, 0.7963576158940397, 0.7976782752902156, 0.7973421926910299, 0.7970049916805324, 0.7983333333333333, 0.7979966611018364, 0.7993311036789298, 0.7989949748743719, 0.7986577181208053, 0.7983193277310925, 0.7996632996632996, 0.8010118043844857, 0.8023648648648649, 0.8037225042301185, 0.8050847457627118, 0.8064516129032258, 0.8078231292517006, 0.807495741056218, 0.8088737201365188, 0.8085470085470086, 0.8082191780821918, 0.8078902229845626, 0.8092783505154639, 0.810671256454389, 0.8103448275862069, 0.8117443868739206, 0.8131487889273357, 0.8128249566724437, 0.8142361111111112, 0.8139130434782609, 0.8153310104529616, 0.8167539267015707, 0.8164335664335665, 0.8178633975481612, 0.8175438596491228, 0.8172231985940246, 0.8169014084507042, 0.8165784832451499, 0.8162544169611308, 0.815929203539823, 0.8156028368794326, 0.8152753108348135, 0.8149466192170819, 0.8146167557932263, 0.8160714285714286, 0.8189964157706093, 0.8186714542190305, 0.8183453237410072, 0.818018018018018, 0.8176895306859205, 0.8173598553345389, 0.8170289855072463, 0.8185117967332124, 0.8181818181818182, 0.8178506375227687, 0.8175182481751825, 0.8171846435100548, 0.8186813186813187, 0.818348623853211, 0.8198529411764706, 0.8195211786372008, 0.8191881918819188, 0.8207024029574861, 0.8222222222222222, 0.8218923933209648, 0.8234200743494424, 0.8230912476722533, 0.8227611940298507, 0.822429906542056, 0.8220973782771536, 0.8217636022514071, 0.8233082706766918, 0.8226415094339623, 0.8241965973534972, 0.8238636363636364, 0.8235294117647058, 0.8250950570342205, 0.8247619047619048, 0.8263358778625954, 0.8260038240917782, 0.8291746641074856, 0.8285163776493256, 0.8301158301158301, 0.8317214700193424, 0.8333333333333334, 0.8330097087378641, 0.8346303501945526, 0.834307992202729, 0.833984375, 0.8336594911937377, 0.8333333333333334, 0.8330058939096268, 0.8323471400394478, 0.8320158102766798, 0.8316831683168316, 0.8333333333333334, 0.8330019880715706, 0.8346613545816733, 0.8343313373253493, 0.836, 0.8356713426853707, 0.8353413654618473, 0.8350100603621731, 0.8346774193548387, 0.8343434343434344, 0.8340080971659919, 0.8336713995943205, 0.8329938900203666, 0.8326530612244898, 0.8343558282208589, 0.8360655737704918, 0.837782340862423, 0.8374485596707819, 0.8371134020618557, 0.8367768595041323, 0.8364389233954451, 0.8360995850622407, 0.8357588357588358, 0.8354166666666667, 0.8350730688935282, 0.8347280334728033, 0.8364779874213837, 0.8382352941176471, 0.8378947368421052, 0.8375527426160337, 0.8372093023255814, 0.836864406779661, 0.8365180467091295, 0.8382978723404255, 0.837953091684435, 0.8376068376068376, 0.8372591006423983, 0.8390557939914163, 0.8387096774193549, 0.8405172413793104, 0.8401727861771058, 0.841991341991342, 0.8438177874186551, 0.8434782608695652, 0.8453159041394336, 0.8449781659388647, 0.8446389496717724, 0.8464912280701754, 0.8483516483516483, 0.8502202643171806, 0.8498896247240618, 0.8495575221238938, 0.8492239467849224, 0.8488888888888889, 0.8485523385300668, 0.8482142857142857, 0.8478747203579419, 0.8475336322869955, 0.849438202247191, 0.8490990990990991, 0.8487584650112867, 0.8484162895927602, 0.8480725623582767, 0.85, 0.8496583143507973, 0.8493150684931506, 0.851258581235698, 0.8509174311926605, 0.8505747126436781, 0.8502304147465438, 0.8498845265588915, 0.8495370370370371, 0.8491879350348028, 0.8511627906976744, 0.8508158508158508, 0.8504672897196262, 0.8501170960187353, 0.8497652582159625, 0.8494117647058823, 0.8490566037735849, 0.851063829787234, 0.8507109004739336, 0.850356294536817, 0.8523809523809524, 0.8544152744630071, 0.854066985645933, 0.8561151079136691, 0.8581730769230769, 0.8578313253012049, 0.857487922705314, 0.8571428571428571, 0.8567961165048543, 0.8588807785888077, 0.8585365853658536, 0.8606356968215159, 0.8602941176470589, 0.85995085995086, 0.8596059113300493, 0.8592592592592593, 0.8589108910891089, 0.858560794044665, 0.8582089552238806, 0.85785536159601, 0.8575, 0.8596491228070176, 0.8592964824120602, 0.8589420654911839, 0.8585858585858586, 0.8582278481012658, 0.8578680203045685, 0.8600508905852418, 0.8644501278772379, 0.8641025641025641, 0.8663239074550129, 0.865979381443299, 0.8656330749354005, 0.8652849740932642, 0.8649350649350649, 0.8671875, 0.8668407310704961, 0.8691099476439791, 0.868766404199475, 0.868421052631579, 0.8707124010554089, 0.8703703703703703, 0.870026525198939, 0.8696808510638298, 0.8693333333333333, 0.8689839572192514, 0.871313672922252, 0.8709677419354839, 0.8733153638814016, 0.8729729729729729, 0.8726287262872628, 0.8722826086956522, 0.8719346049046321, 0.8715846994535519, 0.8712328767123287, 0.8708791208791209, 0.8732782369146006, 0.8756906077348067, 0.8753462603878116, 0.8777777777777778, 0.8774373259052924, 0.8770949720670391, 0.876750700280112, 0.8764044943820225, 0.8760563380281691, 0.8757062146892656, 0.8753541076487252, 0.875, 0.8774928774928775, 0.8771428571428571, 0.8767908309455588, 0.8764367816091954, 0.8760806916426513, 0.8757225433526011, 0.875, 0.8746355685131195, 0.8771929824561403, 0.8768328445747801, 0.8764705882352941, 0.8761061946902655, 0.8757396449704142, 0.8753709198813057, 0.875, 0.8746268656716418, 0.874251497005988, 0.8768768768768769, 0.8761329305135952, 0.8757575757575757, 0.878419452887538, 0.8780487804878049, 0.8776758409785933, 0.8773006134969326, 0.8769230769230769, 0.8796296296296297, 0.8792569659442725, 0.8819875776397516, 0.8875, 0.8871473354231975, 0.8867924528301887, 0.886435331230284, 0.8860759493670886, 0.8857142857142857, 0.8853503184713376, 0.8849840255591054, 0.8846153846153846, 0.8903225806451613, 0.889967637540453, 0.8896103896103896, 0.8892508143322475, 0.8921568627450981, 0.8950819672131147, 0.8947368421052632, 0.9006622516556292, 0.9036544850498339, 0.9033333333333333, 0.903010033444816, 0.9026845637583892, 0.9023569023569024, 0.902027027027027, 0.9016949152542373, 0.9078498293515358, 0.9075342465753424, 0.9072164948453608, 0.906896551724138, 0.9100346020761245, 0.9097222222222222, 0.916083916083916, 0.9157894736842105, 0.9154929577464789, 0.9151943462897526, 0.9148936170212766, 0.9181494661921709, 0.9178571428571428, 0.921146953405018, 0.920863309352518, 0.9205776173285198, 0.9202898550724637, 0.92, 0.9197080291970803, 0.9194139194139194, 0.9191176470588235, 0.9188191881918819, 0.9185185185185185, 0.9182156133828996, 0.9216417910447762, 0.9213483146067416, 0.9210526315789473, 0.9207547169811321, 0.9204545454545454, 0.9201520912547528, 0.9198473282442748, 0.9195402298850575, 0.9192307692307692, 0.918918918918919, 0.9186046511627907, 0.9182879377431906, 0.921875, 0.9215686274509803, 0.9212598425196851, 0.9209486166007905, 0.9206349206349206, 0.9203187250996016, 0.92, 0.9196787148594378, 0.9193548387096774, 0.9190283400809717, 0.9227642276422764, 0.926530612244898, 0.930327868852459, 0.9297520661157025, 0.9336099585062241, 0.9333333333333333, 0.9330543933054394, 0.9327731092436975, 0.9367088607594937, 0.9364406779661016, 0.9361702127659575, 0.9358974358974359, 0.9356223175965666, 0.9353448275862069, 0.935064935064935, 0.9347826086956522, 0.9344978165938864, 0.9385964912280702, 0.9383259911894273, 0.9380530973451328, 0.9377777777777778, 0.9419642857142857, 0.9417040358744395, 0.9414414414414415, 0.9411764705882353, 0.9409090909090909, 0.9406392694063926, 0.9403669724770642, 0.9400921658986175, 0.9398148148148148, 0.9395348837209302, 0.9392523364485982, 0.9389671361502347, 0.9386792452830188, 0.9383886255924171, 0.9380952380952381, 0.937799043062201, 0.9375, 0.9371980676328503, 0.941747572815534, 0.9414634146341463, 0.9411764705882353, 0.9458128078817734, 0.9455445544554455, 0.9502487562189055, 0.95, 0.949748743718593, 0.9494949494949495, 0.9543147208121827, 0.9540816326530612, 0.9538461538461539, 0.9587628865979382, 0.9637305699481865, 0.9635416666666666, 0.9633507853403142, 0.9631578947368421, 0.9629629629629629, 0.9627659574468085, 0.9625668449197861, 0.9623655913978495, 0.9619565217391305, 0.9617486338797814, 0.9615384615384616, 0.9613259668508287, 0.9611111111111111, 0.9608938547486033, 0.9606741573033708, 0.96045197740113, 0.9602272727272727, 0.96, 0.9597701149425287, 0.9595375722543352, 0.9593023255813954, 0.9590643274853801, 0.9588235294117647, 0.9585798816568047, 0.9583333333333334, 0.9580838323353293, 0.9578313253012049, 0.9575757575757575, 0.9573170731707317, 0.9570552147239264, 0.9567901234567902, 0.9627329192546584, 0.9625, 0.9622641509433962, 0.9620253164556962, 0.9681528662420382, 0.967948717948718, 0.967741935483871, 0.9675324675324676, 0.9673202614379085, 0.9671052631578947, 0.9668874172185431, 0.9666666666666667, 0.9664429530201343, 0.9662162162162162, 0.9659863945578231, 0.9657534246575342, 0.9655172413793104, 0.9652777777777778, 0.965034965034965, 0.9647887323943662, 0.9645390070921985, 0.9642857142857143, 0.9640287769784173, 0.9637681159420289, 0.9635036496350365, 0.9632352941176471, 0.9629629629629629, 0.9626865671641791, 0.9699248120300752, 0.9696969696969697, 0.9694656488549618, 0.9692307692307692, 0.9689922480620154, 0.96875, 0.9763779527559056, 0.9761904761904762, 0.976, 0.9758064516129032, 0.975609756097561, 0.9754098360655737, 0.9752066115702479, 0.975, 0.9747899159663865, 0.9745762711864406, 0.9743589743589743, 0.9741379310344828, 0.9739130434782609, 0.9736842105263158, 0.9734513274336283, 0.9732142857142857, 0.972972972972973, 0.9727272727272728, 0.9724770642201835, 0.9722222222222222, 0.9719626168224299, 0.9716981132075472, 0.9714285714285714, 0.9711538461538461, 0.970873786407767, 0.9705882352941176, 0.9702970297029703, 0.97, 0.9696969696969697, 0.9693877551020408, 0.9690721649484536, 0.96875, 0.968421052631579, 0.9680851063829787, 0.967741935483871, 0.967391304347826, 0.967032967032967, 0.9777777777777777, 0.9775280898876404, 0.9772727272727273, 0.9770114942528736, 0.9767441860465116, 0.9764705882352941, 0.9761904761904762, 0.9759036144578314, 0.975609756097561, 0.9753086419753086, 0.975, 0.9746835443037974, 0.9743589743589743, 0.974025974025974, 0.9736842105263158, 0.9733333333333334, 0.972972972972973, 0.9726027397260274, 0.9722222222222222, 0.971830985915493, 0.9714285714285714, 0.9710144927536232, 0.9705882352941176, 0.9701492537313433, 0.9696969696969697, 0.9692307692307692, 0.96875, 0.9682539682539683, 0.967741935483871, 0.9672131147540983, 0.9666666666666667, 0.9661016949152542, 0.9655172413793104, 0.9649122807017544, 0.9642857142857143, 0.9636363636363636, 0.9629629629629629, 0.9811320754716981, 0.9807692307692307, 0.9803921568627451, 0.98, 0.9795918367346939, 0.9791666666666666, 0.9787234042553191, 0.9782608695652174, 0.9777777777777777, 0.9772727272727273, 0.9767441860465116, 0.975609756097561, 0.975, 0.9743589743589743, 0.9736842105263158, 0.972972972972973, 0.9722222222222222, 0.9714285714285714, 0.9705882352941176, 0.9696969696969697, 0.96875, 0.967741935483871, 0.9666666666666667, 0.9655172413793104, 0.9642857142857143, 0.9629629629629629, 0.9615384615384616, 0.96, 0.9583333333333334, 0.9565217391304348, 0.9545454545454546, 0.9523809523809523, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0], \"y\": [1.0, 0.9984567901234568, 0.9984567901234568, 0.9969135802469136, 0.9969135802469136, 0.9953703703703703, 0.9953703703703703, 0.9938271604938271, 0.9922839506172839, 0.9922839506172839, 0.9922839506172839, 0.9922839506172839, 0.9922839506172839, 0.9922839506172839, 0.9922839506172839, 0.9907407407407407, 0.9907407407407407, 0.9907407407407407, 0.9907407407407407, 0.9891975308641975, 0.9891975308641975, 0.9876543209876543, 0.9876543209876543, 0.9876543209876543, 0.9876543209876543, 0.9876543209876543, 0.9876543209876543, 0.9876543209876543, 0.9876543209876543, 0.9876543209876543, 0.9876543209876543, 0.9876543209876543, 0.9861111111111112, 0.9861111111111112, 0.9861111111111112, 0.9861111111111112, 0.9861111111111112, 0.9861111111111112, 0.9845679012345679, 0.9845679012345679, 0.9845679012345679, 0.9845679012345679, 0.9830246913580247, 0.9814814814814815, 0.9814814814814815, 0.9814814814814815, 0.9814814814814815, 0.9814814814814815, 0.9799382716049383, 0.9799382716049383, 0.9783950617283951, 0.9768518518518519, 0.9768518518518519, 0.9768518518518519, 0.9753086419753086, 0.9753086419753086, 0.9753086419753086, 0.9737654320987654, 0.9722222222222222, 0.9722222222222222, 0.9722222222222222, 0.970679012345679, 0.970679012345679, 0.970679012345679, 0.9691358024691358, 0.9691358024691358, 0.9691358024691358, 0.9691358024691358, 0.9691358024691358, 0.9691358024691358, 0.9675925925925926, 0.9660493827160493, 0.9660493827160493, 0.9645061728395061, 0.9629629629629629, 0.9614197530864198, 0.9614197530864198, 0.9598765432098766, 0.9598765432098766, 0.9598765432098766, 0.9583333333333334, 0.9583333333333334, 0.9583333333333334, 0.9583333333333334, 0.9567901234567902, 0.9567901234567902, 0.9567901234567902, 0.9552469135802469, 0.9552469135802469, 0.9552469135802469, 0.9552469135802469, 0.9537037037037037, 0.9537037037037037, 0.9537037037037037, 0.9537037037037037, 0.9537037037037037, 0.9537037037037037, 0.9537037037037037, 0.9537037037037037, 0.9521604938271605, 0.9521604938271605, 0.9521604938271605, 0.9506172839506173, 0.9506172839506173, 0.9506172839506173, 0.9506172839506173, 0.9490740740740741, 0.9490740740740741, 0.9475308641975309, 0.9459876543209876, 0.9459876543209876, 0.9459876543209876, 0.9459876543209876, 0.9459876543209876, 0.9459876543209876, 0.9444444444444444, 0.9444444444444444, 0.9444444444444444, 0.9444444444444444, 0.9444444444444444, 0.9444444444444444, 0.9444444444444444, 0.9444444444444444, 0.9444444444444444, 0.9444444444444444, 0.9429012345679012, 0.9429012345679012, 0.9429012345679012, 0.9429012345679012, 0.9429012345679012, 0.9429012345679012, 0.941358024691358, 0.941358024691358, 0.941358024691358, 0.9398148148148148, 0.9398148148148148, 0.9398148148148148, 0.9398148148148148, 0.9398148148148148, 0.9398148148148148, 0.9398148148148148, 0.9382716049382716, 0.9367283950617284, 0.9351851851851852, 0.933641975308642, 0.933641975308642, 0.9320987654320988, 0.9320987654320988, 0.9320987654320988, 0.9305555555555556, 0.9290123456790124, 0.9274691358024691, 0.9274691358024691, 0.9243827160493827, 0.9243827160493827, 0.9228395061728395, 0.9212962962962963, 0.9212962962962963, 0.9197530864197531, 0.9197530864197531, 0.9197530864197531, 0.9197530864197531, 0.9197530864197531, 0.9197530864197531, 0.9197530864197531, 0.9197530864197531, 0.9182098765432098, 0.9182098765432098, 0.9166666666666666, 0.9166666666666666, 0.9151234567901234, 0.9135802469135802, 0.9120370370370371, 0.9120370370370371, 0.9104938271604939, 0.9104938271604939, 0.9104938271604939, 0.9089506172839507, 0.9074074074074074, 0.9074074074074074, 0.9074074074074074, 0.9074074074074074, 0.9027777777777778, 0.9012345679012346, 0.9012345679012346, 0.9012345679012346, 0.8996913580246914, 0.8981481481481481, 0.8966049382716049, 0.8966049382716049, 0.8966049382716049, 0.8966049382716049, 0.8966049382716049, 0.8950617283950617, 0.8950617283950617, 0.8950617283950617, 0.8935185185185185, 0.8935185185185185, 0.8935185185185185, 0.8935185185185185, 0.8919753086419753, 0.8919753086419753, 0.8904320987654321, 0.8888888888888888, 0.8873456790123457, 0.8873456790123457, 0.8873456790123457, 0.8873456790123457, 0.8873456790123457, 0.8873456790123457, 0.8873456790123457, 0.8858024691358025, 0.8858024691358025, 0.8858024691358025, 0.8842592592592593, 0.8842592592592593, 0.8842592592592593, 0.8842592592592593, 0.8842592592592593, 0.8827160493827161, 0.8827160493827161, 0.8827160493827161, 0.8827160493827161, 0.8796296296296297, 0.8780864197530864, 0.8765432098765432, 0.8765432098765432, 0.875, 0.875, 0.8734567901234568, 0.8734567901234568, 0.8734567901234568, 0.8734567901234568, 0.8734567901234568, 0.8734567901234568, 0.8734567901234568, 0.8734567901234568, 0.8734567901234568, 0.8734567901234568, 0.8734567901234568, 0.8734567901234568, 0.8719135802469136, 0.8719135802469136, 0.8719135802469136, 0.8703703703703703, 0.8688271604938271, 0.8688271604938271, 0.8672839506172839, 0.8672839506172839, 0.8641975308641975, 0.8626543209876543, 0.8611111111111112, 0.8611111111111112, 0.8611111111111112, 0.8611111111111112, 0.8611111111111112, 0.8611111111111112, 0.8611111111111112, 0.8611111111111112, 0.8611111111111112, 0.8595679012345679, 0.8580246913580247, 0.8564814814814815, 0.8549382716049383, 0.8518518518518519, 0.8503086419753086, 0.8503086419753086, 0.8503086419753086, 0.8487654320987654, 0.8487654320987654, 0.8487654320987654, 0.8472222222222222, 0.845679012345679, 0.845679012345679, 0.8441358024691358, 0.8425925925925926, 0.8410493827160493, 0.8395061728395061, 0.8379629629629629, 0.8364197530864198, 0.8364197530864198, 0.8364197530864198, 0.8333333333333334, 0.8333333333333334, 0.8317901234567902, 0.8317901234567902, 0.8287037037037037, 0.8287037037037037, 0.8240740740740741, 0.8225308641975309, 0.8225308641975309, 0.8209876543209876, 0.8209876543209876, 0.8194444444444444, 0.8179012345679012, 0.8148148148148148, 0.8132716049382716, 0.8132716049382716, 0.8117283950617284, 0.8117283950617284, 0.8101851851851852, 0.808641975308642, 0.8070987654320988, 0.8070987654320988, 0.8070987654320988, 0.8055555555555556, 0.8040123456790124, 0.8040123456790124, 0.8024691358024691, 0.8009259259259259, 0.8009259259259259, 0.7993827160493827, 0.7993827160493827, 0.7978395061728395, 0.7978395061728395, 0.7978395061728395, 0.7962962962962963, 0.7962962962962963, 0.7947530864197531, 0.7932098765432098, 0.7916666666666666, 0.7916666666666666, 0.7916666666666666, 0.7916666666666666, 0.7901234567901234, 0.7885802469135802, 0.7885802469135802, 0.7870370370370371, 0.7870370370370371, 0.7854938271604939, 0.7854938271604939, 0.7839506172839507, 0.7839506172839507, 0.7839506172839507, 0.7839506172839507, 0.7824074074074074, 0.7808641975308642, 0.7808641975308642, 0.779320987654321, 0.7777777777777778, 0.7762345679012346, 0.7762345679012346, 0.7762345679012346, 0.7762345679012346, 0.7746913580246914, 0.7731481481481481, 0.7716049382716049, 0.7716049382716049, 0.7716049382716049, 0.7716049382716049, 0.7700617283950617, 0.7685185185185185, 0.7685185185185185, 0.7669753086419753, 0.7654320987654321, 0.7638888888888888, 0.7623456790123457, 0.7608024691358025, 0.7608024691358025, 0.7608024691358025, 0.7592592592592593, 0.7577160493827161, 0.7577160493827161, 0.7561728395061729, 0.7546296296296297, 0.7546296296296297, 0.7530864197530864, 0.7515432098765432, 0.75, 0.7484567901234568, 0.7469135802469136, 0.7453703703703703, 0.7438271604938271, 0.7438271604938271, 0.7422839506172839, 0.7422839506172839, 0.7407407407407407, 0.7391975308641975, 0.7391975308641975, 0.7376543209876543, 0.7376543209876543, 0.7361111111111112, 0.7345679012345679, 0.7330246913580247, 0.7330246913580247, 0.7330246913580247, 0.7330246913580247, 0.7330246913580247, 0.7330246913580247, 0.7330246913580247, 0.7330246913580247, 0.7314814814814815, 0.7314814814814815, 0.7299382716049383, 0.7283950617283951, 0.7268518518518519, 0.7268518518518519, 0.7268518518518519, 0.7253086419753086, 0.7253086419753086, 0.7253086419753086, 0.7237654320987654, 0.7237654320987654, 0.7222222222222222, 0.7222222222222222, 0.7222222222222222, 0.720679012345679, 0.720679012345679, 0.7191358024691358, 0.7175925925925926, 0.7160493827160493, 0.7145061728395061, 0.7129629629629629, 0.7114197530864198, 0.7098765432098766, 0.7083333333333334, 0.7067901234567902, 0.7052469135802469, 0.7052469135802469, 0.7052469135802469, 0.7037037037037037, 0.7021604938271605, 0.7006172839506173, 0.6990740740740741, 0.6975308641975309, 0.6959876543209876, 0.6959876543209876, 0.6944444444444444, 0.6929012345679012, 0.691358024691358, 0.6898148148148148, 0.6898148148148148, 0.6882716049382716, 0.6882716049382716, 0.6867283950617284, 0.6851851851851852, 0.6851851851851852, 0.6851851851851852, 0.683641975308642, 0.683641975308642, 0.6820987654320988, 0.6805555555555556, 0.6790123456790124, 0.6774691358024691, 0.6759259259259259, 0.6759259259259259, 0.6728395061728395, 0.6728395061728395, 0.6712962962962963, 0.6697530864197531, 0.6697530864197531, 0.6682098765432098, 0.6682098765432098, 0.6666666666666666, 0.6666666666666666, 0.6635802469135802, 0.6635802469135802, 0.6635802469135802, 0.6635802469135802, 0.6620370370370371, 0.6620370370370371, 0.6604938271604939, 0.6589506172839507, 0.6574074074074074, 0.6558641975308642, 0.654320987654321, 0.6512345679012346, 0.6496913580246914, 0.6481481481481481, 0.6481481481481481, 0.6466049382716049, 0.6466049382716049, 0.6450617283950617, 0.6450617283950617, 0.6435185185185185, 0.6419753086419753, 0.6404320987654321, 0.6388888888888888, 0.6373456790123457, 0.6358024691358025, 0.6342592592592593, 0.6311728395061729, 0.6296296296296297, 0.6296296296296297, 0.6296296296296297, 0.6296296296296297, 0.6280864197530864, 0.6265432098765432, 0.625, 0.6234567901234568, 0.6219135802469136, 0.6203703703703703, 0.6188271604938271, 0.6172839506172839, 0.6157407407407407, 0.6157407407407407, 0.6157407407407407, 0.6141975308641975, 0.6126543209876543, 0.6111111111111112, 0.6095679012345679, 0.6080246913580247, 0.6080246913580247, 0.6064814814814815, 0.6049382716049383, 0.6033950617283951, 0.6033950617283951, 0.6018518518518519, 0.6018518518518519, 0.6003086419753086, 0.6003086419753086, 0.6003086419753086, 0.5987654320987654, 0.5987654320987654, 0.5972222222222222, 0.595679012345679, 0.595679012345679, 0.595679012345679, 0.595679012345679, 0.5941358024691358, 0.5925925925925926, 0.5910493827160493, 0.5895061728395061, 0.5879629629629629, 0.5864197530864198, 0.5848765432098766, 0.5833333333333334, 0.5833333333333334, 0.5817901234567902, 0.5802469135802469, 0.5787037037037037, 0.5771604938271605, 0.5771604938271605, 0.5756172839506173, 0.5740740740740741, 0.5740740740740741, 0.5725308641975309, 0.5709876543209876, 0.5694444444444444, 0.5679012345679012, 0.566358024691358, 0.5648148148148148, 0.5648148148148148, 0.5632716049382716, 0.5617283950617284, 0.5601851851851852, 0.558641975308642, 0.5570987654320988, 0.5555555555555556, 0.5555555555555556, 0.5540123456790124, 0.5524691358024691, 0.5524691358024691, 0.5524691358024691, 0.5509259259259259, 0.5509259259259259, 0.5509259259259259, 0.5493827160493827, 0.5478395061728395, 0.5462962962962963, 0.5447530864197531, 0.5447530864197531, 0.5432098765432098, 0.5432098765432098, 0.5416666666666666, 0.5401234567901234, 0.5385802469135802, 0.5370370370370371, 0.5354938271604939, 0.5339506172839507, 0.5324074074074074, 0.5308641975308642, 0.529320987654321, 0.529320987654321, 0.5277777777777778, 0.5262345679012346, 0.5246913580246914, 0.5231481481481481, 0.5216049382716049, 0.5216049382716049, 0.5216049382716049, 0.5200617283950617, 0.5200617283950617, 0.5185185185185185, 0.5169753086419753, 0.5154320987654321, 0.5138888888888888, 0.5138888888888888, 0.5123456790123457, 0.5123456790123457, 0.5108024691358025, 0.5092592592592593, 0.5092592592592593, 0.5077160493827161, 0.5061728395061729, 0.5046296296296297, 0.5030864197530864, 0.5015432098765432, 0.5015432098765432, 0.5, 0.5, 0.4984567901234568, 0.49691358024691357, 0.49537037037037035, 0.49382716049382713, 0.49228395061728397, 0.49074074074074076, 0.48919753086419754, 0.48919753086419754, 0.48919753086419754, 0.4876543209876543, 0.4876543209876543, 0.4861111111111111, 0.4845679012345679, 0.48302469135802467, 0.48148148148148145, 0.4799382716049383, 0.4783950617283951, 0.47685185185185186, 0.47530864197530864, 0.47530864197530864, 0.4737654320987654, 0.4722222222222222, 0.470679012345679, 0.4691358024691358, 0.4675925925925926, 0.4645061728395062, 0.46296296296296297, 0.46296296296296297, 0.46141975308641975, 0.45987654320987653, 0.4583333333333333, 0.4567901234567901, 0.45524691358024694, 0.4537037037037037, 0.4521604938271605, 0.4506172839506173, 0.4506172839506173, 0.44753086419753085, 0.44598765432098764, 0.44598765432098764, 0.4444444444444444, 0.44290123456790126, 0.44135802469135804, 0.4398148148148148, 0.4398148148148148, 0.4382716049382716, 0.4382716049382716, 0.4382716049382716, 0.4367283950617284, 0.4351851851851852, 0.43364197530864196, 0.43209876543209874, 0.4305555555555556, 0.42901234567901236, 0.42746913580246915, 0.42592592592592593, 0.42592592592592593, 0.4243827160493827, 0.4228395061728395, 0.4212962962962963, 0.4212962962962963, 0.4212962962962963, 0.41975308641975306, 0.41975308641975306, 0.41975308641975306, 0.4182098765432099, 0.4166666666666667, 0.41512345679012347, 0.41358024691358025, 0.41203703703703703, 0.4104938271604938, 0.4104938271604938, 0.4089506172839506, 0.4074074074074074, 0.4058641975308642, 0.4058641975308642, 0.404320987654321, 0.404320987654321, 0.4027777777777778, 0.4012345679012346, 0.39969135802469136, 0.39814814814814814, 0.39814814814814814, 0.3966049382716049, 0.3966049382716049, 0.3950617283950617, 0.39351851851851855, 0.39197530864197533, 0.3904320987654321, 0.3888888888888889, 0.3873456790123457, 0.38580246913580246, 0.38425925925925924, 0.38271604938271603, 0.38117283950617287, 0.38117283950617287, 0.37962962962962965, 0.37808641975308643, 0.3765432098765432, 0.375, 0.3734567901234568, 0.37191358024691357, 0.37037037037037035, 0.36882716049382713, 0.36728395061728397, 0.36574074074074076, 0.36419753086419754, 0.36419753086419754, 0.3626543209876543, 0.3611111111111111, 0.3595679012345679, 0.35802469135802467, 0.35648148148148145, 0.3549382716049383, 0.3533950617283951, 0.35185185185185186, 0.35030864197530864, 0.35030864197530864, 0.35030864197530864, 0.35030864197530864, 0.3472222222222222, 0.3472222222222222, 0.345679012345679, 0.3441358024691358, 0.3425925925925926, 0.3425925925925926, 0.3410493827160494, 0.3395061728395062, 0.33796296296296297, 0.33641975308641975, 0.33487654320987653, 0.3333333333333333, 0.3317901234567901, 0.33024691358024694, 0.33024691358024694, 0.3287037037037037, 0.3271604938271605, 0.3256172839506173, 0.3256172839506173, 0.32407407407407407, 0.32253086419753085, 0.32098765432098764, 0.3194444444444444, 0.31790123456790126, 0.31635802469135804, 0.3148148148148148, 0.3132716049382716, 0.3117283950617284, 0.3101851851851852, 0.30864197530864196, 0.30709876543209874, 0.3055555555555556, 0.30401234567901236, 0.30246913580246915, 0.30092592592592593, 0.2993827160493827, 0.2993827160493827, 0.2978395061728395, 0.2962962962962963, 0.2962962962962963, 0.29475308641975306, 0.29475308641975306, 0.2932098765432099, 0.2916666666666667, 0.29012345679012347, 0.29012345679012347, 0.28858024691358025, 0.28703703703703703, 0.28703703703703703, 0.28703703703703703, 0.2854938271604938, 0.2839506172839506, 0.2824074074074074, 0.2808641975308642, 0.279320987654321, 0.2777777777777778, 0.2762345679012346, 0.27314814814814814, 0.2716049382716049, 0.2700617283950617, 0.26851851851851855, 0.26697530864197533, 0.2654320987654321, 0.2638888888888889, 0.2623456790123457, 0.26080246913580246, 0.25925925925925924, 0.25771604938271603, 0.25617283950617287, 0.25462962962962965, 0.25308641975308643, 0.2515432098765432, 0.25, 0.24845679012345678, 0.24691358024691357, 0.24537037037037038, 0.24382716049382716, 0.24228395061728394, 0.24074074074074073, 0.23919753086419754, 0.23919753086419754, 0.23765432098765432, 0.2361111111111111, 0.2345679012345679, 0.2345679012345679, 0.2330246913580247, 0.23148148148148148, 0.22993827160493827, 0.22839506172839505, 0.22685185185185186, 0.22530864197530864, 0.22376543209876543, 0.2222222222222222, 0.22067901234567902, 0.2191358024691358, 0.2175925925925926, 0.21604938271604937, 0.21450617283950618, 0.21296296296296297, 0.21141975308641975, 0.20987654320987653, 0.20833333333333334, 0.20679012345679013, 0.2052469135802469, 0.2037037037037037, 0.2021604938271605, 0.2006172839506173, 0.19907407407407407, 0.19907407407407407, 0.19753086419753085, 0.19598765432098766, 0.19444444444444445, 0.19290123456790123, 0.19135802469135801, 0.19135802469135801, 0.18981481481481483, 0.1882716049382716, 0.1867283950617284, 0.18518518518518517, 0.18364197530864199, 0.18209876543209877, 0.18055555555555555, 0.17901234567901234, 0.17746913580246915, 0.17592592592592593, 0.1743827160493827, 0.1728395061728395, 0.1712962962962963, 0.1697530864197531, 0.16820987654320987, 0.16666666666666666, 0.16512345679012347, 0.16358024691358025, 0.16203703703703703, 0.16049382716049382, 0.15895061728395063, 0.1574074074074074, 0.1558641975308642, 0.15432098765432098, 0.1527777777777778, 0.15123456790123457, 0.14969135802469136, 0.14814814814814814, 0.14660493827160495, 0.14506172839506173, 0.14351851851851852, 0.1419753086419753, 0.1404320987654321, 0.1388888888888889, 0.13734567901234568, 0.13580246913580246, 0.13580246913580246, 0.13425925925925927, 0.13271604938271606, 0.13117283950617284, 0.12962962962962962, 0.12808641975308643, 0.12654320987654322, 0.125, 0.12345679012345678, 0.12191358024691358, 0.12037037037037036, 0.11882716049382716, 0.11728395061728394, 0.11574074074074074, 0.11419753086419752, 0.11265432098765432, 0.1111111111111111, 0.1095679012345679, 0.10802469135802469, 0.10648148148148148, 0.10493827160493827, 0.10339506172839506, 0.10185185185185185, 0.10030864197530864, 0.09876543209876543, 0.09722222222222222, 0.09567901234567901, 0.0941358024691358, 0.09259259259259259, 0.09104938271604938, 0.08950617283950617, 0.08796296296296297, 0.08641975308641975, 0.08487654320987655, 0.08333333333333333, 0.08179012345679013, 0.08024691358024691, 0.08024691358024691, 0.0787037037037037, 0.07716049382716049, 0.07561728395061729, 0.07407407407407407, 0.07253086419753087, 0.07098765432098765, 0.06944444444444445, 0.06790123456790123, 0.06635802469135803, 0.06481481481481481, 0.06172839506172839, 0.06018518518518518, 0.05864197530864197, 0.05709876543209876, 0.05555555555555555, 0.05401234567901234, 0.05246913580246913, 0.05092592592592592, 0.04938271604938271, 0.047839506172839504, 0.046296296296296294, 0.044753086419753084, 0.043209876543209874, 0.041666666666666664, 0.040123456790123455, 0.038580246913580245, 0.037037037037037035, 0.035493827160493825, 0.033950617283950615, 0.032407407407407406, 0.030864197530864196, 0.030864197530864196, 0.029320987654320986, 0.027777777777777776, 0.026234567901234566, 0.024691358024691357, 0.023148148148148147, 0.021604938271604937, 0.020061728395061727, 0.018518518518518517, 0.016975308641975308, 0.015432098765432098, 0.013888888888888888, 0.012345679012345678, 0.010802469135802469, 0.009259259259259259, 0.007716049382716049, 0.006172839506172839, 0.004629629629629629, 0.0030864197530864196, 0.0015432098765432098, 0.0]}], \"layout\": {\"showlegend\": true, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"Recall\"}}, \"yaxis\": {\"title\": {\"text\": \"Precision\"}}}}, \"insights\": [], \"additionalGraphs\": [], \"alerts\": [], \"tabs\": []}, {\"type\": \"big_table\", \"title\": \"Reference: Precision-Recall Table\", \"size\": 1, \"details\": \"\", \"alertsPosition\": null, \"alertStats\": null, \"params\": {\"rowsPerPage\": 21, \"columns\": [{\"title\": \"Top(%)\", \"field\": \"f1\", \"sort\": \"asc\"}, {\"title\": \"Count\", \"field\": \"f2\"}, {\"title\": \"Prob\", \"field\": \"f3\"}, {\"title\": \"TP\", \"field\": \"f4\"}, {\"title\": \"FP\", \"field\": \"f5\"}, {\"title\": \"Precision\", \"field\": \"f6\"}, {\"title\": \"Recall\", \"field\": \"f7\"}], \"data\": [{\"f1\": 5.0, \"f2\": 50, \"f3\": 0.94, \"f4\": 47, \"f5\": 3, \"f6\": 94.0, \"f7\": 7.3}, {\"f1\": 10.0, \"f2\": 100, \"f3\": 0.91, \"f4\": 96, \"f5\": 4, \"f6\": 96.0, \"f7\": 14.9}, {\"f1\": 15.0, \"f2\": 150, \"f3\": 0.89, \"f4\": 145, \"f5\": 5, \"f6\": 96.7, \"f7\": 22.5}, {\"f1\": 20.0, \"f2\": 200, \"f3\": 0.87, \"f4\": 188, \"f5\": 12, \"f6\": 94.0, \"f7\": 29.1}, {\"f1\": 25.0, \"f2\": 250, \"f3\": 0.85, \"f4\": 228, \"f5\": 22, \"f6\": 91.2, \"f7\": 35.3}, {\"f1\": 30.0, \"f2\": 300, \"f3\": 0.81, \"f4\": 269, \"f5\": 31, \"f6\": 89.7, \"f7\": 41.7}, {\"f1\": 35.0, \"f2\": 350, \"f3\": 0.78, \"f4\": 313, \"f5\": 37, \"f6\": 89.4, \"f7\": 48.5}, {\"f1\": 40.0, \"f2\": 400, \"f3\": 0.74, \"f4\": 349, \"f5\": 51, \"f6\": 87.2, \"f7\": 54.1}, {\"f1\": 45.0, \"f2\": 450, \"f3\": 0.7, \"f4\": 384, \"f5\": 66, \"f6\": 85.3, \"f7\": 59.5}, {\"f1\": 50.0, \"f2\": 500, \"f3\": 0.67, \"f4\": 417, \"f5\": 83, \"f6\": 83.4, \"f7\": 64.7}, {\"f1\": 55.0, \"f2\": 550, \"f3\": 0.63, \"f4\": 455, \"f5\": 95, \"f6\": 82.7, \"f7\": 70.5}, {\"f1\": 60.0, \"f2\": 600, \"f3\": 0.59, \"f4\": 479, \"f5\": 121, \"f6\": 79.8, \"f7\": 74.3}, {\"f1\": 65.0, \"f2\": 650, \"f3\": 0.56, \"f4\": 511, \"f5\": 139, \"f6\": 78.6, \"f7\": 79.2}, {\"f1\": 70.0, \"f2\": 700, \"f3\": 0.51, \"f4\": 536, \"f5\": 164, \"f6\": 76.6, \"f7\": 83.1}, {\"f1\": 75.0, \"f2\": 750, \"f3\": 0.47, \"f4\": 560, \"f5\": 190, \"f6\": 74.7, \"f7\": 86.8}, {\"f1\": 80.0, \"f2\": 800, \"f3\": 0.43, \"f4\": 580, \"f5\": 220, \"f6\": 72.5, \"f7\": 89.9}, {\"f1\": 85.0, \"f2\": 850, \"f3\": 0.38, \"f4\": 599, \"f5\": 251, \"f6\": 70.5, \"f7\": 92.9}, {\"f1\": 90.0, \"f2\": 900, \"f3\": 0.3, \"f4\": 620, \"f5\": 280, \"f6\": 68.9, \"f7\": 96.1}, {\"f1\": 95.0, \"f2\": 950, \"f3\": 0.2, \"f4\": 631, \"f5\": 319, \"f6\": 66.4, \"f7\": 97.8}, {\"f1\": 100.0, \"f2\": 1000, \"f3\": 0.03, \"f4\": 645, \"f5\": 355, \"f6\": 64.5, \"f7\": 100.0}]}, \"insights\": [], \"additionalGraphs\": [], \"alerts\": [], \"tabs\": []}, {\"type\": \"big_table\", \"title\": \"Current: Precision-Recall Table\", \"size\": 1, \"details\": \"\", \"alertsPosition\": null, \"alertStats\": null, \"params\": {\"rowsPerPage\": 21, \"columns\": [{\"title\": \"Top(%)\", \"field\": \"f1\", \"sort\": \"asc\"}, {\"title\": \"Count\", \"field\": \"f2\"}, {\"title\": \"Prob\", \"field\": \"f3\"}, {\"title\": \"TP\", \"field\": \"f4\"}, {\"title\": \"FP\", \"field\": \"f5\"}, {\"title\": \"Precision\", \"field\": \"f6\"}, {\"title\": \"Recall\", \"field\": \"f7\"}], \"data\": [{\"f1\": 5.0, \"f2\": 50, \"f3\": 0.95, \"f4\": 49, \"f5\": 1, \"f6\": 98.0, \"f7\": 7.6}, {\"f1\": 10.0, \"f2\": 100, \"f3\": 0.92, \"f4\": 97, \"f5\": 3, \"f6\": 97.0, \"f7\": 15.0}, {\"f1\": 15.0, \"f2\": 150, \"f3\": 0.9, \"f4\": 145, \"f5\": 5, \"f6\": 96.7, \"f7\": 22.4}, {\"f1\": 20.0, \"f2\": 200, \"f3\": 0.87, \"f4\": 190, \"f5\": 10, \"f6\": 95.0, \"f7\": 29.3}, {\"f1\": 25.0, \"f2\": 250, \"f3\": 0.84, \"f4\": 230, \"f5\": 20, \"f6\": 92.0, \"f7\": 35.5}, {\"f1\": 30.0, \"f2\": 300, \"f3\": 0.82, \"f4\": 271, \"f5\": 29, \"f6\": 90.3, \"f7\": 41.8}, {\"f1\": 35.0, \"f2\": 350, \"f3\": 0.79, \"f4\": 307, \"f5\": 43, \"f6\": 87.7, \"f7\": 47.4}, {\"f1\": 40.0, \"f2\": 400, \"f3\": 0.76, \"f4\": 343, \"f5\": 57, \"f6\": 85.8, \"f7\": 52.9}, {\"f1\": 45.0, \"f2\": 450, \"f3\": 0.71, \"f4\": 382, \"f5\": 68, \"f6\": 84.9, \"f7\": 59.0}, {\"f1\": 50.0, \"f2\": 500, \"f3\": 0.67, \"f4\": 418, \"f5\": 82, \"f6\": 83.6, \"f7\": 64.5}, {\"f1\": 55.0, \"f2\": 550, \"f3\": 0.64, \"f4\": 450, \"f5\": 100, \"f6\": 81.8, \"f7\": 69.4}, {\"f1\": 60.0, \"f2\": 600, \"f3\": 0.6, \"f4\": 479, \"f5\": 121, \"f6\": 79.8, \"f7\": 73.9}, {\"f1\": 65.0, \"f2\": 650, \"f3\": 0.56, \"f4\": 509, \"f5\": 141, \"f6\": 78.3, \"f7\": 78.5}, {\"f1\": 70.0, \"f2\": 700, \"f3\": 0.53, \"f4\": 539, \"f5\": 161, \"f6\": 77.0, \"f7\": 83.2}, {\"f1\": 75.0, \"f2\": 750, \"f3\": 0.5, \"f4\": 566, \"f5\": 184, \"f6\": 75.5, \"f7\": 87.3}, {\"f1\": 80.0, \"f2\": 800, \"f3\": 0.43, \"f4\": 581, \"f5\": 219, \"f6\": 72.6, \"f7\": 89.7}, {\"f1\": 85.0, \"f2\": 850, \"f3\": 0.39, \"f4\": 604, \"f5\": 246, \"f6\": 71.1, \"f7\": 93.2}, {\"f1\": 90.0, \"f2\": 900, \"f3\": 0.33, \"f4\": 618, \"f5\": 282, \"f6\": 68.7, \"f7\": 95.4}, {\"f1\": 95.0, \"f2\": 950, \"f3\": 0.23, \"f4\": 635, \"f5\": 315, \"f6\": 66.8, \"f7\": 98.0}, {\"f1\": 100.0, \"f2\": 1000, \"f3\": 0.01, \"f4\": 648, \"f5\": 352, \"f6\": 64.8, \"f7\": 100.0}]}, \"insights\": [], \"additionalGraphs\": [], \"alerts\": [], \"tabs\": []}, {\"type\": \"big_table\", \"title\": \"Classification Quality By Feature\", \"size\": 2, \"details\": \"\", \"alertsPosition\": null, \"alertStats\": null, \"params\": {\"rowsPerPage\": 10, \"columns\": [{\"title\": \"Feature\", \"field\": \"f1\"}], \"data\": [{\"details\": {\"parts\": [{\"title\": \"All\", \"id\": \"All_fixed.acidity\"}, {\"title\": \"good\", \"id\": \"fixed.acidity_good\"}, {\"title\": \"bad\", \"id\": \"fixed.acidity_bad\"}], \"insights\": []}, \"f1\": \"fixed.acidity\"}, {\"details\": {\"parts\": [{\"title\": \"All\", \"id\": \"All_volatile.acidity\"}, {\"title\": \"good\", \"id\": \"volatile.acidity_good\"}, {\"title\": \"bad\", \"id\": \"volatile.acidity_bad\"}], \"insights\": []}, \"f1\": \"volatile.acidity\"}, {\"details\": {\"parts\": [{\"title\": \"All\", \"id\": \"All_citric.acid\"}, {\"title\": \"good\", \"id\": \"citric.acid_good\"}, {\"title\": \"bad\", \"id\": \"citric.acid_bad\"}], \"insights\": []}, \"f1\": \"citric.acid\"}, {\"details\": {\"parts\": [{\"title\": \"All\", \"id\": \"All_residual.sugar\"}, {\"title\": \"good\", \"id\": \"residual.sugar_good\"}, {\"title\": \"bad\", \"id\": \"residual.sugar_bad\"}], \"insights\": []}, \"f1\": \"residual.sugar\"}, {\"details\": {\"parts\": [{\"title\": \"All\", \"id\": \"All_chlorides\"}, {\"title\": \"good\", \"id\": \"chlorides_good\"}, {\"title\": \"bad\", \"id\": \"chlorides_bad\"}], \"insights\": []}, \"f1\": \"chlorides\"}, {\"details\": {\"parts\": [{\"title\": \"All\", \"id\": \"All_free.sulfur.dioxide\"}, {\"title\": \"good\", \"id\": \"free.sulfur.dioxide_good\"}, {\"title\": \"bad\", \"id\": \"free.sulfur.dioxide_bad\"}], \"insights\": []}, \"f1\": \"free.sulfur.dioxide\"}, {\"details\": {\"parts\": [{\"title\": \"All\", \"id\": \"All_total.sulfur.dioxide\"}, {\"title\": \"good\", \"id\": \"total.sulfur.dioxide_good\"}, {\"title\": \"bad\", \"id\": \"total.sulfur.dioxide_bad\"}], \"insights\": []}, \"f1\": \"total.sulfur.dioxide\"}, {\"details\": {\"parts\": [{\"title\": \"All\", \"id\": \"All_density\"}, {\"title\": \"good\", \"id\": \"density_good\"}, {\"title\": \"bad\", \"id\": \"density_bad\"}], \"insights\": []}, \"f1\": \"density\"}, {\"details\": {\"parts\": [{\"title\": \"All\", \"id\": \"All_pH\"}, {\"title\": \"good\", \"id\": \"pH_good\"}, {\"title\": \"bad\", \"id\": \"pH_bad\"}], \"insights\": []}, \"f1\": \"pH\"}, {\"details\": {\"parts\": [{\"title\": \"All\", \"id\": \"All_sulphates\"}, {\"title\": \"good\", \"id\": \"sulphates_good\"}, {\"title\": \"bad\", \"id\": \"sulphates_bad\"}], \"insights\": []}, \"f1\": \"sulphates\"}, {\"details\": {\"parts\": [{\"title\": \"All\", \"id\": \"All_alcohol\"}, {\"title\": \"good\", \"id\": \"alcohol_good\"}, {\"title\": \"bad\", \"id\": \"alcohol_bad\"}], \"insights\": []}, \"f1\": \"alcohol\"}]}, \"insights\": [], \"additionalGraphs\": [{\"id\": \"All_fixed.acidity\", \"params\": {\"data\": [{\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Reference<br>fixed.acidity=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [7.0, 7.3, 7.5, 6.3, 6.3, 7.0, 6.5, 5.6, 6.9, 5.8, 8.1, 7.7, 6.2, 7.3, 6.8, 6.6, 7.3, 15.6, 5.2, 6.2, 8.0, 7.7, 6.3, 7.3, 9.0, 6.0, 5.3, 7.8, 7.1, 6.2, 6.3, 7.3, 7.2, 5.8, 7.2, 7.7, 7.7, 5.9, 6.7, 6.5, 6.0, 7.2, 7.7, 7.4, 8.1, 6.8, 8.2, 6.2, 9.4, 6.8, 7.0, 6.6, 6.0, 6.3, 14.2, 6.8, 5.9, 6.0, 7.6, 5.9, 11.1, 5.9, 7.1, 6.6, 12.6, 8.3, 6.7, 7.4, 7.0, 6.7, 7.0, 6.2, 6.4, 7.9, 7.4, 7.0, 7.9, 6.5, 8.2, 6.9, 5.7, 6.3, 8.3, 9.1, 8.0, 7.8, 7.3, 8.6, 6.9, 10.8, 6.4, 7.7, 8.8, 6.6, 6.1, 5.0, 6.3, 5.9, 6.6, 7.3, 8.3, 7.3, 9.9, 7.5, 7.2, 6.4, 5.2, 7.9, 6.7, 6.7, 8.0, 7.9, 6.9, 7.4, 5.6, 6.7, 5.9, 6.0, 7.1, 7.2, 6.8, 6.3, 9.2, 7.8, 8.1, 7.5, 6.8, 6.7, 6.9, 7.3, 7.0, 5.0, 7.3, 8.2, 7.7, 5.0, 10.1, 6.6, 7.1, 9.5, 8.0, 5.9, 6.8, 6.9, 10.8, 7.4, 7.2, 5.8, 6.7, 7.3, 7.0, 12.0, 6.7, 6.2, 6.6, 6.4, 5.9, 7.8, 7.4, 6.1, 5.9, 7.5, 6.4, 7.9, 6.1, 7.2, 7.1, 6.3, 7.8, 5.2, 10.2, 7.8, 6.2, 8.5, 7.6, 6.4, 7.8, 6.0, 6.2, 7.4, 6.0, 6.8, 7.9, 6.1, 6.2, 5.6, 5.5, 11.1, 5.9, 6.4, 6.6, 5.6, 5.0, 7.0, 7.1, 7.8, 6.1, 8.4, 6.8, 8.5, 7.7, 6.4, 7.1, 8.4, 6.7, 8.2, 8.2, 8.1, 7.3, 8.0, 8.2, 6.5, 6.5, 6.0, 6.9, 6.6, 6.6, 7.0, 7.5, 6.6, 6.6, 6.6, 7.0, 8.3, 7.1, 7.0, 7.1, 7.1, 7.7, 6.1, 6.0, 6.6, 6.3, 6.9, 6.7, 4.8, 6.4, 6.6, 6.3, 7.1, 8.9, 7.2, 7.2, 6.4, 7.0, 7.0, 7.7, 6.5, 6.3, 5.8, 8.0, 7.4, 10.8, 10.1, 10.7, 6.4, 6.5, 6.6, 7.3, 9.8, 7.4, 6.3, 6.1, 7.2, 7.0, 6.2, 7.3, 9.1, 6.5, 5.2, 6.0, 6.4, 6.7, 6.0, 5.5, 6.7, 6.7, 9.1, 5.6, 7.1, 7.8, 7.6, 5.1, 5.8, 8.0, 10.8, 6.2, 7.8, 7.7, 7.3, 5.6, 7.9, 8.3, 6.2, 6.0, 6.1, 7.1, 6.7, 5.7, 6.8, 6.6, 5.9, 5.7, 6.0, 8.4, 7.2, 8.5, 7.1, 7.2, 6.6, 7.2, 7.3, 5.9, 6.1, 7.1, 13.4, 8.3, 6.0, 6.4, 5.9, 5.8, 6.1, 6.8, 6.3, 7.3, 7.0, 7.4, 8.8, 7.4, 6.4, 5.1, 8.1, 11.4, 5.6, 6.8, 6.9, 7.0, 7.2, 6.2, 6.8, 6.5, 8.8, 5.1, 6.5, 7.2, 8.1, 7.1, 8.2, 5.8, 7.3, 6.8, 7.7, 6.7, 8.3, 6.8, 6.3, 8.4, 6.2, 11.5, 6.9, 7.4, 6.2, 8.9, 7.2, 7.2, 6.6, 6.2, 6.2, 9.2, 7.2, 5.8, 5.6, 7.7, 9.2, 6.6, 7.0, 5.9, 8.6, 7.4, 9.0, 10.0, 7.5, 8.3, 6.5, 6.9, 7.5, 10.2, 6.1, 7.7, 6.8, 6.1, 6.0, 6.7, 6.3, 7.0, 6.0, 7.7, 6.8, 5.0, 8.0, 7.4, 6.7, 6.1, 7.0, 7.4, 5.7, 6.8, 7.4, 6.1, 6.5, 6.6, 6.4, 5.7, 6.6, 7.1, 7.0, 6.3, 7.1, 7.7, 7.5, 7.5, 6.9, 5.9, 7.0, 6.1, 5.8, 8.0, 7.4, 6.7, 8.0, 7.7, 6.6, 6.4, 5.5, 6.9, 4.4, 8.3, 6.3, 6.9, 11.1, 6.4, 6.8, 7.4, 7.5, 6.9, 6.3, 7.2, 6.7, 10.5, 5.9, 6.8, 6.1, 5.8, 7.3, 7.4, 12.0, 6.4, 7.1, 6.4, 6.2, 11.1, 7.6, 11.5, 8.0, 6.4, 7.3, 6.2, 6.7, 7.3, 8.9, 8.3, 6.2, 6.5, 8.7, 5.7, 6.5, 7.0, 6.7, 7.5, 7.3, 6.2, 6.5, 6.6, 6.3, 6.5, 7.7, 7.5, 6.6, 5.7, 6.0, 7.3, 7.9, 7.0, 6.5, 7.3, 8.6, 6.9, 6.5, 7.3, 7.4, 6.9, 7.0, 5.3, 7.2, 7.9, 6.7, 5.1, 6.7, 6.5, 6.4, 6.9, 7.8, 7.1, 7.5, 6.5, 6.3, 6.7, 6.6, 6.7, 6.8, 8.4, 6.0, 8.1, 6.5, 7.2, 7.1, 8.6, 8.0, 6.2, 6.5, 8.9, 6.9, 5.8, 6.0, 6.8, 7.9, 6.8, 7.1, 6.8, 7.0, 6.8, 6.0, 7.9, 7.9, 6.5, 6.0, 10.1, 7.0, 6.8, 6.3, 7.2, 7.7, 6.6, 8.2, 6.4, 6.8, 7.2, 7.0, 7.8, 6.6, 6.7, 7.6, 5.6, 6.4, 5.1, 7.7, 7.1, 8.6, 6.1, 8.0, 6.2, 7.6, 7.2, 7.1, 6.5, 6.3, 7.2, 6.4, 7.9, 7.8, 7.5, 6.4, 5.9, 6.0, 7.0, 6.9, 5.4, 6.8, 6.0, 6.8, 8.6, 6.7, 6.3, 6.0, 5.0, 7.2, 5.6, 8.0, 5.6, 7.8, 7.4, 7.1, 6.4, 7.0, 9.4, 6.0, 5.9, 7.1, 6.3, 7.3, 6.4, 10.5, 8.1, 8.1, 6.4, 8.8, 6.1, 7.0, 7.2, 9.2, 6.6, 6.9, 9.7, 8.8, 7.8, 7.8, 7.3, 6.7, 6.6, 6.8, 7.15, 8.0, 7.4, 6.5, 5.3, 7.1, 10.8, 6.6, 7.0, 7.2, 7.5, 10.7, 5.9, 6.8, 6.9], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Current<br>fixed.acidity=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [6.4, 7.2, 6.8, 6.8, 7.9, 7.4, 7.3, 6.6, 6.5, 5.8, 10.0, 6.9, 6.6, 5.3, 4.4, 7.9, 6.9, 8.5, 9.1, 7.6, 7.6, 7.4, 8.3, 6.7, 7.8, 7.1, 6.4, 6.0, 7.6, 6.9, 7.3, 6.6, 6.9, 5.1, 5.8, 6.6, 6.5, 6.4, 6.8, 7.2, 6.7, 6.0, 7.6, 7.3, 8.3, 7.8, 7.8, 6.8, 7.9, 6.8, 8.0, 8.0, 6.8, 9.2, 6.9, 8.1, 10.7, 5.2, 6.6, 9.1, 6.4, 6.8, 6.6, 8.0, 6.7, 6.0, 7.7, 7.7, 6.0, 7.5, 7.1, 6.7, 7.7, 5.3, 8.0, 6.3, 6.1, 6.6, 7.7, 9.0, 6.4, 7.3, 7.5, 8.3, 7.6, 8.4, 9.3, 6.5, 6.9, 6.3, 6.3, 8.4, 5.6, 6.6, 6.0, 7.3, 11.6, 7.6, 11.8, 5.9, 7.2, 6.4, 6.9, 6.9, 7.1, 6.6, 7.9, 6.7, 6.2, 6.7, 6.7, 7.9, 6.9, 6.1, 6.4, 6.4, 5.0, 6.6, 6.9, 9.8, 5.0, 5.4, 6.5, 6.2, 8.2, 9.7, 7.8, 6.1, 9.3, 6.8, 6.2, 7.4, 6.1, 8.3, 6.2, 8.3, 9.2, 8.3, 6.8, 7.3, 7.2, 6.4, 11.9, 6.6, 6.2, 5.8, 8.4, 8.9, 7.1, 8.3, 7.0, 7.6, 7.5, 7.2, 6.5, 6.8, 9.9, 7.2, 5.9, 7.2, 7.1, 7.5, 6.2, 6.3, 12.6, 8.6, 8.9, 7.9, 8.3, 6.9, 6.3, 8.6, 7.2, 8.5, 5.8, 7.0, 6.1, 6.5, 6.0, 8.3, 7.7, 5.8, 6.9, 11.8, 7.0, 6.3, 9.1, 5.6, 7.0, 6.9, 7.8, 6.6, 6.5, 7.0, 6.2, 7.7, 6.7, 5.1, 8.4, 6.5, 7.2, 7.5, 5.8, 7.7, 6.6, 6.7, 8.5, 10.4, 6.6, 6.8, 5.9, 5.8, 6.7, 6.2, 13.2, 7.0, 5.9, 6.0, 5.6, 6.8, 7.0, 6.2, 7.8, 6.3, 7.3, 7.3, 6.0, 7.4, 8.7, 7.3, 6.9, 8.1, 6.9, 7.0, 10.3, 8.4, 6.6, 6.8, 7.0, 7.4, 6.8, 8.1, 8.4, 6.4, 7.1, 10.4, 7.3, 7.4, 7.5, 9.4, 7.9, 7.6, 8.1, 6.5, 7.0, 6.7, 7.5, 6.6, 6.7, 5.8, 6.8, 6.9, 7.5, 6.4, 7.3, 7.4, 7.6, 6.1, 6.8, 7.6, 6.8, 6.3, 5.4, 11.5, 6.7, 7.4, 6.9, 6.8, 5.6, 5.9, 8.4, 7.9, 6.0, 5.8, 7.0, 10.0, 6.1, 6.2, 5.3, 6.1, 11.5, 10.3, 6.9, 8.2, 6.4, 6.1, 6.1, 7.0, 6.9, 7.0, 8.0, 7.6, 7.5, 6.0, 7.4, 7.2, 5.9, 6.8, 7.8, 7.0, 6.2, 6.5, 6.2, 6.5, 5.7, 5.4, 7.2, 8.1, 8.5, 6.7, 7.0, 6.0, 7.7, 7.3, 10.1, 7.2, 7.4, 10.9, 6.8, 6.6, 7.0, 6.7, 9.1, 8.0, 6.7, 6.9, 7.3, 6.5, 7.6, 7.0, 7.1, 6.1, 7.4, 7.0, 7.7, 6.8, 7.0, 6.3, 9.8, 6.7, 7.8, 7.5, 8.7, 7.2, 7.6, 6.7, 8.6, 6.5, 7.5, 6.6, 6.8, 6.6, 8.2, 7.0, 8.8, 6.4, 5.7, 6.9, 6.2, 6.8, 5.6, 6.3, 7.9, 6.9, 10.9, 6.6, 5.8, 6.4, 6.8, 5.6, 4.9, 7.4, 6.8, 6.8, 6.5, 7.1, 7.2, 5.5, 6.9, 6.3, 6.4, 6.1, 5.2, 6.8, 6.9, 7.5, 7.2, 10.1, 7.2, 6.8, 7.4, 5.6, 6.3, 6.8, 6.0, 6.9, 6.2, 5.9, 7.0, 6.9, 8.3, 5.6, 8.2, 6.0, 6.7, 7.5, 6.2, 10.1, 7.0, 7.2, 5.5, 5.7, 11.1, 6.9, 11.5, 7.1, 6.6, 6.3, 6.6, 7.8, 6.7, 5.7, 6.7, 7.2, 9.1, 7.8, 8.1, 7.4, 6.5, 6.8, 7.4, 5.3, 7.6, 7.0, 6.2, 11.3, 5.0, 6.4, 6.0, 8.9, 6.6, 7.0, 6.5, 7.7, 7.2, 6.0, 6.5, 5.9, 6.4, 7.0, 6.7, 6.2, 6.6, 6.8, 7.5, 7.4, 8.0, 6.2, 7.2, 6.9, 6.2, 8.2, 6.0, 7.4, 8.3, 6.6, 6.4, 6.8, 5.6, 6.0, 6.4, 6.8, 7.0, 8.9, 7.1, 7.4, 6.9, 6.6, 8.4, 7.1, 8.7, 7.3, 8.3, 8.2, 9.0, 10.9, 8.6, 9.6, 7.3, 12.0, 6.0, 6.9, 7.4, 5.8, 5.6, 5.7, 6.7, 6.1, 10.6, 8.2, 7.3, 7.2, 6.4, 7.4, 7.9, 6.7, 6.8, 9.9, 6.4, 7.2, 5.0, 7.5, 5.3, 6.9, 5.6, 7.2, 6.9, 6.1, 6.9, 7.3, 7.0, 6.6, 7.4, 6.3, 8.0, 7.4, 11.6, 8.9, 7.0, 6.9, 6.4, 6.5, 10.4, 6.7, 5.6, 5.5, 10.6, 8.8, 6.9, 7.4, 7.6, 7.2, 6.0, 9.1, 5.8, 7.5, 7.0, 6.5, 6.0, 5.1, 6.7, 6.9, 7.4, 7.9, 7.3, 7.8, 8.5, 6.6, 6.7, 6.1, 7.3, 7.0, 6.0, 7.7, 7.4, 6.3, 6.0, 6.6, 7.1, 6.8, 6.4, 7.0, 5.7, 5.1, 7.4, 5.7, 7.7, 6.7, 6.6, 6.4, 6.8, 7.1, 8.0, 6.0, 8.0, 12.4, 6.6, 7.3, 7.0, 6.1, 6.6, 6.9, 6.4, 7.9, 6.6, 7.5, 9.6, 7.2, 8.0, 5.5, 6.3, 6.8, 6.9, 6.6, 7.4, 7.6, 5.6, 7.0, 6.9, 6.9, 6.9, 6.7, 6.8, 6.4, 6.8, 6.0, 7.5, 9.0, 10.2, 6.6, 7.8, 13.7, 7.1, 7.0, 7.1, 7.7, 6.1, 8.2, 9.5, 7.4, 6.5, 8.3, 5.7, 6.4, 7.8, 6.8, 6.7, 6.7], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Reference<br>fixed.acidity=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [7.2, 7.2, 9.1, 6.2, 9.2, 7.1, 5.3, 8.5, 6.9, 7.5, 7.0, 6.9, 7.3, 7.3, 5.1, 6.4, 7.8, 5.7, 6.6, 8.2, 6.1, 7.4, 7.5, 8.8, 7.0, 7.8, 5.9, 9.7, 7.5, 6.2, 7.0, 7.8, 5.8, 7.1, 7.4, 9.1, 8.5, 6.3, 10.2, 6.6, 6.9, 8.2, 5.7, 7.1, 7.1, 5.7, 5.3, 6.7, 8.2, 6.6, 9.9, 6.3, 6.6, 12.3, 7.4, 7.6, 8.0, 6.5, 6.5, 11.5, 6.3, 6.5, 6.7, 6.0, 8.5, 5.8, 6.7, 7.7, 6.7, 8.5, 7.4, 8.6, 7.4, 7.0, 6.4, 6.6, 6.2, 7.9, 7.5, 7.7, 8.2, 6.9, 6.1, 6.9, 7.7, 9.2, 6.1, 6.5, 7.1, 7.0, 8.6, 5.8, 8.4, 7.4, 7.4, 6.6, 6.4, 9.2, 6.4, 7.7, 7.2, 7.6, 7.1, 7.6, 7.8, 7.8, 5.9, 5.6, 6.2, 6.5, 7.4, 7.2, 6.2, 5.5, 7.1, 6.7, 7.2, 5.2, 10.6, 7.1, 5.8, 6.3, 6.7, 6.9, 7.1, 7.0, 6.8, 8.7, 7.7, 7.1, 10.3, 10.1, 6.4, 6.6, 9.4, 7.1, 8.3, 6.4, 7.8, 7.9, 6.8, 6.5, 5.8, 6.4, 7.3, 5.7, 6.2, 6.4, 9.4, 7.5, 7.2, 7.1, 7.6, 6.7, 6.9, 8.1, 11.6, 5.9, 7.2, 6.4, 8.3, 9.6, 12.5, 6.2, 7.2, 7.3, 6.5, 6.4, 7.2, 6.6, 6.9, 5.1, 7.3, 8.2, 7.8, 7.1, 7.3, 7.0, 7.3, 7.0, 6.0, 8.1, 5.8, 8.9, 7.5, 5.9, 9.8, 7.5, 6.6, 7.3, 6.5, 7.7, 6.4, 6.0, 6.3, 7.5, 7.5, 6.7, 7.4, 6.1, 5.6, 9.9, 9.9, 10.0, 5.9, 7.2, 6.1, 9.9, 5.6, 5.9, 7.5, 5.1, 6.7, 9.8, 6.6, 6.6, 7.1, 6.4, 8.0, 9.8, 10.0, 5.5, 7.5, 8.6, 6.4, 7.4, 5.3, 8.5, 5.9, 7.3, 6.4, 9.6, 7.0, 7.2, 6.8, 7.5, 6.1, 5.7, 6.6, 6.8, 10.8, 7.0, 6.7, 6.4, 5.6, 11.3, 9.3, 6.8, 6.6, 9.1, 9.8, 7.6, 5.8, 7.3, 7.6, 7.9, 7.2, 6.7, 9.2, 12.3, 7.1, 6.5, 6.9, 6.4, 9.3, 6.4, 5.8, 5.6, 6.1, 6.6, 7.5, 6.8, 7.8, 6.3, 6.2, 6.7, 7.0, 7.7, 6.6, 5.9, 9.9, 6.4, 8.9, 6.8, 6.3, 7.2, 9.5, 5.9, 9.2, 6.7, 7.5, 9.4, 7.1, 5.3, 8.6, 9.9, 5.8, 6.3, 7.7, 9.2, 5.6, 7.4, 9.0, 6.5, 9.4, 8.7, 6.1, 6.3, 10.6, 7.0, 6.4, 6.1, 6.4, 6.4, 8.2, 7.5, 9.4, 9.0, 6.8, 6.5, 7.4, 6.2, 7.7, 7.6, 6.6, 7.1, 15.9, 6.2, 8.1, 6.4, 6.8, 9.1, 6.5, 6.9, 5.5, 9.9, 7.3, 10.8, 6.0, 6.7, 6.1, 6.3, 7.0, 9.1, 6.6, 7.4, 6.2, 8.0, 7.0, 7.0, 7.6, 8.0, 8.4, 5.6, 9.2], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Current<br>fixed.acidity=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [7.3, 6.4, 7.5, 5.6, 6.9, 6.8, 6.5, 9.1, 9.0, 12.7, 7.6, 7.2, 6.4, 7.3, 6.7, 6.8, 6.8, 11.9, 6.6, 6.4, 6.8, 8.0, 6.3, 6.5, 6.6, 7.4, 7.2, 7.5, 5.3, 7.0, 7.5, 5.3, 8.1, 8.2, 6.9, 5.9, 9.8, 7.5, 7.0, 6.0, 8.6, 7.5, 6.9, 7.0, 6.4, 6.5, 8.3, 8.3, 6.0, 7.4, 6.2, 7.5, 9.0, 8.0, 7.7, 7.9, 7.4, 15.6, 7.6, 6.9, 15.5, 8.1, 6.3, 10.0, 7.0, 6.8, 8.5, 7.4, 6.8, 7.3, 6.6, 5.6, 4.9, 8.8, 6.6, 7.1, 7.2, 7.0, 6.2, 8.0, 7.6, 9.2, 6.0, 7.9, 8.3, 8.2, 7.9, 7.8, 6.7, 7.5, 6.3, 7.6, 9.3, 7.7, 6.9, 7.6, 8.0, 8.9, 6.8, 6.3, 10.0, 9.4, 6.8, 6.5, 8.9, 7.0, 9.0, 6.0, 6.0, 7.6, 7.9, 7.1, 6.9, 6.9, 9.6, 8.9, 6.6, 6.6, 6.4, 8.4, 5.8, 6.6, 7.0, 7.8, 7.2, 7.5, 5.7, 11.8, 7.2, 6.8, 6.9, 6.6, 7.7, 8.8, 7.1, 7.2, 6.9, 9.0, 7.2, 6.5, 7.9, 8.3, 8.6, 8.4, 9.5, 7.4, 7.9, 6.4, 7.9, 6.9, 7.2, 7.9, 7.1, 7.2, 7.0, 7.2, 6.1, 6.8, 6.9, 8.0, 8.4, 6.6, 7.1, 7.6, 7.4, 7.7, 5.9, 6.7, 6.6, 7.4, 6.6, 7.2, 7.1, 6.6, 7.9, 5.8, 7.0, 6.8, 6.6, 6.1, 8.0, 4.2, 11.9, 6.4, 6.8, 7.5, 6.3, 6.8, 7.8, 6.2, 7.2, 8.2, 7.7, 7.0, 7.2, 7.3, 7.8, 5.6, 7.1, 6.8, 6.8, 6.2, 6.4, 6.9, 7.1, 7.2, 6.8, 10.0, 6.4, 7.3, 9.3, 5.8, 6.7, 8.5, 6.0, 6.7, 6.4, 8.8, 7.1, 6.5, 6.9, 6.7, 8.3, 6.4, 6.8, 6.1, 7.6, 7.0, 8.2, 4.9, 6.3, 7.6, 6.5, 9.2, 8.4, 6.7, 5.5, 6.1, 7.7, 7.4, 6.2, 7.2, 7.9, 7.1, 7.0, 6.0, 7.5, 5.7, 8.2, 6.4, 7.5, 6.8, 9.4, 7.5, 6.5, 6.5, 7.1, 6.8, 7.2, 10.8, 6.5, 7.2, 6.4, 6.4, 8.2, 6.4, 7.1, 6.2, 6.2, 6.4, 7.1, 8.3, 7.9, 6.7, 9.2, 6.0, 7.4, 7.0, 6.7, 6.8, 8.3, 6.1, 6.9, 5.8, 8.9, 6.0, 8.6, 6.0, 7.8, 9.8, 6.4, 5.2, 7.2, 7.2, 6.4, 9.3, 6.3, 6.4, 6.2, 8.9, 6.6, 13.0, 6.2, 6.8, 7.0, 6.4, 11.1, 7.4, 8.1, 6.4, 7.5, 6.4, 8.2, 7.1, 7.6, 7.2, 7.6, 6.7, 6.2, 5.4, 11.0, 6.3, 5.7, 6.6, 8.9, 6.8, 6.3, 12.2, 6.6, 4.9, 7.6, 6.4, 7.2, 6.3, 7.6, 7.2, 5.8, 6.8, 6.5, 7.3, 6.9, 9.0, 6.8, 8.0, 10.4, 8.1, 8.3, 7.3, 6.5, 7.6, 7.0, 7.1], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Reference\", \"x\": 0.245, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Current\", \"x\": 0.755, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"barmode\": \"overlay\", \"legend\": {\"title\": {\"text\": \"target\"}, \"tracegroupgap\": 0}, \"margin\": {\"t\": 60}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.49], \"title\": {\"text\": \"fixed.acidity\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.51, 1.0], \"matches\": \"x\", \"title\": {\"text\": \"fixed.acidity\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"count\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}}}}, {\"id\": \"fixed.acidity_good\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (ref)\", \"type\": \"scatter\", \"x\": [7.0, 7.3, 7.5, 6.3, 6.3, 7.0, 6.5, 5.6, 6.9, 5.8, 8.1, 7.7, 6.2, 7.3, 6.8, 6.6, 7.3, 15.6, 5.2, 6.2, 8.0, 7.7, 6.3, 7.3, 9.0, 6.0, 5.3, 7.8, 7.1, 6.2, 6.3, 7.3, 7.2, 5.8, 7.2, 7.7, 7.7, 5.9, 6.7, 6.5, 6.0, 7.2, 7.7, 7.4, 8.1, 6.8, 8.2, 6.2, 9.4, 6.8, 7.0, 6.6, 6.0, 6.3, 14.2, 6.8, 5.9, 6.0, 7.6, 5.9, 11.1, 5.9, 7.1, 6.6, 12.6, 8.3, 6.7, 7.4, 7.0, 6.7, 7.0, 6.2, 6.4, 7.9, 7.4, 7.0, 7.9, 6.5, 8.2, 6.9, 5.7, 6.3, 8.3, 9.1, 8.0, 7.8, 7.3, 8.6, 6.9, 10.8, 6.4, 7.7, 8.8, 6.6, 6.1, 5.0, 6.3, 5.9, 6.6, 7.3, 8.3, 7.3, 9.9, 7.5, 7.2, 6.4, 5.2, 7.9, 6.7, 6.7, 8.0, 7.9, 6.9, 7.4, 5.6, 6.7, 5.9, 6.0, 7.1, 7.2, 6.8, 6.3, 9.2, 7.8, 8.1, 7.5, 6.8, 6.7, 6.9, 7.3, 7.0, 5.0, 7.3, 8.2, 7.7, 5.0, 10.1, 6.6, 7.1, 9.5, 8.0, 5.9, 6.8, 6.9, 10.8, 7.4, 7.2, 5.8, 6.7, 7.3, 7.0, 12.0, 6.7, 6.2, 6.6, 6.4, 5.9, 7.8, 7.4, 6.1, 5.9, 7.5, 6.4, 7.9, 6.1, 7.2, 7.1, 6.3, 7.8, 5.2, 10.2, 7.8, 6.2, 8.5, 7.6, 6.4, 7.8, 6.0, 6.2, 7.4, 6.0, 6.8, 7.9, 6.1, 6.2, 5.6, 5.5, 11.1, 5.9, 6.4, 6.6, 5.6, 5.0, 7.0, 7.1, 7.8, 6.1, 8.4, 6.8, 8.5, 7.7, 6.4, 7.1, 8.4, 6.7, 8.2, 8.2, 8.1, 7.3, 8.0, 8.2, 6.5, 6.5, 6.0, 6.9, 6.6, 6.6, 7.0, 7.5, 6.6, 6.6, 6.6, 7.0, 8.3, 7.1, 7.0, 7.1, 7.1, 7.7, 6.1, 6.0, 6.6, 6.3, 6.9, 6.7, 4.8, 6.4, 6.6, 6.3, 7.1, 8.9, 7.2, 7.2, 6.4, 7.0, 7.0, 7.7, 6.5, 6.3, 5.8, 8.0, 7.4, 10.8, 10.1, 10.7, 6.4, 6.5, 6.6, 7.3, 9.8, 7.4, 6.3, 6.1, 7.2, 7.0, 6.2, 7.3, 9.1, 6.5, 5.2, 6.0, 6.4, 6.7, 6.0, 5.5, 6.7, 6.7, 9.1, 5.6, 7.1, 7.8, 7.6, 5.1, 5.8, 8.0, 10.8, 6.2, 7.8, 7.7, 7.3, 5.6, 7.9, 8.3, 6.2, 6.0, 6.1, 7.1, 6.7, 5.7, 6.8, 6.6, 5.9, 5.7, 6.0, 8.4, 7.2, 8.5, 7.1, 7.2, 6.6, 7.2, 7.3, 5.9, 6.1, 7.1, 13.4, 8.3, 6.0, 6.4, 5.9, 5.8, 6.1, 6.8, 6.3, 7.3, 7.0, 7.4, 8.8, 7.4, 6.4, 5.1, 8.1, 11.4, 5.6, 6.8, 6.9, 7.0, 7.2, 6.2, 6.8, 6.5, 8.8, 5.1, 6.5, 7.2, 8.1, 7.1, 8.2, 5.8, 7.3, 6.8, 7.7, 6.7, 8.3, 6.8, 6.3, 8.4, 6.2, 11.5, 6.9, 7.4, 6.2, 8.9, 7.2, 7.2, 6.6, 6.2, 6.2, 9.2, 7.2, 5.8, 5.6, 7.7, 9.2, 6.6, 7.0, 5.9, 8.6, 7.4, 9.0, 10.0, 7.5, 8.3, 6.5, 6.9, 7.5, 10.2, 6.1, 7.7, 6.8, 6.1, 6.0, 6.7, 6.3, 7.0, 6.0, 7.7, 6.8, 5.0, 8.0, 7.4, 6.7, 6.1, 7.0, 7.4, 5.7, 6.8, 7.4, 6.1, 6.5, 6.6, 6.4, 5.7, 6.6, 7.1, 7.0, 6.3, 7.1, 7.7, 7.5, 7.5, 6.9, 5.9, 7.0, 6.1, 5.8, 8.0, 7.4, 6.7, 8.0, 7.7, 6.6, 6.4, 5.5, 6.9, 4.4, 8.3, 6.3, 6.9, 11.1, 6.4, 6.8, 7.4, 7.5, 6.9, 6.3, 7.2, 6.7, 10.5, 5.9, 6.8, 6.1, 5.8, 7.3, 7.4, 12.0, 6.4, 7.1, 6.4, 6.2, 11.1, 7.6, 11.5, 8.0, 6.4, 7.3, 6.2, 6.7, 7.3, 8.9, 8.3, 6.2, 6.5, 8.7, 5.7, 6.5, 7.0, 6.7, 7.5, 7.3, 6.2, 6.5, 6.6, 6.3, 6.5, 7.7, 7.5, 6.6, 5.7, 6.0, 7.3, 7.9, 7.0, 6.5, 7.3, 8.6, 6.9, 6.5, 7.3, 7.4, 6.9, 7.0, 5.3, 7.2, 7.9, 6.7, 5.1, 6.7, 6.5, 6.4, 6.9, 7.8, 7.1, 7.5, 6.5, 6.3, 6.7, 6.6, 6.7, 6.8, 8.4, 6.0, 8.1, 6.5, 7.2, 7.1, 8.6, 8.0, 6.2, 6.5, 8.9, 6.9, 5.8, 6.0, 6.8, 7.9, 6.8, 7.1, 6.8, 7.0, 6.8, 6.0, 7.9, 7.9, 6.5, 6.0, 10.1, 7.0, 6.8, 6.3, 7.2, 7.7, 6.6, 8.2, 6.4, 6.8, 7.2, 7.0, 7.8, 6.6, 6.7, 7.6, 5.6, 6.4, 5.1, 7.7, 7.1, 8.6, 6.1, 8.0, 6.2, 7.6, 7.2, 7.1, 6.5, 6.3, 7.2, 6.4, 7.9, 7.8, 7.5, 6.4, 5.9, 6.0, 7.0, 6.9, 5.4, 6.8, 6.0, 6.8, 8.6, 6.7, 6.3, 6.0, 5.0, 7.2, 5.6, 8.0, 5.6, 7.8, 7.4, 7.1, 6.4, 7.0, 9.4, 6.0, 5.9, 7.1, 6.3, 7.3, 6.4, 10.5, 8.1, 8.1, 6.4, 8.8, 6.1, 7.0, 7.2, 9.2, 6.6, 6.9, 9.7, 8.8, 7.8, 7.8, 7.3, 6.7, 6.6, 6.8, 7.15, 8.0, 7.4, 6.5, 5.3, 7.1, 10.8, 6.6, 7.0, 7.2, 7.5, 10.7, 5.9, 6.8, 6.9], \"xaxis\": \"x\", \"y\": [0.8156061324462894, 0.42491310922683634, 0.8867827646463432, 0.8014995238430205, 0.30499958310650876, 0.5817355832705369, 0.959171062334887, 0.7854416128369749, 0.9085690698200813, 0.8998600376511439, 0.6341165000693628, 0.412102187638673, 0.7643629411050379, 0.4710001938005606, 0.40182653035141874, 0.40438056362905367, 0.8870480016118494, 0.3650667978415713, 0.9064321709292111, 0.9327245345966092, 0.6458420185168736, 0.8821841129047617, 0.6704018506542557, 0.7655671181822064, 0.8616986618932058, 0.48774537944210006, 0.9637355036179479, 0.6794204065079696, 0.6044835155949141, 0.7867954023600708, 0.9137982268836646, 0.5867502063434873, 0.8048584290077971, 0.9718511071053526, 0.9627192884041744, 0.7978623718349598, 0.6091120966723917, 0.8943338178728011, 0.8853376735027229, 0.9045563504021151, 0.9264844632598176, 0.6342457655367447, 0.9414033426130164, 0.5636516403732365, 0.5172967922101196, 0.4836896337264441, 0.35199620689495453, 0.788779954566273, 0.9696552399248426, 0.772496554239754, 0.8132656157621138, 0.4539090261140653, 0.9333708926412786, 0.679765045723866, 0.48457442622955804, 0.4248820606938153, 0.6737819616086004, 0.8780741425819777, 0.38340602447337646, 0.90634085684919, 0.5574014604752268, 0.6804147683859246, 0.9077110088845216, 0.7718472635729894, 0.4717552048891654, 0.22222808308441652, 0.8616549355667619, 0.705749071892896, 0.4699129352300819, 0.9680524782819758, 0.8891353183282249, 0.9466602521798594, 0.8553382520847058, 0.7430243903066251, 0.6616131862201935, 0.6919609500216202, 0.96565744679506, 0.913108907487878, 0.5395521774612226, 0.9026238558501023, 0.6550941529376255, 0.9757876320152292, 0.8833495792027257, 0.6666029765862381, 0.8504582120840628, 0.9320215595878566, 0.7639947574915884, 0.6085229656221847, 0.9557131606798471, 0.46184432615952054, 0.5642658412077981, 0.8815615400732472, 0.7189203536918151, 0.9301020530176726, 0.7341394174346678, 0.7759189559372703, 0.8448078654733812, 0.9012666081120407, 0.8926028620066223, 0.5287492720273277, 0.6874206920638863, 0.37408584674942635, 0.8348370105186077, 0.8697567261320243, 0.9175759024810304, 0.44644098895981, 0.8874384748400057, 0.7787567487441118, 0.9416122482572158, 0.3265229243180111, 0.9308095750950773, 0.42267134533232753, 0.43068181214270274, 0.8727308285810839, 0.7201611177732586, 0.8430904589044517, 0.8140617541555761, 0.9456747441572588, 0.6672663325862807, 0.8756470416862959, 0.518871521713375, 0.7040615347784164, 0.4957960231649875, 0.6250130361556073, 0.27413726132188326, 0.5193133578087885, 0.37656641690434584, 0.5808048103476511, 0.7917827117482167, 0.36569143480873245, 0.7232542293832885, 0.9785934574433302, 0.5715075300165849, 0.8182555969893297, 0.5448461144048058, 0.9491291995847589, 0.4833587957991669, 0.3189279754564957, 0.9184825510014271, 0.5524830505676419, 0.9600429304649183, 0.7818180966165994, 0.7962710274484252, 0.7569429870375118, 0.46184432615952054, 0.7641514270390748, 0.9486763575522457, 0.8086368705092697, 0.6784536879503494, 0.6877019790624462, 0.6082670858563528, 0.6053794617794684, 0.6319330693089359, 0.4982105707488519, 0.6787928880949093, 0.9231980717613485, 0.8831230955067948, 0.6845485656817341, 0.8799204262605215, 0.9164563829924386, 0.7819268199067826, 0.23469888428232324, 0.9492377841603665, 0.8826092272015389, 0.6360541596480074, 0.5184081252698399, 0.6400126753125241, 0.542646305979658, 0.4479501208302092, 0.7783171875827786, 0.7867712153112567, 0.5236605417423803, 0.6959846197179591, 0.7925023358445066, 0.6683189355892497, 0.18737025221649042, 0.42506327048176057, 0.7272596040941706, 0.7314191754306454, 0.4827891324637794, 0.6649341228620356, 0.9038332731164471, 0.9588917860646077, 0.8945194928389463, 0.49833043835950624, 0.7997712594855277, 0.8577935987172323, 0.7622736922026153, 0.8039391974899521, 0.7396811504731934, 0.8115340233127679, 0.801728888664367, 0.738451208106372, 0.5859674792922007, 0.1865203674848816, 0.8773430435604171, 0.36888329310067386, 0.8651817982269884, 0.9067615420962557, 0.8594983988587351, 0.7437750884018276, 0.9145224932934428, 0.9135679891815164, 0.8001832456898428, 0.6860977766129374, 0.9377826008632761, 0.9300369611912853, 0.6997062971069969, 0.5693182102579236, 0.3404656140239559, 0.7160591142088384, 0.7953146078011, 0.8869803873277935, 0.7639982823097876, 0.8681285227071118, 0.576868797021353, 0.93035102563313, 0.8375600281828176, 0.8279918435672958, 0.9266689436294401, 0.7559862346636359, 0.5099889666930224, 0.6914445842613687, 0.9651950326885705, 0.87851968214492, 0.8499702807396289, 0.4685752957996948, 0.7241546992314323, 0.7848147251007912, 0.7341394174346678, 0.7008877443692281, 0.340588975625529, 0.5013021766499856, 0.8321174529331695, 0.8818378666553491, 0.9176909075187759, 0.8634678749265305, 0.7436082905772717, 0.9343776659412377, 0.7668809937296346, 0.6243383802582345, 0.5332560471205093, 0.6907315465649003, 0.16626803588025432, 0.1668542888532837, 0.7408943843163458, 0.5221312328975666, 0.7457559475413279, 0.46389636934606376, 0.9292627865919654, 0.5268311186840582, 0.4244151934213653, 0.643310536612302, 0.8577438313980266, 0.7816208399762355, 0.8553382520847058, 0.7010035672814305, 0.5242572272016158, 0.9187320011579697, 0.8703498177621264, 0.6713045345576062, 0.9137982268836646, 0.8614414457916845, 0.9445662266054761, 0.8808216590199034, 0.7386378115490353, 0.8873009977622293, 0.9157094897337859, 0.6606038558129893, 0.9296803968514485, 0.8864322240790464, 0.5146720135715994, 0.8720710714485208, 0.9415427660945741, 0.9138701141498735, 0.6527559092576063, 0.8751970040938668, 0.9249766460056568, 0.801728888664367, 0.6575848465963361, 0.6934824043184128, 0.8619113960143526, 0.9419078024651042, 0.9591721389341828, 0.8397407150753159, 0.9084383840076588, 0.4963969309336195, 0.7359588175524252, 0.3531961907069324, 0.9279819479140234, 0.7752976919572294, 0.8665226278427577, 0.9515211055933231, 0.7314191754306454, 0.890886918514299, 0.3235491032739525, 0.3719939405423586, 0.6323804178173072, 0.8398006965792015, 0.8239469134189235, 0.8592101816891015, 0.7615002907198236, 0.8688259750909261, 0.8718104001390852, 0.5838074755684882, 0.8756470416862959, 0.901850575196968, 0.9451930143658351, 0.6253812669856891, 0.5890764576710766, 0.4921052500998711, 0.4862070578416567, 0.9170647663398394, 0.7035583451969506, 0.8476385889092957, 0.5603058978573646, 0.5810606890504925, 0.9088604673919816, 0.8903252600075929, 0.944267921154058, 0.9435968591480925, 0.938237366988842, 0.9357286047893738, 0.7961386682142712, 0.7840233885688647, 0.2513590507613302, 0.7389284097502917, 0.9053472250810051, 0.44438282424164377, 0.862281110352348, 0.8021059248496223, 0.9152740930046814, 0.643737358401971, 0.8540304955499701, 0.8613418170006786, 0.6911084183178322, 0.8848367871057808, 0.8387883096682573, 0.5942651630821018, 0.65691393717736, 0.6369979527510315, 0.8280658524313272, 0.9640736168216585, 0.6546311715671466, 0.5599819536107853, 0.48348053317652906, 0.7668016587569692, 0.03620763244300767, 0.7364400865449663, 0.37408584674942635, 0.8767503774172, 0.8743962287172513, 0.8751970040938668, 0.8833495792027257, 0.7091886355621774, 0.87006937054451, 0.7904001815220257, 0.8761418339280951, 0.8306834851111597, 0.7531715889012326, 0.38181207472529843, 0.6490458991820136, 0.9138057013338913, 0.9046222904886461, 0.17956061692355052, 0.7506163079023257, 0.8963285795381793, 0.8848361664653354, 0.9283037217377402, 0.45996158699034445, 0.7290858434196763, 0.8319094967702583, 0.6578018675312727, 0.18727567457681707, 0.8673410249845035, 0.9453298670648187, 0.9446538464906173, 0.19605573045952288, 0.6723831041639817, 0.3438281302059518, 0.37858973820495484, 0.6953170483296187, 0.21463507152544156, 0.26963792069965237, 0.3280912492037974, 0.8399932187801539, 0.420387898633768, 0.36522500752858966, 0.5810560693343539, 0.9306346767722963, 0.7167716539092029, 0.656736106921484, 0.5549139996760648, 0.6909161521388689, 0.591904263202073, 0.884703171197362, 0.866402281883595, 0.7582770814524421, 0.8990773411030794, 0.1818065866116437, 0.6222165686186035, 0.17261914235374884, 0.8156064679757086, 0.4851213943917703, 0.8871292211128762, 0.8398494053952754, 0.703270618172154, 0.6305543892506115, 0.7494149477175548, 0.1532408287022325, 0.6159732902773407, 0.738220551127759, 0.8354520044441791, 0.8536870432671441, 0.5751476712690671, 0.9077719201719568, 0.7878515691455199, 0.6672663325862807, 0.45293736875445273, 0.17058553029544155, 0.747933377844996, 0.8400163125056676, 0.4516778718827729, 0.6082670858563528, 0.8401843469141149, 0.7636885291754726, 0.789170795337903, 0.8128612802083497, 0.7522530659814418, 0.8086757686066508, 0.8356255123032285, 0.9241779635105248, 0.9674588597049086, 0.9368885694202199, 0.4990764491242286, 0.876561204324957, 0.554264192243629, 0.5967716244634195, 0.9060244606340249, 0.8401608718856799, 0.7329750583133859, 0.8021769878309102, 0.9316817655017511, 0.45488322534173153, 0.798578398438993, 0.7425236774748816, 0.5742682328784404, 0.4937681935814938, 0.8972164286692267, 0.8914273370768748, 0.9377613518261881, 0.8862258850530264, 0.8591757581361523, 0.7410678096850266, 0.6822336012657398, 0.9201658505843877, 0.6982578893131915, 0.5746709232170782, 0.7626532952948841, 0.7137703530889916, 0.7520971196461234, 0.4473853625959922, 0.7957460056304991, 0.4833174871501707, 0.8758467705785958, 0.4689303842787964, 0.6133612564737879, 0.8568681391705205, 0.6835133967314007, 0.9732070839986944, 0.21435716257549006, 0.5761668962420043, 0.4055433603128916, 0.3743394998756179, 0.9118635774953143, 0.964551884718591, 0.9306459334511011, 0.8424802355113449, 0.7739144871152517, 0.6872688771534424, 0.8590561833388345, 0.6714384475466295, 0.6408669500407106, 0.5203550269219845, 0.2856853969697174, 0.857760555506807, 0.9307094503226838, 0.6787928880949093, 0.8308635255795866, 0.29271374211533296, 0.6769315553524353, 0.23831547366416572, 0.5895099457120908, 0.8994675076574448, 0.8893400405584444, 0.8456825404777587, 0.5399612081435882, 0.6188649121485582, 0.9281492942813848, 0.7611740601422801, 0.46550237374781617, 0.8896861436466836, 0.9038901015569306, 0.5044440900554997, 0.9215480939667524, 0.6930273792518707, 0.8723244804196287, 0.5624338775604165, 0.9226297661236537, 0.8469231754225917, 0.9430557295321259, 0.9097116306258912, 0.5988707702267543, 0.3813853072548755, 0.8843832309478876, 0.9006952500629406, 0.918975987201669, 0.18997930334445084, 0.8923106748541326, 0.8461388699436441, 0.5973439234355874, 0.9544642924744549, 0.91770416680597, 0.9177239854204658, 0.17584552180125673, 0.9240099144459667, 0.48524948024905407, 0.8889685222180134, 0.5785503824403398, 0.7511953459672914, 0.6887596776945688, 0.6717539058356753, 0.7168761391602206, 0.7134478068952186, 0.834626350903405, 0.5715867980362679, 0.6588392688727011, 0.9488572786900573, 0.8920529250761863, 0.8891353183282249, 0.707981940789761, 0.926348680038428, 0.631489487929038, 0.7443856388661001, 0.9260754381930228, 0.9544642924744549, 0.8497401318990601, 0.5604010177433062, 0.8036334301115304, 0.7898153537185114, 0.8491431337122072, 0.6570881560807702, 0.8389599143569951, 0.7944137576415592, 0.8132668978866627, 0.44714680104169846, 0.7978021044641371, 0.41921696608658454, 0.38876183891604754, 0.9248463736054193, 0.4277915265084825, 0.6345107008491314, 0.8008942533173764, 0.5087430598332189, 0.9414938992689892, 0.6922115882765215, 0.8296175750175913, 0.8593339228153332, 0.8975141534758351, 0.5977126281557783, 0.9279478536756302, 0.6485770817571253, 0.8905823996589662, 0.9332072841984264, 0.9432461110830079, 0.9410120781436498, 0.6339696776630096, 0.7120962557761497, 0.5841709037351369, 0.5928970840420333, 0.9006589732900512, 0.936371533648048, 0.6907852379101131, 0.7675780198071424, 0.9444587893431046, 0.4702336163336472, 0.8925536722101626, 0.8158978708906081, 0.822780392485108, 0.8037335327290217, 0.8382351003285965, 0.8941557358589171, 0.4796498334522667, 0.926348680038428, 0.6842118015950474, 0.6463580983468415, 0.8292048071278182, 0.5834426687867836, 0.8419845362148763, 0.2431563391580561, 0.7763142135369961, 0.9390550746437164, 0.7774903237071782, 0.8141232663130791, 0.9444089886680379, 0.430401459478284, 0.9192677156927759, 0.8427595869840984, 0.87120858451521, 0.5693182102579236, 0.820012080301976, 0.58719119911586, 0.42769376643096113, 0.3542595869275313, 0.89579938191327, 0.8743523014696554, 0.7820497043505815, 0.5279069501129625, 0.8869579700149332, 0.45488774279476296, 0.8514781135508903, 0.8278297091497892, 0.663749097381813, 0.5132851713944618, 0.4906566565015208, 0.6415219885510332, 0.6991293681294938, 0.8150539074042624, 0.5800669536763935, 0.9583771200922359, 0.7366090055976814, 0.5747817696023392, 0.5315376696882942, 0.8074446941396305, 0.9038901015569306, 0.9087015650331977, 0.6697291810323083, 0.5800669536763935, 0.8807270543114014, 0.5135845984304893, 0.9352791850238339, 0.36120709973337456, 0.6206709330576408, 0.906286252315459, 0.7937202818717513], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [7.2, 7.2, 9.1, 6.2, 9.2, 7.1, 5.3, 8.5, 6.9, 7.5, 7.0, 6.9, 7.3, 7.3, 5.1, 6.4, 7.8, 5.7, 6.6, 8.2, 6.1, 7.4, 7.5, 8.8, 7.0, 7.8, 5.9, 9.7, 7.5, 6.2, 7.0, 7.8, 5.8, 7.1, 7.4, 9.1, 8.5, 6.3, 10.2, 6.6, 6.9, 8.2, 5.7, 7.1, 7.1, 5.7, 5.3, 6.7, 8.2, 6.6, 9.9, 6.3, 6.6, 12.3, 7.4, 7.6, 8.0, 6.5, 6.5, 11.5, 6.3, 6.5, 6.7, 6.0, 8.5, 5.8, 6.7, 7.7, 6.7, 8.5, 7.4, 8.6, 7.4, 7.0, 6.4, 6.6, 6.2, 7.9, 7.5, 7.7, 8.2, 6.9, 6.1, 6.9, 7.7, 9.2, 6.1, 6.5, 7.1, 7.0, 8.6, 5.8, 8.4, 7.4, 7.4, 6.6, 6.4, 9.2, 6.4, 7.7, 7.2, 7.6, 7.1, 7.6, 7.8, 7.8, 5.9, 5.6, 6.2, 6.5, 7.4, 7.2, 6.2, 5.5, 7.1, 6.7, 7.2, 5.2, 10.6, 7.1, 5.8, 6.3, 6.7, 6.9, 7.1, 7.0, 6.8, 8.7, 7.7, 7.1, 10.3, 10.1, 6.4, 6.6, 9.4, 7.1, 8.3, 6.4, 7.8, 7.9, 6.8, 6.5, 5.8, 6.4, 7.3, 5.7, 6.2, 6.4, 9.4, 7.5, 7.2, 7.1, 7.6, 6.7, 6.9, 8.1, 11.6, 5.9, 7.2, 6.4, 8.3, 9.6, 12.5, 6.2, 7.2, 7.3, 6.5, 6.4, 7.2, 6.6, 6.9, 5.1, 7.3, 8.2, 7.8, 7.1, 7.3, 7.0, 7.3, 7.0, 6.0, 8.1, 5.8, 8.9, 7.5, 5.9, 9.8, 7.5, 6.6, 7.3, 6.5, 7.7, 6.4, 6.0, 6.3, 7.5, 7.5, 6.7, 7.4, 6.1, 5.6, 9.9, 9.9, 10.0, 5.9, 7.2, 6.1, 9.9, 5.6, 5.9, 7.5, 5.1, 6.7, 9.8, 6.6, 6.6, 7.1, 6.4, 8.0, 9.8, 10.0, 5.5, 7.5, 8.6, 6.4, 7.4, 5.3, 8.5, 5.9, 7.3, 6.4, 9.6, 7.0, 7.2, 6.8, 7.5, 6.1, 5.7, 6.6, 6.8, 10.8, 7.0, 6.7, 6.4, 5.6, 11.3, 9.3, 6.8, 6.6, 9.1, 9.8, 7.6, 5.8, 7.3, 7.6, 7.9, 7.2, 6.7, 9.2, 12.3, 7.1, 6.5, 6.9, 6.4, 9.3, 6.4, 5.8, 5.6, 6.1, 6.6, 7.5, 6.8, 7.8, 6.3, 6.2, 6.7, 7.0, 7.7, 6.6, 5.9, 9.9, 6.4, 8.9, 6.8, 6.3, 7.2, 9.5, 5.9, 9.2, 6.7, 7.5, 9.4, 7.1, 5.3, 8.6, 9.9, 5.8, 6.3, 7.7, 9.2, 5.6, 7.4, 9.0, 6.5, 9.4, 8.7, 6.1, 6.3, 10.6, 7.0, 6.4, 6.1, 6.4, 6.4, 8.2, 7.5, 9.4, 9.0, 6.8, 6.5, 7.4, 6.2, 7.7, 7.6, 6.6, 7.1, 15.9, 6.2, 8.1, 6.4, 6.8, 9.1, 6.5, 6.9, 5.5, 9.9, 7.3, 10.8, 6.0, 6.7, 6.1, 6.3, 7.0, 9.1, 6.6, 7.4, 6.2, 8.0, 7.0, 7.0, 7.6, 8.0, 8.4, 5.6, 9.2], \"xaxis\": \"x\", \"y\": [0.2802292104526322, 0.9455194119275858, 0.4978743212349556, 0.5289145624519528, 0.28439238707197784, 0.2033309570226689, 0.27345747478543325, 0.8322873304845451, 0.389055896812549, 0.3675472469853882, 0.5781933746273124, 0.7401955299744071, 0.44969671697605845, 0.4367887814338696, 0.31593955341667695, 0.3775624358859999, 0.19282181046294666, 0.048451763306065584, 0.6005928650583868, 0.032225376113695775, 0.427412413738938, 0.23973251442015217, 0.13890126550157303, 0.8613925272127, 0.329663916828638, 0.19359965390713213, 0.6827271716759634, 0.1960905505555538, 0.08135735686643118, 0.39737240301928484, 0.13902987396822816, 0.6514166433739288, 0.6994753721471061, 0.7140886736258081, 0.5021795028970708, 0.48743245558712556, 0.5731139673640956, 0.8820820642542792, 0.559972149724866, 0.5061565591493914, 0.5066810377847554, 0.833805652807593, 0.6979972163580744, 0.3177574231538272, 0.13068190592986567, 0.758876109553896, 0.5681062961269688, 0.715544821914063, 0.762062625203523, 0.4464438677531786, 0.20995974230910305, 0.5262622410710028, 0.39442669669188163, 0.2537324982988368, 0.6775437642744659, 0.23876321589577687, 0.6369158982934647, 0.38960060362966165, 0.6034323722874255, 0.7769991715799629, 0.15199748354041337, 0.5641412449951732, 0.7590466800561823, 0.5969347905931296, 0.1048362779837843, 0.7217824369593382, 0.2662339163773806, 0.16472378978351135, 0.37760124376932414, 0.7071736299639594, 0.3436862995931572, 0.8384434752264291, 0.3635333644877426, 0.7813188949129265, 0.7279369976219869, 0.5641098847382463, 0.3863964747623771, 0.9209913370067284, 0.1477144681640183, 0.8809374658555192, 0.6533168894759348, 0.8873477284758582, 0.3697306267878623, 0.28319023347825867, 0.5203701741750857, 0.5523747693308857, 0.6387521731780509, 0.3881380695009739, 0.8487896327149285, 0.4636606453307818, 0.8384434752264291, 0.558266603669778, 0.21657231888677728, 0.3635333644877426, 0.5512671313974766, 0.5051039398599867, 0.5827915753039158, 0.49441682850108926, 0.47309171914705017, 0.6262595591688196, 0.5508242483721094, 0.47332791509789995, 0.7117569366896692, 0.3933786516273859, 0.16465066549244003, 0.7490394132223248, 0.769261050002088, 0.7431932405995126, 0.3141000916210982, 0.723735045552473, 0.6484132891031948, 0.688519894019609, 0.40496704226994307, 0.5803736122960511, 0.6327801522745691, 0.45115706990411364, 0.37268733756108086, 0.9009693101135351, 0.06496389958099598, 0.44431713201158524, 0.39960831974332744, 0.8662156944598043, 0.31018081106061823, 0.5339551117365043, 0.33311273919547707, 0.400132762133902, 0.8528754522806217, 0.14419347879543085, 0.11672350429510901, 0.44556702529145975, 0.6160120899414699, 0.13766892845409207, 0.5517204028384314, 0.5232178919035022, 0.35483403305733974, 0.4900213704561591, 0.8854578072659228, 0.43084122675663034, 0.7601186327653665, 0.14072030431570776, 0.6186690618327106, 0.5245054232921349, 0.7326259458716644, 0.5690781983520095, 0.4018508815425063, 0.24877469563805235, 0.7952501197393639, 0.8766221356386195, 0.303451532996695, 0.5357745481647883, 0.7096524147827454, 0.20877177283968149, 0.8635610141758273, 0.46736762313881036, 0.6061151992073851, 0.113015272873705, 0.40446014603085867, 0.6332606063976143, 0.648705381890928, 0.42186952587750404, 0.8047913565308571, 0.3017058309841093, 0.38406990132164637, 0.33494193042999065, 0.19929939967121216, 0.8624919783238055, 0.528785836409086, 0.43084122675663034, 0.47042159929499583, 0.5061565591493914, 0.5759491569657543, 0.8468794444363914, 0.20342296359496542, 0.5170831534483544, 0.3666753044655067, 0.6131723001375537, 0.4410646109528086, 0.6903416342484309, 0.3866428492574258, 0.4636606453307818, 0.4525459302795702, 0.03199256040434073, 0.7029629492254846, 0.2433141614541866, 0.548755973819273, 0.3775060302547258, 0.06593060991448157, 0.8745624549148976, 0.22931948662359403, 0.27267688907931714, 0.589328430619086, 0.8007160756317941, 0.5525637789187225, 0.5008522318356121, 0.4556212410144909, 0.17391722008742402, 0.43574637053357784, 0.3237440077649342, 0.6071692164257629, 0.6925152430641841, 0.592675381607996, 0.43854150134957587, 0.43854150134957587, 0.42437112972565305, 0.8061118855433299, 0.35195592295594336, 0.7605370065149419, 0.38898578429124253, 0.67510953655807, 0.872979709380305, 0.710510994258769, 0.720290290780972, 0.4820787970895852, 0.42019280799979697, 0.4304380754474639, 0.25285023254778977, 0.3238056884730761, 0.39471961640683584, 0.09510031985475974, 0.367046376808582, 0.21500793651835448, 0.8705359023101334, 0.6100742529031461, 0.6226449432624995, 0.7279369976219869, 0.3643494054700089, 0.09992017521484964, 0.41475515148757036, 0.6462260464983366, 0.14102909592513518, 0.48949585696458414, 0.5239520436918008, 0.6084413884537807, 0.5655473856702703, 0.9517420512476797, 0.7489379515982664, 0.4647937384849751, 0.7915321263825208, 0.44112279258530757, 0.5734340256727429, 0.6604471727860799, 0.4845203185458914, 0.6968730453869196, 0.5315374962198609, 0.8685951485887234, 0.6242442748350044, 0.2912097196987059, 0.7725938221565348, 0.2067629769731588, 0.30221725334927335, 0.13129342562285412, 0.6467789443522378, 0.6994753721471061, 0.11825382206919556, 0.41022417118631593, 0.4882665226122541, 0.7732287086973071, 0.25374762405010176, 0.49441682850108926, 0.3723877205427743, 0.652330313245635, 0.43667799883041203, 0.5964718913578133, 0.55172276504346, 0.24113559934961917, 0.8243980268882987, 0.7263843594269437, 0.43535214809021755, 0.8721122798612579, 0.18723914490145582, 0.6486906676970999, 0.11576704656818047, 0.4328241622975616, 0.491481212420291, 0.5264345378086769, 0.33856526784971647, 0.2967410926251248, 0.581398831228375, 0.5973776665460488, 0.6195406102170065, 0.37782717658841725, 0.323061133240968, 0.17420808473594895, 0.19634770547538957, 0.46492234760650425, 0.49613167963272686, 0.5812209036149294, 0.6057291775435286, 0.63414717387345, 0.5702687187355167, 0.8604975146328253, 0.6309022132706124, 0.48732991249542923, 0.6887148870948692, 0.41581945293096145, 0.5706760596351739, 0.4831274653996314, 0.06684727567316755, 0.49090643211649887, 0.15191610726090596, 0.2711405311223577, 0.7653618545702112, 0.09266565137124261, 0.4554350627407873, 0.19698919164573708, 0.6930185080649685, 0.5227537922811563, 0.50434568709929, 0.7082092780767422, 0.46058046365566996, 0.6735723234187477, 0.4285936050615775, 0.323061133240968, 0.5168500865319015, 0.6161307914674419, 0.23456444218973552, 0.3192004782541023, 0.21968945907811915, 0.5028183230931117, 0.43371621376298963, 0.6744209213341115, 0.5940260419772637, 0.13783310426722128, 0.5136444387530009, 0.5508647999875032, 0.4955911012838212, 0.9814394195009358, 0.8260225289794664, 0.17965956338109995, 0.46844896472597397, 0.6048119589659149, 0.3289160319090978, 0.2454606394453749, 0.7497022835596558, 0.683485355417811, 0.20995974230910305, 0.23504578258460665, 0.37175956099497537, 0.4875530438829156, 0.24982584224249993, 0.6282829625348888, 0.4520795162158371, 0.8200372413039435, 0.12832513643528837, 0.5299630655130737, 0.29552777318700446, 0.24021937552346023, 0.5429028773737552, 0.6311869746243346, 0.4145977043912777, 0.39329840463575844, 0.39070335653410526, 0.4286990948130573, 0.846836560604146, 0.6880850122626078], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (curr)\", \"type\": \"scatter\", \"x\": [6.4, 7.2, 6.8, 6.8, 7.9, 7.4, 7.3, 6.6, 6.5, 5.8, 10.0, 6.9, 6.6, 5.3, 4.4, 7.9, 6.9, 8.5, 9.1, 7.6, 7.6, 7.4, 8.3, 6.7, 7.8, 7.1, 6.4, 6.0, 7.6, 6.9, 7.3, 6.6, 6.9, 5.1, 5.8, 6.6, 6.5, 6.4, 6.8, 7.2, 6.7, 6.0, 7.6, 7.3, 8.3, 7.8, 7.8, 6.8, 7.9, 6.8, 8.0, 8.0, 6.8, 9.2, 6.9, 8.1, 10.7, 5.2, 6.6, 9.1, 6.4, 6.8, 6.6, 8.0, 6.7, 6.0, 7.7, 7.7, 6.0, 7.5, 7.1, 6.7, 7.7, 5.3, 8.0, 6.3, 6.1, 6.6, 7.7, 9.0, 6.4, 7.3, 7.5, 8.3, 7.6, 8.4, 9.3, 6.5, 6.9, 6.3, 6.3, 8.4, 5.6, 6.6, 6.0, 7.3, 11.6, 7.6, 11.8, 5.9, 7.2, 6.4, 6.9, 6.9, 7.1, 6.6, 7.9, 6.7, 6.2, 6.7, 6.7, 7.9, 6.9, 6.1, 6.4, 6.4, 5.0, 6.6, 6.9, 9.8, 5.0, 5.4, 6.5, 6.2, 8.2, 9.7, 7.8, 6.1, 9.3, 6.8, 6.2, 7.4, 6.1, 8.3, 6.2, 8.3, 9.2, 8.3, 6.8, 7.3, 7.2, 6.4, 11.9, 6.6, 6.2, 5.8, 8.4, 8.9, 7.1, 8.3, 7.0, 7.6, 7.5, 7.2, 6.5, 6.8, 9.9, 7.2, 5.9, 7.2, 7.1, 7.5, 6.2, 6.3, 12.6, 8.6, 8.9, 7.9, 8.3, 6.9, 6.3, 8.6, 7.2, 8.5, 5.8, 7.0, 6.1, 6.5, 6.0, 8.3, 7.7, 5.8, 6.9, 11.8, 7.0, 6.3, 9.1, 5.6, 7.0, 6.9, 7.8, 6.6, 6.5, 7.0, 6.2, 7.7, 6.7, 5.1, 8.4, 6.5, 7.2, 7.5, 5.8, 7.7, 6.6, 6.7, 8.5, 10.4, 6.6, 6.8, 5.9, 5.8, 6.7, 6.2, 13.2, 7.0, 5.9, 6.0, 5.6, 6.8, 7.0, 6.2, 7.8, 6.3, 7.3, 7.3, 6.0, 7.4, 8.7, 7.3, 6.9, 8.1, 6.9, 7.0, 10.3, 8.4, 6.6, 6.8, 7.0, 7.4, 6.8, 8.1, 8.4, 6.4, 7.1, 10.4, 7.3, 7.4, 7.5, 9.4, 7.9, 7.6, 8.1, 6.5, 7.0, 6.7, 7.5, 6.6, 6.7, 5.8, 6.8, 6.9, 7.5, 6.4, 7.3, 7.4, 7.6, 6.1, 6.8, 7.6, 6.8, 6.3, 5.4, 11.5, 6.7, 7.4, 6.9, 6.8, 5.6, 5.9, 8.4, 7.9, 6.0, 5.8, 7.0, 10.0, 6.1, 6.2, 5.3, 6.1, 11.5, 10.3, 6.9, 8.2, 6.4, 6.1, 6.1, 7.0, 6.9, 7.0, 8.0, 7.6, 7.5, 6.0, 7.4, 7.2, 5.9, 6.8, 7.8, 7.0, 6.2, 6.5, 6.2, 6.5, 5.7, 5.4, 7.2, 8.1, 8.5, 6.7, 7.0, 6.0, 7.7, 7.3, 10.1, 7.2, 7.4, 10.9, 6.8, 6.6, 7.0, 6.7, 9.1, 8.0, 6.7, 6.9, 7.3, 6.5, 7.6, 7.0, 7.1, 6.1, 7.4, 7.0, 7.7, 6.8, 7.0, 6.3, 9.8, 6.7, 7.8, 7.5, 8.7, 7.2, 7.6, 6.7, 8.6, 6.5, 7.5, 6.6, 6.8, 6.6, 8.2, 7.0, 8.8, 6.4, 5.7, 6.9, 6.2, 6.8, 5.6, 6.3, 7.9, 6.9, 10.9, 6.6, 5.8, 6.4, 6.8, 5.6, 4.9, 7.4, 6.8, 6.8, 6.5, 7.1, 7.2, 5.5, 6.9, 6.3, 6.4, 6.1, 5.2, 6.8, 6.9, 7.5, 7.2, 10.1, 7.2, 6.8, 7.4, 5.6, 6.3, 6.8, 6.0, 6.9, 6.2, 5.9, 7.0, 6.9, 8.3, 5.6, 8.2, 6.0, 6.7, 7.5, 6.2, 10.1, 7.0, 7.2, 5.5, 5.7, 11.1, 6.9, 11.5, 7.1, 6.6, 6.3, 6.6, 7.8, 6.7, 5.7, 6.7, 7.2, 9.1, 7.8, 8.1, 7.4, 6.5, 6.8, 7.4, 5.3, 7.6, 7.0, 6.2, 11.3, 5.0, 6.4, 6.0, 8.9, 6.6, 7.0, 6.5, 7.7, 7.2, 6.0, 6.5, 5.9, 6.4, 7.0, 6.7, 6.2, 6.6, 6.8, 7.5, 7.4, 8.0, 6.2, 7.2, 6.9, 6.2, 8.2, 6.0, 7.4, 8.3, 6.6, 6.4, 6.8, 5.6, 6.0, 6.4, 6.8, 7.0, 8.9, 7.1, 7.4, 6.9, 6.6, 8.4, 7.1, 8.7, 7.3, 8.3, 8.2, 9.0, 10.9, 8.6, 9.6, 7.3, 12.0, 6.0, 6.9, 7.4, 5.8, 5.6, 5.7, 6.7, 6.1, 10.6, 8.2, 7.3, 7.2, 6.4, 7.4, 7.9, 6.7, 6.8, 9.9, 6.4, 7.2, 5.0, 7.5, 5.3, 6.9, 5.6, 7.2, 6.9, 6.1, 6.9, 7.3, 7.0, 6.6, 7.4, 6.3, 8.0, 7.4, 11.6, 8.9, 7.0, 6.9, 6.4, 6.5, 10.4, 6.7, 5.6, 5.5, 10.6, 8.8, 6.9, 7.4, 7.6, 7.2, 6.0, 9.1, 5.8, 7.5, 7.0, 6.5, 6.0, 5.1, 6.7, 6.9, 7.4, 7.9, 7.3, 7.8, 8.5, 6.6, 6.7, 6.1, 7.3, 7.0, 6.0, 7.7, 7.4, 6.3, 6.0, 6.6, 7.1, 6.8, 6.4, 7.0, 5.7, 5.1, 7.4, 5.7, 7.7, 6.7, 6.6, 6.4, 6.8, 7.1, 8.0, 6.0, 8.0, 12.4, 6.6, 7.3, 7.0, 6.1, 6.6, 6.9, 6.4, 7.9, 6.6, 7.5, 9.6, 7.2, 8.0, 5.5, 6.3, 6.8, 6.9, 6.6, 7.4, 7.6, 5.6, 7.0, 6.9, 6.9, 6.9, 6.7, 6.8, 6.4, 6.8, 6.0, 7.5, 9.0, 10.2, 6.6, 7.8, 13.7, 7.1, 7.0, 7.1, 7.7, 6.1, 8.2, 9.5, 7.4, 6.5, 8.3, 5.7, 6.4, 7.8, 6.8, 6.7, 6.7], \"xaxis\": \"x2\", \"y\": [0.33396714643252134, 0.5044440900554997, 0.8874896900044845, 0.4686759077780351, 0.23831547366416572, 0.571181601185031, 0.7785327680196316, 0.7290551099174598, 0.9581131370131553, 0.6801000322064107, 0.413367674560271, 0.6667140739211237, 0.9108229754863395, 0.9275086157065797, 0.9186958597750785, 0.7191871442695774, 0.8184457509658746, 0.8597940676688322, 0.7947045908306632, 0.8244149680645384, 0.42771531534877594, 0.5315376696882942, 0.7136291946100958, 0.5510697799054304, 0.6393262665313312, 0.9016582766249417, 0.8560880110261746, 0.8947361144883382, 0.9102326114023062, 0.840723585394272, 0.9264645566705582, 0.5105903360131552, 0.752648770317166, 0.5855954083225455, 0.8989214048388485, 0.5190750352404293, 0.9560713253502463, 0.7273157243430202, 0.9279672131348602, 0.640103147954212, 0.9158977434209615, 0.9035955072010529, 0.7140955379655831, 0.233508355491505, 0.7280578325574358, 0.8810827811902006, 0.3966129217085586, 0.15541760955422754, 0.5851621750323275, 0.9046111951917862, 0.4177213302712193, 0.7993763114768937, 0.6978409661933959, 0.6473373667551029, 0.770784382977056, 0.6500641275496193, 0.548949563093737, 0.9803199442553986, 0.6150775052067382, 0.391333092160729, 0.6966682278280982, 0.9426748402861506, 0.9170092977635526, 0.844625652038695, 0.5621782696252592, 0.8935808323282117, 0.6792214086077275, 0.6719996755401956, 0.5252591274442797, 0.7277045758687855, 0.4685752957996948, 0.8616549355667619, 0.347491516391863, 0.8224130863808733, 0.5340790568488665, 0.6711667658766297, 0.5277539611022016, 0.7226430813715845, 0.8140972745487615, 0.3280236940194876, 0.9543080196225542, 0.7752655593026647, 0.9223925066666061, 0.8588031784191832, 0.6345107008491314, 0.9393010047953068, 0.7897067132703484, 0.8608062836413887, 0.8367885032124018, 0.38555642305179116, 0.8611944449682004, 0.9172341012895443, 0.9206892306522243, 0.9500505925695213, 0.537798347971205, 0.9173482789702866, 0.44454351342386716, 0.8909704850569525, 0.7351932580165473, 0.6818328744935735, 0.7981559962965634, 0.7626532952948841, 0.807353254900461, 0.964411205143099, 0.4685752957996948, 0.6986526320119215, 0.1956969407137045, 0.9233481403380283, 0.8218375601976645, 0.8536269727611236, 0.5637680470866036, 0.42267134533232753, 0.93003590801509, 0.9364808605729722, 0.8816060831574614, 0.9663102962713933, 0.8345570787709832, 0.4997893986747249, 0.7921603237806832, 0.5586815647381762, 0.8622246464681924, 0.9828719612298703, 0.909295720392338, 0.9476267884443668, 0.5395521774612226, 0.901360886913609, 0.39410444510430487, 0.9262213132200262, 0.6627387433216217, 0.9629433821448677, 0.9614311452267452, 0.9802968012486629, 0.933760787013923, 0.34432718187202205, 0.63596173557573, 0.624364378916488, 0.7417789548241253, 0.7300918276682445, 0.6968315453320488, 0.7840233885688647, 0.8958841271622066, 0.5417426694559925, 0.7102579146160282, 0.6004345411549624, 0.515920701757342, 0.7587882454650442, 0.5029588531082266, 0.6887596776945688, 0.8642849605932809, 0.6469572639767995, 0.8103639651534781, 0.939764354405301, 0.694136577696587, 0.6593725303534554, 0.9646797005081557, 0.7979900311745153, 0.792123904710467, 0.8869579700149332, 0.7351250317969437, 0.5332560471205093, 0.9406873315653421, 0.39362685027924615, 0.9466602521798594, 0.8394325033041952, 0.6633442657978572, 0.8126408700417265, 0.7332457619716184, 0.08024070404520958, 0.8667774471450977, 0.6466814331404849, 0.912366876100516, 0.656670904734599, 0.8701678467707724, 0.8875925797813499, 0.9658725076002231, 0.7668332861852056, 0.8604440887473094, 0.934384507524058, 0.9605946056867319, 0.951253157591183, 0.5749289095213865, 0.6279243005170476, 0.7937202818717513, 0.7665301650725991, 0.700127941221274, 0.8531107444728586, 0.7947045908306632, 0.8870566665876504, 0.5476228787844645, 0.8410401833568673, 0.8736671065238262, 0.6519898659949606, 0.936943112068646, 0.9077719201719568, 0.8071889556778997, 0.8815615400732472, 0.8935313268029127, 0.8782891297971865, 0.5029588531082266, 0.5797201450332624, 0.9416775458320723, 0.5958140198486584, 0.2485157288688957, 0.932021424688801, 0.8531502837407814, 0.6344194678828672, 0.632587077283238, 0.9121448358615357, 0.5776545535910985, 0.9052765174806566, 0.8580390107418799, 0.8998644401112552, 0.6784536879503494, 0.9458342431661766, 0.21387363850783603, 0.9530348339880965, 0.7307391114165022, 0.7187682731289255, 0.6905635603269331, 0.9569274903702625, 0.9287384091375525, 0.3856984054091925, 0.504413920551941, 0.5389739198483336, 0.5921068831639978, 0.10702848140489757, 0.8772993497727819, 0.6361944011057532, 0.8952999713010865, 0.7069578609115064, 0.10632960186243966, 0.6465592619811017, 0.9116333268133815, 0.9210441535829985, 0.9483358221641291, 0.5800224234700003, 0.896951343689222, 0.8958659323404018, 0.8896861436466836, 0.7763142135369961, 0.778627444633172, 0.9274605647284293, 0.9167924025380936, 0.6422094408272838, 0.6363725079258666, 0.8694129796739031, 0.5693182102579236, 0.5315376696882942, 0.6814536952243052, 0.30089534057709466, 0.6689448970920832, 0.6419522618821227, 0.6500641275496193, 0.8221968069187356, 0.9285763346020383, 0.8495153837633861, 0.7135666997345446, 0.8850789772017983, 0.9128367188568884, 0.8709442503982084, 0.44714680104169846, 0.7147831401969469, 0.6814536952243052, 0.5823319261018008, 0.7718122970862826, 0.8925058444773368, 0.9249991097277733, 0.7849066379312727, 0.5120166815330335, 0.7863291630268572, 0.8171821177205619, 0.8878235148823457, 0.9813953955585096, 0.5009899161211654, 0.6787020040856314, 0.2747106808400709, 0.6998114428322438, 0.7191783799678735, 0.7566715075843347, 0.7741630673610131, 0.692871858980435, 0.8706970297938403, 0.9226518689226377, 0.619213859232465, 0.9620625840847012, 0.8161066853745392, 0.7984578805051198, 0.8987836568806694, 0.27900511725120763, 0.747868261422589, 0.8013372150606806, 0.4430395412241901, 0.8082746512504794, 0.9248395818955686, 0.8132668978866627, 0.7926355964369082, 0.7243101498981422, 0.8251498778038484, 0.865753667016409, 0.8784859927081519, 0.9613966942665844, 0.8380103992838959, 0.9376908870460701, 0.8505645904112248, 0.5317253080143199, 0.8756470416862959, 0.8823120896825394, 0.8920529250761863, 0.9565288857220365, 0.92576324319171, 0.8397457208604353, 0.8008835764985612, 0.7620555647282774, 0.6333567796033132, 0.8986985644274655, 0.8289197139212982, 0.38568054861828666, 0.4358764146033148, 0.7013568331933456, 0.5524769805317635, 0.8654015550049637, 0.9625385348003681, 0.4997035751430624, 0.5940434106189647, 0.29640429037896177, 0.9370396801623051, 0.7496358493500708, 0.8521916566704996, 0.7519935213994349, 0.8956127660014477, 0.7563308848917781, 0.5425355780301907, 0.1652985164032473, 0.5777375433929663, 0.5926841497777402, 0.5247451599628447, 0.6215406511606532, 0.646742228322253, 0.5236567091352762, 0.8105889943537302, 0.7614647275399787, 0.7272264480694343, 0.44438282424164377, 0.8051848688934031, 0.253979247575754, 0.8737269176380216, 0.7884186533408385, 0.5226162157005312, 0.7776146375974927, 0.8021344726910251, 0.6794204065079696, 0.8398669626756513, 0.3743394998756179, 0.6593725303534554, 0.41008410759983227, 0.8726624594592295, 0.31336232876890546, 0.6187135046228962, 0.9208146539756937, 0.8948907807194619, 0.9475948217130945, 0.7098971478357265, 0.41970311630379203, 0.5524505095188592, 0.6689295490636696, 0.39534528644804523, 0.6686700461744643, 0.6608417181144597, 0.6289006219381473, 0.8112353209803558, 0.9675531845963172, 0.3468688843876404, 0.8171815196180959, 0.9315945487332388, 0.7612383340144859, 0.43979370974717685, 0.9452166580978265, 0.810349906376065, 0.4979189466877109, 0.9054024939516333, 0.7506263221664519, 0.8595966107872783, 0.9041757536760852, 0.5120166815330335, 0.9246344940597735, 0.622364539475366, 0.7975959936185795, 0.9376528402833735, 0.8270495791839716, 0.7463426393970082, 0.8508295060861325, 0.5277539611022016, 0.7926521549058593, 0.8343380415579561, 0.7973631232158779, 0.5423298306356671, 0.6253812669856891, 0.9342151247863544, 0.9064095870896521, 0.8428584418618921, 0.5680191878381406, 0.8230633503438987, 0.857993972512287, 0.8312116035859974, 0.8886868130574391, 0.5695902702544526, 0.8750573328895943, 0.47134086624147714, 0.6082670858563528, 0.8571520978358925, 0.7006810412396262, 0.6001343818465046, 0.8680196363335714, 0.7833148206731655, 0.835330250744176, 0.6883000602161935, 0.4297997702781997, 0.7132181587745201, 0.941909753873568, 0.9298379484442667, 0.8950633078112005, 0.9652574497835966, 0.8593048115498744, 0.23022113319019433, 0.5548683876071567, 0.8789570823277312, 0.7176343272433334, 0.7135972690872326, 0.900955402304434, 0.89110615578316, 0.8021344726910251, 0.36734125225010755, 0.9233813125795639, 0.9269988231022361, 0.6021478506882372, 0.27064660283581765, 0.7595966254948197, 0.5317253080143199, 0.9626288904553877, 0.518871521713375, 0.4244151934213653, 0.8784852709235653, 0.667697582798242, 0.6791650855490978, 0.8659372985570389, 0.5217980090164113, 0.9757802673562255, 0.20769640873195563, 0.6900575067285889, 0.15051833553221247, 0.8476988333501053, 0.12043274000614122, 0.6546311715671466, 0.412102187638673, 0.6339696776630096, 0.6925917751558638, 0.8074446941396305, 0.8417042066658985, 0.4702054036006336, 0.8107456318417504, 0.934253622333564, 0.9671353887875448, 0.3776875782453083, 0.5133306968464912, 0.8279918435672958, 0.7295730380004212, 0.8398957027397556, 0.7470826509089123, 0.7722124156410631, 0.3944809481034696, 0.5801047158883857, 0.7134138458261836, 0.8265590446981121, 0.5836238058504062, 0.7538957359152121, 0.9708936701567454, 0.41507295289487073, 0.9039211350062085, 0.5109703825452502, 0.8880660412534, 0.6332514250278477, 0.703270618172154, 0.863031725372896, 0.9601349291832292, 0.5845797646527732, 0.8357575010967041, 0.9584406458449958, 0.8733333206292072, 0.4740801794177068, 0.5787650908025566, 0.38525623454815555, 0.5715075300165849, 0.951253157591183, 0.831291834366621, 0.6482062646591596, 0.5447536045265621, 0.8456825404777587, 0.5358725178581014, 0.8893400405584444, 0.5955893395860203, 0.9408369636189147, 0.7580589814818564, 0.4244151934213653, 0.7636885291754726, 0.9532052815091139, 0.6686700461744643, 0.39683939049776734, 0.8309978518015588, 0.06774730328187532, 0.8934061610794648, 0.9459413258233057, 0.8507977517004935, 0.9694554821790147, 0.8640493534313302, 0.8409166048571896, 0.9059760843724536, 0.7278052027863667, 0.8952246802917138, 0.39534528644804523, 0.9558702864115934, 0.9178754126151818, 0.7504628435478695, 0.7568870052952757, 0.32046258648166903, 0.9712495894387816, 0.7125870341029702, 0.8286889773580812, 0.929575727770858, 0.8422483936479932, 0.60065365322741, 0.5775074082600717, 0.7505976846167132, 0.5317253080143199, 0.9590110623565244, 0.9651712957082627, 0.7333643603414158, 0.7757825668725274, 0.8928390517037824, 0.2578168736401774, 0.5355488836719776, 0.8408692583280314, 0.7849780542174357, 0.8711681462620556, 0.8447990405440073, 0.9571933326515756, 0.9307123551507692, 0.6421242495412457, 0.9239207054420927, 0.9336219461922934, 0.4244151934213653, 0.5673643045526261, 0.8301442064454496, 0.528471943574542, 0.8835542071774324, 0.8820947700128993, 0.4561713647735051, 0.584381944856391, 0.9493936477483658, 0.7816316980556022, 0.7770145472448273, 0.8495153837633861, 0.8318035560268552, 0.5220388622338656, 0.8589980209217414, 0.21216021099657945, 0.8782303617207965, 0.901850575196968, 0.7683760396387002, 0.9559989503713009, 0.938411491366706, 0.7225398931917507, 0.5918361617892179, 0.8596378534897678, 0.8816239240572568, 0.9296844522785247, 0.8299758417251202, 0.7538846798551382, 0.931253582726863, 0.6902425303942638, 0.9299571155275668, 0.35461708236434614, 0.6119587629530028, 0.8979450471026776, 0.8782891297971865, 0.6144930729026484, 0.5601837238662909, 0.4230258756549153, 0.5115702372514986, 0.6133200318312215, 0.8287048127179734, 0.42887934024879554, 0.5543929044930882, 0.5414149972460248, 0.7453725251924848, 0.6522898344923613, 0.6445138145159856, 0.9212190995841192, 0.6991293681294938, 0.9188224881967051, 0.9444881948020799, 0.8399825546316605, 0.6440269003431431, 0.45260210695563535, 0.6678228102737954, 0.8535669746933884, 0.23469888428232324, 0.7581156815660375, 0.8329520097124233, 0.5886389680190937, 0.4250130050586104, 0.290761161529129, 0.9065968169685268, 0.39757013049667705, 0.9584529405260903, 0.24804178200132845, 0.8400605958344816, 0.9562762484868867, 0.5923100188758571, 0.5355488836719776, 0.6866862751474886, 0.753715093249364, 0.9302702282582556, 0.8405005145861136, 0.7758456574858743, 0.8270123797965384, 0.9270997487744173, 0.8779999285967196, 0.6350604679157676, 0.9057987369792326, 0.9732730617650076, 0.28007269673131574, 0.5393237551960537, 0.9509318156255189, 0.8055358405733448, 0.8512314640165554, 0.6752183046546253, 0.9766791413071304, 0.26893819095773785, 0.5105552073939665, 0.7964242570425004, 0.9159462749375985, 0.46312559485344046, 0.7889853219989779, 0.5331772070153998, 0.6250130361556073, 0.5340700079782073, 0.8981158701031157, 0.8424802355113449], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [7.3, 6.4, 7.5, 5.6, 6.9, 6.8, 6.5, 9.1, 9.0, 12.7, 7.6, 7.2, 6.4, 7.3, 6.7, 6.8, 6.8, 11.9, 6.6, 6.4, 6.8, 8.0, 6.3, 6.5, 6.6, 7.4, 7.2, 7.5, 5.3, 7.0, 7.5, 5.3, 8.1, 8.2, 6.9, 5.9, 9.8, 7.5, 7.0, 6.0, 8.6, 7.5, 6.9, 7.0, 6.4, 6.5, 8.3, 8.3, 6.0, 7.4, 6.2, 7.5, 9.0, 8.0, 7.7, 7.9, 7.4, 15.6, 7.6, 6.9, 15.5, 8.1, 6.3, 10.0, 7.0, 6.8, 8.5, 7.4, 6.8, 7.3, 6.6, 5.6, 4.9, 8.8, 6.6, 7.1, 7.2, 7.0, 6.2, 8.0, 7.6, 9.2, 6.0, 7.9, 8.3, 8.2, 7.9, 7.8, 6.7, 7.5, 6.3, 7.6, 9.3, 7.7, 6.9, 7.6, 8.0, 8.9, 6.8, 6.3, 10.0, 9.4, 6.8, 6.5, 8.9, 7.0, 9.0, 6.0, 6.0, 7.6, 7.9, 7.1, 6.9, 6.9, 9.6, 8.9, 6.6, 6.6, 6.4, 8.4, 5.8, 6.6, 7.0, 7.8, 7.2, 7.5, 5.7, 11.8, 7.2, 6.8, 6.9, 6.6, 7.7, 8.8, 7.1, 7.2, 6.9, 9.0, 7.2, 6.5, 7.9, 8.3, 8.6, 8.4, 9.5, 7.4, 7.9, 6.4, 7.9, 6.9, 7.2, 7.9, 7.1, 7.2, 7.0, 7.2, 6.1, 6.8, 6.9, 8.0, 8.4, 6.6, 7.1, 7.6, 7.4, 7.7, 5.9, 6.7, 6.6, 7.4, 6.6, 7.2, 7.1, 6.6, 7.9, 5.8, 7.0, 6.8, 6.6, 6.1, 8.0, 4.2, 11.9, 6.4, 6.8, 7.5, 6.3, 6.8, 7.8, 6.2, 7.2, 8.2, 7.7, 7.0, 7.2, 7.3, 7.8, 5.6, 7.1, 6.8, 6.8, 6.2, 6.4, 6.9, 7.1, 7.2, 6.8, 10.0, 6.4, 7.3, 9.3, 5.8, 6.7, 8.5, 6.0, 6.7, 6.4, 8.8, 7.1, 6.5, 6.9, 6.7, 8.3, 6.4, 6.8, 6.1, 7.6, 7.0, 8.2, 4.9, 6.3, 7.6, 6.5, 9.2, 8.4, 6.7, 5.5, 6.1, 7.7, 7.4, 6.2, 7.2, 7.9, 7.1, 7.0, 6.0, 7.5, 5.7, 8.2, 6.4, 7.5, 6.8, 9.4, 7.5, 6.5, 6.5, 7.1, 6.8, 7.2, 10.8, 6.5, 7.2, 6.4, 6.4, 8.2, 6.4, 7.1, 6.2, 6.2, 6.4, 7.1, 8.3, 7.9, 6.7, 9.2, 6.0, 7.4, 7.0, 6.7, 6.8, 8.3, 6.1, 6.9, 5.8, 8.9, 6.0, 8.6, 6.0, 7.8, 9.8, 6.4, 5.2, 7.2, 7.2, 6.4, 9.3, 6.3, 6.4, 6.2, 8.9, 6.6, 13.0, 6.2, 6.8, 7.0, 6.4, 11.1, 7.4, 8.1, 6.4, 7.5, 6.4, 8.2, 7.1, 7.6, 7.2, 7.6, 6.7, 6.2, 5.4, 11.0, 6.3, 5.7, 6.6, 8.9, 6.8, 6.3, 12.2, 6.6, 4.9, 7.6, 6.4, 7.2, 6.3, 7.6, 7.2, 5.8, 6.8, 6.5, 7.3, 6.9, 9.0, 6.8, 8.0, 10.4, 8.1, 8.3, 7.3, 6.5, 7.6, 7.0, 7.1], \"xaxis\": \"x2\", \"y\": [0.8142007211296887, 0.07257977436397642, 0.7430932382113554, 0.8214862427787604, 0.5698848321031316, 0.6048119589659149, 0.6466669219762841, 0.14510080060429495, 0.2250304680670007, 0.28492472637839966, 0.42061632734231896, 0.8281252124183194, 0.49622399336621903, 0.3482895521074759, 0.4678833354511545, 0.5708968386647719, 0.37048677721847617, 0.553632248395139, 0.8702137350251022, 0.42186952587750404, 0.8696774950675754, 0.5410576963494411, 0.3971326977900686, 0.3275001196198921, 0.9448289227093116, 0.7109941475090589, 0.41925580570138304, 0.3675472469853882, 0.6721911818800557, 0.5562207270314473, 0.5262426608517637, 0.3244609607385458, 0.15056615442564347, 0.15676979724311627, 0.6037730696030339, 0.6342511279653397, 0.021947035536558718, 0.32429164429335744, 0.5678746850743716, 0.3571680467137555, 0.7755534309390314, 0.3240287891037917, 0.699424662214302, 0.5151532452376618, 0.7564675819717819, 0.38343591026479057, 0.19811005648518398, 0.3168419703358067, 0.5315947262677626, 0.9269044449273315, 0.8260225289794664, 0.451791899378283, 0.830516920403184, 0.47128602930186, 0.19027823806377472, 0.5181346713949518, 0.29552777318700446, 0.45414400334446664, 0.39329840463575844, 0.42327932510626076, 0.45838907164509224, 0.2233864252642039, 0.3628419195926303, 0.6709353200988277, 0.46058046365566996, 0.25551237833043455, 0.7234147543269824, 0.1481282262733752, 0.314935793994079, 0.20050531530561894, 0.37453315488553635, 0.701015529968035, 0.6343341418527783, 0.1739320900588749, 0.734996253073231, 0.8172229478314255, 0.3598554146739685, 0.7121055211356295, 0.2620604909731644, 0.3421138035730516, 0.6951268813066005, 0.35208221297891723, 0.452099210446082, 0.18907620085798427, 0.5444201651108793, 0.6484058972837882, 0.3258186925596978, 0.5963383680780668, 0.6202666247822538, 0.576738593946626, 0.5054992484109841, 0.2972245631729925, 0.6844333356791464, 0.42629475072919953, 0.4405153833121037, 0.01207867704715336, 0.7609288944606691, 0.23951123982998349, 0.09310514674080905, 0.5084920166510624, 0.33067609257366243, 0.36481899584296196, 0.5708968386647719, 0.3194802059637459, 0.14207297841267416, 0.5776897120055972, 0.2026163425795633, 0.37909000048748537, 0.38206764842015895, 0.41324683104354176, 0.17826143731067332, 0.42339414872454434, 0.39148091864802853, 0.3511350413575442, 0.8053393751847749, 0.5937005322868365, 0.6849942580153355, 0.38930033076762494, 0.5168500865319015, 0.5699073288866824, 0.5376087249833421, 0.8185832461647057, 0.25950508036415604, 0.20394483716883388, 0.3303044530853749, 0.2528102968078532, 0.8477719856767125, 0.5217124250004609, 0.3303044530853749, 0.5382885532339231, 0.9625763866028243, 0.6536174904341296, 0.42629475072919953, 0.6458781618432388, 0.46574001023909845, 0.37268733756108086, 0.8180085473348132, 0.35493594975273335, 0.2423640089427935, 0.3636330633241046, 0.6421622311157122, 0.5444201651108793, 0.7396308412796291, 0.9036153464846048, 0.21101569987323432, 0.6004024464464508, 0.7595861882737439, 0.486549602332862, 0.2379839758891197, 0.5147825233229498, 0.2065932277190248, 0.4342628292980428, 0.5940848250235929, 0.4857193175270624, 0.5332610244722983, 0.5402196969638672, 0.8578846895389459, 0.5290225674595067, 0.6074669506688956, 0.1847839155105034, 0.3581391437324269, 0.4304380754474639, 0.8410120374942113, 0.5810086483513661, 0.19026233744636453, 0.7223494520380469, 0.8589928738613049, 0.8374625942163022, 0.781203852328267, 0.73983195178881, 0.41156537259256004, 0.7482873396984137, 0.44431713201158524, 0.7113673874393347, 0.49869552495399233, 0.7627102864663872, 0.37193390769028617, 0.37187810520956766, 0.3773291605703562, 0.8719651627687759, 0.6218762459828849, 0.3781393537983126, 0.553632248395139, 0.47624084907999176, 0.774399353278846, 0.5840424935194366, 0.5601025471409736, 0.6186690618327106, 0.620611700356168, 0.5755798886129706, 0.15047650536569443, 0.5530049338021776, 0.6597439619439023, 0.8300222117931148, 0.3490158529243493, 0.4410646109528086, 0.5067909967309752, 0.5851482063434866, 0.7149827463187939, 0.4849259975950144, 0.2094210588097294, 0.33399024531412796, 0.4083143545243069, 0.7497022835596558, 0.7817929239213606, 0.7637421953724776, 0.3825655414920891, 0.6611482494098961, 0.19022241257108333, 0.44972084577511023, 0.5476732603321269, 0.4831274653996314, 0.5077048340566679, 0.7289504589448288, 0.4379810490617926, 0.8017221455714771, 0.6434673631716396, 0.5059779734745421, 0.6065367192264559, 0.650368705032214, 0.34567471266024347, 0.39561589000187136, 0.3427787545601037, 0.4676404271158623, 0.5332283386400669, 0.4519108142444285, 0.40662831629925006, 0.42305576187259053, 0.22032895172816622, 0.5278715769330472, 0.43679486629948455, 0.743933429392776, 0.5269515041023835, 0.5008800654866953, 0.214168174561682, 0.44879088851457377, 0.683485355417811, 0.807753104897186, 0.42629475072919953, 0.8502951424821861, 0.17421175568219957, 0.25491371883486935, 0.7595861882737439, 0.6571724132942184, 0.7813188949129265, 0.5626906653340306, 0.8674288259883418, 0.6600514650598344, 0.4827749661719035, 0.5456147119159479, 0.39827550056677263, 0.27323823737433794, 0.695896529362927, 0.5048820477254727, 0.5422349097465021, 0.5610936746718964, 0.6571724132942184, 0.3088751107498249, 0.45428761266464013, 0.6604471727860799, 0.43371621376298963, 0.6171893197168647, 0.8100511550343341, 0.8100511550343341, 0.605832578461134, 0.5526475584669951, 0.4275055171336787, 0.8734720021260204, 0.8508295378350301, 0.5807723706867254, 0.8272749548927728, 0.2670652478909882, 0.7020144194675465, 0.4615566916191992, 0.7055847950248242, 0.43389869234556755, 0.6071692164257629, 0.3496825637352313, 0.23676491619791426, 0.7057755976874825, 0.15539001443149586, 0.6187538615870153, 0.8735882828904331, 0.30049486749739024, 0.23191705420611952, 0.8913917397916864, 0.4977157214618499, 0.16961113509580228, 0.8485494795219795, 0.4760032757956232, 0.5053843099270294, 0.2676015269871764, 0.3627664421236291, 0.15146266807038725, 0.7898179638281774, 0.6145296307645981, 0.3790380236797623, 0.3003532640340299, 0.6086112016774773, 0.39906793889171593, 0.8185832461647057, 0.6715802865662828, 0.8260225289794664, 0.6056902064850618, 0.400132762133902, 0.39471961640683584, 0.6449859309106076, 0.5637152910565628, 0.39949420960438964, 0.5490401551410112, 0.4398875418860128, 0.30916577334906253, 0.7093303227687476, 0.4562508424819209, 0.40444044759428516, 0.5773483646962835, 0.447777692034652, 0.4961542215384683, 0.32474312180562226, 0.21192693199409943, 0.9056903490933487, 0.5013816399998683, 0.758876109553896, 0.6364928148646596, 0.2952804752502578, 0.4748951900520853, 0.43679486629948455, 0.5479962315186364, 0.4728142838839701, 0.6343341418527783, 0.12248807650217919, 0.5052525886146573, 0.8281252124183194, 0.8930081609652758, 0.36283726088930296, 0.8098196742550625, 0.656477404357746, 0.193885049884708, 0.5269515041023835, 0.49858469647139786, 0.32780472036158087, 0.24927512797396847, 0.6148718578314069, 0.10691527318901187, 0.136775438340409, 0.8489192718114075, 0.2600203086082801, 0.8142007211296887, 0.5269515041023835, 0.7966615933629455, 0.5633234794197017, 0.767479452333631], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"fixed.acidity\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"fixed.acidity\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}}, {\"id\": \"fixed.acidity_bad\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (ref)\", \"type\": \"scatter\", \"x\": [7.2, 7.2, 9.1, 6.2, 9.2, 7.1, 5.3, 8.5, 6.9, 7.5, 7.0, 6.9, 7.3, 7.3, 5.1, 6.4, 7.8, 5.7, 6.6, 8.2, 6.1, 7.4, 7.5, 8.8, 7.0, 7.8, 5.9, 9.7, 7.5, 6.2, 7.0, 7.8, 5.8, 7.1, 7.4, 9.1, 8.5, 6.3, 10.2, 6.6, 6.9, 8.2, 5.7, 7.1, 7.1, 5.7, 5.3, 6.7, 8.2, 6.6, 9.9, 6.3, 6.6, 12.3, 7.4, 7.6, 8.0, 6.5, 6.5, 11.5, 6.3, 6.5, 6.7, 6.0, 8.5, 5.8, 6.7, 7.7, 6.7, 8.5, 7.4, 8.6, 7.4, 7.0, 6.4, 6.6, 6.2, 7.9, 7.5, 7.7, 8.2, 6.9, 6.1, 6.9, 7.7, 9.2, 6.1, 6.5, 7.1, 7.0, 8.6, 5.8, 8.4, 7.4, 7.4, 6.6, 6.4, 9.2, 6.4, 7.7, 7.2, 7.6, 7.1, 7.6, 7.8, 7.8, 5.9, 5.6, 6.2, 6.5, 7.4, 7.2, 6.2, 5.5, 7.1, 6.7, 7.2, 5.2, 10.6, 7.1, 5.8, 6.3, 6.7, 6.9, 7.1, 7.0, 6.8, 8.7, 7.7, 7.1, 10.3, 10.1, 6.4, 6.6, 9.4, 7.1, 8.3, 6.4, 7.8, 7.9, 6.8, 6.5, 5.8, 6.4, 7.3, 5.7, 6.2, 6.4, 9.4, 7.5, 7.2, 7.1, 7.6, 6.7, 6.9, 8.1, 11.6, 5.9, 7.2, 6.4, 8.3, 9.6, 12.5, 6.2, 7.2, 7.3, 6.5, 6.4, 7.2, 6.6, 6.9, 5.1, 7.3, 8.2, 7.8, 7.1, 7.3, 7.0, 7.3, 7.0, 6.0, 8.1, 5.8, 8.9, 7.5, 5.9, 9.8, 7.5, 6.6, 7.3, 6.5, 7.7, 6.4, 6.0, 6.3, 7.5, 7.5, 6.7, 7.4, 6.1, 5.6, 9.9, 9.9, 10.0, 5.9, 7.2, 6.1, 9.9, 5.6, 5.9, 7.5, 5.1, 6.7, 9.8, 6.6, 6.6, 7.1, 6.4, 8.0, 9.8, 10.0, 5.5, 7.5, 8.6, 6.4, 7.4, 5.3, 8.5, 5.9, 7.3, 6.4, 9.6, 7.0, 7.2, 6.8, 7.5, 6.1, 5.7, 6.6, 6.8, 10.8, 7.0, 6.7, 6.4, 5.6, 11.3, 9.3, 6.8, 6.6, 9.1, 9.8, 7.6, 5.8, 7.3, 7.6, 7.9, 7.2, 6.7, 9.2, 12.3, 7.1, 6.5, 6.9, 6.4, 9.3, 6.4, 5.8, 5.6, 6.1, 6.6, 7.5, 6.8, 7.8, 6.3, 6.2, 6.7, 7.0, 7.7, 6.6, 5.9, 9.9, 6.4, 8.9, 6.8, 6.3, 7.2, 9.5, 5.9, 9.2, 6.7, 7.5, 9.4, 7.1, 5.3, 8.6, 9.9, 5.8, 6.3, 7.7, 9.2, 5.6, 7.4, 9.0, 6.5, 9.4, 8.7, 6.1, 6.3, 10.6, 7.0, 6.4, 6.1, 6.4, 6.4, 8.2, 7.5, 9.4, 9.0, 6.8, 6.5, 7.4, 6.2, 7.7, 7.6, 6.6, 7.1, 15.9, 6.2, 8.1, 6.4, 6.8, 9.1, 6.5, 6.9, 5.5, 9.9, 7.3, 10.8, 6.0, 6.7, 6.1, 6.3, 7.0, 9.1, 6.6, 7.4, 6.2, 8.0, 7.0, 7.0, 7.6, 8.0, 8.4, 5.6, 9.2], \"xaxis\": \"x\", \"y\": [0.7197707895473677, 0.05448058807241418, 0.5021256787650443, 0.4710854375480472, 0.7156076129280222, 0.7966690429773311, 0.7265425252145667, 0.16771266951545494, 0.610944103187451, 0.6324527530146118, 0.42180662537268765, 0.2598044700255929, 0.5503032830239416, 0.5632112185661304, 0.6840604465833231, 0.6224375641140001, 0.8071781895370533, 0.9515482366939344, 0.3994071349416132, 0.9677746238863042, 0.572587586261062, 0.7602674855798478, 0.861098734498427, 0.1386074727873, 0.6703360831713621, 0.8064003460928679, 0.3172728283240366, 0.8039094494444462, 0.9186426431335688, 0.6026275969807151, 0.8609701260317718, 0.3485833566260712, 0.3005246278528939, 0.2859113263741919, 0.4978204971029292, 0.5125675444128744, 0.4268860326359044, 0.11791793574572085, 0.440027850275134, 0.4938434408506086, 0.4933189622152446, 0.166194347192407, 0.30200278364192557, 0.6822425768461728, 0.8693180940701344, 0.24112389044610405, 0.43189370387303117, 0.284455178085937, 0.23793737479647703, 0.5535561322468214, 0.7900402576908969, 0.47373775892899717, 0.6055733033081183, 0.7462675017011632, 0.32245623572553406, 0.7612367841042231, 0.36308410170653527, 0.6103993963703384, 0.3965676277125745, 0.2230008284200371, 0.8480025164595866, 0.43585875500482685, 0.24095331994381775, 0.4030652094068704, 0.8951637220162157, 0.2782175630406618, 0.7337660836226194, 0.8352762102164887, 0.6223987562306759, 0.2928263700360406, 0.6563137004068428, 0.16155652477357085, 0.6364666355122575, 0.2186811050870735, 0.27206300237801306, 0.4358901152617537, 0.6136035252376228, 0.07900866299327158, 0.8522855318359817, 0.11906253414448076, 0.3466831105240652, 0.11265227152414181, 0.6302693732121377, 0.7168097665217413, 0.4796298258249143, 0.4476252306691143, 0.3612478268219491, 0.611861930499026, 0.15121036728507153, 0.5363393546692182, 0.16155652477357085, 0.441733396330222, 0.7834276811132227, 0.6364666355122575, 0.44873286860252337, 0.4948960601400133, 0.4172084246960842, 0.5055831714989107, 0.5269082808529498, 0.3737404408311804, 0.4491757516278906, 0.5266720849021, 0.2882430633103308, 0.6066213483726142, 0.83534933450756, 0.2509605867776752, 0.230738949997912, 0.25680675940048736, 0.6858999083789018, 0.27626495444752697, 0.35158671089680515, 0.311480105980391, 0.5950329577300569, 0.4196263877039489, 0.3672198477254309, 0.5488429300958864, 0.6273126624389191, 0.0990306898864649, 0.935036100419004, 0.5556828679884147, 0.6003916802566726, 0.1337843055401957, 0.6898191889393818, 0.46604488826349566, 0.6668872608045229, 0.5998672378660981, 0.14712454771937833, 0.8558065212045691, 0.883276495704891, 0.5544329747085402, 0.38398791005853006, 0.8623310715459079, 0.4482795971615686, 0.4767821080964978, 0.6451659669426603, 0.5099786295438409, 0.11454219273407718, 0.5691587732433696, 0.2398813672346335, 0.8592796956842923, 0.38133093816728936, 0.4754945767078651, 0.2673740541283356, 0.43092180164799054, 0.5981491184574936, 0.7512253043619477, 0.20474988026063612, 0.12337786436138054, 0.6965484670033051, 0.4642254518352117, 0.29034758521725457, 0.7912282271603185, 0.1364389858241727, 0.5326323768611896, 0.3938848007926149, 0.886984727126295, 0.5955398539691413, 0.3667393936023857, 0.35129461810907203, 0.578130474122496, 0.1952086434691429, 0.6982941690158907, 0.6159300986783536, 0.6650580695700093, 0.8007006003287879, 0.13750802167619447, 0.47121416359091395, 0.5691587732433696, 0.5295784007050042, 0.4938434408506086, 0.4240508430342457, 0.1531205555636086, 0.7965770364050346, 0.4829168465516456, 0.6333246955344933, 0.38682769986244625, 0.5589353890471914, 0.30965836575156913, 0.6133571507425741, 0.5363393546692182, 0.5474540697204298, 0.9680074395956593, 0.29703705077451537, 0.7566858385458134, 0.451244026180727, 0.6224939697452743, 0.9340693900855184, 0.1254375450851024, 0.770680513376406, 0.7273231109206828, 0.410671569380914, 0.19928392436820586, 0.44743622108127745, 0.4991477681643879, 0.5443787589855091, 0.826082779912576, 0.5642536294664222, 0.6762559922350657, 0.39283078357423706, 0.3074847569358159, 0.40732461839200396, 0.5614584986504241, 0.5614584986504241, 0.575628870274347, 0.1938881144566701, 0.6480440770440566, 0.23946299348505806, 0.6110142157087575, 0.32489046344192996, 0.127020290619695, 0.28948900574123104, 0.27970970921902805, 0.5179212029104148, 0.579807192000203, 0.5695619245525361, 0.7471497674522103, 0.6761943115269239, 0.6052803835931642, 0.9048996801452402, 0.632953623191418, 0.7849920634816455, 0.12946409768986655, 0.3899257470968539, 0.37735505673750047, 0.27206300237801306, 0.6356505945299911, 0.9000798247851504, 0.5852448485124296, 0.3537739535016634, 0.8589709040748648, 0.5105041430354158, 0.4760479563081992, 0.3915586115462193, 0.4344526143297297, 0.04825794875232026, 0.25106204840173363, 0.5352062615150248, 0.2084678736174792, 0.5588772074146924, 0.42656597432725707, 0.3395528272139201, 0.5154796814541086, 0.30312695461308037, 0.4684625037801391, 0.13140485141127656, 0.37575572516499556, 0.7087902803012941, 0.22740617784346517, 0.7932370230268412, 0.6977827466507267, 0.8687065743771458, 0.3532210556477622, 0.3005246278528939, 0.8817461779308045, 0.5897758288136841, 0.5117334773877459, 0.2267712913026929, 0.7462523759498982, 0.5055831714989107, 0.6276122794572256, 0.34766968675436505, 0.563322001169588, 0.4035281086421867, 0.44827723495654004, 0.7588644006503809, 0.17560197311170134, 0.2736156405730563, 0.5646478519097824, 0.12788772013874206, 0.8127608550985441, 0.35130933230290007, 0.8842329534318195, 0.5671758377024384, 0.508518787579709, 0.4735654621913231, 0.6614347321502836, 0.7032589073748752, 0.418601168771625, 0.40262233345395115, 0.38045938978299354, 0.6221728234115828, 0.6769388667590319, 0.825791915264051, 0.8036522945246104, 0.5350776523934957, 0.5038683203672731, 0.4187790963850706, 0.3942708224564714, 0.36585282612655, 0.42973128126448334, 0.1395024853671747, 0.36909778672938764, 0.5126700875045708, 0.31128511290513083, 0.5841805470690385, 0.42932394036482613, 0.5168725346003686, 0.9331527243268325, 0.5090935678835011, 0.848083892739094, 0.7288594688776423, 0.23463814542978878, 0.9073343486287574, 0.5445649372592127, 0.8030108083542629, 0.30698149193503155, 0.47724620771884374, 0.49565431290071005, 0.29179072192325783, 0.53941953634433, 0.32642767658125227, 0.5714063949384225, 0.6769388667590319, 0.48314991346809855, 0.3838692085325581, 0.7654355578102645, 0.6807995217458978, 0.7803105409218809, 0.4971816769068883, 0.5662837862370104, 0.32557907866588853, 0.4059739580227363, 0.8621668957327787, 0.4863555612469991, 0.44913520001249685, 0.5044088987161788, 0.018560580499064172, 0.17397747102053363, 0.8203404366189, 0.531551035274026, 0.3951880410340851, 0.6710839680909022, 0.7545393605546251, 0.25029771644034415, 0.31651464458218903, 0.7900402576908969, 0.7649542174153934, 0.6282404390050247, 0.5124469561170844, 0.7501741577575001, 0.3717170374651112, 0.5479204837841629, 0.1799627586960565, 0.8716748635647116, 0.4700369344869263, 0.7044722268129955, 0.7597806244765397, 0.4570971226262448, 0.3688130253756654, 0.5854022956087224, 0.6067015953642416, 0.6092966434658947, 0.5713009051869427, 0.15316343939585397, 0.31191498773739224], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [7.0, 7.3, 7.5, 6.3, 6.3, 7.0, 6.5, 5.6, 6.9, 5.8, 8.1, 7.7, 6.2, 7.3, 6.8, 6.6, 7.3, 15.6, 5.2, 6.2, 8.0, 7.7, 6.3, 7.3, 9.0, 6.0, 5.3, 7.8, 7.1, 6.2, 6.3, 7.3, 7.2, 5.8, 7.2, 7.7, 7.7, 5.9, 6.7, 6.5, 6.0, 7.2, 7.7, 7.4, 8.1, 6.8, 8.2, 6.2, 9.4, 6.8, 7.0, 6.6, 6.0, 6.3, 14.2, 6.8, 5.9, 6.0, 7.6, 5.9, 11.1, 5.9, 7.1, 6.6, 12.6, 8.3, 6.7, 7.4, 7.0, 6.7, 7.0, 6.2, 6.4, 7.9, 7.4, 7.0, 7.9, 6.5, 8.2, 6.9, 5.7, 6.3, 8.3, 9.1, 8.0, 7.8, 7.3, 8.6, 6.9, 10.8, 6.4, 7.7, 8.8, 6.6, 6.1, 5.0, 6.3, 5.9, 6.6, 7.3, 8.3, 7.3, 9.9, 7.5, 7.2, 6.4, 5.2, 7.9, 6.7, 6.7, 8.0, 7.9, 6.9, 7.4, 5.6, 6.7, 5.9, 6.0, 7.1, 7.2, 6.8, 6.3, 9.2, 7.8, 8.1, 7.5, 6.8, 6.7, 6.9, 7.3, 7.0, 5.0, 7.3, 8.2, 7.7, 5.0, 10.1, 6.6, 7.1, 9.5, 8.0, 5.9, 6.8, 6.9, 10.8, 7.4, 7.2, 5.8, 6.7, 7.3, 7.0, 12.0, 6.7, 6.2, 6.6, 6.4, 5.9, 7.8, 7.4, 6.1, 5.9, 7.5, 6.4, 7.9, 6.1, 7.2, 7.1, 6.3, 7.8, 5.2, 10.2, 7.8, 6.2, 8.5, 7.6, 6.4, 7.8, 6.0, 6.2, 7.4, 6.0, 6.8, 7.9, 6.1, 6.2, 5.6, 5.5, 11.1, 5.9, 6.4, 6.6, 5.6, 5.0, 7.0, 7.1, 7.8, 6.1, 8.4, 6.8, 8.5, 7.7, 6.4, 7.1, 8.4, 6.7, 8.2, 8.2, 8.1, 7.3, 8.0, 8.2, 6.5, 6.5, 6.0, 6.9, 6.6, 6.6, 7.0, 7.5, 6.6, 6.6, 6.6, 7.0, 8.3, 7.1, 7.0, 7.1, 7.1, 7.7, 6.1, 6.0, 6.6, 6.3, 6.9, 6.7, 4.8, 6.4, 6.6, 6.3, 7.1, 8.9, 7.2, 7.2, 6.4, 7.0, 7.0, 7.7, 6.5, 6.3, 5.8, 8.0, 7.4, 10.8, 10.1, 10.7, 6.4, 6.5, 6.6, 7.3, 9.8, 7.4, 6.3, 6.1, 7.2, 7.0, 6.2, 7.3, 9.1, 6.5, 5.2, 6.0, 6.4, 6.7, 6.0, 5.5, 6.7, 6.7, 9.1, 5.6, 7.1, 7.8, 7.6, 5.1, 5.8, 8.0, 10.8, 6.2, 7.8, 7.7, 7.3, 5.6, 7.9, 8.3, 6.2, 6.0, 6.1, 7.1, 6.7, 5.7, 6.8, 6.6, 5.9, 5.7, 6.0, 8.4, 7.2, 8.5, 7.1, 7.2, 6.6, 7.2, 7.3, 5.9, 6.1, 7.1, 13.4, 8.3, 6.0, 6.4, 5.9, 5.8, 6.1, 6.8, 6.3, 7.3, 7.0, 7.4, 8.8, 7.4, 6.4, 5.1, 8.1, 11.4, 5.6, 6.8, 6.9, 7.0, 7.2, 6.2, 6.8, 6.5, 8.8, 5.1, 6.5, 7.2, 8.1, 7.1, 8.2, 5.8, 7.3, 6.8, 7.7, 6.7, 8.3, 6.8, 6.3, 8.4, 6.2, 11.5, 6.9, 7.4, 6.2, 8.9, 7.2, 7.2, 6.6, 6.2, 6.2, 9.2, 7.2, 5.8, 5.6, 7.7, 9.2, 6.6, 7.0, 5.9, 8.6, 7.4, 9.0, 10.0, 7.5, 8.3, 6.5, 6.9, 7.5, 10.2, 6.1, 7.7, 6.8, 6.1, 6.0, 6.7, 6.3, 7.0, 6.0, 7.7, 6.8, 5.0, 8.0, 7.4, 6.7, 6.1, 7.0, 7.4, 5.7, 6.8, 7.4, 6.1, 6.5, 6.6, 6.4, 5.7, 6.6, 7.1, 7.0, 6.3, 7.1, 7.7, 7.5, 7.5, 6.9, 5.9, 7.0, 6.1, 5.8, 8.0, 7.4, 6.7, 8.0, 7.7, 6.6, 6.4, 5.5, 6.9, 4.4, 8.3, 6.3, 6.9, 11.1, 6.4, 6.8, 7.4, 7.5, 6.9, 6.3, 7.2, 6.7, 10.5, 5.9, 6.8, 6.1, 5.8, 7.3, 7.4, 12.0, 6.4, 7.1, 6.4, 6.2, 11.1, 7.6, 11.5, 8.0, 6.4, 7.3, 6.2, 6.7, 7.3, 8.9, 8.3, 6.2, 6.5, 8.7, 5.7, 6.5, 7.0, 6.7, 7.5, 7.3, 6.2, 6.5, 6.6, 6.3, 6.5, 7.7, 7.5, 6.6, 5.7, 6.0, 7.3, 7.9, 7.0, 6.5, 7.3, 8.6, 6.9, 6.5, 7.3, 7.4, 6.9, 7.0, 5.3, 7.2, 7.9, 6.7, 5.1, 6.7, 6.5, 6.4, 6.9, 7.8, 7.1, 7.5, 6.5, 6.3, 6.7, 6.6, 6.7, 6.8, 8.4, 6.0, 8.1, 6.5, 7.2, 7.1, 8.6, 8.0, 6.2, 6.5, 8.9, 6.9, 5.8, 6.0, 6.8, 7.9, 6.8, 7.1, 6.8, 7.0, 6.8, 6.0, 7.9, 7.9, 6.5, 6.0, 10.1, 7.0, 6.8, 6.3, 7.2, 7.7, 6.6, 8.2, 6.4, 6.8, 7.2, 7.0, 7.8, 6.6, 6.7, 7.6, 5.6, 6.4, 5.1, 7.7, 7.1, 8.6, 6.1, 8.0, 6.2, 7.6, 7.2, 7.1, 6.5, 6.3, 7.2, 6.4, 7.9, 7.8, 7.5, 6.4, 5.9, 6.0, 7.0, 6.9, 5.4, 6.8, 6.0, 6.8, 8.6, 6.7, 6.3, 6.0, 5.0, 7.2, 5.6, 8.0, 5.6, 7.8, 7.4, 7.1, 6.4, 7.0, 9.4, 6.0, 5.9, 7.1, 6.3, 7.3, 6.4, 10.5, 8.1, 8.1, 6.4, 8.8, 6.1, 7.0, 7.2, 9.2, 6.6, 6.9, 9.7, 8.8, 7.8, 7.8, 7.3, 6.7, 6.6, 6.8, 7.15, 8.0, 7.4, 6.5, 5.3, 7.1, 10.8, 6.6, 7.0, 7.2, 7.5, 10.7, 5.9, 6.8, 6.9], \"xaxis\": \"x\", \"y\": [0.18439386755371057, 0.5750868907731637, 0.1132172353536568, 0.19850047615697952, 0.6950004168934912, 0.41826441672946313, 0.040828937665112974, 0.2145583871630251, 0.09143093017991866, 0.10013996234885614, 0.3658834999306372, 0.587897812361327, 0.23563705889496211, 0.5289998061994394, 0.5981734696485812, 0.5956194363709464, 0.11295199838815062, 0.6349332021584286, 0.09356782907078887, 0.0672754654033908, 0.3541579814831264, 0.11781588709523827, 0.3295981493457443, 0.23443288181779365, 0.13830133810679424, 0.5122546205578999, 0.03626449638205209, 0.32057959349203036, 0.3955164844050859, 0.21320459763992916, 0.08620177311633537, 0.4132497936565127, 0.19514157099220286, 0.028148892894647393, 0.03728071159582558, 0.20213762816504022, 0.39088790332760825, 0.10566618212719892, 0.11466232649727714, 0.09544364959788487, 0.07351553674018241, 0.3657542344632553, 0.05859665738698361, 0.43634835962676355, 0.4827032077898804, 0.516310366273556, 0.6480037931050455, 0.21122004543372697, 0.030344760075157406, 0.22750344576024595, 0.18673438423788624, 0.5460909738859347, 0.0666291073587214, 0.320234954276134, 0.515425573770442, 0.5751179393061847, 0.3262180383913996, 0.12192585741802231, 0.6165939755266235, 0.09365914315081003, 0.44259853952477324, 0.31958523161407537, 0.09228899111547839, 0.22815273642701062, 0.5282447951108347, 0.7777719169155834, 0.13834506443323813, 0.29425092810710396, 0.5300870647699181, 0.031947521718024174, 0.1108646816717751, 0.053339747820140615, 0.14466174791529418, 0.25697560969337485, 0.3383868137798065, 0.30803904997837983, 0.03434255320493995, 0.08689109251212201, 0.46044782253877736, 0.0973761441498977, 0.3449058470623745, 0.024212367984770777, 0.11665042079727428, 0.3333970234137619, 0.1495417879159372, 0.0679784404121434, 0.2360052425084116, 0.39147703437781534, 0.04428683932015287, 0.5381556738404795, 0.4357341587922019, 0.11843845992675284, 0.28107964630818494, 0.06989794698232743, 0.2658605825653322, 0.22408104406272966, 0.15519213452661884, 0.09873339188795927, 0.10739713799337769, 0.4712507279726723, 0.31257930793611366, 0.6259141532505736, 0.1651629894813923, 0.13024327386797574, 0.08242409751896962, 0.55355901104019, 0.11256152515999429, 0.22124325125588817, 0.05838775174278421, 0.6734770756819889, 0.06919042490492266, 0.5773286546676725, 0.5693181878572973, 0.12726917141891614, 0.27983888222674136, 0.15690954109554833, 0.18593824584442387, 0.05432525584274117, 0.33273366741371935, 0.12435295831370408, 0.48112847828662497, 0.2959384652215836, 0.5042039768350125, 0.3749869638443927, 0.7258627386781167, 0.4806866421912115, 0.6234335830956541, 0.4191951896523489, 0.20821728825178332, 0.6343085651912675, 0.27674577061671146, 0.02140654255666985, 0.42849246998341506, 0.1817444030106703, 0.4551538855951942, 0.05087080041524106, 0.516641204200833, 0.6810720245435042, 0.08151744899857294, 0.4475169494323581, 0.03995706953508171, 0.2181819033834006, 0.20372897255157485, 0.24305701296248816, 0.5381556738404795, 0.2358485729609252, 0.051323642447754336, 0.1913631294907303, 0.32154631204965056, 0.31229802093755377, 0.3917329141436472, 0.39462053822053156, 0.3680669306910641, 0.5017894292511481, 0.32120711190509066, 0.0768019282386515, 0.1168769044932052, 0.31545143431826594, 0.12007957373947853, 0.08354361700756141, 0.2180731800932174, 0.7653011157176768, 0.05076221583963347, 0.11739077279846111, 0.3639458403519926, 0.4815918747301601, 0.35998732468747585, 0.457353694020342, 0.5520498791697908, 0.22168281241722143, 0.2132287846887433, 0.4763394582576197, 0.3040153802820409, 0.20749766415549342, 0.3316810644107503, 0.8126297477835096, 0.5749367295182395, 0.27274039590582944, 0.2685808245693546, 0.5172108675362206, 0.33506587713796443, 0.09616672688355288, 0.041108213935392324, 0.10548050716105373, 0.5016695616404938, 0.20022874051447226, 0.14220640128276774, 0.23772630779738468, 0.19606080251004787, 0.2603188495268066, 0.18846597668723208, 0.19827111133563302, 0.261548791893628, 0.4140325207077993, 0.8134796325151183, 0.12265695643958285, 0.6311167068993262, 0.13481820177301163, 0.0932384579037443, 0.14050160114126486, 0.2562249115981724, 0.08547750670655718, 0.08643201081848362, 0.19981675431015722, 0.31390222338706264, 0.06221739913672386, 0.06996303880871468, 0.30029370289300306, 0.4306817897420764, 0.6595343859760441, 0.2839408857911616, 0.20468539219890003, 0.1130196126722065, 0.2360017176902124, 0.13187147729288817, 0.42313120297864704, 0.06964897436687001, 0.1624399718171824, 0.17200815643270417, 0.07333105637055992, 0.2440137653363641, 0.4900110333069776, 0.3085554157386313, 0.03480496731142946, 0.12148031785507996, 0.15002971926037112, 0.5314247042003052, 0.2758453007685677, 0.2151852748992088, 0.2658605825653322, 0.29911225563077193, 0.6594110243744711, 0.49869782335001445, 0.16788254706683048, 0.11816213334465087, 0.08230909248122409, 0.13653212507346946, 0.25639170942272826, 0.06562233405876228, 0.23311900627036541, 0.3756616197417655, 0.46674395287949066, 0.3092684534350997, 0.8337319641197457, 0.8331457111467163, 0.2591056156836542, 0.4778687671024334, 0.2542440524586721, 0.5361036306539362, 0.07073721340803463, 0.4731688813159418, 0.5755848065786346, 0.356689463387698, 0.14225616860197343, 0.21837916002376445, 0.14466174791529418, 0.29899643271856946, 0.4757427727983842, 0.08126799884203029, 0.1296501822378736, 0.3286954654423938, 0.08620177311633537, 0.13855855420831553, 0.05543377339452393, 0.11917834098009661, 0.2613621884509647, 0.11269900223777074, 0.08429051026621415, 0.3393961441870107, 0.07031960314855146, 0.11356777592095357, 0.4853279864284006, 0.1279289285514792, 0.0584572339054259, 0.08612988585012649, 0.3472440907423937, 0.1248029959061332, 0.07502335399434323, 0.19827111133563302, 0.3424151534036639, 0.3065175956815872, 0.13808860398564737, 0.058092197534895806, 0.04082786106581715, 0.1602592849246841, 0.09156161599234125, 0.5036030690663805, 0.2640411824475748, 0.6468038092930676, 0.07201805208597656, 0.22470230804277058, 0.1334773721572423, 0.04847889440667685, 0.2685808245693546, 0.10911308148570098, 0.6764508967260475, 0.6280060594576413, 0.36761958218269275, 0.16019930342079847, 0.17605308658107655, 0.14078981831089854, 0.2384997092801764, 0.13117402490907393, 0.12818959986091483, 0.4161925244315118, 0.12435295831370408, 0.09814942480303201, 0.05480698563416486, 0.3746187330143109, 0.41092354232892336, 0.507894749900129, 0.5137929421583434, 0.08293523366016065, 0.2964416548030494, 0.15236141109070434, 0.4396941021426354, 0.41893931094950754, 0.09113953260801844, 0.10967473999240707, 0.055732078845942, 0.05640314085190745, 0.06176263301115803, 0.06427139521062619, 0.20386133178572885, 0.21597661143113533, 0.7486409492386699, 0.2610715902497083, 0.09465277491899493, 0.5556171757583562, 0.137718889647652, 0.1978940751503777, 0.08472590699531857, 0.356262641598029, 0.14596950445002987, 0.13865818299932142, 0.3088915816821678, 0.11516321289421916, 0.16121169033174265, 0.40573483691789825, 0.34308606282264, 0.36300204724896845, 0.17193414756867276, 0.035926383178341514, 0.34536882843285344, 0.4400180463892147, 0.5165194668234709, 0.23319834124303085, 0.9637923675569924, 0.2635599134550337, 0.6259141532505736, 0.12324962258280003, 0.1256037712827487, 0.1248029959061332, 0.11665042079727428, 0.29081136443782263, 0.12993062945549005, 0.20959981847797426, 0.12385816607190492, 0.16931651488884025, 0.2468284110987674, 0.6181879252747016, 0.3509541008179864, 0.08619429866610873, 0.09537770951135394, 0.8204393830764495, 0.2493836920976743, 0.10367142046182065, 0.11516383353466464, 0.07169627826225977, 0.5400384130096556, 0.2709141565803237, 0.16809050322974173, 0.3421981324687273, 0.812724325423183, 0.1326589750154965, 0.054670132935181304, 0.055346153509382656, 0.8039442695404772, 0.3276168958360183, 0.6561718697940482, 0.6214102617950452, 0.3046829516703813, 0.7853649284745584, 0.7303620793003476, 0.6719087507962026, 0.16000678121984613, 0.579612101366232, 0.6347749924714103, 0.41894393066564606, 0.06936532322770372, 0.28322834609079706, 0.343263893078516, 0.4450860003239352, 0.3090838478611311, 0.408095736797927, 0.11529682880263803, 0.13359771811640497, 0.2417229185475579, 0.10092265889692065, 0.8181934133883563, 0.3777834313813965, 0.8273808576462511, 0.18439353202429143, 0.5148786056082297, 0.11287077888712382, 0.16015059460472458, 0.29672938182784603, 0.36944561074938853, 0.2505850522824452, 0.8467591712977676, 0.3840267097226593, 0.261779448872241, 0.1645479955558209, 0.14631295673285594, 0.4248523287309329, 0.09222807982804315, 0.2121484308544801, 0.33273366741371935, 0.5470626312455473, 0.8294144697045585, 0.25206662215500397, 0.15998368749433245, 0.548322128117227, 0.3917329141436472, 0.15981565308588508, 0.23631147082452741, 0.21082920466209698, 0.1871387197916503, 0.24774693401855818, 0.1913242313933492, 0.16437448769677154, 0.07582203648947516, 0.032541140295091364, 0.06311143057978008, 0.5009235508757715, 0.12343879567504301, 0.445735807756371, 0.40322837553658053, 0.09397553936597514, 0.1598391281143201, 0.26702494168661406, 0.19782301216908982, 0.06831823449824892, 0.5451167746582685, 0.20142160156100697, 0.25747632252511843, 0.4257317671215596, 0.5062318064185062, 0.10278357133077332, 0.10857266292312517, 0.06223864817381186, 0.11377411494697365, 0.14082424186384768, 0.2589321903149734, 0.31776639873426016, 0.07983414941561229, 0.30174211068680845, 0.42532907678292176, 0.23734670470511587, 0.2862296469110084, 0.24790288035387664, 0.5526146374040077, 0.20425399436950087, 0.5166825128498294, 0.12415322942140417, 0.5310696157212036, 0.3866387435262121, 0.14313186082947948, 0.31648660326859934, 0.026792916001305622, 0.7856428374245099, 0.42383310375799566, 0.5944566396871084, 0.6256605001243821, 0.08813642250468567, 0.03544811528140901, 0.06935406654889886, 0.15751976448865512, 0.22608551288474832, 0.3127311228465576, 0.1409438166611655, 0.3285615524533705, 0.3591330499592894, 0.47964497307801546, 0.7143146030302826, 0.14223944449319303, 0.06929054967731618, 0.32120711190509066, 0.16913647442041335, 0.707286257884667, 0.3230684446475647, 0.7616845263358343, 0.4104900542879092, 0.10053249234255524, 0.1106599594415556, 0.1543174595222413, 0.46003879185641183, 0.3811350878514418, 0.07185070571861518, 0.23882593985771994, 0.5344976262521839, 0.11031385635331636, 0.09610989844306939, 0.4955559099445003, 0.07845190603324759, 0.30697262074812925, 0.12767551958037127, 0.4375661224395835, 0.07737023387634634, 0.15307682457740834, 0.05694427046787409, 0.09028836937410878, 0.4011292297732457, 0.6186146927451245, 0.11561676905211238, 0.0993047499370594, 0.08102401279833105, 0.8100206966555492, 0.10768932514586738, 0.15386113005635593, 0.4026560765644126, 0.045535707525545144, 0.08229583319403, 0.08227601457953415, 0.8241544781987433, 0.0759900855540333, 0.5147505197509459, 0.11103147778198663, 0.42144961755966015, 0.24880465403270857, 0.3112403223054312, 0.3282460941643247, 0.28312386083977936, 0.2865521931047814, 0.16537364909659502, 0.4284132019637321, 0.34116073112729894, 0.051142721309942685, 0.10794707492381372, 0.1108646816717751, 0.29201805921023904, 0.07365131996157204, 0.36851051207096197, 0.2556143611338999, 0.07392456180697715, 0.045535707525545144, 0.15025986810093994, 0.4395989822566938, 0.19636656988846957, 0.21018464628148859, 0.15085686628779282, 0.3429118439192298, 0.16104008564300487, 0.2055862423584408, 0.18673310211333727, 0.5528531989583015, 0.20219789553586287, 0.5807830339134155, 0.6112381610839525, 0.07515362639458067, 0.5722084734915175, 0.3654892991508686, 0.1991057466826236, 0.4912569401667811, 0.05850610073101081, 0.3077884117234785, 0.17038242498240874, 0.14066607718466684, 0.10248584652416493, 0.4022873718442217, 0.07205214632436985, 0.35142291824287475, 0.10941760034103376, 0.06679271580157364, 0.05675388891699207, 0.058987921856350156, 0.3660303223369904, 0.28790374422385034, 0.4158290962648631, 0.40710291595796666, 0.09934102670994882, 0.06362846635195196, 0.30921476208988685, 0.23242198019285765, 0.055541210656895434, 0.5297663836663529, 0.10744632778983743, 0.18410212910939194, 0.17721960751489196, 0.1962664672709783, 0.1617648996714035, 0.10584426414108294, 0.5203501665477333, 0.07365131996157204, 0.31578819840495265, 0.35364190165315845, 0.1707951928721818, 0.41655733121321636, 0.15801546378512366, 0.7568436608419439, 0.22368578646300386, 0.0609449253562836, 0.2225096762928218, 0.18587673368692093, 0.05559101133196209, 0.569598540521716, 0.08073228430722412, 0.15724041301590164, 0.12879141548479, 0.4306817897420764, 0.17998791969802397, 0.41280880088413996, 0.5723062335690389, 0.6457404130724687, 0.10420061808672998, 0.12564769853034463, 0.21795029564941848, 0.4720930498870375, 0.11304202998506685, 0.545112257205237, 0.14852188644910969, 0.17217029085021085, 0.336250902618187, 0.48671482860553816, 0.5093433434984792, 0.35847801144896685, 0.3008706318705062, 0.18494609259573758, 0.4199330463236065, 0.04162287990776414, 0.2633909944023186, 0.4252182303976608, 0.4684623303117058, 0.1925553058603695, 0.09610989844306939, 0.09129843496680234, 0.3302708189676917, 0.4199330463236065, 0.11927294568859859, 0.4864154015695107, 0.06472081497616611, 0.6387929002666255, 0.37932906694235924, 0.093713747684541, 0.20627971812824875], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (curr)\", \"type\": \"scatter\", \"x\": [7.3, 6.4, 7.5, 5.6, 6.9, 6.8, 6.5, 9.1, 9.0, 12.7, 7.6, 7.2, 6.4, 7.3, 6.7, 6.8, 6.8, 11.9, 6.6, 6.4, 6.8, 8.0, 6.3, 6.5, 6.6, 7.4, 7.2, 7.5, 5.3, 7.0, 7.5, 5.3, 8.1, 8.2, 6.9, 5.9, 9.8, 7.5, 7.0, 6.0, 8.6, 7.5, 6.9, 7.0, 6.4, 6.5, 8.3, 8.3, 6.0, 7.4, 6.2, 7.5, 9.0, 8.0, 7.7, 7.9, 7.4, 15.6, 7.6, 6.9, 15.5, 8.1, 6.3, 10.0, 7.0, 6.8, 8.5, 7.4, 6.8, 7.3, 6.6, 5.6, 4.9, 8.8, 6.6, 7.1, 7.2, 7.0, 6.2, 8.0, 7.6, 9.2, 6.0, 7.9, 8.3, 8.2, 7.9, 7.8, 6.7, 7.5, 6.3, 7.6, 9.3, 7.7, 6.9, 7.6, 8.0, 8.9, 6.8, 6.3, 10.0, 9.4, 6.8, 6.5, 8.9, 7.0, 9.0, 6.0, 6.0, 7.6, 7.9, 7.1, 6.9, 6.9, 9.6, 8.9, 6.6, 6.6, 6.4, 8.4, 5.8, 6.6, 7.0, 7.8, 7.2, 7.5, 5.7, 11.8, 7.2, 6.8, 6.9, 6.6, 7.7, 8.8, 7.1, 7.2, 6.9, 9.0, 7.2, 6.5, 7.9, 8.3, 8.6, 8.4, 9.5, 7.4, 7.9, 6.4, 7.9, 6.9, 7.2, 7.9, 7.1, 7.2, 7.0, 7.2, 6.1, 6.8, 6.9, 8.0, 8.4, 6.6, 7.1, 7.6, 7.4, 7.7, 5.9, 6.7, 6.6, 7.4, 6.6, 7.2, 7.1, 6.6, 7.9, 5.8, 7.0, 6.8, 6.6, 6.1, 8.0, 4.2, 11.9, 6.4, 6.8, 7.5, 6.3, 6.8, 7.8, 6.2, 7.2, 8.2, 7.7, 7.0, 7.2, 7.3, 7.8, 5.6, 7.1, 6.8, 6.8, 6.2, 6.4, 6.9, 7.1, 7.2, 6.8, 10.0, 6.4, 7.3, 9.3, 5.8, 6.7, 8.5, 6.0, 6.7, 6.4, 8.8, 7.1, 6.5, 6.9, 6.7, 8.3, 6.4, 6.8, 6.1, 7.6, 7.0, 8.2, 4.9, 6.3, 7.6, 6.5, 9.2, 8.4, 6.7, 5.5, 6.1, 7.7, 7.4, 6.2, 7.2, 7.9, 7.1, 7.0, 6.0, 7.5, 5.7, 8.2, 6.4, 7.5, 6.8, 9.4, 7.5, 6.5, 6.5, 7.1, 6.8, 7.2, 10.8, 6.5, 7.2, 6.4, 6.4, 8.2, 6.4, 7.1, 6.2, 6.2, 6.4, 7.1, 8.3, 7.9, 6.7, 9.2, 6.0, 7.4, 7.0, 6.7, 6.8, 8.3, 6.1, 6.9, 5.8, 8.9, 6.0, 8.6, 6.0, 7.8, 9.8, 6.4, 5.2, 7.2, 7.2, 6.4, 9.3, 6.3, 6.4, 6.2, 8.9, 6.6, 13.0, 6.2, 6.8, 7.0, 6.4, 11.1, 7.4, 8.1, 6.4, 7.5, 6.4, 8.2, 7.1, 7.6, 7.2, 7.6, 6.7, 6.2, 5.4, 11.0, 6.3, 5.7, 6.6, 8.9, 6.8, 6.3, 12.2, 6.6, 4.9, 7.6, 6.4, 7.2, 6.3, 7.6, 7.2, 5.8, 6.8, 6.5, 7.3, 6.9, 9.0, 6.8, 8.0, 10.4, 8.1, 8.3, 7.3, 6.5, 7.6, 7.0, 7.1], \"xaxis\": \"x2\", \"y\": [0.18579927887031134, 0.9274202256360236, 0.2569067617886446, 0.17851375722123963, 0.43011516789686843, 0.3951880410340851, 0.35333307802371594, 0.854899199395705, 0.7749695319329993, 0.7150752736216004, 0.5793836726576811, 0.17187478758168062, 0.503776006633781, 0.6517104478925241, 0.5321166645488455, 0.4291031613352281, 0.6295132227815239, 0.446367751604861, 0.12978626497489776, 0.578130474122496, 0.1303225049324246, 0.4589423036505589, 0.6028673022099313, 0.6724998803801079, 0.055171077290688375, 0.28900585249094113, 0.5807441942986169, 0.6324527530146118, 0.32780881811994433, 0.4437792729685527, 0.47375733914823626, 0.6755390392614542, 0.8494338455743565, 0.8432302027568838, 0.3962269303969661, 0.36574887203466033, 0.9780529644634413, 0.6757083557066426, 0.43212531492562845, 0.6428319532862445, 0.2244465690609686, 0.6759712108962084, 0.300575337785698, 0.4848467547623382, 0.24353241802821812, 0.6165640897352094, 0.801889943514816, 0.6831580296641933, 0.4684052737322374, 0.07309555507266852, 0.17397747102053363, 0.548208100621717, 0.16948307959681597, 0.5287139706981401, 0.8097217619362252, 0.48186532860504816, 0.7044722268129955, 0.5458559966555334, 0.6067015953642416, 0.5767206748937392, 0.5416109283549078, 0.7766135747357961, 0.6371580804073698, 0.3290646799011723, 0.53941953634433, 0.7444876216695655, 0.27658524567301757, 0.8518717737266248, 0.685064206005921, 0.7994946846943811, 0.6254668451144636, 0.29898447003196504, 0.36566585814722175, 0.8260679099411251, 0.265003746926769, 0.18277705216857454, 0.6401445853260315, 0.2878944788643705, 0.7379395090268356, 0.6578861964269485, 0.3048731186933995, 0.6479177870210828, 0.5479007895539181, 0.8109237991420157, 0.4555798348891207, 0.35159410271621183, 0.6741813074403022, 0.40366163192193316, 0.3797333752177462, 0.42326140605337403, 0.49450075158901585, 0.7027754368270075, 0.31556666432085356, 0.5737052492708005, 0.5594846166878963, 0.9879213229528466, 0.23907110553933086, 0.7604887601700165, 0.906894853259191, 0.49150798334893764, 0.6693239074263375, 0.635181004157038, 0.4291031613352281, 0.6805197940362542, 0.8579270215873258, 0.42231028799440284, 0.7973836574204367, 0.6209099995125147, 0.617932351579841, 0.5867531689564582, 0.8217385626893267, 0.5766058512754557, 0.6085190813519714, 0.6488649586424557, 0.19466062481522506, 0.4062994677131635, 0.31500574198466447, 0.6106996692323751, 0.48314991346809855, 0.4300926711133176, 0.4623912750166579, 0.18141675383529432, 0.7404949196358439, 0.7960551628311661, 0.6696955469146251, 0.7471897031921468, 0.15222801432328747, 0.4782875749995391, 0.6696955469146251, 0.4617114467660769, 0.0374236133971757, 0.34638250956587036, 0.5737052492708005, 0.35412183815676124, 0.5342599897609015, 0.6273126624389191, 0.1819914526651868, 0.6450640502472667, 0.7576359910572065, 0.6363669366758954, 0.35783776888428775, 0.4555798348891207, 0.2603691587203709, 0.09638465351539516, 0.7889843001267657, 0.3995975535535492, 0.2404138117262561, 0.5134503976671381, 0.7620160241108803, 0.4852174766770502, 0.7934067722809752, 0.5657371707019572, 0.40591517497640706, 0.5142806824729376, 0.4667389755277017, 0.4597803030361328, 0.14211531046105408, 0.4709774325404933, 0.39253304933110444, 0.8152160844894966, 0.6418608562675732, 0.5695619245525361, 0.15898796250578873, 0.4189913516486339, 0.8097376625536354, 0.2776505479619531, 0.14100712613869515, 0.1625374057836978, 0.21879614767173305, 0.26016804821119, 0.5884346274074399, 0.25171266030158634, 0.5556828679884147, 0.2886326125606653, 0.5013044750460076, 0.23728971353361283, 0.6280660923097139, 0.6281218947904323, 0.6226708394296439, 0.1280348372312241, 0.37812375401711507, 0.6218606462016874, 0.446367751604861, 0.5237591509200082, 0.22560064672115399, 0.4159575064805634, 0.43989745285902637, 0.38133093816728936, 0.379388299643832, 0.4244201113870294, 0.8495234946343055, 0.44699506619782237, 0.3402560380560977, 0.16997778820688525, 0.6509841470756508, 0.5589353890471914, 0.49320900326902484, 0.41485179365651337, 0.2850172536812061, 0.5150740024049856, 0.7905789411902706, 0.6660097546858721, 0.5916856454756931, 0.25029771644034415, 0.21820707607863943, 0.23625780462752244, 0.6174344585079109, 0.33885175059010386, 0.8097775874289167, 0.5502791542248897, 0.45232673966787307, 0.5168725346003686, 0.4922951659433321, 0.2710495410551712, 0.5620189509382074, 0.19827785442852286, 0.35653263682836045, 0.4940220265254579, 0.3934632807735441, 0.349631294967786, 0.6543252873397565, 0.6043841099981286, 0.6572212454398962, 0.5323595728841377, 0.4667716613599331, 0.5480891857555714, 0.5933716837007499, 0.5769442381274095, 0.7796710482718338, 0.4721284230669528, 0.5632051337005155, 0.25606657060722404, 0.47304849589761655, 0.4991199345133047, 0.785831825438318, 0.5512091114854263, 0.31651464458218903, 0.192246895102814, 0.5737052492708005, 0.14970485751781393, 0.8257882443178004, 0.7450862811651306, 0.2404138117262561, 0.3428275867057816, 0.2186811050870735, 0.43730933466596944, 0.1325711740116582, 0.33994853494016564, 0.5172250338280965, 0.4543852880840521, 0.6017244994332274, 0.7267617626256621, 0.304103470637073, 0.49511795227452726, 0.4577650902534979, 0.4389063253281036, 0.3428275867057816, 0.6911248892501751, 0.5457123873353599, 0.3395528272139201, 0.5662837862370104, 0.38281068028313525, 0.1899488449656659, 0.1899488449656659, 0.39416742153886597, 0.4473524415330049, 0.5724944828663213, 0.12652799787397961, 0.14917046216496987, 0.4192276293132746, 0.1727250451072272, 0.7329347521090118, 0.2979855805324535, 0.5384433083808008, 0.2944152049751758, 0.5661013076544325, 0.39283078357423706, 0.6503174362647687, 0.7632350838020857, 0.29422440231251745, 0.8446099855685041, 0.3812461384129847, 0.1264117171095669, 0.6995051325026098, 0.7680829457938805, 0.1086082602083136, 0.50228427853815, 0.8303888649041977, 0.15145052047802054, 0.5239967242043768, 0.49461569007297057, 0.7323984730128237, 0.6372335578763709, 0.8485373319296128, 0.21018203617182263, 0.3854703692354019, 0.6209619763202376, 0.6996467359659702, 0.3913887983225227, 0.600932061108284, 0.18141675383529432, 0.32841971343371723, 0.17397747102053363, 0.3943097935149382, 0.5998672378660981, 0.6052803835931642, 0.35501406908939237, 0.4362847089434372, 0.6005057903956104, 0.45095984485898877, 0.5601124581139871, 0.6908342266509375, 0.29066967723125237, 0.5437491575180791, 0.5955595524057149, 0.4226516353037165, 0.552222307965348, 0.5038457784615318, 0.6752568781943777, 0.7880730680059006, 0.09430965090665133, 0.4986183600001317, 0.24112389044610405, 0.3635071851353404, 0.7047195247497422, 0.5251048099479148, 0.5632051337005155, 0.4520037684813636, 0.5271857161160298, 0.36566585814722175, 0.8775119234978208, 0.49474741138534273, 0.17187478758168062, 0.1069918390347242, 0.6371627391106971, 0.19018032574493748, 0.34352259564225396, 0.806114950115292, 0.47304849589761655, 0.5014153035286022, 0.6721952796384192, 0.7507248720260316, 0.38512814216859315, 0.8930847268109882, 0.863224561659591, 0.15108072818859253, 0.7399796913917198, 0.18579927887031134, 0.47304849589761655, 0.2033384066370545, 0.43667652058029827, 0.23252054766636898], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [6.4, 7.2, 6.8, 6.8, 7.9, 7.4, 7.3, 6.6, 6.5, 5.8, 10.0, 6.9, 6.6, 5.3, 4.4, 7.9, 6.9, 8.5, 9.1, 7.6, 7.6, 7.4, 8.3, 6.7, 7.8, 7.1, 6.4, 6.0, 7.6, 6.9, 7.3, 6.6, 6.9, 5.1, 5.8, 6.6, 6.5, 6.4, 6.8, 7.2, 6.7, 6.0, 7.6, 7.3, 8.3, 7.8, 7.8, 6.8, 7.9, 6.8, 8.0, 8.0, 6.8, 9.2, 6.9, 8.1, 10.7, 5.2, 6.6, 9.1, 6.4, 6.8, 6.6, 8.0, 6.7, 6.0, 7.7, 7.7, 6.0, 7.5, 7.1, 6.7, 7.7, 5.3, 8.0, 6.3, 6.1, 6.6, 7.7, 9.0, 6.4, 7.3, 7.5, 8.3, 7.6, 8.4, 9.3, 6.5, 6.9, 6.3, 6.3, 8.4, 5.6, 6.6, 6.0, 7.3, 11.6, 7.6, 11.8, 5.9, 7.2, 6.4, 6.9, 6.9, 7.1, 6.6, 7.9, 6.7, 6.2, 6.7, 6.7, 7.9, 6.9, 6.1, 6.4, 6.4, 5.0, 6.6, 6.9, 9.8, 5.0, 5.4, 6.5, 6.2, 8.2, 9.7, 7.8, 6.1, 9.3, 6.8, 6.2, 7.4, 6.1, 8.3, 6.2, 8.3, 9.2, 8.3, 6.8, 7.3, 7.2, 6.4, 11.9, 6.6, 6.2, 5.8, 8.4, 8.9, 7.1, 8.3, 7.0, 7.6, 7.5, 7.2, 6.5, 6.8, 9.9, 7.2, 5.9, 7.2, 7.1, 7.5, 6.2, 6.3, 12.6, 8.6, 8.9, 7.9, 8.3, 6.9, 6.3, 8.6, 7.2, 8.5, 5.8, 7.0, 6.1, 6.5, 6.0, 8.3, 7.7, 5.8, 6.9, 11.8, 7.0, 6.3, 9.1, 5.6, 7.0, 6.9, 7.8, 6.6, 6.5, 7.0, 6.2, 7.7, 6.7, 5.1, 8.4, 6.5, 7.2, 7.5, 5.8, 7.7, 6.6, 6.7, 8.5, 10.4, 6.6, 6.8, 5.9, 5.8, 6.7, 6.2, 13.2, 7.0, 5.9, 6.0, 5.6, 6.8, 7.0, 6.2, 7.8, 6.3, 7.3, 7.3, 6.0, 7.4, 8.7, 7.3, 6.9, 8.1, 6.9, 7.0, 10.3, 8.4, 6.6, 6.8, 7.0, 7.4, 6.8, 8.1, 8.4, 6.4, 7.1, 10.4, 7.3, 7.4, 7.5, 9.4, 7.9, 7.6, 8.1, 6.5, 7.0, 6.7, 7.5, 6.6, 6.7, 5.8, 6.8, 6.9, 7.5, 6.4, 7.3, 7.4, 7.6, 6.1, 6.8, 7.6, 6.8, 6.3, 5.4, 11.5, 6.7, 7.4, 6.9, 6.8, 5.6, 5.9, 8.4, 7.9, 6.0, 5.8, 7.0, 10.0, 6.1, 6.2, 5.3, 6.1, 11.5, 10.3, 6.9, 8.2, 6.4, 6.1, 6.1, 7.0, 6.9, 7.0, 8.0, 7.6, 7.5, 6.0, 7.4, 7.2, 5.9, 6.8, 7.8, 7.0, 6.2, 6.5, 6.2, 6.5, 5.7, 5.4, 7.2, 8.1, 8.5, 6.7, 7.0, 6.0, 7.7, 7.3, 10.1, 7.2, 7.4, 10.9, 6.8, 6.6, 7.0, 6.7, 9.1, 8.0, 6.7, 6.9, 7.3, 6.5, 7.6, 7.0, 7.1, 6.1, 7.4, 7.0, 7.7, 6.8, 7.0, 6.3, 9.8, 6.7, 7.8, 7.5, 8.7, 7.2, 7.6, 6.7, 8.6, 6.5, 7.5, 6.6, 6.8, 6.6, 8.2, 7.0, 8.8, 6.4, 5.7, 6.9, 6.2, 6.8, 5.6, 6.3, 7.9, 6.9, 10.9, 6.6, 5.8, 6.4, 6.8, 5.6, 4.9, 7.4, 6.8, 6.8, 6.5, 7.1, 7.2, 5.5, 6.9, 6.3, 6.4, 6.1, 5.2, 6.8, 6.9, 7.5, 7.2, 10.1, 7.2, 6.8, 7.4, 5.6, 6.3, 6.8, 6.0, 6.9, 6.2, 5.9, 7.0, 6.9, 8.3, 5.6, 8.2, 6.0, 6.7, 7.5, 6.2, 10.1, 7.0, 7.2, 5.5, 5.7, 11.1, 6.9, 11.5, 7.1, 6.6, 6.3, 6.6, 7.8, 6.7, 5.7, 6.7, 7.2, 9.1, 7.8, 8.1, 7.4, 6.5, 6.8, 7.4, 5.3, 7.6, 7.0, 6.2, 11.3, 5.0, 6.4, 6.0, 8.9, 6.6, 7.0, 6.5, 7.7, 7.2, 6.0, 6.5, 5.9, 6.4, 7.0, 6.7, 6.2, 6.6, 6.8, 7.5, 7.4, 8.0, 6.2, 7.2, 6.9, 6.2, 8.2, 6.0, 7.4, 8.3, 6.6, 6.4, 6.8, 5.6, 6.0, 6.4, 6.8, 7.0, 8.9, 7.1, 7.4, 6.9, 6.6, 8.4, 7.1, 8.7, 7.3, 8.3, 8.2, 9.0, 10.9, 8.6, 9.6, 7.3, 12.0, 6.0, 6.9, 7.4, 5.8, 5.6, 5.7, 6.7, 6.1, 10.6, 8.2, 7.3, 7.2, 6.4, 7.4, 7.9, 6.7, 6.8, 9.9, 6.4, 7.2, 5.0, 7.5, 5.3, 6.9, 5.6, 7.2, 6.9, 6.1, 6.9, 7.3, 7.0, 6.6, 7.4, 6.3, 8.0, 7.4, 11.6, 8.9, 7.0, 6.9, 6.4, 6.5, 10.4, 6.7, 5.6, 5.5, 10.6, 8.8, 6.9, 7.4, 7.6, 7.2, 6.0, 9.1, 5.8, 7.5, 7.0, 6.5, 6.0, 5.1, 6.7, 6.9, 7.4, 7.9, 7.3, 7.8, 8.5, 6.6, 6.7, 6.1, 7.3, 7.0, 6.0, 7.7, 7.4, 6.3, 6.0, 6.6, 7.1, 6.8, 6.4, 7.0, 5.7, 5.1, 7.4, 5.7, 7.7, 6.7, 6.6, 6.4, 6.8, 7.1, 8.0, 6.0, 8.0, 12.4, 6.6, 7.3, 7.0, 6.1, 6.6, 6.9, 6.4, 7.9, 6.6, 7.5, 9.6, 7.2, 8.0, 5.5, 6.3, 6.8, 6.9, 6.6, 7.4, 7.6, 5.6, 7.0, 6.9, 6.9, 6.9, 6.7, 6.8, 6.4, 6.8, 6.0, 7.5, 9.0, 10.2, 6.6, 7.8, 13.7, 7.1, 7.0, 7.1, 7.7, 6.1, 8.2, 9.5, 7.4, 6.5, 8.3, 5.7, 6.4, 7.8, 6.8, 6.7, 6.7], \"xaxis\": \"x2\", \"y\": [0.6660328535674787, 0.4955559099445003, 0.11251030999551548, 0.5313240922219649, 0.7616845263358343, 0.42881839881496897, 0.22146723198036844, 0.2709448900825402, 0.04188686298684474, 0.3198999677935893, 0.586632325439729, 0.3332859260788763, 0.0891770245136605, 0.07249138429342028, 0.0813041402249215, 0.2808128557304226, 0.18155424903412543, 0.14020593233116785, 0.20529540916933675, 0.1755850319354616, 0.5722846846512241, 0.4684623303117058, 0.2863708053899042, 0.4489302200945696, 0.3606737334686688, 0.09834172337505831, 0.1439119889738254, 0.10526388551166177, 0.08976738859769384, 0.15927641460572795, 0.07353544332944184, 0.4894096639868448, 0.24735122968283396, 0.41440459167745447, 0.10107859516115147, 0.4809249647595707, 0.043928674649753696, 0.27268427565697984, 0.07203278686513981, 0.35989685204578803, 0.08410225657903847, 0.09640449279894714, 0.2859044620344169, 0.766491644508495, 0.27194216744256416, 0.11891721880979944, 0.6033870782914414, 0.8445823904457724, 0.4148378249676725, 0.09538880480821377, 0.5822786697287807, 0.2006236885231063, 0.30215903380660414, 0.3526626332448971, 0.22921561702294402, 0.3499358724503807, 0.451050436906263, 0.01968005574460141, 0.3849224947932618, 0.608666907839271, 0.30333177217190177, 0.05732515971384944, 0.08299070223644744, 0.155374347961305, 0.4378217303747408, 0.10641916767178827, 0.3207785913922725, 0.3280003244598044, 0.4747408725557203, 0.27229542413121455, 0.5314247042003052, 0.13834506443323813, 0.652508483608137, 0.1775869136191267, 0.4659209431511335, 0.3288332341233703, 0.47224603889779837, 0.2773569186284155, 0.18590272545123854, 0.6719763059805124, 0.04569198037744582, 0.22473444069733528, 0.0776074933333939, 0.1411968215808168, 0.3654892991508686, 0.06069899520469324, 0.21029328672965164, 0.13919371635861133, 0.16321149678759816, 0.6144435769482088, 0.1388055550317996, 0.0827658987104557, 0.0793107693477757, 0.04994940743047871, 0.46220165202879504, 0.08265172102971341, 0.5554564865761329, 0.10902951494304747, 0.26480674198345266, 0.31816712550642645, 0.20184400370343658, 0.23734670470511587, 0.19264674509953905, 0.03558879485690103, 0.5314247042003052, 0.3013473679880785, 0.8043030592862955, 0.07665185966197174, 0.17816243980233548, 0.14637302723887635, 0.43623195291339645, 0.5773286546676725, 0.06996409198491005, 0.0635191394270278, 0.11839391684253864, 0.03368970372860669, 0.16544292122901683, 0.5002106013252752, 0.20783967621931676, 0.4413184352618238, 0.1377753535318076, 0.017128038770129694, 0.09070427960766203, 0.05237321155563324, 0.46044782253877736, 0.09863911308639095, 0.6058955548956951, 0.07377868677997379, 0.33726125667837825, 0.03705661785513226, 0.03856885477325478, 0.01970319875133708, 0.06623921298607705, 0.655672818127978, 0.36403826442427, 0.375635621083512, 0.25822104517587474, 0.26990817233175546, 0.30316845466795117, 0.21597661143113533, 0.10411587283779344, 0.4582573305440075, 0.28974208538397184, 0.3995654588450376, 0.48407929824265805, 0.2412117545349558, 0.49704114689177337, 0.3112403223054312, 0.13571503940671914, 0.35304273602320047, 0.18963603484652192, 0.06023564559469896, 0.305863422303413, 0.34062746964654456, 0.03532029949184434, 0.20200996882548472, 0.207876095289533, 0.11304202998506685, 0.26487496820305634, 0.46674395287949066, 0.05931266843465788, 0.6063731497207538, 0.053339747820140615, 0.16056749669580483, 0.3366557342021428, 0.18735912995827353, 0.2667542380283816, 0.9197592959547904, 0.13322255285490225, 0.3533185668595151, 0.08763312389948397, 0.343329095265401, 0.1298321532292276, 0.11240742021865013, 0.03412749239977686, 0.23316671381479437, 0.13955591125269062, 0.065615492475942, 0.03940539431326806, 0.04874684240881699, 0.42507109047861347, 0.3720756994829524, 0.20627971812824875, 0.23346983492740092, 0.299872058778726, 0.14688925552714138, 0.20529540916933675, 0.11294333341234963, 0.4523771212155355, 0.15895981664313275, 0.12633289347617382, 0.34801013400503944, 0.063056887931354, 0.09222807982804315, 0.19281104432210028, 0.11843845992675284, 0.1064686731970873, 0.12171087020281346, 0.49704114689177337, 0.4202798549667376, 0.058322454167927695, 0.40418598015134155, 0.7514842711311043, 0.067978575311199, 0.1468497162592186, 0.3655805321171328, 0.36741292271676196, 0.08785516413846428, 0.4223454464089015, 0.09472348251934337, 0.14196098925812006, 0.10013555988874479, 0.32154631204965056, 0.05416575683382341, 0.786126361492164, 0.04696516601190348, 0.26926088858349784, 0.28123172687107445, 0.3094364396730669, 0.04307250962973752, 0.07126159086244754, 0.6143015945908075, 0.495586079448059, 0.46102608015166635, 0.40789311683600216, 0.8929715185951024, 0.1227006502272181, 0.3638055988942468, 0.10470002869891348, 0.29304213908849364, 0.8936703981375603, 0.3534407380188983, 0.0883666731866185, 0.07895584641700149, 0.05166417783587085, 0.4199775765299997, 0.10304865631077798, 0.1041340676595982, 0.11031385635331636, 0.22368578646300386, 0.22137255536682798, 0.0725394352715707, 0.08320759746190642, 0.3577905591727162, 0.36362749207413336, 0.13058702032609693, 0.4306817897420764, 0.4684623303117058, 0.3185463047756948, 0.6991046594229053, 0.33105510290791684, 0.35804773811787727, 0.3499358724503807, 0.17780319308126435, 0.07142366539796174, 0.1504846162366139, 0.28643330026545544, 0.11492102279820171, 0.08716328114311156, 0.12905574960179156, 0.5528531989583015, 0.2852168598030531, 0.3185463047756948, 0.41766807389819915, 0.22818770291371737, 0.10749415552266317, 0.07500089027222667, 0.2150933620687273, 0.4879833184669665, 0.21367083697314282, 0.18281788227943807, 0.11217648511765432, 0.01860460444149037, 0.4990100838788346, 0.3212979959143686, 0.7252893191599291, 0.30018855716775616, 0.2808216200321265, 0.24332849241566534, 0.22583693263898685, 0.307128141019565, 0.12930297020615966, 0.07734813107736227, 0.38078614076753503, 0.037937415915298756, 0.18389331462546077, 0.2015421194948802, 0.10121634311933059, 0.7209948827487924, 0.252131738577411, 0.19866278493931944, 0.5569604587758099, 0.19172534874952063, 0.07516041810443141, 0.18673310211333727, 0.20736440356309183, 0.27568985010185776, 0.1748501221961516, 0.134246332983591, 0.12151400729184814, 0.03860330573341564, 0.16198960071610413, 0.062309112953929935, 0.14943540958877521, 0.46827469198568006, 0.12435295831370408, 0.11768791031746062, 0.10794707492381372, 0.04347111427796346, 0.07423675680829, 0.1602542791395647, 0.19911642350143877, 0.2379444352717226, 0.36664322039668684, 0.10130143557253446, 0.17108028607870185, 0.6143194513817134, 0.5641235853966853, 0.29864316680665437, 0.44752301946823647, 0.13459844499503626, 0.037461465199631894, 0.5002964248569376, 0.4059565893810353, 0.7035957096210382, 0.0629603198376949, 0.25036415064992923, 0.14780834332950044, 0.24800647860056513, 0.10438723399855232, 0.24366911510822187, 0.4574644219698093, 0.8347014835967527, 0.42226245660703365, 0.4073158502222598, 0.47525484003715535, 0.37845934883934684, 0.35325777167774697, 0.4763432908647238, 0.18941100564626978, 0.23853527246002126, 0.27277355193056574, 0.5556171757583562, 0.19481513110659687, 0.7460207524242459, 0.12627308236197843, 0.2115813466591615, 0.4773837842994688, 0.22238536240250728, 0.1978655273089749, 0.32057959349203036, 0.1601330373243487, 0.6256605001243821, 0.34062746964654456, 0.5899158924001677, 0.1273375405407705, 0.6866376712310945, 0.3812864953771038, 0.07918534602430627, 0.10510921928053807, 0.052405178286905496, 0.29010285216427345, 0.5802968836962079, 0.4475494904811408, 0.33107045093633036, 0.6046547135519548, 0.33132995382553565, 0.3391582818855403, 0.37109937806185267, 0.18876467901964422, 0.03244681540368277, 0.6531311156123596, 0.18281848038190407, 0.06840545126676123, 0.23876166598551407, 0.5602062902528231, 0.05478334190217349, 0.18965009362393503, 0.502081053312289, 0.0945975060483667, 0.24937367783354814, 0.14040338921272166, 0.09582424632391484, 0.4879833184669665, 0.07536550594022651, 0.37763546052463404, 0.20240400638142053, 0.06234715971662652, 0.1729504208160284, 0.2536573606029918, 0.1491704939138675, 0.47224603889779837, 0.20734784509414073, 0.1656619584420439, 0.20263687678412212, 0.4576701693643329, 0.3746187330143109, 0.06578487521364562, 0.09359041291034786, 0.15714155813810793, 0.43198081216185935, 0.17693664965610134, 0.14200602748771296, 0.16878839641400256, 0.11131318694256087, 0.43040972974554736, 0.12494266711040569, 0.5286591337585229, 0.3917329141436472, 0.14284790216410748, 0.29931895876037384, 0.3998656181534954, 0.13198036366642862, 0.2166851793268345, 0.164669749255824, 0.3116999397838065, 0.5702002297218003, 0.2867818412254799, 0.05809024612643199, 0.0701620515557333, 0.10493669218879953, 0.03474255021640338, 0.14069518845012563, 0.7697788668098057, 0.44513161239284327, 0.12104291767226882, 0.2823656727566666, 0.28640273091276736, 0.09904459769556595, 0.10889384421684001, 0.1978655273089749, 0.6326587477498924, 0.0766186874204361, 0.07300117689776386, 0.3978521493117628, 0.7293533971641823, 0.24040337450518035, 0.46827469198568006, 0.03737110954461231, 0.48112847828662497, 0.5755848065786346, 0.12151472907643468, 0.332302417201758, 0.3208349144509022, 0.13406270144296106, 0.47820199098358873, 0.024219732643774528, 0.7923035912680444, 0.3099424932714111, 0.8494816644677875, 0.15230116664989468, 0.8795672599938588, 0.34536882843285344, 0.587897812361327, 0.3660303223369904, 0.3074082248441362, 0.1925553058603695, 0.1582957933341015, 0.5297945963993664, 0.1892543681582496, 0.06574637766643598, 0.03286461121245521, 0.6223124217546917, 0.48666930315350876, 0.17200815643270417, 0.27042696199957883, 0.16010429726024444, 0.25291734909108765, 0.22778758435893687, 0.6055190518965303, 0.41989528411161425, 0.2865861541738164, 0.17344095530188786, 0.4163761941495938, 0.24610426408478792, 0.029106329843254564, 0.5849270471051293, 0.09607886499379148, 0.4890296174547498, 0.11193395874659995, 0.3667485749721523, 0.29672938182784603, 0.13696827462710404, 0.03986507081677082, 0.41542023534722683, 0.1642424989032959, 0.041559354155004224, 0.1266666793707928, 0.5259198205822933, 0.42123490919744344, 0.6147437654518444, 0.42849246998341506, 0.04874684240881699, 0.16870816563337898, 0.35179373534084035, 0.4552463954734379, 0.1543174595222413, 0.4641274821418986, 0.1106599594415556, 0.40441066041397966, 0.05916303638108533, 0.24194101851814365, 0.5755848065786346, 0.23631147082452741, 0.04679471849088612, 0.33132995382553565, 0.6031606095022326, 0.16900214819844117, 0.9322526967181247, 0.1065938389205352, 0.0540586741766943, 0.14920224829950646, 0.03054451782098533, 0.13595064656866984, 0.15908339514281045, 0.09402391562754642, 0.27219479721363327, 0.10477531970828624, 0.6046547135519548, 0.04412971358840656, 0.0821245873848182, 0.24953715645213048, 0.24311299470472425, 0.679537413518331, 0.02875041056121841, 0.2874129658970298, 0.17131102264191878, 0.07042427222914205, 0.1577516063520068, 0.39934634677258996, 0.42249259173992826, 0.24940231538328683, 0.46827469198568006, 0.040988937643475554, 0.034828704291737345, 0.26663563965858417, 0.22421743312747255, 0.10716094829621758, 0.7421831263598226, 0.4644511163280224, 0.1591307416719686, 0.21502194578256428, 0.12883185373794437, 0.15520095945599266, 0.04280666734842442, 0.06928764484923078, 0.3578757504587543, 0.0760792945579073, 0.06637805380770656, 0.5755848065786346, 0.4326356954473739, 0.16985579355455038, 0.47152805642545803, 0.11644579282256762, 0.11790522998710073, 0.5438286352264949, 0.41561805514360906, 0.050606352251634235, 0.21836830194439782, 0.22298545275517268, 0.1504846162366139, 0.16819644397314482, 0.47796113776613436, 0.14100197907825862, 0.7878397890034206, 0.12176963827920351, 0.09814942480303201, 0.23162396036129984, 0.04400104962869911, 0.061588508633294015, 0.2774601068082493, 0.40816383821078206, 0.14036214651023216, 0.11837607594274324, 0.0703155477214753, 0.17002415827487982, 0.24611532014486182, 0.06874641727313702, 0.30975746960573625, 0.07004288447243323, 0.6453829176356538, 0.3880412370469972, 0.10205495289732236, 0.12171087020281346, 0.38550692709735157, 0.4398162761337091, 0.5769741243450848, 0.48842976274850136, 0.3866799681687785, 0.17129518728202664, 0.5711206597512044, 0.4456070955069118, 0.4585850027539752, 0.25462747480751524, 0.34771016550763867, 0.35548618548401445, 0.07878090041588082, 0.3008706318705062, 0.08117751180329491, 0.055511805197920094, 0.1600174453683395, 0.35597309965685686, 0.5473978930443646, 0.3321771897262046, 0.14643302530661162, 0.7653011157176768, 0.24188431843396252, 0.16704799028757666, 0.41136103198090634, 0.5749869949413896, 0.709238838470871, 0.09340318303147321, 0.602429869503323, 0.04154705947390969, 0.7519582179986716, 0.15993940416551844, 0.04372375151311325, 0.4076899811241429, 0.4644511163280224, 0.3133137248525114, 0.24628490675063597, 0.06972977174174444, 0.15949948541388637, 0.2241543425141257, 0.1729876202034616, 0.07290025122558275, 0.1220000714032804, 0.36493953208423235, 0.09420126302076737, 0.026726938234992392, 0.7199273032686843, 0.4606762448039463, 0.04906818437448113, 0.19446415942665518, 0.14876853598344464, 0.3247816953453747, 0.023320858692869595, 0.7310618090422621, 0.48944479260603346, 0.20357574295749958, 0.0840537250624015, 0.5368744051465595, 0.21101467800102214, 0.46682279298460017, 0.3749869638443927, 0.46592999202179275, 0.10188412989688433, 0.15751976448865512], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"fixed.acidity\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"fixed.acidity\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}}, {\"id\": \"All_volatile.acidity\", \"params\": {\"data\": [{\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Reference<br>volatile.acidity=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [0.24, 0.19, 0.33, 0.1, 0.33, 0.36, 0.37, 0.19, 0.23, 0.27, 0.19, 0.57, 0.12, 0.26, 0.25, 0.37, 0.18, 0.685, 0.335, 0.2, 0.26, 0.4, 0.21, 0.25, 0.3, 0.24, 0.3, 0.43, 0.145, 0.66, 0.27, 0.48, 0.24, 0.17, 0.24, 0.2, 0.23, 0.34, 0.44, 0.26, 0.2, 0.08, 0.23, 0.22, 0.24, 0.15, 0.34, 0.47, 0.27, 0.43, 0.15, 0.35, 0.19, 0.19, 0.27, 0.27, 0.44, 0.21, 0.51, 0.4, 0.44, 0.65, 0.22, 0.14, 0.38, 0.6, 0.28, 0.21, 0.31, 0.21, 0.32, 0.37, 0.21, 0.3, 0.37, 0.22, 0.35, 0.24, 0.635, 0.36, 0.21, 0.22, 0.18, 0.27, 0.4, 0.15, 0.18, 0.45, 0.33, 0.4, 0.31, 0.39, 0.17, 0.16, 0.15, 0.35, 0.24, 0.29, 0.25, 0.18, 0.14, 0.25, 0.44, 0.27, 0.24, 0.17, 0.38, 0.11, 0.22, 0.855, 0.27, 0.33, 0.31, 0.25, 0.28, 0.48, 0.34, 0.13, 0.23, 0.36, 0.18, 0.26, 0.27, 0.18, 0.53, 0.51, 0.51, 0.3, 0.2, 0.66, 0.17, 0.455, 0.22, 0.38, 0.25, 0.29, 0.43, 0.855, 0.42, 0.46, 0.18, 0.15, 0.23, 0.24, 0.4, 0.23, 0.23, 0.2, 0.46, 0.13, 0.15, 0.5, 0.23, 0.3, 0.23, 0.31, 0.2, 0.34, 0.22, 0.21, 0.27, 0.63, 0.125, 0.51, 0.38, 0.21, 0.32, 0.23, 0.27, 0.44, 0.44, 0.34, 0.15, 0.23, 0.41, 0.69, 0.53, 0.17, 0.39, 0.635, 0.34, 0.27, 0.2, 0.3, 0.32, 0.235, 0.62, 0.18, 0.28, 0.15, 0.21, 0.66, 0.55, 0.55, 0.59, 0.28, 0.28, 0.23, 0.26, 0.19, 0.16, 0.32, 0.28, 0.62, 0.27, 0.34, 0.24, 0.29, 0.19, 0.36, 0.23, 0.25, 0.28, 0.27, 0.26, 0.23, 0.21, 0.2, 0.18, 0.44, 0.2, 0.21, 0.29, 0.21, 0.27, 0.17, 0.26, 0.17, 0.24, 0.15, 0.32, 0.36, 0.76, 0.28, 0.28, 0.21, 0.15, 0.19, 0.17, 0.29, 0.26, 0.23, 0.21, 0.44, 0.745, 0.27, 0.26, 0.25, 0.29, 0.29, 0.22, 0.19, 0.47, 0.31, 0.4, 0.21, 0.43, 0.2, 0.21, 0.3, 0.105, 0.27, 0.19, 0.34, 0.29, 0.3, 0.43, 0.4, 0.53, 0.3, 0.17, 0.67, 0.28, 0.17, 0.34, 0.25, 0.18, 0.3, 0.66, 0.39, 0.29, 0.24, 0.11, 0.28, 0.36, 0.29, 0.35, 0.2, 0.56, 0.2, 0.18, 0.37, 0.28, 0.39, 0.29, 0.28, 0.6, 0.27, 0.18, 0.2, 0.58, 0.25, 0.43, 0.2, 0.16, 0.36, 0.21, 0.14, 0.25, 0.36, 0.38, 0.24, 0.395, 0.18, 0.16, 0.27, 0.17, 0.32, 0.23, 0.25, 0.3, 0.22, 0.22, 0.41, 0.21, 0.65, 0.24, 0.27, 0.3, 0.3, 0.29, 0.27, 0.26, 0.255, 0.19, 0.19, 0.2, 0.66, 0.25, 0.18, 0.35, 0.28, 0.25, 0.18, 0.53, 0.28, 0.18, 1.0, 0.58, 0.25, 0.16, 0.16, 0.18, 0.18, 0.27, 0.2, 0.36, 0.3, 0.18, 0.48, 0.4, 0.26, 0.29, 0.39, 0.63, 0.26, 0.3, 0.15, 0.31, 0.28, 0.275, 0.19, 0.24, 0.71, 0.64, 0.22, 0.21, 0.83, 0.22, 0.43, 0.49, 0.25, 0.58, 0.34, 0.34, 0.23, 0.54, 0.4, 0.28, 0.25, 0.44, 0.28, 0.3, 0.35, 0.21, 0.31, 0.22, 0.45, 0.27, 0.58, 0.62, 0.62, 0.58, 0.28, 0.25, 0.25, 0.25, 0.34, 0.41, 0.44, 0.295, 0.33, 0.28, 0.16, 0.36, 0.25, 0.37, 0.23, 0.46, 0.42, 0.18, 0.22, 0.31, 0.15, 0.23, 0.26, 0.2, 0.16, 0.45, 0.32, 0.35, 0.33, 0.25, 0.16, 0.24, 0.46, 0.76, 0.68, 0.3, 0.31, 0.31, 0.21, 0.2, 0.42, 0.21, 0.23, 0.29, 0.23, 0.24, 0.12, 0.25, 0.32, 0.315, 0.16, 0.18, 0.37, 0.17, 0.6, 0.17, 0.15, 0.45, 0.4, 0.35, 0.27, 0.14, 0.67, 0.33, 0.19, 0.26, 0.4, 0.66, 0.3, 0.18, 0.23, 0.4, 0.115, 0.3, 0.28, 0.21, 0.2, 0.36, 0.18, 0.22, 0.26, 0.36, 0.28, 0.32, 0.23, 0.37, 0.41, 0.23, 0.58, 0.2, 0.18, 0.305, 0.2, 0.16, 0.21, 0.3, 0.18, 0.54, 0.31, 0.31, 0.23, 0.34, 0.23, 0.26, 0.29, 0.24, 0.3, 0.19, 0.26, 0.2, 0.38, 0.35, 0.37, 0.24, 0.52, 0.22, 0.53, 0.2, 0.29, 0.31, 0.13, 0.63, 0.2, 0.37, 0.26, 0.19, 0.37, 0.4, 0.36, 0.28, 0.29, 0.16, 0.545, 0.18, 0.38, 0.18, 0.32, 0.24, 0.26, 0.26, 0.18, 0.28, 0.29, 0.38, 0.14, 0.46, 0.28, 0.14, 0.44, 0.18, 0.23, 0.17, 0.65, 0.18, 0.43, 0.29, 0.17, 0.3, 0.22, 0.34, 0.41, 0.42, 0.3, 0.23, 0.16, 0.27, 0.28, 0.2, 0.16, 0.2, 0.36, 0.2, 0.23, 0.17, 0.26, 0.35, 0.27, 0.26, 0.32, 0.19, 0.51, 0.17, 0.63, 0.53, 0.26, 0.1, 0.29, 0.49, 0.32, 0.27, 0.26, 0.44, 0.24, 0.34, 0.59, 0.32, 0.42, 0.16, 0.13, 0.24, 0.24, 0.3, 0.34, 0.22, 0.13, 0.21, 0.19, 0.29, 0.43, 0.34, 0.825, 0.31, 0.3, 0.125, 0.29, 0.37, 0.755, 0.19, 0.25, 0.31, 0.55, 0.32, 0.26, 0.28, 0.37, 0.34, 0.19, 0.17, 0.23, 0.19, 0.36, 0.31, 0.18, 0.32, 0.34, 0.23, 0.35, 0.13, 0.67, 0.62, 0.24, 0.18], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Current<br>volatile.acidity=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [0.37, 0.23, 0.21, 0.32, 0.58, 0.21, 0.24, 0.3, 0.2, 0.3, 0.48, 0.25, 0.27, 0.32, 0.32, 0.2, 0.44, 0.25, 0.22, 0.37, 0.2, 0.19, 0.2, 0.26, 0.25, 0.29, 0.22, 0.24, 0.39, 0.34, 0.41, 0.34, 0.22, 0.26, 0.3, 0.19, 0.13, 0.23, 0.475, 0.605, 0.33, 0.24, 0.52, 0.29, 0.26, 0.57, 0.3, 0.6, 0.26, 0.22, 0.42, 0.57, 0.28, 0.28, 0.26, 0.17, 0.22, 0.34, 0.21, 0.76, 0.42, 0.3, 0.22, 0.25, 0.26, 0.3, 0.42, 0.28, 0.54, 0.14, 0.26, 0.28, 0.34, 0.275, 0.29, 0.2, 0.28, 0.18, 0.26, 0.53, 0.15, 0.21, 0.31, 0.24, 0.22, 0.31, 0.36, 0.33, 0.19, 0.3, 0.2, 0.24, 0.25, 0.31, 0.4, 0.4, 0.475, 0.25, 0.26, 0.61, 0.26, 0.17, 0.51, 0.28, 0.26, 0.28, 0.53, 0.24, 0.38, 0.3, 0.66, 0.33, 0.29, 0.29, 0.32, 0.36, 0.255, 0.24, 0.29, 0.66, 0.33, 0.23, 0.34, 0.16, 0.635, 0.42, 0.46, 0.34, 0.39, 0.17, 0.19, 0.36, 0.26, 0.28, 0.27, 0.21, 0.36, 0.42, 0.34, 0.21, 0.18, 0.865, 0.39, 0.23, 0.29, 0.31, 0.35, 0.4, 0.09, 0.22, 0.12, 0.1, 0.18, 0.2, 0.19, 0.3, 0.35, 0.37, 0.2, 0.23, 0.23, 0.55, 0.37, 0.3, 0.39, 0.265, 0.3, 1.04, 0.34, 0.21, 0.15, 0.18, 0.27, 0.34, 0.39, 0.24, 0.2, 0.28, 0.38, 0.31, 0.39, 0.19, 0.18, 0.33, 0.14, 0.55, 0.22, 0.46, 0.27, 0.41, 0.19, 0.18, 0.22, 0.25, 0.17, 0.39, 0.19, 0.33, 0.35, 0.27, 0.36, 0.26, 0.4, 0.17, 0.21, 0.31, 0.21, 0.44, 0.25, 0.15, 0.26, 0.28, 0.46, 0.32, 0.46, 0.32, 0.22, 0.31, 0.35, 0.24, 0.18, 0.35, 0.6, 0.26, 0.22, 0.655, 0.2, 0.28, 0.42, 0.22, 0.84, 0.28, 0.19, 0.23, 0.27, 0.2, 0.34, 0.14, 0.31, 0.16, 0.22, 0.4, 0.36, 0.22, 0.46, 0.43, 0.19, 0.19, 0.21, 0.685, 0.17, 0.22, 0.17, 0.28, 0.13, 0.11, 0.14, 0.17, 0.34, 0.32, 0.65, 0.28, 0.21, 0.28, 0.13, 0.24, 0.27, 0.41, 0.23, 0.18, 0.11, 0.17, 0.15, 0.59, 0.11, 0.68, 0.24, 0.18, 0.295, 0.55, 0.37, 0.27, 0.28, 0.345, 0.28, 0.44, 0.32, 0.2, 0.585, 0.17, 0.45, 0.43, 0.13, 0.32, 0.17, 0.28, 0.25, 0.36, 0.24, 0.3, 0.17, 0.16, 0.25, 0.38, 0.25, 0.36, 0.37, 0.18, 0.21, 0.16, 0.24, 0.46, 0.52, 0.31, 0.21, 0.22, 0.37, 0.28, 0.19, 0.25, 0.33, 0.28, 0.29, 0.19, 0.65, 0.2, 0.29, 0.32, 0.19, 0.4, 0.43, 0.16, 0.785, 0.22, 0.27, 0.25, 0.25, 0.26, 0.36, 0.43, 0.21, 0.32, 0.3, 0.54, 0.63, 0.18, 0.35, 0.27, 0.25, 0.41, 0.43, 0.305, 0.23, 0.2, 0.3, 0.31, 0.645, 0.29, 0.16, 0.52, 0.3, 0.24, 0.42, 0.26, 0.45, 0.27, 0.22, 0.22, 0.33, 0.24, 0.22, 0.34, 0.21, 0.14, 0.53, 0.725, 0.18, 0.27, 0.47, 0.26, 0.235, 0.26, 0.33, 0.23, 0.23, 0.2, 0.27, 0.16, 0.45, 0.4, 0.2, 0.28, 0.24, 0.23, 0.115, 0.57, 0.25, 0.27, 0.37, 0.18, 0.18, 0.21, 0.19, 0.19, 0.31, 0.23, 0.24, 0.445, 0.15, 0.45, 0.26, 0.2, 0.18, 0.19, 0.18, 0.4, 0.21, 0.37, 0.32, 0.26, 0.21, 0.28, 0.42, 0.765, 0.315, 0.28, 0.25, 0.28, 0.36, 0.17, 0.41, 0.27, 0.15, 0.32, 0.5, 0.52, 0.24, 0.25, 0.08, 0.18, 0.19, 0.57, 0.23, 0.19, 0.36, 0.34, 0.38, 0.5, 0.42, 0.745, 0.22, 0.69, 0.18, 0.57, 0.17, 0.33, 0.36, 0.18, 0.22, 0.4, 0.24, 0.36, 0.19, 0.23, 0.18, 0.17, 0.44, 0.17, 0.21, 0.685, 0.3, 0.2, 0.58, 0.16, 0.16, 0.24, 0.36, 0.13, 0.26, 0.21, 0.34, 0.25, 0.38, 0.12, 0.17, 0.19, 0.3, 0.38, 0.39, 0.59, 0.45, 0.22, 0.31, 0.35, 0.2, 0.39, 0.2, 0.56, 0.305, 0.45, 0.24, 0.26, 0.19, 0.26, 0.41, 0.22, 0.31, 0.35, 1.02, 0.27, 0.52, 0.21, 0.35, 0.26, 0.22, 0.44, 0.41, 0.4, 0.27, 0.25, 0.3, 0.49, 0.24, 0.32, 0.21, 0.19, 0.25, 0.37, 0.25, 0.26, 0.69, 0.17, 0.25, 0.25, 0.31, 0.3, 0.53, 0.24, 0.69, 0.38, 0.22, 0.29, 0.26, 0.16, 0.27, 0.15, 0.5, 0.31, 0.21, 0.19, 0.29, 0.32, 0.41, 0.21, 0.2, 0.42, 0.36, 0.15, 0.35, 0.33, 0.11, 0.31, 0.16, 0.34, 0.34, 0.2, 0.21, 0.28, 0.19, 0.28, 0.205, 0.26, 0.19, 0.43, 0.28, 0.21, 0.33, 0.24, 0.25, 0.28, 0.38, 0.3, 0.15, 0.33, 0.18, 0.32, 0.61, 0.3, 0.38, 0.38, 0.56, 0.34, 0.24, 0.22, 0.58, 0.35, 0.32, 0.28, 0.2, 0.21, 0.16, 0.58, 0.28, 0.255, 0.21, 0.63, 0.38, 0.16, 0.24, 0.35, 0.48, 0.19, 0.2, 0.17, 0.6, 0.32, 0.18, 0.2, 0.38, 0.52, 0.15, 0.38, 0.18, 0.14, 0.16, 0.26, 0.24, 0.245, 0.29, 0.15, 0.645, 0.415, 0.18, 0.2, 0.34, 0.18, 0.22, 0.51, 0.42, 0.49, 0.32, 0.25, 0.2, 0.24, 0.18, 0.27, 0.53, 0.28], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Reference<br>volatile.acidity=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [0.46, 0.32, 0.27, 0.6, 0.46, 0.66, 0.58, 0.21, 0.4, 0.41, 0.6, 0.21, 0.3, 0.32, 0.52, 0.37, 0.53, 1.13, 0.26, 1.33, 0.3, 0.31, 1.115, 0.19, 0.685, 0.76, 0.22, 0.69, 0.705, 0.3, 0.805, 0.34, 0.28, 0.23, 0.25, 0.28, 0.16, 0.2, 0.42, 0.25, 0.38, 0.28, 0.1, 0.365, 0.755, 0.26, 0.165, 0.17, 0.31, 0.44, 0.63, 0.305, 0.26, 0.5, 0.27, 0.47, 0.28, 0.51, 0.38, 0.41, 0.6, 0.25, 0.7, 0.21, 0.66, 0.22, 0.47, 0.64, 0.54, 0.17, 0.24, 0.37, 0.41, 0.29, 0.15, 0.31, 0.28, 0.18, 0.77, 0.31, 0.24, 0.28, 0.27, 0.48, 0.3, 0.54, 0.2, 0.52, 0.39, 0.34, 0.37, 0.26, 0.6, 0.41, 0.28, 0.27, 0.22, 0.28, 0.28, 0.28, 0.31, 0.39, 0.21, 0.32, 0.57, 0.41, 0.32, 0.35, 0.43, 0.2, 0.41, 0.15, 0.45, 0.14, 0.43, 0.5, 0.39, 0.25, 1.025, 0.28, 0.33, 0.57, 0.41, 0.35, 0.32, 0.44, 0.26, 0.765, 0.775, 0.28, 0.17, 0.935, 0.29, 0.25, 0.28, 0.34, 0.14, 0.32, 0.27, 0.69, 0.27, 0.27, 0.36, 0.29, 0.33, 0.45, 0.2, 0.21, 0.59, 0.38, 0.28, 0.68, 0.19, 0.56, 0.2, 0.87, 0.42, 0.21, 0.14, 0.45, 0.23, 0.68, 0.46, 0.31, 0.655, 0.25, 0.23, 0.32, 0.34, 0.25, 0.29, 0.23, 0.59, 0.37, 0.44, 0.48, 0.38, 0.3, 0.58, 0.34, 0.32, 1.33, 0.28, 0.33, 0.26, 0.29, 0.93, 0.34, 0.56, 0.29, 0.22, 0.275, 0.32, 0.615, 0.27, 0.755, 0.29, 0.25, 0.33, 0.17, 0.35, 0.5, 0.5, 0.73, 0.26, 0.31, 0.21, 0.35, 0.54, 0.19, 0.22, 0.21, 0.31, 0.25, 0.32, 0.42, 0.46, 0.475, 0.61, 0.42, 0.69, 0.19, 0.31, 0.26, 0.15, 0.38, 0.76, 0.24, 0.36, 0.695, 0.35, 0.25, 0.12, 0.23, 0.17, 0.3, 0.36, 0.26, 0.34, 0.29, 0.45, 0.34, 0.24, 0.27, 0.19, 0.37, 0.4, 0.26, 0.31, 0.52, 0.88, 0.29, 0.28, 0.835, 0.25, 0.345, 0.23, 0.62, 0.28, 0.39, 0.25, 0.41, 0.26, 0.25, 0.2, 0.22, 0.19, 0.2, 0.32, 0.725, 0.23, 0.67, 0.24, 0.32, 0.32, 0.42, 0.58, 0.32, 0.35, 0.415, 0.5, 0.64, 0.34, 0.66, 0.39, 0.29, 0.21, 0.23, 0.34, 0.265, 0.2, 0.29, 0.49, 0.43, 0.33, 0.54, 0.33, 0.695, 0.28, 0.58, 0.915, 0.18, 0.82, 0.14, 0.615, 0.24, 0.34, 0.39, 0.36, 0.39, 0.18, 0.37, 0.64, 0.27, 0.39, 0.32, 0.23, 0.47, 0.28, 0.46, 0.47, 0.25, 0.96, 0.41, 0.32, 0.31, 0.36, 0.25, 0.575, 0.28, 0.28, 0.45, 0.39, 0.24, 0.12, 0.63, 0.37, 0.5, 0.59, 0.42, 0.22, 0.24, 0.2, 0.775, 0.24, 0.61, 0.38, 0.3, 0.24, 0.46, 0.31, 0.52, 0.4, 0.5, 0.19], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Current<br>volatile.acidity=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [0.365, 0.62, 0.27, 0.18, 0.29, 0.28, 0.43, 0.765, 0.785, 0.6, 0.3, 0.19, 0.31, 0.25, 0.29, 0.21, 0.31, 0.38, 0.35, 0.45, 0.28, 0.25, 0.34, 0.41, 0.22, 0.29, 0.41, 0.41, 0.21, 0.2, 0.27, 0.3, 0.73, 0.6, 0.18, 0.19, 0.98, 0.52, 0.12, 0.36, 0.485, 0.58, 0.34, 0.25, 0.43, 0.51, 0.54, 0.6, 0.28, 0.2, 0.25, 0.26, 0.31, 0.64, 0.705, 0.37, 0.61, 0.645, 0.31, 0.42, 0.645, 0.45, 0.27, 0.29, 0.39, 0.91, 0.46, 0.7, 0.775, 0.55, 0.57, 0.34, 0.335, 0.685, 0.24, 0.25, 0.27, 0.31, 0.47, 0.39, 0.13, 0.56, 0.29, 0.5, 0.2, 0.37, 0.16, 0.25, 0.25, 0.5, 0.23, 0.345, 0.27, 0.3, 0.58, 1.58, 0.29, 0.62, 0.64, 0.24, 0.35, 0.42, 0.21, 0.52, 0.33, 0.51, 0.62, 0.5, 0.33, 0.33, 0.6, 0.31, 0.63, 0.3, 0.21, 0.27, 0.24, 0.41, 0.27, 0.56, 0.27, 0.24, 0.61, 0.5, 0.695, 0.65, 0.16, 0.23, 0.695, 0.44, 0.28, 0.33, 0.3, 0.35, 0.34, 0.39, 0.25, 0.66, 0.585, 0.315, 0.29, 0.2, 0.22, 0.18, 0.59, 0.34, 0.21, 0.4, 0.52, 0.37, 0.5, 0.31, 0.43, 0.24, 0.3, 0.31, 0.22, 0.26, 0.28, 0.55, 0.635, 0.32, 0.14, 0.36, 0.59, 0.31, 0.3, 0.14, 0.21, 0.23, 0.31, 0.26, 0.28, 0.17, 0.35, 0.54, 0.39, 0.39, 0.24, 0.15, 0.16, 0.215, 0.38, 0.34, 0.26, 0.3, 0.29, 0.27, 0.28, 0.24, 0.66, 0.25, 0.25, 0.28, 0.4, 0.38, 0.21, 0.3, 0.18, 0.45, 0.67, 0.36, 0.34, 0.24, 0.27, 0.21, 0.31, 0.32, 0.5, 0.31, 0.34, 0.33, 0.48, 0.2, 0.28, 0.39, 0.29, 0.34, 0.34, 0.24, 0.4, 0.27, 0.33, 0.28, 0.18, 0.41, 0.41, 0.27, 0.52, 0.345, 0.33, 0.23, 0.22, 0.23, 0.745, 0.35, 0.12, 0.22, 0.3, 0.22, 0.44, 0.65, 0.21, 0.12, 0.29, 0.32, 0.17, 0.14, 0.4, 0.41, 0.42, 0.44, 0.3, 0.24, 0.29, 0.23, 0.12, 0.3, 0.34, 0.45, 0.46, 0.2, 0.18, 0.18, 0.26, 0.28, 0.47, 0.23, 0.235, 0.33, 0.28, 0.705, 0.16, 0.31, 0.16, 0.28, 0.33, 0.45, 0.675, 0.37, 0.78, 0.28, 0.19, 0.6, 0.62, 0.14, 0.31, 0.555, 0.21, 0.45, 0.26, 0.6, 0.4, 0.62, 0.3, 0.41, 0.41, 0.3, 0.25, 0.59, 0.24, 0.32, 0.25, 0.26, 0.44, 0.475, 0.35, 0.24, 0.28, 0.23, 0.4, 0.27, 0.26, 0.24, 0.27, 0.26, 0.31, 0.26, 0.33, 0.595, 0.26, 0.39, 0.26, 0.23, 0.875, 0.35, 0.33, 0.45, 0.3, 0.335, 0.9, 0.24, 0.19, 0.16, 0.55, 0.21, 0.15, 0.63, 0.22, 0.49, 0.32, 0.44, 0.48, 0.83, 0.61, 0.2, 0.4, 0.365, 0.22, 0.15, 0.23, 0.26], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Reference\", \"x\": 0.245, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Current\", \"x\": 0.755, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"barmode\": \"overlay\", \"legend\": {\"title\": {\"text\": \"target\"}, \"tracegroupgap\": 0}, \"margin\": {\"t\": 60}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.49], \"title\": {\"text\": \"volatile.acidity\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.51, 1.0], \"matches\": \"x\", \"title\": {\"text\": \"volatile.acidity\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"count\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}}}}, {\"id\": \"volatile.acidity_good\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (ref)\", \"type\": \"scatter\", \"x\": [0.24, 0.19, 0.33, 0.1, 0.33, 0.36, 0.37, 0.19, 0.23, 0.27, 0.19, 0.57, 0.12, 0.26, 0.25, 0.37, 0.18, 0.685, 0.335, 0.2, 0.26, 0.4, 0.21, 0.25, 0.3, 0.24, 0.3, 0.43, 0.145, 0.66, 0.27, 0.48, 0.24, 0.17, 0.24, 0.2, 0.23, 0.34, 0.44, 0.26, 0.2, 0.08, 0.23, 0.22, 0.24, 0.15, 0.34, 0.47, 0.27, 0.43, 0.15, 0.35, 0.19, 0.19, 0.27, 0.27, 0.44, 0.21, 0.51, 0.4, 0.44, 0.65, 0.22, 0.14, 0.38, 0.6, 0.28, 0.21, 0.31, 0.21, 0.32, 0.37, 0.21, 0.3, 0.37, 0.22, 0.35, 0.24, 0.635, 0.36, 0.21, 0.22, 0.18, 0.27, 0.4, 0.15, 0.18, 0.45, 0.33, 0.4, 0.31, 0.39, 0.17, 0.16, 0.15, 0.35, 0.24, 0.29, 0.25, 0.18, 0.14, 0.25, 0.44, 0.27, 0.24, 0.17, 0.38, 0.11, 0.22, 0.855, 0.27, 0.33, 0.31, 0.25, 0.28, 0.48, 0.34, 0.13, 0.23, 0.36, 0.18, 0.26, 0.27, 0.18, 0.53, 0.51, 0.51, 0.3, 0.2, 0.66, 0.17, 0.455, 0.22, 0.38, 0.25, 0.29, 0.43, 0.855, 0.42, 0.46, 0.18, 0.15, 0.23, 0.24, 0.4, 0.23, 0.23, 0.2, 0.46, 0.13, 0.15, 0.5, 0.23, 0.3, 0.23, 0.31, 0.2, 0.34, 0.22, 0.21, 0.27, 0.63, 0.125, 0.51, 0.38, 0.21, 0.32, 0.23, 0.27, 0.44, 0.44, 0.34, 0.15, 0.23, 0.41, 0.69, 0.53, 0.17, 0.39, 0.635, 0.34, 0.27, 0.2, 0.3, 0.32, 0.235, 0.62, 0.18, 0.28, 0.15, 0.21, 0.66, 0.55, 0.55, 0.59, 0.28, 0.28, 0.23, 0.26, 0.19, 0.16, 0.32, 0.28, 0.62, 0.27, 0.34, 0.24, 0.29, 0.19, 0.36, 0.23, 0.25, 0.28, 0.27, 0.26, 0.23, 0.21, 0.2, 0.18, 0.44, 0.2, 0.21, 0.29, 0.21, 0.27, 0.17, 0.26, 0.17, 0.24, 0.15, 0.32, 0.36, 0.76, 0.28, 0.28, 0.21, 0.15, 0.19, 0.17, 0.29, 0.26, 0.23, 0.21, 0.44, 0.745, 0.27, 0.26, 0.25, 0.29, 0.29, 0.22, 0.19, 0.47, 0.31, 0.4, 0.21, 0.43, 0.2, 0.21, 0.3, 0.105, 0.27, 0.19, 0.34, 0.29, 0.3, 0.43, 0.4, 0.53, 0.3, 0.17, 0.67, 0.28, 0.17, 0.34, 0.25, 0.18, 0.3, 0.66, 0.39, 0.29, 0.24, 0.11, 0.28, 0.36, 0.29, 0.35, 0.2, 0.56, 0.2, 0.18, 0.37, 0.28, 0.39, 0.29, 0.28, 0.6, 0.27, 0.18, 0.2, 0.58, 0.25, 0.43, 0.2, 0.16, 0.36, 0.21, 0.14, 0.25, 0.36, 0.38, 0.24, 0.395, 0.18, 0.16, 0.27, 0.17, 0.32, 0.23, 0.25, 0.3, 0.22, 0.22, 0.41, 0.21, 0.65, 0.24, 0.27, 0.3, 0.3, 0.29, 0.27, 0.26, 0.255, 0.19, 0.19, 0.2, 0.66, 0.25, 0.18, 0.35, 0.28, 0.25, 0.18, 0.53, 0.28, 0.18, 1.0, 0.58, 0.25, 0.16, 0.16, 0.18, 0.18, 0.27, 0.2, 0.36, 0.3, 0.18, 0.48, 0.4, 0.26, 0.29, 0.39, 0.63, 0.26, 0.3, 0.15, 0.31, 0.28, 0.275, 0.19, 0.24, 0.71, 0.64, 0.22, 0.21, 0.83, 0.22, 0.43, 0.49, 0.25, 0.58, 0.34, 0.34, 0.23, 0.54, 0.4, 0.28, 0.25, 0.44, 0.28, 0.3, 0.35, 0.21, 0.31, 0.22, 0.45, 0.27, 0.58, 0.62, 0.62, 0.58, 0.28, 0.25, 0.25, 0.25, 0.34, 0.41, 0.44, 0.295, 0.33, 0.28, 0.16, 0.36, 0.25, 0.37, 0.23, 0.46, 0.42, 0.18, 0.22, 0.31, 0.15, 0.23, 0.26, 0.2, 0.16, 0.45, 0.32, 0.35, 0.33, 0.25, 0.16, 0.24, 0.46, 0.76, 0.68, 0.3, 0.31, 0.31, 0.21, 0.2, 0.42, 0.21, 0.23, 0.29, 0.23, 0.24, 0.12, 0.25, 0.32, 0.315, 0.16, 0.18, 0.37, 0.17, 0.6, 0.17, 0.15, 0.45, 0.4, 0.35, 0.27, 0.14, 0.67, 0.33, 0.19, 0.26, 0.4, 0.66, 0.3, 0.18, 0.23, 0.4, 0.115, 0.3, 0.28, 0.21, 0.2, 0.36, 0.18, 0.22, 0.26, 0.36, 0.28, 0.32, 0.23, 0.37, 0.41, 0.23, 0.58, 0.2, 0.18, 0.305, 0.2, 0.16, 0.21, 0.3, 0.18, 0.54, 0.31, 0.31, 0.23, 0.34, 0.23, 0.26, 0.29, 0.24, 0.3, 0.19, 0.26, 0.2, 0.38, 0.35, 0.37, 0.24, 0.52, 0.22, 0.53, 0.2, 0.29, 0.31, 0.13, 0.63, 0.2, 0.37, 0.26, 0.19, 0.37, 0.4, 0.36, 0.28, 0.29, 0.16, 0.545, 0.18, 0.38, 0.18, 0.32, 0.24, 0.26, 0.26, 0.18, 0.28, 0.29, 0.38, 0.14, 0.46, 0.28, 0.14, 0.44, 0.18, 0.23, 0.17, 0.65, 0.18, 0.43, 0.29, 0.17, 0.3, 0.22, 0.34, 0.41, 0.42, 0.3, 0.23, 0.16, 0.27, 0.28, 0.2, 0.16, 0.2, 0.36, 0.2, 0.23, 0.17, 0.26, 0.35, 0.27, 0.26, 0.32, 0.19, 0.51, 0.17, 0.63, 0.53, 0.26, 0.1, 0.29, 0.49, 0.32, 0.27, 0.26, 0.44, 0.24, 0.34, 0.59, 0.32, 0.42, 0.16, 0.13, 0.24, 0.24, 0.3, 0.34, 0.22, 0.13, 0.21, 0.19, 0.29, 0.43, 0.34, 0.825, 0.31, 0.3, 0.125, 0.29, 0.37, 0.755, 0.19, 0.25, 0.31, 0.55, 0.32, 0.26, 0.28, 0.37, 0.34, 0.19, 0.17, 0.23, 0.19, 0.36, 0.31, 0.18, 0.32, 0.34, 0.23, 0.35, 0.13, 0.67, 0.62, 0.24, 0.18], \"xaxis\": \"x\", \"y\": [0.8156061324462894, 0.42491310922683634, 0.8867827646463432, 0.8014995238430205, 0.30499958310650876, 0.5817355832705369, 0.959171062334887, 0.7854416128369749, 0.9085690698200813, 0.8998600376511439, 0.6341165000693628, 0.412102187638673, 0.7643629411050379, 0.4710001938005606, 0.40182653035141874, 0.40438056362905367, 0.8870480016118494, 0.3650667978415713, 0.9064321709292111, 0.9327245345966092, 0.6458420185168736, 0.8821841129047617, 0.6704018506542557, 0.7655671181822064, 0.8616986618932058, 0.48774537944210006, 0.9637355036179479, 0.6794204065079696, 0.6044835155949141, 0.7867954023600708, 0.9137982268836646, 0.5867502063434873, 0.8048584290077971, 0.9718511071053526, 0.9627192884041744, 0.7978623718349598, 0.6091120966723917, 0.8943338178728011, 0.8853376735027229, 0.9045563504021151, 0.9264844632598176, 0.6342457655367447, 0.9414033426130164, 0.5636516403732365, 0.5172967922101196, 0.4836896337264441, 0.35199620689495453, 0.788779954566273, 0.9696552399248426, 0.772496554239754, 0.8132656157621138, 0.4539090261140653, 0.9333708926412786, 0.679765045723866, 0.48457442622955804, 0.4248820606938153, 0.6737819616086004, 0.8780741425819777, 0.38340602447337646, 0.90634085684919, 0.5574014604752268, 0.6804147683859246, 0.9077110088845216, 0.7718472635729894, 0.4717552048891654, 0.22222808308441652, 0.8616549355667619, 0.705749071892896, 0.4699129352300819, 0.9680524782819758, 0.8891353183282249, 0.9466602521798594, 0.8553382520847058, 0.7430243903066251, 0.6616131862201935, 0.6919609500216202, 0.96565744679506, 0.913108907487878, 0.5395521774612226, 0.9026238558501023, 0.6550941529376255, 0.9757876320152292, 0.8833495792027257, 0.6666029765862381, 0.8504582120840628, 0.9320215595878566, 0.7639947574915884, 0.6085229656221847, 0.9557131606798471, 0.46184432615952054, 0.5642658412077981, 0.8815615400732472, 0.7189203536918151, 0.9301020530176726, 0.7341394174346678, 0.7759189559372703, 0.8448078654733812, 0.9012666081120407, 0.8926028620066223, 0.5287492720273277, 0.6874206920638863, 0.37408584674942635, 0.8348370105186077, 0.8697567261320243, 0.9175759024810304, 0.44644098895981, 0.8874384748400057, 0.7787567487441118, 0.9416122482572158, 0.3265229243180111, 0.9308095750950773, 0.42267134533232753, 0.43068181214270274, 0.8727308285810839, 0.7201611177732586, 0.8430904589044517, 0.8140617541555761, 0.9456747441572588, 0.6672663325862807, 0.8756470416862959, 0.518871521713375, 0.7040615347784164, 0.4957960231649875, 0.6250130361556073, 0.27413726132188326, 0.5193133578087885, 0.37656641690434584, 0.5808048103476511, 0.7917827117482167, 0.36569143480873245, 0.7232542293832885, 0.9785934574433302, 0.5715075300165849, 0.8182555969893297, 0.5448461144048058, 0.9491291995847589, 0.4833587957991669, 0.3189279754564957, 0.9184825510014271, 0.5524830505676419, 0.9600429304649183, 0.7818180966165994, 0.7962710274484252, 0.7569429870375118, 0.46184432615952054, 0.7641514270390748, 0.9486763575522457, 0.8086368705092697, 0.6784536879503494, 0.6877019790624462, 0.6082670858563528, 0.6053794617794684, 0.6319330693089359, 0.4982105707488519, 0.6787928880949093, 0.9231980717613485, 0.8831230955067948, 0.6845485656817341, 0.8799204262605215, 0.9164563829924386, 0.7819268199067826, 0.23469888428232324, 0.9492377841603665, 0.8826092272015389, 0.6360541596480074, 0.5184081252698399, 0.6400126753125241, 0.542646305979658, 0.4479501208302092, 0.7783171875827786, 0.7867712153112567, 0.5236605417423803, 0.6959846197179591, 0.7925023358445066, 0.6683189355892497, 0.18737025221649042, 0.42506327048176057, 0.7272596040941706, 0.7314191754306454, 0.4827891324637794, 0.6649341228620356, 0.9038332731164471, 0.9588917860646077, 0.8945194928389463, 0.49833043835950624, 0.7997712594855277, 0.8577935987172323, 0.7622736922026153, 0.8039391974899521, 0.7396811504731934, 0.8115340233127679, 0.801728888664367, 0.738451208106372, 0.5859674792922007, 0.1865203674848816, 0.8773430435604171, 0.36888329310067386, 0.8651817982269884, 0.9067615420962557, 0.8594983988587351, 0.7437750884018276, 0.9145224932934428, 0.9135679891815164, 0.8001832456898428, 0.6860977766129374, 0.9377826008632761, 0.9300369611912853, 0.6997062971069969, 0.5693182102579236, 0.3404656140239559, 0.7160591142088384, 0.7953146078011, 0.8869803873277935, 0.7639982823097876, 0.8681285227071118, 0.576868797021353, 0.93035102563313, 0.8375600281828176, 0.8279918435672958, 0.9266689436294401, 0.7559862346636359, 0.5099889666930224, 0.6914445842613687, 0.9651950326885705, 0.87851968214492, 0.8499702807396289, 0.4685752957996948, 0.7241546992314323, 0.7848147251007912, 0.7341394174346678, 0.7008877443692281, 0.340588975625529, 0.5013021766499856, 0.8321174529331695, 0.8818378666553491, 0.9176909075187759, 0.8634678749265305, 0.7436082905772717, 0.9343776659412377, 0.7668809937296346, 0.6243383802582345, 0.5332560471205093, 0.6907315465649003, 0.16626803588025432, 0.1668542888532837, 0.7408943843163458, 0.5221312328975666, 0.7457559475413279, 0.46389636934606376, 0.9292627865919654, 0.5268311186840582, 0.4244151934213653, 0.643310536612302, 0.8577438313980266, 0.7816208399762355, 0.8553382520847058, 0.7010035672814305, 0.5242572272016158, 0.9187320011579697, 0.8703498177621264, 0.6713045345576062, 0.9137982268836646, 0.8614414457916845, 0.9445662266054761, 0.8808216590199034, 0.7386378115490353, 0.8873009977622293, 0.9157094897337859, 0.6606038558129893, 0.9296803968514485, 0.8864322240790464, 0.5146720135715994, 0.8720710714485208, 0.9415427660945741, 0.9138701141498735, 0.6527559092576063, 0.8751970040938668, 0.9249766460056568, 0.801728888664367, 0.6575848465963361, 0.6934824043184128, 0.8619113960143526, 0.9419078024651042, 0.9591721389341828, 0.8397407150753159, 0.9084383840076588, 0.4963969309336195, 0.7359588175524252, 0.3531961907069324, 0.9279819479140234, 0.7752976919572294, 0.8665226278427577, 0.9515211055933231, 0.7314191754306454, 0.890886918514299, 0.3235491032739525, 0.3719939405423586, 0.6323804178173072, 0.8398006965792015, 0.8239469134189235, 0.8592101816891015, 0.7615002907198236, 0.8688259750909261, 0.8718104001390852, 0.5838074755684882, 0.8756470416862959, 0.901850575196968, 0.9451930143658351, 0.6253812669856891, 0.5890764576710766, 0.4921052500998711, 0.4862070578416567, 0.9170647663398394, 0.7035583451969506, 0.8476385889092957, 0.5603058978573646, 0.5810606890504925, 0.9088604673919816, 0.8903252600075929, 0.944267921154058, 0.9435968591480925, 0.938237366988842, 0.9357286047893738, 0.7961386682142712, 0.7840233885688647, 0.2513590507613302, 0.7389284097502917, 0.9053472250810051, 0.44438282424164377, 0.862281110352348, 0.8021059248496223, 0.9152740930046814, 0.643737358401971, 0.8540304955499701, 0.8613418170006786, 0.6911084183178322, 0.8848367871057808, 0.8387883096682573, 0.5942651630821018, 0.65691393717736, 0.6369979527510315, 0.8280658524313272, 0.9640736168216585, 0.6546311715671466, 0.5599819536107853, 0.48348053317652906, 0.7668016587569692, 0.03620763244300767, 0.7364400865449663, 0.37408584674942635, 0.8767503774172, 0.8743962287172513, 0.8751970040938668, 0.8833495792027257, 0.7091886355621774, 0.87006937054451, 0.7904001815220257, 0.8761418339280951, 0.8306834851111597, 0.7531715889012326, 0.38181207472529843, 0.6490458991820136, 0.9138057013338913, 0.9046222904886461, 0.17956061692355052, 0.7506163079023257, 0.8963285795381793, 0.8848361664653354, 0.9283037217377402, 0.45996158699034445, 0.7290858434196763, 0.8319094967702583, 0.6578018675312727, 0.18727567457681707, 0.8673410249845035, 0.9453298670648187, 0.9446538464906173, 0.19605573045952288, 0.6723831041639817, 0.3438281302059518, 0.37858973820495484, 0.6953170483296187, 0.21463507152544156, 0.26963792069965237, 0.3280912492037974, 0.8399932187801539, 0.420387898633768, 0.36522500752858966, 0.5810560693343539, 0.9306346767722963, 0.7167716539092029, 0.656736106921484, 0.5549139996760648, 0.6909161521388689, 0.591904263202073, 0.884703171197362, 0.866402281883595, 0.7582770814524421, 0.8990773411030794, 0.1818065866116437, 0.6222165686186035, 0.17261914235374884, 0.8156064679757086, 0.4851213943917703, 0.8871292211128762, 0.8398494053952754, 0.703270618172154, 0.6305543892506115, 0.7494149477175548, 0.1532408287022325, 0.6159732902773407, 0.738220551127759, 0.8354520044441791, 0.8536870432671441, 0.5751476712690671, 0.9077719201719568, 0.7878515691455199, 0.6672663325862807, 0.45293736875445273, 0.17058553029544155, 0.747933377844996, 0.8400163125056676, 0.4516778718827729, 0.6082670858563528, 0.8401843469141149, 0.7636885291754726, 0.789170795337903, 0.8128612802083497, 0.7522530659814418, 0.8086757686066508, 0.8356255123032285, 0.9241779635105248, 0.9674588597049086, 0.9368885694202199, 0.4990764491242286, 0.876561204324957, 0.554264192243629, 0.5967716244634195, 0.9060244606340249, 0.8401608718856799, 0.7329750583133859, 0.8021769878309102, 0.9316817655017511, 0.45488322534173153, 0.798578398438993, 0.7425236774748816, 0.5742682328784404, 0.4937681935814938, 0.8972164286692267, 0.8914273370768748, 0.9377613518261881, 0.8862258850530264, 0.8591757581361523, 0.7410678096850266, 0.6822336012657398, 0.9201658505843877, 0.6982578893131915, 0.5746709232170782, 0.7626532952948841, 0.7137703530889916, 0.7520971196461234, 0.4473853625959922, 0.7957460056304991, 0.4833174871501707, 0.8758467705785958, 0.4689303842787964, 0.6133612564737879, 0.8568681391705205, 0.6835133967314007, 0.9732070839986944, 0.21435716257549006, 0.5761668962420043, 0.4055433603128916, 0.3743394998756179, 0.9118635774953143, 0.964551884718591, 0.9306459334511011, 0.8424802355113449, 0.7739144871152517, 0.6872688771534424, 0.8590561833388345, 0.6714384475466295, 0.6408669500407106, 0.5203550269219845, 0.2856853969697174, 0.857760555506807, 0.9307094503226838, 0.6787928880949093, 0.8308635255795866, 0.29271374211533296, 0.6769315553524353, 0.23831547366416572, 0.5895099457120908, 0.8994675076574448, 0.8893400405584444, 0.8456825404777587, 0.5399612081435882, 0.6188649121485582, 0.9281492942813848, 0.7611740601422801, 0.46550237374781617, 0.8896861436466836, 0.9038901015569306, 0.5044440900554997, 0.9215480939667524, 0.6930273792518707, 0.8723244804196287, 0.5624338775604165, 0.9226297661236537, 0.8469231754225917, 0.9430557295321259, 0.9097116306258912, 0.5988707702267543, 0.3813853072548755, 0.8843832309478876, 0.9006952500629406, 0.918975987201669, 0.18997930334445084, 0.8923106748541326, 0.8461388699436441, 0.5973439234355874, 0.9544642924744549, 0.91770416680597, 0.9177239854204658, 0.17584552180125673, 0.9240099144459667, 0.48524948024905407, 0.8889685222180134, 0.5785503824403398, 0.7511953459672914, 0.6887596776945688, 0.6717539058356753, 0.7168761391602206, 0.7134478068952186, 0.834626350903405, 0.5715867980362679, 0.6588392688727011, 0.9488572786900573, 0.8920529250761863, 0.8891353183282249, 0.707981940789761, 0.926348680038428, 0.631489487929038, 0.7443856388661001, 0.9260754381930228, 0.9544642924744549, 0.8497401318990601, 0.5604010177433062, 0.8036334301115304, 0.7898153537185114, 0.8491431337122072, 0.6570881560807702, 0.8389599143569951, 0.7944137576415592, 0.8132668978866627, 0.44714680104169846, 0.7978021044641371, 0.41921696608658454, 0.38876183891604754, 0.9248463736054193, 0.4277915265084825, 0.6345107008491314, 0.8008942533173764, 0.5087430598332189, 0.9414938992689892, 0.6922115882765215, 0.8296175750175913, 0.8593339228153332, 0.8975141534758351, 0.5977126281557783, 0.9279478536756302, 0.6485770817571253, 0.8905823996589662, 0.9332072841984264, 0.9432461110830079, 0.9410120781436498, 0.6339696776630096, 0.7120962557761497, 0.5841709037351369, 0.5928970840420333, 0.9006589732900512, 0.936371533648048, 0.6907852379101131, 0.7675780198071424, 0.9444587893431046, 0.4702336163336472, 0.8925536722101626, 0.8158978708906081, 0.822780392485108, 0.8037335327290217, 0.8382351003285965, 0.8941557358589171, 0.4796498334522667, 0.926348680038428, 0.6842118015950474, 0.6463580983468415, 0.8292048071278182, 0.5834426687867836, 0.8419845362148763, 0.2431563391580561, 0.7763142135369961, 0.9390550746437164, 0.7774903237071782, 0.8141232663130791, 0.9444089886680379, 0.430401459478284, 0.9192677156927759, 0.8427595869840984, 0.87120858451521, 0.5693182102579236, 0.820012080301976, 0.58719119911586, 0.42769376643096113, 0.3542595869275313, 0.89579938191327, 0.8743523014696554, 0.7820497043505815, 0.5279069501129625, 0.8869579700149332, 0.45488774279476296, 0.8514781135508903, 0.8278297091497892, 0.663749097381813, 0.5132851713944618, 0.4906566565015208, 0.6415219885510332, 0.6991293681294938, 0.8150539074042624, 0.5800669536763935, 0.9583771200922359, 0.7366090055976814, 0.5747817696023392, 0.5315376696882942, 0.8074446941396305, 0.9038901015569306, 0.9087015650331977, 0.6697291810323083, 0.5800669536763935, 0.8807270543114014, 0.5135845984304893, 0.9352791850238339, 0.36120709973337456, 0.6206709330576408, 0.906286252315459, 0.7937202818717513], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [0.46, 0.32, 0.27, 0.6, 0.46, 0.66, 0.58, 0.21, 0.4, 0.41, 0.6, 0.21, 0.3, 0.32, 0.52, 0.37, 0.53, 1.13, 0.26, 1.33, 0.3, 0.31, 1.115, 0.19, 0.685, 0.76, 0.22, 0.69, 0.705, 0.3, 0.805, 0.34, 0.28, 0.23, 0.25, 0.28, 0.16, 0.2, 0.42, 0.25, 0.38, 0.28, 0.1, 0.365, 0.755, 0.26, 0.165, 0.17, 0.31, 0.44, 0.63, 0.305, 0.26, 0.5, 0.27, 0.47, 0.28, 0.51, 0.38, 0.41, 0.6, 0.25, 0.7, 0.21, 0.66, 0.22, 0.47, 0.64, 0.54, 0.17, 0.24, 0.37, 0.41, 0.29, 0.15, 0.31, 0.28, 0.18, 0.77, 0.31, 0.24, 0.28, 0.27, 0.48, 0.3, 0.54, 0.2, 0.52, 0.39, 0.34, 0.37, 0.26, 0.6, 0.41, 0.28, 0.27, 0.22, 0.28, 0.28, 0.28, 0.31, 0.39, 0.21, 0.32, 0.57, 0.41, 0.32, 0.35, 0.43, 0.2, 0.41, 0.15, 0.45, 0.14, 0.43, 0.5, 0.39, 0.25, 1.025, 0.28, 0.33, 0.57, 0.41, 0.35, 0.32, 0.44, 0.26, 0.765, 0.775, 0.28, 0.17, 0.935, 0.29, 0.25, 0.28, 0.34, 0.14, 0.32, 0.27, 0.69, 0.27, 0.27, 0.36, 0.29, 0.33, 0.45, 0.2, 0.21, 0.59, 0.38, 0.28, 0.68, 0.19, 0.56, 0.2, 0.87, 0.42, 0.21, 0.14, 0.45, 0.23, 0.68, 0.46, 0.31, 0.655, 0.25, 0.23, 0.32, 0.34, 0.25, 0.29, 0.23, 0.59, 0.37, 0.44, 0.48, 0.38, 0.3, 0.58, 0.34, 0.32, 1.33, 0.28, 0.33, 0.26, 0.29, 0.93, 0.34, 0.56, 0.29, 0.22, 0.275, 0.32, 0.615, 0.27, 0.755, 0.29, 0.25, 0.33, 0.17, 0.35, 0.5, 0.5, 0.73, 0.26, 0.31, 0.21, 0.35, 0.54, 0.19, 0.22, 0.21, 0.31, 0.25, 0.32, 0.42, 0.46, 0.475, 0.61, 0.42, 0.69, 0.19, 0.31, 0.26, 0.15, 0.38, 0.76, 0.24, 0.36, 0.695, 0.35, 0.25, 0.12, 0.23, 0.17, 0.3, 0.36, 0.26, 0.34, 0.29, 0.45, 0.34, 0.24, 0.27, 0.19, 0.37, 0.4, 0.26, 0.31, 0.52, 0.88, 0.29, 0.28, 0.835, 0.25, 0.345, 0.23, 0.62, 0.28, 0.39, 0.25, 0.41, 0.26, 0.25, 0.2, 0.22, 0.19, 0.2, 0.32, 0.725, 0.23, 0.67, 0.24, 0.32, 0.32, 0.42, 0.58, 0.32, 0.35, 0.415, 0.5, 0.64, 0.34, 0.66, 0.39, 0.29, 0.21, 0.23, 0.34, 0.265, 0.2, 0.29, 0.49, 0.43, 0.33, 0.54, 0.33, 0.695, 0.28, 0.58, 0.915, 0.18, 0.82, 0.14, 0.615, 0.24, 0.34, 0.39, 0.36, 0.39, 0.18, 0.37, 0.64, 0.27, 0.39, 0.32, 0.23, 0.47, 0.28, 0.46, 0.47, 0.25, 0.96, 0.41, 0.32, 0.31, 0.36, 0.25, 0.575, 0.28, 0.28, 0.45, 0.39, 0.24, 0.12, 0.63, 0.37, 0.5, 0.59, 0.42, 0.22, 0.24, 0.2, 0.775, 0.24, 0.61, 0.38, 0.3, 0.24, 0.46, 0.31, 0.52, 0.4, 0.5, 0.19], \"xaxis\": \"x\", \"y\": [0.2802292104526322, 0.9455194119275858, 0.4978743212349556, 0.5289145624519528, 0.28439238707197784, 0.2033309570226689, 0.27345747478543325, 0.8322873304845451, 0.389055896812549, 0.3675472469853882, 0.5781933746273124, 0.7401955299744071, 0.44969671697605845, 0.4367887814338696, 0.31593955341667695, 0.3775624358859999, 0.19282181046294666, 0.048451763306065584, 0.6005928650583868, 0.032225376113695775, 0.427412413738938, 0.23973251442015217, 0.13890126550157303, 0.8613925272127, 0.329663916828638, 0.19359965390713213, 0.6827271716759634, 0.1960905505555538, 0.08135735686643118, 0.39737240301928484, 0.13902987396822816, 0.6514166433739288, 0.6994753721471061, 0.7140886736258081, 0.5021795028970708, 0.48743245558712556, 0.5731139673640956, 0.8820820642542792, 0.559972149724866, 0.5061565591493914, 0.5066810377847554, 0.833805652807593, 0.6979972163580744, 0.3177574231538272, 0.13068190592986567, 0.758876109553896, 0.5681062961269688, 0.715544821914063, 0.762062625203523, 0.4464438677531786, 0.20995974230910305, 0.5262622410710028, 0.39442669669188163, 0.2537324982988368, 0.6775437642744659, 0.23876321589577687, 0.6369158982934647, 0.38960060362966165, 0.6034323722874255, 0.7769991715799629, 0.15199748354041337, 0.5641412449951732, 0.7590466800561823, 0.5969347905931296, 0.1048362779837843, 0.7217824369593382, 0.2662339163773806, 0.16472378978351135, 0.37760124376932414, 0.7071736299639594, 0.3436862995931572, 0.8384434752264291, 0.3635333644877426, 0.7813188949129265, 0.7279369976219869, 0.5641098847382463, 0.3863964747623771, 0.9209913370067284, 0.1477144681640183, 0.8809374658555192, 0.6533168894759348, 0.8873477284758582, 0.3697306267878623, 0.28319023347825867, 0.5203701741750857, 0.5523747693308857, 0.6387521731780509, 0.3881380695009739, 0.8487896327149285, 0.4636606453307818, 0.8384434752264291, 0.558266603669778, 0.21657231888677728, 0.3635333644877426, 0.5512671313974766, 0.5051039398599867, 0.5827915753039158, 0.49441682850108926, 0.47309171914705017, 0.6262595591688196, 0.5508242483721094, 0.47332791509789995, 0.7117569366896692, 0.3933786516273859, 0.16465066549244003, 0.7490394132223248, 0.769261050002088, 0.7431932405995126, 0.3141000916210982, 0.723735045552473, 0.6484132891031948, 0.688519894019609, 0.40496704226994307, 0.5803736122960511, 0.6327801522745691, 0.45115706990411364, 0.37268733756108086, 0.9009693101135351, 0.06496389958099598, 0.44431713201158524, 0.39960831974332744, 0.8662156944598043, 0.31018081106061823, 0.5339551117365043, 0.33311273919547707, 0.400132762133902, 0.8528754522806217, 0.14419347879543085, 0.11672350429510901, 0.44556702529145975, 0.6160120899414699, 0.13766892845409207, 0.5517204028384314, 0.5232178919035022, 0.35483403305733974, 0.4900213704561591, 0.8854578072659228, 0.43084122675663034, 0.7601186327653665, 0.14072030431570776, 0.6186690618327106, 0.5245054232921349, 0.7326259458716644, 0.5690781983520095, 0.4018508815425063, 0.24877469563805235, 0.7952501197393639, 0.8766221356386195, 0.303451532996695, 0.5357745481647883, 0.7096524147827454, 0.20877177283968149, 0.8635610141758273, 0.46736762313881036, 0.6061151992073851, 0.113015272873705, 0.40446014603085867, 0.6332606063976143, 0.648705381890928, 0.42186952587750404, 0.8047913565308571, 0.3017058309841093, 0.38406990132164637, 0.33494193042999065, 0.19929939967121216, 0.8624919783238055, 0.528785836409086, 0.43084122675663034, 0.47042159929499583, 0.5061565591493914, 0.5759491569657543, 0.8468794444363914, 0.20342296359496542, 0.5170831534483544, 0.3666753044655067, 0.6131723001375537, 0.4410646109528086, 0.6903416342484309, 0.3866428492574258, 0.4636606453307818, 0.4525459302795702, 0.03199256040434073, 0.7029629492254846, 0.2433141614541866, 0.548755973819273, 0.3775060302547258, 0.06593060991448157, 0.8745624549148976, 0.22931948662359403, 0.27267688907931714, 0.589328430619086, 0.8007160756317941, 0.5525637789187225, 0.5008522318356121, 0.4556212410144909, 0.17391722008742402, 0.43574637053357784, 0.3237440077649342, 0.6071692164257629, 0.6925152430641841, 0.592675381607996, 0.43854150134957587, 0.43854150134957587, 0.42437112972565305, 0.8061118855433299, 0.35195592295594336, 0.7605370065149419, 0.38898578429124253, 0.67510953655807, 0.872979709380305, 0.710510994258769, 0.720290290780972, 0.4820787970895852, 0.42019280799979697, 0.4304380754474639, 0.25285023254778977, 0.3238056884730761, 0.39471961640683584, 0.09510031985475974, 0.367046376808582, 0.21500793651835448, 0.8705359023101334, 0.6100742529031461, 0.6226449432624995, 0.7279369976219869, 0.3643494054700089, 0.09992017521484964, 0.41475515148757036, 0.6462260464983366, 0.14102909592513518, 0.48949585696458414, 0.5239520436918008, 0.6084413884537807, 0.5655473856702703, 0.9517420512476797, 0.7489379515982664, 0.4647937384849751, 0.7915321263825208, 0.44112279258530757, 0.5734340256727429, 0.6604471727860799, 0.4845203185458914, 0.6968730453869196, 0.5315374962198609, 0.8685951485887234, 0.6242442748350044, 0.2912097196987059, 0.7725938221565348, 0.2067629769731588, 0.30221725334927335, 0.13129342562285412, 0.6467789443522378, 0.6994753721471061, 0.11825382206919556, 0.41022417118631593, 0.4882665226122541, 0.7732287086973071, 0.25374762405010176, 0.49441682850108926, 0.3723877205427743, 0.652330313245635, 0.43667799883041203, 0.5964718913578133, 0.55172276504346, 0.24113559934961917, 0.8243980268882987, 0.7263843594269437, 0.43535214809021755, 0.8721122798612579, 0.18723914490145582, 0.6486906676970999, 0.11576704656818047, 0.4328241622975616, 0.491481212420291, 0.5264345378086769, 0.33856526784971647, 0.2967410926251248, 0.581398831228375, 0.5973776665460488, 0.6195406102170065, 0.37782717658841725, 0.323061133240968, 0.17420808473594895, 0.19634770547538957, 0.46492234760650425, 0.49613167963272686, 0.5812209036149294, 0.6057291775435286, 0.63414717387345, 0.5702687187355167, 0.8604975146328253, 0.6309022132706124, 0.48732991249542923, 0.6887148870948692, 0.41581945293096145, 0.5706760596351739, 0.4831274653996314, 0.06684727567316755, 0.49090643211649887, 0.15191610726090596, 0.2711405311223577, 0.7653618545702112, 0.09266565137124261, 0.4554350627407873, 0.19698919164573708, 0.6930185080649685, 0.5227537922811563, 0.50434568709929, 0.7082092780767422, 0.46058046365566996, 0.6735723234187477, 0.4285936050615775, 0.323061133240968, 0.5168500865319015, 0.6161307914674419, 0.23456444218973552, 0.3192004782541023, 0.21968945907811915, 0.5028183230931117, 0.43371621376298963, 0.6744209213341115, 0.5940260419772637, 0.13783310426722128, 0.5136444387530009, 0.5508647999875032, 0.4955911012838212, 0.9814394195009358, 0.8260225289794664, 0.17965956338109995, 0.46844896472597397, 0.6048119589659149, 0.3289160319090978, 0.2454606394453749, 0.7497022835596558, 0.683485355417811, 0.20995974230910305, 0.23504578258460665, 0.37175956099497537, 0.4875530438829156, 0.24982584224249993, 0.6282829625348888, 0.4520795162158371, 0.8200372413039435, 0.12832513643528837, 0.5299630655130737, 0.29552777318700446, 0.24021937552346023, 0.5429028773737552, 0.6311869746243346, 0.4145977043912777, 0.39329840463575844, 0.39070335653410526, 0.4286990948130573, 0.846836560604146, 0.6880850122626078], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (curr)\", \"type\": \"scatter\", \"x\": [0.37, 0.23, 0.21, 0.32, 0.58, 0.21, 0.24, 0.3, 0.2, 0.3, 0.48, 0.25, 0.27, 0.32, 0.32, 0.2, 0.44, 0.25, 0.22, 0.37, 0.2, 0.19, 0.2, 0.26, 0.25, 0.29, 0.22, 0.24, 0.39, 0.34, 0.41, 0.34, 0.22, 0.26, 0.3, 0.19, 0.13, 0.23, 0.475, 0.605, 0.33, 0.24, 0.52, 0.29, 0.26, 0.57, 0.3, 0.6, 0.26, 0.22, 0.42, 0.57, 0.28, 0.28, 0.26, 0.17, 0.22, 0.34, 0.21, 0.76, 0.42, 0.3, 0.22, 0.25, 0.26, 0.3, 0.42, 0.28, 0.54, 0.14, 0.26, 0.28, 0.34, 0.275, 0.29, 0.2, 0.28, 0.18, 0.26, 0.53, 0.15, 0.21, 0.31, 0.24, 0.22, 0.31, 0.36, 0.33, 0.19, 0.3, 0.2, 0.24, 0.25, 0.31, 0.4, 0.4, 0.475, 0.25, 0.26, 0.61, 0.26, 0.17, 0.51, 0.28, 0.26, 0.28, 0.53, 0.24, 0.38, 0.3, 0.66, 0.33, 0.29, 0.29, 0.32, 0.36, 0.255, 0.24, 0.29, 0.66, 0.33, 0.23, 0.34, 0.16, 0.635, 0.42, 0.46, 0.34, 0.39, 0.17, 0.19, 0.36, 0.26, 0.28, 0.27, 0.21, 0.36, 0.42, 0.34, 0.21, 0.18, 0.865, 0.39, 0.23, 0.29, 0.31, 0.35, 0.4, 0.09, 0.22, 0.12, 0.1, 0.18, 0.2, 0.19, 0.3, 0.35, 0.37, 0.2, 0.23, 0.23, 0.55, 0.37, 0.3, 0.39, 0.265, 0.3, 1.04, 0.34, 0.21, 0.15, 0.18, 0.27, 0.34, 0.39, 0.24, 0.2, 0.28, 0.38, 0.31, 0.39, 0.19, 0.18, 0.33, 0.14, 0.55, 0.22, 0.46, 0.27, 0.41, 0.19, 0.18, 0.22, 0.25, 0.17, 0.39, 0.19, 0.33, 0.35, 0.27, 0.36, 0.26, 0.4, 0.17, 0.21, 0.31, 0.21, 0.44, 0.25, 0.15, 0.26, 0.28, 0.46, 0.32, 0.46, 0.32, 0.22, 0.31, 0.35, 0.24, 0.18, 0.35, 0.6, 0.26, 0.22, 0.655, 0.2, 0.28, 0.42, 0.22, 0.84, 0.28, 0.19, 0.23, 0.27, 0.2, 0.34, 0.14, 0.31, 0.16, 0.22, 0.4, 0.36, 0.22, 0.46, 0.43, 0.19, 0.19, 0.21, 0.685, 0.17, 0.22, 0.17, 0.28, 0.13, 0.11, 0.14, 0.17, 0.34, 0.32, 0.65, 0.28, 0.21, 0.28, 0.13, 0.24, 0.27, 0.41, 0.23, 0.18, 0.11, 0.17, 0.15, 0.59, 0.11, 0.68, 0.24, 0.18, 0.295, 0.55, 0.37, 0.27, 0.28, 0.345, 0.28, 0.44, 0.32, 0.2, 0.585, 0.17, 0.45, 0.43, 0.13, 0.32, 0.17, 0.28, 0.25, 0.36, 0.24, 0.3, 0.17, 0.16, 0.25, 0.38, 0.25, 0.36, 0.37, 0.18, 0.21, 0.16, 0.24, 0.46, 0.52, 0.31, 0.21, 0.22, 0.37, 0.28, 0.19, 0.25, 0.33, 0.28, 0.29, 0.19, 0.65, 0.2, 0.29, 0.32, 0.19, 0.4, 0.43, 0.16, 0.785, 0.22, 0.27, 0.25, 0.25, 0.26, 0.36, 0.43, 0.21, 0.32, 0.3, 0.54, 0.63, 0.18, 0.35, 0.27, 0.25, 0.41, 0.43, 0.305, 0.23, 0.2, 0.3, 0.31, 0.645, 0.29, 0.16, 0.52, 0.3, 0.24, 0.42, 0.26, 0.45, 0.27, 0.22, 0.22, 0.33, 0.24, 0.22, 0.34, 0.21, 0.14, 0.53, 0.725, 0.18, 0.27, 0.47, 0.26, 0.235, 0.26, 0.33, 0.23, 0.23, 0.2, 0.27, 0.16, 0.45, 0.4, 0.2, 0.28, 0.24, 0.23, 0.115, 0.57, 0.25, 0.27, 0.37, 0.18, 0.18, 0.21, 0.19, 0.19, 0.31, 0.23, 0.24, 0.445, 0.15, 0.45, 0.26, 0.2, 0.18, 0.19, 0.18, 0.4, 0.21, 0.37, 0.32, 0.26, 0.21, 0.28, 0.42, 0.765, 0.315, 0.28, 0.25, 0.28, 0.36, 0.17, 0.41, 0.27, 0.15, 0.32, 0.5, 0.52, 0.24, 0.25, 0.08, 0.18, 0.19, 0.57, 0.23, 0.19, 0.36, 0.34, 0.38, 0.5, 0.42, 0.745, 0.22, 0.69, 0.18, 0.57, 0.17, 0.33, 0.36, 0.18, 0.22, 0.4, 0.24, 0.36, 0.19, 0.23, 0.18, 0.17, 0.44, 0.17, 0.21, 0.685, 0.3, 0.2, 0.58, 0.16, 0.16, 0.24, 0.36, 0.13, 0.26, 0.21, 0.34, 0.25, 0.38, 0.12, 0.17, 0.19, 0.3, 0.38, 0.39, 0.59, 0.45, 0.22, 0.31, 0.35, 0.2, 0.39, 0.2, 0.56, 0.305, 0.45, 0.24, 0.26, 0.19, 0.26, 0.41, 0.22, 0.31, 0.35, 1.02, 0.27, 0.52, 0.21, 0.35, 0.26, 0.22, 0.44, 0.41, 0.4, 0.27, 0.25, 0.3, 0.49, 0.24, 0.32, 0.21, 0.19, 0.25, 0.37, 0.25, 0.26, 0.69, 0.17, 0.25, 0.25, 0.31, 0.3, 0.53, 0.24, 0.69, 0.38, 0.22, 0.29, 0.26, 0.16, 0.27, 0.15, 0.5, 0.31, 0.21, 0.19, 0.29, 0.32, 0.41, 0.21, 0.2, 0.42, 0.36, 0.15, 0.35, 0.33, 0.11, 0.31, 0.16, 0.34, 0.34, 0.2, 0.21, 0.28, 0.19, 0.28, 0.205, 0.26, 0.19, 0.43, 0.28, 0.21, 0.33, 0.24, 0.25, 0.28, 0.38, 0.3, 0.15, 0.33, 0.18, 0.32, 0.61, 0.3, 0.38, 0.38, 0.56, 0.34, 0.24, 0.22, 0.58, 0.35, 0.32, 0.28, 0.2, 0.21, 0.16, 0.58, 0.28, 0.255, 0.21, 0.63, 0.38, 0.16, 0.24, 0.35, 0.48, 0.19, 0.2, 0.17, 0.6, 0.32, 0.18, 0.2, 0.38, 0.52, 0.15, 0.38, 0.18, 0.14, 0.16, 0.26, 0.24, 0.245, 0.29, 0.15, 0.645, 0.415, 0.18, 0.2, 0.34, 0.18, 0.22, 0.51, 0.42, 0.49, 0.32, 0.25, 0.2, 0.24, 0.18, 0.27, 0.53, 0.28], \"xaxis\": \"x2\", \"y\": [0.33396714643252134, 0.5044440900554997, 0.8874896900044845, 0.4686759077780351, 0.23831547366416572, 0.571181601185031, 0.7785327680196316, 0.7290551099174598, 0.9581131370131553, 0.6801000322064107, 0.413367674560271, 0.6667140739211237, 0.9108229754863395, 0.9275086157065797, 0.9186958597750785, 0.7191871442695774, 0.8184457509658746, 0.8597940676688322, 0.7947045908306632, 0.8244149680645384, 0.42771531534877594, 0.5315376696882942, 0.7136291946100958, 0.5510697799054304, 0.6393262665313312, 0.9016582766249417, 0.8560880110261746, 0.8947361144883382, 0.9102326114023062, 0.840723585394272, 0.9264645566705582, 0.5105903360131552, 0.752648770317166, 0.5855954083225455, 0.8989214048388485, 0.5190750352404293, 0.9560713253502463, 0.7273157243430202, 0.9279672131348602, 0.640103147954212, 0.9158977434209615, 0.9035955072010529, 0.7140955379655831, 0.233508355491505, 0.7280578325574358, 0.8810827811902006, 0.3966129217085586, 0.15541760955422754, 0.5851621750323275, 0.9046111951917862, 0.4177213302712193, 0.7993763114768937, 0.6978409661933959, 0.6473373667551029, 0.770784382977056, 0.6500641275496193, 0.548949563093737, 0.9803199442553986, 0.6150775052067382, 0.391333092160729, 0.6966682278280982, 0.9426748402861506, 0.9170092977635526, 0.844625652038695, 0.5621782696252592, 0.8935808323282117, 0.6792214086077275, 0.6719996755401956, 0.5252591274442797, 0.7277045758687855, 0.4685752957996948, 0.8616549355667619, 0.347491516391863, 0.8224130863808733, 0.5340790568488665, 0.6711667658766297, 0.5277539611022016, 0.7226430813715845, 0.8140972745487615, 0.3280236940194876, 0.9543080196225542, 0.7752655593026647, 0.9223925066666061, 0.8588031784191832, 0.6345107008491314, 0.9393010047953068, 0.7897067132703484, 0.8608062836413887, 0.8367885032124018, 0.38555642305179116, 0.8611944449682004, 0.9172341012895443, 0.9206892306522243, 0.9500505925695213, 0.537798347971205, 0.9173482789702866, 0.44454351342386716, 0.8909704850569525, 0.7351932580165473, 0.6818328744935735, 0.7981559962965634, 0.7626532952948841, 0.807353254900461, 0.964411205143099, 0.4685752957996948, 0.6986526320119215, 0.1956969407137045, 0.9233481403380283, 0.8218375601976645, 0.8536269727611236, 0.5637680470866036, 0.42267134533232753, 0.93003590801509, 0.9364808605729722, 0.8816060831574614, 0.9663102962713933, 0.8345570787709832, 0.4997893986747249, 0.7921603237806832, 0.5586815647381762, 0.8622246464681924, 0.9828719612298703, 0.909295720392338, 0.9476267884443668, 0.5395521774612226, 0.901360886913609, 0.39410444510430487, 0.9262213132200262, 0.6627387433216217, 0.9629433821448677, 0.9614311452267452, 0.9802968012486629, 0.933760787013923, 0.34432718187202205, 0.63596173557573, 0.624364378916488, 0.7417789548241253, 0.7300918276682445, 0.6968315453320488, 0.7840233885688647, 0.8958841271622066, 0.5417426694559925, 0.7102579146160282, 0.6004345411549624, 0.515920701757342, 0.7587882454650442, 0.5029588531082266, 0.6887596776945688, 0.8642849605932809, 0.6469572639767995, 0.8103639651534781, 0.939764354405301, 0.694136577696587, 0.6593725303534554, 0.9646797005081557, 0.7979900311745153, 0.792123904710467, 0.8869579700149332, 0.7351250317969437, 0.5332560471205093, 0.9406873315653421, 0.39362685027924615, 0.9466602521798594, 0.8394325033041952, 0.6633442657978572, 0.8126408700417265, 0.7332457619716184, 0.08024070404520958, 0.8667774471450977, 0.6466814331404849, 0.912366876100516, 0.656670904734599, 0.8701678467707724, 0.8875925797813499, 0.9658725076002231, 0.7668332861852056, 0.8604440887473094, 0.934384507524058, 0.9605946056867319, 0.951253157591183, 0.5749289095213865, 0.6279243005170476, 0.7937202818717513, 0.7665301650725991, 0.700127941221274, 0.8531107444728586, 0.7947045908306632, 0.8870566665876504, 0.5476228787844645, 0.8410401833568673, 0.8736671065238262, 0.6519898659949606, 0.936943112068646, 0.9077719201719568, 0.8071889556778997, 0.8815615400732472, 0.8935313268029127, 0.8782891297971865, 0.5029588531082266, 0.5797201450332624, 0.9416775458320723, 0.5958140198486584, 0.2485157288688957, 0.932021424688801, 0.8531502837407814, 0.6344194678828672, 0.632587077283238, 0.9121448358615357, 0.5776545535910985, 0.9052765174806566, 0.8580390107418799, 0.8998644401112552, 0.6784536879503494, 0.9458342431661766, 0.21387363850783603, 0.9530348339880965, 0.7307391114165022, 0.7187682731289255, 0.6905635603269331, 0.9569274903702625, 0.9287384091375525, 0.3856984054091925, 0.504413920551941, 0.5389739198483336, 0.5921068831639978, 0.10702848140489757, 0.8772993497727819, 0.6361944011057532, 0.8952999713010865, 0.7069578609115064, 0.10632960186243966, 0.6465592619811017, 0.9116333268133815, 0.9210441535829985, 0.9483358221641291, 0.5800224234700003, 0.896951343689222, 0.8958659323404018, 0.8896861436466836, 0.7763142135369961, 0.778627444633172, 0.9274605647284293, 0.9167924025380936, 0.6422094408272838, 0.6363725079258666, 0.8694129796739031, 0.5693182102579236, 0.5315376696882942, 0.6814536952243052, 0.30089534057709466, 0.6689448970920832, 0.6419522618821227, 0.6500641275496193, 0.8221968069187356, 0.9285763346020383, 0.8495153837633861, 0.7135666997345446, 0.8850789772017983, 0.9128367188568884, 0.8709442503982084, 0.44714680104169846, 0.7147831401969469, 0.6814536952243052, 0.5823319261018008, 0.7718122970862826, 0.8925058444773368, 0.9249991097277733, 0.7849066379312727, 0.5120166815330335, 0.7863291630268572, 0.8171821177205619, 0.8878235148823457, 0.9813953955585096, 0.5009899161211654, 0.6787020040856314, 0.2747106808400709, 0.6998114428322438, 0.7191783799678735, 0.7566715075843347, 0.7741630673610131, 0.692871858980435, 0.8706970297938403, 0.9226518689226377, 0.619213859232465, 0.9620625840847012, 0.8161066853745392, 0.7984578805051198, 0.8987836568806694, 0.27900511725120763, 0.747868261422589, 0.8013372150606806, 0.4430395412241901, 0.8082746512504794, 0.9248395818955686, 0.8132668978866627, 0.7926355964369082, 0.7243101498981422, 0.8251498778038484, 0.865753667016409, 0.8784859927081519, 0.9613966942665844, 0.8380103992838959, 0.9376908870460701, 0.8505645904112248, 0.5317253080143199, 0.8756470416862959, 0.8823120896825394, 0.8920529250761863, 0.9565288857220365, 0.92576324319171, 0.8397457208604353, 0.8008835764985612, 0.7620555647282774, 0.6333567796033132, 0.8986985644274655, 0.8289197139212982, 0.38568054861828666, 0.4358764146033148, 0.7013568331933456, 0.5524769805317635, 0.8654015550049637, 0.9625385348003681, 0.4997035751430624, 0.5940434106189647, 0.29640429037896177, 0.9370396801623051, 0.7496358493500708, 0.8521916566704996, 0.7519935213994349, 0.8956127660014477, 0.7563308848917781, 0.5425355780301907, 0.1652985164032473, 0.5777375433929663, 0.5926841497777402, 0.5247451599628447, 0.6215406511606532, 0.646742228322253, 0.5236567091352762, 0.8105889943537302, 0.7614647275399787, 0.7272264480694343, 0.44438282424164377, 0.8051848688934031, 0.253979247575754, 0.8737269176380216, 0.7884186533408385, 0.5226162157005312, 0.7776146375974927, 0.8021344726910251, 0.6794204065079696, 0.8398669626756513, 0.3743394998756179, 0.6593725303534554, 0.41008410759983227, 0.8726624594592295, 0.31336232876890546, 0.6187135046228962, 0.9208146539756937, 0.8948907807194619, 0.9475948217130945, 0.7098971478357265, 0.41970311630379203, 0.5524505095188592, 0.6689295490636696, 0.39534528644804523, 0.6686700461744643, 0.6608417181144597, 0.6289006219381473, 0.8112353209803558, 0.9675531845963172, 0.3468688843876404, 0.8171815196180959, 0.9315945487332388, 0.7612383340144859, 0.43979370974717685, 0.9452166580978265, 0.810349906376065, 0.4979189466877109, 0.9054024939516333, 0.7506263221664519, 0.8595966107872783, 0.9041757536760852, 0.5120166815330335, 0.9246344940597735, 0.622364539475366, 0.7975959936185795, 0.9376528402833735, 0.8270495791839716, 0.7463426393970082, 0.8508295060861325, 0.5277539611022016, 0.7926521549058593, 0.8343380415579561, 0.7973631232158779, 0.5423298306356671, 0.6253812669856891, 0.9342151247863544, 0.9064095870896521, 0.8428584418618921, 0.5680191878381406, 0.8230633503438987, 0.857993972512287, 0.8312116035859974, 0.8886868130574391, 0.5695902702544526, 0.8750573328895943, 0.47134086624147714, 0.6082670858563528, 0.8571520978358925, 0.7006810412396262, 0.6001343818465046, 0.8680196363335714, 0.7833148206731655, 0.835330250744176, 0.6883000602161935, 0.4297997702781997, 0.7132181587745201, 0.941909753873568, 0.9298379484442667, 0.8950633078112005, 0.9652574497835966, 0.8593048115498744, 0.23022113319019433, 0.5548683876071567, 0.8789570823277312, 0.7176343272433334, 0.7135972690872326, 0.900955402304434, 0.89110615578316, 0.8021344726910251, 0.36734125225010755, 0.9233813125795639, 0.9269988231022361, 0.6021478506882372, 0.27064660283581765, 0.7595966254948197, 0.5317253080143199, 0.9626288904553877, 0.518871521713375, 0.4244151934213653, 0.8784852709235653, 0.667697582798242, 0.6791650855490978, 0.8659372985570389, 0.5217980090164113, 0.9757802673562255, 0.20769640873195563, 0.6900575067285889, 0.15051833553221247, 0.8476988333501053, 0.12043274000614122, 0.6546311715671466, 0.412102187638673, 0.6339696776630096, 0.6925917751558638, 0.8074446941396305, 0.8417042066658985, 0.4702054036006336, 0.8107456318417504, 0.934253622333564, 0.9671353887875448, 0.3776875782453083, 0.5133306968464912, 0.8279918435672958, 0.7295730380004212, 0.8398957027397556, 0.7470826509089123, 0.7722124156410631, 0.3944809481034696, 0.5801047158883857, 0.7134138458261836, 0.8265590446981121, 0.5836238058504062, 0.7538957359152121, 0.9708936701567454, 0.41507295289487073, 0.9039211350062085, 0.5109703825452502, 0.8880660412534, 0.6332514250278477, 0.703270618172154, 0.863031725372896, 0.9601349291832292, 0.5845797646527732, 0.8357575010967041, 0.9584406458449958, 0.8733333206292072, 0.4740801794177068, 0.5787650908025566, 0.38525623454815555, 0.5715075300165849, 0.951253157591183, 0.831291834366621, 0.6482062646591596, 0.5447536045265621, 0.8456825404777587, 0.5358725178581014, 0.8893400405584444, 0.5955893395860203, 0.9408369636189147, 0.7580589814818564, 0.4244151934213653, 0.7636885291754726, 0.9532052815091139, 0.6686700461744643, 0.39683939049776734, 0.8309978518015588, 0.06774730328187532, 0.8934061610794648, 0.9459413258233057, 0.8507977517004935, 0.9694554821790147, 0.8640493534313302, 0.8409166048571896, 0.9059760843724536, 0.7278052027863667, 0.8952246802917138, 0.39534528644804523, 0.9558702864115934, 0.9178754126151818, 0.7504628435478695, 0.7568870052952757, 0.32046258648166903, 0.9712495894387816, 0.7125870341029702, 0.8286889773580812, 0.929575727770858, 0.8422483936479932, 0.60065365322741, 0.5775074082600717, 0.7505976846167132, 0.5317253080143199, 0.9590110623565244, 0.9651712957082627, 0.7333643603414158, 0.7757825668725274, 0.8928390517037824, 0.2578168736401774, 0.5355488836719776, 0.8408692583280314, 0.7849780542174357, 0.8711681462620556, 0.8447990405440073, 0.9571933326515756, 0.9307123551507692, 0.6421242495412457, 0.9239207054420927, 0.9336219461922934, 0.4244151934213653, 0.5673643045526261, 0.8301442064454496, 0.528471943574542, 0.8835542071774324, 0.8820947700128993, 0.4561713647735051, 0.584381944856391, 0.9493936477483658, 0.7816316980556022, 0.7770145472448273, 0.8495153837633861, 0.8318035560268552, 0.5220388622338656, 0.8589980209217414, 0.21216021099657945, 0.8782303617207965, 0.901850575196968, 0.7683760396387002, 0.9559989503713009, 0.938411491366706, 0.7225398931917507, 0.5918361617892179, 0.8596378534897678, 0.8816239240572568, 0.9296844522785247, 0.8299758417251202, 0.7538846798551382, 0.931253582726863, 0.6902425303942638, 0.9299571155275668, 0.35461708236434614, 0.6119587629530028, 0.8979450471026776, 0.8782891297971865, 0.6144930729026484, 0.5601837238662909, 0.4230258756549153, 0.5115702372514986, 0.6133200318312215, 0.8287048127179734, 0.42887934024879554, 0.5543929044930882, 0.5414149972460248, 0.7453725251924848, 0.6522898344923613, 0.6445138145159856, 0.9212190995841192, 0.6991293681294938, 0.9188224881967051, 0.9444881948020799, 0.8399825546316605, 0.6440269003431431, 0.45260210695563535, 0.6678228102737954, 0.8535669746933884, 0.23469888428232324, 0.7581156815660375, 0.8329520097124233, 0.5886389680190937, 0.4250130050586104, 0.290761161529129, 0.9065968169685268, 0.39757013049667705, 0.9584529405260903, 0.24804178200132845, 0.8400605958344816, 0.9562762484868867, 0.5923100188758571, 0.5355488836719776, 0.6866862751474886, 0.753715093249364, 0.9302702282582556, 0.8405005145861136, 0.7758456574858743, 0.8270123797965384, 0.9270997487744173, 0.8779999285967196, 0.6350604679157676, 0.9057987369792326, 0.9732730617650076, 0.28007269673131574, 0.5393237551960537, 0.9509318156255189, 0.8055358405733448, 0.8512314640165554, 0.6752183046546253, 0.9766791413071304, 0.26893819095773785, 0.5105552073939665, 0.7964242570425004, 0.9159462749375985, 0.46312559485344046, 0.7889853219989779, 0.5331772070153998, 0.6250130361556073, 0.5340700079782073, 0.8981158701031157, 0.8424802355113449], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [0.365, 0.62, 0.27, 0.18, 0.29, 0.28, 0.43, 0.765, 0.785, 0.6, 0.3, 0.19, 0.31, 0.25, 0.29, 0.21, 0.31, 0.38, 0.35, 0.45, 0.28, 0.25, 0.34, 0.41, 0.22, 0.29, 0.41, 0.41, 0.21, 0.2, 0.27, 0.3, 0.73, 0.6, 0.18, 0.19, 0.98, 0.52, 0.12, 0.36, 0.485, 0.58, 0.34, 0.25, 0.43, 0.51, 0.54, 0.6, 0.28, 0.2, 0.25, 0.26, 0.31, 0.64, 0.705, 0.37, 0.61, 0.645, 0.31, 0.42, 0.645, 0.45, 0.27, 0.29, 0.39, 0.91, 0.46, 0.7, 0.775, 0.55, 0.57, 0.34, 0.335, 0.685, 0.24, 0.25, 0.27, 0.31, 0.47, 0.39, 0.13, 0.56, 0.29, 0.5, 0.2, 0.37, 0.16, 0.25, 0.25, 0.5, 0.23, 0.345, 0.27, 0.3, 0.58, 1.58, 0.29, 0.62, 0.64, 0.24, 0.35, 0.42, 0.21, 0.52, 0.33, 0.51, 0.62, 0.5, 0.33, 0.33, 0.6, 0.31, 0.63, 0.3, 0.21, 0.27, 0.24, 0.41, 0.27, 0.56, 0.27, 0.24, 0.61, 0.5, 0.695, 0.65, 0.16, 0.23, 0.695, 0.44, 0.28, 0.33, 0.3, 0.35, 0.34, 0.39, 0.25, 0.66, 0.585, 0.315, 0.29, 0.2, 0.22, 0.18, 0.59, 0.34, 0.21, 0.4, 0.52, 0.37, 0.5, 0.31, 0.43, 0.24, 0.3, 0.31, 0.22, 0.26, 0.28, 0.55, 0.635, 0.32, 0.14, 0.36, 0.59, 0.31, 0.3, 0.14, 0.21, 0.23, 0.31, 0.26, 0.28, 0.17, 0.35, 0.54, 0.39, 0.39, 0.24, 0.15, 0.16, 0.215, 0.38, 0.34, 0.26, 0.3, 0.29, 0.27, 0.28, 0.24, 0.66, 0.25, 0.25, 0.28, 0.4, 0.38, 0.21, 0.3, 0.18, 0.45, 0.67, 0.36, 0.34, 0.24, 0.27, 0.21, 0.31, 0.32, 0.5, 0.31, 0.34, 0.33, 0.48, 0.2, 0.28, 0.39, 0.29, 0.34, 0.34, 0.24, 0.4, 0.27, 0.33, 0.28, 0.18, 0.41, 0.41, 0.27, 0.52, 0.345, 0.33, 0.23, 0.22, 0.23, 0.745, 0.35, 0.12, 0.22, 0.3, 0.22, 0.44, 0.65, 0.21, 0.12, 0.29, 0.32, 0.17, 0.14, 0.4, 0.41, 0.42, 0.44, 0.3, 0.24, 0.29, 0.23, 0.12, 0.3, 0.34, 0.45, 0.46, 0.2, 0.18, 0.18, 0.26, 0.28, 0.47, 0.23, 0.235, 0.33, 0.28, 0.705, 0.16, 0.31, 0.16, 0.28, 0.33, 0.45, 0.675, 0.37, 0.78, 0.28, 0.19, 0.6, 0.62, 0.14, 0.31, 0.555, 0.21, 0.45, 0.26, 0.6, 0.4, 0.62, 0.3, 0.41, 0.41, 0.3, 0.25, 0.59, 0.24, 0.32, 0.25, 0.26, 0.44, 0.475, 0.35, 0.24, 0.28, 0.23, 0.4, 0.27, 0.26, 0.24, 0.27, 0.26, 0.31, 0.26, 0.33, 0.595, 0.26, 0.39, 0.26, 0.23, 0.875, 0.35, 0.33, 0.45, 0.3, 0.335, 0.9, 0.24, 0.19, 0.16, 0.55, 0.21, 0.15, 0.63, 0.22, 0.49, 0.32, 0.44, 0.48, 0.83, 0.61, 0.2, 0.4, 0.365, 0.22, 0.15, 0.23, 0.26], \"xaxis\": \"x2\", \"y\": [0.8142007211296887, 0.07257977436397642, 0.7430932382113554, 0.8214862427787604, 0.5698848321031316, 0.6048119589659149, 0.6466669219762841, 0.14510080060429495, 0.2250304680670007, 0.28492472637839966, 0.42061632734231896, 0.8281252124183194, 0.49622399336621903, 0.3482895521074759, 0.4678833354511545, 0.5708968386647719, 0.37048677721847617, 0.553632248395139, 0.8702137350251022, 0.42186952587750404, 0.8696774950675754, 0.5410576963494411, 0.3971326977900686, 0.3275001196198921, 0.9448289227093116, 0.7109941475090589, 0.41925580570138304, 0.3675472469853882, 0.6721911818800557, 0.5562207270314473, 0.5262426608517637, 0.3244609607385458, 0.15056615442564347, 0.15676979724311627, 0.6037730696030339, 0.6342511279653397, 0.021947035536558718, 0.32429164429335744, 0.5678746850743716, 0.3571680467137555, 0.7755534309390314, 0.3240287891037917, 0.699424662214302, 0.5151532452376618, 0.7564675819717819, 0.38343591026479057, 0.19811005648518398, 0.3168419703358067, 0.5315947262677626, 0.9269044449273315, 0.8260225289794664, 0.451791899378283, 0.830516920403184, 0.47128602930186, 0.19027823806377472, 0.5181346713949518, 0.29552777318700446, 0.45414400334446664, 0.39329840463575844, 0.42327932510626076, 0.45838907164509224, 0.2233864252642039, 0.3628419195926303, 0.6709353200988277, 0.46058046365566996, 0.25551237833043455, 0.7234147543269824, 0.1481282262733752, 0.314935793994079, 0.20050531530561894, 0.37453315488553635, 0.701015529968035, 0.6343341418527783, 0.1739320900588749, 0.734996253073231, 0.8172229478314255, 0.3598554146739685, 0.7121055211356295, 0.2620604909731644, 0.3421138035730516, 0.6951268813066005, 0.35208221297891723, 0.452099210446082, 0.18907620085798427, 0.5444201651108793, 0.6484058972837882, 0.3258186925596978, 0.5963383680780668, 0.6202666247822538, 0.576738593946626, 0.5054992484109841, 0.2972245631729925, 0.6844333356791464, 0.42629475072919953, 0.4405153833121037, 0.01207867704715336, 0.7609288944606691, 0.23951123982998349, 0.09310514674080905, 0.5084920166510624, 0.33067609257366243, 0.36481899584296196, 0.5708968386647719, 0.3194802059637459, 0.14207297841267416, 0.5776897120055972, 0.2026163425795633, 0.37909000048748537, 0.38206764842015895, 0.41324683104354176, 0.17826143731067332, 0.42339414872454434, 0.39148091864802853, 0.3511350413575442, 0.8053393751847749, 0.5937005322868365, 0.6849942580153355, 0.38930033076762494, 0.5168500865319015, 0.5699073288866824, 0.5376087249833421, 0.8185832461647057, 0.25950508036415604, 0.20394483716883388, 0.3303044530853749, 0.2528102968078532, 0.8477719856767125, 0.5217124250004609, 0.3303044530853749, 0.5382885532339231, 0.9625763866028243, 0.6536174904341296, 0.42629475072919953, 0.6458781618432388, 0.46574001023909845, 0.37268733756108086, 0.8180085473348132, 0.35493594975273335, 0.2423640089427935, 0.3636330633241046, 0.6421622311157122, 0.5444201651108793, 0.7396308412796291, 0.9036153464846048, 0.21101569987323432, 0.6004024464464508, 0.7595861882737439, 0.486549602332862, 0.2379839758891197, 0.5147825233229498, 0.2065932277190248, 0.4342628292980428, 0.5940848250235929, 0.4857193175270624, 0.5332610244722983, 0.5402196969638672, 0.8578846895389459, 0.5290225674595067, 0.6074669506688956, 0.1847839155105034, 0.3581391437324269, 0.4304380754474639, 0.8410120374942113, 0.5810086483513661, 0.19026233744636453, 0.7223494520380469, 0.8589928738613049, 0.8374625942163022, 0.781203852328267, 0.73983195178881, 0.41156537259256004, 0.7482873396984137, 0.44431713201158524, 0.7113673874393347, 0.49869552495399233, 0.7627102864663872, 0.37193390769028617, 0.37187810520956766, 0.3773291605703562, 0.8719651627687759, 0.6218762459828849, 0.3781393537983126, 0.553632248395139, 0.47624084907999176, 0.774399353278846, 0.5840424935194366, 0.5601025471409736, 0.6186690618327106, 0.620611700356168, 0.5755798886129706, 0.15047650536569443, 0.5530049338021776, 0.6597439619439023, 0.8300222117931148, 0.3490158529243493, 0.4410646109528086, 0.5067909967309752, 0.5851482063434866, 0.7149827463187939, 0.4849259975950144, 0.2094210588097294, 0.33399024531412796, 0.4083143545243069, 0.7497022835596558, 0.7817929239213606, 0.7637421953724776, 0.3825655414920891, 0.6611482494098961, 0.19022241257108333, 0.44972084577511023, 0.5476732603321269, 0.4831274653996314, 0.5077048340566679, 0.7289504589448288, 0.4379810490617926, 0.8017221455714771, 0.6434673631716396, 0.5059779734745421, 0.6065367192264559, 0.650368705032214, 0.34567471266024347, 0.39561589000187136, 0.3427787545601037, 0.4676404271158623, 0.5332283386400669, 0.4519108142444285, 0.40662831629925006, 0.42305576187259053, 0.22032895172816622, 0.5278715769330472, 0.43679486629948455, 0.743933429392776, 0.5269515041023835, 0.5008800654866953, 0.214168174561682, 0.44879088851457377, 0.683485355417811, 0.807753104897186, 0.42629475072919953, 0.8502951424821861, 0.17421175568219957, 0.25491371883486935, 0.7595861882737439, 0.6571724132942184, 0.7813188949129265, 0.5626906653340306, 0.8674288259883418, 0.6600514650598344, 0.4827749661719035, 0.5456147119159479, 0.39827550056677263, 0.27323823737433794, 0.695896529362927, 0.5048820477254727, 0.5422349097465021, 0.5610936746718964, 0.6571724132942184, 0.3088751107498249, 0.45428761266464013, 0.6604471727860799, 0.43371621376298963, 0.6171893197168647, 0.8100511550343341, 0.8100511550343341, 0.605832578461134, 0.5526475584669951, 0.4275055171336787, 0.8734720021260204, 0.8508295378350301, 0.5807723706867254, 0.8272749548927728, 0.2670652478909882, 0.7020144194675465, 0.4615566916191992, 0.7055847950248242, 0.43389869234556755, 0.6071692164257629, 0.3496825637352313, 0.23676491619791426, 0.7057755976874825, 0.15539001443149586, 0.6187538615870153, 0.8735882828904331, 0.30049486749739024, 0.23191705420611952, 0.8913917397916864, 0.4977157214618499, 0.16961113509580228, 0.8485494795219795, 0.4760032757956232, 0.5053843099270294, 0.2676015269871764, 0.3627664421236291, 0.15146266807038725, 0.7898179638281774, 0.6145296307645981, 0.3790380236797623, 0.3003532640340299, 0.6086112016774773, 0.39906793889171593, 0.8185832461647057, 0.6715802865662828, 0.8260225289794664, 0.6056902064850618, 0.400132762133902, 0.39471961640683584, 0.6449859309106076, 0.5637152910565628, 0.39949420960438964, 0.5490401551410112, 0.4398875418860128, 0.30916577334906253, 0.7093303227687476, 0.4562508424819209, 0.40444044759428516, 0.5773483646962835, 0.447777692034652, 0.4961542215384683, 0.32474312180562226, 0.21192693199409943, 0.9056903490933487, 0.5013816399998683, 0.758876109553896, 0.6364928148646596, 0.2952804752502578, 0.4748951900520853, 0.43679486629948455, 0.5479962315186364, 0.4728142838839701, 0.6343341418527783, 0.12248807650217919, 0.5052525886146573, 0.8281252124183194, 0.8930081609652758, 0.36283726088930296, 0.8098196742550625, 0.656477404357746, 0.193885049884708, 0.5269515041023835, 0.49858469647139786, 0.32780472036158087, 0.24927512797396847, 0.6148718578314069, 0.10691527318901187, 0.136775438340409, 0.8489192718114075, 0.2600203086082801, 0.8142007211296887, 0.5269515041023835, 0.7966615933629455, 0.5633234794197017, 0.767479452333631], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"volatile.acidity\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"volatile.acidity\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}}, {\"id\": \"volatile.acidity_bad\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (ref)\", \"type\": \"scatter\", \"x\": [0.46, 0.32, 0.27, 0.6, 0.46, 0.66, 0.58, 0.21, 0.4, 0.41, 0.6, 0.21, 0.3, 0.32, 0.52, 0.37, 0.53, 1.13, 0.26, 1.33, 0.3, 0.31, 1.115, 0.19, 0.685, 0.76, 0.22, 0.69, 0.705, 0.3, 0.805, 0.34, 0.28, 0.23, 0.25, 0.28, 0.16, 0.2, 0.42, 0.25, 0.38, 0.28, 0.1, 0.365, 0.755, 0.26, 0.165, 0.17, 0.31, 0.44, 0.63, 0.305, 0.26, 0.5, 0.27, 0.47, 0.28, 0.51, 0.38, 0.41, 0.6, 0.25, 0.7, 0.21, 0.66, 0.22, 0.47, 0.64, 0.54, 0.17, 0.24, 0.37, 0.41, 0.29, 0.15, 0.31, 0.28, 0.18, 0.77, 0.31, 0.24, 0.28, 0.27, 0.48, 0.3, 0.54, 0.2, 0.52, 0.39, 0.34, 0.37, 0.26, 0.6, 0.41, 0.28, 0.27, 0.22, 0.28, 0.28, 0.28, 0.31, 0.39, 0.21, 0.32, 0.57, 0.41, 0.32, 0.35, 0.43, 0.2, 0.41, 0.15, 0.45, 0.14, 0.43, 0.5, 0.39, 0.25, 1.025, 0.28, 0.33, 0.57, 0.41, 0.35, 0.32, 0.44, 0.26, 0.765, 0.775, 0.28, 0.17, 0.935, 0.29, 0.25, 0.28, 0.34, 0.14, 0.32, 0.27, 0.69, 0.27, 0.27, 0.36, 0.29, 0.33, 0.45, 0.2, 0.21, 0.59, 0.38, 0.28, 0.68, 0.19, 0.56, 0.2, 0.87, 0.42, 0.21, 0.14, 0.45, 0.23, 0.68, 0.46, 0.31, 0.655, 0.25, 0.23, 0.32, 0.34, 0.25, 0.29, 0.23, 0.59, 0.37, 0.44, 0.48, 0.38, 0.3, 0.58, 0.34, 0.32, 1.33, 0.28, 0.33, 0.26, 0.29, 0.93, 0.34, 0.56, 0.29, 0.22, 0.275, 0.32, 0.615, 0.27, 0.755, 0.29, 0.25, 0.33, 0.17, 0.35, 0.5, 0.5, 0.73, 0.26, 0.31, 0.21, 0.35, 0.54, 0.19, 0.22, 0.21, 0.31, 0.25, 0.32, 0.42, 0.46, 0.475, 0.61, 0.42, 0.69, 0.19, 0.31, 0.26, 0.15, 0.38, 0.76, 0.24, 0.36, 0.695, 0.35, 0.25, 0.12, 0.23, 0.17, 0.3, 0.36, 0.26, 0.34, 0.29, 0.45, 0.34, 0.24, 0.27, 0.19, 0.37, 0.4, 0.26, 0.31, 0.52, 0.88, 0.29, 0.28, 0.835, 0.25, 0.345, 0.23, 0.62, 0.28, 0.39, 0.25, 0.41, 0.26, 0.25, 0.2, 0.22, 0.19, 0.2, 0.32, 0.725, 0.23, 0.67, 0.24, 0.32, 0.32, 0.42, 0.58, 0.32, 0.35, 0.415, 0.5, 0.64, 0.34, 0.66, 0.39, 0.29, 0.21, 0.23, 0.34, 0.265, 0.2, 0.29, 0.49, 0.43, 0.33, 0.54, 0.33, 0.695, 0.28, 0.58, 0.915, 0.18, 0.82, 0.14, 0.615, 0.24, 0.34, 0.39, 0.36, 0.39, 0.18, 0.37, 0.64, 0.27, 0.39, 0.32, 0.23, 0.47, 0.28, 0.46, 0.47, 0.25, 0.96, 0.41, 0.32, 0.31, 0.36, 0.25, 0.575, 0.28, 0.28, 0.45, 0.39, 0.24, 0.12, 0.63, 0.37, 0.5, 0.59, 0.42, 0.22, 0.24, 0.2, 0.775, 0.24, 0.61, 0.38, 0.3, 0.24, 0.46, 0.31, 0.52, 0.4, 0.5, 0.19], \"xaxis\": \"x\", \"y\": [0.7197707895473677, 0.05448058807241418, 0.5021256787650443, 0.4710854375480472, 0.7156076129280222, 0.7966690429773311, 0.7265425252145667, 0.16771266951545494, 0.610944103187451, 0.6324527530146118, 0.42180662537268765, 0.2598044700255929, 0.5503032830239416, 0.5632112185661304, 0.6840604465833231, 0.6224375641140001, 0.8071781895370533, 0.9515482366939344, 0.3994071349416132, 0.9677746238863042, 0.572587586261062, 0.7602674855798478, 0.861098734498427, 0.1386074727873, 0.6703360831713621, 0.8064003460928679, 0.3172728283240366, 0.8039094494444462, 0.9186426431335688, 0.6026275969807151, 0.8609701260317718, 0.3485833566260712, 0.3005246278528939, 0.2859113263741919, 0.4978204971029292, 0.5125675444128744, 0.4268860326359044, 0.11791793574572085, 0.440027850275134, 0.4938434408506086, 0.4933189622152446, 0.166194347192407, 0.30200278364192557, 0.6822425768461728, 0.8693180940701344, 0.24112389044610405, 0.43189370387303117, 0.284455178085937, 0.23793737479647703, 0.5535561322468214, 0.7900402576908969, 0.47373775892899717, 0.6055733033081183, 0.7462675017011632, 0.32245623572553406, 0.7612367841042231, 0.36308410170653527, 0.6103993963703384, 0.3965676277125745, 0.2230008284200371, 0.8480025164595866, 0.43585875500482685, 0.24095331994381775, 0.4030652094068704, 0.8951637220162157, 0.2782175630406618, 0.7337660836226194, 0.8352762102164887, 0.6223987562306759, 0.2928263700360406, 0.6563137004068428, 0.16155652477357085, 0.6364666355122575, 0.2186811050870735, 0.27206300237801306, 0.4358901152617537, 0.6136035252376228, 0.07900866299327158, 0.8522855318359817, 0.11906253414448076, 0.3466831105240652, 0.11265227152414181, 0.6302693732121377, 0.7168097665217413, 0.4796298258249143, 0.4476252306691143, 0.3612478268219491, 0.611861930499026, 0.15121036728507153, 0.5363393546692182, 0.16155652477357085, 0.441733396330222, 0.7834276811132227, 0.6364666355122575, 0.44873286860252337, 0.4948960601400133, 0.4172084246960842, 0.5055831714989107, 0.5269082808529498, 0.3737404408311804, 0.4491757516278906, 0.5266720849021, 0.2882430633103308, 0.6066213483726142, 0.83534933450756, 0.2509605867776752, 0.230738949997912, 0.25680675940048736, 0.6858999083789018, 0.27626495444752697, 0.35158671089680515, 0.311480105980391, 0.5950329577300569, 0.4196263877039489, 0.3672198477254309, 0.5488429300958864, 0.6273126624389191, 0.0990306898864649, 0.935036100419004, 0.5556828679884147, 0.6003916802566726, 0.1337843055401957, 0.6898191889393818, 0.46604488826349566, 0.6668872608045229, 0.5998672378660981, 0.14712454771937833, 0.8558065212045691, 0.883276495704891, 0.5544329747085402, 0.38398791005853006, 0.8623310715459079, 0.4482795971615686, 0.4767821080964978, 0.6451659669426603, 0.5099786295438409, 0.11454219273407718, 0.5691587732433696, 0.2398813672346335, 0.8592796956842923, 0.38133093816728936, 0.4754945767078651, 0.2673740541283356, 0.43092180164799054, 0.5981491184574936, 0.7512253043619477, 0.20474988026063612, 0.12337786436138054, 0.6965484670033051, 0.4642254518352117, 0.29034758521725457, 0.7912282271603185, 0.1364389858241727, 0.5326323768611896, 0.3938848007926149, 0.886984727126295, 0.5955398539691413, 0.3667393936023857, 0.35129461810907203, 0.578130474122496, 0.1952086434691429, 0.6982941690158907, 0.6159300986783536, 0.6650580695700093, 0.8007006003287879, 0.13750802167619447, 0.47121416359091395, 0.5691587732433696, 0.5295784007050042, 0.4938434408506086, 0.4240508430342457, 0.1531205555636086, 0.7965770364050346, 0.4829168465516456, 0.6333246955344933, 0.38682769986244625, 0.5589353890471914, 0.30965836575156913, 0.6133571507425741, 0.5363393546692182, 0.5474540697204298, 0.9680074395956593, 0.29703705077451537, 0.7566858385458134, 0.451244026180727, 0.6224939697452743, 0.9340693900855184, 0.1254375450851024, 0.770680513376406, 0.7273231109206828, 0.410671569380914, 0.19928392436820586, 0.44743622108127745, 0.4991477681643879, 0.5443787589855091, 0.826082779912576, 0.5642536294664222, 0.6762559922350657, 0.39283078357423706, 0.3074847569358159, 0.40732461839200396, 0.5614584986504241, 0.5614584986504241, 0.575628870274347, 0.1938881144566701, 0.6480440770440566, 0.23946299348505806, 0.6110142157087575, 0.32489046344192996, 0.127020290619695, 0.28948900574123104, 0.27970970921902805, 0.5179212029104148, 0.579807192000203, 0.5695619245525361, 0.7471497674522103, 0.6761943115269239, 0.6052803835931642, 0.9048996801452402, 0.632953623191418, 0.7849920634816455, 0.12946409768986655, 0.3899257470968539, 0.37735505673750047, 0.27206300237801306, 0.6356505945299911, 0.9000798247851504, 0.5852448485124296, 0.3537739535016634, 0.8589709040748648, 0.5105041430354158, 0.4760479563081992, 0.3915586115462193, 0.4344526143297297, 0.04825794875232026, 0.25106204840173363, 0.5352062615150248, 0.2084678736174792, 0.5588772074146924, 0.42656597432725707, 0.3395528272139201, 0.5154796814541086, 0.30312695461308037, 0.4684625037801391, 0.13140485141127656, 0.37575572516499556, 0.7087902803012941, 0.22740617784346517, 0.7932370230268412, 0.6977827466507267, 0.8687065743771458, 0.3532210556477622, 0.3005246278528939, 0.8817461779308045, 0.5897758288136841, 0.5117334773877459, 0.2267712913026929, 0.7462523759498982, 0.5055831714989107, 0.6276122794572256, 0.34766968675436505, 0.563322001169588, 0.4035281086421867, 0.44827723495654004, 0.7588644006503809, 0.17560197311170134, 0.2736156405730563, 0.5646478519097824, 0.12788772013874206, 0.8127608550985441, 0.35130933230290007, 0.8842329534318195, 0.5671758377024384, 0.508518787579709, 0.4735654621913231, 0.6614347321502836, 0.7032589073748752, 0.418601168771625, 0.40262233345395115, 0.38045938978299354, 0.6221728234115828, 0.6769388667590319, 0.825791915264051, 0.8036522945246104, 0.5350776523934957, 0.5038683203672731, 0.4187790963850706, 0.3942708224564714, 0.36585282612655, 0.42973128126448334, 0.1395024853671747, 0.36909778672938764, 0.5126700875045708, 0.31128511290513083, 0.5841805470690385, 0.42932394036482613, 0.5168725346003686, 0.9331527243268325, 0.5090935678835011, 0.848083892739094, 0.7288594688776423, 0.23463814542978878, 0.9073343486287574, 0.5445649372592127, 0.8030108083542629, 0.30698149193503155, 0.47724620771884374, 0.49565431290071005, 0.29179072192325783, 0.53941953634433, 0.32642767658125227, 0.5714063949384225, 0.6769388667590319, 0.48314991346809855, 0.3838692085325581, 0.7654355578102645, 0.6807995217458978, 0.7803105409218809, 0.4971816769068883, 0.5662837862370104, 0.32557907866588853, 0.4059739580227363, 0.8621668957327787, 0.4863555612469991, 0.44913520001249685, 0.5044088987161788, 0.018560580499064172, 0.17397747102053363, 0.8203404366189, 0.531551035274026, 0.3951880410340851, 0.6710839680909022, 0.7545393605546251, 0.25029771644034415, 0.31651464458218903, 0.7900402576908969, 0.7649542174153934, 0.6282404390050247, 0.5124469561170844, 0.7501741577575001, 0.3717170374651112, 0.5479204837841629, 0.1799627586960565, 0.8716748635647116, 0.4700369344869263, 0.7044722268129955, 0.7597806244765397, 0.4570971226262448, 0.3688130253756654, 0.5854022956087224, 0.6067015953642416, 0.6092966434658947, 0.5713009051869427, 0.15316343939585397, 0.31191498773739224], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [0.24, 0.19, 0.33, 0.1, 0.33, 0.36, 0.37, 0.19, 0.23, 0.27, 0.19, 0.57, 0.12, 0.26, 0.25, 0.37, 0.18, 0.685, 0.335, 0.2, 0.26, 0.4, 0.21, 0.25, 0.3, 0.24, 0.3, 0.43, 0.145, 0.66, 0.27, 0.48, 0.24, 0.17, 0.24, 0.2, 0.23, 0.34, 0.44, 0.26, 0.2, 0.08, 0.23, 0.22, 0.24, 0.15, 0.34, 0.47, 0.27, 0.43, 0.15, 0.35, 0.19, 0.19, 0.27, 0.27, 0.44, 0.21, 0.51, 0.4, 0.44, 0.65, 0.22, 0.14, 0.38, 0.6, 0.28, 0.21, 0.31, 0.21, 0.32, 0.37, 0.21, 0.3, 0.37, 0.22, 0.35, 0.24, 0.635, 0.36, 0.21, 0.22, 0.18, 0.27, 0.4, 0.15, 0.18, 0.45, 0.33, 0.4, 0.31, 0.39, 0.17, 0.16, 0.15, 0.35, 0.24, 0.29, 0.25, 0.18, 0.14, 0.25, 0.44, 0.27, 0.24, 0.17, 0.38, 0.11, 0.22, 0.855, 0.27, 0.33, 0.31, 0.25, 0.28, 0.48, 0.34, 0.13, 0.23, 0.36, 0.18, 0.26, 0.27, 0.18, 0.53, 0.51, 0.51, 0.3, 0.2, 0.66, 0.17, 0.455, 0.22, 0.38, 0.25, 0.29, 0.43, 0.855, 0.42, 0.46, 0.18, 0.15, 0.23, 0.24, 0.4, 0.23, 0.23, 0.2, 0.46, 0.13, 0.15, 0.5, 0.23, 0.3, 0.23, 0.31, 0.2, 0.34, 0.22, 0.21, 0.27, 0.63, 0.125, 0.51, 0.38, 0.21, 0.32, 0.23, 0.27, 0.44, 0.44, 0.34, 0.15, 0.23, 0.41, 0.69, 0.53, 0.17, 0.39, 0.635, 0.34, 0.27, 0.2, 0.3, 0.32, 0.235, 0.62, 0.18, 0.28, 0.15, 0.21, 0.66, 0.55, 0.55, 0.59, 0.28, 0.28, 0.23, 0.26, 0.19, 0.16, 0.32, 0.28, 0.62, 0.27, 0.34, 0.24, 0.29, 0.19, 0.36, 0.23, 0.25, 0.28, 0.27, 0.26, 0.23, 0.21, 0.2, 0.18, 0.44, 0.2, 0.21, 0.29, 0.21, 0.27, 0.17, 0.26, 0.17, 0.24, 0.15, 0.32, 0.36, 0.76, 0.28, 0.28, 0.21, 0.15, 0.19, 0.17, 0.29, 0.26, 0.23, 0.21, 0.44, 0.745, 0.27, 0.26, 0.25, 0.29, 0.29, 0.22, 0.19, 0.47, 0.31, 0.4, 0.21, 0.43, 0.2, 0.21, 0.3, 0.105, 0.27, 0.19, 0.34, 0.29, 0.3, 0.43, 0.4, 0.53, 0.3, 0.17, 0.67, 0.28, 0.17, 0.34, 0.25, 0.18, 0.3, 0.66, 0.39, 0.29, 0.24, 0.11, 0.28, 0.36, 0.29, 0.35, 0.2, 0.56, 0.2, 0.18, 0.37, 0.28, 0.39, 0.29, 0.28, 0.6, 0.27, 0.18, 0.2, 0.58, 0.25, 0.43, 0.2, 0.16, 0.36, 0.21, 0.14, 0.25, 0.36, 0.38, 0.24, 0.395, 0.18, 0.16, 0.27, 0.17, 0.32, 0.23, 0.25, 0.3, 0.22, 0.22, 0.41, 0.21, 0.65, 0.24, 0.27, 0.3, 0.3, 0.29, 0.27, 0.26, 0.255, 0.19, 0.19, 0.2, 0.66, 0.25, 0.18, 0.35, 0.28, 0.25, 0.18, 0.53, 0.28, 0.18, 1.0, 0.58, 0.25, 0.16, 0.16, 0.18, 0.18, 0.27, 0.2, 0.36, 0.3, 0.18, 0.48, 0.4, 0.26, 0.29, 0.39, 0.63, 0.26, 0.3, 0.15, 0.31, 0.28, 0.275, 0.19, 0.24, 0.71, 0.64, 0.22, 0.21, 0.83, 0.22, 0.43, 0.49, 0.25, 0.58, 0.34, 0.34, 0.23, 0.54, 0.4, 0.28, 0.25, 0.44, 0.28, 0.3, 0.35, 0.21, 0.31, 0.22, 0.45, 0.27, 0.58, 0.62, 0.62, 0.58, 0.28, 0.25, 0.25, 0.25, 0.34, 0.41, 0.44, 0.295, 0.33, 0.28, 0.16, 0.36, 0.25, 0.37, 0.23, 0.46, 0.42, 0.18, 0.22, 0.31, 0.15, 0.23, 0.26, 0.2, 0.16, 0.45, 0.32, 0.35, 0.33, 0.25, 0.16, 0.24, 0.46, 0.76, 0.68, 0.3, 0.31, 0.31, 0.21, 0.2, 0.42, 0.21, 0.23, 0.29, 0.23, 0.24, 0.12, 0.25, 0.32, 0.315, 0.16, 0.18, 0.37, 0.17, 0.6, 0.17, 0.15, 0.45, 0.4, 0.35, 0.27, 0.14, 0.67, 0.33, 0.19, 0.26, 0.4, 0.66, 0.3, 0.18, 0.23, 0.4, 0.115, 0.3, 0.28, 0.21, 0.2, 0.36, 0.18, 0.22, 0.26, 0.36, 0.28, 0.32, 0.23, 0.37, 0.41, 0.23, 0.58, 0.2, 0.18, 0.305, 0.2, 0.16, 0.21, 0.3, 0.18, 0.54, 0.31, 0.31, 0.23, 0.34, 0.23, 0.26, 0.29, 0.24, 0.3, 0.19, 0.26, 0.2, 0.38, 0.35, 0.37, 0.24, 0.52, 0.22, 0.53, 0.2, 0.29, 0.31, 0.13, 0.63, 0.2, 0.37, 0.26, 0.19, 0.37, 0.4, 0.36, 0.28, 0.29, 0.16, 0.545, 0.18, 0.38, 0.18, 0.32, 0.24, 0.26, 0.26, 0.18, 0.28, 0.29, 0.38, 0.14, 0.46, 0.28, 0.14, 0.44, 0.18, 0.23, 0.17, 0.65, 0.18, 0.43, 0.29, 0.17, 0.3, 0.22, 0.34, 0.41, 0.42, 0.3, 0.23, 0.16, 0.27, 0.28, 0.2, 0.16, 0.2, 0.36, 0.2, 0.23, 0.17, 0.26, 0.35, 0.27, 0.26, 0.32, 0.19, 0.51, 0.17, 0.63, 0.53, 0.26, 0.1, 0.29, 0.49, 0.32, 0.27, 0.26, 0.44, 0.24, 0.34, 0.59, 0.32, 0.42, 0.16, 0.13, 0.24, 0.24, 0.3, 0.34, 0.22, 0.13, 0.21, 0.19, 0.29, 0.43, 0.34, 0.825, 0.31, 0.3, 0.125, 0.29, 0.37, 0.755, 0.19, 0.25, 0.31, 0.55, 0.32, 0.26, 0.28, 0.37, 0.34, 0.19, 0.17, 0.23, 0.19, 0.36, 0.31, 0.18, 0.32, 0.34, 0.23, 0.35, 0.13, 0.67, 0.62, 0.24, 0.18], \"xaxis\": \"x\", \"y\": [0.18439386755371057, 0.5750868907731637, 0.1132172353536568, 0.19850047615697952, 0.6950004168934912, 0.41826441672946313, 0.040828937665112974, 0.2145583871630251, 0.09143093017991866, 0.10013996234885614, 0.3658834999306372, 0.587897812361327, 0.23563705889496211, 0.5289998061994394, 0.5981734696485812, 0.5956194363709464, 0.11295199838815062, 0.6349332021584286, 0.09356782907078887, 0.0672754654033908, 0.3541579814831264, 0.11781588709523827, 0.3295981493457443, 0.23443288181779365, 0.13830133810679424, 0.5122546205578999, 0.03626449638205209, 0.32057959349203036, 0.3955164844050859, 0.21320459763992916, 0.08620177311633537, 0.4132497936565127, 0.19514157099220286, 0.028148892894647393, 0.03728071159582558, 0.20213762816504022, 0.39088790332760825, 0.10566618212719892, 0.11466232649727714, 0.09544364959788487, 0.07351553674018241, 0.3657542344632553, 0.05859665738698361, 0.43634835962676355, 0.4827032077898804, 0.516310366273556, 0.6480037931050455, 0.21122004543372697, 0.030344760075157406, 0.22750344576024595, 0.18673438423788624, 0.5460909738859347, 0.0666291073587214, 0.320234954276134, 0.515425573770442, 0.5751179393061847, 0.3262180383913996, 0.12192585741802231, 0.6165939755266235, 0.09365914315081003, 0.44259853952477324, 0.31958523161407537, 0.09228899111547839, 0.22815273642701062, 0.5282447951108347, 0.7777719169155834, 0.13834506443323813, 0.29425092810710396, 0.5300870647699181, 0.031947521718024174, 0.1108646816717751, 0.053339747820140615, 0.14466174791529418, 0.25697560969337485, 0.3383868137798065, 0.30803904997837983, 0.03434255320493995, 0.08689109251212201, 0.46044782253877736, 0.0973761441498977, 0.3449058470623745, 0.024212367984770777, 0.11665042079727428, 0.3333970234137619, 0.1495417879159372, 0.0679784404121434, 0.2360052425084116, 0.39147703437781534, 0.04428683932015287, 0.5381556738404795, 0.4357341587922019, 0.11843845992675284, 0.28107964630818494, 0.06989794698232743, 0.2658605825653322, 0.22408104406272966, 0.15519213452661884, 0.09873339188795927, 0.10739713799337769, 0.4712507279726723, 0.31257930793611366, 0.6259141532505736, 0.1651629894813923, 0.13024327386797574, 0.08242409751896962, 0.55355901104019, 0.11256152515999429, 0.22124325125588817, 0.05838775174278421, 0.6734770756819889, 0.06919042490492266, 0.5773286546676725, 0.5693181878572973, 0.12726917141891614, 0.27983888222674136, 0.15690954109554833, 0.18593824584442387, 0.05432525584274117, 0.33273366741371935, 0.12435295831370408, 0.48112847828662497, 0.2959384652215836, 0.5042039768350125, 0.3749869638443927, 0.7258627386781167, 0.4806866421912115, 0.6234335830956541, 0.4191951896523489, 0.20821728825178332, 0.6343085651912675, 0.27674577061671146, 0.02140654255666985, 0.42849246998341506, 0.1817444030106703, 0.4551538855951942, 0.05087080041524106, 0.516641204200833, 0.6810720245435042, 0.08151744899857294, 0.4475169494323581, 0.03995706953508171, 0.2181819033834006, 0.20372897255157485, 0.24305701296248816, 0.5381556738404795, 0.2358485729609252, 0.051323642447754336, 0.1913631294907303, 0.32154631204965056, 0.31229802093755377, 0.3917329141436472, 0.39462053822053156, 0.3680669306910641, 0.5017894292511481, 0.32120711190509066, 0.0768019282386515, 0.1168769044932052, 0.31545143431826594, 0.12007957373947853, 0.08354361700756141, 0.2180731800932174, 0.7653011157176768, 0.05076221583963347, 0.11739077279846111, 0.3639458403519926, 0.4815918747301601, 0.35998732468747585, 0.457353694020342, 0.5520498791697908, 0.22168281241722143, 0.2132287846887433, 0.4763394582576197, 0.3040153802820409, 0.20749766415549342, 0.3316810644107503, 0.8126297477835096, 0.5749367295182395, 0.27274039590582944, 0.2685808245693546, 0.5172108675362206, 0.33506587713796443, 0.09616672688355288, 0.041108213935392324, 0.10548050716105373, 0.5016695616404938, 0.20022874051447226, 0.14220640128276774, 0.23772630779738468, 0.19606080251004787, 0.2603188495268066, 0.18846597668723208, 0.19827111133563302, 0.261548791893628, 0.4140325207077993, 0.8134796325151183, 0.12265695643958285, 0.6311167068993262, 0.13481820177301163, 0.0932384579037443, 0.14050160114126486, 0.2562249115981724, 0.08547750670655718, 0.08643201081848362, 0.19981675431015722, 0.31390222338706264, 0.06221739913672386, 0.06996303880871468, 0.30029370289300306, 0.4306817897420764, 0.6595343859760441, 0.2839408857911616, 0.20468539219890003, 0.1130196126722065, 0.2360017176902124, 0.13187147729288817, 0.42313120297864704, 0.06964897436687001, 0.1624399718171824, 0.17200815643270417, 0.07333105637055992, 0.2440137653363641, 0.4900110333069776, 0.3085554157386313, 0.03480496731142946, 0.12148031785507996, 0.15002971926037112, 0.5314247042003052, 0.2758453007685677, 0.2151852748992088, 0.2658605825653322, 0.29911225563077193, 0.6594110243744711, 0.49869782335001445, 0.16788254706683048, 0.11816213334465087, 0.08230909248122409, 0.13653212507346946, 0.25639170942272826, 0.06562233405876228, 0.23311900627036541, 0.3756616197417655, 0.46674395287949066, 0.3092684534350997, 0.8337319641197457, 0.8331457111467163, 0.2591056156836542, 0.4778687671024334, 0.2542440524586721, 0.5361036306539362, 0.07073721340803463, 0.4731688813159418, 0.5755848065786346, 0.356689463387698, 0.14225616860197343, 0.21837916002376445, 0.14466174791529418, 0.29899643271856946, 0.4757427727983842, 0.08126799884203029, 0.1296501822378736, 0.3286954654423938, 0.08620177311633537, 0.13855855420831553, 0.05543377339452393, 0.11917834098009661, 0.2613621884509647, 0.11269900223777074, 0.08429051026621415, 0.3393961441870107, 0.07031960314855146, 0.11356777592095357, 0.4853279864284006, 0.1279289285514792, 0.0584572339054259, 0.08612988585012649, 0.3472440907423937, 0.1248029959061332, 0.07502335399434323, 0.19827111133563302, 0.3424151534036639, 0.3065175956815872, 0.13808860398564737, 0.058092197534895806, 0.04082786106581715, 0.1602592849246841, 0.09156161599234125, 0.5036030690663805, 0.2640411824475748, 0.6468038092930676, 0.07201805208597656, 0.22470230804277058, 0.1334773721572423, 0.04847889440667685, 0.2685808245693546, 0.10911308148570098, 0.6764508967260475, 0.6280060594576413, 0.36761958218269275, 0.16019930342079847, 0.17605308658107655, 0.14078981831089854, 0.2384997092801764, 0.13117402490907393, 0.12818959986091483, 0.4161925244315118, 0.12435295831370408, 0.09814942480303201, 0.05480698563416486, 0.3746187330143109, 0.41092354232892336, 0.507894749900129, 0.5137929421583434, 0.08293523366016065, 0.2964416548030494, 0.15236141109070434, 0.4396941021426354, 0.41893931094950754, 0.09113953260801844, 0.10967473999240707, 0.055732078845942, 0.05640314085190745, 0.06176263301115803, 0.06427139521062619, 0.20386133178572885, 0.21597661143113533, 0.7486409492386699, 0.2610715902497083, 0.09465277491899493, 0.5556171757583562, 0.137718889647652, 0.1978940751503777, 0.08472590699531857, 0.356262641598029, 0.14596950445002987, 0.13865818299932142, 0.3088915816821678, 0.11516321289421916, 0.16121169033174265, 0.40573483691789825, 0.34308606282264, 0.36300204724896845, 0.17193414756867276, 0.035926383178341514, 0.34536882843285344, 0.4400180463892147, 0.5165194668234709, 0.23319834124303085, 0.9637923675569924, 0.2635599134550337, 0.6259141532505736, 0.12324962258280003, 0.1256037712827487, 0.1248029959061332, 0.11665042079727428, 0.29081136443782263, 0.12993062945549005, 0.20959981847797426, 0.12385816607190492, 0.16931651488884025, 0.2468284110987674, 0.6181879252747016, 0.3509541008179864, 0.08619429866610873, 0.09537770951135394, 0.8204393830764495, 0.2493836920976743, 0.10367142046182065, 0.11516383353466464, 0.07169627826225977, 0.5400384130096556, 0.2709141565803237, 0.16809050322974173, 0.3421981324687273, 0.812724325423183, 0.1326589750154965, 0.054670132935181304, 0.055346153509382656, 0.8039442695404772, 0.3276168958360183, 0.6561718697940482, 0.6214102617950452, 0.3046829516703813, 0.7853649284745584, 0.7303620793003476, 0.6719087507962026, 0.16000678121984613, 0.579612101366232, 0.6347749924714103, 0.41894393066564606, 0.06936532322770372, 0.28322834609079706, 0.343263893078516, 0.4450860003239352, 0.3090838478611311, 0.408095736797927, 0.11529682880263803, 0.13359771811640497, 0.2417229185475579, 0.10092265889692065, 0.8181934133883563, 0.3777834313813965, 0.8273808576462511, 0.18439353202429143, 0.5148786056082297, 0.11287077888712382, 0.16015059460472458, 0.29672938182784603, 0.36944561074938853, 0.2505850522824452, 0.8467591712977676, 0.3840267097226593, 0.261779448872241, 0.1645479955558209, 0.14631295673285594, 0.4248523287309329, 0.09222807982804315, 0.2121484308544801, 0.33273366741371935, 0.5470626312455473, 0.8294144697045585, 0.25206662215500397, 0.15998368749433245, 0.548322128117227, 0.3917329141436472, 0.15981565308588508, 0.23631147082452741, 0.21082920466209698, 0.1871387197916503, 0.24774693401855818, 0.1913242313933492, 0.16437448769677154, 0.07582203648947516, 0.032541140295091364, 0.06311143057978008, 0.5009235508757715, 0.12343879567504301, 0.445735807756371, 0.40322837553658053, 0.09397553936597514, 0.1598391281143201, 0.26702494168661406, 0.19782301216908982, 0.06831823449824892, 0.5451167746582685, 0.20142160156100697, 0.25747632252511843, 0.4257317671215596, 0.5062318064185062, 0.10278357133077332, 0.10857266292312517, 0.06223864817381186, 0.11377411494697365, 0.14082424186384768, 0.2589321903149734, 0.31776639873426016, 0.07983414941561229, 0.30174211068680845, 0.42532907678292176, 0.23734670470511587, 0.2862296469110084, 0.24790288035387664, 0.5526146374040077, 0.20425399436950087, 0.5166825128498294, 0.12415322942140417, 0.5310696157212036, 0.3866387435262121, 0.14313186082947948, 0.31648660326859934, 0.026792916001305622, 0.7856428374245099, 0.42383310375799566, 0.5944566396871084, 0.6256605001243821, 0.08813642250468567, 0.03544811528140901, 0.06935406654889886, 0.15751976448865512, 0.22608551288474832, 0.3127311228465576, 0.1409438166611655, 0.3285615524533705, 0.3591330499592894, 0.47964497307801546, 0.7143146030302826, 0.14223944449319303, 0.06929054967731618, 0.32120711190509066, 0.16913647442041335, 0.707286257884667, 0.3230684446475647, 0.7616845263358343, 0.4104900542879092, 0.10053249234255524, 0.1106599594415556, 0.1543174595222413, 0.46003879185641183, 0.3811350878514418, 0.07185070571861518, 0.23882593985771994, 0.5344976262521839, 0.11031385635331636, 0.09610989844306939, 0.4955559099445003, 0.07845190603324759, 0.30697262074812925, 0.12767551958037127, 0.4375661224395835, 0.07737023387634634, 0.15307682457740834, 0.05694427046787409, 0.09028836937410878, 0.4011292297732457, 0.6186146927451245, 0.11561676905211238, 0.0993047499370594, 0.08102401279833105, 0.8100206966555492, 0.10768932514586738, 0.15386113005635593, 0.4026560765644126, 0.045535707525545144, 0.08229583319403, 0.08227601457953415, 0.8241544781987433, 0.0759900855540333, 0.5147505197509459, 0.11103147778198663, 0.42144961755966015, 0.24880465403270857, 0.3112403223054312, 0.3282460941643247, 0.28312386083977936, 0.2865521931047814, 0.16537364909659502, 0.4284132019637321, 0.34116073112729894, 0.051142721309942685, 0.10794707492381372, 0.1108646816717751, 0.29201805921023904, 0.07365131996157204, 0.36851051207096197, 0.2556143611338999, 0.07392456180697715, 0.045535707525545144, 0.15025986810093994, 0.4395989822566938, 0.19636656988846957, 0.21018464628148859, 0.15085686628779282, 0.3429118439192298, 0.16104008564300487, 0.2055862423584408, 0.18673310211333727, 0.5528531989583015, 0.20219789553586287, 0.5807830339134155, 0.6112381610839525, 0.07515362639458067, 0.5722084734915175, 0.3654892991508686, 0.1991057466826236, 0.4912569401667811, 0.05850610073101081, 0.3077884117234785, 0.17038242498240874, 0.14066607718466684, 0.10248584652416493, 0.4022873718442217, 0.07205214632436985, 0.35142291824287475, 0.10941760034103376, 0.06679271580157364, 0.05675388891699207, 0.058987921856350156, 0.3660303223369904, 0.28790374422385034, 0.4158290962648631, 0.40710291595796666, 0.09934102670994882, 0.06362846635195196, 0.30921476208988685, 0.23242198019285765, 0.055541210656895434, 0.5297663836663529, 0.10744632778983743, 0.18410212910939194, 0.17721960751489196, 0.1962664672709783, 0.1617648996714035, 0.10584426414108294, 0.5203501665477333, 0.07365131996157204, 0.31578819840495265, 0.35364190165315845, 0.1707951928721818, 0.41655733121321636, 0.15801546378512366, 0.7568436608419439, 0.22368578646300386, 0.0609449253562836, 0.2225096762928218, 0.18587673368692093, 0.05559101133196209, 0.569598540521716, 0.08073228430722412, 0.15724041301590164, 0.12879141548479, 0.4306817897420764, 0.17998791969802397, 0.41280880088413996, 0.5723062335690389, 0.6457404130724687, 0.10420061808672998, 0.12564769853034463, 0.21795029564941848, 0.4720930498870375, 0.11304202998506685, 0.545112257205237, 0.14852188644910969, 0.17217029085021085, 0.336250902618187, 0.48671482860553816, 0.5093433434984792, 0.35847801144896685, 0.3008706318705062, 0.18494609259573758, 0.4199330463236065, 0.04162287990776414, 0.2633909944023186, 0.4252182303976608, 0.4684623303117058, 0.1925553058603695, 0.09610989844306939, 0.09129843496680234, 0.3302708189676917, 0.4199330463236065, 0.11927294568859859, 0.4864154015695107, 0.06472081497616611, 0.6387929002666255, 0.37932906694235924, 0.093713747684541, 0.20627971812824875], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (curr)\", \"type\": \"scatter\", \"x\": [0.365, 0.62, 0.27, 0.18, 0.29, 0.28, 0.43, 0.765, 0.785, 0.6, 0.3, 0.19, 0.31, 0.25, 0.29, 0.21, 0.31, 0.38, 0.35, 0.45, 0.28, 0.25, 0.34, 0.41, 0.22, 0.29, 0.41, 0.41, 0.21, 0.2, 0.27, 0.3, 0.73, 0.6, 0.18, 0.19, 0.98, 0.52, 0.12, 0.36, 0.485, 0.58, 0.34, 0.25, 0.43, 0.51, 0.54, 0.6, 0.28, 0.2, 0.25, 0.26, 0.31, 0.64, 0.705, 0.37, 0.61, 0.645, 0.31, 0.42, 0.645, 0.45, 0.27, 0.29, 0.39, 0.91, 0.46, 0.7, 0.775, 0.55, 0.57, 0.34, 0.335, 0.685, 0.24, 0.25, 0.27, 0.31, 0.47, 0.39, 0.13, 0.56, 0.29, 0.5, 0.2, 0.37, 0.16, 0.25, 0.25, 0.5, 0.23, 0.345, 0.27, 0.3, 0.58, 1.58, 0.29, 0.62, 0.64, 0.24, 0.35, 0.42, 0.21, 0.52, 0.33, 0.51, 0.62, 0.5, 0.33, 0.33, 0.6, 0.31, 0.63, 0.3, 0.21, 0.27, 0.24, 0.41, 0.27, 0.56, 0.27, 0.24, 0.61, 0.5, 0.695, 0.65, 0.16, 0.23, 0.695, 0.44, 0.28, 0.33, 0.3, 0.35, 0.34, 0.39, 0.25, 0.66, 0.585, 0.315, 0.29, 0.2, 0.22, 0.18, 0.59, 0.34, 0.21, 0.4, 0.52, 0.37, 0.5, 0.31, 0.43, 0.24, 0.3, 0.31, 0.22, 0.26, 0.28, 0.55, 0.635, 0.32, 0.14, 0.36, 0.59, 0.31, 0.3, 0.14, 0.21, 0.23, 0.31, 0.26, 0.28, 0.17, 0.35, 0.54, 0.39, 0.39, 0.24, 0.15, 0.16, 0.215, 0.38, 0.34, 0.26, 0.3, 0.29, 0.27, 0.28, 0.24, 0.66, 0.25, 0.25, 0.28, 0.4, 0.38, 0.21, 0.3, 0.18, 0.45, 0.67, 0.36, 0.34, 0.24, 0.27, 0.21, 0.31, 0.32, 0.5, 0.31, 0.34, 0.33, 0.48, 0.2, 0.28, 0.39, 0.29, 0.34, 0.34, 0.24, 0.4, 0.27, 0.33, 0.28, 0.18, 0.41, 0.41, 0.27, 0.52, 0.345, 0.33, 0.23, 0.22, 0.23, 0.745, 0.35, 0.12, 0.22, 0.3, 0.22, 0.44, 0.65, 0.21, 0.12, 0.29, 0.32, 0.17, 0.14, 0.4, 0.41, 0.42, 0.44, 0.3, 0.24, 0.29, 0.23, 0.12, 0.3, 0.34, 0.45, 0.46, 0.2, 0.18, 0.18, 0.26, 0.28, 0.47, 0.23, 0.235, 0.33, 0.28, 0.705, 0.16, 0.31, 0.16, 0.28, 0.33, 0.45, 0.675, 0.37, 0.78, 0.28, 0.19, 0.6, 0.62, 0.14, 0.31, 0.555, 0.21, 0.45, 0.26, 0.6, 0.4, 0.62, 0.3, 0.41, 0.41, 0.3, 0.25, 0.59, 0.24, 0.32, 0.25, 0.26, 0.44, 0.475, 0.35, 0.24, 0.28, 0.23, 0.4, 0.27, 0.26, 0.24, 0.27, 0.26, 0.31, 0.26, 0.33, 0.595, 0.26, 0.39, 0.26, 0.23, 0.875, 0.35, 0.33, 0.45, 0.3, 0.335, 0.9, 0.24, 0.19, 0.16, 0.55, 0.21, 0.15, 0.63, 0.22, 0.49, 0.32, 0.44, 0.48, 0.83, 0.61, 0.2, 0.4, 0.365, 0.22, 0.15, 0.23, 0.26], \"xaxis\": \"x2\", \"y\": [0.18579927887031134, 0.9274202256360236, 0.2569067617886446, 0.17851375722123963, 0.43011516789686843, 0.3951880410340851, 0.35333307802371594, 0.854899199395705, 0.7749695319329993, 0.7150752736216004, 0.5793836726576811, 0.17187478758168062, 0.503776006633781, 0.6517104478925241, 0.5321166645488455, 0.4291031613352281, 0.6295132227815239, 0.446367751604861, 0.12978626497489776, 0.578130474122496, 0.1303225049324246, 0.4589423036505589, 0.6028673022099313, 0.6724998803801079, 0.055171077290688375, 0.28900585249094113, 0.5807441942986169, 0.6324527530146118, 0.32780881811994433, 0.4437792729685527, 0.47375733914823626, 0.6755390392614542, 0.8494338455743565, 0.8432302027568838, 0.3962269303969661, 0.36574887203466033, 0.9780529644634413, 0.6757083557066426, 0.43212531492562845, 0.6428319532862445, 0.2244465690609686, 0.6759712108962084, 0.300575337785698, 0.4848467547623382, 0.24353241802821812, 0.6165640897352094, 0.801889943514816, 0.6831580296641933, 0.4684052737322374, 0.07309555507266852, 0.17397747102053363, 0.548208100621717, 0.16948307959681597, 0.5287139706981401, 0.8097217619362252, 0.48186532860504816, 0.7044722268129955, 0.5458559966555334, 0.6067015953642416, 0.5767206748937392, 0.5416109283549078, 0.7766135747357961, 0.6371580804073698, 0.3290646799011723, 0.53941953634433, 0.7444876216695655, 0.27658524567301757, 0.8518717737266248, 0.685064206005921, 0.7994946846943811, 0.6254668451144636, 0.29898447003196504, 0.36566585814722175, 0.8260679099411251, 0.265003746926769, 0.18277705216857454, 0.6401445853260315, 0.2878944788643705, 0.7379395090268356, 0.6578861964269485, 0.3048731186933995, 0.6479177870210828, 0.5479007895539181, 0.8109237991420157, 0.4555798348891207, 0.35159410271621183, 0.6741813074403022, 0.40366163192193316, 0.3797333752177462, 0.42326140605337403, 0.49450075158901585, 0.7027754368270075, 0.31556666432085356, 0.5737052492708005, 0.5594846166878963, 0.9879213229528466, 0.23907110553933086, 0.7604887601700165, 0.906894853259191, 0.49150798334893764, 0.6693239074263375, 0.635181004157038, 0.4291031613352281, 0.6805197940362542, 0.8579270215873258, 0.42231028799440284, 0.7973836574204367, 0.6209099995125147, 0.617932351579841, 0.5867531689564582, 0.8217385626893267, 0.5766058512754557, 0.6085190813519714, 0.6488649586424557, 0.19466062481522506, 0.4062994677131635, 0.31500574198466447, 0.6106996692323751, 0.48314991346809855, 0.4300926711133176, 0.4623912750166579, 0.18141675383529432, 0.7404949196358439, 0.7960551628311661, 0.6696955469146251, 0.7471897031921468, 0.15222801432328747, 0.4782875749995391, 0.6696955469146251, 0.4617114467660769, 0.0374236133971757, 0.34638250956587036, 0.5737052492708005, 0.35412183815676124, 0.5342599897609015, 0.6273126624389191, 0.1819914526651868, 0.6450640502472667, 0.7576359910572065, 0.6363669366758954, 0.35783776888428775, 0.4555798348891207, 0.2603691587203709, 0.09638465351539516, 0.7889843001267657, 0.3995975535535492, 0.2404138117262561, 0.5134503976671381, 0.7620160241108803, 0.4852174766770502, 0.7934067722809752, 0.5657371707019572, 0.40591517497640706, 0.5142806824729376, 0.4667389755277017, 0.4597803030361328, 0.14211531046105408, 0.4709774325404933, 0.39253304933110444, 0.8152160844894966, 0.6418608562675732, 0.5695619245525361, 0.15898796250578873, 0.4189913516486339, 0.8097376625536354, 0.2776505479619531, 0.14100712613869515, 0.1625374057836978, 0.21879614767173305, 0.26016804821119, 0.5884346274074399, 0.25171266030158634, 0.5556828679884147, 0.2886326125606653, 0.5013044750460076, 0.23728971353361283, 0.6280660923097139, 0.6281218947904323, 0.6226708394296439, 0.1280348372312241, 0.37812375401711507, 0.6218606462016874, 0.446367751604861, 0.5237591509200082, 0.22560064672115399, 0.4159575064805634, 0.43989745285902637, 0.38133093816728936, 0.379388299643832, 0.4244201113870294, 0.8495234946343055, 0.44699506619782237, 0.3402560380560977, 0.16997778820688525, 0.6509841470756508, 0.5589353890471914, 0.49320900326902484, 0.41485179365651337, 0.2850172536812061, 0.5150740024049856, 0.7905789411902706, 0.6660097546858721, 0.5916856454756931, 0.25029771644034415, 0.21820707607863943, 0.23625780462752244, 0.6174344585079109, 0.33885175059010386, 0.8097775874289167, 0.5502791542248897, 0.45232673966787307, 0.5168725346003686, 0.4922951659433321, 0.2710495410551712, 0.5620189509382074, 0.19827785442852286, 0.35653263682836045, 0.4940220265254579, 0.3934632807735441, 0.349631294967786, 0.6543252873397565, 0.6043841099981286, 0.6572212454398962, 0.5323595728841377, 0.4667716613599331, 0.5480891857555714, 0.5933716837007499, 0.5769442381274095, 0.7796710482718338, 0.4721284230669528, 0.5632051337005155, 0.25606657060722404, 0.47304849589761655, 0.4991199345133047, 0.785831825438318, 0.5512091114854263, 0.31651464458218903, 0.192246895102814, 0.5737052492708005, 0.14970485751781393, 0.8257882443178004, 0.7450862811651306, 0.2404138117262561, 0.3428275867057816, 0.2186811050870735, 0.43730933466596944, 0.1325711740116582, 0.33994853494016564, 0.5172250338280965, 0.4543852880840521, 0.6017244994332274, 0.7267617626256621, 0.304103470637073, 0.49511795227452726, 0.4577650902534979, 0.4389063253281036, 0.3428275867057816, 0.6911248892501751, 0.5457123873353599, 0.3395528272139201, 0.5662837862370104, 0.38281068028313525, 0.1899488449656659, 0.1899488449656659, 0.39416742153886597, 0.4473524415330049, 0.5724944828663213, 0.12652799787397961, 0.14917046216496987, 0.4192276293132746, 0.1727250451072272, 0.7329347521090118, 0.2979855805324535, 0.5384433083808008, 0.2944152049751758, 0.5661013076544325, 0.39283078357423706, 0.6503174362647687, 0.7632350838020857, 0.29422440231251745, 0.8446099855685041, 0.3812461384129847, 0.1264117171095669, 0.6995051325026098, 0.7680829457938805, 0.1086082602083136, 0.50228427853815, 0.8303888649041977, 0.15145052047802054, 0.5239967242043768, 0.49461569007297057, 0.7323984730128237, 0.6372335578763709, 0.8485373319296128, 0.21018203617182263, 0.3854703692354019, 0.6209619763202376, 0.6996467359659702, 0.3913887983225227, 0.600932061108284, 0.18141675383529432, 0.32841971343371723, 0.17397747102053363, 0.3943097935149382, 0.5998672378660981, 0.6052803835931642, 0.35501406908939237, 0.4362847089434372, 0.6005057903956104, 0.45095984485898877, 0.5601124581139871, 0.6908342266509375, 0.29066967723125237, 0.5437491575180791, 0.5955595524057149, 0.4226516353037165, 0.552222307965348, 0.5038457784615318, 0.6752568781943777, 0.7880730680059006, 0.09430965090665133, 0.4986183600001317, 0.24112389044610405, 0.3635071851353404, 0.7047195247497422, 0.5251048099479148, 0.5632051337005155, 0.4520037684813636, 0.5271857161160298, 0.36566585814722175, 0.8775119234978208, 0.49474741138534273, 0.17187478758168062, 0.1069918390347242, 0.6371627391106971, 0.19018032574493748, 0.34352259564225396, 0.806114950115292, 0.47304849589761655, 0.5014153035286022, 0.6721952796384192, 0.7507248720260316, 0.38512814216859315, 0.8930847268109882, 0.863224561659591, 0.15108072818859253, 0.7399796913917198, 0.18579927887031134, 0.47304849589761655, 0.2033384066370545, 0.43667652058029827, 0.23252054766636898], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [0.37, 0.23, 0.21, 0.32, 0.58, 0.21, 0.24, 0.3, 0.2, 0.3, 0.48, 0.25, 0.27, 0.32, 0.32, 0.2, 0.44, 0.25, 0.22, 0.37, 0.2, 0.19, 0.2, 0.26, 0.25, 0.29, 0.22, 0.24, 0.39, 0.34, 0.41, 0.34, 0.22, 0.26, 0.3, 0.19, 0.13, 0.23, 0.475, 0.605, 0.33, 0.24, 0.52, 0.29, 0.26, 0.57, 0.3, 0.6, 0.26, 0.22, 0.42, 0.57, 0.28, 0.28, 0.26, 0.17, 0.22, 0.34, 0.21, 0.76, 0.42, 0.3, 0.22, 0.25, 0.26, 0.3, 0.42, 0.28, 0.54, 0.14, 0.26, 0.28, 0.34, 0.275, 0.29, 0.2, 0.28, 0.18, 0.26, 0.53, 0.15, 0.21, 0.31, 0.24, 0.22, 0.31, 0.36, 0.33, 0.19, 0.3, 0.2, 0.24, 0.25, 0.31, 0.4, 0.4, 0.475, 0.25, 0.26, 0.61, 0.26, 0.17, 0.51, 0.28, 0.26, 0.28, 0.53, 0.24, 0.38, 0.3, 0.66, 0.33, 0.29, 0.29, 0.32, 0.36, 0.255, 0.24, 0.29, 0.66, 0.33, 0.23, 0.34, 0.16, 0.635, 0.42, 0.46, 0.34, 0.39, 0.17, 0.19, 0.36, 0.26, 0.28, 0.27, 0.21, 0.36, 0.42, 0.34, 0.21, 0.18, 0.865, 0.39, 0.23, 0.29, 0.31, 0.35, 0.4, 0.09, 0.22, 0.12, 0.1, 0.18, 0.2, 0.19, 0.3, 0.35, 0.37, 0.2, 0.23, 0.23, 0.55, 0.37, 0.3, 0.39, 0.265, 0.3, 1.04, 0.34, 0.21, 0.15, 0.18, 0.27, 0.34, 0.39, 0.24, 0.2, 0.28, 0.38, 0.31, 0.39, 0.19, 0.18, 0.33, 0.14, 0.55, 0.22, 0.46, 0.27, 0.41, 0.19, 0.18, 0.22, 0.25, 0.17, 0.39, 0.19, 0.33, 0.35, 0.27, 0.36, 0.26, 0.4, 0.17, 0.21, 0.31, 0.21, 0.44, 0.25, 0.15, 0.26, 0.28, 0.46, 0.32, 0.46, 0.32, 0.22, 0.31, 0.35, 0.24, 0.18, 0.35, 0.6, 0.26, 0.22, 0.655, 0.2, 0.28, 0.42, 0.22, 0.84, 0.28, 0.19, 0.23, 0.27, 0.2, 0.34, 0.14, 0.31, 0.16, 0.22, 0.4, 0.36, 0.22, 0.46, 0.43, 0.19, 0.19, 0.21, 0.685, 0.17, 0.22, 0.17, 0.28, 0.13, 0.11, 0.14, 0.17, 0.34, 0.32, 0.65, 0.28, 0.21, 0.28, 0.13, 0.24, 0.27, 0.41, 0.23, 0.18, 0.11, 0.17, 0.15, 0.59, 0.11, 0.68, 0.24, 0.18, 0.295, 0.55, 0.37, 0.27, 0.28, 0.345, 0.28, 0.44, 0.32, 0.2, 0.585, 0.17, 0.45, 0.43, 0.13, 0.32, 0.17, 0.28, 0.25, 0.36, 0.24, 0.3, 0.17, 0.16, 0.25, 0.38, 0.25, 0.36, 0.37, 0.18, 0.21, 0.16, 0.24, 0.46, 0.52, 0.31, 0.21, 0.22, 0.37, 0.28, 0.19, 0.25, 0.33, 0.28, 0.29, 0.19, 0.65, 0.2, 0.29, 0.32, 0.19, 0.4, 0.43, 0.16, 0.785, 0.22, 0.27, 0.25, 0.25, 0.26, 0.36, 0.43, 0.21, 0.32, 0.3, 0.54, 0.63, 0.18, 0.35, 0.27, 0.25, 0.41, 0.43, 0.305, 0.23, 0.2, 0.3, 0.31, 0.645, 0.29, 0.16, 0.52, 0.3, 0.24, 0.42, 0.26, 0.45, 0.27, 0.22, 0.22, 0.33, 0.24, 0.22, 0.34, 0.21, 0.14, 0.53, 0.725, 0.18, 0.27, 0.47, 0.26, 0.235, 0.26, 0.33, 0.23, 0.23, 0.2, 0.27, 0.16, 0.45, 0.4, 0.2, 0.28, 0.24, 0.23, 0.115, 0.57, 0.25, 0.27, 0.37, 0.18, 0.18, 0.21, 0.19, 0.19, 0.31, 0.23, 0.24, 0.445, 0.15, 0.45, 0.26, 0.2, 0.18, 0.19, 0.18, 0.4, 0.21, 0.37, 0.32, 0.26, 0.21, 0.28, 0.42, 0.765, 0.315, 0.28, 0.25, 0.28, 0.36, 0.17, 0.41, 0.27, 0.15, 0.32, 0.5, 0.52, 0.24, 0.25, 0.08, 0.18, 0.19, 0.57, 0.23, 0.19, 0.36, 0.34, 0.38, 0.5, 0.42, 0.745, 0.22, 0.69, 0.18, 0.57, 0.17, 0.33, 0.36, 0.18, 0.22, 0.4, 0.24, 0.36, 0.19, 0.23, 0.18, 0.17, 0.44, 0.17, 0.21, 0.685, 0.3, 0.2, 0.58, 0.16, 0.16, 0.24, 0.36, 0.13, 0.26, 0.21, 0.34, 0.25, 0.38, 0.12, 0.17, 0.19, 0.3, 0.38, 0.39, 0.59, 0.45, 0.22, 0.31, 0.35, 0.2, 0.39, 0.2, 0.56, 0.305, 0.45, 0.24, 0.26, 0.19, 0.26, 0.41, 0.22, 0.31, 0.35, 1.02, 0.27, 0.52, 0.21, 0.35, 0.26, 0.22, 0.44, 0.41, 0.4, 0.27, 0.25, 0.3, 0.49, 0.24, 0.32, 0.21, 0.19, 0.25, 0.37, 0.25, 0.26, 0.69, 0.17, 0.25, 0.25, 0.31, 0.3, 0.53, 0.24, 0.69, 0.38, 0.22, 0.29, 0.26, 0.16, 0.27, 0.15, 0.5, 0.31, 0.21, 0.19, 0.29, 0.32, 0.41, 0.21, 0.2, 0.42, 0.36, 0.15, 0.35, 0.33, 0.11, 0.31, 0.16, 0.34, 0.34, 0.2, 0.21, 0.28, 0.19, 0.28, 0.205, 0.26, 0.19, 0.43, 0.28, 0.21, 0.33, 0.24, 0.25, 0.28, 0.38, 0.3, 0.15, 0.33, 0.18, 0.32, 0.61, 0.3, 0.38, 0.38, 0.56, 0.34, 0.24, 0.22, 0.58, 0.35, 0.32, 0.28, 0.2, 0.21, 0.16, 0.58, 0.28, 0.255, 0.21, 0.63, 0.38, 0.16, 0.24, 0.35, 0.48, 0.19, 0.2, 0.17, 0.6, 0.32, 0.18, 0.2, 0.38, 0.52, 0.15, 0.38, 0.18, 0.14, 0.16, 0.26, 0.24, 0.245, 0.29, 0.15, 0.645, 0.415, 0.18, 0.2, 0.34, 0.18, 0.22, 0.51, 0.42, 0.49, 0.32, 0.25, 0.2, 0.24, 0.18, 0.27, 0.53, 0.28], \"xaxis\": \"x2\", \"y\": [0.6660328535674787, 0.4955559099445003, 0.11251030999551548, 0.5313240922219649, 0.7616845263358343, 0.42881839881496897, 0.22146723198036844, 0.2709448900825402, 0.04188686298684474, 0.3198999677935893, 0.586632325439729, 0.3332859260788763, 0.0891770245136605, 0.07249138429342028, 0.0813041402249215, 0.2808128557304226, 0.18155424903412543, 0.14020593233116785, 0.20529540916933675, 0.1755850319354616, 0.5722846846512241, 0.4684623303117058, 0.2863708053899042, 0.4489302200945696, 0.3606737334686688, 0.09834172337505831, 0.1439119889738254, 0.10526388551166177, 0.08976738859769384, 0.15927641460572795, 0.07353544332944184, 0.4894096639868448, 0.24735122968283396, 0.41440459167745447, 0.10107859516115147, 0.4809249647595707, 0.043928674649753696, 0.27268427565697984, 0.07203278686513981, 0.35989685204578803, 0.08410225657903847, 0.09640449279894714, 0.2859044620344169, 0.766491644508495, 0.27194216744256416, 0.11891721880979944, 0.6033870782914414, 0.8445823904457724, 0.4148378249676725, 0.09538880480821377, 0.5822786697287807, 0.2006236885231063, 0.30215903380660414, 0.3526626332448971, 0.22921561702294402, 0.3499358724503807, 0.451050436906263, 0.01968005574460141, 0.3849224947932618, 0.608666907839271, 0.30333177217190177, 0.05732515971384944, 0.08299070223644744, 0.155374347961305, 0.4378217303747408, 0.10641916767178827, 0.3207785913922725, 0.3280003244598044, 0.4747408725557203, 0.27229542413121455, 0.5314247042003052, 0.13834506443323813, 0.652508483608137, 0.1775869136191267, 0.4659209431511335, 0.3288332341233703, 0.47224603889779837, 0.2773569186284155, 0.18590272545123854, 0.6719763059805124, 0.04569198037744582, 0.22473444069733528, 0.0776074933333939, 0.1411968215808168, 0.3654892991508686, 0.06069899520469324, 0.21029328672965164, 0.13919371635861133, 0.16321149678759816, 0.6144435769482088, 0.1388055550317996, 0.0827658987104557, 0.0793107693477757, 0.04994940743047871, 0.46220165202879504, 0.08265172102971341, 0.5554564865761329, 0.10902951494304747, 0.26480674198345266, 0.31816712550642645, 0.20184400370343658, 0.23734670470511587, 0.19264674509953905, 0.03558879485690103, 0.5314247042003052, 0.3013473679880785, 0.8043030592862955, 0.07665185966197174, 0.17816243980233548, 0.14637302723887635, 0.43623195291339645, 0.5773286546676725, 0.06996409198491005, 0.0635191394270278, 0.11839391684253864, 0.03368970372860669, 0.16544292122901683, 0.5002106013252752, 0.20783967621931676, 0.4413184352618238, 0.1377753535318076, 0.017128038770129694, 0.09070427960766203, 0.05237321155563324, 0.46044782253877736, 0.09863911308639095, 0.6058955548956951, 0.07377868677997379, 0.33726125667837825, 0.03705661785513226, 0.03856885477325478, 0.01970319875133708, 0.06623921298607705, 0.655672818127978, 0.36403826442427, 0.375635621083512, 0.25822104517587474, 0.26990817233175546, 0.30316845466795117, 0.21597661143113533, 0.10411587283779344, 0.4582573305440075, 0.28974208538397184, 0.3995654588450376, 0.48407929824265805, 0.2412117545349558, 0.49704114689177337, 0.3112403223054312, 0.13571503940671914, 0.35304273602320047, 0.18963603484652192, 0.06023564559469896, 0.305863422303413, 0.34062746964654456, 0.03532029949184434, 0.20200996882548472, 0.207876095289533, 0.11304202998506685, 0.26487496820305634, 0.46674395287949066, 0.05931266843465788, 0.6063731497207538, 0.053339747820140615, 0.16056749669580483, 0.3366557342021428, 0.18735912995827353, 0.2667542380283816, 0.9197592959547904, 0.13322255285490225, 0.3533185668595151, 0.08763312389948397, 0.343329095265401, 0.1298321532292276, 0.11240742021865013, 0.03412749239977686, 0.23316671381479437, 0.13955591125269062, 0.065615492475942, 0.03940539431326806, 0.04874684240881699, 0.42507109047861347, 0.3720756994829524, 0.20627971812824875, 0.23346983492740092, 0.299872058778726, 0.14688925552714138, 0.20529540916933675, 0.11294333341234963, 0.4523771212155355, 0.15895981664313275, 0.12633289347617382, 0.34801013400503944, 0.063056887931354, 0.09222807982804315, 0.19281104432210028, 0.11843845992675284, 0.1064686731970873, 0.12171087020281346, 0.49704114689177337, 0.4202798549667376, 0.058322454167927695, 0.40418598015134155, 0.7514842711311043, 0.067978575311199, 0.1468497162592186, 0.3655805321171328, 0.36741292271676196, 0.08785516413846428, 0.4223454464089015, 0.09472348251934337, 0.14196098925812006, 0.10013555988874479, 0.32154631204965056, 0.05416575683382341, 0.786126361492164, 0.04696516601190348, 0.26926088858349784, 0.28123172687107445, 0.3094364396730669, 0.04307250962973752, 0.07126159086244754, 0.6143015945908075, 0.495586079448059, 0.46102608015166635, 0.40789311683600216, 0.8929715185951024, 0.1227006502272181, 0.3638055988942468, 0.10470002869891348, 0.29304213908849364, 0.8936703981375603, 0.3534407380188983, 0.0883666731866185, 0.07895584641700149, 0.05166417783587085, 0.4199775765299997, 0.10304865631077798, 0.1041340676595982, 0.11031385635331636, 0.22368578646300386, 0.22137255536682798, 0.0725394352715707, 0.08320759746190642, 0.3577905591727162, 0.36362749207413336, 0.13058702032609693, 0.4306817897420764, 0.4684623303117058, 0.3185463047756948, 0.6991046594229053, 0.33105510290791684, 0.35804773811787727, 0.3499358724503807, 0.17780319308126435, 0.07142366539796174, 0.1504846162366139, 0.28643330026545544, 0.11492102279820171, 0.08716328114311156, 0.12905574960179156, 0.5528531989583015, 0.2852168598030531, 0.3185463047756948, 0.41766807389819915, 0.22818770291371737, 0.10749415552266317, 0.07500089027222667, 0.2150933620687273, 0.4879833184669665, 0.21367083697314282, 0.18281788227943807, 0.11217648511765432, 0.01860460444149037, 0.4990100838788346, 0.3212979959143686, 0.7252893191599291, 0.30018855716775616, 0.2808216200321265, 0.24332849241566534, 0.22583693263898685, 0.307128141019565, 0.12930297020615966, 0.07734813107736227, 0.38078614076753503, 0.037937415915298756, 0.18389331462546077, 0.2015421194948802, 0.10121634311933059, 0.7209948827487924, 0.252131738577411, 0.19866278493931944, 0.5569604587758099, 0.19172534874952063, 0.07516041810443141, 0.18673310211333727, 0.20736440356309183, 0.27568985010185776, 0.1748501221961516, 0.134246332983591, 0.12151400729184814, 0.03860330573341564, 0.16198960071610413, 0.062309112953929935, 0.14943540958877521, 0.46827469198568006, 0.12435295831370408, 0.11768791031746062, 0.10794707492381372, 0.04347111427796346, 0.07423675680829, 0.1602542791395647, 0.19911642350143877, 0.2379444352717226, 0.36664322039668684, 0.10130143557253446, 0.17108028607870185, 0.6143194513817134, 0.5641235853966853, 0.29864316680665437, 0.44752301946823647, 0.13459844499503626, 0.037461465199631894, 0.5002964248569376, 0.4059565893810353, 0.7035957096210382, 0.0629603198376949, 0.25036415064992923, 0.14780834332950044, 0.24800647860056513, 0.10438723399855232, 0.24366911510822187, 0.4574644219698093, 0.8347014835967527, 0.42226245660703365, 0.4073158502222598, 0.47525484003715535, 0.37845934883934684, 0.35325777167774697, 0.4763432908647238, 0.18941100564626978, 0.23853527246002126, 0.27277355193056574, 0.5556171757583562, 0.19481513110659687, 0.7460207524242459, 0.12627308236197843, 0.2115813466591615, 0.4773837842994688, 0.22238536240250728, 0.1978655273089749, 0.32057959349203036, 0.1601330373243487, 0.6256605001243821, 0.34062746964654456, 0.5899158924001677, 0.1273375405407705, 0.6866376712310945, 0.3812864953771038, 0.07918534602430627, 0.10510921928053807, 0.052405178286905496, 0.29010285216427345, 0.5802968836962079, 0.4475494904811408, 0.33107045093633036, 0.6046547135519548, 0.33132995382553565, 0.3391582818855403, 0.37109937806185267, 0.18876467901964422, 0.03244681540368277, 0.6531311156123596, 0.18281848038190407, 0.06840545126676123, 0.23876166598551407, 0.5602062902528231, 0.05478334190217349, 0.18965009362393503, 0.502081053312289, 0.0945975060483667, 0.24937367783354814, 0.14040338921272166, 0.09582424632391484, 0.4879833184669665, 0.07536550594022651, 0.37763546052463404, 0.20240400638142053, 0.06234715971662652, 0.1729504208160284, 0.2536573606029918, 0.1491704939138675, 0.47224603889779837, 0.20734784509414073, 0.1656619584420439, 0.20263687678412212, 0.4576701693643329, 0.3746187330143109, 0.06578487521364562, 0.09359041291034786, 0.15714155813810793, 0.43198081216185935, 0.17693664965610134, 0.14200602748771296, 0.16878839641400256, 0.11131318694256087, 0.43040972974554736, 0.12494266711040569, 0.5286591337585229, 0.3917329141436472, 0.14284790216410748, 0.29931895876037384, 0.3998656181534954, 0.13198036366642862, 0.2166851793268345, 0.164669749255824, 0.3116999397838065, 0.5702002297218003, 0.2867818412254799, 0.05809024612643199, 0.0701620515557333, 0.10493669218879953, 0.03474255021640338, 0.14069518845012563, 0.7697788668098057, 0.44513161239284327, 0.12104291767226882, 0.2823656727566666, 0.28640273091276736, 0.09904459769556595, 0.10889384421684001, 0.1978655273089749, 0.6326587477498924, 0.0766186874204361, 0.07300117689776386, 0.3978521493117628, 0.7293533971641823, 0.24040337450518035, 0.46827469198568006, 0.03737110954461231, 0.48112847828662497, 0.5755848065786346, 0.12151472907643468, 0.332302417201758, 0.3208349144509022, 0.13406270144296106, 0.47820199098358873, 0.024219732643774528, 0.7923035912680444, 0.3099424932714111, 0.8494816644677875, 0.15230116664989468, 0.8795672599938588, 0.34536882843285344, 0.587897812361327, 0.3660303223369904, 0.3074082248441362, 0.1925553058603695, 0.1582957933341015, 0.5297945963993664, 0.1892543681582496, 0.06574637766643598, 0.03286461121245521, 0.6223124217546917, 0.48666930315350876, 0.17200815643270417, 0.27042696199957883, 0.16010429726024444, 0.25291734909108765, 0.22778758435893687, 0.6055190518965303, 0.41989528411161425, 0.2865861541738164, 0.17344095530188786, 0.4163761941495938, 0.24610426408478792, 0.029106329843254564, 0.5849270471051293, 0.09607886499379148, 0.4890296174547498, 0.11193395874659995, 0.3667485749721523, 0.29672938182784603, 0.13696827462710404, 0.03986507081677082, 0.41542023534722683, 0.1642424989032959, 0.041559354155004224, 0.1266666793707928, 0.5259198205822933, 0.42123490919744344, 0.6147437654518444, 0.42849246998341506, 0.04874684240881699, 0.16870816563337898, 0.35179373534084035, 0.4552463954734379, 0.1543174595222413, 0.4641274821418986, 0.1106599594415556, 0.40441066041397966, 0.05916303638108533, 0.24194101851814365, 0.5755848065786346, 0.23631147082452741, 0.04679471849088612, 0.33132995382553565, 0.6031606095022326, 0.16900214819844117, 0.9322526967181247, 0.1065938389205352, 0.0540586741766943, 0.14920224829950646, 0.03054451782098533, 0.13595064656866984, 0.15908339514281045, 0.09402391562754642, 0.27219479721363327, 0.10477531970828624, 0.6046547135519548, 0.04412971358840656, 0.0821245873848182, 0.24953715645213048, 0.24311299470472425, 0.679537413518331, 0.02875041056121841, 0.2874129658970298, 0.17131102264191878, 0.07042427222914205, 0.1577516063520068, 0.39934634677258996, 0.42249259173992826, 0.24940231538328683, 0.46827469198568006, 0.040988937643475554, 0.034828704291737345, 0.26663563965858417, 0.22421743312747255, 0.10716094829621758, 0.7421831263598226, 0.4644511163280224, 0.1591307416719686, 0.21502194578256428, 0.12883185373794437, 0.15520095945599266, 0.04280666734842442, 0.06928764484923078, 0.3578757504587543, 0.0760792945579073, 0.06637805380770656, 0.5755848065786346, 0.4326356954473739, 0.16985579355455038, 0.47152805642545803, 0.11644579282256762, 0.11790522998710073, 0.5438286352264949, 0.41561805514360906, 0.050606352251634235, 0.21836830194439782, 0.22298545275517268, 0.1504846162366139, 0.16819644397314482, 0.47796113776613436, 0.14100197907825862, 0.7878397890034206, 0.12176963827920351, 0.09814942480303201, 0.23162396036129984, 0.04400104962869911, 0.061588508633294015, 0.2774601068082493, 0.40816383821078206, 0.14036214651023216, 0.11837607594274324, 0.0703155477214753, 0.17002415827487982, 0.24611532014486182, 0.06874641727313702, 0.30975746960573625, 0.07004288447243323, 0.6453829176356538, 0.3880412370469972, 0.10205495289732236, 0.12171087020281346, 0.38550692709735157, 0.4398162761337091, 0.5769741243450848, 0.48842976274850136, 0.3866799681687785, 0.17129518728202664, 0.5711206597512044, 0.4456070955069118, 0.4585850027539752, 0.25462747480751524, 0.34771016550763867, 0.35548618548401445, 0.07878090041588082, 0.3008706318705062, 0.08117751180329491, 0.055511805197920094, 0.1600174453683395, 0.35597309965685686, 0.5473978930443646, 0.3321771897262046, 0.14643302530661162, 0.7653011157176768, 0.24188431843396252, 0.16704799028757666, 0.41136103198090634, 0.5749869949413896, 0.709238838470871, 0.09340318303147321, 0.602429869503323, 0.04154705947390969, 0.7519582179986716, 0.15993940416551844, 0.04372375151311325, 0.4076899811241429, 0.4644511163280224, 0.3133137248525114, 0.24628490675063597, 0.06972977174174444, 0.15949948541388637, 0.2241543425141257, 0.1729876202034616, 0.07290025122558275, 0.1220000714032804, 0.36493953208423235, 0.09420126302076737, 0.026726938234992392, 0.7199273032686843, 0.4606762448039463, 0.04906818437448113, 0.19446415942665518, 0.14876853598344464, 0.3247816953453747, 0.023320858692869595, 0.7310618090422621, 0.48944479260603346, 0.20357574295749958, 0.0840537250624015, 0.5368744051465595, 0.21101467800102214, 0.46682279298460017, 0.3749869638443927, 0.46592999202179275, 0.10188412989688433, 0.15751976448865512], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"volatile.acidity\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"volatile.acidity\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}}, {\"id\": \"All_citric.acid\", \"params\": {\"data\": [{\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Reference<br>citric.acid=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [0.32, 0.24, 0.36, 0.24, 0.27, 0.21, 0.3, 0.46, 0.34, 0.26, 0.4, 0.21, 0.26, 0.33, 0.24, 0.47, 0.29, 0.76, 0.2, 0.29, 0.28, 0.27, 0.28, 0.36, 0.49, 0.27, 0.3, 0.49, 0.33, 0.48, 0.49, 0.32, 0.28, 0.34, 0.36, 0.44, 0.31, 0.31, 0.22, 0.39, 0.26, 0.49, 0.37, 0.26, 0.26, 0.32, 0.38, 0.19, 0.53, 0.3, 0.29, 0.29, 0.26, 0.29, 0.49, 0.28, 0.36, 0.38, 0.24, 0.32, 0.42, 0.23, 0.74, 0.44, 0.66, 0.13, 0.28, 0.3, 0.26, 0.36, 0.35, 0.24, 0.28, 0.68, 0.35, 0.29, 0.46, 0.28, 0.1, 0.35, 0.24, 0.34, 0.3, 0.45, 0.33, 0.34, 0.29, 0.31, 0.31, 0.41, 0.28, 0.28, 0.38, 0.4, 0.29, 0.25, 0.29, 0.28, 0.25, 0.65, 0.34, 0.36, 0.46, 0.34, 0.3, 0.32, 0.26, 0.49, 0.33, 0.02, 0.33, 0.28, 0.32, 0.29, 0.27, 0.32, 0.25, 0.36, 0.35, 0.46, 0.3, 0.49, 0.34, 0.31, 0.22, 0.02, 0.01, 0.5, 0.36, 0.0, 0.33, 0.18, 0.4, 0.32, 0.43, 0.54, 0.4, 0.02, 0.2, 0.24, 0.37, 0.31, 0.32, 0.34, 0.41, 0.43, 0.46, 0.27, 0.24, 0.32, 0.28, 0.59, 0.25, 0.26, 0.3, 0.5, 0.28, 0.35, 0.26, 0.38, 0.29, 0.27, 0.36, 0.25, 0.2, 0.34, 0.3, 0.21, 0.58, 0.04, 0.42, 0.37, 0.46, 0.28, 0.14, 0.09, 0.04, 0.21, 0.24, 0.1, 0.29, 0.49, 0.35, 0.3, 0.16, 0.29, 0.33, 0.48, 0.34, 0.31, 0.29, 0.0, 0.14, 0.05, 0.02, 0.34, 0.16, 0.32, 0.26, 0.48, 0.49, 0.27, 0.49, 0.12, 0.26, 0.37, 0.34, 0.49, 0.27, 0.43, 0.49, 0.2, 0.34, 0.32, 0.27, 0.26, 0.29, 0.49, 0.31, 0.32, 0.32, 0.49, 0.26, 0.4, 0.6, 0.37, 0.34, 0.4, 0.31, 0.29, 0.32, 0.21, 0.0, 0.28, 0.28, 0.21, 0.36, 0.41, 0.42, 0.34, 0.33, 0.39, 1.0, 0.44, 0.12, 0.32, 0.31, 0.27, 0.4, 0.33, 0.42, 0.3, 0.43, 0.35, 0.37, 0.28, 0.31, 0.14, 0.49, 0.39, 0.34, 0.49, 0.37, 0.44, 0.35, 0.32, 0.37, 0.57, 0.06, 0.34, 0.36, 0.08, 0.31, 0.3, 0.26, 0.26, 0.28, 0.41, 0.0, 0.79, 0.36, 0.44, 0.32, 0.3, 0.39, 0.42, 0.25, 0.28, 0.08, 0.39, 0.31, 0.3, 0.48, 0.24, 0.41, 0.25, 0.0, 0.12, 0.36, 0.38, 0.02, 0.24, 0.3, 0.26, 0.33, 0.46, 0.26, 0.33, 0.39, 0.47, 0.3, 0.34, 0.13, 0.36, 0.36, 0.62, 0.31, 0.3, 0.27, 0.27, 0.27, 0.38, 0.31, 0.3, 0.29, 0.02, 0.22, 0.39, 0.49, 0.27, 0.28, 0.33, 0.44, 0.57, 0.36, 0.31, 0.33, 0.33, 0.21, 0.28, 0.28, 0.45, 0.36, 0.26, 0.13, 0.49, 0.32, 0.09, 0.0, 0.36, 0.29, 0.41, 0.28, 0.3, 0.3, 0.4, 0.32, 0.33, 0.51, 0.36, 0.41, 0.19, 0.35, 0.44, 0.03, 0.27, 0.31, 0.27, 0.36, 0.26, 0.3, 0.39, 0.3, 0.23, 0.28, 0.26, 0.31, 0.0, 0.27, 0.34, 0.2, 0.32, 0.13, 0.36, 0.49, 0.29, 0.37, 0.31, 0.29, 0.37, 0.28, 0.24, 0.49, 0.3, 0.28, 0.47, 0.42, 0.28, 0.32, 0.28, 0.05, 0.21, 0.23, 0.33, 0.28, 0.32, 0.34, 0.42, 0.0, 0.49, 0.24, 0.3, 0.35, 0.3, 0.56, 0.45, 0.28, 0.35, 0.18, 0.2, 0.37, 0.31, 0.3, 0.28, 0.27, 0.18, 0.44, 0.3, 0.3, 0.36, 0.49, 0.41, 0.28, 0.31, 0.35, 0.1, 0.29, 0.01, 0.33, 0.49, 0.38, 0.74, 0.37, 0.45, 0.62, 0.33, 0.4, 0.26, 0.47, 0.28, 0.28, 0.24, 0.27, 0.35, 0.3, 0.76, 0.27, 0.01, 0.27, 0.27, 0.73, 0.29, 0.49, 0.25, 0.31, 0.02, 0.27, 0.36, 0.3, 0.51, 0.15, 0.49, 0.33, 0.32, 0.35, 0.29, 0.49, 0.34, 0.32, 0.44, 0.24, 0.48, 0.23, 0.24, 0.31, 0.39, 0.49, 0.3, 0.3, 0.05, 0.41, 0.23, 0.4, 0.41, 0.39, 0.42, 0.3, 0.35, 0.34, 0.29, 0.26, 0.31, 0.38, 0.38, 0.44, 0.33, 0.33, 0.49, 0.38, 0.27, 0.33, 0.31, 0.31, 0.5, 0.36, 0.37, 0.46, 0.44, 0.37, 0.35, 0.31, 0.25, 0.36, 0.37, 0.0, 0.3, 0.7, 0.36, 0.29, 0.33, 0.32, 0.25, 0.28, 0.21, 0.4, 0.06, 0.28, 0.29, 0.35, 0.35, 0.35, 0.29, 0.41, 0.49, 0.25, 0.25, 0.5, 0.49, 0.26, 0.29, 0.32, 0.24, 0.28, 0.4, 0.3, 0.02, 0.31, 0.36, 0.22, 0.36, 0.35, 0.34, 0.1, 0.24, 0.0, 0.32, 0.23, 0.49, 0.32, 0.32, 0.28, 0.41, 0.28, 0.37, 0.33, 0.31, 0.28, 0.3, 0.24, 0.34, 0.31, 0.35, 0.26, 0.0, 0.74, 0.01, 0.16, 0.32, 0.24, 0.32, 0.28, 0.32, 0.37, 0.29, 0.04, 0.29, 0.3, 0.16, 0.33, 0.23, 0.49, 0.38, 0.32, 0.26, 0.56, 0.66, 0.29, 0.29, 0.4, 0.27, 0.21, 0.35, 0.28, 0.24, 0.28, 0.38, 0.25, 0.49, 0.32, 0.18, 0.43, 0.33, 0.47, 0.04, 0.33, 0.27, 0.36, 0.25, 0.4, 0.33, 0.24, 0.35, 0.31, 0.31, 0.38, 0.49, 0.44, 0.4, 0.33, 0.26, 0.38, 0.22, 0.28, 0.34, 0.36], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Current<br>citric.acid=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [0.19, 0.38, 0.42, 0.21, 0.23, 0.27, 0.29, 0.25, 0.31, 0.12, 0.24, 0.35, 0.25, 0.23, 0.39, 0.34, 0.0, 0.31, 0.24, 0.34, 0.3, 0.31, 0.35, 0.39, 0.28, 0.49, 0.38, 0.28, 0.32, 0.3, 0.29, 0.27, 0.37, 0.34, 0.23, 0.99, 0.27, 0.37, 0.33, 0.02, 0.34, 0.33, 0.49, 0.3, 0.42, 0.09, 0.29, 0.18, 0.33, 0.37, 0.17, 0.39, 0.44, 0.41, 0.31, 0.44, 0.56, 0.0, 0.31, 0.68, 0.09, 0.26, 0.36, 0.27, 0.29, 0.33, 0.38, 0.33, 0.06, 0.34, 0.34, 0.28, 0.28, 0.24, 0.29, 0.19, 0.24, 0.28, 0.3, 0.49, 0.4, 0.33, 0.41, 0.27, 0.34, 0.29, 0.39, 0.24, 0.49, 0.34, 0.26, 0.49, 0.26, 0.28, 0.3, 0.28, 0.4, 1.23, 0.52, 0.08, 0.44, 0.27, 0.23, 0.24, 0.34, 0.09, 0.24, 0.32, 0.42, 0.29, 0.0, 0.28, 0.3, 0.27, 0.25, 0.53, 0.22, 0.27, 0.25, 0.39, 0.23, 0.36, 0.27, 0.47, 0.1, 0.46, 0.26, 0.46, 0.4, 0.35, 0.38, 0.34, 0.28, 0.27, 0.49, 0.58, 0.34, 0.38, 0.27, 0.29, 0.45, 0.03, 0.69, 0.37, 0.26, 0.33, 0.56, 0.32, 0.3, 0.34, 0.29, 0.33, 0.31, 0.61, 0.34, 0.35, 0.38, 0.32, 0.4, 0.39, 0.39, 0.24, 0.24, 0.91, 0.49, 0.36, 0.35, 0.05, 0.4, 0.81, 0.3, 0.4, 0.28, 0.4, 0.47, 0.3, 0.17, 0.38, 0.26, 0.39, 0.3, 0.25, 0.36, 0.49, 0.32, 0.15, 0.24, 0.24, 0.36, 0.33, 0.32, 0.26, 0.32, 0.45, 0.28, 0.28, 0.32, 0.22, 0.56, 0.26, 0.36, 0.25, 0.42, 0.52, 0.5, 0.3, 0.41, 0.73, 0.3, 0.41, 0.29, 0.34, 0.24, 0.45, 0.52, 0.29, 0.38, 0.24, 0.4, 0.4, 0.49, 0.29, 0.14, 0.42, 0.5, 0.2, 0.32, 0.3, 0.45, 0.26, 0.21, 0.4, 0.39, 0.36, 0.24, 0.38, 0.24, 0.18, 0.31, 0.49, 0.35, 0.32, 0.36, 0.34, 0.2, 0.5, 0.27, 0.31, 0.34, 0.11, 0.32, 0.28, 0.44, 0.29, 0.37, 0.26, 0.74, 0.3, 0.4, 0.31, 0.02, 0.31, 0.34, 0.19, 0.27, 0.36, 0.42, 0.2, 0.42, 0.46, 0.27, 0.32, 0.32, 0.59, 0.34, 0.16, 0.49, 0.32, 0.26, 0.1, 0.53, 0.27, 0.52, 0.15, 0.32, 0.49, 0.28, 0.31, 0.07, 0.27, 0.5, 0.44, 0.28, 0.26, 0.3, 0.3, 0.48, 0.3, 0.36, 0.32, 0.29, 0.44, 0.47, 0.26, 0.36, 0.46, 0.3, 0.35, 0.39, 0.3, 0.27, 0.31, 0.08, 0.61, 0.25, 0.29, 0.4, 0.34, 0.49, 0.33, 0.28, 0.27, 0.29, 0.49, 0.37, 0.34, 0.25, 0.52, 0.58, 0.3, 0.02, 0.32, 0.0, 0.32, 0.69, 0.3, 0.42, 0.28, 0.44, 0.3, 0.31, 0.33, 0.49, 0.0, 0.08, 0.28, 0.3, 0.38, 0.49, 0.27, 0.49, 0.38, 0.32, 0.61, 0.22, 0.31, 0.25, 0.26, 0.38, 0.08, 0.29, 0.24, 0.49, 0.46, 0.43, 0.49, 0.2, 0.49, 0.41, 0.33, 0.32, 0.29, 0.4, 0.38, 0.49, 0.09, 0.37, 0.29, 0.08, 0.0, 0.27, 0.43, 0.31, 0.42, 0.39, 0.41, 0.42, 0.31, 0.11, 0.24, 0.22, 0.24, 0.45, 0.39, 0.35, 0.02, 0.39, 0.54, 0.15, 0.37, 0.42, 0.24, 0.28, 0.71, 0.27, 0.33, 0.29, 0.26, 0.28, 0.27, 0.37, 0.36, 0.49, 0.71, 0.24, 0.12, 0.38, 0.34, 0.27, 0.24, 0.25, 0.36, 0.47, 0.18, 0.54, 0.26, 0.41, 0.22, 0.29, 0.5, 0.27, 0.32, 0.38, 0.33, 0.3, 0.25, 0.38, 0.36, 0.33, 0.3, 0.3, 0.01, 0.29, 0.23, 0.38, 0.45, 0.01, 0.2, 0.19, 0.18, 0.3, 0.08, 0.26, 0.21, 0.28, 0.2, 0.31, 0.28, 0.32, 0.32, 0.3, 0.32, 0.25, 0.29, 0.31, 0.29, 0.49, 0.3, 0.33, 0.0, 0.2, 0.36, 0.2, 0.27, 0.48, 0.3, 0.2, 0.39, 0.18, 0.34, 0.23, 0.34, 0.49, 0.45, 0.38, 0.49, 0.3, 0.29, 0.1, 0.0, 0.4, 0.4, 0.39, 0.33, 0.33, 0.47, 0.42, 0.31, 0.39, 0.55, 0.41, 0.38, 0.3, 0.18, 0.24, 0.2, 0.18, 0.24, 0.43, 0.43, 0.32, 0.34, 0.28, 0.29, 0.38, 0.31, 0.31, 0.53, 0.49, 0.37, 0.33, 0.2, 0.33, 0.26, 0.4, 0.27, 0.26, 0.36, 0.35, 0.53, 0.07, 0.26, 0.36, 0.53, 0.45, 0.22, 0.66, 0.33, 0.0, 0.29, 0.32, 0.3, 0.48, 0.28, 0.37, 0.32, 0.45, 0.4, 0.24, 0.3, 0.58, 0.3, 0.21, 0.37, 0.3, 0.19, 0.21, 0.32, 0.51, 0.27, 0.26, 0.33, 0.3, 0.42, 0.3, 0.24, 0.26, 0.3, 0.39, 0.27, 0.31, 0.26, 0.29, 1.0, 0.36, 0.31, 0.38, 0.28, 0.25, 0.35, 0.2, 0.51, 0.47, 0.22, 0.31, 0.5, 0.18, 0.45, 0.15, 0.14, 0.03, 0.32, 0.36, 0.23, 0.16, 0.49, 0.26, 0.36, 0.34, 0.3, 0.21, 0.58, 0.43, 0.26, 0.36, 0.27, 0.42, 0.49, 0.26, 0.35, 0.04, 0.4, 0.28, 0.28, 0.26, 0.25, 0.27, 0.31, 0.29, 0.54, 0.28, 0.26, 0.28, 0.28, 0.18, 0.26, 0.29, 0.38, 0.65, 0.32, 0.0, 0.68, 0.36, 0.34, 0.31, 0.35, 0.46, 0.24, 0.41, 0.24, 0.3, 0.49, 0.24, 0.22, 0.31, 0.37, 0.29, 0.34], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Reference<br>citric.acid=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [0.65, 0.47, 0.32, 0.08, 0.23, 0.0, 0.07, 0.52, 0.37, 0.23, 0.3, 0.49, 0.74, 0.35, 0.06, 0.2, 0.33, 0.09, 0.22, 0.0, 0.47, 0.26, 0.1, 0.3, 0.0, 0.04, 0.18, 0.32, 0.1, 0.32, 0.0, 0.27, 0.66, 0.24, 0.37, 0.49, 0.35, 0.37, 0.57, 0.36, 0.38, 0.6, 0.27, 0.14, 0.15, 0.24, 0.24, 0.27, 0.43, 0.15, 0.24, 0.22, 0.31, 0.49, 0.26, 0.49, 0.42, 0.25, 0.53, 0.52, 0.44, 0.35, 0.08, 0.24, 0.2, 0.3, 0.34, 0.21, 0.13, 0.31, 0.31, 0.65, 0.66, 0.33, 0.29, 0.07, 0.43, 0.4, 0.2, 0.36, 0.3, 0.37, 0.43, 0.2, 0.23, 0.31, 0.34, 0.17, 0.35, 0.1, 0.65, 0.24, 0.1, 0.66, 0.42, 0.52, 0.56, 0.46, 0.44, 0.35, 0.5, 0.31, 0.28, 0.34, 0.31, 0.68, 0.19, 0.37, 0.49, 0.24, 0.24, 0.33, 0.2, 0.27, 0.17, 0.36, 0.62, 0.23, 0.43, 0.26, 0.2, 0.28, 0.34, 0.55, 0.24, 0.24, 0.22, 0.22, 0.42, 0.19, 0.47, 0.22, 0.3, 0.51, 0.3, 0.2, 0.36, 0.23, 0.35, 0.21, 0.22, 0.4, 0.38, 0.18, 0.22, 0.42, 0.26, 0.34, 0.14, 0.48, 0.38, 0.0, 0.41, 0.09, 0.41, 0.0, 0.53, 0.24, 0.35, 0.07, 0.43, 0.24, 0.49, 0.23, 0.03, 0.39, 0.2, 0.23, 0.28, 0.36, 0.41, 0.18, 0.26, 0.64, 0.28, 0.28, 0.21, 0.28, 0.3, 0.1, 0.46, 0.0, 0.35, 0.34, 0.52, 0.16, 0.45, 0.24, 0.15, 0.37, 0.19, 0.3, 0.5, 0.04, 0.51, 0.0, 0.31, 0.31, 0.26, 0.21, 0.14, 0.5, 0.5, 0.43, 0.24, 0.26, 0.19, 0.41, 0.04, 0.37, 0.29, 0.28, 0.44, 0.74, 0.47, 0.13, 0.23, 0.06, 0.38, 0.48, 0.11, 0.27, 0.51, 0.41, 0.29, 0.34, 0.03, 0.47, 0.04, 0.0, 0.2, 0.54, 0.28, 0.25, 0.32, 0.21, 0.41, 0.25, 0.34, 0.56, 0.33, 0.39, 0.29, 0.32, 0.27, 0.5, 0.49, 0.24, 0.37, 0.33, 0.25, 0.26, 0.66, 0.03, 0.34, 0.51, 0.38, 0.24, 0.46, 0.63, 0.28, 0.22, 0.33, 0.57, 0.33, 0.3, 0.24, 0.22, 0.25, 0.2, 0.35, 0.3, 0.38, 0.26, 0.5, 0.39, 0.12, 0.61, 0.19, 0.13, 0.24, 0.21, 0.32, 0.07, 0.24, 0.2, 0.47, 0.3, 0.27, 0.22, 0.49, 0.55, 0.22, 0.11, 0.4, 0.26, 0.23, 0.55, 0.58, 0.2, 0.0, 0.4, 0.05, 0.33, 0.28, 0.35, 0.24, 0.16, 0.59, 0.21, 0.48, 0.2, 0.21, 0.45, 0.49, 0.37, 0.56, 0.31, 0.44, 0.14, 0.46, 0.47, 0.2, 0.24, 0.36, 0.25, 0.65, 0.54, 0.22, 0.17, 0.4, 0.35, 0.35, 0.4, 0.33, 0.24, 0.16, 0.46, 0.0, 0.46, 0.49, 0.29, 0.3, 0.22, 0.27, 0.01, 0.18, 0.49, 0.18, 0.2, 0.29, 0.03, 0.7, 0.09, 0.42], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Current<br>citric.acid=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [0.49, 0.12, 0.36, 0.29, 0.4, 0.4, 0.18, 0.04, 0.24, 0.65, 0.25, 0.39, 0.4, 0.26, 0.45, 0.36, 0.32, 0.49, 0.34, 0.07, 0.39, 0.13, 0.36, 0.64, 0.37, 0.31, 0.3, 0.23, 0.29, 0.74, 0.79, 0.2, 0.0, 0.17, 0.33, 0.21, 0.32, 0.11, 0.19, 0.06, 0.29, 0.2, 0.74, 0.29, 0.32, 0.25, 0.24, 0.25, 0.29, 0.35, 0.54, 0.26, 0.49, 0.22, 0.1, 0.23, 0.01, 0.49, 0.29, 0.2, 0.49, 0.34, 0.18, 0.4, 0.21, 0.06, 0.59, 0.0, 0.0, 0.03, 0.02, 0.25, 0.14, 0.26, 0.35, 0.28, 0.46, 0.52, 0.21, 0.3, 0.34, 0.18, 0.2, 0.33, 0.49, 0.27, 0.3, 0.34, 0.13, 0.36, 0.49, 0.26, 0.41, 0.42, 0.01, 0.0, 0.49, 0.19, 0.08, 0.55, 0.45, 0.32, 0.36, 0.11, 0.32, 0.09, 0.04, 0.0, 0.26, 0.41, 0.06, 0.5, 0.02, 0.29, 0.28, 0.34, 0.22, 0.24, 0.45, 0.08, 0.2, 0.28, 0.26, 0.17, 0.13, 0.18, 0.32, 0.38, 0.13, 0.37, 0.41, 0.32, 0.42, 0.49, 0.28, 0.62, 0.24, 0.17, 0.2, 0.2, 0.39, 0.49, 0.33, 0.42, 0.44, 0.28, 0.39, 0.23, 0.26, 0.23, 0.0, 0.22, 0.42, 0.19, 0.27, 0.24, 0.25, 0.44, 0.22, 0.42, 0.36, 0.47, 0.35, 0.48, 0.08, 0.26, 0.29, 0.46, 0.34, 0.38, 0.38, 0.32, 0.26, 0.28, 0.21, 0.0, 0.24, 0.35, 0.27, 0.35, 0.36, 0.23, 0.49, 0.1, 0.34, 0.32, 0.3, 0.22, 0.49, 0.22, 0.03, 0.46, 0.3, 0.28, 0.62, 0.21, 0.27, 0.1, 0.39, 0.3, 0.02, 0.26, 0.2, 0.4, 0.28, 0.36, 0.42, 0.59, 0.16, 0.69, 0.49, 0.23, 0.08, 0.4, 0.49, 0.24, 0.28, 0.33, 0.86, 0.24, 0.56, 0.25, 0.43, 0.41, 0.37, 0.14, 0.49, 0.29, 0.34, 0.34, 0.2, 0.34, 0.25, 0.35, 0.11, 0.48, 0.33, 0.31, 0.42, 0.33, 0.18, 0.02, 0.39, 0.32, 0.33, 0.12, 0.37, 0.3, 0.48, 0.01, 0.31, 0.2, 0.32, 0.62, 0.25, 0.36, 0.32, 0.23, 0.23, 0.33, 0.14, 0.22, 0.74, 0.74, 0.33, 0.36, 0.24, 0.38, 0.34, 0.44, 0.31, 0.12, 0.74, 0.42, 0.49, 0.25, 0.26, 0.34, 0.07, 0.47, 0.1, 0.25, 0.38, 0.0, 0.18, 0.37, 0.3, 0.26, 0.49, 0.38, 0.35, 0.07, 0.24, 0.06, 0.33, 0.39, 0.16, 0.38, 0.44, 0.39, 0.28, 0.65, 0.54, 0.56, 0.24, 0.06, 0.48, 0.29, 0.46, 0.26, 0.18, 0.19, 0.44, 0.41, 0.33, 0.74, 0.26, 0.49, 0.29, 0.1, 0.68, 0.08, 0.24, 0.27, 0.13, 0.53, 0.2, 0.49, 0.45, 0.14, 0.06, 0.29, 0.39, 0.4, 0.21, 0.41, 0.28, 0.04, 0.25, 0.32, 0.15, 0.49, 0.25, 0.27, 0.49, 0.3, 0.41, 0.49, 0.25, 0.4, 0.28, 0.3], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Reference\", \"x\": 0.245, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Current\", \"x\": 0.755, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"barmode\": \"overlay\", \"legend\": {\"title\": {\"text\": \"target\"}, \"tracegroupgap\": 0}, \"margin\": {\"t\": 60}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.49], \"title\": {\"text\": \"citric.acid\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.51, 1.0], \"matches\": \"x\", \"title\": {\"text\": \"citric.acid\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"count\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}}}}, {\"id\": \"citric.acid_good\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (ref)\", \"type\": \"scatter\", \"x\": [0.32, 0.24, 0.36, 0.24, 0.27, 0.21, 0.3, 0.46, 0.34, 0.26, 0.4, 0.21, 0.26, 0.33, 0.24, 0.47, 0.29, 0.76, 0.2, 0.29, 0.28, 0.27, 0.28, 0.36, 0.49, 0.27, 0.3, 0.49, 0.33, 0.48, 0.49, 0.32, 0.28, 0.34, 0.36, 0.44, 0.31, 0.31, 0.22, 0.39, 0.26, 0.49, 0.37, 0.26, 0.26, 0.32, 0.38, 0.19, 0.53, 0.3, 0.29, 0.29, 0.26, 0.29, 0.49, 0.28, 0.36, 0.38, 0.24, 0.32, 0.42, 0.23, 0.74, 0.44, 0.66, 0.13, 0.28, 0.3, 0.26, 0.36, 0.35, 0.24, 0.28, 0.68, 0.35, 0.29, 0.46, 0.28, 0.1, 0.35, 0.24, 0.34, 0.3, 0.45, 0.33, 0.34, 0.29, 0.31, 0.31, 0.41, 0.28, 0.28, 0.38, 0.4, 0.29, 0.25, 0.29, 0.28, 0.25, 0.65, 0.34, 0.36, 0.46, 0.34, 0.3, 0.32, 0.26, 0.49, 0.33, 0.02, 0.33, 0.28, 0.32, 0.29, 0.27, 0.32, 0.25, 0.36, 0.35, 0.46, 0.3, 0.49, 0.34, 0.31, 0.22, 0.02, 0.01, 0.5, 0.36, 0.0, 0.33, 0.18, 0.4, 0.32, 0.43, 0.54, 0.4, 0.02, 0.2, 0.24, 0.37, 0.31, 0.32, 0.34, 0.41, 0.43, 0.46, 0.27, 0.24, 0.32, 0.28, 0.59, 0.25, 0.26, 0.3, 0.5, 0.28, 0.35, 0.26, 0.38, 0.29, 0.27, 0.36, 0.25, 0.2, 0.34, 0.3, 0.21, 0.58, 0.04, 0.42, 0.37, 0.46, 0.28, 0.14, 0.09, 0.04, 0.21, 0.24, 0.1, 0.29, 0.49, 0.35, 0.3, 0.16, 0.29, 0.33, 0.48, 0.34, 0.31, 0.29, 0.0, 0.14, 0.05, 0.02, 0.34, 0.16, 0.32, 0.26, 0.48, 0.49, 0.27, 0.49, 0.12, 0.26, 0.37, 0.34, 0.49, 0.27, 0.43, 0.49, 0.2, 0.34, 0.32, 0.27, 0.26, 0.29, 0.49, 0.31, 0.32, 0.32, 0.49, 0.26, 0.4, 0.6, 0.37, 0.34, 0.4, 0.31, 0.29, 0.32, 0.21, 0.0, 0.28, 0.28, 0.21, 0.36, 0.41, 0.42, 0.34, 0.33, 0.39, 1.0, 0.44, 0.12, 0.32, 0.31, 0.27, 0.4, 0.33, 0.42, 0.3, 0.43, 0.35, 0.37, 0.28, 0.31, 0.14, 0.49, 0.39, 0.34, 0.49, 0.37, 0.44, 0.35, 0.32, 0.37, 0.57, 0.06, 0.34, 0.36, 0.08, 0.31, 0.3, 0.26, 0.26, 0.28, 0.41, 0.0, 0.79, 0.36, 0.44, 0.32, 0.3, 0.39, 0.42, 0.25, 0.28, 0.08, 0.39, 0.31, 0.3, 0.48, 0.24, 0.41, 0.25, 0.0, 0.12, 0.36, 0.38, 0.02, 0.24, 0.3, 0.26, 0.33, 0.46, 0.26, 0.33, 0.39, 0.47, 0.3, 0.34, 0.13, 0.36, 0.36, 0.62, 0.31, 0.3, 0.27, 0.27, 0.27, 0.38, 0.31, 0.3, 0.29, 0.02, 0.22, 0.39, 0.49, 0.27, 0.28, 0.33, 0.44, 0.57, 0.36, 0.31, 0.33, 0.33, 0.21, 0.28, 0.28, 0.45, 0.36, 0.26, 0.13, 0.49, 0.32, 0.09, 0.0, 0.36, 0.29, 0.41, 0.28, 0.3, 0.3, 0.4, 0.32, 0.33, 0.51, 0.36, 0.41, 0.19, 0.35, 0.44, 0.03, 0.27, 0.31, 0.27, 0.36, 0.26, 0.3, 0.39, 0.3, 0.23, 0.28, 0.26, 0.31, 0.0, 0.27, 0.34, 0.2, 0.32, 0.13, 0.36, 0.49, 0.29, 0.37, 0.31, 0.29, 0.37, 0.28, 0.24, 0.49, 0.3, 0.28, 0.47, 0.42, 0.28, 0.32, 0.28, 0.05, 0.21, 0.23, 0.33, 0.28, 0.32, 0.34, 0.42, 0.0, 0.49, 0.24, 0.3, 0.35, 0.3, 0.56, 0.45, 0.28, 0.35, 0.18, 0.2, 0.37, 0.31, 0.3, 0.28, 0.27, 0.18, 0.44, 0.3, 0.3, 0.36, 0.49, 0.41, 0.28, 0.31, 0.35, 0.1, 0.29, 0.01, 0.33, 0.49, 0.38, 0.74, 0.37, 0.45, 0.62, 0.33, 0.4, 0.26, 0.47, 0.28, 0.28, 0.24, 0.27, 0.35, 0.3, 0.76, 0.27, 0.01, 0.27, 0.27, 0.73, 0.29, 0.49, 0.25, 0.31, 0.02, 0.27, 0.36, 0.3, 0.51, 0.15, 0.49, 0.33, 0.32, 0.35, 0.29, 0.49, 0.34, 0.32, 0.44, 0.24, 0.48, 0.23, 0.24, 0.31, 0.39, 0.49, 0.3, 0.3, 0.05, 0.41, 0.23, 0.4, 0.41, 0.39, 0.42, 0.3, 0.35, 0.34, 0.29, 0.26, 0.31, 0.38, 0.38, 0.44, 0.33, 0.33, 0.49, 0.38, 0.27, 0.33, 0.31, 0.31, 0.5, 0.36, 0.37, 0.46, 0.44, 0.37, 0.35, 0.31, 0.25, 0.36, 0.37, 0.0, 0.3, 0.7, 0.36, 0.29, 0.33, 0.32, 0.25, 0.28, 0.21, 0.4, 0.06, 0.28, 0.29, 0.35, 0.35, 0.35, 0.29, 0.41, 0.49, 0.25, 0.25, 0.5, 0.49, 0.26, 0.29, 0.32, 0.24, 0.28, 0.4, 0.3, 0.02, 0.31, 0.36, 0.22, 0.36, 0.35, 0.34, 0.1, 0.24, 0.0, 0.32, 0.23, 0.49, 0.32, 0.32, 0.28, 0.41, 0.28, 0.37, 0.33, 0.31, 0.28, 0.3, 0.24, 0.34, 0.31, 0.35, 0.26, 0.0, 0.74, 0.01, 0.16, 0.32, 0.24, 0.32, 0.28, 0.32, 0.37, 0.29, 0.04, 0.29, 0.3, 0.16, 0.33, 0.23, 0.49, 0.38, 0.32, 0.26, 0.56, 0.66, 0.29, 0.29, 0.4, 0.27, 0.21, 0.35, 0.28, 0.24, 0.28, 0.38, 0.25, 0.49, 0.32, 0.18, 0.43, 0.33, 0.47, 0.04, 0.33, 0.27, 0.36, 0.25, 0.4, 0.33, 0.24, 0.35, 0.31, 0.31, 0.38, 0.49, 0.44, 0.4, 0.33, 0.26, 0.38, 0.22, 0.28, 0.34, 0.36], \"xaxis\": \"x\", \"y\": [0.8156061324462894, 0.42491310922683634, 0.8867827646463432, 0.8014995238430205, 0.30499958310650876, 0.5817355832705369, 0.959171062334887, 0.7854416128369749, 0.9085690698200813, 0.8998600376511439, 0.6341165000693628, 0.412102187638673, 0.7643629411050379, 0.4710001938005606, 0.40182653035141874, 0.40438056362905367, 0.8870480016118494, 0.3650667978415713, 0.9064321709292111, 0.9327245345966092, 0.6458420185168736, 0.8821841129047617, 0.6704018506542557, 0.7655671181822064, 0.8616986618932058, 0.48774537944210006, 0.9637355036179479, 0.6794204065079696, 0.6044835155949141, 0.7867954023600708, 0.9137982268836646, 0.5867502063434873, 0.8048584290077971, 0.9718511071053526, 0.9627192884041744, 0.7978623718349598, 0.6091120966723917, 0.8943338178728011, 0.8853376735027229, 0.9045563504021151, 0.9264844632598176, 0.6342457655367447, 0.9414033426130164, 0.5636516403732365, 0.5172967922101196, 0.4836896337264441, 0.35199620689495453, 0.788779954566273, 0.9696552399248426, 0.772496554239754, 0.8132656157621138, 0.4539090261140653, 0.9333708926412786, 0.679765045723866, 0.48457442622955804, 0.4248820606938153, 0.6737819616086004, 0.8780741425819777, 0.38340602447337646, 0.90634085684919, 0.5574014604752268, 0.6804147683859246, 0.9077110088845216, 0.7718472635729894, 0.4717552048891654, 0.22222808308441652, 0.8616549355667619, 0.705749071892896, 0.4699129352300819, 0.9680524782819758, 0.8891353183282249, 0.9466602521798594, 0.8553382520847058, 0.7430243903066251, 0.6616131862201935, 0.6919609500216202, 0.96565744679506, 0.913108907487878, 0.5395521774612226, 0.9026238558501023, 0.6550941529376255, 0.9757876320152292, 0.8833495792027257, 0.6666029765862381, 0.8504582120840628, 0.9320215595878566, 0.7639947574915884, 0.6085229656221847, 0.9557131606798471, 0.46184432615952054, 0.5642658412077981, 0.8815615400732472, 0.7189203536918151, 0.9301020530176726, 0.7341394174346678, 0.7759189559372703, 0.8448078654733812, 0.9012666081120407, 0.8926028620066223, 0.5287492720273277, 0.6874206920638863, 0.37408584674942635, 0.8348370105186077, 0.8697567261320243, 0.9175759024810304, 0.44644098895981, 0.8874384748400057, 0.7787567487441118, 0.9416122482572158, 0.3265229243180111, 0.9308095750950773, 0.42267134533232753, 0.43068181214270274, 0.8727308285810839, 0.7201611177732586, 0.8430904589044517, 0.8140617541555761, 0.9456747441572588, 0.6672663325862807, 0.8756470416862959, 0.518871521713375, 0.7040615347784164, 0.4957960231649875, 0.6250130361556073, 0.27413726132188326, 0.5193133578087885, 0.37656641690434584, 0.5808048103476511, 0.7917827117482167, 0.36569143480873245, 0.7232542293832885, 0.9785934574433302, 0.5715075300165849, 0.8182555969893297, 0.5448461144048058, 0.9491291995847589, 0.4833587957991669, 0.3189279754564957, 0.9184825510014271, 0.5524830505676419, 0.9600429304649183, 0.7818180966165994, 0.7962710274484252, 0.7569429870375118, 0.46184432615952054, 0.7641514270390748, 0.9486763575522457, 0.8086368705092697, 0.6784536879503494, 0.6877019790624462, 0.6082670858563528, 0.6053794617794684, 0.6319330693089359, 0.4982105707488519, 0.6787928880949093, 0.9231980717613485, 0.8831230955067948, 0.6845485656817341, 0.8799204262605215, 0.9164563829924386, 0.7819268199067826, 0.23469888428232324, 0.9492377841603665, 0.8826092272015389, 0.6360541596480074, 0.5184081252698399, 0.6400126753125241, 0.542646305979658, 0.4479501208302092, 0.7783171875827786, 0.7867712153112567, 0.5236605417423803, 0.6959846197179591, 0.7925023358445066, 0.6683189355892497, 0.18737025221649042, 0.42506327048176057, 0.7272596040941706, 0.7314191754306454, 0.4827891324637794, 0.6649341228620356, 0.9038332731164471, 0.9588917860646077, 0.8945194928389463, 0.49833043835950624, 0.7997712594855277, 0.8577935987172323, 0.7622736922026153, 0.8039391974899521, 0.7396811504731934, 0.8115340233127679, 0.801728888664367, 0.738451208106372, 0.5859674792922007, 0.1865203674848816, 0.8773430435604171, 0.36888329310067386, 0.8651817982269884, 0.9067615420962557, 0.8594983988587351, 0.7437750884018276, 0.9145224932934428, 0.9135679891815164, 0.8001832456898428, 0.6860977766129374, 0.9377826008632761, 0.9300369611912853, 0.6997062971069969, 0.5693182102579236, 0.3404656140239559, 0.7160591142088384, 0.7953146078011, 0.8869803873277935, 0.7639982823097876, 0.8681285227071118, 0.576868797021353, 0.93035102563313, 0.8375600281828176, 0.8279918435672958, 0.9266689436294401, 0.7559862346636359, 0.5099889666930224, 0.6914445842613687, 0.9651950326885705, 0.87851968214492, 0.8499702807396289, 0.4685752957996948, 0.7241546992314323, 0.7848147251007912, 0.7341394174346678, 0.7008877443692281, 0.340588975625529, 0.5013021766499856, 0.8321174529331695, 0.8818378666553491, 0.9176909075187759, 0.8634678749265305, 0.7436082905772717, 0.9343776659412377, 0.7668809937296346, 0.6243383802582345, 0.5332560471205093, 0.6907315465649003, 0.16626803588025432, 0.1668542888532837, 0.7408943843163458, 0.5221312328975666, 0.7457559475413279, 0.46389636934606376, 0.9292627865919654, 0.5268311186840582, 0.4244151934213653, 0.643310536612302, 0.8577438313980266, 0.7816208399762355, 0.8553382520847058, 0.7010035672814305, 0.5242572272016158, 0.9187320011579697, 0.8703498177621264, 0.6713045345576062, 0.9137982268836646, 0.8614414457916845, 0.9445662266054761, 0.8808216590199034, 0.7386378115490353, 0.8873009977622293, 0.9157094897337859, 0.6606038558129893, 0.9296803968514485, 0.8864322240790464, 0.5146720135715994, 0.8720710714485208, 0.9415427660945741, 0.9138701141498735, 0.6527559092576063, 0.8751970040938668, 0.9249766460056568, 0.801728888664367, 0.6575848465963361, 0.6934824043184128, 0.8619113960143526, 0.9419078024651042, 0.9591721389341828, 0.8397407150753159, 0.9084383840076588, 0.4963969309336195, 0.7359588175524252, 0.3531961907069324, 0.9279819479140234, 0.7752976919572294, 0.8665226278427577, 0.9515211055933231, 0.7314191754306454, 0.890886918514299, 0.3235491032739525, 0.3719939405423586, 0.6323804178173072, 0.8398006965792015, 0.8239469134189235, 0.8592101816891015, 0.7615002907198236, 0.8688259750909261, 0.8718104001390852, 0.5838074755684882, 0.8756470416862959, 0.901850575196968, 0.9451930143658351, 0.6253812669856891, 0.5890764576710766, 0.4921052500998711, 0.4862070578416567, 0.9170647663398394, 0.7035583451969506, 0.8476385889092957, 0.5603058978573646, 0.5810606890504925, 0.9088604673919816, 0.8903252600075929, 0.944267921154058, 0.9435968591480925, 0.938237366988842, 0.9357286047893738, 0.7961386682142712, 0.7840233885688647, 0.2513590507613302, 0.7389284097502917, 0.9053472250810051, 0.44438282424164377, 0.862281110352348, 0.8021059248496223, 0.9152740930046814, 0.643737358401971, 0.8540304955499701, 0.8613418170006786, 0.6911084183178322, 0.8848367871057808, 0.8387883096682573, 0.5942651630821018, 0.65691393717736, 0.6369979527510315, 0.8280658524313272, 0.9640736168216585, 0.6546311715671466, 0.5599819536107853, 0.48348053317652906, 0.7668016587569692, 0.03620763244300767, 0.7364400865449663, 0.37408584674942635, 0.8767503774172, 0.8743962287172513, 0.8751970040938668, 0.8833495792027257, 0.7091886355621774, 0.87006937054451, 0.7904001815220257, 0.8761418339280951, 0.8306834851111597, 0.7531715889012326, 0.38181207472529843, 0.6490458991820136, 0.9138057013338913, 0.9046222904886461, 0.17956061692355052, 0.7506163079023257, 0.8963285795381793, 0.8848361664653354, 0.9283037217377402, 0.45996158699034445, 0.7290858434196763, 0.8319094967702583, 0.6578018675312727, 0.18727567457681707, 0.8673410249845035, 0.9453298670648187, 0.9446538464906173, 0.19605573045952288, 0.6723831041639817, 0.3438281302059518, 0.37858973820495484, 0.6953170483296187, 0.21463507152544156, 0.26963792069965237, 0.3280912492037974, 0.8399932187801539, 0.420387898633768, 0.36522500752858966, 0.5810560693343539, 0.9306346767722963, 0.7167716539092029, 0.656736106921484, 0.5549139996760648, 0.6909161521388689, 0.591904263202073, 0.884703171197362, 0.866402281883595, 0.7582770814524421, 0.8990773411030794, 0.1818065866116437, 0.6222165686186035, 0.17261914235374884, 0.8156064679757086, 0.4851213943917703, 0.8871292211128762, 0.8398494053952754, 0.703270618172154, 0.6305543892506115, 0.7494149477175548, 0.1532408287022325, 0.6159732902773407, 0.738220551127759, 0.8354520044441791, 0.8536870432671441, 0.5751476712690671, 0.9077719201719568, 0.7878515691455199, 0.6672663325862807, 0.45293736875445273, 0.17058553029544155, 0.747933377844996, 0.8400163125056676, 0.4516778718827729, 0.6082670858563528, 0.8401843469141149, 0.7636885291754726, 0.789170795337903, 0.8128612802083497, 0.7522530659814418, 0.8086757686066508, 0.8356255123032285, 0.9241779635105248, 0.9674588597049086, 0.9368885694202199, 0.4990764491242286, 0.876561204324957, 0.554264192243629, 0.5967716244634195, 0.9060244606340249, 0.8401608718856799, 0.7329750583133859, 0.8021769878309102, 0.9316817655017511, 0.45488322534173153, 0.798578398438993, 0.7425236774748816, 0.5742682328784404, 0.4937681935814938, 0.8972164286692267, 0.8914273370768748, 0.9377613518261881, 0.8862258850530264, 0.8591757581361523, 0.7410678096850266, 0.6822336012657398, 0.9201658505843877, 0.6982578893131915, 0.5746709232170782, 0.7626532952948841, 0.7137703530889916, 0.7520971196461234, 0.4473853625959922, 0.7957460056304991, 0.4833174871501707, 0.8758467705785958, 0.4689303842787964, 0.6133612564737879, 0.8568681391705205, 0.6835133967314007, 0.9732070839986944, 0.21435716257549006, 0.5761668962420043, 0.4055433603128916, 0.3743394998756179, 0.9118635774953143, 0.964551884718591, 0.9306459334511011, 0.8424802355113449, 0.7739144871152517, 0.6872688771534424, 0.8590561833388345, 0.6714384475466295, 0.6408669500407106, 0.5203550269219845, 0.2856853969697174, 0.857760555506807, 0.9307094503226838, 0.6787928880949093, 0.8308635255795866, 0.29271374211533296, 0.6769315553524353, 0.23831547366416572, 0.5895099457120908, 0.8994675076574448, 0.8893400405584444, 0.8456825404777587, 0.5399612081435882, 0.6188649121485582, 0.9281492942813848, 0.7611740601422801, 0.46550237374781617, 0.8896861436466836, 0.9038901015569306, 0.5044440900554997, 0.9215480939667524, 0.6930273792518707, 0.8723244804196287, 0.5624338775604165, 0.9226297661236537, 0.8469231754225917, 0.9430557295321259, 0.9097116306258912, 0.5988707702267543, 0.3813853072548755, 0.8843832309478876, 0.9006952500629406, 0.918975987201669, 0.18997930334445084, 0.8923106748541326, 0.8461388699436441, 0.5973439234355874, 0.9544642924744549, 0.91770416680597, 0.9177239854204658, 0.17584552180125673, 0.9240099144459667, 0.48524948024905407, 0.8889685222180134, 0.5785503824403398, 0.7511953459672914, 0.6887596776945688, 0.6717539058356753, 0.7168761391602206, 0.7134478068952186, 0.834626350903405, 0.5715867980362679, 0.6588392688727011, 0.9488572786900573, 0.8920529250761863, 0.8891353183282249, 0.707981940789761, 0.926348680038428, 0.631489487929038, 0.7443856388661001, 0.9260754381930228, 0.9544642924744549, 0.8497401318990601, 0.5604010177433062, 0.8036334301115304, 0.7898153537185114, 0.8491431337122072, 0.6570881560807702, 0.8389599143569951, 0.7944137576415592, 0.8132668978866627, 0.44714680104169846, 0.7978021044641371, 0.41921696608658454, 0.38876183891604754, 0.9248463736054193, 0.4277915265084825, 0.6345107008491314, 0.8008942533173764, 0.5087430598332189, 0.9414938992689892, 0.6922115882765215, 0.8296175750175913, 0.8593339228153332, 0.8975141534758351, 0.5977126281557783, 0.9279478536756302, 0.6485770817571253, 0.8905823996589662, 0.9332072841984264, 0.9432461110830079, 0.9410120781436498, 0.6339696776630096, 0.7120962557761497, 0.5841709037351369, 0.5928970840420333, 0.9006589732900512, 0.936371533648048, 0.6907852379101131, 0.7675780198071424, 0.9444587893431046, 0.4702336163336472, 0.8925536722101626, 0.8158978708906081, 0.822780392485108, 0.8037335327290217, 0.8382351003285965, 0.8941557358589171, 0.4796498334522667, 0.926348680038428, 0.6842118015950474, 0.6463580983468415, 0.8292048071278182, 0.5834426687867836, 0.8419845362148763, 0.2431563391580561, 0.7763142135369961, 0.9390550746437164, 0.7774903237071782, 0.8141232663130791, 0.9444089886680379, 0.430401459478284, 0.9192677156927759, 0.8427595869840984, 0.87120858451521, 0.5693182102579236, 0.820012080301976, 0.58719119911586, 0.42769376643096113, 0.3542595869275313, 0.89579938191327, 0.8743523014696554, 0.7820497043505815, 0.5279069501129625, 0.8869579700149332, 0.45488774279476296, 0.8514781135508903, 0.8278297091497892, 0.663749097381813, 0.5132851713944618, 0.4906566565015208, 0.6415219885510332, 0.6991293681294938, 0.8150539074042624, 0.5800669536763935, 0.9583771200922359, 0.7366090055976814, 0.5747817696023392, 0.5315376696882942, 0.8074446941396305, 0.9038901015569306, 0.9087015650331977, 0.6697291810323083, 0.5800669536763935, 0.8807270543114014, 0.5135845984304893, 0.9352791850238339, 0.36120709973337456, 0.6206709330576408, 0.906286252315459, 0.7937202818717513], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [0.65, 0.47, 0.32, 0.08, 0.23, 0.0, 0.07, 0.52, 0.37, 0.23, 0.3, 0.49, 0.74, 0.35, 0.06, 0.2, 0.33, 0.09, 0.22, 0.0, 0.47, 0.26, 0.1, 0.3, 0.0, 0.04, 0.18, 0.32, 0.1, 0.32, 0.0, 0.27, 0.66, 0.24, 0.37, 0.49, 0.35, 0.37, 0.57, 0.36, 0.38, 0.6, 0.27, 0.14, 0.15, 0.24, 0.24, 0.27, 0.43, 0.15, 0.24, 0.22, 0.31, 0.49, 0.26, 0.49, 0.42, 0.25, 0.53, 0.52, 0.44, 0.35, 0.08, 0.24, 0.2, 0.3, 0.34, 0.21, 0.13, 0.31, 0.31, 0.65, 0.66, 0.33, 0.29, 0.07, 0.43, 0.4, 0.2, 0.36, 0.3, 0.37, 0.43, 0.2, 0.23, 0.31, 0.34, 0.17, 0.35, 0.1, 0.65, 0.24, 0.1, 0.66, 0.42, 0.52, 0.56, 0.46, 0.44, 0.35, 0.5, 0.31, 0.28, 0.34, 0.31, 0.68, 0.19, 0.37, 0.49, 0.24, 0.24, 0.33, 0.2, 0.27, 0.17, 0.36, 0.62, 0.23, 0.43, 0.26, 0.2, 0.28, 0.34, 0.55, 0.24, 0.24, 0.22, 0.22, 0.42, 0.19, 0.47, 0.22, 0.3, 0.51, 0.3, 0.2, 0.36, 0.23, 0.35, 0.21, 0.22, 0.4, 0.38, 0.18, 0.22, 0.42, 0.26, 0.34, 0.14, 0.48, 0.38, 0.0, 0.41, 0.09, 0.41, 0.0, 0.53, 0.24, 0.35, 0.07, 0.43, 0.24, 0.49, 0.23, 0.03, 0.39, 0.2, 0.23, 0.28, 0.36, 0.41, 0.18, 0.26, 0.64, 0.28, 0.28, 0.21, 0.28, 0.3, 0.1, 0.46, 0.0, 0.35, 0.34, 0.52, 0.16, 0.45, 0.24, 0.15, 0.37, 0.19, 0.3, 0.5, 0.04, 0.51, 0.0, 0.31, 0.31, 0.26, 0.21, 0.14, 0.5, 0.5, 0.43, 0.24, 0.26, 0.19, 0.41, 0.04, 0.37, 0.29, 0.28, 0.44, 0.74, 0.47, 0.13, 0.23, 0.06, 0.38, 0.48, 0.11, 0.27, 0.51, 0.41, 0.29, 0.34, 0.03, 0.47, 0.04, 0.0, 0.2, 0.54, 0.28, 0.25, 0.32, 0.21, 0.41, 0.25, 0.34, 0.56, 0.33, 0.39, 0.29, 0.32, 0.27, 0.5, 0.49, 0.24, 0.37, 0.33, 0.25, 0.26, 0.66, 0.03, 0.34, 0.51, 0.38, 0.24, 0.46, 0.63, 0.28, 0.22, 0.33, 0.57, 0.33, 0.3, 0.24, 0.22, 0.25, 0.2, 0.35, 0.3, 0.38, 0.26, 0.5, 0.39, 0.12, 0.61, 0.19, 0.13, 0.24, 0.21, 0.32, 0.07, 0.24, 0.2, 0.47, 0.3, 0.27, 0.22, 0.49, 0.55, 0.22, 0.11, 0.4, 0.26, 0.23, 0.55, 0.58, 0.2, 0.0, 0.4, 0.05, 0.33, 0.28, 0.35, 0.24, 0.16, 0.59, 0.21, 0.48, 0.2, 0.21, 0.45, 0.49, 0.37, 0.56, 0.31, 0.44, 0.14, 0.46, 0.47, 0.2, 0.24, 0.36, 0.25, 0.65, 0.54, 0.22, 0.17, 0.4, 0.35, 0.35, 0.4, 0.33, 0.24, 0.16, 0.46, 0.0, 0.46, 0.49, 0.29, 0.3, 0.22, 0.27, 0.01, 0.18, 0.49, 0.18, 0.2, 0.29, 0.03, 0.7, 0.09, 0.42], \"xaxis\": \"x\", \"y\": [0.2802292104526322, 0.9455194119275858, 0.4978743212349556, 0.5289145624519528, 0.28439238707197784, 0.2033309570226689, 0.27345747478543325, 0.8322873304845451, 0.389055896812549, 0.3675472469853882, 0.5781933746273124, 0.7401955299744071, 0.44969671697605845, 0.4367887814338696, 0.31593955341667695, 0.3775624358859999, 0.19282181046294666, 0.048451763306065584, 0.6005928650583868, 0.032225376113695775, 0.427412413738938, 0.23973251442015217, 0.13890126550157303, 0.8613925272127, 0.329663916828638, 0.19359965390713213, 0.6827271716759634, 0.1960905505555538, 0.08135735686643118, 0.39737240301928484, 0.13902987396822816, 0.6514166433739288, 0.6994753721471061, 0.7140886736258081, 0.5021795028970708, 0.48743245558712556, 0.5731139673640956, 0.8820820642542792, 0.559972149724866, 0.5061565591493914, 0.5066810377847554, 0.833805652807593, 0.6979972163580744, 0.3177574231538272, 0.13068190592986567, 0.758876109553896, 0.5681062961269688, 0.715544821914063, 0.762062625203523, 0.4464438677531786, 0.20995974230910305, 0.5262622410710028, 0.39442669669188163, 0.2537324982988368, 0.6775437642744659, 0.23876321589577687, 0.6369158982934647, 0.38960060362966165, 0.6034323722874255, 0.7769991715799629, 0.15199748354041337, 0.5641412449951732, 0.7590466800561823, 0.5969347905931296, 0.1048362779837843, 0.7217824369593382, 0.2662339163773806, 0.16472378978351135, 0.37760124376932414, 0.7071736299639594, 0.3436862995931572, 0.8384434752264291, 0.3635333644877426, 0.7813188949129265, 0.7279369976219869, 0.5641098847382463, 0.3863964747623771, 0.9209913370067284, 0.1477144681640183, 0.8809374658555192, 0.6533168894759348, 0.8873477284758582, 0.3697306267878623, 0.28319023347825867, 0.5203701741750857, 0.5523747693308857, 0.6387521731780509, 0.3881380695009739, 0.8487896327149285, 0.4636606453307818, 0.8384434752264291, 0.558266603669778, 0.21657231888677728, 0.3635333644877426, 0.5512671313974766, 0.5051039398599867, 0.5827915753039158, 0.49441682850108926, 0.47309171914705017, 0.6262595591688196, 0.5508242483721094, 0.47332791509789995, 0.7117569366896692, 0.3933786516273859, 0.16465066549244003, 0.7490394132223248, 0.769261050002088, 0.7431932405995126, 0.3141000916210982, 0.723735045552473, 0.6484132891031948, 0.688519894019609, 0.40496704226994307, 0.5803736122960511, 0.6327801522745691, 0.45115706990411364, 0.37268733756108086, 0.9009693101135351, 0.06496389958099598, 0.44431713201158524, 0.39960831974332744, 0.8662156944598043, 0.31018081106061823, 0.5339551117365043, 0.33311273919547707, 0.400132762133902, 0.8528754522806217, 0.14419347879543085, 0.11672350429510901, 0.44556702529145975, 0.6160120899414699, 0.13766892845409207, 0.5517204028384314, 0.5232178919035022, 0.35483403305733974, 0.4900213704561591, 0.8854578072659228, 0.43084122675663034, 0.7601186327653665, 0.14072030431570776, 0.6186690618327106, 0.5245054232921349, 0.7326259458716644, 0.5690781983520095, 0.4018508815425063, 0.24877469563805235, 0.7952501197393639, 0.8766221356386195, 0.303451532996695, 0.5357745481647883, 0.7096524147827454, 0.20877177283968149, 0.8635610141758273, 0.46736762313881036, 0.6061151992073851, 0.113015272873705, 0.40446014603085867, 0.6332606063976143, 0.648705381890928, 0.42186952587750404, 0.8047913565308571, 0.3017058309841093, 0.38406990132164637, 0.33494193042999065, 0.19929939967121216, 0.8624919783238055, 0.528785836409086, 0.43084122675663034, 0.47042159929499583, 0.5061565591493914, 0.5759491569657543, 0.8468794444363914, 0.20342296359496542, 0.5170831534483544, 0.3666753044655067, 0.6131723001375537, 0.4410646109528086, 0.6903416342484309, 0.3866428492574258, 0.4636606453307818, 0.4525459302795702, 0.03199256040434073, 0.7029629492254846, 0.2433141614541866, 0.548755973819273, 0.3775060302547258, 0.06593060991448157, 0.8745624549148976, 0.22931948662359403, 0.27267688907931714, 0.589328430619086, 0.8007160756317941, 0.5525637789187225, 0.5008522318356121, 0.4556212410144909, 0.17391722008742402, 0.43574637053357784, 0.3237440077649342, 0.6071692164257629, 0.6925152430641841, 0.592675381607996, 0.43854150134957587, 0.43854150134957587, 0.42437112972565305, 0.8061118855433299, 0.35195592295594336, 0.7605370065149419, 0.38898578429124253, 0.67510953655807, 0.872979709380305, 0.710510994258769, 0.720290290780972, 0.4820787970895852, 0.42019280799979697, 0.4304380754474639, 0.25285023254778977, 0.3238056884730761, 0.39471961640683584, 0.09510031985475974, 0.367046376808582, 0.21500793651835448, 0.8705359023101334, 0.6100742529031461, 0.6226449432624995, 0.7279369976219869, 0.3643494054700089, 0.09992017521484964, 0.41475515148757036, 0.6462260464983366, 0.14102909592513518, 0.48949585696458414, 0.5239520436918008, 0.6084413884537807, 0.5655473856702703, 0.9517420512476797, 0.7489379515982664, 0.4647937384849751, 0.7915321263825208, 0.44112279258530757, 0.5734340256727429, 0.6604471727860799, 0.4845203185458914, 0.6968730453869196, 0.5315374962198609, 0.8685951485887234, 0.6242442748350044, 0.2912097196987059, 0.7725938221565348, 0.2067629769731588, 0.30221725334927335, 0.13129342562285412, 0.6467789443522378, 0.6994753721471061, 0.11825382206919556, 0.41022417118631593, 0.4882665226122541, 0.7732287086973071, 0.25374762405010176, 0.49441682850108926, 0.3723877205427743, 0.652330313245635, 0.43667799883041203, 0.5964718913578133, 0.55172276504346, 0.24113559934961917, 0.8243980268882987, 0.7263843594269437, 0.43535214809021755, 0.8721122798612579, 0.18723914490145582, 0.6486906676970999, 0.11576704656818047, 0.4328241622975616, 0.491481212420291, 0.5264345378086769, 0.33856526784971647, 0.2967410926251248, 0.581398831228375, 0.5973776665460488, 0.6195406102170065, 0.37782717658841725, 0.323061133240968, 0.17420808473594895, 0.19634770547538957, 0.46492234760650425, 0.49613167963272686, 0.5812209036149294, 0.6057291775435286, 0.63414717387345, 0.5702687187355167, 0.8604975146328253, 0.6309022132706124, 0.48732991249542923, 0.6887148870948692, 0.41581945293096145, 0.5706760596351739, 0.4831274653996314, 0.06684727567316755, 0.49090643211649887, 0.15191610726090596, 0.2711405311223577, 0.7653618545702112, 0.09266565137124261, 0.4554350627407873, 0.19698919164573708, 0.6930185080649685, 0.5227537922811563, 0.50434568709929, 0.7082092780767422, 0.46058046365566996, 0.6735723234187477, 0.4285936050615775, 0.323061133240968, 0.5168500865319015, 0.6161307914674419, 0.23456444218973552, 0.3192004782541023, 0.21968945907811915, 0.5028183230931117, 0.43371621376298963, 0.6744209213341115, 0.5940260419772637, 0.13783310426722128, 0.5136444387530009, 0.5508647999875032, 0.4955911012838212, 0.9814394195009358, 0.8260225289794664, 0.17965956338109995, 0.46844896472597397, 0.6048119589659149, 0.3289160319090978, 0.2454606394453749, 0.7497022835596558, 0.683485355417811, 0.20995974230910305, 0.23504578258460665, 0.37175956099497537, 0.4875530438829156, 0.24982584224249993, 0.6282829625348888, 0.4520795162158371, 0.8200372413039435, 0.12832513643528837, 0.5299630655130737, 0.29552777318700446, 0.24021937552346023, 0.5429028773737552, 0.6311869746243346, 0.4145977043912777, 0.39329840463575844, 0.39070335653410526, 0.4286990948130573, 0.846836560604146, 0.6880850122626078], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (curr)\", \"type\": \"scatter\", \"x\": [0.19, 0.38, 0.42, 0.21, 0.23, 0.27, 0.29, 0.25, 0.31, 0.12, 0.24, 0.35, 0.25, 0.23, 0.39, 0.34, 0.0, 0.31, 0.24, 0.34, 0.3, 0.31, 0.35, 0.39, 0.28, 0.49, 0.38, 0.28, 0.32, 0.3, 0.29, 0.27, 0.37, 0.34, 0.23, 0.99, 0.27, 0.37, 0.33, 0.02, 0.34, 0.33, 0.49, 0.3, 0.42, 0.09, 0.29, 0.18, 0.33, 0.37, 0.17, 0.39, 0.44, 0.41, 0.31, 0.44, 0.56, 0.0, 0.31, 0.68, 0.09, 0.26, 0.36, 0.27, 0.29, 0.33, 0.38, 0.33, 0.06, 0.34, 0.34, 0.28, 0.28, 0.24, 0.29, 0.19, 0.24, 0.28, 0.3, 0.49, 0.4, 0.33, 0.41, 0.27, 0.34, 0.29, 0.39, 0.24, 0.49, 0.34, 0.26, 0.49, 0.26, 0.28, 0.3, 0.28, 0.4, 1.23, 0.52, 0.08, 0.44, 0.27, 0.23, 0.24, 0.34, 0.09, 0.24, 0.32, 0.42, 0.29, 0.0, 0.28, 0.3, 0.27, 0.25, 0.53, 0.22, 0.27, 0.25, 0.39, 0.23, 0.36, 0.27, 0.47, 0.1, 0.46, 0.26, 0.46, 0.4, 0.35, 0.38, 0.34, 0.28, 0.27, 0.49, 0.58, 0.34, 0.38, 0.27, 0.29, 0.45, 0.03, 0.69, 0.37, 0.26, 0.33, 0.56, 0.32, 0.3, 0.34, 0.29, 0.33, 0.31, 0.61, 0.34, 0.35, 0.38, 0.32, 0.4, 0.39, 0.39, 0.24, 0.24, 0.91, 0.49, 0.36, 0.35, 0.05, 0.4, 0.81, 0.3, 0.4, 0.28, 0.4, 0.47, 0.3, 0.17, 0.38, 0.26, 0.39, 0.3, 0.25, 0.36, 0.49, 0.32, 0.15, 0.24, 0.24, 0.36, 0.33, 0.32, 0.26, 0.32, 0.45, 0.28, 0.28, 0.32, 0.22, 0.56, 0.26, 0.36, 0.25, 0.42, 0.52, 0.5, 0.3, 0.41, 0.73, 0.3, 0.41, 0.29, 0.34, 0.24, 0.45, 0.52, 0.29, 0.38, 0.24, 0.4, 0.4, 0.49, 0.29, 0.14, 0.42, 0.5, 0.2, 0.32, 0.3, 0.45, 0.26, 0.21, 0.4, 0.39, 0.36, 0.24, 0.38, 0.24, 0.18, 0.31, 0.49, 0.35, 0.32, 0.36, 0.34, 0.2, 0.5, 0.27, 0.31, 0.34, 0.11, 0.32, 0.28, 0.44, 0.29, 0.37, 0.26, 0.74, 0.3, 0.4, 0.31, 0.02, 0.31, 0.34, 0.19, 0.27, 0.36, 0.42, 0.2, 0.42, 0.46, 0.27, 0.32, 0.32, 0.59, 0.34, 0.16, 0.49, 0.32, 0.26, 0.1, 0.53, 0.27, 0.52, 0.15, 0.32, 0.49, 0.28, 0.31, 0.07, 0.27, 0.5, 0.44, 0.28, 0.26, 0.3, 0.3, 0.48, 0.3, 0.36, 0.32, 0.29, 0.44, 0.47, 0.26, 0.36, 0.46, 0.3, 0.35, 0.39, 0.3, 0.27, 0.31, 0.08, 0.61, 0.25, 0.29, 0.4, 0.34, 0.49, 0.33, 0.28, 0.27, 0.29, 0.49, 0.37, 0.34, 0.25, 0.52, 0.58, 0.3, 0.02, 0.32, 0.0, 0.32, 0.69, 0.3, 0.42, 0.28, 0.44, 0.3, 0.31, 0.33, 0.49, 0.0, 0.08, 0.28, 0.3, 0.38, 0.49, 0.27, 0.49, 0.38, 0.32, 0.61, 0.22, 0.31, 0.25, 0.26, 0.38, 0.08, 0.29, 0.24, 0.49, 0.46, 0.43, 0.49, 0.2, 0.49, 0.41, 0.33, 0.32, 0.29, 0.4, 0.38, 0.49, 0.09, 0.37, 0.29, 0.08, 0.0, 0.27, 0.43, 0.31, 0.42, 0.39, 0.41, 0.42, 0.31, 0.11, 0.24, 0.22, 0.24, 0.45, 0.39, 0.35, 0.02, 0.39, 0.54, 0.15, 0.37, 0.42, 0.24, 0.28, 0.71, 0.27, 0.33, 0.29, 0.26, 0.28, 0.27, 0.37, 0.36, 0.49, 0.71, 0.24, 0.12, 0.38, 0.34, 0.27, 0.24, 0.25, 0.36, 0.47, 0.18, 0.54, 0.26, 0.41, 0.22, 0.29, 0.5, 0.27, 0.32, 0.38, 0.33, 0.3, 0.25, 0.38, 0.36, 0.33, 0.3, 0.3, 0.01, 0.29, 0.23, 0.38, 0.45, 0.01, 0.2, 0.19, 0.18, 0.3, 0.08, 0.26, 0.21, 0.28, 0.2, 0.31, 0.28, 0.32, 0.32, 0.3, 0.32, 0.25, 0.29, 0.31, 0.29, 0.49, 0.3, 0.33, 0.0, 0.2, 0.36, 0.2, 0.27, 0.48, 0.3, 0.2, 0.39, 0.18, 0.34, 0.23, 0.34, 0.49, 0.45, 0.38, 0.49, 0.3, 0.29, 0.1, 0.0, 0.4, 0.4, 0.39, 0.33, 0.33, 0.47, 0.42, 0.31, 0.39, 0.55, 0.41, 0.38, 0.3, 0.18, 0.24, 0.2, 0.18, 0.24, 0.43, 0.43, 0.32, 0.34, 0.28, 0.29, 0.38, 0.31, 0.31, 0.53, 0.49, 0.37, 0.33, 0.2, 0.33, 0.26, 0.4, 0.27, 0.26, 0.36, 0.35, 0.53, 0.07, 0.26, 0.36, 0.53, 0.45, 0.22, 0.66, 0.33, 0.0, 0.29, 0.32, 0.3, 0.48, 0.28, 0.37, 0.32, 0.45, 0.4, 0.24, 0.3, 0.58, 0.3, 0.21, 0.37, 0.3, 0.19, 0.21, 0.32, 0.51, 0.27, 0.26, 0.33, 0.3, 0.42, 0.3, 0.24, 0.26, 0.3, 0.39, 0.27, 0.31, 0.26, 0.29, 1.0, 0.36, 0.31, 0.38, 0.28, 0.25, 0.35, 0.2, 0.51, 0.47, 0.22, 0.31, 0.5, 0.18, 0.45, 0.15, 0.14, 0.03, 0.32, 0.36, 0.23, 0.16, 0.49, 0.26, 0.36, 0.34, 0.3, 0.21, 0.58, 0.43, 0.26, 0.36, 0.27, 0.42, 0.49, 0.26, 0.35, 0.04, 0.4, 0.28, 0.28, 0.26, 0.25, 0.27, 0.31, 0.29, 0.54, 0.28, 0.26, 0.28, 0.28, 0.18, 0.26, 0.29, 0.38, 0.65, 0.32, 0.0, 0.68, 0.36, 0.34, 0.31, 0.35, 0.46, 0.24, 0.41, 0.24, 0.3, 0.49, 0.24, 0.22, 0.31, 0.37, 0.29, 0.34], \"xaxis\": \"x2\", \"y\": [0.33396714643252134, 0.5044440900554997, 0.8874896900044845, 0.4686759077780351, 0.23831547366416572, 0.571181601185031, 0.7785327680196316, 0.7290551099174598, 0.9581131370131553, 0.6801000322064107, 0.413367674560271, 0.6667140739211237, 0.9108229754863395, 0.9275086157065797, 0.9186958597750785, 0.7191871442695774, 0.8184457509658746, 0.8597940676688322, 0.7947045908306632, 0.8244149680645384, 0.42771531534877594, 0.5315376696882942, 0.7136291946100958, 0.5510697799054304, 0.6393262665313312, 0.9016582766249417, 0.8560880110261746, 0.8947361144883382, 0.9102326114023062, 0.840723585394272, 0.9264645566705582, 0.5105903360131552, 0.752648770317166, 0.5855954083225455, 0.8989214048388485, 0.5190750352404293, 0.9560713253502463, 0.7273157243430202, 0.9279672131348602, 0.640103147954212, 0.9158977434209615, 0.9035955072010529, 0.7140955379655831, 0.233508355491505, 0.7280578325574358, 0.8810827811902006, 0.3966129217085586, 0.15541760955422754, 0.5851621750323275, 0.9046111951917862, 0.4177213302712193, 0.7993763114768937, 0.6978409661933959, 0.6473373667551029, 0.770784382977056, 0.6500641275496193, 0.548949563093737, 0.9803199442553986, 0.6150775052067382, 0.391333092160729, 0.6966682278280982, 0.9426748402861506, 0.9170092977635526, 0.844625652038695, 0.5621782696252592, 0.8935808323282117, 0.6792214086077275, 0.6719996755401956, 0.5252591274442797, 0.7277045758687855, 0.4685752957996948, 0.8616549355667619, 0.347491516391863, 0.8224130863808733, 0.5340790568488665, 0.6711667658766297, 0.5277539611022016, 0.7226430813715845, 0.8140972745487615, 0.3280236940194876, 0.9543080196225542, 0.7752655593026647, 0.9223925066666061, 0.8588031784191832, 0.6345107008491314, 0.9393010047953068, 0.7897067132703484, 0.8608062836413887, 0.8367885032124018, 0.38555642305179116, 0.8611944449682004, 0.9172341012895443, 0.9206892306522243, 0.9500505925695213, 0.537798347971205, 0.9173482789702866, 0.44454351342386716, 0.8909704850569525, 0.7351932580165473, 0.6818328744935735, 0.7981559962965634, 0.7626532952948841, 0.807353254900461, 0.964411205143099, 0.4685752957996948, 0.6986526320119215, 0.1956969407137045, 0.9233481403380283, 0.8218375601976645, 0.8536269727611236, 0.5637680470866036, 0.42267134533232753, 0.93003590801509, 0.9364808605729722, 0.8816060831574614, 0.9663102962713933, 0.8345570787709832, 0.4997893986747249, 0.7921603237806832, 0.5586815647381762, 0.8622246464681924, 0.9828719612298703, 0.909295720392338, 0.9476267884443668, 0.5395521774612226, 0.901360886913609, 0.39410444510430487, 0.9262213132200262, 0.6627387433216217, 0.9629433821448677, 0.9614311452267452, 0.9802968012486629, 0.933760787013923, 0.34432718187202205, 0.63596173557573, 0.624364378916488, 0.7417789548241253, 0.7300918276682445, 0.6968315453320488, 0.7840233885688647, 0.8958841271622066, 0.5417426694559925, 0.7102579146160282, 0.6004345411549624, 0.515920701757342, 0.7587882454650442, 0.5029588531082266, 0.6887596776945688, 0.8642849605932809, 0.6469572639767995, 0.8103639651534781, 0.939764354405301, 0.694136577696587, 0.6593725303534554, 0.9646797005081557, 0.7979900311745153, 0.792123904710467, 0.8869579700149332, 0.7351250317969437, 0.5332560471205093, 0.9406873315653421, 0.39362685027924615, 0.9466602521798594, 0.8394325033041952, 0.6633442657978572, 0.8126408700417265, 0.7332457619716184, 0.08024070404520958, 0.8667774471450977, 0.6466814331404849, 0.912366876100516, 0.656670904734599, 0.8701678467707724, 0.8875925797813499, 0.9658725076002231, 0.7668332861852056, 0.8604440887473094, 0.934384507524058, 0.9605946056867319, 0.951253157591183, 0.5749289095213865, 0.6279243005170476, 0.7937202818717513, 0.7665301650725991, 0.700127941221274, 0.8531107444728586, 0.7947045908306632, 0.8870566665876504, 0.5476228787844645, 0.8410401833568673, 0.8736671065238262, 0.6519898659949606, 0.936943112068646, 0.9077719201719568, 0.8071889556778997, 0.8815615400732472, 0.8935313268029127, 0.8782891297971865, 0.5029588531082266, 0.5797201450332624, 0.9416775458320723, 0.5958140198486584, 0.2485157288688957, 0.932021424688801, 0.8531502837407814, 0.6344194678828672, 0.632587077283238, 0.9121448358615357, 0.5776545535910985, 0.9052765174806566, 0.8580390107418799, 0.8998644401112552, 0.6784536879503494, 0.9458342431661766, 0.21387363850783603, 0.9530348339880965, 0.7307391114165022, 0.7187682731289255, 0.6905635603269331, 0.9569274903702625, 0.9287384091375525, 0.3856984054091925, 0.504413920551941, 0.5389739198483336, 0.5921068831639978, 0.10702848140489757, 0.8772993497727819, 0.6361944011057532, 0.8952999713010865, 0.7069578609115064, 0.10632960186243966, 0.6465592619811017, 0.9116333268133815, 0.9210441535829985, 0.9483358221641291, 0.5800224234700003, 0.896951343689222, 0.8958659323404018, 0.8896861436466836, 0.7763142135369961, 0.778627444633172, 0.9274605647284293, 0.9167924025380936, 0.6422094408272838, 0.6363725079258666, 0.8694129796739031, 0.5693182102579236, 0.5315376696882942, 0.6814536952243052, 0.30089534057709466, 0.6689448970920832, 0.6419522618821227, 0.6500641275496193, 0.8221968069187356, 0.9285763346020383, 0.8495153837633861, 0.7135666997345446, 0.8850789772017983, 0.9128367188568884, 0.8709442503982084, 0.44714680104169846, 0.7147831401969469, 0.6814536952243052, 0.5823319261018008, 0.7718122970862826, 0.8925058444773368, 0.9249991097277733, 0.7849066379312727, 0.5120166815330335, 0.7863291630268572, 0.8171821177205619, 0.8878235148823457, 0.9813953955585096, 0.5009899161211654, 0.6787020040856314, 0.2747106808400709, 0.6998114428322438, 0.7191783799678735, 0.7566715075843347, 0.7741630673610131, 0.692871858980435, 0.8706970297938403, 0.9226518689226377, 0.619213859232465, 0.9620625840847012, 0.8161066853745392, 0.7984578805051198, 0.8987836568806694, 0.27900511725120763, 0.747868261422589, 0.8013372150606806, 0.4430395412241901, 0.8082746512504794, 0.9248395818955686, 0.8132668978866627, 0.7926355964369082, 0.7243101498981422, 0.8251498778038484, 0.865753667016409, 0.8784859927081519, 0.9613966942665844, 0.8380103992838959, 0.9376908870460701, 0.8505645904112248, 0.5317253080143199, 0.8756470416862959, 0.8823120896825394, 0.8920529250761863, 0.9565288857220365, 0.92576324319171, 0.8397457208604353, 0.8008835764985612, 0.7620555647282774, 0.6333567796033132, 0.8986985644274655, 0.8289197139212982, 0.38568054861828666, 0.4358764146033148, 0.7013568331933456, 0.5524769805317635, 0.8654015550049637, 0.9625385348003681, 0.4997035751430624, 0.5940434106189647, 0.29640429037896177, 0.9370396801623051, 0.7496358493500708, 0.8521916566704996, 0.7519935213994349, 0.8956127660014477, 0.7563308848917781, 0.5425355780301907, 0.1652985164032473, 0.5777375433929663, 0.5926841497777402, 0.5247451599628447, 0.6215406511606532, 0.646742228322253, 0.5236567091352762, 0.8105889943537302, 0.7614647275399787, 0.7272264480694343, 0.44438282424164377, 0.8051848688934031, 0.253979247575754, 0.8737269176380216, 0.7884186533408385, 0.5226162157005312, 0.7776146375974927, 0.8021344726910251, 0.6794204065079696, 0.8398669626756513, 0.3743394998756179, 0.6593725303534554, 0.41008410759983227, 0.8726624594592295, 0.31336232876890546, 0.6187135046228962, 0.9208146539756937, 0.8948907807194619, 0.9475948217130945, 0.7098971478357265, 0.41970311630379203, 0.5524505095188592, 0.6689295490636696, 0.39534528644804523, 0.6686700461744643, 0.6608417181144597, 0.6289006219381473, 0.8112353209803558, 0.9675531845963172, 0.3468688843876404, 0.8171815196180959, 0.9315945487332388, 0.7612383340144859, 0.43979370974717685, 0.9452166580978265, 0.810349906376065, 0.4979189466877109, 0.9054024939516333, 0.7506263221664519, 0.8595966107872783, 0.9041757536760852, 0.5120166815330335, 0.9246344940597735, 0.622364539475366, 0.7975959936185795, 0.9376528402833735, 0.8270495791839716, 0.7463426393970082, 0.8508295060861325, 0.5277539611022016, 0.7926521549058593, 0.8343380415579561, 0.7973631232158779, 0.5423298306356671, 0.6253812669856891, 0.9342151247863544, 0.9064095870896521, 0.8428584418618921, 0.5680191878381406, 0.8230633503438987, 0.857993972512287, 0.8312116035859974, 0.8886868130574391, 0.5695902702544526, 0.8750573328895943, 0.47134086624147714, 0.6082670858563528, 0.8571520978358925, 0.7006810412396262, 0.6001343818465046, 0.8680196363335714, 0.7833148206731655, 0.835330250744176, 0.6883000602161935, 0.4297997702781997, 0.7132181587745201, 0.941909753873568, 0.9298379484442667, 0.8950633078112005, 0.9652574497835966, 0.8593048115498744, 0.23022113319019433, 0.5548683876071567, 0.8789570823277312, 0.7176343272433334, 0.7135972690872326, 0.900955402304434, 0.89110615578316, 0.8021344726910251, 0.36734125225010755, 0.9233813125795639, 0.9269988231022361, 0.6021478506882372, 0.27064660283581765, 0.7595966254948197, 0.5317253080143199, 0.9626288904553877, 0.518871521713375, 0.4244151934213653, 0.8784852709235653, 0.667697582798242, 0.6791650855490978, 0.8659372985570389, 0.5217980090164113, 0.9757802673562255, 0.20769640873195563, 0.6900575067285889, 0.15051833553221247, 0.8476988333501053, 0.12043274000614122, 0.6546311715671466, 0.412102187638673, 0.6339696776630096, 0.6925917751558638, 0.8074446941396305, 0.8417042066658985, 0.4702054036006336, 0.8107456318417504, 0.934253622333564, 0.9671353887875448, 0.3776875782453083, 0.5133306968464912, 0.8279918435672958, 0.7295730380004212, 0.8398957027397556, 0.7470826509089123, 0.7722124156410631, 0.3944809481034696, 0.5801047158883857, 0.7134138458261836, 0.8265590446981121, 0.5836238058504062, 0.7538957359152121, 0.9708936701567454, 0.41507295289487073, 0.9039211350062085, 0.5109703825452502, 0.8880660412534, 0.6332514250278477, 0.703270618172154, 0.863031725372896, 0.9601349291832292, 0.5845797646527732, 0.8357575010967041, 0.9584406458449958, 0.8733333206292072, 0.4740801794177068, 0.5787650908025566, 0.38525623454815555, 0.5715075300165849, 0.951253157591183, 0.831291834366621, 0.6482062646591596, 0.5447536045265621, 0.8456825404777587, 0.5358725178581014, 0.8893400405584444, 0.5955893395860203, 0.9408369636189147, 0.7580589814818564, 0.4244151934213653, 0.7636885291754726, 0.9532052815091139, 0.6686700461744643, 0.39683939049776734, 0.8309978518015588, 0.06774730328187532, 0.8934061610794648, 0.9459413258233057, 0.8507977517004935, 0.9694554821790147, 0.8640493534313302, 0.8409166048571896, 0.9059760843724536, 0.7278052027863667, 0.8952246802917138, 0.39534528644804523, 0.9558702864115934, 0.9178754126151818, 0.7504628435478695, 0.7568870052952757, 0.32046258648166903, 0.9712495894387816, 0.7125870341029702, 0.8286889773580812, 0.929575727770858, 0.8422483936479932, 0.60065365322741, 0.5775074082600717, 0.7505976846167132, 0.5317253080143199, 0.9590110623565244, 0.9651712957082627, 0.7333643603414158, 0.7757825668725274, 0.8928390517037824, 0.2578168736401774, 0.5355488836719776, 0.8408692583280314, 0.7849780542174357, 0.8711681462620556, 0.8447990405440073, 0.9571933326515756, 0.9307123551507692, 0.6421242495412457, 0.9239207054420927, 0.9336219461922934, 0.4244151934213653, 0.5673643045526261, 0.8301442064454496, 0.528471943574542, 0.8835542071774324, 0.8820947700128993, 0.4561713647735051, 0.584381944856391, 0.9493936477483658, 0.7816316980556022, 0.7770145472448273, 0.8495153837633861, 0.8318035560268552, 0.5220388622338656, 0.8589980209217414, 0.21216021099657945, 0.8782303617207965, 0.901850575196968, 0.7683760396387002, 0.9559989503713009, 0.938411491366706, 0.7225398931917507, 0.5918361617892179, 0.8596378534897678, 0.8816239240572568, 0.9296844522785247, 0.8299758417251202, 0.7538846798551382, 0.931253582726863, 0.6902425303942638, 0.9299571155275668, 0.35461708236434614, 0.6119587629530028, 0.8979450471026776, 0.8782891297971865, 0.6144930729026484, 0.5601837238662909, 0.4230258756549153, 0.5115702372514986, 0.6133200318312215, 0.8287048127179734, 0.42887934024879554, 0.5543929044930882, 0.5414149972460248, 0.7453725251924848, 0.6522898344923613, 0.6445138145159856, 0.9212190995841192, 0.6991293681294938, 0.9188224881967051, 0.9444881948020799, 0.8399825546316605, 0.6440269003431431, 0.45260210695563535, 0.6678228102737954, 0.8535669746933884, 0.23469888428232324, 0.7581156815660375, 0.8329520097124233, 0.5886389680190937, 0.4250130050586104, 0.290761161529129, 0.9065968169685268, 0.39757013049667705, 0.9584529405260903, 0.24804178200132845, 0.8400605958344816, 0.9562762484868867, 0.5923100188758571, 0.5355488836719776, 0.6866862751474886, 0.753715093249364, 0.9302702282582556, 0.8405005145861136, 0.7758456574858743, 0.8270123797965384, 0.9270997487744173, 0.8779999285967196, 0.6350604679157676, 0.9057987369792326, 0.9732730617650076, 0.28007269673131574, 0.5393237551960537, 0.9509318156255189, 0.8055358405733448, 0.8512314640165554, 0.6752183046546253, 0.9766791413071304, 0.26893819095773785, 0.5105552073939665, 0.7964242570425004, 0.9159462749375985, 0.46312559485344046, 0.7889853219989779, 0.5331772070153998, 0.6250130361556073, 0.5340700079782073, 0.8981158701031157, 0.8424802355113449], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [0.49, 0.12, 0.36, 0.29, 0.4, 0.4, 0.18, 0.04, 0.24, 0.65, 0.25, 0.39, 0.4, 0.26, 0.45, 0.36, 0.32, 0.49, 0.34, 0.07, 0.39, 0.13, 0.36, 0.64, 0.37, 0.31, 0.3, 0.23, 0.29, 0.74, 0.79, 0.2, 0.0, 0.17, 0.33, 0.21, 0.32, 0.11, 0.19, 0.06, 0.29, 0.2, 0.74, 0.29, 0.32, 0.25, 0.24, 0.25, 0.29, 0.35, 0.54, 0.26, 0.49, 0.22, 0.1, 0.23, 0.01, 0.49, 0.29, 0.2, 0.49, 0.34, 0.18, 0.4, 0.21, 0.06, 0.59, 0.0, 0.0, 0.03, 0.02, 0.25, 0.14, 0.26, 0.35, 0.28, 0.46, 0.52, 0.21, 0.3, 0.34, 0.18, 0.2, 0.33, 0.49, 0.27, 0.3, 0.34, 0.13, 0.36, 0.49, 0.26, 0.41, 0.42, 0.01, 0.0, 0.49, 0.19, 0.08, 0.55, 0.45, 0.32, 0.36, 0.11, 0.32, 0.09, 0.04, 0.0, 0.26, 0.41, 0.06, 0.5, 0.02, 0.29, 0.28, 0.34, 0.22, 0.24, 0.45, 0.08, 0.2, 0.28, 0.26, 0.17, 0.13, 0.18, 0.32, 0.38, 0.13, 0.37, 0.41, 0.32, 0.42, 0.49, 0.28, 0.62, 0.24, 0.17, 0.2, 0.2, 0.39, 0.49, 0.33, 0.42, 0.44, 0.28, 0.39, 0.23, 0.26, 0.23, 0.0, 0.22, 0.42, 0.19, 0.27, 0.24, 0.25, 0.44, 0.22, 0.42, 0.36, 0.47, 0.35, 0.48, 0.08, 0.26, 0.29, 0.46, 0.34, 0.38, 0.38, 0.32, 0.26, 0.28, 0.21, 0.0, 0.24, 0.35, 0.27, 0.35, 0.36, 0.23, 0.49, 0.1, 0.34, 0.32, 0.3, 0.22, 0.49, 0.22, 0.03, 0.46, 0.3, 0.28, 0.62, 0.21, 0.27, 0.1, 0.39, 0.3, 0.02, 0.26, 0.2, 0.4, 0.28, 0.36, 0.42, 0.59, 0.16, 0.69, 0.49, 0.23, 0.08, 0.4, 0.49, 0.24, 0.28, 0.33, 0.86, 0.24, 0.56, 0.25, 0.43, 0.41, 0.37, 0.14, 0.49, 0.29, 0.34, 0.34, 0.2, 0.34, 0.25, 0.35, 0.11, 0.48, 0.33, 0.31, 0.42, 0.33, 0.18, 0.02, 0.39, 0.32, 0.33, 0.12, 0.37, 0.3, 0.48, 0.01, 0.31, 0.2, 0.32, 0.62, 0.25, 0.36, 0.32, 0.23, 0.23, 0.33, 0.14, 0.22, 0.74, 0.74, 0.33, 0.36, 0.24, 0.38, 0.34, 0.44, 0.31, 0.12, 0.74, 0.42, 0.49, 0.25, 0.26, 0.34, 0.07, 0.47, 0.1, 0.25, 0.38, 0.0, 0.18, 0.37, 0.3, 0.26, 0.49, 0.38, 0.35, 0.07, 0.24, 0.06, 0.33, 0.39, 0.16, 0.38, 0.44, 0.39, 0.28, 0.65, 0.54, 0.56, 0.24, 0.06, 0.48, 0.29, 0.46, 0.26, 0.18, 0.19, 0.44, 0.41, 0.33, 0.74, 0.26, 0.49, 0.29, 0.1, 0.68, 0.08, 0.24, 0.27, 0.13, 0.53, 0.2, 0.49, 0.45, 0.14, 0.06, 0.29, 0.39, 0.4, 0.21, 0.41, 0.28, 0.04, 0.25, 0.32, 0.15, 0.49, 0.25, 0.27, 0.49, 0.3, 0.41, 0.49, 0.25, 0.4, 0.28, 0.3], \"xaxis\": \"x2\", \"y\": [0.8142007211296887, 0.07257977436397642, 0.7430932382113554, 0.8214862427787604, 0.5698848321031316, 0.6048119589659149, 0.6466669219762841, 0.14510080060429495, 0.2250304680670007, 0.28492472637839966, 0.42061632734231896, 0.8281252124183194, 0.49622399336621903, 0.3482895521074759, 0.4678833354511545, 0.5708968386647719, 0.37048677721847617, 0.553632248395139, 0.8702137350251022, 0.42186952587750404, 0.8696774950675754, 0.5410576963494411, 0.3971326977900686, 0.3275001196198921, 0.9448289227093116, 0.7109941475090589, 0.41925580570138304, 0.3675472469853882, 0.6721911818800557, 0.5562207270314473, 0.5262426608517637, 0.3244609607385458, 0.15056615442564347, 0.15676979724311627, 0.6037730696030339, 0.6342511279653397, 0.021947035536558718, 0.32429164429335744, 0.5678746850743716, 0.3571680467137555, 0.7755534309390314, 0.3240287891037917, 0.699424662214302, 0.5151532452376618, 0.7564675819717819, 0.38343591026479057, 0.19811005648518398, 0.3168419703358067, 0.5315947262677626, 0.9269044449273315, 0.8260225289794664, 0.451791899378283, 0.830516920403184, 0.47128602930186, 0.19027823806377472, 0.5181346713949518, 0.29552777318700446, 0.45414400334446664, 0.39329840463575844, 0.42327932510626076, 0.45838907164509224, 0.2233864252642039, 0.3628419195926303, 0.6709353200988277, 0.46058046365566996, 0.25551237833043455, 0.7234147543269824, 0.1481282262733752, 0.314935793994079, 0.20050531530561894, 0.37453315488553635, 0.701015529968035, 0.6343341418527783, 0.1739320900588749, 0.734996253073231, 0.8172229478314255, 0.3598554146739685, 0.7121055211356295, 0.2620604909731644, 0.3421138035730516, 0.6951268813066005, 0.35208221297891723, 0.452099210446082, 0.18907620085798427, 0.5444201651108793, 0.6484058972837882, 0.3258186925596978, 0.5963383680780668, 0.6202666247822538, 0.576738593946626, 0.5054992484109841, 0.2972245631729925, 0.6844333356791464, 0.42629475072919953, 0.4405153833121037, 0.01207867704715336, 0.7609288944606691, 0.23951123982998349, 0.09310514674080905, 0.5084920166510624, 0.33067609257366243, 0.36481899584296196, 0.5708968386647719, 0.3194802059637459, 0.14207297841267416, 0.5776897120055972, 0.2026163425795633, 0.37909000048748537, 0.38206764842015895, 0.41324683104354176, 0.17826143731067332, 0.42339414872454434, 0.39148091864802853, 0.3511350413575442, 0.8053393751847749, 0.5937005322868365, 0.6849942580153355, 0.38930033076762494, 0.5168500865319015, 0.5699073288866824, 0.5376087249833421, 0.8185832461647057, 0.25950508036415604, 0.20394483716883388, 0.3303044530853749, 0.2528102968078532, 0.8477719856767125, 0.5217124250004609, 0.3303044530853749, 0.5382885532339231, 0.9625763866028243, 0.6536174904341296, 0.42629475072919953, 0.6458781618432388, 0.46574001023909845, 0.37268733756108086, 0.8180085473348132, 0.35493594975273335, 0.2423640089427935, 0.3636330633241046, 0.6421622311157122, 0.5444201651108793, 0.7396308412796291, 0.9036153464846048, 0.21101569987323432, 0.6004024464464508, 0.7595861882737439, 0.486549602332862, 0.2379839758891197, 0.5147825233229498, 0.2065932277190248, 0.4342628292980428, 0.5940848250235929, 0.4857193175270624, 0.5332610244722983, 0.5402196969638672, 0.8578846895389459, 0.5290225674595067, 0.6074669506688956, 0.1847839155105034, 0.3581391437324269, 0.4304380754474639, 0.8410120374942113, 0.5810086483513661, 0.19026233744636453, 0.7223494520380469, 0.8589928738613049, 0.8374625942163022, 0.781203852328267, 0.73983195178881, 0.41156537259256004, 0.7482873396984137, 0.44431713201158524, 0.7113673874393347, 0.49869552495399233, 0.7627102864663872, 0.37193390769028617, 0.37187810520956766, 0.3773291605703562, 0.8719651627687759, 0.6218762459828849, 0.3781393537983126, 0.553632248395139, 0.47624084907999176, 0.774399353278846, 0.5840424935194366, 0.5601025471409736, 0.6186690618327106, 0.620611700356168, 0.5755798886129706, 0.15047650536569443, 0.5530049338021776, 0.6597439619439023, 0.8300222117931148, 0.3490158529243493, 0.4410646109528086, 0.5067909967309752, 0.5851482063434866, 0.7149827463187939, 0.4849259975950144, 0.2094210588097294, 0.33399024531412796, 0.4083143545243069, 0.7497022835596558, 0.7817929239213606, 0.7637421953724776, 0.3825655414920891, 0.6611482494098961, 0.19022241257108333, 0.44972084577511023, 0.5476732603321269, 0.4831274653996314, 0.5077048340566679, 0.7289504589448288, 0.4379810490617926, 0.8017221455714771, 0.6434673631716396, 0.5059779734745421, 0.6065367192264559, 0.650368705032214, 0.34567471266024347, 0.39561589000187136, 0.3427787545601037, 0.4676404271158623, 0.5332283386400669, 0.4519108142444285, 0.40662831629925006, 0.42305576187259053, 0.22032895172816622, 0.5278715769330472, 0.43679486629948455, 0.743933429392776, 0.5269515041023835, 0.5008800654866953, 0.214168174561682, 0.44879088851457377, 0.683485355417811, 0.807753104897186, 0.42629475072919953, 0.8502951424821861, 0.17421175568219957, 0.25491371883486935, 0.7595861882737439, 0.6571724132942184, 0.7813188949129265, 0.5626906653340306, 0.8674288259883418, 0.6600514650598344, 0.4827749661719035, 0.5456147119159479, 0.39827550056677263, 0.27323823737433794, 0.695896529362927, 0.5048820477254727, 0.5422349097465021, 0.5610936746718964, 0.6571724132942184, 0.3088751107498249, 0.45428761266464013, 0.6604471727860799, 0.43371621376298963, 0.6171893197168647, 0.8100511550343341, 0.8100511550343341, 0.605832578461134, 0.5526475584669951, 0.4275055171336787, 0.8734720021260204, 0.8508295378350301, 0.5807723706867254, 0.8272749548927728, 0.2670652478909882, 0.7020144194675465, 0.4615566916191992, 0.7055847950248242, 0.43389869234556755, 0.6071692164257629, 0.3496825637352313, 0.23676491619791426, 0.7057755976874825, 0.15539001443149586, 0.6187538615870153, 0.8735882828904331, 0.30049486749739024, 0.23191705420611952, 0.8913917397916864, 0.4977157214618499, 0.16961113509580228, 0.8485494795219795, 0.4760032757956232, 0.5053843099270294, 0.2676015269871764, 0.3627664421236291, 0.15146266807038725, 0.7898179638281774, 0.6145296307645981, 0.3790380236797623, 0.3003532640340299, 0.6086112016774773, 0.39906793889171593, 0.8185832461647057, 0.6715802865662828, 0.8260225289794664, 0.6056902064850618, 0.400132762133902, 0.39471961640683584, 0.6449859309106076, 0.5637152910565628, 0.39949420960438964, 0.5490401551410112, 0.4398875418860128, 0.30916577334906253, 0.7093303227687476, 0.4562508424819209, 0.40444044759428516, 0.5773483646962835, 0.447777692034652, 0.4961542215384683, 0.32474312180562226, 0.21192693199409943, 0.9056903490933487, 0.5013816399998683, 0.758876109553896, 0.6364928148646596, 0.2952804752502578, 0.4748951900520853, 0.43679486629948455, 0.5479962315186364, 0.4728142838839701, 0.6343341418527783, 0.12248807650217919, 0.5052525886146573, 0.8281252124183194, 0.8930081609652758, 0.36283726088930296, 0.8098196742550625, 0.656477404357746, 0.193885049884708, 0.5269515041023835, 0.49858469647139786, 0.32780472036158087, 0.24927512797396847, 0.6148718578314069, 0.10691527318901187, 0.136775438340409, 0.8489192718114075, 0.2600203086082801, 0.8142007211296887, 0.5269515041023835, 0.7966615933629455, 0.5633234794197017, 0.767479452333631], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"citric.acid\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"citric.acid\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}}, {\"id\": \"citric.acid_bad\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (ref)\", \"type\": \"scatter\", \"x\": [0.65, 0.47, 0.32, 0.08, 0.23, 0.0, 0.07, 0.52, 0.37, 0.23, 0.3, 0.49, 0.74, 0.35, 0.06, 0.2, 0.33, 0.09, 0.22, 0.0, 0.47, 0.26, 0.1, 0.3, 0.0, 0.04, 0.18, 0.32, 0.1, 0.32, 0.0, 0.27, 0.66, 0.24, 0.37, 0.49, 0.35, 0.37, 0.57, 0.36, 0.38, 0.6, 0.27, 0.14, 0.15, 0.24, 0.24, 0.27, 0.43, 0.15, 0.24, 0.22, 0.31, 0.49, 0.26, 0.49, 0.42, 0.25, 0.53, 0.52, 0.44, 0.35, 0.08, 0.24, 0.2, 0.3, 0.34, 0.21, 0.13, 0.31, 0.31, 0.65, 0.66, 0.33, 0.29, 0.07, 0.43, 0.4, 0.2, 0.36, 0.3, 0.37, 0.43, 0.2, 0.23, 0.31, 0.34, 0.17, 0.35, 0.1, 0.65, 0.24, 0.1, 0.66, 0.42, 0.52, 0.56, 0.46, 0.44, 0.35, 0.5, 0.31, 0.28, 0.34, 0.31, 0.68, 0.19, 0.37, 0.49, 0.24, 0.24, 0.33, 0.2, 0.27, 0.17, 0.36, 0.62, 0.23, 0.43, 0.26, 0.2, 0.28, 0.34, 0.55, 0.24, 0.24, 0.22, 0.22, 0.42, 0.19, 0.47, 0.22, 0.3, 0.51, 0.3, 0.2, 0.36, 0.23, 0.35, 0.21, 0.22, 0.4, 0.38, 0.18, 0.22, 0.42, 0.26, 0.34, 0.14, 0.48, 0.38, 0.0, 0.41, 0.09, 0.41, 0.0, 0.53, 0.24, 0.35, 0.07, 0.43, 0.24, 0.49, 0.23, 0.03, 0.39, 0.2, 0.23, 0.28, 0.36, 0.41, 0.18, 0.26, 0.64, 0.28, 0.28, 0.21, 0.28, 0.3, 0.1, 0.46, 0.0, 0.35, 0.34, 0.52, 0.16, 0.45, 0.24, 0.15, 0.37, 0.19, 0.3, 0.5, 0.04, 0.51, 0.0, 0.31, 0.31, 0.26, 0.21, 0.14, 0.5, 0.5, 0.43, 0.24, 0.26, 0.19, 0.41, 0.04, 0.37, 0.29, 0.28, 0.44, 0.74, 0.47, 0.13, 0.23, 0.06, 0.38, 0.48, 0.11, 0.27, 0.51, 0.41, 0.29, 0.34, 0.03, 0.47, 0.04, 0.0, 0.2, 0.54, 0.28, 0.25, 0.32, 0.21, 0.41, 0.25, 0.34, 0.56, 0.33, 0.39, 0.29, 0.32, 0.27, 0.5, 0.49, 0.24, 0.37, 0.33, 0.25, 0.26, 0.66, 0.03, 0.34, 0.51, 0.38, 0.24, 0.46, 0.63, 0.28, 0.22, 0.33, 0.57, 0.33, 0.3, 0.24, 0.22, 0.25, 0.2, 0.35, 0.3, 0.38, 0.26, 0.5, 0.39, 0.12, 0.61, 0.19, 0.13, 0.24, 0.21, 0.32, 0.07, 0.24, 0.2, 0.47, 0.3, 0.27, 0.22, 0.49, 0.55, 0.22, 0.11, 0.4, 0.26, 0.23, 0.55, 0.58, 0.2, 0.0, 0.4, 0.05, 0.33, 0.28, 0.35, 0.24, 0.16, 0.59, 0.21, 0.48, 0.2, 0.21, 0.45, 0.49, 0.37, 0.56, 0.31, 0.44, 0.14, 0.46, 0.47, 0.2, 0.24, 0.36, 0.25, 0.65, 0.54, 0.22, 0.17, 0.4, 0.35, 0.35, 0.4, 0.33, 0.24, 0.16, 0.46, 0.0, 0.46, 0.49, 0.29, 0.3, 0.22, 0.27, 0.01, 0.18, 0.49, 0.18, 0.2, 0.29, 0.03, 0.7, 0.09, 0.42], \"xaxis\": \"x\", \"y\": [0.7197707895473677, 0.05448058807241418, 0.5021256787650443, 0.4710854375480472, 0.7156076129280222, 0.7966690429773311, 0.7265425252145667, 0.16771266951545494, 0.610944103187451, 0.6324527530146118, 0.42180662537268765, 0.2598044700255929, 0.5503032830239416, 0.5632112185661304, 0.6840604465833231, 0.6224375641140001, 0.8071781895370533, 0.9515482366939344, 0.3994071349416132, 0.9677746238863042, 0.572587586261062, 0.7602674855798478, 0.861098734498427, 0.1386074727873, 0.6703360831713621, 0.8064003460928679, 0.3172728283240366, 0.8039094494444462, 0.9186426431335688, 0.6026275969807151, 0.8609701260317718, 0.3485833566260712, 0.3005246278528939, 0.2859113263741919, 0.4978204971029292, 0.5125675444128744, 0.4268860326359044, 0.11791793574572085, 0.440027850275134, 0.4938434408506086, 0.4933189622152446, 0.166194347192407, 0.30200278364192557, 0.6822425768461728, 0.8693180940701344, 0.24112389044610405, 0.43189370387303117, 0.284455178085937, 0.23793737479647703, 0.5535561322468214, 0.7900402576908969, 0.47373775892899717, 0.6055733033081183, 0.7462675017011632, 0.32245623572553406, 0.7612367841042231, 0.36308410170653527, 0.6103993963703384, 0.3965676277125745, 0.2230008284200371, 0.8480025164595866, 0.43585875500482685, 0.24095331994381775, 0.4030652094068704, 0.8951637220162157, 0.2782175630406618, 0.7337660836226194, 0.8352762102164887, 0.6223987562306759, 0.2928263700360406, 0.6563137004068428, 0.16155652477357085, 0.6364666355122575, 0.2186811050870735, 0.27206300237801306, 0.4358901152617537, 0.6136035252376228, 0.07900866299327158, 0.8522855318359817, 0.11906253414448076, 0.3466831105240652, 0.11265227152414181, 0.6302693732121377, 0.7168097665217413, 0.4796298258249143, 0.4476252306691143, 0.3612478268219491, 0.611861930499026, 0.15121036728507153, 0.5363393546692182, 0.16155652477357085, 0.441733396330222, 0.7834276811132227, 0.6364666355122575, 0.44873286860252337, 0.4948960601400133, 0.4172084246960842, 0.5055831714989107, 0.5269082808529498, 0.3737404408311804, 0.4491757516278906, 0.5266720849021, 0.2882430633103308, 0.6066213483726142, 0.83534933450756, 0.2509605867776752, 0.230738949997912, 0.25680675940048736, 0.6858999083789018, 0.27626495444752697, 0.35158671089680515, 0.311480105980391, 0.5950329577300569, 0.4196263877039489, 0.3672198477254309, 0.5488429300958864, 0.6273126624389191, 0.0990306898864649, 0.935036100419004, 0.5556828679884147, 0.6003916802566726, 0.1337843055401957, 0.6898191889393818, 0.46604488826349566, 0.6668872608045229, 0.5998672378660981, 0.14712454771937833, 0.8558065212045691, 0.883276495704891, 0.5544329747085402, 0.38398791005853006, 0.8623310715459079, 0.4482795971615686, 0.4767821080964978, 0.6451659669426603, 0.5099786295438409, 0.11454219273407718, 0.5691587732433696, 0.2398813672346335, 0.8592796956842923, 0.38133093816728936, 0.4754945767078651, 0.2673740541283356, 0.43092180164799054, 0.5981491184574936, 0.7512253043619477, 0.20474988026063612, 0.12337786436138054, 0.6965484670033051, 0.4642254518352117, 0.29034758521725457, 0.7912282271603185, 0.1364389858241727, 0.5326323768611896, 0.3938848007926149, 0.886984727126295, 0.5955398539691413, 0.3667393936023857, 0.35129461810907203, 0.578130474122496, 0.1952086434691429, 0.6982941690158907, 0.6159300986783536, 0.6650580695700093, 0.8007006003287879, 0.13750802167619447, 0.47121416359091395, 0.5691587732433696, 0.5295784007050042, 0.4938434408506086, 0.4240508430342457, 0.1531205555636086, 0.7965770364050346, 0.4829168465516456, 0.6333246955344933, 0.38682769986244625, 0.5589353890471914, 0.30965836575156913, 0.6133571507425741, 0.5363393546692182, 0.5474540697204298, 0.9680074395956593, 0.29703705077451537, 0.7566858385458134, 0.451244026180727, 0.6224939697452743, 0.9340693900855184, 0.1254375450851024, 0.770680513376406, 0.7273231109206828, 0.410671569380914, 0.19928392436820586, 0.44743622108127745, 0.4991477681643879, 0.5443787589855091, 0.826082779912576, 0.5642536294664222, 0.6762559922350657, 0.39283078357423706, 0.3074847569358159, 0.40732461839200396, 0.5614584986504241, 0.5614584986504241, 0.575628870274347, 0.1938881144566701, 0.6480440770440566, 0.23946299348505806, 0.6110142157087575, 0.32489046344192996, 0.127020290619695, 0.28948900574123104, 0.27970970921902805, 0.5179212029104148, 0.579807192000203, 0.5695619245525361, 0.7471497674522103, 0.6761943115269239, 0.6052803835931642, 0.9048996801452402, 0.632953623191418, 0.7849920634816455, 0.12946409768986655, 0.3899257470968539, 0.37735505673750047, 0.27206300237801306, 0.6356505945299911, 0.9000798247851504, 0.5852448485124296, 0.3537739535016634, 0.8589709040748648, 0.5105041430354158, 0.4760479563081992, 0.3915586115462193, 0.4344526143297297, 0.04825794875232026, 0.25106204840173363, 0.5352062615150248, 0.2084678736174792, 0.5588772074146924, 0.42656597432725707, 0.3395528272139201, 0.5154796814541086, 0.30312695461308037, 0.4684625037801391, 0.13140485141127656, 0.37575572516499556, 0.7087902803012941, 0.22740617784346517, 0.7932370230268412, 0.6977827466507267, 0.8687065743771458, 0.3532210556477622, 0.3005246278528939, 0.8817461779308045, 0.5897758288136841, 0.5117334773877459, 0.2267712913026929, 0.7462523759498982, 0.5055831714989107, 0.6276122794572256, 0.34766968675436505, 0.563322001169588, 0.4035281086421867, 0.44827723495654004, 0.7588644006503809, 0.17560197311170134, 0.2736156405730563, 0.5646478519097824, 0.12788772013874206, 0.8127608550985441, 0.35130933230290007, 0.8842329534318195, 0.5671758377024384, 0.508518787579709, 0.4735654621913231, 0.6614347321502836, 0.7032589073748752, 0.418601168771625, 0.40262233345395115, 0.38045938978299354, 0.6221728234115828, 0.6769388667590319, 0.825791915264051, 0.8036522945246104, 0.5350776523934957, 0.5038683203672731, 0.4187790963850706, 0.3942708224564714, 0.36585282612655, 0.42973128126448334, 0.1395024853671747, 0.36909778672938764, 0.5126700875045708, 0.31128511290513083, 0.5841805470690385, 0.42932394036482613, 0.5168725346003686, 0.9331527243268325, 0.5090935678835011, 0.848083892739094, 0.7288594688776423, 0.23463814542978878, 0.9073343486287574, 0.5445649372592127, 0.8030108083542629, 0.30698149193503155, 0.47724620771884374, 0.49565431290071005, 0.29179072192325783, 0.53941953634433, 0.32642767658125227, 0.5714063949384225, 0.6769388667590319, 0.48314991346809855, 0.3838692085325581, 0.7654355578102645, 0.6807995217458978, 0.7803105409218809, 0.4971816769068883, 0.5662837862370104, 0.32557907866588853, 0.4059739580227363, 0.8621668957327787, 0.4863555612469991, 0.44913520001249685, 0.5044088987161788, 0.018560580499064172, 0.17397747102053363, 0.8203404366189, 0.531551035274026, 0.3951880410340851, 0.6710839680909022, 0.7545393605546251, 0.25029771644034415, 0.31651464458218903, 0.7900402576908969, 0.7649542174153934, 0.6282404390050247, 0.5124469561170844, 0.7501741577575001, 0.3717170374651112, 0.5479204837841629, 0.1799627586960565, 0.8716748635647116, 0.4700369344869263, 0.7044722268129955, 0.7597806244765397, 0.4570971226262448, 0.3688130253756654, 0.5854022956087224, 0.6067015953642416, 0.6092966434658947, 0.5713009051869427, 0.15316343939585397, 0.31191498773739224], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [0.32, 0.24, 0.36, 0.24, 0.27, 0.21, 0.3, 0.46, 0.34, 0.26, 0.4, 0.21, 0.26, 0.33, 0.24, 0.47, 0.29, 0.76, 0.2, 0.29, 0.28, 0.27, 0.28, 0.36, 0.49, 0.27, 0.3, 0.49, 0.33, 0.48, 0.49, 0.32, 0.28, 0.34, 0.36, 0.44, 0.31, 0.31, 0.22, 0.39, 0.26, 0.49, 0.37, 0.26, 0.26, 0.32, 0.38, 0.19, 0.53, 0.3, 0.29, 0.29, 0.26, 0.29, 0.49, 0.28, 0.36, 0.38, 0.24, 0.32, 0.42, 0.23, 0.74, 0.44, 0.66, 0.13, 0.28, 0.3, 0.26, 0.36, 0.35, 0.24, 0.28, 0.68, 0.35, 0.29, 0.46, 0.28, 0.1, 0.35, 0.24, 0.34, 0.3, 0.45, 0.33, 0.34, 0.29, 0.31, 0.31, 0.41, 0.28, 0.28, 0.38, 0.4, 0.29, 0.25, 0.29, 0.28, 0.25, 0.65, 0.34, 0.36, 0.46, 0.34, 0.3, 0.32, 0.26, 0.49, 0.33, 0.02, 0.33, 0.28, 0.32, 0.29, 0.27, 0.32, 0.25, 0.36, 0.35, 0.46, 0.3, 0.49, 0.34, 0.31, 0.22, 0.02, 0.01, 0.5, 0.36, 0.0, 0.33, 0.18, 0.4, 0.32, 0.43, 0.54, 0.4, 0.02, 0.2, 0.24, 0.37, 0.31, 0.32, 0.34, 0.41, 0.43, 0.46, 0.27, 0.24, 0.32, 0.28, 0.59, 0.25, 0.26, 0.3, 0.5, 0.28, 0.35, 0.26, 0.38, 0.29, 0.27, 0.36, 0.25, 0.2, 0.34, 0.3, 0.21, 0.58, 0.04, 0.42, 0.37, 0.46, 0.28, 0.14, 0.09, 0.04, 0.21, 0.24, 0.1, 0.29, 0.49, 0.35, 0.3, 0.16, 0.29, 0.33, 0.48, 0.34, 0.31, 0.29, 0.0, 0.14, 0.05, 0.02, 0.34, 0.16, 0.32, 0.26, 0.48, 0.49, 0.27, 0.49, 0.12, 0.26, 0.37, 0.34, 0.49, 0.27, 0.43, 0.49, 0.2, 0.34, 0.32, 0.27, 0.26, 0.29, 0.49, 0.31, 0.32, 0.32, 0.49, 0.26, 0.4, 0.6, 0.37, 0.34, 0.4, 0.31, 0.29, 0.32, 0.21, 0.0, 0.28, 0.28, 0.21, 0.36, 0.41, 0.42, 0.34, 0.33, 0.39, 1.0, 0.44, 0.12, 0.32, 0.31, 0.27, 0.4, 0.33, 0.42, 0.3, 0.43, 0.35, 0.37, 0.28, 0.31, 0.14, 0.49, 0.39, 0.34, 0.49, 0.37, 0.44, 0.35, 0.32, 0.37, 0.57, 0.06, 0.34, 0.36, 0.08, 0.31, 0.3, 0.26, 0.26, 0.28, 0.41, 0.0, 0.79, 0.36, 0.44, 0.32, 0.3, 0.39, 0.42, 0.25, 0.28, 0.08, 0.39, 0.31, 0.3, 0.48, 0.24, 0.41, 0.25, 0.0, 0.12, 0.36, 0.38, 0.02, 0.24, 0.3, 0.26, 0.33, 0.46, 0.26, 0.33, 0.39, 0.47, 0.3, 0.34, 0.13, 0.36, 0.36, 0.62, 0.31, 0.3, 0.27, 0.27, 0.27, 0.38, 0.31, 0.3, 0.29, 0.02, 0.22, 0.39, 0.49, 0.27, 0.28, 0.33, 0.44, 0.57, 0.36, 0.31, 0.33, 0.33, 0.21, 0.28, 0.28, 0.45, 0.36, 0.26, 0.13, 0.49, 0.32, 0.09, 0.0, 0.36, 0.29, 0.41, 0.28, 0.3, 0.3, 0.4, 0.32, 0.33, 0.51, 0.36, 0.41, 0.19, 0.35, 0.44, 0.03, 0.27, 0.31, 0.27, 0.36, 0.26, 0.3, 0.39, 0.3, 0.23, 0.28, 0.26, 0.31, 0.0, 0.27, 0.34, 0.2, 0.32, 0.13, 0.36, 0.49, 0.29, 0.37, 0.31, 0.29, 0.37, 0.28, 0.24, 0.49, 0.3, 0.28, 0.47, 0.42, 0.28, 0.32, 0.28, 0.05, 0.21, 0.23, 0.33, 0.28, 0.32, 0.34, 0.42, 0.0, 0.49, 0.24, 0.3, 0.35, 0.3, 0.56, 0.45, 0.28, 0.35, 0.18, 0.2, 0.37, 0.31, 0.3, 0.28, 0.27, 0.18, 0.44, 0.3, 0.3, 0.36, 0.49, 0.41, 0.28, 0.31, 0.35, 0.1, 0.29, 0.01, 0.33, 0.49, 0.38, 0.74, 0.37, 0.45, 0.62, 0.33, 0.4, 0.26, 0.47, 0.28, 0.28, 0.24, 0.27, 0.35, 0.3, 0.76, 0.27, 0.01, 0.27, 0.27, 0.73, 0.29, 0.49, 0.25, 0.31, 0.02, 0.27, 0.36, 0.3, 0.51, 0.15, 0.49, 0.33, 0.32, 0.35, 0.29, 0.49, 0.34, 0.32, 0.44, 0.24, 0.48, 0.23, 0.24, 0.31, 0.39, 0.49, 0.3, 0.3, 0.05, 0.41, 0.23, 0.4, 0.41, 0.39, 0.42, 0.3, 0.35, 0.34, 0.29, 0.26, 0.31, 0.38, 0.38, 0.44, 0.33, 0.33, 0.49, 0.38, 0.27, 0.33, 0.31, 0.31, 0.5, 0.36, 0.37, 0.46, 0.44, 0.37, 0.35, 0.31, 0.25, 0.36, 0.37, 0.0, 0.3, 0.7, 0.36, 0.29, 0.33, 0.32, 0.25, 0.28, 0.21, 0.4, 0.06, 0.28, 0.29, 0.35, 0.35, 0.35, 0.29, 0.41, 0.49, 0.25, 0.25, 0.5, 0.49, 0.26, 0.29, 0.32, 0.24, 0.28, 0.4, 0.3, 0.02, 0.31, 0.36, 0.22, 0.36, 0.35, 0.34, 0.1, 0.24, 0.0, 0.32, 0.23, 0.49, 0.32, 0.32, 0.28, 0.41, 0.28, 0.37, 0.33, 0.31, 0.28, 0.3, 0.24, 0.34, 0.31, 0.35, 0.26, 0.0, 0.74, 0.01, 0.16, 0.32, 0.24, 0.32, 0.28, 0.32, 0.37, 0.29, 0.04, 0.29, 0.3, 0.16, 0.33, 0.23, 0.49, 0.38, 0.32, 0.26, 0.56, 0.66, 0.29, 0.29, 0.4, 0.27, 0.21, 0.35, 0.28, 0.24, 0.28, 0.38, 0.25, 0.49, 0.32, 0.18, 0.43, 0.33, 0.47, 0.04, 0.33, 0.27, 0.36, 0.25, 0.4, 0.33, 0.24, 0.35, 0.31, 0.31, 0.38, 0.49, 0.44, 0.4, 0.33, 0.26, 0.38, 0.22, 0.28, 0.34, 0.36], \"xaxis\": \"x\", \"y\": [0.18439386755371057, 0.5750868907731637, 0.1132172353536568, 0.19850047615697952, 0.6950004168934912, 0.41826441672946313, 0.040828937665112974, 0.2145583871630251, 0.09143093017991866, 0.10013996234885614, 0.3658834999306372, 0.587897812361327, 0.23563705889496211, 0.5289998061994394, 0.5981734696485812, 0.5956194363709464, 0.11295199838815062, 0.6349332021584286, 0.09356782907078887, 0.0672754654033908, 0.3541579814831264, 0.11781588709523827, 0.3295981493457443, 0.23443288181779365, 0.13830133810679424, 0.5122546205578999, 0.03626449638205209, 0.32057959349203036, 0.3955164844050859, 0.21320459763992916, 0.08620177311633537, 0.4132497936565127, 0.19514157099220286, 0.028148892894647393, 0.03728071159582558, 0.20213762816504022, 0.39088790332760825, 0.10566618212719892, 0.11466232649727714, 0.09544364959788487, 0.07351553674018241, 0.3657542344632553, 0.05859665738698361, 0.43634835962676355, 0.4827032077898804, 0.516310366273556, 0.6480037931050455, 0.21122004543372697, 0.030344760075157406, 0.22750344576024595, 0.18673438423788624, 0.5460909738859347, 0.0666291073587214, 0.320234954276134, 0.515425573770442, 0.5751179393061847, 0.3262180383913996, 0.12192585741802231, 0.6165939755266235, 0.09365914315081003, 0.44259853952477324, 0.31958523161407537, 0.09228899111547839, 0.22815273642701062, 0.5282447951108347, 0.7777719169155834, 0.13834506443323813, 0.29425092810710396, 0.5300870647699181, 0.031947521718024174, 0.1108646816717751, 0.053339747820140615, 0.14466174791529418, 0.25697560969337485, 0.3383868137798065, 0.30803904997837983, 0.03434255320493995, 0.08689109251212201, 0.46044782253877736, 0.0973761441498977, 0.3449058470623745, 0.024212367984770777, 0.11665042079727428, 0.3333970234137619, 0.1495417879159372, 0.0679784404121434, 0.2360052425084116, 0.39147703437781534, 0.04428683932015287, 0.5381556738404795, 0.4357341587922019, 0.11843845992675284, 0.28107964630818494, 0.06989794698232743, 0.2658605825653322, 0.22408104406272966, 0.15519213452661884, 0.09873339188795927, 0.10739713799337769, 0.4712507279726723, 0.31257930793611366, 0.6259141532505736, 0.1651629894813923, 0.13024327386797574, 0.08242409751896962, 0.55355901104019, 0.11256152515999429, 0.22124325125588817, 0.05838775174278421, 0.6734770756819889, 0.06919042490492266, 0.5773286546676725, 0.5693181878572973, 0.12726917141891614, 0.27983888222674136, 0.15690954109554833, 0.18593824584442387, 0.05432525584274117, 0.33273366741371935, 0.12435295831370408, 0.48112847828662497, 0.2959384652215836, 0.5042039768350125, 0.3749869638443927, 0.7258627386781167, 0.4806866421912115, 0.6234335830956541, 0.4191951896523489, 0.20821728825178332, 0.6343085651912675, 0.27674577061671146, 0.02140654255666985, 0.42849246998341506, 0.1817444030106703, 0.4551538855951942, 0.05087080041524106, 0.516641204200833, 0.6810720245435042, 0.08151744899857294, 0.4475169494323581, 0.03995706953508171, 0.2181819033834006, 0.20372897255157485, 0.24305701296248816, 0.5381556738404795, 0.2358485729609252, 0.051323642447754336, 0.1913631294907303, 0.32154631204965056, 0.31229802093755377, 0.3917329141436472, 0.39462053822053156, 0.3680669306910641, 0.5017894292511481, 0.32120711190509066, 0.0768019282386515, 0.1168769044932052, 0.31545143431826594, 0.12007957373947853, 0.08354361700756141, 0.2180731800932174, 0.7653011157176768, 0.05076221583963347, 0.11739077279846111, 0.3639458403519926, 0.4815918747301601, 0.35998732468747585, 0.457353694020342, 0.5520498791697908, 0.22168281241722143, 0.2132287846887433, 0.4763394582576197, 0.3040153802820409, 0.20749766415549342, 0.3316810644107503, 0.8126297477835096, 0.5749367295182395, 0.27274039590582944, 0.2685808245693546, 0.5172108675362206, 0.33506587713796443, 0.09616672688355288, 0.041108213935392324, 0.10548050716105373, 0.5016695616404938, 0.20022874051447226, 0.14220640128276774, 0.23772630779738468, 0.19606080251004787, 0.2603188495268066, 0.18846597668723208, 0.19827111133563302, 0.261548791893628, 0.4140325207077993, 0.8134796325151183, 0.12265695643958285, 0.6311167068993262, 0.13481820177301163, 0.0932384579037443, 0.14050160114126486, 0.2562249115981724, 0.08547750670655718, 0.08643201081848362, 0.19981675431015722, 0.31390222338706264, 0.06221739913672386, 0.06996303880871468, 0.30029370289300306, 0.4306817897420764, 0.6595343859760441, 0.2839408857911616, 0.20468539219890003, 0.1130196126722065, 0.2360017176902124, 0.13187147729288817, 0.42313120297864704, 0.06964897436687001, 0.1624399718171824, 0.17200815643270417, 0.07333105637055992, 0.2440137653363641, 0.4900110333069776, 0.3085554157386313, 0.03480496731142946, 0.12148031785507996, 0.15002971926037112, 0.5314247042003052, 0.2758453007685677, 0.2151852748992088, 0.2658605825653322, 0.29911225563077193, 0.6594110243744711, 0.49869782335001445, 0.16788254706683048, 0.11816213334465087, 0.08230909248122409, 0.13653212507346946, 0.25639170942272826, 0.06562233405876228, 0.23311900627036541, 0.3756616197417655, 0.46674395287949066, 0.3092684534350997, 0.8337319641197457, 0.8331457111467163, 0.2591056156836542, 0.4778687671024334, 0.2542440524586721, 0.5361036306539362, 0.07073721340803463, 0.4731688813159418, 0.5755848065786346, 0.356689463387698, 0.14225616860197343, 0.21837916002376445, 0.14466174791529418, 0.29899643271856946, 0.4757427727983842, 0.08126799884203029, 0.1296501822378736, 0.3286954654423938, 0.08620177311633537, 0.13855855420831553, 0.05543377339452393, 0.11917834098009661, 0.2613621884509647, 0.11269900223777074, 0.08429051026621415, 0.3393961441870107, 0.07031960314855146, 0.11356777592095357, 0.4853279864284006, 0.1279289285514792, 0.0584572339054259, 0.08612988585012649, 0.3472440907423937, 0.1248029959061332, 0.07502335399434323, 0.19827111133563302, 0.3424151534036639, 0.3065175956815872, 0.13808860398564737, 0.058092197534895806, 0.04082786106581715, 0.1602592849246841, 0.09156161599234125, 0.5036030690663805, 0.2640411824475748, 0.6468038092930676, 0.07201805208597656, 0.22470230804277058, 0.1334773721572423, 0.04847889440667685, 0.2685808245693546, 0.10911308148570098, 0.6764508967260475, 0.6280060594576413, 0.36761958218269275, 0.16019930342079847, 0.17605308658107655, 0.14078981831089854, 0.2384997092801764, 0.13117402490907393, 0.12818959986091483, 0.4161925244315118, 0.12435295831370408, 0.09814942480303201, 0.05480698563416486, 0.3746187330143109, 0.41092354232892336, 0.507894749900129, 0.5137929421583434, 0.08293523366016065, 0.2964416548030494, 0.15236141109070434, 0.4396941021426354, 0.41893931094950754, 0.09113953260801844, 0.10967473999240707, 0.055732078845942, 0.05640314085190745, 0.06176263301115803, 0.06427139521062619, 0.20386133178572885, 0.21597661143113533, 0.7486409492386699, 0.2610715902497083, 0.09465277491899493, 0.5556171757583562, 0.137718889647652, 0.1978940751503777, 0.08472590699531857, 0.356262641598029, 0.14596950445002987, 0.13865818299932142, 0.3088915816821678, 0.11516321289421916, 0.16121169033174265, 0.40573483691789825, 0.34308606282264, 0.36300204724896845, 0.17193414756867276, 0.035926383178341514, 0.34536882843285344, 0.4400180463892147, 0.5165194668234709, 0.23319834124303085, 0.9637923675569924, 0.2635599134550337, 0.6259141532505736, 0.12324962258280003, 0.1256037712827487, 0.1248029959061332, 0.11665042079727428, 0.29081136443782263, 0.12993062945549005, 0.20959981847797426, 0.12385816607190492, 0.16931651488884025, 0.2468284110987674, 0.6181879252747016, 0.3509541008179864, 0.08619429866610873, 0.09537770951135394, 0.8204393830764495, 0.2493836920976743, 0.10367142046182065, 0.11516383353466464, 0.07169627826225977, 0.5400384130096556, 0.2709141565803237, 0.16809050322974173, 0.3421981324687273, 0.812724325423183, 0.1326589750154965, 0.054670132935181304, 0.055346153509382656, 0.8039442695404772, 0.3276168958360183, 0.6561718697940482, 0.6214102617950452, 0.3046829516703813, 0.7853649284745584, 0.7303620793003476, 0.6719087507962026, 0.16000678121984613, 0.579612101366232, 0.6347749924714103, 0.41894393066564606, 0.06936532322770372, 0.28322834609079706, 0.343263893078516, 0.4450860003239352, 0.3090838478611311, 0.408095736797927, 0.11529682880263803, 0.13359771811640497, 0.2417229185475579, 0.10092265889692065, 0.8181934133883563, 0.3777834313813965, 0.8273808576462511, 0.18439353202429143, 0.5148786056082297, 0.11287077888712382, 0.16015059460472458, 0.29672938182784603, 0.36944561074938853, 0.2505850522824452, 0.8467591712977676, 0.3840267097226593, 0.261779448872241, 0.1645479955558209, 0.14631295673285594, 0.4248523287309329, 0.09222807982804315, 0.2121484308544801, 0.33273366741371935, 0.5470626312455473, 0.8294144697045585, 0.25206662215500397, 0.15998368749433245, 0.548322128117227, 0.3917329141436472, 0.15981565308588508, 0.23631147082452741, 0.21082920466209698, 0.1871387197916503, 0.24774693401855818, 0.1913242313933492, 0.16437448769677154, 0.07582203648947516, 0.032541140295091364, 0.06311143057978008, 0.5009235508757715, 0.12343879567504301, 0.445735807756371, 0.40322837553658053, 0.09397553936597514, 0.1598391281143201, 0.26702494168661406, 0.19782301216908982, 0.06831823449824892, 0.5451167746582685, 0.20142160156100697, 0.25747632252511843, 0.4257317671215596, 0.5062318064185062, 0.10278357133077332, 0.10857266292312517, 0.06223864817381186, 0.11377411494697365, 0.14082424186384768, 0.2589321903149734, 0.31776639873426016, 0.07983414941561229, 0.30174211068680845, 0.42532907678292176, 0.23734670470511587, 0.2862296469110084, 0.24790288035387664, 0.5526146374040077, 0.20425399436950087, 0.5166825128498294, 0.12415322942140417, 0.5310696157212036, 0.3866387435262121, 0.14313186082947948, 0.31648660326859934, 0.026792916001305622, 0.7856428374245099, 0.42383310375799566, 0.5944566396871084, 0.6256605001243821, 0.08813642250468567, 0.03544811528140901, 0.06935406654889886, 0.15751976448865512, 0.22608551288474832, 0.3127311228465576, 0.1409438166611655, 0.3285615524533705, 0.3591330499592894, 0.47964497307801546, 0.7143146030302826, 0.14223944449319303, 0.06929054967731618, 0.32120711190509066, 0.16913647442041335, 0.707286257884667, 0.3230684446475647, 0.7616845263358343, 0.4104900542879092, 0.10053249234255524, 0.1106599594415556, 0.1543174595222413, 0.46003879185641183, 0.3811350878514418, 0.07185070571861518, 0.23882593985771994, 0.5344976262521839, 0.11031385635331636, 0.09610989844306939, 0.4955559099445003, 0.07845190603324759, 0.30697262074812925, 0.12767551958037127, 0.4375661224395835, 0.07737023387634634, 0.15307682457740834, 0.05694427046787409, 0.09028836937410878, 0.4011292297732457, 0.6186146927451245, 0.11561676905211238, 0.0993047499370594, 0.08102401279833105, 0.8100206966555492, 0.10768932514586738, 0.15386113005635593, 0.4026560765644126, 0.045535707525545144, 0.08229583319403, 0.08227601457953415, 0.8241544781987433, 0.0759900855540333, 0.5147505197509459, 0.11103147778198663, 0.42144961755966015, 0.24880465403270857, 0.3112403223054312, 0.3282460941643247, 0.28312386083977936, 0.2865521931047814, 0.16537364909659502, 0.4284132019637321, 0.34116073112729894, 0.051142721309942685, 0.10794707492381372, 0.1108646816717751, 0.29201805921023904, 0.07365131996157204, 0.36851051207096197, 0.2556143611338999, 0.07392456180697715, 0.045535707525545144, 0.15025986810093994, 0.4395989822566938, 0.19636656988846957, 0.21018464628148859, 0.15085686628779282, 0.3429118439192298, 0.16104008564300487, 0.2055862423584408, 0.18673310211333727, 0.5528531989583015, 0.20219789553586287, 0.5807830339134155, 0.6112381610839525, 0.07515362639458067, 0.5722084734915175, 0.3654892991508686, 0.1991057466826236, 0.4912569401667811, 0.05850610073101081, 0.3077884117234785, 0.17038242498240874, 0.14066607718466684, 0.10248584652416493, 0.4022873718442217, 0.07205214632436985, 0.35142291824287475, 0.10941760034103376, 0.06679271580157364, 0.05675388891699207, 0.058987921856350156, 0.3660303223369904, 0.28790374422385034, 0.4158290962648631, 0.40710291595796666, 0.09934102670994882, 0.06362846635195196, 0.30921476208988685, 0.23242198019285765, 0.055541210656895434, 0.5297663836663529, 0.10744632778983743, 0.18410212910939194, 0.17721960751489196, 0.1962664672709783, 0.1617648996714035, 0.10584426414108294, 0.5203501665477333, 0.07365131996157204, 0.31578819840495265, 0.35364190165315845, 0.1707951928721818, 0.41655733121321636, 0.15801546378512366, 0.7568436608419439, 0.22368578646300386, 0.0609449253562836, 0.2225096762928218, 0.18587673368692093, 0.05559101133196209, 0.569598540521716, 0.08073228430722412, 0.15724041301590164, 0.12879141548479, 0.4306817897420764, 0.17998791969802397, 0.41280880088413996, 0.5723062335690389, 0.6457404130724687, 0.10420061808672998, 0.12564769853034463, 0.21795029564941848, 0.4720930498870375, 0.11304202998506685, 0.545112257205237, 0.14852188644910969, 0.17217029085021085, 0.336250902618187, 0.48671482860553816, 0.5093433434984792, 0.35847801144896685, 0.3008706318705062, 0.18494609259573758, 0.4199330463236065, 0.04162287990776414, 0.2633909944023186, 0.4252182303976608, 0.4684623303117058, 0.1925553058603695, 0.09610989844306939, 0.09129843496680234, 0.3302708189676917, 0.4199330463236065, 0.11927294568859859, 0.4864154015695107, 0.06472081497616611, 0.6387929002666255, 0.37932906694235924, 0.093713747684541, 0.20627971812824875], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (curr)\", \"type\": \"scatter\", \"x\": [0.49, 0.12, 0.36, 0.29, 0.4, 0.4, 0.18, 0.04, 0.24, 0.65, 0.25, 0.39, 0.4, 0.26, 0.45, 0.36, 0.32, 0.49, 0.34, 0.07, 0.39, 0.13, 0.36, 0.64, 0.37, 0.31, 0.3, 0.23, 0.29, 0.74, 0.79, 0.2, 0.0, 0.17, 0.33, 0.21, 0.32, 0.11, 0.19, 0.06, 0.29, 0.2, 0.74, 0.29, 0.32, 0.25, 0.24, 0.25, 0.29, 0.35, 0.54, 0.26, 0.49, 0.22, 0.1, 0.23, 0.01, 0.49, 0.29, 0.2, 0.49, 0.34, 0.18, 0.4, 0.21, 0.06, 0.59, 0.0, 0.0, 0.03, 0.02, 0.25, 0.14, 0.26, 0.35, 0.28, 0.46, 0.52, 0.21, 0.3, 0.34, 0.18, 0.2, 0.33, 0.49, 0.27, 0.3, 0.34, 0.13, 0.36, 0.49, 0.26, 0.41, 0.42, 0.01, 0.0, 0.49, 0.19, 0.08, 0.55, 0.45, 0.32, 0.36, 0.11, 0.32, 0.09, 0.04, 0.0, 0.26, 0.41, 0.06, 0.5, 0.02, 0.29, 0.28, 0.34, 0.22, 0.24, 0.45, 0.08, 0.2, 0.28, 0.26, 0.17, 0.13, 0.18, 0.32, 0.38, 0.13, 0.37, 0.41, 0.32, 0.42, 0.49, 0.28, 0.62, 0.24, 0.17, 0.2, 0.2, 0.39, 0.49, 0.33, 0.42, 0.44, 0.28, 0.39, 0.23, 0.26, 0.23, 0.0, 0.22, 0.42, 0.19, 0.27, 0.24, 0.25, 0.44, 0.22, 0.42, 0.36, 0.47, 0.35, 0.48, 0.08, 0.26, 0.29, 0.46, 0.34, 0.38, 0.38, 0.32, 0.26, 0.28, 0.21, 0.0, 0.24, 0.35, 0.27, 0.35, 0.36, 0.23, 0.49, 0.1, 0.34, 0.32, 0.3, 0.22, 0.49, 0.22, 0.03, 0.46, 0.3, 0.28, 0.62, 0.21, 0.27, 0.1, 0.39, 0.3, 0.02, 0.26, 0.2, 0.4, 0.28, 0.36, 0.42, 0.59, 0.16, 0.69, 0.49, 0.23, 0.08, 0.4, 0.49, 0.24, 0.28, 0.33, 0.86, 0.24, 0.56, 0.25, 0.43, 0.41, 0.37, 0.14, 0.49, 0.29, 0.34, 0.34, 0.2, 0.34, 0.25, 0.35, 0.11, 0.48, 0.33, 0.31, 0.42, 0.33, 0.18, 0.02, 0.39, 0.32, 0.33, 0.12, 0.37, 0.3, 0.48, 0.01, 0.31, 0.2, 0.32, 0.62, 0.25, 0.36, 0.32, 0.23, 0.23, 0.33, 0.14, 0.22, 0.74, 0.74, 0.33, 0.36, 0.24, 0.38, 0.34, 0.44, 0.31, 0.12, 0.74, 0.42, 0.49, 0.25, 0.26, 0.34, 0.07, 0.47, 0.1, 0.25, 0.38, 0.0, 0.18, 0.37, 0.3, 0.26, 0.49, 0.38, 0.35, 0.07, 0.24, 0.06, 0.33, 0.39, 0.16, 0.38, 0.44, 0.39, 0.28, 0.65, 0.54, 0.56, 0.24, 0.06, 0.48, 0.29, 0.46, 0.26, 0.18, 0.19, 0.44, 0.41, 0.33, 0.74, 0.26, 0.49, 0.29, 0.1, 0.68, 0.08, 0.24, 0.27, 0.13, 0.53, 0.2, 0.49, 0.45, 0.14, 0.06, 0.29, 0.39, 0.4, 0.21, 0.41, 0.28, 0.04, 0.25, 0.32, 0.15, 0.49, 0.25, 0.27, 0.49, 0.3, 0.41, 0.49, 0.25, 0.4, 0.28, 0.3], \"xaxis\": \"x2\", \"y\": [0.18579927887031134, 0.9274202256360236, 0.2569067617886446, 0.17851375722123963, 0.43011516789686843, 0.3951880410340851, 0.35333307802371594, 0.854899199395705, 0.7749695319329993, 0.7150752736216004, 0.5793836726576811, 0.17187478758168062, 0.503776006633781, 0.6517104478925241, 0.5321166645488455, 0.4291031613352281, 0.6295132227815239, 0.446367751604861, 0.12978626497489776, 0.578130474122496, 0.1303225049324246, 0.4589423036505589, 0.6028673022099313, 0.6724998803801079, 0.055171077290688375, 0.28900585249094113, 0.5807441942986169, 0.6324527530146118, 0.32780881811994433, 0.4437792729685527, 0.47375733914823626, 0.6755390392614542, 0.8494338455743565, 0.8432302027568838, 0.3962269303969661, 0.36574887203466033, 0.9780529644634413, 0.6757083557066426, 0.43212531492562845, 0.6428319532862445, 0.2244465690609686, 0.6759712108962084, 0.300575337785698, 0.4848467547623382, 0.24353241802821812, 0.6165640897352094, 0.801889943514816, 0.6831580296641933, 0.4684052737322374, 0.07309555507266852, 0.17397747102053363, 0.548208100621717, 0.16948307959681597, 0.5287139706981401, 0.8097217619362252, 0.48186532860504816, 0.7044722268129955, 0.5458559966555334, 0.6067015953642416, 0.5767206748937392, 0.5416109283549078, 0.7766135747357961, 0.6371580804073698, 0.3290646799011723, 0.53941953634433, 0.7444876216695655, 0.27658524567301757, 0.8518717737266248, 0.685064206005921, 0.7994946846943811, 0.6254668451144636, 0.29898447003196504, 0.36566585814722175, 0.8260679099411251, 0.265003746926769, 0.18277705216857454, 0.6401445853260315, 0.2878944788643705, 0.7379395090268356, 0.6578861964269485, 0.3048731186933995, 0.6479177870210828, 0.5479007895539181, 0.8109237991420157, 0.4555798348891207, 0.35159410271621183, 0.6741813074403022, 0.40366163192193316, 0.3797333752177462, 0.42326140605337403, 0.49450075158901585, 0.7027754368270075, 0.31556666432085356, 0.5737052492708005, 0.5594846166878963, 0.9879213229528466, 0.23907110553933086, 0.7604887601700165, 0.906894853259191, 0.49150798334893764, 0.6693239074263375, 0.635181004157038, 0.4291031613352281, 0.6805197940362542, 0.8579270215873258, 0.42231028799440284, 0.7973836574204367, 0.6209099995125147, 0.617932351579841, 0.5867531689564582, 0.8217385626893267, 0.5766058512754557, 0.6085190813519714, 0.6488649586424557, 0.19466062481522506, 0.4062994677131635, 0.31500574198466447, 0.6106996692323751, 0.48314991346809855, 0.4300926711133176, 0.4623912750166579, 0.18141675383529432, 0.7404949196358439, 0.7960551628311661, 0.6696955469146251, 0.7471897031921468, 0.15222801432328747, 0.4782875749995391, 0.6696955469146251, 0.4617114467660769, 0.0374236133971757, 0.34638250956587036, 0.5737052492708005, 0.35412183815676124, 0.5342599897609015, 0.6273126624389191, 0.1819914526651868, 0.6450640502472667, 0.7576359910572065, 0.6363669366758954, 0.35783776888428775, 0.4555798348891207, 0.2603691587203709, 0.09638465351539516, 0.7889843001267657, 0.3995975535535492, 0.2404138117262561, 0.5134503976671381, 0.7620160241108803, 0.4852174766770502, 0.7934067722809752, 0.5657371707019572, 0.40591517497640706, 0.5142806824729376, 0.4667389755277017, 0.4597803030361328, 0.14211531046105408, 0.4709774325404933, 0.39253304933110444, 0.8152160844894966, 0.6418608562675732, 0.5695619245525361, 0.15898796250578873, 0.4189913516486339, 0.8097376625536354, 0.2776505479619531, 0.14100712613869515, 0.1625374057836978, 0.21879614767173305, 0.26016804821119, 0.5884346274074399, 0.25171266030158634, 0.5556828679884147, 0.2886326125606653, 0.5013044750460076, 0.23728971353361283, 0.6280660923097139, 0.6281218947904323, 0.6226708394296439, 0.1280348372312241, 0.37812375401711507, 0.6218606462016874, 0.446367751604861, 0.5237591509200082, 0.22560064672115399, 0.4159575064805634, 0.43989745285902637, 0.38133093816728936, 0.379388299643832, 0.4244201113870294, 0.8495234946343055, 0.44699506619782237, 0.3402560380560977, 0.16997778820688525, 0.6509841470756508, 0.5589353890471914, 0.49320900326902484, 0.41485179365651337, 0.2850172536812061, 0.5150740024049856, 0.7905789411902706, 0.6660097546858721, 0.5916856454756931, 0.25029771644034415, 0.21820707607863943, 0.23625780462752244, 0.6174344585079109, 0.33885175059010386, 0.8097775874289167, 0.5502791542248897, 0.45232673966787307, 0.5168725346003686, 0.4922951659433321, 0.2710495410551712, 0.5620189509382074, 0.19827785442852286, 0.35653263682836045, 0.4940220265254579, 0.3934632807735441, 0.349631294967786, 0.6543252873397565, 0.6043841099981286, 0.6572212454398962, 0.5323595728841377, 0.4667716613599331, 0.5480891857555714, 0.5933716837007499, 0.5769442381274095, 0.7796710482718338, 0.4721284230669528, 0.5632051337005155, 0.25606657060722404, 0.47304849589761655, 0.4991199345133047, 0.785831825438318, 0.5512091114854263, 0.31651464458218903, 0.192246895102814, 0.5737052492708005, 0.14970485751781393, 0.8257882443178004, 0.7450862811651306, 0.2404138117262561, 0.3428275867057816, 0.2186811050870735, 0.43730933466596944, 0.1325711740116582, 0.33994853494016564, 0.5172250338280965, 0.4543852880840521, 0.6017244994332274, 0.7267617626256621, 0.304103470637073, 0.49511795227452726, 0.4577650902534979, 0.4389063253281036, 0.3428275867057816, 0.6911248892501751, 0.5457123873353599, 0.3395528272139201, 0.5662837862370104, 0.38281068028313525, 0.1899488449656659, 0.1899488449656659, 0.39416742153886597, 0.4473524415330049, 0.5724944828663213, 0.12652799787397961, 0.14917046216496987, 0.4192276293132746, 0.1727250451072272, 0.7329347521090118, 0.2979855805324535, 0.5384433083808008, 0.2944152049751758, 0.5661013076544325, 0.39283078357423706, 0.6503174362647687, 0.7632350838020857, 0.29422440231251745, 0.8446099855685041, 0.3812461384129847, 0.1264117171095669, 0.6995051325026098, 0.7680829457938805, 0.1086082602083136, 0.50228427853815, 0.8303888649041977, 0.15145052047802054, 0.5239967242043768, 0.49461569007297057, 0.7323984730128237, 0.6372335578763709, 0.8485373319296128, 0.21018203617182263, 0.3854703692354019, 0.6209619763202376, 0.6996467359659702, 0.3913887983225227, 0.600932061108284, 0.18141675383529432, 0.32841971343371723, 0.17397747102053363, 0.3943097935149382, 0.5998672378660981, 0.6052803835931642, 0.35501406908939237, 0.4362847089434372, 0.6005057903956104, 0.45095984485898877, 0.5601124581139871, 0.6908342266509375, 0.29066967723125237, 0.5437491575180791, 0.5955595524057149, 0.4226516353037165, 0.552222307965348, 0.5038457784615318, 0.6752568781943777, 0.7880730680059006, 0.09430965090665133, 0.4986183600001317, 0.24112389044610405, 0.3635071851353404, 0.7047195247497422, 0.5251048099479148, 0.5632051337005155, 0.4520037684813636, 0.5271857161160298, 0.36566585814722175, 0.8775119234978208, 0.49474741138534273, 0.17187478758168062, 0.1069918390347242, 0.6371627391106971, 0.19018032574493748, 0.34352259564225396, 0.806114950115292, 0.47304849589761655, 0.5014153035286022, 0.6721952796384192, 0.7507248720260316, 0.38512814216859315, 0.8930847268109882, 0.863224561659591, 0.15108072818859253, 0.7399796913917198, 0.18579927887031134, 0.47304849589761655, 0.2033384066370545, 0.43667652058029827, 0.23252054766636898], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [0.19, 0.38, 0.42, 0.21, 0.23, 0.27, 0.29, 0.25, 0.31, 0.12, 0.24, 0.35, 0.25, 0.23, 0.39, 0.34, 0.0, 0.31, 0.24, 0.34, 0.3, 0.31, 0.35, 0.39, 0.28, 0.49, 0.38, 0.28, 0.32, 0.3, 0.29, 0.27, 0.37, 0.34, 0.23, 0.99, 0.27, 0.37, 0.33, 0.02, 0.34, 0.33, 0.49, 0.3, 0.42, 0.09, 0.29, 0.18, 0.33, 0.37, 0.17, 0.39, 0.44, 0.41, 0.31, 0.44, 0.56, 0.0, 0.31, 0.68, 0.09, 0.26, 0.36, 0.27, 0.29, 0.33, 0.38, 0.33, 0.06, 0.34, 0.34, 0.28, 0.28, 0.24, 0.29, 0.19, 0.24, 0.28, 0.3, 0.49, 0.4, 0.33, 0.41, 0.27, 0.34, 0.29, 0.39, 0.24, 0.49, 0.34, 0.26, 0.49, 0.26, 0.28, 0.3, 0.28, 0.4, 1.23, 0.52, 0.08, 0.44, 0.27, 0.23, 0.24, 0.34, 0.09, 0.24, 0.32, 0.42, 0.29, 0.0, 0.28, 0.3, 0.27, 0.25, 0.53, 0.22, 0.27, 0.25, 0.39, 0.23, 0.36, 0.27, 0.47, 0.1, 0.46, 0.26, 0.46, 0.4, 0.35, 0.38, 0.34, 0.28, 0.27, 0.49, 0.58, 0.34, 0.38, 0.27, 0.29, 0.45, 0.03, 0.69, 0.37, 0.26, 0.33, 0.56, 0.32, 0.3, 0.34, 0.29, 0.33, 0.31, 0.61, 0.34, 0.35, 0.38, 0.32, 0.4, 0.39, 0.39, 0.24, 0.24, 0.91, 0.49, 0.36, 0.35, 0.05, 0.4, 0.81, 0.3, 0.4, 0.28, 0.4, 0.47, 0.3, 0.17, 0.38, 0.26, 0.39, 0.3, 0.25, 0.36, 0.49, 0.32, 0.15, 0.24, 0.24, 0.36, 0.33, 0.32, 0.26, 0.32, 0.45, 0.28, 0.28, 0.32, 0.22, 0.56, 0.26, 0.36, 0.25, 0.42, 0.52, 0.5, 0.3, 0.41, 0.73, 0.3, 0.41, 0.29, 0.34, 0.24, 0.45, 0.52, 0.29, 0.38, 0.24, 0.4, 0.4, 0.49, 0.29, 0.14, 0.42, 0.5, 0.2, 0.32, 0.3, 0.45, 0.26, 0.21, 0.4, 0.39, 0.36, 0.24, 0.38, 0.24, 0.18, 0.31, 0.49, 0.35, 0.32, 0.36, 0.34, 0.2, 0.5, 0.27, 0.31, 0.34, 0.11, 0.32, 0.28, 0.44, 0.29, 0.37, 0.26, 0.74, 0.3, 0.4, 0.31, 0.02, 0.31, 0.34, 0.19, 0.27, 0.36, 0.42, 0.2, 0.42, 0.46, 0.27, 0.32, 0.32, 0.59, 0.34, 0.16, 0.49, 0.32, 0.26, 0.1, 0.53, 0.27, 0.52, 0.15, 0.32, 0.49, 0.28, 0.31, 0.07, 0.27, 0.5, 0.44, 0.28, 0.26, 0.3, 0.3, 0.48, 0.3, 0.36, 0.32, 0.29, 0.44, 0.47, 0.26, 0.36, 0.46, 0.3, 0.35, 0.39, 0.3, 0.27, 0.31, 0.08, 0.61, 0.25, 0.29, 0.4, 0.34, 0.49, 0.33, 0.28, 0.27, 0.29, 0.49, 0.37, 0.34, 0.25, 0.52, 0.58, 0.3, 0.02, 0.32, 0.0, 0.32, 0.69, 0.3, 0.42, 0.28, 0.44, 0.3, 0.31, 0.33, 0.49, 0.0, 0.08, 0.28, 0.3, 0.38, 0.49, 0.27, 0.49, 0.38, 0.32, 0.61, 0.22, 0.31, 0.25, 0.26, 0.38, 0.08, 0.29, 0.24, 0.49, 0.46, 0.43, 0.49, 0.2, 0.49, 0.41, 0.33, 0.32, 0.29, 0.4, 0.38, 0.49, 0.09, 0.37, 0.29, 0.08, 0.0, 0.27, 0.43, 0.31, 0.42, 0.39, 0.41, 0.42, 0.31, 0.11, 0.24, 0.22, 0.24, 0.45, 0.39, 0.35, 0.02, 0.39, 0.54, 0.15, 0.37, 0.42, 0.24, 0.28, 0.71, 0.27, 0.33, 0.29, 0.26, 0.28, 0.27, 0.37, 0.36, 0.49, 0.71, 0.24, 0.12, 0.38, 0.34, 0.27, 0.24, 0.25, 0.36, 0.47, 0.18, 0.54, 0.26, 0.41, 0.22, 0.29, 0.5, 0.27, 0.32, 0.38, 0.33, 0.3, 0.25, 0.38, 0.36, 0.33, 0.3, 0.3, 0.01, 0.29, 0.23, 0.38, 0.45, 0.01, 0.2, 0.19, 0.18, 0.3, 0.08, 0.26, 0.21, 0.28, 0.2, 0.31, 0.28, 0.32, 0.32, 0.3, 0.32, 0.25, 0.29, 0.31, 0.29, 0.49, 0.3, 0.33, 0.0, 0.2, 0.36, 0.2, 0.27, 0.48, 0.3, 0.2, 0.39, 0.18, 0.34, 0.23, 0.34, 0.49, 0.45, 0.38, 0.49, 0.3, 0.29, 0.1, 0.0, 0.4, 0.4, 0.39, 0.33, 0.33, 0.47, 0.42, 0.31, 0.39, 0.55, 0.41, 0.38, 0.3, 0.18, 0.24, 0.2, 0.18, 0.24, 0.43, 0.43, 0.32, 0.34, 0.28, 0.29, 0.38, 0.31, 0.31, 0.53, 0.49, 0.37, 0.33, 0.2, 0.33, 0.26, 0.4, 0.27, 0.26, 0.36, 0.35, 0.53, 0.07, 0.26, 0.36, 0.53, 0.45, 0.22, 0.66, 0.33, 0.0, 0.29, 0.32, 0.3, 0.48, 0.28, 0.37, 0.32, 0.45, 0.4, 0.24, 0.3, 0.58, 0.3, 0.21, 0.37, 0.3, 0.19, 0.21, 0.32, 0.51, 0.27, 0.26, 0.33, 0.3, 0.42, 0.3, 0.24, 0.26, 0.3, 0.39, 0.27, 0.31, 0.26, 0.29, 1.0, 0.36, 0.31, 0.38, 0.28, 0.25, 0.35, 0.2, 0.51, 0.47, 0.22, 0.31, 0.5, 0.18, 0.45, 0.15, 0.14, 0.03, 0.32, 0.36, 0.23, 0.16, 0.49, 0.26, 0.36, 0.34, 0.3, 0.21, 0.58, 0.43, 0.26, 0.36, 0.27, 0.42, 0.49, 0.26, 0.35, 0.04, 0.4, 0.28, 0.28, 0.26, 0.25, 0.27, 0.31, 0.29, 0.54, 0.28, 0.26, 0.28, 0.28, 0.18, 0.26, 0.29, 0.38, 0.65, 0.32, 0.0, 0.68, 0.36, 0.34, 0.31, 0.35, 0.46, 0.24, 0.41, 0.24, 0.3, 0.49, 0.24, 0.22, 0.31, 0.37, 0.29, 0.34], \"xaxis\": \"x2\", \"y\": [0.6660328535674787, 0.4955559099445003, 0.11251030999551548, 0.5313240922219649, 0.7616845263358343, 0.42881839881496897, 0.22146723198036844, 0.2709448900825402, 0.04188686298684474, 0.3198999677935893, 0.586632325439729, 0.3332859260788763, 0.0891770245136605, 0.07249138429342028, 0.0813041402249215, 0.2808128557304226, 0.18155424903412543, 0.14020593233116785, 0.20529540916933675, 0.1755850319354616, 0.5722846846512241, 0.4684623303117058, 0.2863708053899042, 0.4489302200945696, 0.3606737334686688, 0.09834172337505831, 0.1439119889738254, 0.10526388551166177, 0.08976738859769384, 0.15927641460572795, 0.07353544332944184, 0.4894096639868448, 0.24735122968283396, 0.41440459167745447, 0.10107859516115147, 0.4809249647595707, 0.043928674649753696, 0.27268427565697984, 0.07203278686513981, 0.35989685204578803, 0.08410225657903847, 0.09640449279894714, 0.2859044620344169, 0.766491644508495, 0.27194216744256416, 0.11891721880979944, 0.6033870782914414, 0.8445823904457724, 0.4148378249676725, 0.09538880480821377, 0.5822786697287807, 0.2006236885231063, 0.30215903380660414, 0.3526626332448971, 0.22921561702294402, 0.3499358724503807, 0.451050436906263, 0.01968005574460141, 0.3849224947932618, 0.608666907839271, 0.30333177217190177, 0.05732515971384944, 0.08299070223644744, 0.155374347961305, 0.4378217303747408, 0.10641916767178827, 0.3207785913922725, 0.3280003244598044, 0.4747408725557203, 0.27229542413121455, 0.5314247042003052, 0.13834506443323813, 0.652508483608137, 0.1775869136191267, 0.4659209431511335, 0.3288332341233703, 0.47224603889779837, 0.2773569186284155, 0.18590272545123854, 0.6719763059805124, 0.04569198037744582, 0.22473444069733528, 0.0776074933333939, 0.1411968215808168, 0.3654892991508686, 0.06069899520469324, 0.21029328672965164, 0.13919371635861133, 0.16321149678759816, 0.6144435769482088, 0.1388055550317996, 0.0827658987104557, 0.0793107693477757, 0.04994940743047871, 0.46220165202879504, 0.08265172102971341, 0.5554564865761329, 0.10902951494304747, 0.26480674198345266, 0.31816712550642645, 0.20184400370343658, 0.23734670470511587, 0.19264674509953905, 0.03558879485690103, 0.5314247042003052, 0.3013473679880785, 0.8043030592862955, 0.07665185966197174, 0.17816243980233548, 0.14637302723887635, 0.43623195291339645, 0.5773286546676725, 0.06996409198491005, 0.0635191394270278, 0.11839391684253864, 0.03368970372860669, 0.16544292122901683, 0.5002106013252752, 0.20783967621931676, 0.4413184352618238, 0.1377753535318076, 0.017128038770129694, 0.09070427960766203, 0.05237321155563324, 0.46044782253877736, 0.09863911308639095, 0.6058955548956951, 0.07377868677997379, 0.33726125667837825, 0.03705661785513226, 0.03856885477325478, 0.01970319875133708, 0.06623921298607705, 0.655672818127978, 0.36403826442427, 0.375635621083512, 0.25822104517587474, 0.26990817233175546, 0.30316845466795117, 0.21597661143113533, 0.10411587283779344, 0.4582573305440075, 0.28974208538397184, 0.3995654588450376, 0.48407929824265805, 0.2412117545349558, 0.49704114689177337, 0.3112403223054312, 0.13571503940671914, 0.35304273602320047, 0.18963603484652192, 0.06023564559469896, 0.305863422303413, 0.34062746964654456, 0.03532029949184434, 0.20200996882548472, 0.207876095289533, 0.11304202998506685, 0.26487496820305634, 0.46674395287949066, 0.05931266843465788, 0.6063731497207538, 0.053339747820140615, 0.16056749669580483, 0.3366557342021428, 0.18735912995827353, 0.2667542380283816, 0.9197592959547904, 0.13322255285490225, 0.3533185668595151, 0.08763312389948397, 0.343329095265401, 0.1298321532292276, 0.11240742021865013, 0.03412749239977686, 0.23316671381479437, 0.13955591125269062, 0.065615492475942, 0.03940539431326806, 0.04874684240881699, 0.42507109047861347, 0.3720756994829524, 0.20627971812824875, 0.23346983492740092, 0.299872058778726, 0.14688925552714138, 0.20529540916933675, 0.11294333341234963, 0.4523771212155355, 0.15895981664313275, 0.12633289347617382, 0.34801013400503944, 0.063056887931354, 0.09222807982804315, 0.19281104432210028, 0.11843845992675284, 0.1064686731970873, 0.12171087020281346, 0.49704114689177337, 0.4202798549667376, 0.058322454167927695, 0.40418598015134155, 0.7514842711311043, 0.067978575311199, 0.1468497162592186, 0.3655805321171328, 0.36741292271676196, 0.08785516413846428, 0.4223454464089015, 0.09472348251934337, 0.14196098925812006, 0.10013555988874479, 0.32154631204965056, 0.05416575683382341, 0.786126361492164, 0.04696516601190348, 0.26926088858349784, 0.28123172687107445, 0.3094364396730669, 0.04307250962973752, 0.07126159086244754, 0.6143015945908075, 0.495586079448059, 0.46102608015166635, 0.40789311683600216, 0.8929715185951024, 0.1227006502272181, 0.3638055988942468, 0.10470002869891348, 0.29304213908849364, 0.8936703981375603, 0.3534407380188983, 0.0883666731866185, 0.07895584641700149, 0.05166417783587085, 0.4199775765299997, 0.10304865631077798, 0.1041340676595982, 0.11031385635331636, 0.22368578646300386, 0.22137255536682798, 0.0725394352715707, 0.08320759746190642, 0.3577905591727162, 0.36362749207413336, 0.13058702032609693, 0.4306817897420764, 0.4684623303117058, 0.3185463047756948, 0.6991046594229053, 0.33105510290791684, 0.35804773811787727, 0.3499358724503807, 0.17780319308126435, 0.07142366539796174, 0.1504846162366139, 0.28643330026545544, 0.11492102279820171, 0.08716328114311156, 0.12905574960179156, 0.5528531989583015, 0.2852168598030531, 0.3185463047756948, 0.41766807389819915, 0.22818770291371737, 0.10749415552266317, 0.07500089027222667, 0.2150933620687273, 0.4879833184669665, 0.21367083697314282, 0.18281788227943807, 0.11217648511765432, 0.01860460444149037, 0.4990100838788346, 0.3212979959143686, 0.7252893191599291, 0.30018855716775616, 0.2808216200321265, 0.24332849241566534, 0.22583693263898685, 0.307128141019565, 0.12930297020615966, 0.07734813107736227, 0.38078614076753503, 0.037937415915298756, 0.18389331462546077, 0.2015421194948802, 0.10121634311933059, 0.7209948827487924, 0.252131738577411, 0.19866278493931944, 0.5569604587758099, 0.19172534874952063, 0.07516041810443141, 0.18673310211333727, 0.20736440356309183, 0.27568985010185776, 0.1748501221961516, 0.134246332983591, 0.12151400729184814, 0.03860330573341564, 0.16198960071610413, 0.062309112953929935, 0.14943540958877521, 0.46827469198568006, 0.12435295831370408, 0.11768791031746062, 0.10794707492381372, 0.04347111427796346, 0.07423675680829, 0.1602542791395647, 0.19911642350143877, 0.2379444352717226, 0.36664322039668684, 0.10130143557253446, 0.17108028607870185, 0.6143194513817134, 0.5641235853966853, 0.29864316680665437, 0.44752301946823647, 0.13459844499503626, 0.037461465199631894, 0.5002964248569376, 0.4059565893810353, 0.7035957096210382, 0.0629603198376949, 0.25036415064992923, 0.14780834332950044, 0.24800647860056513, 0.10438723399855232, 0.24366911510822187, 0.4574644219698093, 0.8347014835967527, 0.42226245660703365, 0.4073158502222598, 0.47525484003715535, 0.37845934883934684, 0.35325777167774697, 0.4763432908647238, 0.18941100564626978, 0.23853527246002126, 0.27277355193056574, 0.5556171757583562, 0.19481513110659687, 0.7460207524242459, 0.12627308236197843, 0.2115813466591615, 0.4773837842994688, 0.22238536240250728, 0.1978655273089749, 0.32057959349203036, 0.1601330373243487, 0.6256605001243821, 0.34062746964654456, 0.5899158924001677, 0.1273375405407705, 0.6866376712310945, 0.3812864953771038, 0.07918534602430627, 0.10510921928053807, 0.052405178286905496, 0.29010285216427345, 0.5802968836962079, 0.4475494904811408, 0.33107045093633036, 0.6046547135519548, 0.33132995382553565, 0.3391582818855403, 0.37109937806185267, 0.18876467901964422, 0.03244681540368277, 0.6531311156123596, 0.18281848038190407, 0.06840545126676123, 0.23876166598551407, 0.5602062902528231, 0.05478334190217349, 0.18965009362393503, 0.502081053312289, 0.0945975060483667, 0.24937367783354814, 0.14040338921272166, 0.09582424632391484, 0.4879833184669665, 0.07536550594022651, 0.37763546052463404, 0.20240400638142053, 0.06234715971662652, 0.1729504208160284, 0.2536573606029918, 0.1491704939138675, 0.47224603889779837, 0.20734784509414073, 0.1656619584420439, 0.20263687678412212, 0.4576701693643329, 0.3746187330143109, 0.06578487521364562, 0.09359041291034786, 0.15714155813810793, 0.43198081216185935, 0.17693664965610134, 0.14200602748771296, 0.16878839641400256, 0.11131318694256087, 0.43040972974554736, 0.12494266711040569, 0.5286591337585229, 0.3917329141436472, 0.14284790216410748, 0.29931895876037384, 0.3998656181534954, 0.13198036366642862, 0.2166851793268345, 0.164669749255824, 0.3116999397838065, 0.5702002297218003, 0.2867818412254799, 0.05809024612643199, 0.0701620515557333, 0.10493669218879953, 0.03474255021640338, 0.14069518845012563, 0.7697788668098057, 0.44513161239284327, 0.12104291767226882, 0.2823656727566666, 0.28640273091276736, 0.09904459769556595, 0.10889384421684001, 0.1978655273089749, 0.6326587477498924, 0.0766186874204361, 0.07300117689776386, 0.3978521493117628, 0.7293533971641823, 0.24040337450518035, 0.46827469198568006, 0.03737110954461231, 0.48112847828662497, 0.5755848065786346, 0.12151472907643468, 0.332302417201758, 0.3208349144509022, 0.13406270144296106, 0.47820199098358873, 0.024219732643774528, 0.7923035912680444, 0.3099424932714111, 0.8494816644677875, 0.15230116664989468, 0.8795672599938588, 0.34536882843285344, 0.587897812361327, 0.3660303223369904, 0.3074082248441362, 0.1925553058603695, 0.1582957933341015, 0.5297945963993664, 0.1892543681582496, 0.06574637766643598, 0.03286461121245521, 0.6223124217546917, 0.48666930315350876, 0.17200815643270417, 0.27042696199957883, 0.16010429726024444, 0.25291734909108765, 0.22778758435893687, 0.6055190518965303, 0.41989528411161425, 0.2865861541738164, 0.17344095530188786, 0.4163761941495938, 0.24610426408478792, 0.029106329843254564, 0.5849270471051293, 0.09607886499379148, 0.4890296174547498, 0.11193395874659995, 0.3667485749721523, 0.29672938182784603, 0.13696827462710404, 0.03986507081677082, 0.41542023534722683, 0.1642424989032959, 0.041559354155004224, 0.1266666793707928, 0.5259198205822933, 0.42123490919744344, 0.6147437654518444, 0.42849246998341506, 0.04874684240881699, 0.16870816563337898, 0.35179373534084035, 0.4552463954734379, 0.1543174595222413, 0.4641274821418986, 0.1106599594415556, 0.40441066041397966, 0.05916303638108533, 0.24194101851814365, 0.5755848065786346, 0.23631147082452741, 0.04679471849088612, 0.33132995382553565, 0.6031606095022326, 0.16900214819844117, 0.9322526967181247, 0.1065938389205352, 0.0540586741766943, 0.14920224829950646, 0.03054451782098533, 0.13595064656866984, 0.15908339514281045, 0.09402391562754642, 0.27219479721363327, 0.10477531970828624, 0.6046547135519548, 0.04412971358840656, 0.0821245873848182, 0.24953715645213048, 0.24311299470472425, 0.679537413518331, 0.02875041056121841, 0.2874129658970298, 0.17131102264191878, 0.07042427222914205, 0.1577516063520068, 0.39934634677258996, 0.42249259173992826, 0.24940231538328683, 0.46827469198568006, 0.040988937643475554, 0.034828704291737345, 0.26663563965858417, 0.22421743312747255, 0.10716094829621758, 0.7421831263598226, 0.4644511163280224, 0.1591307416719686, 0.21502194578256428, 0.12883185373794437, 0.15520095945599266, 0.04280666734842442, 0.06928764484923078, 0.3578757504587543, 0.0760792945579073, 0.06637805380770656, 0.5755848065786346, 0.4326356954473739, 0.16985579355455038, 0.47152805642545803, 0.11644579282256762, 0.11790522998710073, 0.5438286352264949, 0.41561805514360906, 0.050606352251634235, 0.21836830194439782, 0.22298545275517268, 0.1504846162366139, 0.16819644397314482, 0.47796113776613436, 0.14100197907825862, 0.7878397890034206, 0.12176963827920351, 0.09814942480303201, 0.23162396036129984, 0.04400104962869911, 0.061588508633294015, 0.2774601068082493, 0.40816383821078206, 0.14036214651023216, 0.11837607594274324, 0.0703155477214753, 0.17002415827487982, 0.24611532014486182, 0.06874641727313702, 0.30975746960573625, 0.07004288447243323, 0.6453829176356538, 0.3880412370469972, 0.10205495289732236, 0.12171087020281346, 0.38550692709735157, 0.4398162761337091, 0.5769741243450848, 0.48842976274850136, 0.3866799681687785, 0.17129518728202664, 0.5711206597512044, 0.4456070955069118, 0.4585850027539752, 0.25462747480751524, 0.34771016550763867, 0.35548618548401445, 0.07878090041588082, 0.3008706318705062, 0.08117751180329491, 0.055511805197920094, 0.1600174453683395, 0.35597309965685686, 0.5473978930443646, 0.3321771897262046, 0.14643302530661162, 0.7653011157176768, 0.24188431843396252, 0.16704799028757666, 0.41136103198090634, 0.5749869949413896, 0.709238838470871, 0.09340318303147321, 0.602429869503323, 0.04154705947390969, 0.7519582179986716, 0.15993940416551844, 0.04372375151311325, 0.4076899811241429, 0.4644511163280224, 0.3133137248525114, 0.24628490675063597, 0.06972977174174444, 0.15949948541388637, 0.2241543425141257, 0.1729876202034616, 0.07290025122558275, 0.1220000714032804, 0.36493953208423235, 0.09420126302076737, 0.026726938234992392, 0.7199273032686843, 0.4606762448039463, 0.04906818437448113, 0.19446415942665518, 0.14876853598344464, 0.3247816953453747, 0.023320858692869595, 0.7310618090422621, 0.48944479260603346, 0.20357574295749958, 0.0840537250624015, 0.5368744051465595, 0.21101467800102214, 0.46682279298460017, 0.3749869638443927, 0.46592999202179275, 0.10188412989688433, 0.15751976448865512], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"citric.acid\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"citric.acid\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}}, {\"id\": \"All_residual.sugar\", \"params\": {\"data\": [{\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Reference<br>residual.sugar=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [1.3, 6.3, 2.6, 6.0, 1.2, 2.3, 2.2, 1.1, 2.7, 3.5, 0.9, 1.5, 5.7, 17.85, 4.55, 6.5, 1.0, 3.7, 1.7, 11.8, 8.2, 4.5, 1.5, 2.1, 7.2, 1.9, 1.2, 13.0, 4.6, 1.2, 1.2, 2.1, 1.9, 1.8, 2.0, 13.9, 10.7, 2.0, 4.3, 1.4, 1.1, 1.3, 1.8, 1.2, 11.0, 8.8, 2.5, 8.3, 2.4, 3.5, 16.4, 14.4, 1.4, 5.5, 1.1, 13.3, 2.5, 0.8, 1.2, 6.0, 2.2, 5.0, 2.7, 1.6, 2.6, 2.6, 2.4, 8.1, 7.4, 8.55, 1.5, 6.1, 5.9, 8.3, 5.7, 8.9, 3.6, 1.1, 2.1, 8.6, 2.3, 5.0, 1.1, 10.6, 7.7, 1.1, 1.2, 2.6, 4.2, 2.2, 1.5, 4.9, 1.8, 1.5, 6.2, 7.8, 13.7, 3.2, 1.3, 1.4, 1.1, 13.1, 2.2, 2.3, 1.2, 2.4, 7.7, 4.5, 1.2, 1.9, 1.2, 31.6, 1.2, 2.2, 3.9, 1.4, 2.0, 1.6, 16.5, 2.1, 12.8, 1.5, 10.5, 12.2, 2.2, 1.7, 2.1, 12.1, 1.5, 2.0, 4.0, 1.9, 14.75, 2.5, 4.5, 5.7, 2.6, 2.4, 2.8, 2.7, 0.9, 5.8, 8.6, 4.7, 2.2, 1.4, 6.4, 1.4, 1.7, 14.4, 14.7, 1.4, 1.6, 13.4, 14.9, 5.8, 1.0, 1.8, 8.8, 1.5, 11.4, 2.0, 1.4, 2.9, 6.6, 11.9, 9.9, 5.1, 11.2, 1.4, 2.0, 2.0, 1.6, 11.1, 3.0, 7.6, 1.7, 6.0, 4.8, 2.4, 6.1, 1.2, 1.7, 2.1, 7.0, 1.2, 1.7, 1.5, 3.6, 1.1, 1.8, 2.2, 8.3, 8.0, 2.3, 1.6, 1.3, 1.3, 2.0, 1.1, 2.0, 4.9, 6.5, 1.8, 2.3, 1.9, 5.1, 7.1, 13.9, 10.1, 0.9, 1.4, 3.6, 3.6, 4.2, 1.3, 5.35, 5.9, 6.5, 3.0, 1.1, 18.15, 1.6, 1.6, 2.1, 5.7, 14.4, 14.55, 1.3, 6.2, 4.8, 1.5, 2.9, 12.2, 4.5, 10.2, 1.8, 8.9, 2.8, 7.8, 8.1, 14.2, 1.1, 14.4, 1.8, 6.8, 1.3, 17.4, 6.5, 3.7, 14.6, 12.8, 2.1, 1.6, 1.9, 5.9, 3.6, 4.4, 1.8, 1.7, 12.2, 1.2, 2.6, 4.2, 1.4, 1.7, 4.6, 4.6, 2.0, 1.5, 1.7, 2.1, 7.4, 7.3, 2.2, 13.5, 10.2, 2.0, 2.2, 1.4, 7.0, 3.8, 1.6, 3.9, 1.6, 1.6, 18.4, 10.2, 2.5, 2.3, 1.5, 2.7, 2.1, 4.8, 10.8, 6.9, 1.8, 1.3, 1.2, 4.7, 2.4, 7.4, 5.7, 6.8, 1.5, 2.1, 9.25, 1.0, 18.95, 1.4, 1.8, 15.4, 2.4, 2.0, 1.2, 2.6, 1.5, 1.9, 2.1, 1.5, 1.7, 2.8, 6.3, 3.2, 1.6, 2.1, 10.7, 2.0, 8.2, 5.0, 8.3, 1.3, 3.6, 10.7, 1.9, 19.25, 4.7, 2.5, 15.55, 8.5, 12.4, 6.0, 1.3, 1.4, 2.0, 1.0, 12.2, 2.3, 1.5, 13.1, 10.4, 1.7, 10.2, 1.1, 13.0, 1.5, 2.2, 3.5, 4.0, 3.5, 14.1, 3.4, 1.9, 2.6, 2.2, 11.8, 1.2, 1.4, 2.2, 12.5, 5.4, 1.1, 1.4, 6.2, 4.4, 9.2, 1.8, 2.8, 1.6, 2.5, 11.0, 8.2, 2.9, 11.0, 7.3, 2.6, 15.4, 0.9, 6.9, 3.1, 4.25, 17.8, 4.8, 5.7, 8.6, 3.6, 1.9, 26.05, 4.5, 3.2, 1.9, 1.9, 2.5, 14.6, 7.25, 12.2, 4.7, 1.1, 1.6, 7.7, 1.6, 7.2, 1.2, 1.6, 1.3, 2.3, 6.3, 16.5, 3.3, 1.4, 6.2, 6.3, 7.7, 14.7, 9.8, 1.2, 1.0, 1.4, 5.3, 4.6, 8.65, 2.0, 4.9, 1.2, 1.0, 2.8, 4.2, 3.7, 4.1, 2.7, 2.9, 1.2, 1.2, 9.1, 6.3, 6.9, 13.6, 1.4, 2.1, 1.4, 5.0, 1.5, 1.55, 1.5, 10.4, 4.2, 6.7, 2.3, 9.9, 11.0, 3.2, 1.9, 3.3, 19.1, 1.2, 2.2, 4.9, 1.1, 9.3, 2.6, 1.9, 11.2, 8.0, 13.4, 5.1, 1.95, 4.7, 8.9, 4.8, 1.4, 2.2, 18.0, 17.3, 7.2, 4.1, 8.9, 1.7, 14.9, 1.1, 1.5, 14.6, 2.3, 1.1, 14.2, 1.2, 1.5, 9.6, 5.7, 2.7, 1.4, 12.7, 9.1, 10.5, 14.3, 6.5, 8.1, 1.1, 4.7, 1.0, 4.4, 1.6, 3.6, 7.4, 12.8, 0.8, 1.5, 2.2, 12.2, 1.6, 3.8, 2.8, 1.4, 8.2, 1.0, 1.9, 0.9, 12.15, 2.0, 4.3, 3.5, 5.6, 2.4, 4.2, 15.55, 2.3, 4.0, 8.7, 13.6, 5.4, 1.5, 6.4, 3.1, 15.15, 5.2, 4.8, 1.4, 2.4, 5.9, 2.7, 6.8, 1.1, 11.2, 3.3, 7.5, 2.8, 2.1, 1.1, 1.6, 9.5, 1.9, 1.4, 9.7, 1.3, 14.0, 1.8, 1.6, 3.5, 7.3, 1.1, 7.6, 1.1, 1.9, 1.6, 4.8, 1.5, 1.5, 17.55, 2.2, 15.6, 1.6, 1.6, 4.8, 7.4, 2.1, 12.8, 2.4, 2.7, 7.0, 1.1, 1.8, 1.9, 1.7, 7.9, 3.1, 18.6, 3.0, 6.9, 1.8, 7.4, 8.8, 1.2, 1.8, 14.9, 1.7, 2.8, 15.9, 4.2, 15.5, 1.7, 13.9, 9.65, 3.3, 7.5, 2.1, 2.5, 2.3, 3.3, 3.8, 2.0, 2.2, 10.9, 1.2, 1.6, 2.2, 10.4, 1.9, 12.7, 2.5, 8.1, 1.3, 9.6, 9.2, 14.5, 13.55, 10.5, 1.3, 1.6, 8.1, 1.0, 1.8, 1.1, 2.7, 3.5, 5.1, 1.3], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Current<br>residual.sugar=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [3.5, 14.3, 1.2, 2.2, 2.3, 1.2, 1.2, 8.0, 2.1, 1.6, 2.7, 1.3, 1.2, 9.65, 4.3, 1.2, 1.4, 2.8, 2.1, 3.2, 14.2, 14.5, 0.9, 1.1, 7.2, 1.2, 9.1, 3.95, 3.6, 4.7, 1.8, 6.2, 15.0, 6.4, 1.5, 1.2, 2.6, 7.9, 3.95, 1.9, 7.5, 2.5, 14.0, 13.0, 2.0, 2.3, 16.85, 1.9, 10.3, 1.7, 2.0, 3.9, 9.3, 1.0, 7.0, 14.1, 8.2, 1.8, 11.4, 1.7, 2.3, 20.3, 5.5, 9.7, 7.1, 2.1, 8.1, 6.7, 1.8, 1.3, 14.4, 2.4, 11.0, 7.4, 13.2, 12.3, 19.95, 1.7, 1.7, 1.9, 1.5, 1.0, 2.4, 2.1, 9.7, 3.1, 1.5, 14.5, 6.6, 1.6, 12.7, 7.4, 3.6, 1.4, 1.6, 6.5, 1.4, 4.6, 1.8, 2.1, 7.1, 9.9, 2.0, 2.1, 14.4, 10.9, 2.0, 9.0, 2.5, 2.8, 13.0, 31.6, 8.2, 1.7, 5.0, 2.2, 2.7, 1.4, 12.2, 3.2, 11.8, 1.5, 2.8, 1.4, 2.1, 2.1, 1.9, 4.7, 2.6, 1.8, 5.1, 1.8, 1.7, 17.5, 1.4, 17.1, 1.6, 2.5, 5.2, 1.6, 4.4, 3.2, 2.8, 8.5, 13.1, 1.2, 13.8, 5.6, 6.2, 1.1, 10.3, 1.0, 11.7, 16.2, 1.6, 2.8, 1.5, 2.0, 1.3, 14.2, 1.6, 2.0, 6.1, 8.2, 2.5, 1.2, 4.6, 2.2, 2.4, 1.1, 1.4, 1.1, 15.2, 4.7, 7.5, 4.2, 1.6, 7.8, 3.5, 2.4, 5.2, 10.8, 1.3, 3.4, 9.0, 1.8, 2.1, 4.8, 20.7, 2.2, 7.4, 17.3, 2.2, 2.3, 4.7, 4.9, 3.7, 1.6, 13.8, 8.2, 5.7, 1.7, 4.4, 5.9, 8.7, 2.1, 4.3, 6.55, 1.6, 12.9, 5.4, 2.2, 1.7, 2.9, 2.2, 7.6, 1.3, 3.3, 6.3, 1.8, 5.3, 7.3, 2.4, 7.1, 13.7, 10.2, 3.0, 5.3, 2.4, 1.5, 4.1, 6.9, 8.0, 7.1, 2.1, 11.8, 3.3, 1.4, 9.1, 1.2, 5.5, 7.9, 11.1, 1.8, 1.9, 2.3, 13.9, 14.5, 1.2, 2.7, 1.6, 12.0, 14.1, 2.7, 12.85, 14.8, 1.6, 1.1, 2.1, 2.7, 2.1, 7.2, 1.2, 5.4, 4.6, 2.0, 2.6, 12.6, 7.4, 10.2, 8.6, 4.2, 2.5, 2.6, 8.8, 1.8, 1.3, 7.2, 1.1, 2.2, 1.8, 1.7, 6.2, 10.8, 7.75, 2.7, 6.6, 1.0, 7.1, 1.5, 3.0, 2.4, 13.3, 2.1, 2.8, 7.75, 15.8, 5.0, 20.8, 6.4, 2.4, 1.4, 4.1, 6.0, 13.2, 2.1, 1.5, 5.4, 1.8, 2.6, 16.8, 5.0, 4.4, 13.0, 1.1, 1.2, 11.6, 1.3, 3.5, 2.9, 5.7, 15.5, 4.8, 15.55, 5.1, 2.7, 3.8, 1.8, 14.2, 5.3, 1.9, 12.5, 2.6, 10.4, 1.2, 4.1, 14.2, 12.5, 8.3, 2.0, 3.8, 10.7, 8.2, 2.1, 1.9, 9.8, 6.5, 0.9, 2.7, 2.6, 13.0, 1.4, 13.4, 16.2, 10.2, 4.9, 2.0, 7.0, 12.7, 2.4, 6.2, 8.6, 2.6, 15.55, 1.4, 7.3, 16.0, 7.0, 16.8, 3.2, 1.2, 6.2, 1.2, 1.0, 4.6, 5.5, 1.1, 10.8, 2.2, 10.2, 11.75, 6.0, 7.4, 7.4, 1.9, 2.1, 1.6, 1.2, 2.4, 5.1, 7.4, 19.95, 3.8, 16.1, 5.4, 2.6, 18.95, 2.3, 2.0, 1.5, 2.1, 4.4, 1.8, 17.5, 2.3, 12.8, 13.3, 1.4, 14.7, 4.7, 1.4, 2.5, 1.1, 1.5, 10.3, 3.0, 6.8, 2.4, 7.1, 7.0, 1.2, 1.8, 2.65, 2.4, 2.1, 2.8, 7.4, 11.5, 1.6, 1.3, 2.6, 1.2, 1.7, 1.4, 1.9, 1.9, 4.3, 13.2, 1.9, 12.8, 12.8, 1.7, 8.6, 5.7, 3.2, 2.0, 1.6, 2.4, 2.0, 2.5, 14.7, 1.8, 1.4, 1.5, 17.55, 1.8, 13.55, 1.0, 12.0, 3.6, 3.85, 4.0, 1.2, 15.4, 6.5, 1.4, 9.1, 1.1, 3.0, 2.5, 6.6, 8.1, 2.4, 15.5, 1.7, 11.3, 5.7, 1.4, 1.4, 2.0, 6.3, 4.7, 2.5, 1.8, 7.4, 9.3, 10.55, 2.9, 1.7, 2.2, 1.5, 14.75, 2.4, 2.4, 3.5, 1.8, 1.5, 2.8, 1.2, 2.0, 1.3, 10.5, 12.8, 1.2, 1.9, 16.0, 7.7, 2.3, 2.9, 1.6, 2.1, 1.1, 1.6, 3.7, 8.0, 1.9, 8.8, 6.7, 7.3, 2.5, 3.7, 2.6, 1.3, 8.3, 1.3, 11.2, 5.2, 4.7, 9.2, 12.7, 2.5, 7.4, 13.2, 1.8, 2.1, 5.25, 3.65, 15.75, 1.9, 13.65, 4.9, 9.15, 1.9, 2.5, 0.9, 14.0, 2.6, 2.8, 1.8, 12.8, 17.5, 8.25, 1.9, 1.6, 1.5, 6.9, 2.4, 1.3, 1.2, 6.7, 14.8, 12.7, 13.7, 2.0, 1.3, 1.6, 9.25, 12.9, 1.0, 4.7, 1.7, 10.8, 1.1, 19.95, 1.1, 1.2, 9.7, 6.7, 1.6, 2.3, 5.3, 13.6, 11.4, 1.6, 1.4, 2.6, 2.4, 10.6, 4.6, 2.2, 1.7, 2.0, 1.5, 5.0, 2.0, 2.6, 4.6, 12.7, 5.7, 6.3, 6.7, 8.2, 7.1, 2.0, 0.8, 2.0, 1.9, 1.3, 1.7, 1.1, 1.1, 9.85, 1.2, 1.1, 2.1, 9.5, 1.7, 8.0, 13.65, 7.9, 4.4, 9.55, 1.1, 7.9, 1.8, 2.2, 1.1, 5.9, 2.4, 6.0, 2.0, 2.9, 1.4, 2.1, 5.2, 5.8, 1.8, 2.0, 2.3, 15.1, 2.3, 16.8, 13.8, 1.5, 12.2, 8.2, 4.3, 8.9], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Reference<br>residual.sugar=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [10.4, 5.1, 1.1, 2.0, 2.6, 3.9, 6.9, 1.9, 8.9, 14.8, 4.5, 1.4, 13.5, 1.4, 2.7, 5.6, 2.4, 1.5, 18.15, 1.7, 1.4, 8.6, 3.1, 5.0, 1.9, 2.3, 6.4, 2.5, 13.0, 1.3, 2.5, 1.2, 9.1, 5.4, 13.5, 2.0, 1.6, 11.8, 3.4, 8.1, 13.1, 3.0, 1.3, 1.2, 1.8, 17.8, 1.1, 1.4, 7.0, 2.1, 2.4, 16.0, 4.8, 2.2, 11.8, 13.0, 7.1, 1.7, 1.4, 3.0, 11.0, 12.0, 3.75, 12.1, 2.1, 1.1, 8.9, 2.2, 2.0, 1.0, 8.4, 6.4, 10.8, 0.9, 1.8, 1.5, 13.0, 1.8, 8.1, 4.3, 2.3, 9.1, 7.5, 1.9, 2.0, 2.3, 9.5, 1.4, 12.5, 3.5, 6.4, 9.2, 2.2, 10.8, 19.8, 8.1, 14.5, 3.2, 7.1, 15.3, 13.3, 2.3, 2.7, 18.35, 1.8, 1.7, 14.5, 1.0, 6.4, 9.2, 1.8, 1.1, 1.6, 4.6, 1.8, 11.5, 11.0, 1.4, 2.8, 1.9, 16.05, 2.1, 9.2, 11.95, 13.1, 12.1, 4.8, 2.3, 1.9, 7.8, 1.4, 3.4, 6.5, 8.0, 1.6, 6.1, 8.8, 16.2, 1.2, 2.1, 17.8, 10.0, 0.9, 15.0, 1.4, 1.1, 1.7, 16.05, 2.0, 2.6, 2.0, 2.3, 1.1, 2.9, 1.1, 2.2, 3.3, 12.1, 1.2, 1.1, 3.2, 2.2, 4.5, 3.3, 1.8, 6.4, 7.5, 16.2, 10.4, 8.1, 7.8, 1.0, 7.2, 13.9, 2.7, 2.8, 2.0, 2.2, 2.4, 3.5, 1.5, 1.8, 2.3, 1.4, 13.2, 7.9, 8.6, 3.85, 10.0, 8.3, 4.5, 1.0, 10.7, 0.8, 7.6, 1.9, 8.95, 1.35, 15.6, 1.9, 5.0, 13.8, 13.8, 2.3, 2.4, 7.3, 1.4, 2.3, 1.7, 0.8, 4.8, 1.4, 6.7, 10.0, 15.6, 12.8, 13.7, 1.0, 12.1, 9.85, 1.4, 0.9, 14.8, 2.2, 1.8, 8.3, 2.7, 15.2, 5.7, 2.5, 5.7, 1.3, 6.3, 18.8, 1.4, 6.55, 19.35, 10.4, 2.6, 11.9, 2.5, 6.9, 14.9, 4.5, 0.9, 1.8, 2.5, 1.9, 6.2, 1.3, 2.5, 6.5, 9.1, 2.1, 1.3, 15.3, 6.1, 1.1, 3.2, 2.3, 1.6, 4.8, 12.6, 1.0, 1.7, 11.2, 1.3, 1.3, 2.3, 7.8, 17.8, 13.0, 2.1, 12.3, 6.5, 12.1, 1.9, 11.8, 10.5, 1.4, 2.3, 1.8, 1.3, 1.6, 6.9, 7.7, 1.3, 12.9, 1.2, 8.6, 1.3, 2.2, 2.0, 1.1, 2.6, 2.0, 5.0, 12.9, 12.1, 3.0, 2.1, 1.6, 2.4, 7.6, 3.2, 0.6, 18.35, 1.4, 2.2, 10.7, 4.0, 7.6, 1.8, 8.3, 2.3, 1.2, 16.45, 2.7, 11.5, 2.4, 2.2, 11.6, 2.0, 1.8, 8.0, 11.2, 7.5, 7.0, 2.1, 8.3, 22.0, 2.4, 1.6, 15.4, 1.0, 2.4, 14.9, 2.5, 0.8, 9.7, 1.5, 1.6, 6.1, 2.2, 15.8, 2.0, 7.4, 9.4, 1.3, 16.7, 10.5, 1.7, 13.1, 2.3, 2.0], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Current<br>residual.sugar=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [2.5, 4.7, 7.0, 2.3, 19.45, 22.0, 13.15, 1.6, 1.7, 2.3, 4.3, 1.2, 6.4, 7.2, 14.3, 18.1, 7.6, 2.7, 4.9, 1.1, 1.4, 17.2, 4.9, 11.8, 1.6, 1.7, 2.1, 14.8, 0.7, 0.8, 11.95, 1.1, 2.5, 2.3, 1.0, 1.7, 2.3, 1.5, 4.9, 1.4, 4.1, 2.0, 11.2, 15.2, 1.4, 1.7, 3.4, 2.2, 19.3, 6.1, 7.0, 18.35, 6.9, 2.4, 2.6, 1.8, 2.0, 4.2, 10.5, 15.4, 4.2, 8.3, 7.7, 2.9, 10.7, 2.0, 1.4, 1.9, 3.0, 1.6, 2.1, 2.5, 1.3, 1.6, 7.7, 1.2, 18.75, 1.7, 1.0, 1.9, 9.3, 1.6, 12.6, 2.0, 1.7, 1.7, 4.8, 13.7, 1.2, 6.1, 7.1, 1.9, 2.0, 14.3, 1.9, 2.1, 11.7, 3.9, 9.7, 8.1, 2.5, 6.5, 18.1, 1.8, 1.5, 2.1, 1.9, 1.4, 5.1, 13.7, 1.6, 14.5, 1.9, 1.3, 1.2, 10.7, 12.3, 4.9, 8.3, 2.1, 14.95, 1.8, 1.7, 1.6, 2.0, 7.0, 1.2, 11.1, 2.0, 5.1, 1.4, 15.6, 14.3, 1.0, 2.0, 11.0, 1.8, 3.0, 10.4, 6.6, 6.7, 1.7, 1.2, 5.1, 2.3, 12.1, 2.0, 1.6, 1.9, 9.5, 0.8, 13.3, 5.5, 7.7, 1.5, 1.4, 12.1, 8.2, 10.0, 12.6, 2.0, 15.6, 1.4, 13.5, 4.4, 7.8, 1.1, 1.6, 5.6, 8.6, 16.05, 10.4, 1.9, 1.8, 1.9, 1.4, 1.0, 11.6, 10.3, 15.8, 1.5, 5.1, 2.7, 1.1, 15.1, 1.4, 8.1, 17.8, 1.3, 7.9, 2.3, 3.75, 7.8, 1.4, 10.8, 2.0, 1.2, 6.4, 14.5, 11.8, 1.8, 13.2, 14.9, 15.4, 1.25, 15.7, 6.9, 2.2, 12.9, 10.2, 7.3, 5.0, 2.1, 1.1, 6.8, 2.7, 11.1, 9.7, 1.4, 1.6, 11.2, 8.0, 9.2, 6.8, 1.6, 10.4, 2.0, 3.9, 1.2, 1.0, 17.9, 1.6, 17.1, 10.7, 1.9, 8.8, 1.0, 1.4, 14.3, 2.0, 7.7, 2.3, 2.0, 9.6, 0.9, 5.9, 1.5, 5.4, 13.7, 6.1, 1.6, 16.0, 10.7, 10.6, 2.5, 16.3, 9.6, 4.6, 8.9, 2.5, 2.4, 1.6, 11.9, 11.9, 2.6, 1.3, 6.0, 1.6, 1.9, 8.9, 1.5, 2.6, 17.85, 6.4, 2.0, 1.8, 15.6, 2.7, 2.4, 11.2, 2.6, 17.75, 1.15, 1.3, 3.8, 1.2, 0.9, 4.5, 1.35, 2.5, 7.7, 7.0, 8.5, 2.7, 5.2, 2.2, 0.9, 7.8, 15.8, 2.3, 1.8, 2.6, 7.0, 11.9, 12.1, 1.0, 3.1, 10.1, 15.4, 8.1, 1.6, 2.0, 1.3, 17.8, 2.0, 13.6, 1.7, 8.1, 1.3, 2.8, 2.55, 1.7, 17.8, 5.6, 3.45, 10.1, 17.9, 1.4, 8.0, 1.3, 2.5, 11.4, 1.2, 1.6, 2.2, 1.3, 0.8, 1.3, 17.1, 5.2, 8.1, 2.4, 2.0, 2.0, 2.1, 1.3, 8.2, 2.5, 17.1, 1.3, 2.7, 2.0], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Reference\", \"x\": 0.245, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Current\", \"x\": 0.755, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"barmode\": \"overlay\", \"legend\": {\"title\": {\"text\": \"target\"}, \"tracegroupgap\": 0}, \"margin\": {\"t\": 60}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.49], \"title\": {\"text\": \"residual.sugar\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.51, 1.0], \"matches\": \"x\", \"title\": {\"text\": \"residual.sugar\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"count\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}}}}, {\"id\": \"residual.sugar_good\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (ref)\", \"type\": \"scatter\", \"x\": [1.3, 6.3, 2.6, 6.0, 1.2, 2.3, 2.2, 1.1, 2.7, 3.5, 0.9, 1.5, 5.7, 17.85, 4.55, 6.5, 1.0, 3.7, 1.7, 11.8, 8.2, 4.5, 1.5, 2.1, 7.2, 1.9, 1.2, 13.0, 4.6, 1.2, 1.2, 2.1, 1.9, 1.8, 2.0, 13.9, 10.7, 2.0, 4.3, 1.4, 1.1, 1.3, 1.8, 1.2, 11.0, 8.8, 2.5, 8.3, 2.4, 3.5, 16.4, 14.4, 1.4, 5.5, 1.1, 13.3, 2.5, 0.8, 1.2, 6.0, 2.2, 5.0, 2.7, 1.6, 2.6, 2.6, 2.4, 8.1, 7.4, 8.55, 1.5, 6.1, 5.9, 8.3, 5.7, 8.9, 3.6, 1.1, 2.1, 8.6, 2.3, 5.0, 1.1, 10.6, 7.7, 1.1, 1.2, 2.6, 4.2, 2.2, 1.5, 4.9, 1.8, 1.5, 6.2, 7.8, 13.7, 3.2, 1.3, 1.4, 1.1, 13.1, 2.2, 2.3, 1.2, 2.4, 7.7, 4.5, 1.2, 1.9, 1.2, 31.6, 1.2, 2.2, 3.9, 1.4, 2.0, 1.6, 16.5, 2.1, 12.8, 1.5, 10.5, 12.2, 2.2, 1.7, 2.1, 12.1, 1.5, 2.0, 4.0, 1.9, 14.75, 2.5, 4.5, 5.7, 2.6, 2.4, 2.8, 2.7, 0.9, 5.8, 8.6, 4.7, 2.2, 1.4, 6.4, 1.4, 1.7, 14.4, 14.7, 1.4, 1.6, 13.4, 14.9, 5.8, 1.0, 1.8, 8.8, 1.5, 11.4, 2.0, 1.4, 2.9, 6.6, 11.9, 9.9, 5.1, 11.2, 1.4, 2.0, 2.0, 1.6, 11.1, 3.0, 7.6, 1.7, 6.0, 4.8, 2.4, 6.1, 1.2, 1.7, 2.1, 7.0, 1.2, 1.7, 1.5, 3.6, 1.1, 1.8, 2.2, 8.3, 8.0, 2.3, 1.6, 1.3, 1.3, 2.0, 1.1, 2.0, 4.9, 6.5, 1.8, 2.3, 1.9, 5.1, 7.1, 13.9, 10.1, 0.9, 1.4, 3.6, 3.6, 4.2, 1.3, 5.35, 5.9, 6.5, 3.0, 1.1, 18.15, 1.6, 1.6, 2.1, 5.7, 14.4, 14.55, 1.3, 6.2, 4.8, 1.5, 2.9, 12.2, 4.5, 10.2, 1.8, 8.9, 2.8, 7.8, 8.1, 14.2, 1.1, 14.4, 1.8, 6.8, 1.3, 17.4, 6.5, 3.7, 14.6, 12.8, 2.1, 1.6, 1.9, 5.9, 3.6, 4.4, 1.8, 1.7, 12.2, 1.2, 2.6, 4.2, 1.4, 1.7, 4.6, 4.6, 2.0, 1.5, 1.7, 2.1, 7.4, 7.3, 2.2, 13.5, 10.2, 2.0, 2.2, 1.4, 7.0, 3.8, 1.6, 3.9, 1.6, 1.6, 18.4, 10.2, 2.5, 2.3, 1.5, 2.7, 2.1, 4.8, 10.8, 6.9, 1.8, 1.3, 1.2, 4.7, 2.4, 7.4, 5.7, 6.8, 1.5, 2.1, 9.25, 1.0, 18.95, 1.4, 1.8, 15.4, 2.4, 2.0, 1.2, 2.6, 1.5, 1.9, 2.1, 1.5, 1.7, 2.8, 6.3, 3.2, 1.6, 2.1, 10.7, 2.0, 8.2, 5.0, 8.3, 1.3, 3.6, 10.7, 1.9, 19.25, 4.7, 2.5, 15.55, 8.5, 12.4, 6.0, 1.3, 1.4, 2.0, 1.0, 12.2, 2.3, 1.5, 13.1, 10.4, 1.7, 10.2, 1.1, 13.0, 1.5, 2.2, 3.5, 4.0, 3.5, 14.1, 3.4, 1.9, 2.6, 2.2, 11.8, 1.2, 1.4, 2.2, 12.5, 5.4, 1.1, 1.4, 6.2, 4.4, 9.2, 1.8, 2.8, 1.6, 2.5, 11.0, 8.2, 2.9, 11.0, 7.3, 2.6, 15.4, 0.9, 6.9, 3.1, 4.25, 17.8, 4.8, 5.7, 8.6, 3.6, 1.9, 26.05, 4.5, 3.2, 1.9, 1.9, 2.5, 14.6, 7.25, 12.2, 4.7, 1.1, 1.6, 7.7, 1.6, 7.2, 1.2, 1.6, 1.3, 2.3, 6.3, 16.5, 3.3, 1.4, 6.2, 6.3, 7.7, 14.7, 9.8, 1.2, 1.0, 1.4, 5.3, 4.6, 8.65, 2.0, 4.9, 1.2, 1.0, 2.8, 4.2, 3.7, 4.1, 2.7, 2.9, 1.2, 1.2, 9.1, 6.3, 6.9, 13.6, 1.4, 2.1, 1.4, 5.0, 1.5, 1.55, 1.5, 10.4, 4.2, 6.7, 2.3, 9.9, 11.0, 3.2, 1.9, 3.3, 19.1, 1.2, 2.2, 4.9, 1.1, 9.3, 2.6, 1.9, 11.2, 8.0, 13.4, 5.1, 1.95, 4.7, 8.9, 4.8, 1.4, 2.2, 18.0, 17.3, 7.2, 4.1, 8.9, 1.7, 14.9, 1.1, 1.5, 14.6, 2.3, 1.1, 14.2, 1.2, 1.5, 9.6, 5.7, 2.7, 1.4, 12.7, 9.1, 10.5, 14.3, 6.5, 8.1, 1.1, 4.7, 1.0, 4.4, 1.6, 3.6, 7.4, 12.8, 0.8, 1.5, 2.2, 12.2, 1.6, 3.8, 2.8, 1.4, 8.2, 1.0, 1.9, 0.9, 12.15, 2.0, 4.3, 3.5, 5.6, 2.4, 4.2, 15.55, 2.3, 4.0, 8.7, 13.6, 5.4, 1.5, 6.4, 3.1, 15.15, 5.2, 4.8, 1.4, 2.4, 5.9, 2.7, 6.8, 1.1, 11.2, 3.3, 7.5, 2.8, 2.1, 1.1, 1.6, 9.5, 1.9, 1.4, 9.7, 1.3, 14.0, 1.8, 1.6, 3.5, 7.3, 1.1, 7.6, 1.1, 1.9, 1.6, 4.8, 1.5, 1.5, 17.55, 2.2, 15.6, 1.6, 1.6, 4.8, 7.4, 2.1, 12.8, 2.4, 2.7, 7.0, 1.1, 1.8, 1.9, 1.7, 7.9, 3.1, 18.6, 3.0, 6.9, 1.8, 7.4, 8.8, 1.2, 1.8, 14.9, 1.7, 2.8, 15.9, 4.2, 15.5, 1.7, 13.9, 9.65, 3.3, 7.5, 2.1, 2.5, 2.3, 3.3, 3.8, 2.0, 2.2, 10.9, 1.2, 1.6, 2.2, 10.4, 1.9, 12.7, 2.5, 8.1, 1.3, 9.6, 9.2, 14.5, 13.55, 10.5, 1.3, 1.6, 8.1, 1.0, 1.8, 1.1, 2.7, 3.5, 5.1, 1.3], \"xaxis\": \"x\", \"y\": [0.8156061324462894, 0.42491310922683634, 0.8867827646463432, 0.8014995238430205, 0.30499958310650876, 0.5817355832705369, 0.959171062334887, 0.7854416128369749, 0.9085690698200813, 0.8998600376511439, 0.6341165000693628, 0.412102187638673, 0.7643629411050379, 0.4710001938005606, 0.40182653035141874, 0.40438056362905367, 0.8870480016118494, 0.3650667978415713, 0.9064321709292111, 0.9327245345966092, 0.6458420185168736, 0.8821841129047617, 0.6704018506542557, 0.7655671181822064, 0.8616986618932058, 0.48774537944210006, 0.9637355036179479, 0.6794204065079696, 0.6044835155949141, 0.7867954023600708, 0.9137982268836646, 0.5867502063434873, 0.8048584290077971, 0.9718511071053526, 0.9627192884041744, 0.7978623718349598, 0.6091120966723917, 0.8943338178728011, 0.8853376735027229, 0.9045563504021151, 0.9264844632598176, 0.6342457655367447, 0.9414033426130164, 0.5636516403732365, 0.5172967922101196, 0.4836896337264441, 0.35199620689495453, 0.788779954566273, 0.9696552399248426, 0.772496554239754, 0.8132656157621138, 0.4539090261140653, 0.9333708926412786, 0.679765045723866, 0.48457442622955804, 0.4248820606938153, 0.6737819616086004, 0.8780741425819777, 0.38340602447337646, 0.90634085684919, 0.5574014604752268, 0.6804147683859246, 0.9077110088845216, 0.7718472635729894, 0.4717552048891654, 0.22222808308441652, 0.8616549355667619, 0.705749071892896, 0.4699129352300819, 0.9680524782819758, 0.8891353183282249, 0.9466602521798594, 0.8553382520847058, 0.7430243903066251, 0.6616131862201935, 0.6919609500216202, 0.96565744679506, 0.913108907487878, 0.5395521774612226, 0.9026238558501023, 0.6550941529376255, 0.9757876320152292, 0.8833495792027257, 0.6666029765862381, 0.8504582120840628, 0.9320215595878566, 0.7639947574915884, 0.6085229656221847, 0.9557131606798471, 0.46184432615952054, 0.5642658412077981, 0.8815615400732472, 0.7189203536918151, 0.9301020530176726, 0.7341394174346678, 0.7759189559372703, 0.8448078654733812, 0.9012666081120407, 0.8926028620066223, 0.5287492720273277, 0.6874206920638863, 0.37408584674942635, 0.8348370105186077, 0.8697567261320243, 0.9175759024810304, 0.44644098895981, 0.8874384748400057, 0.7787567487441118, 0.9416122482572158, 0.3265229243180111, 0.9308095750950773, 0.42267134533232753, 0.43068181214270274, 0.8727308285810839, 0.7201611177732586, 0.8430904589044517, 0.8140617541555761, 0.9456747441572588, 0.6672663325862807, 0.8756470416862959, 0.518871521713375, 0.7040615347784164, 0.4957960231649875, 0.6250130361556073, 0.27413726132188326, 0.5193133578087885, 0.37656641690434584, 0.5808048103476511, 0.7917827117482167, 0.36569143480873245, 0.7232542293832885, 0.9785934574433302, 0.5715075300165849, 0.8182555969893297, 0.5448461144048058, 0.9491291995847589, 0.4833587957991669, 0.3189279754564957, 0.9184825510014271, 0.5524830505676419, 0.9600429304649183, 0.7818180966165994, 0.7962710274484252, 0.7569429870375118, 0.46184432615952054, 0.7641514270390748, 0.9486763575522457, 0.8086368705092697, 0.6784536879503494, 0.6877019790624462, 0.6082670858563528, 0.6053794617794684, 0.6319330693089359, 0.4982105707488519, 0.6787928880949093, 0.9231980717613485, 0.8831230955067948, 0.6845485656817341, 0.8799204262605215, 0.9164563829924386, 0.7819268199067826, 0.23469888428232324, 0.9492377841603665, 0.8826092272015389, 0.6360541596480074, 0.5184081252698399, 0.6400126753125241, 0.542646305979658, 0.4479501208302092, 0.7783171875827786, 0.7867712153112567, 0.5236605417423803, 0.6959846197179591, 0.7925023358445066, 0.6683189355892497, 0.18737025221649042, 0.42506327048176057, 0.7272596040941706, 0.7314191754306454, 0.4827891324637794, 0.6649341228620356, 0.9038332731164471, 0.9588917860646077, 0.8945194928389463, 0.49833043835950624, 0.7997712594855277, 0.8577935987172323, 0.7622736922026153, 0.8039391974899521, 0.7396811504731934, 0.8115340233127679, 0.801728888664367, 0.738451208106372, 0.5859674792922007, 0.1865203674848816, 0.8773430435604171, 0.36888329310067386, 0.8651817982269884, 0.9067615420962557, 0.8594983988587351, 0.7437750884018276, 0.9145224932934428, 0.9135679891815164, 0.8001832456898428, 0.6860977766129374, 0.9377826008632761, 0.9300369611912853, 0.6997062971069969, 0.5693182102579236, 0.3404656140239559, 0.7160591142088384, 0.7953146078011, 0.8869803873277935, 0.7639982823097876, 0.8681285227071118, 0.576868797021353, 0.93035102563313, 0.8375600281828176, 0.8279918435672958, 0.9266689436294401, 0.7559862346636359, 0.5099889666930224, 0.6914445842613687, 0.9651950326885705, 0.87851968214492, 0.8499702807396289, 0.4685752957996948, 0.7241546992314323, 0.7848147251007912, 0.7341394174346678, 0.7008877443692281, 0.340588975625529, 0.5013021766499856, 0.8321174529331695, 0.8818378666553491, 0.9176909075187759, 0.8634678749265305, 0.7436082905772717, 0.9343776659412377, 0.7668809937296346, 0.6243383802582345, 0.5332560471205093, 0.6907315465649003, 0.16626803588025432, 0.1668542888532837, 0.7408943843163458, 0.5221312328975666, 0.7457559475413279, 0.46389636934606376, 0.9292627865919654, 0.5268311186840582, 0.4244151934213653, 0.643310536612302, 0.8577438313980266, 0.7816208399762355, 0.8553382520847058, 0.7010035672814305, 0.5242572272016158, 0.9187320011579697, 0.8703498177621264, 0.6713045345576062, 0.9137982268836646, 0.8614414457916845, 0.9445662266054761, 0.8808216590199034, 0.7386378115490353, 0.8873009977622293, 0.9157094897337859, 0.6606038558129893, 0.9296803968514485, 0.8864322240790464, 0.5146720135715994, 0.8720710714485208, 0.9415427660945741, 0.9138701141498735, 0.6527559092576063, 0.8751970040938668, 0.9249766460056568, 0.801728888664367, 0.6575848465963361, 0.6934824043184128, 0.8619113960143526, 0.9419078024651042, 0.9591721389341828, 0.8397407150753159, 0.9084383840076588, 0.4963969309336195, 0.7359588175524252, 0.3531961907069324, 0.9279819479140234, 0.7752976919572294, 0.8665226278427577, 0.9515211055933231, 0.7314191754306454, 0.890886918514299, 0.3235491032739525, 0.3719939405423586, 0.6323804178173072, 0.8398006965792015, 0.8239469134189235, 0.8592101816891015, 0.7615002907198236, 0.8688259750909261, 0.8718104001390852, 0.5838074755684882, 0.8756470416862959, 0.901850575196968, 0.9451930143658351, 0.6253812669856891, 0.5890764576710766, 0.4921052500998711, 0.4862070578416567, 0.9170647663398394, 0.7035583451969506, 0.8476385889092957, 0.5603058978573646, 0.5810606890504925, 0.9088604673919816, 0.8903252600075929, 0.944267921154058, 0.9435968591480925, 0.938237366988842, 0.9357286047893738, 0.7961386682142712, 0.7840233885688647, 0.2513590507613302, 0.7389284097502917, 0.9053472250810051, 0.44438282424164377, 0.862281110352348, 0.8021059248496223, 0.9152740930046814, 0.643737358401971, 0.8540304955499701, 0.8613418170006786, 0.6911084183178322, 0.8848367871057808, 0.8387883096682573, 0.5942651630821018, 0.65691393717736, 0.6369979527510315, 0.8280658524313272, 0.9640736168216585, 0.6546311715671466, 0.5599819536107853, 0.48348053317652906, 0.7668016587569692, 0.03620763244300767, 0.7364400865449663, 0.37408584674942635, 0.8767503774172, 0.8743962287172513, 0.8751970040938668, 0.8833495792027257, 0.7091886355621774, 0.87006937054451, 0.7904001815220257, 0.8761418339280951, 0.8306834851111597, 0.7531715889012326, 0.38181207472529843, 0.6490458991820136, 0.9138057013338913, 0.9046222904886461, 0.17956061692355052, 0.7506163079023257, 0.8963285795381793, 0.8848361664653354, 0.9283037217377402, 0.45996158699034445, 0.7290858434196763, 0.8319094967702583, 0.6578018675312727, 0.18727567457681707, 0.8673410249845035, 0.9453298670648187, 0.9446538464906173, 0.19605573045952288, 0.6723831041639817, 0.3438281302059518, 0.37858973820495484, 0.6953170483296187, 0.21463507152544156, 0.26963792069965237, 0.3280912492037974, 0.8399932187801539, 0.420387898633768, 0.36522500752858966, 0.5810560693343539, 0.9306346767722963, 0.7167716539092029, 0.656736106921484, 0.5549139996760648, 0.6909161521388689, 0.591904263202073, 0.884703171197362, 0.866402281883595, 0.7582770814524421, 0.8990773411030794, 0.1818065866116437, 0.6222165686186035, 0.17261914235374884, 0.8156064679757086, 0.4851213943917703, 0.8871292211128762, 0.8398494053952754, 0.703270618172154, 0.6305543892506115, 0.7494149477175548, 0.1532408287022325, 0.6159732902773407, 0.738220551127759, 0.8354520044441791, 0.8536870432671441, 0.5751476712690671, 0.9077719201719568, 0.7878515691455199, 0.6672663325862807, 0.45293736875445273, 0.17058553029544155, 0.747933377844996, 0.8400163125056676, 0.4516778718827729, 0.6082670858563528, 0.8401843469141149, 0.7636885291754726, 0.789170795337903, 0.8128612802083497, 0.7522530659814418, 0.8086757686066508, 0.8356255123032285, 0.9241779635105248, 0.9674588597049086, 0.9368885694202199, 0.4990764491242286, 0.876561204324957, 0.554264192243629, 0.5967716244634195, 0.9060244606340249, 0.8401608718856799, 0.7329750583133859, 0.8021769878309102, 0.9316817655017511, 0.45488322534173153, 0.798578398438993, 0.7425236774748816, 0.5742682328784404, 0.4937681935814938, 0.8972164286692267, 0.8914273370768748, 0.9377613518261881, 0.8862258850530264, 0.8591757581361523, 0.7410678096850266, 0.6822336012657398, 0.9201658505843877, 0.6982578893131915, 0.5746709232170782, 0.7626532952948841, 0.7137703530889916, 0.7520971196461234, 0.4473853625959922, 0.7957460056304991, 0.4833174871501707, 0.8758467705785958, 0.4689303842787964, 0.6133612564737879, 0.8568681391705205, 0.6835133967314007, 0.9732070839986944, 0.21435716257549006, 0.5761668962420043, 0.4055433603128916, 0.3743394998756179, 0.9118635774953143, 0.964551884718591, 0.9306459334511011, 0.8424802355113449, 0.7739144871152517, 0.6872688771534424, 0.8590561833388345, 0.6714384475466295, 0.6408669500407106, 0.5203550269219845, 0.2856853969697174, 0.857760555506807, 0.9307094503226838, 0.6787928880949093, 0.8308635255795866, 0.29271374211533296, 0.6769315553524353, 0.23831547366416572, 0.5895099457120908, 0.8994675076574448, 0.8893400405584444, 0.8456825404777587, 0.5399612081435882, 0.6188649121485582, 0.9281492942813848, 0.7611740601422801, 0.46550237374781617, 0.8896861436466836, 0.9038901015569306, 0.5044440900554997, 0.9215480939667524, 0.6930273792518707, 0.8723244804196287, 0.5624338775604165, 0.9226297661236537, 0.8469231754225917, 0.9430557295321259, 0.9097116306258912, 0.5988707702267543, 0.3813853072548755, 0.8843832309478876, 0.9006952500629406, 0.918975987201669, 0.18997930334445084, 0.8923106748541326, 0.8461388699436441, 0.5973439234355874, 0.9544642924744549, 0.91770416680597, 0.9177239854204658, 0.17584552180125673, 0.9240099144459667, 0.48524948024905407, 0.8889685222180134, 0.5785503824403398, 0.7511953459672914, 0.6887596776945688, 0.6717539058356753, 0.7168761391602206, 0.7134478068952186, 0.834626350903405, 0.5715867980362679, 0.6588392688727011, 0.9488572786900573, 0.8920529250761863, 0.8891353183282249, 0.707981940789761, 0.926348680038428, 0.631489487929038, 0.7443856388661001, 0.9260754381930228, 0.9544642924744549, 0.8497401318990601, 0.5604010177433062, 0.8036334301115304, 0.7898153537185114, 0.8491431337122072, 0.6570881560807702, 0.8389599143569951, 0.7944137576415592, 0.8132668978866627, 0.44714680104169846, 0.7978021044641371, 0.41921696608658454, 0.38876183891604754, 0.9248463736054193, 0.4277915265084825, 0.6345107008491314, 0.8008942533173764, 0.5087430598332189, 0.9414938992689892, 0.6922115882765215, 0.8296175750175913, 0.8593339228153332, 0.8975141534758351, 0.5977126281557783, 0.9279478536756302, 0.6485770817571253, 0.8905823996589662, 0.9332072841984264, 0.9432461110830079, 0.9410120781436498, 0.6339696776630096, 0.7120962557761497, 0.5841709037351369, 0.5928970840420333, 0.9006589732900512, 0.936371533648048, 0.6907852379101131, 0.7675780198071424, 0.9444587893431046, 0.4702336163336472, 0.8925536722101626, 0.8158978708906081, 0.822780392485108, 0.8037335327290217, 0.8382351003285965, 0.8941557358589171, 0.4796498334522667, 0.926348680038428, 0.6842118015950474, 0.6463580983468415, 0.8292048071278182, 0.5834426687867836, 0.8419845362148763, 0.2431563391580561, 0.7763142135369961, 0.9390550746437164, 0.7774903237071782, 0.8141232663130791, 0.9444089886680379, 0.430401459478284, 0.9192677156927759, 0.8427595869840984, 0.87120858451521, 0.5693182102579236, 0.820012080301976, 0.58719119911586, 0.42769376643096113, 0.3542595869275313, 0.89579938191327, 0.8743523014696554, 0.7820497043505815, 0.5279069501129625, 0.8869579700149332, 0.45488774279476296, 0.8514781135508903, 0.8278297091497892, 0.663749097381813, 0.5132851713944618, 0.4906566565015208, 0.6415219885510332, 0.6991293681294938, 0.8150539074042624, 0.5800669536763935, 0.9583771200922359, 0.7366090055976814, 0.5747817696023392, 0.5315376696882942, 0.8074446941396305, 0.9038901015569306, 0.9087015650331977, 0.6697291810323083, 0.5800669536763935, 0.8807270543114014, 0.5135845984304893, 0.9352791850238339, 0.36120709973337456, 0.6206709330576408, 0.906286252315459, 0.7937202818717513], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [10.4, 5.1, 1.1, 2.0, 2.6, 3.9, 6.9, 1.9, 8.9, 14.8, 4.5, 1.4, 13.5, 1.4, 2.7, 5.6, 2.4, 1.5, 18.15, 1.7, 1.4, 8.6, 3.1, 5.0, 1.9, 2.3, 6.4, 2.5, 13.0, 1.3, 2.5, 1.2, 9.1, 5.4, 13.5, 2.0, 1.6, 11.8, 3.4, 8.1, 13.1, 3.0, 1.3, 1.2, 1.8, 17.8, 1.1, 1.4, 7.0, 2.1, 2.4, 16.0, 4.8, 2.2, 11.8, 13.0, 7.1, 1.7, 1.4, 3.0, 11.0, 12.0, 3.75, 12.1, 2.1, 1.1, 8.9, 2.2, 2.0, 1.0, 8.4, 6.4, 10.8, 0.9, 1.8, 1.5, 13.0, 1.8, 8.1, 4.3, 2.3, 9.1, 7.5, 1.9, 2.0, 2.3, 9.5, 1.4, 12.5, 3.5, 6.4, 9.2, 2.2, 10.8, 19.8, 8.1, 14.5, 3.2, 7.1, 15.3, 13.3, 2.3, 2.7, 18.35, 1.8, 1.7, 14.5, 1.0, 6.4, 9.2, 1.8, 1.1, 1.6, 4.6, 1.8, 11.5, 11.0, 1.4, 2.8, 1.9, 16.05, 2.1, 9.2, 11.95, 13.1, 12.1, 4.8, 2.3, 1.9, 7.8, 1.4, 3.4, 6.5, 8.0, 1.6, 6.1, 8.8, 16.2, 1.2, 2.1, 17.8, 10.0, 0.9, 15.0, 1.4, 1.1, 1.7, 16.05, 2.0, 2.6, 2.0, 2.3, 1.1, 2.9, 1.1, 2.2, 3.3, 12.1, 1.2, 1.1, 3.2, 2.2, 4.5, 3.3, 1.8, 6.4, 7.5, 16.2, 10.4, 8.1, 7.8, 1.0, 7.2, 13.9, 2.7, 2.8, 2.0, 2.2, 2.4, 3.5, 1.5, 1.8, 2.3, 1.4, 13.2, 7.9, 8.6, 3.85, 10.0, 8.3, 4.5, 1.0, 10.7, 0.8, 7.6, 1.9, 8.95, 1.35, 15.6, 1.9, 5.0, 13.8, 13.8, 2.3, 2.4, 7.3, 1.4, 2.3, 1.7, 0.8, 4.8, 1.4, 6.7, 10.0, 15.6, 12.8, 13.7, 1.0, 12.1, 9.85, 1.4, 0.9, 14.8, 2.2, 1.8, 8.3, 2.7, 15.2, 5.7, 2.5, 5.7, 1.3, 6.3, 18.8, 1.4, 6.55, 19.35, 10.4, 2.6, 11.9, 2.5, 6.9, 14.9, 4.5, 0.9, 1.8, 2.5, 1.9, 6.2, 1.3, 2.5, 6.5, 9.1, 2.1, 1.3, 15.3, 6.1, 1.1, 3.2, 2.3, 1.6, 4.8, 12.6, 1.0, 1.7, 11.2, 1.3, 1.3, 2.3, 7.8, 17.8, 13.0, 2.1, 12.3, 6.5, 12.1, 1.9, 11.8, 10.5, 1.4, 2.3, 1.8, 1.3, 1.6, 6.9, 7.7, 1.3, 12.9, 1.2, 8.6, 1.3, 2.2, 2.0, 1.1, 2.6, 2.0, 5.0, 12.9, 12.1, 3.0, 2.1, 1.6, 2.4, 7.6, 3.2, 0.6, 18.35, 1.4, 2.2, 10.7, 4.0, 7.6, 1.8, 8.3, 2.3, 1.2, 16.45, 2.7, 11.5, 2.4, 2.2, 11.6, 2.0, 1.8, 8.0, 11.2, 7.5, 7.0, 2.1, 8.3, 22.0, 2.4, 1.6, 15.4, 1.0, 2.4, 14.9, 2.5, 0.8, 9.7, 1.5, 1.6, 6.1, 2.2, 15.8, 2.0, 7.4, 9.4, 1.3, 16.7, 10.5, 1.7, 13.1, 2.3, 2.0], \"xaxis\": \"x\", \"y\": [0.2802292104526322, 0.9455194119275858, 0.4978743212349556, 0.5289145624519528, 0.28439238707197784, 0.2033309570226689, 0.27345747478543325, 0.8322873304845451, 0.389055896812549, 0.3675472469853882, 0.5781933746273124, 0.7401955299744071, 0.44969671697605845, 0.4367887814338696, 0.31593955341667695, 0.3775624358859999, 0.19282181046294666, 0.048451763306065584, 0.6005928650583868, 0.032225376113695775, 0.427412413738938, 0.23973251442015217, 0.13890126550157303, 0.8613925272127, 0.329663916828638, 0.19359965390713213, 0.6827271716759634, 0.1960905505555538, 0.08135735686643118, 0.39737240301928484, 0.13902987396822816, 0.6514166433739288, 0.6994753721471061, 0.7140886736258081, 0.5021795028970708, 0.48743245558712556, 0.5731139673640956, 0.8820820642542792, 0.559972149724866, 0.5061565591493914, 0.5066810377847554, 0.833805652807593, 0.6979972163580744, 0.3177574231538272, 0.13068190592986567, 0.758876109553896, 0.5681062961269688, 0.715544821914063, 0.762062625203523, 0.4464438677531786, 0.20995974230910305, 0.5262622410710028, 0.39442669669188163, 0.2537324982988368, 0.6775437642744659, 0.23876321589577687, 0.6369158982934647, 0.38960060362966165, 0.6034323722874255, 0.7769991715799629, 0.15199748354041337, 0.5641412449951732, 0.7590466800561823, 0.5969347905931296, 0.1048362779837843, 0.7217824369593382, 0.2662339163773806, 0.16472378978351135, 0.37760124376932414, 0.7071736299639594, 0.3436862995931572, 0.8384434752264291, 0.3635333644877426, 0.7813188949129265, 0.7279369976219869, 0.5641098847382463, 0.3863964747623771, 0.9209913370067284, 0.1477144681640183, 0.8809374658555192, 0.6533168894759348, 0.8873477284758582, 0.3697306267878623, 0.28319023347825867, 0.5203701741750857, 0.5523747693308857, 0.6387521731780509, 0.3881380695009739, 0.8487896327149285, 0.4636606453307818, 0.8384434752264291, 0.558266603669778, 0.21657231888677728, 0.3635333644877426, 0.5512671313974766, 0.5051039398599867, 0.5827915753039158, 0.49441682850108926, 0.47309171914705017, 0.6262595591688196, 0.5508242483721094, 0.47332791509789995, 0.7117569366896692, 0.3933786516273859, 0.16465066549244003, 0.7490394132223248, 0.769261050002088, 0.7431932405995126, 0.3141000916210982, 0.723735045552473, 0.6484132891031948, 0.688519894019609, 0.40496704226994307, 0.5803736122960511, 0.6327801522745691, 0.45115706990411364, 0.37268733756108086, 0.9009693101135351, 0.06496389958099598, 0.44431713201158524, 0.39960831974332744, 0.8662156944598043, 0.31018081106061823, 0.5339551117365043, 0.33311273919547707, 0.400132762133902, 0.8528754522806217, 0.14419347879543085, 0.11672350429510901, 0.44556702529145975, 0.6160120899414699, 0.13766892845409207, 0.5517204028384314, 0.5232178919035022, 0.35483403305733974, 0.4900213704561591, 0.8854578072659228, 0.43084122675663034, 0.7601186327653665, 0.14072030431570776, 0.6186690618327106, 0.5245054232921349, 0.7326259458716644, 0.5690781983520095, 0.4018508815425063, 0.24877469563805235, 0.7952501197393639, 0.8766221356386195, 0.303451532996695, 0.5357745481647883, 0.7096524147827454, 0.20877177283968149, 0.8635610141758273, 0.46736762313881036, 0.6061151992073851, 0.113015272873705, 0.40446014603085867, 0.6332606063976143, 0.648705381890928, 0.42186952587750404, 0.8047913565308571, 0.3017058309841093, 0.38406990132164637, 0.33494193042999065, 0.19929939967121216, 0.8624919783238055, 0.528785836409086, 0.43084122675663034, 0.47042159929499583, 0.5061565591493914, 0.5759491569657543, 0.8468794444363914, 0.20342296359496542, 0.5170831534483544, 0.3666753044655067, 0.6131723001375537, 0.4410646109528086, 0.6903416342484309, 0.3866428492574258, 0.4636606453307818, 0.4525459302795702, 0.03199256040434073, 0.7029629492254846, 0.2433141614541866, 0.548755973819273, 0.3775060302547258, 0.06593060991448157, 0.8745624549148976, 0.22931948662359403, 0.27267688907931714, 0.589328430619086, 0.8007160756317941, 0.5525637789187225, 0.5008522318356121, 0.4556212410144909, 0.17391722008742402, 0.43574637053357784, 0.3237440077649342, 0.6071692164257629, 0.6925152430641841, 0.592675381607996, 0.43854150134957587, 0.43854150134957587, 0.42437112972565305, 0.8061118855433299, 0.35195592295594336, 0.7605370065149419, 0.38898578429124253, 0.67510953655807, 0.872979709380305, 0.710510994258769, 0.720290290780972, 0.4820787970895852, 0.42019280799979697, 0.4304380754474639, 0.25285023254778977, 0.3238056884730761, 0.39471961640683584, 0.09510031985475974, 0.367046376808582, 0.21500793651835448, 0.8705359023101334, 0.6100742529031461, 0.6226449432624995, 0.7279369976219869, 0.3643494054700089, 0.09992017521484964, 0.41475515148757036, 0.6462260464983366, 0.14102909592513518, 0.48949585696458414, 0.5239520436918008, 0.6084413884537807, 0.5655473856702703, 0.9517420512476797, 0.7489379515982664, 0.4647937384849751, 0.7915321263825208, 0.44112279258530757, 0.5734340256727429, 0.6604471727860799, 0.4845203185458914, 0.6968730453869196, 0.5315374962198609, 0.8685951485887234, 0.6242442748350044, 0.2912097196987059, 0.7725938221565348, 0.2067629769731588, 0.30221725334927335, 0.13129342562285412, 0.6467789443522378, 0.6994753721471061, 0.11825382206919556, 0.41022417118631593, 0.4882665226122541, 0.7732287086973071, 0.25374762405010176, 0.49441682850108926, 0.3723877205427743, 0.652330313245635, 0.43667799883041203, 0.5964718913578133, 0.55172276504346, 0.24113559934961917, 0.8243980268882987, 0.7263843594269437, 0.43535214809021755, 0.8721122798612579, 0.18723914490145582, 0.6486906676970999, 0.11576704656818047, 0.4328241622975616, 0.491481212420291, 0.5264345378086769, 0.33856526784971647, 0.2967410926251248, 0.581398831228375, 0.5973776665460488, 0.6195406102170065, 0.37782717658841725, 0.323061133240968, 0.17420808473594895, 0.19634770547538957, 0.46492234760650425, 0.49613167963272686, 0.5812209036149294, 0.6057291775435286, 0.63414717387345, 0.5702687187355167, 0.8604975146328253, 0.6309022132706124, 0.48732991249542923, 0.6887148870948692, 0.41581945293096145, 0.5706760596351739, 0.4831274653996314, 0.06684727567316755, 0.49090643211649887, 0.15191610726090596, 0.2711405311223577, 0.7653618545702112, 0.09266565137124261, 0.4554350627407873, 0.19698919164573708, 0.6930185080649685, 0.5227537922811563, 0.50434568709929, 0.7082092780767422, 0.46058046365566996, 0.6735723234187477, 0.4285936050615775, 0.323061133240968, 0.5168500865319015, 0.6161307914674419, 0.23456444218973552, 0.3192004782541023, 0.21968945907811915, 0.5028183230931117, 0.43371621376298963, 0.6744209213341115, 0.5940260419772637, 0.13783310426722128, 0.5136444387530009, 0.5508647999875032, 0.4955911012838212, 0.9814394195009358, 0.8260225289794664, 0.17965956338109995, 0.46844896472597397, 0.6048119589659149, 0.3289160319090978, 0.2454606394453749, 0.7497022835596558, 0.683485355417811, 0.20995974230910305, 0.23504578258460665, 0.37175956099497537, 0.4875530438829156, 0.24982584224249993, 0.6282829625348888, 0.4520795162158371, 0.8200372413039435, 0.12832513643528837, 0.5299630655130737, 0.29552777318700446, 0.24021937552346023, 0.5429028773737552, 0.6311869746243346, 0.4145977043912777, 0.39329840463575844, 0.39070335653410526, 0.4286990948130573, 0.846836560604146, 0.6880850122626078], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (curr)\", \"type\": \"scatter\", \"x\": [3.5, 14.3, 1.2, 2.2, 2.3, 1.2, 1.2, 8.0, 2.1, 1.6, 2.7, 1.3, 1.2, 9.65, 4.3, 1.2, 1.4, 2.8, 2.1, 3.2, 14.2, 14.5, 0.9, 1.1, 7.2, 1.2, 9.1, 3.95, 3.6, 4.7, 1.8, 6.2, 15.0, 6.4, 1.5, 1.2, 2.6, 7.9, 3.95, 1.9, 7.5, 2.5, 14.0, 13.0, 2.0, 2.3, 16.85, 1.9, 10.3, 1.7, 2.0, 3.9, 9.3, 1.0, 7.0, 14.1, 8.2, 1.8, 11.4, 1.7, 2.3, 20.3, 5.5, 9.7, 7.1, 2.1, 8.1, 6.7, 1.8, 1.3, 14.4, 2.4, 11.0, 7.4, 13.2, 12.3, 19.95, 1.7, 1.7, 1.9, 1.5, 1.0, 2.4, 2.1, 9.7, 3.1, 1.5, 14.5, 6.6, 1.6, 12.7, 7.4, 3.6, 1.4, 1.6, 6.5, 1.4, 4.6, 1.8, 2.1, 7.1, 9.9, 2.0, 2.1, 14.4, 10.9, 2.0, 9.0, 2.5, 2.8, 13.0, 31.6, 8.2, 1.7, 5.0, 2.2, 2.7, 1.4, 12.2, 3.2, 11.8, 1.5, 2.8, 1.4, 2.1, 2.1, 1.9, 4.7, 2.6, 1.8, 5.1, 1.8, 1.7, 17.5, 1.4, 17.1, 1.6, 2.5, 5.2, 1.6, 4.4, 3.2, 2.8, 8.5, 13.1, 1.2, 13.8, 5.6, 6.2, 1.1, 10.3, 1.0, 11.7, 16.2, 1.6, 2.8, 1.5, 2.0, 1.3, 14.2, 1.6, 2.0, 6.1, 8.2, 2.5, 1.2, 4.6, 2.2, 2.4, 1.1, 1.4, 1.1, 15.2, 4.7, 7.5, 4.2, 1.6, 7.8, 3.5, 2.4, 5.2, 10.8, 1.3, 3.4, 9.0, 1.8, 2.1, 4.8, 20.7, 2.2, 7.4, 17.3, 2.2, 2.3, 4.7, 4.9, 3.7, 1.6, 13.8, 8.2, 5.7, 1.7, 4.4, 5.9, 8.7, 2.1, 4.3, 6.55, 1.6, 12.9, 5.4, 2.2, 1.7, 2.9, 2.2, 7.6, 1.3, 3.3, 6.3, 1.8, 5.3, 7.3, 2.4, 7.1, 13.7, 10.2, 3.0, 5.3, 2.4, 1.5, 4.1, 6.9, 8.0, 7.1, 2.1, 11.8, 3.3, 1.4, 9.1, 1.2, 5.5, 7.9, 11.1, 1.8, 1.9, 2.3, 13.9, 14.5, 1.2, 2.7, 1.6, 12.0, 14.1, 2.7, 12.85, 14.8, 1.6, 1.1, 2.1, 2.7, 2.1, 7.2, 1.2, 5.4, 4.6, 2.0, 2.6, 12.6, 7.4, 10.2, 8.6, 4.2, 2.5, 2.6, 8.8, 1.8, 1.3, 7.2, 1.1, 2.2, 1.8, 1.7, 6.2, 10.8, 7.75, 2.7, 6.6, 1.0, 7.1, 1.5, 3.0, 2.4, 13.3, 2.1, 2.8, 7.75, 15.8, 5.0, 20.8, 6.4, 2.4, 1.4, 4.1, 6.0, 13.2, 2.1, 1.5, 5.4, 1.8, 2.6, 16.8, 5.0, 4.4, 13.0, 1.1, 1.2, 11.6, 1.3, 3.5, 2.9, 5.7, 15.5, 4.8, 15.55, 5.1, 2.7, 3.8, 1.8, 14.2, 5.3, 1.9, 12.5, 2.6, 10.4, 1.2, 4.1, 14.2, 12.5, 8.3, 2.0, 3.8, 10.7, 8.2, 2.1, 1.9, 9.8, 6.5, 0.9, 2.7, 2.6, 13.0, 1.4, 13.4, 16.2, 10.2, 4.9, 2.0, 7.0, 12.7, 2.4, 6.2, 8.6, 2.6, 15.55, 1.4, 7.3, 16.0, 7.0, 16.8, 3.2, 1.2, 6.2, 1.2, 1.0, 4.6, 5.5, 1.1, 10.8, 2.2, 10.2, 11.75, 6.0, 7.4, 7.4, 1.9, 2.1, 1.6, 1.2, 2.4, 5.1, 7.4, 19.95, 3.8, 16.1, 5.4, 2.6, 18.95, 2.3, 2.0, 1.5, 2.1, 4.4, 1.8, 17.5, 2.3, 12.8, 13.3, 1.4, 14.7, 4.7, 1.4, 2.5, 1.1, 1.5, 10.3, 3.0, 6.8, 2.4, 7.1, 7.0, 1.2, 1.8, 2.65, 2.4, 2.1, 2.8, 7.4, 11.5, 1.6, 1.3, 2.6, 1.2, 1.7, 1.4, 1.9, 1.9, 4.3, 13.2, 1.9, 12.8, 12.8, 1.7, 8.6, 5.7, 3.2, 2.0, 1.6, 2.4, 2.0, 2.5, 14.7, 1.8, 1.4, 1.5, 17.55, 1.8, 13.55, 1.0, 12.0, 3.6, 3.85, 4.0, 1.2, 15.4, 6.5, 1.4, 9.1, 1.1, 3.0, 2.5, 6.6, 8.1, 2.4, 15.5, 1.7, 11.3, 5.7, 1.4, 1.4, 2.0, 6.3, 4.7, 2.5, 1.8, 7.4, 9.3, 10.55, 2.9, 1.7, 2.2, 1.5, 14.75, 2.4, 2.4, 3.5, 1.8, 1.5, 2.8, 1.2, 2.0, 1.3, 10.5, 12.8, 1.2, 1.9, 16.0, 7.7, 2.3, 2.9, 1.6, 2.1, 1.1, 1.6, 3.7, 8.0, 1.9, 8.8, 6.7, 7.3, 2.5, 3.7, 2.6, 1.3, 8.3, 1.3, 11.2, 5.2, 4.7, 9.2, 12.7, 2.5, 7.4, 13.2, 1.8, 2.1, 5.25, 3.65, 15.75, 1.9, 13.65, 4.9, 9.15, 1.9, 2.5, 0.9, 14.0, 2.6, 2.8, 1.8, 12.8, 17.5, 8.25, 1.9, 1.6, 1.5, 6.9, 2.4, 1.3, 1.2, 6.7, 14.8, 12.7, 13.7, 2.0, 1.3, 1.6, 9.25, 12.9, 1.0, 4.7, 1.7, 10.8, 1.1, 19.95, 1.1, 1.2, 9.7, 6.7, 1.6, 2.3, 5.3, 13.6, 11.4, 1.6, 1.4, 2.6, 2.4, 10.6, 4.6, 2.2, 1.7, 2.0, 1.5, 5.0, 2.0, 2.6, 4.6, 12.7, 5.7, 6.3, 6.7, 8.2, 7.1, 2.0, 0.8, 2.0, 1.9, 1.3, 1.7, 1.1, 1.1, 9.85, 1.2, 1.1, 2.1, 9.5, 1.7, 8.0, 13.65, 7.9, 4.4, 9.55, 1.1, 7.9, 1.8, 2.2, 1.1, 5.9, 2.4, 6.0, 2.0, 2.9, 1.4, 2.1, 5.2, 5.8, 1.8, 2.0, 2.3, 15.1, 2.3, 16.8, 13.8, 1.5, 12.2, 8.2, 4.3, 8.9], \"xaxis\": \"x2\", \"y\": [0.33396714643252134, 0.5044440900554997, 0.8874896900044845, 0.4686759077780351, 0.23831547366416572, 0.571181601185031, 0.7785327680196316, 0.7290551099174598, 0.9581131370131553, 0.6801000322064107, 0.413367674560271, 0.6667140739211237, 0.9108229754863395, 0.9275086157065797, 0.9186958597750785, 0.7191871442695774, 0.8184457509658746, 0.8597940676688322, 0.7947045908306632, 0.8244149680645384, 0.42771531534877594, 0.5315376696882942, 0.7136291946100958, 0.5510697799054304, 0.6393262665313312, 0.9016582766249417, 0.8560880110261746, 0.8947361144883382, 0.9102326114023062, 0.840723585394272, 0.9264645566705582, 0.5105903360131552, 0.752648770317166, 0.5855954083225455, 0.8989214048388485, 0.5190750352404293, 0.9560713253502463, 0.7273157243430202, 0.9279672131348602, 0.640103147954212, 0.9158977434209615, 0.9035955072010529, 0.7140955379655831, 0.233508355491505, 0.7280578325574358, 0.8810827811902006, 0.3966129217085586, 0.15541760955422754, 0.5851621750323275, 0.9046111951917862, 0.4177213302712193, 0.7993763114768937, 0.6978409661933959, 0.6473373667551029, 0.770784382977056, 0.6500641275496193, 0.548949563093737, 0.9803199442553986, 0.6150775052067382, 0.391333092160729, 0.6966682278280982, 0.9426748402861506, 0.9170092977635526, 0.844625652038695, 0.5621782696252592, 0.8935808323282117, 0.6792214086077275, 0.6719996755401956, 0.5252591274442797, 0.7277045758687855, 0.4685752957996948, 0.8616549355667619, 0.347491516391863, 0.8224130863808733, 0.5340790568488665, 0.6711667658766297, 0.5277539611022016, 0.7226430813715845, 0.8140972745487615, 0.3280236940194876, 0.9543080196225542, 0.7752655593026647, 0.9223925066666061, 0.8588031784191832, 0.6345107008491314, 0.9393010047953068, 0.7897067132703484, 0.8608062836413887, 0.8367885032124018, 0.38555642305179116, 0.8611944449682004, 0.9172341012895443, 0.9206892306522243, 0.9500505925695213, 0.537798347971205, 0.9173482789702866, 0.44454351342386716, 0.8909704850569525, 0.7351932580165473, 0.6818328744935735, 0.7981559962965634, 0.7626532952948841, 0.807353254900461, 0.964411205143099, 0.4685752957996948, 0.6986526320119215, 0.1956969407137045, 0.9233481403380283, 0.8218375601976645, 0.8536269727611236, 0.5637680470866036, 0.42267134533232753, 0.93003590801509, 0.9364808605729722, 0.8816060831574614, 0.9663102962713933, 0.8345570787709832, 0.4997893986747249, 0.7921603237806832, 0.5586815647381762, 0.8622246464681924, 0.9828719612298703, 0.909295720392338, 0.9476267884443668, 0.5395521774612226, 0.901360886913609, 0.39410444510430487, 0.9262213132200262, 0.6627387433216217, 0.9629433821448677, 0.9614311452267452, 0.9802968012486629, 0.933760787013923, 0.34432718187202205, 0.63596173557573, 0.624364378916488, 0.7417789548241253, 0.7300918276682445, 0.6968315453320488, 0.7840233885688647, 0.8958841271622066, 0.5417426694559925, 0.7102579146160282, 0.6004345411549624, 0.515920701757342, 0.7587882454650442, 0.5029588531082266, 0.6887596776945688, 0.8642849605932809, 0.6469572639767995, 0.8103639651534781, 0.939764354405301, 0.694136577696587, 0.6593725303534554, 0.9646797005081557, 0.7979900311745153, 0.792123904710467, 0.8869579700149332, 0.7351250317969437, 0.5332560471205093, 0.9406873315653421, 0.39362685027924615, 0.9466602521798594, 0.8394325033041952, 0.6633442657978572, 0.8126408700417265, 0.7332457619716184, 0.08024070404520958, 0.8667774471450977, 0.6466814331404849, 0.912366876100516, 0.656670904734599, 0.8701678467707724, 0.8875925797813499, 0.9658725076002231, 0.7668332861852056, 0.8604440887473094, 0.934384507524058, 0.9605946056867319, 0.951253157591183, 0.5749289095213865, 0.6279243005170476, 0.7937202818717513, 0.7665301650725991, 0.700127941221274, 0.8531107444728586, 0.7947045908306632, 0.8870566665876504, 0.5476228787844645, 0.8410401833568673, 0.8736671065238262, 0.6519898659949606, 0.936943112068646, 0.9077719201719568, 0.8071889556778997, 0.8815615400732472, 0.8935313268029127, 0.8782891297971865, 0.5029588531082266, 0.5797201450332624, 0.9416775458320723, 0.5958140198486584, 0.2485157288688957, 0.932021424688801, 0.8531502837407814, 0.6344194678828672, 0.632587077283238, 0.9121448358615357, 0.5776545535910985, 0.9052765174806566, 0.8580390107418799, 0.8998644401112552, 0.6784536879503494, 0.9458342431661766, 0.21387363850783603, 0.9530348339880965, 0.7307391114165022, 0.7187682731289255, 0.6905635603269331, 0.9569274903702625, 0.9287384091375525, 0.3856984054091925, 0.504413920551941, 0.5389739198483336, 0.5921068831639978, 0.10702848140489757, 0.8772993497727819, 0.6361944011057532, 0.8952999713010865, 0.7069578609115064, 0.10632960186243966, 0.6465592619811017, 0.9116333268133815, 0.9210441535829985, 0.9483358221641291, 0.5800224234700003, 0.896951343689222, 0.8958659323404018, 0.8896861436466836, 0.7763142135369961, 0.778627444633172, 0.9274605647284293, 0.9167924025380936, 0.6422094408272838, 0.6363725079258666, 0.8694129796739031, 0.5693182102579236, 0.5315376696882942, 0.6814536952243052, 0.30089534057709466, 0.6689448970920832, 0.6419522618821227, 0.6500641275496193, 0.8221968069187356, 0.9285763346020383, 0.8495153837633861, 0.7135666997345446, 0.8850789772017983, 0.9128367188568884, 0.8709442503982084, 0.44714680104169846, 0.7147831401969469, 0.6814536952243052, 0.5823319261018008, 0.7718122970862826, 0.8925058444773368, 0.9249991097277733, 0.7849066379312727, 0.5120166815330335, 0.7863291630268572, 0.8171821177205619, 0.8878235148823457, 0.9813953955585096, 0.5009899161211654, 0.6787020040856314, 0.2747106808400709, 0.6998114428322438, 0.7191783799678735, 0.7566715075843347, 0.7741630673610131, 0.692871858980435, 0.8706970297938403, 0.9226518689226377, 0.619213859232465, 0.9620625840847012, 0.8161066853745392, 0.7984578805051198, 0.8987836568806694, 0.27900511725120763, 0.747868261422589, 0.8013372150606806, 0.4430395412241901, 0.8082746512504794, 0.9248395818955686, 0.8132668978866627, 0.7926355964369082, 0.7243101498981422, 0.8251498778038484, 0.865753667016409, 0.8784859927081519, 0.9613966942665844, 0.8380103992838959, 0.9376908870460701, 0.8505645904112248, 0.5317253080143199, 0.8756470416862959, 0.8823120896825394, 0.8920529250761863, 0.9565288857220365, 0.92576324319171, 0.8397457208604353, 0.8008835764985612, 0.7620555647282774, 0.6333567796033132, 0.8986985644274655, 0.8289197139212982, 0.38568054861828666, 0.4358764146033148, 0.7013568331933456, 0.5524769805317635, 0.8654015550049637, 0.9625385348003681, 0.4997035751430624, 0.5940434106189647, 0.29640429037896177, 0.9370396801623051, 0.7496358493500708, 0.8521916566704996, 0.7519935213994349, 0.8956127660014477, 0.7563308848917781, 0.5425355780301907, 0.1652985164032473, 0.5777375433929663, 0.5926841497777402, 0.5247451599628447, 0.6215406511606532, 0.646742228322253, 0.5236567091352762, 0.8105889943537302, 0.7614647275399787, 0.7272264480694343, 0.44438282424164377, 0.8051848688934031, 0.253979247575754, 0.8737269176380216, 0.7884186533408385, 0.5226162157005312, 0.7776146375974927, 0.8021344726910251, 0.6794204065079696, 0.8398669626756513, 0.3743394998756179, 0.6593725303534554, 0.41008410759983227, 0.8726624594592295, 0.31336232876890546, 0.6187135046228962, 0.9208146539756937, 0.8948907807194619, 0.9475948217130945, 0.7098971478357265, 0.41970311630379203, 0.5524505095188592, 0.6689295490636696, 0.39534528644804523, 0.6686700461744643, 0.6608417181144597, 0.6289006219381473, 0.8112353209803558, 0.9675531845963172, 0.3468688843876404, 0.8171815196180959, 0.9315945487332388, 0.7612383340144859, 0.43979370974717685, 0.9452166580978265, 0.810349906376065, 0.4979189466877109, 0.9054024939516333, 0.7506263221664519, 0.8595966107872783, 0.9041757536760852, 0.5120166815330335, 0.9246344940597735, 0.622364539475366, 0.7975959936185795, 0.9376528402833735, 0.8270495791839716, 0.7463426393970082, 0.8508295060861325, 0.5277539611022016, 0.7926521549058593, 0.8343380415579561, 0.7973631232158779, 0.5423298306356671, 0.6253812669856891, 0.9342151247863544, 0.9064095870896521, 0.8428584418618921, 0.5680191878381406, 0.8230633503438987, 0.857993972512287, 0.8312116035859974, 0.8886868130574391, 0.5695902702544526, 0.8750573328895943, 0.47134086624147714, 0.6082670858563528, 0.8571520978358925, 0.7006810412396262, 0.6001343818465046, 0.8680196363335714, 0.7833148206731655, 0.835330250744176, 0.6883000602161935, 0.4297997702781997, 0.7132181587745201, 0.941909753873568, 0.9298379484442667, 0.8950633078112005, 0.9652574497835966, 0.8593048115498744, 0.23022113319019433, 0.5548683876071567, 0.8789570823277312, 0.7176343272433334, 0.7135972690872326, 0.900955402304434, 0.89110615578316, 0.8021344726910251, 0.36734125225010755, 0.9233813125795639, 0.9269988231022361, 0.6021478506882372, 0.27064660283581765, 0.7595966254948197, 0.5317253080143199, 0.9626288904553877, 0.518871521713375, 0.4244151934213653, 0.8784852709235653, 0.667697582798242, 0.6791650855490978, 0.8659372985570389, 0.5217980090164113, 0.9757802673562255, 0.20769640873195563, 0.6900575067285889, 0.15051833553221247, 0.8476988333501053, 0.12043274000614122, 0.6546311715671466, 0.412102187638673, 0.6339696776630096, 0.6925917751558638, 0.8074446941396305, 0.8417042066658985, 0.4702054036006336, 0.8107456318417504, 0.934253622333564, 0.9671353887875448, 0.3776875782453083, 0.5133306968464912, 0.8279918435672958, 0.7295730380004212, 0.8398957027397556, 0.7470826509089123, 0.7722124156410631, 0.3944809481034696, 0.5801047158883857, 0.7134138458261836, 0.8265590446981121, 0.5836238058504062, 0.7538957359152121, 0.9708936701567454, 0.41507295289487073, 0.9039211350062085, 0.5109703825452502, 0.8880660412534, 0.6332514250278477, 0.703270618172154, 0.863031725372896, 0.9601349291832292, 0.5845797646527732, 0.8357575010967041, 0.9584406458449958, 0.8733333206292072, 0.4740801794177068, 0.5787650908025566, 0.38525623454815555, 0.5715075300165849, 0.951253157591183, 0.831291834366621, 0.6482062646591596, 0.5447536045265621, 0.8456825404777587, 0.5358725178581014, 0.8893400405584444, 0.5955893395860203, 0.9408369636189147, 0.7580589814818564, 0.4244151934213653, 0.7636885291754726, 0.9532052815091139, 0.6686700461744643, 0.39683939049776734, 0.8309978518015588, 0.06774730328187532, 0.8934061610794648, 0.9459413258233057, 0.8507977517004935, 0.9694554821790147, 0.8640493534313302, 0.8409166048571896, 0.9059760843724536, 0.7278052027863667, 0.8952246802917138, 0.39534528644804523, 0.9558702864115934, 0.9178754126151818, 0.7504628435478695, 0.7568870052952757, 0.32046258648166903, 0.9712495894387816, 0.7125870341029702, 0.8286889773580812, 0.929575727770858, 0.8422483936479932, 0.60065365322741, 0.5775074082600717, 0.7505976846167132, 0.5317253080143199, 0.9590110623565244, 0.9651712957082627, 0.7333643603414158, 0.7757825668725274, 0.8928390517037824, 0.2578168736401774, 0.5355488836719776, 0.8408692583280314, 0.7849780542174357, 0.8711681462620556, 0.8447990405440073, 0.9571933326515756, 0.9307123551507692, 0.6421242495412457, 0.9239207054420927, 0.9336219461922934, 0.4244151934213653, 0.5673643045526261, 0.8301442064454496, 0.528471943574542, 0.8835542071774324, 0.8820947700128993, 0.4561713647735051, 0.584381944856391, 0.9493936477483658, 0.7816316980556022, 0.7770145472448273, 0.8495153837633861, 0.8318035560268552, 0.5220388622338656, 0.8589980209217414, 0.21216021099657945, 0.8782303617207965, 0.901850575196968, 0.7683760396387002, 0.9559989503713009, 0.938411491366706, 0.7225398931917507, 0.5918361617892179, 0.8596378534897678, 0.8816239240572568, 0.9296844522785247, 0.8299758417251202, 0.7538846798551382, 0.931253582726863, 0.6902425303942638, 0.9299571155275668, 0.35461708236434614, 0.6119587629530028, 0.8979450471026776, 0.8782891297971865, 0.6144930729026484, 0.5601837238662909, 0.4230258756549153, 0.5115702372514986, 0.6133200318312215, 0.8287048127179734, 0.42887934024879554, 0.5543929044930882, 0.5414149972460248, 0.7453725251924848, 0.6522898344923613, 0.6445138145159856, 0.9212190995841192, 0.6991293681294938, 0.9188224881967051, 0.9444881948020799, 0.8399825546316605, 0.6440269003431431, 0.45260210695563535, 0.6678228102737954, 0.8535669746933884, 0.23469888428232324, 0.7581156815660375, 0.8329520097124233, 0.5886389680190937, 0.4250130050586104, 0.290761161529129, 0.9065968169685268, 0.39757013049667705, 0.9584529405260903, 0.24804178200132845, 0.8400605958344816, 0.9562762484868867, 0.5923100188758571, 0.5355488836719776, 0.6866862751474886, 0.753715093249364, 0.9302702282582556, 0.8405005145861136, 0.7758456574858743, 0.8270123797965384, 0.9270997487744173, 0.8779999285967196, 0.6350604679157676, 0.9057987369792326, 0.9732730617650076, 0.28007269673131574, 0.5393237551960537, 0.9509318156255189, 0.8055358405733448, 0.8512314640165554, 0.6752183046546253, 0.9766791413071304, 0.26893819095773785, 0.5105552073939665, 0.7964242570425004, 0.9159462749375985, 0.46312559485344046, 0.7889853219989779, 0.5331772070153998, 0.6250130361556073, 0.5340700079782073, 0.8981158701031157, 0.8424802355113449], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [2.5, 4.7, 7.0, 2.3, 19.45, 22.0, 13.15, 1.6, 1.7, 2.3, 4.3, 1.2, 6.4, 7.2, 14.3, 18.1, 7.6, 2.7, 4.9, 1.1, 1.4, 17.2, 4.9, 11.8, 1.6, 1.7, 2.1, 14.8, 0.7, 0.8, 11.95, 1.1, 2.5, 2.3, 1.0, 1.7, 2.3, 1.5, 4.9, 1.4, 4.1, 2.0, 11.2, 15.2, 1.4, 1.7, 3.4, 2.2, 19.3, 6.1, 7.0, 18.35, 6.9, 2.4, 2.6, 1.8, 2.0, 4.2, 10.5, 15.4, 4.2, 8.3, 7.7, 2.9, 10.7, 2.0, 1.4, 1.9, 3.0, 1.6, 2.1, 2.5, 1.3, 1.6, 7.7, 1.2, 18.75, 1.7, 1.0, 1.9, 9.3, 1.6, 12.6, 2.0, 1.7, 1.7, 4.8, 13.7, 1.2, 6.1, 7.1, 1.9, 2.0, 14.3, 1.9, 2.1, 11.7, 3.9, 9.7, 8.1, 2.5, 6.5, 18.1, 1.8, 1.5, 2.1, 1.9, 1.4, 5.1, 13.7, 1.6, 14.5, 1.9, 1.3, 1.2, 10.7, 12.3, 4.9, 8.3, 2.1, 14.95, 1.8, 1.7, 1.6, 2.0, 7.0, 1.2, 11.1, 2.0, 5.1, 1.4, 15.6, 14.3, 1.0, 2.0, 11.0, 1.8, 3.0, 10.4, 6.6, 6.7, 1.7, 1.2, 5.1, 2.3, 12.1, 2.0, 1.6, 1.9, 9.5, 0.8, 13.3, 5.5, 7.7, 1.5, 1.4, 12.1, 8.2, 10.0, 12.6, 2.0, 15.6, 1.4, 13.5, 4.4, 7.8, 1.1, 1.6, 5.6, 8.6, 16.05, 10.4, 1.9, 1.8, 1.9, 1.4, 1.0, 11.6, 10.3, 15.8, 1.5, 5.1, 2.7, 1.1, 15.1, 1.4, 8.1, 17.8, 1.3, 7.9, 2.3, 3.75, 7.8, 1.4, 10.8, 2.0, 1.2, 6.4, 14.5, 11.8, 1.8, 13.2, 14.9, 15.4, 1.25, 15.7, 6.9, 2.2, 12.9, 10.2, 7.3, 5.0, 2.1, 1.1, 6.8, 2.7, 11.1, 9.7, 1.4, 1.6, 11.2, 8.0, 9.2, 6.8, 1.6, 10.4, 2.0, 3.9, 1.2, 1.0, 17.9, 1.6, 17.1, 10.7, 1.9, 8.8, 1.0, 1.4, 14.3, 2.0, 7.7, 2.3, 2.0, 9.6, 0.9, 5.9, 1.5, 5.4, 13.7, 6.1, 1.6, 16.0, 10.7, 10.6, 2.5, 16.3, 9.6, 4.6, 8.9, 2.5, 2.4, 1.6, 11.9, 11.9, 2.6, 1.3, 6.0, 1.6, 1.9, 8.9, 1.5, 2.6, 17.85, 6.4, 2.0, 1.8, 15.6, 2.7, 2.4, 11.2, 2.6, 17.75, 1.15, 1.3, 3.8, 1.2, 0.9, 4.5, 1.35, 2.5, 7.7, 7.0, 8.5, 2.7, 5.2, 2.2, 0.9, 7.8, 15.8, 2.3, 1.8, 2.6, 7.0, 11.9, 12.1, 1.0, 3.1, 10.1, 15.4, 8.1, 1.6, 2.0, 1.3, 17.8, 2.0, 13.6, 1.7, 8.1, 1.3, 2.8, 2.55, 1.7, 17.8, 5.6, 3.45, 10.1, 17.9, 1.4, 8.0, 1.3, 2.5, 11.4, 1.2, 1.6, 2.2, 1.3, 0.8, 1.3, 17.1, 5.2, 8.1, 2.4, 2.0, 2.0, 2.1, 1.3, 8.2, 2.5, 17.1, 1.3, 2.7, 2.0], \"xaxis\": \"x2\", \"y\": [0.8142007211296887, 0.07257977436397642, 0.7430932382113554, 0.8214862427787604, 0.5698848321031316, 0.6048119589659149, 0.6466669219762841, 0.14510080060429495, 0.2250304680670007, 0.28492472637839966, 0.42061632734231896, 0.8281252124183194, 0.49622399336621903, 0.3482895521074759, 0.4678833354511545, 0.5708968386647719, 0.37048677721847617, 0.553632248395139, 0.8702137350251022, 0.42186952587750404, 0.8696774950675754, 0.5410576963494411, 0.3971326977900686, 0.3275001196198921, 0.9448289227093116, 0.7109941475090589, 0.41925580570138304, 0.3675472469853882, 0.6721911818800557, 0.5562207270314473, 0.5262426608517637, 0.3244609607385458, 0.15056615442564347, 0.15676979724311627, 0.6037730696030339, 0.6342511279653397, 0.021947035536558718, 0.32429164429335744, 0.5678746850743716, 0.3571680467137555, 0.7755534309390314, 0.3240287891037917, 0.699424662214302, 0.5151532452376618, 0.7564675819717819, 0.38343591026479057, 0.19811005648518398, 0.3168419703358067, 0.5315947262677626, 0.9269044449273315, 0.8260225289794664, 0.451791899378283, 0.830516920403184, 0.47128602930186, 0.19027823806377472, 0.5181346713949518, 0.29552777318700446, 0.45414400334446664, 0.39329840463575844, 0.42327932510626076, 0.45838907164509224, 0.2233864252642039, 0.3628419195926303, 0.6709353200988277, 0.46058046365566996, 0.25551237833043455, 0.7234147543269824, 0.1481282262733752, 0.314935793994079, 0.20050531530561894, 0.37453315488553635, 0.701015529968035, 0.6343341418527783, 0.1739320900588749, 0.734996253073231, 0.8172229478314255, 0.3598554146739685, 0.7121055211356295, 0.2620604909731644, 0.3421138035730516, 0.6951268813066005, 0.35208221297891723, 0.452099210446082, 0.18907620085798427, 0.5444201651108793, 0.6484058972837882, 0.3258186925596978, 0.5963383680780668, 0.6202666247822538, 0.576738593946626, 0.5054992484109841, 0.2972245631729925, 0.6844333356791464, 0.42629475072919953, 0.4405153833121037, 0.01207867704715336, 0.7609288944606691, 0.23951123982998349, 0.09310514674080905, 0.5084920166510624, 0.33067609257366243, 0.36481899584296196, 0.5708968386647719, 0.3194802059637459, 0.14207297841267416, 0.5776897120055972, 0.2026163425795633, 0.37909000048748537, 0.38206764842015895, 0.41324683104354176, 0.17826143731067332, 0.42339414872454434, 0.39148091864802853, 0.3511350413575442, 0.8053393751847749, 0.5937005322868365, 0.6849942580153355, 0.38930033076762494, 0.5168500865319015, 0.5699073288866824, 0.5376087249833421, 0.8185832461647057, 0.25950508036415604, 0.20394483716883388, 0.3303044530853749, 0.2528102968078532, 0.8477719856767125, 0.5217124250004609, 0.3303044530853749, 0.5382885532339231, 0.9625763866028243, 0.6536174904341296, 0.42629475072919953, 0.6458781618432388, 0.46574001023909845, 0.37268733756108086, 0.8180085473348132, 0.35493594975273335, 0.2423640089427935, 0.3636330633241046, 0.6421622311157122, 0.5444201651108793, 0.7396308412796291, 0.9036153464846048, 0.21101569987323432, 0.6004024464464508, 0.7595861882737439, 0.486549602332862, 0.2379839758891197, 0.5147825233229498, 0.2065932277190248, 0.4342628292980428, 0.5940848250235929, 0.4857193175270624, 0.5332610244722983, 0.5402196969638672, 0.8578846895389459, 0.5290225674595067, 0.6074669506688956, 0.1847839155105034, 0.3581391437324269, 0.4304380754474639, 0.8410120374942113, 0.5810086483513661, 0.19026233744636453, 0.7223494520380469, 0.8589928738613049, 0.8374625942163022, 0.781203852328267, 0.73983195178881, 0.41156537259256004, 0.7482873396984137, 0.44431713201158524, 0.7113673874393347, 0.49869552495399233, 0.7627102864663872, 0.37193390769028617, 0.37187810520956766, 0.3773291605703562, 0.8719651627687759, 0.6218762459828849, 0.3781393537983126, 0.553632248395139, 0.47624084907999176, 0.774399353278846, 0.5840424935194366, 0.5601025471409736, 0.6186690618327106, 0.620611700356168, 0.5755798886129706, 0.15047650536569443, 0.5530049338021776, 0.6597439619439023, 0.8300222117931148, 0.3490158529243493, 0.4410646109528086, 0.5067909967309752, 0.5851482063434866, 0.7149827463187939, 0.4849259975950144, 0.2094210588097294, 0.33399024531412796, 0.4083143545243069, 0.7497022835596558, 0.7817929239213606, 0.7637421953724776, 0.3825655414920891, 0.6611482494098961, 0.19022241257108333, 0.44972084577511023, 0.5476732603321269, 0.4831274653996314, 0.5077048340566679, 0.7289504589448288, 0.4379810490617926, 0.8017221455714771, 0.6434673631716396, 0.5059779734745421, 0.6065367192264559, 0.650368705032214, 0.34567471266024347, 0.39561589000187136, 0.3427787545601037, 0.4676404271158623, 0.5332283386400669, 0.4519108142444285, 0.40662831629925006, 0.42305576187259053, 0.22032895172816622, 0.5278715769330472, 0.43679486629948455, 0.743933429392776, 0.5269515041023835, 0.5008800654866953, 0.214168174561682, 0.44879088851457377, 0.683485355417811, 0.807753104897186, 0.42629475072919953, 0.8502951424821861, 0.17421175568219957, 0.25491371883486935, 0.7595861882737439, 0.6571724132942184, 0.7813188949129265, 0.5626906653340306, 0.8674288259883418, 0.6600514650598344, 0.4827749661719035, 0.5456147119159479, 0.39827550056677263, 0.27323823737433794, 0.695896529362927, 0.5048820477254727, 0.5422349097465021, 0.5610936746718964, 0.6571724132942184, 0.3088751107498249, 0.45428761266464013, 0.6604471727860799, 0.43371621376298963, 0.6171893197168647, 0.8100511550343341, 0.8100511550343341, 0.605832578461134, 0.5526475584669951, 0.4275055171336787, 0.8734720021260204, 0.8508295378350301, 0.5807723706867254, 0.8272749548927728, 0.2670652478909882, 0.7020144194675465, 0.4615566916191992, 0.7055847950248242, 0.43389869234556755, 0.6071692164257629, 0.3496825637352313, 0.23676491619791426, 0.7057755976874825, 0.15539001443149586, 0.6187538615870153, 0.8735882828904331, 0.30049486749739024, 0.23191705420611952, 0.8913917397916864, 0.4977157214618499, 0.16961113509580228, 0.8485494795219795, 0.4760032757956232, 0.5053843099270294, 0.2676015269871764, 0.3627664421236291, 0.15146266807038725, 0.7898179638281774, 0.6145296307645981, 0.3790380236797623, 0.3003532640340299, 0.6086112016774773, 0.39906793889171593, 0.8185832461647057, 0.6715802865662828, 0.8260225289794664, 0.6056902064850618, 0.400132762133902, 0.39471961640683584, 0.6449859309106076, 0.5637152910565628, 0.39949420960438964, 0.5490401551410112, 0.4398875418860128, 0.30916577334906253, 0.7093303227687476, 0.4562508424819209, 0.40444044759428516, 0.5773483646962835, 0.447777692034652, 0.4961542215384683, 0.32474312180562226, 0.21192693199409943, 0.9056903490933487, 0.5013816399998683, 0.758876109553896, 0.6364928148646596, 0.2952804752502578, 0.4748951900520853, 0.43679486629948455, 0.5479962315186364, 0.4728142838839701, 0.6343341418527783, 0.12248807650217919, 0.5052525886146573, 0.8281252124183194, 0.8930081609652758, 0.36283726088930296, 0.8098196742550625, 0.656477404357746, 0.193885049884708, 0.5269515041023835, 0.49858469647139786, 0.32780472036158087, 0.24927512797396847, 0.6148718578314069, 0.10691527318901187, 0.136775438340409, 0.8489192718114075, 0.2600203086082801, 0.8142007211296887, 0.5269515041023835, 0.7966615933629455, 0.5633234794197017, 0.767479452333631], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"residual.sugar\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"residual.sugar\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}}, {\"id\": \"residual.sugar_bad\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (ref)\", \"type\": \"scatter\", \"x\": [10.4, 5.1, 1.1, 2.0, 2.6, 3.9, 6.9, 1.9, 8.9, 14.8, 4.5, 1.4, 13.5, 1.4, 2.7, 5.6, 2.4, 1.5, 18.15, 1.7, 1.4, 8.6, 3.1, 5.0, 1.9, 2.3, 6.4, 2.5, 13.0, 1.3, 2.5, 1.2, 9.1, 5.4, 13.5, 2.0, 1.6, 11.8, 3.4, 8.1, 13.1, 3.0, 1.3, 1.2, 1.8, 17.8, 1.1, 1.4, 7.0, 2.1, 2.4, 16.0, 4.8, 2.2, 11.8, 13.0, 7.1, 1.7, 1.4, 3.0, 11.0, 12.0, 3.75, 12.1, 2.1, 1.1, 8.9, 2.2, 2.0, 1.0, 8.4, 6.4, 10.8, 0.9, 1.8, 1.5, 13.0, 1.8, 8.1, 4.3, 2.3, 9.1, 7.5, 1.9, 2.0, 2.3, 9.5, 1.4, 12.5, 3.5, 6.4, 9.2, 2.2, 10.8, 19.8, 8.1, 14.5, 3.2, 7.1, 15.3, 13.3, 2.3, 2.7, 18.35, 1.8, 1.7, 14.5, 1.0, 6.4, 9.2, 1.8, 1.1, 1.6, 4.6, 1.8, 11.5, 11.0, 1.4, 2.8, 1.9, 16.05, 2.1, 9.2, 11.95, 13.1, 12.1, 4.8, 2.3, 1.9, 7.8, 1.4, 3.4, 6.5, 8.0, 1.6, 6.1, 8.8, 16.2, 1.2, 2.1, 17.8, 10.0, 0.9, 15.0, 1.4, 1.1, 1.7, 16.05, 2.0, 2.6, 2.0, 2.3, 1.1, 2.9, 1.1, 2.2, 3.3, 12.1, 1.2, 1.1, 3.2, 2.2, 4.5, 3.3, 1.8, 6.4, 7.5, 16.2, 10.4, 8.1, 7.8, 1.0, 7.2, 13.9, 2.7, 2.8, 2.0, 2.2, 2.4, 3.5, 1.5, 1.8, 2.3, 1.4, 13.2, 7.9, 8.6, 3.85, 10.0, 8.3, 4.5, 1.0, 10.7, 0.8, 7.6, 1.9, 8.95, 1.35, 15.6, 1.9, 5.0, 13.8, 13.8, 2.3, 2.4, 7.3, 1.4, 2.3, 1.7, 0.8, 4.8, 1.4, 6.7, 10.0, 15.6, 12.8, 13.7, 1.0, 12.1, 9.85, 1.4, 0.9, 14.8, 2.2, 1.8, 8.3, 2.7, 15.2, 5.7, 2.5, 5.7, 1.3, 6.3, 18.8, 1.4, 6.55, 19.35, 10.4, 2.6, 11.9, 2.5, 6.9, 14.9, 4.5, 0.9, 1.8, 2.5, 1.9, 6.2, 1.3, 2.5, 6.5, 9.1, 2.1, 1.3, 15.3, 6.1, 1.1, 3.2, 2.3, 1.6, 4.8, 12.6, 1.0, 1.7, 11.2, 1.3, 1.3, 2.3, 7.8, 17.8, 13.0, 2.1, 12.3, 6.5, 12.1, 1.9, 11.8, 10.5, 1.4, 2.3, 1.8, 1.3, 1.6, 6.9, 7.7, 1.3, 12.9, 1.2, 8.6, 1.3, 2.2, 2.0, 1.1, 2.6, 2.0, 5.0, 12.9, 12.1, 3.0, 2.1, 1.6, 2.4, 7.6, 3.2, 0.6, 18.35, 1.4, 2.2, 10.7, 4.0, 7.6, 1.8, 8.3, 2.3, 1.2, 16.45, 2.7, 11.5, 2.4, 2.2, 11.6, 2.0, 1.8, 8.0, 11.2, 7.5, 7.0, 2.1, 8.3, 22.0, 2.4, 1.6, 15.4, 1.0, 2.4, 14.9, 2.5, 0.8, 9.7, 1.5, 1.6, 6.1, 2.2, 15.8, 2.0, 7.4, 9.4, 1.3, 16.7, 10.5, 1.7, 13.1, 2.3, 2.0], \"xaxis\": \"x\", \"y\": [0.7197707895473677, 0.05448058807241418, 0.5021256787650443, 0.4710854375480472, 0.7156076129280222, 0.7966690429773311, 0.7265425252145667, 0.16771266951545494, 0.610944103187451, 0.6324527530146118, 0.42180662537268765, 0.2598044700255929, 0.5503032830239416, 0.5632112185661304, 0.6840604465833231, 0.6224375641140001, 0.8071781895370533, 0.9515482366939344, 0.3994071349416132, 0.9677746238863042, 0.572587586261062, 0.7602674855798478, 0.861098734498427, 0.1386074727873, 0.6703360831713621, 0.8064003460928679, 0.3172728283240366, 0.8039094494444462, 0.9186426431335688, 0.6026275969807151, 0.8609701260317718, 0.3485833566260712, 0.3005246278528939, 0.2859113263741919, 0.4978204971029292, 0.5125675444128744, 0.4268860326359044, 0.11791793574572085, 0.440027850275134, 0.4938434408506086, 0.4933189622152446, 0.166194347192407, 0.30200278364192557, 0.6822425768461728, 0.8693180940701344, 0.24112389044610405, 0.43189370387303117, 0.284455178085937, 0.23793737479647703, 0.5535561322468214, 0.7900402576908969, 0.47373775892899717, 0.6055733033081183, 0.7462675017011632, 0.32245623572553406, 0.7612367841042231, 0.36308410170653527, 0.6103993963703384, 0.3965676277125745, 0.2230008284200371, 0.8480025164595866, 0.43585875500482685, 0.24095331994381775, 0.4030652094068704, 0.8951637220162157, 0.2782175630406618, 0.7337660836226194, 0.8352762102164887, 0.6223987562306759, 0.2928263700360406, 0.6563137004068428, 0.16155652477357085, 0.6364666355122575, 0.2186811050870735, 0.27206300237801306, 0.4358901152617537, 0.6136035252376228, 0.07900866299327158, 0.8522855318359817, 0.11906253414448076, 0.3466831105240652, 0.11265227152414181, 0.6302693732121377, 0.7168097665217413, 0.4796298258249143, 0.4476252306691143, 0.3612478268219491, 0.611861930499026, 0.15121036728507153, 0.5363393546692182, 0.16155652477357085, 0.441733396330222, 0.7834276811132227, 0.6364666355122575, 0.44873286860252337, 0.4948960601400133, 0.4172084246960842, 0.5055831714989107, 0.5269082808529498, 0.3737404408311804, 0.4491757516278906, 0.5266720849021, 0.2882430633103308, 0.6066213483726142, 0.83534933450756, 0.2509605867776752, 0.230738949997912, 0.25680675940048736, 0.6858999083789018, 0.27626495444752697, 0.35158671089680515, 0.311480105980391, 0.5950329577300569, 0.4196263877039489, 0.3672198477254309, 0.5488429300958864, 0.6273126624389191, 0.0990306898864649, 0.935036100419004, 0.5556828679884147, 0.6003916802566726, 0.1337843055401957, 0.6898191889393818, 0.46604488826349566, 0.6668872608045229, 0.5998672378660981, 0.14712454771937833, 0.8558065212045691, 0.883276495704891, 0.5544329747085402, 0.38398791005853006, 0.8623310715459079, 0.4482795971615686, 0.4767821080964978, 0.6451659669426603, 0.5099786295438409, 0.11454219273407718, 0.5691587732433696, 0.2398813672346335, 0.8592796956842923, 0.38133093816728936, 0.4754945767078651, 0.2673740541283356, 0.43092180164799054, 0.5981491184574936, 0.7512253043619477, 0.20474988026063612, 0.12337786436138054, 0.6965484670033051, 0.4642254518352117, 0.29034758521725457, 0.7912282271603185, 0.1364389858241727, 0.5326323768611896, 0.3938848007926149, 0.886984727126295, 0.5955398539691413, 0.3667393936023857, 0.35129461810907203, 0.578130474122496, 0.1952086434691429, 0.6982941690158907, 0.6159300986783536, 0.6650580695700093, 0.8007006003287879, 0.13750802167619447, 0.47121416359091395, 0.5691587732433696, 0.5295784007050042, 0.4938434408506086, 0.4240508430342457, 0.1531205555636086, 0.7965770364050346, 0.4829168465516456, 0.6333246955344933, 0.38682769986244625, 0.5589353890471914, 0.30965836575156913, 0.6133571507425741, 0.5363393546692182, 0.5474540697204298, 0.9680074395956593, 0.29703705077451537, 0.7566858385458134, 0.451244026180727, 0.6224939697452743, 0.9340693900855184, 0.1254375450851024, 0.770680513376406, 0.7273231109206828, 0.410671569380914, 0.19928392436820586, 0.44743622108127745, 0.4991477681643879, 0.5443787589855091, 0.826082779912576, 0.5642536294664222, 0.6762559922350657, 0.39283078357423706, 0.3074847569358159, 0.40732461839200396, 0.5614584986504241, 0.5614584986504241, 0.575628870274347, 0.1938881144566701, 0.6480440770440566, 0.23946299348505806, 0.6110142157087575, 0.32489046344192996, 0.127020290619695, 0.28948900574123104, 0.27970970921902805, 0.5179212029104148, 0.579807192000203, 0.5695619245525361, 0.7471497674522103, 0.6761943115269239, 0.6052803835931642, 0.9048996801452402, 0.632953623191418, 0.7849920634816455, 0.12946409768986655, 0.3899257470968539, 0.37735505673750047, 0.27206300237801306, 0.6356505945299911, 0.9000798247851504, 0.5852448485124296, 0.3537739535016634, 0.8589709040748648, 0.5105041430354158, 0.4760479563081992, 0.3915586115462193, 0.4344526143297297, 0.04825794875232026, 0.25106204840173363, 0.5352062615150248, 0.2084678736174792, 0.5588772074146924, 0.42656597432725707, 0.3395528272139201, 0.5154796814541086, 0.30312695461308037, 0.4684625037801391, 0.13140485141127656, 0.37575572516499556, 0.7087902803012941, 0.22740617784346517, 0.7932370230268412, 0.6977827466507267, 0.8687065743771458, 0.3532210556477622, 0.3005246278528939, 0.8817461779308045, 0.5897758288136841, 0.5117334773877459, 0.2267712913026929, 0.7462523759498982, 0.5055831714989107, 0.6276122794572256, 0.34766968675436505, 0.563322001169588, 0.4035281086421867, 0.44827723495654004, 0.7588644006503809, 0.17560197311170134, 0.2736156405730563, 0.5646478519097824, 0.12788772013874206, 0.8127608550985441, 0.35130933230290007, 0.8842329534318195, 0.5671758377024384, 0.508518787579709, 0.4735654621913231, 0.6614347321502836, 0.7032589073748752, 0.418601168771625, 0.40262233345395115, 0.38045938978299354, 0.6221728234115828, 0.6769388667590319, 0.825791915264051, 0.8036522945246104, 0.5350776523934957, 0.5038683203672731, 0.4187790963850706, 0.3942708224564714, 0.36585282612655, 0.42973128126448334, 0.1395024853671747, 0.36909778672938764, 0.5126700875045708, 0.31128511290513083, 0.5841805470690385, 0.42932394036482613, 0.5168725346003686, 0.9331527243268325, 0.5090935678835011, 0.848083892739094, 0.7288594688776423, 0.23463814542978878, 0.9073343486287574, 0.5445649372592127, 0.8030108083542629, 0.30698149193503155, 0.47724620771884374, 0.49565431290071005, 0.29179072192325783, 0.53941953634433, 0.32642767658125227, 0.5714063949384225, 0.6769388667590319, 0.48314991346809855, 0.3838692085325581, 0.7654355578102645, 0.6807995217458978, 0.7803105409218809, 0.4971816769068883, 0.5662837862370104, 0.32557907866588853, 0.4059739580227363, 0.8621668957327787, 0.4863555612469991, 0.44913520001249685, 0.5044088987161788, 0.018560580499064172, 0.17397747102053363, 0.8203404366189, 0.531551035274026, 0.3951880410340851, 0.6710839680909022, 0.7545393605546251, 0.25029771644034415, 0.31651464458218903, 0.7900402576908969, 0.7649542174153934, 0.6282404390050247, 0.5124469561170844, 0.7501741577575001, 0.3717170374651112, 0.5479204837841629, 0.1799627586960565, 0.8716748635647116, 0.4700369344869263, 0.7044722268129955, 0.7597806244765397, 0.4570971226262448, 0.3688130253756654, 0.5854022956087224, 0.6067015953642416, 0.6092966434658947, 0.5713009051869427, 0.15316343939585397, 0.31191498773739224], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [1.3, 6.3, 2.6, 6.0, 1.2, 2.3, 2.2, 1.1, 2.7, 3.5, 0.9, 1.5, 5.7, 17.85, 4.55, 6.5, 1.0, 3.7, 1.7, 11.8, 8.2, 4.5, 1.5, 2.1, 7.2, 1.9, 1.2, 13.0, 4.6, 1.2, 1.2, 2.1, 1.9, 1.8, 2.0, 13.9, 10.7, 2.0, 4.3, 1.4, 1.1, 1.3, 1.8, 1.2, 11.0, 8.8, 2.5, 8.3, 2.4, 3.5, 16.4, 14.4, 1.4, 5.5, 1.1, 13.3, 2.5, 0.8, 1.2, 6.0, 2.2, 5.0, 2.7, 1.6, 2.6, 2.6, 2.4, 8.1, 7.4, 8.55, 1.5, 6.1, 5.9, 8.3, 5.7, 8.9, 3.6, 1.1, 2.1, 8.6, 2.3, 5.0, 1.1, 10.6, 7.7, 1.1, 1.2, 2.6, 4.2, 2.2, 1.5, 4.9, 1.8, 1.5, 6.2, 7.8, 13.7, 3.2, 1.3, 1.4, 1.1, 13.1, 2.2, 2.3, 1.2, 2.4, 7.7, 4.5, 1.2, 1.9, 1.2, 31.6, 1.2, 2.2, 3.9, 1.4, 2.0, 1.6, 16.5, 2.1, 12.8, 1.5, 10.5, 12.2, 2.2, 1.7, 2.1, 12.1, 1.5, 2.0, 4.0, 1.9, 14.75, 2.5, 4.5, 5.7, 2.6, 2.4, 2.8, 2.7, 0.9, 5.8, 8.6, 4.7, 2.2, 1.4, 6.4, 1.4, 1.7, 14.4, 14.7, 1.4, 1.6, 13.4, 14.9, 5.8, 1.0, 1.8, 8.8, 1.5, 11.4, 2.0, 1.4, 2.9, 6.6, 11.9, 9.9, 5.1, 11.2, 1.4, 2.0, 2.0, 1.6, 11.1, 3.0, 7.6, 1.7, 6.0, 4.8, 2.4, 6.1, 1.2, 1.7, 2.1, 7.0, 1.2, 1.7, 1.5, 3.6, 1.1, 1.8, 2.2, 8.3, 8.0, 2.3, 1.6, 1.3, 1.3, 2.0, 1.1, 2.0, 4.9, 6.5, 1.8, 2.3, 1.9, 5.1, 7.1, 13.9, 10.1, 0.9, 1.4, 3.6, 3.6, 4.2, 1.3, 5.35, 5.9, 6.5, 3.0, 1.1, 18.15, 1.6, 1.6, 2.1, 5.7, 14.4, 14.55, 1.3, 6.2, 4.8, 1.5, 2.9, 12.2, 4.5, 10.2, 1.8, 8.9, 2.8, 7.8, 8.1, 14.2, 1.1, 14.4, 1.8, 6.8, 1.3, 17.4, 6.5, 3.7, 14.6, 12.8, 2.1, 1.6, 1.9, 5.9, 3.6, 4.4, 1.8, 1.7, 12.2, 1.2, 2.6, 4.2, 1.4, 1.7, 4.6, 4.6, 2.0, 1.5, 1.7, 2.1, 7.4, 7.3, 2.2, 13.5, 10.2, 2.0, 2.2, 1.4, 7.0, 3.8, 1.6, 3.9, 1.6, 1.6, 18.4, 10.2, 2.5, 2.3, 1.5, 2.7, 2.1, 4.8, 10.8, 6.9, 1.8, 1.3, 1.2, 4.7, 2.4, 7.4, 5.7, 6.8, 1.5, 2.1, 9.25, 1.0, 18.95, 1.4, 1.8, 15.4, 2.4, 2.0, 1.2, 2.6, 1.5, 1.9, 2.1, 1.5, 1.7, 2.8, 6.3, 3.2, 1.6, 2.1, 10.7, 2.0, 8.2, 5.0, 8.3, 1.3, 3.6, 10.7, 1.9, 19.25, 4.7, 2.5, 15.55, 8.5, 12.4, 6.0, 1.3, 1.4, 2.0, 1.0, 12.2, 2.3, 1.5, 13.1, 10.4, 1.7, 10.2, 1.1, 13.0, 1.5, 2.2, 3.5, 4.0, 3.5, 14.1, 3.4, 1.9, 2.6, 2.2, 11.8, 1.2, 1.4, 2.2, 12.5, 5.4, 1.1, 1.4, 6.2, 4.4, 9.2, 1.8, 2.8, 1.6, 2.5, 11.0, 8.2, 2.9, 11.0, 7.3, 2.6, 15.4, 0.9, 6.9, 3.1, 4.25, 17.8, 4.8, 5.7, 8.6, 3.6, 1.9, 26.05, 4.5, 3.2, 1.9, 1.9, 2.5, 14.6, 7.25, 12.2, 4.7, 1.1, 1.6, 7.7, 1.6, 7.2, 1.2, 1.6, 1.3, 2.3, 6.3, 16.5, 3.3, 1.4, 6.2, 6.3, 7.7, 14.7, 9.8, 1.2, 1.0, 1.4, 5.3, 4.6, 8.65, 2.0, 4.9, 1.2, 1.0, 2.8, 4.2, 3.7, 4.1, 2.7, 2.9, 1.2, 1.2, 9.1, 6.3, 6.9, 13.6, 1.4, 2.1, 1.4, 5.0, 1.5, 1.55, 1.5, 10.4, 4.2, 6.7, 2.3, 9.9, 11.0, 3.2, 1.9, 3.3, 19.1, 1.2, 2.2, 4.9, 1.1, 9.3, 2.6, 1.9, 11.2, 8.0, 13.4, 5.1, 1.95, 4.7, 8.9, 4.8, 1.4, 2.2, 18.0, 17.3, 7.2, 4.1, 8.9, 1.7, 14.9, 1.1, 1.5, 14.6, 2.3, 1.1, 14.2, 1.2, 1.5, 9.6, 5.7, 2.7, 1.4, 12.7, 9.1, 10.5, 14.3, 6.5, 8.1, 1.1, 4.7, 1.0, 4.4, 1.6, 3.6, 7.4, 12.8, 0.8, 1.5, 2.2, 12.2, 1.6, 3.8, 2.8, 1.4, 8.2, 1.0, 1.9, 0.9, 12.15, 2.0, 4.3, 3.5, 5.6, 2.4, 4.2, 15.55, 2.3, 4.0, 8.7, 13.6, 5.4, 1.5, 6.4, 3.1, 15.15, 5.2, 4.8, 1.4, 2.4, 5.9, 2.7, 6.8, 1.1, 11.2, 3.3, 7.5, 2.8, 2.1, 1.1, 1.6, 9.5, 1.9, 1.4, 9.7, 1.3, 14.0, 1.8, 1.6, 3.5, 7.3, 1.1, 7.6, 1.1, 1.9, 1.6, 4.8, 1.5, 1.5, 17.55, 2.2, 15.6, 1.6, 1.6, 4.8, 7.4, 2.1, 12.8, 2.4, 2.7, 7.0, 1.1, 1.8, 1.9, 1.7, 7.9, 3.1, 18.6, 3.0, 6.9, 1.8, 7.4, 8.8, 1.2, 1.8, 14.9, 1.7, 2.8, 15.9, 4.2, 15.5, 1.7, 13.9, 9.65, 3.3, 7.5, 2.1, 2.5, 2.3, 3.3, 3.8, 2.0, 2.2, 10.9, 1.2, 1.6, 2.2, 10.4, 1.9, 12.7, 2.5, 8.1, 1.3, 9.6, 9.2, 14.5, 13.55, 10.5, 1.3, 1.6, 8.1, 1.0, 1.8, 1.1, 2.7, 3.5, 5.1, 1.3], \"xaxis\": \"x\", \"y\": [0.18439386755371057, 0.5750868907731637, 0.1132172353536568, 0.19850047615697952, 0.6950004168934912, 0.41826441672946313, 0.040828937665112974, 0.2145583871630251, 0.09143093017991866, 0.10013996234885614, 0.3658834999306372, 0.587897812361327, 0.23563705889496211, 0.5289998061994394, 0.5981734696485812, 0.5956194363709464, 0.11295199838815062, 0.6349332021584286, 0.09356782907078887, 0.0672754654033908, 0.3541579814831264, 0.11781588709523827, 0.3295981493457443, 0.23443288181779365, 0.13830133810679424, 0.5122546205578999, 0.03626449638205209, 0.32057959349203036, 0.3955164844050859, 0.21320459763992916, 0.08620177311633537, 0.4132497936565127, 0.19514157099220286, 0.028148892894647393, 0.03728071159582558, 0.20213762816504022, 0.39088790332760825, 0.10566618212719892, 0.11466232649727714, 0.09544364959788487, 0.07351553674018241, 0.3657542344632553, 0.05859665738698361, 0.43634835962676355, 0.4827032077898804, 0.516310366273556, 0.6480037931050455, 0.21122004543372697, 0.030344760075157406, 0.22750344576024595, 0.18673438423788624, 0.5460909738859347, 0.0666291073587214, 0.320234954276134, 0.515425573770442, 0.5751179393061847, 0.3262180383913996, 0.12192585741802231, 0.6165939755266235, 0.09365914315081003, 0.44259853952477324, 0.31958523161407537, 0.09228899111547839, 0.22815273642701062, 0.5282447951108347, 0.7777719169155834, 0.13834506443323813, 0.29425092810710396, 0.5300870647699181, 0.031947521718024174, 0.1108646816717751, 0.053339747820140615, 0.14466174791529418, 0.25697560969337485, 0.3383868137798065, 0.30803904997837983, 0.03434255320493995, 0.08689109251212201, 0.46044782253877736, 0.0973761441498977, 0.3449058470623745, 0.024212367984770777, 0.11665042079727428, 0.3333970234137619, 0.1495417879159372, 0.0679784404121434, 0.2360052425084116, 0.39147703437781534, 0.04428683932015287, 0.5381556738404795, 0.4357341587922019, 0.11843845992675284, 0.28107964630818494, 0.06989794698232743, 0.2658605825653322, 0.22408104406272966, 0.15519213452661884, 0.09873339188795927, 0.10739713799337769, 0.4712507279726723, 0.31257930793611366, 0.6259141532505736, 0.1651629894813923, 0.13024327386797574, 0.08242409751896962, 0.55355901104019, 0.11256152515999429, 0.22124325125588817, 0.05838775174278421, 0.6734770756819889, 0.06919042490492266, 0.5773286546676725, 0.5693181878572973, 0.12726917141891614, 0.27983888222674136, 0.15690954109554833, 0.18593824584442387, 0.05432525584274117, 0.33273366741371935, 0.12435295831370408, 0.48112847828662497, 0.2959384652215836, 0.5042039768350125, 0.3749869638443927, 0.7258627386781167, 0.4806866421912115, 0.6234335830956541, 0.4191951896523489, 0.20821728825178332, 0.6343085651912675, 0.27674577061671146, 0.02140654255666985, 0.42849246998341506, 0.1817444030106703, 0.4551538855951942, 0.05087080041524106, 0.516641204200833, 0.6810720245435042, 0.08151744899857294, 0.4475169494323581, 0.03995706953508171, 0.2181819033834006, 0.20372897255157485, 0.24305701296248816, 0.5381556738404795, 0.2358485729609252, 0.051323642447754336, 0.1913631294907303, 0.32154631204965056, 0.31229802093755377, 0.3917329141436472, 0.39462053822053156, 0.3680669306910641, 0.5017894292511481, 0.32120711190509066, 0.0768019282386515, 0.1168769044932052, 0.31545143431826594, 0.12007957373947853, 0.08354361700756141, 0.2180731800932174, 0.7653011157176768, 0.05076221583963347, 0.11739077279846111, 0.3639458403519926, 0.4815918747301601, 0.35998732468747585, 0.457353694020342, 0.5520498791697908, 0.22168281241722143, 0.2132287846887433, 0.4763394582576197, 0.3040153802820409, 0.20749766415549342, 0.3316810644107503, 0.8126297477835096, 0.5749367295182395, 0.27274039590582944, 0.2685808245693546, 0.5172108675362206, 0.33506587713796443, 0.09616672688355288, 0.041108213935392324, 0.10548050716105373, 0.5016695616404938, 0.20022874051447226, 0.14220640128276774, 0.23772630779738468, 0.19606080251004787, 0.2603188495268066, 0.18846597668723208, 0.19827111133563302, 0.261548791893628, 0.4140325207077993, 0.8134796325151183, 0.12265695643958285, 0.6311167068993262, 0.13481820177301163, 0.0932384579037443, 0.14050160114126486, 0.2562249115981724, 0.08547750670655718, 0.08643201081848362, 0.19981675431015722, 0.31390222338706264, 0.06221739913672386, 0.06996303880871468, 0.30029370289300306, 0.4306817897420764, 0.6595343859760441, 0.2839408857911616, 0.20468539219890003, 0.1130196126722065, 0.2360017176902124, 0.13187147729288817, 0.42313120297864704, 0.06964897436687001, 0.1624399718171824, 0.17200815643270417, 0.07333105637055992, 0.2440137653363641, 0.4900110333069776, 0.3085554157386313, 0.03480496731142946, 0.12148031785507996, 0.15002971926037112, 0.5314247042003052, 0.2758453007685677, 0.2151852748992088, 0.2658605825653322, 0.29911225563077193, 0.6594110243744711, 0.49869782335001445, 0.16788254706683048, 0.11816213334465087, 0.08230909248122409, 0.13653212507346946, 0.25639170942272826, 0.06562233405876228, 0.23311900627036541, 0.3756616197417655, 0.46674395287949066, 0.3092684534350997, 0.8337319641197457, 0.8331457111467163, 0.2591056156836542, 0.4778687671024334, 0.2542440524586721, 0.5361036306539362, 0.07073721340803463, 0.4731688813159418, 0.5755848065786346, 0.356689463387698, 0.14225616860197343, 0.21837916002376445, 0.14466174791529418, 0.29899643271856946, 0.4757427727983842, 0.08126799884203029, 0.1296501822378736, 0.3286954654423938, 0.08620177311633537, 0.13855855420831553, 0.05543377339452393, 0.11917834098009661, 0.2613621884509647, 0.11269900223777074, 0.08429051026621415, 0.3393961441870107, 0.07031960314855146, 0.11356777592095357, 0.4853279864284006, 0.1279289285514792, 0.0584572339054259, 0.08612988585012649, 0.3472440907423937, 0.1248029959061332, 0.07502335399434323, 0.19827111133563302, 0.3424151534036639, 0.3065175956815872, 0.13808860398564737, 0.058092197534895806, 0.04082786106581715, 0.1602592849246841, 0.09156161599234125, 0.5036030690663805, 0.2640411824475748, 0.6468038092930676, 0.07201805208597656, 0.22470230804277058, 0.1334773721572423, 0.04847889440667685, 0.2685808245693546, 0.10911308148570098, 0.6764508967260475, 0.6280060594576413, 0.36761958218269275, 0.16019930342079847, 0.17605308658107655, 0.14078981831089854, 0.2384997092801764, 0.13117402490907393, 0.12818959986091483, 0.4161925244315118, 0.12435295831370408, 0.09814942480303201, 0.05480698563416486, 0.3746187330143109, 0.41092354232892336, 0.507894749900129, 0.5137929421583434, 0.08293523366016065, 0.2964416548030494, 0.15236141109070434, 0.4396941021426354, 0.41893931094950754, 0.09113953260801844, 0.10967473999240707, 0.055732078845942, 0.05640314085190745, 0.06176263301115803, 0.06427139521062619, 0.20386133178572885, 0.21597661143113533, 0.7486409492386699, 0.2610715902497083, 0.09465277491899493, 0.5556171757583562, 0.137718889647652, 0.1978940751503777, 0.08472590699531857, 0.356262641598029, 0.14596950445002987, 0.13865818299932142, 0.3088915816821678, 0.11516321289421916, 0.16121169033174265, 0.40573483691789825, 0.34308606282264, 0.36300204724896845, 0.17193414756867276, 0.035926383178341514, 0.34536882843285344, 0.4400180463892147, 0.5165194668234709, 0.23319834124303085, 0.9637923675569924, 0.2635599134550337, 0.6259141532505736, 0.12324962258280003, 0.1256037712827487, 0.1248029959061332, 0.11665042079727428, 0.29081136443782263, 0.12993062945549005, 0.20959981847797426, 0.12385816607190492, 0.16931651488884025, 0.2468284110987674, 0.6181879252747016, 0.3509541008179864, 0.08619429866610873, 0.09537770951135394, 0.8204393830764495, 0.2493836920976743, 0.10367142046182065, 0.11516383353466464, 0.07169627826225977, 0.5400384130096556, 0.2709141565803237, 0.16809050322974173, 0.3421981324687273, 0.812724325423183, 0.1326589750154965, 0.054670132935181304, 0.055346153509382656, 0.8039442695404772, 0.3276168958360183, 0.6561718697940482, 0.6214102617950452, 0.3046829516703813, 0.7853649284745584, 0.7303620793003476, 0.6719087507962026, 0.16000678121984613, 0.579612101366232, 0.6347749924714103, 0.41894393066564606, 0.06936532322770372, 0.28322834609079706, 0.343263893078516, 0.4450860003239352, 0.3090838478611311, 0.408095736797927, 0.11529682880263803, 0.13359771811640497, 0.2417229185475579, 0.10092265889692065, 0.8181934133883563, 0.3777834313813965, 0.8273808576462511, 0.18439353202429143, 0.5148786056082297, 0.11287077888712382, 0.16015059460472458, 0.29672938182784603, 0.36944561074938853, 0.2505850522824452, 0.8467591712977676, 0.3840267097226593, 0.261779448872241, 0.1645479955558209, 0.14631295673285594, 0.4248523287309329, 0.09222807982804315, 0.2121484308544801, 0.33273366741371935, 0.5470626312455473, 0.8294144697045585, 0.25206662215500397, 0.15998368749433245, 0.548322128117227, 0.3917329141436472, 0.15981565308588508, 0.23631147082452741, 0.21082920466209698, 0.1871387197916503, 0.24774693401855818, 0.1913242313933492, 0.16437448769677154, 0.07582203648947516, 0.032541140295091364, 0.06311143057978008, 0.5009235508757715, 0.12343879567504301, 0.445735807756371, 0.40322837553658053, 0.09397553936597514, 0.1598391281143201, 0.26702494168661406, 0.19782301216908982, 0.06831823449824892, 0.5451167746582685, 0.20142160156100697, 0.25747632252511843, 0.4257317671215596, 0.5062318064185062, 0.10278357133077332, 0.10857266292312517, 0.06223864817381186, 0.11377411494697365, 0.14082424186384768, 0.2589321903149734, 0.31776639873426016, 0.07983414941561229, 0.30174211068680845, 0.42532907678292176, 0.23734670470511587, 0.2862296469110084, 0.24790288035387664, 0.5526146374040077, 0.20425399436950087, 0.5166825128498294, 0.12415322942140417, 0.5310696157212036, 0.3866387435262121, 0.14313186082947948, 0.31648660326859934, 0.026792916001305622, 0.7856428374245099, 0.42383310375799566, 0.5944566396871084, 0.6256605001243821, 0.08813642250468567, 0.03544811528140901, 0.06935406654889886, 0.15751976448865512, 0.22608551288474832, 0.3127311228465576, 0.1409438166611655, 0.3285615524533705, 0.3591330499592894, 0.47964497307801546, 0.7143146030302826, 0.14223944449319303, 0.06929054967731618, 0.32120711190509066, 0.16913647442041335, 0.707286257884667, 0.3230684446475647, 0.7616845263358343, 0.4104900542879092, 0.10053249234255524, 0.1106599594415556, 0.1543174595222413, 0.46003879185641183, 0.3811350878514418, 0.07185070571861518, 0.23882593985771994, 0.5344976262521839, 0.11031385635331636, 0.09610989844306939, 0.4955559099445003, 0.07845190603324759, 0.30697262074812925, 0.12767551958037127, 0.4375661224395835, 0.07737023387634634, 0.15307682457740834, 0.05694427046787409, 0.09028836937410878, 0.4011292297732457, 0.6186146927451245, 0.11561676905211238, 0.0993047499370594, 0.08102401279833105, 0.8100206966555492, 0.10768932514586738, 0.15386113005635593, 0.4026560765644126, 0.045535707525545144, 0.08229583319403, 0.08227601457953415, 0.8241544781987433, 0.0759900855540333, 0.5147505197509459, 0.11103147778198663, 0.42144961755966015, 0.24880465403270857, 0.3112403223054312, 0.3282460941643247, 0.28312386083977936, 0.2865521931047814, 0.16537364909659502, 0.4284132019637321, 0.34116073112729894, 0.051142721309942685, 0.10794707492381372, 0.1108646816717751, 0.29201805921023904, 0.07365131996157204, 0.36851051207096197, 0.2556143611338999, 0.07392456180697715, 0.045535707525545144, 0.15025986810093994, 0.4395989822566938, 0.19636656988846957, 0.21018464628148859, 0.15085686628779282, 0.3429118439192298, 0.16104008564300487, 0.2055862423584408, 0.18673310211333727, 0.5528531989583015, 0.20219789553586287, 0.5807830339134155, 0.6112381610839525, 0.07515362639458067, 0.5722084734915175, 0.3654892991508686, 0.1991057466826236, 0.4912569401667811, 0.05850610073101081, 0.3077884117234785, 0.17038242498240874, 0.14066607718466684, 0.10248584652416493, 0.4022873718442217, 0.07205214632436985, 0.35142291824287475, 0.10941760034103376, 0.06679271580157364, 0.05675388891699207, 0.058987921856350156, 0.3660303223369904, 0.28790374422385034, 0.4158290962648631, 0.40710291595796666, 0.09934102670994882, 0.06362846635195196, 0.30921476208988685, 0.23242198019285765, 0.055541210656895434, 0.5297663836663529, 0.10744632778983743, 0.18410212910939194, 0.17721960751489196, 0.1962664672709783, 0.1617648996714035, 0.10584426414108294, 0.5203501665477333, 0.07365131996157204, 0.31578819840495265, 0.35364190165315845, 0.1707951928721818, 0.41655733121321636, 0.15801546378512366, 0.7568436608419439, 0.22368578646300386, 0.0609449253562836, 0.2225096762928218, 0.18587673368692093, 0.05559101133196209, 0.569598540521716, 0.08073228430722412, 0.15724041301590164, 0.12879141548479, 0.4306817897420764, 0.17998791969802397, 0.41280880088413996, 0.5723062335690389, 0.6457404130724687, 0.10420061808672998, 0.12564769853034463, 0.21795029564941848, 0.4720930498870375, 0.11304202998506685, 0.545112257205237, 0.14852188644910969, 0.17217029085021085, 0.336250902618187, 0.48671482860553816, 0.5093433434984792, 0.35847801144896685, 0.3008706318705062, 0.18494609259573758, 0.4199330463236065, 0.04162287990776414, 0.2633909944023186, 0.4252182303976608, 0.4684623303117058, 0.1925553058603695, 0.09610989844306939, 0.09129843496680234, 0.3302708189676917, 0.4199330463236065, 0.11927294568859859, 0.4864154015695107, 0.06472081497616611, 0.6387929002666255, 0.37932906694235924, 0.093713747684541, 0.20627971812824875], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (curr)\", \"type\": \"scatter\", \"x\": [2.5, 4.7, 7.0, 2.3, 19.45, 22.0, 13.15, 1.6, 1.7, 2.3, 4.3, 1.2, 6.4, 7.2, 14.3, 18.1, 7.6, 2.7, 4.9, 1.1, 1.4, 17.2, 4.9, 11.8, 1.6, 1.7, 2.1, 14.8, 0.7, 0.8, 11.95, 1.1, 2.5, 2.3, 1.0, 1.7, 2.3, 1.5, 4.9, 1.4, 4.1, 2.0, 11.2, 15.2, 1.4, 1.7, 3.4, 2.2, 19.3, 6.1, 7.0, 18.35, 6.9, 2.4, 2.6, 1.8, 2.0, 4.2, 10.5, 15.4, 4.2, 8.3, 7.7, 2.9, 10.7, 2.0, 1.4, 1.9, 3.0, 1.6, 2.1, 2.5, 1.3, 1.6, 7.7, 1.2, 18.75, 1.7, 1.0, 1.9, 9.3, 1.6, 12.6, 2.0, 1.7, 1.7, 4.8, 13.7, 1.2, 6.1, 7.1, 1.9, 2.0, 14.3, 1.9, 2.1, 11.7, 3.9, 9.7, 8.1, 2.5, 6.5, 18.1, 1.8, 1.5, 2.1, 1.9, 1.4, 5.1, 13.7, 1.6, 14.5, 1.9, 1.3, 1.2, 10.7, 12.3, 4.9, 8.3, 2.1, 14.95, 1.8, 1.7, 1.6, 2.0, 7.0, 1.2, 11.1, 2.0, 5.1, 1.4, 15.6, 14.3, 1.0, 2.0, 11.0, 1.8, 3.0, 10.4, 6.6, 6.7, 1.7, 1.2, 5.1, 2.3, 12.1, 2.0, 1.6, 1.9, 9.5, 0.8, 13.3, 5.5, 7.7, 1.5, 1.4, 12.1, 8.2, 10.0, 12.6, 2.0, 15.6, 1.4, 13.5, 4.4, 7.8, 1.1, 1.6, 5.6, 8.6, 16.05, 10.4, 1.9, 1.8, 1.9, 1.4, 1.0, 11.6, 10.3, 15.8, 1.5, 5.1, 2.7, 1.1, 15.1, 1.4, 8.1, 17.8, 1.3, 7.9, 2.3, 3.75, 7.8, 1.4, 10.8, 2.0, 1.2, 6.4, 14.5, 11.8, 1.8, 13.2, 14.9, 15.4, 1.25, 15.7, 6.9, 2.2, 12.9, 10.2, 7.3, 5.0, 2.1, 1.1, 6.8, 2.7, 11.1, 9.7, 1.4, 1.6, 11.2, 8.0, 9.2, 6.8, 1.6, 10.4, 2.0, 3.9, 1.2, 1.0, 17.9, 1.6, 17.1, 10.7, 1.9, 8.8, 1.0, 1.4, 14.3, 2.0, 7.7, 2.3, 2.0, 9.6, 0.9, 5.9, 1.5, 5.4, 13.7, 6.1, 1.6, 16.0, 10.7, 10.6, 2.5, 16.3, 9.6, 4.6, 8.9, 2.5, 2.4, 1.6, 11.9, 11.9, 2.6, 1.3, 6.0, 1.6, 1.9, 8.9, 1.5, 2.6, 17.85, 6.4, 2.0, 1.8, 15.6, 2.7, 2.4, 11.2, 2.6, 17.75, 1.15, 1.3, 3.8, 1.2, 0.9, 4.5, 1.35, 2.5, 7.7, 7.0, 8.5, 2.7, 5.2, 2.2, 0.9, 7.8, 15.8, 2.3, 1.8, 2.6, 7.0, 11.9, 12.1, 1.0, 3.1, 10.1, 15.4, 8.1, 1.6, 2.0, 1.3, 17.8, 2.0, 13.6, 1.7, 8.1, 1.3, 2.8, 2.55, 1.7, 17.8, 5.6, 3.45, 10.1, 17.9, 1.4, 8.0, 1.3, 2.5, 11.4, 1.2, 1.6, 2.2, 1.3, 0.8, 1.3, 17.1, 5.2, 8.1, 2.4, 2.0, 2.0, 2.1, 1.3, 8.2, 2.5, 17.1, 1.3, 2.7, 2.0], \"xaxis\": \"x2\", \"y\": [0.18579927887031134, 0.9274202256360236, 0.2569067617886446, 0.17851375722123963, 0.43011516789686843, 0.3951880410340851, 0.35333307802371594, 0.854899199395705, 0.7749695319329993, 0.7150752736216004, 0.5793836726576811, 0.17187478758168062, 0.503776006633781, 0.6517104478925241, 0.5321166645488455, 0.4291031613352281, 0.6295132227815239, 0.446367751604861, 0.12978626497489776, 0.578130474122496, 0.1303225049324246, 0.4589423036505589, 0.6028673022099313, 0.6724998803801079, 0.055171077290688375, 0.28900585249094113, 0.5807441942986169, 0.6324527530146118, 0.32780881811994433, 0.4437792729685527, 0.47375733914823626, 0.6755390392614542, 0.8494338455743565, 0.8432302027568838, 0.3962269303969661, 0.36574887203466033, 0.9780529644634413, 0.6757083557066426, 0.43212531492562845, 0.6428319532862445, 0.2244465690609686, 0.6759712108962084, 0.300575337785698, 0.4848467547623382, 0.24353241802821812, 0.6165640897352094, 0.801889943514816, 0.6831580296641933, 0.4684052737322374, 0.07309555507266852, 0.17397747102053363, 0.548208100621717, 0.16948307959681597, 0.5287139706981401, 0.8097217619362252, 0.48186532860504816, 0.7044722268129955, 0.5458559966555334, 0.6067015953642416, 0.5767206748937392, 0.5416109283549078, 0.7766135747357961, 0.6371580804073698, 0.3290646799011723, 0.53941953634433, 0.7444876216695655, 0.27658524567301757, 0.8518717737266248, 0.685064206005921, 0.7994946846943811, 0.6254668451144636, 0.29898447003196504, 0.36566585814722175, 0.8260679099411251, 0.265003746926769, 0.18277705216857454, 0.6401445853260315, 0.2878944788643705, 0.7379395090268356, 0.6578861964269485, 0.3048731186933995, 0.6479177870210828, 0.5479007895539181, 0.8109237991420157, 0.4555798348891207, 0.35159410271621183, 0.6741813074403022, 0.40366163192193316, 0.3797333752177462, 0.42326140605337403, 0.49450075158901585, 0.7027754368270075, 0.31556666432085356, 0.5737052492708005, 0.5594846166878963, 0.9879213229528466, 0.23907110553933086, 0.7604887601700165, 0.906894853259191, 0.49150798334893764, 0.6693239074263375, 0.635181004157038, 0.4291031613352281, 0.6805197940362542, 0.8579270215873258, 0.42231028799440284, 0.7973836574204367, 0.6209099995125147, 0.617932351579841, 0.5867531689564582, 0.8217385626893267, 0.5766058512754557, 0.6085190813519714, 0.6488649586424557, 0.19466062481522506, 0.4062994677131635, 0.31500574198466447, 0.6106996692323751, 0.48314991346809855, 0.4300926711133176, 0.4623912750166579, 0.18141675383529432, 0.7404949196358439, 0.7960551628311661, 0.6696955469146251, 0.7471897031921468, 0.15222801432328747, 0.4782875749995391, 0.6696955469146251, 0.4617114467660769, 0.0374236133971757, 0.34638250956587036, 0.5737052492708005, 0.35412183815676124, 0.5342599897609015, 0.6273126624389191, 0.1819914526651868, 0.6450640502472667, 0.7576359910572065, 0.6363669366758954, 0.35783776888428775, 0.4555798348891207, 0.2603691587203709, 0.09638465351539516, 0.7889843001267657, 0.3995975535535492, 0.2404138117262561, 0.5134503976671381, 0.7620160241108803, 0.4852174766770502, 0.7934067722809752, 0.5657371707019572, 0.40591517497640706, 0.5142806824729376, 0.4667389755277017, 0.4597803030361328, 0.14211531046105408, 0.4709774325404933, 0.39253304933110444, 0.8152160844894966, 0.6418608562675732, 0.5695619245525361, 0.15898796250578873, 0.4189913516486339, 0.8097376625536354, 0.2776505479619531, 0.14100712613869515, 0.1625374057836978, 0.21879614767173305, 0.26016804821119, 0.5884346274074399, 0.25171266030158634, 0.5556828679884147, 0.2886326125606653, 0.5013044750460076, 0.23728971353361283, 0.6280660923097139, 0.6281218947904323, 0.6226708394296439, 0.1280348372312241, 0.37812375401711507, 0.6218606462016874, 0.446367751604861, 0.5237591509200082, 0.22560064672115399, 0.4159575064805634, 0.43989745285902637, 0.38133093816728936, 0.379388299643832, 0.4244201113870294, 0.8495234946343055, 0.44699506619782237, 0.3402560380560977, 0.16997778820688525, 0.6509841470756508, 0.5589353890471914, 0.49320900326902484, 0.41485179365651337, 0.2850172536812061, 0.5150740024049856, 0.7905789411902706, 0.6660097546858721, 0.5916856454756931, 0.25029771644034415, 0.21820707607863943, 0.23625780462752244, 0.6174344585079109, 0.33885175059010386, 0.8097775874289167, 0.5502791542248897, 0.45232673966787307, 0.5168725346003686, 0.4922951659433321, 0.2710495410551712, 0.5620189509382074, 0.19827785442852286, 0.35653263682836045, 0.4940220265254579, 0.3934632807735441, 0.349631294967786, 0.6543252873397565, 0.6043841099981286, 0.6572212454398962, 0.5323595728841377, 0.4667716613599331, 0.5480891857555714, 0.5933716837007499, 0.5769442381274095, 0.7796710482718338, 0.4721284230669528, 0.5632051337005155, 0.25606657060722404, 0.47304849589761655, 0.4991199345133047, 0.785831825438318, 0.5512091114854263, 0.31651464458218903, 0.192246895102814, 0.5737052492708005, 0.14970485751781393, 0.8257882443178004, 0.7450862811651306, 0.2404138117262561, 0.3428275867057816, 0.2186811050870735, 0.43730933466596944, 0.1325711740116582, 0.33994853494016564, 0.5172250338280965, 0.4543852880840521, 0.6017244994332274, 0.7267617626256621, 0.304103470637073, 0.49511795227452726, 0.4577650902534979, 0.4389063253281036, 0.3428275867057816, 0.6911248892501751, 0.5457123873353599, 0.3395528272139201, 0.5662837862370104, 0.38281068028313525, 0.1899488449656659, 0.1899488449656659, 0.39416742153886597, 0.4473524415330049, 0.5724944828663213, 0.12652799787397961, 0.14917046216496987, 0.4192276293132746, 0.1727250451072272, 0.7329347521090118, 0.2979855805324535, 0.5384433083808008, 0.2944152049751758, 0.5661013076544325, 0.39283078357423706, 0.6503174362647687, 0.7632350838020857, 0.29422440231251745, 0.8446099855685041, 0.3812461384129847, 0.1264117171095669, 0.6995051325026098, 0.7680829457938805, 0.1086082602083136, 0.50228427853815, 0.8303888649041977, 0.15145052047802054, 0.5239967242043768, 0.49461569007297057, 0.7323984730128237, 0.6372335578763709, 0.8485373319296128, 0.21018203617182263, 0.3854703692354019, 0.6209619763202376, 0.6996467359659702, 0.3913887983225227, 0.600932061108284, 0.18141675383529432, 0.32841971343371723, 0.17397747102053363, 0.3943097935149382, 0.5998672378660981, 0.6052803835931642, 0.35501406908939237, 0.4362847089434372, 0.6005057903956104, 0.45095984485898877, 0.5601124581139871, 0.6908342266509375, 0.29066967723125237, 0.5437491575180791, 0.5955595524057149, 0.4226516353037165, 0.552222307965348, 0.5038457784615318, 0.6752568781943777, 0.7880730680059006, 0.09430965090665133, 0.4986183600001317, 0.24112389044610405, 0.3635071851353404, 0.7047195247497422, 0.5251048099479148, 0.5632051337005155, 0.4520037684813636, 0.5271857161160298, 0.36566585814722175, 0.8775119234978208, 0.49474741138534273, 0.17187478758168062, 0.1069918390347242, 0.6371627391106971, 0.19018032574493748, 0.34352259564225396, 0.806114950115292, 0.47304849589761655, 0.5014153035286022, 0.6721952796384192, 0.7507248720260316, 0.38512814216859315, 0.8930847268109882, 0.863224561659591, 0.15108072818859253, 0.7399796913917198, 0.18579927887031134, 0.47304849589761655, 0.2033384066370545, 0.43667652058029827, 0.23252054766636898], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [3.5, 14.3, 1.2, 2.2, 2.3, 1.2, 1.2, 8.0, 2.1, 1.6, 2.7, 1.3, 1.2, 9.65, 4.3, 1.2, 1.4, 2.8, 2.1, 3.2, 14.2, 14.5, 0.9, 1.1, 7.2, 1.2, 9.1, 3.95, 3.6, 4.7, 1.8, 6.2, 15.0, 6.4, 1.5, 1.2, 2.6, 7.9, 3.95, 1.9, 7.5, 2.5, 14.0, 13.0, 2.0, 2.3, 16.85, 1.9, 10.3, 1.7, 2.0, 3.9, 9.3, 1.0, 7.0, 14.1, 8.2, 1.8, 11.4, 1.7, 2.3, 20.3, 5.5, 9.7, 7.1, 2.1, 8.1, 6.7, 1.8, 1.3, 14.4, 2.4, 11.0, 7.4, 13.2, 12.3, 19.95, 1.7, 1.7, 1.9, 1.5, 1.0, 2.4, 2.1, 9.7, 3.1, 1.5, 14.5, 6.6, 1.6, 12.7, 7.4, 3.6, 1.4, 1.6, 6.5, 1.4, 4.6, 1.8, 2.1, 7.1, 9.9, 2.0, 2.1, 14.4, 10.9, 2.0, 9.0, 2.5, 2.8, 13.0, 31.6, 8.2, 1.7, 5.0, 2.2, 2.7, 1.4, 12.2, 3.2, 11.8, 1.5, 2.8, 1.4, 2.1, 2.1, 1.9, 4.7, 2.6, 1.8, 5.1, 1.8, 1.7, 17.5, 1.4, 17.1, 1.6, 2.5, 5.2, 1.6, 4.4, 3.2, 2.8, 8.5, 13.1, 1.2, 13.8, 5.6, 6.2, 1.1, 10.3, 1.0, 11.7, 16.2, 1.6, 2.8, 1.5, 2.0, 1.3, 14.2, 1.6, 2.0, 6.1, 8.2, 2.5, 1.2, 4.6, 2.2, 2.4, 1.1, 1.4, 1.1, 15.2, 4.7, 7.5, 4.2, 1.6, 7.8, 3.5, 2.4, 5.2, 10.8, 1.3, 3.4, 9.0, 1.8, 2.1, 4.8, 20.7, 2.2, 7.4, 17.3, 2.2, 2.3, 4.7, 4.9, 3.7, 1.6, 13.8, 8.2, 5.7, 1.7, 4.4, 5.9, 8.7, 2.1, 4.3, 6.55, 1.6, 12.9, 5.4, 2.2, 1.7, 2.9, 2.2, 7.6, 1.3, 3.3, 6.3, 1.8, 5.3, 7.3, 2.4, 7.1, 13.7, 10.2, 3.0, 5.3, 2.4, 1.5, 4.1, 6.9, 8.0, 7.1, 2.1, 11.8, 3.3, 1.4, 9.1, 1.2, 5.5, 7.9, 11.1, 1.8, 1.9, 2.3, 13.9, 14.5, 1.2, 2.7, 1.6, 12.0, 14.1, 2.7, 12.85, 14.8, 1.6, 1.1, 2.1, 2.7, 2.1, 7.2, 1.2, 5.4, 4.6, 2.0, 2.6, 12.6, 7.4, 10.2, 8.6, 4.2, 2.5, 2.6, 8.8, 1.8, 1.3, 7.2, 1.1, 2.2, 1.8, 1.7, 6.2, 10.8, 7.75, 2.7, 6.6, 1.0, 7.1, 1.5, 3.0, 2.4, 13.3, 2.1, 2.8, 7.75, 15.8, 5.0, 20.8, 6.4, 2.4, 1.4, 4.1, 6.0, 13.2, 2.1, 1.5, 5.4, 1.8, 2.6, 16.8, 5.0, 4.4, 13.0, 1.1, 1.2, 11.6, 1.3, 3.5, 2.9, 5.7, 15.5, 4.8, 15.55, 5.1, 2.7, 3.8, 1.8, 14.2, 5.3, 1.9, 12.5, 2.6, 10.4, 1.2, 4.1, 14.2, 12.5, 8.3, 2.0, 3.8, 10.7, 8.2, 2.1, 1.9, 9.8, 6.5, 0.9, 2.7, 2.6, 13.0, 1.4, 13.4, 16.2, 10.2, 4.9, 2.0, 7.0, 12.7, 2.4, 6.2, 8.6, 2.6, 15.55, 1.4, 7.3, 16.0, 7.0, 16.8, 3.2, 1.2, 6.2, 1.2, 1.0, 4.6, 5.5, 1.1, 10.8, 2.2, 10.2, 11.75, 6.0, 7.4, 7.4, 1.9, 2.1, 1.6, 1.2, 2.4, 5.1, 7.4, 19.95, 3.8, 16.1, 5.4, 2.6, 18.95, 2.3, 2.0, 1.5, 2.1, 4.4, 1.8, 17.5, 2.3, 12.8, 13.3, 1.4, 14.7, 4.7, 1.4, 2.5, 1.1, 1.5, 10.3, 3.0, 6.8, 2.4, 7.1, 7.0, 1.2, 1.8, 2.65, 2.4, 2.1, 2.8, 7.4, 11.5, 1.6, 1.3, 2.6, 1.2, 1.7, 1.4, 1.9, 1.9, 4.3, 13.2, 1.9, 12.8, 12.8, 1.7, 8.6, 5.7, 3.2, 2.0, 1.6, 2.4, 2.0, 2.5, 14.7, 1.8, 1.4, 1.5, 17.55, 1.8, 13.55, 1.0, 12.0, 3.6, 3.85, 4.0, 1.2, 15.4, 6.5, 1.4, 9.1, 1.1, 3.0, 2.5, 6.6, 8.1, 2.4, 15.5, 1.7, 11.3, 5.7, 1.4, 1.4, 2.0, 6.3, 4.7, 2.5, 1.8, 7.4, 9.3, 10.55, 2.9, 1.7, 2.2, 1.5, 14.75, 2.4, 2.4, 3.5, 1.8, 1.5, 2.8, 1.2, 2.0, 1.3, 10.5, 12.8, 1.2, 1.9, 16.0, 7.7, 2.3, 2.9, 1.6, 2.1, 1.1, 1.6, 3.7, 8.0, 1.9, 8.8, 6.7, 7.3, 2.5, 3.7, 2.6, 1.3, 8.3, 1.3, 11.2, 5.2, 4.7, 9.2, 12.7, 2.5, 7.4, 13.2, 1.8, 2.1, 5.25, 3.65, 15.75, 1.9, 13.65, 4.9, 9.15, 1.9, 2.5, 0.9, 14.0, 2.6, 2.8, 1.8, 12.8, 17.5, 8.25, 1.9, 1.6, 1.5, 6.9, 2.4, 1.3, 1.2, 6.7, 14.8, 12.7, 13.7, 2.0, 1.3, 1.6, 9.25, 12.9, 1.0, 4.7, 1.7, 10.8, 1.1, 19.95, 1.1, 1.2, 9.7, 6.7, 1.6, 2.3, 5.3, 13.6, 11.4, 1.6, 1.4, 2.6, 2.4, 10.6, 4.6, 2.2, 1.7, 2.0, 1.5, 5.0, 2.0, 2.6, 4.6, 12.7, 5.7, 6.3, 6.7, 8.2, 7.1, 2.0, 0.8, 2.0, 1.9, 1.3, 1.7, 1.1, 1.1, 9.85, 1.2, 1.1, 2.1, 9.5, 1.7, 8.0, 13.65, 7.9, 4.4, 9.55, 1.1, 7.9, 1.8, 2.2, 1.1, 5.9, 2.4, 6.0, 2.0, 2.9, 1.4, 2.1, 5.2, 5.8, 1.8, 2.0, 2.3, 15.1, 2.3, 16.8, 13.8, 1.5, 12.2, 8.2, 4.3, 8.9], \"xaxis\": \"x2\", \"y\": [0.6660328535674787, 0.4955559099445003, 0.11251030999551548, 0.5313240922219649, 0.7616845263358343, 0.42881839881496897, 0.22146723198036844, 0.2709448900825402, 0.04188686298684474, 0.3198999677935893, 0.586632325439729, 0.3332859260788763, 0.0891770245136605, 0.07249138429342028, 0.0813041402249215, 0.2808128557304226, 0.18155424903412543, 0.14020593233116785, 0.20529540916933675, 0.1755850319354616, 0.5722846846512241, 0.4684623303117058, 0.2863708053899042, 0.4489302200945696, 0.3606737334686688, 0.09834172337505831, 0.1439119889738254, 0.10526388551166177, 0.08976738859769384, 0.15927641460572795, 0.07353544332944184, 0.4894096639868448, 0.24735122968283396, 0.41440459167745447, 0.10107859516115147, 0.4809249647595707, 0.043928674649753696, 0.27268427565697984, 0.07203278686513981, 0.35989685204578803, 0.08410225657903847, 0.09640449279894714, 0.2859044620344169, 0.766491644508495, 0.27194216744256416, 0.11891721880979944, 0.6033870782914414, 0.8445823904457724, 0.4148378249676725, 0.09538880480821377, 0.5822786697287807, 0.2006236885231063, 0.30215903380660414, 0.3526626332448971, 0.22921561702294402, 0.3499358724503807, 0.451050436906263, 0.01968005574460141, 0.3849224947932618, 0.608666907839271, 0.30333177217190177, 0.05732515971384944, 0.08299070223644744, 0.155374347961305, 0.4378217303747408, 0.10641916767178827, 0.3207785913922725, 0.3280003244598044, 0.4747408725557203, 0.27229542413121455, 0.5314247042003052, 0.13834506443323813, 0.652508483608137, 0.1775869136191267, 0.4659209431511335, 0.3288332341233703, 0.47224603889779837, 0.2773569186284155, 0.18590272545123854, 0.6719763059805124, 0.04569198037744582, 0.22473444069733528, 0.0776074933333939, 0.1411968215808168, 0.3654892991508686, 0.06069899520469324, 0.21029328672965164, 0.13919371635861133, 0.16321149678759816, 0.6144435769482088, 0.1388055550317996, 0.0827658987104557, 0.0793107693477757, 0.04994940743047871, 0.46220165202879504, 0.08265172102971341, 0.5554564865761329, 0.10902951494304747, 0.26480674198345266, 0.31816712550642645, 0.20184400370343658, 0.23734670470511587, 0.19264674509953905, 0.03558879485690103, 0.5314247042003052, 0.3013473679880785, 0.8043030592862955, 0.07665185966197174, 0.17816243980233548, 0.14637302723887635, 0.43623195291339645, 0.5773286546676725, 0.06996409198491005, 0.0635191394270278, 0.11839391684253864, 0.03368970372860669, 0.16544292122901683, 0.5002106013252752, 0.20783967621931676, 0.4413184352618238, 0.1377753535318076, 0.017128038770129694, 0.09070427960766203, 0.05237321155563324, 0.46044782253877736, 0.09863911308639095, 0.6058955548956951, 0.07377868677997379, 0.33726125667837825, 0.03705661785513226, 0.03856885477325478, 0.01970319875133708, 0.06623921298607705, 0.655672818127978, 0.36403826442427, 0.375635621083512, 0.25822104517587474, 0.26990817233175546, 0.30316845466795117, 0.21597661143113533, 0.10411587283779344, 0.4582573305440075, 0.28974208538397184, 0.3995654588450376, 0.48407929824265805, 0.2412117545349558, 0.49704114689177337, 0.3112403223054312, 0.13571503940671914, 0.35304273602320047, 0.18963603484652192, 0.06023564559469896, 0.305863422303413, 0.34062746964654456, 0.03532029949184434, 0.20200996882548472, 0.207876095289533, 0.11304202998506685, 0.26487496820305634, 0.46674395287949066, 0.05931266843465788, 0.6063731497207538, 0.053339747820140615, 0.16056749669580483, 0.3366557342021428, 0.18735912995827353, 0.2667542380283816, 0.9197592959547904, 0.13322255285490225, 0.3533185668595151, 0.08763312389948397, 0.343329095265401, 0.1298321532292276, 0.11240742021865013, 0.03412749239977686, 0.23316671381479437, 0.13955591125269062, 0.065615492475942, 0.03940539431326806, 0.04874684240881699, 0.42507109047861347, 0.3720756994829524, 0.20627971812824875, 0.23346983492740092, 0.299872058778726, 0.14688925552714138, 0.20529540916933675, 0.11294333341234963, 0.4523771212155355, 0.15895981664313275, 0.12633289347617382, 0.34801013400503944, 0.063056887931354, 0.09222807982804315, 0.19281104432210028, 0.11843845992675284, 0.1064686731970873, 0.12171087020281346, 0.49704114689177337, 0.4202798549667376, 0.058322454167927695, 0.40418598015134155, 0.7514842711311043, 0.067978575311199, 0.1468497162592186, 0.3655805321171328, 0.36741292271676196, 0.08785516413846428, 0.4223454464089015, 0.09472348251934337, 0.14196098925812006, 0.10013555988874479, 0.32154631204965056, 0.05416575683382341, 0.786126361492164, 0.04696516601190348, 0.26926088858349784, 0.28123172687107445, 0.3094364396730669, 0.04307250962973752, 0.07126159086244754, 0.6143015945908075, 0.495586079448059, 0.46102608015166635, 0.40789311683600216, 0.8929715185951024, 0.1227006502272181, 0.3638055988942468, 0.10470002869891348, 0.29304213908849364, 0.8936703981375603, 0.3534407380188983, 0.0883666731866185, 0.07895584641700149, 0.05166417783587085, 0.4199775765299997, 0.10304865631077798, 0.1041340676595982, 0.11031385635331636, 0.22368578646300386, 0.22137255536682798, 0.0725394352715707, 0.08320759746190642, 0.3577905591727162, 0.36362749207413336, 0.13058702032609693, 0.4306817897420764, 0.4684623303117058, 0.3185463047756948, 0.6991046594229053, 0.33105510290791684, 0.35804773811787727, 0.3499358724503807, 0.17780319308126435, 0.07142366539796174, 0.1504846162366139, 0.28643330026545544, 0.11492102279820171, 0.08716328114311156, 0.12905574960179156, 0.5528531989583015, 0.2852168598030531, 0.3185463047756948, 0.41766807389819915, 0.22818770291371737, 0.10749415552266317, 0.07500089027222667, 0.2150933620687273, 0.4879833184669665, 0.21367083697314282, 0.18281788227943807, 0.11217648511765432, 0.01860460444149037, 0.4990100838788346, 0.3212979959143686, 0.7252893191599291, 0.30018855716775616, 0.2808216200321265, 0.24332849241566534, 0.22583693263898685, 0.307128141019565, 0.12930297020615966, 0.07734813107736227, 0.38078614076753503, 0.037937415915298756, 0.18389331462546077, 0.2015421194948802, 0.10121634311933059, 0.7209948827487924, 0.252131738577411, 0.19866278493931944, 0.5569604587758099, 0.19172534874952063, 0.07516041810443141, 0.18673310211333727, 0.20736440356309183, 0.27568985010185776, 0.1748501221961516, 0.134246332983591, 0.12151400729184814, 0.03860330573341564, 0.16198960071610413, 0.062309112953929935, 0.14943540958877521, 0.46827469198568006, 0.12435295831370408, 0.11768791031746062, 0.10794707492381372, 0.04347111427796346, 0.07423675680829, 0.1602542791395647, 0.19911642350143877, 0.2379444352717226, 0.36664322039668684, 0.10130143557253446, 0.17108028607870185, 0.6143194513817134, 0.5641235853966853, 0.29864316680665437, 0.44752301946823647, 0.13459844499503626, 0.037461465199631894, 0.5002964248569376, 0.4059565893810353, 0.7035957096210382, 0.0629603198376949, 0.25036415064992923, 0.14780834332950044, 0.24800647860056513, 0.10438723399855232, 0.24366911510822187, 0.4574644219698093, 0.8347014835967527, 0.42226245660703365, 0.4073158502222598, 0.47525484003715535, 0.37845934883934684, 0.35325777167774697, 0.4763432908647238, 0.18941100564626978, 0.23853527246002126, 0.27277355193056574, 0.5556171757583562, 0.19481513110659687, 0.7460207524242459, 0.12627308236197843, 0.2115813466591615, 0.4773837842994688, 0.22238536240250728, 0.1978655273089749, 0.32057959349203036, 0.1601330373243487, 0.6256605001243821, 0.34062746964654456, 0.5899158924001677, 0.1273375405407705, 0.6866376712310945, 0.3812864953771038, 0.07918534602430627, 0.10510921928053807, 0.052405178286905496, 0.29010285216427345, 0.5802968836962079, 0.4475494904811408, 0.33107045093633036, 0.6046547135519548, 0.33132995382553565, 0.3391582818855403, 0.37109937806185267, 0.18876467901964422, 0.03244681540368277, 0.6531311156123596, 0.18281848038190407, 0.06840545126676123, 0.23876166598551407, 0.5602062902528231, 0.05478334190217349, 0.18965009362393503, 0.502081053312289, 0.0945975060483667, 0.24937367783354814, 0.14040338921272166, 0.09582424632391484, 0.4879833184669665, 0.07536550594022651, 0.37763546052463404, 0.20240400638142053, 0.06234715971662652, 0.1729504208160284, 0.2536573606029918, 0.1491704939138675, 0.47224603889779837, 0.20734784509414073, 0.1656619584420439, 0.20263687678412212, 0.4576701693643329, 0.3746187330143109, 0.06578487521364562, 0.09359041291034786, 0.15714155813810793, 0.43198081216185935, 0.17693664965610134, 0.14200602748771296, 0.16878839641400256, 0.11131318694256087, 0.43040972974554736, 0.12494266711040569, 0.5286591337585229, 0.3917329141436472, 0.14284790216410748, 0.29931895876037384, 0.3998656181534954, 0.13198036366642862, 0.2166851793268345, 0.164669749255824, 0.3116999397838065, 0.5702002297218003, 0.2867818412254799, 0.05809024612643199, 0.0701620515557333, 0.10493669218879953, 0.03474255021640338, 0.14069518845012563, 0.7697788668098057, 0.44513161239284327, 0.12104291767226882, 0.2823656727566666, 0.28640273091276736, 0.09904459769556595, 0.10889384421684001, 0.1978655273089749, 0.6326587477498924, 0.0766186874204361, 0.07300117689776386, 0.3978521493117628, 0.7293533971641823, 0.24040337450518035, 0.46827469198568006, 0.03737110954461231, 0.48112847828662497, 0.5755848065786346, 0.12151472907643468, 0.332302417201758, 0.3208349144509022, 0.13406270144296106, 0.47820199098358873, 0.024219732643774528, 0.7923035912680444, 0.3099424932714111, 0.8494816644677875, 0.15230116664989468, 0.8795672599938588, 0.34536882843285344, 0.587897812361327, 0.3660303223369904, 0.3074082248441362, 0.1925553058603695, 0.1582957933341015, 0.5297945963993664, 0.1892543681582496, 0.06574637766643598, 0.03286461121245521, 0.6223124217546917, 0.48666930315350876, 0.17200815643270417, 0.27042696199957883, 0.16010429726024444, 0.25291734909108765, 0.22778758435893687, 0.6055190518965303, 0.41989528411161425, 0.2865861541738164, 0.17344095530188786, 0.4163761941495938, 0.24610426408478792, 0.029106329843254564, 0.5849270471051293, 0.09607886499379148, 0.4890296174547498, 0.11193395874659995, 0.3667485749721523, 0.29672938182784603, 0.13696827462710404, 0.03986507081677082, 0.41542023534722683, 0.1642424989032959, 0.041559354155004224, 0.1266666793707928, 0.5259198205822933, 0.42123490919744344, 0.6147437654518444, 0.42849246998341506, 0.04874684240881699, 0.16870816563337898, 0.35179373534084035, 0.4552463954734379, 0.1543174595222413, 0.4641274821418986, 0.1106599594415556, 0.40441066041397966, 0.05916303638108533, 0.24194101851814365, 0.5755848065786346, 0.23631147082452741, 0.04679471849088612, 0.33132995382553565, 0.6031606095022326, 0.16900214819844117, 0.9322526967181247, 0.1065938389205352, 0.0540586741766943, 0.14920224829950646, 0.03054451782098533, 0.13595064656866984, 0.15908339514281045, 0.09402391562754642, 0.27219479721363327, 0.10477531970828624, 0.6046547135519548, 0.04412971358840656, 0.0821245873848182, 0.24953715645213048, 0.24311299470472425, 0.679537413518331, 0.02875041056121841, 0.2874129658970298, 0.17131102264191878, 0.07042427222914205, 0.1577516063520068, 0.39934634677258996, 0.42249259173992826, 0.24940231538328683, 0.46827469198568006, 0.040988937643475554, 0.034828704291737345, 0.26663563965858417, 0.22421743312747255, 0.10716094829621758, 0.7421831263598226, 0.4644511163280224, 0.1591307416719686, 0.21502194578256428, 0.12883185373794437, 0.15520095945599266, 0.04280666734842442, 0.06928764484923078, 0.3578757504587543, 0.0760792945579073, 0.06637805380770656, 0.5755848065786346, 0.4326356954473739, 0.16985579355455038, 0.47152805642545803, 0.11644579282256762, 0.11790522998710073, 0.5438286352264949, 0.41561805514360906, 0.050606352251634235, 0.21836830194439782, 0.22298545275517268, 0.1504846162366139, 0.16819644397314482, 0.47796113776613436, 0.14100197907825862, 0.7878397890034206, 0.12176963827920351, 0.09814942480303201, 0.23162396036129984, 0.04400104962869911, 0.061588508633294015, 0.2774601068082493, 0.40816383821078206, 0.14036214651023216, 0.11837607594274324, 0.0703155477214753, 0.17002415827487982, 0.24611532014486182, 0.06874641727313702, 0.30975746960573625, 0.07004288447243323, 0.6453829176356538, 0.3880412370469972, 0.10205495289732236, 0.12171087020281346, 0.38550692709735157, 0.4398162761337091, 0.5769741243450848, 0.48842976274850136, 0.3866799681687785, 0.17129518728202664, 0.5711206597512044, 0.4456070955069118, 0.4585850027539752, 0.25462747480751524, 0.34771016550763867, 0.35548618548401445, 0.07878090041588082, 0.3008706318705062, 0.08117751180329491, 0.055511805197920094, 0.1600174453683395, 0.35597309965685686, 0.5473978930443646, 0.3321771897262046, 0.14643302530661162, 0.7653011157176768, 0.24188431843396252, 0.16704799028757666, 0.41136103198090634, 0.5749869949413896, 0.709238838470871, 0.09340318303147321, 0.602429869503323, 0.04154705947390969, 0.7519582179986716, 0.15993940416551844, 0.04372375151311325, 0.4076899811241429, 0.4644511163280224, 0.3133137248525114, 0.24628490675063597, 0.06972977174174444, 0.15949948541388637, 0.2241543425141257, 0.1729876202034616, 0.07290025122558275, 0.1220000714032804, 0.36493953208423235, 0.09420126302076737, 0.026726938234992392, 0.7199273032686843, 0.4606762448039463, 0.04906818437448113, 0.19446415942665518, 0.14876853598344464, 0.3247816953453747, 0.023320858692869595, 0.7310618090422621, 0.48944479260603346, 0.20357574295749958, 0.0840537250624015, 0.5368744051465595, 0.21101467800102214, 0.46682279298460017, 0.3749869638443927, 0.46592999202179275, 0.10188412989688433, 0.15751976448865512], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"residual.sugar\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"residual.sugar\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}}, {\"id\": \"All_chlorides\", \"params\": {\"data\": [{\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Reference<br>chlorides=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [0.037, 0.054, 0.051, 0.039, 0.046, 0.086, 0.033, 0.032, 0.032, 0.071, 0.037, 0.069, 0.044, 0.049, 0.053, 0.061, 0.036, 0.033, 0.035, 0.038, 0.034, 0.051, 0.034, 0.039, 0.048, 0.029, 0.033, 0.05, 0.029, 0.063, 0.062, 0.032, 0.045, 0.029, 0.05, 0.038, 0.03, 0.032, 0.02, 0.033, 0.05, 0.046, 0.035, 0.043, 0.058, 0.08, 0.029, 0.074, 0.033, 0.058, 0.044, 0.039, 0.042, 0.037, 0.076, 0.03, 0.02, 0.04, 0.034, 0.064, 0.035, 0.044, 0.042, 0.088, 0.085, 0.012, 0.047, 0.069, 0.02, 0.039, 0.032, 0.047, 0.05, 0.061, 0.05, 0.078, 0.034, 0.073, 0.038, 0.047, 0.032, 0.033, 0.035, 0.034, 0.035, 0.044, 0.086, 0.04, 0.084, 0.037, 0.035, 0.04, 0.044, 0.046, 0.031, 0.035, 0.035, 0.04, 0.046, 0.042, 0.05, 0.091, 0.05, 0.037, 0.048, 0.053, 0.048, 0.036, 0.064, 0.05, 0.053, 0.024, 0.054, 0.043, 0.021, 0.042, 0.052, 0.04, 0.074, 0.062, 0.052, 0.043, 0.053, 0.078, 0.084, 0.074, 0.045, 0.031, 0.084, 0.034, 0.036, 0.042, 0.08, 0.062, 0.035, 0.092, 0.062, 0.038, 0.092, 0.049, 0.041, 0.046, 0.04, 0.084, 0.044, 0.036, 0.031, 0.077, 0.051, 0.051, 0.073, 0.036, 0.046, 0.051, 0.038, 0.043, 0.042, 0.027, 0.039, 0.036, 0.083, 0.044, 0.077, 0.033, 0.043, 0.041, 0.035, 0.036, 0.036, 0.071, 0.082, 0.039, 0.033, 0.087, 0.044, 0.076, 0.05, 0.037, 0.08, 0.046, 0.044, 0.054, 0.031, 0.045, 0.047, 0.037, 0.068, 0.04, 0.044, 0.026, 0.087, 0.032, 0.036, 0.082, 0.028, 0.06, 0.048, 0.019, 0.026, 0.056, 0.034, 0.041, 0.072, 0.043, 0.057, 0.062, 0.042, 0.057, 0.053, 0.057, 0.024, 0.04, 0.035, 0.031, 0.045, 0.029, 0.038, 0.029, 0.095, 0.039, 0.042, 0.044, 0.032, 0.074, 0.025, 0.067, 0.047, 0.047, 0.046, 0.041, 0.049, 0.072, 0.042, 0.051, 0.037, 0.034, 0.046, 0.028, 0.036, 0.024, 0.058, 0.048, 0.047, 0.043, 0.064, 0.039, 0.029, 0.044, 0.053, 0.075, 0.081, 0.047, 0.046, 0.038, 0.062, 0.05, 0.063, 0.041, 0.047, 0.036, 0.032, 0.028, 0.08, 0.063, 0.038, 0.042, 0.045, 0.041, 0.039, 0.021, 0.06, 0.039, 0.068, 0.087, 0.042, 0.037, 0.028, 0.026, 0.024, 0.084, 0.051, 0.054, 0.048, 0.038, 0.029, 0.093, 0.037, 0.048, 0.056, 0.074, 0.041, 0.046, 0.04, 0.069, 0.044, 0.039, 0.049, 0.033, 0.074, 0.034, 0.038, 0.073, 0.05, 0.056, 0.038, 0.043, 0.082, 0.049, 0.033, 0.042, 0.029, 0.014, 0.035, 0.03, 0.034, 0.066, 0.042, 0.055, 0.058, 0.026, 0.045, 0.071, 0.056, 0.035, 0.043, 0.03, 0.068, 0.039, 0.047, 0.051, 0.022, 0.035, 0.041, 0.058, 0.04, 0.048, 0.065, 0.02, 0.05, 0.046, 0.048, 0.039, 0.033, 0.047, 0.037, 0.081, 0.037, 0.03, 0.053, 0.049, 0.067, 0.066, 0.08, 0.048, 0.048, 0.041, 0.079, 0.046, 0.043, 0.043, 0.041, 0.042, 0.032, 0.027, 0.033, 0.095, 0.057, 0.08, 0.071, 0.024, 0.096, 0.052, 0.045, 0.031, 0.048, 0.041, 0.026, 0.032, 0.047, 0.034, 0.035, 0.045, 0.067, 0.052, 0.031, 0.032, 0.066, 0.068, 0.079, 0.044, 0.043, 0.028, 0.041, 0.031, 0.033, 0.063, 0.045, 0.039, 0.041, 0.052, 0.034, 0.046, 0.045, 0.034, 0.04, 0.054, 0.06, 0.05, 0.029, 0.047, 0.051, 0.055, 0.031, 0.057, 0.064, 0.036, 0.042, 0.033, 0.027, 0.03, 0.026, 0.052, 0.024, 0.075, 0.035, 0.094, 0.038, 0.047, 0.028, 0.029, 0.042, 0.052, 0.045, 0.06, 0.066, 0.037, 0.035, 0.036, 0.026, 0.036, 0.045, 0.066, 0.036, 0.079, 0.047, 0.035, 0.066, 0.078, 0.07, 0.045, 0.034, 0.072, 0.036, 0.026, 0.05, 0.052, 0.079, 0.058, 0.051, 0.044, 0.026, 0.038, 0.036, 0.048, 0.056, 0.045, 0.095, 0.054, 0.047, 0.039, 0.061, 0.036, 0.031, 0.051, 0.029, 0.063, 0.048, 0.076, 0.058, 0.039, 0.059, 0.041, 0.057, 0.043, 0.044, 0.042, 0.049, 0.036, 0.031, 0.058, 0.027, 0.048, 0.027, 0.034, 0.027, 0.055, 0.039, 0.025, 0.053, 0.042, 0.034, 0.024, 0.033, 0.048, 0.028, 0.034, 0.054, 0.033, 0.028, 0.036, 0.097, 0.019, 0.039, 0.054, 0.045, 0.036, 0.087, 0.098, 0.044, 0.043, 0.037, 0.087, 0.047, 0.041, 0.054, 0.039, 0.048, 0.041, 0.04, 0.051, 0.029, 0.033, 0.053, 0.042, 0.051, 0.022, 0.031, 0.044, 0.049, 0.034, 0.078, 0.045, 0.089, 0.056, 0.036, 0.035, 0.031, 0.048, 0.044, 0.037, 0.038, 0.043, 0.034, 0.045, 0.039, 0.047, 0.028, 0.019, 0.039, 0.022, 0.05, 0.025, 0.072, 0.046, 0.032, 0.03, 0.034, 0.064, 0.045, 0.076, 0.036, 0.041, 0.041, 0.032, 0.031, 0.047, 0.041, 0.039, 0.036, 0.038, 0.065, 0.037, 0.054, 0.055, 0.046, 0.047, 0.041, 0.08, 0.046, 0.037, 0.064, 0.031, 0.057, 0.041, 0.092, 0.04, 0.084, 0.039, 0.06, 0.04, 0.047, 0.062, 0.045, 0.035, 0.062, 0.031, 0.051, 0.04, 0.028, 0.046, 0.031, 0.044, 0.045, 0.053, 0.031, 0.033, 0.063, 0.046, 0.043, 0.083, 0.023, 0.039, 0.038, 0.036], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Current<br>chlorides=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [0.068, 0.058, 0.045, 0.044, 0.076, 0.041, 0.037, 0.036, 0.033, 0.036, 0.039, 0.033, 0.026, 0.03, 0.04, 0.07, 0.032, 0.078, 0.028, 0.056, 0.045, 0.05, 0.04, 0.04, 0.031, 0.044, 0.038, 0.035, 0.029, 0.032, 0.059, 0.053, 0.034, 0.034, 0.035, 0.05, 0.047, 0.096, 0.036, 0.026, 0.034, 0.043, 0.08, 0.065, 0.054, 0.079, 0.039, 0.036, 0.073, 0.034, 0.031, 0.042, 0.039, 0.053, 0.044, 0.05, 0.039, 0.054, 0.037, 0.029, 0.036, 0.036, 0.042, 0.061, 0.037, 0.05, 0.055, 0.067, 0.012, 0.04, 0.038, 0.046, 0.048, 0.074, 0.041, 0.059, 0.042, 0.037, 0.065, 0.03, 0.035, 0.08, 0.048, 0.036, 0.049, 0.046, 0.039, 0.037, 0.035, 0.047, 0.037, 0.091, 0.035, 0.071, 0.071, 0.027, 0.047, 0.072, 0.034, 0.067, 0.051, 0.072, 0.023, 0.038, 0.025, 0.033, 0.053, 0.026, 0.024, 0.055, 0.043, 0.057, 0.04, 0.083, 0.03, 0.03, 0.067, 0.029, 0.073, 0.074, 0.088, 0.029, 0.073, 0.04, 0.019, 0.075, 0.043, 0.045, 0.05, 0.049, 0.062, 0.094, 0.06, 0.034, 0.046, 0.071, 0.095, 0.036, 0.046, 0.036, 0.048, 0.087, 0.032, 0.043, 0.039, 0.031, 0.051, 0.043, 0.029, 0.038, 0.058, 0.062, 0.047, 0.058, 0.032, 0.078, 0.032, 0.034, 0.08, 0.034, 0.032, 0.084, 0.065, 0.022, 0.04, 0.046, 0.055, 0.027, 0.04, 0.048, 0.031, 0.035, 0.078, 0.037, 0.042, 0.036, 0.093, 0.039, 0.077, 0.078, 0.042, 0.045, 0.081, 0.015, 0.051, 0.028, 0.045, 0.037, 0.035, 0.041, 0.027, 0.048, 0.042, 0.038, 0.038, 0.047, 0.017, 0.036, 0.038, 0.036, 0.074, 0.046, 0.044, 0.046, 0.037, 0.077, 0.029, 0.071, 0.025, 0.046, 0.041, 0.022, 0.047, 0.04, 0.044, 0.086, 0.045, 0.049, 0.071, 0.031, 0.054, 0.072, 0.04, 0.074, 0.05, 0.028, 0.028, 0.072, 0.055, 0.034, 0.047, 0.036, 0.055, 0.043, 0.031, 0.032, 0.057, 0.077, 0.068, 0.057, 0.045, 0.06, 0.077, 0.053, 0.056, 0.053, 0.038, 0.042, 0.053, 0.035, 0.031, 0.033, 0.049, 0.078, 0.04, 0.06, 0.042, 0.08, 0.031, 0.044, 0.032, 0.044, 0.055, 0.044, 0.04, 0.037, 0.087, 0.043, 0.078, 0.032, 0.047, 0.035, 0.062, 0.034, 0.028, 0.033, 0.032, 0.077, 0.021, 0.031, 0.044, 0.056, 0.078, 0.05, 0.062, 0.034, 0.031, 0.052, 0.04, 0.031, 0.034, 0.029, 0.043, 0.041, 0.034, 0.067, 0.074, 0.033, 0.054, 0.034, 0.043, 0.04, 0.027, 0.071, 0.053, 0.035, 0.045, 0.032, 0.035, 0.044, 0.057, 0.033, 0.036, 0.06, 0.058, 0.032, 0.044, 0.038, 0.038, 0.08, 0.035, 0.093, 0.043, 0.054, 0.041, 0.046, 0.085, 0.021, 0.036, 0.055, 0.079, 0.076, 0.039, 0.028, 0.051, 0.088, 0.033, 0.033, 0.047, 0.044, 0.043, 0.049, 0.031, 0.083, 0.04, 0.043, 0.07, 0.025, 0.034, 0.084, 0.037, 0.076, 0.046, 0.044, 0.063, 0.037, 0.049, 0.024, 0.046, 0.039, 0.041, 0.036, 0.028, 0.064, 0.038, 0.03, 0.022, 0.045, 0.044, 0.036, 0.054, 0.05, 0.026, 0.043, 0.036, 0.032, 0.074, 0.027, 0.053, 0.048, 0.077, 0.038, 0.065, 0.029, 0.027, 0.036, 0.027, 0.022, 0.042, 0.042, 0.056, 0.039, 0.027, 0.051, 0.035, 0.076, 0.048, 0.033, 0.057, 0.092, 0.036, 0.085, 0.027, 0.023, 0.04, 0.041, 0.085, 0.084, 0.039, 0.043, 0.036, 0.021, 0.045, 0.033, 0.046, 0.037, 0.029, 0.065, 0.081, 0.044, 0.067, 0.028, 0.062, 0.053, 0.054, 0.053, 0.031, 0.082, 0.048, 0.059, 0.075, 0.077, 0.045, 0.097, 0.041, 0.069, 0.05, 0.031, 0.053, 0.037, 0.066, 0.061, 0.042, 0.036, 0.052, 0.073, 0.029, 0.047, 0.031, 0.037, 0.036, 0.045, 0.035, 0.075, 0.05, 0.057, 0.026, 0.034, 0.034, 0.042, 0.039, 0.031, 0.097, 0.075, 0.052, 0.03, 0.037, 0.035, 0.075, 0.078, 0.067, 0.042, 0.078, 0.076, 0.049, 0.041, 0.089, 0.059, 0.073, 0.036, 0.044, 0.053, 0.031, 0.034, 0.044, 0.043, 0.034, 0.076, 0.035, 0.07, 0.046, 0.037, 0.048, 0.043, 0.03, 0.084, 0.097, 0.046, 0.063, 0.03, 0.033, 0.053, 0.041, 0.061, 0.024, 0.035, 0.034, 0.047, 0.091, 0.052, 0.067, 0.021, 0.053, 0.035, 0.048, 0.046, 0.051, 0.066, 0.046, 0.025, 0.031, 0.021, 0.053, 0.041, 0.02, 0.05, 0.067, 0.031, 0.041, 0.086, 0.036, 0.029, 0.022, 0.053, 0.038, 0.056, 0.086, 0.057, 0.026, 0.034, 0.033, 0.032, 0.03, 0.06, 0.039, 0.047, 0.032, 0.028, 0.043, 0.04, 0.032, 0.046, 0.042, 0.05, 0.035, 0.027, 0.058, 0.049, 0.083, 0.032, 0.044, 0.038, 0.084, 0.051, 0.047, 0.045, 0.079, 0.031, 0.04, 0.035, 0.039, 0.055, 0.032, 0.045, 0.026, 0.034, 0.083, 0.071, 0.037, 0.033, 0.045, 0.046, 0.055, 0.048, 0.034, 0.083, 0.03, 0.03, 0.05, 0.048, 0.036, 0.029, 0.036, 0.027, 0.057, 0.046, 0.035, 0.046, 0.045, 0.075, 0.033, 0.082, 0.085, 0.043, 0.049, 0.032, 0.055, 0.079, 0.034, 0.03, 0.051, 0.048, 0.047, 0.038, 0.053, 0.055, 0.069, 0.048], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Reference<br>chlorides=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [0.05, 0.044, 0.031, 0.09, 0.091, 0.086, 0.043, 0.09, 0.053, 0.054, 0.068, 0.041, 0.039, 0.05, 0.052, 0.08, 0.05, 0.081, 0.049, 0.048, 0.086, 0.028, 0.067, 0.092, 0.041, 0.088, 0.044, 0.054, 0.068, 0.04, 0.039, 0.039, 0.06, 0.059, 0.039, 0.045, 0.07, 0.045, 0.047, 0.055, 0.059, 0.051, 0.032, 0.047, 0.076, 0.077, 0.061, 0.089, 0.053, 0.045, 0.048, 0.08, 0.05, 0.055, 0.067, 0.05, 0.097, 0.047, 0.043, 0.077, 0.076, 0.024, 0.045, 0.08, 0.051, 0.041, 0.044, 0.033, 0.039, 0.062, 0.098, 0.026, 0.05, 0.037, 0.049, 0.082, 0.068, 0.041, 0.047, 0.044, 0.044, 0.08, 0.044, 0.085, 0.051, 0.066, 0.044, 0.055, 0.058, 0.048, 0.056, 0.056, 0.082, 0.034, 0.054, 0.069, 0.042, 0.038, 0.045, 0.044, 0.066, 0.027, 0.069, 0.029, 0.082, 0.096, 0.047, 0.047, 0.08, 0.049, 0.047, 0.048, 0.049, 0.038, 0.05, 0.056, 0.041, 0.064, 0.092, 0.04, 0.037, 0.047, 0.045, 0.063, 0.026, 0.055, 0.05, 0.08, 0.034, 0.039, 0.037, 0.04, 0.041, 0.051, 0.093, 0.04, 0.084, 0.073, 0.052, 0.087, 0.04, 0.079, 0.06, 0.084, 0.044, 0.036, 0.03, 0.035, 0.087, 0.07, 0.052, 0.078, 0.034, 0.05, 0.055, 0.045, 0.046, 0.053, 0.07, 0.043, 0.068, 0.08, 0.042, 0.074, 0.044, 0.05, 0.082, 0.053, 0.056, 0.047, 0.044, 0.052, 0.031, 0.037, 0.044, 0.096, 0.039, 0.047, 0.032, 0.049, 0.084, 0.055, 0.061, 0.049, 0.09, 0.046, 0.059, 0.046, 0.05, 0.046, 0.083, 0.049, 0.027, 0.05, 0.047, 0.054, 0.056, 0.063, 0.044, 0.045, 0.03, 0.034, 0.084, 0.04, 0.039, 0.049, 0.044, 0.052, 0.043, 0.057, 0.046, 0.075, 0.034, 0.04, 0.057, 0.085, 0.04, 0.026, 0.07, 0.02, 0.051, 0.043, 0.066, 0.053, 0.04, 0.09, 0.085, 0.043, 0.052, 0.07, 0.042, 0.039, 0.092, 0.056, 0.047, 0.067, 0.039, 0.058, 0.091, 0.052, 0.052, 0.051, 0.062, 0.05, 0.046, 0.044, 0.049, 0.071, 0.073, 0.058, 0.058, 0.044, 0.048, 0.04, 0.091, 0.041, 0.06, 0.04, 0.081, 0.041, 0.07, 0.069, 0.046, 0.039, 0.054, 0.026, 0.048, 0.031, 0.05, 0.047, 0.029, 0.083, 0.053, 0.056, 0.046, 0.081, 0.041, 0.047, 0.081, 0.05, 0.087, 0.042, 0.05, 0.08, 0.098, 0.031, 0.081, 0.05, 0.048, 0.063, 0.084, 0.04, 0.048, 0.047, 0.08, 0.047, 0.048, 0.096, 0.046, 0.077, 0.042, 0.048, 0.08, 0.049, 0.052, 0.038, 0.077, 0.048, 0.073, 0.037, 0.054, 0.051, 0.052, 0.037, 0.079, 0.035, 0.074, 0.095, 0.046, 0.046, 0.046, 0.04, 0.07, 0.042, 0.049, 0.047], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Current<br>chlorides=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [0.088, 0.06, 0.036, 0.04, 0.043, 0.048, 0.032, 0.078, 0.078, 0.063, 0.054, 0.036, 0.039, 0.048, 0.054, 0.046, 0.052, 0.098, 0.032, 0.03, 0.036, 0.036, 0.035, 0.065, 0.04, 0.035, 0.083, 0.054, 0.028, 0.044, 0.04, 0.077, 0.081, 0.072, 0.054, 0.045, 0.078, 0.079, 0.055, 0.066, 0.026, 0.073, 0.069, 0.047, 0.048, 0.048, 0.076, 0.051, 0.025, 0.046, 0.084, 0.034, 0.094, 0.084, 0.077, 0.074, 0.095, 0.04, 0.043, 0.095, 0.037, 0.048, 0.098, 0.098, 0.06, 0.076, 0.072, 0.046, 0.036, 0.088, 0.031, 0.04, 0.052, 0.029, 0.044, 0.074, 0.062, 0.078, 0.045, 0.084, 0.04, 0.028, 0.037, 0.044, 0.041, 0.071, 0.05, 0.043, 0.091, 0.045, 0.08, 0.035, 0.062, 0.04, 0.092, 0.027, 0.046, 0.073, 0.047, 0.062, 0.057, 0.051, 0.045, 0.069, 0.059, 0.078, 0.053, 0.038, 0.029, 0.051, 0.05, 0.044, 0.028, 0.051, 0.082, 0.076, 0.088, 0.036, 0.034, 0.076, 0.047, 0.016, 0.054, 0.045, 0.036, 0.082, 0.047, 0.053, 0.077, 0.086, 0.041, 0.036, 0.04, 0.031, 0.036, 0.071, 0.049, 0.057, 0.066, 0.079, 0.057, 0.034, 0.048, 0.07, 0.045, 0.076, 0.057, 0.035, 0.046, 0.052, 0.089, 0.063, 0.039, 0.038, 0.086, 0.031, 0.036, 0.036, 0.046, 0.052, 0.058, 0.062, 0.049, 0.042, 0.073, 0.033, 0.048, 0.044, 0.047, 0.042, 0.033, 0.041, 0.098, 0.048, 0.06, 0.032, 0.034, 0.046, 0.053, 0.078, 0.05, 0.038, 0.039, 0.041, 0.08, 0.051, 0.043, 0.051, 0.094, 0.05, 0.051, 0.06, 0.052, 0.023, 0.045, 0.046, 0.077, 0.042, 0.041, 0.052, 0.053, 0.064, 0.046, 0.048, 0.017, 0.063, 0.036, 0.046, 0.043, 0.053, 0.046, 0.045, 0.055, 0.037, 0.088, 0.059, 0.042, 0.068, 0.066, 0.043, 0.05, 0.037, 0.09, 0.056, 0.038, 0.039, 0.045, 0.045, 0.096, 0.094, 0.057, 0.054, 0.041, 0.041, 0.06, 0.045, 0.042, 0.048, 0.08, 0.065, 0.029, 0.045, 0.038, 0.054, 0.061, 0.044, 0.046, 0.046, 0.053, 0.053, 0.044, 0.044, 0.036, 0.055, 0.053, 0.092, 0.037, 0.057, 0.044, 0.042, 0.049, 0.082, 0.089, 0.071, 0.081, 0.044, 0.023, 0.044, 0.032, 0.045, 0.053, 0.052, 0.081, 0.056, 0.044, 0.055, 0.077, 0.05, 0.064, 0.032, 0.046, 0.057, 0.095, 0.028, 0.093, 0.046, 0.043, 0.056, 0.03, 0.09, 0.05, 0.059, 0.054, 0.079, 0.084, 0.046, 0.046, 0.059, 0.05, 0.073, 0.052, 0.042, 0.042, 0.085, 0.066, 0.059, 0.043, 0.088, 0.053, 0.066, 0.075, 0.038, 0.036, 0.079, 0.051, 0.036, 0.033, 0.071, 0.036, 0.037, 0.058, 0.05, 0.043, 0.046, 0.078, 0.076, 0.08, 0.036, 0.05, 0.088, 0.05, 0.036, 0.053, 0.031], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Reference\", \"x\": 0.245, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Current\", \"x\": 0.755, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"barmode\": \"overlay\", \"legend\": {\"title\": {\"text\": \"target\"}, \"tracegroupgap\": 0}, \"margin\": {\"t\": 60}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.49], \"title\": {\"text\": \"chlorides\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.51, 1.0], \"matches\": \"x\", \"title\": {\"text\": \"chlorides\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"count\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}}}}, {\"id\": \"chlorides_good\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (ref)\", \"type\": \"scatter\", \"x\": [0.037, 0.054, 0.051, 0.039, 0.046, 0.086, 0.033, 0.032, 0.032, 0.071, 0.037, 0.069, 0.044, 0.049, 0.053, 0.061, 0.036, 0.1, 0.033, 0.035, 0.038, 0.034, 0.051, 0.034, 0.039, 0.048, 0.029, 0.033, 0.05, 0.029, 0.063, 0.062, 0.032, 0.045, 0.029, 0.05, 0.038, 0.03, 0.032, 0.02, 0.033, 0.05, 0.046, 0.035, 0.043, 0.058, 0.08, 0.029, 0.074, 0.033, 0.058, 0.044, 0.039, 0.042, 0.037, 0.076, 0.03, 0.02, 0.04, 0.034, 0.064, 0.035, 0.044, 0.042, 0.088, 0.085, 0.012, 0.047, 0.069, 0.02, 0.039, 0.032, 0.047, 0.05, 0.061, 0.05, 0.078, 0.034, 0.073, 0.038, 0.047, 0.032, 0.033, 0.035, 0.034, 0.035, 0.044, 0.086, 0.04, 0.084, 0.037, 0.035, 0.04, 0.044, 0.046, 0.031, 0.035, 0.035, 0.04, 0.046, 0.042, 0.05, 0.091, 0.05, 0.037, 0.048, 0.053, 0.048, 0.036, 0.064, 0.05, 0.053, 0.024, 0.054, 0.043, 0.021, 0.042, 0.052, 0.04, 0.074, 0.062, 0.052, 0.043, 0.053, 0.078, 0.084, 0.074, 0.045, 0.031, 0.084, 0.034, 0.036, 0.042, 0.08, 0.062, 0.035, 0.092, 0.062, 0.038, 0.092, 0.049, 0.041, 0.046, 0.04, 0.084, 0.044, 0.036, 0.031, 0.077, 0.051, 0.051, 0.073, 0.036, 0.046, 0.051, 0.038, 0.043, 0.042, 0.027, 0.039, 0.036, 0.083, 0.044, 0.077, 0.033, 0.043, 0.041, 0.035, 0.036, 0.036, 0.071, 0.082, 0.039, 0.033, 0.087, 0.044, 0.076, 0.05, 0.037, 0.08, 0.046, 0.044, 0.054, 0.031, 0.045, 0.047, 0.037, 0.068, 0.04, 0.044, 0.026, 0.087, 0.032, 0.036, 0.082, 0.028, 0.06, 0.048, 0.019, 0.026, 0.056, 0.034, 0.041, 0.072, 0.043, 0.057, 0.062, 0.042, 0.057, 0.053, 0.057, 0.024, 0.04, 0.035, 0.031, 0.045, 0.029, 0.038, 0.029, 0.095, 0.039, 0.042, 0.044, 0.032, 0.074, 0.025, 0.067, 0.047, 0.047, 0.046, 0.041, 0.049, 0.072, 0.042, 0.051, 0.037, 0.034, 0.046, 0.028, 0.036, 0.024, 0.058, 0.154, 0.048, 0.114, 0.047, 0.043, 0.064, 0.039, 0.029, 0.044, 0.053, 0.171, 0.075, 0.081, 0.047, 0.046, 0.184, 0.038, 0.062, 0.05, 0.063, 0.041, 0.047, 0.036, 0.032, 0.028, 0.08, 0.063, 0.038, 0.042, 0.045, 0.041, 0.039, 0.021, 0.06, 0.039, 0.068, 0.087, 0.194, 0.042, 0.037, 0.028, 0.026, 0.024, 0.084, 0.051, 0.054, 0.114, 0.048, 0.038, 0.029, 0.093, 0.037, 0.048, 0.056, 0.074, 0.041, 0.046, 0.04, 0.069, 0.044, 0.039, 0.049, 0.033, 0.074, 0.034, 0.104, 0.038, 0.145, 0.073, 0.05, 0.056, 0.038, 0.043, 0.082, 0.049, 0.033, 0.042, 0.029, 0.014, 0.144, 0.035, 0.03, 0.034, 0.066, 0.042, 0.1, 0.055, 0.058, 0.026, 0.045, 0.071, 0.056, 0.035, 0.043, 0.03, 0.068, 0.039, 0.047, 0.051, 0.022, 0.035, 0.041, 0.058, 0.04, 0.048, 0.065, 0.02, 0.05, 0.046, 0.048, 0.039, 0.033, 0.047, 0.037, 0.081, 0.037, 0.104, 0.03, 0.053, 0.049, 0.067, 0.066, 0.08, 0.048, 0.048, 0.041, 0.079, 0.046, 0.043, 0.043, 0.041, 0.042, 0.032, 0.027, 0.033, 0.095, 0.057, 0.08, 0.071, 0.024, 0.096, 0.052, 0.045, 0.031, 0.214, 0.048, 0.041, 0.026, 0.032, 0.047, 0.034, 0.035, 0.045, 0.067, 0.052, 0.031, 0.032, 0.066, 0.068, 0.079, 0.044, 0.043, 0.028, 0.041, 0.031, 0.033, 0.063, 0.045, 0.039, 0.041, 0.052, 0.034, 0.046, 0.045, 0.034, 0.04, 0.054, 0.06, 0.05, 0.029, 0.047, 0.051, 0.055, 0.031, 0.057, 0.064, 0.036, 0.042, 0.033, 0.027, 0.03, 0.026, 0.052, 0.024, 0.075, 0.103, 0.035, 0.094, 0.038, 0.047, 0.028, 0.029, 0.042, 0.052, 0.045, 0.06, 0.066, 0.037, 0.035, 0.036, 0.026, 0.036, 0.045, 0.066, 0.036, 0.079, 0.047, 0.035, 0.066, 0.078, 0.07, 0.045, 0.034, 0.072, 0.036, 0.026, 0.05, 0.052, 0.079, 0.058, 0.051, 0.044, 0.026, 0.038, 0.036, 0.048, 0.056, 0.045, 0.095, 0.054, 0.047, 0.039, 0.061, 0.036, 0.031, 0.051, 0.029, 0.063, 0.048, 0.076, 0.058, 0.039, 0.059, 0.041, 0.057, 0.043, 0.044, 0.042, 0.049, 0.036, 0.031, 0.058, 0.027, 0.048, 0.027, 0.034, 0.027, 0.055, 0.039, 0.025, 0.053, 0.042, 0.034, 0.024, 0.033, 0.048, 0.028, 0.034, 0.054, 0.033, 0.028, 0.036, 0.097, 0.019, 0.039, 0.054, 0.045, 0.036, 0.087, 0.098, 0.044, 0.043, 0.037, 0.087, 0.047, 0.041, 0.054, 0.039, 0.048, 0.041, 0.04, 0.051, 0.029, 0.033, 0.104, 0.053, 0.042, 0.051, 0.022, 0.031, 0.044, 0.049, 0.034, 0.078, 0.045, 0.089, 0.056, 0.036, 0.18, 0.035, 0.031, 0.048, 0.044, 0.037, 0.038, 0.043, 0.034, 0.045, 0.039, 0.047, 0.028, 0.019, 0.039, 0.022, 0.05, 0.025, 0.072, 0.046, 0.032, 0.03, 0.034, 0.064, 0.045, 0.076, 0.036, 0.041, 0.041, 0.032, 0.11, 0.031, 0.047, 0.041, 0.039, 0.036, 0.038, 0.065, 0.037, 0.054, 0.055, 0.046, 0.047, 0.041, 0.08, 0.046, 0.037, 0.064, 0.031, 0.057, 0.041, 0.092, 0.04, 0.084, 0.039, 0.06, 0.04, 0.047, 0.062, 0.148, 0.045, 0.035, 0.062, 0.119, 0.031, 0.051, 0.04, 0.028, 0.046, 0.031, 0.119, 0.044, 0.045, 0.053, 0.031, 0.033, 0.063, 0.046, 0.043, 0.083, 0.023, 0.107, 0.039, 0.038, 0.036], \"xaxis\": \"x\", \"y\": [0.8156061324462894, 0.42491310922683634, 0.8867827646463432, 0.8014995238430205, 0.30499958310650876, 0.5817355832705369, 0.959171062334887, 0.7854416128369749, 0.9085690698200813, 0.8998600376511439, 0.6341165000693628, 0.412102187638673, 0.7643629411050379, 0.4710001938005606, 0.40182653035141874, 0.40438056362905367, 0.8870480016118494, 0.3650667978415713, 0.9064321709292111, 0.9327245345966092, 0.6458420185168736, 0.8821841129047617, 0.6704018506542557, 0.7655671181822064, 0.8616986618932058, 0.48774537944210006, 0.9637355036179479, 0.6794204065079696, 0.6044835155949141, 0.7867954023600708, 0.9137982268836646, 0.5867502063434873, 0.8048584290077971, 0.9718511071053526, 0.9627192884041744, 0.7978623718349598, 0.6091120966723917, 0.8943338178728011, 0.8853376735027229, 0.9045563504021151, 0.9264844632598176, 0.6342457655367447, 0.9414033426130164, 0.5636516403732365, 0.5172967922101196, 0.4836896337264441, 0.35199620689495453, 0.788779954566273, 0.9696552399248426, 0.772496554239754, 0.8132656157621138, 0.4539090261140653, 0.9333708926412786, 0.679765045723866, 0.48457442622955804, 0.4248820606938153, 0.6737819616086004, 0.8780741425819777, 0.38340602447337646, 0.90634085684919, 0.5574014604752268, 0.6804147683859246, 0.9077110088845216, 0.7718472635729894, 0.4717552048891654, 0.22222808308441652, 0.8616549355667619, 0.705749071892896, 0.4699129352300819, 0.9680524782819758, 0.8891353183282249, 0.9466602521798594, 0.8553382520847058, 0.7430243903066251, 0.6616131862201935, 0.6919609500216202, 0.96565744679506, 0.913108907487878, 0.5395521774612226, 0.9026238558501023, 0.6550941529376255, 0.9757876320152292, 0.8833495792027257, 0.6666029765862381, 0.8504582120840628, 0.9320215595878566, 0.7639947574915884, 0.6085229656221847, 0.9557131606798471, 0.46184432615952054, 0.5642658412077981, 0.8815615400732472, 0.7189203536918151, 0.9301020530176726, 0.7341394174346678, 0.7759189559372703, 0.8448078654733812, 0.9012666081120407, 0.8926028620066223, 0.5287492720273277, 0.6874206920638863, 0.37408584674942635, 0.8348370105186077, 0.8697567261320243, 0.9175759024810304, 0.44644098895981, 0.8874384748400057, 0.7787567487441118, 0.9416122482572158, 0.3265229243180111, 0.9308095750950773, 0.42267134533232753, 0.43068181214270274, 0.8727308285810839, 0.7201611177732586, 0.8430904589044517, 0.8140617541555761, 0.9456747441572588, 0.6672663325862807, 0.8756470416862959, 0.518871521713375, 0.7040615347784164, 0.4957960231649875, 0.6250130361556073, 0.27413726132188326, 0.5193133578087885, 0.37656641690434584, 0.5808048103476511, 0.7917827117482167, 0.36569143480873245, 0.7232542293832885, 0.9785934574433302, 0.5715075300165849, 0.8182555969893297, 0.5448461144048058, 0.9491291995847589, 0.4833587957991669, 0.3189279754564957, 0.9184825510014271, 0.5524830505676419, 0.9600429304649183, 0.7818180966165994, 0.7962710274484252, 0.7569429870375118, 0.46184432615952054, 0.7641514270390748, 0.9486763575522457, 0.8086368705092697, 0.6784536879503494, 0.6877019790624462, 0.6082670858563528, 0.6053794617794684, 0.6319330693089359, 0.4982105707488519, 0.6787928880949093, 0.9231980717613485, 0.8831230955067948, 0.6845485656817341, 0.8799204262605215, 0.9164563829924386, 0.7819268199067826, 0.23469888428232324, 0.9492377841603665, 0.8826092272015389, 0.6360541596480074, 0.5184081252698399, 0.6400126753125241, 0.542646305979658, 0.4479501208302092, 0.7783171875827786, 0.7867712153112567, 0.5236605417423803, 0.6959846197179591, 0.7925023358445066, 0.6683189355892497, 0.18737025221649042, 0.42506327048176057, 0.7272596040941706, 0.7314191754306454, 0.4827891324637794, 0.6649341228620356, 0.9038332731164471, 0.9588917860646077, 0.8945194928389463, 0.49833043835950624, 0.7997712594855277, 0.8577935987172323, 0.7622736922026153, 0.8039391974899521, 0.7396811504731934, 0.8115340233127679, 0.801728888664367, 0.738451208106372, 0.5859674792922007, 0.1865203674848816, 0.8773430435604171, 0.36888329310067386, 0.8651817982269884, 0.9067615420962557, 0.8594983988587351, 0.7437750884018276, 0.9145224932934428, 0.9135679891815164, 0.8001832456898428, 0.6860977766129374, 0.9377826008632761, 0.9300369611912853, 0.6997062971069969, 0.5693182102579236, 0.3404656140239559, 0.7160591142088384, 0.7953146078011, 0.8869803873277935, 0.7639982823097876, 0.8681285227071118, 0.576868797021353, 0.93035102563313, 0.8375600281828176, 0.8279918435672958, 0.9266689436294401, 0.7559862346636359, 0.5099889666930224, 0.6914445842613687, 0.9651950326885705, 0.87851968214492, 0.8499702807396289, 0.4685752957996948, 0.7241546992314323, 0.7848147251007912, 0.7341394174346678, 0.7008877443692281, 0.340588975625529, 0.5013021766499856, 0.8321174529331695, 0.8818378666553491, 0.9176909075187759, 0.8634678749265305, 0.7436082905772717, 0.9343776659412377, 0.7668809937296346, 0.6243383802582345, 0.5332560471205093, 0.6907315465649003, 0.16626803588025432, 0.1668542888532837, 0.7408943843163458, 0.5221312328975666, 0.7457559475413279, 0.46389636934606376, 0.9292627865919654, 0.5268311186840582, 0.4244151934213653, 0.643310536612302, 0.8577438313980266, 0.7816208399762355, 0.8553382520847058, 0.7010035672814305, 0.5242572272016158, 0.9187320011579697, 0.8703498177621264, 0.6713045345576062, 0.9137982268836646, 0.8614414457916845, 0.9445662266054761, 0.8808216590199034, 0.7386378115490353, 0.8873009977622293, 0.9157094897337859, 0.6606038558129893, 0.9296803968514485, 0.8864322240790464, 0.5146720135715994, 0.8720710714485208, 0.9415427660945741, 0.9138701141498735, 0.6527559092576063, 0.8751970040938668, 0.9249766460056568, 0.801728888664367, 0.6575848465963361, 0.6934824043184128, 0.8619113960143526, 0.9419078024651042, 0.9591721389341828, 0.8397407150753159, 0.9084383840076588, 0.4963969309336195, 0.7359588175524252, 0.3531961907069324, 0.9279819479140234, 0.7752976919572294, 0.8665226278427577, 0.9515211055933231, 0.7314191754306454, 0.890886918514299, 0.3235491032739525, 0.3719939405423586, 0.6323804178173072, 0.8398006965792015, 0.8239469134189235, 0.8592101816891015, 0.7615002907198236, 0.8688259750909261, 0.8718104001390852, 0.5838074755684882, 0.8756470416862959, 0.901850575196968, 0.9451930143658351, 0.6253812669856891, 0.5890764576710766, 0.4921052500998711, 0.4862070578416567, 0.9170647663398394, 0.7035583451969506, 0.8476385889092957, 0.5603058978573646, 0.5810606890504925, 0.9088604673919816, 0.8903252600075929, 0.944267921154058, 0.9435968591480925, 0.938237366988842, 0.9357286047893738, 0.7961386682142712, 0.7840233885688647, 0.2513590507613302, 0.7389284097502917, 0.9053472250810051, 0.44438282424164377, 0.862281110352348, 0.8021059248496223, 0.9152740930046814, 0.643737358401971, 0.8540304955499701, 0.8613418170006786, 0.6911084183178322, 0.8848367871057808, 0.8387883096682573, 0.5942651630821018, 0.65691393717736, 0.6369979527510315, 0.8280658524313272, 0.9640736168216585, 0.6546311715671466, 0.5599819536107853, 0.48348053317652906, 0.7668016587569692, 0.03620763244300767, 0.7364400865449663, 0.37408584674942635, 0.8767503774172, 0.8743962287172513, 0.8751970040938668, 0.8833495792027257, 0.7091886355621774, 0.87006937054451, 0.7904001815220257, 0.8761418339280951, 0.8306834851111597, 0.7531715889012326, 0.38181207472529843, 0.6490458991820136, 0.9138057013338913, 0.9046222904886461, 0.17956061692355052, 0.7506163079023257, 0.8963285795381793, 0.8848361664653354, 0.9283037217377402, 0.45996158699034445, 0.7290858434196763, 0.8319094967702583, 0.6578018675312727, 0.18727567457681707, 0.8673410249845035, 0.9453298670648187, 0.9446538464906173, 0.19605573045952288, 0.6723831041639817, 0.3438281302059518, 0.37858973820495484, 0.6953170483296187, 0.21463507152544156, 0.26963792069965237, 0.3280912492037974, 0.8399932187801539, 0.420387898633768, 0.36522500752858966, 0.5810560693343539, 0.9306346767722963, 0.7167716539092029, 0.656736106921484, 0.5549139996760648, 0.6909161521388689, 0.591904263202073, 0.884703171197362, 0.866402281883595, 0.7582770814524421, 0.8990773411030794, 0.1818065866116437, 0.6222165686186035, 0.17261914235374884, 0.8156064679757086, 0.4851213943917703, 0.8871292211128762, 0.8398494053952754, 0.703270618172154, 0.6305543892506115, 0.7494149477175548, 0.1532408287022325, 0.6159732902773407, 0.738220551127759, 0.8354520044441791, 0.8536870432671441, 0.5751476712690671, 0.9077719201719568, 0.7878515691455199, 0.6672663325862807, 0.45293736875445273, 0.17058553029544155, 0.747933377844996, 0.8400163125056676, 0.4516778718827729, 0.6082670858563528, 0.8401843469141149, 0.7636885291754726, 0.789170795337903, 0.8128612802083497, 0.7522530659814418, 0.8086757686066508, 0.8356255123032285, 0.9241779635105248, 0.9674588597049086, 0.9368885694202199, 0.4990764491242286, 0.876561204324957, 0.554264192243629, 0.5967716244634195, 0.9060244606340249, 0.8401608718856799, 0.7329750583133859, 0.8021769878309102, 0.9316817655017511, 0.45488322534173153, 0.798578398438993, 0.7425236774748816, 0.5742682328784404, 0.4937681935814938, 0.8972164286692267, 0.8914273370768748, 0.9377613518261881, 0.8862258850530264, 0.8591757581361523, 0.7410678096850266, 0.6822336012657398, 0.9201658505843877, 0.6982578893131915, 0.5746709232170782, 0.7626532952948841, 0.7137703530889916, 0.7520971196461234, 0.4473853625959922, 0.7957460056304991, 0.4833174871501707, 0.8758467705785958, 0.4689303842787964, 0.6133612564737879, 0.8568681391705205, 0.6835133967314007, 0.9732070839986944, 0.21435716257549006, 0.5761668962420043, 0.4055433603128916, 0.3743394998756179, 0.9118635774953143, 0.964551884718591, 0.9306459334511011, 0.8424802355113449, 0.7739144871152517, 0.6872688771534424, 0.8590561833388345, 0.6714384475466295, 0.6408669500407106, 0.5203550269219845, 0.2856853969697174, 0.857760555506807, 0.9307094503226838, 0.6787928880949093, 0.8308635255795866, 0.29271374211533296, 0.6769315553524353, 0.23831547366416572, 0.5895099457120908, 0.8994675076574448, 0.8893400405584444, 0.8456825404777587, 0.5399612081435882, 0.6188649121485582, 0.9281492942813848, 0.7611740601422801, 0.46550237374781617, 0.8896861436466836, 0.9038901015569306, 0.5044440900554997, 0.9215480939667524, 0.6930273792518707, 0.8723244804196287, 0.5624338775604165, 0.9226297661236537, 0.8469231754225917, 0.9430557295321259, 0.9097116306258912, 0.5988707702267543, 0.3813853072548755, 0.8843832309478876, 0.9006952500629406, 0.918975987201669, 0.18997930334445084, 0.8923106748541326, 0.8461388699436441, 0.5973439234355874, 0.9544642924744549, 0.91770416680597, 0.9177239854204658, 0.17584552180125673, 0.9240099144459667, 0.48524948024905407, 0.8889685222180134, 0.5785503824403398, 0.7511953459672914, 0.6887596776945688, 0.6717539058356753, 0.7168761391602206, 0.7134478068952186, 0.834626350903405, 0.5715867980362679, 0.6588392688727011, 0.9488572786900573, 0.8920529250761863, 0.8891353183282249, 0.707981940789761, 0.926348680038428, 0.631489487929038, 0.7443856388661001, 0.9260754381930228, 0.9544642924744549, 0.8497401318990601, 0.5604010177433062, 0.8036334301115304, 0.7898153537185114, 0.8491431337122072, 0.6570881560807702, 0.8389599143569951, 0.7944137576415592, 0.8132668978866627, 0.44714680104169846, 0.7978021044641371, 0.41921696608658454, 0.38876183891604754, 0.9248463736054193, 0.4277915265084825, 0.6345107008491314, 0.8008942533173764, 0.5087430598332189, 0.9414938992689892, 0.6922115882765215, 0.8296175750175913, 0.8593339228153332, 0.8975141534758351, 0.5977126281557783, 0.9279478536756302, 0.6485770817571253, 0.8905823996589662, 0.9332072841984264, 0.9432461110830079, 0.9410120781436498, 0.6339696776630096, 0.7120962557761497, 0.5841709037351369, 0.5928970840420333, 0.9006589732900512, 0.936371533648048, 0.6907852379101131, 0.7675780198071424, 0.9444587893431046, 0.4702336163336472, 0.8925536722101626, 0.8158978708906081, 0.822780392485108, 0.8037335327290217, 0.8382351003285965, 0.8941557358589171, 0.4796498334522667, 0.926348680038428, 0.6842118015950474, 0.6463580983468415, 0.8292048071278182, 0.5834426687867836, 0.8419845362148763, 0.2431563391580561, 0.7763142135369961, 0.9390550746437164, 0.7774903237071782, 0.8141232663130791, 0.9444089886680379, 0.430401459478284, 0.9192677156927759, 0.8427595869840984, 0.87120858451521, 0.5693182102579236, 0.820012080301976, 0.58719119911586, 0.42769376643096113, 0.3542595869275313, 0.89579938191327, 0.8743523014696554, 0.7820497043505815, 0.5279069501129625, 0.8869579700149332, 0.45488774279476296, 0.8514781135508903, 0.8278297091497892, 0.663749097381813, 0.5132851713944618, 0.4906566565015208, 0.6415219885510332, 0.6991293681294938, 0.8150539074042624, 0.5800669536763935, 0.9583771200922359, 0.7366090055976814, 0.5747817696023392, 0.5315376696882942, 0.8074446941396305, 0.9038901015569306, 0.9087015650331977, 0.6697291810323083, 0.5800669536763935, 0.8807270543114014, 0.5135845984304893, 0.9352791850238339, 0.36120709973337456, 0.6206709330576408, 0.906286252315459, 0.7937202818717513], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [0.05, 0.044, 0.031, 0.09, 0.091, 0.086, 0.043, 0.09, 0.053, 0.054, 0.068, 0.041, 0.039, 0.05, 0.052, 0.117, 0.08, 0.172, 0.05, 0.081, 0.049, 0.048, 0.086, 0.028, 0.067, 0.092, 0.041, 0.088, 0.044, 0.054, 0.068, 0.04, 0.039, 0.039, 0.06, 0.059, 0.039, 0.045, 0.07, 0.045, 0.112, 0.104, 0.047, 0.055, 0.107, 0.059, 0.051, 0.032, 0.047, 0.076, 0.077, 0.061, 0.138, 0.089, 0.053, 0.239, 0.045, 0.048, 0.142, 0.08, 0.05, 0.055, 0.067, 0.05, 0.097, 0.047, 0.043, 0.077, 0.076, 0.024, 0.045, 0.08, 0.051, 0.041, 0.044, 0.033, 0.039, 0.062, 0.098, 0.026, 0.05, 0.037, 0.049, 0.082, 0.068, 0.112, 0.041, 0.047, 0.044, 0.044, 0.08, 0.044, 0.085, 0.051, 0.066, 0.044, 0.055, 0.058, 0.048, 0.056, 0.056, 0.082, 0.034, 0.054, 0.069, 0.467, 0.042, 0.038, 0.045, 0.044, 0.066, 0.027, 0.069, 0.029, 0.082, 0.096, 0.047, 0.047, 0.08, 0.049, 0.047, 0.048, 0.049, 0.038, 0.05, 0.056, 0.041, 0.064, 0.092, 0.04, 0.037, 0.105, 0.209, 0.047, 0.045, 0.063, 0.026, 0.055, 0.05, 0.08, 0.034, 0.039, 0.037, 0.04, 0.041, 0.051, 0.093, 0.04, 0.084, 0.073, 0.052, 0.087, 0.04, 0.079, 0.06, 0.084, 0.105, 0.044, 0.036, 0.03, 0.035, 0.087, 0.07, 0.052, 0.078, 0.034, 0.05, 0.055, 0.108, 0.045, 0.046, 0.053, 0.07, 0.043, 0.1, 0.068, 0.08, 0.042, 0.074, 0.044, 0.05, 0.082, 0.053, 0.056, 0.047, 0.044, 0.052, 0.031, 0.037, 0.044, 0.096, 0.039, 0.047, 0.032, 0.049, 0.084, 0.055, 0.061, 0.049, 0.09, 0.046, 0.205, 0.205, 0.059, 0.046, 0.05, 0.046, 0.083, 0.049, 0.027, 0.05, 0.047, 0.054, 0.056, 0.063, 0.044, 0.045, 0.03, 0.301, 0.034, 0.084, 0.04, 0.039, 0.049, 0.044, 0.052, 0.043, 0.057, 0.046, 0.075, 0.034, 0.04, 0.057, 0.085, 0.04, 0.026, 0.07, 0.02, 0.051, 0.043, 0.099, 0.066, 0.053, 0.24, 0.04, 0.09, 0.085, 0.043, 0.052, 0.07, 0.104, 0.042, 0.039, 0.092, 0.056, 0.047, 0.067, 0.039, 0.058, 0.091, 0.052, 0.052, 0.051, 0.062, 0.05, 0.046, 0.044, 0.049, 0.071, 0.073, 0.058, 0.29, 0.058, 0.044, 0.048, 0.04, 0.091, 0.041, 0.06, 0.04, 0.103, 0.081, 0.041, 0.07, 0.069, 0.046, 0.039, 0.054, 0.026, 0.048, 0.031, 0.05, 0.047, 0.029, 0.083, 0.111, 0.053, 0.056, 0.046, 0.081, 0.041, 0.047, 0.081, 0.05, 0.087, 0.042, 0.05, 0.08, 0.152, 0.098, 0.186, 0.031, 0.081, 0.05, 0.099, 0.048, 0.063, 0.084, 0.04, 0.114, 0.114, 0.048, 0.047, 0.08, 0.047, 0.048, 0.096, 0.046, 0.077, 0.042, 0.048, 0.08, 0.049, 0.052, 0.038, 0.077, 0.048, 0.073, 0.037, 0.054, 0.051, 0.052, 0.037, 0.079, 0.035, 0.074, 0.095, 0.046, 0.046, 0.046, 0.04, 0.07, 0.042, 0.049, 0.047], \"xaxis\": \"x\", \"y\": [0.2802292104526322, 0.9455194119275858, 0.4978743212349556, 0.5289145624519528, 0.28439238707197784, 0.2033309570226689, 0.27345747478543325, 0.8322873304845451, 0.389055896812549, 0.3675472469853882, 0.5781933746273124, 0.7401955299744071, 0.44969671697605845, 0.4367887814338696, 0.31593955341667695, 0.3775624358859999, 0.19282181046294666, 0.048451763306065584, 0.6005928650583868, 0.032225376113695775, 0.427412413738938, 0.23973251442015217, 0.13890126550157303, 0.8613925272127, 0.329663916828638, 0.19359965390713213, 0.6827271716759634, 0.1960905505555538, 0.08135735686643118, 0.39737240301928484, 0.13902987396822816, 0.6514166433739288, 0.6994753721471061, 0.7140886736258081, 0.5021795028970708, 0.48743245558712556, 0.5731139673640956, 0.8820820642542792, 0.559972149724866, 0.5061565591493914, 0.5066810377847554, 0.833805652807593, 0.6979972163580744, 0.3177574231538272, 0.13068190592986567, 0.758876109553896, 0.5681062961269688, 0.715544821914063, 0.762062625203523, 0.4464438677531786, 0.20995974230910305, 0.5262622410710028, 0.39442669669188163, 0.2537324982988368, 0.6775437642744659, 0.23876321589577687, 0.6369158982934647, 0.38960060362966165, 0.6034323722874255, 0.7769991715799629, 0.15199748354041337, 0.5641412449951732, 0.7590466800561823, 0.5969347905931296, 0.1048362779837843, 0.7217824369593382, 0.2662339163773806, 0.16472378978351135, 0.37760124376932414, 0.7071736299639594, 0.3436862995931572, 0.8384434752264291, 0.3635333644877426, 0.7813188949129265, 0.7279369976219869, 0.5641098847382463, 0.3863964747623771, 0.9209913370067284, 0.1477144681640183, 0.8809374658555192, 0.6533168894759348, 0.8873477284758582, 0.3697306267878623, 0.28319023347825867, 0.5203701741750857, 0.5523747693308857, 0.6387521731780509, 0.3881380695009739, 0.8487896327149285, 0.4636606453307818, 0.8384434752264291, 0.558266603669778, 0.21657231888677728, 0.3635333644877426, 0.5512671313974766, 0.5051039398599867, 0.5827915753039158, 0.49441682850108926, 0.47309171914705017, 0.6262595591688196, 0.5508242483721094, 0.47332791509789995, 0.7117569366896692, 0.3933786516273859, 0.16465066549244003, 0.7490394132223248, 0.769261050002088, 0.7431932405995126, 0.3141000916210982, 0.723735045552473, 0.6484132891031948, 0.688519894019609, 0.40496704226994307, 0.5803736122960511, 0.6327801522745691, 0.45115706990411364, 0.37268733756108086, 0.9009693101135351, 0.06496389958099598, 0.44431713201158524, 0.39960831974332744, 0.8662156944598043, 0.31018081106061823, 0.5339551117365043, 0.33311273919547707, 0.400132762133902, 0.8528754522806217, 0.14419347879543085, 0.11672350429510901, 0.44556702529145975, 0.6160120899414699, 0.13766892845409207, 0.5517204028384314, 0.5232178919035022, 0.35483403305733974, 0.4900213704561591, 0.8854578072659228, 0.43084122675663034, 0.7601186327653665, 0.14072030431570776, 0.6186690618327106, 0.5245054232921349, 0.7326259458716644, 0.5690781983520095, 0.4018508815425063, 0.24877469563805235, 0.7952501197393639, 0.8766221356386195, 0.303451532996695, 0.5357745481647883, 0.7096524147827454, 0.20877177283968149, 0.8635610141758273, 0.46736762313881036, 0.6061151992073851, 0.113015272873705, 0.40446014603085867, 0.6332606063976143, 0.648705381890928, 0.42186952587750404, 0.8047913565308571, 0.3017058309841093, 0.38406990132164637, 0.33494193042999065, 0.19929939967121216, 0.8624919783238055, 0.528785836409086, 0.43084122675663034, 0.47042159929499583, 0.5061565591493914, 0.5759491569657543, 0.8468794444363914, 0.20342296359496542, 0.5170831534483544, 0.3666753044655067, 0.6131723001375537, 0.4410646109528086, 0.6903416342484309, 0.3866428492574258, 0.4636606453307818, 0.4525459302795702, 0.03199256040434073, 0.7029629492254846, 0.2433141614541866, 0.548755973819273, 0.3775060302547258, 0.06593060991448157, 0.8745624549148976, 0.22931948662359403, 0.27267688907931714, 0.589328430619086, 0.8007160756317941, 0.5525637789187225, 0.5008522318356121, 0.4556212410144909, 0.17391722008742402, 0.43574637053357784, 0.3237440077649342, 0.6071692164257629, 0.6925152430641841, 0.592675381607996, 0.43854150134957587, 0.43854150134957587, 0.42437112972565305, 0.8061118855433299, 0.35195592295594336, 0.7605370065149419, 0.38898578429124253, 0.67510953655807, 0.872979709380305, 0.710510994258769, 0.720290290780972, 0.4820787970895852, 0.42019280799979697, 0.4304380754474639, 0.25285023254778977, 0.3238056884730761, 0.39471961640683584, 0.09510031985475974, 0.367046376808582, 0.21500793651835448, 0.8705359023101334, 0.6100742529031461, 0.6226449432624995, 0.7279369976219869, 0.3643494054700089, 0.09992017521484964, 0.41475515148757036, 0.6462260464983366, 0.14102909592513518, 0.48949585696458414, 0.5239520436918008, 0.6084413884537807, 0.5655473856702703, 0.9517420512476797, 0.7489379515982664, 0.4647937384849751, 0.7915321263825208, 0.44112279258530757, 0.5734340256727429, 0.6604471727860799, 0.4845203185458914, 0.6968730453869196, 0.5315374962198609, 0.8685951485887234, 0.6242442748350044, 0.2912097196987059, 0.7725938221565348, 0.2067629769731588, 0.30221725334927335, 0.13129342562285412, 0.6467789443522378, 0.6994753721471061, 0.11825382206919556, 0.41022417118631593, 0.4882665226122541, 0.7732287086973071, 0.25374762405010176, 0.49441682850108926, 0.3723877205427743, 0.652330313245635, 0.43667799883041203, 0.5964718913578133, 0.55172276504346, 0.24113559934961917, 0.8243980268882987, 0.7263843594269437, 0.43535214809021755, 0.8721122798612579, 0.18723914490145582, 0.6486906676970999, 0.11576704656818047, 0.4328241622975616, 0.491481212420291, 0.5264345378086769, 0.33856526784971647, 0.2967410926251248, 0.581398831228375, 0.5973776665460488, 0.6195406102170065, 0.37782717658841725, 0.323061133240968, 0.17420808473594895, 0.19634770547538957, 0.46492234760650425, 0.49613167963272686, 0.5812209036149294, 0.6057291775435286, 0.63414717387345, 0.5702687187355167, 0.8604975146328253, 0.6309022132706124, 0.48732991249542923, 0.6887148870948692, 0.41581945293096145, 0.5706760596351739, 0.4831274653996314, 0.06684727567316755, 0.49090643211649887, 0.15191610726090596, 0.2711405311223577, 0.7653618545702112, 0.09266565137124261, 0.4554350627407873, 0.19698919164573708, 0.6930185080649685, 0.5227537922811563, 0.50434568709929, 0.7082092780767422, 0.46058046365566996, 0.6735723234187477, 0.4285936050615775, 0.323061133240968, 0.5168500865319015, 0.6161307914674419, 0.23456444218973552, 0.3192004782541023, 0.21968945907811915, 0.5028183230931117, 0.43371621376298963, 0.6744209213341115, 0.5940260419772637, 0.13783310426722128, 0.5136444387530009, 0.5508647999875032, 0.4955911012838212, 0.9814394195009358, 0.8260225289794664, 0.17965956338109995, 0.46844896472597397, 0.6048119589659149, 0.3289160319090978, 0.2454606394453749, 0.7497022835596558, 0.683485355417811, 0.20995974230910305, 0.23504578258460665, 0.37175956099497537, 0.4875530438829156, 0.24982584224249993, 0.6282829625348888, 0.4520795162158371, 0.8200372413039435, 0.12832513643528837, 0.5299630655130737, 0.29552777318700446, 0.24021937552346023, 0.5429028773737552, 0.6311869746243346, 0.4145977043912777, 0.39329840463575844, 0.39070335653410526, 0.4286990948130573, 0.846836560604146, 0.6880850122626078], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (curr)\", \"type\": \"scatter\", \"x\": [0.068, 0.058, 0.045, 0.044, 0.076, 0.041, 0.037, 0.036, 0.033, 0.036, 0.102, 0.039, 0.033, 0.026, 0.03, 0.04, 0.07, 0.032, 0.078, 0.028, 0.056, 0.045, 0.05, 0.04, 0.04, 0.031, 0.044, 0.038, 0.035, 0.029, 0.032, 0.059, 0.053, 0.034, 0.034, 0.122, 0.035, 0.05, 0.047, 0.096, 0.036, 0.026, 0.034, 0.043, 0.08, 0.065, 0.054, 0.079, 0.039, 0.036, 0.073, 0.034, 0.031, 0.042, 0.039, 0.053, 0.044, 0.05, 0.039, 0.414, 0.054, 0.037, 0.029, 0.036, 0.036, 0.042, 0.061, 0.037, 0.05, 0.055, 0.067, 0.012, 0.04, 0.038, 0.046, 0.048, 0.074, 0.041, 0.059, 0.171, 0.042, 0.037, 0.065, 0.03, 0.035, 0.194, 0.08, 0.048, 0.036, 0.049, 0.046, 0.039, 0.037, 0.035, 0.047, 0.037, 0.091, 0.035, 0.071, 0.071, 0.027, 0.047, 0.072, 0.034, 0.067, 0.051, 0.072, 0.023, 0.038, 0.025, 0.033, 0.053, 0.026, 0.024, 0.055, 0.23, 0.043, 0.057, 0.04, 0.083, 0.03, 0.03, 0.067, 0.029, 0.073, 0.074, 0.088, 0.029, 0.073, 0.04, 0.019, 0.075, 0.043, 0.045, 0.05, 0.049, 0.062, 0.094, 0.06, 0.034, 0.046, 0.071, 0.095, 0.036, 0.046, 0.036, 0.048, 0.087, 0.032, 0.043, 0.039, 0.031, 0.051, 0.043, 0.029, 0.038, 0.058, 0.062, 0.047, 0.058, 0.032, 0.078, 0.032, 0.034, 0.08, 0.034, 0.032, 0.084, 0.065, 0.137, 0.022, 0.04, 0.046, 0.055, 0.027, 0.04, 0.048, 0.031, 0.035, 0.078, 0.037, 0.042, 0.036, 0.093, 0.039, 0.077, 0.078, 0.042, 0.045, 0.081, 0.015, 0.051, 0.028, 0.045, 0.037, 0.035, 0.041, 0.027, 0.048, 0.042, 0.038, 0.038, 0.047, 0.017, 0.036, 0.038, 0.036, 0.074, 0.046, 0.044, 0.046, 0.037, 0.077, 0.029, 0.071, 0.025, 0.046, 0.041, 0.022, 0.047, 0.04, 0.044, 0.086, 0.045, 0.049, 0.071, 0.031, 0.054, 0.072, 0.04, 0.074, 0.05, 0.028, 0.028, 0.072, 0.055, 0.034, 0.047, 0.036, 0.055, 0.043, 0.031, 0.032, 0.057, 0.077, 0.068, 0.057, 0.045, 0.06, 0.077, 0.053, 0.056, 0.053, 0.038, 0.042, 0.053, 0.035, 0.031, 0.033, 0.049, 0.078, 0.04, 0.06, 0.042, 0.08, 0.031, 0.044, 0.032, 0.044, 0.055, 0.044, 0.04, 0.037, 0.087, 0.043, 0.078, 0.032, 0.047, 0.035, 0.062, 0.413, 0.034, 0.028, 0.033, 0.032, 0.077, 0.021, 0.031, 0.044, 0.056, 0.078, 0.214, 0.05, 0.062, 0.034, 0.031, 0.052, 0.04, 0.031, 0.034, 0.029, 0.043, 0.041, 0.034, 0.067, 0.074, 0.033, 0.054, 0.034, 0.043, 0.04, 0.027, 0.071, 0.053, 0.035, 0.045, 0.032, 0.035, 0.044, 0.057, 0.033, 0.036, 0.06, 0.058, 0.11, 0.032, 0.044, 0.132, 0.038, 0.038, 0.08, 0.035, 0.093, 0.043, 0.176, 0.054, 0.041, 0.046, 0.255, 0.085, 0.021, 0.036, 0.055, 0.079, 0.076, 0.039, 0.028, 0.051, 0.088, 0.033, 0.033, 0.047, 0.044, 0.043, 0.049, 0.031, 0.083, 0.04, 0.043, 0.07, 0.025, 0.034, 0.084, 0.037, 0.076, 0.046, 0.044, 0.063, 0.037, 0.049, 0.024, 0.046, 0.039, 0.041, 0.118, 0.117, 0.036, 0.028, 0.064, 0.038, 0.03, 0.022, 0.045, 0.044, 0.036, 0.054, 0.05, 0.026, 0.043, 0.036, 0.032, 0.074, 0.027, 0.053, 0.048, 0.077, 0.038, 0.065, 0.029, 0.027, 0.036, 0.027, 0.022, 0.042, 0.042, 0.056, 0.039, 0.027, 0.051, 0.035, 0.076, 0.048, 0.033, 0.152, 0.057, 0.092, 0.036, 0.085, 0.027, 0.023, 0.04, 0.041, 0.085, 0.243, 0.084, 0.039, 0.043, 0.036, 0.021, 0.045, 0.033, 0.046, 0.037, 0.029, 0.065, 0.081, 0.044, 0.067, 0.028, 0.062, 0.053, 0.054, 0.053, 0.123, 0.031, 0.082, 0.048, 0.059, 0.075, 0.077, 0.045, 0.097, 0.041, 0.069, 0.05, 0.031, 0.053, 0.037, 0.066, 0.061, 0.042, 0.036, 0.052, 0.073, 0.029, 0.047, 0.031, 0.037, 0.036, 0.105, 0.045, 0.035, 0.075, 0.05, 0.057, 0.026, 0.118, 0.034, 0.034, 0.042, 0.039, 0.031, 0.097, 0.075, 0.052, 0.03, 0.037, 0.035, 0.075, 0.078, 0.067, 0.042, 0.078, 0.076, 0.049, 0.118, 0.041, 0.089, 0.059, 0.073, 0.036, 0.044, 0.053, 0.031, 0.034, 0.044, 0.043, 0.034, 0.076, 0.035, 0.07, 0.046, 0.037, 0.048, 0.043, 0.03, 0.084, 0.097, 0.046, 0.063, 0.03, 0.332, 0.033, 0.053, 0.041, 0.061, 0.024, 0.035, 0.034, 0.047, 0.091, 0.052, 0.067, 0.021, 0.216, 0.053, 0.121, 0.035, 0.114, 0.048, 0.046, 0.051, 0.066, 0.046, 0.025, 0.031, 0.119, 0.109, 0.021, 0.053, 0.041, 0.02, 0.05, 0.067, 0.031, 0.041, 0.086, 0.036, 0.029, 0.022, 0.053, 0.038, 0.056, 0.086, 0.057, 0.026, 0.034, 0.033, 0.032, 0.03, 0.06, 0.039, 0.047, 0.032, 0.028, 0.043, 0.04, 0.032, 0.046, 0.042, 0.117, 0.05, 0.035, 0.027, 0.058, 0.049, 0.083, 0.032, 0.044, 0.038, 0.084, 0.051, 0.047, 0.045, 0.12, 0.079, 0.031, 0.04, 0.035, 0.039, 0.055, 0.032, 0.045, 0.026, 0.034, 0.083, 0.071, 0.037, 0.033, 0.045, 0.046, 0.055, 0.048, 0.034, 0.083, 0.03, 0.03, 0.05, 0.048, 0.036, 0.029, 0.036, 0.027, 0.057, 0.046, 0.035, 0.046, 0.045, 0.075, 0.033, 0.082, 0.085, 0.043, 0.049, 0.032, 0.055, 0.16, 0.079, 0.034, 0.03, 0.051, 0.048, 0.047, 0.038, 0.053, 0.055, 0.069, 0.048], \"xaxis\": \"x2\", \"y\": [0.33396714643252134, 0.5044440900554997, 0.8874896900044845, 0.4686759077780351, 0.23831547366416572, 0.571181601185031, 0.7785327680196316, 0.7290551099174598, 0.9581131370131553, 0.6801000322064107, 0.413367674560271, 0.6667140739211237, 0.9108229754863395, 0.9275086157065797, 0.9186958597750785, 0.7191871442695774, 0.8184457509658746, 0.8597940676688322, 0.7947045908306632, 0.8244149680645384, 0.42771531534877594, 0.5315376696882942, 0.7136291946100958, 0.5510697799054304, 0.6393262665313312, 0.9016582766249417, 0.8560880110261746, 0.8947361144883382, 0.9102326114023062, 0.840723585394272, 0.9264645566705582, 0.5105903360131552, 0.752648770317166, 0.5855954083225455, 0.8989214048388485, 0.5190750352404293, 0.9560713253502463, 0.7273157243430202, 0.9279672131348602, 0.640103147954212, 0.9158977434209615, 0.9035955072010529, 0.7140955379655831, 0.233508355491505, 0.7280578325574358, 0.8810827811902006, 0.3966129217085586, 0.15541760955422754, 0.5851621750323275, 0.9046111951917862, 0.4177213302712193, 0.7993763114768937, 0.6978409661933959, 0.6473373667551029, 0.770784382977056, 0.6500641275496193, 0.548949563093737, 0.9803199442553986, 0.6150775052067382, 0.391333092160729, 0.6966682278280982, 0.9426748402861506, 0.9170092977635526, 0.844625652038695, 0.5621782696252592, 0.8935808323282117, 0.6792214086077275, 0.6719996755401956, 0.5252591274442797, 0.7277045758687855, 0.4685752957996948, 0.8616549355667619, 0.347491516391863, 0.8224130863808733, 0.5340790568488665, 0.6711667658766297, 0.5277539611022016, 0.7226430813715845, 0.8140972745487615, 0.3280236940194876, 0.9543080196225542, 0.7752655593026647, 0.9223925066666061, 0.8588031784191832, 0.6345107008491314, 0.9393010047953068, 0.7897067132703484, 0.8608062836413887, 0.8367885032124018, 0.38555642305179116, 0.8611944449682004, 0.9172341012895443, 0.9206892306522243, 0.9500505925695213, 0.537798347971205, 0.9173482789702866, 0.44454351342386716, 0.8909704850569525, 0.7351932580165473, 0.6818328744935735, 0.7981559962965634, 0.7626532952948841, 0.807353254900461, 0.964411205143099, 0.4685752957996948, 0.6986526320119215, 0.1956969407137045, 0.9233481403380283, 0.8218375601976645, 0.8536269727611236, 0.5637680470866036, 0.42267134533232753, 0.93003590801509, 0.9364808605729722, 0.8816060831574614, 0.9663102962713933, 0.8345570787709832, 0.4997893986747249, 0.7921603237806832, 0.5586815647381762, 0.8622246464681924, 0.9828719612298703, 0.909295720392338, 0.9476267884443668, 0.5395521774612226, 0.901360886913609, 0.39410444510430487, 0.9262213132200262, 0.6627387433216217, 0.9629433821448677, 0.9614311452267452, 0.9802968012486629, 0.933760787013923, 0.34432718187202205, 0.63596173557573, 0.624364378916488, 0.7417789548241253, 0.7300918276682445, 0.6968315453320488, 0.7840233885688647, 0.8958841271622066, 0.5417426694559925, 0.7102579146160282, 0.6004345411549624, 0.515920701757342, 0.7587882454650442, 0.5029588531082266, 0.6887596776945688, 0.8642849605932809, 0.6469572639767995, 0.8103639651534781, 0.939764354405301, 0.694136577696587, 0.6593725303534554, 0.9646797005081557, 0.7979900311745153, 0.792123904710467, 0.8869579700149332, 0.7351250317969437, 0.5332560471205093, 0.9406873315653421, 0.39362685027924615, 0.9466602521798594, 0.8394325033041952, 0.6633442657978572, 0.8126408700417265, 0.7332457619716184, 0.08024070404520958, 0.8667774471450977, 0.6466814331404849, 0.912366876100516, 0.656670904734599, 0.8701678467707724, 0.8875925797813499, 0.9658725076002231, 0.7668332861852056, 0.8604440887473094, 0.934384507524058, 0.9605946056867319, 0.951253157591183, 0.5749289095213865, 0.6279243005170476, 0.7937202818717513, 0.7665301650725991, 0.700127941221274, 0.8531107444728586, 0.7947045908306632, 0.8870566665876504, 0.5476228787844645, 0.8410401833568673, 0.8736671065238262, 0.6519898659949606, 0.936943112068646, 0.9077719201719568, 0.8071889556778997, 0.8815615400732472, 0.8935313268029127, 0.8782891297971865, 0.5029588531082266, 0.5797201450332624, 0.9416775458320723, 0.5958140198486584, 0.2485157288688957, 0.932021424688801, 0.8531502837407814, 0.6344194678828672, 0.632587077283238, 0.9121448358615357, 0.5776545535910985, 0.9052765174806566, 0.8580390107418799, 0.8998644401112552, 0.6784536879503494, 0.9458342431661766, 0.21387363850783603, 0.9530348339880965, 0.7307391114165022, 0.7187682731289255, 0.6905635603269331, 0.9569274903702625, 0.9287384091375525, 0.3856984054091925, 0.504413920551941, 0.5389739198483336, 0.5921068831639978, 0.10702848140489757, 0.8772993497727819, 0.6361944011057532, 0.8952999713010865, 0.7069578609115064, 0.10632960186243966, 0.6465592619811017, 0.9116333268133815, 0.9210441535829985, 0.9483358221641291, 0.5800224234700003, 0.896951343689222, 0.8958659323404018, 0.8896861436466836, 0.7763142135369961, 0.778627444633172, 0.9274605647284293, 0.9167924025380936, 0.6422094408272838, 0.6363725079258666, 0.8694129796739031, 0.5693182102579236, 0.5315376696882942, 0.6814536952243052, 0.30089534057709466, 0.6689448970920832, 0.6419522618821227, 0.6500641275496193, 0.8221968069187356, 0.9285763346020383, 0.8495153837633861, 0.7135666997345446, 0.8850789772017983, 0.9128367188568884, 0.8709442503982084, 0.44714680104169846, 0.7147831401969469, 0.6814536952243052, 0.5823319261018008, 0.7718122970862826, 0.8925058444773368, 0.9249991097277733, 0.7849066379312727, 0.5120166815330335, 0.7863291630268572, 0.8171821177205619, 0.8878235148823457, 0.9813953955585096, 0.5009899161211654, 0.6787020040856314, 0.2747106808400709, 0.6998114428322438, 0.7191783799678735, 0.7566715075843347, 0.7741630673610131, 0.692871858980435, 0.8706970297938403, 0.9226518689226377, 0.619213859232465, 0.9620625840847012, 0.8161066853745392, 0.7984578805051198, 0.8987836568806694, 0.27900511725120763, 0.747868261422589, 0.8013372150606806, 0.4430395412241901, 0.8082746512504794, 0.9248395818955686, 0.8132668978866627, 0.7926355964369082, 0.7243101498981422, 0.8251498778038484, 0.865753667016409, 0.8784859927081519, 0.9613966942665844, 0.8380103992838959, 0.9376908870460701, 0.8505645904112248, 0.5317253080143199, 0.8756470416862959, 0.8823120896825394, 0.8920529250761863, 0.9565288857220365, 0.92576324319171, 0.8397457208604353, 0.8008835764985612, 0.7620555647282774, 0.6333567796033132, 0.8986985644274655, 0.8289197139212982, 0.38568054861828666, 0.4358764146033148, 0.7013568331933456, 0.5524769805317635, 0.8654015550049637, 0.9625385348003681, 0.4997035751430624, 0.5940434106189647, 0.29640429037896177, 0.9370396801623051, 0.7496358493500708, 0.8521916566704996, 0.7519935213994349, 0.8956127660014477, 0.7563308848917781, 0.5425355780301907, 0.1652985164032473, 0.5777375433929663, 0.5926841497777402, 0.5247451599628447, 0.6215406511606532, 0.646742228322253, 0.5236567091352762, 0.8105889943537302, 0.7614647275399787, 0.7272264480694343, 0.44438282424164377, 0.8051848688934031, 0.253979247575754, 0.8737269176380216, 0.7884186533408385, 0.5226162157005312, 0.7776146375974927, 0.8021344726910251, 0.6794204065079696, 0.8398669626756513, 0.3743394998756179, 0.6593725303534554, 0.41008410759983227, 0.8726624594592295, 0.31336232876890546, 0.6187135046228962, 0.9208146539756937, 0.8948907807194619, 0.9475948217130945, 0.7098971478357265, 0.41970311630379203, 0.5524505095188592, 0.6689295490636696, 0.39534528644804523, 0.6686700461744643, 0.6608417181144597, 0.6289006219381473, 0.8112353209803558, 0.9675531845963172, 0.3468688843876404, 0.8171815196180959, 0.9315945487332388, 0.7612383340144859, 0.43979370974717685, 0.9452166580978265, 0.810349906376065, 0.4979189466877109, 0.9054024939516333, 0.7506263221664519, 0.8595966107872783, 0.9041757536760852, 0.5120166815330335, 0.9246344940597735, 0.622364539475366, 0.7975959936185795, 0.9376528402833735, 0.8270495791839716, 0.7463426393970082, 0.8508295060861325, 0.5277539611022016, 0.7926521549058593, 0.8343380415579561, 0.7973631232158779, 0.5423298306356671, 0.6253812669856891, 0.9342151247863544, 0.9064095870896521, 0.8428584418618921, 0.5680191878381406, 0.8230633503438987, 0.857993972512287, 0.8312116035859974, 0.8886868130574391, 0.5695902702544526, 0.8750573328895943, 0.47134086624147714, 0.6082670858563528, 0.8571520978358925, 0.7006810412396262, 0.6001343818465046, 0.8680196363335714, 0.7833148206731655, 0.835330250744176, 0.6883000602161935, 0.4297997702781997, 0.7132181587745201, 0.941909753873568, 0.9298379484442667, 0.8950633078112005, 0.9652574497835966, 0.8593048115498744, 0.23022113319019433, 0.5548683876071567, 0.8789570823277312, 0.7176343272433334, 0.7135972690872326, 0.900955402304434, 0.89110615578316, 0.8021344726910251, 0.36734125225010755, 0.9233813125795639, 0.9269988231022361, 0.6021478506882372, 0.27064660283581765, 0.7595966254948197, 0.5317253080143199, 0.9626288904553877, 0.518871521713375, 0.4244151934213653, 0.8784852709235653, 0.667697582798242, 0.6791650855490978, 0.8659372985570389, 0.5217980090164113, 0.9757802673562255, 0.20769640873195563, 0.6900575067285889, 0.15051833553221247, 0.8476988333501053, 0.12043274000614122, 0.6546311715671466, 0.412102187638673, 0.6339696776630096, 0.6925917751558638, 0.8074446941396305, 0.8417042066658985, 0.4702054036006336, 0.8107456318417504, 0.934253622333564, 0.9671353887875448, 0.3776875782453083, 0.5133306968464912, 0.8279918435672958, 0.7295730380004212, 0.8398957027397556, 0.7470826509089123, 0.7722124156410631, 0.3944809481034696, 0.5801047158883857, 0.7134138458261836, 0.8265590446981121, 0.5836238058504062, 0.7538957359152121, 0.9708936701567454, 0.41507295289487073, 0.9039211350062085, 0.5109703825452502, 0.8880660412534, 0.6332514250278477, 0.703270618172154, 0.863031725372896, 0.9601349291832292, 0.5845797646527732, 0.8357575010967041, 0.9584406458449958, 0.8733333206292072, 0.4740801794177068, 0.5787650908025566, 0.38525623454815555, 0.5715075300165849, 0.951253157591183, 0.831291834366621, 0.6482062646591596, 0.5447536045265621, 0.8456825404777587, 0.5358725178581014, 0.8893400405584444, 0.5955893395860203, 0.9408369636189147, 0.7580589814818564, 0.4244151934213653, 0.7636885291754726, 0.9532052815091139, 0.6686700461744643, 0.39683939049776734, 0.8309978518015588, 0.06774730328187532, 0.8934061610794648, 0.9459413258233057, 0.8507977517004935, 0.9694554821790147, 0.8640493534313302, 0.8409166048571896, 0.9059760843724536, 0.7278052027863667, 0.8952246802917138, 0.39534528644804523, 0.9558702864115934, 0.9178754126151818, 0.7504628435478695, 0.7568870052952757, 0.32046258648166903, 0.9712495894387816, 0.7125870341029702, 0.8286889773580812, 0.929575727770858, 0.8422483936479932, 0.60065365322741, 0.5775074082600717, 0.7505976846167132, 0.5317253080143199, 0.9590110623565244, 0.9651712957082627, 0.7333643603414158, 0.7757825668725274, 0.8928390517037824, 0.2578168736401774, 0.5355488836719776, 0.8408692583280314, 0.7849780542174357, 0.8711681462620556, 0.8447990405440073, 0.9571933326515756, 0.9307123551507692, 0.6421242495412457, 0.9239207054420927, 0.9336219461922934, 0.4244151934213653, 0.5673643045526261, 0.8301442064454496, 0.528471943574542, 0.8835542071774324, 0.8820947700128993, 0.4561713647735051, 0.584381944856391, 0.9493936477483658, 0.7816316980556022, 0.7770145472448273, 0.8495153837633861, 0.8318035560268552, 0.5220388622338656, 0.8589980209217414, 0.21216021099657945, 0.8782303617207965, 0.901850575196968, 0.7683760396387002, 0.9559989503713009, 0.938411491366706, 0.7225398931917507, 0.5918361617892179, 0.8596378534897678, 0.8816239240572568, 0.9296844522785247, 0.8299758417251202, 0.7538846798551382, 0.931253582726863, 0.6902425303942638, 0.9299571155275668, 0.35461708236434614, 0.6119587629530028, 0.8979450471026776, 0.8782891297971865, 0.6144930729026484, 0.5601837238662909, 0.4230258756549153, 0.5115702372514986, 0.6133200318312215, 0.8287048127179734, 0.42887934024879554, 0.5543929044930882, 0.5414149972460248, 0.7453725251924848, 0.6522898344923613, 0.6445138145159856, 0.9212190995841192, 0.6991293681294938, 0.9188224881967051, 0.9444881948020799, 0.8399825546316605, 0.6440269003431431, 0.45260210695563535, 0.6678228102737954, 0.8535669746933884, 0.23469888428232324, 0.7581156815660375, 0.8329520097124233, 0.5886389680190937, 0.4250130050586104, 0.290761161529129, 0.9065968169685268, 0.39757013049667705, 0.9584529405260903, 0.24804178200132845, 0.8400605958344816, 0.9562762484868867, 0.5923100188758571, 0.5355488836719776, 0.6866862751474886, 0.753715093249364, 0.9302702282582556, 0.8405005145861136, 0.7758456574858743, 0.8270123797965384, 0.9270997487744173, 0.8779999285967196, 0.6350604679157676, 0.9057987369792326, 0.9732730617650076, 0.28007269673131574, 0.5393237551960537, 0.9509318156255189, 0.8055358405733448, 0.8512314640165554, 0.6752183046546253, 0.9766791413071304, 0.26893819095773785, 0.5105552073939665, 0.7964242570425004, 0.9159462749375985, 0.46312559485344046, 0.7889853219989779, 0.5331772070153998, 0.6250130361556073, 0.5340700079782073, 0.8981158701031157, 0.8424802355113449], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [0.088, 0.06, 0.036, 0.04, 0.043, 0.048, 0.032, 0.078, 0.078, 0.063, 0.054, 0.036, 0.039, 0.048, 0.054, 0.046, 0.052, 0.098, 0.032, 0.03, 0.036, 0.036, 0.035, 0.065, 0.04, 0.035, 0.083, 0.054, 0.028, 0.044, 0.04, 0.077, 0.081, 0.072, 0.054, 0.045, 0.078, 0.079, 0.055, 0.066, 0.026, 0.073, 0.069, 0.047, 0.048, 0.048, 0.076, 0.118, 0.051, 0.025, 0.046, 0.084, 0.034, 0.094, 0.084, 0.077, 0.074, 0.095, 0.04, 0.043, 0.095, 0.037, 0.048, 0.098, 0.098, 0.06, 0.414, 0.076, 0.102, 0.072, 0.115, 0.046, 0.036, 0.088, 0.031, 0.04, 0.052, 0.029, 0.044, 0.074, 0.062, 0.078, 0.045, 0.084, 0.04, 0.028, 0.037, 0.044, 0.041, 0.071, 0.05, 0.043, 0.091, 0.045, 0.08, 0.137, 0.035, 0.17, 0.062, 0.04, 0.092, 0.027, 0.046, 0.073, 0.047, 0.062, 0.146, 0.057, 0.051, 0.045, 0.069, 0.059, 0.078, 0.053, 0.038, 0.029, 0.051, 0.158, 0.05, 0.105, 0.044, 0.028, 0.051, 0.082, 0.076, 0.088, 0.036, 0.034, 0.076, 0.047, 0.016, 0.054, 0.045, 0.036, 0.082, 0.047, 0.053, 0.077, 0.086, 0.041, 0.036, 0.04, 0.031, 0.036, 0.071, 0.049, 0.057, 0.066, 0.079, 0.057, 0.034, 0.048, 0.07, 0.045, 0.076, 0.057, 0.035, 0.046, 0.052, 0.211, 0.089, 0.063, 0.039, 0.038, 0.086, 0.031, 0.036, 0.036, 0.046, 0.052, 0.058, 0.062, 0.049, 0.042, 0.073, 0.033, 0.048, 0.044, 0.047, 0.042, 0.033, 0.041, 0.098, 0.048, 0.06, 0.032, 0.212, 0.034, 0.046, 0.053, 0.078, 0.05, 0.038, 0.039, 0.041, 0.08, 0.051, 0.043, 0.051, 0.094, 0.05, 0.051, 0.06, 0.052, 0.023, 0.045, 0.046, 0.077, 0.042, 0.041, 0.052, 0.053, 0.064, 0.046, 0.048, 0.017, 0.063, 0.036, 0.174, 0.046, 0.043, 0.053, 0.046, 0.045, 0.055, 0.037, 0.088, 0.059, 0.042, 0.068, 0.066, 0.043, 0.05, 0.037, 0.09, 0.056, 0.038, 0.039, 0.045, 0.045, 0.096, 0.094, 0.057, 0.054, 0.041, 0.041, 0.06, 0.045, 0.042, 0.048, 0.08, 0.065, 0.029, 0.045, 0.142, 0.038, 0.054, 0.061, 0.105, 0.099, 0.114, 0.044, 0.046, 0.046, 0.053, 0.053, 0.044, 0.044, 0.036, 0.055, 0.053, 0.092, 0.037, 0.057, 0.044, 0.042, 0.049, 0.082, 0.089, 0.071, 0.081, 0.044, 0.023, 0.044, 0.176, 0.032, 0.045, 0.053, 0.052, 0.081, 0.056, 0.044, 0.055, 0.077, 0.05, 0.064, 0.032, 0.046, 0.057, 0.095, 0.028, 0.093, 0.046, 0.043, 0.056, 0.03, 0.09, 0.05, 0.059, 0.054, 0.079, 0.084, 0.046, 0.046, 0.059, 0.05, 0.073, 0.052, 0.042, 0.042, 0.085, 0.066, 0.059, 0.043, 0.088, 0.053, 0.066, 0.075, 0.038, 0.036, 0.079, 0.051, 0.036, 0.033, 0.071, 0.036, 0.037, 0.058, 0.05, 0.043, 0.046, 0.078, 0.076, 0.08, 0.2, 0.036, 0.05, 0.088, 0.05, 0.036, 0.053, 0.031], \"xaxis\": \"x2\", \"y\": [0.8142007211296887, 0.07257977436397642, 0.7430932382113554, 0.8214862427787604, 0.5698848321031316, 0.6048119589659149, 0.6466669219762841, 0.14510080060429495, 0.2250304680670007, 0.28492472637839966, 0.42061632734231896, 0.8281252124183194, 0.49622399336621903, 0.3482895521074759, 0.4678833354511545, 0.5708968386647719, 0.37048677721847617, 0.553632248395139, 0.8702137350251022, 0.42186952587750404, 0.8696774950675754, 0.5410576963494411, 0.3971326977900686, 0.3275001196198921, 0.9448289227093116, 0.7109941475090589, 0.41925580570138304, 0.3675472469853882, 0.6721911818800557, 0.5562207270314473, 0.5262426608517637, 0.3244609607385458, 0.15056615442564347, 0.15676979724311627, 0.6037730696030339, 0.6342511279653397, 0.021947035536558718, 0.32429164429335744, 0.5678746850743716, 0.3571680467137555, 0.7755534309390314, 0.3240287891037917, 0.699424662214302, 0.5151532452376618, 0.7564675819717819, 0.38343591026479057, 0.19811005648518398, 0.3168419703358067, 0.5315947262677626, 0.9269044449273315, 0.8260225289794664, 0.451791899378283, 0.830516920403184, 0.47128602930186, 0.19027823806377472, 0.5181346713949518, 0.29552777318700446, 0.45414400334446664, 0.39329840463575844, 0.42327932510626076, 0.45838907164509224, 0.2233864252642039, 0.3628419195926303, 0.6709353200988277, 0.46058046365566996, 0.25551237833043455, 0.7234147543269824, 0.1481282262733752, 0.314935793994079, 0.20050531530561894, 0.37453315488553635, 0.701015529968035, 0.6343341418527783, 0.1739320900588749, 0.734996253073231, 0.8172229478314255, 0.3598554146739685, 0.7121055211356295, 0.2620604909731644, 0.3421138035730516, 0.6951268813066005, 0.35208221297891723, 0.452099210446082, 0.18907620085798427, 0.5444201651108793, 0.6484058972837882, 0.3258186925596978, 0.5963383680780668, 0.6202666247822538, 0.576738593946626, 0.5054992484109841, 0.2972245631729925, 0.6844333356791464, 0.42629475072919953, 0.4405153833121037, 0.01207867704715336, 0.7609288944606691, 0.23951123982998349, 0.09310514674080905, 0.5084920166510624, 0.33067609257366243, 0.36481899584296196, 0.5708968386647719, 0.3194802059637459, 0.14207297841267416, 0.5776897120055972, 0.2026163425795633, 0.37909000048748537, 0.38206764842015895, 0.41324683104354176, 0.17826143731067332, 0.42339414872454434, 0.39148091864802853, 0.3511350413575442, 0.8053393751847749, 0.5937005322868365, 0.6849942580153355, 0.38930033076762494, 0.5168500865319015, 0.5699073288866824, 0.5376087249833421, 0.8185832461647057, 0.25950508036415604, 0.20394483716883388, 0.3303044530853749, 0.2528102968078532, 0.8477719856767125, 0.5217124250004609, 0.3303044530853749, 0.5382885532339231, 0.9625763866028243, 0.6536174904341296, 0.42629475072919953, 0.6458781618432388, 0.46574001023909845, 0.37268733756108086, 0.8180085473348132, 0.35493594975273335, 0.2423640089427935, 0.3636330633241046, 0.6421622311157122, 0.5444201651108793, 0.7396308412796291, 0.9036153464846048, 0.21101569987323432, 0.6004024464464508, 0.7595861882737439, 0.486549602332862, 0.2379839758891197, 0.5147825233229498, 0.2065932277190248, 0.4342628292980428, 0.5940848250235929, 0.4857193175270624, 0.5332610244722983, 0.5402196969638672, 0.8578846895389459, 0.5290225674595067, 0.6074669506688956, 0.1847839155105034, 0.3581391437324269, 0.4304380754474639, 0.8410120374942113, 0.5810086483513661, 0.19026233744636453, 0.7223494520380469, 0.8589928738613049, 0.8374625942163022, 0.781203852328267, 0.73983195178881, 0.41156537259256004, 0.7482873396984137, 0.44431713201158524, 0.7113673874393347, 0.49869552495399233, 0.7627102864663872, 0.37193390769028617, 0.37187810520956766, 0.3773291605703562, 0.8719651627687759, 0.6218762459828849, 0.3781393537983126, 0.553632248395139, 0.47624084907999176, 0.774399353278846, 0.5840424935194366, 0.5601025471409736, 0.6186690618327106, 0.620611700356168, 0.5755798886129706, 0.15047650536569443, 0.5530049338021776, 0.6597439619439023, 0.8300222117931148, 0.3490158529243493, 0.4410646109528086, 0.5067909967309752, 0.5851482063434866, 0.7149827463187939, 0.4849259975950144, 0.2094210588097294, 0.33399024531412796, 0.4083143545243069, 0.7497022835596558, 0.7817929239213606, 0.7637421953724776, 0.3825655414920891, 0.6611482494098961, 0.19022241257108333, 0.44972084577511023, 0.5476732603321269, 0.4831274653996314, 0.5077048340566679, 0.7289504589448288, 0.4379810490617926, 0.8017221455714771, 0.6434673631716396, 0.5059779734745421, 0.6065367192264559, 0.650368705032214, 0.34567471266024347, 0.39561589000187136, 0.3427787545601037, 0.4676404271158623, 0.5332283386400669, 0.4519108142444285, 0.40662831629925006, 0.42305576187259053, 0.22032895172816622, 0.5278715769330472, 0.43679486629948455, 0.743933429392776, 0.5269515041023835, 0.5008800654866953, 0.214168174561682, 0.44879088851457377, 0.683485355417811, 0.807753104897186, 0.42629475072919953, 0.8502951424821861, 0.17421175568219957, 0.25491371883486935, 0.7595861882737439, 0.6571724132942184, 0.7813188949129265, 0.5626906653340306, 0.8674288259883418, 0.6600514650598344, 0.4827749661719035, 0.5456147119159479, 0.39827550056677263, 0.27323823737433794, 0.695896529362927, 0.5048820477254727, 0.5422349097465021, 0.5610936746718964, 0.6571724132942184, 0.3088751107498249, 0.45428761266464013, 0.6604471727860799, 0.43371621376298963, 0.6171893197168647, 0.8100511550343341, 0.8100511550343341, 0.605832578461134, 0.5526475584669951, 0.4275055171336787, 0.8734720021260204, 0.8508295378350301, 0.5807723706867254, 0.8272749548927728, 0.2670652478909882, 0.7020144194675465, 0.4615566916191992, 0.7055847950248242, 0.43389869234556755, 0.6071692164257629, 0.3496825637352313, 0.23676491619791426, 0.7057755976874825, 0.15539001443149586, 0.6187538615870153, 0.8735882828904331, 0.30049486749739024, 0.23191705420611952, 0.8913917397916864, 0.4977157214618499, 0.16961113509580228, 0.8485494795219795, 0.4760032757956232, 0.5053843099270294, 0.2676015269871764, 0.3627664421236291, 0.15146266807038725, 0.7898179638281774, 0.6145296307645981, 0.3790380236797623, 0.3003532640340299, 0.6086112016774773, 0.39906793889171593, 0.8185832461647057, 0.6715802865662828, 0.8260225289794664, 0.6056902064850618, 0.400132762133902, 0.39471961640683584, 0.6449859309106076, 0.5637152910565628, 0.39949420960438964, 0.5490401551410112, 0.4398875418860128, 0.30916577334906253, 0.7093303227687476, 0.4562508424819209, 0.40444044759428516, 0.5773483646962835, 0.447777692034652, 0.4961542215384683, 0.32474312180562226, 0.21192693199409943, 0.9056903490933487, 0.5013816399998683, 0.758876109553896, 0.6364928148646596, 0.2952804752502578, 0.4748951900520853, 0.43679486629948455, 0.5479962315186364, 0.4728142838839701, 0.6343341418527783, 0.12248807650217919, 0.5052525886146573, 0.8281252124183194, 0.8930081609652758, 0.36283726088930296, 0.8098196742550625, 0.656477404357746, 0.193885049884708, 0.5269515041023835, 0.49858469647139786, 0.32780472036158087, 0.24927512797396847, 0.6148718578314069, 0.10691527318901187, 0.136775438340409, 0.8489192718114075, 0.2600203086082801, 0.8142007211296887, 0.5269515041023835, 0.7966615933629455, 0.5633234794197017, 0.767479452333631], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"chlorides\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"chlorides\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}}, {\"id\": \"chlorides_bad\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (ref)\", \"type\": \"scatter\", \"x\": [0.05, 0.044, 0.031, 0.09, 0.091, 0.086, 0.043, 0.09, 0.053, 0.054, 0.068, 0.041, 0.039, 0.05, 0.052, 0.117, 0.08, 0.172, 0.05, 0.081, 0.049, 0.048, 0.086, 0.028, 0.067, 0.092, 0.041, 0.088, 0.044, 0.054, 0.068, 0.04, 0.039, 0.039, 0.06, 0.059, 0.039, 0.045, 0.07, 0.045, 0.112, 0.104, 0.047, 0.055, 0.107, 0.059, 0.051, 0.032, 0.047, 0.076, 0.077, 0.061, 0.138, 0.089, 0.053, 0.239, 0.045, 0.048, 0.142, 0.08, 0.05, 0.055, 0.067, 0.05, 0.097, 0.047, 0.043, 0.077, 0.076, 0.024, 0.045, 0.08, 0.051, 0.041, 0.044, 0.033, 0.039, 0.062, 0.098, 0.026, 0.05, 0.037, 0.049, 0.082, 0.068, 0.112, 0.041, 0.047, 0.044, 0.044, 0.08, 0.044, 0.085, 0.051, 0.066, 0.044, 0.055, 0.058, 0.048, 0.056, 0.056, 0.082, 0.034, 0.054, 0.069, 0.467, 0.042, 0.038, 0.045, 0.044, 0.066, 0.027, 0.069, 0.029, 0.082, 0.096, 0.047, 0.047, 0.08, 0.049, 0.047, 0.048, 0.049, 0.038, 0.05, 0.056, 0.041, 0.064, 0.092, 0.04, 0.037, 0.105, 0.209, 0.047, 0.045, 0.063, 0.026, 0.055, 0.05, 0.08, 0.034, 0.039, 0.037, 0.04, 0.041, 0.051, 0.093, 0.04, 0.084, 0.073, 0.052, 0.087, 0.04, 0.079, 0.06, 0.084, 0.105, 0.044, 0.036, 0.03, 0.035, 0.087, 0.07, 0.052, 0.078, 0.034, 0.05, 0.055, 0.108, 0.045, 0.046, 0.053, 0.07, 0.043, 0.1, 0.068, 0.08, 0.042, 0.074, 0.044, 0.05, 0.082, 0.053, 0.056, 0.047, 0.044, 0.052, 0.031, 0.037, 0.044, 0.096, 0.039, 0.047, 0.032, 0.049, 0.084, 0.055, 0.061, 0.049, 0.09, 0.046, 0.205, 0.205, 0.059, 0.046, 0.05, 0.046, 0.083, 0.049, 0.027, 0.05, 0.047, 0.054, 0.056, 0.063, 0.044, 0.045, 0.03, 0.301, 0.034, 0.084, 0.04, 0.039, 0.049, 0.044, 0.052, 0.043, 0.057, 0.046, 0.075, 0.034, 0.04, 0.057, 0.085, 0.04, 0.026, 0.07, 0.02, 0.051, 0.043, 0.099, 0.066, 0.053, 0.24, 0.04, 0.09, 0.085, 0.043, 0.052, 0.07, 0.104, 0.042, 0.039, 0.092, 0.056, 0.047, 0.067, 0.039, 0.058, 0.091, 0.052, 0.052, 0.051, 0.062, 0.05, 0.046, 0.044, 0.049, 0.071, 0.073, 0.058, 0.29, 0.058, 0.044, 0.048, 0.04, 0.091, 0.041, 0.06, 0.04, 0.103, 0.081, 0.041, 0.07, 0.069, 0.046, 0.039, 0.054, 0.026, 0.048, 0.031, 0.05, 0.047, 0.029, 0.083, 0.111, 0.053, 0.056, 0.046, 0.081, 0.041, 0.047, 0.081, 0.05, 0.087, 0.042, 0.05, 0.08, 0.152, 0.098, 0.186, 0.031, 0.081, 0.05, 0.099, 0.048, 0.063, 0.084, 0.04, 0.114, 0.114, 0.048, 0.047, 0.08, 0.047, 0.048, 0.096, 0.046, 0.077, 0.042, 0.048, 0.08, 0.049, 0.052, 0.038, 0.077, 0.048, 0.073, 0.037, 0.054, 0.051, 0.052, 0.037, 0.079, 0.035, 0.074, 0.095, 0.046, 0.046, 0.046, 0.04, 0.07, 0.042, 0.049, 0.047], \"xaxis\": \"x\", \"y\": [0.7197707895473677, 0.05448058807241418, 0.5021256787650443, 0.4710854375480472, 0.7156076129280222, 0.7966690429773311, 0.7265425252145667, 0.16771266951545494, 0.610944103187451, 0.6324527530146118, 0.42180662537268765, 0.2598044700255929, 0.5503032830239416, 0.5632112185661304, 0.6840604465833231, 0.6224375641140001, 0.8071781895370533, 0.9515482366939344, 0.3994071349416132, 0.9677746238863042, 0.572587586261062, 0.7602674855798478, 0.861098734498427, 0.1386074727873, 0.6703360831713621, 0.8064003460928679, 0.3172728283240366, 0.8039094494444462, 0.9186426431335688, 0.6026275969807151, 0.8609701260317718, 0.3485833566260712, 0.3005246278528939, 0.2859113263741919, 0.4978204971029292, 0.5125675444128744, 0.4268860326359044, 0.11791793574572085, 0.440027850275134, 0.4938434408506086, 0.4933189622152446, 0.166194347192407, 0.30200278364192557, 0.6822425768461728, 0.8693180940701344, 0.24112389044610405, 0.43189370387303117, 0.284455178085937, 0.23793737479647703, 0.5535561322468214, 0.7900402576908969, 0.47373775892899717, 0.6055733033081183, 0.7462675017011632, 0.32245623572553406, 0.7612367841042231, 0.36308410170653527, 0.6103993963703384, 0.3965676277125745, 0.2230008284200371, 0.8480025164595866, 0.43585875500482685, 0.24095331994381775, 0.4030652094068704, 0.8951637220162157, 0.2782175630406618, 0.7337660836226194, 0.8352762102164887, 0.6223987562306759, 0.2928263700360406, 0.6563137004068428, 0.16155652477357085, 0.6364666355122575, 0.2186811050870735, 0.27206300237801306, 0.4358901152617537, 0.6136035252376228, 0.07900866299327158, 0.8522855318359817, 0.11906253414448076, 0.3466831105240652, 0.11265227152414181, 0.6302693732121377, 0.7168097665217413, 0.4796298258249143, 0.4476252306691143, 0.3612478268219491, 0.611861930499026, 0.15121036728507153, 0.5363393546692182, 0.16155652477357085, 0.441733396330222, 0.7834276811132227, 0.6364666355122575, 0.44873286860252337, 0.4948960601400133, 0.4172084246960842, 0.5055831714989107, 0.5269082808529498, 0.3737404408311804, 0.4491757516278906, 0.5266720849021, 0.2882430633103308, 0.6066213483726142, 0.83534933450756, 0.2509605867776752, 0.230738949997912, 0.25680675940048736, 0.6858999083789018, 0.27626495444752697, 0.35158671089680515, 0.311480105980391, 0.5950329577300569, 0.4196263877039489, 0.3672198477254309, 0.5488429300958864, 0.6273126624389191, 0.0990306898864649, 0.935036100419004, 0.5556828679884147, 0.6003916802566726, 0.1337843055401957, 0.6898191889393818, 0.46604488826349566, 0.6668872608045229, 0.5998672378660981, 0.14712454771937833, 0.8558065212045691, 0.883276495704891, 0.5544329747085402, 0.38398791005853006, 0.8623310715459079, 0.4482795971615686, 0.4767821080964978, 0.6451659669426603, 0.5099786295438409, 0.11454219273407718, 0.5691587732433696, 0.2398813672346335, 0.8592796956842923, 0.38133093816728936, 0.4754945767078651, 0.2673740541283356, 0.43092180164799054, 0.5981491184574936, 0.7512253043619477, 0.20474988026063612, 0.12337786436138054, 0.6965484670033051, 0.4642254518352117, 0.29034758521725457, 0.7912282271603185, 0.1364389858241727, 0.5326323768611896, 0.3938848007926149, 0.886984727126295, 0.5955398539691413, 0.3667393936023857, 0.35129461810907203, 0.578130474122496, 0.1952086434691429, 0.6982941690158907, 0.6159300986783536, 0.6650580695700093, 0.8007006003287879, 0.13750802167619447, 0.47121416359091395, 0.5691587732433696, 0.5295784007050042, 0.4938434408506086, 0.4240508430342457, 0.1531205555636086, 0.7965770364050346, 0.4829168465516456, 0.6333246955344933, 0.38682769986244625, 0.5589353890471914, 0.30965836575156913, 0.6133571507425741, 0.5363393546692182, 0.5474540697204298, 0.9680074395956593, 0.29703705077451537, 0.7566858385458134, 0.451244026180727, 0.6224939697452743, 0.9340693900855184, 0.1254375450851024, 0.770680513376406, 0.7273231109206828, 0.410671569380914, 0.19928392436820586, 0.44743622108127745, 0.4991477681643879, 0.5443787589855091, 0.826082779912576, 0.5642536294664222, 0.6762559922350657, 0.39283078357423706, 0.3074847569358159, 0.40732461839200396, 0.5614584986504241, 0.5614584986504241, 0.575628870274347, 0.1938881144566701, 0.6480440770440566, 0.23946299348505806, 0.6110142157087575, 0.32489046344192996, 0.127020290619695, 0.28948900574123104, 0.27970970921902805, 0.5179212029104148, 0.579807192000203, 0.5695619245525361, 0.7471497674522103, 0.6761943115269239, 0.6052803835931642, 0.9048996801452402, 0.632953623191418, 0.7849920634816455, 0.12946409768986655, 0.3899257470968539, 0.37735505673750047, 0.27206300237801306, 0.6356505945299911, 0.9000798247851504, 0.5852448485124296, 0.3537739535016634, 0.8589709040748648, 0.5105041430354158, 0.4760479563081992, 0.3915586115462193, 0.4344526143297297, 0.04825794875232026, 0.25106204840173363, 0.5352062615150248, 0.2084678736174792, 0.5588772074146924, 0.42656597432725707, 0.3395528272139201, 0.5154796814541086, 0.30312695461308037, 0.4684625037801391, 0.13140485141127656, 0.37575572516499556, 0.7087902803012941, 0.22740617784346517, 0.7932370230268412, 0.6977827466507267, 0.8687065743771458, 0.3532210556477622, 0.3005246278528939, 0.8817461779308045, 0.5897758288136841, 0.5117334773877459, 0.2267712913026929, 0.7462523759498982, 0.5055831714989107, 0.6276122794572256, 0.34766968675436505, 0.563322001169588, 0.4035281086421867, 0.44827723495654004, 0.7588644006503809, 0.17560197311170134, 0.2736156405730563, 0.5646478519097824, 0.12788772013874206, 0.8127608550985441, 0.35130933230290007, 0.8842329534318195, 0.5671758377024384, 0.508518787579709, 0.4735654621913231, 0.6614347321502836, 0.7032589073748752, 0.418601168771625, 0.40262233345395115, 0.38045938978299354, 0.6221728234115828, 0.6769388667590319, 0.825791915264051, 0.8036522945246104, 0.5350776523934957, 0.5038683203672731, 0.4187790963850706, 0.3942708224564714, 0.36585282612655, 0.42973128126448334, 0.1395024853671747, 0.36909778672938764, 0.5126700875045708, 0.31128511290513083, 0.5841805470690385, 0.42932394036482613, 0.5168725346003686, 0.9331527243268325, 0.5090935678835011, 0.848083892739094, 0.7288594688776423, 0.23463814542978878, 0.9073343486287574, 0.5445649372592127, 0.8030108083542629, 0.30698149193503155, 0.47724620771884374, 0.49565431290071005, 0.29179072192325783, 0.53941953634433, 0.32642767658125227, 0.5714063949384225, 0.6769388667590319, 0.48314991346809855, 0.3838692085325581, 0.7654355578102645, 0.6807995217458978, 0.7803105409218809, 0.4971816769068883, 0.5662837862370104, 0.32557907866588853, 0.4059739580227363, 0.8621668957327787, 0.4863555612469991, 0.44913520001249685, 0.5044088987161788, 0.018560580499064172, 0.17397747102053363, 0.8203404366189, 0.531551035274026, 0.3951880410340851, 0.6710839680909022, 0.7545393605546251, 0.25029771644034415, 0.31651464458218903, 0.7900402576908969, 0.7649542174153934, 0.6282404390050247, 0.5124469561170844, 0.7501741577575001, 0.3717170374651112, 0.5479204837841629, 0.1799627586960565, 0.8716748635647116, 0.4700369344869263, 0.7044722268129955, 0.7597806244765397, 0.4570971226262448, 0.3688130253756654, 0.5854022956087224, 0.6067015953642416, 0.6092966434658947, 0.5713009051869427, 0.15316343939585397, 0.31191498773739224], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [0.037, 0.054, 0.051, 0.039, 0.046, 0.086, 0.033, 0.032, 0.032, 0.071, 0.037, 0.069, 0.044, 0.049, 0.053, 0.061, 0.036, 0.1, 0.033, 0.035, 0.038, 0.034, 0.051, 0.034, 0.039, 0.048, 0.029, 0.033, 0.05, 0.029, 0.063, 0.062, 0.032, 0.045, 0.029, 0.05, 0.038, 0.03, 0.032, 0.02, 0.033, 0.05, 0.046, 0.035, 0.043, 0.058, 0.08, 0.029, 0.074, 0.033, 0.058, 0.044, 0.039, 0.042, 0.037, 0.076, 0.03, 0.02, 0.04, 0.034, 0.064, 0.035, 0.044, 0.042, 0.088, 0.085, 0.012, 0.047, 0.069, 0.02, 0.039, 0.032, 0.047, 0.05, 0.061, 0.05, 0.078, 0.034, 0.073, 0.038, 0.047, 0.032, 0.033, 0.035, 0.034, 0.035, 0.044, 0.086, 0.04, 0.084, 0.037, 0.035, 0.04, 0.044, 0.046, 0.031, 0.035, 0.035, 0.04, 0.046, 0.042, 0.05, 0.091, 0.05, 0.037, 0.048, 0.053, 0.048, 0.036, 0.064, 0.05, 0.053, 0.024, 0.054, 0.043, 0.021, 0.042, 0.052, 0.04, 0.074, 0.062, 0.052, 0.043, 0.053, 0.078, 0.084, 0.074, 0.045, 0.031, 0.084, 0.034, 0.036, 0.042, 0.08, 0.062, 0.035, 0.092, 0.062, 0.038, 0.092, 0.049, 0.041, 0.046, 0.04, 0.084, 0.044, 0.036, 0.031, 0.077, 0.051, 0.051, 0.073, 0.036, 0.046, 0.051, 0.038, 0.043, 0.042, 0.027, 0.039, 0.036, 0.083, 0.044, 0.077, 0.033, 0.043, 0.041, 0.035, 0.036, 0.036, 0.071, 0.082, 0.039, 0.033, 0.087, 0.044, 0.076, 0.05, 0.037, 0.08, 0.046, 0.044, 0.054, 0.031, 0.045, 0.047, 0.037, 0.068, 0.04, 0.044, 0.026, 0.087, 0.032, 0.036, 0.082, 0.028, 0.06, 0.048, 0.019, 0.026, 0.056, 0.034, 0.041, 0.072, 0.043, 0.057, 0.062, 0.042, 0.057, 0.053, 0.057, 0.024, 0.04, 0.035, 0.031, 0.045, 0.029, 0.038, 0.029, 0.095, 0.039, 0.042, 0.044, 0.032, 0.074, 0.025, 0.067, 0.047, 0.047, 0.046, 0.041, 0.049, 0.072, 0.042, 0.051, 0.037, 0.034, 0.046, 0.028, 0.036, 0.024, 0.058, 0.154, 0.048, 0.114, 0.047, 0.043, 0.064, 0.039, 0.029, 0.044, 0.053, 0.171, 0.075, 0.081, 0.047, 0.046, 0.184, 0.038, 0.062, 0.05, 0.063, 0.041, 0.047, 0.036, 0.032, 0.028, 0.08, 0.063, 0.038, 0.042, 0.045, 0.041, 0.039, 0.021, 0.06, 0.039, 0.068, 0.087, 0.194, 0.042, 0.037, 0.028, 0.026, 0.024, 0.084, 0.051, 0.054, 0.114, 0.048, 0.038, 0.029, 0.093, 0.037, 0.048, 0.056, 0.074, 0.041, 0.046, 0.04, 0.069, 0.044, 0.039, 0.049, 0.033, 0.074, 0.034, 0.104, 0.038, 0.145, 0.073, 0.05, 0.056, 0.038, 0.043, 0.082, 0.049, 0.033, 0.042, 0.029, 0.014, 0.144, 0.035, 0.03, 0.034, 0.066, 0.042, 0.1, 0.055, 0.058, 0.026, 0.045, 0.071, 0.056, 0.035, 0.043, 0.03, 0.068, 0.039, 0.047, 0.051, 0.022, 0.035, 0.041, 0.058, 0.04, 0.048, 0.065, 0.02, 0.05, 0.046, 0.048, 0.039, 0.033, 0.047, 0.037, 0.081, 0.037, 0.104, 0.03, 0.053, 0.049, 0.067, 0.066, 0.08, 0.048, 0.048, 0.041, 0.079, 0.046, 0.043, 0.043, 0.041, 0.042, 0.032, 0.027, 0.033, 0.095, 0.057, 0.08, 0.071, 0.024, 0.096, 0.052, 0.045, 0.031, 0.214, 0.048, 0.041, 0.026, 0.032, 0.047, 0.034, 0.035, 0.045, 0.067, 0.052, 0.031, 0.032, 0.066, 0.068, 0.079, 0.044, 0.043, 0.028, 0.041, 0.031, 0.033, 0.063, 0.045, 0.039, 0.041, 0.052, 0.034, 0.046, 0.045, 0.034, 0.04, 0.054, 0.06, 0.05, 0.029, 0.047, 0.051, 0.055, 0.031, 0.057, 0.064, 0.036, 0.042, 0.033, 0.027, 0.03, 0.026, 0.052, 0.024, 0.075, 0.103, 0.035, 0.094, 0.038, 0.047, 0.028, 0.029, 0.042, 0.052, 0.045, 0.06, 0.066, 0.037, 0.035, 0.036, 0.026, 0.036, 0.045, 0.066, 0.036, 0.079, 0.047, 0.035, 0.066, 0.078, 0.07, 0.045, 0.034, 0.072, 0.036, 0.026, 0.05, 0.052, 0.079, 0.058, 0.051, 0.044, 0.026, 0.038, 0.036, 0.048, 0.056, 0.045, 0.095, 0.054, 0.047, 0.039, 0.061, 0.036, 0.031, 0.051, 0.029, 0.063, 0.048, 0.076, 0.058, 0.039, 0.059, 0.041, 0.057, 0.043, 0.044, 0.042, 0.049, 0.036, 0.031, 0.058, 0.027, 0.048, 0.027, 0.034, 0.027, 0.055, 0.039, 0.025, 0.053, 0.042, 0.034, 0.024, 0.033, 0.048, 0.028, 0.034, 0.054, 0.033, 0.028, 0.036, 0.097, 0.019, 0.039, 0.054, 0.045, 0.036, 0.087, 0.098, 0.044, 0.043, 0.037, 0.087, 0.047, 0.041, 0.054, 0.039, 0.048, 0.041, 0.04, 0.051, 0.029, 0.033, 0.104, 0.053, 0.042, 0.051, 0.022, 0.031, 0.044, 0.049, 0.034, 0.078, 0.045, 0.089, 0.056, 0.036, 0.18, 0.035, 0.031, 0.048, 0.044, 0.037, 0.038, 0.043, 0.034, 0.045, 0.039, 0.047, 0.028, 0.019, 0.039, 0.022, 0.05, 0.025, 0.072, 0.046, 0.032, 0.03, 0.034, 0.064, 0.045, 0.076, 0.036, 0.041, 0.041, 0.032, 0.11, 0.031, 0.047, 0.041, 0.039, 0.036, 0.038, 0.065, 0.037, 0.054, 0.055, 0.046, 0.047, 0.041, 0.08, 0.046, 0.037, 0.064, 0.031, 0.057, 0.041, 0.092, 0.04, 0.084, 0.039, 0.06, 0.04, 0.047, 0.062, 0.148, 0.045, 0.035, 0.062, 0.119, 0.031, 0.051, 0.04, 0.028, 0.046, 0.031, 0.119, 0.044, 0.045, 0.053, 0.031, 0.033, 0.063, 0.046, 0.043, 0.083, 0.023, 0.107, 0.039, 0.038, 0.036], \"xaxis\": \"x\", \"y\": [0.18439386755371057, 0.5750868907731637, 0.1132172353536568, 0.19850047615697952, 0.6950004168934912, 0.41826441672946313, 0.040828937665112974, 0.2145583871630251, 0.09143093017991866, 0.10013996234885614, 0.3658834999306372, 0.587897812361327, 0.23563705889496211, 0.5289998061994394, 0.5981734696485812, 0.5956194363709464, 0.11295199838815062, 0.6349332021584286, 0.09356782907078887, 0.0672754654033908, 0.3541579814831264, 0.11781588709523827, 0.3295981493457443, 0.23443288181779365, 0.13830133810679424, 0.5122546205578999, 0.03626449638205209, 0.32057959349203036, 0.3955164844050859, 0.21320459763992916, 0.08620177311633537, 0.4132497936565127, 0.19514157099220286, 0.028148892894647393, 0.03728071159582558, 0.20213762816504022, 0.39088790332760825, 0.10566618212719892, 0.11466232649727714, 0.09544364959788487, 0.07351553674018241, 0.3657542344632553, 0.05859665738698361, 0.43634835962676355, 0.4827032077898804, 0.516310366273556, 0.6480037931050455, 0.21122004543372697, 0.030344760075157406, 0.22750344576024595, 0.18673438423788624, 0.5460909738859347, 0.0666291073587214, 0.320234954276134, 0.515425573770442, 0.5751179393061847, 0.3262180383913996, 0.12192585741802231, 0.6165939755266235, 0.09365914315081003, 0.44259853952477324, 0.31958523161407537, 0.09228899111547839, 0.22815273642701062, 0.5282447951108347, 0.7777719169155834, 0.13834506443323813, 0.29425092810710396, 0.5300870647699181, 0.031947521718024174, 0.1108646816717751, 0.053339747820140615, 0.14466174791529418, 0.25697560969337485, 0.3383868137798065, 0.30803904997837983, 0.03434255320493995, 0.08689109251212201, 0.46044782253877736, 0.0973761441498977, 0.3449058470623745, 0.024212367984770777, 0.11665042079727428, 0.3333970234137619, 0.1495417879159372, 0.0679784404121434, 0.2360052425084116, 0.39147703437781534, 0.04428683932015287, 0.5381556738404795, 0.4357341587922019, 0.11843845992675284, 0.28107964630818494, 0.06989794698232743, 0.2658605825653322, 0.22408104406272966, 0.15519213452661884, 0.09873339188795927, 0.10739713799337769, 0.4712507279726723, 0.31257930793611366, 0.6259141532505736, 0.1651629894813923, 0.13024327386797574, 0.08242409751896962, 0.55355901104019, 0.11256152515999429, 0.22124325125588817, 0.05838775174278421, 0.6734770756819889, 0.06919042490492266, 0.5773286546676725, 0.5693181878572973, 0.12726917141891614, 0.27983888222674136, 0.15690954109554833, 0.18593824584442387, 0.05432525584274117, 0.33273366741371935, 0.12435295831370408, 0.48112847828662497, 0.2959384652215836, 0.5042039768350125, 0.3749869638443927, 0.7258627386781167, 0.4806866421912115, 0.6234335830956541, 0.4191951896523489, 0.20821728825178332, 0.6343085651912675, 0.27674577061671146, 0.02140654255666985, 0.42849246998341506, 0.1817444030106703, 0.4551538855951942, 0.05087080041524106, 0.516641204200833, 0.6810720245435042, 0.08151744899857294, 0.4475169494323581, 0.03995706953508171, 0.2181819033834006, 0.20372897255157485, 0.24305701296248816, 0.5381556738404795, 0.2358485729609252, 0.051323642447754336, 0.1913631294907303, 0.32154631204965056, 0.31229802093755377, 0.3917329141436472, 0.39462053822053156, 0.3680669306910641, 0.5017894292511481, 0.32120711190509066, 0.0768019282386515, 0.1168769044932052, 0.31545143431826594, 0.12007957373947853, 0.08354361700756141, 0.2180731800932174, 0.7653011157176768, 0.05076221583963347, 0.11739077279846111, 0.3639458403519926, 0.4815918747301601, 0.35998732468747585, 0.457353694020342, 0.5520498791697908, 0.22168281241722143, 0.2132287846887433, 0.4763394582576197, 0.3040153802820409, 0.20749766415549342, 0.3316810644107503, 0.8126297477835096, 0.5749367295182395, 0.27274039590582944, 0.2685808245693546, 0.5172108675362206, 0.33506587713796443, 0.09616672688355288, 0.041108213935392324, 0.10548050716105373, 0.5016695616404938, 0.20022874051447226, 0.14220640128276774, 0.23772630779738468, 0.19606080251004787, 0.2603188495268066, 0.18846597668723208, 0.19827111133563302, 0.261548791893628, 0.4140325207077993, 0.8134796325151183, 0.12265695643958285, 0.6311167068993262, 0.13481820177301163, 0.0932384579037443, 0.14050160114126486, 0.2562249115981724, 0.08547750670655718, 0.08643201081848362, 0.19981675431015722, 0.31390222338706264, 0.06221739913672386, 0.06996303880871468, 0.30029370289300306, 0.4306817897420764, 0.6595343859760441, 0.2839408857911616, 0.20468539219890003, 0.1130196126722065, 0.2360017176902124, 0.13187147729288817, 0.42313120297864704, 0.06964897436687001, 0.1624399718171824, 0.17200815643270417, 0.07333105637055992, 0.2440137653363641, 0.4900110333069776, 0.3085554157386313, 0.03480496731142946, 0.12148031785507996, 0.15002971926037112, 0.5314247042003052, 0.2758453007685677, 0.2151852748992088, 0.2658605825653322, 0.29911225563077193, 0.6594110243744711, 0.49869782335001445, 0.16788254706683048, 0.11816213334465087, 0.08230909248122409, 0.13653212507346946, 0.25639170942272826, 0.06562233405876228, 0.23311900627036541, 0.3756616197417655, 0.46674395287949066, 0.3092684534350997, 0.8337319641197457, 0.8331457111467163, 0.2591056156836542, 0.4778687671024334, 0.2542440524586721, 0.5361036306539362, 0.07073721340803463, 0.4731688813159418, 0.5755848065786346, 0.356689463387698, 0.14225616860197343, 0.21837916002376445, 0.14466174791529418, 0.29899643271856946, 0.4757427727983842, 0.08126799884203029, 0.1296501822378736, 0.3286954654423938, 0.08620177311633537, 0.13855855420831553, 0.05543377339452393, 0.11917834098009661, 0.2613621884509647, 0.11269900223777074, 0.08429051026621415, 0.3393961441870107, 0.07031960314855146, 0.11356777592095357, 0.4853279864284006, 0.1279289285514792, 0.0584572339054259, 0.08612988585012649, 0.3472440907423937, 0.1248029959061332, 0.07502335399434323, 0.19827111133563302, 0.3424151534036639, 0.3065175956815872, 0.13808860398564737, 0.058092197534895806, 0.04082786106581715, 0.1602592849246841, 0.09156161599234125, 0.5036030690663805, 0.2640411824475748, 0.6468038092930676, 0.07201805208597656, 0.22470230804277058, 0.1334773721572423, 0.04847889440667685, 0.2685808245693546, 0.10911308148570098, 0.6764508967260475, 0.6280060594576413, 0.36761958218269275, 0.16019930342079847, 0.17605308658107655, 0.14078981831089854, 0.2384997092801764, 0.13117402490907393, 0.12818959986091483, 0.4161925244315118, 0.12435295831370408, 0.09814942480303201, 0.05480698563416486, 0.3746187330143109, 0.41092354232892336, 0.507894749900129, 0.5137929421583434, 0.08293523366016065, 0.2964416548030494, 0.15236141109070434, 0.4396941021426354, 0.41893931094950754, 0.09113953260801844, 0.10967473999240707, 0.055732078845942, 0.05640314085190745, 0.06176263301115803, 0.06427139521062619, 0.20386133178572885, 0.21597661143113533, 0.7486409492386699, 0.2610715902497083, 0.09465277491899493, 0.5556171757583562, 0.137718889647652, 0.1978940751503777, 0.08472590699531857, 0.356262641598029, 0.14596950445002987, 0.13865818299932142, 0.3088915816821678, 0.11516321289421916, 0.16121169033174265, 0.40573483691789825, 0.34308606282264, 0.36300204724896845, 0.17193414756867276, 0.035926383178341514, 0.34536882843285344, 0.4400180463892147, 0.5165194668234709, 0.23319834124303085, 0.9637923675569924, 0.2635599134550337, 0.6259141532505736, 0.12324962258280003, 0.1256037712827487, 0.1248029959061332, 0.11665042079727428, 0.29081136443782263, 0.12993062945549005, 0.20959981847797426, 0.12385816607190492, 0.16931651488884025, 0.2468284110987674, 0.6181879252747016, 0.3509541008179864, 0.08619429866610873, 0.09537770951135394, 0.8204393830764495, 0.2493836920976743, 0.10367142046182065, 0.11516383353466464, 0.07169627826225977, 0.5400384130096556, 0.2709141565803237, 0.16809050322974173, 0.3421981324687273, 0.812724325423183, 0.1326589750154965, 0.054670132935181304, 0.055346153509382656, 0.8039442695404772, 0.3276168958360183, 0.6561718697940482, 0.6214102617950452, 0.3046829516703813, 0.7853649284745584, 0.7303620793003476, 0.6719087507962026, 0.16000678121984613, 0.579612101366232, 0.6347749924714103, 0.41894393066564606, 0.06936532322770372, 0.28322834609079706, 0.343263893078516, 0.4450860003239352, 0.3090838478611311, 0.408095736797927, 0.11529682880263803, 0.13359771811640497, 0.2417229185475579, 0.10092265889692065, 0.8181934133883563, 0.3777834313813965, 0.8273808576462511, 0.18439353202429143, 0.5148786056082297, 0.11287077888712382, 0.16015059460472458, 0.29672938182784603, 0.36944561074938853, 0.2505850522824452, 0.8467591712977676, 0.3840267097226593, 0.261779448872241, 0.1645479955558209, 0.14631295673285594, 0.4248523287309329, 0.09222807982804315, 0.2121484308544801, 0.33273366741371935, 0.5470626312455473, 0.8294144697045585, 0.25206662215500397, 0.15998368749433245, 0.548322128117227, 0.3917329141436472, 0.15981565308588508, 0.23631147082452741, 0.21082920466209698, 0.1871387197916503, 0.24774693401855818, 0.1913242313933492, 0.16437448769677154, 0.07582203648947516, 0.032541140295091364, 0.06311143057978008, 0.5009235508757715, 0.12343879567504301, 0.445735807756371, 0.40322837553658053, 0.09397553936597514, 0.1598391281143201, 0.26702494168661406, 0.19782301216908982, 0.06831823449824892, 0.5451167746582685, 0.20142160156100697, 0.25747632252511843, 0.4257317671215596, 0.5062318064185062, 0.10278357133077332, 0.10857266292312517, 0.06223864817381186, 0.11377411494697365, 0.14082424186384768, 0.2589321903149734, 0.31776639873426016, 0.07983414941561229, 0.30174211068680845, 0.42532907678292176, 0.23734670470511587, 0.2862296469110084, 0.24790288035387664, 0.5526146374040077, 0.20425399436950087, 0.5166825128498294, 0.12415322942140417, 0.5310696157212036, 0.3866387435262121, 0.14313186082947948, 0.31648660326859934, 0.026792916001305622, 0.7856428374245099, 0.42383310375799566, 0.5944566396871084, 0.6256605001243821, 0.08813642250468567, 0.03544811528140901, 0.06935406654889886, 0.15751976448865512, 0.22608551288474832, 0.3127311228465576, 0.1409438166611655, 0.3285615524533705, 0.3591330499592894, 0.47964497307801546, 0.7143146030302826, 0.14223944449319303, 0.06929054967731618, 0.32120711190509066, 0.16913647442041335, 0.707286257884667, 0.3230684446475647, 0.7616845263358343, 0.4104900542879092, 0.10053249234255524, 0.1106599594415556, 0.1543174595222413, 0.46003879185641183, 0.3811350878514418, 0.07185070571861518, 0.23882593985771994, 0.5344976262521839, 0.11031385635331636, 0.09610989844306939, 0.4955559099445003, 0.07845190603324759, 0.30697262074812925, 0.12767551958037127, 0.4375661224395835, 0.07737023387634634, 0.15307682457740834, 0.05694427046787409, 0.09028836937410878, 0.4011292297732457, 0.6186146927451245, 0.11561676905211238, 0.0993047499370594, 0.08102401279833105, 0.8100206966555492, 0.10768932514586738, 0.15386113005635593, 0.4026560765644126, 0.045535707525545144, 0.08229583319403, 0.08227601457953415, 0.8241544781987433, 0.0759900855540333, 0.5147505197509459, 0.11103147778198663, 0.42144961755966015, 0.24880465403270857, 0.3112403223054312, 0.3282460941643247, 0.28312386083977936, 0.2865521931047814, 0.16537364909659502, 0.4284132019637321, 0.34116073112729894, 0.051142721309942685, 0.10794707492381372, 0.1108646816717751, 0.29201805921023904, 0.07365131996157204, 0.36851051207096197, 0.2556143611338999, 0.07392456180697715, 0.045535707525545144, 0.15025986810093994, 0.4395989822566938, 0.19636656988846957, 0.21018464628148859, 0.15085686628779282, 0.3429118439192298, 0.16104008564300487, 0.2055862423584408, 0.18673310211333727, 0.5528531989583015, 0.20219789553586287, 0.5807830339134155, 0.6112381610839525, 0.07515362639458067, 0.5722084734915175, 0.3654892991508686, 0.1991057466826236, 0.4912569401667811, 0.05850610073101081, 0.3077884117234785, 0.17038242498240874, 0.14066607718466684, 0.10248584652416493, 0.4022873718442217, 0.07205214632436985, 0.35142291824287475, 0.10941760034103376, 0.06679271580157364, 0.05675388891699207, 0.058987921856350156, 0.3660303223369904, 0.28790374422385034, 0.4158290962648631, 0.40710291595796666, 0.09934102670994882, 0.06362846635195196, 0.30921476208988685, 0.23242198019285765, 0.055541210656895434, 0.5297663836663529, 0.10744632778983743, 0.18410212910939194, 0.17721960751489196, 0.1962664672709783, 0.1617648996714035, 0.10584426414108294, 0.5203501665477333, 0.07365131996157204, 0.31578819840495265, 0.35364190165315845, 0.1707951928721818, 0.41655733121321636, 0.15801546378512366, 0.7568436608419439, 0.22368578646300386, 0.0609449253562836, 0.2225096762928218, 0.18587673368692093, 0.05559101133196209, 0.569598540521716, 0.08073228430722412, 0.15724041301590164, 0.12879141548479, 0.4306817897420764, 0.17998791969802397, 0.41280880088413996, 0.5723062335690389, 0.6457404130724687, 0.10420061808672998, 0.12564769853034463, 0.21795029564941848, 0.4720930498870375, 0.11304202998506685, 0.545112257205237, 0.14852188644910969, 0.17217029085021085, 0.336250902618187, 0.48671482860553816, 0.5093433434984792, 0.35847801144896685, 0.3008706318705062, 0.18494609259573758, 0.4199330463236065, 0.04162287990776414, 0.2633909944023186, 0.4252182303976608, 0.4684623303117058, 0.1925553058603695, 0.09610989844306939, 0.09129843496680234, 0.3302708189676917, 0.4199330463236065, 0.11927294568859859, 0.4864154015695107, 0.06472081497616611, 0.6387929002666255, 0.37932906694235924, 0.093713747684541, 0.20627971812824875], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (curr)\", \"type\": \"scatter\", \"x\": [0.088, 0.06, 0.036, 0.04, 0.043, 0.048, 0.032, 0.078, 0.078, 0.063, 0.054, 0.036, 0.039, 0.048, 0.054, 0.046, 0.052, 0.098, 0.032, 0.03, 0.036, 0.036, 0.035, 0.065, 0.04, 0.035, 0.083, 0.054, 0.028, 0.044, 0.04, 0.077, 0.081, 0.072, 0.054, 0.045, 0.078, 0.079, 0.055, 0.066, 0.026, 0.073, 0.069, 0.047, 0.048, 0.048, 0.076, 0.118, 0.051, 0.025, 0.046, 0.084, 0.034, 0.094, 0.084, 0.077, 0.074, 0.095, 0.04, 0.043, 0.095, 0.037, 0.048, 0.098, 0.098, 0.06, 0.414, 0.076, 0.102, 0.072, 0.115, 0.046, 0.036, 0.088, 0.031, 0.04, 0.052, 0.029, 0.044, 0.074, 0.062, 0.078, 0.045, 0.084, 0.04, 0.028, 0.037, 0.044, 0.041, 0.071, 0.05, 0.043, 0.091, 0.045, 0.08, 0.137, 0.035, 0.17, 0.062, 0.04, 0.092, 0.027, 0.046, 0.073, 0.047, 0.062, 0.146, 0.057, 0.051, 0.045, 0.069, 0.059, 0.078, 0.053, 0.038, 0.029, 0.051, 0.158, 0.05, 0.105, 0.044, 0.028, 0.051, 0.082, 0.076, 0.088, 0.036, 0.034, 0.076, 0.047, 0.016, 0.054, 0.045, 0.036, 0.082, 0.047, 0.053, 0.077, 0.086, 0.041, 0.036, 0.04, 0.031, 0.036, 0.071, 0.049, 0.057, 0.066, 0.079, 0.057, 0.034, 0.048, 0.07, 0.045, 0.076, 0.057, 0.035, 0.046, 0.052, 0.211, 0.089, 0.063, 0.039, 0.038, 0.086, 0.031, 0.036, 0.036, 0.046, 0.052, 0.058, 0.062, 0.049, 0.042, 0.073, 0.033, 0.048, 0.044, 0.047, 0.042, 0.033, 0.041, 0.098, 0.048, 0.06, 0.032, 0.212, 0.034, 0.046, 0.053, 0.078, 0.05, 0.038, 0.039, 0.041, 0.08, 0.051, 0.043, 0.051, 0.094, 0.05, 0.051, 0.06, 0.052, 0.023, 0.045, 0.046, 0.077, 0.042, 0.041, 0.052, 0.053, 0.064, 0.046, 0.048, 0.017, 0.063, 0.036, 0.174, 0.046, 0.043, 0.053, 0.046, 0.045, 0.055, 0.037, 0.088, 0.059, 0.042, 0.068, 0.066, 0.043, 0.05, 0.037, 0.09, 0.056, 0.038, 0.039, 0.045, 0.045, 0.096, 0.094, 0.057, 0.054, 0.041, 0.041, 0.06, 0.045, 0.042, 0.048, 0.08, 0.065, 0.029, 0.045, 0.142, 0.038, 0.054, 0.061, 0.105, 0.099, 0.114, 0.044, 0.046, 0.046, 0.053, 0.053, 0.044, 0.044, 0.036, 0.055, 0.053, 0.092, 0.037, 0.057, 0.044, 0.042, 0.049, 0.082, 0.089, 0.071, 0.081, 0.044, 0.023, 0.044, 0.176, 0.032, 0.045, 0.053, 0.052, 0.081, 0.056, 0.044, 0.055, 0.077, 0.05, 0.064, 0.032, 0.046, 0.057, 0.095, 0.028, 0.093, 0.046, 0.043, 0.056, 0.03, 0.09, 0.05, 0.059, 0.054, 0.079, 0.084, 0.046, 0.046, 0.059, 0.05, 0.073, 0.052, 0.042, 0.042, 0.085, 0.066, 0.059, 0.043, 0.088, 0.053, 0.066, 0.075, 0.038, 0.036, 0.079, 0.051, 0.036, 0.033, 0.071, 0.036, 0.037, 0.058, 0.05, 0.043, 0.046, 0.078, 0.076, 0.08, 0.2, 0.036, 0.05, 0.088, 0.05, 0.036, 0.053, 0.031], \"xaxis\": \"x2\", \"y\": [0.18579927887031134, 0.9274202256360236, 0.2569067617886446, 0.17851375722123963, 0.43011516789686843, 0.3951880410340851, 0.35333307802371594, 0.854899199395705, 0.7749695319329993, 0.7150752736216004, 0.5793836726576811, 0.17187478758168062, 0.503776006633781, 0.6517104478925241, 0.5321166645488455, 0.4291031613352281, 0.6295132227815239, 0.446367751604861, 0.12978626497489776, 0.578130474122496, 0.1303225049324246, 0.4589423036505589, 0.6028673022099313, 0.6724998803801079, 0.055171077290688375, 0.28900585249094113, 0.5807441942986169, 0.6324527530146118, 0.32780881811994433, 0.4437792729685527, 0.47375733914823626, 0.6755390392614542, 0.8494338455743565, 0.8432302027568838, 0.3962269303969661, 0.36574887203466033, 0.9780529644634413, 0.6757083557066426, 0.43212531492562845, 0.6428319532862445, 0.2244465690609686, 0.6759712108962084, 0.300575337785698, 0.4848467547623382, 0.24353241802821812, 0.6165640897352094, 0.801889943514816, 0.6831580296641933, 0.4684052737322374, 0.07309555507266852, 0.17397747102053363, 0.548208100621717, 0.16948307959681597, 0.5287139706981401, 0.8097217619362252, 0.48186532860504816, 0.7044722268129955, 0.5458559966555334, 0.6067015953642416, 0.5767206748937392, 0.5416109283549078, 0.7766135747357961, 0.6371580804073698, 0.3290646799011723, 0.53941953634433, 0.7444876216695655, 0.27658524567301757, 0.8518717737266248, 0.685064206005921, 0.7994946846943811, 0.6254668451144636, 0.29898447003196504, 0.36566585814722175, 0.8260679099411251, 0.265003746926769, 0.18277705216857454, 0.6401445853260315, 0.2878944788643705, 0.7379395090268356, 0.6578861964269485, 0.3048731186933995, 0.6479177870210828, 0.5479007895539181, 0.8109237991420157, 0.4555798348891207, 0.35159410271621183, 0.6741813074403022, 0.40366163192193316, 0.3797333752177462, 0.42326140605337403, 0.49450075158901585, 0.7027754368270075, 0.31556666432085356, 0.5737052492708005, 0.5594846166878963, 0.9879213229528466, 0.23907110553933086, 0.7604887601700165, 0.906894853259191, 0.49150798334893764, 0.6693239074263375, 0.635181004157038, 0.4291031613352281, 0.6805197940362542, 0.8579270215873258, 0.42231028799440284, 0.7973836574204367, 0.6209099995125147, 0.617932351579841, 0.5867531689564582, 0.8217385626893267, 0.5766058512754557, 0.6085190813519714, 0.6488649586424557, 0.19466062481522506, 0.4062994677131635, 0.31500574198466447, 0.6106996692323751, 0.48314991346809855, 0.4300926711133176, 0.4623912750166579, 0.18141675383529432, 0.7404949196358439, 0.7960551628311661, 0.6696955469146251, 0.7471897031921468, 0.15222801432328747, 0.4782875749995391, 0.6696955469146251, 0.4617114467660769, 0.0374236133971757, 0.34638250956587036, 0.5737052492708005, 0.35412183815676124, 0.5342599897609015, 0.6273126624389191, 0.1819914526651868, 0.6450640502472667, 0.7576359910572065, 0.6363669366758954, 0.35783776888428775, 0.4555798348891207, 0.2603691587203709, 0.09638465351539516, 0.7889843001267657, 0.3995975535535492, 0.2404138117262561, 0.5134503976671381, 0.7620160241108803, 0.4852174766770502, 0.7934067722809752, 0.5657371707019572, 0.40591517497640706, 0.5142806824729376, 0.4667389755277017, 0.4597803030361328, 0.14211531046105408, 0.4709774325404933, 0.39253304933110444, 0.8152160844894966, 0.6418608562675732, 0.5695619245525361, 0.15898796250578873, 0.4189913516486339, 0.8097376625536354, 0.2776505479619531, 0.14100712613869515, 0.1625374057836978, 0.21879614767173305, 0.26016804821119, 0.5884346274074399, 0.25171266030158634, 0.5556828679884147, 0.2886326125606653, 0.5013044750460076, 0.23728971353361283, 0.6280660923097139, 0.6281218947904323, 0.6226708394296439, 0.1280348372312241, 0.37812375401711507, 0.6218606462016874, 0.446367751604861, 0.5237591509200082, 0.22560064672115399, 0.4159575064805634, 0.43989745285902637, 0.38133093816728936, 0.379388299643832, 0.4244201113870294, 0.8495234946343055, 0.44699506619782237, 0.3402560380560977, 0.16997778820688525, 0.6509841470756508, 0.5589353890471914, 0.49320900326902484, 0.41485179365651337, 0.2850172536812061, 0.5150740024049856, 0.7905789411902706, 0.6660097546858721, 0.5916856454756931, 0.25029771644034415, 0.21820707607863943, 0.23625780462752244, 0.6174344585079109, 0.33885175059010386, 0.8097775874289167, 0.5502791542248897, 0.45232673966787307, 0.5168725346003686, 0.4922951659433321, 0.2710495410551712, 0.5620189509382074, 0.19827785442852286, 0.35653263682836045, 0.4940220265254579, 0.3934632807735441, 0.349631294967786, 0.6543252873397565, 0.6043841099981286, 0.6572212454398962, 0.5323595728841377, 0.4667716613599331, 0.5480891857555714, 0.5933716837007499, 0.5769442381274095, 0.7796710482718338, 0.4721284230669528, 0.5632051337005155, 0.25606657060722404, 0.47304849589761655, 0.4991199345133047, 0.785831825438318, 0.5512091114854263, 0.31651464458218903, 0.192246895102814, 0.5737052492708005, 0.14970485751781393, 0.8257882443178004, 0.7450862811651306, 0.2404138117262561, 0.3428275867057816, 0.2186811050870735, 0.43730933466596944, 0.1325711740116582, 0.33994853494016564, 0.5172250338280965, 0.4543852880840521, 0.6017244994332274, 0.7267617626256621, 0.304103470637073, 0.49511795227452726, 0.4577650902534979, 0.4389063253281036, 0.3428275867057816, 0.6911248892501751, 0.5457123873353599, 0.3395528272139201, 0.5662837862370104, 0.38281068028313525, 0.1899488449656659, 0.1899488449656659, 0.39416742153886597, 0.4473524415330049, 0.5724944828663213, 0.12652799787397961, 0.14917046216496987, 0.4192276293132746, 0.1727250451072272, 0.7329347521090118, 0.2979855805324535, 0.5384433083808008, 0.2944152049751758, 0.5661013076544325, 0.39283078357423706, 0.6503174362647687, 0.7632350838020857, 0.29422440231251745, 0.8446099855685041, 0.3812461384129847, 0.1264117171095669, 0.6995051325026098, 0.7680829457938805, 0.1086082602083136, 0.50228427853815, 0.8303888649041977, 0.15145052047802054, 0.5239967242043768, 0.49461569007297057, 0.7323984730128237, 0.6372335578763709, 0.8485373319296128, 0.21018203617182263, 0.3854703692354019, 0.6209619763202376, 0.6996467359659702, 0.3913887983225227, 0.600932061108284, 0.18141675383529432, 0.32841971343371723, 0.17397747102053363, 0.3943097935149382, 0.5998672378660981, 0.6052803835931642, 0.35501406908939237, 0.4362847089434372, 0.6005057903956104, 0.45095984485898877, 0.5601124581139871, 0.6908342266509375, 0.29066967723125237, 0.5437491575180791, 0.5955595524057149, 0.4226516353037165, 0.552222307965348, 0.5038457784615318, 0.6752568781943777, 0.7880730680059006, 0.09430965090665133, 0.4986183600001317, 0.24112389044610405, 0.3635071851353404, 0.7047195247497422, 0.5251048099479148, 0.5632051337005155, 0.4520037684813636, 0.5271857161160298, 0.36566585814722175, 0.8775119234978208, 0.49474741138534273, 0.17187478758168062, 0.1069918390347242, 0.6371627391106971, 0.19018032574493748, 0.34352259564225396, 0.806114950115292, 0.47304849589761655, 0.5014153035286022, 0.6721952796384192, 0.7507248720260316, 0.38512814216859315, 0.8930847268109882, 0.863224561659591, 0.15108072818859253, 0.7399796913917198, 0.18579927887031134, 0.47304849589761655, 0.2033384066370545, 0.43667652058029827, 0.23252054766636898], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [0.068, 0.058, 0.045, 0.044, 0.076, 0.041, 0.037, 0.036, 0.033, 0.036, 0.102, 0.039, 0.033, 0.026, 0.03, 0.04, 0.07, 0.032, 0.078, 0.028, 0.056, 0.045, 0.05, 0.04, 0.04, 0.031, 0.044, 0.038, 0.035, 0.029, 0.032, 0.059, 0.053, 0.034, 0.034, 0.122, 0.035, 0.05, 0.047, 0.096, 0.036, 0.026, 0.034, 0.043, 0.08, 0.065, 0.054, 0.079, 0.039, 0.036, 0.073, 0.034, 0.031, 0.042, 0.039, 0.053, 0.044, 0.05, 0.039, 0.414, 0.054, 0.037, 0.029, 0.036, 0.036, 0.042, 0.061, 0.037, 0.05, 0.055, 0.067, 0.012, 0.04, 0.038, 0.046, 0.048, 0.074, 0.041, 0.059, 0.171, 0.042, 0.037, 0.065, 0.03, 0.035, 0.194, 0.08, 0.048, 0.036, 0.049, 0.046, 0.039, 0.037, 0.035, 0.047, 0.037, 0.091, 0.035, 0.071, 0.071, 0.027, 0.047, 0.072, 0.034, 0.067, 0.051, 0.072, 0.023, 0.038, 0.025, 0.033, 0.053, 0.026, 0.024, 0.055, 0.23, 0.043, 0.057, 0.04, 0.083, 0.03, 0.03, 0.067, 0.029, 0.073, 0.074, 0.088, 0.029, 0.073, 0.04, 0.019, 0.075, 0.043, 0.045, 0.05, 0.049, 0.062, 0.094, 0.06, 0.034, 0.046, 0.071, 0.095, 0.036, 0.046, 0.036, 0.048, 0.087, 0.032, 0.043, 0.039, 0.031, 0.051, 0.043, 0.029, 0.038, 0.058, 0.062, 0.047, 0.058, 0.032, 0.078, 0.032, 0.034, 0.08, 0.034, 0.032, 0.084, 0.065, 0.137, 0.022, 0.04, 0.046, 0.055, 0.027, 0.04, 0.048, 0.031, 0.035, 0.078, 0.037, 0.042, 0.036, 0.093, 0.039, 0.077, 0.078, 0.042, 0.045, 0.081, 0.015, 0.051, 0.028, 0.045, 0.037, 0.035, 0.041, 0.027, 0.048, 0.042, 0.038, 0.038, 0.047, 0.017, 0.036, 0.038, 0.036, 0.074, 0.046, 0.044, 0.046, 0.037, 0.077, 0.029, 0.071, 0.025, 0.046, 0.041, 0.022, 0.047, 0.04, 0.044, 0.086, 0.045, 0.049, 0.071, 0.031, 0.054, 0.072, 0.04, 0.074, 0.05, 0.028, 0.028, 0.072, 0.055, 0.034, 0.047, 0.036, 0.055, 0.043, 0.031, 0.032, 0.057, 0.077, 0.068, 0.057, 0.045, 0.06, 0.077, 0.053, 0.056, 0.053, 0.038, 0.042, 0.053, 0.035, 0.031, 0.033, 0.049, 0.078, 0.04, 0.06, 0.042, 0.08, 0.031, 0.044, 0.032, 0.044, 0.055, 0.044, 0.04, 0.037, 0.087, 0.043, 0.078, 0.032, 0.047, 0.035, 0.062, 0.413, 0.034, 0.028, 0.033, 0.032, 0.077, 0.021, 0.031, 0.044, 0.056, 0.078, 0.214, 0.05, 0.062, 0.034, 0.031, 0.052, 0.04, 0.031, 0.034, 0.029, 0.043, 0.041, 0.034, 0.067, 0.074, 0.033, 0.054, 0.034, 0.043, 0.04, 0.027, 0.071, 0.053, 0.035, 0.045, 0.032, 0.035, 0.044, 0.057, 0.033, 0.036, 0.06, 0.058, 0.11, 0.032, 0.044, 0.132, 0.038, 0.038, 0.08, 0.035, 0.093, 0.043, 0.176, 0.054, 0.041, 0.046, 0.255, 0.085, 0.021, 0.036, 0.055, 0.079, 0.076, 0.039, 0.028, 0.051, 0.088, 0.033, 0.033, 0.047, 0.044, 0.043, 0.049, 0.031, 0.083, 0.04, 0.043, 0.07, 0.025, 0.034, 0.084, 0.037, 0.076, 0.046, 0.044, 0.063, 0.037, 0.049, 0.024, 0.046, 0.039, 0.041, 0.118, 0.117, 0.036, 0.028, 0.064, 0.038, 0.03, 0.022, 0.045, 0.044, 0.036, 0.054, 0.05, 0.026, 0.043, 0.036, 0.032, 0.074, 0.027, 0.053, 0.048, 0.077, 0.038, 0.065, 0.029, 0.027, 0.036, 0.027, 0.022, 0.042, 0.042, 0.056, 0.039, 0.027, 0.051, 0.035, 0.076, 0.048, 0.033, 0.152, 0.057, 0.092, 0.036, 0.085, 0.027, 0.023, 0.04, 0.041, 0.085, 0.243, 0.084, 0.039, 0.043, 0.036, 0.021, 0.045, 0.033, 0.046, 0.037, 0.029, 0.065, 0.081, 0.044, 0.067, 0.028, 0.062, 0.053, 0.054, 0.053, 0.123, 0.031, 0.082, 0.048, 0.059, 0.075, 0.077, 0.045, 0.097, 0.041, 0.069, 0.05, 0.031, 0.053, 0.037, 0.066, 0.061, 0.042, 0.036, 0.052, 0.073, 0.029, 0.047, 0.031, 0.037, 0.036, 0.105, 0.045, 0.035, 0.075, 0.05, 0.057, 0.026, 0.118, 0.034, 0.034, 0.042, 0.039, 0.031, 0.097, 0.075, 0.052, 0.03, 0.037, 0.035, 0.075, 0.078, 0.067, 0.042, 0.078, 0.076, 0.049, 0.118, 0.041, 0.089, 0.059, 0.073, 0.036, 0.044, 0.053, 0.031, 0.034, 0.044, 0.043, 0.034, 0.076, 0.035, 0.07, 0.046, 0.037, 0.048, 0.043, 0.03, 0.084, 0.097, 0.046, 0.063, 0.03, 0.332, 0.033, 0.053, 0.041, 0.061, 0.024, 0.035, 0.034, 0.047, 0.091, 0.052, 0.067, 0.021, 0.216, 0.053, 0.121, 0.035, 0.114, 0.048, 0.046, 0.051, 0.066, 0.046, 0.025, 0.031, 0.119, 0.109, 0.021, 0.053, 0.041, 0.02, 0.05, 0.067, 0.031, 0.041, 0.086, 0.036, 0.029, 0.022, 0.053, 0.038, 0.056, 0.086, 0.057, 0.026, 0.034, 0.033, 0.032, 0.03, 0.06, 0.039, 0.047, 0.032, 0.028, 0.043, 0.04, 0.032, 0.046, 0.042, 0.117, 0.05, 0.035, 0.027, 0.058, 0.049, 0.083, 0.032, 0.044, 0.038, 0.084, 0.051, 0.047, 0.045, 0.12, 0.079, 0.031, 0.04, 0.035, 0.039, 0.055, 0.032, 0.045, 0.026, 0.034, 0.083, 0.071, 0.037, 0.033, 0.045, 0.046, 0.055, 0.048, 0.034, 0.083, 0.03, 0.03, 0.05, 0.048, 0.036, 0.029, 0.036, 0.027, 0.057, 0.046, 0.035, 0.046, 0.045, 0.075, 0.033, 0.082, 0.085, 0.043, 0.049, 0.032, 0.055, 0.16, 0.079, 0.034, 0.03, 0.051, 0.048, 0.047, 0.038, 0.053, 0.055, 0.069, 0.048], \"xaxis\": \"x2\", \"y\": [0.6660328535674787, 0.4955559099445003, 0.11251030999551548, 0.5313240922219649, 0.7616845263358343, 0.42881839881496897, 0.22146723198036844, 0.2709448900825402, 0.04188686298684474, 0.3198999677935893, 0.586632325439729, 0.3332859260788763, 0.0891770245136605, 0.07249138429342028, 0.0813041402249215, 0.2808128557304226, 0.18155424903412543, 0.14020593233116785, 0.20529540916933675, 0.1755850319354616, 0.5722846846512241, 0.4684623303117058, 0.2863708053899042, 0.4489302200945696, 0.3606737334686688, 0.09834172337505831, 0.1439119889738254, 0.10526388551166177, 0.08976738859769384, 0.15927641460572795, 0.07353544332944184, 0.4894096639868448, 0.24735122968283396, 0.41440459167745447, 0.10107859516115147, 0.4809249647595707, 0.043928674649753696, 0.27268427565697984, 0.07203278686513981, 0.35989685204578803, 0.08410225657903847, 0.09640449279894714, 0.2859044620344169, 0.766491644508495, 0.27194216744256416, 0.11891721880979944, 0.6033870782914414, 0.8445823904457724, 0.4148378249676725, 0.09538880480821377, 0.5822786697287807, 0.2006236885231063, 0.30215903380660414, 0.3526626332448971, 0.22921561702294402, 0.3499358724503807, 0.451050436906263, 0.01968005574460141, 0.3849224947932618, 0.608666907839271, 0.30333177217190177, 0.05732515971384944, 0.08299070223644744, 0.155374347961305, 0.4378217303747408, 0.10641916767178827, 0.3207785913922725, 0.3280003244598044, 0.4747408725557203, 0.27229542413121455, 0.5314247042003052, 0.13834506443323813, 0.652508483608137, 0.1775869136191267, 0.4659209431511335, 0.3288332341233703, 0.47224603889779837, 0.2773569186284155, 0.18590272545123854, 0.6719763059805124, 0.04569198037744582, 0.22473444069733528, 0.0776074933333939, 0.1411968215808168, 0.3654892991508686, 0.06069899520469324, 0.21029328672965164, 0.13919371635861133, 0.16321149678759816, 0.6144435769482088, 0.1388055550317996, 0.0827658987104557, 0.0793107693477757, 0.04994940743047871, 0.46220165202879504, 0.08265172102971341, 0.5554564865761329, 0.10902951494304747, 0.26480674198345266, 0.31816712550642645, 0.20184400370343658, 0.23734670470511587, 0.19264674509953905, 0.03558879485690103, 0.5314247042003052, 0.3013473679880785, 0.8043030592862955, 0.07665185966197174, 0.17816243980233548, 0.14637302723887635, 0.43623195291339645, 0.5773286546676725, 0.06996409198491005, 0.0635191394270278, 0.11839391684253864, 0.03368970372860669, 0.16544292122901683, 0.5002106013252752, 0.20783967621931676, 0.4413184352618238, 0.1377753535318076, 0.017128038770129694, 0.09070427960766203, 0.05237321155563324, 0.46044782253877736, 0.09863911308639095, 0.6058955548956951, 0.07377868677997379, 0.33726125667837825, 0.03705661785513226, 0.03856885477325478, 0.01970319875133708, 0.06623921298607705, 0.655672818127978, 0.36403826442427, 0.375635621083512, 0.25822104517587474, 0.26990817233175546, 0.30316845466795117, 0.21597661143113533, 0.10411587283779344, 0.4582573305440075, 0.28974208538397184, 0.3995654588450376, 0.48407929824265805, 0.2412117545349558, 0.49704114689177337, 0.3112403223054312, 0.13571503940671914, 0.35304273602320047, 0.18963603484652192, 0.06023564559469896, 0.305863422303413, 0.34062746964654456, 0.03532029949184434, 0.20200996882548472, 0.207876095289533, 0.11304202998506685, 0.26487496820305634, 0.46674395287949066, 0.05931266843465788, 0.6063731497207538, 0.053339747820140615, 0.16056749669580483, 0.3366557342021428, 0.18735912995827353, 0.2667542380283816, 0.9197592959547904, 0.13322255285490225, 0.3533185668595151, 0.08763312389948397, 0.343329095265401, 0.1298321532292276, 0.11240742021865013, 0.03412749239977686, 0.23316671381479437, 0.13955591125269062, 0.065615492475942, 0.03940539431326806, 0.04874684240881699, 0.42507109047861347, 0.3720756994829524, 0.20627971812824875, 0.23346983492740092, 0.299872058778726, 0.14688925552714138, 0.20529540916933675, 0.11294333341234963, 0.4523771212155355, 0.15895981664313275, 0.12633289347617382, 0.34801013400503944, 0.063056887931354, 0.09222807982804315, 0.19281104432210028, 0.11843845992675284, 0.1064686731970873, 0.12171087020281346, 0.49704114689177337, 0.4202798549667376, 0.058322454167927695, 0.40418598015134155, 0.7514842711311043, 0.067978575311199, 0.1468497162592186, 0.3655805321171328, 0.36741292271676196, 0.08785516413846428, 0.4223454464089015, 0.09472348251934337, 0.14196098925812006, 0.10013555988874479, 0.32154631204965056, 0.05416575683382341, 0.786126361492164, 0.04696516601190348, 0.26926088858349784, 0.28123172687107445, 0.3094364396730669, 0.04307250962973752, 0.07126159086244754, 0.6143015945908075, 0.495586079448059, 0.46102608015166635, 0.40789311683600216, 0.8929715185951024, 0.1227006502272181, 0.3638055988942468, 0.10470002869891348, 0.29304213908849364, 0.8936703981375603, 0.3534407380188983, 0.0883666731866185, 0.07895584641700149, 0.05166417783587085, 0.4199775765299997, 0.10304865631077798, 0.1041340676595982, 0.11031385635331636, 0.22368578646300386, 0.22137255536682798, 0.0725394352715707, 0.08320759746190642, 0.3577905591727162, 0.36362749207413336, 0.13058702032609693, 0.4306817897420764, 0.4684623303117058, 0.3185463047756948, 0.6991046594229053, 0.33105510290791684, 0.35804773811787727, 0.3499358724503807, 0.17780319308126435, 0.07142366539796174, 0.1504846162366139, 0.28643330026545544, 0.11492102279820171, 0.08716328114311156, 0.12905574960179156, 0.5528531989583015, 0.2852168598030531, 0.3185463047756948, 0.41766807389819915, 0.22818770291371737, 0.10749415552266317, 0.07500089027222667, 0.2150933620687273, 0.4879833184669665, 0.21367083697314282, 0.18281788227943807, 0.11217648511765432, 0.01860460444149037, 0.4990100838788346, 0.3212979959143686, 0.7252893191599291, 0.30018855716775616, 0.2808216200321265, 0.24332849241566534, 0.22583693263898685, 0.307128141019565, 0.12930297020615966, 0.07734813107736227, 0.38078614076753503, 0.037937415915298756, 0.18389331462546077, 0.2015421194948802, 0.10121634311933059, 0.7209948827487924, 0.252131738577411, 0.19866278493931944, 0.5569604587758099, 0.19172534874952063, 0.07516041810443141, 0.18673310211333727, 0.20736440356309183, 0.27568985010185776, 0.1748501221961516, 0.134246332983591, 0.12151400729184814, 0.03860330573341564, 0.16198960071610413, 0.062309112953929935, 0.14943540958877521, 0.46827469198568006, 0.12435295831370408, 0.11768791031746062, 0.10794707492381372, 0.04347111427796346, 0.07423675680829, 0.1602542791395647, 0.19911642350143877, 0.2379444352717226, 0.36664322039668684, 0.10130143557253446, 0.17108028607870185, 0.6143194513817134, 0.5641235853966853, 0.29864316680665437, 0.44752301946823647, 0.13459844499503626, 0.037461465199631894, 0.5002964248569376, 0.4059565893810353, 0.7035957096210382, 0.0629603198376949, 0.25036415064992923, 0.14780834332950044, 0.24800647860056513, 0.10438723399855232, 0.24366911510822187, 0.4574644219698093, 0.8347014835967527, 0.42226245660703365, 0.4073158502222598, 0.47525484003715535, 0.37845934883934684, 0.35325777167774697, 0.4763432908647238, 0.18941100564626978, 0.23853527246002126, 0.27277355193056574, 0.5556171757583562, 0.19481513110659687, 0.7460207524242459, 0.12627308236197843, 0.2115813466591615, 0.4773837842994688, 0.22238536240250728, 0.1978655273089749, 0.32057959349203036, 0.1601330373243487, 0.6256605001243821, 0.34062746964654456, 0.5899158924001677, 0.1273375405407705, 0.6866376712310945, 0.3812864953771038, 0.07918534602430627, 0.10510921928053807, 0.052405178286905496, 0.29010285216427345, 0.5802968836962079, 0.4475494904811408, 0.33107045093633036, 0.6046547135519548, 0.33132995382553565, 0.3391582818855403, 0.37109937806185267, 0.18876467901964422, 0.03244681540368277, 0.6531311156123596, 0.18281848038190407, 0.06840545126676123, 0.23876166598551407, 0.5602062902528231, 0.05478334190217349, 0.18965009362393503, 0.502081053312289, 0.0945975060483667, 0.24937367783354814, 0.14040338921272166, 0.09582424632391484, 0.4879833184669665, 0.07536550594022651, 0.37763546052463404, 0.20240400638142053, 0.06234715971662652, 0.1729504208160284, 0.2536573606029918, 0.1491704939138675, 0.47224603889779837, 0.20734784509414073, 0.1656619584420439, 0.20263687678412212, 0.4576701693643329, 0.3746187330143109, 0.06578487521364562, 0.09359041291034786, 0.15714155813810793, 0.43198081216185935, 0.17693664965610134, 0.14200602748771296, 0.16878839641400256, 0.11131318694256087, 0.43040972974554736, 0.12494266711040569, 0.5286591337585229, 0.3917329141436472, 0.14284790216410748, 0.29931895876037384, 0.3998656181534954, 0.13198036366642862, 0.2166851793268345, 0.164669749255824, 0.3116999397838065, 0.5702002297218003, 0.2867818412254799, 0.05809024612643199, 0.0701620515557333, 0.10493669218879953, 0.03474255021640338, 0.14069518845012563, 0.7697788668098057, 0.44513161239284327, 0.12104291767226882, 0.2823656727566666, 0.28640273091276736, 0.09904459769556595, 0.10889384421684001, 0.1978655273089749, 0.6326587477498924, 0.0766186874204361, 0.07300117689776386, 0.3978521493117628, 0.7293533971641823, 0.24040337450518035, 0.46827469198568006, 0.03737110954461231, 0.48112847828662497, 0.5755848065786346, 0.12151472907643468, 0.332302417201758, 0.3208349144509022, 0.13406270144296106, 0.47820199098358873, 0.024219732643774528, 0.7923035912680444, 0.3099424932714111, 0.8494816644677875, 0.15230116664989468, 0.8795672599938588, 0.34536882843285344, 0.587897812361327, 0.3660303223369904, 0.3074082248441362, 0.1925553058603695, 0.1582957933341015, 0.5297945963993664, 0.1892543681582496, 0.06574637766643598, 0.03286461121245521, 0.6223124217546917, 0.48666930315350876, 0.17200815643270417, 0.27042696199957883, 0.16010429726024444, 0.25291734909108765, 0.22778758435893687, 0.6055190518965303, 0.41989528411161425, 0.2865861541738164, 0.17344095530188786, 0.4163761941495938, 0.24610426408478792, 0.029106329843254564, 0.5849270471051293, 0.09607886499379148, 0.4890296174547498, 0.11193395874659995, 0.3667485749721523, 0.29672938182784603, 0.13696827462710404, 0.03986507081677082, 0.41542023534722683, 0.1642424989032959, 0.041559354155004224, 0.1266666793707928, 0.5259198205822933, 0.42123490919744344, 0.6147437654518444, 0.42849246998341506, 0.04874684240881699, 0.16870816563337898, 0.35179373534084035, 0.4552463954734379, 0.1543174595222413, 0.4641274821418986, 0.1106599594415556, 0.40441066041397966, 0.05916303638108533, 0.24194101851814365, 0.5755848065786346, 0.23631147082452741, 0.04679471849088612, 0.33132995382553565, 0.6031606095022326, 0.16900214819844117, 0.9322526967181247, 0.1065938389205352, 0.0540586741766943, 0.14920224829950646, 0.03054451782098533, 0.13595064656866984, 0.15908339514281045, 0.09402391562754642, 0.27219479721363327, 0.10477531970828624, 0.6046547135519548, 0.04412971358840656, 0.0821245873848182, 0.24953715645213048, 0.24311299470472425, 0.679537413518331, 0.02875041056121841, 0.2874129658970298, 0.17131102264191878, 0.07042427222914205, 0.1577516063520068, 0.39934634677258996, 0.42249259173992826, 0.24940231538328683, 0.46827469198568006, 0.040988937643475554, 0.034828704291737345, 0.26663563965858417, 0.22421743312747255, 0.10716094829621758, 0.7421831263598226, 0.4644511163280224, 0.1591307416719686, 0.21502194578256428, 0.12883185373794437, 0.15520095945599266, 0.04280666734842442, 0.06928764484923078, 0.3578757504587543, 0.0760792945579073, 0.06637805380770656, 0.5755848065786346, 0.4326356954473739, 0.16985579355455038, 0.47152805642545803, 0.11644579282256762, 0.11790522998710073, 0.5438286352264949, 0.41561805514360906, 0.050606352251634235, 0.21836830194439782, 0.22298545275517268, 0.1504846162366139, 0.16819644397314482, 0.47796113776613436, 0.14100197907825862, 0.7878397890034206, 0.12176963827920351, 0.09814942480303201, 0.23162396036129984, 0.04400104962869911, 0.061588508633294015, 0.2774601068082493, 0.40816383821078206, 0.14036214651023216, 0.11837607594274324, 0.0703155477214753, 0.17002415827487982, 0.24611532014486182, 0.06874641727313702, 0.30975746960573625, 0.07004288447243323, 0.6453829176356538, 0.3880412370469972, 0.10205495289732236, 0.12171087020281346, 0.38550692709735157, 0.4398162761337091, 0.5769741243450848, 0.48842976274850136, 0.3866799681687785, 0.17129518728202664, 0.5711206597512044, 0.4456070955069118, 0.4585850027539752, 0.25462747480751524, 0.34771016550763867, 0.35548618548401445, 0.07878090041588082, 0.3008706318705062, 0.08117751180329491, 0.055511805197920094, 0.1600174453683395, 0.35597309965685686, 0.5473978930443646, 0.3321771897262046, 0.14643302530661162, 0.7653011157176768, 0.24188431843396252, 0.16704799028757666, 0.41136103198090634, 0.5749869949413896, 0.709238838470871, 0.09340318303147321, 0.602429869503323, 0.04154705947390969, 0.7519582179986716, 0.15993940416551844, 0.04372375151311325, 0.4076899811241429, 0.4644511163280224, 0.3133137248525114, 0.24628490675063597, 0.06972977174174444, 0.15949948541388637, 0.2241543425141257, 0.1729876202034616, 0.07290025122558275, 0.1220000714032804, 0.36493953208423235, 0.09420126302076737, 0.026726938234992392, 0.7199273032686843, 0.4606762448039463, 0.04906818437448113, 0.19446415942665518, 0.14876853598344464, 0.3247816953453747, 0.023320858692869595, 0.7310618090422621, 0.48944479260603346, 0.20357574295749958, 0.0840537250624015, 0.5368744051465595, 0.21101467800102214, 0.46682279298460017, 0.3749869638443927, 0.46592999202179275, 0.10188412989688433, 0.15751976448865512], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"chlorides\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"chlorides\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}}, {\"id\": \"All_free.sulfur.dioxide\", \"params\": {\"data\": [{\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Reference<br>free.sulfur.dioxide=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [39.0, 34.0, 26.0, 25.0, 34.0, 20.0, 39.0, 33.0, 24.0, 26.0, 73.0, 4.0, 56.0, 41.5, 41.0, 23.0, 26.0, 6.0, 17.0, 21.0, 72.0, 27.0, 46.0, 30.0, 32.0, 40.0, 25.0, 37.0, 33.0, 29.0, 35.0, 31.0, 30.0, 96.0, 21.0, 44.0, 59.0, 38.0, 19.0, 12.0, 38.0, 18.0, 23.0, 18.0, 41.0, 24.0, 12.0, 24.0, 6.0, 27.0, 45.0, 54.0, 30.0, 44.0, 33.0, 50.0, 12.0, 22.0, 10.0, 50.0, 14.0, 20.0, 42.0, 47.0, 10.0, 6.0, 36.0, 13.0, 28.0, 20.0, 24.0, 19.0, 29.0, 37.5, 12.0, 24.0, 15.0, 26.0, 25.0, 37.0, 60.0, 36.0, 20.0, 28.0, 27.0, 31.0, 12.0, 21.0, 21.0, 7.0, 12.0, 36.0, 39.0, 48.0, 39.0, 24.0, 53.0, 16.0, 28.0, 28.0, 7.0, 35.0, 10.0, 4.0, 11.0, 41.0, 20.0, 27.0, 36.0, 29.0, 41.0, 35.0, 20.0, 19.0, 52.0, 22.0, 12.0, 23.0, 60.0, 24.0, 19.0, 34.0, 49.0, 46.0, 33.0, 13.0, 9.0, 38.0, 38.0, 6.0, 17.0, 33.0, 44.5, 24.0, 20.0, 54.0, 13.0, 15.0, 28.0, 14.0, 36.0, 53.0, 47.0, 43.0, 7.0, 22.0, 17.0, 12.0, 18.0, 34.0, 29.0, 23.0, 28.0, 57.0, 33.0, 42.0, 45.0, 8.0, 23.0, 37.0, 31.0, 17.0, 22.0, 21.0, 25.0, 37.0, 63.0, 29.0, 44.0, 43.0, 7.0, 24.0, 38.0, 30.0, 21.0, 34.0, 17.0, 26.0, 45.0, 16.0, 29.0, 35.0, 7.0, 50.0, 30.0, 33.0, 24.0, 7.0, 50.0, 25.0, 35.0, 3.0, 35.0, 19.0, 24.0, 32.0, 36.0, 59.0, 23.5, 23.0, 20.0, 18.0, 28.0, 38.0, 61.0, 43.0, 8.0, 22.0, 45.0, 29.0, 15.0, 29.0, 29.0, 36.0, 20.0, 16.0, 43.0, 39.0, 53.0, 13.0, 25.0, 41.0, 12.0, 35.0, 17.0, 29.0, 35.0, 47.0, 33.0, 39.0, 40.0, 39.0, 26.0, 52.0, 14.0, 17.0, 43.0, 51.0, 45.0, 49.0, 47.0, 49.0, 46.0, 29.0, 15.0, 47.0, 47.0, 29.0, 43.0, 30.0, 45.0, 48.5, 27.0, 9.0, 17.0, 29.0, 19.0, 35.0, 44.0, 3.0, 57.0, 35.0, 24.0, 51.0, 42.0, 30.0, 17.0, 6.0, 29.0, 18.0, 14.0, 19.0, 7.0, 39.0, 31.0, 50.0, 29.0, 10.0, 3.0, 23.0, 38.0, 49.0, 12.0, 36.0, 26.0, 19.0, 28.0, 78.0, 14.0, 24.0, 16.0, 64.0, 6.0, 45.0, 55.0, 44.0, 16.0, 62.0, 9.0, 27.0, 19.0, 21.0, 24.0, 22.0, 16.0, 24.0, 73.0, 20.0, 42.0, 26.0, 31.0, 38.0, 14.0, 20.0, 21.0, 6.0, 48.0, 41.0, 35.0, 37.0, 45.0, 12.0, 33.0, 49.0, 29.0, 8.0, 26.0, 20.0, 49.0, 27.0, 27.0, 26.0, 6.0, 66.0, 30.0, 38.0, 25.0, 34.0, 28.0, 52.0, 86.0, 14.0, 40.0, 40.0, 18.0, 32.0, 36.0, 7.0, 33.0, 35.0, 59.0, 60.0, 29.0, 20.0, 69.0, 35.0, 32.0, 37.0, 4.0, 31.0, 37.0, 47.0, 25.0, 22.0, 17.0, 28.0, 19.0, 51.0, 11.0, 48.0, 41.0, 17.0, 15.0, 15.0, 19.0, 37.0, 45.0, 17.0, 45.0, 26.0, 13.0, 53.0, 14.0, 53.0, 61.0, 24.0, 55.0, 23.0, 29.0, 29.0, 43.0, 42.0, 36.0, 8.0, 37.0, 18.0, 10.0, 27.0, 58.0, 21.0, 24.0, 8.0, 16.0, 47.0, 14.0, 43.0, 34.0, 17.0, 36.0, 16.0, 29.0, 42.0, 39.0, 15.0, 25.0, 40.0, 45.0, 60.0, 18.0, 15.0, 21.0, 41.0, 60.0, 29.0, 74.0, 40.0, 24.0, 34.0, 27.0, 56.0, 42.0, 14.0, 29.0, 31.0, 35.0, 31.0, 12.0, 32.0, 26.0, 16.0, 19.0, 25.0, 28.0, 20.0, 7.0, 23.0, 66.0, 33.0, 6.0, 36.0, 42.0, 38.0, 15.0, 29.0, 44.0, 7.0, 88.0, 24.0, 26.0, 46.0, 6.0, 29.0, 10.0, 50.0, 53.0, 31.0, 30.0, 63.0, 35.0, 13.0, 17.0, 68.0, 16.0, 35.0, 17.0, 73.0, 17.0, 32.0, 39.0, 21.0, 19.0, 56.0, 37.0, 38.0, 20.0, 8.0, 44.0, 33.0, 24.0, 17.0, 73.0, 23.0, 30.0, 47.0, 7.0, 35.0, 50.0, 47.0, 34.0, 34.0, 59.0, 45.0, 53.0, 55.0, 47.0, 45.0, 46.0, 35.0, 31.0, 17.0, 27.0, 22.0, 32.0, 57.0, 32.0, 12.0, 19.0, 54.0, 24.0, 26.0, 16.0, 30.0, 29.0, 48.0, 14.0, 4.0, 21.0, 30.0, 33.0, 23.0, 10.0, 5.0, 52.0, 20.0, 18.0, 27.0, 52.0, 30.0, 53.0, 24.0, 44.0, 37.0, 38.0, 36.0, 54.0, 30.0, 6.0, 22.0, 28.0, 40.0, 48.0, 41.0, 18.0, 12.0, 33.0, 8.0, 20.0, 14.0, 44.0, 38.0, 36.0, 26.0, 20.0, 24.0, 18.0, 23.0, 23.0, 9.0, 24.0, 61.0, 24.0, 27.0, 13.0, 39.0, 36.0, 11.0, 33.0, 33.0, 44.0, 27.0, 36.0, 34.0, 33.0, 40.0, 24.0, 14.0, 34.0, 38.0, 15.0, 18.0, 20.0, 31.0, 58.0, 37.0, 38.0, 17.0, 23.0, 3.0, 25.0, 42.0, 18.0, 14.0, 54.0, 31.0, 6.0, 26.0, 69.0, 56.0, 48.0, 45.0, 36.0, 24.0, 70.0, 5.0, 34.0, 19.0, 10.0, 37.0, 15.0, 10.0, 53.0, 35.0, 13.0, 14.0, 47.0, 52.0, 38.0, 24.0, 68.0, 22.0, 56.0, 53.0, 39.0, 20.0, 53.0, 12.0, 16.0, 68.0, 46.0, 33.0, 42.0, 17.0, 55.0, 31.0, 40.0], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Current<br>free.sulfur.dioxide=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [18.0, 55.0, 24.0, 15.0, 23.0, 27.0, 37.0, 21.0, 32.0, 57.0, 13.0, 29.0, 36.0, 26.0, 31.0, 29.0, 32.0, 11.0, 1.0, 42.0, 53.0, 39.0, 12.0, 45.0, 46.0, 32.0, 35.0, 61.0, 22.0, 34.0, 26.0, 23.0, 59.0, 26.0, 37.0, 45.0, 32.0, 60.0, 16.0, 10.0, 39.0, 31.0, 37.0, 46.0, 11.0, 34.0, 23.0, 18.0, 73.0, 38.0, 6.0, 22.0, 35.0, 14.0, 37.0, 43.0, 37.0, 27.0, 46.0, 18.0, 34.0, 45.0, 30.0, 15.0, 28.0, 31.0, 49.0, 32.0, 38.0, 50.0, 35.0, 36.0, 31.0, 28.0, 26.0, 54.0, 32.0, 53.0, 20.0, 6.0, 23.0, 66.0, 34.0, 22.0, 26.0, 14.0, 41.0, 20.0, 49.0, 14.0, 60.0, 46.0, 18.0, 28.0, 30.0, 26.0, 6.0, 51.0, 6.0, 16.0, 25.0, 26.0, 13.0, 49.0, 35.0, 37.0, 15.0, 20.0, 34.0, 37.0, 32.0, 35.0, 35.0, 13.0, 28.0, 19.0, 46.0, 33.0, 29.0, 21.0, 23.0, 74.0, 8.0, 23.0, 25.0, 5.0, 23.0, 21.0, 10.0, 29.0, 22.0, 18.0, 24.0, 48.0, 20.0, 62.0, 5.0, 24.0, 14.0, 29.0, 57.0, 27.0, 17.0, 46.0, 55.0, 23.0, 55.0, 10.0, 24.0, 20.0, 41.0, 33.0, 24.0, 14.0, 39.0, 10.0, 31.0, 15.0, 23.0, 49.0, 12.0, 10.0, 19.0, 50.0, 8.0, 15.0, 32.0, 13.0, 24.0, 52.0, 38.0, 20.0, 6.0, 3.0, 12.0, 41.0, 46.0, 54.0, 38.0, 17.0, 29.0, 33.0, 40.0, 54.0, 54.0, 26.0, 1.0, 24.0, 45.0, 22.0, 47.0, 17.0, 36.0, 40.0, 39.0, 36.0, 26.0, 18.0, 55.0, 21.0, 26.0, 29.0, 38.5, 21.0, 41.0, 18.0, 24.0, 38.0, 32.0, 79.5, 34.0, 24.0, 18.0, 37.0, 12.0, 35.0, 24.0, 25.0, 23.0, 34.0, 34.0, 56.0, 3.0, 62.0, 56.0, 28.0, 26.0, 44.0, 32.0, 32.0, 16.0, 30.0, 22.0, 31.0, 15.0, 51.0, 29.0, 30.0, 45.0, 18.0, 21.0, 23.0, 21.0, 29.0, 28.0, 13.0, 45.0, 39.0, 26.0, 6.0, 47.0, 68.0, 43.0, 26.0, 36.0, 44.0, 21.0, 13.0, 34.0, 25.0, 8.0, 47.0, 26.0, 67.0, 34.0, 27.0, 29.0, 54.0, 56.0, 58.0, 45.0, 37.0, 10.0, 13.0, 41.0, 12.0, 35.0, 17.0, 40.0, 39.0, 9.0, 25.0, 37.0, 26.0, 30.0, 11.0, 29.0, 22.0, 34.0, 45.0, 19.0, 5.0, 47.0, 26.0, 33.0, 33.0, 25.0, 40.0, 40.0, 28.0, 52.0, 25.0, 95.0, 42.0, 53.0, 24.0, 35.0, 53.0, 62.0, 34.0, 48.0, 15.0, 11.0, 31.0, 26.0, 69.0, 34.0, 11.0, 29.0, 52.0, 39.0, 31.0, 27.0, 50.0, 11.0, 49.0, 30.0, 17.0, 51.0, 20.0, 15.0, 18.0, 11.0, 63.0, 36.0, 23.0, 57.0, 80.0, 28.0, 6.0, 40.0, 27.0, 49.0, 39.0, 15.0, 29.0, 27.0, 7.0, 15.0, 25.0, 37.0, 30.0, 35.0, 14.0, 57.0, 20.0, 8.0, 18.0, 70.5, 13.0, 29.0, 25.0, 32.0, 61.0, 12.0, 53.0, 41.0, 50.0, 58.0, 68.0, 29.0, 29.0, 38.0, 22.0, 10.0, 9.0, 31.0, 17.0, 18.0, 13.0, 34.0, 22.0, 34.0, 56.0, 41.0, 24.0, 35.0, 31.0, 6.0, 43.0, 53.0, 32.0, 21.0, 71.0, 36.0, 11.0, 42.0, 7.0, 27.0, 37.0, 33.0, 37.0, 28.0, 21.0, 19.0, 44.0, 49.0, 23.0, 29.0, 17.0, 8.0, 16.0, 28.0, 9.0, 64.0, 29.0, 64.0, 5.0, 37.0, 19.0, 18.0, 38.0, 9.0, 5.5, 5.0, 50.0, 29.0, 27.0, 24.0, 35.0, 25.0, 20.0, 20.0, 29.0, 8.0, 14.0, 49.0, 53.0, 23.0, 19.0, 48.5, 5.0, 65.0, 27.0, 20.0, 6.0, 26.0, 19.0, 22.0, 15.0, 50.0, 22.0, 40.0, 4.0, 33.0, 49.0, 20.0, 24.0, 57.0, 9.0, 105.0, 44.0, 34.0, 56.0, 53.0, 23.0, 46.0, 14.0, 35.0, 22.0, 42.0, 60.0, 15.0, 25.0, 31.0, 11.0, 61.0, 19.0, 18.0, 63.0, 37.0, 34.0, 33.0, 10.0, 49.0, 26.0, 4.0, 15.0, 6.0, 26.0, 17.0, 44.5, 17.0, 11.0, 10.0, 6.0, 35.0, 15.0, 7.0, 25.0, 42.0, 33.0, 48.5, 40.0, 10.0, 41.0, 57.0, 25.0, 26.0, 31.0, 51.0, 25.0, 31.0, 14.0, 46.0, 41.0, 26.0, 6.0, 53.0, 11.0, 54.0, 8.0, 25.0, 32.0, 81.0, 46.0, 36.0, 36.0, 42.0, 60.5, 15.0, 45.0, 53.0, 41.0, 5.0, 33.0, 6.0, 16.0, 3.0, 52.0, 50.0, 25.0, 6.0, 40.0, 11.0, 16.0, 34.0, 7.0, 17.0, 48.5, 51.0, 14.0, 29.0, 6.0, 21.0, 62.0, 24.0, 19.0, 10.0, 44.0, 44.0, 33.0, 33.0, 8.0, 25.0, 26.0, 73.0, 31.0, 14.0, 56.0, 34.0, 37.0, 67.0, 42.0, 42.0, 30.0, 29.0, 26.0, 50.0, 16.0, 57.0, 40.0, 49.0, 18.0, 38.0, 17.0, 6.0, 56.0, 25.0, 15.0, 18.0, 29.0, 17.0, 10.0, 3.0, 27.0, 26.0, 38.0, 32.0, 47.0, 43.0, 29.0, 60.0, 40.0, 48.0, 17.0, 5.0, 27.0, 36.0, 14.0, 30.0, 41.0, 36.0, 55.0, 17.0, 15.0, 31.0, 29.0, 52.0, 23.0, 14.0, 35.0, 32.0, 21.0, 31.0, 10.0, 34.0, 52.0, 6.0, 59.0, 8.0, 17.0, 31.0, 12.0, 36.0, 25.0, 34.0, 16.0, 22.0, 34.0, 20.0, 50.0, 44.0, 38.0, 46.0, 52.0, 20.0, 32.0], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Reference<br>free.sulfur.dioxide=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [76.0, 19.0, 15.0, 32.0, 18.0, 17.0, 34.0, 9.0, 36.0, 28.0, 20.0, 15.0, 46.0, 8.0, 30.0, 61.0, 24.0, 7.0, 23.0, 3.0, 50.0, 47.0, 5.0, 34.0, 40.0, 15.0, 28.0, 22.0, 44.0, 27.0, 7.0, 25.0, 26.0, 60.0, 52.0, 10.0, 24.0, 58.0, 4.0, 54.0, 14.0, 10.0, 21.0, 24.0, 20.0, 23.0, 25.0, 39.0, 18.0, 22.0, 6.0, 26.0, 41.0, 5.0, 55.0, 42.0, 41.0, 39.0, 5.0, 29.0, 50.0, 47.0, 8.0, 55.0, 23.0, 36.0, 31.0, 32.0, 15.0, 13.0, 52.0, 3.0, 77.0, 20.0, 21.0, 55.0, 64.0, 7.0, 30.0, 15.0, 23.0, 16.0, 65.0, 9.0, 28.0, 11.0, 38.0, 5.0, 26.0, 17.0, 3.0, 55.0, 14.0, 77.0, 53.0, 53.0, 27.0, 39.0, 49.0, 31.0, 68.0, 23.0, 23.0, 44.0, 26.0, 18.0, 37.0, 6.0, 12.0, 25.0, 18.0, 16.0, 3.0, 22.0, 27.0, 18.0, 66.0, 20.0, 21.0, 12.0, 26.0, 13.0, 29.0, 22.0, 52.0, 68.0, 110.0, 9.0, 8.0, 48.0, 5.0, 11.0, 62.0, 61.0, 36.0, 47.0, 13.0, 36.0, 36.0, 33.0, 16.0, 74.0, 3.0, 21.0, 40.0, 61.0, 40.0, 56.0, 25.0, 22.0, 23.0, 17.0, 38.0, 7.0, 36.0, 10.0, 33.0, 53.0, 15.0, 10.0, 14.0, 5.0, 26.0, 34.0, 7.0, 8.0, 44.0, 36.0, 43.0, 54.0, 52.0, 13.0, 35.0, 22.0, 18.0, 6.0, 7.0, 21.0, 15.0, 17.0, 56.0, 3.0, 36.0, 14.0, 64.0, 48.0, 34.0, 5.0, 38.0, 45.0, 16.0, 19.0, 57.0, 8.0, 35.0, 6.0, 20.0, 30.5, 67.0, 44.0, 48.0, 48.0, 48.0, 15.0, 27.0, 37.0, 51.0, 11.0, 5.0, 3.0, 33.0, 48.0, 29.0, 36.0, 27.0, 26.0, 44.0, 9.0, 24.0, 5.0, 8.0, 52.0, 62.0, 29.0, 21.0, 44.0, 27.0, 40.0, 21.0, 3.0, 18.0, 16.0, 17.0, 19.0, 35.0, 33.0, 67.0, 7.0, 40.5, 66.0, 20.0, 43.0, 55.0, 61.0, 52.0, 20.0, 38.0, 70.0, 13.0, 9.0, 35.0, 32.0, 26.0, 10.0, 34.0, 54.0, 20.0, 6.0, 39.0, 6.0, 46.0, 49.0, 59.0, 21.0, 28.0, 53.0, 38.0, 25.0, 23.0, 29.0, 128.0, 22.0, 14.0, 24.0, 61.0, 61.0, 34.0, 66.0, 15.0, 11.0, 6.0, 14.0, 12.0, 16.0, 9.0, 51.0, 21.0, 57.0, 17.0, 54.0, 8.0, 17.0, 146.5, 6.0, 16.0, 7.0, 29.0, 58.0, 60.0, 15.0, 17.0, 22.0, 26.0, 53.0, 18.0, 11.0, 33.0, 11.0, 6.0, 13.0, 64.0, 49.0, 14.0, 52.0, 47.0, 22.0, 52.5, 24.0, 58.0, 9.0, 7.0, 62.0, 15.0, 4.0, 57.0, 32.0, 22.0, 58.0, 12.0, 61.0, 48.0, 23.0, 10.0, 81.0, 23.0, 6.0, 59.0, 5.0, 30.0, 67.0, 18.0, 48.0, 31.0, 12.0, 46.0, 13.0, 28.0, 47.0, 9.0, 50.0, 21.0, 10.0, 29.0, 17.0, 16.0], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Current<br>free.sulfur.dioxide=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [39.0, 33.0, 45.0, 5.0, 36.0, 48.0, 25.0, 4.0, 10.0, 6.0, 22.0, 32.0, 39.0, 52.0, 30.0, 32.0, 35.0, 12.0, 9.0, 10.0, 15.0, 49.0, 31.0, 65.0, 31.0, 23.0, 35.0, 28.0, 11.0, 19.0, 51.0, 48.0, 12.0, 11.0, 24.0, 57.0, 35.0, 11.0, 27.0, 27.0, 19.0, 34.0, 44.0, 40.0, 10.0, 39.0, 16.0, 9.0, 36.0, 10.0, 58.0, 33.0, 26.0, 5.0, 9.0, 23.0, 13.0, 10.0, 21.0, 57.0, 10.0, 33.0, 45.0, 10.0, 13.0, 4.0, 16.0, 11.0, 8.0, 17.0, 6.0, 47.0, 69.0, 16.0, 36.0, 31.0, 45.0, 5.0, 13.0, 32.0, 40.0, 10.0, 45.0, 15.0, 34.0, 10.0, 37.0, 66.0, 81.0, 17.0, 67.0, 15.0, 6.0, 45.0, 40.0, 5.0, 40.0, 51.0, 26.0, 67.0, 20.0, 20.0, 32.0, 13.0, 11.0, 4.0, 27.0, 15.0, 16.0, 44.0, 15.0, 6.0, 18.0, 24.0, 12.0, 19.5, 35.0, 47.0, 52.0, 16.0, 22.0, 39.0, 25.0, 21.0, 12.0, 27.0, 7.0, 15.0, 12.0, 46.0, 6.0, 62.0, 45.0, 14.0, 31.0, 66.0, 6.0, 5.0, 17.0, 9.0, 6.0, 34.0, 38.0, 7.0, 21.0, 31.0, 21.0, 5.0, 42.0, 54.0, 46.0, 46.0, 29.0, 53.0, 24.0, 17.0, 54.0, 52.0, 36.0, 37.0, 15.0, 27.0, 24.0, 44.0, 6.0, 23.0, 23.0, 15.0, 30.0, 41.0, 16.0, 23.0, 12.0, 62.0, 46.0, 40.0, 8.0, 57.0, 54.0, 55.0, 14.0, 64.0, 12.0, 19.0, 42.0, 31.0, 60.0, 16.0, 27.0, 45.0, 16.0, 14.0, 67.0, 12.0, 70.0, 7.0, 20.0, 34.0, 48.0, 23.0, 5.0, 54.0, 37.0, 81.0, 3.0, 68.0, 50.0, 3.0, 26.0, 58.0, 30.0, 29.0, 18.0, 31.0, 61.0, 22.0, 66.0, 46.0, 36.0, 15.0, 40.0, 54.0, 22.0, 61.0, 47.0, 18.0, 16.0, 28.0, 18.0, 32.0, 36.0, 24.0, 44.0, 34.0, 16.0, 35.0, 23.0, 40.0, 45.0, 31.0, 28.0, 5.0, 21.0, 64.0, 20.0, 34.0, 18.0, 26.0, 59.0, 20.0, 15.0, 61.0, 14.0, 51.0, 8.0, 43.0, 64.0, 50.5, 22.0, 20.0, 9.0, 17.0, 54.0, 54.0, 11.0, 28.0, 11.0, 12.0, 4.0, 52.0, 20.0, 12.0, 52.0, 25.0, 18.0, 8.0, 67.0, 16.0, 17.0, 44.0, 45.0, 48.0, 30.0, 72.0, 52.0, 63.0, 16.0, 17.0, 6.0, 34.0, 45.0, 33.0, 45.0, 15.0, 30.0, 12.0, 25.0, 35.0, 39.0, 5.0, 39.0, 15.0, 58.0, 64.0, 68.0, 9.0, 5.0, 21.0, 32.0, 47.0, 24.0, 21.0, 7.0, 39.0, 19.0, 56.0, 40.0, 48.0, 26.0, 26.0, 10.0, 3.0, 23.0, 43.0, 4.0, 37.0, 36.0, 3.0, 54.0, 69.0, 5.0, 32.0, 32.0, 59.0, 7.0, 33.0, 43.0, 25.0, 44.0, 18.0, 51.0, 26.0, 29.0, 11.0, 5.0, 7.0, 15.0, 39.0, 44.0, 24.0, 16.0, 13.0], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Reference\", \"x\": 0.245, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Current\", \"x\": 0.755, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"barmode\": \"overlay\", \"legend\": {\"title\": {\"text\": \"target\"}, \"tracegroupgap\": 0}, \"margin\": {\"t\": 60}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.49], \"title\": {\"text\": \"free.sulfur.dioxide\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.51, 1.0], \"matches\": \"x\", \"title\": {\"text\": \"free.sulfur.dioxide\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"count\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}}}}, {\"id\": \"free.sulfur.dioxide_good\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (ref)\", \"type\": \"scatter\", \"x\": [39.0, 34.0, 26.0, 25.0, 34.0, 20.0, 39.0, 33.0, 24.0, 26.0, 73.0, 4.0, 56.0, 41.5, 41.0, 23.0, 26.0, 6.0, 17.0, 21.0, 72.0, 27.0, 46.0, 30.0, 32.0, 40.0, 25.0, 37.0, 33.0, 29.0, 35.0, 31.0, 30.0, 96.0, 21.0, 44.0, 59.0, 38.0, 19.0, 12.0, 38.0, 18.0, 23.0, 18.0, 41.0, 24.0, 12.0, 24.0, 6.0, 27.0, 45.0, 54.0, 30.0, 44.0, 33.0, 50.0, 12.0, 22.0, 10.0, 50.0, 14.0, 20.0, 42.0, 47.0, 10.0, 6.0, 36.0, 13.0, 28.0, 20.0, 24.0, 19.0, 29.0, 37.5, 12.0, 24.0, 15.0, 26.0, 25.0, 37.0, 60.0, 36.0, 20.0, 28.0, 27.0, 31.0, 12.0, 21.0, 21.0, 7.0, 12.0, 36.0, 39.0, 48.0, 39.0, 24.0, 53.0, 16.0, 28.0, 28.0, 7.0, 35.0, 10.0, 4.0, 11.0, 41.0, 20.0, 27.0, 36.0, 29.0, 41.0, 35.0, 20.0, 19.0, 52.0, 22.0, 12.0, 23.0, 60.0, 24.0, 19.0, 34.0, 49.0, 46.0, 33.0, 13.0, 9.0, 38.0, 38.0, 6.0, 17.0, 33.0, 44.5, 24.0, 20.0, 54.0, 13.0, 15.0, 28.0, 14.0, 36.0, 53.0, 47.0, 43.0, 7.0, 22.0, 17.0, 12.0, 18.0, 34.0, 29.0, 23.0, 28.0, 57.0, 33.0, 42.0, 45.0, 8.0, 23.0, 37.0, 31.0, 17.0, 22.0, 21.0, 25.0, 37.0, 63.0, 29.0, 44.0, 43.0, 7.0, 24.0, 38.0, 30.0, 21.0, 34.0, 17.0, 26.0, 45.0, 16.0, 29.0, 35.0, 7.0, 50.0, 30.0, 33.0, 24.0, 7.0, 50.0, 25.0, 35.0, 3.0, 35.0, 19.0, 24.0, 32.0, 36.0, 59.0, 23.5, 23.0, 20.0, 18.0, 28.0, 38.0, 61.0, 43.0, 8.0, 22.0, 45.0, 29.0, 15.0, 29.0, 29.0, 36.0, 20.0, 16.0, 43.0, 39.0, 53.0, 13.0, 25.0, 41.0, 12.0, 35.0, 17.0, 29.0, 35.0, 47.0, 33.0, 39.0, 40.0, 39.0, 26.0, 52.0, 14.0, 17.0, 43.0, 51.0, 45.0, 49.0, 47.0, 49.0, 46.0, 29.0, 15.0, 47.0, 47.0, 29.0, 43.0, 30.0, 45.0, 48.5, 27.0, 9.0, 17.0, 29.0, 19.0, 35.0, 44.0, 3.0, 57.0, 35.0, 24.0, 51.0, 42.0, 30.0, 17.0, 6.0, 29.0, 18.0, 14.0, 19.0, 7.0, 39.0, 31.0, 50.0, 29.0, 10.0, 3.0, 23.0, 38.0, 49.0, 12.0, 36.0, 26.0, 19.0, 28.0, 78.0, 14.0, 24.0, 16.0, 64.0, 6.0, 45.0, 55.0, 44.0, 16.0, 62.0, 9.0, 27.0, 19.0, 21.0, 24.0, 22.0, 16.0, 24.0, 73.0, 20.0, 42.0, 26.0, 31.0, 38.0, 14.0, 20.0, 21.0, 6.0, 48.0, 41.0, 35.0, 37.0, 45.0, 12.0, 33.0, 49.0, 29.0, 8.0, 26.0, 20.0, 49.0, 27.0, 27.0, 26.0, 6.0, 66.0, 30.0, 38.0, 25.0, 34.0, 28.0, 52.0, 86.0, 14.0, 40.0, 40.0, 18.0, 32.0, 36.0, 7.0, 33.0, 35.0, 59.0, 60.0, 29.0, 20.0, 69.0, 35.0, 32.0, 37.0, 4.0, 31.0, 37.0, 47.0, 25.0, 22.0, 17.0, 28.0, 19.0, 51.0, 11.0, 48.0, 41.0, 17.0, 15.0, 15.0, 19.0, 37.0, 45.0, 17.0, 45.0, 26.0, 13.0, 53.0, 14.0, 53.0, 61.0, 24.0, 55.0, 23.0, 29.0, 29.0, 43.0, 42.0, 36.0, 8.0, 37.0, 18.0, 10.0, 27.0, 58.0, 21.0, 24.0, 8.0, 16.0, 47.0, 14.0, 43.0, 34.0, 17.0, 36.0, 16.0, 29.0, 42.0, 39.0, 15.0, 25.0, 40.0, 45.0, 60.0, 18.0, 15.0, 21.0, 41.0, 60.0, 29.0, 74.0, 40.0, 24.0, 34.0, 27.0, 56.0, 42.0, 14.0, 29.0, 31.0, 35.0, 31.0, 12.0, 32.0, 26.0, 16.0, 19.0, 25.0, 28.0, 20.0, 7.0, 23.0, 66.0, 33.0, 6.0, 36.0, 42.0, 38.0, 15.0, 29.0, 44.0, 7.0, 88.0, 24.0, 26.0, 46.0, 6.0, 29.0, 10.0, 50.0, 53.0, 31.0, 30.0, 63.0, 35.0, 13.0, 17.0, 68.0, 16.0, 35.0, 17.0, 73.0, 17.0, 32.0, 39.0, 21.0, 19.0, 56.0, 37.0, 38.0, 20.0, 8.0, 44.0, 33.0, 24.0, 17.0, 73.0, 23.0, 30.0, 47.0, 7.0, 35.0, 50.0, 47.0, 34.0, 34.0, 59.0, 45.0, 53.0, 55.0, 47.0, 45.0, 46.0, 35.0, 31.0, 17.0, 27.0, 22.0, 32.0, 57.0, 32.0, 12.0, 19.0, 54.0, 24.0, 26.0, 16.0, 30.0, 29.0, 48.0, 14.0, 4.0, 21.0, 30.0, 33.0, 23.0, 10.0, 5.0, 52.0, 20.0, 18.0, 27.0, 52.0, 30.0, 53.0, 24.0, 44.0, 37.0, 38.0, 36.0, 54.0, 30.0, 6.0, 22.0, 28.0, 40.0, 48.0, 41.0, 18.0, 12.0, 33.0, 8.0, 20.0, 14.0, 44.0, 38.0, 36.0, 26.0, 20.0, 24.0, 18.0, 23.0, 23.0, 9.0, 24.0, 61.0, 24.0, 27.0, 13.0, 39.0, 36.0, 11.0, 33.0, 33.0, 44.0, 27.0, 36.0, 34.0, 33.0, 40.0, 24.0, 14.0, 34.0, 38.0, 15.0, 18.0, 20.0, 31.0, 58.0, 37.0, 38.0, 17.0, 23.0, 3.0, 25.0, 42.0, 18.0, 14.0, 54.0, 31.0, 6.0, 26.0, 69.0, 56.0, 48.0, 45.0, 36.0, 24.0, 70.0, 5.0, 34.0, 19.0, 10.0, 37.0, 15.0, 10.0, 53.0, 35.0, 13.0, 14.0, 47.0, 52.0, 38.0, 24.0, 68.0, 22.0, 56.0, 53.0, 39.0, 20.0, 53.0, 12.0, 16.0, 68.0, 46.0, 33.0, 42.0, 17.0, 55.0, 31.0, 40.0], \"xaxis\": \"x\", \"y\": [0.8156061324462894, 0.42491310922683634, 0.8867827646463432, 0.8014995238430205, 0.30499958310650876, 0.5817355832705369, 0.959171062334887, 0.7854416128369749, 0.9085690698200813, 0.8998600376511439, 0.6341165000693628, 0.412102187638673, 0.7643629411050379, 0.4710001938005606, 0.40182653035141874, 0.40438056362905367, 0.8870480016118494, 0.3650667978415713, 0.9064321709292111, 0.9327245345966092, 0.6458420185168736, 0.8821841129047617, 0.6704018506542557, 0.7655671181822064, 0.8616986618932058, 0.48774537944210006, 0.9637355036179479, 0.6794204065079696, 0.6044835155949141, 0.7867954023600708, 0.9137982268836646, 0.5867502063434873, 0.8048584290077971, 0.9718511071053526, 0.9627192884041744, 0.7978623718349598, 0.6091120966723917, 0.8943338178728011, 0.8853376735027229, 0.9045563504021151, 0.9264844632598176, 0.6342457655367447, 0.9414033426130164, 0.5636516403732365, 0.5172967922101196, 0.4836896337264441, 0.35199620689495453, 0.788779954566273, 0.9696552399248426, 0.772496554239754, 0.8132656157621138, 0.4539090261140653, 0.9333708926412786, 0.679765045723866, 0.48457442622955804, 0.4248820606938153, 0.6737819616086004, 0.8780741425819777, 0.38340602447337646, 0.90634085684919, 0.5574014604752268, 0.6804147683859246, 0.9077110088845216, 0.7718472635729894, 0.4717552048891654, 0.22222808308441652, 0.8616549355667619, 0.705749071892896, 0.4699129352300819, 0.9680524782819758, 0.8891353183282249, 0.9466602521798594, 0.8553382520847058, 0.7430243903066251, 0.6616131862201935, 0.6919609500216202, 0.96565744679506, 0.913108907487878, 0.5395521774612226, 0.9026238558501023, 0.6550941529376255, 0.9757876320152292, 0.8833495792027257, 0.6666029765862381, 0.8504582120840628, 0.9320215595878566, 0.7639947574915884, 0.6085229656221847, 0.9557131606798471, 0.46184432615952054, 0.5642658412077981, 0.8815615400732472, 0.7189203536918151, 0.9301020530176726, 0.7341394174346678, 0.7759189559372703, 0.8448078654733812, 0.9012666081120407, 0.8926028620066223, 0.5287492720273277, 0.6874206920638863, 0.37408584674942635, 0.8348370105186077, 0.8697567261320243, 0.9175759024810304, 0.44644098895981, 0.8874384748400057, 0.7787567487441118, 0.9416122482572158, 0.3265229243180111, 0.9308095750950773, 0.42267134533232753, 0.43068181214270274, 0.8727308285810839, 0.7201611177732586, 0.8430904589044517, 0.8140617541555761, 0.9456747441572588, 0.6672663325862807, 0.8756470416862959, 0.518871521713375, 0.7040615347784164, 0.4957960231649875, 0.6250130361556073, 0.27413726132188326, 0.5193133578087885, 0.37656641690434584, 0.5808048103476511, 0.7917827117482167, 0.36569143480873245, 0.7232542293832885, 0.9785934574433302, 0.5715075300165849, 0.8182555969893297, 0.5448461144048058, 0.9491291995847589, 0.4833587957991669, 0.3189279754564957, 0.9184825510014271, 0.5524830505676419, 0.9600429304649183, 0.7818180966165994, 0.7962710274484252, 0.7569429870375118, 0.46184432615952054, 0.7641514270390748, 0.9486763575522457, 0.8086368705092697, 0.6784536879503494, 0.6877019790624462, 0.6082670858563528, 0.6053794617794684, 0.6319330693089359, 0.4982105707488519, 0.6787928880949093, 0.9231980717613485, 0.8831230955067948, 0.6845485656817341, 0.8799204262605215, 0.9164563829924386, 0.7819268199067826, 0.23469888428232324, 0.9492377841603665, 0.8826092272015389, 0.6360541596480074, 0.5184081252698399, 0.6400126753125241, 0.542646305979658, 0.4479501208302092, 0.7783171875827786, 0.7867712153112567, 0.5236605417423803, 0.6959846197179591, 0.7925023358445066, 0.6683189355892497, 0.18737025221649042, 0.42506327048176057, 0.7272596040941706, 0.7314191754306454, 0.4827891324637794, 0.6649341228620356, 0.9038332731164471, 0.9588917860646077, 0.8945194928389463, 0.49833043835950624, 0.7997712594855277, 0.8577935987172323, 0.7622736922026153, 0.8039391974899521, 0.7396811504731934, 0.8115340233127679, 0.801728888664367, 0.738451208106372, 0.5859674792922007, 0.1865203674848816, 0.8773430435604171, 0.36888329310067386, 0.8651817982269884, 0.9067615420962557, 0.8594983988587351, 0.7437750884018276, 0.9145224932934428, 0.9135679891815164, 0.8001832456898428, 0.6860977766129374, 0.9377826008632761, 0.9300369611912853, 0.6997062971069969, 0.5693182102579236, 0.3404656140239559, 0.7160591142088384, 0.7953146078011, 0.8869803873277935, 0.7639982823097876, 0.8681285227071118, 0.576868797021353, 0.93035102563313, 0.8375600281828176, 0.8279918435672958, 0.9266689436294401, 0.7559862346636359, 0.5099889666930224, 0.6914445842613687, 0.9651950326885705, 0.87851968214492, 0.8499702807396289, 0.4685752957996948, 0.7241546992314323, 0.7848147251007912, 0.7341394174346678, 0.7008877443692281, 0.340588975625529, 0.5013021766499856, 0.8321174529331695, 0.8818378666553491, 0.9176909075187759, 0.8634678749265305, 0.7436082905772717, 0.9343776659412377, 0.7668809937296346, 0.6243383802582345, 0.5332560471205093, 0.6907315465649003, 0.16626803588025432, 0.1668542888532837, 0.7408943843163458, 0.5221312328975666, 0.7457559475413279, 0.46389636934606376, 0.9292627865919654, 0.5268311186840582, 0.4244151934213653, 0.643310536612302, 0.8577438313980266, 0.7816208399762355, 0.8553382520847058, 0.7010035672814305, 0.5242572272016158, 0.9187320011579697, 0.8703498177621264, 0.6713045345576062, 0.9137982268836646, 0.8614414457916845, 0.9445662266054761, 0.8808216590199034, 0.7386378115490353, 0.8873009977622293, 0.9157094897337859, 0.6606038558129893, 0.9296803968514485, 0.8864322240790464, 0.5146720135715994, 0.8720710714485208, 0.9415427660945741, 0.9138701141498735, 0.6527559092576063, 0.8751970040938668, 0.9249766460056568, 0.801728888664367, 0.6575848465963361, 0.6934824043184128, 0.8619113960143526, 0.9419078024651042, 0.9591721389341828, 0.8397407150753159, 0.9084383840076588, 0.4963969309336195, 0.7359588175524252, 0.3531961907069324, 0.9279819479140234, 0.7752976919572294, 0.8665226278427577, 0.9515211055933231, 0.7314191754306454, 0.890886918514299, 0.3235491032739525, 0.3719939405423586, 0.6323804178173072, 0.8398006965792015, 0.8239469134189235, 0.8592101816891015, 0.7615002907198236, 0.8688259750909261, 0.8718104001390852, 0.5838074755684882, 0.8756470416862959, 0.901850575196968, 0.9451930143658351, 0.6253812669856891, 0.5890764576710766, 0.4921052500998711, 0.4862070578416567, 0.9170647663398394, 0.7035583451969506, 0.8476385889092957, 0.5603058978573646, 0.5810606890504925, 0.9088604673919816, 0.8903252600075929, 0.944267921154058, 0.9435968591480925, 0.938237366988842, 0.9357286047893738, 0.7961386682142712, 0.7840233885688647, 0.2513590507613302, 0.7389284097502917, 0.9053472250810051, 0.44438282424164377, 0.862281110352348, 0.8021059248496223, 0.9152740930046814, 0.643737358401971, 0.8540304955499701, 0.8613418170006786, 0.6911084183178322, 0.8848367871057808, 0.8387883096682573, 0.5942651630821018, 0.65691393717736, 0.6369979527510315, 0.8280658524313272, 0.9640736168216585, 0.6546311715671466, 0.5599819536107853, 0.48348053317652906, 0.7668016587569692, 0.03620763244300767, 0.7364400865449663, 0.37408584674942635, 0.8767503774172, 0.8743962287172513, 0.8751970040938668, 0.8833495792027257, 0.7091886355621774, 0.87006937054451, 0.7904001815220257, 0.8761418339280951, 0.8306834851111597, 0.7531715889012326, 0.38181207472529843, 0.6490458991820136, 0.9138057013338913, 0.9046222904886461, 0.17956061692355052, 0.7506163079023257, 0.8963285795381793, 0.8848361664653354, 0.9283037217377402, 0.45996158699034445, 0.7290858434196763, 0.8319094967702583, 0.6578018675312727, 0.18727567457681707, 0.8673410249845035, 0.9453298670648187, 0.9446538464906173, 0.19605573045952288, 0.6723831041639817, 0.3438281302059518, 0.37858973820495484, 0.6953170483296187, 0.21463507152544156, 0.26963792069965237, 0.3280912492037974, 0.8399932187801539, 0.420387898633768, 0.36522500752858966, 0.5810560693343539, 0.9306346767722963, 0.7167716539092029, 0.656736106921484, 0.5549139996760648, 0.6909161521388689, 0.591904263202073, 0.884703171197362, 0.866402281883595, 0.7582770814524421, 0.8990773411030794, 0.1818065866116437, 0.6222165686186035, 0.17261914235374884, 0.8156064679757086, 0.4851213943917703, 0.8871292211128762, 0.8398494053952754, 0.703270618172154, 0.6305543892506115, 0.7494149477175548, 0.1532408287022325, 0.6159732902773407, 0.738220551127759, 0.8354520044441791, 0.8536870432671441, 0.5751476712690671, 0.9077719201719568, 0.7878515691455199, 0.6672663325862807, 0.45293736875445273, 0.17058553029544155, 0.747933377844996, 0.8400163125056676, 0.4516778718827729, 0.6082670858563528, 0.8401843469141149, 0.7636885291754726, 0.789170795337903, 0.8128612802083497, 0.7522530659814418, 0.8086757686066508, 0.8356255123032285, 0.9241779635105248, 0.9674588597049086, 0.9368885694202199, 0.4990764491242286, 0.876561204324957, 0.554264192243629, 0.5967716244634195, 0.9060244606340249, 0.8401608718856799, 0.7329750583133859, 0.8021769878309102, 0.9316817655017511, 0.45488322534173153, 0.798578398438993, 0.7425236774748816, 0.5742682328784404, 0.4937681935814938, 0.8972164286692267, 0.8914273370768748, 0.9377613518261881, 0.8862258850530264, 0.8591757581361523, 0.7410678096850266, 0.6822336012657398, 0.9201658505843877, 0.6982578893131915, 0.5746709232170782, 0.7626532952948841, 0.7137703530889916, 0.7520971196461234, 0.4473853625959922, 0.7957460056304991, 0.4833174871501707, 0.8758467705785958, 0.4689303842787964, 0.6133612564737879, 0.8568681391705205, 0.6835133967314007, 0.9732070839986944, 0.21435716257549006, 0.5761668962420043, 0.4055433603128916, 0.3743394998756179, 0.9118635774953143, 0.964551884718591, 0.9306459334511011, 0.8424802355113449, 0.7739144871152517, 0.6872688771534424, 0.8590561833388345, 0.6714384475466295, 0.6408669500407106, 0.5203550269219845, 0.2856853969697174, 0.857760555506807, 0.9307094503226838, 0.6787928880949093, 0.8308635255795866, 0.29271374211533296, 0.6769315553524353, 0.23831547366416572, 0.5895099457120908, 0.8994675076574448, 0.8893400405584444, 0.8456825404777587, 0.5399612081435882, 0.6188649121485582, 0.9281492942813848, 0.7611740601422801, 0.46550237374781617, 0.8896861436466836, 0.9038901015569306, 0.5044440900554997, 0.9215480939667524, 0.6930273792518707, 0.8723244804196287, 0.5624338775604165, 0.9226297661236537, 0.8469231754225917, 0.9430557295321259, 0.9097116306258912, 0.5988707702267543, 0.3813853072548755, 0.8843832309478876, 0.9006952500629406, 0.918975987201669, 0.18997930334445084, 0.8923106748541326, 0.8461388699436441, 0.5973439234355874, 0.9544642924744549, 0.91770416680597, 0.9177239854204658, 0.17584552180125673, 0.9240099144459667, 0.48524948024905407, 0.8889685222180134, 0.5785503824403398, 0.7511953459672914, 0.6887596776945688, 0.6717539058356753, 0.7168761391602206, 0.7134478068952186, 0.834626350903405, 0.5715867980362679, 0.6588392688727011, 0.9488572786900573, 0.8920529250761863, 0.8891353183282249, 0.707981940789761, 0.926348680038428, 0.631489487929038, 0.7443856388661001, 0.9260754381930228, 0.9544642924744549, 0.8497401318990601, 0.5604010177433062, 0.8036334301115304, 0.7898153537185114, 0.8491431337122072, 0.6570881560807702, 0.8389599143569951, 0.7944137576415592, 0.8132668978866627, 0.44714680104169846, 0.7978021044641371, 0.41921696608658454, 0.38876183891604754, 0.9248463736054193, 0.4277915265084825, 0.6345107008491314, 0.8008942533173764, 0.5087430598332189, 0.9414938992689892, 0.6922115882765215, 0.8296175750175913, 0.8593339228153332, 0.8975141534758351, 0.5977126281557783, 0.9279478536756302, 0.6485770817571253, 0.8905823996589662, 0.9332072841984264, 0.9432461110830079, 0.9410120781436498, 0.6339696776630096, 0.7120962557761497, 0.5841709037351369, 0.5928970840420333, 0.9006589732900512, 0.936371533648048, 0.6907852379101131, 0.7675780198071424, 0.9444587893431046, 0.4702336163336472, 0.8925536722101626, 0.8158978708906081, 0.822780392485108, 0.8037335327290217, 0.8382351003285965, 0.8941557358589171, 0.4796498334522667, 0.926348680038428, 0.6842118015950474, 0.6463580983468415, 0.8292048071278182, 0.5834426687867836, 0.8419845362148763, 0.2431563391580561, 0.7763142135369961, 0.9390550746437164, 0.7774903237071782, 0.8141232663130791, 0.9444089886680379, 0.430401459478284, 0.9192677156927759, 0.8427595869840984, 0.87120858451521, 0.5693182102579236, 0.820012080301976, 0.58719119911586, 0.42769376643096113, 0.3542595869275313, 0.89579938191327, 0.8743523014696554, 0.7820497043505815, 0.5279069501129625, 0.8869579700149332, 0.45488774279476296, 0.8514781135508903, 0.8278297091497892, 0.663749097381813, 0.5132851713944618, 0.4906566565015208, 0.6415219885510332, 0.6991293681294938, 0.8150539074042624, 0.5800669536763935, 0.9583771200922359, 0.7366090055976814, 0.5747817696023392, 0.5315376696882942, 0.8074446941396305, 0.9038901015569306, 0.9087015650331977, 0.6697291810323083, 0.5800669536763935, 0.8807270543114014, 0.5135845984304893, 0.9352791850238339, 0.36120709973337456, 0.6206709330576408, 0.906286252315459, 0.7937202818717513], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [76.0, 19.0, 15.0, 32.0, 18.0, 17.0, 34.0, 9.0, 36.0, 28.0, 20.0, 15.0, 46.0, 8.0, 30.0, 61.0, 24.0, 7.0, 23.0, 3.0, 50.0, 47.0, 5.0, 34.0, 40.0, 15.0, 28.0, 22.0, 44.0, 27.0, 7.0, 25.0, 26.0, 60.0, 52.0, 10.0, 24.0, 58.0, 4.0, 54.0, 14.0, 10.0, 21.0, 24.0, 20.0, 23.0, 25.0, 39.0, 18.0, 22.0, 6.0, 26.0, 41.0, 5.0, 55.0, 42.0, 41.0, 39.0, 5.0, 29.0, 50.0, 47.0, 8.0, 55.0, 23.0, 36.0, 31.0, 32.0, 15.0, 13.0, 52.0, 3.0, 77.0, 20.0, 21.0, 55.0, 64.0, 7.0, 30.0, 15.0, 23.0, 16.0, 65.0, 9.0, 28.0, 11.0, 38.0, 5.0, 26.0, 17.0, 3.0, 55.0, 14.0, 77.0, 53.0, 53.0, 27.0, 39.0, 49.0, 31.0, 68.0, 23.0, 23.0, 44.0, 26.0, 18.0, 37.0, 6.0, 12.0, 25.0, 18.0, 16.0, 3.0, 22.0, 27.0, 18.0, 66.0, 20.0, 21.0, 12.0, 26.0, 13.0, 29.0, 22.0, 52.0, 68.0, 110.0, 9.0, 8.0, 48.0, 5.0, 11.0, 62.0, 61.0, 36.0, 47.0, 13.0, 36.0, 36.0, 33.0, 16.0, 74.0, 3.0, 21.0, 40.0, 61.0, 40.0, 56.0, 25.0, 22.0, 23.0, 17.0, 38.0, 7.0, 36.0, 10.0, 33.0, 53.0, 15.0, 10.0, 14.0, 5.0, 26.0, 34.0, 7.0, 8.0, 44.0, 36.0, 43.0, 54.0, 52.0, 13.0, 35.0, 22.0, 18.0, 6.0, 7.0, 21.0, 15.0, 17.0, 56.0, 3.0, 36.0, 14.0, 64.0, 48.0, 34.0, 5.0, 38.0, 45.0, 16.0, 19.0, 57.0, 8.0, 35.0, 6.0, 20.0, 30.5, 67.0, 44.0, 48.0, 48.0, 48.0, 15.0, 27.0, 37.0, 51.0, 11.0, 5.0, 3.0, 33.0, 48.0, 29.0, 36.0, 27.0, 26.0, 44.0, 9.0, 24.0, 5.0, 8.0, 52.0, 62.0, 29.0, 21.0, 44.0, 27.0, 40.0, 21.0, 3.0, 18.0, 16.0, 17.0, 19.0, 35.0, 33.0, 67.0, 7.0, 40.5, 66.0, 20.0, 43.0, 55.0, 61.0, 52.0, 20.0, 38.0, 70.0, 13.0, 9.0, 35.0, 32.0, 26.0, 10.0, 34.0, 54.0, 20.0, 6.0, 39.0, 6.0, 46.0, 49.0, 59.0, 21.0, 28.0, 53.0, 38.0, 25.0, 23.0, 29.0, 128.0, 22.0, 14.0, 24.0, 61.0, 61.0, 34.0, 66.0, 15.0, 11.0, 6.0, 14.0, 12.0, 16.0, 9.0, 51.0, 21.0, 57.0, 17.0, 54.0, 8.0, 17.0, 146.5, 6.0, 16.0, 7.0, 29.0, 58.0, 60.0, 15.0, 17.0, 22.0, 26.0, 53.0, 18.0, 11.0, 33.0, 11.0, 6.0, 13.0, 64.0, 49.0, 14.0, 52.0, 47.0, 22.0, 52.5, 24.0, 58.0, 9.0, 7.0, 62.0, 15.0, 4.0, 57.0, 32.0, 22.0, 58.0, 12.0, 61.0, 48.0, 23.0, 10.0, 81.0, 23.0, 6.0, 59.0, 5.0, 30.0, 67.0, 18.0, 48.0, 31.0, 12.0, 46.0, 13.0, 28.0, 47.0, 9.0, 50.0, 21.0, 10.0, 29.0, 17.0, 16.0], \"xaxis\": \"x\", \"y\": [0.2802292104526322, 0.9455194119275858, 0.4978743212349556, 0.5289145624519528, 0.28439238707197784, 0.2033309570226689, 0.27345747478543325, 0.8322873304845451, 0.389055896812549, 0.3675472469853882, 0.5781933746273124, 0.7401955299744071, 0.44969671697605845, 0.4367887814338696, 0.31593955341667695, 0.3775624358859999, 0.19282181046294666, 0.048451763306065584, 0.6005928650583868, 0.032225376113695775, 0.427412413738938, 0.23973251442015217, 0.13890126550157303, 0.8613925272127, 0.329663916828638, 0.19359965390713213, 0.6827271716759634, 0.1960905505555538, 0.08135735686643118, 0.39737240301928484, 0.13902987396822816, 0.6514166433739288, 0.6994753721471061, 0.7140886736258081, 0.5021795028970708, 0.48743245558712556, 0.5731139673640956, 0.8820820642542792, 0.559972149724866, 0.5061565591493914, 0.5066810377847554, 0.833805652807593, 0.6979972163580744, 0.3177574231538272, 0.13068190592986567, 0.758876109553896, 0.5681062961269688, 0.715544821914063, 0.762062625203523, 0.4464438677531786, 0.20995974230910305, 0.5262622410710028, 0.39442669669188163, 0.2537324982988368, 0.6775437642744659, 0.23876321589577687, 0.6369158982934647, 0.38960060362966165, 0.6034323722874255, 0.7769991715799629, 0.15199748354041337, 0.5641412449951732, 0.7590466800561823, 0.5969347905931296, 0.1048362779837843, 0.7217824369593382, 0.2662339163773806, 0.16472378978351135, 0.37760124376932414, 0.7071736299639594, 0.3436862995931572, 0.8384434752264291, 0.3635333644877426, 0.7813188949129265, 0.7279369976219869, 0.5641098847382463, 0.3863964747623771, 0.9209913370067284, 0.1477144681640183, 0.8809374658555192, 0.6533168894759348, 0.8873477284758582, 0.3697306267878623, 0.28319023347825867, 0.5203701741750857, 0.5523747693308857, 0.6387521731780509, 0.3881380695009739, 0.8487896327149285, 0.4636606453307818, 0.8384434752264291, 0.558266603669778, 0.21657231888677728, 0.3635333644877426, 0.5512671313974766, 0.5051039398599867, 0.5827915753039158, 0.49441682850108926, 0.47309171914705017, 0.6262595591688196, 0.5508242483721094, 0.47332791509789995, 0.7117569366896692, 0.3933786516273859, 0.16465066549244003, 0.7490394132223248, 0.769261050002088, 0.7431932405995126, 0.3141000916210982, 0.723735045552473, 0.6484132891031948, 0.688519894019609, 0.40496704226994307, 0.5803736122960511, 0.6327801522745691, 0.45115706990411364, 0.37268733756108086, 0.9009693101135351, 0.06496389958099598, 0.44431713201158524, 0.39960831974332744, 0.8662156944598043, 0.31018081106061823, 0.5339551117365043, 0.33311273919547707, 0.400132762133902, 0.8528754522806217, 0.14419347879543085, 0.11672350429510901, 0.44556702529145975, 0.6160120899414699, 0.13766892845409207, 0.5517204028384314, 0.5232178919035022, 0.35483403305733974, 0.4900213704561591, 0.8854578072659228, 0.43084122675663034, 0.7601186327653665, 0.14072030431570776, 0.6186690618327106, 0.5245054232921349, 0.7326259458716644, 0.5690781983520095, 0.4018508815425063, 0.24877469563805235, 0.7952501197393639, 0.8766221356386195, 0.303451532996695, 0.5357745481647883, 0.7096524147827454, 0.20877177283968149, 0.8635610141758273, 0.46736762313881036, 0.6061151992073851, 0.113015272873705, 0.40446014603085867, 0.6332606063976143, 0.648705381890928, 0.42186952587750404, 0.8047913565308571, 0.3017058309841093, 0.38406990132164637, 0.33494193042999065, 0.19929939967121216, 0.8624919783238055, 0.528785836409086, 0.43084122675663034, 0.47042159929499583, 0.5061565591493914, 0.5759491569657543, 0.8468794444363914, 0.20342296359496542, 0.5170831534483544, 0.3666753044655067, 0.6131723001375537, 0.4410646109528086, 0.6903416342484309, 0.3866428492574258, 0.4636606453307818, 0.4525459302795702, 0.03199256040434073, 0.7029629492254846, 0.2433141614541866, 0.548755973819273, 0.3775060302547258, 0.06593060991448157, 0.8745624549148976, 0.22931948662359403, 0.27267688907931714, 0.589328430619086, 0.8007160756317941, 0.5525637789187225, 0.5008522318356121, 0.4556212410144909, 0.17391722008742402, 0.43574637053357784, 0.3237440077649342, 0.6071692164257629, 0.6925152430641841, 0.592675381607996, 0.43854150134957587, 0.43854150134957587, 0.42437112972565305, 0.8061118855433299, 0.35195592295594336, 0.7605370065149419, 0.38898578429124253, 0.67510953655807, 0.872979709380305, 0.710510994258769, 0.720290290780972, 0.4820787970895852, 0.42019280799979697, 0.4304380754474639, 0.25285023254778977, 0.3238056884730761, 0.39471961640683584, 0.09510031985475974, 0.367046376808582, 0.21500793651835448, 0.8705359023101334, 0.6100742529031461, 0.6226449432624995, 0.7279369976219869, 0.3643494054700089, 0.09992017521484964, 0.41475515148757036, 0.6462260464983366, 0.14102909592513518, 0.48949585696458414, 0.5239520436918008, 0.6084413884537807, 0.5655473856702703, 0.9517420512476797, 0.7489379515982664, 0.4647937384849751, 0.7915321263825208, 0.44112279258530757, 0.5734340256727429, 0.6604471727860799, 0.4845203185458914, 0.6968730453869196, 0.5315374962198609, 0.8685951485887234, 0.6242442748350044, 0.2912097196987059, 0.7725938221565348, 0.2067629769731588, 0.30221725334927335, 0.13129342562285412, 0.6467789443522378, 0.6994753721471061, 0.11825382206919556, 0.41022417118631593, 0.4882665226122541, 0.7732287086973071, 0.25374762405010176, 0.49441682850108926, 0.3723877205427743, 0.652330313245635, 0.43667799883041203, 0.5964718913578133, 0.55172276504346, 0.24113559934961917, 0.8243980268882987, 0.7263843594269437, 0.43535214809021755, 0.8721122798612579, 0.18723914490145582, 0.6486906676970999, 0.11576704656818047, 0.4328241622975616, 0.491481212420291, 0.5264345378086769, 0.33856526784971647, 0.2967410926251248, 0.581398831228375, 0.5973776665460488, 0.6195406102170065, 0.37782717658841725, 0.323061133240968, 0.17420808473594895, 0.19634770547538957, 0.46492234760650425, 0.49613167963272686, 0.5812209036149294, 0.6057291775435286, 0.63414717387345, 0.5702687187355167, 0.8604975146328253, 0.6309022132706124, 0.48732991249542923, 0.6887148870948692, 0.41581945293096145, 0.5706760596351739, 0.4831274653996314, 0.06684727567316755, 0.49090643211649887, 0.15191610726090596, 0.2711405311223577, 0.7653618545702112, 0.09266565137124261, 0.4554350627407873, 0.19698919164573708, 0.6930185080649685, 0.5227537922811563, 0.50434568709929, 0.7082092780767422, 0.46058046365566996, 0.6735723234187477, 0.4285936050615775, 0.323061133240968, 0.5168500865319015, 0.6161307914674419, 0.23456444218973552, 0.3192004782541023, 0.21968945907811915, 0.5028183230931117, 0.43371621376298963, 0.6744209213341115, 0.5940260419772637, 0.13783310426722128, 0.5136444387530009, 0.5508647999875032, 0.4955911012838212, 0.9814394195009358, 0.8260225289794664, 0.17965956338109995, 0.46844896472597397, 0.6048119589659149, 0.3289160319090978, 0.2454606394453749, 0.7497022835596558, 0.683485355417811, 0.20995974230910305, 0.23504578258460665, 0.37175956099497537, 0.4875530438829156, 0.24982584224249993, 0.6282829625348888, 0.4520795162158371, 0.8200372413039435, 0.12832513643528837, 0.5299630655130737, 0.29552777318700446, 0.24021937552346023, 0.5429028773737552, 0.6311869746243346, 0.4145977043912777, 0.39329840463575844, 0.39070335653410526, 0.4286990948130573, 0.846836560604146, 0.6880850122626078], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (curr)\", \"type\": \"scatter\", \"x\": [18.0, 55.0, 24.0, 15.0, 23.0, 27.0, 37.0, 21.0, 32.0, 57.0, 13.0, 29.0, 36.0, 26.0, 31.0, 29.0, 32.0, 11.0, 1.0, 42.0, 53.0, 39.0, 12.0, 45.0, 46.0, 32.0, 35.0, 61.0, 22.0, 34.0, 26.0, 23.0, 59.0, 26.0, 37.0, 45.0, 32.0, 60.0, 16.0, 10.0, 39.0, 31.0, 37.0, 46.0, 11.0, 34.0, 23.0, 18.0, 73.0, 38.0, 6.0, 22.0, 35.0, 14.0, 37.0, 43.0, 37.0, 27.0, 46.0, 18.0, 34.0, 45.0, 30.0, 15.0, 28.0, 31.0, 49.0, 32.0, 38.0, 50.0, 35.0, 36.0, 31.0, 28.0, 26.0, 54.0, 32.0, 53.0, 20.0, 6.0, 23.0, 66.0, 34.0, 22.0, 26.0, 14.0, 41.0, 20.0, 49.0, 14.0, 60.0, 46.0, 18.0, 28.0, 30.0, 26.0, 6.0, 51.0, 6.0, 16.0, 25.0, 26.0, 13.0, 49.0, 35.0, 37.0, 15.0, 20.0, 34.0, 37.0, 32.0, 35.0, 35.0, 13.0, 28.0, 19.0, 46.0, 33.0, 29.0, 21.0, 23.0, 74.0, 8.0, 23.0, 25.0, 5.0, 23.0, 21.0, 10.0, 29.0, 22.0, 18.0, 24.0, 48.0, 20.0, 62.0, 5.0, 24.0, 14.0, 29.0, 57.0, 27.0, 17.0, 46.0, 55.0, 23.0, 55.0, 10.0, 24.0, 20.0, 41.0, 33.0, 24.0, 14.0, 39.0, 10.0, 31.0, 15.0, 23.0, 49.0, 12.0, 10.0, 19.0, 50.0, 8.0, 15.0, 32.0, 13.0, 24.0, 52.0, 38.0, 20.0, 6.0, 3.0, 12.0, 41.0, 46.0, 54.0, 38.0, 17.0, 29.0, 33.0, 40.0, 54.0, 54.0, 26.0, 1.0, 24.0, 45.0, 22.0, 47.0, 17.0, 36.0, 40.0, 39.0, 36.0, 26.0, 18.0, 55.0, 21.0, 26.0, 29.0, 38.5, 21.0, 41.0, 18.0, 24.0, 38.0, 32.0, 79.5, 34.0, 24.0, 18.0, 37.0, 12.0, 35.0, 24.0, 25.0, 23.0, 34.0, 34.0, 56.0, 3.0, 62.0, 56.0, 28.0, 26.0, 44.0, 32.0, 32.0, 16.0, 30.0, 22.0, 31.0, 15.0, 51.0, 29.0, 30.0, 45.0, 18.0, 21.0, 23.0, 21.0, 29.0, 28.0, 13.0, 45.0, 39.0, 26.0, 6.0, 47.0, 68.0, 43.0, 26.0, 36.0, 44.0, 21.0, 13.0, 34.0, 25.0, 8.0, 47.0, 26.0, 67.0, 34.0, 27.0, 29.0, 54.0, 56.0, 58.0, 45.0, 37.0, 10.0, 13.0, 41.0, 12.0, 35.0, 17.0, 40.0, 39.0, 9.0, 25.0, 37.0, 26.0, 30.0, 11.0, 29.0, 22.0, 34.0, 45.0, 19.0, 5.0, 47.0, 26.0, 33.0, 33.0, 25.0, 40.0, 40.0, 28.0, 52.0, 25.0, 95.0, 42.0, 53.0, 24.0, 35.0, 53.0, 62.0, 34.0, 48.0, 15.0, 11.0, 31.0, 26.0, 69.0, 34.0, 11.0, 29.0, 52.0, 39.0, 31.0, 27.0, 50.0, 11.0, 49.0, 30.0, 17.0, 51.0, 20.0, 15.0, 18.0, 11.0, 63.0, 36.0, 23.0, 57.0, 80.0, 28.0, 6.0, 40.0, 27.0, 49.0, 39.0, 15.0, 29.0, 27.0, 7.0, 15.0, 25.0, 37.0, 30.0, 35.0, 14.0, 57.0, 20.0, 8.0, 18.0, 70.5, 13.0, 29.0, 25.0, 32.0, 61.0, 12.0, 53.0, 41.0, 50.0, 58.0, 68.0, 29.0, 29.0, 38.0, 22.0, 10.0, 9.0, 31.0, 17.0, 18.0, 13.0, 34.0, 22.0, 34.0, 56.0, 41.0, 24.0, 35.0, 31.0, 6.0, 43.0, 53.0, 32.0, 21.0, 71.0, 36.0, 11.0, 42.0, 7.0, 27.0, 37.0, 33.0, 37.0, 28.0, 21.0, 19.0, 44.0, 49.0, 23.0, 29.0, 17.0, 8.0, 16.0, 28.0, 9.0, 64.0, 29.0, 64.0, 5.0, 37.0, 19.0, 18.0, 38.0, 9.0, 5.5, 5.0, 50.0, 29.0, 27.0, 24.0, 35.0, 25.0, 20.0, 20.0, 29.0, 8.0, 14.0, 49.0, 53.0, 23.0, 19.0, 48.5, 5.0, 65.0, 27.0, 20.0, 6.0, 26.0, 19.0, 22.0, 15.0, 50.0, 22.0, 40.0, 4.0, 33.0, 49.0, 20.0, 24.0, 57.0, 9.0, 105.0, 44.0, 34.0, 56.0, 53.0, 23.0, 46.0, 14.0, 35.0, 22.0, 42.0, 60.0, 15.0, 25.0, 31.0, 11.0, 61.0, 19.0, 18.0, 63.0, 37.0, 34.0, 33.0, 10.0, 49.0, 26.0, 4.0, 15.0, 6.0, 26.0, 17.0, 44.5, 17.0, 11.0, 10.0, 6.0, 35.0, 15.0, 7.0, 25.0, 42.0, 33.0, 48.5, 40.0, 10.0, 41.0, 57.0, 25.0, 26.0, 31.0, 51.0, 25.0, 31.0, 14.0, 46.0, 41.0, 26.0, 6.0, 53.0, 11.0, 54.0, 8.0, 25.0, 32.0, 81.0, 46.0, 36.0, 36.0, 42.0, 60.5, 15.0, 45.0, 53.0, 41.0, 5.0, 33.0, 6.0, 16.0, 3.0, 52.0, 50.0, 25.0, 6.0, 40.0, 11.0, 16.0, 34.0, 7.0, 17.0, 48.5, 51.0, 14.0, 29.0, 6.0, 21.0, 62.0, 24.0, 19.0, 10.0, 44.0, 44.0, 33.0, 33.0, 8.0, 25.0, 26.0, 73.0, 31.0, 14.0, 56.0, 34.0, 37.0, 67.0, 42.0, 42.0, 30.0, 29.0, 26.0, 50.0, 16.0, 57.0, 40.0, 49.0, 18.0, 38.0, 17.0, 6.0, 56.0, 25.0, 15.0, 18.0, 29.0, 17.0, 10.0, 3.0, 27.0, 26.0, 38.0, 32.0, 47.0, 43.0, 29.0, 60.0, 40.0, 48.0, 17.0, 5.0, 27.0, 36.0, 14.0, 30.0, 41.0, 36.0, 55.0, 17.0, 15.0, 31.0, 29.0, 52.0, 23.0, 14.0, 35.0, 32.0, 21.0, 31.0, 10.0, 34.0, 52.0, 6.0, 59.0, 8.0, 17.0, 31.0, 12.0, 36.0, 25.0, 34.0, 16.0, 22.0, 34.0, 20.0, 50.0, 44.0, 38.0, 46.0, 52.0, 20.0, 32.0], \"xaxis\": \"x2\", \"y\": [0.33396714643252134, 0.5044440900554997, 0.8874896900044845, 0.4686759077780351, 0.23831547366416572, 0.571181601185031, 0.7785327680196316, 0.7290551099174598, 0.9581131370131553, 0.6801000322064107, 0.413367674560271, 0.6667140739211237, 0.9108229754863395, 0.9275086157065797, 0.9186958597750785, 0.7191871442695774, 0.8184457509658746, 0.8597940676688322, 0.7947045908306632, 0.8244149680645384, 0.42771531534877594, 0.5315376696882942, 0.7136291946100958, 0.5510697799054304, 0.6393262665313312, 0.9016582766249417, 0.8560880110261746, 0.8947361144883382, 0.9102326114023062, 0.840723585394272, 0.9264645566705582, 0.5105903360131552, 0.752648770317166, 0.5855954083225455, 0.8989214048388485, 0.5190750352404293, 0.9560713253502463, 0.7273157243430202, 0.9279672131348602, 0.640103147954212, 0.9158977434209615, 0.9035955072010529, 0.7140955379655831, 0.233508355491505, 0.7280578325574358, 0.8810827811902006, 0.3966129217085586, 0.15541760955422754, 0.5851621750323275, 0.9046111951917862, 0.4177213302712193, 0.7993763114768937, 0.6978409661933959, 0.6473373667551029, 0.770784382977056, 0.6500641275496193, 0.548949563093737, 0.9803199442553986, 0.6150775052067382, 0.391333092160729, 0.6966682278280982, 0.9426748402861506, 0.9170092977635526, 0.844625652038695, 0.5621782696252592, 0.8935808323282117, 0.6792214086077275, 0.6719996755401956, 0.5252591274442797, 0.7277045758687855, 0.4685752957996948, 0.8616549355667619, 0.347491516391863, 0.8224130863808733, 0.5340790568488665, 0.6711667658766297, 0.5277539611022016, 0.7226430813715845, 0.8140972745487615, 0.3280236940194876, 0.9543080196225542, 0.7752655593026647, 0.9223925066666061, 0.8588031784191832, 0.6345107008491314, 0.9393010047953068, 0.7897067132703484, 0.8608062836413887, 0.8367885032124018, 0.38555642305179116, 0.8611944449682004, 0.9172341012895443, 0.9206892306522243, 0.9500505925695213, 0.537798347971205, 0.9173482789702866, 0.44454351342386716, 0.8909704850569525, 0.7351932580165473, 0.6818328744935735, 0.7981559962965634, 0.7626532952948841, 0.807353254900461, 0.964411205143099, 0.4685752957996948, 0.6986526320119215, 0.1956969407137045, 0.9233481403380283, 0.8218375601976645, 0.8536269727611236, 0.5637680470866036, 0.42267134533232753, 0.93003590801509, 0.9364808605729722, 0.8816060831574614, 0.9663102962713933, 0.8345570787709832, 0.4997893986747249, 0.7921603237806832, 0.5586815647381762, 0.8622246464681924, 0.9828719612298703, 0.909295720392338, 0.9476267884443668, 0.5395521774612226, 0.901360886913609, 0.39410444510430487, 0.9262213132200262, 0.6627387433216217, 0.9629433821448677, 0.9614311452267452, 0.9802968012486629, 0.933760787013923, 0.34432718187202205, 0.63596173557573, 0.624364378916488, 0.7417789548241253, 0.7300918276682445, 0.6968315453320488, 0.7840233885688647, 0.8958841271622066, 0.5417426694559925, 0.7102579146160282, 0.6004345411549624, 0.515920701757342, 0.7587882454650442, 0.5029588531082266, 0.6887596776945688, 0.8642849605932809, 0.6469572639767995, 0.8103639651534781, 0.939764354405301, 0.694136577696587, 0.6593725303534554, 0.9646797005081557, 0.7979900311745153, 0.792123904710467, 0.8869579700149332, 0.7351250317969437, 0.5332560471205093, 0.9406873315653421, 0.39362685027924615, 0.9466602521798594, 0.8394325033041952, 0.6633442657978572, 0.8126408700417265, 0.7332457619716184, 0.08024070404520958, 0.8667774471450977, 0.6466814331404849, 0.912366876100516, 0.656670904734599, 0.8701678467707724, 0.8875925797813499, 0.9658725076002231, 0.7668332861852056, 0.8604440887473094, 0.934384507524058, 0.9605946056867319, 0.951253157591183, 0.5749289095213865, 0.6279243005170476, 0.7937202818717513, 0.7665301650725991, 0.700127941221274, 0.8531107444728586, 0.7947045908306632, 0.8870566665876504, 0.5476228787844645, 0.8410401833568673, 0.8736671065238262, 0.6519898659949606, 0.936943112068646, 0.9077719201719568, 0.8071889556778997, 0.8815615400732472, 0.8935313268029127, 0.8782891297971865, 0.5029588531082266, 0.5797201450332624, 0.9416775458320723, 0.5958140198486584, 0.2485157288688957, 0.932021424688801, 0.8531502837407814, 0.6344194678828672, 0.632587077283238, 0.9121448358615357, 0.5776545535910985, 0.9052765174806566, 0.8580390107418799, 0.8998644401112552, 0.6784536879503494, 0.9458342431661766, 0.21387363850783603, 0.9530348339880965, 0.7307391114165022, 0.7187682731289255, 0.6905635603269331, 0.9569274903702625, 0.9287384091375525, 0.3856984054091925, 0.504413920551941, 0.5389739198483336, 0.5921068831639978, 0.10702848140489757, 0.8772993497727819, 0.6361944011057532, 0.8952999713010865, 0.7069578609115064, 0.10632960186243966, 0.6465592619811017, 0.9116333268133815, 0.9210441535829985, 0.9483358221641291, 0.5800224234700003, 0.896951343689222, 0.8958659323404018, 0.8896861436466836, 0.7763142135369961, 0.778627444633172, 0.9274605647284293, 0.9167924025380936, 0.6422094408272838, 0.6363725079258666, 0.8694129796739031, 0.5693182102579236, 0.5315376696882942, 0.6814536952243052, 0.30089534057709466, 0.6689448970920832, 0.6419522618821227, 0.6500641275496193, 0.8221968069187356, 0.9285763346020383, 0.8495153837633861, 0.7135666997345446, 0.8850789772017983, 0.9128367188568884, 0.8709442503982084, 0.44714680104169846, 0.7147831401969469, 0.6814536952243052, 0.5823319261018008, 0.7718122970862826, 0.8925058444773368, 0.9249991097277733, 0.7849066379312727, 0.5120166815330335, 0.7863291630268572, 0.8171821177205619, 0.8878235148823457, 0.9813953955585096, 0.5009899161211654, 0.6787020040856314, 0.2747106808400709, 0.6998114428322438, 0.7191783799678735, 0.7566715075843347, 0.7741630673610131, 0.692871858980435, 0.8706970297938403, 0.9226518689226377, 0.619213859232465, 0.9620625840847012, 0.8161066853745392, 0.7984578805051198, 0.8987836568806694, 0.27900511725120763, 0.747868261422589, 0.8013372150606806, 0.4430395412241901, 0.8082746512504794, 0.9248395818955686, 0.8132668978866627, 0.7926355964369082, 0.7243101498981422, 0.8251498778038484, 0.865753667016409, 0.8784859927081519, 0.9613966942665844, 0.8380103992838959, 0.9376908870460701, 0.8505645904112248, 0.5317253080143199, 0.8756470416862959, 0.8823120896825394, 0.8920529250761863, 0.9565288857220365, 0.92576324319171, 0.8397457208604353, 0.8008835764985612, 0.7620555647282774, 0.6333567796033132, 0.8986985644274655, 0.8289197139212982, 0.38568054861828666, 0.4358764146033148, 0.7013568331933456, 0.5524769805317635, 0.8654015550049637, 0.9625385348003681, 0.4997035751430624, 0.5940434106189647, 0.29640429037896177, 0.9370396801623051, 0.7496358493500708, 0.8521916566704996, 0.7519935213994349, 0.8956127660014477, 0.7563308848917781, 0.5425355780301907, 0.1652985164032473, 0.5777375433929663, 0.5926841497777402, 0.5247451599628447, 0.6215406511606532, 0.646742228322253, 0.5236567091352762, 0.8105889943537302, 0.7614647275399787, 0.7272264480694343, 0.44438282424164377, 0.8051848688934031, 0.253979247575754, 0.8737269176380216, 0.7884186533408385, 0.5226162157005312, 0.7776146375974927, 0.8021344726910251, 0.6794204065079696, 0.8398669626756513, 0.3743394998756179, 0.6593725303534554, 0.41008410759983227, 0.8726624594592295, 0.31336232876890546, 0.6187135046228962, 0.9208146539756937, 0.8948907807194619, 0.9475948217130945, 0.7098971478357265, 0.41970311630379203, 0.5524505095188592, 0.6689295490636696, 0.39534528644804523, 0.6686700461744643, 0.6608417181144597, 0.6289006219381473, 0.8112353209803558, 0.9675531845963172, 0.3468688843876404, 0.8171815196180959, 0.9315945487332388, 0.7612383340144859, 0.43979370974717685, 0.9452166580978265, 0.810349906376065, 0.4979189466877109, 0.9054024939516333, 0.7506263221664519, 0.8595966107872783, 0.9041757536760852, 0.5120166815330335, 0.9246344940597735, 0.622364539475366, 0.7975959936185795, 0.9376528402833735, 0.8270495791839716, 0.7463426393970082, 0.8508295060861325, 0.5277539611022016, 0.7926521549058593, 0.8343380415579561, 0.7973631232158779, 0.5423298306356671, 0.6253812669856891, 0.9342151247863544, 0.9064095870896521, 0.8428584418618921, 0.5680191878381406, 0.8230633503438987, 0.857993972512287, 0.8312116035859974, 0.8886868130574391, 0.5695902702544526, 0.8750573328895943, 0.47134086624147714, 0.6082670858563528, 0.8571520978358925, 0.7006810412396262, 0.6001343818465046, 0.8680196363335714, 0.7833148206731655, 0.835330250744176, 0.6883000602161935, 0.4297997702781997, 0.7132181587745201, 0.941909753873568, 0.9298379484442667, 0.8950633078112005, 0.9652574497835966, 0.8593048115498744, 0.23022113319019433, 0.5548683876071567, 0.8789570823277312, 0.7176343272433334, 0.7135972690872326, 0.900955402304434, 0.89110615578316, 0.8021344726910251, 0.36734125225010755, 0.9233813125795639, 0.9269988231022361, 0.6021478506882372, 0.27064660283581765, 0.7595966254948197, 0.5317253080143199, 0.9626288904553877, 0.518871521713375, 0.4244151934213653, 0.8784852709235653, 0.667697582798242, 0.6791650855490978, 0.8659372985570389, 0.5217980090164113, 0.9757802673562255, 0.20769640873195563, 0.6900575067285889, 0.15051833553221247, 0.8476988333501053, 0.12043274000614122, 0.6546311715671466, 0.412102187638673, 0.6339696776630096, 0.6925917751558638, 0.8074446941396305, 0.8417042066658985, 0.4702054036006336, 0.8107456318417504, 0.934253622333564, 0.9671353887875448, 0.3776875782453083, 0.5133306968464912, 0.8279918435672958, 0.7295730380004212, 0.8398957027397556, 0.7470826509089123, 0.7722124156410631, 0.3944809481034696, 0.5801047158883857, 0.7134138458261836, 0.8265590446981121, 0.5836238058504062, 0.7538957359152121, 0.9708936701567454, 0.41507295289487073, 0.9039211350062085, 0.5109703825452502, 0.8880660412534, 0.6332514250278477, 0.703270618172154, 0.863031725372896, 0.9601349291832292, 0.5845797646527732, 0.8357575010967041, 0.9584406458449958, 0.8733333206292072, 0.4740801794177068, 0.5787650908025566, 0.38525623454815555, 0.5715075300165849, 0.951253157591183, 0.831291834366621, 0.6482062646591596, 0.5447536045265621, 0.8456825404777587, 0.5358725178581014, 0.8893400405584444, 0.5955893395860203, 0.9408369636189147, 0.7580589814818564, 0.4244151934213653, 0.7636885291754726, 0.9532052815091139, 0.6686700461744643, 0.39683939049776734, 0.8309978518015588, 0.06774730328187532, 0.8934061610794648, 0.9459413258233057, 0.8507977517004935, 0.9694554821790147, 0.8640493534313302, 0.8409166048571896, 0.9059760843724536, 0.7278052027863667, 0.8952246802917138, 0.39534528644804523, 0.9558702864115934, 0.9178754126151818, 0.7504628435478695, 0.7568870052952757, 0.32046258648166903, 0.9712495894387816, 0.7125870341029702, 0.8286889773580812, 0.929575727770858, 0.8422483936479932, 0.60065365322741, 0.5775074082600717, 0.7505976846167132, 0.5317253080143199, 0.9590110623565244, 0.9651712957082627, 0.7333643603414158, 0.7757825668725274, 0.8928390517037824, 0.2578168736401774, 0.5355488836719776, 0.8408692583280314, 0.7849780542174357, 0.8711681462620556, 0.8447990405440073, 0.9571933326515756, 0.9307123551507692, 0.6421242495412457, 0.9239207054420927, 0.9336219461922934, 0.4244151934213653, 0.5673643045526261, 0.8301442064454496, 0.528471943574542, 0.8835542071774324, 0.8820947700128993, 0.4561713647735051, 0.584381944856391, 0.9493936477483658, 0.7816316980556022, 0.7770145472448273, 0.8495153837633861, 0.8318035560268552, 0.5220388622338656, 0.8589980209217414, 0.21216021099657945, 0.8782303617207965, 0.901850575196968, 0.7683760396387002, 0.9559989503713009, 0.938411491366706, 0.7225398931917507, 0.5918361617892179, 0.8596378534897678, 0.8816239240572568, 0.9296844522785247, 0.8299758417251202, 0.7538846798551382, 0.931253582726863, 0.6902425303942638, 0.9299571155275668, 0.35461708236434614, 0.6119587629530028, 0.8979450471026776, 0.8782891297971865, 0.6144930729026484, 0.5601837238662909, 0.4230258756549153, 0.5115702372514986, 0.6133200318312215, 0.8287048127179734, 0.42887934024879554, 0.5543929044930882, 0.5414149972460248, 0.7453725251924848, 0.6522898344923613, 0.6445138145159856, 0.9212190995841192, 0.6991293681294938, 0.9188224881967051, 0.9444881948020799, 0.8399825546316605, 0.6440269003431431, 0.45260210695563535, 0.6678228102737954, 0.8535669746933884, 0.23469888428232324, 0.7581156815660375, 0.8329520097124233, 0.5886389680190937, 0.4250130050586104, 0.290761161529129, 0.9065968169685268, 0.39757013049667705, 0.9584529405260903, 0.24804178200132845, 0.8400605958344816, 0.9562762484868867, 0.5923100188758571, 0.5355488836719776, 0.6866862751474886, 0.753715093249364, 0.9302702282582556, 0.8405005145861136, 0.7758456574858743, 0.8270123797965384, 0.9270997487744173, 0.8779999285967196, 0.6350604679157676, 0.9057987369792326, 0.9732730617650076, 0.28007269673131574, 0.5393237551960537, 0.9509318156255189, 0.8055358405733448, 0.8512314640165554, 0.6752183046546253, 0.9766791413071304, 0.26893819095773785, 0.5105552073939665, 0.7964242570425004, 0.9159462749375985, 0.46312559485344046, 0.7889853219989779, 0.5331772070153998, 0.6250130361556073, 0.5340700079782073, 0.8981158701031157, 0.8424802355113449], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [39.0, 33.0, 45.0, 5.0, 36.0, 48.0, 25.0, 4.0, 10.0, 6.0, 22.0, 32.0, 39.0, 52.0, 30.0, 32.0, 35.0, 12.0, 9.0, 10.0, 15.0, 49.0, 31.0, 65.0, 31.0, 23.0, 35.0, 28.0, 11.0, 19.0, 51.0, 48.0, 12.0, 11.0, 24.0, 57.0, 35.0, 11.0, 27.0, 27.0, 19.0, 34.0, 44.0, 40.0, 10.0, 39.0, 16.0, 9.0, 36.0, 10.0, 58.0, 33.0, 26.0, 5.0, 9.0, 23.0, 13.0, 10.0, 21.0, 57.0, 10.0, 33.0, 45.0, 10.0, 13.0, 4.0, 16.0, 11.0, 8.0, 17.0, 6.0, 47.0, 69.0, 16.0, 36.0, 31.0, 45.0, 5.0, 13.0, 32.0, 40.0, 10.0, 45.0, 15.0, 34.0, 10.0, 37.0, 66.0, 81.0, 17.0, 67.0, 15.0, 6.0, 45.0, 40.0, 5.0, 40.0, 51.0, 26.0, 67.0, 20.0, 20.0, 32.0, 13.0, 11.0, 4.0, 27.0, 15.0, 16.0, 44.0, 15.0, 6.0, 18.0, 24.0, 12.0, 19.5, 35.0, 47.0, 52.0, 16.0, 22.0, 39.0, 25.0, 21.0, 12.0, 27.0, 7.0, 15.0, 12.0, 46.0, 6.0, 62.0, 45.0, 14.0, 31.0, 66.0, 6.0, 5.0, 17.0, 9.0, 6.0, 34.0, 38.0, 7.0, 21.0, 31.0, 21.0, 5.0, 42.0, 54.0, 46.0, 46.0, 29.0, 53.0, 24.0, 17.0, 54.0, 52.0, 36.0, 37.0, 15.0, 27.0, 24.0, 44.0, 6.0, 23.0, 23.0, 15.0, 30.0, 41.0, 16.0, 23.0, 12.0, 62.0, 46.0, 40.0, 8.0, 57.0, 54.0, 55.0, 14.0, 64.0, 12.0, 19.0, 42.0, 31.0, 60.0, 16.0, 27.0, 45.0, 16.0, 14.0, 67.0, 12.0, 70.0, 7.0, 20.0, 34.0, 48.0, 23.0, 5.0, 54.0, 37.0, 81.0, 3.0, 68.0, 50.0, 3.0, 26.0, 58.0, 30.0, 29.0, 18.0, 31.0, 61.0, 22.0, 66.0, 46.0, 36.0, 15.0, 40.0, 54.0, 22.0, 61.0, 47.0, 18.0, 16.0, 28.0, 18.0, 32.0, 36.0, 24.0, 44.0, 34.0, 16.0, 35.0, 23.0, 40.0, 45.0, 31.0, 28.0, 5.0, 21.0, 64.0, 20.0, 34.0, 18.0, 26.0, 59.0, 20.0, 15.0, 61.0, 14.0, 51.0, 8.0, 43.0, 64.0, 50.5, 22.0, 20.0, 9.0, 17.0, 54.0, 54.0, 11.0, 28.0, 11.0, 12.0, 4.0, 52.0, 20.0, 12.0, 52.0, 25.0, 18.0, 8.0, 67.0, 16.0, 17.0, 44.0, 45.0, 48.0, 30.0, 72.0, 52.0, 63.0, 16.0, 17.0, 6.0, 34.0, 45.0, 33.0, 45.0, 15.0, 30.0, 12.0, 25.0, 35.0, 39.0, 5.0, 39.0, 15.0, 58.0, 64.0, 68.0, 9.0, 5.0, 21.0, 32.0, 47.0, 24.0, 21.0, 7.0, 39.0, 19.0, 56.0, 40.0, 48.0, 26.0, 26.0, 10.0, 3.0, 23.0, 43.0, 4.0, 37.0, 36.0, 3.0, 54.0, 69.0, 5.0, 32.0, 32.0, 59.0, 7.0, 33.0, 43.0, 25.0, 44.0, 18.0, 51.0, 26.0, 29.0, 11.0, 5.0, 7.0, 15.0, 39.0, 44.0, 24.0, 16.0, 13.0], \"xaxis\": \"x2\", \"y\": [0.8142007211296887, 0.07257977436397642, 0.7430932382113554, 0.8214862427787604, 0.5698848321031316, 0.6048119589659149, 0.6466669219762841, 0.14510080060429495, 0.2250304680670007, 0.28492472637839966, 0.42061632734231896, 0.8281252124183194, 0.49622399336621903, 0.3482895521074759, 0.4678833354511545, 0.5708968386647719, 0.37048677721847617, 0.553632248395139, 0.8702137350251022, 0.42186952587750404, 0.8696774950675754, 0.5410576963494411, 0.3971326977900686, 0.3275001196198921, 0.9448289227093116, 0.7109941475090589, 0.41925580570138304, 0.3675472469853882, 0.6721911818800557, 0.5562207270314473, 0.5262426608517637, 0.3244609607385458, 0.15056615442564347, 0.15676979724311627, 0.6037730696030339, 0.6342511279653397, 0.021947035536558718, 0.32429164429335744, 0.5678746850743716, 0.3571680467137555, 0.7755534309390314, 0.3240287891037917, 0.699424662214302, 0.5151532452376618, 0.7564675819717819, 0.38343591026479057, 0.19811005648518398, 0.3168419703358067, 0.5315947262677626, 0.9269044449273315, 0.8260225289794664, 0.451791899378283, 0.830516920403184, 0.47128602930186, 0.19027823806377472, 0.5181346713949518, 0.29552777318700446, 0.45414400334446664, 0.39329840463575844, 0.42327932510626076, 0.45838907164509224, 0.2233864252642039, 0.3628419195926303, 0.6709353200988277, 0.46058046365566996, 0.25551237833043455, 0.7234147543269824, 0.1481282262733752, 0.314935793994079, 0.20050531530561894, 0.37453315488553635, 0.701015529968035, 0.6343341418527783, 0.1739320900588749, 0.734996253073231, 0.8172229478314255, 0.3598554146739685, 0.7121055211356295, 0.2620604909731644, 0.3421138035730516, 0.6951268813066005, 0.35208221297891723, 0.452099210446082, 0.18907620085798427, 0.5444201651108793, 0.6484058972837882, 0.3258186925596978, 0.5963383680780668, 0.6202666247822538, 0.576738593946626, 0.5054992484109841, 0.2972245631729925, 0.6844333356791464, 0.42629475072919953, 0.4405153833121037, 0.01207867704715336, 0.7609288944606691, 0.23951123982998349, 0.09310514674080905, 0.5084920166510624, 0.33067609257366243, 0.36481899584296196, 0.5708968386647719, 0.3194802059637459, 0.14207297841267416, 0.5776897120055972, 0.2026163425795633, 0.37909000048748537, 0.38206764842015895, 0.41324683104354176, 0.17826143731067332, 0.42339414872454434, 0.39148091864802853, 0.3511350413575442, 0.8053393751847749, 0.5937005322868365, 0.6849942580153355, 0.38930033076762494, 0.5168500865319015, 0.5699073288866824, 0.5376087249833421, 0.8185832461647057, 0.25950508036415604, 0.20394483716883388, 0.3303044530853749, 0.2528102968078532, 0.8477719856767125, 0.5217124250004609, 0.3303044530853749, 0.5382885532339231, 0.9625763866028243, 0.6536174904341296, 0.42629475072919953, 0.6458781618432388, 0.46574001023909845, 0.37268733756108086, 0.8180085473348132, 0.35493594975273335, 0.2423640089427935, 0.3636330633241046, 0.6421622311157122, 0.5444201651108793, 0.7396308412796291, 0.9036153464846048, 0.21101569987323432, 0.6004024464464508, 0.7595861882737439, 0.486549602332862, 0.2379839758891197, 0.5147825233229498, 0.2065932277190248, 0.4342628292980428, 0.5940848250235929, 0.4857193175270624, 0.5332610244722983, 0.5402196969638672, 0.8578846895389459, 0.5290225674595067, 0.6074669506688956, 0.1847839155105034, 0.3581391437324269, 0.4304380754474639, 0.8410120374942113, 0.5810086483513661, 0.19026233744636453, 0.7223494520380469, 0.8589928738613049, 0.8374625942163022, 0.781203852328267, 0.73983195178881, 0.41156537259256004, 0.7482873396984137, 0.44431713201158524, 0.7113673874393347, 0.49869552495399233, 0.7627102864663872, 0.37193390769028617, 0.37187810520956766, 0.3773291605703562, 0.8719651627687759, 0.6218762459828849, 0.3781393537983126, 0.553632248395139, 0.47624084907999176, 0.774399353278846, 0.5840424935194366, 0.5601025471409736, 0.6186690618327106, 0.620611700356168, 0.5755798886129706, 0.15047650536569443, 0.5530049338021776, 0.6597439619439023, 0.8300222117931148, 0.3490158529243493, 0.4410646109528086, 0.5067909967309752, 0.5851482063434866, 0.7149827463187939, 0.4849259975950144, 0.2094210588097294, 0.33399024531412796, 0.4083143545243069, 0.7497022835596558, 0.7817929239213606, 0.7637421953724776, 0.3825655414920891, 0.6611482494098961, 0.19022241257108333, 0.44972084577511023, 0.5476732603321269, 0.4831274653996314, 0.5077048340566679, 0.7289504589448288, 0.4379810490617926, 0.8017221455714771, 0.6434673631716396, 0.5059779734745421, 0.6065367192264559, 0.650368705032214, 0.34567471266024347, 0.39561589000187136, 0.3427787545601037, 0.4676404271158623, 0.5332283386400669, 0.4519108142444285, 0.40662831629925006, 0.42305576187259053, 0.22032895172816622, 0.5278715769330472, 0.43679486629948455, 0.743933429392776, 0.5269515041023835, 0.5008800654866953, 0.214168174561682, 0.44879088851457377, 0.683485355417811, 0.807753104897186, 0.42629475072919953, 0.8502951424821861, 0.17421175568219957, 0.25491371883486935, 0.7595861882737439, 0.6571724132942184, 0.7813188949129265, 0.5626906653340306, 0.8674288259883418, 0.6600514650598344, 0.4827749661719035, 0.5456147119159479, 0.39827550056677263, 0.27323823737433794, 0.695896529362927, 0.5048820477254727, 0.5422349097465021, 0.5610936746718964, 0.6571724132942184, 0.3088751107498249, 0.45428761266464013, 0.6604471727860799, 0.43371621376298963, 0.6171893197168647, 0.8100511550343341, 0.8100511550343341, 0.605832578461134, 0.5526475584669951, 0.4275055171336787, 0.8734720021260204, 0.8508295378350301, 0.5807723706867254, 0.8272749548927728, 0.2670652478909882, 0.7020144194675465, 0.4615566916191992, 0.7055847950248242, 0.43389869234556755, 0.6071692164257629, 0.3496825637352313, 0.23676491619791426, 0.7057755976874825, 0.15539001443149586, 0.6187538615870153, 0.8735882828904331, 0.30049486749739024, 0.23191705420611952, 0.8913917397916864, 0.4977157214618499, 0.16961113509580228, 0.8485494795219795, 0.4760032757956232, 0.5053843099270294, 0.2676015269871764, 0.3627664421236291, 0.15146266807038725, 0.7898179638281774, 0.6145296307645981, 0.3790380236797623, 0.3003532640340299, 0.6086112016774773, 0.39906793889171593, 0.8185832461647057, 0.6715802865662828, 0.8260225289794664, 0.6056902064850618, 0.400132762133902, 0.39471961640683584, 0.6449859309106076, 0.5637152910565628, 0.39949420960438964, 0.5490401551410112, 0.4398875418860128, 0.30916577334906253, 0.7093303227687476, 0.4562508424819209, 0.40444044759428516, 0.5773483646962835, 0.447777692034652, 0.4961542215384683, 0.32474312180562226, 0.21192693199409943, 0.9056903490933487, 0.5013816399998683, 0.758876109553896, 0.6364928148646596, 0.2952804752502578, 0.4748951900520853, 0.43679486629948455, 0.5479962315186364, 0.4728142838839701, 0.6343341418527783, 0.12248807650217919, 0.5052525886146573, 0.8281252124183194, 0.8930081609652758, 0.36283726088930296, 0.8098196742550625, 0.656477404357746, 0.193885049884708, 0.5269515041023835, 0.49858469647139786, 0.32780472036158087, 0.24927512797396847, 0.6148718578314069, 0.10691527318901187, 0.136775438340409, 0.8489192718114075, 0.2600203086082801, 0.8142007211296887, 0.5269515041023835, 0.7966615933629455, 0.5633234794197017, 0.767479452333631], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"free.sulfur.dioxide\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"free.sulfur.dioxide\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}}, {\"id\": \"free.sulfur.dioxide_bad\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (ref)\", \"type\": \"scatter\", \"x\": [76.0, 19.0, 15.0, 32.0, 18.0, 17.0, 34.0, 9.0, 36.0, 28.0, 20.0, 15.0, 46.0, 8.0, 30.0, 61.0, 24.0, 7.0, 23.0, 3.0, 50.0, 47.0, 5.0, 34.0, 40.0, 15.0, 28.0, 22.0, 44.0, 27.0, 7.0, 25.0, 26.0, 60.0, 52.0, 10.0, 24.0, 58.0, 4.0, 54.0, 14.0, 10.0, 21.0, 24.0, 20.0, 23.0, 25.0, 39.0, 18.0, 22.0, 6.0, 26.0, 41.0, 5.0, 55.0, 42.0, 41.0, 39.0, 5.0, 29.0, 50.0, 47.0, 8.0, 55.0, 23.0, 36.0, 31.0, 32.0, 15.0, 13.0, 52.0, 3.0, 77.0, 20.0, 21.0, 55.0, 64.0, 7.0, 30.0, 15.0, 23.0, 16.0, 65.0, 9.0, 28.0, 11.0, 38.0, 5.0, 26.0, 17.0, 3.0, 55.0, 14.0, 77.0, 53.0, 53.0, 27.0, 39.0, 49.0, 31.0, 68.0, 23.0, 23.0, 44.0, 26.0, 18.0, 37.0, 6.0, 12.0, 25.0, 18.0, 16.0, 3.0, 22.0, 27.0, 18.0, 66.0, 20.0, 21.0, 12.0, 26.0, 13.0, 29.0, 22.0, 52.0, 68.0, 110.0, 9.0, 8.0, 48.0, 5.0, 11.0, 62.0, 61.0, 36.0, 47.0, 13.0, 36.0, 36.0, 33.0, 16.0, 74.0, 3.0, 21.0, 40.0, 61.0, 40.0, 56.0, 25.0, 22.0, 23.0, 17.0, 38.0, 7.0, 36.0, 10.0, 33.0, 53.0, 15.0, 10.0, 14.0, 5.0, 26.0, 34.0, 7.0, 8.0, 44.0, 36.0, 43.0, 54.0, 52.0, 13.0, 35.0, 22.0, 18.0, 6.0, 7.0, 21.0, 15.0, 17.0, 56.0, 3.0, 36.0, 14.0, 64.0, 48.0, 34.0, 5.0, 38.0, 45.0, 16.0, 19.0, 57.0, 8.0, 35.0, 6.0, 20.0, 30.5, 67.0, 44.0, 48.0, 48.0, 48.0, 15.0, 27.0, 37.0, 51.0, 11.0, 5.0, 3.0, 33.0, 48.0, 29.0, 36.0, 27.0, 26.0, 44.0, 9.0, 24.0, 5.0, 8.0, 52.0, 62.0, 29.0, 21.0, 44.0, 27.0, 40.0, 21.0, 3.0, 18.0, 16.0, 17.0, 19.0, 35.0, 33.0, 67.0, 7.0, 40.5, 66.0, 20.0, 43.0, 55.0, 61.0, 52.0, 20.0, 38.0, 70.0, 13.0, 9.0, 35.0, 32.0, 26.0, 10.0, 34.0, 54.0, 20.0, 6.0, 39.0, 6.0, 46.0, 49.0, 59.0, 21.0, 28.0, 53.0, 38.0, 25.0, 23.0, 29.0, 128.0, 22.0, 14.0, 24.0, 61.0, 61.0, 34.0, 66.0, 15.0, 11.0, 6.0, 14.0, 12.0, 16.0, 9.0, 51.0, 21.0, 57.0, 17.0, 54.0, 8.0, 17.0, 146.5, 6.0, 16.0, 7.0, 29.0, 58.0, 60.0, 15.0, 17.0, 22.0, 26.0, 53.0, 18.0, 11.0, 33.0, 11.0, 6.0, 13.0, 64.0, 49.0, 14.0, 52.0, 47.0, 22.0, 52.5, 24.0, 58.0, 9.0, 7.0, 62.0, 15.0, 4.0, 57.0, 32.0, 22.0, 58.0, 12.0, 61.0, 48.0, 23.0, 10.0, 81.0, 23.0, 6.0, 59.0, 5.0, 30.0, 67.0, 18.0, 48.0, 31.0, 12.0, 46.0, 13.0, 28.0, 47.0, 9.0, 50.0, 21.0, 10.0, 29.0, 17.0, 16.0], \"xaxis\": \"x\", \"y\": [0.7197707895473677, 0.05448058807241418, 0.5021256787650443, 0.4710854375480472, 0.7156076129280222, 0.7966690429773311, 0.7265425252145667, 0.16771266951545494, 0.610944103187451, 0.6324527530146118, 0.42180662537268765, 0.2598044700255929, 0.5503032830239416, 0.5632112185661304, 0.6840604465833231, 0.6224375641140001, 0.8071781895370533, 0.9515482366939344, 0.3994071349416132, 0.9677746238863042, 0.572587586261062, 0.7602674855798478, 0.861098734498427, 0.1386074727873, 0.6703360831713621, 0.8064003460928679, 0.3172728283240366, 0.8039094494444462, 0.9186426431335688, 0.6026275969807151, 0.8609701260317718, 0.3485833566260712, 0.3005246278528939, 0.2859113263741919, 0.4978204971029292, 0.5125675444128744, 0.4268860326359044, 0.11791793574572085, 0.440027850275134, 0.4938434408506086, 0.4933189622152446, 0.166194347192407, 0.30200278364192557, 0.6822425768461728, 0.8693180940701344, 0.24112389044610405, 0.43189370387303117, 0.284455178085937, 0.23793737479647703, 0.5535561322468214, 0.7900402576908969, 0.47373775892899717, 0.6055733033081183, 0.7462675017011632, 0.32245623572553406, 0.7612367841042231, 0.36308410170653527, 0.6103993963703384, 0.3965676277125745, 0.2230008284200371, 0.8480025164595866, 0.43585875500482685, 0.24095331994381775, 0.4030652094068704, 0.8951637220162157, 0.2782175630406618, 0.7337660836226194, 0.8352762102164887, 0.6223987562306759, 0.2928263700360406, 0.6563137004068428, 0.16155652477357085, 0.6364666355122575, 0.2186811050870735, 0.27206300237801306, 0.4358901152617537, 0.6136035252376228, 0.07900866299327158, 0.8522855318359817, 0.11906253414448076, 0.3466831105240652, 0.11265227152414181, 0.6302693732121377, 0.7168097665217413, 0.4796298258249143, 0.4476252306691143, 0.3612478268219491, 0.611861930499026, 0.15121036728507153, 0.5363393546692182, 0.16155652477357085, 0.441733396330222, 0.7834276811132227, 0.6364666355122575, 0.44873286860252337, 0.4948960601400133, 0.4172084246960842, 0.5055831714989107, 0.5269082808529498, 0.3737404408311804, 0.4491757516278906, 0.5266720849021, 0.2882430633103308, 0.6066213483726142, 0.83534933450756, 0.2509605867776752, 0.230738949997912, 0.25680675940048736, 0.6858999083789018, 0.27626495444752697, 0.35158671089680515, 0.311480105980391, 0.5950329577300569, 0.4196263877039489, 0.3672198477254309, 0.5488429300958864, 0.6273126624389191, 0.0990306898864649, 0.935036100419004, 0.5556828679884147, 0.6003916802566726, 0.1337843055401957, 0.6898191889393818, 0.46604488826349566, 0.6668872608045229, 0.5998672378660981, 0.14712454771937833, 0.8558065212045691, 0.883276495704891, 0.5544329747085402, 0.38398791005853006, 0.8623310715459079, 0.4482795971615686, 0.4767821080964978, 0.6451659669426603, 0.5099786295438409, 0.11454219273407718, 0.5691587732433696, 0.2398813672346335, 0.8592796956842923, 0.38133093816728936, 0.4754945767078651, 0.2673740541283356, 0.43092180164799054, 0.5981491184574936, 0.7512253043619477, 0.20474988026063612, 0.12337786436138054, 0.6965484670033051, 0.4642254518352117, 0.29034758521725457, 0.7912282271603185, 0.1364389858241727, 0.5326323768611896, 0.3938848007926149, 0.886984727126295, 0.5955398539691413, 0.3667393936023857, 0.35129461810907203, 0.578130474122496, 0.1952086434691429, 0.6982941690158907, 0.6159300986783536, 0.6650580695700093, 0.8007006003287879, 0.13750802167619447, 0.47121416359091395, 0.5691587732433696, 0.5295784007050042, 0.4938434408506086, 0.4240508430342457, 0.1531205555636086, 0.7965770364050346, 0.4829168465516456, 0.6333246955344933, 0.38682769986244625, 0.5589353890471914, 0.30965836575156913, 0.6133571507425741, 0.5363393546692182, 0.5474540697204298, 0.9680074395956593, 0.29703705077451537, 0.7566858385458134, 0.451244026180727, 0.6224939697452743, 0.9340693900855184, 0.1254375450851024, 0.770680513376406, 0.7273231109206828, 0.410671569380914, 0.19928392436820586, 0.44743622108127745, 0.4991477681643879, 0.5443787589855091, 0.826082779912576, 0.5642536294664222, 0.6762559922350657, 0.39283078357423706, 0.3074847569358159, 0.40732461839200396, 0.5614584986504241, 0.5614584986504241, 0.575628870274347, 0.1938881144566701, 0.6480440770440566, 0.23946299348505806, 0.6110142157087575, 0.32489046344192996, 0.127020290619695, 0.28948900574123104, 0.27970970921902805, 0.5179212029104148, 0.579807192000203, 0.5695619245525361, 0.7471497674522103, 0.6761943115269239, 0.6052803835931642, 0.9048996801452402, 0.632953623191418, 0.7849920634816455, 0.12946409768986655, 0.3899257470968539, 0.37735505673750047, 0.27206300237801306, 0.6356505945299911, 0.9000798247851504, 0.5852448485124296, 0.3537739535016634, 0.8589709040748648, 0.5105041430354158, 0.4760479563081992, 0.3915586115462193, 0.4344526143297297, 0.04825794875232026, 0.25106204840173363, 0.5352062615150248, 0.2084678736174792, 0.5588772074146924, 0.42656597432725707, 0.3395528272139201, 0.5154796814541086, 0.30312695461308037, 0.4684625037801391, 0.13140485141127656, 0.37575572516499556, 0.7087902803012941, 0.22740617784346517, 0.7932370230268412, 0.6977827466507267, 0.8687065743771458, 0.3532210556477622, 0.3005246278528939, 0.8817461779308045, 0.5897758288136841, 0.5117334773877459, 0.2267712913026929, 0.7462523759498982, 0.5055831714989107, 0.6276122794572256, 0.34766968675436505, 0.563322001169588, 0.4035281086421867, 0.44827723495654004, 0.7588644006503809, 0.17560197311170134, 0.2736156405730563, 0.5646478519097824, 0.12788772013874206, 0.8127608550985441, 0.35130933230290007, 0.8842329534318195, 0.5671758377024384, 0.508518787579709, 0.4735654621913231, 0.6614347321502836, 0.7032589073748752, 0.418601168771625, 0.40262233345395115, 0.38045938978299354, 0.6221728234115828, 0.6769388667590319, 0.825791915264051, 0.8036522945246104, 0.5350776523934957, 0.5038683203672731, 0.4187790963850706, 0.3942708224564714, 0.36585282612655, 0.42973128126448334, 0.1395024853671747, 0.36909778672938764, 0.5126700875045708, 0.31128511290513083, 0.5841805470690385, 0.42932394036482613, 0.5168725346003686, 0.9331527243268325, 0.5090935678835011, 0.848083892739094, 0.7288594688776423, 0.23463814542978878, 0.9073343486287574, 0.5445649372592127, 0.8030108083542629, 0.30698149193503155, 0.47724620771884374, 0.49565431290071005, 0.29179072192325783, 0.53941953634433, 0.32642767658125227, 0.5714063949384225, 0.6769388667590319, 0.48314991346809855, 0.3838692085325581, 0.7654355578102645, 0.6807995217458978, 0.7803105409218809, 0.4971816769068883, 0.5662837862370104, 0.32557907866588853, 0.4059739580227363, 0.8621668957327787, 0.4863555612469991, 0.44913520001249685, 0.5044088987161788, 0.018560580499064172, 0.17397747102053363, 0.8203404366189, 0.531551035274026, 0.3951880410340851, 0.6710839680909022, 0.7545393605546251, 0.25029771644034415, 0.31651464458218903, 0.7900402576908969, 0.7649542174153934, 0.6282404390050247, 0.5124469561170844, 0.7501741577575001, 0.3717170374651112, 0.5479204837841629, 0.1799627586960565, 0.8716748635647116, 0.4700369344869263, 0.7044722268129955, 0.7597806244765397, 0.4570971226262448, 0.3688130253756654, 0.5854022956087224, 0.6067015953642416, 0.6092966434658947, 0.5713009051869427, 0.15316343939585397, 0.31191498773739224], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [39.0, 34.0, 26.0, 25.0, 34.0, 20.0, 39.0, 33.0, 24.0, 26.0, 73.0, 4.0, 56.0, 41.5, 41.0, 23.0, 26.0, 6.0, 17.0, 21.0, 72.0, 27.0, 46.0, 30.0, 32.0, 40.0, 25.0, 37.0, 33.0, 29.0, 35.0, 31.0, 30.0, 96.0, 21.0, 44.0, 59.0, 38.0, 19.0, 12.0, 38.0, 18.0, 23.0, 18.0, 41.0, 24.0, 12.0, 24.0, 6.0, 27.0, 45.0, 54.0, 30.0, 44.0, 33.0, 50.0, 12.0, 22.0, 10.0, 50.0, 14.0, 20.0, 42.0, 47.0, 10.0, 6.0, 36.0, 13.0, 28.0, 20.0, 24.0, 19.0, 29.0, 37.5, 12.0, 24.0, 15.0, 26.0, 25.0, 37.0, 60.0, 36.0, 20.0, 28.0, 27.0, 31.0, 12.0, 21.0, 21.0, 7.0, 12.0, 36.0, 39.0, 48.0, 39.0, 24.0, 53.0, 16.0, 28.0, 28.0, 7.0, 35.0, 10.0, 4.0, 11.0, 41.0, 20.0, 27.0, 36.0, 29.0, 41.0, 35.0, 20.0, 19.0, 52.0, 22.0, 12.0, 23.0, 60.0, 24.0, 19.0, 34.0, 49.0, 46.0, 33.0, 13.0, 9.0, 38.0, 38.0, 6.0, 17.0, 33.0, 44.5, 24.0, 20.0, 54.0, 13.0, 15.0, 28.0, 14.0, 36.0, 53.0, 47.0, 43.0, 7.0, 22.0, 17.0, 12.0, 18.0, 34.0, 29.0, 23.0, 28.0, 57.0, 33.0, 42.0, 45.0, 8.0, 23.0, 37.0, 31.0, 17.0, 22.0, 21.0, 25.0, 37.0, 63.0, 29.0, 44.0, 43.0, 7.0, 24.0, 38.0, 30.0, 21.0, 34.0, 17.0, 26.0, 45.0, 16.0, 29.0, 35.0, 7.0, 50.0, 30.0, 33.0, 24.0, 7.0, 50.0, 25.0, 35.0, 3.0, 35.0, 19.0, 24.0, 32.0, 36.0, 59.0, 23.5, 23.0, 20.0, 18.0, 28.0, 38.0, 61.0, 43.0, 8.0, 22.0, 45.0, 29.0, 15.0, 29.0, 29.0, 36.0, 20.0, 16.0, 43.0, 39.0, 53.0, 13.0, 25.0, 41.0, 12.0, 35.0, 17.0, 29.0, 35.0, 47.0, 33.0, 39.0, 40.0, 39.0, 26.0, 52.0, 14.0, 17.0, 43.0, 51.0, 45.0, 49.0, 47.0, 49.0, 46.0, 29.0, 15.0, 47.0, 47.0, 29.0, 43.0, 30.0, 45.0, 48.5, 27.0, 9.0, 17.0, 29.0, 19.0, 35.0, 44.0, 3.0, 57.0, 35.0, 24.0, 51.0, 42.0, 30.0, 17.0, 6.0, 29.0, 18.0, 14.0, 19.0, 7.0, 39.0, 31.0, 50.0, 29.0, 10.0, 3.0, 23.0, 38.0, 49.0, 12.0, 36.0, 26.0, 19.0, 28.0, 78.0, 14.0, 24.0, 16.0, 64.0, 6.0, 45.0, 55.0, 44.0, 16.0, 62.0, 9.0, 27.0, 19.0, 21.0, 24.0, 22.0, 16.0, 24.0, 73.0, 20.0, 42.0, 26.0, 31.0, 38.0, 14.0, 20.0, 21.0, 6.0, 48.0, 41.0, 35.0, 37.0, 45.0, 12.0, 33.0, 49.0, 29.0, 8.0, 26.0, 20.0, 49.0, 27.0, 27.0, 26.0, 6.0, 66.0, 30.0, 38.0, 25.0, 34.0, 28.0, 52.0, 86.0, 14.0, 40.0, 40.0, 18.0, 32.0, 36.0, 7.0, 33.0, 35.0, 59.0, 60.0, 29.0, 20.0, 69.0, 35.0, 32.0, 37.0, 4.0, 31.0, 37.0, 47.0, 25.0, 22.0, 17.0, 28.0, 19.0, 51.0, 11.0, 48.0, 41.0, 17.0, 15.0, 15.0, 19.0, 37.0, 45.0, 17.0, 45.0, 26.0, 13.0, 53.0, 14.0, 53.0, 61.0, 24.0, 55.0, 23.0, 29.0, 29.0, 43.0, 42.0, 36.0, 8.0, 37.0, 18.0, 10.0, 27.0, 58.0, 21.0, 24.0, 8.0, 16.0, 47.0, 14.0, 43.0, 34.0, 17.0, 36.0, 16.0, 29.0, 42.0, 39.0, 15.0, 25.0, 40.0, 45.0, 60.0, 18.0, 15.0, 21.0, 41.0, 60.0, 29.0, 74.0, 40.0, 24.0, 34.0, 27.0, 56.0, 42.0, 14.0, 29.0, 31.0, 35.0, 31.0, 12.0, 32.0, 26.0, 16.0, 19.0, 25.0, 28.0, 20.0, 7.0, 23.0, 66.0, 33.0, 6.0, 36.0, 42.0, 38.0, 15.0, 29.0, 44.0, 7.0, 88.0, 24.0, 26.0, 46.0, 6.0, 29.0, 10.0, 50.0, 53.0, 31.0, 30.0, 63.0, 35.0, 13.0, 17.0, 68.0, 16.0, 35.0, 17.0, 73.0, 17.0, 32.0, 39.0, 21.0, 19.0, 56.0, 37.0, 38.0, 20.0, 8.0, 44.0, 33.0, 24.0, 17.0, 73.0, 23.0, 30.0, 47.0, 7.0, 35.0, 50.0, 47.0, 34.0, 34.0, 59.0, 45.0, 53.0, 55.0, 47.0, 45.0, 46.0, 35.0, 31.0, 17.0, 27.0, 22.0, 32.0, 57.0, 32.0, 12.0, 19.0, 54.0, 24.0, 26.0, 16.0, 30.0, 29.0, 48.0, 14.0, 4.0, 21.0, 30.0, 33.0, 23.0, 10.0, 5.0, 52.0, 20.0, 18.0, 27.0, 52.0, 30.0, 53.0, 24.0, 44.0, 37.0, 38.0, 36.0, 54.0, 30.0, 6.0, 22.0, 28.0, 40.0, 48.0, 41.0, 18.0, 12.0, 33.0, 8.0, 20.0, 14.0, 44.0, 38.0, 36.0, 26.0, 20.0, 24.0, 18.0, 23.0, 23.0, 9.0, 24.0, 61.0, 24.0, 27.0, 13.0, 39.0, 36.0, 11.0, 33.0, 33.0, 44.0, 27.0, 36.0, 34.0, 33.0, 40.0, 24.0, 14.0, 34.0, 38.0, 15.0, 18.0, 20.0, 31.0, 58.0, 37.0, 38.0, 17.0, 23.0, 3.0, 25.0, 42.0, 18.0, 14.0, 54.0, 31.0, 6.0, 26.0, 69.0, 56.0, 48.0, 45.0, 36.0, 24.0, 70.0, 5.0, 34.0, 19.0, 10.0, 37.0, 15.0, 10.0, 53.0, 35.0, 13.0, 14.0, 47.0, 52.0, 38.0, 24.0, 68.0, 22.0, 56.0, 53.0, 39.0, 20.0, 53.0, 12.0, 16.0, 68.0, 46.0, 33.0, 42.0, 17.0, 55.0, 31.0, 40.0], \"xaxis\": \"x\", \"y\": [0.18439386755371057, 0.5750868907731637, 0.1132172353536568, 0.19850047615697952, 0.6950004168934912, 0.41826441672946313, 0.040828937665112974, 0.2145583871630251, 0.09143093017991866, 0.10013996234885614, 0.3658834999306372, 0.587897812361327, 0.23563705889496211, 0.5289998061994394, 0.5981734696485812, 0.5956194363709464, 0.11295199838815062, 0.6349332021584286, 0.09356782907078887, 0.0672754654033908, 0.3541579814831264, 0.11781588709523827, 0.3295981493457443, 0.23443288181779365, 0.13830133810679424, 0.5122546205578999, 0.03626449638205209, 0.32057959349203036, 0.3955164844050859, 0.21320459763992916, 0.08620177311633537, 0.4132497936565127, 0.19514157099220286, 0.028148892894647393, 0.03728071159582558, 0.20213762816504022, 0.39088790332760825, 0.10566618212719892, 0.11466232649727714, 0.09544364959788487, 0.07351553674018241, 0.3657542344632553, 0.05859665738698361, 0.43634835962676355, 0.4827032077898804, 0.516310366273556, 0.6480037931050455, 0.21122004543372697, 0.030344760075157406, 0.22750344576024595, 0.18673438423788624, 0.5460909738859347, 0.0666291073587214, 0.320234954276134, 0.515425573770442, 0.5751179393061847, 0.3262180383913996, 0.12192585741802231, 0.6165939755266235, 0.09365914315081003, 0.44259853952477324, 0.31958523161407537, 0.09228899111547839, 0.22815273642701062, 0.5282447951108347, 0.7777719169155834, 0.13834506443323813, 0.29425092810710396, 0.5300870647699181, 0.031947521718024174, 0.1108646816717751, 0.053339747820140615, 0.14466174791529418, 0.25697560969337485, 0.3383868137798065, 0.30803904997837983, 0.03434255320493995, 0.08689109251212201, 0.46044782253877736, 0.0973761441498977, 0.3449058470623745, 0.024212367984770777, 0.11665042079727428, 0.3333970234137619, 0.1495417879159372, 0.0679784404121434, 0.2360052425084116, 0.39147703437781534, 0.04428683932015287, 0.5381556738404795, 0.4357341587922019, 0.11843845992675284, 0.28107964630818494, 0.06989794698232743, 0.2658605825653322, 0.22408104406272966, 0.15519213452661884, 0.09873339188795927, 0.10739713799337769, 0.4712507279726723, 0.31257930793611366, 0.6259141532505736, 0.1651629894813923, 0.13024327386797574, 0.08242409751896962, 0.55355901104019, 0.11256152515999429, 0.22124325125588817, 0.05838775174278421, 0.6734770756819889, 0.06919042490492266, 0.5773286546676725, 0.5693181878572973, 0.12726917141891614, 0.27983888222674136, 0.15690954109554833, 0.18593824584442387, 0.05432525584274117, 0.33273366741371935, 0.12435295831370408, 0.48112847828662497, 0.2959384652215836, 0.5042039768350125, 0.3749869638443927, 0.7258627386781167, 0.4806866421912115, 0.6234335830956541, 0.4191951896523489, 0.20821728825178332, 0.6343085651912675, 0.27674577061671146, 0.02140654255666985, 0.42849246998341506, 0.1817444030106703, 0.4551538855951942, 0.05087080041524106, 0.516641204200833, 0.6810720245435042, 0.08151744899857294, 0.4475169494323581, 0.03995706953508171, 0.2181819033834006, 0.20372897255157485, 0.24305701296248816, 0.5381556738404795, 0.2358485729609252, 0.051323642447754336, 0.1913631294907303, 0.32154631204965056, 0.31229802093755377, 0.3917329141436472, 0.39462053822053156, 0.3680669306910641, 0.5017894292511481, 0.32120711190509066, 0.0768019282386515, 0.1168769044932052, 0.31545143431826594, 0.12007957373947853, 0.08354361700756141, 0.2180731800932174, 0.7653011157176768, 0.05076221583963347, 0.11739077279846111, 0.3639458403519926, 0.4815918747301601, 0.35998732468747585, 0.457353694020342, 0.5520498791697908, 0.22168281241722143, 0.2132287846887433, 0.4763394582576197, 0.3040153802820409, 0.20749766415549342, 0.3316810644107503, 0.8126297477835096, 0.5749367295182395, 0.27274039590582944, 0.2685808245693546, 0.5172108675362206, 0.33506587713796443, 0.09616672688355288, 0.041108213935392324, 0.10548050716105373, 0.5016695616404938, 0.20022874051447226, 0.14220640128276774, 0.23772630779738468, 0.19606080251004787, 0.2603188495268066, 0.18846597668723208, 0.19827111133563302, 0.261548791893628, 0.4140325207077993, 0.8134796325151183, 0.12265695643958285, 0.6311167068993262, 0.13481820177301163, 0.0932384579037443, 0.14050160114126486, 0.2562249115981724, 0.08547750670655718, 0.08643201081848362, 0.19981675431015722, 0.31390222338706264, 0.06221739913672386, 0.06996303880871468, 0.30029370289300306, 0.4306817897420764, 0.6595343859760441, 0.2839408857911616, 0.20468539219890003, 0.1130196126722065, 0.2360017176902124, 0.13187147729288817, 0.42313120297864704, 0.06964897436687001, 0.1624399718171824, 0.17200815643270417, 0.07333105637055992, 0.2440137653363641, 0.4900110333069776, 0.3085554157386313, 0.03480496731142946, 0.12148031785507996, 0.15002971926037112, 0.5314247042003052, 0.2758453007685677, 0.2151852748992088, 0.2658605825653322, 0.29911225563077193, 0.6594110243744711, 0.49869782335001445, 0.16788254706683048, 0.11816213334465087, 0.08230909248122409, 0.13653212507346946, 0.25639170942272826, 0.06562233405876228, 0.23311900627036541, 0.3756616197417655, 0.46674395287949066, 0.3092684534350997, 0.8337319641197457, 0.8331457111467163, 0.2591056156836542, 0.4778687671024334, 0.2542440524586721, 0.5361036306539362, 0.07073721340803463, 0.4731688813159418, 0.5755848065786346, 0.356689463387698, 0.14225616860197343, 0.21837916002376445, 0.14466174791529418, 0.29899643271856946, 0.4757427727983842, 0.08126799884203029, 0.1296501822378736, 0.3286954654423938, 0.08620177311633537, 0.13855855420831553, 0.05543377339452393, 0.11917834098009661, 0.2613621884509647, 0.11269900223777074, 0.08429051026621415, 0.3393961441870107, 0.07031960314855146, 0.11356777592095357, 0.4853279864284006, 0.1279289285514792, 0.0584572339054259, 0.08612988585012649, 0.3472440907423937, 0.1248029959061332, 0.07502335399434323, 0.19827111133563302, 0.3424151534036639, 0.3065175956815872, 0.13808860398564737, 0.058092197534895806, 0.04082786106581715, 0.1602592849246841, 0.09156161599234125, 0.5036030690663805, 0.2640411824475748, 0.6468038092930676, 0.07201805208597656, 0.22470230804277058, 0.1334773721572423, 0.04847889440667685, 0.2685808245693546, 0.10911308148570098, 0.6764508967260475, 0.6280060594576413, 0.36761958218269275, 0.16019930342079847, 0.17605308658107655, 0.14078981831089854, 0.2384997092801764, 0.13117402490907393, 0.12818959986091483, 0.4161925244315118, 0.12435295831370408, 0.09814942480303201, 0.05480698563416486, 0.3746187330143109, 0.41092354232892336, 0.507894749900129, 0.5137929421583434, 0.08293523366016065, 0.2964416548030494, 0.15236141109070434, 0.4396941021426354, 0.41893931094950754, 0.09113953260801844, 0.10967473999240707, 0.055732078845942, 0.05640314085190745, 0.06176263301115803, 0.06427139521062619, 0.20386133178572885, 0.21597661143113533, 0.7486409492386699, 0.2610715902497083, 0.09465277491899493, 0.5556171757583562, 0.137718889647652, 0.1978940751503777, 0.08472590699531857, 0.356262641598029, 0.14596950445002987, 0.13865818299932142, 0.3088915816821678, 0.11516321289421916, 0.16121169033174265, 0.40573483691789825, 0.34308606282264, 0.36300204724896845, 0.17193414756867276, 0.035926383178341514, 0.34536882843285344, 0.4400180463892147, 0.5165194668234709, 0.23319834124303085, 0.9637923675569924, 0.2635599134550337, 0.6259141532505736, 0.12324962258280003, 0.1256037712827487, 0.1248029959061332, 0.11665042079727428, 0.29081136443782263, 0.12993062945549005, 0.20959981847797426, 0.12385816607190492, 0.16931651488884025, 0.2468284110987674, 0.6181879252747016, 0.3509541008179864, 0.08619429866610873, 0.09537770951135394, 0.8204393830764495, 0.2493836920976743, 0.10367142046182065, 0.11516383353466464, 0.07169627826225977, 0.5400384130096556, 0.2709141565803237, 0.16809050322974173, 0.3421981324687273, 0.812724325423183, 0.1326589750154965, 0.054670132935181304, 0.055346153509382656, 0.8039442695404772, 0.3276168958360183, 0.6561718697940482, 0.6214102617950452, 0.3046829516703813, 0.7853649284745584, 0.7303620793003476, 0.6719087507962026, 0.16000678121984613, 0.579612101366232, 0.6347749924714103, 0.41894393066564606, 0.06936532322770372, 0.28322834609079706, 0.343263893078516, 0.4450860003239352, 0.3090838478611311, 0.408095736797927, 0.11529682880263803, 0.13359771811640497, 0.2417229185475579, 0.10092265889692065, 0.8181934133883563, 0.3777834313813965, 0.8273808576462511, 0.18439353202429143, 0.5148786056082297, 0.11287077888712382, 0.16015059460472458, 0.29672938182784603, 0.36944561074938853, 0.2505850522824452, 0.8467591712977676, 0.3840267097226593, 0.261779448872241, 0.1645479955558209, 0.14631295673285594, 0.4248523287309329, 0.09222807982804315, 0.2121484308544801, 0.33273366741371935, 0.5470626312455473, 0.8294144697045585, 0.25206662215500397, 0.15998368749433245, 0.548322128117227, 0.3917329141436472, 0.15981565308588508, 0.23631147082452741, 0.21082920466209698, 0.1871387197916503, 0.24774693401855818, 0.1913242313933492, 0.16437448769677154, 0.07582203648947516, 0.032541140295091364, 0.06311143057978008, 0.5009235508757715, 0.12343879567504301, 0.445735807756371, 0.40322837553658053, 0.09397553936597514, 0.1598391281143201, 0.26702494168661406, 0.19782301216908982, 0.06831823449824892, 0.5451167746582685, 0.20142160156100697, 0.25747632252511843, 0.4257317671215596, 0.5062318064185062, 0.10278357133077332, 0.10857266292312517, 0.06223864817381186, 0.11377411494697365, 0.14082424186384768, 0.2589321903149734, 0.31776639873426016, 0.07983414941561229, 0.30174211068680845, 0.42532907678292176, 0.23734670470511587, 0.2862296469110084, 0.24790288035387664, 0.5526146374040077, 0.20425399436950087, 0.5166825128498294, 0.12415322942140417, 0.5310696157212036, 0.3866387435262121, 0.14313186082947948, 0.31648660326859934, 0.026792916001305622, 0.7856428374245099, 0.42383310375799566, 0.5944566396871084, 0.6256605001243821, 0.08813642250468567, 0.03544811528140901, 0.06935406654889886, 0.15751976448865512, 0.22608551288474832, 0.3127311228465576, 0.1409438166611655, 0.3285615524533705, 0.3591330499592894, 0.47964497307801546, 0.7143146030302826, 0.14223944449319303, 0.06929054967731618, 0.32120711190509066, 0.16913647442041335, 0.707286257884667, 0.3230684446475647, 0.7616845263358343, 0.4104900542879092, 0.10053249234255524, 0.1106599594415556, 0.1543174595222413, 0.46003879185641183, 0.3811350878514418, 0.07185070571861518, 0.23882593985771994, 0.5344976262521839, 0.11031385635331636, 0.09610989844306939, 0.4955559099445003, 0.07845190603324759, 0.30697262074812925, 0.12767551958037127, 0.4375661224395835, 0.07737023387634634, 0.15307682457740834, 0.05694427046787409, 0.09028836937410878, 0.4011292297732457, 0.6186146927451245, 0.11561676905211238, 0.0993047499370594, 0.08102401279833105, 0.8100206966555492, 0.10768932514586738, 0.15386113005635593, 0.4026560765644126, 0.045535707525545144, 0.08229583319403, 0.08227601457953415, 0.8241544781987433, 0.0759900855540333, 0.5147505197509459, 0.11103147778198663, 0.42144961755966015, 0.24880465403270857, 0.3112403223054312, 0.3282460941643247, 0.28312386083977936, 0.2865521931047814, 0.16537364909659502, 0.4284132019637321, 0.34116073112729894, 0.051142721309942685, 0.10794707492381372, 0.1108646816717751, 0.29201805921023904, 0.07365131996157204, 0.36851051207096197, 0.2556143611338999, 0.07392456180697715, 0.045535707525545144, 0.15025986810093994, 0.4395989822566938, 0.19636656988846957, 0.21018464628148859, 0.15085686628779282, 0.3429118439192298, 0.16104008564300487, 0.2055862423584408, 0.18673310211333727, 0.5528531989583015, 0.20219789553586287, 0.5807830339134155, 0.6112381610839525, 0.07515362639458067, 0.5722084734915175, 0.3654892991508686, 0.1991057466826236, 0.4912569401667811, 0.05850610073101081, 0.3077884117234785, 0.17038242498240874, 0.14066607718466684, 0.10248584652416493, 0.4022873718442217, 0.07205214632436985, 0.35142291824287475, 0.10941760034103376, 0.06679271580157364, 0.05675388891699207, 0.058987921856350156, 0.3660303223369904, 0.28790374422385034, 0.4158290962648631, 0.40710291595796666, 0.09934102670994882, 0.06362846635195196, 0.30921476208988685, 0.23242198019285765, 0.055541210656895434, 0.5297663836663529, 0.10744632778983743, 0.18410212910939194, 0.17721960751489196, 0.1962664672709783, 0.1617648996714035, 0.10584426414108294, 0.5203501665477333, 0.07365131996157204, 0.31578819840495265, 0.35364190165315845, 0.1707951928721818, 0.41655733121321636, 0.15801546378512366, 0.7568436608419439, 0.22368578646300386, 0.0609449253562836, 0.2225096762928218, 0.18587673368692093, 0.05559101133196209, 0.569598540521716, 0.08073228430722412, 0.15724041301590164, 0.12879141548479, 0.4306817897420764, 0.17998791969802397, 0.41280880088413996, 0.5723062335690389, 0.6457404130724687, 0.10420061808672998, 0.12564769853034463, 0.21795029564941848, 0.4720930498870375, 0.11304202998506685, 0.545112257205237, 0.14852188644910969, 0.17217029085021085, 0.336250902618187, 0.48671482860553816, 0.5093433434984792, 0.35847801144896685, 0.3008706318705062, 0.18494609259573758, 0.4199330463236065, 0.04162287990776414, 0.2633909944023186, 0.4252182303976608, 0.4684623303117058, 0.1925553058603695, 0.09610989844306939, 0.09129843496680234, 0.3302708189676917, 0.4199330463236065, 0.11927294568859859, 0.4864154015695107, 0.06472081497616611, 0.6387929002666255, 0.37932906694235924, 0.093713747684541, 0.20627971812824875], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (curr)\", \"type\": \"scatter\", \"x\": [39.0, 33.0, 45.0, 5.0, 36.0, 48.0, 25.0, 4.0, 10.0, 6.0, 22.0, 32.0, 39.0, 52.0, 30.0, 32.0, 35.0, 12.0, 9.0, 10.0, 15.0, 49.0, 31.0, 65.0, 31.0, 23.0, 35.0, 28.0, 11.0, 19.0, 51.0, 48.0, 12.0, 11.0, 24.0, 57.0, 35.0, 11.0, 27.0, 27.0, 19.0, 34.0, 44.0, 40.0, 10.0, 39.0, 16.0, 9.0, 36.0, 10.0, 58.0, 33.0, 26.0, 5.0, 9.0, 23.0, 13.0, 10.0, 21.0, 57.0, 10.0, 33.0, 45.0, 10.0, 13.0, 4.0, 16.0, 11.0, 8.0, 17.0, 6.0, 47.0, 69.0, 16.0, 36.0, 31.0, 45.0, 5.0, 13.0, 32.0, 40.0, 10.0, 45.0, 15.0, 34.0, 10.0, 37.0, 66.0, 81.0, 17.0, 67.0, 15.0, 6.0, 45.0, 40.0, 5.0, 40.0, 51.0, 26.0, 67.0, 20.0, 20.0, 32.0, 13.0, 11.0, 4.0, 27.0, 15.0, 16.0, 44.0, 15.0, 6.0, 18.0, 24.0, 12.0, 19.5, 35.0, 47.0, 52.0, 16.0, 22.0, 39.0, 25.0, 21.0, 12.0, 27.0, 7.0, 15.0, 12.0, 46.0, 6.0, 62.0, 45.0, 14.0, 31.0, 66.0, 6.0, 5.0, 17.0, 9.0, 6.0, 34.0, 38.0, 7.0, 21.0, 31.0, 21.0, 5.0, 42.0, 54.0, 46.0, 46.0, 29.0, 53.0, 24.0, 17.0, 54.0, 52.0, 36.0, 37.0, 15.0, 27.0, 24.0, 44.0, 6.0, 23.0, 23.0, 15.0, 30.0, 41.0, 16.0, 23.0, 12.0, 62.0, 46.0, 40.0, 8.0, 57.0, 54.0, 55.0, 14.0, 64.0, 12.0, 19.0, 42.0, 31.0, 60.0, 16.0, 27.0, 45.0, 16.0, 14.0, 67.0, 12.0, 70.0, 7.0, 20.0, 34.0, 48.0, 23.0, 5.0, 54.0, 37.0, 81.0, 3.0, 68.0, 50.0, 3.0, 26.0, 58.0, 30.0, 29.0, 18.0, 31.0, 61.0, 22.0, 66.0, 46.0, 36.0, 15.0, 40.0, 54.0, 22.0, 61.0, 47.0, 18.0, 16.0, 28.0, 18.0, 32.0, 36.0, 24.0, 44.0, 34.0, 16.0, 35.0, 23.0, 40.0, 45.0, 31.0, 28.0, 5.0, 21.0, 64.0, 20.0, 34.0, 18.0, 26.0, 59.0, 20.0, 15.0, 61.0, 14.0, 51.0, 8.0, 43.0, 64.0, 50.5, 22.0, 20.0, 9.0, 17.0, 54.0, 54.0, 11.0, 28.0, 11.0, 12.0, 4.0, 52.0, 20.0, 12.0, 52.0, 25.0, 18.0, 8.0, 67.0, 16.0, 17.0, 44.0, 45.0, 48.0, 30.0, 72.0, 52.0, 63.0, 16.0, 17.0, 6.0, 34.0, 45.0, 33.0, 45.0, 15.0, 30.0, 12.0, 25.0, 35.0, 39.0, 5.0, 39.0, 15.0, 58.0, 64.0, 68.0, 9.0, 5.0, 21.0, 32.0, 47.0, 24.0, 21.0, 7.0, 39.0, 19.0, 56.0, 40.0, 48.0, 26.0, 26.0, 10.0, 3.0, 23.0, 43.0, 4.0, 37.0, 36.0, 3.0, 54.0, 69.0, 5.0, 32.0, 32.0, 59.0, 7.0, 33.0, 43.0, 25.0, 44.0, 18.0, 51.0, 26.0, 29.0, 11.0, 5.0, 7.0, 15.0, 39.0, 44.0, 24.0, 16.0, 13.0], \"xaxis\": \"x2\", \"y\": [0.18579927887031134, 0.9274202256360236, 0.2569067617886446, 0.17851375722123963, 0.43011516789686843, 0.3951880410340851, 0.35333307802371594, 0.854899199395705, 0.7749695319329993, 0.7150752736216004, 0.5793836726576811, 0.17187478758168062, 0.503776006633781, 0.6517104478925241, 0.5321166645488455, 0.4291031613352281, 0.6295132227815239, 0.446367751604861, 0.12978626497489776, 0.578130474122496, 0.1303225049324246, 0.4589423036505589, 0.6028673022099313, 0.6724998803801079, 0.055171077290688375, 0.28900585249094113, 0.5807441942986169, 0.6324527530146118, 0.32780881811994433, 0.4437792729685527, 0.47375733914823626, 0.6755390392614542, 0.8494338455743565, 0.8432302027568838, 0.3962269303969661, 0.36574887203466033, 0.9780529644634413, 0.6757083557066426, 0.43212531492562845, 0.6428319532862445, 0.2244465690609686, 0.6759712108962084, 0.300575337785698, 0.4848467547623382, 0.24353241802821812, 0.6165640897352094, 0.801889943514816, 0.6831580296641933, 0.4684052737322374, 0.07309555507266852, 0.17397747102053363, 0.548208100621717, 0.16948307959681597, 0.5287139706981401, 0.8097217619362252, 0.48186532860504816, 0.7044722268129955, 0.5458559966555334, 0.6067015953642416, 0.5767206748937392, 0.5416109283549078, 0.7766135747357961, 0.6371580804073698, 0.3290646799011723, 0.53941953634433, 0.7444876216695655, 0.27658524567301757, 0.8518717737266248, 0.685064206005921, 0.7994946846943811, 0.6254668451144636, 0.29898447003196504, 0.36566585814722175, 0.8260679099411251, 0.265003746926769, 0.18277705216857454, 0.6401445853260315, 0.2878944788643705, 0.7379395090268356, 0.6578861964269485, 0.3048731186933995, 0.6479177870210828, 0.5479007895539181, 0.8109237991420157, 0.4555798348891207, 0.35159410271621183, 0.6741813074403022, 0.40366163192193316, 0.3797333752177462, 0.42326140605337403, 0.49450075158901585, 0.7027754368270075, 0.31556666432085356, 0.5737052492708005, 0.5594846166878963, 0.9879213229528466, 0.23907110553933086, 0.7604887601700165, 0.906894853259191, 0.49150798334893764, 0.6693239074263375, 0.635181004157038, 0.4291031613352281, 0.6805197940362542, 0.8579270215873258, 0.42231028799440284, 0.7973836574204367, 0.6209099995125147, 0.617932351579841, 0.5867531689564582, 0.8217385626893267, 0.5766058512754557, 0.6085190813519714, 0.6488649586424557, 0.19466062481522506, 0.4062994677131635, 0.31500574198466447, 0.6106996692323751, 0.48314991346809855, 0.4300926711133176, 0.4623912750166579, 0.18141675383529432, 0.7404949196358439, 0.7960551628311661, 0.6696955469146251, 0.7471897031921468, 0.15222801432328747, 0.4782875749995391, 0.6696955469146251, 0.4617114467660769, 0.0374236133971757, 0.34638250956587036, 0.5737052492708005, 0.35412183815676124, 0.5342599897609015, 0.6273126624389191, 0.1819914526651868, 0.6450640502472667, 0.7576359910572065, 0.6363669366758954, 0.35783776888428775, 0.4555798348891207, 0.2603691587203709, 0.09638465351539516, 0.7889843001267657, 0.3995975535535492, 0.2404138117262561, 0.5134503976671381, 0.7620160241108803, 0.4852174766770502, 0.7934067722809752, 0.5657371707019572, 0.40591517497640706, 0.5142806824729376, 0.4667389755277017, 0.4597803030361328, 0.14211531046105408, 0.4709774325404933, 0.39253304933110444, 0.8152160844894966, 0.6418608562675732, 0.5695619245525361, 0.15898796250578873, 0.4189913516486339, 0.8097376625536354, 0.2776505479619531, 0.14100712613869515, 0.1625374057836978, 0.21879614767173305, 0.26016804821119, 0.5884346274074399, 0.25171266030158634, 0.5556828679884147, 0.2886326125606653, 0.5013044750460076, 0.23728971353361283, 0.6280660923097139, 0.6281218947904323, 0.6226708394296439, 0.1280348372312241, 0.37812375401711507, 0.6218606462016874, 0.446367751604861, 0.5237591509200082, 0.22560064672115399, 0.4159575064805634, 0.43989745285902637, 0.38133093816728936, 0.379388299643832, 0.4244201113870294, 0.8495234946343055, 0.44699506619782237, 0.3402560380560977, 0.16997778820688525, 0.6509841470756508, 0.5589353890471914, 0.49320900326902484, 0.41485179365651337, 0.2850172536812061, 0.5150740024049856, 0.7905789411902706, 0.6660097546858721, 0.5916856454756931, 0.25029771644034415, 0.21820707607863943, 0.23625780462752244, 0.6174344585079109, 0.33885175059010386, 0.8097775874289167, 0.5502791542248897, 0.45232673966787307, 0.5168725346003686, 0.4922951659433321, 0.2710495410551712, 0.5620189509382074, 0.19827785442852286, 0.35653263682836045, 0.4940220265254579, 0.3934632807735441, 0.349631294967786, 0.6543252873397565, 0.6043841099981286, 0.6572212454398962, 0.5323595728841377, 0.4667716613599331, 0.5480891857555714, 0.5933716837007499, 0.5769442381274095, 0.7796710482718338, 0.4721284230669528, 0.5632051337005155, 0.25606657060722404, 0.47304849589761655, 0.4991199345133047, 0.785831825438318, 0.5512091114854263, 0.31651464458218903, 0.192246895102814, 0.5737052492708005, 0.14970485751781393, 0.8257882443178004, 0.7450862811651306, 0.2404138117262561, 0.3428275867057816, 0.2186811050870735, 0.43730933466596944, 0.1325711740116582, 0.33994853494016564, 0.5172250338280965, 0.4543852880840521, 0.6017244994332274, 0.7267617626256621, 0.304103470637073, 0.49511795227452726, 0.4577650902534979, 0.4389063253281036, 0.3428275867057816, 0.6911248892501751, 0.5457123873353599, 0.3395528272139201, 0.5662837862370104, 0.38281068028313525, 0.1899488449656659, 0.1899488449656659, 0.39416742153886597, 0.4473524415330049, 0.5724944828663213, 0.12652799787397961, 0.14917046216496987, 0.4192276293132746, 0.1727250451072272, 0.7329347521090118, 0.2979855805324535, 0.5384433083808008, 0.2944152049751758, 0.5661013076544325, 0.39283078357423706, 0.6503174362647687, 0.7632350838020857, 0.29422440231251745, 0.8446099855685041, 0.3812461384129847, 0.1264117171095669, 0.6995051325026098, 0.7680829457938805, 0.1086082602083136, 0.50228427853815, 0.8303888649041977, 0.15145052047802054, 0.5239967242043768, 0.49461569007297057, 0.7323984730128237, 0.6372335578763709, 0.8485373319296128, 0.21018203617182263, 0.3854703692354019, 0.6209619763202376, 0.6996467359659702, 0.3913887983225227, 0.600932061108284, 0.18141675383529432, 0.32841971343371723, 0.17397747102053363, 0.3943097935149382, 0.5998672378660981, 0.6052803835931642, 0.35501406908939237, 0.4362847089434372, 0.6005057903956104, 0.45095984485898877, 0.5601124581139871, 0.6908342266509375, 0.29066967723125237, 0.5437491575180791, 0.5955595524057149, 0.4226516353037165, 0.552222307965348, 0.5038457784615318, 0.6752568781943777, 0.7880730680059006, 0.09430965090665133, 0.4986183600001317, 0.24112389044610405, 0.3635071851353404, 0.7047195247497422, 0.5251048099479148, 0.5632051337005155, 0.4520037684813636, 0.5271857161160298, 0.36566585814722175, 0.8775119234978208, 0.49474741138534273, 0.17187478758168062, 0.1069918390347242, 0.6371627391106971, 0.19018032574493748, 0.34352259564225396, 0.806114950115292, 0.47304849589761655, 0.5014153035286022, 0.6721952796384192, 0.7507248720260316, 0.38512814216859315, 0.8930847268109882, 0.863224561659591, 0.15108072818859253, 0.7399796913917198, 0.18579927887031134, 0.47304849589761655, 0.2033384066370545, 0.43667652058029827, 0.23252054766636898], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [18.0, 55.0, 24.0, 15.0, 23.0, 27.0, 37.0, 21.0, 32.0, 57.0, 13.0, 29.0, 36.0, 26.0, 31.0, 29.0, 32.0, 11.0, 1.0, 42.0, 53.0, 39.0, 12.0, 45.0, 46.0, 32.0, 35.0, 61.0, 22.0, 34.0, 26.0, 23.0, 59.0, 26.0, 37.0, 45.0, 32.0, 60.0, 16.0, 10.0, 39.0, 31.0, 37.0, 46.0, 11.0, 34.0, 23.0, 18.0, 73.0, 38.0, 6.0, 22.0, 35.0, 14.0, 37.0, 43.0, 37.0, 27.0, 46.0, 18.0, 34.0, 45.0, 30.0, 15.0, 28.0, 31.0, 49.0, 32.0, 38.0, 50.0, 35.0, 36.0, 31.0, 28.0, 26.0, 54.0, 32.0, 53.0, 20.0, 6.0, 23.0, 66.0, 34.0, 22.0, 26.0, 14.0, 41.0, 20.0, 49.0, 14.0, 60.0, 46.0, 18.0, 28.0, 30.0, 26.0, 6.0, 51.0, 6.0, 16.0, 25.0, 26.0, 13.0, 49.0, 35.0, 37.0, 15.0, 20.0, 34.0, 37.0, 32.0, 35.0, 35.0, 13.0, 28.0, 19.0, 46.0, 33.0, 29.0, 21.0, 23.0, 74.0, 8.0, 23.0, 25.0, 5.0, 23.0, 21.0, 10.0, 29.0, 22.0, 18.0, 24.0, 48.0, 20.0, 62.0, 5.0, 24.0, 14.0, 29.0, 57.0, 27.0, 17.0, 46.0, 55.0, 23.0, 55.0, 10.0, 24.0, 20.0, 41.0, 33.0, 24.0, 14.0, 39.0, 10.0, 31.0, 15.0, 23.0, 49.0, 12.0, 10.0, 19.0, 50.0, 8.0, 15.0, 32.0, 13.0, 24.0, 52.0, 38.0, 20.0, 6.0, 3.0, 12.0, 41.0, 46.0, 54.0, 38.0, 17.0, 29.0, 33.0, 40.0, 54.0, 54.0, 26.0, 1.0, 24.0, 45.0, 22.0, 47.0, 17.0, 36.0, 40.0, 39.0, 36.0, 26.0, 18.0, 55.0, 21.0, 26.0, 29.0, 38.5, 21.0, 41.0, 18.0, 24.0, 38.0, 32.0, 79.5, 34.0, 24.0, 18.0, 37.0, 12.0, 35.0, 24.0, 25.0, 23.0, 34.0, 34.0, 56.0, 3.0, 62.0, 56.0, 28.0, 26.0, 44.0, 32.0, 32.0, 16.0, 30.0, 22.0, 31.0, 15.0, 51.0, 29.0, 30.0, 45.0, 18.0, 21.0, 23.0, 21.0, 29.0, 28.0, 13.0, 45.0, 39.0, 26.0, 6.0, 47.0, 68.0, 43.0, 26.0, 36.0, 44.0, 21.0, 13.0, 34.0, 25.0, 8.0, 47.0, 26.0, 67.0, 34.0, 27.0, 29.0, 54.0, 56.0, 58.0, 45.0, 37.0, 10.0, 13.0, 41.0, 12.0, 35.0, 17.0, 40.0, 39.0, 9.0, 25.0, 37.0, 26.0, 30.0, 11.0, 29.0, 22.0, 34.0, 45.0, 19.0, 5.0, 47.0, 26.0, 33.0, 33.0, 25.0, 40.0, 40.0, 28.0, 52.0, 25.0, 95.0, 42.0, 53.0, 24.0, 35.0, 53.0, 62.0, 34.0, 48.0, 15.0, 11.0, 31.0, 26.0, 69.0, 34.0, 11.0, 29.0, 52.0, 39.0, 31.0, 27.0, 50.0, 11.0, 49.0, 30.0, 17.0, 51.0, 20.0, 15.0, 18.0, 11.0, 63.0, 36.0, 23.0, 57.0, 80.0, 28.0, 6.0, 40.0, 27.0, 49.0, 39.0, 15.0, 29.0, 27.0, 7.0, 15.0, 25.0, 37.0, 30.0, 35.0, 14.0, 57.0, 20.0, 8.0, 18.0, 70.5, 13.0, 29.0, 25.0, 32.0, 61.0, 12.0, 53.0, 41.0, 50.0, 58.0, 68.0, 29.0, 29.0, 38.0, 22.0, 10.0, 9.0, 31.0, 17.0, 18.0, 13.0, 34.0, 22.0, 34.0, 56.0, 41.0, 24.0, 35.0, 31.0, 6.0, 43.0, 53.0, 32.0, 21.0, 71.0, 36.0, 11.0, 42.0, 7.0, 27.0, 37.0, 33.0, 37.0, 28.0, 21.0, 19.0, 44.0, 49.0, 23.0, 29.0, 17.0, 8.0, 16.0, 28.0, 9.0, 64.0, 29.0, 64.0, 5.0, 37.0, 19.0, 18.0, 38.0, 9.0, 5.5, 5.0, 50.0, 29.0, 27.0, 24.0, 35.0, 25.0, 20.0, 20.0, 29.0, 8.0, 14.0, 49.0, 53.0, 23.0, 19.0, 48.5, 5.0, 65.0, 27.0, 20.0, 6.0, 26.0, 19.0, 22.0, 15.0, 50.0, 22.0, 40.0, 4.0, 33.0, 49.0, 20.0, 24.0, 57.0, 9.0, 105.0, 44.0, 34.0, 56.0, 53.0, 23.0, 46.0, 14.0, 35.0, 22.0, 42.0, 60.0, 15.0, 25.0, 31.0, 11.0, 61.0, 19.0, 18.0, 63.0, 37.0, 34.0, 33.0, 10.0, 49.0, 26.0, 4.0, 15.0, 6.0, 26.0, 17.0, 44.5, 17.0, 11.0, 10.0, 6.0, 35.0, 15.0, 7.0, 25.0, 42.0, 33.0, 48.5, 40.0, 10.0, 41.0, 57.0, 25.0, 26.0, 31.0, 51.0, 25.0, 31.0, 14.0, 46.0, 41.0, 26.0, 6.0, 53.0, 11.0, 54.0, 8.0, 25.0, 32.0, 81.0, 46.0, 36.0, 36.0, 42.0, 60.5, 15.0, 45.0, 53.0, 41.0, 5.0, 33.0, 6.0, 16.0, 3.0, 52.0, 50.0, 25.0, 6.0, 40.0, 11.0, 16.0, 34.0, 7.0, 17.0, 48.5, 51.0, 14.0, 29.0, 6.0, 21.0, 62.0, 24.0, 19.0, 10.0, 44.0, 44.0, 33.0, 33.0, 8.0, 25.0, 26.0, 73.0, 31.0, 14.0, 56.0, 34.0, 37.0, 67.0, 42.0, 42.0, 30.0, 29.0, 26.0, 50.0, 16.0, 57.0, 40.0, 49.0, 18.0, 38.0, 17.0, 6.0, 56.0, 25.0, 15.0, 18.0, 29.0, 17.0, 10.0, 3.0, 27.0, 26.0, 38.0, 32.0, 47.0, 43.0, 29.0, 60.0, 40.0, 48.0, 17.0, 5.0, 27.0, 36.0, 14.0, 30.0, 41.0, 36.0, 55.0, 17.0, 15.0, 31.0, 29.0, 52.0, 23.0, 14.0, 35.0, 32.0, 21.0, 31.0, 10.0, 34.0, 52.0, 6.0, 59.0, 8.0, 17.0, 31.0, 12.0, 36.0, 25.0, 34.0, 16.0, 22.0, 34.0, 20.0, 50.0, 44.0, 38.0, 46.0, 52.0, 20.0, 32.0], \"xaxis\": \"x2\", \"y\": [0.6660328535674787, 0.4955559099445003, 0.11251030999551548, 0.5313240922219649, 0.7616845263358343, 0.42881839881496897, 0.22146723198036844, 0.2709448900825402, 0.04188686298684474, 0.3198999677935893, 0.586632325439729, 0.3332859260788763, 0.0891770245136605, 0.07249138429342028, 0.0813041402249215, 0.2808128557304226, 0.18155424903412543, 0.14020593233116785, 0.20529540916933675, 0.1755850319354616, 0.5722846846512241, 0.4684623303117058, 0.2863708053899042, 0.4489302200945696, 0.3606737334686688, 0.09834172337505831, 0.1439119889738254, 0.10526388551166177, 0.08976738859769384, 0.15927641460572795, 0.07353544332944184, 0.4894096639868448, 0.24735122968283396, 0.41440459167745447, 0.10107859516115147, 0.4809249647595707, 0.043928674649753696, 0.27268427565697984, 0.07203278686513981, 0.35989685204578803, 0.08410225657903847, 0.09640449279894714, 0.2859044620344169, 0.766491644508495, 0.27194216744256416, 0.11891721880979944, 0.6033870782914414, 0.8445823904457724, 0.4148378249676725, 0.09538880480821377, 0.5822786697287807, 0.2006236885231063, 0.30215903380660414, 0.3526626332448971, 0.22921561702294402, 0.3499358724503807, 0.451050436906263, 0.01968005574460141, 0.3849224947932618, 0.608666907839271, 0.30333177217190177, 0.05732515971384944, 0.08299070223644744, 0.155374347961305, 0.4378217303747408, 0.10641916767178827, 0.3207785913922725, 0.3280003244598044, 0.4747408725557203, 0.27229542413121455, 0.5314247042003052, 0.13834506443323813, 0.652508483608137, 0.1775869136191267, 0.4659209431511335, 0.3288332341233703, 0.47224603889779837, 0.2773569186284155, 0.18590272545123854, 0.6719763059805124, 0.04569198037744582, 0.22473444069733528, 0.0776074933333939, 0.1411968215808168, 0.3654892991508686, 0.06069899520469324, 0.21029328672965164, 0.13919371635861133, 0.16321149678759816, 0.6144435769482088, 0.1388055550317996, 0.0827658987104557, 0.0793107693477757, 0.04994940743047871, 0.46220165202879504, 0.08265172102971341, 0.5554564865761329, 0.10902951494304747, 0.26480674198345266, 0.31816712550642645, 0.20184400370343658, 0.23734670470511587, 0.19264674509953905, 0.03558879485690103, 0.5314247042003052, 0.3013473679880785, 0.8043030592862955, 0.07665185966197174, 0.17816243980233548, 0.14637302723887635, 0.43623195291339645, 0.5773286546676725, 0.06996409198491005, 0.0635191394270278, 0.11839391684253864, 0.03368970372860669, 0.16544292122901683, 0.5002106013252752, 0.20783967621931676, 0.4413184352618238, 0.1377753535318076, 0.017128038770129694, 0.09070427960766203, 0.05237321155563324, 0.46044782253877736, 0.09863911308639095, 0.6058955548956951, 0.07377868677997379, 0.33726125667837825, 0.03705661785513226, 0.03856885477325478, 0.01970319875133708, 0.06623921298607705, 0.655672818127978, 0.36403826442427, 0.375635621083512, 0.25822104517587474, 0.26990817233175546, 0.30316845466795117, 0.21597661143113533, 0.10411587283779344, 0.4582573305440075, 0.28974208538397184, 0.3995654588450376, 0.48407929824265805, 0.2412117545349558, 0.49704114689177337, 0.3112403223054312, 0.13571503940671914, 0.35304273602320047, 0.18963603484652192, 0.06023564559469896, 0.305863422303413, 0.34062746964654456, 0.03532029949184434, 0.20200996882548472, 0.207876095289533, 0.11304202998506685, 0.26487496820305634, 0.46674395287949066, 0.05931266843465788, 0.6063731497207538, 0.053339747820140615, 0.16056749669580483, 0.3366557342021428, 0.18735912995827353, 0.2667542380283816, 0.9197592959547904, 0.13322255285490225, 0.3533185668595151, 0.08763312389948397, 0.343329095265401, 0.1298321532292276, 0.11240742021865013, 0.03412749239977686, 0.23316671381479437, 0.13955591125269062, 0.065615492475942, 0.03940539431326806, 0.04874684240881699, 0.42507109047861347, 0.3720756994829524, 0.20627971812824875, 0.23346983492740092, 0.299872058778726, 0.14688925552714138, 0.20529540916933675, 0.11294333341234963, 0.4523771212155355, 0.15895981664313275, 0.12633289347617382, 0.34801013400503944, 0.063056887931354, 0.09222807982804315, 0.19281104432210028, 0.11843845992675284, 0.1064686731970873, 0.12171087020281346, 0.49704114689177337, 0.4202798549667376, 0.058322454167927695, 0.40418598015134155, 0.7514842711311043, 0.067978575311199, 0.1468497162592186, 0.3655805321171328, 0.36741292271676196, 0.08785516413846428, 0.4223454464089015, 0.09472348251934337, 0.14196098925812006, 0.10013555988874479, 0.32154631204965056, 0.05416575683382341, 0.786126361492164, 0.04696516601190348, 0.26926088858349784, 0.28123172687107445, 0.3094364396730669, 0.04307250962973752, 0.07126159086244754, 0.6143015945908075, 0.495586079448059, 0.46102608015166635, 0.40789311683600216, 0.8929715185951024, 0.1227006502272181, 0.3638055988942468, 0.10470002869891348, 0.29304213908849364, 0.8936703981375603, 0.3534407380188983, 0.0883666731866185, 0.07895584641700149, 0.05166417783587085, 0.4199775765299997, 0.10304865631077798, 0.1041340676595982, 0.11031385635331636, 0.22368578646300386, 0.22137255536682798, 0.0725394352715707, 0.08320759746190642, 0.3577905591727162, 0.36362749207413336, 0.13058702032609693, 0.4306817897420764, 0.4684623303117058, 0.3185463047756948, 0.6991046594229053, 0.33105510290791684, 0.35804773811787727, 0.3499358724503807, 0.17780319308126435, 0.07142366539796174, 0.1504846162366139, 0.28643330026545544, 0.11492102279820171, 0.08716328114311156, 0.12905574960179156, 0.5528531989583015, 0.2852168598030531, 0.3185463047756948, 0.41766807389819915, 0.22818770291371737, 0.10749415552266317, 0.07500089027222667, 0.2150933620687273, 0.4879833184669665, 0.21367083697314282, 0.18281788227943807, 0.11217648511765432, 0.01860460444149037, 0.4990100838788346, 0.3212979959143686, 0.7252893191599291, 0.30018855716775616, 0.2808216200321265, 0.24332849241566534, 0.22583693263898685, 0.307128141019565, 0.12930297020615966, 0.07734813107736227, 0.38078614076753503, 0.037937415915298756, 0.18389331462546077, 0.2015421194948802, 0.10121634311933059, 0.7209948827487924, 0.252131738577411, 0.19866278493931944, 0.5569604587758099, 0.19172534874952063, 0.07516041810443141, 0.18673310211333727, 0.20736440356309183, 0.27568985010185776, 0.1748501221961516, 0.134246332983591, 0.12151400729184814, 0.03860330573341564, 0.16198960071610413, 0.062309112953929935, 0.14943540958877521, 0.46827469198568006, 0.12435295831370408, 0.11768791031746062, 0.10794707492381372, 0.04347111427796346, 0.07423675680829, 0.1602542791395647, 0.19911642350143877, 0.2379444352717226, 0.36664322039668684, 0.10130143557253446, 0.17108028607870185, 0.6143194513817134, 0.5641235853966853, 0.29864316680665437, 0.44752301946823647, 0.13459844499503626, 0.037461465199631894, 0.5002964248569376, 0.4059565893810353, 0.7035957096210382, 0.0629603198376949, 0.25036415064992923, 0.14780834332950044, 0.24800647860056513, 0.10438723399855232, 0.24366911510822187, 0.4574644219698093, 0.8347014835967527, 0.42226245660703365, 0.4073158502222598, 0.47525484003715535, 0.37845934883934684, 0.35325777167774697, 0.4763432908647238, 0.18941100564626978, 0.23853527246002126, 0.27277355193056574, 0.5556171757583562, 0.19481513110659687, 0.7460207524242459, 0.12627308236197843, 0.2115813466591615, 0.4773837842994688, 0.22238536240250728, 0.1978655273089749, 0.32057959349203036, 0.1601330373243487, 0.6256605001243821, 0.34062746964654456, 0.5899158924001677, 0.1273375405407705, 0.6866376712310945, 0.3812864953771038, 0.07918534602430627, 0.10510921928053807, 0.052405178286905496, 0.29010285216427345, 0.5802968836962079, 0.4475494904811408, 0.33107045093633036, 0.6046547135519548, 0.33132995382553565, 0.3391582818855403, 0.37109937806185267, 0.18876467901964422, 0.03244681540368277, 0.6531311156123596, 0.18281848038190407, 0.06840545126676123, 0.23876166598551407, 0.5602062902528231, 0.05478334190217349, 0.18965009362393503, 0.502081053312289, 0.0945975060483667, 0.24937367783354814, 0.14040338921272166, 0.09582424632391484, 0.4879833184669665, 0.07536550594022651, 0.37763546052463404, 0.20240400638142053, 0.06234715971662652, 0.1729504208160284, 0.2536573606029918, 0.1491704939138675, 0.47224603889779837, 0.20734784509414073, 0.1656619584420439, 0.20263687678412212, 0.4576701693643329, 0.3746187330143109, 0.06578487521364562, 0.09359041291034786, 0.15714155813810793, 0.43198081216185935, 0.17693664965610134, 0.14200602748771296, 0.16878839641400256, 0.11131318694256087, 0.43040972974554736, 0.12494266711040569, 0.5286591337585229, 0.3917329141436472, 0.14284790216410748, 0.29931895876037384, 0.3998656181534954, 0.13198036366642862, 0.2166851793268345, 0.164669749255824, 0.3116999397838065, 0.5702002297218003, 0.2867818412254799, 0.05809024612643199, 0.0701620515557333, 0.10493669218879953, 0.03474255021640338, 0.14069518845012563, 0.7697788668098057, 0.44513161239284327, 0.12104291767226882, 0.2823656727566666, 0.28640273091276736, 0.09904459769556595, 0.10889384421684001, 0.1978655273089749, 0.6326587477498924, 0.0766186874204361, 0.07300117689776386, 0.3978521493117628, 0.7293533971641823, 0.24040337450518035, 0.46827469198568006, 0.03737110954461231, 0.48112847828662497, 0.5755848065786346, 0.12151472907643468, 0.332302417201758, 0.3208349144509022, 0.13406270144296106, 0.47820199098358873, 0.024219732643774528, 0.7923035912680444, 0.3099424932714111, 0.8494816644677875, 0.15230116664989468, 0.8795672599938588, 0.34536882843285344, 0.587897812361327, 0.3660303223369904, 0.3074082248441362, 0.1925553058603695, 0.1582957933341015, 0.5297945963993664, 0.1892543681582496, 0.06574637766643598, 0.03286461121245521, 0.6223124217546917, 0.48666930315350876, 0.17200815643270417, 0.27042696199957883, 0.16010429726024444, 0.25291734909108765, 0.22778758435893687, 0.6055190518965303, 0.41989528411161425, 0.2865861541738164, 0.17344095530188786, 0.4163761941495938, 0.24610426408478792, 0.029106329843254564, 0.5849270471051293, 0.09607886499379148, 0.4890296174547498, 0.11193395874659995, 0.3667485749721523, 0.29672938182784603, 0.13696827462710404, 0.03986507081677082, 0.41542023534722683, 0.1642424989032959, 0.041559354155004224, 0.1266666793707928, 0.5259198205822933, 0.42123490919744344, 0.6147437654518444, 0.42849246998341506, 0.04874684240881699, 0.16870816563337898, 0.35179373534084035, 0.4552463954734379, 0.1543174595222413, 0.4641274821418986, 0.1106599594415556, 0.40441066041397966, 0.05916303638108533, 0.24194101851814365, 0.5755848065786346, 0.23631147082452741, 0.04679471849088612, 0.33132995382553565, 0.6031606095022326, 0.16900214819844117, 0.9322526967181247, 0.1065938389205352, 0.0540586741766943, 0.14920224829950646, 0.03054451782098533, 0.13595064656866984, 0.15908339514281045, 0.09402391562754642, 0.27219479721363327, 0.10477531970828624, 0.6046547135519548, 0.04412971358840656, 0.0821245873848182, 0.24953715645213048, 0.24311299470472425, 0.679537413518331, 0.02875041056121841, 0.2874129658970298, 0.17131102264191878, 0.07042427222914205, 0.1577516063520068, 0.39934634677258996, 0.42249259173992826, 0.24940231538328683, 0.46827469198568006, 0.040988937643475554, 0.034828704291737345, 0.26663563965858417, 0.22421743312747255, 0.10716094829621758, 0.7421831263598226, 0.4644511163280224, 0.1591307416719686, 0.21502194578256428, 0.12883185373794437, 0.15520095945599266, 0.04280666734842442, 0.06928764484923078, 0.3578757504587543, 0.0760792945579073, 0.06637805380770656, 0.5755848065786346, 0.4326356954473739, 0.16985579355455038, 0.47152805642545803, 0.11644579282256762, 0.11790522998710073, 0.5438286352264949, 0.41561805514360906, 0.050606352251634235, 0.21836830194439782, 0.22298545275517268, 0.1504846162366139, 0.16819644397314482, 0.47796113776613436, 0.14100197907825862, 0.7878397890034206, 0.12176963827920351, 0.09814942480303201, 0.23162396036129984, 0.04400104962869911, 0.061588508633294015, 0.2774601068082493, 0.40816383821078206, 0.14036214651023216, 0.11837607594274324, 0.0703155477214753, 0.17002415827487982, 0.24611532014486182, 0.06874641727313702, 0.30975746960573625, 0.07004288447243323, 0.6453829176356538, 0.3880412370469972, 0.10205495289732236, 0.12171087020281346, 0.38550692709735157, 0.4398162761337091, 0.5769741243450848, 0.48842976274850136, 0.3866799681687785, 0.17129518728202664, 0.5711206597512044, 0.4456070955069118, 0.4585850027539752, 0.25462747480751524, 0.34771016550763867, 0.35548618548401445, 0.07878090041588082, 0.3008706318705062, 0.08117751180329491, 0.055511805197920094, 0.1600174453683395, 0.35597309965685686, 0.5473978930443646, 0.3321771897262046, 0.14643302530661162, 0.7653011157176768, 0.24188431843396252, 0.16704799028757666, 0.41136103198090634, 0.5749869949413896, 0.709238838470871, 0.09340318303147321, 0.602429869503323, 0.04154705947390969, 0.7519582179986716, 0.15993940416551844, 0.04372375151311325, 0.4076899811241429, 0.4644511163280224, 0.3133137248525114, 0.24628490675063597, 0.06972977174174444, 0.15949948541388637, 0.2241543425141257, 0.1729876202034616, 0.07290025122558275, 0.1220000714032804, 0.36493953208423235, 0.09420126302076737, 0.026726938234992392, 0.7199273032686843, 0.4606762448039463, 0.04906818437448113, 0.19446415942665518, 0.14876853598344464, 0.3247816953453747, 0.023320858692869595, 0.7310618090422621, 0.48944479260603346, 0.20357574295749958, 0.0840537250624015, 0.5368744051465595, 0.21101467800102214, 0.46682279298460017, 0.3749869638443927, 0.46592999202179275, 0.10188412989688433, 0.15751976448865512], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"free.sulfur.dioxide\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"free.sulfur.dioxide\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}}, {\"id\": \"All_total.sulfur.dioxide\", \"params\": {\"data\": [{\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Reference<br>total.sulfur.dioxide=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [123.0, 231.0, 126.0, 107.0, 175.0, 65.0, 107.0, 115.0, 121.0, 69.0, 180.0, 9.0, 158.0, 195.0, 211.0, 150.0, 101.0, 43.0, 74.0, 93.0, 202.0, 95.0, 142.0, 177.0, 84.0, 170.0, 93.0, 158.0, 131.0, 75.0, 92.0, 54.0, 92.0, 170.0, 63.0, 130.0, 186.0, 142.0, 99.0, 66.0, 67.0, 148.0, 60.0, 97.0, 211.0, 110.0, 57.0, 142.0, 18.0, 135.0, 110.0, 177.0, 104.0, 189.0, 156.0, 163.0, 73.0, 98.0, 104.0, 127.0, 19.0, 128.0, 144.0, 140.0, 41.0, 24.0, 100.0, 114.0, 160.0, 86.0, 125.0, 86.0, 101.0, 289.0, 94.0, 90.0, 37.0, 83.0, 60.0, 125.0, 189.0, 93.0, 57.0, 124.0, 98.0, 93.0, 143.0, 50.0, 93.0, 17.0, 119.0, 109.0, 148.0, 143.0, 151.0, 116.0, 134.0, 117.0, 85.0, 157.0, 47.0, 200.0, 41.0, 8.0, 95.0, 200.0, 103.0, 133.0, 86.0, 38.0, 103.0, 176.0, 166.0, 49.0, 158.0, 121.0, 110.0, 72.0, 171.0, 44.0, 171.0, 134.0, 228.0, 140.0, 89.0, 31.0, 25.0, 127.0, 147.0, 23.0, 127.0, 106.0, 129.5, 71.0, 115.0, 155.0, 52.0, 23.0, 109.0, 44.0, 109.0, 155.0, 159.0, 161.0, 17.0, 113.0, 85.0, 77.0, 34.0, 109.0, 149.0, 42.0, 143.0, 206.0, 118.0, 111.0, 100.0, 167.0, 112.0, 122.0, 115.0, 91.0, 68.0, 45.0, 137.0, 213.0, 192.0, 142.0, 161.0, 119.0, 20.0, 58.0, 123.0, 97.0, 43.0, 144.0, 31.0, 134.0, 138.0, 33.0, 134.0, 126.0, 15.0, 163.0, 136.0, 127.0, 118.0, 15.0, 194.0, 96.0, 128.0, 11.0, 164.0, 164.0, 94.0, 118.0, 126.0, 113.0, 72.0, 58.0, 124.0, 122.0, 111.0, 46.0, 181.0, 74.0, 22.0, 124.0, 155.0, 146.0, 73.0, 101.0, 121.0, 133.0, 80.0, 128.0, 106.0, 128.0, 160.0, 75.0, 78.0, 158.0, 87.0, 110.0, 25.0, 111.0, 189.0, 156.0, 106.0, 151.0, 186.0, 184.0, 52.0, 139.0, 92.0, 112.0, 150.0, 169.0, 107.0, 128.0, 202.0, 192.0, 114.0, 228.0, 64.0, 193.0, 155.0, 140.0, 167.0, 88.0, 163.0, 229.0, 66.0, 28.0, 29.0, 101.0, 143.0, 168.0, 152.0, 9.0, 146.0, 92.0, 99.0, 144.0, 109.0, 130.0, 114.0, 20.0, 44.0, 96.0, 61.0, 48.0, 81.0, 104.0, 119.0, 156.0, 115.0, 24.0, 11.0, 90.0, 161.0, 146.0, 90.0, 105.0, 93.0, 27.0, 182.0, 186.0, 46.0, 87.0, 84.0, 158.0, 12.0, 138.0, 149.0, 201.0, 34.0, 138.0, 71.0, 103.0, 40.0, 113.0, 98.0, 93.0, 98.0, 44.0, 142.0, 54.0, 155.0, 124.0, 70.0, 174.0, 28.0, 249.5, 90.0, 21.0, 153.0, 142.0, 100.0, 81.0, 104.0, 65.0, 170.0, 164.0, 118.0, 25.0, 81.0, 27.0, 188.0, 151.0, 107.0, 100.0, 19.0, 171.0, 96.0, 167.0, 76.0, 102.0, 159.0, 242.0, 213.0, 49.0, 78.0, 141.0, 22.0, 148.0, 125.0, 37.0, 96.0, 200.0, 143.0, 173.0, 115.0, 57.0, 160.0, 107.0, 79.0, 155.0, 23.0, 135.0, 194.0, 172.0, 57.0, 48.0, 88.0, 112.0, 125.0, 117.0, 31.0, 179.0, 149.0, 67.0, 102.0, 93.0, 78.0, 122.0, 142.0, 43.0, 98.0, 86.0, 50.0, 209.0, 63.0, 247.0, 206.0, 98.0, 95.0, 170.0, 163.0, 93.0, 132.0, 111.0, 158.0, 97.0, 221.0, 42.0, 87.0, 122.0, 178.0, 114.0, 42.0, 62.0, 70.0, 168.0, 78.0, 127.0, 134.0, 171.0, 87.0, 169.0, 140.0, 168.0, 141.0, 78.0, 102.0, 118.0, 152.0, 171.0, 143.0, 168.0, 138.0, 131.0, 206.0, 149.0, 134.0, 114.0, 111.0, 166.0, 165.0, 178.0, 186.0, 79.0, 98.0, 68.0, 146.0, 111.0, 16.0, 54.0, 155.0, 47.0, 102.0, 111.0, 89.0, 125.0, 109.0, 118.0, 231.0, 154.0, 24.0, 83.0, 126.0, 124.0, 70.0, 108.0, 174.0, 38.0, 223.0, 37.0, 101.0, 116.0, 22.0, 66.0, 37.0, 208.0, 138.0, 92.0, 134.0, 143.0, 154.0, 27.0, 42.0, 215.0, 131.0, 169.0, 113.0, 166.0, 105.0, 111.0, 113.0, 98.0, 42.0, 183.0, 118.0, 172.0, 134.0, 117.0, 109.0, 118.0, 88.0, 120.0, 223.0, 94.0, 93.0, 129.0, 11.0, 125.0, 185.0, 197.0, 108.0, 101.0, 195.0, 140.0, 140.0, 194.0, 126.0, 176.0, 113.0, 156.0, 90.0, 135.0, 98.0, 100.0, 211.0, 184.0, 111.0, 76.0, 111.0, 245.0, 102.0, 109.0, 89.0, 114.0, 142.0, 114.0, 38.0, 28.0, 158.0, 121.0, 126.0, 92.0, 47.0, 16.0, 158.0, 142.0, 102.0, 61.0, 242.0, 137.0, 143.0, 125.0, 172.0, 144.0, 216.0, 157.0, 128.0, 114.0, 13.0, 118.0, 83.0, 143.0, 116.0, 167.0, 91.0, 76.0, 125.0, 15.0, 73.0, 37.0, 213.0, 110.0, 160.0, 143.0, 68.0, 113.0, 88.0, 124.0, 112.0, 63.0, 110.0, 204.0, 78.0, 151.0, 168.0, 114.0, 110.0, 82.0, 154.0, 134.0, 229.0, 154.0, 109.0, 101.0, 123.0, 54.0, 126.0, 39.0, 128.0, 118.0, 65.0, 130.0, 136.0, 114.0, 215.0, 144.0, 128.0, 117.0, 89.0, 16.0, 95.0, 215.0, 150.0, 114.0, 162.0, 110.0, 17.0, 164.0, 144.0, 115.5, 134.0, 155.0, 119.0, 70.0, 230.0, 13.0, 137.0, 72.0, 69.0, 136.0, 28.0, 103.0, 154.0, 158.0, 33.0, 56.0, 194.0, 195.0, 140.0, 84.0, 170.0, 87.0, 178.0, 186.0, 193.0, 113.0, 140.0, 72.0, 37.0, 170.0, 110.0, 75.0, 104.0, 34.0, 152.0, 99.0, 117.0], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Current<br>total.sulfur.dioxide=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [101.0, 194.0, 126.0, 68.0, 94.0, 99.0, 97.0, 124.0, 95.0, 163.0, 32.0, 191.0, 111.0, 119.0, 127.0, 118.0, 38.0, 61.0, 28.0, 162.0, 212.5, 193.0, 74.0, 147.0, 179.0, 99.0, 127.0, 134.0, 93.0, 148.0, 74.0, 136.0, 178.0, 99.0, 121.0, 129.0, 76.0, 150.0, 81.0, 31.0, 124.0, 85.0, 156.0, 238.0, 27.0, 45.0, 135.0, 86.0, 212.0, 195.0, 18.0, 122.0, 137.0, 59.0, 175.0, 145.0, 181.0, 63.0, 165.0, 64.0, 64.0, 150.0, 105.0, 85.0, 100.0, 127.0, 144.0, 155.0, 89.0, 153.0, 189.0, 100.0, 117.0, 114.0, 113.0, 145.0, 174.0, 161.0, 38.0, 25.0, 87.0, 144.0, 60.0, 162.0, 143.0, 26.0, 55.0, 96.0, 172.0, 132.0, 143.0, 108.0, 115.0, 107.0, 117.0, 97.0, 28.0, 294.0, 10.0, 24.0, 126.0, 101.0, 22.0, 121.0, 189.0, 131.0, 105.0, 109.0, 117.0, 107.0, 75.0, 176.0, 112.0, 76.0, 138.0, 35.0, 153.0, 152.0, 136.0, 59.0, 158.0, 121.0, 44.0, 81.0, 60.0, 16.0, 53.0, 94.0, 26.0, 84.0, 82.0, 38.0, 98.0, 253.0, 74.0, 213.0, 12.0, 60.0, 169.0, 118.0, 166.0, 58.0, 35.0, 153.0, 204.0, 99.0, 190.0, 47.0, 134.0, 116.0, 98.0, 93.0, 94.0, 103.0, 116.0, 164.0, 47.0, 28.0, 92.0, 192.0, 65.0, 28.0, 86.0, 199.0, 20.0, 80.0, 148.0, 29.0, 48.0, 123.0, 100.0, 107.0, 41.0, 9.0, 88.0, 213.0, 129.0, 216.0, 111.0, 43.0, 131.0, 124.0, 117.0, 80.0, 141.0, 35.0, 28.0, 72.0, 170.0, 36.0, 124.0, 149.0, 92.0, 118.0, 133.0, 109.0, 76.0, 89.0, 190.0, 133.0, 98.0, 129.0, 245.0, 84.0, 191.0, 130.0, 99.0, 76.0, 134.0, 183.0, 116.0, 125.0, 34.0, 94.0, 35.0, 124.0, 90.0, 143.0, 174.0, 105.0, 125.0, 244.0, 15.0, 209.0, 189.0, 212.0, 118.0, 161.0, 59.0, 172.0, 65.0, 97.0, 84.0, 104.0, 33.0, 170.0, 99.0, 90.0, 140.0, 150.0, 114.0, 118.0, 132.0, 104.0, 54.0, 19.0, 155.0, 193.0, 111.0, 31.0, 150.0, 143.0, 145.0, 107.0, 105.0, 95.0, 126.0, 73.0, 111.0, 153.0, 15.0, 168.0, 111.0, 181.0, 172.0, 139.0, 110.0, 136.0, 189.0, 135.0, 104.0, 117.0, 51.0, 49.0, 113.0, 39.0, 148.0, 109.0, 102.0, 51.0, 26.0, 122.0, 104.0, 120.0, 114.0, 19.0, 132.0, 73.0, 145.0, 135.0, 47.0, 12.0, 132.0, 87.0, 125.0, 139.0, 94.0, 143.0, 139.0, 97.0, 119.0, 109.0, 163.0, 134.0, 178.0, 44.0, 95.0, 143.0, 180.0, 90.0, 129.0, 72.0, 32.0, 123.0, 81.0, 152.0, 214.0, 126.0, 117.0, 173.0, 204.0, 134.0, 156.0, 134.0, 65.0, 151.0, 114.0, 44.0, 164.0, 125.0, 28.0, 156.0, 28.0, 201.0, 106.0, 116.0, 182.0, 225.0, 142.0, 39.0, 142.0, 98.0, 188.0, 55.0, 27.0, 113.0, 87.0, 140.0, 33.0, 85.0, 158.0, 95.0, 169.0, 103.0, 191.0, 151.0, 28.0, 113.0, 163.0, 26.0, 95.0, 135.0, 55.0, 171.0, 21.0, 206.0, 113.0, 168.0, 173.0, 161.0, 97.0, 227.0, 107.0, 81.0, 17.0, 17.0, 96.0, 118.0, 38.0, 111.0, 118.0, 125.0, 143.0, 189.0, 98.0, 166.0, 135.0, 68.0, 12.0, 131.0, 172.0, 174.0, 128.0, 194.0, 108.0, 35.0, 155.0, 26.0, 87.0, 93.0, 187.0, 150.0, 158.0, 114.0, 120.0, 169.0, 130.0, 109.0, 149.0, 80.0, 23.0, 125.0, 81.0, 55.0, 185.0, 53.0, 245.0, 17.0, 122.0, 130.0, 75.0, 90.0, 34.0, 48.0, 15.0, 118.0, 151.0, 150.0, 85.0, 140.0, 85.0, 155.0, 84.0, 109.0, 17.0, 38.0, 172.0, 178.0, 93.0, 171.0, 229.0, 27.0, 146.0, 104.0, 89.0, 15.0, 60.0, 112.0, 47.0, 48.0, 136.0, 89.0, 141.0, 9.0, 154.0, 159.0, 113.0, 88.0, 158.0, 29.0, 179.0, 92.0, 181.0, 173.0, 160.0, 107.0, 151.0, 79.0, 132.0, 37.0, 170.0, 163.0, 50.0, 135.0, 98.0, 77.0, 172.0, 102.0, 135.0, 123.0, 143.0, 134.0, 85.0, 21.0, 182.0, 132.0, 28.0, 101.0, 25.0, 44.0, 100.0, 129.5, 43.0, 47.0, 40.0, 14.0, 125.0, 46.0, 11.0, 49.0, 118.0, 139.0, 229.0, 114.0, 53.0, 113.0, 200.0, 133.0, 88.0, 128.0, 70.0, 80.0, 113.0, 73.0, 152.0, 104.0, 45.0, 19.0, 206.0, 41.0, 173.0, 14.0, 97.0, 180.0, 147.0, 149.0, 135.0, 116.0, 150.0, 164.5, 21.0, 128.0, 178.0, 101.0, 16.0, 180.0, 14.0, 132.0, 10.0, 189.0, 156.0, 166.0, 10.0, 153.0, 49.0, 99.0, 68.0, 16.0, 80.0, 229.0, 225.0, 104.0, 122.0, 10.0, 57.0, 150.0, 69.0, 76.0, 102.0, 129.0, 95.0, 116.0, 168.0, 19.0, 173.0, 189.0, 142.0, 177.0, 71.0, 140.0, 110.0, 184.0, 152.0, 164.0, 105.0, 117.0, 124.0, 91.0, 181.0, 85.0, 181.0, 168.0, 128.0, 89.0, 167.0, 155.0, 20.0, 212.0, 78.0, 25.0, 35.0, 130.0, 129.0, 122.0, 7.0, 69.0, 120.0, 140.0, 83.0, 136.0, 157.0, 169.0, 221.0, 190.0, 113.0, 91.0, 13.0, 104.0, 136.0, 167.0, 99.0, 103.0, 159.0, 108.0, 91.0, 136.0, 103.0, 213.0, 189.0, 169.0, 107.0, 91.0, 112.0, 82.0, 114.0, 72.0, 84.0, 159.0, 17.0, 128.0, 16.0, 43.0, 87.0, 136.0, 140.0, 144.0, 74.0, 86.0, 145.0, 153.0, 127.0, 228.0, 112.0, 157.0, 140.0, 192.0, 114.0, 111.0], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Reference<br>total.sulfur.dioxide=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [192.0, 65.0, 151.0, 44.0, 77.0, 45.0, 149.0, 23.0, 148.0, 174.0, 110.0, 164.0, 165.0, 163.0, 79.0, 183.0, 144.0, 19.0, 139.0, 12.0, 187.0, 206.0, 12.0, 120.0, 63.0, 54.0, 120.0, 91.0, 214.0, 183.0, 20.0, 106.0, 159.0, 196.0, 192.0, 112.0, 147.0, 130.0, 10.0, 180.0, 94.0, 22.0, 100.0, 84.0, 84.0, 124.0, 105.0, 149.0, 87.0, 53.0, 33.0, 141.0, 168.0, 14.0, 173.0, 220.0, 169.0, 177.0, 69.0, 55.0, 245.0, 179.0, 16.0, 164.0, 113.0, 131.0, 172.0, 133.0, 36.0, 91.0, 183.0, 8.0, 194.0, 117.0, 115.0, 144.0, 233.0, 20.0, 92.0, 87.0, 106.0, 76.0, 243.0, 23.0, 138.0, 38.0, 201.0, 26.0, 72.0, 63.0, 8.0, 152.0, 111.0, 194.0, 195.0, 202.0, 159.0, 133.0, 179.0, 117.0, 195.0, 71.0, 111.0, 197.0, 120.0, 69.0, 115.0, 72.0, 115.0, 150.0, 47.0, 63.0, 15.0, 104.0, 51.0, 92.0, 178.0, 77.0, 84.0, 86.0, 166.0, 49.0, 150.0, 111.0, 204.0, 210.0, 198.0, 42.0, 86.0, 184.0, 33.0, 86.0, 156.0, 189.0, 139.0, 164.0, 60.0, 176.0, 140.0, 141.0, 116.0, 227.0, 75.0, 116.0, 177.0, 197.0, 161.0, 142.0, 48.0, 84.0, 156.0, 26.0, 143.0, 22.0, 104.0, 31.0, 98.0, 165.0, 73.0, 131.0, 101.0, 28.0, 49.0, 113.0, 12.0, 84.0, 179.0, 176.0, 187.0, 180.0, 171.0, 99.0, 121.0, 171.0, 95.0, 16.0, 35.0, 177.0, 55.0, 63.0, 189.0, 12.0, 114.0, 171.0, 179.0, 197.0, 187.0, 34.0, 157.0, 227.0, 115.0, 75.0, 206.0, 50.0, 200.0, 12.0, 151.0, 218.0, 210.0, 130.0, 198.0, 82.0, 82.0, 31.0, 132.0, 157.0, 131.0, 61.0, 13.0, 21.0, 87.0, 148.0, 160.0, 225.0, 173.0, 158.0, 192.0, 131.0, 220.0, 110.0, 24.0, 103.0, 204.0, 111.0, 115.0, 168.0, 93.0, 234.0, 87.0, 13.0, 117.0, 160.0, 103.0, 111.0, 106.0, 143.0, 207.0, 57.0, 210.0, 230.0, 38.0, 162.0, 136.0, 174.0, 103.0, 47.0, 142.0, 154.0, 164.0, 30.0, 155.0, 160.0, 159.0, 19.0, 176.0, 171.0, 90.0, 62.0, 133.0, 18.0, 169.0, 142.0, 173.0, 122.0, 178.0, 149.0, 128.0, 155.0, 58.0, 79.0, 212.0, 193.0, 167.0, 205.0, 186.0, 248.0, 124.0, 188.0, 82.0, 64.0, 14.0, 31.0, 188.0, 61.0, 117.0, 174.0, 123.0, 170.0, 73.0, 198.0, 97.0, 119.0, 307.5, 51.0, 68.0, 60.0, 106.0, 252.0, 177.0, 115.0, 78.0, 102.0, 96.0, 189.0, 72.0, 71.0, 184.0, 23.0, 18.0, 91.0, 150.0, 170.0, 31.0, 196.0, 133.0, 184.0, 282.0, 125.0, 223.0, 37.0, 20.0, 210.0, 60.0, 11.0, 168.0, 136.0, 71.0, 176.0, 65.0, 195.0, 167.0, 78.0, 164.0, 198.0, 131.0, 33.0, 240.0, 27.0, 95.0, 234.0, 87.0, 185.0, 120.0, 48.0, 188.0, 38.0, 195.0, 188.0, 62.0, 184.0, 145.0, 35.0, 197.0, 99.0, 104.0], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Current<br>total.sulfur.dioxide=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [106.0, 196.0, 164.0, 47.0, 156.0, 167.0, 131.0, 14.0, 21.0, 25.0, 111.0, 85.0, 191.0, 207.0, 181.0, 133.0, 143.0, 42.0, 125.0, 131.0, 115.0, 219.0, 185.0, 225.0, 101.0, 110.0, 72.0, 174.0, 66.0, 163.0, 159.0, 166.0, 24.0, 73.0, 164.0, 135.0, 152.0, 39.0, 127.0, 128.0, 101.0, 44.0, 150.0, 171.0, 67.0, 177.0, 112.0, 38.0, 174.0, 40.0, 176.0, 139.0, 91.0, 33.0, 26.0, 49.0, 38.0, 23.0, 145.0, 201.0, 23.0, 216.0, 186.0, 26.0, 91.0, 11.0, 45.0, 34.0, 23.0, 42.0, 16.0, 182.0, 168.0, 23.0, 135.0, 111.0, 255.0, 61.0, 98.0, 84.0, 126.0, 21.0, 187.0, 143.0, 169.0, 59.0, 171.0, 184.0, 174.0, 102.0, 210.0, 134.0, 16.0, 213.0, 54.0, 9.0, 131.0, 148.0, 142.0, 216.0, 88.0, 167.0, 133.0, 38.0, 200.0, 9.0, 90.0, 26.0, 119.0, 197.0, 59.0, 148.0, 30.0, 189.0, 53.0, 166.0, 146.0, 144.0, 196.0, 44.0, 179.0, 132.0, 161.0, 102.0, 20.0, 94.0, 89.0, 123.0, 20.0, 201.0, 55.0, 227.0, 213.0, 56.0, 68.0, 178.0, 121.0, 13.0, 94.0, 126.0, 117.0, 169.0, 95.0, 77.0, 68.0, 149.0, 138.0, 12.0, 140.0, 166.0, 114.0, 212.0, 129.0, 176.0, 145.0, 117.0, 135.0, 183.0, 131.0, 213.0, 55.0, 173.0, 128.0, 116.0, 29.0, 90.0, 56.0, 92.0, 140.0, 150.0, 165.0, 114.0, 86.0, 178.0, 102.0, 107.0, 119.0, 220.0, 219.0, 158.0, 122.0, 157.0, 42.0, 84.0, 162.0, 161.0, 150.0, 116.0, 142.0, 149.0, 86.0, 102.0, 196.0, 83.0, 189.0, 35.0, 89.0, 142.0, 156.0, 97.0, 11.0, 201.0, 162.0, 198.0, 89.0, 183.0, 173.0, 15.0, 138.0, 160.0, 146.0, 106.0, 34.0, 106.0, 222.0, 80.0, 169.0, 172.0, 99.0, 60.0, 142.0, 202.0, 126.0, 216.0, 154.0, 119.0, 43.0, 199.0, 167.0, 143.0, 161.0, 129.0, 138.0, 145.0, 63.0, 167.0, 131.0, 129.0, 213.0, 101.0, 210.0, 31.0, 138.0, 162.0, 117.0, 190.0, 75.0, 105.0, 169.0, 70.0, 42.0, 186.0, 111.0, 153.0, 111.0, 133.0, 162.0, 238.5, 155.0, 38.0, 37.0, 101.0, 168.0, 168.0, 71.0, 186.0, 77.0, 113.0, 117.0, 164.0, 98.0, 28.0, 187.0, 148.0, 107.0, 108.0, 210.0, 72.0, 82.0, 136.0, 87.0, 161.0, 105.0, 197.0, 145.0, 148.0, 109.0, 126.0, 48.0, 66.0, 191.0, 147.0, 151.0, 85.0, 137.0, 31.0, 98.0, 192.0, 167.0, 22.0, 132.0, 47.0, 176.0, 226.0, 210.0, 131.0, 21.0, 105.0, 177.0, 181.0, 58.0, 191.0, 69.0, 145.0, 175.0, 162.0, 157.0, 197.0, 138.0, 80.0, 25.0, 20.0, 124.0, 164.0, 14.0, 151.0, 161.0, 6.0, 200.0, 168.0, 10.0, 166.0, 85.0, 148.0, 28.0, 85.0, 127.0, 133.0, 138.0, 104.0, 180.0, 121.0, 61.0, 63.0, 16.0, 49.0, 122.0, 106.0, 138.0, 112.0, 92.0, 128.0], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Reference\", \"x\": 0.245, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Current\", \"x\": 0.755, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"barmode\": \"overlay\", \"legend\": {\"title\": {\"text\": \"target\"}, \"tracegroupgap\": 0}, \"margin\": {\"t\": 60}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.49], \"title\": {\"text\": \"total.sulfur.dioxide\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.51, 1.0], \"matches\": \"x\", \"title\": {\"text\": \"total.sulfur.dioxide\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"count\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}}}}, {\"id\": \"total.sulfur.dioxide_good\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (ref)\", \"type\": \"scatter\", \"x\": [123.0, 231.0, 126.0, 107.0, 175.0, 65.0, 107.0, 115.0, 121.0, 69.0, 180.0, 9.0, 158.0, 195.0, 211.0, 150.0, 101.0, 43.0, 74.0, 93.0, 202.0, 95.0, 142.0, 177.0, 84.0, 170.0, 93.0, 158.0, 131.0, 75.0, 92.0, 54.0, 92.0, 170.0, 63.0, 130.0, 186.0, 142.0, 99.0, 66.0, 67.0, 148.0, 60.0, 97.0, 211.0, 110.0, 57.0, 142.0, 18.0, 135.0, 110.0, 177.0, 104.0, 189.0, 156.0, 163.0, 73.0, 98.0, 104.0, 127.0, 19.0, 128.0, 144.0, 140.0, 41.0, 24.0, 100.0, 114.0, 160.0, 86.0, 125.0, 86.0, 101.0, 289.0, 94.0, 90.0, 37.0, 83.0, 60.0, 125.0, 189.0, 93.0, 57.0, 124.0, 98.0, 93.0, 143.0, 50.0, 93.0, 17.0, 119.0, 109.0, 148.0, 143.0, 151.0, 116.0, 134.0, 117.0, 85.0, 157.0, 47.0, 200.0, 41.0, 8.0, 95.0, 200.0, 103.0, 133.0, 86.0, 38.0, 103.0, 176.0, 166.0, 49.0, 158.0, 121.0, 110.0, 72.0, 171.0, 44.0, 171.0, 134.0, 228.0, 140.0, 89.0, 31.0, 25.0, 127.0, 147.0, 23.0, 127.0, 106.0, 129.5, 71.0, 115.0, 155.0, 52.0, 23.0, 109.0, 44.0, 109.0, 155.0, 159.0, 161.0, 17.0, 113.0, 85.0, 77.0, 34.0, 109.0, 149.0, 42.0, 143.0, 206.0, 118.0, 111.0, 100.0, 167.0, 112.0, 122.0, 115.0, 91.0, 68.0, 45.0, 137.0, 213.0, 192.0, 142.0, 161.0, 119.0, 20.0, 58.0, 123.0, 97.0, 43.0, 144.0, 31.0, 134.0, 138.0, 33.0, 134.0, 126.0, 15.0, 163.0, 136.0, 127.0, 118.0, 15.0, 194.0, 96.0, 128.0, 11.0, 164.0, 164.0, 94.0, 118.0, 126.0, 113.0, 72.0, 58.0, 124.0, 122.0, 111.0, 46.0, 181.0, 74.0, 22.0, 124.0, 155.0, 146.0, 73.0, 101.0, 121.0, 133.0, 80.0, 128.0, 106.0, 128.0, 160.0, 75.0, 78.0, 158.0, 87.0, 110.0, 25.0, 111.0, 189.0, 156.0, 106.0, 151.0, 186.0, 184.0, 52.0, 139.0, 92.0, 112.0, 150.0, 169.0, 107.0, 128.0, 202.0, 192.0, 114.0, 228.0, 64.0, 193.0, 155.0, 140.0, 167.0, 88.0, 163.0, 229.0, 66.0, 28.0, 29.0, 101.0, 143.0, 168.0, 152.0, 9.0, 146.0, 92.0, 99.0, 144.0, 109.0, 130.0, 114.0, 20.0, 44.0, 96.0, 61.0, 48.0, 81.0, 104.0, 119.0, 156.0, 115.0, 24.0, 11.0, 90.0, 161.0, 146.0, 90.0, 105.0, 93.0, 27.0, 182.0, 186.0, 46.0, 87.0, 84.0, 158.0, 12.0, 138.0, 149.0, 201.0, 34.0, 138.0, 71.0, 103.0, 40.0, 113.0, 98.0, 93.0, 98.0, 44.0, 142.0, 54.0, 155.0, 124.0, 70.0, 174.0, 28.0, 249.5, 90.0, 21.0, 153.0, 142.0, 100.0, 81.0, 104.0, 65.0, 170.0, 164.0, 118.0, 25.0, 81.0, 27.0, 188.0, 151.0, 107.0, 100.0, 19.0, 171.0, 96.0, 167.0, 76.0, 102.0, 159.0, 242.0, 213.0, 49.0, 78.0, 141.0, 22.0, 148.0, 125.0, 37.0, 96.0, 200.0, 143.0, 173.0, 115.0, 57.0, 160.0, 107.0, 79.0, 155.0, 23.0, 135.0, 194.0, 172.0, 57.0, 48.0, 88.0, 112.0, 125.0, 117.0, 31.0, 179.0, 149.0, 67.0, 102.0, 93.0, 78.0, 122.0, 142.0, 43.0, 98.0, 86.0, 50.0, 209.0, 63.0, 247.0, 206.0, 98.0, 95.0, 170.0, 163.0, 93.0, 132.0, 111.0, 158.0, 97.0, 221.0, 42.0, 87.0, 122.0, 178.0, 114.0, 42.0, 62.0, 70.0, 168.0, 78.0, 127.0, 134.0, 171.0, 87.0, 169.0, 140.0, 168.0, 141.0, 78.0, 102.0, 118.0, 152.0, 171.0, 143.0, 168.0, 138.0, 131.0, 206.0, 149.0, 134.0, 114.0, 111.0, 166.0, 165.0, 178.0, 186.0, 79.0, 98.0, 68.0, 146.0, 111.0, 16.0, 54.0, 155.0, 47.0, 102.0, 111.0, 89.0, 125.0, 109.0, 118.0, 231.0, 154.0, 24.0, 83.0, 126.0, 124.0, 70.0, 108.0, 174.0, 38.0, 223.0, 37.0, 101.0, 116.0, 22.0, 66.0, 37.0, 208.0, 138.0, 92.0, 134.0, 143.0, 154.0, 27.0, 42.0, 215.0, 131.0, 169.0, 113.0, 166.0, 105.0, 111.0, 113.0, 98.0, 42.0, 183.0, 118.0, 172.0, 134.0, 117.0, 109.0, 118.0, 88.0, 120.0, 223.0, 94.0, 93.0, 129.0, 11.0, 125.0, 185.0, 197.0, 108.0, 101.0, 195.0, 140.0, 140.0, 194.0, 126.0, 176.0, 113.0, 156.0, 90.0, 135.0, 98.0, 100.0, 211.0, 184.0, 111.0, 76.0, 111.0, 245.0, 102.0, 109.0, 89.0, 114.0, 142.0, 114.0, 38.0, 28.0, 158.0, 121.0, 126.0, 92.0, 47.0, 16.0, 158.0, 142.0, 102.0, 61.0, 242.0, 137.0, 143.0, 125.0, 172.0, 144.0, 216.0, 157.0, 128.0, 114.0, 13.0, 118.0, 83.0, 143.0, 116.0, 167.0, 91.0, 76.0, 125.0, 15.0, 73.0, 37.0, 213.0, 110.0, 160.0, 143.0, 68.0, 113.0, 88.0, 124.0, 112.0, 63.0, 110.0, 204.0, 78.0, 151.0, 168.0, 114.0, 110.0, 82.0, 154.0, 134.0, 229.0, 154.0, 109.0, 101.0, 123.0, 54.0, 126.0, 39.0, 128.0, 118.0, 65.0, 130.0, 136.0, 114.0, 215.0, 144.0, 128.0, 117.0, 89.0, 16.0, 95.0, 215.0, 150.0, 114.0, 162.0, 110.0, 17.0, 164.0, 144.0, 115.5, 134.0, 155.0, 119.0, 70.0, 230.0, 13.0, 137.0, 72.0, 69.0, 136.0, 28.0, 103.0, 154.0, 158.0, 33.0, 56.0, 194.0, 195.0, 140.0, 84.0, 170.0, 87.0, 178.0, 186.0, 193.0, 113.0, 140.0, 72.0, 37.0, 170.0, 110.0, 75.0, 104.0, 34.0, 152.0, 99.0, 117.0], \"xaxis\": \"x\", \"y\": [0.8156061324462894, 0.42491310922683634, 0.8867827646463432, 0.8014995238430205, 0.30499958310650876, 0.5817355832705369, 0.959171062334887, 0.7854416128369749, 0.9085690698200813, 0.8998600376511439, 0.6341165000693628, 0.412102187638673, 0.7643629411050379, 0.4710001938005606, 0.40182653035141874, 0.40438056362905367, 0.8870480016118494, 0.3650667978415713, 0.9064321709292111, 0.9327245345966092, 0.6458420185168736, 0.8821841129047617, 0.6704018506542557, 0.7655671181822064, 0.8616986618932058, 0.48774537944210006, 0.9637355036179479, 0.6794204065079696, 0.6044835155949141, 0.7867954023600708, 0.9137982268836646, 0.5867502063434873, 0.8048584290077971, 0.9718511071053526, 0.9627192884041744, 0.7978623718349598, 0.6091120966723917, 0.8943338178728011, 0.8853376735027229, 0.9045563504021151, 0.9264844632598176, 0.6342457655367447, 0.9414033426130164, 0.5636516403732365, 0.5172967922101196, 0.4836896337264441, 0.35199620689495453, 0.788779954566273, 0.9696552399248426, 0.772496554239754, 0.8132656157621138, 0.4539090261140653, 0.9333708926412786, 0.679765045723866, 0.48457442622955804, 0.4248820606938153, 0.6737819616086004, 0.8780741425819777, 0.38340602447337646, 0.90634085684919, 0.5574014604752268, 0.6804147683859246, 0.9077110088845216, 0.7718472635729894, 0.4717552048891654, 0.22222808308441652, 0.8616549355667619, 0.705749071892896, 0.4699129352300819, 0.9680524782819758, 0.8891353183282249, 0.9466602521798594, 0.8553382520847058, 0.7430243903066251, 0.6616131862201935, 0.6919609500216202, 0.96565744679506, 0.913108907487878, 0.5395521774612226, 0.9026238558501023, 0.6550941529376255, 0.9757876320152292, 0.8833495792027257, 0.6666029765862381, 0.8504582120840628, 0.9320215595878566, 0.7639947574915884, 0.6085229656221847, 0.9557131606798471, 0.46184432615952054, 0.5642658412077981, 0.8815615400732472, 0.7189203536918151, 0.9301020530176726, 0.7341394174346678, 0.7759189559372703, 0.8448078654733812, 0.9012666081120407, 0.8926028620066223, 0.5287492720273277, 0.6874206920638863, 0.37408584674942635, 0.8348370105186077, 0.8697567261320243, 0.9175759024810304, 0.44644098895981, 0.8874384748400057, 0.7787567487441118, 0.9416122482572158, 0.3265229243180111, 0.9308095750950773, 0.42267134533232753, 0.43068181214270274, 0.8727308285810839, 0.7201611177732586, 0.8430904589044517, 0.8140617541555761, 0.9456747441572588, 0.6672663325862807, 0.8756470416862959, 0.518871521713375, 0.7040615347784164, 0.4957960231649875, 0.6250130361556073, 0.27413726132188326, 0.5193133578087885, 0.37656641690434584, 0.5808048103476511, 0.7917827117482167, 0.36569143480873245, 0.7232542293832885, 0.9785934574433302, 0.5715075300165849, 0.8182555969893297, 0.5448461144048058, 0.9491291995847589, 0.4833587957991669, 0.3189279754564957, 0.9184825510014271, 0.5524830505676419, 0.9600429304649183, 0.7818180966165994, 0.7962710274484252, 0.7569429870375118, 0.46184432615952054, 0.7641514270390748, 0.9486763575522457, 0.8086368705092697, 0.6784536879503494, 0.6877019790624462, 0.6082670858563528, 0.6053794617794684, 0.6319330693089359, 0.4982105707488519, 0.6787928880949093, 0.9231980717613485, 0.8831230955067948, 0.6845485656817341, 0.8799204262605215, 0.9164563829924386, 0.7819268199067826, 0.23469888428232324, 0.9492377841603665, 0.8826092272015389, 0.6360541596480074, 0.5184081252698399, 0.6400126753125241, 0.542646305979658, 0.4479501208302092, 0.7783171875827786, 0.7867712153112567, 0.5236605417423803, 0.6959846197179591, 0.7925023358445066, 0.6683189355892497, 0.18737025221649042, 0.42506327048176057, 0.7272596040941706, 0.7314191754306454, 0.4827891324637794, 0.6649341228620356, 0.9038332731164471, 0.9588917860646077, 0.8945194928389463, 0.49833043835950624, 0.7997712594855277, 0.8577935987172323, 0.7622736922026153, 0.8039391974899521, 0.7396811504731934, 0.8115340233127679, 0.801728888664367, 0.738451208106372, 0.5859674792922007, 0.1865203674848816, 0.8773430435604171, 0.36888329310067386, 0.8651817982269884, 0.9067615420962557, 0.8594983988587351, 0.7437750884018276, 0.9145224932934428, 0.9135679891815164, 0.8001832456898428, 0.6860977766129374, 0.9377826008632761, 0.9300369611912853, 0.6997062971069969, 0.5693182102579236, 0.3404656140239559, 0.7160591142088384, 0.7953146078011, 0.8869803873277935, 0.7639982823097876, 0.8681285227071118, 0.576868797021353, 0.93035102563313, 0.8375600281828176, 0.8279918435672958, 0.9266689436294401, 0.7559862346636359, 0.5099889666930224, 0.6914445842613687, 0.9651950326885705, 0.87851968214492, 0.8499702807396289, 0.4685752957996948, 0.7241546992314323, 0.7848147251007912, 0.7341394174346678, 0.7008877443692281, 0.340588975625529, 0.5013021766499856, 0.8321174529331695, 0.8818378666553491, 0.9176909075187759, 0.8634678749265305, 0.7436082905772717, 0.9343776659412377, 0.7668809937296346, 0.6243383802582345, 0.5332560471205093, 0.6907315465649003, 0.16626803588025432, 0.1668542888532837, 0.7408943843163458, 0.5221312328975666, 0.7457559475413279, 0.46389636934606376, 0.9292627865919654, 0.5268311186840582, 0.4244151934213653, 0.643310536612302, 0.8577438313980266, 0.7816208399762355, 0.8553382520847058, 0.7010035672814305, 0.5242572272016158, 0.9187320011579697, 0.8703498177621264, 0.6713045345576062, 0.9137982268836646, 0.8614414457916845, 0.9445662266054761, 0.8808216590199034, 0.7386378115490353, 0.8873009977622293, 0.9157094897337859, 0.6606038558129893, 0.9296803968514485, 0.8864322240790464, 0.5146720135715994, 0.8720710714485208, 0.9415427660945741, 0.9138701141498735, 0.6527559092576063, 0.8751970040938668, 0.9249766460056568, 0.801728888664367, 0.6575848465963361, 0.6934824043184128, 0.8619113960143526, 0.9419078024651042, 0.9591721389341828, 0.8397407150753159, 0.9084383840076588, 0.4963969309336195, 0.7359588175524252, 0.3531961907069324, 0.9279819479140234, 0.7752976919572294, 0.8665226278427577, 0.9515211055933231, 0.7314191754306454, 0.890886918514299, 0.3235491032739525, 0.3719939405423586, 0.6323804178173072, 0.8398006965792015, 0.8239469134189235, 0.8592101816891015, 0.7615002907198236, 0.8688259750909261, 0.8718104001390852, 0.5838074755684882, 0.8756470416862959, 0.901850575196968, 0.9451930143658351, 0.6253812669856891, 0.5890764576710766, 0.4921052500998711, 0.4862070578416567, 0.9170647663398394, 0.7035583451969506, 0.8476385889092957, 0.5603058978573646, 0.5810606890504925, 0.9088604673919816, 0.8903252600075929, 0.944267921154058, 0.9435968591480925, 0.938237366988842, 0.9357286047893738, 0.7961386682142712, 0.7840233885688647, 0.2513590507613302, 0.7389284097502917, 0.9053472250810051, 0.44438282424164377, 0.862281110352348, 0.8021059248496223, 0.9152740930046814, 0.643737358401971, 0.8540304955499701, 0.8613418170006786, 0.6911084183178322, 0.8848367871057808, 0.8387883096682573, 0.5942651630821018, 0.65691393717736, 0.6369979527510315, 0.8280658524313272, 0.9640736168216585, 0.6546311715671466, 0.5599819536107853, 0.48348053317652906, 0.7668016587569692, 0.03620763244300767, 0.7364400865449663, 0.37408584674942635, 0.8767503774172, 0.8743962287172513, 0.8751970040938668, 0.8833495792027257, 0.7091886355621774, 0.87006937054451, 0.7904001815220257, 0.8761418339280951, 0.8306834851111597, 0.7531715889012326, 0.38181207472529843, 0.6490458991820136, 0.9138057013338913, 0.9046222904886461, 0.17956061692355052, 0.7506163079023257, 0.8963285795381793, 0.8848361664653354, 0.9283037217377402, 0.45996158699034445, 0.7290858434196763, 0.8319094967702583, 0.6578018675312727, 0.18727567457681707, 0.8673410249845035, 0.9453298670648187, 0.9446538464906173, 0.19605573045952288, 0.6723831041639817, 0.3438281302059518, 0.37858973820495484, 0.6953170483296187, 0.21463507152544156, 0.26963792069965237, 0.3280912492037974, 0.8399932187801539, 0.420387898633768, 0.36522500752858966, 0.5810560693343539, 0.9306346767722963, 0.7167716539092029, 0.656736106921484, 0.5549139996760648, 0.6909161521388689, 0.591904263202073, 0.884703171197362, 0.866402281883595, 0.7582770814524421, 0.8990773411030794, 0.1818065866116437, 0.6222165686186035, 0.17261914235374884, 0.8156064679757086, 0.4851213943917703, 0.8871292211128762, 0.8398494053952754, 0.703270618172154, 0.6305543892506115, 0.7494149477175548, 0.1532408287022325, 0.6159732902773407, 0.738220551127759, 0.8354520044441791, 0.8536870432671441, 0.5751476712690671, 0.9077719201719568, 0.7878515691455199, 0.6672663325862807, 0.45293736875445273, 0.17058553029544155, 0.747933377844996, 0.8400163125056676, 0.4516778718827729, 0.6082670858563528, 0.8401843469141149, 0.7636885291754726, 0.789170795337903, 0.8128612802083497, 0.7522530659814418, 0.8086757686066508, 0.8356255123032285, 0.9241779635105248, 0.9674588597049086, 0.9368885694202199, 0.4990764491242286, 0.876561204324957, 0.554264192243629, 0.5967716244634195, 0.9060244606340249, 0.8401608718856799, 0.7329750583133859, 0.8021769878309102, 0.9316817655017511, 0.45488322534173153, 0.798578398438993, 0.7425236774748816, 0.5742682328784404, 0.4937681935814938, 0.8972164286692267, 0.8914273370768748, 0.9377613518261881, 0.8862258850530264, 0.8591757581361523, 0.7410678096850266, 0.6822336012657398, 0.9201658505843877, 0.6982578893131915, 0.5746709232170782, 0.7626532952948841, 0.7137703530889916, 0.7520971196461234, 0.4473853625959922, 0.7957460056304991, 0.4833174871501707, 0.8758467705785958, 0.4689303842787964, 0.6133612564737879, 0.8568681391705205, 0.6835133967314007, 0.9732070839986944, 0.21435716257549006, 0.5761668962420043, 0.4055433603128916, 0.3743394998756179, 0.9118635774953143, 0.964551884718591, 0.9306459334511011, 0.8424802355113449, 0.7739144871152517, 0.6872688771534424, 0.8590561833388345, 0.6714384475466295, 0.6408669500407106, 0.5203550269219845, 0.2856853969697174, 0.857760555506807, 0.9307094503226838, 0.6787928880949093, 0.8308635255795866, 0.29271374211533296, 0.6769315553524353, 0.23831547366416572, 0.5895099457120908, 0.8994675076574448, 0.8893400405584444, 0.8456825404777587, 0.5399612081435882, 0.6188649121485582, 0.9281492942813848, 0.7611740601422801, 0.46550237374781617, 0.8896861436466836, 0.9038901015569306, 0.5044440900554997, 0.9215480939667524, 0.6930273792518707, 0.8723244804196287, 0.5624338775604165, 0.9226297661236537, 0.8469231754225917, 0.9430557295321259, 0.9097116306258912, 0.5988707702267543, 0.3813853072548755, 0.8843832309478876, 0.9006952500629406, 0.918975987201669, 0.18997930334445084, 0.8923106748541326, 0.8461388699436441, 0.5973439234355874, 0.9544642924744549, 0.91770416680597, 0.9177239854204658, 0.17584552180125673, 0.9240099144459667, 0.48524948024905407, 0.8889685222180134, 0.5785503824403398, 0.7511953459672914, 0.6887596776945688, 0.6717539058356753, 0.7168761391602206, 0.7134478068952186, 0.834626350903405, 0.5715867980362679, 0.6588392688727011, 0.9488572786900573, 0.8920529250761863, 0.8891353183282249, 0.707981940789761, 0.926348680038428, 0.631489487929038, 0.7443856388661001, 0.9260754381930228, 0.9544642924744549, 0.8497401318990601, 0.5604010177433062, 0.8036334301115304, 0.7898153537185114, 0.8491431337122072, 0.6570881560807702, 0.8389599143569951, 0.7944137576415592, 0.8132668978866627, 0.44714680104169846, 0.7978021044641371, 0.41921696608658454, 0.38876183891604754, 0.9248463736054193, 0.4277915265084825, 0.6345107008491314, 0.8008942533173764, 0.5087430598332189, 0.9414938992689892, 0.6922115882765215, 0.8296175750175913, 0.8593339228153332, 0.8975141534758351, 0.5977126281557783, 0.9279478536756302, 0.6485770817571253, 0.8905823996589662, 0.9332072841984264, 0.9432461110830079, 0.9410120781436498, 0.6339696776630096, 0.7120962557761497, 0.5841709037351369, 0.5928970840420333, 0.9006589732900512, 0.936371533648048, 0.6907852379101131, 0.7675780198071424, 0.9444587893431046, 0.4702336163336472, 0.8925536722101626, 0.8158978708906081, 0.822780392485108, 0.8037335327290217, 0.8382351003285965, 0.8941557358589171, 0.4796498334522667, 0.926348680038428, 0.6842118015950474, 0.6463580983468415, 0.8292048071278182, 0.5834426687867836, 0.8419845362148763, 0.2431563391580561, 0.7763142135369961, 0.9390550746437164, 0.7774903237071782, 0.8141232663130791, 0.9444089886680379, 0.430401459478284, 0.9192677156927759, 0.8427595869840984, 0.87120858451521, 0.5693182102579236, 0.820012080301976, 0.58719119911586, 0.42769376643096113, 0.3542595869275313, 0.89579938191327, 0.8743523014696554, 0.7820497043505815, 0.5279069501129625, 0.8869579700149332, 0.45488774279476296, 0.8514781135508903, 0.8278297091497892, 0.663749097381813, 0.5132851713944618, 0.4906566565015208, 0.6415219885510332, 0.6991293681294938, 0.8150539074042624, 0.5800669536763935, 0.9583771200922359, 0.7366090055976814, 0.5747817696023392, 0.5315376696882942, 0.8074446941396305, 0.9038901015569306, 0.9087015650331977, 0.6697291810323083, 0.5800669536763935, 0.8807270543114014, 0.5135845984304893, 0.9352791850238339, 0.36120709973337456, 0.6206709330576408, 0.906286252315459, 0.7937202818717513], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [192.0, 65.0, 151.0, 44.0, 77.0, 45.0, 149.0, 23.0, 148.0, 174.0, 110.0, 164.0, 165.0, 163.0, 79.0, 183.0, 144.0, 19.0, 139.0, 12.0, 187.0, 206.0, 12.0, 120.0, 63.0, 54.0, 120.0, 91.0, 214.0, 183.0, 20.0, 106.0, 159.0, 196.0, 192.0, 112.0, 147.0, 130.0, 10.0, 180.0, 94.0, 22.0, 100.0, 84.0, 84.0, 124.0, 105.0, 149.0, 87.0, 53.0, 33.0, 141.0, 168.0, 14.0, 173.0, 220.0, 169.0, 177.0, 69.0, 55.0, 245.0, 179.0, 16.0, 164.0, 113.0, 131.0, 172.0, 133.0, 36.0, 91.0, 183.0, 8.0, 194.0, 117.0, 115.0, 144.0, 233.0, 20.0, 92.0, 87.0, 106.0, 76.0, 243.0, 23.0, 138.0, 38.0, 201.0, 26.0, 72.0, 63.0, 8.0, 152.0, 111.0, 194.0, 195.0, 202.0, 159.0, 133.0, 179.0, 117.0, 195.0, 71.0, 111.0, 197.0, 120.0, 69.0, 115.0, 72.0, 115.0, 150.0, 47.0, 63.0, 15.0, 104.0, 51.0, 92.0, 178.0, 77.0, 84.0, 86.0, 166.0, 49.0, 150.0, 111.0, 204.0, 210.0, 198.0, 42.0, 86.0, 184.0, 33.0, 86.0, 156.0, 189.0, 139.0, 164.0, 60.0, 176.0, 140.0, 141.0, 116.0, 227.0, 75.0, 116.0, 177.0, 197.0, 161.0, 142.0, 48.0, 84.0, 156.0, 26.0, 143.0, 22.0, 104.0, 31.0, 98.0, 165.0, 73.0, 131.0, 101.0, 28.0, 49.0, 113.0, 12.0, 84.0, 179.0, 176.0, 187.0, 180.0, 171.0, 99.0, 121.0, 171.0, 95.0, 16.0, 35.0, 177.0, 55.0, 63.0, 189.0, 12.0, 114.0, 171.0, 179.0, 197.0, 187.0, 34.0, 157.0, 227.0, 115.0, 75.0, 206.0, 50.0, 200.0, 12.0, 151.0, 218.0, 210.0, 130.0, 198.0, 82.0, 82.0, 31.0, 132.0, 157.0, 131.0, 61.0, 13.0, 21.0, 87.0, 148.0, 160.0, 225.0, 173.0, 158.0, 192.0, 131.0, 220.0, 110.0, 24.0, 103.0, 204.0, 111.0, 115.0, 168.0, 93.0, 234.0, 87.0, 13.0, 117.0, 160.0, 103.0, 111.0, 106.0, 143.0, 207.0, 57.0, 210.0, 230.0, 38.0, 162.0, 136.0, 174.0, 103.0, 47.0, 142.0, 154.0, 164.0, 30.0, 155.0, 160.0, 159.0, 19.0, 176.0, 171.0, 90.0, 62.0, 133.0, 18.0, 169.0, 142.0, 173.0, 122.0, 178.0, 149.0, 128.0, 155.0, 58.0, 79.0, 212.0, 193.0, 167.0, 205.0, 186.0, 248.0, 124.0, 188.0, 82.0, 64.0, 14.0, 31.0, 188.0, 61.0, 117.0, 174.0, 123.0, 170.0, 73.0, 198.0, 97.0, 119.0, 307.5, 51.0, 68.0, 60.0, 106.0, 252.0, 177.0, 115.0, 78.0, 102.0, 96.0, 189.0, 72.0, 71.0, 184.0, 23.0, 18.0, 91.0, 150.0, 170.0, 31.0, 196.0, 133.0, 184.0, 282.0, 125.0, 223.0, 37.0, 20.0, 210.0, 60.0, 11.0, 168.0, 136.0, 71.0, 176.0, 65.0, 195.0, 167.0, 78.0, 164.0, 198.0, 131.0, 33.0, 240.0, 27.0, 95.0, 234.0, 87.0, 185.0, 120.0, 48.0, 188.0, 38.0, 195.0, 188.0, 62.0, 184.0, 145.0, 35.0, 197.0, 99.0, 104.0], \"xaxis\": \"x\", \"y\": [0.2802292104526322, 0.9455194119275858, 0.4978743212349556, 0.5289145624519528, 0.28439238707197784, 0.2033309570226689, 0.27345747478543325, 0.8322873304845451, 0.389055896812549, 0.3675472469853882, 0.5781933746273124, 0.7401955299744071, 0.44969671697605845, 0.4367887814338696, 0.31593955341667695, 0.3775624358859999, 0.19282181046294666, 0.048451763306065584, 0.6005928650583868, 0.032225376113695775, 0.427412413738938, 0.23973251442015217, 0.13890126550157303, 0.8613925272127, 0.329663916828638, 0.19359965390713213, 0.6827271716759634, 0.1960905505555538, 0.08135735686643118, 0.39737240301928484, 0.13902987396822816, 0.6514166433739288, 0.6994753721471061, 0.7140886736258081, 0.5021795028970708, 0.48743245558712556, 0.5731139673640956, 0.8820820642542792, 0.559972149724866, 0.5061565591493914, 0.5066810377847554, 0.833805652807593, 0.6979972163580744, 0.3177574231538272, 0.13068190592986567, 0.758876109553896, 0.5681062961269688, 0.715544821914063, 0.762062625203523, 0.4464438677531786, 0.20995974230910305, 0.5262622410710028, 0.39442669669188163, 0.2537324982988368, 0.6775437642744659, 0.23876321589577687, 0.6369158982934647, 0.38960060362966165, 0.6034323722874255, 0.7769991715799629, 0.15199748354041337, 0.5641412449951732, 0.7590466800561823, 0.5969347905931296, 0.1048362779837843, 0.7217824369593382, 0.2662339163773806, 0.16472378978351135, 0.37760124376932414, 0.7071736299639594, 0.3436862995931572, 0.8384434752264291, 0.3635333644877426, 0.7813188949129265, 0.7279369976219869, 0.5641098847382463, 0.3863964747623771, 0.9209913370067284, 0.1477144681640183, 0.8809374658555192, 0.6533168894759348, 0.8873477284758582, 0.3697306267878623, 0.28319023347825867, 0.5203701741750857, 0.5523747693308857, 0.6387521731780509, 0.3881380695009739, 0.8487896327149285, 0.4636606453307818, 0.8384434752264291, 0.558266603669778, 0.21657231888677728, 0.3635333644877426, 0.5512671313974766, 0.5051039398599867, 0.5827915753039158, 0.49441682850108926, 0.47309171914705017, 0.6262595591688196, 0.5508242483721094, 0.47332791509789995, 0.7117569366896692, 0.3933786516273859, 0.16465066549244003, 0.7490394132223248, 0.769261050002088, 0.7431932405995126, 0.3141000916210982, 0.723735045552473, 0.6484132891031948, 0.688519894019609, 0.40496704226994307, 0.5803736122960511, 0.6327801522745691, 0.45115706990411364, 0.37268733756108086, 0.9009693101135351, 0.06496389958099598, 0.44431713201158524, 0.39960831974332744, 0.8662156944598043, 0.31018081106061823, 0.5339551117365043, 0.33311273919547707, 0.400132762133902, 0.8528754522806217, 0.14419347879543085, 0.11672350429510901, 0.44556702529145975, 0.6160120899414699, 0.13766892845409207, 0.5517204028384314, 0.5232178919035022, 0.35483403305733974, 0.4900213704561591, 0.8854578072659228, 0.43084122675663034, 0.7601186327653665, 0.14072030431570776, 0.6186690618327106, 0.5245054232921349, 0.7326259458716644, 0.5690781983520095, 0.4018508815425063, 0.24877469563805235, 0.7952501197393639, 0.8766221356386195, 0.303451532996695, 0.5357745481647883, 0.7096524147827454, 0.20877177283968149, 0.8635610141758273, 0.46736762313881036, 0.6061151992073851, 0.113015272873705, 0.40446014603085867, 0.6332606063976143, 0.648705381890928, 0.42186952587750404, 0.8047913565308571, 0.3017058309841093, 0.38406990132164637, 0.33494193042999065, 0.19929939967121216, 0.8624919783238055, 0.528785836409086, 0.43084122675663034, 0.47042159929499583, 0.5061565591493914, 0.5759491569657543, 0.8468794444363914, 0.20342296359496542, 0.5170831534483544, 0.3666753044655067, 0.6131723001375537, 0.4410646109528086, 0.6903416342484309, 0.3866428492574258, 0.4636606453307818, 0.4525459302795702, 0.03199256040434073, 0.7029629492254846, 0.2433141614541866, 0.548755973819273, 0.3775060302547258, 0.06593060991448157, 0.8745624549148976, 0.22931948662359403, 0.27267688907931714, 0.589328430619086, 0.8007160756317941, 0.5525637789187225, 0.5008522318356121, 0.4556212410144909, 0.17391722008742402, 0.43574637053357784, 0.3237440077649342, 0.6071692164257629, 0.6925152430641841, 0.592675381607996, 0.43854150134957587, 0.43854150134957587, 0.42437112972565305, 0.8061118855433299, 0.35195592295594336, 0.7605370065149419, 0.38898578429124253, 0.67510953655807, 0.872979709380305, 0.710510994258769, 0.720290290780972, 0.4820787970895852, 0.42019280799979697, 0.4304380754474639, 0.25285023254778977, 0.3238056884730761, 0.39471961640683584, 0.09510031985475974, 0.367046376808582, 0.21500793651835448, 0.8705359023101334, 0.6100742529031461, 0.6226449432624995, 0.7279369976219869, 0.3643494054700089, 0.09992017521484964, 0.41475515148757036, 0.6462260464983366, 0.14102909592513518, 0.48949585696458414, 0.5239520436918008, 0.6084413884537807, 0.5655473856702703, 0.9517420512476797, 0.7489379515982664, 0.4647937384849751, 0.7915321263825208, 0.44112279258530757, 0.5734340256727429, 0.6604471727860799, 0.4845203185458914, 0.6968730453869196, 0.5315374962198609, 0.8685951485887234, 0.6242442748350044, 0.2912097196987059, 0.7725938221565348, 0.2067629769731588, 0.30221725334927335, 0.13129342562285412, 0.6467789443522378, 0.6994753721471061, 0.11825382206919556, 0.41022417118631593, 0.4882665226122541, 0.7732287086973071, 0.25374762405010176, 0.49441682850108926, 0.3723877205427743, 0.652330313245635, 0.43667799883041203, 0.5964718913578133, 0.55172276504346, 0.24113559934961917, 0.8243980268882987, 0.7263843594269437, 0.43535214809021755, 0.8721122798612579, 0.18723914490145582, 0.6486906676970999, 0.11576704656818047, 0.4328241622975616, 0.491481212420291, 0.5264345378086769, 0.33856526784971647, 0.2967410926251248, 0.581398831228375, 0.5973776665460488, 0.6195406102170065, 0.37782717658841725, 0.323061133240968, 0.17420808473594895, 0.19634770547538957, 0.46492234760650425, 0.49613167963272686, 0.5812209036149294, 0.6057291775435286, 0.63414717387345, 0.5702687187355167, 0.8604975146328253, 0.6309022132706124, 0.48732991249542923, 0.6887148870948692, 0.41581945293096145, 0.5706760596351739, 0.4831274653996314, 0.06684727567316755, 0.49090643211649887, 0.15191610726090596, 0.2711405311223577, 0.7653618545702112, 0.09266565137124261, 0.4554350627407873, 0.19698919164573708, 0.6930185080649685, 0.5227537922811563, 0.50434568709929, 0.7082092780767422, 0.46058046365566996, 0.6735723234187477, 0.4285936050615775, 0.323061133240968, 0.5168500865319015, 0.6161307914674419, 0.23456444218973552, 0.3192004782541023, 0.21968945907811915, 0.5028183230931117, 0.43371621376298963, 0.6744209213341115, 0.5940260419772637, 0.13783310426722128, 0.5136444387530009, 0.5508647999875032, 0.4955911012838212, 0.9814394195009358, 0.8260225289794664, 0.17965956338109995, 0.46844896472597397, 0.6048119589659149, 0.3289160319090978, 0.2454606394453749, 0.7497022835596558, 0.683485355417811, 0.20995974230910305, 0.23504578258460665, 0.37175956099497537, 0.4875530438829156, 0.24982584224249993, 0.6282829625348888, 0.4520795162158371, 0.8200372413039435, 0.12832513643528837, 0.5299630655130737, 0.29552777318700446, 0.24021937552346023, 0.5429028773737552, 0.6311869746243346, 0.4145977043912777, 0.39329840463575844, 0.39070335653410526, 0.4286990948130573, 0.846836560604146, 0.6880850122626078], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (curr)\", \"type\": \"scatter\", \"x\": [101.0, 194.0, 126.0, 68.0, 94.0, 99.0, 97.0, 124.0, 95.0, 163.0, 32.0, 191.0, 111.0, 119.0, 127.0, 118.0, 38.0, 61.0, 28.0, 162.0, 212.5, 193.0, 74.0, 147.0, 179.0, 99.0, 127.0, 134.0, 93.0, 148.0, 74.0, 136.0, 178.0, 99.0, 121.0, 129.0, 76.0, 150.0, 81.0, 31.0, 124.0, 85.0, 156.0, 238.0, 27.0, 45.0, 135.0, 86.0, 212.0, 195.0, 18.0, 122.0, 137.0, 59.0, 175.0, 145.0, 181.0, 63.0, 165.0, 64.0, 64.0, 150.0, 105.0, 85.0, 100.0, 127.0, 144.0, 155.0, 89.0, 153.0, 189.0, 100.0, 117.0, 114.0, 113.0, 145.0, 174.0, 161.0, 38.0, 25.0, 87.0, 144.0, 60.0, 162.0, 143.0, 26.0, 55.0, 96.0, 172.0, 132.0, 143.0, 108.0, 115.0, 107.0, 117.0, 97.0, 28.0, 294.0, 10.0, 24.0, 126.0, 101.0, 22.0, 121.0, 189.0, 131.0, 105.0, 109.0, 117.0, 107.0, 75.0, 176.0, 112.0, 76.0, 138.0, 35.0, 153.0, 152.0, 136.0, 59.0, 158.0, 121.0, 44.0, 81.0, 60.0, 16.0, 53.0, 94.0, 26.0, 84.0, 82.0, 38.0, 98.0, 253.0, 74.0, 213.0, 12.0, 60.0, 169.0, 118.0, 166.0, 58.0, 35.0, 153.0, 204.0, 99.0, 190.0, 47.0, 134.0, 116.0, 98.0, 93.0, 94.0, 103.0, 116.0, 164.0, 47.0, 28.0, 92.0, 192.0, 65.0, 28.0, 86.0, 199.0, 20.0, 80.0, 148.0, 29.0, 48.0, 123.0, 100.0, 107.0, 41.0, 9.0, 88.0, 213.0, 129.0, 216.0, 111.0, 43.0, 131.0, 124.0, 117.0, 80.0, 141.0, 35.0, 28.0, 72.0, 170.0, 36.0, 124.0, 149.0, 92.0, 118.0, 133.0, 109.0, 76.0, 89.0, 190.0, 133.0, 98.0, 129.0, 245.0, 84.0, 191.0, 130.0, 99.0, 76.0, 134.0, 183.0, 116.0, 125.0, 34.0, 94.0, 35.0, 124.0, 90.0, 143.0, 174.0, 105.0, 125.0, 244.0, 15.0, 209.0, 189.0, 212.0, 118.0, 161.0, 59.0, 172.0, 65.0, 97.0, 84.0, 104.0, 33.0, 170.0, 99.0, 90.0, 140.0, 150.0, 114.0, 118.0, 132.0, 104.0, 54.0, 19.0, 155.0, 193.0, 111.0, 31.0, 150.0, 143.0, 145.0, 107.0, 105.0, 95.0, 126.0, 73.0, 111.0, 153.0, 15.0, 168.0, 111.0, 181.0, 172.0, 139.0, 110.0, 136.0, 189.0, 135.0, 104.0, 117.0, 51.0, 49.0, 113.0, 39.0, 148.0, 109.0, 102.0, 51.0, 26.0, 122.0, 104.0, 120.0, 114.0, 19.0, 132.0, 73.0, 145.0, 135.0, 47.0, 12.0, 132.0, 87.0, 125.0, 139.0, 94.0, 143.0, 139.0, 97.0, 119.0, 109.0, 163.0, 134.0, 178.0, 44.0, 95.0, 143.0, 180.0, 90.0, 129.0, 72.0, 32.0, 123.0, 81.0, 152.0, 214.0, 126.0, 117.0, 173.0, 204.0, 134.0, 156.0, 134.0, 65.0, 151.0, 114.0, 44.0, 164.0, 125.0, 28.0, 156.0, 28.0, 201.0, 106.0, 116.0, 182.0, 225.0, 142.0, 39.0, 142.0, 98.0, 188.0, 55.0, 27.0, 113.0, 87.0, 140.0, 33.0, 85.0, 158.0, 95.0, 169.0, 103.0, 191.0, 151.0, 28.0, 113.0, 163.0, 26.0, 95.0, 135.0, 55.0, 171.0, 21.0, 206.0, 113.0, 168.0, 173.0, 161.0, 97.0, 227.0, 107.0, 81.0, 17.0, 17.0, 96.0, 118.0, 38.0, 111.0, 118.0, 125.0, 143.0, 189.0, 98.0, 166.0, 135.0, 68.0, 12.0, 131.0, 172.0, 174.0, 128.0, 194.0, 108.0, 35.0, 155.0, 26.0, 87.0, 93.0, 187.0, 150.0, 158.0, 114.0, 120.0, 169.0, 130.0, 109.0, 149.0, 80.0, 23.0, 125.0, 81.0, 55.0, 185.0, 53.0, 245.0, 17.0, 122.0, 130.0, 75.0, 90.0, 34.0, 48.0, 15.0, 118.0, 151.0, 150.0, 85.0, 140.0, 85.0, 155.0, 84.0, 109.0, 17.0, 38.0, 172.0, 178.0, 93.0, 171.0, 229.0, 27.0, 146.0, 104.0, 89.0, 15.0, 60.0, 112.0, 47.0, 48.0, 136.0, 89.0, 141.0, 9.0, 154.0, 159.0, 113.0, 88.0, 158.0, 29.0, 179.0, 92.0, 181.0, 173.0, 160.0, 107.0, 151.0, 79.0, 132.0, 37.0, 170.0, 163.0, 50.0, 135.0, 98.0, 77.0, 172.0, 102.0, 135.0, 123.0, 143.0, 134.0, 85.0, 21.0, 182.0, 132.0, 28.0, 101.0, 25.0, 44.0, 100.0, 129.5, 43.0, 47.0, 40.0, 14.0, 125.0, 46.0, 11.0, 49.0, 118.0, 139.0, 229.0, 114.0, 53.0, 113.0, 200.0, 133.0, 88.0, 128.0, 70.0, 80.0, 113.0, 73.0, 152.0, 104.0, 45.0, 19.0, 206.0, 41.0, 173.0, 14.0, 97.0, 180.0, 147.0, 149.0, 135.0, 116.0, 150.0, 164.5, 21.0, 128.0, 178.0, 101.0, 16.0, 180.0, 14.0, 132.0, 10.0, 189.0, 156.0, 166.0, 10.0, 153.0, 49.0, 99.0, 68.0, 16.0, 80.0, 229.0, 225.0, 104.0, 122.0, 10.0, 57.0, 150.0, 69.0, 76.0, 102.0, 129.0, 95.0, 116.0, 168.0, 19.0, 173.0, 189.0, 142.0, 177.0, 71.0, 140.0, 110.0, 184.0, 152.0, 164.0, 105.0, 117.0, 124.0, 91.0, 181.0, 85.0, 181.0, 168.0, 128.0, 89.0, 167.0, 155.0, 20.0, 212.0, 78.0, 25.0, 35.0, 130.0, 129.0, 122.0, 7.0, 69.0, 120.0, 140.0, 83.0, 136.0, 157.0, 169.0, 221.0, 190.0, 113.0, 91.0, 13.0, 104.0, 136.0, 167.0, 99.0, 103.0, 159.0, 108.0, 91.0, 136.0, 103.0, 213.0, 189.0, 169.0, 107.0, 91.0, 112.0, 82.0, 114.0, 72.0, 84.0, 159.0, 17.0, 128.0, 16.0, 43.0, 87.0, 136.0, 140.0, 144.0, 74.0, 86.0, 145.0, 153.0, 127.0, 228.0, 112.0, 157.0, 140.0, 192.0, 114.0, 111.0], \"xaxis\": \"x2\", \"y\": [0.33396714643252134, 0.5044440900554997, 0.8874896900044845, 0.4686759077780351, 0.23831547366416572, 0.571181601185031, 0.7785327680196316, 0.7290551099174598, 0.9581131370131553, 0.6801000322064107, 0.413367674560271, 0.6667140739211237, 0.9108229754863395, 0.9275086157065797, 0.9186958597750785, 0.7191871442695774, 0.8184457509658746, 0.8597940676688322, 0.7947045908306632, 0.8244149680645384, 0.42771531534877594, 0.5315376696882942, 0.7136291946100958, 0.5510697799054304, 0.6393262665313312, 0.9016582766249417, 0.8560880110261746, 0.8947361144883382, 0.9102326114023062, 0.840723585394272, 0.9264645566705582, 0.5105903360131552, 0.752648770317166, 0.5855954083225455, 0.8989214048388485, 0.5190750352404293, 0.9560713253502463, 0.7273157243430202, 0.9279672131348602, 0.640103147954212, 0.9158977434209615, 0.9035955072010529, 0.7140955379655831, 0.233508355491505, 0.7280578325574358, 0.8810827811902006, 0.3966129217085586, 0.15541760955422754, 0.5851621750323275, 0.9046111951917862, 0.4177213302712193, 0.7993763114768937, 0.6978409661933959, 0.6473373667551029, 0.770784382977056, 0.6500641275496193, 0.548949563093737, 0.9803199442553986, 0.6150775052067382, 0.391333092160729, 0.6966682278280982, 0.9426748402861506, 0.9170092977635526, 0.844625652038695, 0.5621782696252592, 0.8935808323282117, 0.6792214086077275, 0.6719996755401956, 0.5252591274442797, 0.7277045758687855, 0.4685752957996948, 0.8616549355667619, 0.347491516391863, 0.8224130863808733, 0.5340790568488665, 0.6711667658766297, 0.5277539611022016, 0.7226430813715845, 0.8140972745487615, 0.3280236940194876, 0.9543080196225542, 0.7752655593026647, 0.9223925066666061, 0.8588031784191832, 0.6345107008491314, 0.9393010047953068, 0.7897067132703484, 0.8608062836413887, 0.8367885032124018, 0.38555642305179116, 0.8611944449682004, 0.9172341012895443, 0.9206892306522243, 0.9500505925695213, 0.537798347971205, 0.9173482789702866, 0.44454351342386716, 0.8909704850569525, 0.7351932580165473, 0.6818328744935735, 0.7981559962965634, 0.7626532952948841, 0.807353254900461, 0.964411205143099, 0.4685752957996948, 0.6986526320119215, 0.1956969407137045, 0.9233481403380283, 0.8218375601976645, 0.8536269727611236, 0.5637680470866036, 0.42267134533232753, 0.93003590801509, 0.9364808605729722, 0.8816060831574614, 0.9663102962713933, 0.8345570787709832, 0.4997893986747249, 0.7921603237806832, 0.5586815647381762, 0.8622246464681924, 0.9828719612298703, 0.909295720392338, 0.9476267884443668, 0.5395521774612226, 0.901360886913609, 0.39410444510430487, 0.9262213132200262, 0.6627387433216217, 0.9629433821448677, 0.9614311452267452, 0.9802968012486629, 0.933760787013923, 0.34432718187202205, 0.63596173557573, 0.624364378916488, 0.7417789548241253, 0.7300918276682445, 0.6968315453320488, 0.7840233885688647, 0.8958841271622066, 0.5417426694559925, 0.7102579146160282, 0.6004345411549624, 0.515920701757342, 0.7587882454650442, 0.5029588531082266, 0.6887596776945688, 0.8642849605932809, 0.6469572639767995, 0.8103639651534781, 0.939764354405301, 0.694136577696587, 0.6593725303534554, 0.9646797005081557, 0.7979900311745153, 0.792123904710467, 0.8869579700149332, 0.7351250317969437, 0.5332560471205093, 0.9406873315653421, 0.39362685027924615, 0.9466602521798594, 0.8394325033041952, 0.6633442657978572, 0.8126408700417265, 0.7332457619716184, 0.08024070404520958, 0.8667774471450977, 0.6466814331404849, 0.912366876100516, 0.656670904734599, 0.8701678467707724, 0.8875925797813499, 0.9658725076002231, 0.7668332861852056, 0.8604440887473094, 0.934384507524058, 0.9605946056867319, 0.951253157591183, 0.5749289095213865, 0.6279243005170476, 0.7937202818717513, 0.7665301650725991, 0.700127941221274, 0.8531107444728586, 0.7947045908306632, 0.8870566665876504, 0.5476228787844645, 0.8410401833568673, 0.8736671065238262, 0.6519898659949606, 0.936943112068646, 0.9077719201719568, 0.8071889556778997, 0.8815615400732472, 0.8935313268029127, 0.8782891297971865, 0.5029588531082266, 0.5797201450332624, 0.9416775458320723, 0.5958140198486584, 0.2485157288688957, 0.932021424688801, 0.8531502837407814, 0.6344194678828672, 0.632587077283238, 0.9121448358615357, 0.5776545535910985, 0.9052765174806566, 0.8580390107418799, 0.8998644401112552, 0.6784536879503494, 0.9458342431661766, 0.21387363850783603, 0.9530348339880965, 0.7307391114165022, 0.7187682731289255, 0.6905635603269331, 0.9569274903702625, 0.9287384091375525, 0.3856984054091925, 0.504413920551941, 0.5389739198483336, 0.5921068831639978, 0.10702848140489757, 0.8772993497727819, 0.6361944011057532, 0.8952999713010865, 0.7069578609115064, 0.10632960186243966, 0.6465592619811017, 0.9116333268133815, 0.9210441535829985, 0.9483358221641291, 0.5800224234700003, 0.896951343689222, 0.8958659323404018, 0.8896861436466836, 0.7763142135369961, 0.778627444633172, 0.9274605647284293, 0.9167924025380936, 0.6422094408272838, 0.6363725079258666, 0.8694129796739031, 0.5693182102579236, 0.5315376696882942, 0.6814536952243052, 0.30089534057709466, 0.6689448970920832, 0.6419522618821227, 0.6500641275496193, 0.8221968069187356, 0.9285763346020383, 0.8495153837633861, 0.7135666997345446, 0.8850789772017983, 0.9128367188568884, 0.8709442503982084, 0.44714680104169846, 0.7147831401969469, 0.6814536952243052, 0.5823319261018008, 0.7718122970862826, 0.8925058444773368, 0.9249991097277733, 0.7849066379312727, 0.5120166815330335, 0.7863291630268572, 0.8171821177205619, 0.8878235148823457, 0.9813953955585096, 0.5009899161211654, 0.6787020040856314, 0.2747106808400709, 0.6998114428322438, 0.7191783799678735, 0.7566715075843347, 0.7741630673610131, 0.692871858980435, 0.8706970297938403, 0.9226518689226377, 0.619213859232465, 0.9620625840847012, 0.8161066853745392, 0.7984578805051198, 0.8987836568806694, 0.27900511725120763, 0.747868261422589, 0.8013372150606806, 0.4430395412241901, 0.8082746512504794, 0.9248395818955686, 0.8132668978866627, 0.7926355964369082, 0.7243101498981422, 0.8251498778038484, 0.865753667016409, 0.8784859927081519, 0.9613966942665844, 0.8380103992838959, 0.9376908870460701, 0.8505645904112248, 0.5317253080143199, 0.8756470416862959, 0.8823120896825394, 0.8920529250761863, 0.9565288857220365, 0.92576324319171, 0.8397457208604353, 0.8008835764985612, 0.7620555647282774, 0.6333567796033132, 0.8986985644274655, 0.8289197139212982, 0.38568054861828666, 0.4358764146033148, 0.7013568331933456, 0.5524769805317635, 0.8654015550049637, 0.9625385348003681, 0.4997035751430624, 0.5940434106189647, 0.29640429037896177, 0.9370396801623051, 0.7496358493500708, 0.8521916566704996, 0.7519935213994349, 0.8956127660014477, 0.7563308848917781, 0.5425355780301907, 0.1652985164032473, 0.5777375433929663, 0.5926841497777402, 0.5247451599628447, 0.6215406511606532, 0.646742228322253, 0.5236567091352762, 0.8105889943537302, 0.7614647275399787, 0.7272264480694343, 0.44438282424164377, 0.8051848688934031, 0.253979247575754, 0.8737269176380216, 0.7884186533408385, 0.5226162157005312, 0.7776146375974927, 0.8021344726910251, 0.6794204065079696, 0.8398669626756513, 0.3743394998756179, 0.6593725303534554, 0.41008410759983227, 0.8726624594592295, 0.31336232876890546, 0.6187135046228962, 0.9208146539756937, 0.8948907807194619, 0.9475948217130945, 0.7098971478357265, 0.41970311630379203, 0.5524505095188592, 0.6689295490636696, 0.39534528644804523, 0.6686700461744643, 0.6608417181144597, 0.6289006219381473, 0.8112353209803558, 0.9675531845963172, 0.3468688843876404, 0.8171815196180959, 0.9315945487332388, 0.7612383340144859, 0.43979370974717685, 0.9452166580978265, 0.810349906376065, 0.4979189466877109, 0.9054024939516333, 0.7506263221664519, 0.8595966107872783, 0.9041757536760852, 0.5120166815330335, 0.9246344940597735, 0.622364539475366, 0.7975959936185795, 0.9376528402833735, 0.8270495791839716, 0.7463426393970082, 0.8508295060861325, 0.5277539611022016, 0.7926521549058593, 0.8343380415579561, 0.7973631232158779, 0.5423298306356671, 0.6253812669856891, 0.9342151247863544, 0.9064095870896521, 0.8428584418618921, 0.5680191878381406, 0.8230633503438987, 0.857993972512287, 0.8312116035859974, 0.8886868130574391, 0.5695902702544526, 0.8750573328895943, 0.47134086624147714, 0.6082670858563528, 0.8571520978358925, 0.7006810412396262, 0.6001343818465046, 0.8680196363335714, 0.7833148206731655, 0.835330250744176, 0.6883000602161935, 0.4297997702781997, 0.7132181587745201, 0.941909753873568, 0.9298379484442667, 0.8950633078112005, 0.9652574497835966, 0.8593048115498744, 0.23022113319019433, 0.5548683876071567, 0.8789570823277312, 0.7176343272433334, 0.7135972690872326, 0.900955402304434, 0.89110615578316, 0.8021344726910251, 0.36734125225010755, 0.9233813125795639, 0.9269988231022361, 0.6021478506882372, 0.27064660283581765, 0.7595966254948197, 0.5317253080143199, 0.9626288904553877, 0.518871521713375, 0.4244151934213653, 0.8784852709235653, 0.667697582798242, 0.6791650855490978, 0.8659372985570389, 0.5217980090164113, 0.9757802673562255, 0.20769640873195563, 0.6900575067285889, 0.15051833553221247, 0.8476988333501053, 0.12043274000614122, 0.6546311715671466, 0.412102187638673, 0.6339696776630096, 0.6925917751558638, 0.8074446941396305, 0.8417042066658985, 0.4702054036006336, 0.8107456318417504, 0.934253622333564, 0.9671353887875448, 0.3776875782453083, 0.5133306968464912, 0.8279918435672958, 0.7295730380004212, 0.8398957027397556, 0.7470826509089123, 0.7722124156410631, 0.3944809481034696, 0.5801047158883857, 0.7134138458261836, 0.8265590446981121, 0.5836238058504062, 0.7538957359152121, 0.9708936701567454, 0.41507295289487073, 0.9039211350062085, 0.5109703825452502, 0.8880660412534, 0.6332514250278477, 0.703270618172154, 0.863031725372896, 0.9601349291832292, 0.5845797646527732, 0.8357575010967041, 0.9584406458449958, 0.8733333206292072, 0.4740801794177068, 0.5787650908025566, 0.38525623454815555, 0.5715075300165849, 0.951253157591183, 0.831291834366621, 0.6482062646591596, 0.5447536045265621, 0.8456825404777587, 0.5358725178581014, 0.8893400405584444, 0.5955893395860203, 0.9408369636189147, 0.7580589814818564, 0.4244151934213653, 0.7636885291754726, 0.9532052815091139, 0.6686700461744643, 0.39683939049776734, 0.8309978518015588, 0.06774730328187532, 0.8934061610794648, 0.9459413258233057, 0.8507977517004935, 0.9694554821790147, 0.8640493534313302, 0.8409166048571896, 0.9059760843724536, 0.7278052027863667, 0.8952246802917138, 0.39534528644804523, 0.9558702864115934, 0.9178754126151818, 0.7504628435478695, 0.7568870052952757, 0.32046258648166903, 0.9712495894387816, 0.7125870341029702, 0.8286889773580812, 0.929575727770858, 0.8422483936479932, 0.60065365322741, 0.5775074082600717, 0.7505976846167132, 0.5317253080143199, 0.9590110623565244, 0.9651712957082627, 0.7333643603414158, 0.7757825668725274, 0.8928390517037824, 0.2578168736401774, 0.5355488836719776, 0.8408692583280314, 0.7849780542174357, 0.8711681462620556, 0.8447990405440073, 0.9571933326515756, 0.9307123551507692, 0.6421242495412457, 0.9239207054420927, 0.9336219461922934, 0.4244151934213653, 0.5673643045526261, 0.8301442064454496, 0.528471943574542, 0.8835542071774324, 0.8820947700128993, 0.4561713647735051, 0.584381944856391, 0.9493936477483658, 0.7816316980556022, 0.7770145472448273, 0.8495153837633861, 0.8318035560268552, 0.5220388622338656, 0.8589980209217414, 0.21216021099657945, 0.8782303617207965, 0.901850575196968, 0.7683760396387002, 0.9559989503713009, 0.938411491366706, 0.7225398931917507, 0.5918361617892179, 0.8596378534897678, 0.8816239240572568, 0.9296844522785247, 0.8299758417251202, 0.7538846798551382, 0.931253582726863, 0.6902425303942638, 0.9299571155275668, 0.35461708236434614, 0.6119587629530028, 0.8979450471026776, 0.8782891297971865, 0.6144930729026484, 0.5601837238662909, 0.4230258756549153, 0.5115702372514986, 0.6133200318312215, 0.8287048127179734, 0.42887934024879554, 0.5543929044930882, 0.5414149972460248, 0.7453725251924848, 0.6522898344923613, 0.6445138145159856, 0.9212190995841192, 0.6991293681294938, 0.9188224881967051, 0.9444881948020799, 0.8399825546316605, 0.6440269003431431, 0.45260210695563535, 0.6678228102737954, 0.8535669746933884, 0.23469888428232324, 0.7581156815660375, 0.8329520097124233, 0.5886389680190937, 0.4250130050586104, 0.290761161529129, 0.9065968169685268, 0.39757013049667705, 0.9584529405260903, 0.24804178200132845, 0.8400605958344816, 0.9562762484868867, 0.5923100188758571, 0.5355488836719776, 0.6866862751474886, 0.753715093249364, 0.9302702282582556, 0.8405005145861136, 0.7758456574858743, 0.8270123797965384, 0.9270997487744173, 0.8779999285967196, 0.6350604679157676, 0.9057987369792326, 0.9732730617650076, 0.28007269673131574, 0.5393237551960537, 0.9509318156255189, 0.8055358405733448, 0.8512314640165554, 0.6752183046546253, 0.9766791413071304, 0.26893819095773785, 0.5105552073939665, 0.7964242570425004, 0.9159462749375985, 0.46312559485344046, 0.7889853219989779, 0.5331772070153998, 0.6250130361556073, 0.5340700079782073, 0.8981158701031157, 0.8424802355113449], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [106.0, 196.0, 164.0, 47.0, 156.0, 167.0, 131.0, 14.0, 21.0, 25.0, 111.0, 85.0, 191.0, 207.0, 181.0, 133.0, 143.0, 42.0, 125.0, 131.0, 115.0, 219.0, 185.0, 225.0, 101.0, 110.0, 72.0, 174.0, 66.0, 163.0, 159.0, 166.0, 24.0, 73.0, 164.0, 135.0, 152.0, 39.0, 127.0, 128.0, 101.0, 44.0, 150.0, 171.0, 67.0, 177.0, 112.0, 38.0, 174.0, 40.0, 176.0, 139.0, 91.0, 33.0, 26.0, 49.0, 38.0, 23.0, 145.0, 201.0, 23.0, 216.0, 186.0, 26.0, 91.0, 11.0, 45.0, 34.0, 23.0, 42.0, 16.0, 182.0, 168.0, 23.0, 135.0, 111.0, 255.0, 61.0, 98.0, 84.0, 126.0, 21.0, 187.0, 143.0, 169.0, 59.0, 171.0, 184.0, 174.0, 102.0, 210.0, 134.0, 16.0, 213.0, 54.0, 9.0, 131.0, 148.0, 142.0, 216.0, 88.0, 167.0, 133.0, 38.0, 200.0, 9.0, 90.0, 26.0, 119.0, 197.0, 59.0, 148.0, 30.0, 189.0, 53.0, 166.0, 146.0, 144.0, 196.0, 44.0, 179.0, 132.0, 161.0, 102.0, 20.0, 94.0, 89.0, 123.0, 20.0, 201.0, 55.0, 227.0, 213.0, 56.0, 68.0, 178.0, 121.0, 13.0, 94.0, 126.0, 117.0, 169.0, 95.0, 77.0, 68.0, 149.0, 138.0, 12.0, 140.0, 166.0, 114.0, 212.0, 129.0, 176.0, 145.0, 117.0, 135.0, 183.0, 131.0, 213.0, 55.0, 173.0, 128.0, 116.0, 29.0, 90.0, 56.0, 92.0, 140.0, 150.0, 165.0, 114.0, 86.0, 178.0, 102.0, 107.0, 119.0, 220.0, 219.0, 158.0, 122.0, 157.0, 42.0, 84.0, 162.0, 161.0, 150.0, 116.0, 142.0, 149.0, 86.0, 102.0, 196.0, 83.0, 189.0, 35.0, 89.0, 142.0, 156.0, 97.0, 11.0, 201.0, 162.0, 198.0, 89.0, 183.0, 173.0, 15.0, 138.0, 160.0, 146.0, 106.0, 34.0, 106.0, 222.0, 80.0, 169.0, 172.0, 99.0, 60.0, 142.0, 202.0, 126.0, 216.0, 154.0, 119.0, 43.0, 199.0, 167.0, 143.0, 161.0, 129.0, 138.0, 145.0, 63.0, 167.0, 131.0, 129.0, 213.0, 101.0, 210.0, 31.0, 138.0, 162.0, 117.0, 190.0, 75.0, 105.0, 169.0, 70.0, 42.0, 186.0, 111.0, 153.0, 111.0, 133.0, 162.0, 238.5, 155.0, 38.0, 37.0, 101.0, 168.0, 168.0, 71.0, 186.0, 77.0, 113.0, 117.0, 164.0, 98.0, 28.0, 187.0, 148.0, 107.0, 108.0, 210.0, 72.0, 82.0, 136.0, 87.0, 161.0, 105.0, 197.0, 145.0, 148.0, 109.0, 126.0, 48.0, 66.0, 191.0, 147.0, 151.0, 85.0, 137.0, 31.0, 98.0, 192.0, 167.0, 22.0, 132.0, 47.0, 176.0, 226.0, 210.0, 131.0, 21.0, 105.0, 177.0, 181.0, 58.0, 191.0, 69.0, 145.0, 175.0, 162.0, 157.0, 197.0, 138.0, 80.0, 25.0, 20.0, 124.0, 164.0, 14.0, 151.0, 161.0, 6.0, 200.0, 168.0, 10.0, 166.0, 85.0, 148.0, 28.0, 85.0, 127.0, 133.0, 138.0, 104.0, 180.0, 121.0, 61.0, 63.0, 16.0, 49.0, 122.0, 106.0, 138.0, 112.0, 92.0, 128.0], \"xaxis\": \"x2\", \"y\": [0.8142007211296887, 0.07257977436397642, 0.7430932382113554, 0.8214862427787604, 0.5698848321031316, 0.6048119589659149, 0.6466669219762841, 0.14510080060429495, 0.2250304680670007, 0.28492472637839966, 0.42061632734231896, 0.8281252124183194, 0.49622399336621903, 0.3482895521074759, 0.4678833354511545, 0.5708968386647719, 0.37048677721847617, 0.553632248395139, 0.8702137350251022, 0.42186952587750404, 0.8696774950675754, 0.5410576963494411, 0.3971326977900686, 0.3275001196198921, 0.9448289227093116, 0.7109941475090589, 0.41925580570138304, 0.3675472469853882, 0.6721911818800557, 0.5562207270314473, 0.5262426608517637, 0.3244609607385458, 0.15056615442564347, 0.15676979724311627, 0.6037730696030339, 0.6342511279653397, 0.021947035536558718, 0.32429164429335744, 0.5678746850743716, 0.3571680467137555, 0.7755534309390314, 0.3240287891037917, 0.699424662214302, 0.5151532452376618, 0.7564675819717819, 0.38343591026479057, 0.19811005648518398, 0.3168419703358067, 0.5315947262677626, 0.9269044449273315, 0.8260225289794664, 0.451791899378283, 0.830516920403184, 0.47128602930186, 0.19027823806377472, 0.5181346713949518, 0.29552777318700446, 0.45414400334446664, 0.39329840463575844, 0.42327932510626076, 0.45838907164509224, 0.2233864252642039, 0.3628419195926303, 0.6709353200988277, 0.46058046365566996, 0.25551237833043455, 0.7234147543269824, 0.1481282262733752, 0.314935793994079, 0.20050531530561894, 0.37453315488553635, 0.701015529968035, 0.6343341418527783, 0.1739320900588749, 0.734996253073231, 0.8172229478314255, 0.3598554146739685, 0.7121055211356295, 0.2620604909731644, 0.3421138035730516, 0.6951268813066005, 0.35208221297891723, 0.452099210446082, 0.18907620085798427, 0.5444201651108793, 0.6484058972837882, 0.3258186925596978, 0.5963383680780668, 0.6202666247822538, 0.576738593946626, 0.5054992484109841, 0.2972245631729925, 0.6844333356791464, 0.42629475072919953, 0.4405153833121037, 0.01207867704715336, 0.7609288944606691, 0.23951123982998349, 0.09310514674080905, 0.5084920166510624, 0.33067609257366243, 0.36481899584296196, 0.5708968386647719, 0.3194802059637459, 0.14207297841267416, 0.5776897120055972, 0.2026163425795633, 0.37909000048748537, 0.38206764842015895, 0.41324683104354176, 0.17826143731067332, 0.42339414872454434, 0.39148091864802853, 0.3511350413575442, 0.8053393751847749, 0.5937005322868365, 0.6849942580153355, 0.38930033076762494, 0.5168500865319015, 0.5699073288866824, 0.5376087249833421, 0.8185832461647057, 0.25950508036415604, 0.20394483716883388, 0.3303044530853749, 0.2528102968078532, 0.8477719856767125, 0.5217124250004609, 0.3303044530853749, 0.5382885532339231, 0.9625763866028243, 0.6536174904341296, 0.42629475072919953, 0.6458781618432388, 0.46574001023909845, 0.37268733756108086, 0.8180085473348132, 0.35493594975273335, 0.2423640089427935, 0.3636330633241046, 0.6421622311157122, 0.5444201651108793, 0.7396308412796291, 0.9036153464846048, 0.21101569987323432, 0.6004024464464508, 0.7595861882737439, 0.486549602332862, 0.2379839758891197, 0.5147825233229498, 0.2065932277190248, 0.4342628292980428, 0.5940848250235929, 0.4857193175270624, 0.5332610244722983, 0.5402196969638672, 0.8578846895389459, 0.5290225674595067, 0.6074669506688956, 0.1847839155105034, 0.3581391437324269, 0.4304380754474639, 0.8410120374942113, 0.5810086483513661, 0.19026233744636453, 0.7223494520380469, 0.8589928738613049, 0.8374625942163022, 0.781203852328267, 0.73983195178881, 0.41156537259256004, 0.7482873396984137, 0.44431713201158524, 0.7113673874393347, 0.49869552495399233, 0.7627102864663872, 0.37193390769028617, 0.37187810520956766, 0.3773291605703562, 0.8719651627687759, 0.6218762459828849, 0.3781393537983126, 0.553632248395139, 0.47624084907999176, 0.774399353278846, 0.5840424935194366, 0.5601025471409736, 0.6186690618327106, 0.620611700356168, 0.5755798886129706, 0.15047650536569443, 0.5530049338021776, 0.6597439619439023, 0.8300222117931148, 0.3490158529243493, 0.4410646109528086, 0.5067909967309752, 0.5851482063434866, 0.7149827463187939, 0.4849259975950144, 0.2094210588097294, 0.33399024531412796, 0.4083143545243069, 0.7497022835596558, 0.7817929239213606, 0.7637421953724776, 0.3825655414920891, 0.6611482494098961, 0.19022241257108333, 0.44972084577511023, 0.5476732603321269, 0.4831274653996314, 0.5077048340566679, 0.7289504589448288, 0.4379810490617926, 0.8017221455714771, 0.6434673631716396, 0.5059779734745421, 0.6065367192264559, 0.650368705032214, 0.34567471266024347, 0.39561589000187136, 0.3427787545601037, 0.4676404271158623, 0.5332283386400669, 0.4519108142444285, 0.40662831629925006, 0.42305576187259053, 0.22032895172816622, 0.5278715769330472, 0.43679486629948455, 0.743933429392776, 0.5269515041023835, 0.5008800654866953, 0.214168174561682, 0.44879088851457377, 0.683485355417811, 0.807753104897186, 0.42629475072919953, 0.8502951424821861, 0.17421175568219957, 0.25491371883486935, 0.7595861882737439, 0.6571724132942184, 0.7813188949129265, 0.5626906653340306, 0.8674288259883418, 0.6600514650598344, 0.4827749661719035, 0.5456147119159479, 0.39827550056677263, 0.27323823737433794, 0.695896529362927, 0.5048820477254727, 0.5422349097465021, 0.5610936746718964, 0.6571724132942184, 0.3088751107498249, 0.45428761266464013, 0.6604471727860799, 0.43371621376298963, 0.6171893197168647, 0.8100511550343341, 0.8100511550343341, 0.605832578461134, 0.5526475584669951, 0.4275055171336787, 0.8734720021260204, 0.8508295378350301, 0.5807723706867254, 0.8272749548927728, 0.2670652478909882, 0.7020144194675465, 0.4615566916191992, 0.7055847950248242, 0.43389869234556755, 0.6071692164257629, 0.3496825637352313, 0.23676491619791426, 0.7057755976874825, 0.15539001443149586, 0.6187538615870153, 0.8735882828904331, 0.30049486749739024, 0.23191705420611952, 0.8913917397916864, 0.4977157214618499, 0.16961113509580228, 0.8485494795219795, 0.4760032757956232, 0.5053843099270294, 0.2676015269871764, 0.3627664421236291, 0.15146266807038725, 0.7898179638281774, 0.6145296307645981, 0.3790380236797623, 0.3003532640340299, 0.6086112016774773, 0.39906793889171593, 0.8185832461647057, 0.6715802865662828, 0.8260225289794664, 0.6056902064850618, 0.400132762133902, 0.39471961640683584, 0.6449859309106076, 0.5637152910565628, 0.39949420960438964, 0.5490401551410112, 0.4398875418860128, 0.30916577334906253, 0.7093303227687476, 0.4562508424819209, 0.40444044759428516, 0.5773483646962835, 0.447777692034652, 0.4961542215384683, 0.32474312180562226, 0.21192693199409943, 0.9056903490933487, 0.5013816399998683, 0.758876109553896, 0.6364928148646596, 0.2952804752502578, 0.4748951900520853, 0.43679486629948455, 0.5479962315186364, 0.4728142838839701, 0.6343341418527783, 0.12248807650217919, 0.5052525886146573, 0.8281252124183194, 0.8930081609652758, 0.36283726088930296, 0.8098196742550625, 0.656477404357746, 0.193885049884708, 0.5269515041023835, 0.49858469647139786, 0.32780472036158087, 0.24927512797396847, 0.6148718578314069, 0.10691527318901187, 0.136775438340409, 0.8489192718114075, 0.2600203086082801, 0.8142007211296887, 0.5269515041023835, 0.7966615933629455, 0.5633234794197017, 0.767479452333631], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"total.sulfur.dioxide\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"total.sulfur.dioxide\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}}, {\"id\": \"total.sulfur.dioxide_bad\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (ref)\", \"type\": \"scatter\", \"x\": [192.0, 65.0, 151.0, 44.0, 77.0, 45.0, 149.0, 23.0, 148.0, 174.0, 110.0, 164.0, 165.0, 163.0, 79.0, 183.0, 144.0, 19.0, 139.0, 12.0, 187.0, 206.0, 12.0, 120.0, 63.0, 54.0, 120.0, 91.0, 214.0, 183.0, 20.0, 106.0, 159.0, 196.0, 192.0, 112.0, 147.0, 130.0, 10.0, 180.0, 94.0, 22.0, 100.0, 84.0, 84.0, 124.0, 105.0, 149.0, 87.0, 53.0, 33.0, 141.0, 168.0, 14.0, 173.0, 220.0, 169.0, 177.0, 69.0, 55.0, 245.0, 179.0, 16.0, 164.0, 113.0, 131.0, 172.0, 133.0, 36.0, 91.0, 183.0, 8.0, 194.0, 117.0, 115.0, 144.0, 233.0, 20.0, 92.0, 87.0, 106.0, 76.0, 243.0, 23.0, 138.0, 38.0, 201.0, 26.0, 72.0, 63.0, 8.0, 152.0, 111.0, 194.0, 195.0, 202.0, 159.0, 133.0, 179.0, 117.0, 195.0, 71.0, 111.0, 197.0, 120.0, 69.0, 115.0, 72.0, 115.0, 150.0, 47.0, 63.0, 15.0, 104.0, 51.0, 92.0, 178.0, 77.0, 84.0, 86.0, 166.0, 49.0, 150.0, 111.0, 204.0, 210.0, 198.0, 42.0, 86.0, 184.0, 33.0, 86.0, 156.0, 189.0, 139.0, 164.0, 60.0, 176.0, 140.0, 141.0, 116.0, 227.0, 75.0, 116.0, 177.0, 197.0, 161.0, 142.0, 48.0, 84.0, 156.0, 26.0, 143.0, 22.0, 104.0, 31.0, 98.0, 165.0, 73.0, 131.0, 101.0, 28.0, 49.0, 113.0, 12.0, 84.0, 179.0, 176.0, 187.0, 180.0, 171.0, 99.0, 121.0, 171.0, 95.0, 16.0, 35.0, 177.0, 55.0, 63.0, 189.0, 12.0, 114.0, 171.0, 179.0, 197.0, 187.0, 34.0, 157.0, 227.0, 115.0, 75.0, 206.0, 50.0, 200.0, 12.0, 151.0, 218.0, 210.0, 130.0, 198.0, 82.0, 82.0, 31.0, 132.0, 157.0, 131.0, 61.0, 13.0, 21.0, 87.0, 148.0, 160.0, 225.0, 173.0, 158.0, 192.0, 131.0, 220.0, 110.0, 24.0, 103.0, 204.0, 111.0, 115.0, 168.0, 93.0, 234.0, 87.0, 13.0, 117.0, 160.0, 103.0, 111.0, 106.0, 143.0, 207.0, 57.0, 210.0, 230.0, 38.0, 162.0, 136.0, 174.0, 103.0, 47.0, 142.0, 154.0, 164.0, 30.0, 155.0, 160.0, 159.0, 19.0, 176.0, 171.0, 90.0, 62.0, 133.0, 18.0, 169.0, 142.0, 173.0, 122.0, 178.0, 149.0, 128.0, 155.0, 58.0, 79.0, 212.0, 193.0, 167.0, 205.0, 186.0, 248.0, 124.0, 188.0, 82.0, 64.0, 14.0, 31.0, 188.0, 61.0, 117.0, 174.0, 123.0, 170.0, 73.0, 198.0, 97.0, 119.0, 307.5, 51.0, 68.0, 60.0, 106.0, 252.0, 177.0, 115.0, 78.0, 102.0, 96.0, 189.0, 72.0, 71.0, 184.0, 23.0, 18.0, 91.0, 150.0, 170.0, 31.0, 196.0, 133.0, 184.0, 282.0, 125.0, 223.0, 37.0, 20.0, 210.0, 60.0, 11.0, 168.0, 136.0, 71.0, 176.0, 65.0, 195.0, 167.0, 78.0, 164.0, 198.0, 131.0, 33.0, 240.0, 27.0, 95.0, 234.0, 87.0, 185.0, 120.0, 48.0, 188.0, 38.0, 195.0, 188.0, 62.0, 184.0, 145.0, 35.0, 197.0, 99.0, 104.0], \"xaxis\": \"x\", \"y\": [0.7197707895473677, 0.05448058807241418, 0.5021256787650443, 0.4710854375480472, 0.7156076129280222, 0.7966690429773311, 0.7265425252145667, 0.16771266951545494, 0.610944103187451, 0.6324527530146118, 0.42180662537268765, 0.2598044700255929, 0.5503032830239416, 0.5632112185661304, 0.6840604465833231, 0.6224375641140001, 0.8071781895370533, 0.9515482366939344, 0.3994071349416132, 0.9677746238863042, 0.572587586261062, 0.7602674855798478, 0.861098734498427, 0.1386074727873, 0.6703360831713621, 0.8064003460928679, 0.3172728283240366, 0.8039094494444462, 0.9186426431335688, 0.6026275969807151, 0.8609701260317718, 0.3485833566260712, 0.3005246278528939, 0.2859113263741919, 0.4978204971029292, 0.5125675444128744, 0.4268860326359044, 0.11791793574572085, 0.440027850275134, 0.4938434408506086, 0.4933189622152446, 0.166194347192407, 0.30200278364192557, 0.6822425768461728, 0.8693180940701344, 0.24112389044610405, 0.43189370387303117, 0.284455178085937, 0.23793737479647703, 0.5535561322468214, 0.7900402576908969, 0.47373775892899717, 0.6055733033081183, 0.7462675017011632, 0.32245623572553406, 0.7612367841042231, 0.36308410170653527, 0.6103993963703384, 0.3965676277125745, 0.2230008284200371, 0.8480025164595866, 0.43585875500482685, 0.24095331994381775, 0.4030652094068704, 0.8951637220162157, 0.2782175630406618, 0.7337660836226194, 0.8352762102164887, 0.6223987562306759, 0.2928263700360406, 0.6563137004068428, 0.16155652477357085, 0.6364666355122575, 0.2186811050870735, 0.27206300237801306, 0.4358901152617537, 0.6136035252376228, 0.07900866299327158, 0.8522855318359817, 0.11906253414448076, 0.3466831105240652, 0.11265227152414181, 0.6302693732121377, 0.7168097665217413, 0.4796298258249143, 0.4476252306691143, 0.3612478268219491, 0.611861930499026, 0.15121036728507153, 0.5363393546692182, 0.16155652477357085, 0.441733396330222, 0.7834276811132227, 0.6364666355122575, 0.44873286860252337, 0.4948960601400133, 0.4172084246960842, 0.5055831714989107, 0.5269082808529498, 0.3737404408311804, 0.4491757516278906, 0.5266720849021, 0.2882430633103308, 0.6066213483726142, 0.83534933450756, 0.2509605867776752, 0.230738949997912, 0.25680675940048736, 0.6858999083789018, 0.27626495444752697, 0.35158671089680515, 0.311480105980391, 0.5950329577300569, 0.4196263877039489, 0.3672198477254309, 0.5488429300958864, 0.6273126624389191, 0.0990306898864649, 0.935036100419004, 0.5556828679884147, 0.6003916802566726, 0.1337843055401957, 0.6898191889393818, 0.46604488826349566, 0.6668872608045229, 0.5998672378660981, 0.14712454771937833, 0.8558065212045691, 0.883276495704891, 0.5544329747085402, 0.38398791005853006, 0.8623310715459079, 0.4482795971615686, 0.4767821080964978, 0.6451659669426603, 0.5099786295438409, 0.11454219273407718, 0.5691587732433696, 0.2398813672346335, 0.8592796956842923, 0.38133093816728936, 0.4754945767078651, 0.2673740541283356, 0.43092180164799054, 0.5981491184574936, 0.7512253043619477, 0.20474988026063612, 0.12337786436138054, 0.6965484670033051, 0.4642254518352117, 0.29034758521725457, 0.7912282271603185, 0.1364389858241727, 0.5326323768611896, 0.3938848007926149, 0.886984727126295, 0.5955398539691413, 0.3667393936023857, 0.35129461810907203, 0.578130474122496, 0.1952086434691429, 0.6982941690158907, 0.6159300986783536, 0.6650580695700093, 0.8007006003287879, 0.13750802167619447, 0.47121416359091395, 0.5691587732433696, 0.5295784007050042, 0.4938434408506086, 0.4240508430342457, 0.1531205555636086, 0.7965770364050346, 0.4829168465516456, 0.6333246955344933, 0.38682769986244625, 0.5589353890471914, 0.30965836575156913, 0.6133571507425741, 0.5363393546692182, 0.5474540697204298, 0.9680074395956593, 0.29703705077451537, 0.7566858385458134, 0.451244026180727, 0.6224939697452743, 0.9340693900855184, 0.1254375450851024, 0.770680513376406, 0.7273231109206828, 0.410671569380914, 0.19928392436820586, 0.44743622108127745, 0.4991477681643879, 0.5443787589855091, 0.826082779912576, 0.5642536294664222, 0.6762559922350657, 0.39283078357423706, 0.3074847569358159, 0.40732461839200396, 0.5614584986504241, 0.5614584986504241, 0.575628870274347, 0.1938881144566701, 0.6480440770440566, 0.23946299348505806, 0.6110142157087575, 0.32489046344192996, 0.127020290619695, 0.28948900574123104, 0.27970970921902805, 0.5179212029104148, 0.579807192000203, 0.5695619245525361, 0.7471497674522103, 0.6761943115269239, 0.6052803835931642, 0.9048996801452402, 0.632953623191418, 0.7849920634816455, 0.12946409768986655, 0.3899257470968539, 0.37735505673750047, 0.27206300237801306, 0.6356505945299911, 0.9000798247851504, 0.5852448485124296, 0.3537739535016634, 0.8589709040748648, 0.5105041430354158, 0.4760479563081992, 0.3915586115462193, 0.4344526143297297, 0.04825794875232026, 0.25106204840173363, 0.5352062615150248, 0.2084678736174792, 0.5588772074146924, 0.42656597432725707, 0.3395528272139201, 0.5154796814541086, 0.30312695461308037, 0.4684625037801391, 0.13140485141127656, 0.37575572516499556, 0.7087902803012941, 0.22740617784346517, 0.7932370230268412, 0.6977827466507267, 0.8687065743771458, 0.3532210556477622, 0.3005246278528939, 0.8817461779308045, 0.5897758288136841, 0.5117334773877459, 0.2267712913026929, 0.7462523759498982, 0.5055831714989107, 0.6276122794572256, 0.34766968675436505, 0.563322001169588, 0.4035281086421867, 0.44827723495654004, 0.7588644006503809, 0.17560197311170134, 0.2736156405730563, 0.5646478519097824, 0.12788772013874206, 0.8127608550985441, 0.35130933230290007, 0.8842329534318195, 0.5671758377024384, 0.508518787579709, 0.4735654621913231, 0.6614347321502836, 0.7032589073748752, 0.418601168771625, 0.40262233345395115, 0.38045938978299354, 0.6221728234115828, 0.6769388667590319, 0.825791915264051, 0.8036522945246104, 0.5350776523934957, 0.5038683203672731, 0.4187790963850706, 0.3942708224564714, 0.36585282612655, 0.42973128126448334, 0.1395024853671747, 0.36909778672938764, 0.5126700875045708, 0.31128511290513083, 0.5841805470690385, 0.42932394036482613, 0.5168725346003686, 0.9331527243268325, 0.5090935678835011, 0.848083892739094, 0.7288594688776423, 0.23463814542978878, 0.9073343486287574, 0.5445649372592127, 0.8030108083542629, 0.30698149193503155, 0.47724620771884374, 0.49565431290071005, 0.29179072192325783, 0.53941953634433, 0.32642767658125227, 0.5714063949384225, 0.6769388667590319, 0.48314991346809855, 0.3838692085325581, 0.7654355578102645, 0.6807995217458978, 0.7803105409218809, 0.4971816769068883, 0.5662837862370104, 0.32557907866588853, 0.4059739580227363, 0.8621668957327787, 0.4863555612469991, 0.44913520001249685, 0.5044088987161788, 0.018560580499064172, 0.17397747102053363, 0.8203404366189, 0.531551035274026, 0.3951880410340851, 0.6710839680909022, 0.7545393605546251, 0.25029771644034415, 0.31651464458218903, 0.7900402576908969, 0.7649542174153934, 0.6282404390050247, 0.5124469561170844, 0.7501741577575001, 0.3717170374651112, 0.5479204837841629, 0.1799627586960565, 0.8716748635647116, 0.4700369344869263, 0.7044722268129955, 0.7597806244765397, 0.4570971226262448, 0.3688130253756654, 0.5854022956087224, 0.6067015953642416, 0.6092966434658947, 0.5713009051869427, 0.15316343939585397, 0.31191498773739224], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [123.0, 231.0, 126.0, 107.0, 175.0, 65.0, 107.0, 115.0, 121.0, 69.0, 180.0, 9.0, 158.0, 195.0, 211.0, 150.0, 101.0, 43.0, 74.0, 93.0, 202.0, 95.0, 142.0, 177.0, 84.0, 170.0, 93.0, 158.0, 131.0, 75.0, 92.0, 54.0, 92.0, 170.0, 63.0, 130.0, 186.0, 142.0, 99.0, 66.0, 67.0, 148.0, 60.0, 97.0, 211.0, 110.0, 57.0, 142.0, 18.0, 135.0, 110.0, 177.0, 104.0, 189.0, 156.0, 163.0, 73.0, 98.0, 104.0, 127.0, 19.0, 128.0, 144.0, 140.0, 41.0, 24.0, 100.0, 114.0, 160.0, 86.0, 125.0, 86.0, 101.0, 289.0, 94.0, 90.0, 37.0, 83.0, 60.0, 125.0, 189.0, 93.0, 57.0, 124.0, 98.0, 93.0, 143.0, 50.0, 93.0, 17.0, 119.0, 109.0, 148.0, 143.0, 151.0, 116.0, 134.0, 117.0, 85.0, 157.0, 47.0, 200.0, 41.0, 8.0, 95.0, 200.0, 103.0, 133.0, 86.0, 38.0, 103.0, 176.0, 166.0, 49.0, 158.0, 121.0, 110.0, 72.0, 171.0, 44.0, 171.0, 134.0, 228.0, 140.0, 89.0, 31.0, 25.0, 127.0, 147.0, 23.0, 127.0, 106.0, 129.5, 71.0, 115.0, 155.0, 52.0, 23.0, 109.0, 44.0, 109.0, 155.0, 159.0, 161.0, 17.0, 113.0, 85.0, 77.0, 34.0, 109.0, 149.0, 42.0, 143.0, 206.0, 118.0, 111.0, 100.0, 167.0, 112.0, 122.0, 115.0, 91.0, 68.0, 45.0, 137.0, 213.0, 192.0, 142.0, 161.0, 119.0, 20.0, 58.0, 123.0, 97.0, 43.0, 144.0, 31.0, 134.0, 138.0, 33.0, 134.0, 126.0, 15.0, 163.0, 136.0, 127.0, 118.0, 15.0, 194.0, 96.0, 128.0, 11.0, 164.0, 164.0, 94.0, 118.0, 126.0, 113.0, 72.0, 58.0, 124.0, 122.0, 111.0, 46.0, 181.0, 74.0, 22.0, 124.0, 155.0, 146.0, 73.0, 101.0, 121.0, 133.0, 80.0, 128.0, 106.0, 128.0, 160.0, 75.0, 78.0, 158.0, 87.0, 110.0, 25.0, 111.0, 189.0, 156.0, 106.0, 151.0, 186.0, 184.0, 52.0, 139.0, 92.0, 112.0, 150.0, 169.0, 107.0, 128.0, 202.0, 192.0, 114.0, 228.0, 64.0, 193.0, 155.0, 140.0, 167.0, 88.0, 163.0, 229.0, 66.0, 28.0, 29.0, 101.0, 143.0, 168.0, 152.0, 9.0, 146.0, 92.0, 99.0, 144.0, 109.0, 130.0, 114.0, 20.0, 44.0, 96.0, 61.0, 48.0, 81.0, 104.0, 119.0, 156.0, 115.0, 24.0, 11.0, 90.0, 161.0, 146.0, 90.0, 105.0, 93.0, 27.0, 182.0, 186.0, 46.0, 87.0, 84.0, 158.0, 12.0, 138.0, 149.0, 201.0, 34.0, 138.0, 71.0, 103.0, 40.0, 113.0, 98.0, 93.0, 98.0, 44.0, 142.0, 54.0, 155.0, 124.0, 70.0, 174.0, 28.0, 249.5, 90.0, 21.0, 153.0, 142.0, 100.0, 81.0, 104.0, 65.0, 170.0, 164.0, 118.0, 25.0, 81.0, 27.0, 188.0, 151.0, 107.0, 100.0, 19.0, 171.0, 96.0, 167.0, 76.0, 102.0, 159.0, 242.0, 213.0, 49.0, 78.0, 141.0, 22.0, 148.0, 125.0, 37.0, 96.0, 200.0, 143.0, 173.0, 115.0, 57.0, 160.0, 107.0, 79.0, 155.0, 23.0, 135.0, 194.0, 172.0, 57.0, 48.0, 88.0, 112.0, 125.0, 117.0, 31.0, 179.0, 149.0, 67.0, 102.0, 93.0, 78.0, 122.0, 142.0, 43.0, 98.0, 86.0, 50.0, 209.0, 63.0, 247.0, 206.0, 98.0, 95.0, 170.0, 163.0, 93.0, 132.0, 111.0, 158.0, 97.0, 221.0, 42.0, 87.0, 122.0, 178.0, 114.0, 42.0, 62.0, 70.0, 168.0, 78.0, 127.0, 134.0, 171.0, 87.0, 169.0, 140.0, 168.0, 141.0, 78.0, 102.0, 118.0, 152.0, 171.0, 143.0, 168.0, 138.0, 131.0, 206.0, 149.0, 134.0, 114.0, 111.0, 166.0, 165.0, 178.0, 186.0, 79.0, 98.0, 68.0, 146.0, 111.0, 16.0, 54.0, 155.0, 47.0, 102.0, 111.0, 89.0, 125.0, 109.0, 118.0, 231.0, 154.0, 24.0, 83.0, 126.0, 124.0, 70.0, 108.0, 174.0, 38.0, 223.0, 37.0, 101.0, 116.0, 22.0, 66.0, 37.0, 208.0, 138.0, 92.0, 134.0, 143.0, 154.0, 27.0, 42.0, 215.0, 131.0, 169.0, 113.0, 166.0, 105.0, 111.0, 113.0, 98.0, 42.0, 183.0, 118.0, 172.0, 134.0, 117.0, 109.0, 118.0, 88.0, 120.0, 223.0, 94.0, 93.0, 129.0, 11.0, 125.0, 185.0, 197.0, 108.0, 101.0, 195.0, 140.0, 140.0, 194.0, 126.0, 176.0, 113.0, 156.0, 90.0, 135.0, 98.0, 100.0, 211.0, 184.0, 111.0, 76.0, 111.0, 245.0, 102.0, 109.0, 89.0, 114.0, 142.0, 114.0, 38.0, 28.0, 158.0, 121.0, 126.0, 92.0, 47.0, 16.0, 158.0, 142.0, 102.0, 61.0, 242.0, 137.0, 143.0, 125.0, 172.0, 144.0, 216.0, 157.0, 128.0, 114.0, 13.0, 118.0, 83.0, 143.0, 116.0, 167.0, 91.0, 76.0, 125.0, 15.0, 73.0, 37.0, 213.0, 110.0, 160.0, 143.0, 68.0, 113.0, 88.0, 124.0, 112.0, 63.0, 110.0, 204.0, 78.0, 151.0, 168.0, 114.0, 110.0, 82.0, 154.0, 134.0, 229.0, 154.0, 109.0, 101.0, 123.0, 54.0, 126.0, 39.0, 128.0, 118.0, 65.0, 130.0, 136.0, 114.0, 215.0, 144.0, 128.0, 117.0, 89.0, 16.0, 95.0, 215.0, 150.0, 114.0, 162.0, 110.0, 17.0, 164.0, 144.0, 115.5, 134.0, 155.0, 119.0, 70.0, 230.0, 13.0, 137.0, 72.0, 69.0, 136.0, 28.0, 103.0, 154.0, 158.0, 33.0, 56.0, 194.0, 195.0, 140.0, 84.0, 170.0, 87.0, 178.0, 186.0, 193.0, 113.0, 140.0, 72.0, 37.0, 170.0, 110.0, 75.0, 104.0, 34.0, 152.0, 99.0, 117.0], \"xaxis\": \"x\", \"y\": [0.18439386755371057, 0.5750868907731637, 0.1132172353536568, 0.19850047615697952, 0.6950004168934912, 0.41826441672946313, 0.040828937665112974, 0.2145583871630251, 0.09143093017991866, 0.10013996234885614, 0.3658834999306372, 0.587897812361327, 0.23563705889496211, 0.5289998061994394, 0.5981734696485812, 0.5956194363709464, 0.11295199838815062, 0.6349332021584286, 0.09356782907078887, 0.0672754654033908, 0.3541579814831264, 0.11781588709523827, 0.3295981493457443, 0.23443288181779365, 0.13830133810679424, 0.5122546205578999, 0.03626449638205209, 0.32057959349203036, 0.3955164844050859, 0.21320459763992916, 0.08620177311633537, 0.4132497936565127, 0.19514157099220286, 0.028148892894647393, 0.03728071159582558, 0.20213762816504022, 0.39088790332760825, 0.10566618212719892, 0.11466232649727714, 0.09544364959788487, 0.07351553674018241, 0.3657542344632553, 0.05859665738698361, 0.43634835962676355, 0.4827032077898804, 0.516310366273556, 0.6480037931050455, 0.21122004543372697, 0.030344760075157406, 0.22750344576024595, 0.18673438423788624, 0.5460909738859347, 0.0666291073587214, 0.320234954276134, 0.515425573770442, 0.5751179393061847, 0.3262180383913996, 0.12192585741802231, 0.6165939755266235, 0.09365914315081003, 0.44259853952477324, 0.31958523161407537, 0.09228899111547839, 0.22815273642701062, 0.5282447951108347, 0.7777719169155834, 0.13834506443323813, 0.29425092810710396, 0.5300870647699181, 0.031947521718024174, 0.1108646816717751, 0.053339747820140615, 0.14466174791529418, 0.25697560969337485, 0.3383868137798065, 0.30803904997837983, 0.03434255320493995, 0.08689109251212201, 0.46044782253877736, 0.0973761441498977, 0.3449058470623745, 0.024212367984770777, 0.11665042079727428, 0.3333970234137619, 0.1495417879159372, 0.0679784404121434, 0.2360052425084116, 0.39147703437781534, 0.04428683932015287, 0.5381556738404795, 0.4357341587922019, 0.11843845992675284, 0.28107964630818494, 0.06989794698232743, 0.2658605825653322, 0.22408104406272966, 0.15519213452661884, 0.09873339188795927, 0.10739713799337769, 0.4712507279726723, 0.31257930793611366, 0.6259141532505736, 0.1651629894813923, 0.13024327386797574, 0.08242409751896962, 0.55355901104019, 0.11256152515999429, 0.22124325125588817, 0.05838775174278421, 0.6734770756819889, 0.06919042490492266, 0.5773286546676725, 0.5693181878572973, 0.12726917141891614, 0.27983888222674136, 0.15690954109554833, 0.18593824584442387, 0.05432525584274117, 0.33273366741371935, 0.12435295831370408, 0.48112847828662497, 0.2959384652215836, 0.5042039768350125, 0.3749869638443927, 0.7258627386781167, 0.4806866421912115, 0.6234335830956541, 0.4191951896523489, 0.20821728825178332, 0.6343085651912675, 0.27674577061671146, 0.02140654255666985, 0.42849246998341506, 0.1817444030106703, 0.4551538855951942, 0.05087080041524106, 0.516641204200833, 0.6810720245435042, 0.08151744899857294, 0.4475169494323581, 0.03995706953508171, 0.2181819033834006, 0.20372897255157485, 0.24305701296248816, 0.5381556738404795, 0.2358485729609252, 0.051323642447754336, 0.1913631294907303, 0.32154631204965056, 0.31229802093755377, 0.3917329141436472, 0.39462053822053156, 0.3680669306910641, 0.5017894292511481, 0.32120711190509066, 0.0768019282386515, 0.1168769044932052, 0.31545143431826594, 0.12007957373947853, 0.08354361700756141, 0.2180731800932174, 0.7653011157176768, 0.05076221583963347, 0.11739077279846111, 0.3639458403519926, 0.4815918747301601, 0.35998732468747585, 0.457353694020342, 0.5520498791697908, 0.22168281241722143, 0.2132287846887433, 0.4763394582576197, 0.3040153802820409, 0.20749766415549342, 0.3316810644107503, 0.8126297477835096, 0.5749367295182395, 0.27274039590582944, 0.2685808245693546, 0.5172108675362206, 0.33506587713796443, 0.09616672688355288, 0.041108213935392324, 0.10548050716105373, 0.5016695616404938, 0.20022874051447226, 0.14220640128276774, 0.23772630779738468, 0.19606080251004787, 0.2603188495268066, 0.18846597668723208, 0.19827111133563302, 0.261548791893628, 0.4140325207077993, 0.8134796325151183, 0.12265695643958285, 0.6311167068993262, 0.13481820177301163, 0.0932384579037443, 0.14050160114126486, 0.2562249115981724, 0.08547750670655718, 0.08643201081848362, 0.19981675431015722, 0.31390222338706264, 0.06221739913672386, 0.06996303880871468, 0.30029370289300306, 0.4306817897420764, 0.6595343859760441, 0.2839408857911616, 0.20468539219890003, 0.1130196126722065, 0.2360017176902124, 0.13187147729288817, 0.42313120297864704, 0.06964897436687001, 0.1624399718171824, 0.17200815643270417, 0.07333105637055992, 0.2440137653363641, 0.4900110333069776, 0.3085554157386313, 0.03480496731142946, 0.12148031785507996, 0.15002971926037112, 0.5314247042003052, 0.2758453007685677, 0.2151852748992088, 0.2658605825653322, 0.29911225563077193, 0.6594110243744711, 0.49869782335001445, 0.16788254706683048, 0.11816213334465087, 0.08230909248122409, 0.13653212507346946, 0.25639170942272826, 0.06562233405876228, 0.23311900627036541, 0.3756616197417655, 0.46674395287949066, 0.3092684534350997, 0.8337319641197457, 0.8331457111467163, 0.2591056156836542, 0.4778687671024334, 0.2542440524586721, 0.5361036306539362, 0.07073721340803463, 0.4731688813159418, 0.5755848065786346, 0.356689463387698, 0.14225616860197343, 0.21837916002376445, 0.14466174791529418, 0.29899643271856946, 0.4757427727983842, 0.08126799884203029, 0.1296501822378736, 0.3286954654423938, 0.08620177311633537, 0.13855855420831553, 0.05543377339452393, 0.11917834098009661, 0.2613621884509647, 0.11269900223777074, 0.08429051026621415, 0.3393961441870107, 0.07031960314855146, 0.11356777592095357, 0.4853279864284006, 0.1279289285514792, 0.0584572339054259, 0.08612988585012649, 0.3472440907423937, 0.1248029959061332, 0.07502335399434323, 0.19827111133563302, 0.3424151534036639, 0.3065175956815872, 0.13808860398564737, 0.058092197534895806, 0.04082786106581715, 0.1602592849246841, 0.09156161599234125, 0.5036030690663805, 0.2640411824475748, 0.6468038092930676, 0.07201805208597656, 0.22470230804277058, 0.1334773721572423, 0.04847889440667685, 0.2685808245693546, 0.10911308148570098, 0.6764508967260475, 0.6280060594576413, 0.36761958218269275, 0.16019930342079847, 0.17605308658107655, 0.14078981831089854, 0.2384997092801764, 0.13117402490907393, 0.12818959986091483, 0.4161925244315118, 0.12435295831370408, 0.09814942480303201, 0.05480698563416486, 0.3746187330143109, 0.41092354232892336, 0.507894749900129, 0.5137929421583434, 0.08293523366016065, 0.2964416548030494, 0.15236141109070434, 0.4396941021426354, 0.41893931094950754, 0.09113953260801844, 0.10967473999240707, 0.055732078845942, 0.05640314085190745, 0.06176263301115803, 0.06427139521062619, 0.20386133178572885, 0.21597661143113533, 0.7486409492386699, 0.2610715902497083, 0.09465277491899493, 0.5556171757583562, 0.137718889647652, 0.1978940751503777, 0.08472590699531857, 0.356262641598029, 0.14596950445002987, 0.13865818299932142, 0.3088915816821678, 0.11516321289421916, 0.16121169033174265, 0.40573483691789825, 0.34308606282264, 0.36300204724896845, 0.17193414756867276, 0.035926383178341514, 0.34536882843285344, 0.4400180463892147, 0.5165194668234709, 0.23319834124303085, 0.9637923675569924, 0.2635599134550337, 0.6259141532505736, 0.12324962258280003, 0.1256037712827487, 0.1248029959061332, 0.11665042079727428, 0.29081136443782263, 0.12993062945549005, 0.20959981847797426, 0.12385816607190492, 0.16931651488884025, 0.2468284110987674, 0.6181879252747016, 0.3509541008179864, 0.08619429866610873, 0.09537770951135394, 0.8204393830764495, 0.2493836920976743, 0.10367142046182065, 0.11516383353466464, 0.07169627826225977, 0.5400384130096556, 0.2709141565803237, 0.16809050322974173, 0.3421981324687273, 0.812724325423183, 0.1326589750154965, 0.054670132935181304, 0.055346153509382656, 0.8039442695404772, 0.3276168958360183, 0.6561718697940482, 0.6214102617950452, 0.3046829516703813, 0.7853649284745584, 0.7303620793003476, 0.6719087507962026, 0.16000678121984613, 0.579612101366232, 0.6347749924714103, 0.41894393066564606, 0.06936532322770372, 0.28322834609079706, 0.343263893078516, 0.4450860003239352, 0.3090838478611311, 0.408095736797927, 0.11529682880263803, 0.13359771811640497, 0.2417229185475579, 0.10092265889692065, 0.8181934133883563, 0.3777834313813965, 0.8273808576462511, 0.18439353202429143, 0.5148786056082297, 0.11287077888712382, 0.16015059460472458, 0.29672938182784603, 0.36944561074938853, 0.2505850522824452, 0.8467591712977676, 0.3840267097226593, 0.261779448872241, 0.1645479955558209, 0.14631295673285594, 0.4248523287309329, 0.09222807982804315, 0.2121484308544801, 0.33273366741371935, 0.5470626312455473, 0.8294144697045585, 0.25206662215500397, 0.15998368749433245, 0.548322128117227, 0.3917329141436472, 0.15981565308588508, 0.23631147082452741, 0.21082920466209698, 0.1871387197916503, 0.24774693401855818, 0.1913242313933492, 0.16437448769677154, 0.07582203648947516, 0.032541140295091364, 0.06311143057978008, 0.5009235508757715, 0.12343879567504301, 0.445735807756371, 0.40322837553658053, 0.09397553936597514, 0.1598391281143201, 0.26702494168661406, 0.19782301216908982, 0.06831823449824892, 0.5451167746582685, 0.20142160156100697, 0.25747632252511843, 0.4257317671215596, 0.5062318064185062, 0.10278357133077332, 0.10857266292312517, 0.06223864817381186, 0.11377411494697365, 0.14082424186384768, 0.2589321903149734, 0.31776639873426016, 0.07983414941561229, 0.30174211068680845, 0.42532907678292176, 0.23734670470511587, 0.2862296469110084, 0.24790288035387664, 0.5526146374040077, 0.20425399436950087, 0.5166825128498294, 0.12415322942140417, 0.5310696157212036, 0.3866387435262121, 0.14313186082947948, 0.31648660326859934, 0.026792916001305622, 0.7856428374245099, 0.42383310375799566, 0.5944566396871084, 0.6256605001243821, 0.08813642250468567, 0.03544811528140901, 0.06935406654889886, 0.15751976448865512, 0.22608551288474832, 0.3127311228465576, 0.1409438166611655, 0.3285615524533705, 0.3591330499592894, 0.47964497307801546, 0.7143146030302826, 0.14223944449319303, 0.06929054967731618, 0.32120711190509066, 0.16913647442041335, 0.707286257884667, 0.3230684446475647, 0.7616845263358343, 0.4104900542879092, 0.10053249234255524, 0.1106599594415556, 0.1543174595222413, 0.46003879185641183, 0.3811350878514418, 0.07185070571861518, 0.23882593985771994, 0.5344976262521839, 0.11031385635331636, 0.09610989844306939, 0.4955559099445003, 0.07845190603324759, 0.30697262074812925, 0.12767551958037127, 0.4375661224395835, 0.07737023387634634, 0.15307682457740834, 0.05694427046787409, 0.09028836937410878, 0.4011292297732457, 0.6186146927451245, 0.11561676905211238, 0.0993047499370594, 0.08102401279833105, 0.8100206966555492, 0.10768932514586738, 0.15386113005635593, 0.4026560765644126, 0.045535707525545144, 0.08229583319403, 0.08227601457953415, 0.8241544781987433, 0.0759900855540333, 0.5147505197509459, 0.11103147778198663, 0.42144961755966015, 0.24880465403270857, 0.3112403223054312, 0.3282460941643247, 0.28312386083977936, 0.2865521931047814, 0.16537364909659502, 0.4284132019637321, 0.34116073112729894, 0.051142721309942685, 0.10794707492381372, 0.1108646816717751, 0.29201805921023904, 0.07365131996157204, 0.36851051207096197, 0.2556143611338999, 0.07392456180697715, 0.045535707525545144, 0.15025986810093994, 0.4395989822566938, 0.19636656988846957, 0.21018464628148859, 0.15085686628779282, 0.3429118439192298, 0.16104008564300487, 0.2055862423584408, 0.18673310211333727, 0.5528531989583015, 0.20219789553586287, 0.5807830339134155, 0.6112381610839525, 0.07515362639458067, 0.5722084734915175, 0.3654892991508686, 0.1991057466826236, 0.4912569401667811, 0.05850610073101081, 0.3077884117234785, 0.17038242498240874, 0.14066607718466684, 0.10248584652416493, 0.4022873718442217, 0.07205214632436985, 0.35142291824287475, 0.10941760034103376, 0.06679271580157364, 0.05675388891699207, 0.058987921856350156, 0.3660303223369904, 0.28790374422385034, 0.4158290962648631, 0.40710291595796666, 0.09934102670994882, 0.06362846635195196, 0.30921476208988685, 0.23242198019285765, 0.055541210656895434, 0.5297663836663529, 0.10744632778983743, 0.18410212910939194, 0.17721960751489196, 0.1962664672709783, 0.1617648996714035, 0.10584426414108294, 0.5203501665477333, 0.07365131996157204, 0.31578819840495265, 0.35364190165315845, 0.1707951928721818, 0.41655733121321636, 0.15801546378512366, 0.7568436608419439, 0.22368578646300386, 0.0609449253562836, 0.2225096762928218, 0.18587673368692093, 0.05559101133196209, 0.569598540521716, 0.08073228430722412, 0.15724041301590164, 0.12879141548479, 0.4306817897420764, 0.17998791969802397, 0.41280880088413996, 0.5723062335690389, 0.6457404130724687, 0.10420061808672998, 0.12564769853034463, 0.21795029564941848, 0.4720930498870375, 0.11304202998506685, 0.545112257205237, 0.14852188644910969, 0.17217029085021085, 0.336250902618187, 0.48671482860553816, 0.5093433434984792, 0.35847801144896685, 0.3008706318705062, 0.18494609259573758, 0.4199330463236065, 0.04162287990776414, 0.2633909944023186, 0.4252182303976608, 0.4684623303117058, 0.1925553058603695, 0.09610989844306939, 0.09129843496680234, 0.3302708189676917, 0.4199330463236065, 0.11927294568859859, 0.4864154015695107, 0.06472081497616611, 0.6387929002666255, 0.37932906694235924, 0.093713747684541, 0.20627971812824875], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (curr)\", \"type\": \"scatter\", \"x\": [106.0, 196.0, 164.0, 47.0, 156.0, 167.0, 131.0, 14.0, 21.0, 25.0, 111.0, 85.0, 191.0, 207.0, 181.0, 133.0, 143.0, 42.0, 125.0, 131.0, 115.0, 219.0, 185.0, 225.0, 101.0, 110.0, 72.0, 174.0, 66.0, 163.0, 159.0, 166.0, 24.0, 73.0, 164.0, 135.0, 152.0, 39.0, 127.0, 128.0, 101.0, 44.0, 150.0, 171.0, 67.0, 177.0, 112.0, 38.0, 174.0, 40.0, 176.0, 139.0, 91.0, 33.0, 26.0, 49.0, 38.0, 23.0, 145.0, 201.0, 23.0, 216.0, 186.0, 26.0, 91.0, 11.0, 45.0, 34.0, 23.0, 42.0, 16.0, 182.0, 168.0, 23.0, 135.0, 111.0, 255.0, 61.0, 98.0, 84.0, 126.0, 21.0, 187.0, 143.0, 169.0, 59.0, 171.0, 184.0, 174.0, 102.0, 210.0, 134.0, 16.0, 213.0, 54.0, 9.0, 131.0, 148.0, 142.0, 216.0, 88.0, 167.0, 133.0, 38.0, 200.0, 9.0, 90.0, 26.0, 119.0, 197.0, 59.0, 148.0, 30.0, 189.0, 53.0, 166.0, 146.0, 144.0, 196.0, 44.0, 179.0, 132.0, 161.0, 102.0, 20.0, 94.0, 89.0, 123.0, 20.0, 201.0, 55.0, 227.0, 213.0, 56.0, 68.0, 178.0, 121.0, 13.0, 94.0, 126.0, 117.0, 169.0, 95.0, 77.0, 68.0, 149.0, 138.0, 12.0, 140.0, 166.0, 114.0, 212.0, 129.0, 176.0, 145.0, 117.0, 135.0, 183.0, 131.0, 213.0, 55.0, 173.0, 128.0, 116.0, 29.0, 90.0, 56.0, 92.0, 140.0, 150.0, 165.0, 114.0, 86.0, 178.0, 102.0, 107.0, 119.0, 220.0, 219.0, 158.0, 122.0, 157.0, 42.0, 84.0, 162.0, 161.0, 150.0, 116.0, 142.0, 149.0, 86.0, 102.0, 196.0, 83.0, 189.0, 35.0, 89.0, 142.0, 156.0, 97.0, 11.0, 201.0, 162.0, 198.0, 89.0, 183.0, 173.0, 15.0, 138.0, 160.0, 146.0, 106.0, 34.0, 106.0, 222.0, 80.0, 169.0, 172.0, 99.0, 60.0, 142.0, 202.0, 126.0, 216.0, 154.0, 119.0, 43.0, 199.0, 167.0, 143.0, 161.0, 129.0, 138.0, 145.0, 63.0, 167.0, 131.0, 129.0, 213.0, 101.0, 210.0, 31.0, 138.0, 162.0, 117.0, 190.0, 75.0, 105.0, 169.0, 70.0, 42.0, 186.0, 111.0, 153.0, 111.0, 133.0, 162.0, 238.5, 155.0, 38.0, 37.0, 101.0, 168.0, 168.0, 71.0, 186.0, 77.0, 113.0, 117.0, 164.0, 98.0, 28.0, 187.0, 148.0, 107.0, 108.0, 210.0, 72.0, 82.0, 136.0, 87.0, 161.0, 105.0, 197.0, 145.0, 148.0, 109.0, 126.0, 48.0, 66.0, 191.0, 147.0, 151.0, 85.0, 137.0, 31.0, 98.0, 192.0, 167.0, 22.0, 132.0, 47.0, 176.0, 226.0, 210.0, 131.0, 21.0, 105.0, 177.0, 181.0, 58.0, 191.0, 69.0, 145.0, 175.0, 162.0, 157.0, 197.0, 138.0, 80.0, 25.0, 20.0, 124.0, 164.0, 14.0, 151.0, 161.0, 6.0, 200.0, 168.0, 10.0, 166.0, 85.0, 148.0, 28.0, 85.0, 127.0, 133.0, 138.0, 104.0, 180.0, 121.0, 61.0, 63.0, 16.0, 49.0, 122.0, 106.0, 138.0, 112.0, 92.0, 128.0], \"xaxis\": \"x2\", \"y\": [0.18579927887031134, 0.9274202256360236, 0.2569067617886446, 0.17851375722123963, 0.43011516789686843, 0.3951880410340851, 0.35333307802371594, 0.854899199395705, 0.7749695319329993, 0.7150752736216004, 0.5793836726576811, 0.17187478758168062, 0.503776006633781, 0.6517104478925241, 0.5321166645488455, 0.4291031613352281, 0.6295132227815239, 0.446367751604861, 0.12978626497489776, 0.578130474122496, 0.1303225049324246, 0.4589423036505589, 0.6028673022099313, 0.6724998803801079, 0.055171077290688375, 0.28900585249094113, 0.5807441942986169, 0.6324527530146118, 0.32780881811994433, 0.4437792729685527, 0.47375733914823626, 0.6755390392614542, 0.8494338455743565, 0.8432302027568838, 0.3962269303969661, 0.36574887203466033, 0.9780529644634413, 0.6757083557066426, 0.43212531492562845, 0.6428319532862445, 0.2244465690609686, 0.6759712108962084, 0.300575337785698, 0.4848467547623382, 0.24353241802821812, 0.6165640897352094, 0.801889943514816, 0.6831580296641933, 0.4684052737322374, 0.07309555507266852, 0.17397747102053363, 0.548208100621717, 0.16948307959681597, 0.5287139706981401, 0.8097217619362252, 0.48186532860504816, 0.7044722268129955, 0.5458559966555334, 0.6067015953642416, 0.5767206748937392, 0.5416109283549078, 0.7766135747357961, 0.6371580804073698, 0.3290646799011723, 0.53941953634433, 0.7444876216695655, 0.27658524567301757, 0.8518717737266248, 0.685064206005921, 0.7994946846943811, 0.6254668451144636, 0.29898447003196504, 0.36566585814722175, 0.8260679099411251, 0.265003746926769, 0.18277705216857454, 0.6401445853260315, 0.2878944788643705, 0.7379395090268356, 0.6578861964269485, 0.3048731186933995, 0.6479177870210828, 0.5479007895539181, 0.8109237991420157, 0.4555798348891207, 0.35159410271621183, 0.6741813074403022, 0.40366163192193316, 0.3797333752177462, 0.42326140605337403, 0.49450075158901585, 0.7027754368270075, 0.31556666432085356, 0.5737052492708005, 0.5594846166878963, 0.9879213229528466, 0.23907110553933086, 0.7604887601700165, 0.906894853259191, 0.49150798334893764, 0.6693239074263375, 0.635181004157038, 0.4291031613352281, 0.6805197940362542, 0.8579270215873258, 0.42231028799440284, 0.7973836574204367, 0.6209099995125147, 0.617932351579841, 0.5867531689564582, 0.8217385626893267, 0.5766058512754557, 0.6085190813519714, 0.6488649586424557, 0.19466062481522506, 0.4062994677131635, 0.31500574198466447, 0.6106996692323751, 0.48314991346809855, 0.4300926711133176, 0.4623912750166579, 0.18141675383529432, 0.7404949196358439, 0.7960551628311661, 0.6696955469146251, 0.7471897031921468, 0.15222801432328747, 0.4782875749995391, 0.6696955469146251, 0.4617114467660769, 0.0374236133971757, 0.34638250956587036, 0.5737052492708005, 0.35412183815676124, 0.5342599897609015, 0.6273126624389191, 0.1819914526651868, 0.6450640502472667, 0.7576359910572065, 0.6363669366758954, 0.35783776888428775, 0.4555798348891207, 0.2603691587203709, 0.09638465351539516, 0.7889843001267657, 0.3995975535535492, 0.2404138117262561, 0.5134503976671381, 0.7620160241108803, 0.4852174766770502, 0.7934067722809752, 0.5657371707019572, 0.40591517497640706, 0.5142806824729376, 0.4667389755277017, 0.4597803030361328, 0.14211531046105408, 0.4709774325404933, 0.39253304933110444, 0.8152160844894966, 0.6418608562675732, 0.5695619245525361, 0.15898796250578873, 0.4189913516486339, 0.8097376625536354, 0.2776505479619531, 0.14100712613869515, 0.1625374057836978, 0.21879614767173305, 0.26016804821119, 0.5884346274074399, 0.25171266030158634, 0.5556828679884147, 0.2886326125606653, 0.5013044750460076, 0.23728971353361283, 0.6280660923097139, 0.6281218947904323, 0.6226708394296439, 0.1280348372312241, 0.37812375401711507, 0.6218606462016874, 0.446367751604861, 0.5237591509200082, 0.22560064672115399, 0.4159575064805634, 0.43989745285902637, 0.38133093816728936, 0.379388299643832, 0.4244201113870294, 0.8495234946343055, 0.44699506619782237, 0.3402560380560977, 0.16997778820688525, 0.6509841470756508, 0.5589353890471914, 0.49320900326902484, 0.41485179365651337, 0.2850172536812061, 0.5150740024049856, 0.7905789411902706, 0.6660097546858721, 0.5916856454756931, 0.25029771644034415, 0.21820707607863943, 0.23625780462752244, 0.6174344585079109, 0.33885175059010386, 0.8097775874289167, 0.5502791542248897, 0.45232673966787307, 0.5168725346003686, 0.4922951659433321, 0.2710495410551712, 0.5620189509382074, 0.19827785442852286, 0.35653263682836045, 0.4940220265254579, 0.3934632807735441, 0.349631294967786, 0.6543252873397565, 0.6043841099981286, 0.6572212454398962, 0.5323595728841377, 0.4667716613599331, 0.5480891857555714, 0.5933716837007499, 0.5769442381274095, 0.7796710482718338, 0.4721284230669528, 0.5632051337005155, 0.25606657060722404, 0.47304849589761655, 0.4991199345133047, 0.785831825438318, 0.5512091114854263, 0.31651464458218903, 0.192246895102814, 0.5737052492708005, 0.14970485751781393, 0.8257882443178004, 0.7450862811651306, 0.2404138117262561, 0.3428275867057816, 0.2186811050870735, 0.43730933466596944, 0.1325711740116582, 0.33994853494016564, 0.5172250338280965, 0.4543852880840521, 0.6017244994332274, 0.7267617626256621, 0.304103470637073, 0.49511795227452726, 0.4577650902534979, 0.4389063253281036, 0.3428275867057816, 0.6911248892501751, 0.5457123873353599, 0.3395528272139201, 0.5662837862370104, 0.38281068028313525, 0.1899488449656659, 0.1899488449656659, 0.39416742153886597, 0.4473524415330049, 0.5724944828663213, 0.12652799787397961, 0.14917046216496987, 0.4192276293132746, 0.1727250451072272, 0.7329347521090118, 0.2979855805324535, 0.5384433083808008, 0.2944152049751758, 0.5661013076544325, 0.39283078357423706, 0.6503174362647687, 0.7632350838020857, 0.29422440231251745, 0.8446099855685041, 0.3812461384129847, 0.1264117171095669, 0.6995051325026098, 0.7680829457938805, 0.1086082602083136, 0.50228427853815, 0.8303888649041977, 0.15145052047802054, 0.5239967242043768, 0.49461569007297057, 0.7323984730128237, 0.6372335578763709, 0.8485373319296128, 0.21018203617182263, 0.3854703692354019, 0.6209619763202376, 0.6996467359659702, 0.3913887983225227, 0.600932061108284, 0.18141675383529432, 0.32841971343371723, 0.17397747102053363, 0.3943097935149382, 0.5998672378660981, 0.6052803835931642, 0.35501406908939237, 0.4362847089434372, 0.6005057903956104, 0.45095984485898877, 0.5601124581139871, 0.6908342266509375, 0.29066967723125237, 0.5437491575180791, 0.5955595524057149, 0.4226516353037165, 0.552222307965348, 0.5038457784615318, 0.6752568781943777, 0.7880730680059006, 0.09430965090665133, 0.4986183600001317, 0.24112389044610405, 0.3635071851353404, 0.7047195247497422, 0.5251048099479148, 0.5632051337005155, 0.4520037684813636, 0.5271857161160298, 0.36566585814722175, 0.8775119234978208, 0.49474741138534273, 0.17187478758168062, 0.1069918390347242, 0.6371627391106971, 0.19018032574493748, 0.34352259564225396, 0.806114950115292, 0.47304849589761655, 0.5014153035286022, 0.6721952796384192, 0.7507248720260316, 0.38512814216859315, 0.8930847268109882, 0.863224561659591, 0.15108072818859253, 0.7399796913917198, 0.18579927887031134, 0.47304849589761655, 0.2033384066370545, 0.43667652058029827, 0.23252054766636898], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [101.0, 194.0, 126.0, 68.0, 94.0, 99.0, 97.0, 124.0, 95.0, 163.0, 32.0, 191.0, 111.0, 119.0, 127.0, 118.0, 38.0, 61.0, 28.0, 162.0, 212.5, 193.0, 74.0, 147.0, 179.0, 99.0, 127.0, 134.0, 93.0, 148.0, 74.0, 136.0, 178.0, 99.0, 121.0, 129.0, 76.0, 150.0, 81.0, 31.0, 124.0, 85.0, 156.0, 238.0, 27.0, 45.0, 135.0, 86.0, 212.0, 195.0, 18.0, 122.0, 137.0, 59.0, 175.0, 145.0, 181.0, 63.0, 165.0, 64.0, 64.0, 150.0, 105.0, 85.0, 100.0, 127.0, 144.0, 155.0, 89.0, 153.0, 189.0, 100.0, 117.0, 114.0, 113.0, 145.0, 174.0, 161.0, 38.0, 25.0, 87.0, 144.0, 60.0, 162.0, 143.0, 26.0, 55.0, 96.0, 172.0, 132.0, 143.0, 108.0, 115.0, 107.0, 117.0, 97.0, 28.0, 294.0, 10.0, 24.0, 126.0, 101.0, 22.0, 121.0, 189.0, 131.0, 105.0, 109.0, 117.0, 107.0, 75.0, 176.0, 112.0, 76.0, 138.0, 35.0, 153.0, 152.0, 136.0, 59.0, 158.0, 121.0, 44.0, 81.0, 60.0, 16.0, 53.0, 94.0, 26.0, 84.0, 82.0, 38.0, 98.0, 253.0, 74.0, 213.0, 12.0, 60.0, 169.0, 118.0, 166.0, 58.0, 35.0, 153.0, 204.0, 99.0, 190.0, 47.0, 134.0, 116.0, 98.0, 93.0, 94.0, 103.0, 116.0, 164.0, 47.0, 28.0, 92.0, 192.0, 65.0, 28.0, 86.0, 199.0, 20.0, 80.0, 148.0, 29.0, 48.0, 123.0, 100.0, 107.0, 41.0, 9.0, 88.0, 213.0, 129.0, 216.0, 111.0, 43.0, 131.0, 124.0, 117.0, 80.0, 141.0, 35.0, 28.0, 72.0, 170.0, 36.0, 124.0, 149.0, 92.0, 118.0, 133.0, 109.0, 76.0, 89.0, 190.0, 133.0, 98.0, 129.0, 245.0, 84.0, 191.0, 130.0, 99.0, 76.0, 134.0, 183.0, 116.0, 125.0, 34.0, 94.0, 35.0, 124.0, 90.0, 143.0, 174.0, 105.0, 125.0, 244.0, 15.0, 209.0, 189.0, 212.0, 118.0, 161.0, 59.0, 172.0, 65.0, 97.0, 84.0, 104.0, 33.0, 170.0, 99.0, 90.0, 140.0, 150.0, 114.0, 118.0, 132.0, 104.0, 54.0, 19.0, 155.0, 193.0, 111.0, 31.0, 150.0, 143.0, 145.0, 107.0, 105.0, 95.0, 126.0, 73.0, 111.0, 153.0, 15.0, 168.0, 111.0, 181.0, 172.0, 139.0, 110.0, 136.0, 189.0, 135.0, 104.0, 117.0, 51.0, 49.0, 113.0, 39.0, 148.0, 109.0, 102.0, 51.0, 26.0, 122.0, 104.0, 120.0, 114.0, 19.0, 132.0, 73.0, 145.0, 135.0, 47.0, 12.0, 132.0, 87.0, 125.0, 139.0, 94.0, 143.0, 139.0, 97.0, 119.0, 109.0, 163.0, 134.0, 178.0, 44.0, 95.0, 143.0, 180.0, 90.0, 129.0, 72.0, 32.0, 123.0, 81.0, 152.0, 214.0, 126.0, 117.0, 173.0, 204.0, 134.0, 156.0, 134.0, 65.0, 151.0, 114.0, 44.0, 164.0, 125.0, 28.0, 156.0, 28.0, 201.0, 106.0, 116.0, 182.0, 225.0, 142.0, 39.0, 142.0, 98.0, 188.0, 55.0, 27.0, 113.0, 87.0, 140.0, 33.0, 85.0, 158.0, 95.0, 169.0, 103.0, 191.0, 151.0, 28.0, 113.0, 163.0, 26.0, 95.0, 135.0, 55.0, 171.0, 21.0, 206.0, 113.0, 168.0, 173.0, 161.0, 97.0, 227.0, 107.0, 81.0, 17.0, 17.0, 96.0, 118.0, 38.0, 111.0, 118.0, 125.0, 143.0, 189.0, 98.0, 166.0, 135.0, 68.0, 12.0, 131.0, 172.0, 174.0, 128.0, 194.0, 108.0, 35.0, 155.0, 26.0, 87.0, 93.0, 187.0, 150.0, 158.0, 114.0, 120.0, 169.0, 130.0, 109.0, 149.0, 80.0, 23.0, 125.0, 81.0, 55.0, 185.0, 53.0, 245.0, 17.0, 122.0, 130.0, 75.0, 90.0, 34.0, 48.0, 15.0, 118.0, 151.0, 150.0, 85.0, 140.0, 85.0, 155.0, 84.0, 109.0, 17.0, 38.0, 172.0, 178.0, 93.0, 171.0, 229.0, 27.0, 146.0, 104.0, 89.0, 15.0, 60.0, 112.0, 47.0, 48.0, 136.0, 89.0, 141.0, 9.0, 154.0, 159.0, 113.0, 88.0, 158.0, 29.0, 179.0, 92.0, 181.0, 173.0, 160.0, 107.0, 151.0, 79.0, 132.0, 37.0, 170.0, 163.0, 50.0, 135.0, 98.0, 77.0, 172.0, 102.0, 135.0, 123.0, 143.0, 134.0, 85.0, 21.0, 182.0, 132.0, 28.0, 101.0, 25.0, 44.0, 100.0, 129.5, 43.0, 47.0, 40.0, 14.0, 125.0, 46.0, 11.0, 49.0, 118.0, 139.0, 229.0, 114.0, 53.0, 113.0, 200.0, 133.0, 88.0, 128.0, 70.0, 80.0, 113.0, 73.0, 152.0, 104.0, 45.0, 19.0, 206.0, 41.0, 173.0, 14.0, 97.0, 180.0, 147.0, 149.0, 135.0, 116.0, 150.0, 164.5, 21.0, 128.0, 178.0, 101.0, 16.0, 180.0, 14.0, 132.0, 10.0, 189.0, 156.0, 166.0, 10.0, 153.0, 49.0, 99.0, 68.0, 16.0, 80.0, 229.0, 225.0, 104.0, 122.0, 10.0, 57.0, 150.0, 69.0, 76.0, 102.0, 129.0, 95.0, 116.0, 168.0, 19.0, 173.0, 189.0, 142.0, 177.0, 71.0, 140.0, 110.0, 184.0, 152.0, 164.0, 105.0, 117.0, 124.0, 91.0, 181.0, 85.0, 181.0, 168.0, 128.0, 89.0, 167.0, 155.0, 20.0, 212.0, 78.0, 25.0, 35.0, 130.0, 129.0, 122.0, 7.0, 69.0, 120.0, 140.0, 83.0, 136.0, 157.0, 169.0, 221.0, 190.0, 113.0, 91.0, 13.0, 104.0, 136.0, 167.0, 99.0, 103.0, 159.0, 108.0, 91.0, 136.0, 103.0, 213.0, 189.0, 169.0, 107.0, 91.0, 112.0, 82.0, 114.0, 72.0, 84.0, 159.0, 17.0, 128.0, 16.0, 43.0, 87.0, 136.0, 140.0, 144.0, 74.0, 86.0, 145.0, 153.0, 127.0, 228.0, 112.0, 157.0, 140.0, 192.0, 114.0, 111.0], \"xaxis\": \"x2\", \"y\": [0.6660328535674787, 0.4955559099445003, 0.11251030999551548, 0.5313240922219649, 0.7616845263358343, 0.42881839881496897, 0.22146723198036844, 0.2709448900825402, 0.04188686298684474, 0.3198999677935893, 0.586632325439729, 0.3332859260788763, 0.0891770245136605, 0.07249138429342028, 0.0813041402249215, 0.2808128557304226, 0.18155424903412543, 0.14020593233116785, 0.20529540916933675, 0.1755850319354616, 0.5722846846512241, 0.4684623303117058, 0.2863708053899042, 0.4489302200945696, 0.3606737334686688, 0.09834172337505831, 0.1439119889738254, 0.10526388551166177, 0.08976738859769384, 0.15927641460572795, 0.07353544332944184, 0.4894096639868448, 0.24735122968283396, 0.41440459167745447, 0.10107859516115147, 0.4809249647595707, 0.043928674649753696, 0.27268427565697984, 0.07203278686513981, 0.35989685204578803, 0.08410225657903847, 0.09640449279894714, 0.2859044620344169, 0.766491644508495, 0.27194216744256416, 0.11891721880979944, 0.6033870782914414, 0.8445823904457724, 0.4148378249676725, 0.09538880480821377, 0.5822786697287807, 0.2006236885231063, 0.30215903380660414, 0.3526626332448971, 0.22921561702294402, 0.3499358724503807, 0.451050436906263, 0.01968005574460141, 0.3849224947932618, 0.608666907839271, 0.30333177217190177, 0.05732515971384944, 0.08299070223644744, 0.155374347961305, 0.4378217303747408, 0.10641916767178827, 0.3207785913922725, 0.3280003244598044, 0.4747408725557203, 0.27229542413121455, 0.5314247042003052, 0.13834506443323813, 0.652508483608137, 0.1775869136191267, 0.4659209431511335, 0.3288332341233703, 0.47224603889779837, 0.2773569186284155, 0.18590272545123854, 0.6719763059805124, 0.04569198037744582, 0.22473444069733528, 0.0776074933333939, 0.1411968215808168, 0.3654892991508686, 0.06069899520469324, 0.21029328672965164, 0.13919371635861133, 0.16321149678759816, 0.6144435769482088, 0.1388055550317996, 0.0827658987104557, 0.0793107693477757, 0.04994940743047871, 0.46220165202879504, 0.08265172102971341, 0.5554564865761329, 0.10902951494304747, 0.26480674198345266, 0.31816712550642645, 0.20184400370343658, 0.23734670470511587, 0.19264674509953905, 0.03558879485690103, 0.5314247042003052, 0.3013473679880785, 0.8043030592862955, 0.07665185966197174, 0.17816243980233548, 0.14637302723887635, 0.43623195291339645, 0.5773286546676725, 0.06996409198491005, 0.0635191394270278, 0.11839391684253864, 0.03368970372860669, 0.16544292122901683, 0.5002106013252752, 0.20783967621931676, 0.4413184352618238, 0.1377753535318076, 0.017128038770129694, 0.09070427960766203, 0.05237321155563324, 0.46044782253877736, 0.09863911308639095, 0.6058955548956951, 0.07377868677997379, 0.33726125667837825, 0.03705661785513226, 0.03856885477325478, 0.01970319875133708, 0.06623921298607705, 0.655672818127978, 0.36403826442427, 0.375635621083512, 0.25822104517587474, 0.26990817233175546, 0.30316845466795117, 0.21597661143113533, 0.10411587283779344, 0.4582573305440075, 0.28974208538397184, 0.3995654588450376, 0.48407929824265805, 0.2412117545349558, 0.49704114689177337, 0.3112403223054312, 0.13571503940671914, 0.35304273602320047, 0.18963603484652192, 0.06023564559469896, 0.305863422303413, 0.34062746964654456, 0.03532029949184434, 0.20200996882548472, 0.207876095289533, 0.11304202998506685, 0.26487496820305634, 0.46674395287949066, 0.05931266843465788, 0.6063731497207538, 0.053339747820140615, 0.16056749669580483, 0.3366557342021428, 0.18735912995827353, 0.2667542380283816, 0.9197592959547904, 0.13322255285490225, 0.3533185668595151, 0.08763312389948397, 0.343329095265401, 0.1298321532292276, 0.11240742021865013, 0.03412749239977686, 0.23316671381479437, 0.13955591125269062, 0.065615492475942, 0.03940539431326806, 0.04874684240881699, 0.42507109047861347, 0.3720756994829524, 0.20627971812824875, 0.23346983492740092, 0.299872058778726, 0.14688925552714138, 0.20529540916933675, 0.11294333341234963, 0.4523771212155355, 0.15895981664313275, 0.12633289347617382, 0.34801013400503944, 0.063056887931354, 0.09222807982804315, 0.19281104432210028, 0.11843845992675284, 0.1064686731970873, 0.12171087020281346, 0.49704114689177337, 0.4202798549667376, 0.058322454167927695, 0.40418598015134155, 0.7514842711311043, 0.067978575311199, 0.1468497162592186, 0.3655805321171328, 0.36741292271676196, 0.08785516413846428, 0.4223454464089015, 0.09472348251934337, 0.14196098925812006, 0.10013555988874479, 0.32154631204965056, 0.05416575683382341, 0.786126361492164, 0.04696516601190348, 0.26926088858349784, 0.28123172687107445, 0.3094364396730669, 0.04307250962973752, 0.07126159086244754, 0.6143015945908075, 0.495586079448059, 0.46102608015166635, 0.40789311683600216, 0.8929715185951024, 0.1227006502272181, 0.3638055988942468, 0.10470002869891348, 0.29304213908849364, 0.8936703981375603, 0.3534407380188983, 0.0883666731866185, 0.07895584641700149, 0.05166417783587085, 0.4199775765299997, 0.10304865631077798, 0.1041340676595982, 0.11031385635331636, 0.22368578646300386, 0.22137255536682798, 0.0725394352715707, 0.08320759746190642, 0.3577905591727162, 0.36362749207413336, 0.13058702032609693, 0.4306817897420764, 0.4684623303117058, 0.3185463047756948, 0.6991046594229053, 0.33105510290791684, 0.35804773811787727, 0.3499358724503807, 0.17780319308126435, 0.07142366539796174, 0.1504846162366139, 0.28643330026545544, 0.11492102279820171, 0.08716328114311156, 0.12905574960179156, 0.5528531989583015, 0.2852168598030531, 0.3185463047756948, 0.41766807389819915, 0.22818770291371737, 0.10749415552266317, 0.07500089027222667, 0.2150933620687273, 0.4879833184669665, 0.21367083697314282, 0.18281788227943807, 0.11217648511765432, 0.01860460444149037, 0.4990100838788346, 0.3212979959143686, 0.7252893191599291, 0.30018855716775616, 0.2808216200321265, 0.24332849241566534, 0.22583693263898685, 0.307128141019565, 0.12930297020615966, 0.07734813107736227, 0.38078614076753503, 0.037937415915298756, 0.18389331462546077, 0.2015421194948802, 0.10121634311933059, 0.7209948827487924, 0.252131738577411, 0.19866278493931944, 0.5569604587758099, 0.19172534874952063, 0.07516041810443141, 0.18673310211333727, 0.20736440356309183, 0.27568985010185776, 0.1748501221961516, 0.134246332983591, 0.12151400729184814, 0.03860330573341564, 0.16198960071610413, 0.062309112953929935, 0.14943540958877521, 0.46827469198568006, 0.12435295831370408, 0.11768791031746062, 0.10794707492381372, 0.04347111427796346, 0.07423675680829, 0.1602542791395647, 0.19911642350143877, 0.2379444352717226, 0.36664322039668684, 0.10130143557253446, 0.17108028607870185, 0.6143194513817134, 0.5641235853966853, 0.29864316680665437, 0.44752301946823647, 0.13459844499503626, 0.037461465199631894, 0.5002964248569376, 0.4059565893810353, 0.7035957096210382, 0.0629603198376949, 0.25036415064992923, 0.14780834332950044, 0.24800647860056513, 0.10438723399855232, 0.24366911510822187, 0.4574644219698093, 0.8347014835967527, 0.42226245660703365, 0.4073158502222598, 0.47525484003715535, 0.37845934883934684, 0.35325777167774697, 0.4763432908647238, 0.18941100564626978, 0.23853527246002126, 0.27277355193056574, 0.5556171757583562, 0.19481513110659687, 0.7460207524242459, 0.12627308236197843, 0.2115813466591615, 0.4773837842994688, 0.22238536240250728, 0.1978655273089749, 0.32057959349203036, 0.1601330373243487, 0.6256605001243821, 0.34062746964654456, 0.5899158924001677, 0.1273375405407705, 0.6866376712310945, 0.3812864953771038, 0.07918534602430627, 0.10510921928053807, 0.052405178286905496, 0.29010285216427345, 0.5802968836962079, 0.4475494904811408, 0.33107045093633036, 0.6046547135519548, 0.33132995382553565, 0.3391582818855403, 0.37109937806185267, 0.18876467901964422, 0.03244681540368277, 0.6531311156123596, 0.18281848038190407, 0.06840545126676123, 0.23876166598551407, 0.5602062902528231, 0.05478334190217349, 0.18965009362393503, 0.502081053312289, 0.0945975060483667, 0.24937367783354814, 0.14040338921272166, 0.09582424632391484, 0.4879833184669665, 0.07536550594022651, 0.37763546052463404, 0.20240400638142053, 0.06234715971662652, 0.1729504208160284, 0.2536573606029918, 0.1491704939138675, 0.47224603889779837, 0.20734784509414073, 0.1656619584420439, 0.20263687678412212, 0.4576701693643329, 0.3746187330143109, 0.06578487521364562, 0.09359041291034786, 0.15714155813810793, 0.43198081216185935, 0.17693664965610134, 0.14200602748771296, 0.16878839641400256, 0.11131318694256087, 0.43040972974554736, 0.12494266711040569, 0.5286591337585229, 0.3917329141436472, 0.14284790216410748, 0.29931895876037384, 0.3998656181534954, 0.13198036366642862, 0.2166851793268345, 0.164669749255824, 0.3116999397838065, 0.5702002297218003, 0.2867818412254799, 0.05809024612643199, 0.0701620515557333, 0.10493669218879953, 0.03474255021640338, 0.14069518845012563, 0.7697788668098057, 0.44513161239284327, 0.12104291767226882, 0.2823656727566666, 0.28640273091276736, 0.09904459769556595, 0.10889384421684001, 0.1978655273089749, 0.6326587477498924, 0.0766186874204361, 0.07300117689776386, 0.3978521493117628, 0.7293533971641823, 0.24040337450518035, 0.46827469198568006, 0.03737110954461231, 0.48112847828662497, 0.5755848065786346, 0.12151472907643468, 0.332302417201758, 0.3208349144509022, 0.13406270144296106, 0.47820199098358873, 0.024219732643774528, 0.7923035912680444, 0.3099424932714111, 0.8494816644677875, 0.15230116664989468, 0.8795672599938588, 0.34536882843285344, 0.587897812361327, 0.3660303223369904, 0.3074082248441362, 0.1925553058603695, 0.1582957933341015, 0.5297945963993664, 0.1892543681582496, 0.06574637766643598, 0.03286461121245521, 0.6223124217546917, 0.48666930315350876, 0.17200815643270417, 0.27042696199957883, 0.16010429726024444, 0.25291734909108765, 0.22778758435893687, 0.6055190518965303, 0.41989528411161425, 0.2865861541738164, 0.17344095530188786, 0.4163761941495938, 0.24610426408478792, 0.029106329843254564, 0.5849270471051293, 0.09607886499379148, 0.4890296174547498, 0.11193395874659995, 0.3667485749721523, 0.29672938182784603, 0.13696827462710404, 0.03986507081677082, 0.41542023534722683, 0.1642424989032959, 0.041559354155004224, 0.1266666793707928, 0.5259198205822933, 0.42123490919744344, 0.6147437654518444, 0.42849246998341506, 0.04874684240881699, 0.16870816563337898, 0.35179373534084035, 0.4552463954734379, 0.1543174595222413, 0.4641274821418986, 0.1106599594415556, 0.40441066041397966, 0.05916303638108533, 0.24194101851814365, 0.5755848065786346, 0.23631147082452741, 0.04679471849088612, 0.33132995382553565, 0.6031606095022326, 0.16900214819844117, 0.9322526967181247, 0.1065938389205352, 0.0540586741766943, 0.14920224829950646, 0.03054451782098533, 0.13595064656866984, 0.15908339514281045, 0.09402391562754642, 0.27219479721363327, 0.10477531970828624, 0.6046547135519548, 0.04412971358840656, 0.0821245873848182, 0.24953715645213048, 0.24311299470472425, 0.679537413518331, 0.02875041056121841, 0.2874129658970298, 0.17131102264191878, 0.07042427222914205, 0.1577516063520068, 0.39934634677258996, 0.42249259173992826, 0.24940231538328683, 0.46827469198568006, 0.040988937643475554, 0.034828704291737345, 0.26663563965858417, 0.22421743312747255, 0.10716094829621758, 0.7421831263598226, 0.4644511163280224, 0.1591307416719686, 0.21502194578256428, 0.12883185373794437, 0.15520095945599266, 0.04280666734842442, 0.06928764484923078, 0.3578757504587543, 0.0760792945579073, 0.06637805380770656, 0.5755848065786346, 0.4326356954473739, 0.16985579355455038, 0.47152805642545803, 0.11644579282256762, 0.11790522998710073, 0.5438286352264949, 0.41561805514360906, 0.050606352251634235, 0.21836830194439782, 0.22298545275517268, 0.1504846162366139, 0.16819644397314482, 0.47796113776613436, 0.14100197907825862, 0.7878397890034206, 0.12176963827920351, 0.09814942480303201, 0.23162396036129984, 0.04400104962869911, 0.061588508633294015, 0.2774601068082493, 0.40816383821078206, 0.14036214651023216, 0.11837607594274324, 0.0703155477214753, 0.17002415827487982, 0.24611532014486182, 0.06874641727313702, 0.30975746960573625, 0.07004288447243323, 0.6453829176356538, 0.3880412370469972, 0.10205495289732236, 0.12171087020281346, 0.38550692709735157, 0.4398162761337091, 0.5769741243450848, 0.48842976274850136, 0.3866799681687785, 0.17129518728202664, 0.5711206597512044, 0.4456070955069118, 0.4585850027539752, 0.25462747480751524, 0.34771016550763867, 0.35548618548401445, 0.07878090041588082, 0.3008706318705062, 0.08117751180329491, 0.055511805197920094, 0.1600174453683395, 0.35597309965685686, 0.5473978930443646, 0.3321771897262046, 0.14643302530661162, 0.7653011157176768, 0.24188431843396252, 0.16704799028757666, 0.41136103198090634, 0.5749869949413896, 0.709238838470871, 0.09340318303147321, 0.602429869503323, 0.04154705947390969, 0.7519582179986716, 0.15993940416551844, 0.04372375151311325, 0.4076899811241429, 0.4644511163280224, 0.3133137248525114, 0.24628490675063597, 0.06972977174174444, 0.15949948541388637, 0.2241543425141257, 0.1729876202034616, 0.07290025122558275, 0.1220000714032804, 0.36493953208423235, 0.09420126302076737, 0.026726938234992392, 0.7199273032686843, 0.4606762448039463, 0.04906818437448113, 0.19446415942665518, 0.14876853598344464, 0.3247816953453747, 0.023320858692869595, 0.7310618090422621, 0.48944479260603346, 0.20357574295749958, 0.0840537250624015, 0.5368744051465595, 0.21101467800102214, 0.46682279298460017, 0.3749869638443927, 0.46592999202179275, 0.10188412989688433, 0.15751976448865512], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"total.sulfur.dioxide\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"total.sulfur.dioxide\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}}, {\"id\": \"All_density\", \"params\": {\"data\": [{\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Reference<br>density=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [0.992, 0.9964, 0.99097, 0.99511, 0.9934, 0.99558, 0.98894, 0.9909, 0.9902, 0.98994, 0.9926, 0.99458, 0.9951, 1.0, 0.9955, 0.9954, 0.99, 1.0032, 0.99002, 0.99364, 0.99566, 0.99175, 0.9928, 0.99085, 0.9938, 0.9938, 0.98742, 0.9955, 0.9942, 0.9892, 0.9911, 0.99728, 0.9914, 0.99035, 0.99076, 0.99855, 0.9969, 0.98892, 0.99015, 0.99089, 0.98954, 0.9945, 0.9971, 0.99245, 0.99676, 0.9972, 0.9978, 0.992, 0.9962, 0.9906, 0.9978, 0.9991, 0.98998, 0.99304, 0.992, 0.9979, 0.99201, 0.98941, 0.992, 0.992, 0.99758, 0.99016, 0.991, 0.993, 1.001, 0.9984, 0.99064, 0.9941, 0.9954, 0.99146, 0.9918, 0.98934, 0.99278, 0.99316, 0.9965, 0.99556, 0.9973, 0.98928, 0.99638, 0.9916, 0.995, 0.99012, 0.99109, 0.997, 0.9935, 0.99096, 0.9918, 0.9982, 0.9896, 0.9984, 0.9919, 0.9918, 0.9942, 0.9912, 0.99471, 0.99241, 0.99567, 0.98959, 0.98984, 0.9946, 0.9934, 0.9986, 0.99638, 0.9951, 0.98914, 0.9938, 0.9925, 0.9946, 0.99058, 0.99472, 0.99002, 1.0103, 0.99208, 0.99666, 0.99202, 0.9889, 0.99034, 0.98974, 0.999, 0.99534, 0.99808, 0.9924, 0.9974, 0.998, 0.99678, 0.99538, 0.9958, 0.9974, 0.9931, 0.9983, 0.9934, 0.98746, 0.9998, 0.99624, 0.9966, 0.98976, 0.99834, 0.99627, 0.98968, 0.998, 0.99007, 0.9945, 0.99452, 0.9935, 0.9984, 0.9938, 0.99279, 0.9905, 0.9948, 0.9974, 0.99792, 0.998, 0.99256, 0.99775, 0.99835, 0.99189, 0.99033, 0.9908, 0.9931, 0.98972, 0.9949, 0.99616, 0.99014, 0.9974, 0.9938, 0.9962, 0.99642, 0.9942, 0.9977, 0.9894, 0.99566, 0.9964, 0.993, 0.99507, 0.9964, 0.9948, 0.9964, 0.9939, 0.99174, 0.99736, 0.99462, 0.99, 0.99458, 0.9895, 0.9949, 0.991, 0.98758, 0.9973, 0.9912, 0.9932, 0.99183, 0.99378, 0.9918, 0.99269, 0.99744, 0.9901, 0.99353, 0.99178, 0.99041, 0.99184, 0.9948, 0.9916, 0.9926, 0.99504, 0.99394, 0.99408, 0.9974, 0.9944, 0.99807, 0.9982, 0.9928, 0.9916, 0.99111, 0.99215, 0.99089, 0.9934, 0.99112, 0.9938, 0.99276, 0.98954, 0.9926, 0.9997, 0.9923, 0.9907, 0.99814, 0.9938, 0.9986, 0.99945, 0.993, 0.99471, 0.99235, 0.9928, 0.99379, 0.99522, 0.99224, 0.99324, 0.9922, 0.9954, 0.9908, 0.99397, 0.99558, 0.9979, 0.9931, 0.99955, 0.99588, 0.9938, 0.9937, 0.99776, 0.9953, 0.98994, 1.0003, 0.9986, 0.9982, 0.99672, 0.99674, 0.99278, 0.99022, 0.99396, 0.9912, 0.9948, 0.9973, 0.9911, 0.99153, 0.991, 0.99119, 0.9911, 0.991, 0.99652, 0.99489, 0.98942, 0.99144, 0.9949, 0.99254, 0.99252, 0.98919, 0.99784, 0.99469, 0.99523, 0.99378, 0.99212, 0.9941, 0.9911, 0.99008, 0.98963, 0.99116, 0.99545, 0.99946, 0.997, 0.9971, 0.99044, 0.9924, 0.9916, 0.99408, 0.99174, 0.9937, 0.9955, 0.9972, 0.9921, 0.99199, 0.994, 0.99387, 0.99462, 0.992, 0.9928, 0.994, 0.99534, 0.9945, 0.99057, 0.9999, 0.99274, 0.99685, 0.9983, 0.99362, 0.9923, 0.9925, 1.0002, 0.9942, 0.98912, 0.99094, 0.9892, 0.98914, 0.9908, 0.9918, 0.9927, 0.9917, 0.9972, 0.9954, 0.99546, 0.9974, 0.99198, 0.99308, 0.99066, 0.9986, 0.99464, 0.9917, 0.99954, 0.99202, 0.99414, 0.9982, 0.9952, 0.9962, 0.9934, 0.9891, 0.9941, 0.99573, 0.9936, 0.9967, 0.99685, 0.98918, 0.9986, 0.99518, 0.9932, 0.99469, 0.99109, 0.99705, 0.9917, 0.9964, 0.98987, 0.9996, 0.9904, 0.99886, 0.9924, 0.997, 0.99494, 0.99745, 0.99606, 0.98999, 0.9909, 0.99615, 0.9975, 0.9926, 0.9918, 0.9929, 0.9948, 0.99036, 0.99228, 0.98984, 0.99822, 0.99299, 0.9987, 1.0015, 0.99563, 0.9984, 0.9984, 0.9957, 0.99194, 1.00369, 0.993, 0.9952, 0.99035, 0.9916, 0.99896, 0.9945, 0.9927, 0.9954, 0.99549, 0.9922, 1.00295, 0.98956, 0.9973, 0.9961, 0.997, 0.99352, 0.9994, 0.99238, 0.99524, 0.9927, 0.9917, 0.9914, 0.9957, 0.99304, 0.99331, 0.99108, 0.992, 0.9923, 0.99064, 0.9921, 0.999, 0.99392, 0.9944, 0.99546, 0.99326, 0.995, 0.99792, 0.99534, 0.9908, 0.99158, 0.99136, 0.99122, 0.9928, 0.9931, 0.99063, 0.99024, 0.9898, 0.993, 0.98816, 0.9965, 0.99586, 0.9925, 0.9986, 0.9912, 0.9916, 0.99132, 0.996, 0.99358, 0.9938, 0.9977, 0.9934, 0.9978, 0.99074, 0.99048, 0.9898, 0.98994, 0.99342, 0.9966, 1.0004, 0.9948, 0.99514, 0.99596, 0.99602, 0.9986, 0.9971, 1.0003, 1.00051, 0.99084, 0.99566, 0.9927, 0.9912, 0.99581, 0.995, 0.9972, 0.99656, 0.9965, 0.99975, 0.99052, 0.989, 0.9916, 0.99455, 0.99393, 0.9924, 0.9946, 1.00038, 0.99906, 0.9958, 0.99475, 0.9935, 0.9906, 0.99835, 0.98883, 0.9932, 0.99863, 0.99686, 0.99322, 0.99678, 0.99331, 0.9925, 0.9978, 0.99392, 0.99105, 0.99384, 0.99596, 0.99216, 0.99321, 0.9979, 0.99124, 0.99472, 0.98946, 0.9945, 0.98926, 0.9925, 0.9898, 0.99066, 0.99587, 0.9984, 0.98942, 0.98876, 0.99045, 0.9975, 0.9913, 0.9906, 0.99416, 0.98794, 0.9925, 0.9911, 0.99675, 0.98931, 0.9983, 0.992, 0.99658, 0.99136, 0.9991, 0.9964, 0.992, 0.99658, 0.9923, 0.9965, 0.9952, 0.99461, 0.99287, 0.9918, 0.9944, 0.98944, 0.9976, 0.9953, 0.99074, 0.98794, 0.99643, 0.9954, 0.99114, 0.99374, 0.99218, 0.9948, 0.993, 0.9966, 0.99152, 0.99498, 0.9925, 0.99615, 0.99715, 0.99056, 0.9937, 0.9965, 0.9906, 0.9982, 0.99157, 0.9919, 0.99157, 0.9953, 0.9898, 0.99543, 0.9899, 0.9937, 0.99203, 0.99036, 0.99008, 0.9892, 0.99971, 0.992, 0.99785, 0.9927, 0.99044, 0.9912, 0.995, 0.995, 0.9942, 0.99522, 0.98856, 0.9939, 0.9927, 0.99095, 0.9972, 0.98946, 0.99542, 0.98944, 0.9985, 0.99411, 0.99266, 0.9962, 0.99268, 0.9971, 0.9917, 0.9925, 0.9968, 0.99142, 0.9964, 0.9979, 0.99214, 0.99737, 0.9917, 0.99807, 0.99334, 0.99798, 0.99558, 0.9972, 0.98946, 0.99543, 0.9934, 0.9938, 0.9947, 0.9969, 0.99752, 0.99082, 0.9983, 0.9962, 0.99692, 0.9928, 0.998, 0.9909, 0.99494, 0.98987, 0.99578, 0.997, 0.9986, 0.99544, 0.99321, 0.99072, 0.9985, 0.99494, 0.99118, 0.9968, 0.99112, 1.0004, 0.9907, 0.9921, 0.9934], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Current<br>density=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [0.9934, 0.9979, 0.99234, 0.9932, 0.99686, 0.9927, 0.9926, 0.99362, 0.989435, 0.99239, 1.0, 0.9908, 0.98918, 0.99168, 0.98904, 0.9932, 0.99438, 0.99189, 0.999, 0.9903, 0.999, 0.9986, 0.992, 0.9935, 0.99541, 0.9893, 0.99326, 0.99146, 0.99144, 0.99165, 0.98889, 0.9957, 0.9992, 0.99449, 0.98871, 0.9936, 0.9914, 0.99488, 0.98988, 0.995, 0.99123, 0.99014, 0.9958, 0.9986, 0.9974, 0.99417, 0.9998, 0.9968, 0.9969, 0.9908, 0.9972, 0.9917, 0.9946, 0.9922, 0.99376, 1.0006, 0.998, 0.9916, 0.99795, 0.99652, 0.99724, 0.99727, 0.99206, 0.99406, 0.99534, 0.98964, 0.9966, 0.9951, 0.99236, 0.9945, 0.9986, 0.99064, 0.99815, 0.99313, 0.9983, 0.99668, 0.99922, 0.99207, 0.9949, 0.9975, 0.98972, 0.9923, 0.99492, 0.9914, 0.9965, 0.99536, 0.99652, 0.99456, 0.9932, 0.994, 0.99526, 0.9934, 0.9904, 0.98836, 0.9931, 0.99148, 0.99704, 0.99018, 0.9968, 0.99376, 0.993, 0.99596, 0.99438, 0.98882, 0.9986, 0.99566, 0.996, 0.99262, 0.99132, 0.99159, 0.99551, 1.0103, 0.99144, 0.9893, 0.99171, 0.9934, 0.99238, 0.9934, 0.99552, 0.9989, 0.99322, 0.98976, 0.99384, 0.99, 0.99638, 0.99649, 0.9981, 0.991, 0.9984, 0.98961, 0.98961, 0.9933, 0.98918, 1.00014, 0.9931, 1.0006, 0.99667, 0.9979, 0.99252, 0.9917, 0.9943, 0.995, 0.9994, 0.99576, 0.99745, 0.9916, 0.9993, 0.9991, 0.993, 0.9927, 0.99564, 0.99094, 0.997, 0.9987, 0.98954, 0.9912, 0.99676, 0.9947, 0.99232, 0.9979, 0.9898, 0.9983, 0.98934, 0.99394, 0.9992, 0.9913, 0.99458, 0.9959, 0.99554, 0.9932, 0.99099, 0.9923, 0.99665, 0.99738, 0.9907, 0.9927, 0.991, 0.99154, 0.98872, 0.99444, 0.9943, 0.99646, 0.9934, 1.0002, 0.9956, 0.99314, 0.999, 0.9908, 1.001, 0.9949, 0.99278, 0.9984, 0.99076, 0.99064, 0.9931, 0.9918, 0.99173, 0.9893, 0.9993, 0.99612, 0.9914, 0.99312, 0.9937, 0.9929, 0.99294, 0.9928, 0.9947, 0.999, 0.993, 0.99742, 0.99224, 0.98986, 0.9948, 0.98998, 1.0006, 0.99162, 0.99232, 0.9914, 0.9922, 0.99, 0.9914, 0.9956, 0.9975, 0.99544, 0.9994, 0.9971, 0.99134, 0.9941, 0.99617, 0.99194, 0.99842, 0.9951, 0.994, 0.9922, 0.9956, 1.0004, 0.99031, 0.99164, 0.99216, 0.9917, 0.9938, 0.99176, 0.99313, 0.9959, 0.9956, 0.996, 0.99807, 0.9986, 0.9931, 0.9984, 0.9948, 0.9983, 1.0006, 0.9912, 0.99581, 0.99676, 0.9933, 0.99095, 0.98924, 0.99067, 0.99498, 0.9946, 0.9931, 0.99435, 0.9938, 0.99055, 0.9912, 0.99516, 0.9958, 0.9968, 0.99454, 0.99182, 0.98878, 0.9988, 0.9962, 0.9977, 0.9932, 0.99498, 0.99154, 0.99512, 0.9979, 0.99088, 0.99161, 0.99494, 0.99158, 0.9963, 0.99188, 0.99035, 0.9945, 0.9924, 1.0003, 0.9994, 0.99655, 0.98974, 0.99152, 0.99296, 0.99782, 0.99173, 0.9975, 0.9924, 0.98944, 0.9932, 0.99184, 0.9912, 0.9976, 0.99534, 0.98986, 0.99287, 0.991, 0.99047, 0.99691, 0.99165, 0.99646, 0.99708, 0.9902, 0.99178, 0.9963, 0.99232, 0.9938, 0.9934, 0.99176, 0.99408, 0.99572, 0.9998, 1.0026, 0.99, 0.992, 0.99734, 0.9975, 0.99204, 0.99492, 0.99666, 0.9994, 0.997, 0.99288, 0.994, 0.9996, 0.99685, 0.9958, 0.99346, 0.99215, 0.99521, 0.9974, 0.9956, 0.9967, 0.99406, 0.9936, 0.9926, 0.9982, 0.99086, 0.9955, 0.99158, 0.99975, 0.9987, 0.9966, 0.9926, 0.99815, 0.99366, 0.99706, 0.99358, 0.99071, 0.99582, 0.9988, 0.9986, 0.99551, 0.9956, 0.99862, 0.9957, 0.99882, 0.99324, 0.98823, 0.9952, 0.992, 0.99043, 1.0002, 0.99655, 0.98942, 0.99356, 0.99553, 0.99315, 0.9954, 0.9928, 0.99226, 0.9958, 0.99, 0.9948, 0.992, 0.9898, 0.99354, 0.99186, 0.99404, 0.99922, 0.992, 0.9988, 0.9939, 0.99557, 0.9999, 0.99531, 0.9903, 0.992, 0.9938, 0.991, 0.9907, 0.99784, 0.98952, 0.998, 0.9952, 0.99148, 0.99792, 0.99058, 0.9974, 0.99282, 0.9923, 0.9927, 0.99519, 0.9967, 0.9951, 0.99683, 0.99165, 0.99176, 0.99006, 0.99002, 0.99736, 0.99612, 0.9987, 0.9908, 0.9946, 0.99445, 0.98965, 0.9904, 0.99086, 0.9934, 0.99046, 0.9902, 0.99774, 0.9984, 0.996, 0.9976, 0.991, 0.99808, 0.9986, 0.9934, 0.9963, 0.9954, 0.98956, 0.9988, 0.99084, 0.99314, 0.99522, 0.99739, 0.99704, 0.9959, 0.9941, 0.99458, 0.99971, 0.9919, 0.99544, 0.99094, 0.9992, 0.99416, 0.99189, 0.98936, 0.99352, 0.9984, 0.99276, 0.9939, 0.9926, 0.993, 0.9928, 0.9966, 0.9944, 0.9952, 0.99467, 0.9984, 0.9943, 0.99381, 0.9946, 0.99121, 0.99174, 0.99052, 0.9944, 0.9927, 0.9962, 0.99552, 0.9958, 0.994, 0.99184, 0.98916, 0.99581, 0.99522, 0.9957, 0.9998, 0.99444, 0.99599, 0.9944, 0.9982, 0.9925, 0.9979, 0.99331, 0.9997, 0.99018, 0.99517, 0.9986, 0.9908, 0.98815, 0.99862, 0.99566, 0.9906, 0.9984, 0.9916, 0.99418, 0.992, 0.98779, 0.9915, 0.9934, 0.99, 0.99824, 0.9986, 0.9956, 0.99439, 0.9887, 0.9968, 0.9906, 0.9965, 0.9901, 0.99772, 0.9948, 0.991, 0.9947, 0.9984, 0.99572, 0.99388, 0.9976, 0.989315, 0.99358, 0.9926, 0.9978, 0.996, 0.99636, 0.99784, 0.99316, 0.99339, 0.99724, 0.9921, 0.98845, 0.99437, 0.99708, 0.99614, 0.98992, 0.9986, 0.9997, 0.99362, 0.9928, 0.99552, 0.99115, 0.99508, 0.99556, 0.98964, 0.9903, 0.99221, 0.99676, 0.9954, 0.99825, 0.99546, 0.9948, 0.991, 0.9945, 0.99479, 0.98912, 0.99042, 0.9963, 0.99787, 0.9916, 0.99742, 0.9893, 0.99158, 0.9954, 0.99172, 0.9925, 0.9906, 0.99459, 0.9976, 0.99456, 0.9893, 0.9931, 0.9927, 0.9963, 0.997, 0.9931, 0.99514, 0.9968, 0.99354, 0.9948, 0.99261, 0.99454, 0.9994, 0.99198, 0.998, 0.9928, 0.99068, 0.99384, 0.99275, 0.9952, 0.9932, 0.99165, 0.99616, 0.99659, 0.9924, 0.99316, 0.992, 0.9928, 0.99532, 0.9936, 0.98939, 0.99616, 0.99367, 0.98892, 0.99596, 0.99784, 0.99267, 0.99347, 0.9919, 0.99089, 0.99425, 0.99226, 0.989465, 0.9902, 0.995, 0.99565, 0.99192, 0.9964, 1.0014, 0.9898, 0.9922, 0.99166, 0.99576, 0.9884, 0.99764, 0.9951, 0.9953, 0.98964, 1.0001, 0.99837, 0.9934, 0.998, 0.99586, 0.99014, 0.99455], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Reference<br>density=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [0.9976, 0.991, 0.9936, 0.9949, 0.99922, 0.9976, 0.9944, 0.99648, 0.996, 0.99898, 0.99914, 0.9927, 0.9982, 0.99244, 0.9932, 0.99459, 0.99655, 0.994, 0.99904, 0.9964, 0.9927, 0.9964, 0.9958, 0.99242, 0.9979, 0.997, 0.99403, 0.9979, 0.99741, 0.99266, 0.9969, 0.9932, 0.9965, 0.9948, 0.9975, 0.9958, 0.9935, 0.99519, 0.9971, 0.9958, 0.99792, 0.99828, 0.9928, 0.9941, 0.99593, 0.99773, 0.9925, 0.99254, 0.99628, 0.9957, 0.9974, 0.99824, 0.9951, 1.0002, 0.99699, 0.9988, 0.9959, 0.99212, 0.9926, 1.0001, 0.9972, 0.998, 0.99334, 0.997, 0.99733, 0.992, 0.9964, 0.9956, 0.9973, 0.993, 0.9963, 0.99817, 0.9976, 0.99048, 0.99166, 0.99208, 0.99745, 0.9941, 0.99892, 0.99152, 0.99397, 0.9948, 0.9957, 0.99585, 0.99382, 0.99699, 0.995, 0.9932, 0.9941, 0.9937, 0.99817, 0.9961, 0.9964, 0.9976, 1.0, 0.99548, 0.998, 0.996, 0.99528, 0.9998, 0.9982, 0.9982, 0.99405, 1.0008, 0.99625, 0.9973, 0.99684, 0.9902, 0.9963, 0.99502, 0.9956, 0.9937, 0.9958, 0.9949, 0.99634, 0.99642, 0.9976, 0.99001, 0.9985, 0.9934, 0.9976, 0.99374, 0.9968, 0.99687, 0.998, 0.99718, 0.99437, 0.9963, 0.9959, 0.99579, 0.9939, 1.001, 0.99478, 0.99604, 0.99534, 0.9946, 0.9956, 0.9986, 0.99138, 0.9962, 0.9989, 0.99582, 0.9904, 0.99736, 0.99287, 0.9932, 0.9924, 0.99678, 0.9981, 0.9972, 0.9912, 0.99783, 0.9907, 0.99669, 0.99317, 0.99656, 1.001, 0.9969, 0.9938, 0.9905, 0.9928, 0.9988, 0.9981, 0.99429, 0.99587, 0.9942, 0.99504, 0.9986, 0.99738, 0.9958, 0.99537, 0.98956, 0.9981, 0.99873, 0.9966, 0.99682, 0.9961, 0.99166, 0.9968, 0.9937, 0.99308, 0.9964, 0.9924, 0.9946, 0.9982, 0.99512, 0.9994, 0.99098, 0.99642, 0.9966, 0.9937, 0.992, 0.9968, 0.99036, 0.99548, 0.99672, 0.9968, 0.99388, 0.99907, 0.99255, 0.9937, 1.00242, 1.00242, 0.9966, 0.99234, 0.99625, 0.99184, 0.9982, 0.9942, 0.9897, 0.994, 0.99168, 0.9952, 0.9977, 0.99872, 0.99772, 0.9981, 0.9904, 0.9993, 0.9958, 0.99578, 0.99026, 0.9982, 0.9941, 0.99166, 0.99627, 0.9932, 1.0005, 0.9934, 0.998, 0.9944, 0.9938, 0.9957, 1.00044, 0.99026, 0.99244, 1.00118, 0.994, 0.99314, 0.9972, 0.99818, 0.99561, 0.99839, 0.9948, 0.99026, 0.99734, 0.9978, 0.99273, 0.99602, 0.9978, 1.001, 0.9944, 0.9965, 0.9966, 0.99434, 0.9987, 0.99496, 0.9934, 0.996, 1.0004, 0.9926, 0.9946, 0.998, 0.99238, 0.9954, 0.99479, 0.99362, 0.99296, 0.99633, 0.9977, 1.00241, 0.9984, 0.994, 0.99611, 0.9948, 0.99794, 0.9956, 0.99794, 0.99588, 0.9922, 0.9978, 0.99689, 0.9953, 0.99572, 0.9942, 0.99582, 0.9959, 0.9972, 0.9921, 0.9955, 0.9918, 0.9962, 0.9924, 0.99076, 0.99782, 0.99709, 0.99458, 0.99806, 0.9983, 0.998, 0.99346, 0.9937, 0.99814, 0.9966, 1.0001, 0.9926, 0.99943, 0.9955, 0.9986, 0.99657, 0.9945, 0.99558, 0.99689, 0.9955, 0.9979, 0.9938, 1.00098, 0.9984, 0.9969, 0.99732, 0.99647, 0.9968, 0.9955, 0.9962, 0.9949, 0.99663, 0.9976, 0.99454, 0.9967, 0.99577, 1.001, 0.9987, 0.99516, 0.9986, 0.99164, 0.9974, 0.99902, 1.0001, 0.99032, 0.99848, 0.9928, 0.9934, 0.9939, 0.9976, 0.9982, 0.99748, 0.99773, 0.9964, 0.994, 0.99898, 0.9966, 0.99575, 0.998, 0.9937, 0.99517], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Current<br>density=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [0.9966, 0.99556, 0.9939, 0.99126, 0.9996, 1.001, 0.99565, 0.998, 0.99692, 0.9997, 0.9956, 0.9918, 0.99513, 0.99587, 0.99869, 1.0, 0.9959, 1.0004, 0.99253, 0.9905, 0.9918, 0.9996, 0.9946, 0.9978, 0.99009, 0.9926, 0.997, 0.99898, 0.99215, 0.9931, 0.99839, 0.9944, 0.99798, 0.9963, 0.9926, 0.99341, 0.998, 0.9968, 0.9953, 0.9934, 0.9918, 0.99494, 0.9968, 0.9982, 0.992, 0.99212, 0.9976, 0.99616, 0.99911, 0.99244, 0.99454, 1.0011, 0.9937, 0.99612, 0.9976, 0.9963, 0.99748, 1.00315, 0.9966, 0.99848, 1.00315, 0.9976, 0.9962, 1.0006, 0.99657, 0.99592, 0.99702, 0.9978, 0.9965, 0.9956, 0.99654, 0.99093, 0.99212, 0.99694, 0.9938, 0.99174, 1.0, 0.9918, 0.99345, 0.99717, 0.9966, 0.99576, 0.9972, 0.9968, 0.9938, 0.9923, 0.9967, 0.99976, 0.992, 0.9978, 0.9951, 0.9936, 0.998, 0.9991, 0.99683, 0.99476, 0.9958, 0.9986, 0.9972, 0.99596, 0.99918, 0.99479, 1.0, 0.9955, 0.9954, 0.99584, 0.9984, 0.99448, 0.99416, 0.9989, 0.9964, 0.9983, 0.99712, 0.99362, 0.9926, 0.99669, 0.99676, 0.99471, 0.9955, 0.9958, 0.9962, 0.99182, 0.9946, 0.996, 0.99546, 0.99915, 0.99111, 0.9997, 0.99546, 0.9938, 0.98876, 0.99734, 0.9991, 0.992, 0.99694, 0.9976, 0.993, 0.9976, 0.99681, 0.99494, 0.9938, 0.9938, 0.99239, 0.9939, 0.9992, 0.99677, 0.99176, 0.9958, 0.9964, 0.99568, 0.9932, 0.99942, 0.9973, 0.9958, 0.99344, 0.9928, 0.99481, 0.99584, 0.99696, 0.9988, 0.99745, 0.99872, 0.99212, 0.9982, 0.9974, 0.9944, 0.9904, 0.99264, 0.99299, 0.99534, 0.9997, 0.9966, 0.9934, 0.99204, 0.9964, 0.98918, 0.9923, 0.99775, 0.99742, 0.99642, 0.9941, 0.99688, 1.0004, 0.9927, 0.99705, 0.99154, 0.9958, 0.9989, 0.9936, 0.99545, 0.99743, 0.99524, 0.99555, 0.99173, 0.9976, 0.9961, 0.9936, 0.99382, 0.99947, 0.997, 0.9962, 0.9976, 0.9983, 0.9986, 0.98993, 0.99922, 0.9958, 0.9994, 0.9974, 0.9977, 0.998, 0.99458, 0.99552, 0.99194, 0.9953, 0.99084, 0.9973, 0.9966, 0.99288, 0.9928, 0.9975, 0.9961, 0.9982, 0.9952, 0.9934, 0.996, 0.998, 0.9961, 0.99366, 0.99138, 0.9991, 0.99305, 1.0001, 0.9981, 0.9965, 0.99628, 0.99164, 0.99193, 0.9991, 0.9931, 0.99771, 0.9993, 0.99176, 0.9962, 0.99048, 0.9944, 0.9936, 0.99469, 0.9986, 0.99362, 0.9978, 0.99884, 0.9958, 0.99779, 0.9927, 0.99924, 0.9962, 0.9958, 0.99692, 0.99818, 0.99732, 0.99471, 0.9978, 0.9978, 0.99402, 0.99211, 0.9956, 0.99176, 0.99032, 0.99488, 0.99069, 0.9994, 0.9998, 0.9955, 0.99514, 0.9929, 0.99907, 0.998, 0.9958, 0.9968, 0.9983, 0.9993, 0.99047, 0.99202, 0.9986, 0.99185, 0.99249, 0.9943, 0.9911, 0.99726, 0.99527, 0.9944, 0.99626, 0.99746, 0.99304, 0.9984, 0.99274, 0.9955, 0.99804, 0.9986, 0.99182, 0.9996, 0.99454, 0.997, 0.99718, 0.9904, 0.9986, 0.9962, 1.0004, 0.9954, 0.9965, 0.99516, 0.9944, 0.9998, 0.9944, 0.998, 0.9938, 0.99558, 0.9956, 0.9932, 0.997, 0.9954, 0.99773, 0.9953, 0.9994, 0.9963, 0.9991, 0.9969, 0.9956, 0.99212, 0.9967, 0.9968, 0.9918, 0.9914, 0.9964, 0.992, 0.99198, 0.99271, 1.0001, 0.9952, 0.9958, 0.9978, 0.9953, 0.99652, 0.9994, 0.99242, 0.9979, 0.9966, 1.0001, 0.9932, 0.99372, 0.9917], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Reference\", \"x\": 0.245, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Current\", \"x\": 0.755, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"barmode\": \"overlay\", \"legend\": {\"title\": {\"text\": \"target\"}, \"tracegroupgap\": 0}, \"margin\": {\"t\": 60}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.49], \"title\": {\"text\": \"density\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.51, 1.0], \"matches\": \"x\", \"title\": {\"text\": \"density\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"count\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}}}}, {\"id\": \"density_good\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (ref)\", \"type\": \"scatter\", \"x\": [0.992, 0.9964, 0.99097, 0.99511, 0.9934, 0.99558, 0.98894, 0.9909, 0.9902, 0.98994, 0.9926, 0.99458, 0.9951, 1.0, 0.9955, 0.9954, 0.99, 1.0032, 0.99002, 0.99364, 0.99566, 0.99175, 0.9928, 0.99085, 0.9938, 0.9938, 0.98742, 0.9955, 0.9942, 0.9892, 0.9911, 0.99728, 0.9914, 0.99035, 0.99076, 0.99855, 0.9969, 0.98892, 0.99015, 0.99089, 0.98954, 0.9945, 0.9971, 0.99245, 0.99676, 0.9972, 0.9978, 0.992, 0.9962, 0.9906, 0.9978, 0.9991, 0.98998, 0.99304, 0.992, 0.9979, 0.99201, 0.98941, 0.992, 0.992, 0.99758, 0.99016, 0.991, 0.993, 1.001, 0.9984, 0.99064, 0.9941, 0.9954, 0.99146, 0.9918, 0.98934, 0.99278, 0.99316, 0.9965, 0.99556, 0.9973, 0.98928, 0.99638, 0.9916, 0.995, 0.99012, 0.99109, 0.997, 0.9935, 0.99096, 0.9918, 0.9982, 0.9896, 0.9984, 0.9919, 0.9918, 0.9942, 0.9912, 0.99471, 0.99241, 0.99567, 0.98959, 0.98984, 0.9946, 0.9934, 0.9986, 0.99638, 0.9951, 0.98914, 0.9938, 0.9925, 0.9946, 0.99058, 0.99472, 0.99002, 1.0103, 0.99208, 0.99666, 0.99202, 0.9889, 0.99034, 0.98974, 0.999, 0.99534, 0.99808, 0.9924, 0.9974, 0.998, 0.99678, 0.99538, 0.9958, 0.9974, 0.9931, 0.9983, 0.9934, 0.98746, 0.9998, 0.99624, 0.9966, 0.98976, 0.99834, 0.99627, 0.98968, 0.998, 0.99007, 0.9945, 0.99452, 0.9935, 0.9984, 0.9938, 0.99279, 0.9905, 0.9948, 0.9974, 0.99792, 0.998, 0.99256, 0.99775, 0.99835, 0.99189, 0.99033, 0.9908, 0.9931, 0.98972, 0.9949, 0.99616, 0.99014, 0.9974, 0.9938, 0.9962, 0.99642, 0.9942, 0.9977, 0.9894, 0.99566, 0.9964, 0.993, 0.99507, 0.9964, 0.9948, 0.9964, 0.9939, 0.99174, 0.99736, 0.99462, 0.99, 0.99458, 0.9895, 0.9949, 0.991, 0.98758, 0.9973, 0.9912, 0.9932, 0.99183, 0.99378, 0.9918, 0.99269, 0.99744, 0.9901, 0.99353, 0.99178, 0.99041, 0.99184, 0.9948, 0.9916, 0.9926, 0.99504, 0.99394, 0.99408, 0.9974, 0.9944, 0.99807, 0.9982, 0.9928, 0.9916, 0.99111, 0.99215, 0.99089, 0.9934, 0.99112, 0.9938, 0.99276, 0.98954, 0.9926, 0.9997, 0.9923, 0.9907, 0.99814, 0.9938, 0.9986, 0.99945, 0.993, 0.99471, 0.99235, 0.9928, 0.99379, 0.99522, 0.99224, 0.99324, 0.9922, 0.9954, 0.9908, 0.99397, 0.99558, 0.9979, 0.9931, 0.99955, 0.99588, 0.9938, 0.9937, 0.99776, 0.9953, 0.98994, 1.0003, 0.9986, 0.9982, 0.99672, 0.99674, 0.99278, 0.99022, 0.99396, 0.9912, 0.9948, 0.9973, 0.9911, 0.99153, 0.991, 0.99119, 0.9911, 0.991, 0.99652, 0.99489, 0.98942, 0.99144, 0.9949, 0.99254, 0.99252, 0.98919, 0.99784, 0.99469, 0.99523, 0.99378, 0.99212, 0.9941, 0.9911, 0.99008, 0.98963, 0.99116, 0.99545, 0.99946, 0.997, 0.9971, 0.99044, 0.9924, 0.9916, 0.99408, 0.99174, 0.9937, 0.9955, 0.9972, 0.9921, 0.99199, 0.994, 0.99387, 0.99462, 0.992, 0.9928, 0.994, 0.99534, 0.9945, 0.99057, 0.9999, 0.99274, 0.99685, 0.9983, 0.99362, 0.9923, 0.9925, 1.0002, 0.9942, 0.98912, 0.99094, 0.9892, 0.98914, 0.9908, 0.9918, 0.9927, 0.9917, 0.9972, 0.9954, 0.99546, 0.9974, 0.99198, 0.99308, 0.99066, 0.9986, 0.99464, 0.9917, 0.99954, 0.99202, 0.99414, 0.9982, 0.9952, 0.9962, 0.9934, 0.9891, 0.9941, 0.99573, 0.9936, 0.9967, 0.99685, 0.98918, 0.9986, 0.99518, 0.9932, 0.99469, 0.99109, 0.99705, 0.9917, 0.9964, 0.98987, 0.9996, 0.9904, 0.99886, 0.9924, 0.997, 0.99494, 0.99745, 0.99606, 0.98999, 0.9909, 0.99615, 0.9975, 0.9926, 0.9918, 0.9929, 0.9948, 0.99036, 0.99228, 0.98984, 0.99822, 0.99299, 0.9987, 1.0015, 0.99563, 0.9984, 0.9984, 0.9957, 0.99194, 1.00369, 0.993, 0.9952, 0.99035, 0.9916, 0.99896, 0.9945, 0.9927, 0.9954, 0.99549, 0.9922, 1.00295, 0.98956, 0.9973, 0.9961, 0.997, 0.99352, 0.9994, 0.99238, 0.99524, 0.9927, 0.9917, 0.9914, 0.9957, 0.99304, 0.99331, 0.99108, 0.992, 0.9923, 0.99064, 0.9921, 0.999, 0.99392, 0.9944, 0.99546, 0.99326, 0.995, 0.99792, 0.99534, 0.9908, 0.99158, 0.99136, 0.99122, 0.9928, 0.9931, 0.99063, 0.99024, 0.9898, 0.993, 0.98816, 0.9965, 0.99586, 0.9925, 0.9986, 0.9912, 0.9916, 0.99132, 0.996, 0.99358, 0.9938, 0.9977, 0.9934, 0.9978, 0.99074, 0.99048, 0.9898, 0.98994, 0.99342, 0.9966, 1.0004, 0.9948, 0.99514, 0.99596, 0.99602, 0.9986, 0.9971, 1.0003, 1.00051, 0.99084, 0.99566, 0.9927, 0.9912, 0.99581, 0.995, 0.9972, 0.99656, 0.9965, 0.99975, 0.99052, 0.989, 0.9916, 0.99455, 0.99393, 0.9924, 0.9946, 1.00038, 0.99906, 0.9958, 0.99475, 0.9935, 0.9906, 0.99835, 0.98883, 0.9932, 0.99863, 0.99686, 0.99322, 0.99678, 0.99331, 0.9925, 0.9978, 0.99392, 0.99105, 0.99384, 0.99596, 0.99216, 0.99321, 0.9979, 0.99124, 0.99472, 0.98946, 0.9945, 0.98926, 0.9925, 0.9898, 0.99066, 0.99587, 0.9984, 0.98942, 0.98876, 0.99045, 0.9975, 0.9913, 0.9906, 0.99416, 0.98794, 0.9925, 0.9911, 0.99675, 0.98931, 0.9983, 0.992, 0.99658, 0.99136, 0.9991, 0.9964, 0.992, 0.99658, 0.9923, 0.9965, 0.9952, 0.99461, 0.99287, 0.9918, 0.9944, 0.98944, 0.9976, 0.9953, 0.99074, 0.98794, 0.99643, 0.9954, 0.99114, 0.99374, 0.99218, 0.9948, 0.993, 0.9966, 0.99152, 0.99498, 0.9925, 0.99615, 0.99715, 0.99056, 0.9937, 0.9965, 0.9906, 0.9982, 0.99157, 0.9919, 0.99157, 0.9953, 0.9898, 0.99543, 0.9899, 0.9937, 0.99203, 0.99036, 0.99008, 0.9892, 0.99971, 0.992, 0.99785, 0.9927, 0.99044, 0.9912, 0.995, 0.995, 0.9942, 0.99522, 0.98856, 0.9939, 0.9927, 0.99095, 0.9972, 0.98946, 0.99542, 0.98944, 0.9985, 0.99411, 0.99266, 0.9962, 0.99268, 0.9971, 0.9917, 0.9925, 0.9968, 0.99142, 0.9964, 0.9979, 0.99214, 0.99737, 0.9917, 0.99807, 0.99334, 0.99798, 0.99558, 0.9972, 0.98946, 0.99543, 0.9934, 0.9938, 0.9947, 0.9969, 0.99752, 0.99082, 0.9983, 0.9962, 0.99692, 0.9928, 0.998, 0.9909, 0.99494, 0.98987, 0.99578, 0.997, 0.9986, 0.99544, 0.99321, 0.99072, 0.9985, 0.99494, 0.99118, 0.9968, 0.99112, 1.0004, 0.9907, 0.9921, 0.9934], \"xaxis\": \"x\", \"y\": [0.8156061324462894, 0.42491310922683634, 0.8867827646463432, 0.8014995238430205, 0.30499958310650876, 0.5817355832705369, 0.959171062334887, 0.7854416128369749, 0.9085690698200813, 0.8998600376511439, 0.6341165000693628, 0.412102187638673, 0.7643629411050379, 0.4710001938005606, 0.40182653035141874, 0.40438056362905367, 0.8870480016118494, 0.3650667978415713, 0.9064321709292111, 0.9327245345966092, 0.6458420185168736, 0.8821841129047617, 0.6704018506542557, 0.7655671181822064, 0.8616986618932058, 0.48774537944210006, 0.9637355036179479, 0.6794204065079696, 0.6044835155949141, 0.7867954023600708, 0.9137982268836646, 0.5867502063434873, 0.8048584290077971, 0.9718511071053526, 0.9627192884041744, 0.7978623718349598, 0.6091120966723917, 0.8943338178728011, 0.8853376735027229, 0.9045563504021151, 0.9264844632598176, 0.6342457655367447, 0.9414033426130164, 0.5636516403732365, 0.5172967922101196, 0.4836896337264441, 0.35199620689495453, 0.788779954566273, 0.9696552399248426, 0.772496554239754, 0.8132656157621138, 0.4539090261140653, 0.9333708926412786, 0.679765045723866, 0.48457442622955804, 0.4248820606938153, 0.6737819616086004, 0.8780741425819777, 0.38340602447337646, 0.90634085684919, 0.5574014604752268, 0.6804147683859246, 0.9077110088845216, 0.7718472635729894, 0.4717552048891654, 0.22222808308441652, 0.8616549355667619, 0.705749071892896, 0.4699129352300819, 0.9680524782819758, 0.8891353183282249, 0.9466602521798594, 0.8553382520847058, 0.7430243903066251, 0.6616131862201935, 0.6919609500216202, 0.96565744679506, 0.913108907487878, 0.5395521774612226, 0.9026238558501023, 0.6550941529376255, 0.9757876320152292, 0.8833495792027257, 0.6666029765862381, 0.8504582120840628, 0.9320215595878566, 0.7639947574915884, 0.6085229656221847, 0.9557131606798471, 0.46184432615952054, 0.5642658412077981, 0.8815615400732472, 0.7189203536918151, 0.9301020530176726, 0.7341394174346678, 0.7759189559372703, 0.8448078654733812, 0.9012666081120407, 0.8926028620066223, 0.5287492720273277, 0.6874206920638863, 0.37408584674942635, 0.8348370105186077, 0.8697567261320243, 0.9175759024810304, 0.44644098895981, 0.8874384748400057, 0.7787567487441118, 0.9416122482572158, 0.3265229243180111, 0.9308095750950773, 0.42267134533232753, 0.43068181214270274, 0.8727308285810839, 0.7201611177732586, 0.8430904589044517, 0.8140617541555761, 0.9456747441572588, 0.6672663325862807, 0.8756470416862959, 0.518871521713375, 0.7040615347784164, 0.4957960231649875, 0.6250130361556073, 0.27413726132188326, 0.5193133578087885, 0.37656641690434584, 0.5808048103476511, 0.7917827117482167, 0.36569143480873245, 0.7232542293832885, 0.9785934574433302, 0.5715075300165849, 0.8182555969893297, 0.5448461144048058, 0.9491291995847589, 0.4833587957991669, 0.3189279754564957, 0.9184825510014271, 0.5524830505676419, 0.9600429304649183, 0.7818180966165994, 0.7962710274484252, 0.7569429870375118, 0.46184432615952054, 0.7641514270390748, 0.9486763575522457, 0.8086368705092697, 0.6784536879503494, 0.6877019790624462, 0.6082670858563528, 0.6053794617794684, 0.6319330693089359, 0.4982105707488519, 0.6787928880949093, 0.9231980717613485, 0.8831230955067948, 0.6845485656817341, 0.8799204262605215, 0.9164563829924386, 0.7819268199067826, 0.23469888428232324, 0.9492377841603665, 0.8826092272015389, 0.6360541596480074, 0.5184081252698399, 0.6400126753125241, 0.542646305979658, 0.4479501208302092, 0.7783171875827786, 0.7867712153112567, 0.5236605417423803, 0.6959846197179591, 0.7925023358445066, 0.6683189355892497, 0.18737025221649042, 0.42506327048176057, 0.7272596040941706, 0.7314191754306454, 0.4827891324637794, 0.6649341228620356, 0.9038332731164471, 0.9588917860646077, 0.8945194928389463, 0.49833043835950624, 0.7997712594855277, 0.8577935987172323, 0.7622736922026153, 0.8039391974899521, 0.7396811504731934, 0.8115340233127679, 0.801728888664367, 0.738451208106372, 0.5859674792922007, 0.1865203674848816, 0.8773430435604171, 0.36888329310067386, 0.8651817982269884, 0.9067615420962557, 0.8594983988587351, 0.7437750884018276, 0.9145224932934428, 0.9135679891815164, 0.8001832456898428, 0.6860977766129374, 0.9377826008632761, 0.9300369611912853, 0.6997062971069969, 0.5693182102579236, 0.3404656140239559, 0.7160591142088384, 0.7953146078011, 0.8869803873277935, 0.7639982823097876, 0.8681285227071118, 0.576868797021353, 0.93035102563313, 0.8375600281828176, 0.8279918435672958, 0.9266689436294401, 0.7559862346636359, 0.5099889666930224, 0.6914445842613687, 0.9651950326885705, 0.87851968214492, 0.8499702807396289, 0.4685752957996948, 0.7241546992314323, 0.7848147251007912, 0.7341394174346678, 0.7008877443692281, 0.340588975625529, 0.5013021766499856, 0.8321174529331695, 0.8818378666553491, 0.9176909075187759, 0.8634678749265305, 0.7436082905772717, 0.9343776659412377, 0.7668809937296346, 0.6243383802582345, 0.5332560471205093, 0.6907315465649003, 0.16626803588025432, 0.1668542888532837, 0.7408943843163458, 0.5221312328975666, 0.7457559475413279, 0.46389636934606376, 0.9292627865919654, 0.5268311186840582, 0.4244151934213653, 0.643310536612302, 0.8577438313980266, 0.7816208399762355, 0.8553382520847058, 0.7010035672814305, 0.5242572272016158, 0.9187320011579697, 0.8703498177621264, 0.6713045345576062, 0.9137982268836646, 0.8614414457916845, 0.9445662266054761, 0.8808216590199034, 0.7386378115490353, 0.8873009977622293, 0.9157094897337859, 0.6606038558129893, 0.9296803968514485, 0.8864322240790464, 0.5146720135715994, 0.8720710714485208, 0.9415427660945741, 0.9138701141498735, 0.6527559092576063, 0.8751970040938668, 0.9249766460056568, 0.801728888664367, 0.6575848465963361, 0.6934824043184128, 0.8619113960143526, 0.9419078024651042, 0.9591721389341828, 0.8397407150753159, 0.9084383840076588, 0.4963969309336195, 0.7359588175524252, 0.3531961907069324, 0.9279819479140234, 0.7752976919572294, 0.8665226278427577, 0.9515211055933231, 0.7314191754306454, 0.890886918514299, 0.3235491032739525, 0.3719939405423586, 0.6323804178173072, 0.8398006965792015, 0.8239469134189235, 0.8592101816891015, 0.7615002907198236, 0.8688259750909261, 0.8718104001390852, 0.5838074755684882, 0.8756470416862959, 0.901850575196968, 0.9451930143658351, 0.6253812669856891, 0.5890764576710766, 0.4921052500998711, 0.4862070578416567, 0.9170647663398394, 0.7035583451969506, 0.8476385889092957, 0.5603058978573646, 0.5810606890504925, 0.9088604673919816, 0.8903252600075929, 0.944267921154058, 0.9435968591480925, 0.938237366988842, 0.9357286047893738, 0.7961386682142712, 0.7840233885688647, 0.2513590507613302, 0.7389284097502917, 0.9053472250810051, 0.44438282424164377, 0.862281110352348, 0.8021059248496223, 0.9152740930046814, 0.643737358401971, 0.8540304955499701, 0.8613418170006786, 0.6911084183178322, 0.8848367871057808, 0.8387883096682573, 0.5942651630821018, 0.65691393717736, 0.6369979527510315, 0.8280658524313272, 0.9640736168216585, 0.6546311715671466, 0.5599819536107853, 0.48348053317652906, 0.7668016587569692, 0.03620763244300767, 0.7364400865449663, 0.37408584674942635, 0.8767503774172, 0.8743962287172513, 0.8751970040938668, 0.8833495792027257, 0.7091886355621774, 0.87006937054451, 0.7904001815220257, 0.8761418339280951, 0.8306834851111597, 0.7531715889012326, 0.38181207472529843, 0.6490458991820136, 0.9138057013338913, 0.9046222904886461, 0.17956061692355052, 0.7506163079023257, 0.8963285795381793, 0.8848361664653354, 0.9283037217377402, 0.45996158699034445, 0.7290858434196763, 0.8319094967702583, 0.6578018675312727, 0.18727567457681707, 0.8673410249845035, 0.9453298670648187, 0.9446538464906173, 0.19605573045952288, 0.6723831041639817, 0.3438281302059518, 0.37858973820495484, 0.6953170483296187, 0.21463507152544156, 0.26963792069965237, 0.3280912492037974, 0.8399932187801539, 0.420387898633768, 0.36522500752858966, 0.5810560693343539, 0.9306346767722963, 0.7167716539092029, 0.656736106921484, 0.5549139996760648, 0.6909161521388689, 0.591904263202073, 0.884703171197362, 0.866402281883595, 0.7582770814524421, 0.8990773411030794, 0.1818065866116437, 0.6222165686186035, 0.17261914235374884, 0.8156064679757086, 0.4851213943917703, 0.8871292211128762, 0.8398494053952754, 0.703270618172154, 0.6305543892506115, 0.7494149477175548, 0.1532408287022325, 0.6159732902773407, 0.738220551127759, 0.8354520044441791, 0.8536870432671441, 0.5751476712690671, 0.9077719201719568, 0.7878515691455199, 0.6672663325862807, 0.45293736875445273, 0.17058553029544155, 0.747933377844996, 0.8400163125056676, 0.4516778718827729, 0.6082670858563528, 0.8401843469141149, 0.7636885291754726, 0.789170795337903, 0.8128612802083497, 0.7522530659814418, 0.8086757686066508, 0.8356255123032285, 0.9241779635105248, 0.9674588597049086, 0.9368885694202199, 0.4990764491242286, 0.876561204324957, 0.554264192243629, 0.5967716244634195, 0.9060244606340249, 0.8401608718856799, 0.7329750583133859, 0.8021769878309102, 0.9316817655017511, 0.45488322534173153, 0.798578398438993, 0.7425236774748816, 0.5742682328784404, 0.4937681935814938, 0.8972164286692267, 0.8914273370768748, 0.9377613518261881, 0.8862258850530264, 0.8591757581361523, 0.7410678096850266, 0.6822336012657398, 0.9201658505843877, 0.6982578893131915, 0.5746709232170782, 0.7626532952948841, 0.7137703530889916, 0.7520971196461234, 0.4473853625959922, 0.7957460056304991, 0.4833174871501707, 0.8758467705785958, 0.4689303842787964, 0.6133612564737879, 0.8568681391705205, 0.6835133967314007, 0.9732070839986944, 0.21435716257549006, 0.5761668962420043, 0.4055433603128916, 0.3743394998756179, 0.9118635774953143, 0.964551884718591, 0.9306459334511011, 0.8424802355113449, 0.7739144871152517, 0.6872688771534424, 0.8590561833388345, 0.6714384475466295, 0.6408669500407106, 0.5203550269219845, 0.2856853969697174, 0.857760555506807, 0.9307094503226838, 0.6787928880949093, 0.8308635255795866, 0.29271374211533296, 0.6769315553524353, 0.23831547366416572, 0.5895099457120908, 0.8994675076574448, 0.8893400405584444, 0.8456825404777587, 0.5399612081435882, 0.6188649121485582, 0.9281492942813848, 0.7611740601422801, 0.46550237374781617, 0.8896861436466836, 0.9038901015569306, 0.5044440900554997, 0.9215480939667524, 0.6930273792518707, 0.8723244804196287, 0.5624338775604165, 0.9226297661236537, 0.8469231754225917, 0.9430557295321259, 0.9097116306258912, 0.5988707702267543, 0.3813853072548755, 0.8843832309478876, 0.9006952500629406, 0.918975987201669, 0.18997930334445084, 0.8923106748541326, 0.8461388699436441, 0.5973439234355874, 0.9544642924744549, 0.91770416680597, 0.9177239854204658, 0.17584552180125673, 0.9240099144459667, 0.48524948024905407, 0.8889685222180134, 0.5785503824403398, 0.7511953459672914, 0.6887596776945688, 0.6717539058356753, 0.7168761391602206, 0.7134478068952186, 0.834626350903405, 0.5715867980362679, 0.6588392688727011, 0.9488572786900573, 0.8920529250761863, 0.8891353183282249, 0.707981940789761, 0.926348680038428, 0.631489487929038, 0.7443856388661001, 0.9260754381930228, 0.9544642924744549, 0.8497401318990601, 0.5604010177433062, 0.8036334301115304, 0.7898153537185114, 0.8491431337122072, 0.6570881560807702, 0.8389599143569951, 0.7944137576415592, 0.8132668978866627, 0.44714680104169846, 0.7978021044641371, 0.41921696608658454, 0.38876183891604754, 0.9248463736054193, 0.4277915265084825, 0.6345107008491314, 0.8008942533173764, 0.5087430598332189, 0.9414938992689892, 0.6922115882765215, 0.8296175750175913, 0.8593339228153332, 0.8975141534758351, 0.5977126281557783, 0.9279478536756302, 0.6485770817571253, 0.8905823996589662, 0.9332072841984264, 0.9432461110830079, 0.9410120781436498, 0.6339696776630096, 0.7120962557761497, 0.5841709037351369, 0.5928970840420333, 0.9006589732900512, 0.936371533648048, 0.6907852379101131, 0.7675780198071424, 0.9444587893431046, 0.4702336163336472, 0.8925536722101626, 0.8158978708906081, 0.822780392485108, 0.8037335327290217, 0.8382351003285965, 0.8941557358589171, 0.4796498334522667, 0.926348680038428, 0.6842118015950474, 0.6463580983468415, 0.8292048071278182, 0.5834426687867836, 0.8419845362148763, 0.2431563391580561, 0.7763142135369961, 0.9390550746437164, 0.7774903237071782, 0.8141232663130791, 0.9444089886680379, 0.430401459478284, 0.9192677156927759, 0.8427595869840984, 0.87120858451521, 0.5693182102579236, 0.820012080301976, 0.58719119911586, 0.42769376643096113, 0.3542595869275313, 0.89579938191327, 0.8743523014696554, 0.7820497043505815, 0.5279069501129625, 0.8869579700149332, 0.45488774279476296, 0.8514781135508903, 0.8278297091497892, 0.663749097381813, 0.5132851713944618, 0.4906566565015208, 0.6415219885510332, 0.6991293681294938, 0.8150539074042624, 0.5800669536763935, 0.9583771200922359, 0.7366090055976814, 0.5747817696023392, 0.5315376696882942, 0.8074446941396305, 0.9038901015569306, 0.9087015650331977, 0.6697291810323083, 0.5800669536763935, 0.8807270543114014, 0.5135845984304893, 0.9352791850238339, 0.36120709973337456, 0.6206709330576408, 0.906286252315459, 0.7937202818717513], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [0.9976, 0.991, 0.9936, 0.9949, 0.99922, 0.9976, 0.9944, 0.99648, 0.996, 0.99898, 0.99914, 0.9927, 0.9982, 0.99244, 0.9932, 0.99459, 0.99655, 0.994, 0.99904, 0.9964, 0.9927, 0.9964, 0.9958, 0.99242, 0.9979, 0.997, 0.99403, 0.9979, 0.99741, 0.99266, 0.9969, 0.9932, 0.9965, 0.9948, 0.9975, 0.9958, 0.9935, 0.99519, 0.9971, 0.9958, 0.99792, 0.99828, 0.9928, 0.9941, 0.99593, 0.99773, 0.9925, 0.99254, 0.99628, 0.9957, 0.9974, 0.99824, 0.9951, 1.0002, 0.99699, 0.9988, 0.9959, 0.99212, 0.9926, 1.0001, 0.9972, 0.998, 0.99334, 0.997, 0.99733, 0.992, 0.9964, 0.9956, 0.9973, 0.993, 0.9963, 0.99817, 0.9976, 0.99048, 0.99166, 0.99208, 0.99745, 0.9941, 0.99892, 0.99152, 0.99397, 0.9948, 0.9957, 0.99585, 0.99382, 0.99699, 0.995, 0.9932, 0.9941, 0.9937, 0.99817, 0.9961, 0.9964, 0.9976, 1.0, 0.99548, 0.998, 0.996, 0.99528, 0.9998, 0.9982, 0.9982, 0.99405, 1.0008, 0.99625, 0.9973, 0.99684, 0.9902, 0.9963, 0.99502, 0.9956, 0.9937, 0.9958, 0.9949, 0.99634, 0.99642, 0.9976, 0.99001, 0.9985, 0.9934, 0.9976, 0.99374, 0.9968, 0.99687, 0.998, 0.99718, 0.99437, 0.9963, 0.9959, 0.99579, 0.9939, 1.001, 0.99478, 0.99604, 0.99534, 0.9946, 0.9956, 0.9986, 0.99138, 0.9962, 0.9989, 0.99582, 0.9904, 0.99736, 0.99287, 0.9932, 0.9924, 0.99678, 0.9981, 0.9972, 0.9912, 0.99783, 0.9907, 0.99669, 0.99317, 0.99656, 1.001, 0.9969, 0.9938, 0.9905, 0.9928, 0.9988, 0.9981, 0.99429, 0.99587, 0.9942, 0.99504, 0.9986, 0.99738, 0.9958, 0.99537, 0.98956, 0.9981, 0.99873, 0.9966, 0.99682, 0.9961, 0.99166, 0.9968, 0.9937, 0.99308, 0.9964, 0.9924, 0.9946, 0.9982, 0.99512, 0.9994, 0.99098, 0.99642, 0.9966, 0.9937, 0.992, 0.9968, 0.99036, 0.99548, 0.99672, 0.9968, 0.99388, 0.99907, 0.99255, 0.9937, 1.00242, 1.00242, 0.9966, 0.99234, 0.99625, 0.99184, 0.9982, 0.9942, 0.9897, 0.994, 0.99168, 0.9952, 0.9977, 0.99872, 0.99772, 0.9981, 0.9904, 0.9993, 0.9958, 0.99578, 0.99026, 0.9982, 0.9941, 0.99166, 0.99627, 0.9932, 1.0005, 0.9934, 0.998, 0.9944, 0.9938, 0.9957, 1.00044, 0.99026, 0.99244, 1.00118, 0.994, 0.99314, 0.9972, 0.99818, 0.99561, 0.99839, 0.9948, 0.99026, 0.99734, 0.9978, 0.99273, 0.99602, 0.9978, 1.001, 0.9944, 0.9965, 0.9966, 0.99434, 0.9987, 0.99496, 0.9934, 0.996, 1.0004, 0.9926, 0.9946, 0.998, 0.99238, 0.9954, 0.99479, 0.99362, 0.99296, 0.99633, 0.9977, 1.00241, 0.9984, 0.994, 0.99611, 0.9948, 0.99794, 0.9956, 0.99794, 0.99588, 0.9922, 0.9978, 0.99689, 0.9953, 0.99572, 0.9942, 0.99582, 0.9959, 0.9972, 0.9921, 0.9955, 0.9918, 0.9962, 0.9924, 0.99076, 0.99782, 0.99709, 0.99458, 0.99806, 0.9983, 0.998, 0.99346, 0.9937, 0.99814, 0.9966, 1.0001, 0.9926, 0.99943, 0.9955, 0.9986, 0.99657, 0.9945, 0.99558, 0.99689, 0.9955, 0.9979, 0.9938, 1.00098, 0.9984, 0.9969, 0.99732, 0.99647, 0.9968, 0.9955, 0.9962, 0.9949, 0.99663, 0.9976, 0.99454, 0.9967, 0.99577, 1.001, 0.9987, 0.99516, 0.9986, 0.99164, 0.9974, 0.99902, 1.0001, 0.99032, 0.99848, 0.9928, 0.9934, 0.9939, 0.9976, 0.9982, 0.99748, 0.99773, 0.9964, 0.994, 0.99898, 0.9966, 0.99575, 0.998, 0.9937, 0.99517], \"xaxis\": \"x\", \"y\": [0.2802292104526322, 0.9455194119275858, 0.4978743212349556, 0.5289145624519528, 0.28439238707197784, 0.2033309570226689, 0.27345747478543325, 0.8322873304845451, 0.389055896812549, 0.3675472469853882, 0.5781933746273124, 0.7401955299744071, 0.44969671697605845, 0.4367887814338696, 0.31593955341667695, 0.3775624358859999, 0.19282181046294666, 0.048451763306065584, 0.6005928650583868, 0.032225376113695775, 0.427412413738938, 0.23973251442015217, 0.13890126550157303, 0.8613925272127, 0.329663916828638, 0.19359965390713213, 0.6827271716759634, 0.1960905505555538, 0.08135735686643118, 0.39737240301928484, 0.13902987396822816, 0.6514166433739288, 0.6994753721471061, 0.7140886736258081, 0.5021795028970708, 0.48743245558712556, 0.5731139673640956, 0.8820820642542792, 0.559972149724866, 0.5061565591493914, 0.5066810377847554, 0.833805652807593, 0.6979972163580744, 0.3177574231538272, 0.13068190592986567, 0.758876109553896, 0.5681062961269688, 0.715544821914063, 0.762062625203523, 0.4464438677531786, 0.20995974230910305, 0.5262622410710028, 0.39442669669188163, 0.2537324982988368, 0.6775437642744659, 0.23876321589577687, 0.6369158982934647, 0.38960060362966165, 0.6034323722874255, 0.7769991715799629, 0.15199748354041337, 0.5641412449951732, 0.7590466800561823, 0.5969347905931296, 0.1048362779837843, 0.7217824369593382, 0.2662339163773806, 0.16472378978351135, 0.37760124376932414, 0.7071736299639594, 0.3436862995931572, 0.8384434752264291, 0.3635333644877426, 0.7813188949129265, 0.7279369976219869, 0.5641098847382463, 0.3863964747623771, 0.9209913370067284, 0.1477144681640183, 0.8809374658555192, 0.6533168894759348, 0.8873477284758582, 0.3697306267878623, 0.28319023347825867, 0.5203701741750857, 0.5523747693308857, 0.6387521731780509, 0.3881380695009739, 0.8487896327149285, 0.4636606453307818, 0.8384434752264291, 0.558266603669778, 0.21657231888677728, 0.3635333644877426, 0.5512671313974766, 0.5051039398599867, 0.5827915753039158, 0.49441682850108926, 0.47309171914705017, 0.6262595591688196, 0.5508242483721094, 0.47332791509789995, 0.7117569366896692, 0.3933786516273859, 0.16465066549244003, 0.7490394132223248, 0.769261050002088, 0.7431932405995126, 0.3141000916210982, 0.723735045552473, 0.6484132891031948, 0.688519894019609, 0.40496704226994307, 0.5803736122960511, 0.6327801522745691, 0.45115706990411364, 0.37268733756108086, 0.9009693101135351, 0.06496389958099598, 0.44431713201158524, 0.39960831974332744, 0.8662156944598043, 0.31018081106061823, 0.5339551117365043, 0.33311273919547707, 0.400132762133902, 0.8528754522806217, 0.14419347879543085, 0.11672350429510901, 0.44556702529145975, 0.6160120899414699, 0.13766892845409207, 0.5517204028384314, 0.5232178919035022, 0.35483403305733974, 0.4900213704561591, 0.8854578072659228, 0.43084122675663034, 0.7601186327653665, 0.14072030431570776, 0.6186690618327106, 0.5245054232921349, 0.7326259458716644, 0.5690781983520095, 0.4018508815425063, 0.24877469563805235, 0.7952501197393639, 0.8766221356386195, 0.303451532996695, 0.5357745481647883, 0.7096524147827454, 0.20877177283968149, 0.8635610141758273, 0.46736762313881036, 0.6061151992073851, 0.113015272873705, 0.40446014603085867, 0.6332606063976143, 0.648705381890928, 0.42186952587750404, 0.8047913565308571, 0.3017058309841093, 0.38406990132164637, 0.33494193042999065, 0.19929939967121216, 0.8624919783238055, 0.528785836409086, 0.43084122675663034, 0.47042159929499583, 0.5061565591493914, 0.5759491569657543, 0.8468794444363914, 0.20342296359496542, 0.5170831534483544, 0.3666753044655067, 0.6131723001375537, 0.4410646109528086, 0.6903416342484309, 0.3866428492574258, 0.4636606453307818, 0.4525459302795702, 0.03199256040434073, 0.7029629492254846, 0.2433141614541866, 0.548755973819273, 0.3775060302547258, 0.06593060991448157, 0.8745624549148976, 0.22931948662359403, 0.27267688907931714, 0.589328430619086, 0.8007160756317941, 0.5525637789187225, 0.5008522318356121, 0.4556212410144909, 0.17391722008742402, 0.43574637053357784, 0.3237440077649342, 0.6071692164257629, 0.6925152430641841, 0.592675381607996, 0.43854150134957587, 0.43854150134957587, 0.42437112972565305, 0.8061118855433299, 0.35195592295594336, 0.7605370065149419, 0.38898578429124253, 0.67510953655807, 0.872979709380305, 0.710510994258769, 0.720290290780972, 0.4820787970895852, 0.42019280799979697, 0.4304380754474639, 0.25285023254778977, 0.3238056884730761, 0.39471961640683584, 0.09510031985475974, 0.367046376808582, 0.21500793651835448, 0.8705359023101334, 0.6100742529031461, 0.6226449432624995, 0.7279369976219869, 0.3643494054700089, 0.09992017521484964, 0.41475515148757036, 0.6462260464983366, 0.14102909592513518, 0.48949585696458414, 0.5239520436918008, 0.6084413884537807, 0.5655473856702703, 0.9517420512476797, 0.7489379515982664, 0.4647937384849751, 0.7915321263825208, 0.44112279258530757, 0.5734340256727429, 0.6604471727860799, 0.4845203185458914, 0.6968730453869196, 0.5315374962198609, 0.8685951485887234, 0.6242442748350044, 0.2912097196987059, 0.7725938221565348, 0.2067629769731588, 0.30221725334927335, 0.13129342562285412, 0.6467789443522378, 0.6994753721471061, 0.11825382206919556, 0.41022417118631593, 0.4882665226122541, 0.7732287086973071, 0.25374762405010176, 0.49441682850108926, 0.3723877205427743, 0.652330313245635, 0.43667799883041203, 0.5964718913578133, 0.55172276504346, 0.24113559934961917, 0.8243980268882987, 0.7263843594269437, 0.43535214809021755, 0.8721122798612579, 0.18723914490145582, 0.6486906676970999, 0.11576704656818047, 0.4328241622975616, 0.491481212420291, 0.5264345378086769, 0.33856526784971647, 0.2967410926251248, 0.581398831228375, 0.5973776665460488, 0.6195406102170065, 0.37782717658841725, 0.323061133240968, 0.17420808473594895, 0.19634770547538957, 0.46492234760650425, 0.49613167963272686, 0.5812209036149294, 0.6057291775435286, 0.63414717387345, 0.5702687187355167, 0.8604975146328253, 0.6309022132706124, 0.48732991249542923, 0.6887148870948692, 0.41581945293096145, 0.5706760596351739, 0.4831274653996314, 0.06684727567316755, 0.49090643211649887, 0.15191610726090596, 0.2711405311223577, 0.7653618545702112, 0.09266565137124261, 0.4554350627407873, 0.19698919164573708, 0.6930185080649685, 0.5227537922811563, 0.50434568709929, 0.7082092780767422, 0.46058046365566996, 0.6735723234187477, 0.4285936050615775, 0.323061133240968, 0.5168500865319015, 0.6161307914674419, 0.23456444218973552, 0.3192004782541023, 0.21968945907811915, 0.5028183230931117, 0.43371621376298963, 0.6744209213341115, 0.5940260419772637, 0.13783310426722128, 0.5136444387530009, 0.5508647999875032, 0.4955911012838212, 0.9814394195009358, 0.8260225289794664, 0.17965956338109995, 0.46844896472597397, 0.6048119589659149, 0.3289160319090978, 0.2454606394453749, 0.7497022835596558, 0.683485355417811, 0.20995974230910305, 0.23504578258460665, 0.37175956099497537, 0.4875530438829156, 0.24982584224249993, 0.6282829625348888, 0.4520795162158371, 0.8200372413039435, 0.12832513643528837, 0.5299630655130737, 0.29552777318700446, 0.24021937552346023, 0.5429028773737552, 0.6311869746243346, 0.4145977043912777, 0.39329840463575844, 0.39070335653410526, 0.4286990948130573, 0.846836560604146, 0.6880850122626078], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (curr)\", \"type\": \"scatter\", \"x\": [0.9934, 0.9979, 0.99234, 0.9932, 0.99686, 0.9927, 0.9926, 0.99362, 0.989435, 0.99239, 1.0, 0.9908, 0.98918, 0.99168, 0.98904, 0.9932, 0.99438, 0.99189, 0.999, 0.9903, 0.999, 0.9986, 0.992, 0.9935, 0.99541, 0.9893, 0.99326, 0.99146, 0.99144, 0.99165, 0.98889, 0.9957, 0.9992, 0.99449, 0.98871, 0.9936, 0.9914, 0.99488, 0.98988, 0.995, 0.99123, 0.99014, 0.9958, 0.9986, 0.9974, 0.99417, 0.9998, 0.9968, 0.9969, 0.9908, 0.9972, 0.9917, 0.9946, 0.9922, 0.99376, 1.0006, 0.998, 0.9916, 0.99795, 0.99652, 0.99724, 0.99727, 0.99206, 0.99406, 0.99534, 0.98964, 0.9966, 0.9951, 0.99236, 0.9945, 0.9986, 0.99064, 0.99815, 0.99313, 0.9983, 0.99668, 0.99922, 0.99207, 0.9949, 0.9975, 0.98972, 0.9923, 0.99492, 0.9914, 0.9965, 0.99536, 0.99652, 0.99456, 0.9932, 0.994, 0.99526, 0.9934, 0.9904, 0.98836, 0.9931, 0.99148, 0.99704, 0.99018, 0.9968, 0.99376, 0.993, 0.99596, 0.99438, 0.98882, 0.9986, 0.99566, 0.996, 0.99262, 0.99132, 0.99159, 0.99551, 1.0103, 0.99144, 0.9893, 0.99171, 0.9934, 0.99238, 0.9934, 0.99552, 0.9989, 0.99322, 0.98976, 0.99384, 0.99, 0.99638, 0.99649, 0.9981, 0.991, 0.9984, 0.98961, 0.98961, 0.9933, 0.98918, 1.00014, 0.9931, 1.0006, 0.99667, 0.9979, 0.99252, 0.9917, 0.9943, 0.995, 0.9994, 0.99576, 0.99745, 0.9916, 0.9993, 0.9991, 0.993, 0.9927, 0.99564, 0.99094, 0.997, 0.9987, 0.98954, 0.9912, 0.99676, 0.9947, 0.99232, 0.9979, 0.9898, 0.9983, 0.98934, 0.99394, 0.9992, 0.9913, 0.99458, 0.9959, 0.99554, 0.9932, 0.99099, 0.9923, 0.99665, 0.99738, 0.9907, 0.9927, 0.991, 0.99154, 0.98872, 0.99444, 0.9943, 0.99646, 0.9934, 1.0002, 0.9956, 0.99314, 0.999, 0.9908, 1.001, 0.9949, 0.99278, 0.9984, 0.99076, 0.99064, 0.9931, 0.9918, 0.99173, 0.9893, 0.9993, 0.99612, 0.9914, 0.99312, 0.9937, 0.9929, 0.99294, 0.9928, 0.9947, 0.999, 0.993, 0.99742, 0.99224, 0.98986, 0.9948, 0.98998, 1.0006, 0.99162, 0.99232, 0.9914, 0.9922, 0.99, 0.9914, 0.9956, 0.9975, 0.99544, 0.9994, 0.9971, 0.99134, 0.9941, 0.99617, 0.99194, 0.99842, 0.9951, 0.994, 0.9922, 0.9956, 1.0004, 0.99031, 0.99164, 0.99216, 0.9917, 0.9938, 0.99176, 0.99313, 0.9959, 0.9956, 0.996, 0.99807, 0.9986, 0.9931, 0.9984, 0.9948, 0.9983, 1.0006, 0.9912, 0.99581, 0.99676, 0.9933, 0.99095, 0.98924, 0.99067, 0.99498, 0.9946, 0.9931, 0.99435, 0.9938, 0.99055, 0.9912, 0.99516, 0.9958, 0.9968, 0.99454, 0.99182, 0.98878, 0.9988, 0.9962, 0.9977, 0.9932, 0.99498, 0.99154, 0.99512, 0.9979, 0.99088, 0.99161, 0.99494, 0.99158, 0.9963, 0.99188, 0.99035, 0.9945, 0.9924, 1.0003, 0.9994, 0.99655, 0.98974, 0.99152, 0.99296, 0.99782, 0.99173, 0.9975, 0.9924, 0.98944, 0.9932, 0.99184, 0.9912, 0.9976, 0.99534, 0.98986, 0.99287, 0.991, 0.99047, 0.99691, 0.99165, 0.99646, 0.99708, 0.9902, 0.99178, 0.9963, 0.99232, 0.9938, 0.9934, 0.99176, 0.99408, 0.99572, 0.9998, 1.0026, 0.99, 0.992, 0.99734, 0.9975, 0.99204, 0.99492, 0.99666, 0.9994, 0.997, 0.99288, 0.994, 0.9996, 0.99685, 0.9958, 0.99346, 0.99215, 0.99521, 0.9974, 0.9956, 0.9967, 0.99406, 0.9936, 0.9926, 0.9982, 0.99086, 0.9955, 0.99158, 0.99975, 0.9987, 0.9966, 0.9926, 0.99815, 0.99366, 0.99706, 0.99358, 0.99071, 0.99582, 0.9988, 0.9986, 0.99551, 0.9956, 0.99862, 0.9957, 0.99882, 0.99324, 0.98823, 0.9952, 0.992, 0.99043, 1.0002, 0.99655, 0.98942, 0.99356, 0.99553, 0.99315, 0.9954, 0.9928, 0.99226, 0.9958, 0.99, 0.9948, 0.992, 0.9898, 0.99354, 0.99186, 0.99404, 0.99922, 0.992, 0.9988, 0.9939, 0.99557, 0.9999, 0.99531, 0.9903, 0.992, 0.9938, 0.991, 0.9907, 0.99784, 0.98952, 0.998, 0.9952, 0.99148, 0.99792, 0.99058, 0.9974, 0.99282, 0.9923, 0.9927, 0.99519, 0.9967, 0.9951, 0.99683, 0.99165, 0.99176, 0.99006, 0.99002, 0.99736, 0.99612, 0.9987, 0.9908, 0.9946, 0.99445, 0.98965, 0.9904, 0.99086, 0.9934, 0.99046, 0.9902, 0.99774, 0.9984, 0.996, 0.9976, 0.991, 0.99808, 0.9986, 0.9934, 0.9963, 0.9954, 0.98956, 0.9988, 0.99084, 0.99314, 0.99522, 0.99739, 0.99704, 0.9959, 0.9941, 0.99458, 0.99971, 0.9919, 0.99544, 0.99094, 0.9992, 0.99416, 0.99189, 0.98936, 0.99352, 0.9984, 0.99276, 0.9939, 0.9926, 0.993, 0.9928, 0.9966, 0.9944, 0.9952, 0.99467, 0.9984, 0.9943, 0.99381, 0.9946, 0.99121, 0.99174, 0.99052, 0.9944, 0.9927, 0.9962, 0.99552, 0.9958, 0.994, 0.99184, 0.98916, 0.99581, 0.99522, 0.9957, 0.9998, 0.99444, 0.99599, 0.9944, 0.9982, 0.9925, 0.9979, 0.99331, 0.9997, 0.99018, 0.99517, 0.9986, 0.9908, 0.98815, 0.99862, 0.99566, 0.9906, 0.9984, 0.9916, 0.99418, 0.992, 0.98779, 0.9915, 0.9934, 0.99, 0.99824, 0.9986, 0.9956, 0.99439, 0.9887, 0.9968, 0.9906, 0.9965, 0.9901, 0.99772, 0.9948, 0.991, 0.9947, 0.9984, 0.99572, 0.99388, 0.9976, 0.989315, 0.99358, 0.9926, 0.9978, 0.996, 0.99636, 0.99784, 0.99316, 0.99339, 0.99724, 0.9921, 0.98845, 0.99437, 0.99708, 0.99614, 0.98992, 0.9986, 0.9997, 0.99362, 0.9928, 0.99552, 0.99115, 0.99508, 0.99556, 0.98964, 0.9903, 0.99221, 0.99676, 0.9954, 0.99825, 0.99546, 0.9948, 0.991, 0.9945, 0.99479, 0.98912, 0.99042, 0.9963, 0.99787, 0.9916, 0.99742, 0.9893, 0.99158, 0.9954, 0.99172, 0.9925, 0.9906, 0.99459, 0.9976, 0.99456, 0.9893, 0.9931, 0.9927, 0.9963, 0.997, 0.9931, 0.99514, 0.9968, 0.99354, 0.9948, 0.99261, 0.99454, 0.9994, 0.99198, 0.998, 0.9928, 0.99068, 0.99384, 0.99275, 0.9952, 0.9932, 0.99165, 0.99616, 0.99659, 0.9924, 0.99316, 0.992, 0.9928, 0.99532, 0.9936, 0.98939, 0.99616, 0.99367, 0.98892, 0.99596, 0.99784, 0.99267, 0.99347, 0.9919, 0.99089, 0.99425, 0.99226, 0.989465, 0.9902, 0.995, 0.99565, 0.99192, 0.9964, 1.0014, 0.9898, 0.9922, 0.99166, 0.99576, 0.9884, 0.99764, 0.9951, 0.9953, 0.98964, 1.0001, 0.99837, 0.9934, 0.998, 0.99586, 0.99014, 0.99455], \"xaxis\": \"x2\", \"y\": [0.33396714643252134, 0.5044440900554997, 0.8874896900044845, 0.4686759077780351, 0.23831547366416572, 0.571181601185031, 0.7785327680196316, 0.7290551099174598, 0.9581131370131553, 0.6801000322064107, 0.413367674560271, 0.6667140739211237, 0.9108229754863395, 0.9275086157065797, 0.9186958597750785, 0.7191871442695774, 0.8184457509658746, 0.8597940676688322, 0.7947045908306632, 0.8244149680645384, 0.42771531534877594, 0.5315376696882942, 0.7136291946100958, 0.5510697799054304, 0.6393262665313312, 0.9016582766249417, 0.8560880110261746, 0.8947361144883382, 0.9102326114023062, 0.840723585394272, 0.9264645566705582, 0.5105903360131552, 0.752648770317166, 0.5855954083225455, 0.8989214048388485, 0.5190750352404293, 0.9560713253502463, 0.7273157243430202, 0.9279672131348602, 0.640103147954212, 0.9158977434209615, 0.9035955072010529, 0.7140955379655831, 0.233508355491505, 0.7280578325574358, 0.8810827811902006, 0.3966129217085586, 0.15541760955422754, 0.5851621750323275, 0.9046111951917862, 0.4177213302712193, 0.7993763114768937, 0.6978409661933959, 0.6473373667551029, 0.770784382977056, 0.6500641275496193, 0.548949563093737, 0.9803199442553986, 0.6150775052067382, 0.391333092160729, 0.6966682278280982, 0.9426748402861506, 0.9170092977635526, 0.844625652038695, 0.5621782696252592, 0.8935808323282117, 0.6792214086077275, 0.6719996755401956, 0.5252591274442797, 0.7277045758687855, 0.4685752957996948, 0.8616549355667619, 0.347491516391863, 0.8224130863808733, 0.5340790568488665, 0.6711667658766297, 0.5277539611022016, 0.7226430813715845, 0.8140972745487615, 0.3280236940194876, 0.9543080196225542, 0.7752655593026647, 0.9223925066666061, 0.8588031784191832, 0.6345107008491314, 0.9393010047953068, 0.7897067132703484, 0.8608062836413887, 0.8367885032124018, 0.38555642305179116, 0.8611944449682004, 0.9172341012895443, 0.9206892306522243, 0.9500505925695213, 0.537798347971205, 0.9173482789702866, 0.44454351342386716, 0.8909704850569525, 0.7351932580165473, 0.6818328744935735, 0.7981559962965634, 0.7626532952948841, 0.807353254900461, 0.964411205143099, 0.4685752957996948, 0.6986526320119215, 0.1956969407137045, 0.9233481403380283, 0.8218375601976645, 0.8536269727611236, 0.5637680470866036, 0.42267134533232753, 0.93003590801509, 0.9364808605729722, 0.8816060831574614, 0.9663102962713933, 0.8345570787709832, 0.4997893986747249, 0.7921603237806832, 0.5586815647381762, 0.8622246464681924, 0.9828719612298703, 0.909295720392338, 0.9476267884443668, 0.5395521774612226, 0.901360886913609, 0.39410444510430487, 0.9262213132200262, 0.6627387433216217, 0.9629433821448677, 0.9614311452267452, 0.9802968012486629, 0.933760787013923, 0.34432718187202205, 0.63596173557573, 0.624364378916488, 0.7417789548241253, 0.7300918276682445, 0.6968315453320488, 0.7840233885688647, 0.8958841271622066, 0.5417426694559925, 0.7102579146160282, 0.6004345411549624, 0.515920701757342, 0.7587882454650442, 0.5029588531082266, 0.6887596776945688, 0.8642849605932809, 0.6469572639767995, 0.8103639651534781, 0.939764354405301, 0.694136577696587, 0.6593725303534554, 0.9646797005081557, 0.7979900311745153, 0.792123904710467, 0.8869579700149332, 0.7351250317969437, 0.5332560471205093, 0.9406873315653421, 0.39362685027924615, 0.9466602521798594, 0.8394325033041952, 0.6633442657978572, 0.8126408700417265, 0.7332457619716184, 0.08024070404520958, 0.8667774471450977, 0.6466814331404849, 0.912366876100516, 0.656670904734599, 0.8701678467707724, 0.8875925797813499, 0.9658725076002231, 0.7668332861852056, 0.8604440887473094, 0.934384507524058, 0.9605946056867319, 0.951253157591183, 0.5749289095213865, 0.6279243005170476, 0.7937202818717513, 0.7665301650725991, 0.700127941221274, 0.8531107444728586, 0.7947045908306632, 0.8870566665876504, 0.5476228787844645, 0.8410401833568673, 0.8736671065238262, 0.6519898659949606, 0.936943112068646, 0.9077719201719568, 0.8071889556778997, 0.8815615400732472, 0.8935313268029127, 0.8782891297971865, 0.5029588531082266, 0.5797201450332624, 0.9416775458320723, 0.5958140198486584, 0.2485157288688957, 0.932021424688801, 0.8531502837407814, 0.6344194678828672, 0.632587077283238, 0.9121448358615357, 0.5776545535910985, 0.9052765174806566, 0.8580390107418799, 0.8998644401112552, 0.6784536879503494, 0.9458342431661766, 0.21387363850783603, 0.9530348339880965, 0.7307391114165022, 0.7187682731289255, 0.6905635603269331, 0.9569274903702625, 0.9287384091375525, 0.3856984054091925, 0.504413920551941, 0.5389739198483336, 0.5921068831639978, 0.10702848140489757, 0.8772993497727819, 0.6361944011057532, 0.8952999713010865, 0.7069578609115064, 0.10632960186243966, 0.6465592619811017, 0.9116333268133815, 0.9210441535829985, 0.9483358221641291, 0.5800224234700003, 0.896951343689222, 0.8958659323404018, 0.8896861436466836, 0.7763142135369961, 0.778627444633172, 0.9274605647284293, 0.9167924025380936, 0.6422094408272838, 0.6363725079258666, 0.8694129796739031, 0.5693182102579236, 0.5315376696882942, 0.6814536952243052, 0.30089534057709466, 0.6689448970920832, 0.6419522618821227, 0.6500641275496193, 0.8221968069187356, 0.9285763346020383, 0.8495153837633861, 0.7135666997345446, 0.8850789772017983, 0.9128367188568884, 0.8709442503982084, 0.44714680104169846, 0.7147831401969469, 0.6814536952243052, 0.5823319261018008, 0.7718122970862826, 0.8925058444773368, 0.9249991097277733, 0.7849066379312727, 0.5120166815330335, 0.7863291630268572, 0.8171821177205619, 0.8878235148823457, 0.9813953955585096, 0.5009899161211654, 0.6787020040856314, 0.2747106808400709, 0.6998114428322438, 0.7191783799678735, 0.7566715075843347, 0.7741630673610131, 0.692871858980435, 0.8706970297938403, 0.9226518689226377, 0.619213859232465, 0.9620625840847012, 0.8161066853745392, 0.7984578805051198, 0.8987836568806694, 0.27900511725120763, 0.747868261422589, 0.8013372150606806, 0.4430395412241901, 0.8082746512504794, 0.9248395818955686, 0.8132668978866627, 0.7926355964369082, 0.7243101498981422, 0.8251498778038484, 0.865753667016409, 0.8784859927081519, 0.9613966942665844, 0.8380103992838959, 0.9376908870460701, 0.8505645904112248, 0.5317253080143199, 0.8756470416862959, 0.8823120896825394, 0.8920529250761863, 0.9565288857220365, 0.92576324319171, 0.8397457208604353, 0.8008835764985612, 0.7620555647282774, 0.6333567796033132, 0.8986985644274655, 0.8289197139212982, 0.38568054861828666, 0.4358764146033148, 0.7013568331933456, 0.5524769805317635, 0.8654015550049637, 0.9625385348003681, 0.4997035751430624, 0.5940434106189647, 0.29640429037896177, 0.9370396801623051, 0.7496358493500708, 0.8521916566704996, 0.7519935213994349, 0.8956127660014477, 0.7563308848917781, 0.5425355780301907, 0.1652985164032473, 0.5777375433929663, 0.5926841497777402, 0.5247451599628447, 0.6215406511606532, 0.646742228322253, 0.5236567091352762, 0.8105889943537302, 0.7614647275399787, 0.7272264480694343, 0.44438282424164377, 0.8051848688934031, 0.253979247575754, 0.8737269176380216, 0.7884186533408385, 0.5226162157005312, 0.7776146375974927, 0.8021344726910251, 0.6794204065079696, 0.8398669626756513, 0.3743394998756179, 0.6593725303534554, 0.41008410759983227, 0.8726624594592295, 0.31336232876890546, 0.6187135046228962, 0.9208146539756937, 0.8948907807194619, 0.9475948217130945, 0.7098971478357265, 0.41970311630379203, 0.5524505095188592, 0.6689295490636696, 0.39534528644804523, 0.6686700461744643, 0.6608417181144597, 0.6289006219381473, 0.8112353209803558, 0.9675531845963172, 0.3468688843876404, 0.8171815196180959, 0.9315945487332388, 0.7612383340144859, 0.43979370974717685, 0.9452166580978265, 0.810349906376065, 0.4979189466877109, 0.9054024939516333, 0.7506263221664519, 0.8595966107872783, 0.9041757536760852, 0.5120166815330335, 0.9246344940597735, 0.622364539475366, 0.7975959936185795, 0.9376528402833735, 0.8270495791839716, 0.7463426393970082, 0.8508295060861325, 0.5277539611022016, 0.7926521549058593, 0.8343380415579561, 0.7973631232158779, 0.5423298306356671, 0.6253812669856891, 0.9342151247863544, 0.9064095870896521, 0.8428584418618921, 0.5680191878381406, 0.8230633503438987, 0.857993972512287, 0.8312116035859974, 0.8886868130574391, 0.5695902702544526, 0.8750573328895943, 0.47134086624147714, 0.6082670858563528, 0.8571520978358925, 0.7006810412396262, 0.6001343818465046, 0.8680196363335714, 0.7833148206731655, 0.835330250744176, 0.6883000602161935, 0.4297997702781997, 0.7132181587745201, 0.941909753873568, 0.9298379484442667, 0.8950633078112005, 0.9652574497835966, 0.8593048115498744, 0.23022113319019433, 0.5548683876071567, 0.8789570823277312, 0.7176343272433334, 0.7135972690872326, 0.900955402304434, 0.89110615578316, 0.8021344726910251, 0.36734125225010755, 0.9233813125795639, 0.9269988231022361, 0.6021478506882372, 0.27064660283581765, 0.7595966254948197, 0.5317253080143199, 0.9626288904553877, 0.518871521713375, 0.4244151934213653, 0.8784852709235653, 0.667697582798242, 0.6791650855490978, 0.8659372985570389, 0.5217980090164113, 0.9757802673562255, 0.20769640873195563, 0.6900575067285889, 0.15051833553221247, 0.8476988333501053, 0.12043274000614122, 0.6546311715671466, 0.412102187638673, 0.6339696776630096, 0.6925917751558638, 0.8074446941396305, 0.8417042066658985, 0.4702054036006336, 0.8107456318417504, 0.934253622333564, 0.9671353887875448, 0.3776875782453083, 0.5133306968464912, 0.8279918435672958, 0.7295730380004212, 0.8398957027397556, 0.7470826509089123, 0.7722124156410631, 0.3944809481034696, 0.5801047158883857, 0.7134138458261836, 0.8265590446981121, 0.5836238058504062, 0.7538957359152121, 0.9708936701567454, 0.41507295289487073, 0.9039211350062085, 0.5109703825452502, 0.8880660412534, 0.6332514250278477, 0.703270618172154, 0.863031725372896, 0.9601349291832292, 0.5845797646527732, 0.8357575010967041, 0.9584406458449958, 0.8733333206292072, 0.4740801794177068, 0.5787650908025566, 0.38525623454815555, 0.5715075300165849, 0.951253157591183, 0.831291834366621, 0.6482062646591596, 0.5447536045265621, 0.8456825404777587, 0.5358725178581014, 0.8893400405584444, 0.5955893395860203, 0.9408369636189147, 0.7580589814818564, 0.4244151934213653, 0.7636885291754726, 0.9532052815091139, 0.6686700461744643, 0.39683939049776734, 0.8309978518015588, 0.06774730328187532, 0.8934061610794648, 0.9459413258233057, 0.8507977517004935, 0.9694554821790147, 0.8640493534313302, 0.8409166048571896, 0.9059760843724536, 0.7278052027863667, 0.8952246802917138, 0.39534528644804523, 0.9558702864115934, 0.9178754126151818, 0.7504628435478695, 0.7568870052952757, 0.32046258648166903, 0.9712495894387816, 0.7125870341029702, 0.8286889773580812, 0.929575727770858, 0.8422483936479932, 0.60065365322741, 0.5775074082600717, 0.7505976846167132, 0.5317253080143199, 0.9590110623565244, 0.9651712957082627, 0.7333643603414158, 0.7757825668725274, 0.8928390517037824, 0.2578168736401774, 0.5355488836719776, 0.8408692583280314, 0.7849780542174357, 0.8711681462620556, 0.8447990405440073, 0.9571933326515756, 0.9307123551507692, 0.6421242495412457, 0.9239207054420927, 0.9336219461922934, 0.4244151934213653, 0.5673643045526261, 0.8301442064454496, 0.528471943574542, 0.8835542071774324, 0.8820947700128993, 0.4561713647735051, 0.584381944856391, 0.9493936477483658, 0.7816316980556022, 0.7770145472448273, 0.8495153837633861, 0.8318035560268552, 0.5220388622338656, 0.8589980209217414, 0.21216021099657945, 0.8782303617207965, 0.901850575196968, 0.7683760396387002, 0.9559989503713009, 0.938411491366706, 0.7225398931917507, 0.5918361617892179, 0.8596378534897678, 0.8816239240572568, 0.9296844522785247, 0.8299758417251202, 0.7538846798551382, 0.931253582726863, 0.6902425303942638, 0.9299571155275668, 0.35461708236434614, 0.6119587629530028, 0.8979450471026776, 0.8782891297971865, 0.6144930729026484, 0.5601837238662909, 0.4230258756549153, 0.5115702372514986, 0.6133200318312215, 0.8287048127179734, 0.42887934024879554, 0.5543929044930882, 0.5414149972460248, 0.7453725251924848, 0.6522898344923613, 0.6445138145159856, 0.9212190995841192, 0.6991293681294938, 0.9188224881967051, 0.9444881948020799, 0.8399825546316605, 0.6440269003431431, 0.45260210695563535, 0.6678228102737954, 0.8535669746933884, 0.23469888428232324, 0.7581156815660375, 0.8329520097124233, 0.5886389680190937, 0.4250130050586104, 0.290761161529129, 0.9065968169685268, 0.39757013049667705, 0.9584529405260903, 0.24804178200132845, 0.8400605958344816, 0.9562762484868867, 0.5923100188758571, 0.5355488836719776, 0.6866862751474886, 0.753715093249364, 0.9302702282582556, 0.8405005145861136, 0.7758456574858743, 0.8270123797965384, 0.9270997487744173, 0.8779999285967196, 0.6350604679157676, 0.9057987369792326, 0.9732730617650076, 0.28007269673131574, 0.5393237551960537, 0.9509318156255189, 0.8055358405733448, 0.8512314640165554, 0.6752183046546253, 0.9766791413071304, 0.26893819095773785, 0.5105552073939665, 0.7964242570425004, 0.9159462749375985, 0.46312559485344046, 0.7889853219989779, 0.5331772070153998, 0.6250130361556073, 0.5340700079782073, 0.8981158701031157, 0.8424802355113449], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [0.9966, 0.99556, 0.9939, 0.99126, 0.9996, 1.001, 0.99565, 0.998, 0.99692, 0.9997, 0.9956, 0.9918, 0.99513, 0.99587, 0.99869, 1.0, 0.9959, 1.0004, 0.99253, 0.9905, 0.9918, 0.9996, 0.9946, 0.9978, 0.99009, 0.9926, 0.997, 0.99898, 0.99215, 0.9931, 0.99839, 0.9944, 0.99798, 0.9963, 0.9926, 0.99341, 0.998, 0.9968, 0.9953, 0.9934, 0.9918, 0.99494, 0.9968, 0.9982, 0.992, 0.99212, 0.9976, 0.99616, 0.99911, 0.99244, 0.99454, 1.0011, 0.9937, 0.99612, 0.9976, 0.9963, 0.99748, 1.00315, 0.9966, 0.99848, 1.00315, 0.9976, 0.9962, 1.0006, 0.99657, 0.99592, 0.99702, 0.9978, 0.9965, 0.9956, 0.99654, 0.99093, 0.99212, 0.99694, 0.9938, 0.99174, 1.0, 0.9918, 0.99345, 0.99717, 0.9966, 0.99576, 0.9972, 0.9968, 0.9938, 0.9923, 0.9967, 0.99976, 0.992, 0.9978, 0.9951, 0.9936, 0.998, 0.9991, 0.99683, 0.99476, 0.9958, 0.9986, 0.9972, 0.99596, 0.99918, 0.99479, 1.0, 0.9955, 0.9954, 0.99584, 0.9984, 0.99448, 0.99416, 0.9989, 0.9964, 0.9983, 0.99712, 0.99362, 0.9926, 0.99669, 0.99676, 0.99471, 0.9955, 0.9958, 0.9962, 0.99182, 0.9946, 0.996, 0.99546, 0.99915, 0.99111, 0.9997, 0.99546, 0.9938, 0.98876, 0.99734, 0.9991, 0.992, 0.99694, 0.9976, 0.993, 0.9976, 0.99681, 0.99494, 0.9938, 0.9938, 0.99239, 0.9939, 0.9992, 0.99677, 0.99176, 0.9958, 0.9964, 0.99568, 0.9932, 0.99942, 0.9973, 0.9958, 0.99344, 0.9928, 0.99481, 0.99584, 0.99696, 0.9988, 0.99745, 0.99872, 0.99212, 0.9982, 0.9974, 0.9944, 0.9904, 0.99264, 0.99299, 0.99534, 0.9997, 0.9966, 0.9934, 0.99204, 0.9964, 0.98918, 0.9923, 0.99775, 0.99742, 0.99642, 0.9941, 0.99688, 1.0004, 0.9927, 0.99705, 0.99154, 0.9958, 0.9989, 0.9936, 0.99545, 0.99743, 0.99524, 0.99555, 0.99173, 0.9976, 0.9961, 0.9936, 0.99382, 0.99947, 0.997, 0.9962, 0.9976, 0.9983, 0.9986, 0.98993, 0.99922, 0.9958, 0.9994, 0.9974, 0.9977, 0.998, 0.99458, 0.99552, 0.99194, 0.9953, 0.99084, 0.9973, 0.9966, 0.99288, 0.9928, 0.9975, 0.9961, 0.9982, 0.9952, 0.9934, 0.996, 0.998, 0.9961, 0.99366, 0.99138, 0.9991, 0.99305, 1.0001, 0.9981, 0.9965, 0.99628, 0.99164, 0.99193, 0.9991, 0.9931, 0.99771, 0.9993, 0.99176, 0.9962, 0.99048, 0.9944, 0.9936, 0.99469, 0.9986, 0.99362, 0.9978, 0.99884, 0.9958, 0.99779, 0.9927, 0.99924, 0.9962, 0.9958, 0.99692, 0.99818, 0.99732, 0.99471, 0.9978, 0.9978, 0.99402, 0.99211, 0.9956, 0.99176, 0.99032, 0.99488, 0.99069, 0.9994, 0.9998, 0.9955, 0.99514, 0.9929, 0.99907, 0.998, 0.9958, 0.9968, 0.9983, 0.9993, 0.99047, 0.99202, 0.9986, 0.99185, 0.99249, 0.9943, 0.9911, 0.99726, 0.99527, 0.9944, 0.99626, 0.99746, 0.99304, 0.9984, 0.99274, 0.9955, 0.99804, 0.9986, 0.99182, 0.9996, 0.99454, 0.997, 0.99718, 0.9904, 0.9986, 0.9962, 1.0004, 0.9954, 0.9965, 0.99516, 0.9944, 0.9998, 0.9944, 0.998, 0.9938, 0.99558, 0.9956, 0.9932, 0.997, 0.9954, 0.99773, 0.9953, 0.9994, 0.9963, 0.9991, 0.9969, 0.9956, 0.99212, 0.9967, 0.9968, 0.9918, 0.9914, 0.9964, 0.992, 0.99198, 0.99271, 1.0001, 0.9952, 0.9958, 0.9978, 0.9953, 0.99652, 0.9994, 0.99242, 0.9979, 0.9966, 1.0001, 0.9932, 0.99372, 0.9917], \"xaxis\": \"x2\", \"y\": [0.8142007211296887, 0.07257977436397642, 0.7430932382113554, 0.8214862427787604, 0.5698848321031316, 0.6048119589659149, 0.6466669219762841, 0.14510080060429495, 0.2250304680670007, 0.28492472637839966, 0.42061632734231896, 0.8281252124183194, 0.49622399336621903, 0.3482895521074759, 0.4678833354511545, 0.5708968386647719, 0.37048677721847617, 0.553632248395139, 0.8702137350251022, 0.42186952587750404, 0.8696774950675754, 0.5410576963494411, 0.3971326977900686, 0.3275001196198921, 0.9448289227093116, 0.7109941475090589, 0.41925580570138304, 0.3675472469853882, 0.6721911818800557, 0.5562207270314473, 0.5262426608517637, 0.3244609607385458, 0.15056615442564347, 0.15676979724311627, 0.6037730696030339, 0.6342511279653397, 0.021947035536558718, 0.32429164429335744, 0.5678746850743716, 0.3571680467137555, 0.7755534309390314, 0.3240287891037917, 0.699424662214302, 0.5151532452376618, 0.7564675819717819, 0.38343591026479057, 0.19811005648518398, 0.3168419703358067, 0.5315947262677626, 0.9269044449273315, 0.8260225289794664, 0.451791899378283, 0.830516920403184, 0.47128602930186, 0.19027823806377472, 0.5181346713949518, 0.29552777318700446, 0.45414400334446664, 0.39329840463575844, 0.42327932510626076, 0.45838907164509224, 0.2233864252642039, 0.3628419195926303, 0.6709353200988277, 0.46058046365566996, 0.25551237833043455, 0.7234147543269824, 0.1481282262733752, 0.314935793994079, 0.20050531530561894, 0.37453315488553635, 0.701015529968035, 0.6343341418527783, 0.1739320900588749, 0.734996253073231, 0.8172229478314255, 0.3598554146739685, 0.7121055211356295, 0.2620604909731644, 0.3421138035730516, 0.6951268813066005, 0.35208221297891723, 0.452099210446082, 0.18907620085798427, 0.5444201651108793, 0.6484058972837882, 0.3258186925596978, 0.5963383680780668, 0.6202666247822538, 0.576738593946626, 0.5054992484109841, 0.2972245631729925, 0.6844333356791464, 0.42629475072919953, 0.4405153833121037, 0.01207867704715336, 0.7609288944606691, 0.23951123982998349, 0.09310514674080905, 0.5084920166510624, 0.33067609257366243, 0.36481899584296196, 0.5708968386647719, 0.3194802059637459, 0.14207297841267416, 0.5776897120055972, 0.2026163425795633, 0.37909000048748537, 0.38206764842015895, 0.41324683104354176, 0.17826143731067332, 0.42339414872454434, 0.39148091864802853, 0.3511350413575442, 0.8053393751847749, 0.5937005322868365, 0.6849942580153355, 0.38930033076762494, 0.5168500865319015, 0.5699073288866824, 0.5376087249833421, 0.8185832461647057, 0.25950508036415604, 0.20394483716883388, 0.3303044530853749, 0.2528102968078532, 0.8477719856767125, 0.5217124250004609, 0.3303044530853749, 0.5382885532339231, 0.9625763866028243, 0.6536174904341296, 0.42629475072919953, 0.6458781618432388, 0.46574001023909845, 0.37268733756108086, 0.8180085473348132, 0.35493594975273335, 0.2423640089427935, 0.3636330633241046, 0.6421622311157122, 0.5444201651108793, 0.7396308412796291, 0.9036153464846048, 0.21101569987323432, 0.6004024464464508, 0.7595861882737439, 0.486549602332862, 0.2379839758891197, 0.5147825233229498, 0.2065932277190248, 0.4342628292980428, 0.5940848250235929, 0.4857193175270624, 0.5332610244722983, 0.5402196969638672, 0.8578846895389459, 0.5290225674595067, 0.6074669506688956, 0.1847839155105034, 0.3581391437324269, 0.4304380754474639, 0.8410120374942113, 0.5810086483513661, 0.19026233744636453, 0.7223494520380469, 0.8589928738613049, 0.8374625942163022, 0.781203852328267, 0.73983195178881, 0.41156537259256004, 0.7482873396984137, 0.44431713201158524, 0.7113673874393347, 0.49869552495399233, 0.7627102864663872, 0.37193390769028617, 0.37187810520956766, 0.3773291605703562, 0.8719651627687759, 0.6218762459828849, 0.3781393537983126, 0.553632248395139, 0.47624084907999176, 0.774399353278846, 0.5840424935194366, 0.5601025471409736, 0.6186690618327106, 0.620611700356168, 0.5755798886129706, 0.15047650536569443, 0.5530049338021776, 0.6597439619439023, 0.8300222117931148, 0.3490158529243493, 0.4410646109528086, 0.5067909967309752, 0.5851482063434866, 0.7149827463187939, 0.4849259975950144, 0.2094210588097294, 0.33399024531412796, 0.4083143545243069, 0.7497022835596558, 0.7817929239213606, 0.7637421953724776, 0.3825655414920891, 0.6611482494098961, 0.19022241257108333, 0.44972084577511023, 0.5476732603321269, 0.4831274653996314, 0.5077048340566679, 0.7289504589448288, 0.4379810490617926, 0.8017221455714771, 0.6434673631716396, 0.5059779734745421, 0.6065367192264559, 0.650368705032214, 0.34567471266024347, 0.39561589000187136, 0.3427787545601037, 0.4676404271158623, 0.5332283386400669, 0.4519108142444285, 0.40662831629925006, 0.42305576187259053, 0.22032895172816622, 0.5278715769330472, 0.43679486629948455, 0.743933429392776, 0.5269515041023835, 0.5008800654866953, 0.214168174561682, 0.44879088851457377, 0.683485355417811, 0.807753104897186, 0.42629475072919953, 0.8502951424821861, 0.17421175568219957, 0.25491371883486935, 0.7595861882737439, 0.6571724132942184, 0.7813188949129265, 0.5626906653340306, 0.8674288259883418, 0.6600514650598344, 0.4827749661719035, 0.5456147119159479, 0.39827550056677263, 0.27323823737433794, 0.695896529362927, 0.5048820477254727, 0.5422349097465021, 0.5610936746718964, 0.6571724132942184, 0.3088751107498249, 0.45428761266464013, 0.6604471727860799, 0.43371621376298963, 0.6171893197168647, 0.8100511550343341, 0.8100511550343341, 0.605832578461134, 0.5526475584669951, 0.4275055171336787, 0.8734720021260204, 0.8508295378350301, 0.5807723706867254, 0.8272749548927728, 0.2670652478909882, 0.7020144194675465, 0.4615566916191992, 0.7055847950248242, 0.43389869234556755, 0.6071692164257629, 0.3496825637352313, 0.23676491619791426, 0.7057755976874825, 0.15539001443149586, 0.6187538615870153, 0.8735882828904331, 0.30049486749739024, 0.23191705420611952, 0.8913917397916864, 0.4977157214618499, 0.16961113509580228, 0.8485494795219795, 0.4760032757956232, 0.5053843099270294, 0.2676015269871764, 0.3627664421236291, 0.15146266807038725, 0.7898179638281774, 0.6145296307645981, 0.3790380236797623, 0.3003532640340299, 0.6086112016774773, 0.39906793889171593, 0.8185832461647057, 0.6715802865662828, 0.8260225289794664, 0.6056902064850618, 0.400132762133902, 0.39471961640683584, 0.6449859309106076, 0.5637152910565628, 0.39949420960438964, 0.5490401551410112, 0.4398875418860128, 0.30916577334906253, 0.7093303227687476, 0.4562508424819209, 0.40444044759428516, 0.5773483646962835, 0.447777692034652, 0.4961542215384683, 0.32474312180562226, 0.21192693199409943, 0.9056903490933487, 0.5013816399998683, 0.758876109553896, 0.6364928148646596, 0.2952804752502578, 0.4748951900520853, 0.43679486629948455, 0.5479962315186364, 0.4728142838839701, 0.6343341418527783, 0.12248807650217919, 0.5052525886146573, 0.8281252124183194, 0.8930081609652758, 0.36283726088930296, 0.8098196742550625, 0.656477404357746, 0.193885049884708, 0.5269515041023835, 0.49858469647139786, 0.32780472036158087, 0.24927512797396847, 0.6148718578314069, 0.10691527318901187, 0.136775438340409, 0.8489192718114075, 0.2600203086082801, 0.8142007211296887, 0.5269515041023835, 0.7966615933629455, 0.5633234794197017, 0.767479452333631], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"density\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"density\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}}, {\"id\": \"density_bad\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (ref)\", \"type\": \"scatter\", \"x\": [0.9976, 0.991, 0.9936, 0.9949, 0.99922, 0.9976, 0.9944, 0.99648, 0.996, 0.99898, 0.99914, 0.9927, 0.9982, 0.99244, 0.9932, 0.99459, 0.99655, 0.994, 0.99904, 0.9964, 0.9927, 0.9964, 0.9958, 0.99242, 0.9979, 0.997, 0.99403, 0.9979, 0.99741, 0.99266, 0.9969, 0.9932, 0.9965, 0.9948, 0.9975, 0.9958, 0.9935, 0.99519, 0.9971, 0.9958, 0.99792, 0.99828, 0.9928, 0.9941, 0.99593, 0.99773, 0.9925, 0.99254, 0.99628, 0.9957, 0.9974, 0.99824, 0.9951, 1.0002, 0.99699, 0.9988, 0.9959, 0.99212, 0.9926, 1.0001, 0.9972, 0.998, 0.99334, 0.997, 0.99733, 0.992, 0.9964, 0.9956, 0.9973, 0.993, 0.9963, 0.99817, 0.9976, 0.99048, 0.99166, 0.99208, 0.99745, 0.9941, 0.99892, 0.99152, 0.99397, 0.9948, 0.9957, 0.99585, 0.99382, 0.99699, 0.995, 0.9932, 0.9941, 0.9937, 0.99817, 0.9961, 0.9964, 0.9976, 1.0, 0.99548, 0.998, 0.996, 0.99528, 0.9998, 0.9982, 0.9982, 0.99405, 1.0008, 0.99625, 0.9973, 0.99684, 0.9902, 0.9963, 0.99502, 0.9956, 0.9937, 0.9958, 0.9949, 0.99634, 0.99642, 0.9976, 0.99001, 0.9985, 0.9934, 0.9976, 0.99374, 0.9968, 0.99687, 0.998, 0.99718, 0.99437, 0.9963, 0.9959, 0.99579, 0.9939, 1.001, 0.99478, 0.99604, 0.99534, 0.9946, 0.9956, 0.9986, 0.99138, 0.9962, 0.9989, 0.99582, 0.9904, 0.99736, 0.99287, 0.9932, 0.9924, 0.99678, 0.9981, 0.9972, 0.9912, 0.99783, 0.9907, 0.99669, 0.99317, 0.99656, 1.001, 0.9969, 0.9938, 0.9905, 0.9928, 0.9988, 0.9981, 0.99429, 0.99587, 0.9942, 0.99504, 0.9986, 0.99738, 0.9958, 0.99537, 0.98956, 0.9981, 0.99873, 0.9966, 0.99682, 0.9961, 0.99166, 0.9968, 0.9937, 0.99308, 0.9964, 0.9924, 0.9946, 0.9982, 0.99512, 0.9994, 0.99098, 0.99642, 0.9966, 0.9937, 0.992, 0.9968, 0.99036, 0.99548, 0.99672, 0.9968, 0.99388, 0.99907, 0.99255, 0.9937, 1.00242, 1.00242, 0.9966, 0.99234, 0.99625, 0.99184, 0.9982, 0.9942, 0.9897, 0.994, 0.99168, 0.9952, 0.9977, 0.99872, 0.99772, 0.9981, 0.9904, 0.9993, 0.9958, 0.99578, 0.99026, 0.9982, 0.9941, 0.99166, 0.99627, 0.9932, 1.0005, 0.9934, 0.998, 0.9944, 0.9938, 0.9957, 1.00044, 0.99026, 0.99244, 1.00118, 0.994, 0.99314, 0.9972, 0.99818, 0.99561, 0.99839, 0.9948, 0.99026, 0.99734, 0.9978, 0.99273, 0.99602, 0.9978, 1.001, 0.9944, 0.9965, 0.9966, 0.99434, 0.9987, 0.99496, 0.9934, 0.996, 1.0004, 0.9926, 0.9946, 0.998, 0.99238, 0.9954, 0.99479, 0.99362, 0.99296, 0.99633, 0.9977, 1.00241, 0.9984, 0.994, 0.99611, 0.9948, 0.99794, 0.9956, 0.99794, 0.99588, 0.9922, 0.9978, 0.99689, 0.9953, 0.99572, 0.9942, 0.99582, 0.9959, 0.9972, 0.9921, 0.9955, 0.9918, 0.9962, 0.9924, 0.99076, 0.99782, 0.99709, 0.99458, 0.99806, 0.9983, 0.998, 0.99346, 0.9937, 0.99814, 0.9966, 1.0001, 0.9926, 0.99943, 0.9955, 0.9986, 0.99657, 0.9945, 0.99558, 0.99689, 0.9955, 0.9979, 0.9938, 1.00098, 0.9984, 0.9969, 0.99732, 0.99647, 0.9968, 0.9955, 0.9962, 0.9949, 0.99663, 0.9976, 0.99454, 0.9967, 0.99577, 1.001, 0.9987, 0.99516, 0.9986, 0.99164, 0.9974, 0.99902, 1.0001, 0.99032, 0.99848, 0.9928, 0.9934, 0.9939, 0.9976, 0.9982, 0.99748, 0.99773, 0.9964, 0.994, 0.99898, 0.9966, 0.99575, 0.998, 0.9937, 0.99517], \"xaxis\": \"x\", \"y\": [0.7197707895473677, 0.05448058807241418, 0.5021256787650443, 0.4710854375480472, 0.7156076129280222, 0.7966690429773311, 0.7265425252145667, 0.16771266951545494, 0.610944103187451, 0.6324527530146118, 0.42180662537268765, 0.2598044700255929, 0.5503032830239416, 0.5632112185661304, 0.6840604465833231, 0.6224375641140001, 0.8071781895370533, 0.9515482366939344, 0.3994071349416132, 0.9677746238863042, 0.572587586261062, 0.7602674855798478, 0.861098734498427, 0.1386074727873, 0.6703360831713621, 0.8064003460928679, 0.3172728283240366, 0.8039094494444462, 0.9186426431335688, 0.6026275969807151, 0.8609701260317718, 0.3485833566260712, 0.3005246278528939, 0.2859113263741919, 0.4978204971029292, 0.5125675444128744, 0.4268860326359044, 0.11791793574572085, 0.440027850275134, 0.4938434408506086, 0.4933189622152446, 0.166194347192407, 0.30200278364192557, 0.6822425768461728, 0.8693180940701344, 0.24112389044610405, 0.43189370387303117, 0.284455178085937, 0.23793737479647703, 0.5535561322468214, 0.7900402576908969, 0.47373775892899717, 0.6055733033081183, 0.7462675017011632, 0.32245623572553406, 0.7612367841042231, 0.36308410170653527, 0.6103993963703384, 0.3965676277125745, 0.2230008284200371, 0.8480025164595866, 0.43585875500482685, 0.24095331994381775, 0.4030652094068704, 0.8951637220162157, 0.2782175630406618, 0.7337660836226194, 0.8352762102164887, 0.6223987562306759, 0.2928263700360406, 0.6563137004068428, 0.16155652477357085, 0.6364666355122575, 0.2186811050870735, 0.27206300237801306, 0.4358901152617537, 0.6136035252376228, 0.07900866299327158, 0.8522855318359817, 0.11906253414448076, 0.3466831105240652, 0.11265227152414181, 0.6302693732121377, 0.7168097665217413, 0.4796298258249143, 0.4476252306691143, 0.3612478268219491, 0.611861930499026, 0.15121036728507153, 0.5363393546692182, 0.16155652477357085, 0.441733396330222, 0.7834276811132227, 0.6364666355122575, 0.44873286860252337, 0.4948960601400133, 0.4172084246960842, 0.5055831714989107, 0.5269082808529498, 0.3737404408311804, 0.4491757516278906, 0.5266720849021, 0.2882430633103308, 0.6066213483726142, 0.83534933450756, 0.2509605867776752, 0.230738949997912, 0.25680675940048736, 0.6858999083789018, 0.27626495444752697, 0.35158671089680515, 0.311480105980391, 0.5950329577300569, 0.4196263877039489, 0.3672198477254309, 0.5488429300958864, 0.6273126624389191, 0.0990306898864649, 0.935036100419004, 0.5556828679884147, 0.6003916802566726, 0.1337843055401957, 0.6898191889393818, 0.46604488826349566, 0.6668872608045229, 0.5998672378660981, 0.14712454771937833, 0.8558065212045691, 0.883276495704891, 0.5544329747085402, 0.38398791005853006, 0.8623310715459079, 0.4482795971615686, 0.4767821080964978, 0.6451659669426603, 0.5099786295438409, 0.11454219273407718, 0.5691587732433696, 0.2398813672346335, 0.8592796956842923, 0.38133093816728936, 0.4754945767078651, 0.2673740541283356, 0.43092180164799054, 0.5981491184574936, 0.7512253043619477, 0.20474988026063612, 0.12337786436138054, 0.6965484670033051, 0.4642254518352117, 0.29034758521725457, 0.7912282271603185, 0.1364389858241727, 0.5326323768611896, 0.3938848007926149, 0.886984727126295, 0.5955398539691413, 0.3667393936023857, 0.35129461810907203, 0.578130474122496, 0.1952086434691429, 0.6982941690158907, 0.6159300986783536, 0.6650580695700093, 0.8007006003287879, 0.13750802167619447, 0.47121416359091395, 0.5691587732433696, 0.5295784007050042, 0.4938434408506086, 0.4240508430342457, 0.1531205555636086, 0.7965770364050346, 0.4829168465516456, 0.6333246955344933, 0.38682769986244625, 0.5589353890471914, 0.30965836575156913, 0.6133571507425741, 0.5363393546692182, 0.5474540697204298, 0.9680074395956593, 0.29703705077451537, 0.7566858385458134, 0.451244026180727, 0.6224939697452743, 0.9340693900855184, 0.1254375450851024, 0.770680513376406, 0.7273231109206828, 0.410671569380914, 0.19928392436820586, 0.44743622108127745, 0.4991477681643879, 0.5443787589855091, 0.826082779912576, 0.5642536294664222, 0.6762559922350657, 0.39283078357423706, 0.3074847569358159, 0.40732461839200396, 0.5614584986504241, 0.5614584986504241, 0.575628870274347, 0.1938881144566701, 0.6480440770440566, 0.23946299348505806, 0.6110142157087575, 0.32489046344192996, 0.127020290619695, 0.28948900574123104, 0.27970970921902805, 0.5179212029104148, 0.579807192000203, 0.5695619245525361, 0.7471497674522103, 0.6761943115269239, 0.6052803835931642, 0.9048996801452402, 0.632953623191418, 0.7849920634816455, 0.12946409768986655, 0.3899257470968539, 0.37735505673750047, 0.27206300237801306, 0.6356505945299911, 0.9000798247851504, 0.5852448485124296, 0.3537739535016634, 0.8589709040748648, 0.5105041430354158, 0.4760479563081992, 0.3915586115462193, 0.4344526143297297, 0.04825794875232026, 0.25106204840173363, 0.5352062615150248, 0.2084678736174792, 0.5588772074146924, 0.42656597432725707, 0.3395528272139201, 0.5154796814541086, 0.30312695461308037, 0.4684625037801391, 0.13140485141127656, 0.37575572516499556, 0.7087902803012941, 0.22740617784346517, 0.7932370230268412, 0.6977827466507267, 0.8687065743771458, 0.3532210556477622, 0.3005246278528939, 0.8817461779308045, 0.5897758288136841, 0.5117334773877459, 0.2267712913026929, 0.7462523759498982, 0.5055831714989107, 0.6276122794572256, 0.34766968675436505, 0.563322001169588, 0.4035281086421867, 0.44827723495654004, 0.7588644006503809, 0.17560197311170134, 0.2736156405730563, 0.5646478519097824, 0.12788772013874206, 0.8127608550985441, 0.35130933230290007, 0.8842329534318195, 0.5671758377024384, 0.508518787579709, 0.4735654621913231, 0.6614347321502836, 0.7032589073748752, 0.418601168771625, 0.40262233345395115, 0.38045938978299354, 0.6221728234115828, 0.6769388667590319, 0.825791915264051, 0.8036522945246104, 0.5350776523934957, 0.5038683203672731, 0.4187790963850706, 0.3942708224564714, 0.36585282612655, 0.42973128126448334, 0.1395024853671747, 0.36909778672938764, 0.5126700875045708, 0.31128511290513083, 0.5841805470690385, 0.42932394036482613, 0.5168725346003686, 0.9331527243268325, 0.5090935678835011, 0.848083892739094, 0.7288594688776423, 0.23463814542978878, 0.9073343486287574, 0.5445649372592127, 0.8030108083542629, 0.30698149193503155, 0.47724620771884374, 0.49565431290071005, 0.29179072192325783, 0.53941953634433, 0.32642767658125227, 0.5714063949384225, 0.6769388667590319, 0.48314991346809855, 0.3838692085325581, 0.7654355578102645, 0.6807995217458978, 0.7803105409218809, 0.4971816769068883, 0.5662837862370104, 0.32557907866588853, 0.4059739580227363, 0.8621668957327787, 0.4863555612469991, 0.44913520001249685, 0.5044088987161788, 0.018560580499064172, 0.17397747102053363, 0.8203404366189, 0.531551035274026, 0.3951880410340851, 0.6710839680909022, 0.7545393605546251, 0.25029771644034415, 0.31651464458218903, 0.7900402576908969, 0.7649542174153934, 0.6282404390050247, 0.5124469561170844, 0.7501741577575001, 0.3717170374651112, 0.5479204837841629, 0.1799627586960565, 0.8716748635647116, 0.4700369344869263, 0.7044722268129955, 0.7597806244765397, 0.4570971226262448, 0.3688130253756654, 0.5854022956087224, 0.6067015953642416, 0.6092966434658947, 0.5713009051869427, 0.15316343939585397, 0.31191498773739224], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [0.992, 0.9964, 0.99097, 0.99511, 0.9934, 0.99558, 0.98894, 0.9909, 0.9902, 0.98994, 0.9926, 0.99458, 0.9951, 1.0, 0.9955, 0.9954, 0.99, 1.0032, 0.99002, 0.99364, 0.99566, 0.99175, 0.9928, 0.99085, 0.9938, 0.9938, 0.98742, 0.9955, 0.9942, 0.9892, 0.9911, 0.99728, 0.9914, 0.99035, 0.99076, 0.99855, 0.9969, 0.98892, 0.99015, 0.99089, 0.98954, 0.9945, 0.9971, 0.99245, 0.99676, 0.9972, 0.9978, 0.992, 0.9962, 0.9906, 0.9978, 0.9991, 0.98998, 0.99304, 0.992, 0.9979, 0.99201, 0.98941, 0.992, 0.992, 0.99758, 0.99016, 0.991, 0.993, 1.001, 0.9984, 0.99064, 0.9941, 0.9954, 0.99146, 0.9918, 0.98934, 0.99278, 0.99316, 0.9965, 0.99556, 0.9973, 0.98928, 0.99638, 0.9916, 0.995, 0.99012, 0.99109, 0.997, 0.9935, 0.99096, 0.9918, 0.9982, 0.9896, 0.9984, 0.9919, 0.9918, 0.9942, 0.9912, 0.99471, 0.99241, 0.99567, 0.98959, 0.98984, 0.9946, 0.9934, 0.9986, 0.99638, 0.9951, 0.98914, 0.9938, 0.9925, 0.9946, 0.99058, 0.99472, 0.99002, 1.0103, 0.99208, 0.99666, 0.99202, 0.9889, 0.99034, 0.98974, 0.999, 0.99534, 0.99808, 0.9924, 0.9974, 0.998, 0.99678, 0.99538, 0.9958, 0.9974, 0.9931, 0.9983, 0.9934, 0.98746, 0.9998, 0.99624, 0.9966, 0.98976, 0.99834, 0.99627, 0.98968, 0.998, 0.99007, 0.9945, 0.99452, 0.9935, 0.9984, 0.9938, 0.99279, 0.9905, 0.9948, 0.9974, 0.99792, 0.998, 0.99256, 0.99775, 0.99835, 0.99189, 0.99033, 0.9908, 0.9931, 0.98972, 0.9949, 0.99616, 0.99014, 0.9974, 0.9938, 0.9962, 0.99642, 0.9942, 0.9977, 0.9894, 0.99566, 0.9964, 0.993, 0.99507, 0.9964, 0.9948, 0.9964, 0.9939, 0.99174, 0.99736, 0.99462, 0.99, 0.99458, 0.9895, 0.9949, 0.991, 0.98758, 0.9973, 0.9912, 0.9932, 0.99183, 0.99378, 0.9918, 0.99269, 0.99744, 0.9901, 0.99353, 0.99178, 0.99041, 0.99184, 0.9948, 0.9916, 0.9926, 0.99504, 0.99394, 0.99408, 0.9974, 0.9944, 0.99807, 0.9982, 0.9928, 0.9916, 0.99111, 0.99215, 0.99089, 0.9934, 0.99112, 0.9938, 0.99276, 0.98954, 0.9926, 0.9997, 0.9923, 0.9907, 0.99814, 0.9938, 0.9986, 0.99945, 0.993, 0.99471, 0.99235, 0.9928, 0.99379, 0.99522, 0.99224, 0.99324, 0.9922, 0.9954, 0.9908, 0.99397, 0.99558, 0.9979, 0.9931, 0.99955, 0.99588, 0.9938, 0.9937, 0.99776, 0.9953, 0.98994, 1.0003, 0.9986, 0.9982, 0.99672, 0.99674, 0.99278, 0.99022, 0.99396, 0.9912, 0.9948, 0.9973, 0.9911, 0.99153, 0.991, 0.99119, 0.9911, 0.991, 0.99652, 0.99489, 0.98942, 0.99144, 0.9949, 0.99254, 0.99252, 0.98919, 0.99784, 0.99469, 0.99523, 0.99378, 0.99212, 0.9941, 0.9911, 0.99008, 0.98963, 0.99116, 0.99545, 0.99946, 0.997, 0.9971, 0.99044, 0.9924, 0.9916, 0.99408, 0.99174, 0.9937, 0.9955, 0.9972, 0.9921, 0.99199, 0.994, 0.99387, 0.99462, 0.992, 0.9928, 0.994, 0.99534, 0.9945, 0.99057, 0.9999, 0.99274, 0.99685, 0.9983, 0.99362, 0.9923, 0.9925, 1.0002, 0.9942, 0.98912, 0.99094, 0.9892, 0.98914, 0.9908, 0.9918, 0.9927, 0.9917, 0.9972, 0.9954, 0.99546, 0.9974, 0.99198, 0.99308, 0.99066, 0.9986, 0.99464, 0.9917, 0.99954, 0.99202, 0.99414, 0.9982, 0.9952, 0.9962, 0.9934, 0.9891, 0.9941, 0.99573, 0.9936, 0.9967, 0.99685, 0.98918, 0.9986, 0.99518, 0.9932, 0.99469, 0.99109, 0.99705, 0.9917, 0.9964, 0.98987, 0.9996, 0.9904, 0.99886, 0.9924, 0.997, 0.99494, 0.99745, 0.99606, 0.98999, 0.9909, 0.99615, 0.9975, 0.9926, 0.9918, 0.9929, 0.9948, 0.99036, 0.99228, 0.98984, 0.99822, 0.99299, 0.9987, 1.0015, 0.99563, 0.9984, 0.9984, 0.9957, 0.99194, 1.00369, 0.993, 0.9952, 0.99035, 0.9916, 0.99896, 0.9945, 0.9927, 0.9954, 0.99549, 0.9922, 1.00295, 0.98956, 0.9973, 0.9961, 0.997, 0.99352, 0.9994, 0.99238, 0.99524, 0.9927, 0.9917, 0.9914, 0.9957, 0.99304, 0.99331, 0.99108, 0.992, 0.9923, 0.99064, 0.9921, 0.999, 0.99392, 0.9944, 0.99546, 0.99326, 0.995, 0.99792, 0.99534, 0.9908, 0.99158, 0.99136, 0.99122, 0.9928, 0.9931, 0.99063, 0.99024, 0.9898, 0.993, 0.98816, 0.9965, 0.99586, 0.9925, 0.9986, 0.9912, 0.9916, 0.99132, 0.996, 0.99358, 0.9938, 0.9977, 0.9934, 0.9978, 0.99074, 0.99048, 0.9898, 0.98994, 0.99342, 0.9966, 1.0004, 0.9948, 0.99514, 0.99596, 0.99602, 0.9986, 0.9971, 1.0003, 1.00051, 0.99084, 0.99566, 0.9927, 0.9912, 0.99581, 0.995, 0.9972, 0.99656, 0.9965, 0.99975, 0.99052, 0.989, 0.9916, 0.99455, 0.99393, 0.9924, 0.9946, 1.00038, 0.99906, 0.9958, 0.99475, 0.9935, 0.9906, 0.99835, 0.98883, 0.9932, 0.99863, 0.99686, 0.99322, 0.99678, 0.99331, 0.9925, 0.9978, 0.99392, 0.99105, 0.99384, 0.99596, 0.99216, 0.99321, 0.9979, 0.99124, 0.99472, 0.98946, 0.9945, 0.98926, 0.9925, 0.9898, 0.99066, 0.99587, 0.9984, 0.98942, 0.98876, 0.99045, 0.9975, 0.9913, 0.9906, 0.99416, 0.98794, 0.9925, 0.9911, 0.99675, 0.98931, 0.9983, 0.992, 0.99658, 0.99136, 0.9991, 0.9964, 0.992, 0.99658, 0.9923, 0.9965, 0.9952, 0.99461, 0.99287, 0.9918, 0.9944, 0.98944, 0.9976, 0.9953, 0.99074, 0.98794, 0.99643, 0.9954, 0.99114, 0.99374, 0.99218, 0.9948, 0.993, 0.9966, 0.99152, 0.99498, 0.9925, 0.99615, 0.99715, 0.99056, 0.9937, 0.9965, 0.9906, 0.9982, 0.99157, 0.9919, 0.99157, 0.9953, 0.9898, 0.99543, 0.9899, 0.9937, 0.99203, 0.99036, 0.99008, 0.9892, 0.99971, 0.992, 0.99785, 0.9927, 0.99044, 0.9912, 0.995, 0.995, 0.9942, 0.99522, 0.98856, 0.9939, 0.9927, 0.99095, 0.9972, 0.98946, 0.99542, 0.98944, 0.9985, 0.99411, 0.99266, 0.9962, 0.99268, 0.9971, 0.9917, 0.9925, 0.9968, 0.99142, 0.9964, 0.9979, 0.99214, 0.99737, 0.9917, 0.99807, 0.99334, 0.99798, 0.99558, 0.9972, 0.98946, 0.99543, 0.9934, 0.9938, 0.9947, 0.9969, 0.99752, 0.99082, 0.9983, 0.9962, 0.99692, 0.9928, 0.998, 0.9909, 0.99494, 0.98987, 0.99578, 0.997, 0.9986, 0.99544, 0.99321, 0.99072, 0.9985, 0.99494, 0.99118, 0.9968, 0.99112, 1.0004, 0.9907, 0.9921, 0.9934], \"xaxis\": \"x\", \"y\": [0.18439386755371057, 0.5750868907731637, 0.1132172353536568, 0.19850047615697952, 0.6950004168934912, 0.41826441672946313, 0.040828937665112974, 0.2145583871630251, 0.09143093017991866, 0.10013996234885614, 0.3658834999306372, 0.587897812361327, 0.23563705889496211, 0.5289998061994394, 0.5981734696485812, 0.5956194363709464, 0.11295199838815062, 0.6349332021584286, 0.09356782907078887, 0.0672754654033908, 0.3541579814831264, 0.11781588709523827, 0.3295981493457443, 0.23443288181779365, 0.13830133810679424, 0.5122546205578999, 0.03626449638205209, 0.32057959349203036, 0.3955164844050859, 0.21320459763992916, 0.08620177311633537, 0.4132497936565127, 0.19514157099220286, 0.028148892894647393, 0.03728071159582558, 0.20213762816504022, 0.39088790332760825, 0.10566618212719892, 0.11466232649727714, 0.09544364959788487, 0.07351553674018241, 0.3657542344632553, 0.05859665738698361, 0.43634835962676355, 0.4827032077898804, 0.516310366273556, 0.6480037931050455, 0.21122004543372697, 0.030344760075157406, 0.22750344576024595, 0.18673438423788624, 0.5460909738859347, 0.0666291073587214, 0.320234954276134, 0.515425573770442, 0.5751179393061847, 0.3262180383913996, 0.12192585741802231, 0.6165939755266235, 0.09365914315081003, 0.44259853952477324, 0.31958523161407537, 0.09228899111547839, 0.22815273642701062, 0.5282447951108347, 0.7777719169155834, 0.13834506443323813, 0.29425092810710396, 0.5300870647699181, 0.031947521718024174, 0.1108646816717751, 0.053339747820140615, 0.14466174791529418, 0.25697560969337485, 0.3383868137798065, 0.30803904997837983, 0.03434255320493995, 0.08689109251212201, 0.46044782253877736, 0.0973761441498977, 0.3449058470623745, 0.024212367984770777, 0.11665042079727428, 0.3333970234137619, 0.1495417879159372, 0.0679784404121434, 0.2360052425084116, 0.39147703437781534, 0.04428683932015287, 0.5381556738404795, 0.4357341587922019, 0.11843845992675284, 0.28107964630818494, 0.06989794698232743, 0.2658605825653322, 0.22408104406272966, 0.15519213452661884, 0.09873339188795927, 0.10739713799337769, 0.4712507279726723, 0.31257930793611366, 0.6259141532505736, 0.1651629894813923, 0.13024327386797574, 0.08242409751896962, 0.55355901104019, 0.11256152515999429, 0.22124325125588817, 0.05838775174278421, 0.6734770756819889, 0.06919042490492266, 0.5773286546676725, 0.5693181878572973, 0.12726917141891614, 0.27983888222674136, 0.15690954109554833, 0.18593824584442387, 0.05432525584274117, 0.33273366741371935, 0.12435295831370408, 0.48112847828662497, 0.2959384652215836, 0.5042039768350125, 0.3749869638443927, 0.7258627386781167, 0.4806866421912115, 0.6234335830956541, 0.4191951896523489, 0.20821728825178332, 0.6343085651912675, 0.27674577061671146, 0.02140654255666985, 0.42849246998341506, 0.1817444030106703, 0.4551538855951942, 0.05087080041524106, 0.516641204200833, 0.6810720245435042, 0.08151744899857294, 0.4475169494323581, 0.03995706953508171, 0.2181819033834006, 0.20372897255157485, 0.24305701296248816, 0.5381556738404795, 0.2358485729609252, 0.051323642447754336, 0.1913631294907303, 0.32154631204965056, 0.31229802093755377, 0.3917329141436472, 0.39462053822053156, 0.3680669306910641, 0.5017894292511481, 0.32120711190509066, 0.0768019282386515, 0.1168769044932052, 0.31545143431826594, 0.12007957373947853, 0.08354361700756141, 0.2180731800932174, 0.7653011157176768, 0.05076221583963347, 0.11739077279846111, 0.3639458403519926, 0.4815918747301601, 0.35998732468747585, 0.457353694020342, 0.5520498791697908, 0.22168281241722143, 0.2132287846887433, 0.4763394582576197, 0.3040153802820409, 0.20749766415549342, 0.3316810644107503, 0.8126297477835096, 0.5749367295182395, 0.27274039590582944, 0.2685808245693546, 0.5172108675362206, 0.33506587713796443, 0.09616672688355288, 0.041108213935392324, 0.10548050716105373, 0.5016695616404938, 0.20022874051447226, 0.14220640128276774, 0.23772630779738468, 0.19606080251004787, 0.2603188495268066, 0.18846597668723208, 0.19827111133563302, 0.261548791893628, 0.4140325207077993, 0.8134796325151183, 0.12265695643958285, 0.6311167068993262, 0.13481820177301163, 0.0932384579037443, 0.14050160114126486, 0.2562249115981724, 0.08547750670655718, 0.08643201081848362, 0.19981675431015722, 0.31390222338706264, 0.06221739913672386, 0.06996303880871468, 0.30029370289300306, 0.4306817897420764, 0.6595343859760441, 0.2839408857911616, 0.20468539219890003, 0.1130196126722065, 0.2360017176902124, 0.13187147729288817, 0.42313120297864704, 0.06964897436687001, 0.1624399718171824, 0.17200815643270417, 0.07333105637055992, 0.2440137653363641, 0.4900110333069776, 0.3085554157386313, 0.03480496731142946, 0.12148031785507996, 0.15002971926037112, 0.5314247042003052, 0.2758453007685677, 0.2151852748992088, 0.2658605825653322, 0.29911225563077193, 0.6594110243744711, 0.49869782335001445, 0.16788254706683048, 0.11816213334465087, 0.08230909248122409, 0.13653212507346946, 0.25639170942272826, 0.06562233405876228, 0.23311900627036541, 0.3756616197417655, 0.46674395287949066, 0.3092684534350997, 0.8337319641197457, 0.8331457111467163, 0.2591056156836542, 0.4778687671024334, 0.2542440524586721, 0.5361036306539362, 0.07073721340803463, 0.4731688813159418, 0.5755848065786346, 0.356689463387698, 0.14225616860197343, 0.21837916002376445, 0.14466174791529418, 0.29899643271856946, 0.4757427727983842, 0.08126799884203029, 0.1296501822378736, 0.3286954654423938, 0.08620177311633537, 0.13855855420831553, 0.05543377339452393, 0.11917834098009661, 0.2613621884509647, 0.11269900223777074, 0.08429051026621415, 0.3393961441870107, 0.07031960314855146, 0.11356777592095357, 0.4853279864284006, 0.1279289285514792, 0.0584572339054259, 0.08612988585012649, 0.3472440907423937, 0.1248029959061332, 0.07502335399434323, 0.19827111133563302, 0.3424151534036639, 0.3065175956815872, 0.13808860398564737, 0.058092197534895806, 0.04082786106581715, 0.1602592849246841, 0.09156161599234125, 0.5036030690663805, 0.2640411824475748, 0.6468038092930676, 0.07201805208597656, 0.22470230804277058, 0.1334773721572423, 0.04847889440667685, 0.2685808245693546, 0.10911308148570098, 0.6764508967260475, 0.6280060594576413, 0.36761958218269275, 0.16019930342079847, 0.17605308658107655, 0.14078981831089854, 0.2384997092801764, 0.13117402490907393, 0.12818959986091483, 0.4161925244315118, 0.12435295831370408, 0.09814942480303201, 0.05480698563416486, 0.3746187330143109, 0.41092354232892336, 0.507894749900129, 0.5137929421583434, 0.08293523366016065, 0.2964416548030494, 0.15236141109070434, 0.4396941021426354, 0.41893931094950754, 0.09113953260801844, 0.10967473999240707, 0.055732078845942, 0.05640314085190745, 0.06176263301115803, 0.06427139521062619, 0.20386133178572885, 0.21597661143113533, 0.7486409492386699, 0.2610715902497083, 0.09465277491899493, 0.5556171757583562, 0.137718889647652, 0.1978940751503777, 0.08472590699531857, 0.356262641598029, 0.14596950445002987, 0.13865818299932142, 0.3088915816821678, 0.11516321289421916, 0.16121169033174265, 0.40573483691789825, 0.34308606282264, 0.36300204724896845, 0.17193414756867276, 0.035926383178341514, 0.34536882843285344, 0.4400180463892147, 0.5165194668234709, 0.23319834124303085, 0.9637923675569924, 0.2635599134550337, 0.6259141532505736, 0.12324962258280003, 0.1256037712827487, 0.1248029959061332, 0.11665042079727428, 0.29081136443782263, 0.12993062945549005, 0.20959981847797426, 0.12385816607190492, 0.16931651488884025, 0.2468284110987674, 0.6181879252747016, 0.3509541008179864, 0.08619429866610873, 0.09537770951135394, 0.8204393830764495, 0.2493836920976743, 0.10367142046182065, 0.11516383353466464, 0.07169627826225977, 0.5400384130096556, 0.2709141565803237, 0.16809050322974173, 0.3421981324687273, 0.812724325423183, 0.1326589750154965, 0.054670132935181304, 0.055346153509382656, 0.8039442695404772, 0.3276168958360183, 0.6561718697940482, 0.6214102617950452, 0.3046829516703813, 0.7853649284745584, 0.7303620793003476, 0.6719087507962026, 0.16000678121984613, 0.579612101366232, 0.6347749924714103, 0.41894393066564606, 0.06936532322770372, 0.28322834609079706, 0.343263893078516, 0.4450860003239352, 0.3090838478611311, 0.408095736797927, 0.11529682880263803, 0.13359771811640497, 0.2417229185475579, 0.10092265889692065, 0.8181934133883563, 0.3777834313813965, 0.8273808576462511, 0.18439353202429143, 0.5148786056082297, 0.11287077888712382, 0.16015059460472458, 0.29672938182784603, 0.36944561074938853, 0.2505850522824452, 0.8467591712977676, 0.3840267097226593, 0.261779448872241, 0.1645479955558209, 0.14631295673285594, 0.4248523287309329, 0.09222807982804315, 0.2121484308544801, 0.33273366741371935, 0.5470626312455473, 0.8294144697045585, 0.25206662215500397, 0.15998368749433245, 0.548322128117227, 0.3917329141436472, 0.15981565308588508, 0.23631147082452741, 0.21082920466209698, 0.1871387197916503, 0.24774693401855818, 0.1913242313933492, 0.16437448769677154, 0.07582203648947516, 0.032541140295091364, 0.06311143057978008, 0.5009235508757715, 0.12343879567504301, 0.445735807756371, 0.40322837553658053, 0.09397553936597514, 0.1598391281143201, 0.26702494168661406, 0.19782301216908982, 0.06831823449824892, 0.5451167746582685, 0.20142160156100697, 0.25747632252511843, 0.4257317671215596, 0.5062318064185062, 0.10278357133077332, 0.10857266292312517, 0.06223864817381186, 0.11377411494697365, 0.14082424186384768, 0.2589321903149734, 0.31776639873426016, 0.07983414941561229, 0.30174211068680845, 0.42532907678292176, 0.23734670470511587, 0.2862296469110084, 0.24790288035387664, 0.5526146374040077, 0.20425399436950087, 0.5166825128498294, 0.12415322942140417, 0.5310696157212036, 0.3866387435262121, 0.14313186082947948, 0.31648660326859934, 0.026792916001305622, 0.7856428374245099, 0.42383310375799566, 0.5944566396871084, 0.6256605001243821, 0.08813642250468567, 0.03544811528140901, 0.06935406654889886, 0.15751976448865512, 0.22608551288474832, 0.3127311228465576, 0.1409438166611655, 0.3285615524533705, 0.3591330499592894, 0.47964497307801546, 0.7143146030302826, 0.14223944449319303, 0.06929054967731618, 0.32120711190509066, 0.16913647442041335, 0.707286257884667, 0.3230684446475647, 0.7616845263358343, 0.4104900542879092, 0.10053249234255524, 0.1106599594415556, 0.1543174595222413, 0.46003879185641183, 0.3811350878514418, 0.07185070571861518, 0.23882593985771994, 0.5344976262521839, 0.11031385635331636, 0.09610989844306939, 0.4955559099445003, 0.07845190603324759, 0.30697262074812925, 0.12767551958037127, 0.4375661224395835, 0.07737023387634634, 0.15307682457740834, 0.05694427046787409, 0.09028836937410878, 0.4011292297732457, 0.6186146927451245, 0.11561676905211238, 0.0993047499370594, 0.08102401279833105, 0.8100206966555492, 0.10768932514586738, 0.15386113005635593, 0.4026560765644126, 0.045535707525545144, 0.08229583319403, 0.08227601457953415, 0.8241544781987433, 0.0759900855540333, 0.5147505197509459, 0.11103147778198663, 0.42144961755966015, 0.24880465403270857, 0.3112403223054312, 0.3282460941643247, 0.28312386083977936, 0.2865521931047814, 0.16537364909659502, 0.4284132019637321, 0.34116073112729894, 0.051142721309942685, 0.10794707492381372, 0.1108646816717751, 0.29201805921023904, 0.07365131996157204, 0.36851051207096197, 0.2556143611338999, 0.07392456180697715, 0.045535707525545144, 0.15025986810093994, 0.4395989822566938, 0.19636656988846957, 0.21018464628148859, 0.15085686628779282, 0.3429118439192298, 0.16104008564300487, 0.2055862423584408, 0.18673310211333727, 0.5528531989583015, 0.20219789553586287, 0.5807830339134155, 0.6112381610839525, 0.07515362639458067, 0.5722084734915175, 0.3654892991508686, 0.1991057466826236, 0.4912569401667811, 0.05850610073101081, 0.3077884117234785, 0.17038242498240874, 0.14066607718466684, 0.10248584652416493, 0.4022873718442217, 0.07205214632436985, 0.35142291824287475, 0.10941760034103376, 0.06679271580157364, 0.05675388891699207, 0.058987921856350156, 0.3660303223369904, 0.28790374422385034, 0.4158290962648631, 0.40710291595796666, 0.09934102670994882, 0.06362846635195196, 0.30921476208988685, 0.23242198019285765, 0.055541210656895434, 0.5297663836663529, 0.10744632778983743, 0.18410212910939194, 0.17721960751489196, 0.1962664672709783, 0.1617648996714035, 0.10584426414108294, 0.5203501665477333, 0.07365131996157204, 0.31578819840495265, 0.35364190165315845, 0.1707951928721818, 0.41655733121321636, 0.15801546378512366, 0.7568436608419439, 0.22368578646300386, 0.0609449253562836, 0.2225096762928218, 0.18587673368692093, 0.05559101133196209, 0.569598540521716, 0.08073228430722412, 0.15724041301590164, 0.12879141548479, 0.4306817897420764, 0.17998791969802397, 0.41280880088413996, 0.5723062335690389, 0.6457404130724687, 0.10420061808672998, 0.12564769853034463, 0.21795029564941848, 0.4720930498870375, 0.11304202998506685, 0.545112257205237, 0.14852188644910969, 0.17217029085021085, 0.336250902618187, 0.48671482860553816, 0.5093433434984792, 0.35847801144896685, 0.3008706318705062, 0.18494609259573758, 0.4199330463236065, 0.04162287990776414, 0.2633909944023186, 0.4252182303976608, 0.4684623303117058, 0.1925553058603695, 0.09610989844306939, 0.09129843496680234, 0.3302708189676917, 0.4199330463236065, 0.11927294568859859, 0.4864154015695107, 0.06472081497616611, 0.6387929002666255, 0.37932906694235924, 0.093713747684541, 0.20627971812824875], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (curr)\", \"type\": \"scatter\", \"x\": [0.9966, 0.99556, 0.9939, 0.99126, 0.9996, 1.001, 0.99565, 0.998, 0.99692, 0.9997, 0.9956, 0.9918, 0.99513, 0.99587, 0.99869, 1.0, 0.9959, 1.0004, 0.99253, 0.9905, 0.9918, 0.9996, 0.9946, 0.9978, 0.99009, 0.9926, 0.997, 0.99898, 0.99215, 0.9931, 0.99839, 0.9944, 0.99798, 0.9963, 0.9926, 0.99341, 0.998, 0.9968, 0.9953, 0.9934, 0.9918, 0.99494, 0.9968, 0.9982, 0.992, 0.99212, 0.9976, 0.99616, 0.99911, 0.99244, 0.99454, 1.0011, 0.9937, 0.99612, 0.9976, 0.9963, 0.99748, 1.00315, 0.9966, 0.99848, 1.00315, 0.9976, 0.9962, 1.0006, 0.99657, 0.99592, 0.99702, 0.9978, 0.9965, 0.9956, 0.99654, 0.99093, 0.99212, 0.99694, 0.9938, 0.99174, 1.0, 0.9918, 0.99345, 0.99717, 0.9966, 0.99576, 0.9972, 0.9968, 0.9938, 0.9923, 0.9967, 0.99976, 0.992, 0.9978, 0.9951, 0.9936, 0.998, 0.9991, 0.99683, 0.99476, 0.9958, 0.9986, 0.9972, 0.99596, 0.99918, 0.99479, 1.0, 0.9955, 0.9954, 0.99584, 0.9984, 0.99448, 0.99416, 0.9989, 0.9964, 0.9983, 0.99712, 0.99362, 0.9926, 0.99669, 0.99676, 0.99471, 0.9955, 0.9958, 0.9962, 0.99182, 0.9946, 0.996, 0.99546, 0.99915, 0.99111, 0.9997, 0.99546, 0.9938, 0.98876, 0.99734, 0.9991, 0.992, 0.99694, 0.9976, 0.993, 0.9976, 0.99681, 0.99494, 0.9938, 0.9938, 0.99239, 0.9939, 0.9992, 0.99677, 0.99176, 0.9958, 0.9964, 0.99568, 0.9932, 0.99942, 0.9973, 0.9958, 0.99344, 0.9928, 0.99481, 0.99584, 0.99696, 0.9988, 0.99745, 0.99872, 0.99212, 0.9982, 0.9974, 0.9944, 0.9904, 0.99264, 0.99299, 0.99534, 0.9997, 0.9966, 0.9934, 0.99204, 0.9964, 0.98918, 0.9923, 0.99775, 0.99742, 0.99642, 0.9941, 0.99688, 1.0004, 0.9927, 0.99705, 0.99154, 0.9958, 0.9989, 0.9936, 0.99545, 0.99743, 0.99524, 0.99555, 0.99173, 0.9976, 0.9961, 0.9936, 0.99382, 0.99947, 0.997, 0.9962, 0.9976, 0.9983, 0.9986, 0.98993, 0.99922, 0.9958, 0.9994, 0.9974, 0.9977, 0.998, 0.99458, 0.99552, 0.99194, 0.9953, 0.99084, 0.9973, 0.9966, 0.99288, 0.9928, 0.9975, 0.9961, 0.9982, 0.9952, 0.9934, 0.996, 0.998, 0.9961, 0.99366, 0.99138, 0.9991, 0.99305, 1.0001, 0.9981, 0.9965, 0.99628, 0.99164, 0.99193, 0.9991, 0.9931, 0.99771, 0.9993, 0.99176, 0.9962, 0.99048, 0.9944, 0.9936, 0.99469, 0.9986, 0.99362, 0.9978, 0.99884, 0.9958, 0.99779, 0.9927, 0.99924, 0.9962, 0.9958, 0.99692, 0.99818, 0.99732, 0.99471, 0.9978, 0.9978, 0.99402, 0.99211, 0.9956, 0.99176, 0.99032, 0.99488, 0.99069, 0.9994, 0.9998, 0.9955, 0.99514, 0.9929, 0.99907, 0.998, 0.9958, 0.9968, 0.9983, 0.9993, 0.99047, 0.99202, 0.9986, 0.99185, 0.99249, 0.9943, 0.9911, 0.99726, 0.99527, 0.9944, 0.99626, 0.99746, 0.99304, 0.9984, 0.99274, 0.9955, 0.99804, 0.9986, 0.99182, 0.9996, 0.99454, 0.997, 0.99718, 0.9904, 0.9986, 0.9962, 1.0004, 0.9954, 0.9965, 0.99516, 0.9944, 0.9998, 0.9944, 0.998, 0.9938, 0.99558, 0.9956, 0.9932, 0.997, 0.9954, 0.99773, 0.9953, 0.9994, 0.9963, 0.9991, 0.9969, 0.9956, 0.99212, 0.9967, 0.9968, 0.9918, 0.9914, 0.9964, 0.992, 0.99198, 0.99271, 1.0001, 0.9952, 0.9958, 0.9978, 0.9953, 0.99652, 0.9994, 0.99242, 0.9979, 0.9966, 1.0001, 0.9932, 0.99372, 0.9917], \"xaxis\": \"x2\", \"y\": [0.18579927887031134, 0.9274202256360236, 0.2569067617886446, 0.17851375722123963, 0.43011516789686843, 0.3951880410340851, 0.35333307802371594, 0.854899199395705, 0.7749695319329993, 0.7150752736216004, 0.5793836726576811, 0.17187478758168062, 0.503776006633781, 0.6517104478925241, 0.5321166645488455, 0.4291031613352281, 0.6295132227815239, 0.446367751604861, 0.12978626497489776, 0.578130474122496, 0.1303225049324246, 0.4589423036505589, 0.6028673022099313, 0.6724998803801079, 0.055171077290688375, 0.28900585249094113, 0.5807441942986169, 0.6324527530146118, 0.32780881811994433, 0.4437792729685527, 0.47375733914823626, 0.6755390392614542, 0.8494338455743565, 0.8432302027568838, 0.3962269303969661, 0.36574887203466033, 0.9780529644634413, 0.6757083557066426, 0.43212531492562845, 0.6428319532862445, 0.2244465690609686, 0.6759712108962084, 0.300575337785698, 0.4848467547623382, 0.24353241802821812, 0.6165640897352094, 0.801889943514816, 0.6831580296641933, 0.4684052737322374, 0.07309555507266852, 0.17397747102053363, 0.548208100621717, 0.16948307959681597, 0.5287139706981401, 0.8097217619362252, 0.48186532860504816, 0.7044722268129955, 0.5458559966555334, 0.6067015953642416, 0.5767206748937392, 0.5416109283549078, 0.7766135747357961, 0.6371580804073698, 0.3290646799011723, 0.53941953634433, 0.7444876216695655, 0.27658524567301757, 0.8518717737266248, 0.685064206005921, 0.7994946846943811, 0.6254668451144636, 0.29898447003196504, 0.36566585814722175, 0.8260679099411251, 0.265003746926769, 0.18277705216857454, 0.6401445853260315, 0.2878944788643705, 0.7379395090268356, 0.6578861964269485, 0.3048731186933995, 0.6479177870210828, 0.5479007895539181, 0.8109237991420157, 0.4555798348891207, 0.35159410271621183, 0.6741813074403022, 0.40366163192193316, 0.3797333752177462, 0.42326140605337403, 0.49450075158901585, 0.7027754368270075, 0.31556666432085356, 0.5737052492708005, 0.5594846166878963, 0.9879213229528466, 0.23907110553933086, 0.7604887601700165, 0.906894853259191, 0.49150798334893764, 0.6693239074263375, 0.635181004157038, 0.4291031613352281, 0.6805197940362542, 0.8579270215873258, 0.42231028799440284, 0.7973836574204367, 0.6209099995125147, 0.617932351579841, 0.5867531689564582, 0.8217385626893267, 0.5766058512754557, 0.6085190813519714, 0.6488649586424557, 0.19466062481522506, 0.4062994677131635, 0.31500574198466447, 0.6106996692323751, 0.48314991346809855, 0.4300926711133176, 0.4623912750166579, 0.18141675383529432, 0.7404949196358439, 0.7960551628311661, 0.6696955469146251, 0.7471897031921468, 0.15222801432328747, 0.4782875749995391, 0.6696955469146251, 0.4617114467660769, 0.0374236133971757, 0.34638250956587036, 0.5737052492708005, 0.35412183815676124, 0.5342599897609015, 0.6273126624389191, 0.1819914526651868, 0.6450640502472667, 0.7576359910572065, 0.6363669366758954, 0.35783776888428775, 0.4555798348891207, 0.2603691587203709, 0.09638465351539516, 0.7889843001267657, 0.3995975535535492, 0.2404138117262561, 0.5134503976671381, 0.7620160241108803, 0.4852174766770502, 0.7934067722809752, 0.5657371707019572, 0.40591517497640706, 0.5142806824729376, 0.4667389755277017, 0.4597803030361328, 0.14211531046105408, 0.4709774325404933, 0.39253304933110444, 0.8152160844894966, 0.6418608562675732, 0.5695619245525361, 0.15898796250578873, 0.4189913516486339, 0.8097376625536354, 0.2776505479619531, 0.14100712613869515, 0.1625374057836978, 0.21879614767173305, 0.26016804821119, 0.5884346274074399, 0.25171266030158634, 0.5556828679884147, 0.2886326125606653, 0.5013044750460076, 0.23728971353361283, 0.6280660923097139, 0.6281218947904323, 0.6226708394296439, 0.1280348372312241, 0.37812375401711507, 0.6218606462016874, 0.446367751604861, 0.5237591509200082, 0.22560064672115399, 0.4159575064805634, 0.43989745285902637, 0.38133093816728936, 0.379388299643832, 0.4244201113870294, 0.8495234946343055, 0.44699506619782237, 0.3402560380560977, 0.16997778820688525, 0.6509841470756508, 0.5589353890471914, 0.49320900326902484, 0.41485179365651337, 0.2850172536812061, 0.5150740024049856, 0.7905789411902706, 0.6660097546858721, 0.5916856454756931, 0.25029771644034415, 0.21820707607863943, 0.23625780462752244, 0.6174344585079109, 0.33885175059010386, 0.8097775874289167, 0.5502791542248897, 0.45232673966787307, 0.5168725346003686, 0.4922951659433321, 0.2710495410551712, 0.5620189509382074, 0.19827785442852286, 0.35653263682836045, 0.4940220265254579, 0.3934632807735441, 0.349631294967786, 0.6543252873397565, 0.6043841099981286, 0.6572212454398962, 0.5323595728841377, 0.4667716613599331, 0.5480891857555714, 0.5933716837007499, 0.5769442381274095, 0.7796710482718338, 0.4721284230669528, 0.5632051337005155, 0.25606657060722404, 0.47304849589761655, 0.4991199345133047, 0.785831825438318, 0.5512091114854263, 0.31651464458218903, 0.192246895102814, 0.5737052492708005, 0.14970485751781393, 0.8257882443178004, 0.7450862811651306, 0.2404138117262561, 0.3428275867057816, 0.2186811050870735, 0.43730933466596944, 0.1325711740116582, 0.33994853494016564, 0.5172250338280965, 0.4543852880840521, 0.6017244994332274, 0.7267617626256621, 0.304103470637073, 0.49511795227452726, 0.4577650902534979, 0.4389063253281036, 0.3428275867057816, 0.6911248892501751, 0.5457123873353599, 0.3395528272139201, 0.5662837862370104, 0.38281068028313525, 0.1899488449656659, 0.1899488449656659, 0.39416742153886597, 0.4473524415330049, 0.5724944828663213, 0.12652799787397961, 0.14917046216496987, 0.4192276293132746, 0.1727250451072272, 0.7329347521090118, 0.2979855805324535, 0.5384433083808008, 0.2944152049751758, 0.5661013076544325, 0.39283078357423706, 0.6503174362647687, 0.7632350838020857, 0.29422440231251745, 0.8446099855685041, 0.3812461384129847, 0.1264117171095669, 0.6995051325026098, 0.7680829457938805, 0.1086082602083136, 0.50228427853815, 0.8303888649041977, 0.15145052047802054, 0.5239967242043768, 0.49461569007297057, 0.7323984730128237, 0.6372335578763709, 0.8485373319296128, 0.21018203617182263, 0.3854703692354019, 0.6209619763202376, 0.6996467359659702, 0.3913887983225227, 0.600932061108284, 0.18141675383529432, 0.32841971343371723, 0.17397747102053363, 0.3943097935149382, 0.5998672378660981, 0.6052803835931642, 0.35501406908939237, 0.4362847089434372, 0.6005057903956104, 0.45095984485898877, 0.5601124581139871, 0.6908342266509375, 0.29066967723125237, 0.5437491575180791, 0.5955595524057149, 0.4226516353037165, 0.552222307965348, 0.5038457784615318, 0.6752568781943777, 0.7880730680059006, 0.09430965090665133, 0.4986183600001317, 0.24112389044610405, 0.3635071851353404, 0.7047195247497422, 0.5251048099479148, 0.5632051337005155, 0.4520037684813636, 0.5271857161160298, 0.36566585814722175, 0.8775119234978208, 0.49474741138534273, 0.17187478758168062, 0.1069918390347242, 0.6371627391106971, 0.19018032574493748, 0.34352259564225396, 0.806114950115292, 0.47304849589761655, 0.5014153035286022, 0.6721952796384192, 0.7507248720260316, 0.38512814216859315, 0.8930847268109882, 0.863224561659591, 0.15108072818859253, 0.7399796913917198, 0.18579927887031134, 0.47304849589761655, 0.2033384066370545, 0.43667652058029827, 0.23252054766636898], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [0.9934, 0.9979, 0.99234, 0.9932, 0.99686, 0.9927, 0.9926, 0.99362, 0.989435, 0.99239, 1.0, 0.9908, 0.98918, 0.99168, 0.98904, 0.9932, 0.99438, 0.99189, 0.999, 0.9903, 0.999, 0.9986, 0.992, 0.9935, 0.99541, 0.9893, 0.99326, 0.99146, 0.99144, 0.99165, 0.98889, 0.9957, 0.9992, 0.99449, 0.98871, 0.9936, 0.9914, 0.99488, 0.98988, 0.995, 0.99123, 0.99014, 0.9958, 0.9986, 0.9974, 0.99417, 0.9998, 0.9968, 0.9969, 0.9908, 0.9972, 0.9917, 0.9946, 0.9922, 0.99376, 1.0006, 0.998, 0.9916, 0.99795, 0.99652, 0.99724, 0.99727, 0.99206, 0.99406, 0.99534, 0.98964, 0.9966, 0.9951, 0.99236, 0.9945, 0.9986, 0.99064, 0.99815, 0.99313, 0.9983, 0.99668, 0.99922, 0.99207, 0.9949, 0.9975, 0.98972, 0.9923, 0.99492, 0.9914, 0.9965, 0.99536, 0.99652, 0.99456, 0.9932, 0.994, 0.99526, 0.9934, 0.9904, 0.98836, 0.9931, 0.99148, 0.99704, 0.99018, 0.9968, 0.99376, 0.993, 0.99596, 0.99438, 0.98882, 0.9986, 0.99566, 0.996, 0.99262, 0.99132, 0.99159, 0.99551, 1.0103, 0.99144, 0.9893, 0.99171, 0.9934, 0.99238, 0.9934, 0.99552, 0.9989, 0.99322, 0.98976, 0.99384, 0.99, 0.99638, 0.99649, 0.9981, 0.991, 0.9984, 0.98961, 0.98961, 0.9933, 0.98918, 1.00014, 0.9931, 1.0006, 0.99667, 0.9979, 0.99252, 0.9917, 0.9943, 0.995, 0.9994, 0.99576, 0.99745, 0.9916, 0.9993, 0.9991, 0.993, 0.9927, 0.99564, 0.99094, 0.997, 0.9987, 0.98954, 0.9912, 0.99676, 0.9947, 0.99232, 0.9979, 0.9898, 0.9983, 0.98934, 0.99394, 0.9992, 0.9913, 0.99458, 0.9959, 0.99554, 0.9932, 0.99099, 0.9923, 0.99665, 0.99738, 0.9907, 0.9927, 0.991, 0.99154, 0.98872, 0.99444, 0.9943, 0.99646, 0.9934, 1.0002, 0.9956, 0.99314, 0.999, 0.9908, 1.001, 0.9949, 0.99278, 0.9984, 0.99076, 0.99064, 0.9931, 0.9918, 0.99173, 0.9893, 0.9993, 0.99612, 0.9914, 0.99312, 0.9937, 0.9929, 0.99294, 0.9928, 0.9947, 0.999, 0.993, 0.99742, 0.99224, 0.98986, 0.9948, 0.98998, 1.0006, 0.99162, 0.99232, 0.9914, 0.9922, 0.99, 0.9914, 0.9956, 0.9975, 0.99544, 0.9994, 0.9971, 0.99134, 0.9941, 0.99617, 0.99194, 0.99842, 0.9951, 0.994, 0.9922, 0.9956, 1.0004, 0.99031, 0.99164, 0.99216, 0.9917, 0.9938, 0.99176, 0.99313, 0.9959, 0.9956, 0.996, 0.99807, 0.9986, 0.9931, 0.9984, 0.9948, 0.9983, 1.0006, 0.9912, 0.99581, 0.99676, 0.9933, 0.99095, 0.98924, 0.99067, 0.99498, 0.9946, 0.9931, 0.99435, 0.9938, 0.99055, 0.9912, 0.99516, 0.9958, 0.9968, 0.99454, 0.99182, 0.98878, 0.9988, 0.9962, 0.9977, 0.9932, 0.99498, 0.99154, 0.99512, 0.9979, 0.99088, 0.99161, 0.99494, 0.99158, 0.9963, 0.99188, 0.99035, 0.9945, 0.9924, 1.0003, 0.9994, 0.99655, 0.98974, 0.99152, 0.99296, 0.99782, 0.99173, 0.9975, 0.9924, 0.98944, 0.9932, 0.99184, 0.9912, 0.9976, 0.99534, 0.98986, 0.99287, 0.991, 0.99047, 0.99691, 0.99165, 0.99646, 0.99708, 0.9902, 0.99178, 0.9963, 0.99232, 0.9938, 0.9934, 0.99176, 0.99408, 0.99572, 0.9998, 1.0026, 0.99, 0.992, 0.99734, 0.9975, 0.99204, 0.99492, 0.99666, 0.9994, 0.997, 0.99288, 0.994, 0.9996, 0.99685, 0.9958, 0.99346, 0.99215, 0.99521, 0.9974, 0.9956, 0.9967, 0.99406, 0.9936, 0.9926, 0.9982, 0.99086, 0.9955, 0.99158, 0.99975, 0.9987, 0.9966, 0.9926, 0.99815, 0.99366, 0.99706, 0.99358, 0.99071, 0.99582, 0.9988, 0.9986, 0.99551, 0.9956, 0.99862, 0.9957, 0.99882, 0.99324, 0.98823, 0.9952, 0.992, 0.99043, 1.0002, 0.99655, 0.98942, 0.99356, 0.99553, 0.99315, 0.9954, 0.9928, 0.99226, 0.9958, 0.99, 0.9948, 0.992, 0.9898, 0.99354, 0.99186, 0.99404, 0.99922, 0.992, 0.9988, 0.9939, 0.99557, 0.9999, 0.99531, 0.9903, 0.992, 0.9938, 0.991, 0.9907, 0.99784, 0.98952, 0.998, 0.9952, 0.99148, 0.99792, 0.99058, 0.9974, 0.99282, 0.9923, 0.9927, 0.99519, 0.9967, 0.9951, 0.99683, 0.99165, 0.99176, 0.99006, 0.99002, 0.99736, 0.99612, 0.9987, 0.9908, 0.9946, 0.99445, 0.98965, 0.9904, 0.99086, 0.9934, 0.99046, 0.9902, 0.99774, 0.9984, 0.996, 0.9976, 0.991, 0.99808, 0.9986, 0.9934, 0.9963, 0.9954, 0.98956, 0.9988, 0.99084, 0.99314, 0.99522, 0.99739, 0.99704, 0.9959, 0.9941, 0.99458, 0.99971, 0.9919, 0.99544, 0.99094, 0.9992, 0.99416, 0.99189, 0.98936, 0.99352, 0.9984, 0.99276, 0.9939, 0.9926, 0.993, 0.9928, 0.9966, 0.9944, 0.9952, 0.99467, 0.9984, 0.9943, 0.99381, 0.9946, 0.99121, 0.99174, 0.99052, 0.9944, 0.9927, 0.9962, 0.99552, 0.9958, 0.994, 0.99184, 0.98916, 0.99581, 0.99522, 0.9957, 0.9998, 0.99444, 0.99599, 0.9944, 0.9982, 0.9925, 0.9979, 0.99331, 0.9997, 0.99018, 0.99517, 0.9986, 0.9908, 0.98815, 0.99862, 0.99566, 0.9906, 0.9984, 0.9916, 0.99418, 0.992, 0.98779, 0.9915, 0.9934, 0.99, 0.99824, 0.9986, 0.9956, 0.99439, 0.9887, 0.9968, 0.9906, 0.9965, 0.9901, 0.99772, 0.9948, 0.991, 0.9947, 0.9984, 0.99572, 0.99388, 0.9976, 0.989315, 0.99358, 0.9926, 0.9978, 0.996, 0.99636, 0.99784, 0.99316, 0.99339, 0.99724, 0.9921, 0.98845, 0.99437, 0.99708, 0.99614, 0.98992, 0.9986, 0.9997, 0.99362, 0.9928, 0.99552, 0.99115, 0.99508, 0.99556, 0.98964, 0.9903, 0.99221, 0.99676, 0.9954, 0.99825, 0.99546, 0.9948, 0.991, 0.9945, 0.99479, 0.98912, 0.99042, 0.9963, 0.99787, 0.9916, 0.99742, 0.9893, 0.99158, 0.9954, 0.99172, 0.9925, 0.9906, 0.99459, 0.9976, 0.99456, 0.9893, 0.9931, 0.9927, 0.9963, 0.997, 0.9931, 0.99514, 0.9968, 0.99354, 0.9948, 0.99261, 0.99454, 0.9994, 0.99198, 0.998, 0.9928, 0.99068, 0.99384, 0.99275, 0.9952, 0.9932, 0.99165, 0.99616, 0.99659, 0.9924, 0.99316, 0.992, 0.9928, 0.99532, 0.9936, 0.98939, 0.99616, 0.99367, 0.98892, 0.99596, 0.99784, 0.99267, 0.99347, 0.9919, 0.99089, 0.99425, 0.99226, 0.989465, 0.9902, 0.995, 0.99565, 0.99192, 0.9964, 1.0014, 0.9898, 0.9922, 0.99166, 0.99576, 0.9884, 0.99764, 0.9951, 0.9953, 0.98964, 1.0001, 0.99837, 0.9934, 0.998, 0.99586, 0.99014, 0.99455], \"xaxis\": \"x2\", \"y\": [0.6660328535674787, 0.4955559099445003, 0.11251030999551548, 0.5313240922219649, 0.7616845263358343, 0.42881839881496897, 0.22146723198036844, 0.2709448900825402, 0.04188686298684474, 0.3198999677935893, 0.586632325439729, 0.3332859260788763, 0.0891770245136605, 0.07249138429342028, 0.0813041402249215, 0.2808128557304226, 0.18155424903412543, 0.14020593233116785, 0.20529540916933675, 0.1755850319354616, 0.5722846846512241, 0.4684623303117058, 0.2863708053899042, 0.4489302200945696, 0.3606737334686688, 0.09834172337505831, 0.1439119889738254, 0.10526388551166177, 0.08976738859769384, 0.15927641460572795, 0.07353544332944184, 0.4894096639868448, 0.24735122968283396, 0.41440459167745447, 0.10107859516115147, 0.4809249647595707, 0.043928674649753696, 0.27268427565697984, 0.07203278686513981, 0.35989685204578803, 0.08410225657903847, 0.09640449279894714, 0.2859044620344169, 0.766491644508495, 0.27194216744256416, 0.11891721880979944, 0.6033870782914414, 0.8445823904457724, 0.4148378249676725, 0.09538880480821377, 0.5822786697287807, 0.2006236885231063, 0.30215903380660414, 0.3526626332448971, 0.22921561702294402, 0.3499358724503807, 0.451050436906263, 0.01968005574460141, 0.3849224947932618, 0.608666907839271, 0.30333177217190177, 0.05732515971384944, 0.08299070223644744, 0.155374347961305, 0.4378217303747408, 0.10641916767178827, 0.3207785913922725, 0.3280003244598044, 0.4747408725557203, 0.27229542413121455, 0.5314247042003052, 0.13834506443323813, 0.652508483608137, 0.1775869136191267, 0.4659209431511335, 0.3288332341233703, 0.47224603889779837, 0.2773569186284155, 0.18590272545123854, 0.6719763059805124, 0.04569198037744582, 0.22473444069733528, 0.0776074933333939, 0.1411968215808168, 0.3654892991508686, 0.06069899520469324, 0.21029328672965164, 0.13919371635861133, 0.16321149678759816, 0.6144435769482088, 0.1388055550317996, 0.0827658987104557, 0.0793107693477757, 0.04994940743047871, 0.46220165202879504, 0.08265172102971341, 0.5554564865761329, 0.10902951494304747, 0.26480674198345266, 0.31816712550642645, 0.20184400370343658, 0.23734670470511587, 0.19264674509953905, 0.03558879485690103, 0.5314247042003052, 0.3013473679880785, 0.8043030592862955, 0.07665185966197174, 0.17816243980233548, 0.14637302723887635, 0.43623195291339645, 0.5773286546676725, 0.06996409198491005, 0.0635191394270278, 0.11839391684253864, 0.03368970372860669, 0.16544292122901683, 0.5002106013252752, 0.20783967621931676, 0.4413184352618238, 0.1377753535318076, 0.017128038770129694, 0.09070427960766203, 0.05237321155563324, 0.46044782253877736, 0.09863911308639095, 0.6058955548956951, 0.07377868677997379, 0.33726125667837825, 0.03705661785513226, 0.03856885477325478, 0.01970319875133708, 0.06623921298607705, 0.655672818127978, 0.36403826442427, 0.375635621083512, 0.25822104517587474, 0.26990817233175546, 0.30316845466795117, 0.21597661143113533, 0.10411587283779344, 0.4582573305440075, 0.28974208538397184, 0.3995654588450376, 0.48407929824265805, 0.2412117545349558, 0.49704114689177337, 0.3112403223054312, 0.13571503940671914, 0.35304273602320047, 0.18963603484652192, 0.06023564559469896, 0.305863422303413, 0.34062746964654456, 0.03532029949184434, 0.20200996882548472, 0.207876095289533, 0.11304202998506685, 0.26487496820305634, 0.46674395287949066, 0.05931266843465788, 0.6063731497207538, 0.053339747820140615, 0.16056749669580483, 0.3366557342021428, 0.18735912995827353, 0.2667542380283816, 0.9197592959547904, 0.13322255285490225, 0.3533185668595151, 0.08763312389948397, 0.343329095265401, 0.1298321532292276, 0.11240742021865013, 0.03412749239977686, 0.23316671381479437, 0.13955591125269062, 0.065615492475942, 0.03940539431326806, 0.04874684240881699, 0.42507109047861347, 0.3720756994829524, 0.20627971812824875, 0.23346983492740092, 0.299872058778726, 0.14688925552714138, 0.20529540916933675, 0.11294333341234963, 0.4523771212155355, 0.15895981664313275, 0.12633289347617382, 0.34801013400503944, 0.063056887931354, 0.09222807982804315, 0.19281104432210028, 0.11843845992675284, 0.1064686731970873, 0.12171087020281346, 0.49704114689177337, 0.4202798549667376, 0.058322454167927695, 0.40418598015134155, 0.7514842711311043, 0.067978575311199, 0.1468497162592186, 0.3655805321171328, 0.36741292271676196, 0.08785516413846428, 0.4223454464089015, 0.09472348251934337, 0.14196098925812006, 0.10013555988874479, 0.32154631204965056, 0.05416575683382341, 0.786126361492164, 0.04696516601190348, 0.26926088858349784, 0.28123172687107445, 0.3094364396730669, 0.04307250962973752, 0.07126159086244754, 0.6143015945908075, 0.495586079448059, 0.46102608015166635, 0.40789311683600216, 0.8929715185951024, 0.1227006502272181, 0.3638055988942468, 0.10470002869891348, 0.29304213908849364, 0.8936703981375603, 0.3534407380188983, 0.0883666731866185, 0.07895584641700149, 0.05166417783587085, 0.4199775765299997, 0.10304865631077798, 0.1041340676595982, 0.11031385635331636, 0.22368578646300386, 0.22137255536682798, 0.0725394352715707, 0.08320759746190642, 0.3577905591727162, 0.36362749207413336, 0.13058702032609693, 0.4306817897420764, 0.4684623303117058, 0.3185463047756948, 0.6991046594229053, 0.33105510290791684, 0.35804773811787727, 0.3499358724503807, 0.17780319308126435, 0.07142366539796174, 0.1504846162366139, 0.28643330026545544, 0.11492102279820171, 0.08716328114311156, 0.12905574960179156, 0.5528531989583015, 0.2852168598030531, 0.3185463047756948, 0.41766807389819915, 0.22818770291371737, 0.10749415552266317, 0.07500089027222667, 0.2150933620687273, 0.4879833184669665, 0.21367083697314282, 0.18281788227943807, 0.11217648511765432, 0.01860460444149037, 0.4990100838788346, 0.3212979959143686, 0.7252893191599291, 0.30018855716775616, 0.2808216200321265, 0.24332849241566534, 0.22583693263898685, 0.307128141019565, 0.12930297020615966, 0.07734813107736227, 0.38078614076753503, 0.037937415915298756, 0.18389331462546077, 0.2015421194948802, 0.10121634311933059, 0.7209948827487924, 0.252131738577411, 0.19866278493931944, 0.5569604587758099, 0.19172534874952063, 0.07516041810443141, 0.18673310211333727, 0.20736440356309183, 0.27568985010185776, 0.1748501221961516, 0.134246332983591, 0.12151400729184814, 0.03860330573341564, 0.16198960071610413, 0.062309112953929935, 0.14943540958877521, 0.46827469198568006, 0.12435295831370408, 0.11768791031746062, 0.10794707492381372, 0.04347111427796346, 0.07423675680829, 0.1602542791395647, 0.19911642350143877, 0.2379444352717226, 0.36664322039668684, 0.10130143557253446, 0.17108028607870185, 0.6143194513817134, 0.5641235853966853, 0.29864316680665437, 0.44752301946823647, 0.13459844499503626, 0.037461465199631894, 0.5002964248569376, 0.4059565893810353, 0.7035957096210382, 0.0629603198376949, 0.25036415064992923, 0.14780834332950044, 0.24800647860056513, 0.10438723399855232, 0.24366911510822187, 0.4574644219698093, 0.8347014835967527, 0.42226245660703365, 0.4073158502222598, 0.47525484003715535, 0.37845934883934684, 0.35325777167774697, 0.4763432908647238, 0.18941100564626978, 0.23853527246002126, 0.27277355193056574, 0.5556171757583562, 0.19481513110659687, 0.7460207524242459, 0.12627308236197843, 0.2115813466591615, 0.4773837842994688, 0.22238536240250728, 0.1978655273089749, 0.32057959349203036, 0.1601330373243487, 0.6256605001243821, 0.34062746964654456, 0.5899158924001677, 0.1273375405407705, 0.6866376712310945, 0.3812864953771038, 0.07918534602430627, 0.10510921928053807, 0.052405178286905496, 0.29010285216427345, 0.5802968836962079, 0.4475494904811408, 0.33107045093633036, 0.6046547135519548, 0.33132995382553565, 0.3391582818855403, 0.37109937806185267, 0.18876467901964422, 0.03244681540368277, 0.6531311156123596, 0.18281848038190407, 0.06840545126676123, 0.23876166598551407, 0.5602062902528231, 0.05478334190217349, 0.18965009362393503, 0.502081053312289, 0.0945975060483667, 0.24937367783354814, 0.14040338921272166, 0.09582424632391484, 0.4879833184669665, 0.07536550594022651, 0.37763546052463404, 0.20240400638142053, 0.06234715971662652, 0.1729504208160284, 0.2536573606029918, 0.1491704939138675, 0.47224603889779837, 0.20734784509414073, 0.1656619584420439, 0.20263687678412212, 0.4576701693643329, 0.3746187330143109, 0.06578487521364562, 0.09359041291034786, 0.15714155813810793, 0.43198081216185935, 0.17693664965610134, 0.14200602748771296, 0.16878839641400256, 0.11131318694256087, 0.43040972974554736, 0.12494266711040569, 0.5286591337585229, 0.3917329141436472, 0.14284790216410748, 0.29931895876037384, 0.3998656181534954, 0.13198036366642862, 0.2166851793268345, 0.164669749255824, 0.3116999397838065, 0.5702002297218003, 0.2867818412254799, 0.05809024612643199, 0.0701620515557333, 0.10493669218879953, 0.03474255021640338, 0.14069518845012563, 0.7697788668098057, 0.44513161239284327, 0.12104291767226882, 0.2823656727566666, 0.28640273091276736, 0.09904459769556595, 0.10889384421684001, 0.1978655273089749, 0.6326587477498924, 0.0766186874204361, 0.07300117689776386, 0.3978521493117628, 0.7293533971641823, 0.24040337450518035, 0.46827469198568006, 0.03737110954461231, 0.48112847828662497, 0.5755848065786346, 0.12151472907643468, 0.332302417201758, 0.3208349144509022, 0.13406270144296106, 0.47820199098358873, 0.024219732643774528, 0.7923035912680444, 0.3099424932714111, 0.8494816644677875, 0.15230116664989468, 0.8795672599938588, 0.34536882843285344, 0.587897812361327, 0.3660303223369904, 0.3074082248441362, 0.1925553058603695, 0.1582957933341015, 0.5297945963993664, 0.1892543681582496, 0.06574637766643598, 0.03286461121245521, 0.6223124217546917, 0.48666930315350876, 0.17200815643270417, 0.27042696199957883, 0.16010429726024444, 0.25291734909108765, 0.22778758435893687, 0.6055190518965303, 0.41989528411161425, 0.2865861541738164, 0.17344095530188786, 0.4163761941495938, 0.24610426408478792, 0.029106329843254564, 0.5849270471051293, 0.09607886499379148, 0.4890296174547498, 0.11193395874659995, 0.3667485749721523, 0.29672938182784603, 0.13696827462710404, 0.03986507081677082, 0.41542023534722683, 0.1642424989032959, 0.041559354155004224, 0.1266666793707928, 0.5259198205822933, 0.42123490919744344, 0.6147437654518444, 0.42849246998341506, 0.04874684240881699, 0.16870816563337898, 0.35179373534084035, 0.4552463954734379, 0.1543174595222413, 0.4641274821418986, 0.1106599594415556, 0.40441066041397966, 0.05916303638108533, 0.24194101851814365, 0.5755848065786346, 0.23631147082452741, 0.04679471849088612, 0.33132995382553565, 0.6031606095022326, 0.16900214819844117, 0.9322526967181247, 0.1065938389205352, 0.0540586741766943, 0.14920224829950646, 0.03054451782098533, 0.13595064656866984, 0.15908339514281045, 0.09402391562754642, 0.27219479721363327, 0.10477531970828624, 0.6046547135519548, 0.04412971358840656, 0.0821245873848182, 0.24953715645213048, 0.24311299470472425, 0.679537413518331, 0.02875041056121841, 0.2874129658970298, 0.17131102264191878, 0.07042427222914205, 0.1577516063520068, 0.39934634677258996, 0.42249259173992826, 0.24940231538328683, 0.46827469198568006, 0.040988937643475554, 0.034828704291737345, 0.26663563965858417, 0.22421743312747255, 0.10716094829621758, 0.7421831263598226, 0.4644511163280224, 0.1591307416719686, 0.21502194578256428, 0.12883185373794437, 0.15520095945599266, 0.04280666734842442, 0.06928764484923078, 0.3578757504587543, 0.0760792945579073, 0.06637805380770656, 0.5755848065786346, 0.4326356954473739, 0.16985579355455038, 0.47152805642545803, 0.11644579282256762, 0.11790522998710073, 0.5438286352264949, 0.41561805514360906, 0.050606352251634235, 0.21836830194439782, 0.22298545275517268, 0.1504846162366139, 0.16819644397314482, 0.47796113776613436, 0.14100197907825862, 0.7878397890034206, 0.12176963827920351, 0.09814942480303201, 0.23162396036129984, 0.04400104962869911, 0.061588508633294015, 0.2774601068082493, 0.40816383821078206, 0.14036214651023216, 0.11837607594274324, 0.0703155477214753, 0.17002415827487982, 0.24611532014486182, 0.06874641727313702, 0.30975746960573625, 0.07004288447243323, 0.6453829176356538, 0.3880412370469972, 0.10205495289732236, 0.12171087020281346, 0.38550692709735157, 0.4398162761337091, 0.5769741243450848, 0.48842976274850136, 0.3866799681687785, 0.17129518728202664, 0.5711206597512044, 0.4456070955069118, 0.4585850027539752, 0.25462747480751524, 0.34771016550763867, 0.35548618548401445, 0.07878090041588082, 0.3008706318705062, 0.08117751180329491, 0.055511805197920094, 0.1600174453683395, 0.35597309965685686, 0.5473978930443646, 0.3321771897262046, 0.14643302530661162, 0.7653011157176768, 0.24188431843396252, 0.16704799028757666, 0.41136103198090634, 0.5749869949413896, 0.709238838470871, 0.09340318303147321, 0.602429869503323, 0.04154705947390969, 0.7519582179986716, 0.15993940416551844, 0.04372375151311325, 0.4076899811241429, 0.4644511163280224, 0.3133137248525114, 0.24628490675063597, 0.06972977174174444, 0.15949948541388637, 0.2241543425141257, 0.1729876202034616, 0.07290025122558275, 0.1220000714032804, 0.36493953208423235, 0.09420126302076737, 0.026726938234992392, 0.7199273032686843, 0.4606762448039463, 0.04906818437448113, 0.19446415942665518, 0.14876853598344464, 0.3247816953453747, 0.023320858692869595, 0.7310618090422621, 0.48944479260603346, 0.20357574295749958, 0.0840537250624015, 0.5368744051465595, 0.21101467800102214, 0.46682279298460017, 0.3749869638443927, 0.46592999202179275, 0.10188412989688433, 0.15751976448865512], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"density\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"density\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}}, {\"id\": \"All_pH\", \"params\": {\"data\": [{\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Reference<br>pH=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [3.17, 3.36, 3.32, 3.59, 3.37, 3.4, 3.22, 3.36, 3.14, 3.1, 3.06, 3.16, 3.52, 3.06, 3.37, 3.14, 3.09, 2.95, 3.34, 3.18, 3.12, 3.21, 3.23, 3.25, 2.94, 3.64, 3.31, 3.14, 3.28, 3.33, 3.38, 3.3, 3.1, 3.38, 3.13, 3.11, 3.12, 3.4, 3.26, 3.25, 3.14, 3.46, 3.41, 3.12, 3.11, 3.4, 3.3, 3.22, 3.2, 3.0, 3.15, 3.17, 3.32, 3.19, 3.15, 3.03, 3.22, 3.26, 3.05, 3.51, 3.25, 3.46, 3.31, 3.32, 3.17, 3.31, 3.26, 3.12, 3.13, 3.19, 3.17, 3.04, 3.15, 3.01, 3.48, 3.29, 3.35, 3.25, 3.29, 3.0, 3.65, 3.27, 3.02, 3.2, 3.18, 3.07, 3.2, 3.37, 3.18, 3.08, 3.32, 3.19, 3.16, 3.54, 3.6, 3.39, 3.17, 3.26, 2.87, 3.33, 3.47, 3.04, 3.18, 3.4, 2.96, 3.5, 3.27, 3.24, 3.1, 3.3, 3.0, 3.15, 3.05, 3.4, 3.35, 3.15, 3.02, 3.1, 3.16, 3.4, 3.0, 2.99, 3.04, 3.06, 3.26, 3.36, 3.33, 3.04, 3.35, 3.61, 3.19, 3.21, 3.36, 3.27, 3.38, 3.27, 3.22, 3.54, 3.23, 3.12, 2.89, 3.52, 3.08, 3.2, 3.08, 3.22, 3.1, 3.25, 3.39, 3.2, 2.96, 2.92, 3.3, 3.17, 3.04, 3.18, 3.4, 3.11, 2.98, 3.2, 3.35, 3.26, 3.15, 3.49, 3.3, 3.09, 3.12, 3.36, 3.06, 3.36, 3.14, 3.34, 3.38, 3.03, 3.32, 3.26, 3.33, 3.08, 3.23, 3.58, 3.48, 3.13, 3.32, 3.39, 3.18, 3.34, 3.15, 3.22, 3.31, 3.54, 3.37, 3.71, 3.53, 3.26, 3.55, 3.0, 3.13, 3.1, 3.16, 2.9, 3.32, 3.36, 3.41, 3.38, 3.45, 3.23, 3.22, 3.14, 2.94, 3.4, 3.07, 3.24, 3.28, 3.23, 3.12, 3.36, 2.93, 3.21, 3.03, 3.1, 3.39, 3.28, 3.08, 3.02, 3.38, 3.2, 3.07, 3.34, 3.22, 3.6, 3.22, 3.18, 3.51, 3.03, 3.36, 3.66, 3.42, 3.14, 3.27, 3.21, 3.13, 2.98, 2.95, 3.26, 3.22, 3.23, 3.42, 3.2, 3.15, 3.25, 3.21, 3.14, 3.17, 3.24, 3.12, 3.15, 3.15, 2.93, 3.32, 3.14, 3.16, 3.38, 3.18, 3.01, 3.31, 3.28, 3.23, 3.28, 3.38, 3.56, 3.22, 3.49, 3.04, 2.91, 3.55, 3.39, 3.11, 3.27, 3.71, 3.17, 3.26, 3.06, 3.57, 3.26, 3.15, 3.28, 3.13, 3.14, 3.24, 2.94, 3.34, 3.12, 3.26, 3.23, 3.09, 3.19, 3.47, 3.21, 3.7, 3.37, 3.38, 3.38, 3.54, 3.15, 3.14, 3.4, 3.05, 3.19, 2.97, 3.09, 3.42, 3.03, 3.62, 3.37, 3.16, 3.16, 3.12, 3.29, 3.03, 3.2, 3.4, 2.95, 3.24, 3.53, 3.3, 3.47, 2.86, 3.15, 3.52, 3.22, 3.36, 2.98, 3.12, 3.25, 3.15, 2.93, 2.88, 3.27, 3.48, 3.22, 3.16, 3.01, 3.23, 3.34, 3.21, 3.13, 2.92, 3.32, 3.29, 3.04, 3.2, 3.24, 3.11, 3.02, 3.16, 3.46, 3.3, 3.18, 3.28, 3.14, 3.2, 3.14, 3.18, 3.3, 3.53, 2.87, 3.32, 3.28, 3.33, 3.1, 3.33, 3.23, 3.26, 2.89, 3.11, 3.06, 3.35, 3.33, 3.29, 3.38, 3.16, 3.12, 3.17, 3.44, 3.09, 3.0, 3.18, 3.22, 3.44, 3.14, 3.26, 3.1, 3.12, 3.27, 3.25, 3.39, 3.3, 3.06, 3.45, 3.22, 3.42, 3.52, 3.46, 3.34, 2.94, 3.23, 3.21, 3.12, 3.27, 3.11, 3.35, 3.22, 3.44, 3.38, 3.24, 3.16, 3.29, 3.16, 3.12, 3.06, 3.2, 3.08, 3.2, 2.96, 3.16, 3.42, 3.09, 3.11, 3.12, 3.29, 3.14, 3.27, 3.09, 3.33, 3.45, 3.48, 3.45, 3.51, 3.25, 3.12, 3.17, 3.13, 3.14, 3.12, 2.96, 3.23, 3.08, 3.24, 3.15, 3.33, 3.12, 3.29, 3.37, 3.27, 3.11, 3.22, 3.28, 3.4, 3.34, 3.12, 3.17, 3.45, 3.32, 3.05, 3.38, 3.32, 3.2, 3.27, 3.21, 3.32, 3.31, 3.19, 3.28, 3.12, 3.18, 3.12, 3.26, 3.25, 3.11, 3.15, 3.57, 2.98, 3.08, 3.49, 3.18, 3.06, 3.07, 3.04, 3.18, 3.21, 3.16, 3.21, 3.03, 3.28, 3.29, 3.11, 3.39, 3.24, 3.36, 3.54, 3.26, 2.98, 3.34, 3.09, 2.96, 3.11, 3.35, 3.13, 3.24, 3.23, 3.09, 2.99, 3.31, 3.09, 3.11, 2.94, 3.1, 3.26, 3.29, 3.26, 2.96, 3.08, 3.01, 3.41, 3.37, 3.2, 3.0, 3.09, 3.18, 3.18, 3.38, 3.41, 3.35, 3.11, 3.49, 3.36, 3.22, 3.02, 3.1, 3.17, 3.29, 3.22, 2.96, 3.18, 3.17, 3.08, 3.22, 3.36, 3.38, 3.43, 3.04, 3.12, 3.42, 3.06, 3.03, 3.35, 3.32, 3.34, 3.08, 3.05, 3.11, 3.08, 3.36, 3.44, 3.68, 2.93, 3.05, 3.13, 3.36, 3.1, 3.36, 3.2, 3.17, 3.08, 3.22, 3.3, 2.94, 3.21, 3.03, 3.05, 2.97, 3.36, 3.49, 3.54, 3.26, 3.34, 3.2, 3.25, 3.61, 3.05, 2.93, 3.12, 3.19, 3.22, 3.37, 3.36, 3.25, 3.42, 3.25, 3.02, 3.23, 3.32, 3.28, 3.2, 3.15, 3.14, 3.13, 3.16, 3.42, 2.94, 2.99, 3.21, 3.14, 3.37, 3.22, 3.39, 3.54, 2.95, 3.23, 2.87, 3.52, 3.02, 3.27, 3.21, 3.07, 3.23, 3.3, 3.14, 3.15, 3.08, 3.15, 3.09, 3.1, 3.2, 3.34, 3.05, 3.22, 3.15, 3.04, 3.4, 3.28, 3.28, 3.44, 3.24, 3.27], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Current<br>pH=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [3.03, 3.09, 3.09, 3.17, 3.21, 3.19, 3.19, 3.06, 2.96, 3.38, 3.28, 3.13, 3.16, 3.18, 3.46, 3.14, 3.32, 3.06, 3.41, 3.01, 3.14, 3.1, 3.13, 3.32, 3.14, 3.07, 2.97, 3.3, 3.08, 3.36, 2.96, 3.3, 3.37, 3.23, 2.96, 3.09, 3.21, 2.86, 3.23, 3.46, 2.99, 3.13, 3.14, 3.06, 3.21, 3.46, 3.16, 3.59, 2.93, 3.35, 3.29, 3.29, 3.16, 2.96, 3.32, 3.28, 2.87, 3.68, 3.41, 2.9, 3.41, 3.04, 3.2, 2.99, 3.08, 3.32, 3.4, 3.39, 3.3, 3.29, 3.07, 3.26, 3.27, 3.38, 3.25, 3.16, 3.19, 3.13, 3.29, 3.27, 3.11, 3.11, 3.34, 2.99, 3.08, 3.22, 3.47, 3.06, 3.2, 3.3, 3.26, 3.03, 3.42, 3.0, 3.17, 3.16, 3.07, 3.03, 3.2, 3.56, 3.02, 3.34, 3.4, 2.98, 3.07, 2.93, 3.27, 3.34, 3.36, 3.31, 3.15, 3.15, 3.0, 3.21, 3.27, 3.37, 3.75, 3.22, 3.05, 3.37, 3.41, 3.24, 3.21, 3.26, 3.29, 3.27, 3.43, 3.29, 3.34, 2.91, 3.05, 3.38, 3.14, 3.02, 3.32, 3.01, 3.2, 3.31, 3.27, 3.3, 3.13, 3.61, 3.1, 3.2, 3.16, 3.18, 3.07, 3.38, 2.99, 3.0, 3.19, 3.06, 3.19, 3.06, 3.21, 3.09, 3.26, 3.23, 3.2, 2.98, 3.25, 3.45, 3.04, 3.39, 3.07, 2.95, 3.15, 3.22, 3.34, 3.03, 3.42, 2.94, 3.17, 3.38, 3.38, 3.28, 3.3, 3.03, 3.18, 3.31, 3.38, 3.22, 3.27, 3.3, 3.22, 3.32, 3.41, 3.29, 3.0, 3.41, 2.99, 3.0, 3.27, 3.16, 3.41, 3.19, 2.9, 3.51, 3.07, 3.43, 2.93, 3.45, 3.25, 3.14, 2.96, 3.36, 3.18, 3.17, 3.42, 3.24, 3.24, 3.36, 3.39, 3.25, 3.1, 3.15, 3.2, 3.31, 3.54, 3.13, 3.24, 3.36, 3.42, 3.2, 3.24, 2.96, 3.38, 3.12, 3.33, 3.27, 3.53, 3.26, 3.11, 3.35, 3.22, 3.34, 3.1, 3.27, 2.98, 3.23, 3.3, 3.05, 2.95, 3.81, 3.37, 3.1, 2.94, 3.1, 3.51, 3.19, 3.29, 2.99, 3.28, 3.32, 3.05, 3.2, 3.26, 3.17, 2.97, 3.44, 3.35, 3.29, 3.51, 3.31, 3.23, 3.28, 3.31, 2.91, 3.22, 3.14, 3.2, 3.24, 3.04, 3.18, 3.42, 3.5, 3.45, 3.42, 3.47, 3.52, 3.06, 2.97, 3.28, 3.25, 3.12, 3.23, 3.15, 3.24, 3.34, 3.2, 3.26, 3.19, 3.34, 3.1, 3.03, 3.22, 3.07, 3.33, 3.2, 3.23, 3.03, 3.11, 2.92, 3.38, 3.01, 3.4, 3.36, 3.1, 3.09, 2.88, 3.23, 3.26, 3.56, 3.09, 3.31, 3.76, 3.1, 3.14, 3.14, 3.02, 3.17, 3.19, 3.49, 3.42, 3.32, 3.16, 3.11, 3.28, 3.12, 3.36, 3.35, 2.88, 3.36, 3.11, 2.96, 2.99, 3.29, 3.18, 3.12, 3.33, 3.17, 3.34, 3.52, 3.39, 3.32, 3.11, 3.4, 3.45, 3.42, 3.05, 3.14, 3.22, 3.12, 3.06, 3.08, 3.36, 3.28, 3.17, 3.15, 3.4, 3.03, 3.33, 3.34, 2.94, 3.21, 3.24, 3.22, 3.54, 3.25, 3.1, 3.2, 3.29, 3.21, 3.03, 3.07, 3.35, 3.16, 3.18, 3.3, 3.44, 3.07, 3.13, 3.06, 3.22, 3.19, 3.48, 2.94, 3.33, 3.3, 3.24, 3.24, 3.19, 3.55, 3.18, 3.32, 3.36, 2.97, 3.17, 3.3, 3.3, 3.4, 3.3, 3.2, 2.85, 3.32, 3.42, 3.33, 3.3, 2.96, 3.12, 3.26, 3.49, 3.0, 3.12, 3.12, 3.37, 3.06, 3.17, 3.15, 3.14, 3.31, 3.27, 3.24, 3.4, 2.98, 3.06, 3.15, 3.0, 3.41, 3.16, 3.05, 3.8, 3.09, 3.15, 3.32, 3.43, 3.37, 3.01, 3.34, 3.0, 3.14, 3.57, 3.11, 3.04, 3.06, 2.94, 3.7, 3.18, 3.39, 3.2, 3.14, 3.34, 3.34, 3.16, 2.94, 3.41, 3.2, 3.29, 3.6, 3.28, 3.04, 3.2, 3.3, 3.06, 3.03, 3.52, 3.16, 3.5, 3.25, 3.46, 3.36, 3.05, 3.58, 2.9, 3.15, 3.13, 3.24, 3.23, 3.32, 3.44, 3.19, 3.21, 3.39, 3.41, 3.35, 2.99, 3.07, 3.04, 3.09, 3.42, 3.27, 3.36, 3.31, 3.27, 3.14, 3.3, 3.11, 3.11, 3.29, 3.1, 3.04, 3.06, 3.14, 3.42, 3.32, 3.22, 3.17, 3.34, 3.08, 3.1, 3.34, 3.25, 3.12, 3.06, 3.12, 3.29, 3.38, 3.27, 3.24, 3.52, 3.36, 3.21, 3.59, 3.25, 3.22, 2.99, 3.16, 3.31, 3.21, 3.06, 3.38, 3.16, 3.01, 3.19, 3.15, 3.13, 3.05, 3.0, 3.35, 3.0, 3.38, 3.24, 3.33, 3.38, 3.29, 3.26, 3.23, 3.31, 3.15, 3.14, 3.16, 2.99, 3.42, 3.23, 3.44, 3.23, 3.4, 3.18, 3.46, 3.36, 3.2, 3.04, 2.9, 3.35, 3.26, 3.08, 3.05, 3.12, 3.31, 3.16, 3.72, 3.47, 3.54, 3.29, 2.99, 3.49, 3.47, 3.13, 3.2, 3.19, 3.24, 3.07, 3.03, 3.51, 3.16, 3.22, 3.29, 3.22, 3.11, 3.44, 3.44, 3.3, 3.2, 2.94, 3.22, 3.12, 3.4, 3.3, 3.19, 3.27, 3.15, 3.28, 3.09, 3.04, 3.24, 3.26, 3.15, 3.23, 3.44, 3.34, 3.24, 2.98, 3.19, 3.0, 3.29, 3.1, 3.35, 3.28, 3.0, 3.26, 3.24, 2.98, 3.15, 3.26, 3.27, 3.11, 3.04, 2.93, 3.22, 3.19, 3.38, 3.06, 3.26, 3.25, 3.35, 3.24, 3.19, 3.34, 3.06, 3.13, 3.13, 3.03, 2.97, 3.41, 3.06, 3.11, 3.22, 3.25], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Reference<br>pH=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [3.16, 3.03, 3.03, 3.45, 3.15, 3.46, 3.34, 3.36, 3.16, 3.18, 3.3, 3.25, 3.02, 3.24, 3.32, 3.24, 3.3, 3.5, 3.06, 3.53, 3.19, 3.26, 3.54, 2.94, 3.6, 3.26, 3.27, 3.29, 3.1, 3.3, 3.48, 3.01, 3.66, 3.19, 3.0, 3.15, 2.96, 3.2, 3.04, 3.08, 3.02, 3.39, 3.27, 3.15, 3.19, 3.3, 3.32, 3.4, 3.23, 3.32, 3.09, 3.08, 3.2, 3.19, 3.11, 2.96, 3.17, 3.28, 3.14, 3.26, 3.19, 3.58, 3.43, 3.34, 3.13, 3.26, 3.22, 3.27, 3.61, 2.79, 3.09, 3.27, 3.05, 3.21, 3.1, 3.16, 3.08, 3.28, 3.2, 3.11, 2.98, 3.05, 3.12, 3.39, 3.11, 3.24, 3.14, 3.26, 3.17, 3.01, 3.27, 3.31, 3.15, 3.05, 2.96, 3.18, 2.98, 3.14, 3.15, 3.27, 3.01, 3.52, 3.35, 3.22, 3.29, 3.08, 3.16, 3.37, 3.27, 3.22, 3.37, 3.37, 3.41, 3.34, 3.49, 3.11, 3.16, 3.32, 3.06, 3.15, 3.09, 3.41, 3.22, 3.11, 3.1, 3.05, 3.29, 3.1, 3.23, 3.16, 2.89, 3.43, 3.1, 3.22, 3.11, 3.17, 3.13, 3.26, 3.09, 3.25, 3.07, 3.18, 3.28, 3.14, 3.14, 3.02, 3.44, 3.11, 3.14, 3.32, 3.13, 3.45, 2.92, 3.46, 2.99, 3.25, 3.2, 3.25, 3.46, 2.97, 3.15, 3.14, 3.05, 3.16, 3.34, 3.18, 3.18, 3.26, 2.96, 3.08, 3.12, 3.22, 3.37, 2.99, 3.22, 3.24, 3.33, 3.2, 3.46, 3.01, 3.24, 3.54, 3.28, 3.13, 3.1, 3.21, 3.12, 3.01, 3.28, 3.12, 3.02, 3.01, 3.08, 3.14, 3.16, 3.34, 3.08, 3.16, 3.06, 3.07, 3.3, 3.16, 3.16, 3.15, 3.63, 3.09, 3.22, 3.21, 3.72, 3.09, 3.14, 3.5, 3.04, 3.06, 3.18, 3.24, 3.11, 2.97, 2.94, 2.87, 2.88, 3.5, 3.06, 2.96, 3.1, 3.11, 3.34, 3.02, 3.22, 3.49, 3.33, 2.94, 3.5, 3.1, 3.16, 2.92, 3.39, 3.39, 3.15, 3.02, 3.24, 3.11, 3.03, 3.12, 3.5, 3.15, 3.22, 3.18, 3.24, 3.24, 3.41, 3.14, 3.66, 3.39, 3.1, 3.09, 3.17, 3.41, 3.14, 3.16, 3.05, 3.14, 3.39, 3.0, 3.16, 3.21, 3.77, 3.74, 3.42, 3.29, 3.44, 3.08, 3.21, 3.11, 3.19, 3.31, 3.44, 3.0, 3.13, 3.29, 3.34, 3.59, 3.17, 3.29, 3.15, 3.16, 2.9, 3.28, 3.08, 3.25, 3.06, 3.12, 3.24, 3.51, 3.3, 2.94, 3.13, 3.29, 3.08, 3.23, 3.68, 3.28, 3.36, 3.25, 3.31, 3.08, 3.12, 3.34, 3.04, 3.03, 3.06, 3.22, 3.59, 3.18, 3.38, 3.09, 3.1, 3.31, 3.22, 3.66, 3.32, 3.19, 3.36, 3.28, 3.15, 3.14, 2.98, 3.19, 3.29, 3.22, 2.93, 3.38, 3.35, 3.2, 3.25, 3.09, 3.13, 3.05, 3.1, 3.23, 3.3, 3.21, 3.24, 3.18, 3.24, 3.48, 3.53, 3.14, 3.38, 3.08, 3.04, 3.34, 3.06, 3.63, 3.09], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Current<br>pH=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [3.36, 3.22, 3.03, 3.07, 2.93, 2.93, 3.23, 3.29, 3.29, 3.03, 3.12, 3.16, 3.14, 3.12, 3.14, 3.27, 3.14, 3.16, 3.32, 2.97, 3.27, 2.96, 3.15, 3.12, 3.15, 3.07, 3.44, 3.18, 3.3, 3.46, 2.98, 3.3, 3.38, 3.2, 3.42, 3.32, 3.25, 3.42, 3.29, 3.26, 3.01, 3.1, 3.0, 3.22, 3.08, 3.28, 3.27, 3.15, 3.14, 2.79, 3.19, 3.17, 2.99, 3.37, 3.39, 3.28, 3.48, 2.92, 3.04, 3.08, 2.92, 3.31, 3.23, 3.48, 3.03, 3.53, 3.03, 3.51, 3.45, 3.37, 3.38, 3.21, 3.47, 3.32, 3.19, 3.18, 3.04, 3.07, 3.14, 3.39, 3.21, 3.15, 3.33, 3.2, 3.05, 2.97, 3.47, 3.22, 3.14, 3.35, 3.23, 3.08, 3.28, 3.18, 3.4, 3.5, 3.14, 3.17, 3.37, 3.24, 3.15, 3.08, 3.27, 3.34, 3.19, 3.35, 3.16, 3.36, 3.15, 3.18, 3.3, 2.94, 3.4, 3.29, 2.8, 3.13, 3.1, 3.17, 3.18, 3.13, 3.37, 3.34, 3.36, 3.39, 3.29, 3.38, 3.26, 2.93, 3.29, 3.08, 3.16, 3.25, 3.18, 2.96, 3.45, 3.16, 3.23, 3.29, 3.13, 2.94, 3.12, 3.05, 2.83, 3.16, 3.46, 3.22, 3.05, 3.34, 3.23, 3.23, 3.19, 3.47, 3.42, 3.17, 3.1, 3.16, 3.21, 3.2, 3.08, 2.99, 3.31, 3.18, 2.97, 3.04, 3.38, 3.13, 3.19, 3.37, 3.22, 3.06, 3.38, 3.23, 3.15, 3.15, 3.27, 3.26, 3.0, 3.07, 3.04, 3.24, 3.2, 3.42, 3.16, 3.21, 3.24, 2.95, 3.1, 3.07, 3.09, 3.23, 3.53, 3.28, 3.1, 3.18, 3.08, 3.33, 3.06, 3.14, 3.35, 3.09, 3.48, 3.25, 3.13, 3.2, 2.95, 3.25, 3.19, 3.2, 3.28, 3.06, 3.17, 3.13, 3.33, 3.0, 3.19, 3.03, 2.89, 3.08, 2.92, 3.19, 3.14, 3.22, 3.38, 3.09, 3.08, 3.38, 3.48, 3.54, 3.24, 3.24, 3.14, 3.12, 3.3, 3.09, 3.19, 3.04, 3.25, 3.45, 3.18, 3.42, 3.56, 3.67, 3.05, 3.4, 3.21, 3.16, 3.54, 3.32, 3.1, 3.19, 3.31, 3.13, 2.85, 3.16, 3.0, 3.26, 3.4, 3.32, 3.01, 3.24, 3.66, 3.37, 3.58, 3.58, 2.89, 3.31, 3.21, 3.3, 3.4, 3.1, 3.15, 3.51, 2.99, 3.16, 3.1, 3.08, 3.06, 3.55, 3.35, 2.98, 3.48, 3.34, 3.11, 3.56, 3.16, 3.32, 2.95, 3.24, 3.15, 3.15, 3.16, 3.33, 3.2, 3.51, 3.26, 3.26, 3.16, 3.1, 3.14, 3.37, 3.34, 3.05, 3.19, 3.02, 3.05, 2.97, 3.17, 3.13, 3.27, 3.12, 3.34, 3.49, 3.14, 3.32, 3.22, 3.03, 3.1, 3.19, 3.77, 3.36, 3.18, 3.34, 3.3, 3.27, 3.44, 3.07, 3.14, 3.13, 3.18, 3.47, 3.39, 3.31, 3.16, 3.44, 3.28, 3.17, 3.24, 3.17, 3.3, 3.24, 3.13, 3.23, 3.34, 3.29, 3.16, 2.99, 3.39, 3.36, 3.3, 3.14, 3.18, 3.19], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Reference\", \"x\": 0.245, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Current\", \"x\": 0.755, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"barmode\": \"overlay\", \"legend\": {\"title\": {\"text\": \"target\"}, \"tracegroupgap\": 0}, \"margin\": {\"t\": 60}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.49], \"title\": {\"text\": \"pH\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.51, 1.0], \"matches\": \"x\", \"title\": {\"text\": \"pH\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"count\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}}}}, {\"id\": \"pH_good\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (ref)\", \"type\": \"scatter\", \"x\": [3.17, 3.36, 3.32, 3.59, 3.37, 3.4, 3.22, 3.36, 3.14, 3.1, 3.06, 3.16, 3.52, 3.06, 3.37, 3.14, 3.09, 2.95, 3.34, 3.18, 3.12, 3.21, 3.23, 3.25, 2.94, 3.64, 3.31, 3.14, 3.28, 3.33, 3.38, 3.3, 3.1, 3.38, 3.13, 3.11, 3.12, 3.4, 3.26, 3.25, 3.14, 3.46, 3.41, 3.12, 3.11, 3.4, 3.3, 3.22, 3.2, 3.0, 3.15, 3.17, 3.32, 3.19, 3.15, 3.03, 3.22, 3.26, 3.05, 3.51, 3.25, 3.46, 3.31, 3.32, 3.17, 3.31, 3.26, 3.12, 3.13, 3.19, 3.17, 3.04, 3.15, 3.01, 3.48, 3.29, 3.35, 3.25, 3.29, 3.0, 3.65, 3.27, 3.02, 3.2, 3.18, 3.07, 3.2, 3.37, 3.18, 3.08, 3.32, 3.19, 3.16, 3.54, 3.6, 3.39, 3.17, 3.26, 2.87, 3.33, 3.47, 3.04, 3.18, 3.4, 2.96, 3.5, 3.27, 3.24, 3.1, 3.3, 3.0, 3.15, 3.05, 3.4, 3.35, 3.15, 3.02, 3.1, 3.16, 3.4, 3.0, 2.99, 3.04, 3.06, 3.26, 3.36, 3.33, 3.04, 3.35, 3.61, 3.19, 3.21, 3.36, 3.27, 3.38, 3.27, 3.22, 3.54, 3.23, 3.12, 2.89, 3.52, 3.08, 3.2, 3.08, 3.22, 3.1, 3.25, 3.39, 3.2, 2.96, 2.92, 3.3, 3.17, 3.04, 3.18, 3.4, 3.11, 2.98, 3.2, 3.35, 3.26, 3.15, 3.49, 3.3, 3.09, 3.12, 3.36, 3.06, 3.36, 3.14, 3.34, 3.38, 3.03, 3.32, 3.26, 3.33, 3.08, 3.23, 3.58, 3.48, 3.13, 3.32, 3.39, 3.18, 3.34, 3.15, 3.22, 3.31, 3.54, 3.37, 3.71, 3.53, 3.26, 3.55, 3.0, 3.13, 3.1, 3.16, 2.9, 3.32, 3.36, 3.41, 3.38, 3.45, 3.23, 3.22, 3.14, 2.94, 3.4, 3.07, 3.24, 3.28, 3.23, 3.12, 3.36, 2.93, 3.21, 3.03, 3.1, 3.39, 3.28, 3.08, 3.02, 3.38, 3.2, 3.07, 3.34, 3.22, 3.6, 3.22, 3.18, 3.51, 3.03, 3.36, 3.66, 3.42, 3.14, 3.27, 3.21, 3.13, 2.98, 2.95, 3.26, 3.22, 3.23, 3.42, 3.2, 3.15, 3.25, 3.21, 3.14, 3.17, 3.24, 3.12, 3.15, 3.15, 2.93, 3.32, 3.14, 3.16, 3.38, 3.18, 3.01, 3.31, 3.28, 3.23, 3.28, 3.38, 3.56, 3.22, 3.49, 3.04, 2.91, 3.55, 3.39, 3.11, 3.27, 3.71, 3.17, 3.26, 3.06, 3.57, 3.26, 3.15, 3.28, 3.13, 3.14, 3.24, 2.94, 3.34, 3.12, 3.26, 3.23, 3.09, 3.19, 3.47, 3.21, 3.7, 3.37, 3.38, 3.38, 3.54, 3.15, 3.14, 3.4, 3.05, 3.19, 2.97, 3.09, 3.42, 3.03, 3.62, 3.37, 3.16, 3.16, 3.12, 3.29, 3.03, 3.2, 3.4, 2.95, 3.24, 3.53, 3.3, 3.47, 2.86, 3.15, 3.52, 3.22, 3.36, 2.98, 3.12, 3.25, 3.15, 2.93, 2.88, 3.27, 3.48, 3.22, 3.16, 3.01, 3.23, 3.34, 3.21, 3.13, 2.92, 3.32, 3.29, 3.04, 3.2, 3.24, 3.11, 3.02, 3.16, 3.46, 3.3, 3.18, 3.28, 3.14, 3.2, 3.14, 3.18, 3.3, 3.53, 2.87, 3.32, 3.28, 3.33, 3.1, 3.33, 3.23, 3.26, 2.89, 3.11, 3.06, 3.35, 3.33, 3.29, 3.38, 3.16, 3.12, 3.17, 3.44, 3.09, 3.0, 3.18, 3.22, 3.44, 3.14, 3.26, 3.1, 3.12, 3.27, 3.25, 3.39, 3.3, 3.06, 3.45, 3.22, 3.42, 3.52, 3.46, 3.34, 2.94, 3.23, 3.21, 3.12, 3.27, 3.11, 3.35, 3.22, 3.44, 3.38, 3.24, 3.16, 3.29, 3.16, 3.12, 3.06, 3.2, 3.08, 3.2, 2.96, 3.16, 3.42, 3.09, 3.11, 3.12, 3.29, 3.14, 3.27, 3.09, 3.33, 3.45, 3.48, 3.45, 3.51, 3.25, 3.12, 3.17, 3.13, 3.14, 3.12, 2.96, 3.23, 3.08, 3.24, 3.15, 3.33, 3.12, 3.29, 3.37, 3.27, 3.11, 3.22, 3.28, 3.4, 3.34, 3.12, 3.17, 3.45, 3.32, 3.05, 3.38, 3.32, 3.2, 3.27, 3.21, 3.32, 3.31, 3.19, 3.28, 3.12, 3.18, 3.12, 3.26, 3.25, 3.11, 3.15, 3.57, 2.98, 3.08, 3.49, 3.18, 3.06, 3.07, 3.04, 3.18, 3.21, 3.16, 3.21, 3.03, 3.28, 3.29, 3.11, 3.39, 3.24, 3.36, 3.54, 3.26, 2.98, 3.34, 3.09, 2.96, 3.11, 3.35, 3.13, 3.24, 3.23, 3.09, 2.99, 3.31, 3.09, 3.11, 2.94, 3.1, 3.26, 3.29, 3.26, 2.96, 3.08, 3.01, 3.41, 3.37, 3.2, 3.0, 3.09, 3.18, 3.18, 3.38, 3.41, 3.35, 3.11, 3.49, 3.36, 3.22, 3.02, 3.1, 3.17, 3.29, 3.22, 2.96, 3.18, 3.17, 3.08, 3.22, 3.36, 3.38, 3.43, 3.04, 3.12, 3.42, 3.06, 3.03, 3.35, 3.32, 3.34, 3.08, 3.05, 3.11, 3.08, 3.36, 3.44, 3.68, 2.93, 3.05, 3.13, 3.36, 3.1, 3.36, 3.2, 3.17, 3.08, 3.22, 3.3, 2.94, 3.21, 3.03, 3.05, 2.97, 3.36, 3.49, 3.54, 3.26, 3.34, 3.2, 3.25, 3.61, 3.05, 2.93, 3.12, 3.19, 3.22, 3.37, 3.36, 3.25, 3.42, 3.25, 3.02, 3.23, 3.32, 3.28, 3.2, 3.15, 3.14, 3.13, 3.16, 3.42, 2.94, 2.99, 3.21, 3.14, 3.37, 3.22, 3.39, 3.54, 2.95, 3.23, 2.87, 3.52, 3.02, 3.27, 3.21, 3.07, 3.23, 3.3, 3.14, 3.15, 3.08, 3.15, 3.09, 3.1, 3.2, 3.34, 3.05, 3.22, 3.15, 3.04, 3.4, 3.28, 3.28, 3.44, 3.24, 3.27], \"xaxis\": \"x\", \"y\": [0.8156061324462894, 0.42491310922683634, 0.8867827646463432, 0.8014995238430205, 0.30499958310650876, 0.5817355832705369, 0.959171062334887, 0.7854416128369749, 0.9085690698200813, 0.8998600376511439, 0.6341165000693628, 0.412102187638673, 0.7643629411050379, 0.4710001938005606, 0.40182653035141874, 0.40438056362905367, 0.8870480016118494, 0.3650667978415713, 0.9064321709292111, 0.9327245345966092, 0.6458420185168736, 0.8821841129047617, 0.6704018506542557, 0.7655671181822064, 0.8616986618932058, 0.48774537944210006, 0.9637355036179479, 0.6794204065079696, 0.6044835155949141, 0.7867954023600708, 0.9137982268836646, 0.5867502063434873, 0.8048584290077971, 0.9718511071053526, 0.9627192884041744, 0.7978623718349598, 0.6091120966723917, 0.8943338178728011, 0.8853376735027229, 0.9045563504021151, 0.9264844632598176, 0.6342457655367447, 0.9414033426130164, 0.5636516403732365, 0.5172967922101196, 0.4836896337264441, 0.35199620689495453, 0.788779954566273, 0.9696552399248426, 0.772496554239754, 0.8132656157621138, 0.4539090261140653, 0.9333708926412786, 0.679765045723866, 0.48457442622955804, 0.4248820606938153, 0.6737819616086004, 0.8780741425819777, 0.38340602447337646, 0.90634085684919, 0.5574014604752268, 0.6804147683859246, 0.9077110088845216, 0.7718472635729894, 0.4717552048891654, 0.22222808308441652, 0.8616549355667619, 0.705749071892896, 0.4699129352300819, 0.9680524782819758, 0.8891353183282249, 0.9466602521798594, 0.8553382520847058, 0.7430243903066251, 0.6616131862201935, 0.6919609500216202, 0.96565744679506, 0.913108907487878, 0.5395521774612226, 0.9026238558501023, 0.6550941529376255, 0.9757876320152292, 0.8833495792027257, 0.6666029765862381, 0.8504582120840628, 0.9320215595878566, 0.7639947574915884, 0.6085229656221847, 0.9557131606798471, 0.46184432615952054, 0.5642658412077981, 0.8815615400732472, 0.7189203536918151, 0.9301020530176726, 0.7341394174346678, 0.7759189559372703, 0.8448078654733812, 0.9012666081120407, 0.8926028620066223, 0.5287492720273277, 0.6874206920638863, 0.37408584674942635, 0.8348370105186077, 0.8697567261320243, 0.9175759024810304, 0.44644098895981, 0.8874384748400057, 0.7787567487441118, 0.9416122482572158, 0.3265229243180111, 0.9308095750950773, 0.42267134533232753, 0.43068181214270274, 0.8727308285810839, 0.7201611177732586, 0.8430904589044517, 0.8140617541555761, 0.9456747441572588, 0.6672663325862807, 0.8756470416862959, 0.518871521713375, 0.7040615347784164, 0.4957960231649875, 0.6250130361556073, 0.27413726132188326, 0.5193133578087885, 0.37656641690434584, 0.5808048103476511, 0.7917827117482167, 0.36569143480873245, 0.7232542293832885, 0.9785934574433302, 0.5715075300165849, 0.8182555969893297, 0.5448461144048058, 0.9491291995847589, 0.4833587957991669, 0.3189279754564957, 0.9184825510014271, 0.5524830505676419, 0.9600429304649183, 0.7818180966165994, 0.7962710274484252, 0.7569429870375118, 0.46184432615952054, 0.7641514270390748, 0.9486763575522457, 0.8086368705092697, 0.6784536879503494, 0.6877019790624462, 0.6082670858563528, 0.6053794617794684, 0.6319330693089359, 0.4982105707488519, 0.6787928880949093, 0.9231980717613485, 0.8831230955067948, 0.6845485656817341, 0.8799204262605215, 0.9164563829924386, 0.7819268199067826, 0.23469888428232324, 0.9492377841603665, 0.8826092272015389, 0.6360541596480074, 0.5184081252698399, 0.6400126753125241, 0.542646305979658, 0.4479501208302092, 0.7783171875827786, 0.7867712153112567, 0.5236605417423803, 0.6959846197179591, 0.7925023358445066, 0.6683189355892497, 0.18737025221649042, 0.42506327048176057, 0.7272596040941706, 0.7314191754306454, 0.4827891324637794, 0.6649341228620356, 0.9038332731164471, 0.9588917860646077, 0.8945194928389463, 0.49833043835950624, 0.7997712594855277, 0.8577935987172323, 0.7622736922026153, 0.8039391974899521, 0.7396811504731934, 0.8115340233127679, 0.801728888664367, 0.738451208106372, 0.5859674792922007, 0.1865203674848816, 0.8773430435604171, 0.36888329310067386, 0.8651817982269884, 0.9067615420962557, 0.8594983988587351, 0.7437750884018276, 0.9145224932934428, 0.9135679891815164, 0.8001832456898428, 0.6860977766129374, 0.9377826008632761, 0.9300369611912853, 0.6997062971069969, 0.5693182102579236, 0.3404656140239559, 0.7160591142088384, 0.7953146078011, 0.8869803873277935, 0.7639982823097876, 0.8681285227071118, 0.576868797021353, 0.93035102563313, 0.8375600281828176, 0.8279918435672958, 0.9266689436294401, 0.7559862346636359, 0.5099889666930224, 0.6914445842613687, 0.9651950326885705, 0.87851968214492, 0.8499702807396289, 0.4685752957996948, 0.7241546992314323, 0.7848147251007912, 0.7341394174346678, 0.7008877443692281, 0.340588975625529, 0.5013021766499856, 0.8321174529331695, 0.8818378666553491, 0.9176909075187759, 0.8634678749265305, 0.7436082905772717, 0.9343776659412377, 0.7668809937296346, 0.6243383802582345, 0.5332560471205093, 0.6907315465649003, 0.16626803588025432, 0.1668542888532837, 0.7408943843163458, 0.5221312328975666, 0.7457559475413279, 0.46389636934606376, 0.9292627865919654, 0.5268311186840582, 0.4244151934213653, 0.643310536612302, 0.8577438313980266, 0.7816208399762355, 0.8553382520847058, 0.7010035672814305, 0.5242572272016158, 0.9187320011579697, 0.8703498177621264, 0.6713045345576062, 0.9137982268836646, 0.8614414457916845, 0.9445662266054761, 0.8808216590199034, 0.7386378115490353, 0.8873009977622293, 0.9157094897337859, 0.6606038558129893, 0.9296803968514485, 0.8864322240790464, 0.5146720135715994, 0.8720710714485208, 0.9415427660945741, 0.9138701141498735, 0.6527559092576063, 0.8751970040938668, 0.9249766460056568, 0.801728888664367, 0.6575848465963361, 0.6934824043184128, 0.8619113960143526, 0.9419078024651042, 0.9591721389341828, 0.8397407150753159, 0.9084383840076588, 0.4963969309336195, 0.7359588175524252, 0.3531961907069324, 0.9279819479140234, 0.7752976919572294, 0.8665226278427577, 0.9515211055933231, 0.7314191754306454, 0.890886918514299, 0.3235491032739525, 0.3719939405423586, 0.6323804178173072, 0.8398006965792015, 0.8239469134189235, 0.8592101816891015, 0.7615002907198236, 0.8688259750909261, 0.8718104001390852, 0.5838074755684882, 0.8756470416862959, 0.901850575196968, 0.9451930143658351, 0.6253812669856891, 0.5890764576710766, 0.4921052500998711, 0.4862070578416567, 0.9170647663398394, 0.7035583451969506, 0.8476385889092957, 0.5603058978573646, 0.5810606890504925, 0.9088604673919816, 0.8903252600075929, 0.944267921154058, 0.9435968591480925, 0.938237366988842, 0.9357286047893738, 0.7961386682142712, 0.7840233885688647, 0.2513590507613302, 0.7389284097502917, 0.9053472250810051, 0.44438282424164377, 0.862281110352348, 0.8021059248496223, 0.9152740930046814, 0.643737358401971, 0.8540304955499701, 0.8613418170006786, 0.6911084183178322, 0.8848367871057808, 0.8387883096682573, 0.5942651630821018, 0.65691393717736, 0.6369979527510315, 0.8280658524313272, 0.9640736168216585, 0.6546311715671466, 0.5599819536107853, 0.48348053317652906, 0.7668016587569692, 0.03620763244300767, 0.7364400865449663, 0.37408584674942635, 0.8767503774172, 0.8743962287172513, 0.8751970040938668, 0.8833495792027257, 0.7091886355621774, 0.87006937054451, 0.7904001815220257, 0.8761418339280951, 0.8306834851111597, 0.7531715889012326, 0.38181207472529843, 0.6490458991820136, 0.9138057013338913, 0.9046222904886461, 0.17956061692355052, 0.7506163079023257, 0.8963285795381793, 0.8848361664653354, 0.9283037217377402, 0.45996158699034445, 0.7290858434196763, 0.8319094967702583, 0.6578018675312727, 0.18727567457681707, 0.8673410249845035, 0.9453298670648187, 0.9446538464906173, 0.19605573045952288, 0.6723831041639817, 0.3438281302059518, 0.37858973820495484, 0.6953170483296187, 0.21463507152544156, 0.26963792069965237, 0.3280912492037974, 0.8399932187801539, 0.420387898633768, 0.36522500752858966, 0.5810560693343539, 0.9306346767722963, 0.7167716539092029, 0.656736106921484, 0.5549139996760648, 0.6909161521388689, 0.591904263202073, 0.884703171197362, 0.866402281883595, 0.7582770814524421, 0.8990773411030794, 0.1818065866116437, 0.6222165686186035, 0.17261914235374884, 0.8156064679757086, 0.4851213943917703, 0.8871292211128762, 0.8398494053952754, 0.703270618172154, 0.6305543892506115, 0.7494149477175548, 0.1532408287022325, 0.6159732902773407, 0.738220551127759, 0.8354520044441791, 0.8536870432671441, 0.5751476712690671, 0.9077719201719568, 0.7878515691455199, 0.6672663325862807, 0.45293736875445273, 0.17058553029544155, 0.747933377844996, 0.8400163125056676, 0.4516778718827729, 0.6082670858563528, 0.8401843469141149, 0.7636885291754726, 0.789170795337903, 0.8128612802083497, 0.7522530659814418, 0.8086757686066508, 0.8356255123032285, 0.9241779635105248, 0.9674588597049086, 0.9368885694202199, 0.4990764491242286, 0.876561204324957, 0.554264192243629, 0.5967716244634195, 0.9060244606340249, 0.8401608718856799, 0.7329750583133859, 0.8021769878309102, 0.9316817655017511, 0.45488322534173153, 0.798578398438993, 0.7425236774748816, 0.5742682328784404, 0.4937681935814938, 0.8972164286692267, 0.8914273370768748, 0.9377613518261881, 0.8862258850530264, 0.8591757581361523, 0.7410678096850266, 0.6822336012657398, 0.9201658505843877, 0.6982578893131915, 0.5746709232170782, 0.7626532952948841, 0.7137703530889916, 0.7520971196461234, 0.4473853625959922, 0.7957460056304991, 0.4833174871501707, 0.8758467705785958, 0.4689303842787964, 0.6133612564737879, 0.8568681391705205, 0.6835133967314007, 0.9732070839986944, 0.21435716257549006, 0.5761668962420043, 0.4055433603128916, 0.3743394998756179, 0.9118635774953143, 0.964551884718591, 0.9306459334511011, 0.8424802355113449, 0.7739144871152517, 0.6872688771534424, 0.8590561833388345, 0.6714384475466295, 0.6408669500407106, 0.5203550269219845, 0.2856853969697174, 0.857760555506807, 0.9307094503226838, 0.6787928880949093, 0.8308635255795866, 0.29271374211533296, 0.6769315553524353, 0.23831547366416572, 0.5895099457120908, 0.8994675076574448, 0.8893400405584444, 0.8456825404777587, 0.5399612081435882, 0.6188649121485582, 0.9281492942813848, 0.7611740601422801, 0.46550237374781617, 0.8896861436466836, 0.9038901015569306, 0.5044440900554997, 0.9215480939667524, 0.6930273792518707, 0.8723244804196287, 0.5624338775604165, 0.9226297661236537, 0.8469231754225917, 0.9430557295321259, 0.9097116306258912, 0.5988707702267543, 0.3813853072548755, 0.8843832309478876, 0.9006952500629406, 0.918975987201669, 0.18997930334445084, 0.8923106748541326, 0.8461388699436441, 0.5973439234355874, 0.9544642924744549, 0.91770416680597, 0.9177239854204658, 0.17584552180125673, 0.9240099144459667, 0.48524948024905407, 0.8889685222180134, 0.5785503824403398, 0.7511953459672914, 0.6887596776945688, 0.6717539058356753, 0.7168761391602206, 0.7134478068952186, 0.834626350903405, 0.5715867980362679, 0.6588392688727011, 0.9488572786900573, 0.8920529250761863, 0.8891353183282249, 0.707981940789761, 0.926348680038428, 0.631489487929038, 0.7443856388661001, 0.9260754381930228, 0.9544642924744549, 0.8497401318990601, 0.5604010177433062, 0.8036334301115304, 0.7898153537185114, 0.8491431337122072, 0.6570881560807702, 0.8389599143569951, 0.7944137576415592, 0.8132668978866627, 0.44714680104169846, 0.7978021044641371, 0.41921696608658454, 0.38876183891604754, 0.9248463736054193, 0.4277915265084825, 0.6345107008491314, 0.8008942533173764, 0.5087430598332189, 0.9414938992689892, 0.6922115882765215, 0.8296175750175913, 0.8593339228153332, 0.8975141534758351, 0.5977126281557783, 0.9279478536756302, 0.6485770817571253, 0.8905823996589662, 0.9332072841984264, 0.9432461110830079, 0.9410120781436498, 0.6339696776630096, 0.7120962557761497, 0.5841709037351369, 0.5928970840420333, 0.9006589732900512, 0.936371533648048, 0.6907852379101131, 0.7675780198071424, 0.9444587893431046, 0.4702336163336472, 0.8925536722101626, 0.8158978708906081, 0.822780392485108, 0.8037335327290217, 0.8382351003285965, 0.8941557358589171, 0.4796498334522667, 0.926348680038428, 0.6842118015950474, 0.6463580983468415, 0.8292048071278182, 0.5834426687867836, 0.8419845362148763, 0.2431563391580561, 0.7763142135369961, 0.9390550746437164, 0.7774903237071782, 0.8141232663130791, 0.9444089886680379, 0.430401459478284, 0.9192677156927759, 0.8427595869840984, 0.87120858451521, 0.5693182102579236, 0.820012080301976, 0.58719119911586, 0.42769376643096113, 0.3542595869275313, 0.89579938191327, 0.8743523014696554, 0.7820497043505815, 0.5279069501129625, 0.8869579700149332, 0.45488774279476296, 0.8514781135508903, 0.8278297091497892, 0.663749097381813, 0.5132851713944618, 0.4906566565015208, 0.6415219885510332, 0.6991293681294938, 0.8150539074042624, 0.5800669536763935, 0.9583771200922359, 0.7366090055976814, 0.5747817696023392, 0.5315376696882942, 0.8074446941396305, 0.9038901015569306, 0.9087015650331977, 0.6697291810323083, 0.5800669536763935, 0.8807270543114014, 0.5135845984304893, 0.9352791850238339, 0.36120709973337456, 0.6206709330576408, 0.906286252315459, 0.7937202818717513], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [3.16, 3.03, 3.03, 3.45, 3.15, 3.46, 3.34, 3.36, 3.16, 3.18, 3.3, 3.25, 3.02, 3.24, 3.32, 3.24, 3.3, 3.5, 3.06, 3.53, 3.19, 3.26, 3.54, 2.94, 3.6, 3.26, 3.27, 3.29, 3.1, 3.3, 3.48, 3.01, 3.66, 3.19, 3.0, 3.15, 2.96, 3.2, 3.04, 3.08, 3.02, 3.39, 3.27, 3.15, 3.19, 3.3, 3.32, 3.4, 3.23, 3.32, 3.09, 3.08, 3.2, 3.19, 3.11, 2.96, 3.17, 3.28, 3.14, 3.26, 3.19, 3.58, 3.43, 3.34, 3.13, 3.26, 3.22, 3.27, 3.61, 2.79, 3.09, 3.27, 3.05, 3.21, 3.1, 3.16, 3.08, 3.28, 3.2, 3.11, 2.98, 3.05, 3.12, 3.39, 3.11, 3.24, 3.14, 3.26, 3.17, 3.01, 3.27, 3.31, 3.15, 3.05, 2.96, 3.18, 2.98, 3.14, 3.15, 3.27, 3.01, 3.52, 3.35, 3.22, 3.29, 3.08, 3.16, 3.37, 3.27, 3.22, 3.37, 3.37, 3.41, 3.34, 3.49, 3.11, 3.16, 3.32, 3.06, 3.15, 3.09, 3.41, 3.22, 3.11, 3.1, 3.05, 3.29, 3.1, 3.23, 3.16, 2.89, 3.43, 3.1, 3.22, 3.11, 3.17, 3.13, 3.26, 3.09, 3.25, 3.07, 3.18, 3.28, 3.14, 3.14, 3.02, 3.44, 3.11, 3.14, 3.32, 3.13, 3.45, 2.92, 3.46, 2.99, 3.25, 3.2, 3.25, 3.46, 2.97, 3.15, 3.14, 3.05, 3.16, 3.34, 3.18, 3.18, 3.26, 2.96, 3.08, 3.12, 3.22, 3.37, 2.99, 3.22, 3.24, 3.33, 3.2, 3.46, 3.01, 3.24, 3.54, 3.28, 3.13, 3.1, 3.21, 3.12, 3.01, 3.28, 3.12, 3.02, 3.01, 3.08, 3.14, 3.16, 3.34, 3.08, 3.16, 3.06, 3.07, 3.3, 3.16, 3.16, 3.15, 3.63, 3.09, 3.22, 3.21, 3.72, 3.09, 3.14, 3.5, 3.04, 3.06, 3.18, 3.24, 3.11, 2.97, 2.94, 2.87, 2.88, 3.5, 3.06, 2.96, 3.1, 3.11, 3.34, 3.02, 3.22, 3.49, 3.33, 2.94, 3.5, 3.1, 3.16, 2.92, 3.39, 3.39, 3.15, 3.02, 3.24, 3.11, 3.03, 3.12, 3.5, 3.15, 3.22, 3.18, 3.24, 3.24, 3.41, 3.14, 3.66, 3.39, 3.1, 3.09, 3.17, 3.41, 3.14, 3.16, 3.05, 3.14, 3.39, 3.0, 3.16, 3.21, 3.77, 3.74, 3.42, 3.29, 3.44, 3.08, 3.21, 3.11, 3.19, 3.31, 3.44, 3.0, 3.13, 3.29, 3.34, 3.59, 3.17, 3.29, 3.15, 3.16, 2.9, 3.28, 3.08, 3.25, 3.06, 3.12, 3.24, 3.51, 3.3, 2.94, 3.13, 3.29, 3.08, 3.23, 3.68, 3.28, 3.36, 3.25, 3.31, 3.08, 3.12, 3.34, 3.04, 3.03, 3.06, 3.22, 3.59, 3.18, 3.38, 3.09, 3.1, 3.31, 3.22, 3.66, 3.32, 3.19, 3.36, 3.28, 3.15, 3.14, 2.98, 3.19, 3.29, 3.22, 2.93, 3.38, 3.35, 3.2, 3.25, 3.09, 3.13, 3.05, 3.1, 3.23, 3.3, 3.21, 3.24, 3.18, 3.24, 3.48, 3.53, 3.14, 3.38, 3.08, 3.04, 3.34, 3.06, 3.63, 3.09], \"xaxis\": \"x\", \"y\": [0.2802292104526322, 0.9455194119275858, 0.4978743212349556, 0.5289145624519528, 0.28439238707197784, 0.2033309570226689, 0.27345747478543325, 0.8322873304845451, 0.389055896812549, 0.3675472469853882, 0.5781933746273124, 0.7401955299744071, 0.44969671697605845, 0.4367887814338696, 0.31593955341667695, 0.3775624358859999, 0.19282181046294666, 0.048451763306065584, 0.6005928650583868, 0.032225376113695775, 0.427412413738938, 0.23973251442015217, 0.13890126550157303, 0.8613925272127, 0.329663916828638, 0.19359965390713213, 0.6827271716759634, 0.1960905505555538, 0.08135735686643118, 0.39737240301928484, 0.13902987396822816, 0.6514166433739288, 0.6994753721471061, 0.7140886736258081, 0.5021795028970708, 0.48743245558712556, 0.5731139673640956, 0.8820820642542792, 0.559972149724866, 0.5061565591493914, 0.5066810377847554, 0.833805652807593, 0.6979972163580744, 0.3177574231538272, 0.13068190592986567, 0.758876109553896, 0.5681062961269688, 0.715544821914063, 0.762062625203523, 0.4464438677531786, 0.20995974230910305, 0.5262622410710028, 0.39442669669188163, 0.2537324982988368, 0.6775437642744659, 0.23876321589577687, 0.6369158982934647, 0.38960060362966165, 0.6034323722874255, 0.7769991715799629, 0.15199748354041337, 0.5641412449951732, 0.7590466800561823, 0.5969347905931296, 0.1048362779837843, 0.7217824369593382, 0.2662339163773806, 0.16472378978351135, 0.37760124376932414, 0.7071736299639594, 0.3436862995931572, 0.8384434752264291, 0.3635333644877426, 0.7813188949129265, 0.7279369976219869, 0.5641098847382463, 0.3863964747623771, 0.9209913370067284, 0.1477144681640183, 0.8809374658555192, 0.6533168894759348, 0.8873477284758582, 0.3697306267878623, 0.28319023347825867, 0.5203701741750857, 0.5523747693308857, 0.6387521731780509, 0.3881380695009739, 0.8487896327149285, 0.4636606453307818, 0.8384434752264291, 0.558266603669778, 0.21657231888677728, 0.3635333644877426, 0.5512671313974766, 0.5051039398599867, 0.5827915753039158, 0.49441682850108926, 0.47309171914705017, 0.6262595591688196, 0.5508242483721094, 0.47332791509789995, 0.7117569366896692, 0.3933786516273859, 0.16465066549244003, 0.7490394132223248, 0.769261050002088, 0.7431932405995126, 0.3141000916210982, 0.723735045552473, 0.6484132891031948, 0.688519894019609, 0.40496704226994307, 0.5803736122960511, 0.6327801522745691, 0.45115706990411364, 0.37268733756108086, 0.9009693101135351, 0.06496389958099598, 0.44431713201158524, 0.39960831974332744, 0.8662156944598043, 0.31018081106061823, 0.5339551117365043, 0.33311273919547707, 0.400132762133902, 0.8528754522806217, 0.14419347879543085, 0.11672350429510901, 0.44556702529145975, 0.6160120899414699, 0.13766892845409207, 0.5517204028384314, 0.5232178919035022, 0.35483403305733974, 0.4900213704561591, 0.8854578072659228, 0.43084122675663034, 0.7601186327653665, 0.14072030431570776, 0.6186690618327106, 0.5245054232921349, 0.7326259458716644, 0.5690781983520095, 0.4018508815425063, 0.24877469563805235, 0.7952501197393639, 0.8766221356386195, 0.303451532996695, 0.5357745481647883, 0.7096524147827454, 0.20877177283968149, 0.8635610141758273, 0.46736762313881036, 0.6061151992073851, 0.113015272873705, 0.40446014603085867, 0.6332606063976143, 0.648705381890928, 0.42186952587750404, 0.8047913565308571, 0.3017058309841093, 0.38406990132164637, 0.33494193042999065, 0.19929939967121216, 0.8624919783238055, 0.528785836409086, 0.43084122675663034, 0.47042159929499583, 0.5061565591493914, 0.5759491569657543, 0.8468794444363914, 0.20342296359496542, 0.5170831534483544, 0.3666753044655067, 0.6131723001375537, 0.4410646109528086, 0.6903416342484309, 0.3866428492574258, 0.4636606453307818, 0.4525459302795702, 0.03199256040434073, 0.7029629492254846, 0.2433141614541866, 0.548755973819273, 0.3775060302547258, 0.06593060991448157, 0.8745624549148976, 0.22931948662359403, 0.27267688907931714, 0.589328430619086, 0.8007160756317941, 0.5525637789187225, 0.5008522318356121, 0.4556212410144909, 0.17391722008742402, 0.43574637053357784, 0.3237440077649342, 0.6071692164257629, 0.6925152430641841, 0.592675381607996, 0.43854150134957587, 0.43854150134957587, 0.42437112972565305, 0.8061118855433299, 0.35195592295594336, 0.7605370065149419, 0.38898578429124253, 0.67510953655807, 0.872979709380305, 0.710510994258769, 0.720290290780972, 0.4820787970895852, 0.42019280799979697, 0.4304380754474639, 0.25285023254778977, 0.3238056884730761, 0.39471961640683584, 0.09510031985475974, 0.367046376808582, 0.21500793651835448, 0.8705359023101334, 0.6100742529031461, 0.6226449432624995, 0.7279369976219869, 0.3643494054700089, 0.09992017521484964, 0.41475515148757036, 0.6462260464983366, 0.14102909592513518, 0.48949585696458414, 0.5239520436918008, 0.6084413884537807, 0.5655473856702703, 0.9517420512476797, 0.7489379515982664, 0.4647937384849751, 0.7915321263825208, 0.44112279258530757, 0.5734340256727429, 0.6604471727860799, 0.4845203185458914, 0.6968730453869196, 0.5315374962198609, 0.8685951485887234, 0.6242442748350044, 0.2912097196987059, 0.7725938221565348, 0.2067629769731588, 0.30221725334927335, 0.13129342562285412, 0.6467789443522378, 0.6994753721471061, 0.11825382206919556, 0.41022417118631593, 0.4882665226122541, 0.7732287086973071, 0.25374762405010176, 0.49441682850108926, 0.3723877205427743, 0.652330313245635, 0.43667799883041203, 0.5964718913578133, 0.55172276504346, 0.24113559934961917, 0.8243980268882987, 0.7263843594269437, 0.43535214809021755, 0.8721122798612579, 0.18723914490145582, 0.6486906676970999, 0.11576704656818047, 0.4328241622975616, 0.491481212420291, 0.5264345378086769, 0.33856526784971647, 0.2967410926251248, 0.581398831228375, 0.5973776665460488, 0.6195406102170065, 0.37782717658841725, 0.323061133240968, 0.17420808473594895, 0.19634770547538957, 0.46492234760650425, 0.49613167963272686, 0.5812209036149294, 0.6057291775435286, 0.63414717387345, 0.5702687187355167, 0.8604975146328253, 0.6309022132706124, 0.48732991249542923, 0.6887148870948692, 0.41581945293096145, 0.5706760596351739, 0.4831274653996314, 0.06684727567316755, 0.49090643211649887, 0.15191610726090596, 0.2711405311223577, 0.7653618545702112, 0.09266565137124261, 0.4554350627407873, 0.19698919164573708, 0.6930185080649685, 0.5227537922811563, 0.50434568709929, 0.7082092780767422, 0.46058046365566996, 0.6735723234187477, 0.4285936050615775, 0.323061133240968, 0.5168500865319015, 0.6161307914674419, 0.23456444218973552, 0.3192004782541023, 0.21968945907811915, 0.5028183230931117, 0.43371621376298963, 0.6744209213341115, 0.5940260419772637, 0.13783310426722128, 0.5136444387530009, 0.5508647999875032, 0.4955911012838212, 0.9814394195009358, 0.8260225289794664, 0.17965956338109995, 0.46844896472597397, 0.6048119589659149, 0.3289160319090978, 0.2454606394453749, 0.7497022835596558, 0.683485355417811, 0.20995974230910305, 0.23504578258460665, 0.37175956099497537, 0.4875530438829156, 0.24982584224249993, 0.6282829625348888, 0.4520795162158371, 0.8200372413039435, 0.12832513643528837, 0.5299630655130737, 0.29552777318700446, 0.24021937552346023, 0.5429028773737552, 0.6311869746243346, 0.4145977043912777, 0.39329840463575844, 0.39070335653410526, 0.4286990948130573, 0.846836560604146, 0.6880850122626078], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (curr)\", \"type\": \"scatter\", \"x\": [3.03, 3.09, 3.09, 3.17, 3.21, 3.19, 3.19, 3.06, 2.96, 3.38, 3.28, 3.13, 3.16, 3.18, 3.46, 3.14, 3.32, 3.06, 3.41, 3.01, 3.14, 3.1, 3.13, 3.32, 3.14, 3.07, 2.97, 3.3, 3.08, 3.36, 2.96, 3.3, 3.37, 3.23, 2.96, 3.09, 3.21, 2.86, 3.23, 3.46, 2.99, 3.13, 3.14, 3.06, 3.21, 3.46, 3.16, 3.59, 2.93, 3.35, 3.29, 3.29, 3.16, 2.96, 3.32, 3.28, 2.87, 3.68, 3.41, 2.9, 3.41, 3.04, 3.2, 2.99, 3.08, 3.32, 3.4, 3.39, 3.3, 3.29, 3.07, 3.26, 3.27, 3.38, 3.25, 3.16, 3.19, 3.13, 3.29, 3.27, 3.11, 3.11, 3.34, 2.99, 3.08, 3.22, 3.47, 3.06, 3.2, 3.3, 3.26, 3.03, 3.42, 3.0, 3.17, 3.16, 3.07, 3.03, 3.2, 3.56, 3.02, 3.34, 3.4, 2.98, 3.07, 2.93, 3.27, 3.34, 3.36, 3.31, 3.15, 3.15, 3.0, 3.21, 3.27, 3.37, 3.75, 3.22, 3.05, 3.37, 3.41, 3.24, 3.21, 3.26, 3.29, 3.27, 3.43, 3.29, 3.34, 2.91, 3.05, 3.38, 3.14, 3.02, 3.32, 3.01, 3.2, 3.31, 3.27, 3.3, 3.13, 3.61, 3.1, 3.2, 3.16, 3.18, 3.07, 3.38, 2.99, 3.0, 3.19, 3.06, 3.19, 3.06, 3.21, 3.09, 3.26, 3.23, 3.2, 2.98, 3.25, 3.45, 3.04, 3.39, 3.07, 2.95, 3.15, 3.22, 3.34, 3.03, 3.42, 2.94, 3.17, 3.38, 3.38, 3.28, 3.3, 3.03, 3.18, 3.31, 3.38, 3.22, 3.27, 3.3, 3.22, 3.32, 3.41, 3.29, 3.0, 3.41, 2.99, 3.0, 3.27, 3.16, 3.41, 3.19, 2.9, 3.51, 3.07, 3.43, 2.93, 3.45, 3.25, 3.14, 2.96, 3.36, 3.18, 3.17, 3.42, 3.24, 3.24, 3.36, 3.39, 3.25, 3.1, 3.15, 3.2, 3.31, 3.54, 3.13, 3.24, 3.36, 3.42, 3.2, 3.24, 2.96, 3.38, 3.12, 3.33, 3.27, 3.53, 3.26, 3.11, 3.35, 3.22, 3.34, 3.1, 3.27, 2.98, 3.23, 3.3, 3.05, 2.95, 3.81, 3.37, 3.1, 2.94, 3.1, 3.51, 3.19, 3.29, 2.99, 3.28, 3.32, 3.05, 3.2, 3.26, 3.17, 2.97, 3.44, 3.35, 3.29, 3.51, 3.31, 3.23, 3.28, 3.31, 2.91, 3.22, 3.14, 3.2, 3.24, 3.04, 3.18, 3.42, 3.5, 3.45, 3.42, 3.47, 3.52, 3.06, 2.97, 3.28, 3.25, 3.12, 3.23, 3.15, 3.24, 3.34, 3.2, 3.26, 3.19, 3.34, 3.1, 3.03, 3.22, 3.07, 3.33, 3.2, 3.23, 3.03, 3.11, 2.92, 3.38, 3.01, 3.4, 3.36, 3.1, 3.09, 2.88, 3.23, 3.26, 3.56, 3.09, 3.31, 3.76, 3.1, 3.14, 3.14, 3.02, 3.17, 3.19, 3.49, 3.42, 3.32, 3.16, 3.11, 3.28, 3.12, 3.36, 3.35, 2.88, 3.36, 3.11, 2.96, 2.99, 3.29, 3.18, 3.12, 3.33, 3.17, 3.34, 3.52, 3.39, 3.32, 3.11, 3.4, 3.45, 3.42, 3.05, 3.14, 3.22, 3.12, 3.06, 3.08, 3.36, 3.28, 3.17, 3.15, 3.4, 3.03, 3.33, 3.34, 2.94, 3.21, 3.24, 3.22, 3.54, 3.25, 3.1, 3.2, 3.29, 3.21, 3.03, 3.07, 3.35, 3.16, 3.18, 3.3, 3.44, 3.07, 3.13, 3.06, 3.22, 3.19, 3.48, 2.94, 3.33, 3.3, 3.24, 3.24, 3.19, 3.55, 3.18, 3.32, 3.36, 2.97, 3.17, 3.3, 3.3, 3.4, 3.3, 3.2, 2.85, 3.32, 3.42, 3.33, 3.3, 2.96, 3.12, 3.26, 3.49, 3.0, 3.12, 3.12, 3.37, 3.06, 3.17, 3.15, 3.14, 3.31, 3.27, 3.24, 3.4, 2.98, 3.06, 3.15, 3.0, 3.41, 3.16, 3.05, 3.8, 3.09, 3.15, 3.32, 3.43, 3.37, 3.01, 3.34, 3.0, 3.14, 3.57, 3.11, 3.04, 3.06, 2.94, 3.7, 3.18, 3.39, 3.2, 3.14, 3.34, 3.34, 3.16, 2.94, 3.41, 3.2, 3.29, 3.6, 3.28, 3.04, 3.2, 3.3, 3.06, 3.03, 3.52, 3.16, 3.5, 3.25, 3.46, 3.36, 3.05, 3.58, 2.9, 3.15, 3.13, 3.24, 3.23, 3.32, 3.44, 3.19, 3.21, 3.39, 3.41, 3.35, 2.99, 3.07, 3.04, 3.09, 3.42, 3.27, 3.36, 3.31, 3.27, 3.14, 3.3, 3.11, 3.11, 3.29, 3.1, 3.04, 3.06, 3.14, 3.42, 3.32, 3.22, 3.17, 3.34, 3.08, 3.1, 3.34, 3.25, 3.12, 3.06, 3.12, 3.29, 3.38, 3.27, 3.24, 3.52, 3.36, 3.21, 3.59, 3.25, 3.22, 2.99, 3.16, 3.31, 3.21, 3.06, 3.38, 3.16, 3.01, 3.19, 3.15, 3.13, 3.05, 3.0, 3.35, 3.0, 3.38, 3.24, 3.33, 3.38, 3.29, 3.26, 3.23, 3.31, 3.15, 3.14, 3.16, 2.99, 3.42, 3.23, 3.44, 3.23, 3.4, 3.18, 3.46, 3.36, 3.2, 3.04, 2.9, 3.35, 3.26, 3.08, 3.05, 3.12, 3.31, 3.16, 3.72, 3.47, 3.54, 3.29, 2.99, 3.49, 3.47, 3.13, 3.2, 3.19, 3.24, 3.07, 3.03, 3.51, 3.16, 3.22, 3.29, 3.22, 3.11, 3.44, 3.44, 3.3, 3.2, 2.94, 3.22, 3.12, 3.4, 3.3, 3.19, 3.27, 3.15, 3.28, 3.09, 3.04, 3.24, 3.26, 3.15, 3.23, 3.44, 3.34, 3.24, 2.98, 3.19, 3.0, 3.29, 3.1, 3.35, 3.28, 3.0, 3.26, 3.24, 2.98, 3.15, 3.26, 3.27, 3.11, 3.04, 2.93, 3.22, 3.19, 3.38, 3.06, 3.26, 3.25, 3.35, 3.24, 3.19, 3.34, 3.06, 3.13, 3.13, 3.03, 2.97, 3.41, 3.06, 3.11, 3.22, 3.25], \"xaxis\": \"x2\", \"y\": [0.33396714643252134, 0.5044440900554997, 0.8874896900044845, 0.4686759077780351, 0.23831547366416572, 0.571181601185031, 0.7785327680196316, 0.7290551099174598, 0.9581131370131553, 0.6801000322064107, 0.413367674560271, 0.6667140739211237, 0.9108229754863395, 0.9275086157065797, 0.9186958597750785, 0.7191871442695774, 0.8184457509658746, 0.8597940676688322, 0.7947045908306632, 0.8244149680645384, 0.42771531534877594, 0.5315376696882942, 0.7136291946100958, 0.5510697799054304, 0.6393262665313312, 0.9016582766249417, 0.8560880110261746, 0.8947361144883382, 0.9102326114023062, 0.840723585394272, 0.9264645566705582, 0.5105903360131552, 0.752648770317166, 0.5855954083225455, 0.8989214048388485, 0.5190750352404293, 0.9560713253502463, 0.7273157243430202, 0.9279672131348602, 0.640103147954212, 0.9158977434209615, 0.9035955072010529, 0.7140955379655831, 0.233508355491505, 0.7280578325574358, 0.8810827811902006, 0.3966129217085586, 0.15541760955422754, 0.5851621750323275, 0.9046111951917862, 0.4177213302712193, 0.7993763114768937, 0.6978409661933959, 0.6473373667551029, 0.770784382977056, 0.6500641275496193, 0.548949563093737, 0.9803199442553986, 0.6150775052067382, 0.391333092160729, 0.6966682278280982, 0.9426748402861506, 0.9170092977635526, 0.844625652038695, 0.5621782696252592, 0.8935808323282117, 0.6792214086077275, 0.6719996755401956, 0.5252591274442797, 0.7277045758687855, 0.4685752957996948, 0.8616549355667619, 0.347491516391863, 0.8224130863808733, 0.5340790568488665, 0.6711667658766297, 0.5277539611022016, 0.7226430813715845, 0.8140972745487615, 0.3280236940194876, 0.9543080196225542, 0.7752655593026647, 0.9223925066666061, 0.8588031784191832, 0.6345107008491314, 0.9393010047953068, 0.7897067132703484, 0.8608062836413887, 0.8367885032124018, 0.38555642305179116, 0.8611944449682004, 0.9172341012895443, 0.9206892306522243, 0.9500505925695213, 0.537798347971205, 0.9173482789702866, 0.44454351342386716, 0.8909704850569525, 0.7351932580165473, 0.6818328744935735, 0.7981559962965634, 0.7626532952948841, 0.807353254900461, 0.964411205143099, 0.4685752957996948, 0.6986526320119215, 0.1956969407137045, 0.9233481403380283, 0.8218375601976645, 0.8536269727611236, 0.5637680470866036, 0.42267134533232753, 0.93003590801509, 0.9364808605729722, 0.8816060831574614, 0.9663102962713933, 0.8345570787709832, 0.4997893986747249, 0.7921603237806832, 0.5586815647381762, 0.8622246464681924, 0.9828719612298703, 0.909295720392338, 0.9476267884443668, 0.5395521774612226, 0.901360886913609, 0.39410444510430487, 0.9262213132200262, 0.6627387433216217, 0.9629433821448677, 0.9614311452267452, 0.9802968012486629, 0.933760787013923, 0.34432718187202205, 0.63596173557573, 0.624364378916488, 0.7417789548241253, 0.7300918276682445, 0.6968315453320488, 0.7840233885688647, 0.8958841271622066, 0.5417426694559925, 0.7102579146160282, 0.6004345411549624, 0.515920701757342, 0.7587882454650442, 0.5029588531082266, 0.6887596776945688, 0.8642849605932809, 0.6469572639767995, 0.8103639651534781, 0.939764354405301, 0.694136577696587, 0.6593725303534554, 0.9646797005081557, 0.7979900311745153, 0.792123904710467, 0.8869579700149332, 0.7351250317969437, 0.5332560471205093, 0.9406873315653421, 0.39362685027924615, 0.9466602521798594, 0.8394325033041952, 0.6633442657978572, 0.8126408700417265, 0.7332457619716184, 0.08024070404520958, 0.8667774471450977, 0.6466814331404849, 0.912366876100516, 0.656670904734599, 0.8701678467707724, 0.8875925797813499, 0.9658725076002231, 0.7668332861852056, 0.8604440887473094, 0.934384507524058, 0.9605946056867319, 0.951253157591183, 0.5749289095213865, 0.6279243005170476, 0.7937202818717513, 0.7665301650725991, 0.700127941221274, 0.8531107444728586, 0.7947045908306632, 0.8870566665876504, 0.5476228787844645, 0.8410401833568673, 0.8736671065238262, 0.6519898659949606, 0.936943112068646, 0.9077719201719568, 0.8071889556778997, 0.8815615400732472, 0.8935313268029127, 0.8782891297971865, 0.5029588531082266, 0.5797201450332624, 0.9416775458320723, 0.5958140198486584, 0.2485157288688957, 0.932021424688801, 0.8531502837407814, 0.6344194678828672, 0.632587077283238, 0.9121448358615357, 0.5776545535910985, 0.9052765174806566, 0.8580390107418799, 0.8998644401112552, 0.6784536879503494, 0.9458342431661766, 0.21387363850783603, 0.9530348339880965, 0.7307391114165022, 0.7187682731289255, 0.6905635603269331, 0.9569274903702625, 0.9287384091375525, 0.3856984054091925, 0.504413920551941, 0.5389739198483336, 0.5921068831639978, 0.10702848140489757, 0.8772993497727819, 0.6361944011057532, 0.8952999713010865, 0.7069578609115064, 0.10632960186243966, 0.6465592619811017, 0.9116333268133815, 0.9210441535829985, 0.9483358221641291, 0.5800224234700003, 0.896951343689222, 0.8958659323404018, 0.8896861436466836, 0.7763142135369961, 0.778627444633172, 0.9274605647284293, 0.9167924025380936, 0.6422094408272838, 0.6363725079258666, 0.8694129796739031, 0.5693182102579236, 0.5315376696882942, 0.6814536952243052, 0.30089534057709466, 0.6689448970920832, 0.6419522618821227, 0.6500641275496193, 0.8221968069187356, 0.9285763346020383, 0.8495153837633861, 0.7135666997345446, 0.8850789772017983, 0.9128367188568884, 0.8709442503982084, 0.44714680104169846, 0.7147831401969469, 0.6814536952243052, 0.5823319261018008, 0.7718122970862826, 0.8925058444773368, 0.9249991097277733, 0.7849066379312727, 0.5120166815330335, 0.7863291630268572, 0.8171821177205619, 0.8878235148823457, 0.9813953955585096, 0.5009899161211654, 0.6787020040856314, 0.2747106808400709, 0.6998114428322438, 0.7191783799678735, 0.7566715075843347, 0.7741630673610131, 0.692871858980435, 0.8706970297938403, 0.9226518689226377, 0.619213859232465, 0.9620625840847012, 0.8161066853745392, 0.7984578805051198, 0.8987836568806694, 0.27900511725120763, 0.747868261422589, 0.8013372150606806, 0.4430395412241901, 0.8082746512504794, 0.9248395818955686, 0.8132668978866627, 0.7926355964369082, 0.7243101498981422, 0.8251498778038484, 0.865753667016409, 0.8784859927081519, 0.9613966942665844, 0.8380103992838959, 0.9376908870460701, 0.8505645904112248, 0.5317253080143199, 0.8756470416862959, 0.8823120896825394, 0.8920529250761863, 0.9565288857220365, 0.92576324319171, 0.8397457208604353, 0.8008835764985612, 0.7620555647282774, 0.6333567796033132, 0.8986985644274655, 0.8289197139212982, 0.38568054861828666, 0.4358764146033148, 0.7013568331933456, 0.5524769805317635, 0.8654015550049637, 0.9625385348003681, 0.4997035751430624, 0.5940434106189647, 0.29640429037896177, 0.9370396801623051, 0.7496358493500708, 0.8521916566704996, 0.7519935213994349, 0.8956127660014477, 0.7563308848917781, 0.5425355780301907, 0.1652985164032473, 0.5777375433929663, 0.5926841497777402, 0.5247451599628447, 0.6215406511606532, 0.646742228322253, 0.5236567091352762, 0.8105889943537302, 0.7614647275399787, 0.7272264480694343, 0.44438282424164377, 0.8051848688934031, 0.253979247575754, 0.8737269176380216, 0.7884186533408385, 0.5226162157005312, 0.7776146375974927, 0.8021344726910251, 0.6794204065079696, 0.8398669626756513, 0.3743394998756179, 0.6593725303534554, 0.41008410759983227, 0.8726624594592295, 0.31336232876890546, 0.6187135046228962, 0.9208146539756937, 0.8948907807194619, 0.9475948217130945, 0.7098971478357265, 0.41970311630379203, 0.5524505095188592, 0.6689295490636696, 0.39534528644804523, 0.6686700461744643, 0.6608417181144597, 0.6289006219381473, 0.8112353209803558, 0.9675531845963172, 0.3468688843876404, 0.8171815196180959, 0.9315945487332388, 0.7612383340144859, 0.43979370974717685, 0.9452166580978265, 0.810349906376065, 0.4979189466877109, 0.9054024939516333, 0.7506263221664519, 0.8595966107872783, 0.9041757536760852, 0.5120166815330335, 0.9246344940597735, 0.622364539475366, 0.7975959936185795, 0.9376528402833735, 0.8270495791839716, 0.7463426393970082, 0.8508295060861325, 0.5277539611022016, 0.7926521549058593, 0.8343380415579561, 0.7973631232158779, 0.5423298306356671, 0.6253812669856891, 0.9342151247863544, 0.9064095870896521, 0.8428584418618921, 0.5680191878381406, 0.8230633503438987, 0.857993972512287, 0.8312116035859974, 0.8886868130574391, 0.5695902702544526, 0.8750573328895943, 0.47134086624147714, 0.6082670858563528, 0.8571520978358925, 0.7006810412396262, 0.6001343818465046, 0.8680196363335714, 0.7833148206731655, 0.835330250744176, 0.6883000602161935, 0.4297997702781997, 0.7132181587745201, 0.941909753873568, 0.9298379484442667, 0.8950633078112005, 0.9652574497835966, 0.8593048115498744, 0.23022113319019433, 0.5548683876071567, 0.8789570823277312, 0.7176343272433334, 0.7135972690872326, 0.900955402304434, 0.89110615578316, 0.8021344726910251, 0.36734125225010755, 0.9233813125795639, 0.9269988231022361, 0.6021478506882372, 0.27064660283581765, 0.7595966254948197, 0.5317253080143199, 0.9626288904553877, 0.518871521713375, 0.4244151934213653, 0.8784852709235653, 0.667697582798242, 0.6791650855490978, 0.8659372985570389, 0.5217980090164113, 0.9757802673562255, 0.20769640873195563, 0.6900575067285889, 0.15051833553221247, 0.8476988333501053, 0.12043274000614122, 0.6546311715671466, 0.412102187638673, 0.6339696776630096, 0.6925917751558638, 0.8074446941396305, 0.8417042066658985, 0.4702054036006336, 0.8107456318417504, 0.934253622333564, 0.9671353887875448, 0.3776875782453083, 0.5133306968464912, 0.8279918435672958, 0.7295730380004212, 0.8398957027397556, 0.7470826509089123, 0.7722124156410631, 0.3944809481034696, 0.5801047158883857, 0.7134138458261836, 0.8265590446981121, 0.5836238058504062, 0.7538957359152121, 0.9708936701567454, 0.41507295289487073, 0.9039211350062085, 0.5109703825452502, 0.8880660412534, 0.6332514250278477, 0.703270618172154, 0.863031725372896, 0.9601349291832292, 0.5845797646527732, 0.8357575010967041, 0.9584406458449958, 0.8733333206292072, 0.4740801794177068, 0.5787650908025566, 0.38525623454815555, 0.5715075300165849, 0.951253157591183, 0.831291834366621, 0.6482062646591596, 0.5447536045265621, 0.8456825404777587, 0.5358725178581014, 0.8893400405584444, 0.5955893395860203, 0.9408369636189147, 0.7580589814818564, 0.4244151934213653, 0.7636885291754726, 0.9532052815091139, 0.6686700461744643, 0.39683939049776734, 0.8309978518015588, 0.06774730328187532, 0.8934061610794648, 0.9459413258233057, 0.8507977517004935, 0.9694554821790147, 0.8640493534313302, 0.8409166048571896, 0.9059760843724536, 0.7278052027863667, 0.8952246802917138, 0.39534528644804523, 0.9558702864115934, 0.9178754126151818, 0.7504628435478695, 0.7568870052952757, 0.32046258648166903, 0.9712495894387816, 0.7125870341029702, 0.8286889773580812, 0.929575727770858, 0.8422483936479932, 0.60065365322741, 0.5775074082600717, 0.7505976846167132, 0.5317253080143199, 0.9590110623565244, 0.9651712957082627, 0.7333643603414158, 0.7757825668725274, 0.8928390517037824, 0.2578168736401774, 0.5355488836719776, 0.8408692583280314, 0.7849780542174357, 0.8711681462620556, 0.8447990405440073, 0.9571933326515756, 0.9307123551507692, 0.6421242495412457, 0.9239207054420927, 0.9336219461922934, 0.4244151934213653, 0.5673643045526261, 0.8301442064454496, 0.528471943574542, 0.8835542071774324, 0.8820947700128993, 0.4561713647735051, 0.584381944856391, 0.9493936477483658, 0.7816316980556022, 0.7770145472448273, 0.8495153837633861, 0.8318035560268552, 0.5220388622338656, 0.8589980209217414, 0.21216021099657945, 0.8782303617207965, 0.901850575196968, 0.7683760396387002, 0.9559989503713009, 0.938411491366706, 0.7225398931917507, 0.5918361617892179, 0.8596378534897678, 0.8816239240572568, 0.9296844522785247, 0.8299758417251202, 0.7538846798551382, 0.931253582726863, 0.6902425303942638, 0.9299571155275668, 0.35461708236434614, 0.6119587629530028, 0.8979450471026776, 0.8782891297971865, 0.6144930729026484, 0.5601837238662909, 0.4230258756549153, 0.5115702372514986, 0.6133200318312215, 0.8287048127179734, 0.42887934024879554, 0.5543929044930882, 0.5414149972460248, 0.7453725251924848, 0.6522898344923613, 0.6445138145159856, 0.9212190995841192, 0.6991293681294938, 0.9188224881967051, 0.9444881948020799, 0.8399825546316605, 0.6440269003431431, 0.45260210695563535, 0.6678228102737954, 0.8535669746933884, 0.23469888428232324, 0.7581156815660375, 0.8329520097124233, 0.5886389680190937, 0.4250130050586104, 0.290761161529129, 0.9065968169685268, 0.39757013049667705, 0.9584529405260903, 0.24804178200132845, 0.8400605958344816, 0.9562762484868867, 0.5923100188758571, 0.5355488836719776, 0.6866862751474886, 0.753715093249364, 0.9302702282582556, 0.8405005145861136, 0.7758456574858743, 0.8270123797965384, 0.9270997487744173, 0.8779999285967196, 0.6350604679157676, 0.9057987369792326, 0.9732730617650076, 0.28007269673131574, 0.5393237551960537, 0.9509318156255189, 0.8055358405733448, 0.8512314640165554, 0.6752183046546253, 0.9766791413071304, 0.26893819095773785, 0.5105552073939665, 0.7964242570425004, 0.9159462749375985, 0.46312559485344046, 0.7889853219989779, 0.5331772070153998, 0.6250130361556073, 0.5340700079782073, 0.8981158701031157, 0.8424802355113449], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [3.36, 3.22, 3.03, 3.07, 2.93, 2.93, 3.23, 3.29, 3.29, 3.03, 3.12, 3.16, 3.14, 3.12, 3.14, 3.27, 3.14, 3.16, 3.32, 2.97, 3.27, 2.96, 3.15, 3.12, 3.15, 3.07, 3.44, 3.18, 3.3, 3.46, 2.98, 3.3, 3.38, 3.2, 3.42, 3.32, 3.25, 3.42, 3.29, 3.26, 3.01, 3.1, 3.0, 3.22, 3.08, 3.28, 3.27, 3.15, 3.14, 2.79, 3.19, 3.17, 2.99, 3.37, 3.39, 3.28, 3.48, 2.92, 3.04, 3.08, 2.92, 3.31, 3.23, 3.48, 3.03, 3.53, 3.03, 3.51, 3.45, 3.37, 3.38, 3.21, 3.47, 3.32, 3.19, 3.18, 3.04, 3.07, 3.14, 3.39, 3.21, 3.15, 3.33, 3.2, 3.05, 2.97, 3.47, 3.22, 3.14, 3.35, 3.23, 3.08, 3.28, 3.18, 3.4, 3.5, 3.14, 3.17, 3.37, 3.24, 3.15, 3.08, 3.27, 3.34, 3.19, 3.35, 3.16, 3.36, 3.15, 3.18, 3.3, 2.94, 3.4, 3.29, 2.8, 3.13, 3.1, 3.17, 3.18, 3.13, 3.37, 3.34, 3.36, 3.39, 3.29, 3.38, 3.26, 2.93, 3.29, 3.08, 3.16, 3.25, 3.18, 2.96, 3.45, 3.16, 3.23, 3.29, 3.13, 2.94, 3.12, 3.05, 2.83, 3.16, 3.46, 3.22, 3.05, 3.34, 3.23, 3.23, 3.19, 3.47, 3.42, 3.17, 3.1, 3.16, 3.21, 3.2, 3.08, 2.99, 3.31, 3.18, 2.97, 3.04, 3.38, 3.13, 3.19, 3.37, 3.22, 3.06, 3.38, 3.23, 3.15, 3.15, 3.27, 3.26, 3.0, 3.07, 3.04, 3.24, 3.2, 3.42, 3.16, 3.21, 3.24, 2.95, 3.1, 3.07, 3.09, 3.23, 3.53, 3.28, 3.1, 3.18, 3.08, 3.33, 3.06, 3.14, 3.35, 3.09, 3.48, 3.25, 3.13, 3.2, 2.95, 3.25, 3.19, 3.2, 3.28, 3.06, 3.17, 3.13, 3.33, 3.0, 3.19, 3.03, 2.89, 3.08, 2.92, 3.19, 3.14, 3.22, 3.38, 3.09, 3.08, 3.38, 3.48, 3.54, 3.24, 3.24, 3.14, 3.12, 3.3, 3.09, 3.19, 3.04, 3.25, 3.45, 3.18, 3.42, 3.56, 3.67, 3.05, 3.4, 3.21, 3.16, 3.54, 3.32, 3.1, 3.19, 3.31, 3.13, 2.85, 3.16, 3.0, 3.26, 3.4, 3.32, 3.01, 3.24, 3.66, 3.37, 3.58, 3.58, 2.89, 3.31, 3.21, 3.3, 3.4, 3.1, 3.15, 3.51, 2.99, 3.16, 3.1, 3.08, 3.06, 3.55, 3.35, 2.98, 3.48, 3.34, 3.11, 3.56, 3.16, 3.32, 2.95, 3.24, 3.15, 3.15, 3.16, 3.33, 3.2, 3.51, 3.26, 3.26, 3.16, 3.1, 3.14, 3.37, 3.34, 3.05, 3.19, 3.02, 3.05, 2.97, 3.17, 3.13, 3.27, 3.12, 3.34, 3.49, 3.14, 3.32, 3.22, 3.03, 3.1, 3.19, 3.77, 3.36, 3.18, 3.34, 3.3, 3.27, 3.44, 3.07, 3.14, 3.13, 3.18, 3.47, 3.39, 3.31, 3.16, 3.44, 3.28, 3.17, 3.24, 3.17, 3.3, 3.24, 3.13, 3.23, 3.34, 3.29, 3.16, 2.99, 3.39, 3.36, 3.3, 3.14, 3.18, 3.19], \"xaxis\": \"x2\", \"y\": [0.8142007211296887, 0.07257977436397642, 0.7430932382113554, 0.8214862427787604, 0.5698848321031316, 0.6048119589659149, 0.6466669219762841, 0.14510080060429495, 0.2250304680670007, 0.28492472637839966, 0.42061632734231896, 0.8281252124183194, 0.49622399336621903, 0.3482895521074759, 0.4678833354511545, 0.5708968386647719, 0.37048677721847617, 0.553632248395139, 0.8702137350251022, 0.42186952587750404, 0.8696774950675754, 0.5410576963494411, 0.3971326977900686, 0.3275001196198921, 0.9448289227093116, 0.7109941475090589, 0.41925580570138304, 0.3675472469853882, 0.6721911818800557, 0.5562207270314473, 0.5262426608517637, 0.3244609607385458, 0.15056615442564347, 0.15676979724311627, 0.6037730696030339, 0.6342511279653397, 0.021947035536558718, 0.32429164429335744, 0.5678746850743716, 0.3571680467137555, 0.7755534309390314, 0.3240287891037917, 0.699424662214302, 0.5151532452376618, 0.7564675819717819, 0.38343591026479057, 0.19811005648518398, 0.3168419703358067, 0.5315947262677626, 0.9269044449273315, 0.8260225289794664, 0.451791899378283, 0.830516920403184, 0.47128602930186, 0.19027823806377472, 0.5181346713949518, 0.29552777318700446, 0.45414400334446664, 0.39329840463575844, 0.42327932510626076, 0.45838907164509224, 0.2233864252642039, 0.3628419195926303, 0.6709353200988277, 0.46058046365566996, 0.25551237833043455, 0.7234147543269824, 0.1481282262733752, 0.314935793994079, 0.20050531530561894, 0.37453315488553635, 0.701015529968035, 0.6343341418527783, 0.1739320900588749, 0.734996253073231, 0.8172229478314255, 0.3598554146739685, 0.7121055211356295, 0.2620604909731644, 0.3421138035730516, 0.6951268813066005, 0.35208221297891723, 0.452099210446082, 0.18907620085798427, 0.5444201651108793, 0.6484058972837882, 0.3258186925596978, 0.5963383680780668, 0.6202666247822538, 0.576738593946626, 0.5054992484109841, 0.2972245631729925, 0.6844333356791464, 0.42629475072919953, 0.4405153833121037, 0.01207867704715336, 0.7609288944606691, 0.23951123982998349, 0.09310514674080905, 0.5084920166510624, 0.33067609257366243, 0.36481899584296196, 0.5708968386647719, 0.3194802059637459, 0.14207297841267416, 0.5776897120055972, 0.2026163425795633, 0.37909000048748537, 0.38206764842015895, 0.41324683104354176, 0.17826143731067332, 0.42339414872454434, 0.39148091864802853, 0.3511350413575442, 0.8053393751847749, 0.5937005322868365, 0.6849942580153355, 0.38930033076762494, 0.5168500865319015, 0.5699073288866824, 0.5376087249833421, 0.8185832461647057, 0.25950508036415604, 0.20394483716883388, 0.3303044530853749, 0.2528102968078532, 0.8477719856767125, 0.5217124250004609, 0.3303044530853749, 0.5382885532339231, 0.9625763866028243, 0.6536174904341296, 0.42629475072919953, 0.6458781618432388, 0.46574001023909845, 0.37268733756108086, 0.8180085473348132, 0.35493594975273335, 0.2423640089427935, 0.3636330633241046, 0.6421622311157122, 0.5444201651108793, 0.7396308412796291, 0.9036153464846048, 0.21101569987323432, 0.6004024464464508, 0.7595861882737439, 0.486549602332862, 0.2379839758891197, 0.5147825233229498, 0.2065932277190248, 0.4342628292980428, 0.5940848250235929, 0.4857193175270624, 0.5332610244722983, 0.5402196969638672, 0.8578846895389459, 0.5290225674595067, 0.6074669506688956, 0.1847839155105034, 0.3581391437324269, 0.4304380754474639, 0.8410120374942113, 0.5810086483513661, 0.19026233744636453, 0.7223494520380469, 0.8589928738613049, 0.8374625942163022, 0.781203852328267, 0.73983195178881, 0.41156537259256004, 0.7482873396984137, 0.44431713201158524, 0.7113673874393347, 0.49869552495399233, 0.7627102864663872, 0.37193390769028617, 0.37187810520956766, 0.3773291605703562, 0.8719651627687759, 0.6218762459828849, 0.3781393537983126, 0.553632248395139, 0.47624084907999176, 0.774399353278846, 0.5840424935194366, 0.5601025471409736, 0.6186690618327106, 0.620611700356168, 0.5755798886129706, 0.15047650536569443, 0.5530049338021776, 0.6597439619439023, 0.8300222117931148, 0.3490158529243493, 0.4410646109528086, 0.5067909967309752, 0.5851482063434866, 0.7149827463187939, 0.4849259975950144, 0.2094210588097294, 0.33399024531412796, 0.4083143545243069, 0.7497022835596558, 0.7817929239213606, 0.7637421953724776, 0.3825655414920891, 0.6611482494098961, 0.19022241257108333, 0.44972084577511023, 0.5476732603321269, 0.4831274653996314, 0.5077048340566679, 0.7289504589448288, 0.4379810490617926, 0.8017221455714771, 0.6434673631716396, 0.5059779734745421, 0.6065367192264559, 0.650368705032214, 0.34567471266024347, 0.39561589000187136, 0.3427787545601037, 0.4676404271158623, 0.5332283386400669, 0.4519108142444285, 0.40662831629925006, 0.42305576187259053, 0.22032895172816622, 0.5278715769330472, 0.43679486629948455, 0.743933429392776, 0.5269515041023835, 0.5008800654866953, 0.214168174561682, 0.44879088851457377, 0.683485355417811, 0.807753104897186, 0.42629475072919953, 0.8502951424821861, 0.17421175568219957, 0.25491371883486935, 0.7595861882737439, 0.6571724132942184, 0.7813188949129265, 0.5626906653340306, 0.8674288259883418, 0.6600514650598344, 0.4827749661719035, 0.5456147119159479, 0.39827550056677263, 0.27323823737433794, 0.695896529362927, 0.5048820477254727, 0.5422349097465021, 0.5610936746718964, 0.6571724132942184, 0.3088751107498249, 0.45428761266464013, 0.6604471727860799, 0.43371621376298963, 0.6171893197168647, 0.8100511550343341, 0.8100511550343341, 0.605832578461134, 0.5526475584669951, 0.4275055171336787, 0.8734720021260204, 0.8508295378350301, 0.5807723706867254, 0.8272749548927728, 0.2670652478909882, 0.7020144194675465, 0.4615566916191992, 0.7055847950248242, 0.43389869234556755, 0.6071692164257629, 0.3496825637352313, 0.23676491619791426, 0.7057755976874825, 0.15539001443149586, 0.6187538615870153, 0.8735882828904331, 0.30049486749739024, 0.23191705420611952, 0.8913917397916864, 0.4977157214618499, 0.16961113509580228, 0.8485494795219795, 0.4760032757956232, 0.5053843099270294, 0.2676015269871764, 0.3627664421236291, 0.15146266807038725, 0.7898179638281774, 0.6145296307645981, 0.3790380236797623, 0.3003532640340299, 0.6086112016774773, 0.39906793889171593, 0.8185832461647057, 0.6715802865662828, 0.8260225289794664, 0.6056902064850618, 0.400132762133902, 0.39471961640683584, 0.6449859309106076, 0.5637152910565628, 0.39949420960438964, 0.5490401551410112, 0.4398875418860128, 0.30916577334906253, 0.7093303227687476, 0.4562508424819209, 0.40444044759428516, 0.5773483646962835, 0.447777692034652, 0.4961542215384683, 0.32474312180562226, 0.21192693199409943, 0.9056903490933487, 0.5013816399998683, 0.758876109553896, 0.6364928148646596, 0.2952804752502578, 0.4748951900520853, 0.43679486629948455, 0.5479962315186364, 0.4728142838839701, 0.6343341418527783, 0.12248807650217919, 0.5052525886146573, 0.8281252124183194, 0.8930081609652758, 0.36283726088930296, 0.8098196742550625, 0.656477404357746, 0.193885049884708, 0.5269515041023835, 0.49858469647139786, 0.32780472036158087, 0.24927512797396847, 0.6148718578314069, 0.10691527318901187, 0.136775438340409, 0.8489192718114075, 0.2600203086082801, 0.8142007211296887, 0.5269515041023835, 0.7966615933629455, 0.5633234794197017, 0.767479452333631], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"pH\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"pH\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}}, {\"id\": \"pH_bad\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (ref)\", \"type\": \"scatter\", \"x\": [3.16, 3.03, 3.03, 3.45, 3.15, 3.46, 3.34, 3.36, 3.16, 3.18, 3.3, 3.25, 3.02, 3.24, 3.32, 3.24, 3.3, 3.5, 3.06, 3.53, 3.19, 3.26, 3.54, 2.94, 3.6, 3.26, 3.27, 3.29, 3.1, 3.3, 3.48, 3.01, 3.66, 3.19, 3.0, 3.15, 2.96, 3.2, 3.04, 3.08, 3.02, 3.39, 3.27, 3.15, 3.19, 3.3, 3.32, 3.4, 3.23, 3.32, 3.09, 3.08, 3.2, 3.19, 3.11, 2.96, 3.17, 3.28, 3.14, 3.26, 3.19, 3.58, 3.43, 3.34, 3.13, 3.26, 3.22, 3.27, 3.61, 2.79, 3.09, 3.27, 3.05, 3.21, 3.1, 3.16, 3.08, 3.28, 3.2, 3.11, 2.98, 3.05, 3.12, 3.39, 3.11, 3.24, 3.14, 3.26, 3.17, 3.01, 3.27, 3.31, 3.15, 3.05, 2.96, 3.18, 2.98, 3.14, 3.15, 3.27, 3.01, 3.52, 3.35, 3.22, 3.29, 3.08, 3.16, 3.37, 3.27, 3.22, 3.37, 3.37, 3.41, 3.34, 3.49, 3.11, 3.16, 3.32, 3.06, 3.15, 3.09, 3.41, 3.22, 3.11, 3.1, 3.05, 3.29, 3.1, 3.23, 3.16, 2.89, 3.43, 3.1, 3.22, 3.11, 3.17, 3.13, 3.26, 3.09, 3.25, 3.07, 3.18, 3.28, 3.14, 3.14, 3.02, 3.44, 3.11, 3.14, 3.32, 3.13, 3.45, 2.92, 3.46, 2.99, 3.25, 3.2, 3.25, 3.46, 2.97, 3.15, 3.14, 3.05, 3.16, 3.34, 3.18, 3.18, 3.26, 2.96, 3.08, 3.12, 3.22, 3.37, 2.99, 3.22, 3.24, 3.33, 3.2, 3.46, 3.01, 3.24, 3.54, 3.28, 3.13, 3.1, 3.21, 3.12, 3.01, 3.28, 3.12, 3.02, 3.01, 3.08, 3.14, 3.16, 3.34, 3.08, 3.16, 3.06, 3.07, 3.3, 3.16, 3.16, 3.15, 3.63, 3.09, 3.22, 3.21, 3.72, 3.09, 3.14, 3.5, 3.04, 3.06, 3.18, 3.24, 3.11, 2.97, 2.94, 2.87, 2.88, 3.5, 3.06, 2.96, 3.1, 3.11, 3.34, 3.02, 3.22, 3.49, 3.33, 2.94, 3.5, 3.1, 3.16, 2.92, 3.39, 3.39, 3.15, 3.02, 3.24, 3.11, 3.03, 3.12, 3.5, 3.15, 3.22, 3.18, 3.24, 3.24, 3.41, 3.14, 3.66, 3.39, 3.1, 3.09, 3.17, 3.41, 3.14, 3.16, 3.05, 3.14, 3.39, 3.0, 3.16, 3.21, 3.77, 3.74, 3.42, 3.29, 3.44, 3.08, 3.21, 3.11, 3.19, 3.31, 3.44, 3.0, 3.13, 3.29, 3.34, 3.59, 3.17, 3.29, 3.15, 3.16, 2.9, 3.28, 3.08, 3.25, 3.06, 3.12, 3.24, 3.51, 3.3, 2.94, 3.13, 3.29, 3.08, 3.23, 3.68, 3.28, 3.36, 3.25, 3.31, 3.08, 3.12, 3.34, 3.04, 3.03, 3.06, 3.22, 3.59, 3.18, 3.38, 3.09, 3.1, 3.31, 3.22, 3.66, 3.32, 3.19, 3.36, 3.28, 3.15, 3.14, 2.98, 3.19, 3.29, 3.22, 2.93, 3.38, 3.35, 3.2, 3.25, 3.09, 3.13, 3.05, 3.1, 3.23, 3.3, 3.21, 3.24, 3.18, 3.24, 3.48, 3.53, 3.14, 3.38, 3.08, 3.04, 3.34, 3.06, 3.63, 3.09], \"xaxis\": \"x\", \"y\": [0.7197707895473677, 0.05448058807241418, 0.5021256787650443, 0.4710854375480472, 0.7156076129280222, 0.7966690429773311, 0.7265425252145667, 0.16771266951545494, 0.610944103187451, 0.6324527530146118, 0.42180662537268765, 0.2598044700255929, 0.5503032830239416, 0.5632112185661304, 0.6840604465833231, 0.6224375641140001, 0.8071781895370533, 0.9515482366939344, 0.3994071349416132, 0.9677746238863042, 0.572587586261062, 0.7602674855798478, 0.861098734498427, 0.1386074727873, 0.6703360831713621, 0.8064003460928679, 0.3172728283240366, 0.8039094494444462, 0.9186426431335688, 0.6026275969807151, 0.8609701260317718, 0.3485833566260712, 0.3005246278528939, 0.2859113263741919, 0.4978204971029292, 0.5125675444128744, 0.4268860326359044, 0.11791793574572085, 0.440027850275134, 0.4938434408506086, 0.4933189622152446, 0.166194347192407, 0.30200278364192557, 0.6822425768461728, 0.8693180940701344, 0.24112389044610405, 0.43189370387303117, 0.284455178085937, 0.23793737479647703, 0.5535561322468214, 0.7900402576908969, 0.47373775892899717, 0.6055733033081183, 0.7462675017011632, 0.32245623572553406, 0.7612367841042231, 0.36308410170653527, 0.6103993963703384, 0.3965676277125745, 0.2230008284200371, 0.8480025164595866, 0.43585875500482685, 0.24095331994381775, 0.4030652094068704, 0.8951637220162157, 0.2782175630406618, 0.7337660836226194, 0.8352762102164887, 0.6223987562306759, 0.2928263700360406, 0.6563137004068428, 0.16155652477357085, 0.6364666355122575, 0.2186811050870735, 0.27206300237801306, 0.4358901152617537, 0.6136035252376228, 0.07900866299327158, 0.8522855318359817, 0.11906253414448076, 0.3466831105240652, 0.11265227152414181, 0.6302693732121377, 0.7168097665217413, 0.4796298258249143, 0.4476252306691143, 0.3612478268219491, 0.611861930499026, 0.15121036728507153, 0.5363393546692182, 0.16155652477357085, 0.441733396330222, 0.7834276811132227, 0.6364666355122575, 0.44873286860252337, 0.4948960601400133, 0.4172084246960842, 0.5055831714989107, 0.5269082808529498, 0.3737404408311804, 0.4491757516278906, 0.5266720849021, 0.2882430633103308, 0.6066213483726142, 0.83534933450756, 0.2509605867776752, 0.230738949997912, 0.25680675940048736, 0.6858999083789018, 0.27626495444752697, 0.35158671089680515, 0.311480105980391, 0.5950329577300569, 0.4196263877039489, 0.3672198477254309, 0.5488429300958864, 0.6273126624389191, 0.0990306898864649, 0.935036100419004, 0.5556828679884147, 0.6003916802566726, 0.1337843055401957, 0.6898191889393818, 0.46604488826349566, 0.6668872608045229, 0.5998672378660981, 0.14712454771937833, 0.8558065212045691, 0.883276495704891, 0.5544329747085402, 0.38398791005853006, 0.8623310715459079, 0.4482795971615686, 0.4767821080964978, 0.6451659669426603, 0.5099786295438409, 0.11454219273407718, 0.5691587732433696, 0.2398813672346335, 0.8592796956842923, 0.38133093816728936, 0.4754945767078651, 0.2673740541283356, 0.43092180164799054, 0.5981491184574936, 0.7512253043619477, 0.20474988026063612, 0.12337786436138054, 0.6965484670033051, 0.4642254518352117, 0.29034758521725457, 0.7912282271603185, 0.1364389858241727, 0.5326323768611896, 0.3938848007926149, 0.886984727126295, 0.5955398539691413, 0.3667393936023857, 0.35129461810907203, 0.578130474122496, 0.1952086434691429, 0.6982941690158907, 0.6159300986783536, 0.6650580695700093, 0.8007006003287879, 0.13750802167619447, 0.47121416359091395, 0.5691587732433696, 0.5295784007050042, 0.4938434408506086, 0.4240508430342457, 0.1531205555636086, 0.7965770364050346, 0.4829168465516456, 0.6333246955344933, 0.38682769986244625, 0.5589353890471914, 0.30965836575156913, 0.6133571507425741, 0.5363393546692182, 0.5474540697204298, 0.9680074395956593, 0.29703705077451537, 0.7566858385458134, 0.451244026180727, 0.6224939697452743, 0.9340693900855184, 0.1254375450851024, 0.770680513376406, 0.7273231109206828, 0.410671569380914, 0.19928392436820586, 0.44743622108127745, 0.4991477681643879, 0.5443787589855091, 0.826082779912576, 0.5642536294664222, 0.6762559922350657, 0.39283078357423706, 0.3074847569358159, 0.40732461839200396, 0.5614584986504241, 0.5614584986504241, 0.575628870274347, 0.1938881144566701, 0.6480440770440566, 0.23946299348505806, 0.6110142157087575, 0.32489046344192996, 0.127020290619695, 0.28948900574123104, 0.27970970921902805, 0.5179212029104148, 0.579807192000203, 0.5695619245525361, 0.7471497674522103, 0.6761943115269239, 0.6052803835931642, 0.9048996801452402, 0.632953623191418, 0.7849920634816455, 0.12946409768986655, 0.3899257470968539, 0.37735505673750047, 0.27206300237801306, 0.6356505945299911, 0.9000798247851504, 0.5852448485124296, 0.3537739535016634, 0.8589709040748648, 0.5105041430354158, 0.4760479563081992, 0.3915586115462193, 0.4344526143297297, 0.04825794875232026, 0.25106204840173363, 0.5352062615150248, 0.2084678736174792, 0.5588772074146924, 0.42656597432725707, 0.3395528272139201, 0.5154796814541086, 0.30312695461308037, 0.4684625037801391, 0.13140485141127656, 0.37575572516499556, 0.7087902803012941, 0.22740617784346517, 0.7932370230268412, 0.6977827466507267, 0.8687065743771458, 0.3532210556477622, 0.3005246278528939, 0.8817461779308045, 0.5897758288136841, 0.5117334773877459, 0.2267712913026929, 0.7462523759498982, 0.5055831714989107, 0.6276122794572256, 0.34766968675436505, 0.563322001169588, 0.4035281086421867, 0.44827723495654004, 0.7588644006503809, 0.17560197311170134, 0.2736156405730563, 0.5646478519097824, 0.12788772013874206, 0.8127608550985441, 0.35130933230290007, 0.8842329534318195, 0.5671758377024384, 0.508518787579709, 0.4735654621913231, 0.6614347321502836, 0.7032589073748752, 0.418601168771625, 0.40262233345395115, 0.38045938978299354, 0.6221728234115828, 0.6769388667590319, 0.825791915264051, 0.8036522945246104, 0.5350776523934957, 0.5038683203672731, 0.4187790963850706, 0.3942708224564714, 0.36585282612655, 0.42973128126448334, 0.1395024853671747, 0.36909778672938764, 0.5126700875045708, 0.31128511290513083, 0.5841805470690385, 0.42932394036482613, 0.5168725346003686, 0.9331527243268325, 0.5090935678835011, 0.848083892739094, 0.7288594688776423, 0.23463814542978878, 0.9073343486287574, 0.5445649372592127, 0.8030108083542629, 0.30698149193503155, 0.47724620771884374, 0.49565431290071005, 0.29179072192325783, 0.53941953634433, 0.32642767658125227, 0.5714063949384225, 0.6769388667590319, 0.48314991346809855, 0.3838692085325581, 0.7654355578102645, 0.6807995217458978, 0.7803105409218809, 0.4971816769068883, 0.5662837862370104, 0.32557907866588853, 0.4059739580227363, 0.8621668957327787, 0.4863555612469991, 0.44913520001249685, 0.5044088987161788, 0.018560580499064172, 0.17397747102053363, 0.8203404366189, 0.531551035274026, 0.3951880410340851, 0.6710839680909022, 0.7545393605546251, 0.25029771644034415, 0.31651464458218903, 0.7900402576908969, 0.7649542174153934, 0.6282404390050247, 0.5124469561170844, 0.7501741577575001, 0.3717170374651112, 0.5479204837841629, 0.1799627586960565, 0.8716748635647116, 0.4700369344869263, 0.7044722268129955, 0.7597806244765397, 0.4570971226262448, 0.3688130253756654, 0.5854022956087224, 0.6067015953642416, 0.6092966434658947, 0.5713009051869427, 0.15316343939585397, 0.31191498773739224], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [3.17, 3.36, 3.32, 3.59, 3.37, 3.4, 3.22, 3.36, 3.14, 3.1, 3.06, 3.16, 3.52, 3.06, 3.37, 3.14, 3.09, 2.95, 3.34, 3.18, 3.12, 3.21, 3.23, 3.25, 2.94, 3.64, 3.31, 3.14, 3.28, 3.33, 3.38, 3.3, 3.1, 3.38, 3.13, 3.11, 3.12, 3.4, 3.26, 3.25, 3.14, 3.46, 3.41, 3.12, 3.11, 3.4, 3.3, 3.22, 3.2, 3.0, 3.15, 3.17, 3.32, 3.19, 3.15, 3.03, 3.22, 3.26, 3.05, 3.51, 3.25, 3.46, 3.31, 3.32, 3.17, 3.31, 3.26, 3.12, 3.13, 3.19, 3.17, 3.04, 3.15, 3.01, 3.48, 3.29, 3.35, 3.25, 3.29, 3.0, 3.65, 3.27, 3.02, 3.2, 3.18, 3.07, 3.2, 3.37, 3.18, 3.08, 3.32, 3.19, 3.16, 3.54, 3.6, 3.39, 3.17, 3.26, 2.87, 3.33, 3.47, 3.04, 3.18, 3.4, 2.96, 3.5, 3.27, 3.24, 3.1, 3.3, 3.0, 3.15, 3.05, 3.4, 3.35, 3.15, 3.02, 3.1, 3.16, 3.4, 3.0, 2.99, 3.04, 3.06, 3.26, 3.36, 3.33, 3.04, 3.35, 3.61, 3.19, 3.21, 3.36, 3.27, 3.38, 3.27, 3.22, 3.54, 3.23, 3.12, 2.89, 3.52, 3.08, 3.2, 3.08, 3.22, 3.1, 3.25, 3.39, 3.2, 2.96, 2.92, 3.3, 3.17, 3.04, 3.18, 3.4, 3.11, 2.98, 3.2, 3.35, 3.26, 3.15, 3.49, 3.3, 3.09, 3.12, 3.36, 3.06, 3.36, 3.14, 3.34, 3.38, 3.03, 3.32, 3.26, 3.33, 3.08, 3.23, 3.58, 3.48, 3.13, 3.32, 3.39, 3.18, 3.34, 3.15, 3.22, 3.31, 3.54, 3.37, 3.71, 3.53, 3.26, 3.55, 3.0, 3.13, 3.1, 3.16, 2.9, 3.32, 3.36, 3.41, 3.38, 3.45, 3.23, 3.22, 3.14, 2.94, 3.4, 3.07, 3.24, 3.28, 3.23, 3.12, 3.36, 2.93, 3.21, 3.03, 3.1, 3.39, 3.28, 3.08, 3.02, 3.38, 3.2, 3.07, 3.34, 3.22, 3.6, 3.22, 3.18, 3.51, 3.03, 3.36, 3.66, 3.42, 3.14, 3.27, 3.21, 3.13, 2.98, 2.95, 3.26, 3.22, 3.23, 3.42, 3.2, 3.15, 3.25, 3.21, 3.14, 3.17, 3.24, 3.12, 3.15, 3.15, 2.93, 3.32, 3.14, 3.16, 3.38, 3.18, 3.01, 3.31, 3.28, 3.23, 3.28, 3.38, 3.56, 3.22, 3.49, 3.04, 2.91, 3.55, 3.39, 3.11, 3.27, 3.71, 3.17, 3.26, 3.06, 3.57, 3.26, 3.15, 3.28, 3.13, 3.14, 3.24, 2.94, 3.34, 3.12, 3.26, 3.23, 3.09, 3.19, 3.47, 3.21, 3.7, 3.37, 3.38, 3.38, 3.54, 3.15, 3.14, 3.4, 3.05, 3.19, 2.97, 3.09, 3.42, 3.03, 3.62, 3.37, 3.16, 3.16, 3.12, 3.29, 3.03, 3.2, 3.4, 2.95, 3.24, 3.53, 3.3, 3.47, 2.86, 3.15, 3.52, 3.22, 3.36, 2.98, 3.12, 3.25, 3.15, 2.93, 2.88, 3.27, 3.48, 3.22, 3.16, 3.01, 3.23, 3.34, 3.21, 3.13, 2.92, 3.32, 3.29, 3.04, 3.2, 3.24, 3.11, 3.02, 3.16, 3.46, 3.3, 3.18, 3.28, 3.14, 3.2, 3.14, 3.18, 3.3, 3.53, 2.87, 3.32, 3.28, 3.33, 3.1, 3.33, 3.23, 3.26, 2.89, 3.11, 3.06, 3.35, 3.33, 3.29, 3.38, 3.16, 3.12, 3.17, 3.44, 3.09, 3.0, 3.18, 3.22, 3.44, 3.14, 3.26, 3.1, 3.12, 3.27, 3.25, 3.39, 3.3, 3.06, 3.45, 3.22, 3.42, 3.52, 3.46, 3.34, 2.94, 3.23, 3.21, 3.12, 3.27, 3.11, 3.35, 3.22, 3.44, 3.38, 3.24, 3.16, 3.29, 3.16, 3.12, 3.06, 3.2, 3.08, 3.2, 2.96, 3.16, 3.42, 3.09, 3.11, 3.12, 3.29, 3.14, 3.27, 3.09, 3.33, 3.45, 3.48, 3.45, 3.51, 3.25, 3.12, 3.17, 3.13, 3.14, 3.12, 2.96, 3.23, 3.08, 3.24, 3.15, 3.33, 3.12, 3.29, 3.37, 3.27, 3.11, 3.22, 3.28, 3.4, 3.34, 3.12, 3.17, 3.45, 3.32, 3.05, 3.38, 3.32, 3.2, 3.27, 3.21, 3.32, 3.31, 3.19, 3.28, 3.12, 3.18, 3.12, 3.26, 3.25, 3.11, 3.15, 3.57, 2.98, 3.08, 3.49, 3.18, 3.06, 3.07, 3.04, 3.18, 3.21, 3.16, 3.21, 3.03, 3.28, 3.29, 3.11, 3.39, 3.24, 3.36, 3.54, 3.26, 2.98, 3.34, 3.09, 2.96, 3.11, 3.35, 3.13, 3.24, 3.23, 3.09, 2.99, 3.31, 3.09, 3.11, 2.94, 3.1, 3.26, 3.29, 3.26, 2.96, 3.08, 3.01, 3.41, 3.37, 3.2, 3.0, 3.09, 3.18, 3.18, 3.38, 3.41, 3.35, 3.11, 3.49, 3.36, 3.22, 3.02, 3.1, 3.17, 3.29, 3.22, 2.96, 3.18, 3.17, 3.08, 3.22, 3.36, 3.38, 3.43, 3.04, 3.12, 3.42, 3.06, 3.03, 3.35, 3.32, 3.34, 3.08, 3.05, 3.11, 3.08, 3.36, 3.44, 3.68, 2.93, 3.05, 3.13, 3.36, 3.1, 3.36, 3.2, 3.17, 3.08, 3.22, 3.3, 2.94, 3.21, 3.03, 3.05, 2.97, 3.36, 3.49, 3.54, 3.26, 3.34, 3.2, 3.25, 3.61, 3.05, 2.93, 3.12, 3.19, 3.22, 3.37, 3.36, 3.25, 3.42, 3.25, 3.02, 3.23, 3.32, 3.28, 3.2, 3.15, 3.14, 3.13, 3.16, 3.42, 2.94, 2.99, 3.21, 3.14, 3.37, 3.22, 3.39, 3.54, 2.95, 3.23, 2.87, 3.52, 3.02, 3.27, 3.21, 3.07, 3.23, 3.3, 3.14, 3.15, 3.08, 3.15, 3.09, 3.1, 3.2, 3.34, 3.05, 3.22, 3.15, 3.04, 3.4, 3.28, 3.28, 3.44, 3.24, 3.27], \"xaxis\": \"x\", \"y\": [0.18439386755371057, 0.5750868907731637, 0.1132172353536568, 0.19850047615697952, 0.6950004168934912, 0.41826441672946313, 0.040828937665112974, 0.2145583871630251, 0.09143093017991866, 0.10013996234885614, 0.3658834999306372, 0.587897812361327, 0.23563705889496211, 0.5289998061994394, 0.5981734696485812, 0.5956194363709464, 0.11295199838815062, 0.6349332021584286, 0.09356782907078887, 0.0672754654033908, 0.3541579814831264, 0.11781588709523827, 0.3295981493457443, 0.23443288181779365, 0.13830133810679424, 0.5122546205578999, 0.03626449638205209, 0.32057959349203036, 0.3955164844050859, 0.21320459763992916, 0.08620177311633537, 0.4132497936565127, 0.19514157099220286, 0.028148892894647393, 0.03728071159582558, 0.20213762816504022, 0.39088790332760825, 0.10566618212719892, 0.11466232649727714, 0.09544364959788487, 0.07351553674018241, 0.3657542344632553, 0.05859665738698361, 0.43634835962676355, 0.4827032077898804, 0.516310366273556, 0.6480037931050455, 0.21122004543372697, 0.030344760075157406, 0.22750344576024595, 0.18673438423788624, 0.5460909738859347, 0.0666291073587214, 0.320234954276134, 0.515425573770442, 0.5751179393061847, 0.3262180383913996, 0.12192585741802231, 0.6165939755266235, 0.09365914315081003, 0.44259853952477324, 0.31958523161407537, 0.09228899111547839, 0.22815273642701062, 0.5282447951108347, 0.7777719169155834, 0.13834506443323813, 0.29425092810710396, 0.5300870647699181, 0.031947521718024174, 0.1108646816717751, 0.053339747820140615, 0.14466174791529418, 0.25697560969337485, 0.3383868137798065, 0.30803904997837983, 0.03434255320493995, 0.08689109251212201, 0.46044782253877736, 0.0973761441498977, 0.3449058470623745, 0.024212367984770777, 0.11665042079727428, 0.3333970234137619, 0.1495417879159372, 0.0679784404121434, 0.2360052425084116, 0.39147703437781534, 0.04428683932015287, 0.5381556738404795, 0.4357341587922019, 0.11843845992675284, 0.28107964630818494, 0.06989794698232743, 0.2658605825653322, 0.22408104406272966, 0.15519213452661884, 0.09873339188795927, 0.10739713799337769, 0.4712507279726723, 0.31257930793611366, 0.6259141532505736, 0.1651629894813923, 0.13024327386797574, 0.08242409751896962, 0.55355901104019, 0.11256152515999429, 0.22124325125588817, 0.05838775174278421, 0.6734770756819889, 0.06919042490492266, 0.5773286546676725, 0.5693181878572973, 0.12726917141891614, 0.27983888222674136, 0.15690954109554833, 0.18593824584442387, 0.05432525584274117, 0.33273366741371935, 0.12435295831370408, 0.48112847828662497, 0.2959384652215836, 0.5042039768350125, 0.3749869638443927, 0.7258627386781167, 0.4806866421912115, 0.6234335830956541, 0.4191951896523489, 0.20821728825178332, 0.6343085651912675, 0.27674577061671146, 0.02140654255666985, 0.42849246998341506, 0.1817444030106703, 0.4551538855951942, 0.05087080041524106, 0.516641204200833, 0.6810720245435042, 0.08151744899857294, 0.4475169494323581, 0.03995706953508171, 0.2181819033834006, 0.20372897255157485, 0.24305701296248816, 0.5381556738404795, 0.2358485729609252, 0.051323642447754336, 0.1913631294907303, 0.32154631204965056, 0.31229802093755377, 0.3917329141436472, 0.39462053822053156, 0.3680669306910641, 0.5017894292511481, 0.32120711190509066, 0.0768019282386515, 0.1168769044932052, 0.31545143431826594, 0.12007957373947853, 0.08354361700756141, 0.2180731800932174, 0.7653011157176768, 0.05076221583963347, 0.11739077279846111, 0.3639458403519926, 0.4815918747301601, 0.35998732468747585, 0.457353694020342, 0.5520498791697908, 0.22168281241722143, 0.2132287846887433, 0.4763394582576197, 0.3040153802820409, 0.20749766415549342, 0.3316810644107503, 0.8126297477835096, 0.5749367295182395, 0.27274039590582944, 0.2685808245693546, 0.5172108675362206, 0.33506587713796443, 0.09616672688355288, 0.041108213935392324, 0.10548050716105373, 0.5016695616404938, 0.20022874051447226, 0.14220640128276774, 0.23772630779738468, 0.19606080251004787, 0.2603188495268066, 0.18846597668723208, 0.19827111133563302, 0.261548791893628, 0.4140325207077993, 0.8134796325151183, 0.12265695643958285, 0.6311167068993262, 0.13481820177301163, 0.0932384579037443, 0.14050160114126486, 0.2562249115981724, 0.08547750670655718, 0.08643201081848362, 0.19981675431015722, 0.31390222338706264, 0.06221739913672386, 0.06996303880871468, 0.30029370289300306, 0.4306817897420764, 0.6595343859760441, 0.2839408857911616, 0.20468539219890003, 0.1130196126722065, 0.2360017176902124, 0.13187147729288817, 0.42313120297864704, 0.06964897436687001, 0.1624399718171824, 0.17200815643270417, 0.07333105637055992, 0.2440137653363641, 0.4900110333069776, 0.3085554157386313, 0.03480496731142946, 0.12148031785507996, 0.15002971926037112, 0.5314247042003052, 0.2758453007685677, 0.2151852748992088, 0.2658605825653322, 0.29911225563077193, 0.6594110243744711, 0.49869782335001445, 0.16788254706683048, 0.11816213334465087, 0.08230909248122409, 0.13653212507346946, 0.25639170942272826, 0.06562233405876228, 0.23311900627036541, 0.3756616197417655, 0.46674395287949066, 0.3092684534350997, 0.8337319641197457, 0.8331457111467163, 0.2591056156836542, 0.4778687671024334, 0.2542440524586721, 0.5361036306539362, 0.07073721340803463, 0.4731688813159418, 0.5755848065786346, 0.356689463387698, 0.14225616860197343, 0.21837916002376445, 0.14466174791529418, 0.29899643271856946, 0.4757427727983842, 0.08126799884203029, 0.1296501822378736, 0.3286954654423938, 0.08620177311633537, 0.13855855420831553, 0.05543377339452393, 0.11917834098009661, 0.2613621884509647, 0.11269900223777074, 0.08429051026621415, 0.3393961441870107, 0.07031960314855146, 0.11356777592095357, 0.4853279864284006, 0.1279289285514792, 0.0584572339054259, 0.08612988585012649, 0.3472440907423937, 0.1248029959061332, 0.07502335399434323, 0.19827111133563302, 0.3424151534036639, 0.3065175956815872, 0.13808860398564737, 0.058092197534895806, 0.04082786106581715, 0.1602592849246841, 0.09156161599234125, 0.5036030690663805, 0.2640411824475748, 0.6468038092930676, 0.07201805208597656, 0.22470230804277058, 0.1334773721572423, 0.04847889440667685, 0.2685808245693546, 0.10911308148570098, 0.6764508967260475, 0.6280060594576413, 0.36761958218269275, 0.16019930342079847, 0.17605308658107655, 0.14078981831089854, 0.2384997092801764, 0.13117402490907393, 0.12818959986091483, 0.4161925244315118, 0.12435295831370408, 0.09814942480303201, 0.05480698563416486, 0.3746187330143109, 0.41092354232892336, 0.507894749900129, 0.5137929421583434, 0.08293523366016065, 0.2964416548030494, 0.15236141109070434, 0.4396941021426354, 0.41893931094950754, 0.09113953260801844, 0.10967473999240707, 0.055732078845942, 0.05640314085190745, 0.06176263301115803, 0.06427139521062619, 0.20386133178572885, 0.21597661143113533, 0.7486409492386699, 0.2610715902497083, 0.09465277491899493, 0.5556171757583562, 0.137718889647652, 0.1978940751503777, 0.08472590699531857, 0.356262641598029, 0.14596950445002987, 0.13865818299932142, 0.3088915816821678, 0.11516321289421916, 0.16121169033174265, 0.40573483691789825, 0.34308606282264, 0.36300204724896845, 0.17193414756867276, 0.035926383178341514, 0.34536882843285344, 0.4400180463892147, 0.5165194668234709, 0.23319834124303085, 0.9637923675569924, 0.2635599134550337, 0.6259141532505736, 0.12324962258280003, 0.1256037712827487, 0.1248029959061332, 0.11665042079727428, 0.29081136443782263, 0.12993062945549005, 0.20959981847797426, 0.12385816607190492, 0.16931651488884025, 0.2468284110987674, 0.6181879252747016, 0.3509541008179864, 0.08619429866610873, 0.09537770951135394, 0.8204393830764495, 0.2493836920976743, 0.10367142046182065, 0.11516383353466464, 0.07169627826225977, 0.5400384130096556, 0.2709141565803237, 0.16809050322974173, 0.3421981324687273, 0.812724325423183, 0.1326589750154965, 0.054670132935181304, 0.055346153509382656, 0.8039442695404772, 0.3276168958360183, 0.6561718697940482, 0.6214102617950452, 0.3046829516703813, 0.7853649284745584, 0.7303620793003476, 0.6719087507962026, 0.16000678121984613, 0.579612101366232, 0.6347749924714103, 0.41894393066564606, 0.06936532322770372, 0.28322834609079706, 0.343263893078516, 0.4450860003239352, 0.3090838478611311, 0.408095736797927, 0.11529682880263803, 0.13359771811640497, 0.2417229185475579, 0.10092265889692065, 0.8181934133883563, 0.3777834313813965, 0.8273808576462511, 0.18439353202429143, 0.5148786056082297, 0.11287077888712382, 0.16015059460472458, 0.29672938182784603, 0.36944561074938853, 0.2505850522824452, 0.8467591712977676, 0.3840267097226593, 0.261779448872241, 0.1645479955558209, 0.14631295673285594, 0.4248523287309329, 0.09222807982804315, 0.2121484308544801, 0.33273366741371935, 0.5470626312455473, 0.8294144697045585, 0.25206662215500397, 0.15998368749433245, 0.548322128117227, 0.3917329141436472, 0.15981565308588508, 0.23631147082452741, 0.21082920466209698, 0.1871387197916503, 0.24774693401855818, 0.1913242313933492, 0.16437448769677154, 0.07582203648947516, 0.032541140295091364, 0.06311143057978008, 0.5009235508757715, 0.12343879567504301, 0.445735807756371, 0.40322837553658053, 0.09397553936597514, 0.1598391281143201, 0.26702494168661406, 0.19782301216908982, 0.06831823449824892, 0.5451167746582685, 0.20142160156100697, 0.25747632252511843, 0.4257317671215596, 0.5062318064185062, 0.10278357133077332, 0.10857266292312517, 0.06223864817381186, 0.11377411494697365, 0.14082424186384768, 0.2589321903149734, 0.31776639873426016, 0.07983414941561229, 0.30174211068680845, 0.42532907678292176, 0.23734670470511587, 0.2862296469110084, 0.24790288035387664, 0.5526146374040077, 0.20425399436950087, 0.5166825128498294, 0.12415322942140417, 0.5310696157212036, 0.3866387435262121, 0.14313186082947948, 0.31648660326859934, 0.026792916001305622, 0.7856428374245099, 0.42383310375799566, 0.5944566396871084, 0.6256605001243821, 0.08813642250468567, 0.03544811528140901, 0.06935406654889886, 0.15751976448865512, 0.22608551288474832, 0.3127311228465576, 0.1409438166611655, 0.3285615524533705, 0.3591330499592894, 0.47964497307801546, 0.7143146030302826, 0.14223944449319303, 0.06929054967731618, 0.32120711190509066, 0.16913647442041335, 0.707286257884667, 0.3230684446475647, 0.7616845263358343, 0.4104900542879092, 0.10053249234255524, 0.1106599594415556, 0.1543174595222413, 0.46003879185641183, 0.3811350878514418, 0.07185070571861518, 0.23882593985771994, 0.5344976262521839, 0.11031385635331636, 0.09610989844306939, 0.4955559099445003, 0.07845190603324759, 0.30697262074812925, 0.12767551958037127, 0.4375661224395835, 0.07737023387634634, 0.15307682457740834, 0.05694427046787409, 0.09028836937410878, 0.4011292297732457, 0.6186146927451245, 0.11561676905211238, 0.0993047499370594, 0.08102401279833105, 0.8100206966555492, 0.10768932514586738, 0.15386113005635593, 0.4026560765644126, 0.045535707525545144, 0.08229583319403, 0.08227601457953415, 0.8241544781987433, 0.0759900855540333, 0.5147505197509459, 0.11103147778198663, 0.42144961755966015, 0.24880465403270857, 0.3112403223054312, 0.3282460941643247, 0.28312386083977936, 0.2865521931047814, 0.16537364909659502, 0.4284132019637321, 0.34116073112729894, 0.051142721309942685, 0.10794707492381372, 0.1108646816717751, 0.29201805921023904, 0.07365131996157204, 0.36851051207096197, 0.2556143611338999, 0.07392456180697715, 0.045535707525545144, 0.15025986810093994, 0.4395989822566938, 0.19636656988846957, 0.21018464628148859, 0.15085686628779282, 0.3429118439192298, 0.16104008564300487, 0.2055862423584408, 0.18673310211333727, 0.5528531989583015, 0.20219789553586287, 0.5807830339134155, 0.6112381610839525, 0.07515362639458067, 0.5722084734915175, 0.3654892991508686, 0.1991057466826236, 0.4912569401667811, 0.05850610073101081, 0.3077884117234785, 0.17038242498240874, 0.14066607718466684, 0.10248584652416493, 0.4022873718442217, 0.07205214632436985, 0.35142291824287475, 0.10941760034103376, 0.06679271580157364, 0.05675388891699207, 0.058987921856350156, 0.3660303223369904, 0.28790374422385034, 0.4158290962648631, 0.40710291595796666, 0.09934102670994882, 0.06362846635195196, 0.30921476208988685, 0.23242198019285765, 0.055541210656895434, 0.5297663836663529, 0.10744632778983743, 0.18410212910939194, 0.17721960751489196, 0.1962664672709783, 0.1617648996714035, 0.10584426414108294, 0.5203501665477333, 0.07365131996157204, 0.31578819840495265, 0.35364190165315845, 0.1707951928721818, 0.41655733121321636, 0.15801546378512366, 0.7568436608419439, 0.22368578646300386, 0.0609449253562836, 0.2225096762928218, 0.18587673368692093, 0.05559101133196209, 0.569598540521716, 0.08073228430722412, 0.15724041301590164, 0.12879141548479, 0.4306817897420764, 0.17998791969802397, 0.41280880088413996, 0.5723062335690389, 0.6457404130724687, 0.10420061808672998, 0.12564769853034463, 0.21795029564941848, 0.4720930498870375, 0.11304202998506685, 0.545112257205237, 0.14852188644910969, 0.17217029085021085, 0.336250902618187, 0.48671482860553816, 0.5093433434984792, 0.35847801144896685, 0.3008706318705062, 0.18494609259573758, 0.4199330463236065, 0.04162287990776414, 0.2633909944023186, 0.4252182303976608, 0.4684623303117058, 0.1925553058603695, 0.09610989844306939, 0.09129843496680234, 0.3302708189676917, 0.4199330463236065, 0.11927294568859859, 0.4864154015695107, 0.06472081497616611, 0.6387929002666255, 0.37932906694235924, 0.093713747684541, 0.20627971812824875], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (curr)\", \"type\": \"scatter\", \"x\": [3.36, 3.22, 3.03, 3.07, 2.93, 2.93, 3.23, 3.29, 3.29, 3.03, 3.12, 3.16, 3.14, 3.12, 3.14, 3.27, 3.14, 3.16, 3.32, 2.97, 3.27, 2.96, 3.15, 3.12, 3.15, 3.07, 3.44, 3.18, 3.3, 3.46, 2.98, 3.3, 3.38, 3.2, 3.42, 3.32, 3.25, 3.42, 3.29, 3.26, 3.01, 3.1, 3.0, 3.22, 3.08, 3.28, 3.27, 3.15, 3.14, 2.79, 3.19, 3.17, 2.99, 3.37, 3.39, 3.28, 3.48, 2.92, 3.04, 3.08, 2.92, 3.31, 3.23, 3.48, 3.03, 3.53, 3.03, 3.51, 3.45, 3.37, 3.38, 3.21, 3.47, 3.32, 3.19, 3.18, 3.04, 3.07, 3.14, 3.39, 3.21, 3.15, 3.33, 3.2, 3.05, 2.97, 3.47, 3.22, 3.14, 3.35, 3.23, 3.08, 3.28, 3.18, 3.4, 3.5, 3.14, 3.17, 3.37, 3.24, 3.15, 3.08, 3.27, 3.34, 3.19, 3.35, 3.16, 3.36, 3.15, 3.18, 3.3, 2.94, 3.4, 3.29, 2.8, 3.13, 3.1, 3.17, 3.18, 3.13, 3.37, 3.34, 3.36, 3.39, 3.29, 3.38, 3.26, 2.93, 3.29, 3.08, 3.16, 3.25, 3.18, 2.96, 3.45, 3.16, 3.23, 3.29, 3.13, 2.94, 3.12, 3.05, 2.83, 3.16, 3.46, 3.22, 3.05, 3.34, 3.23, 3.23, 3.19, 3.47, 3.42, 3.17, 3.1, 3.16, 3.21, 3.2, 3.08, 2.99, 3.31, 3.18, 2.97, 3.04, 3.38, 3.13, 3.19, 3.37, 3.22, 3.06, 3.38, 3.23, 3.15, 3.15, 3.27, 3.26, 3.0, 3.07, 3.04, 3.24, 3.2, 3.42, 3.16, 3.21, 3.24, 2.95, 3.1, 3.07, 3.09, 3.23, 3.53, 3.28, 3.1, 3.18, 3.08, 3.33, 3.06, 3.14, 3.35, 3.09, 3.48, 3.25, 3.13, 3.2, 2.95, 3.25, 3.19, 3.2, 3.28, 3.06, 3.17, 3.13, 3.33, 3.0, 3.19, 3.03, 2.89, 3.08, 2.92, 3.19, 3.14, 3.22, 3.38, 3.09, 3.08, 3.38, 3.48, 3.54, 3.24, 3.24, 3.14, 3.12, 3.3, 3.09, 3.19, 3.04, 3.25, 3.45, 3.18, 3.42, 3.56, 3.67, 3.05, 3.4, 3.21, 3.16, 3.54, 3.32, 3.1, 3.19, 3.31, 3.13, 2.85, 3.16, 3.0, 3.26, 3.4, 3.32, 3.01, 3.24, 3.66, 3.37, 3.58, 3.58, 2.89, 3.31, 3.21, 3.3, 3.4, 3.1, 3.15, 3.51, 2.99, 3.16, 3.1, 3.08, 3.06, 3.55, 3.35, 2.98, 3.48, 3.34, 3.11, 3.56, 3.16, 3.32, 2.95, 3.24, 3.15, 3.15, 3.16, 3.33, 3.2, 3.51, 3.26, 3.26, 3.16, 3.1, 3.14, 3.37, 3.34, 3.05, 3.19, 3.02, 3.05, 2.97, 3.17, 3.13, 3.27, 3.12, 3.34, 3.49, 3.14, 3.32, 3.22, 3.03, 3.1, 3.19, 3.77, 3.36, 3.18, 3.34, 3.3, 3.27, 3.44, 3.07, 3.14, 3.13, 3.18, 3.47, 3.39, 3.31, 3.16, 3.44, 3.28, 3.17, 3.24, 3.17, 3.3, 3.24, 3.13, 3.23, 3.34, 3.29, 3.16, 2.99, 3.39, 3.36, 3.3, 3.14, 3.18, 3.19], \"xaxis\": \"x2\", \"y\": [0.18579927887031134, 0.9274202256360236, 0.2569067617886446, 0.17851375722123963, 0.43011516789686843, 0.3951880410340851, 0.35333307802371594, 0.854899199395705, 0.7749695319329993, 0.7150752736216004, 0.5793836726576811, 0.17187478758168062, 0.503776006633781, 0.6517104478925241, 0.5321166645488455, 0.4291031613352281, 0.6295132227815239, 0.446367751604861, 0.12978626497489776, 0.578130474122496, 0.1303225049324246, 0.4589423036505589, 0.6028673022099313, 0.6724998803801079, 0.055171077290688375, 0.28900585249094113, 0.5807441942986169, 0.6324527530146118, 0.32780881811994433, 0.4437792729685527, 0.47375733914823626, 0.6755390392614542, 0.8494338455743565, 0.8432302027568838, 0.3962269303969661, 0.36574887203466033, 0.9780529644634413, 0.6757083557066426, 0.43212531492562845, 0.6428319532862445, 0.2244465690609686, 0.6759712108962084, 0.300575337785698, 0.4848467547623382, 0.24353241802821812, 0.6165640897352094, 0.801889943514816, 0.6831580296641933, 0.4684052737322374, 0.07309555507266852, 0.17397747102053363, 0.548208100621717, 0.16948307959681597, 0.5287139706981401, 0.8097217619362252, 0.48186532860504816, 0.7044722268129955, 0.5458559966555334, 0.6067015953642416, 0.5767206748937392, 0.5416109283549078, 0.7766135747357961, 0.6371580804073698, 0.3290646799011723, 0.53941953634433, 0.7444876216695655, 0.27658524567301757, 0.8518717737266248, 0.685064206005921, 0.7994946846943811, 0.6254668451144636, 0.29898447003196504, 0.36566585814722175, 0.8260679099411251, 0.265003746926769, 0.18277705216857454, 0.6401445853260315, 0.2878944788643705, 0.7379395090268356, 0.6578861964269485, 0.3048731186933995, 0.6479177870210828, 0.5479007895539181, 0.8109237991420157, 0.4555798348891207, 0.35159410271621183, 0.6741813074403022, 0.40366163192193316, 0.3797333752177462, 0.42326140605337403, 0.49450075158901585, 0.7027754368270075, 0.31556666432085356, 0.5737052492708005, 0.5594846166878963, 0.9879213229528466, 0.23907110553933086, 0.7604887601700165, 0.906894853259191, 0.49150798334893764, 0.6693239074263375, 0.635181004157038, 0.4291031613352281, 0.6805197940362542, 0.8579270215873258, 0.42231028799440284, 0.7973836574204367, 0.6209099995125147, 0.617932351579841, 0.5867531689564582, 0.8217385626893267, 0.5766058512754557, 0.6085190813519714, 0.6488649586424557, 0.19466062481522506, 0.4062994677131635, 0.31500574198466447, 0.6106996692323751, 0.48314991346809855, 0.4300926711133176, 0.4623912750166579, 0.18141675383529432, 0.7404949196358439, 0.7960551628311661, 0.6696955469146251, 0.7471897031921468, 0.15222801432328747, 0.4782875749995391, 0.6696955469146251, 0.4617114467660769, 0.0374236133971757, 0.34638250956587036, 0.5737052492708005, 0.35412183815676124, 0.5342599897609015, 0.6273126624389191, 0.1819914526651868, 0.6450640502472667, 0.7576359910572065, 0.6363669366758954, 0.35783776888428775, 0.4555798348891207, 0.2603691587203709, 0.09638465351539516, 0.7889843001267657, 0.3995975535535492, 0.2404138117262561, 0.5134503976671381, 0.7620160241108803, 0.4852174766770502, 0.7934067722809752, 0.5657371707019572, 0.40591517497640706, 0.5142806824729376, 0.4667389755277017, 0.4597803030361328, 0.14211531046105408, 0.4709774325404933, 0.39253304933110444, 0.8152160844894966, 0.6418608562675732, 0.5695619245525361, 0.15898796250578873, 0.4189913516486339, 0.8097376625536354, 0.2776505479619531, 0.14100712613869515, 0.1625374057836978, 0.21879614767173305, 0.26016804821119, 0.5884346274074399, 0.25171266030158634, 0.5556828679884147, 0.2886326125606653, 0.5013044750460076, 0.23728971353361283, 0.6280660923097139, 0.6281218947904323, 0.6226708394296439, 0.1280348372312241, 0.37812375401711507, 0.6218606462016874, 0.446367751604861, 0.5237591509200082, 0.22560064672115399, 0.4159575064805634, 0.43989745285902637, 0.38133093816728936, 0.379388299643832, 0.4244201113870294, 0.8495234946343055, 0.44699506619782237, 0.3402560380560977, 0.16997778820688525, 0.6509841470756508, 0.5589353890471914, 0.49320900326902484, 0.41485179365651337, 0.2850172536812061, 0.5150740024049856, 0.7905789411902706, 0.6660097546858721, 0.5916856454756931, 0.25029771644034415, 0.21820707607863943, 0.23625780462752244, 0.6174344585079109, 0.33885175059010386, 0.8097775874289167, 0.5502791542248897, 0.45232673966787307, 0.5168725346003686, 0.4922951659433321, 0.2710495410551712, 0.5620189509382074, 0.19827785442852286, 0.35653263682836045, 0.4940220265254579, 0.3934632807735441, 0.349631294967786, 0.6543252873397565, 0.6043841099981286, 0.6572212454398962, 0.5323595728841377, 0.4667716613599331, 0.5480891857555714, 0.5933716837007499, 0.5769442381274095, 0.7796710482718338, 0.4721284230669528, 0.5632051337005155, 0.25606657060722404, 0.47304849589761655, 0.4991199345133047, 0.785831825438318, 0.5512091114854263, 0.31651464458218903, 0.192246895102814, 0.5737052492708005, 0.14970485751781393, 0.8257882443178004, 0.7450862811651306, 0.2404138117262561, 0.3428275867057816, 0.2186811050870735, 0.43730933466596944, 0.1325711740116582, 0.33994853494016564, 0.5172250338280965, 0.4543852880840521, 0.6017244994332274, 0.7267617626256621, 0.304103470637073, 0.49511795227452726, 0.4577650902534979, 0.4389063253281036, 0.3428275867057816, 0.6911248892501751, 0.5457123873353599, 0.3395528272139201, 0.5662837862370104, 0.38281068028313525, 0.1899488449656659, 0.1899488449656659, 0.39416742153886597, 0.4473524415330049, 0.5724944828663213, 0.12652799787397961, 0.14917046216496987, 0.4192276293132746, 0.1727250451072272, 0.7329347521090118, 0.2979855805324535, 0.5384433083808008, 0.2944152049751758, 0.5661013076544325, 0.39283078357423706, 0.6503174362647687, 0.7632350838020857, 0.29422440231251745, 0.8446099855685041, 0.3812461384129847, 0.1264117171095669, 0.6995051325026098, 0.7680829457938805, 0.1086082602083136, 0.50228427853815, 0.8303888649041977, 0.15145052047802054, 0.5239967242043768, 0.49461569007297057, 0.7323984730128237, 0.6372335578763709, 0.8485373319296128, 0.21018203617182263, 0.3854703692354019, 0.6209619763202376, 0.6996467359659702, 0.3913887983225227, 0.600932061108284, 0.18141675383529432, 0.32841971343371723, 0.17397747102053363, 0.3943097935149382, 0.5998672378660981, 0.6052803835931642, 0.35501406908939237, 0.4362847089434372, 0.6005057903956104, 0.45095984485898877, 0.5601124581139871, 0.6908342266509375, 0.29066967723125237, 0.5437491575180791, 0.5955595524057149, 0.4226516353037165, 0.552222307965348, 0.5038457784615318, 0.6752568781943777, 0.7880730680059006, 0.09430965090665133, 0.4986183600001317, 0.24112389044610405, 0.3635071851353404, 0.7047195247497422, 0.5251048099479148, 0.5632051337005155, 0.4520037684813636, 0.5271857161160298, 0.36566585814722175, 0.8775119234978208, 0.49474741138534273, 0.17187478758168062, 0.1069918390347242, 0.6371627391106971, 0.19018032574493748, 0.34352259564225396, 0.806114950115292, 0.47304849589761655, 0.5014153035286022, 0.6721952796384192, 0.7507248720260316, 0.38512814216859315, 0.8930847268109882, 0.863224561659591, 0.15108072818859253, 0.7399796913917198, 0.18579927887031134, 0.47304849589761655, 0.2033384066370545, 0.43667652058029827, 0.23252054766636898], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [3.03, 3.09, 3.09, 3.17, 3.21, 3.19, 3.19, 3.06, 2.96, 3.38, 3.28, 3.13, 3.16, 3.18, 3.46, 3.14, 3.32, 3.06, 3.41, 3.01, 3.14, 3.1, 3.13, 3.32, 3.14, 3.07, 2.97, 3.3, 3.08, 3.36, 2.96, 3.3, 3.37, 3.23, 2.96, 3.09, 3.21, 2.86, 3.23, 3.46, 2.99, 3.13, 3.14, 3.06, 3.21, 3.46, 3.16, 3.59, 2.93, 3.35, 3.29, 3.29, 3.16, 2.96, 3.32, 3.28, 2.87, 3.68, 3.41, 2.9, 3.41, 3.04, 3.2, 2.99, 3.08, 3.32, 3.4, 3.39, 3.3, 3.29, 3.07, 3.26, 3.27, 3.38, 3.25, 3.16, 3.19, 3.13, 3.29, 3.27, 3.11, 3.11, 3.34, 2.99, 3.08, 3.22, 3.47, 3.06, 3.2, 3.3, 3.26, 3.03, 3.42, 3.0, 3.17, 3.16, 3.07, 3.03, 3.2, 3.56, 3.02, 3.34, 3.4, 2.98, 3.07, 2.93, 3.27, 3.34, 3.36, 3.31, 3.15, 3.15, 3.0, 3.21, 3.27, 3.37, 3.75, 3.22, 3.05, 3.37, 3.41, 3.24, 3.21, 3.26, 3.29, 3.27, 3.43, 3.29, 3.34, 2.91, 3.05, 3.38, 3.14, 3.02, 3.32, 3.01, 3.2, 3.31, 3.27, 3.3, 3.13, 3.61, 3.1, 3.2, 3.16, 3.18, 3.07, 3.38, 2.99, 3.0, 3.19, 3.06, 3.19, 3.06, 3.21, 3.09, 3.26, 3.23, 3.2, 2.98, 3.25, 3.45, 3.04, 3.39, 3.07, 2.95, 3.15, 3.22, 3.34, 3.03, 3.42, 2.94, 3.17, 3.38, 3.38, 3.28, 3.3, 3.03, 3.18, 3.31, 3.38, 3.22, 3.27, 3.3, 3.22, 3.32, 3.41, 3.29, 3.0, 3.41, 2.99, 3.0, 3.27, 3.16, 3.41, 3.19, 2.9, 3.51, 3.07, 3.43, 2.93, 3.45, 3.25, 3.14, 2.96, 3.36, 3.18, 3.17, 3.42, 3.24, 3.24, 3.36, 3.39, 3.25, 3.1, 3.15, 3.2, 3.31, 3.54, 3.13, 3.24, 3.36, 3.42, 3.2, 3.24, 2.96, 3.38, 3.12, 3.33, 3.27, 3.53, 3.26, 3.11, 3.35, 3.22, 3.34, 3.1, 3.27, 2.98, 3.23, 3.3, 3.05, 2.95, 3.81, 3.37, 3.1, 2.94, 3.1, 3.51, 3.19, 3.29, 2.99, 3.28, 3.32, 3.05, 3.2, 3.26, 3.17, 2.97, 3.44, 3.35, 3.29, 3.51, 3.31, 3.23, 3.28, 3.31, 2.91, 3.22, 3.14, 3.2, 3.24, 3.04, 3.18, 3.42, 3.5, 3.45, 3.42, 3.47, 3.52, 3.06, 2.97, 3.28, 3.25, 3.12, 3.23, 3.15, 3.24, 3.34, 3.2, 3.26, 3.19, 3.34, 3.1, 3.03, 3.22, 3.07, 3.33, 3.2, 3.23, 3.03, 3.11, 2.92, 3.38, 3.01, 3.4, 3.36, 3.1, 3.09, 2.88, 3.23, 3.26, 3.56, 3.09, 3.31, 3.76, 3.1, 3.14, 3.14, 3.02, 3.17, 3.19, 3.49, 3.42, 3.32, 3.16, 3.11, 3.28, 3.12, 3.36, 3.35, 2.88, 3.36, 3.11, 2.96, 2.99, 3.29, 3.18, 3.12, 3.33, 3.17, 3.34, 3.52, 3.39, 3.32, 3.11, 3.4, 3.45, 3.42, 3.05, 3.14, 3.22, 3.12, 3.06, 3.08, 3.36, 3.28, 3.17, 3.15, 3.4, 3.03, 3.33, 3.34, 2.94, 3.21, 3.24, 3.22, 3.54, 3.25, 3.1, 3.2, 3.29, 3.21, 3.03, 3.07, 3.35, 3.16, 3.18, 3.3, 3.44, 3.07, 3.13, 3.06, 3.22, 3.19, 3.48, 2.94, 3.33, 3.3, 3.24, 3.24, 3.19, 3.55, 3.18, 3.32, 3.36, 2.97, 3.17, 3.3, 3.3, 3.4, 3.3, 3.2, 2.85, 3.32, 3.42, 3.33, 3.3, 2.96, 3.12, 3.26, 3.49, 3.0, 3.12, 3.12, 3.37, 3.06, 3.17, 3.15, 3.14, 3.31, 3.27, 3.24, 3.4, 2.98, 3.06, 3.15, 3.0, 3.41, 3.16, 3.05, 3.8, 3.09, 3.15, 3.32, 3.43, 3.37, 3.01, 3.34, 3.0, 3.14, 3.57, 3.11, 3.04, 3.06, 2.94, 3.7, 3.18, 3.39, 3.2, 3.14, 3.34, 3.34, 3.16, 2.94, 3.41, 3.2, 3.29, 3.6, 3.28, 3.04, 3.2, 3.3, 3.06, 3.03, 3.52, 3.16, 3.5, 3.25, 3.46, 3.36, 3.05, 3.58, 2.9, 3.15, 3.13, 3.24, 3.23, 3.32, 3.44, 3.19, 3.21, 3.39, 3.41, 3.35, 2.99, 3.07, 3.04, 3.09, 3.42, 3.27, 3.36, 3.31, 3.27, 3.14, 3.3, 3.11, 3.11, 3.29, 3.1, 3.04, 3.06, 3.14, 3.42, 3.32, 3.22, 3.17, 3.34, 3.08, 3.1, 3.34, 3.25, 3.12, 3.06, 3.12, 3.29, 3.38, 3.27, 3.24, 3.52, 3.36, 3.21, 3.59, 3.25, 3.22, 2.99, 3.16, 3.31, 3.21, 3.06, 3.38, 3.16, 3.01, 3.19, 3.15, 3.13, 3.05, 3.0, 3.35, 3.0, 3.38, 3.24, 3.33, 3.38, 3.29, 3.26, 3.23, 3.31, 3.15, 3.14, 3.16, 2.99, 3.42, 3.23, 3.44, 3.23, 3.4, 3.18, 3.46, 3.36, 3.2, 3.04, 2.9, 3.35, 3.26, 3.08, 3.05, 3.12, 3.31, 3.16, 3.72, 3.47, 3.54, 3.29, 2.99, 3.49, 3.47, 3.13, 3.2, 3.19, 3.24, 3.07, 3.03, 3.51, 3.16, 3.22, 3.29, 3.22, 3.11, 3.44, 3.44, 3.3, 3.2, 2.94, 3.22, 3.12, 3.4, 3.3, 3.19, 3.27, 3.15, 3.28, 3.09, 3.04, 3.24, 3.26, 3.15, 3.23, 3.44, 3.34, 3.24, 2.98, 3.19, 3.0, 3.29, 3.1, 3.35, 3.28, 3.0, 3.26, 3.24, 2.98, 3.15, 3.26, 3.27, 3.11, 3.04, 2.93, 3.22, 3.19, 3.38, 3.06, 3.26, 3.25, 3.35, 3.24, 3.19, 3.34, 3.06, 3.13, 3.13, 3.03, 2.97, 3.41, 3.06, 3.11, 3.22, 3.25], \"xaxis\": \"x2\", \"y\": [0.6660328535674787, 0.4955559099445003, 0.11251030999551548, 0.5313240922219649, 0.7616845263358343, 0.42881839881496897, 0.22146723198036844, 0.2709448900825402, 0.04188686298684474, 0.3198999677935893, 0.586632325439729, 0.3332859260788763, 0.0891770245136605, 0.07249138429342028, 0.0813041402249215, 0.2808128557304226, 0.18155424903412543, 0.14020593233116785, 0.20529540916933675, 0.1755850319354616, 0.5722846846512241, 0.4684623303117058, 0.2863708053899042, 0.4489302200945696, 0.3606737334686688, 0.09834172337505831, 0.1439119889738254, 0.10526388551166177, 0.08976738859769384, 0.15927641460572795, 0.07353544332944184, 0.4894096639868448, 0.24735122968283396, 0.41440459167745447, 0.10107859516115147, 0.4809249647595707, 0.043928674649753696, 0.27268427565697984, 0.07203278686513981, 0.35989685204578803, 0.08410225657903847, 0.09640449279894714, 0.2859044620344169, 0.766491644508495, 0.27194216744256416, 0.11891721880979944, 0.6033870782914414, 0.8445823904457724, 0.4148378249676725, 0.09538880480821377, 0.5822786697287807, 0.2006236885231063, 0.30215903380660414, 0.3526626332448971, 0.22921561702294402, 0.3499358724503807, 0.451050436906263, 0.01968005574460141, 0.3849224947932618, 0.608666907839271, 0.30333177217190177, 0.05732515971384944, 0.08299070223644744, 0.155374347961305, 0.4378217303747408, 0.10641916767178827, 0.3207785913922725, 0.3280003244598044, 0.4747408725557203, 0.27229542413121455, 0.5314247042003052, 0.13834506443323813, 0.652508483608137, 0.1775869136191267, 0.4659209431511335, 0.3288332341233703, 0.47224603889779837, 0.2773569186284155, 0.18590272545123854, 0.6719763059805124, 0.04569198037744582, 0.22473444069733528, 0.0776074933333939, 0.1411968215808168, 0.3654892991508686, 0.06069899520469324, 0.21029328672965164, 0.13919371635861133, 0.16321149678759816, 0.6144435769482088, 0.1388055550317996, 0.0827658987104557, 0.0793107693477757, 0.04994940743047871, 0.46220165202879504, 0.08265172102971341, 0.5554564865761329, 0.10902951494304747, 0.26480674198345266, 0.31816712550642645, 0.20184400370343658, 0.23734670470511587, 0.19264674509953905, 0.03558879485690103, 0.5314247042003052, 0.3013473679880785, 0.8043030592862955, 0.07665185966197174, 0.17816243980233548, 0.14637302723887635, 0.43623195291339645, 0.5773286546676725, 0.06996409198491005, 0.0635191394270278, 0.11839391684253864, 0.03368970372860669, 0.16544292122901683, 0.5002106013252752, 0.20783967621931676, 0.4413184352618238, 0.1377753535318076, 0.017128038770129694, 0.09070427960766203, 0.05237321155563324, 0.46044782253877736, 0.09863911308639095, 0.6058955548956951, 0.07377868677997379, 0.33726125667837825, 0.03705661785513226, 0.03856885477325478, 0.01970319875133708, 0.06623921298607705, 0.655672818127978, 0.36403826442427, 0.375635621083512, 0.25822104517587474, 0.26990817233175546, 0.30316845466795117, 0.21597661143113533, 0.10411587283779344, 0.4582573305440075, 0.28974208538397184, 0.3995654588450376, 0.48407929824265805, 0.2412117545349558, 0.49704114689177337, 0.3112403223054312, 0.13571503940671914, 0.35304273602320047, 0.18963603484652192, 0.06023564559469896, 0.305863422303413, 0.34062746964654456, 0.03532029949184434, 0.20200996882548472, 0.207876095289533, 0.11304202998506685, 0.26487496820305634, 0.46674395287949066, 0.05931266843465788, 0.6063731497207538, 0.053339747820140615, 0.16056749669580483, 0.3366557342021428, 0.18735912995827353, 0.2667542380283816, 0.9197592959547904, 0.13322255285490225, 0.3533185668595151, 0.08763312389948397, 0.343329095265401, 0.1298321532292276, 0.11240742021865013, 0.03412749239977686, 0.23316671381479437, 0.13955591125269062, 0.065615492475942, 0.03940539431326806, 0.04874684240881699, 0.42507109047861347, 0.3720756994829524, 0.20627971812824875, 0.23346983492740092, 0.299872058778726, 0.14688925552714138, 0.20529540916933675, 0.11294333341234963, 0.4523771212155355, 0.15895981664313275, 0.12633289347617382, 0.34801013400503944, 0.063056887931354, 0.09222807982804315, 0.19281104432210028, 0.11843845992675284, 0.1064686731970873, 0.12171087020281346, 0.49704114689177337, 0.4202798549667376, 0.058322454167927695, 0.40418598015134155, 0.7514842711311043, 0.067978575311199, 0.1468497162592186, 0.3655805321171328, 0.36741292271676196, 0.08785516413846428, 0.4223454464089015, 0.09472348251934337, 0.14196098925812006, 0.10013555988874479, 0.32154631204965056, 0.05416575683382341, 0.786126361492164, 0.04696516601190348, 0.26926088858349784, 0.28123172687107445, 0.3094364396730669, 0.04307250962973752, 0.07126159086244754, 0.6143015945908075, 0.495586079448059, 0.46102608015166635, 0.40789311683600216, 0.8929715185951024, 0.1227006502272181, 0.3638055988942468, 0.10470002869891348, 0.29304213908849364, 0.8936703981375603, 0.3534407380188983, 0.0883666731866185, 0.07895584641700149, 0.05166417783587085, 0.4199775765299997, 0.10304865631077798, 0.1041340676595982, 0.11031385635331636, 0.22368578646300386, 0.22137255536682798, 0.0725394352715707, 0.08320759746190642, 0.3577905591727162, 0.36362749207413336, 0.13058702032609693, 0.4306817897420764, 0.4684623303117058, 0.3185463047756948, 0.6991046594229053, 0.33105510290791684, 0.35804773811787727, 0.3499358724503807, 0.17780319308126435, 0.07142366539796174, 0.1504846162366139, 0.28643330026545544, 0.11492102279820171, 0.08716328114311156, 0.12905574960179156, 0.5528531989583015, 0.2852168598030531, 0.3185463047756948, 0.41766807389819915, 0.22818770291371737, 0.10749415552266317, 0.07500089027222667, 0.2150933620687273, 0.4879833184669665, 0.21367083697314282, 0.18281788227943807, 0.11217648511765432, 0.01860460444149037, 0.4990100838788346, 0.3212979959143686, 0.7252893191599291, 0.30018855716775616, 0.2808216200321265, 0.24332849241566534, 0.22583693263898685, 0.307128141019565, 0.12930297020615966, 0.07734813107736227, 0.38078614076753503, 0.037937415915298756, 0.18389331462546077, 0.2015421194948802, 0.10121634311933059, 0.7209948827487924, 0.252131738577411, 0.19866278493931944, 0.5569604587758099, 0.19172534874952063, 0.07516041810443141, 0.18673310211333727, 0.20736440356309183, 0.27568985010185776, 0.1748501221961516, 0.134246332983591, 0.12151400729184814, 0.03860330573341564, 0.16198960071610413, 0.062309112953929935, 0.14943540958877521, 0.46827469198568006, 0.12435295831370408, 0.11768791031746062, 0.10794707492381372, 0.04347111427796346, 0.07423675680829, 0.1602542791395647, 0.19911642350143877, 0.2379444352717226, 0.36664322039668684, 0.10130143557253446, 0.17108028607870185, 0.6143194513817134, 0.5641235853966853, 0.29864316680665437, 0.44752301946823647, 0.13459844499503626, 0.037461465199631894, 0.5002964248569376, 0.4059565893810353, 0.7035957096210382, 0.0629603198376949, 0.25036415064992923, 0.14780834332950044, 0.24800647860056513, 0.10438723399855232, 0.24366911510822187, 0.4574644219698093, 0.8347014835967527, 0.42226245660703365, 0.4073158502222598, 0.47525484003715535, 0.37845934883934684, 0.35325777167774697, 0.4763432908647238, 0.18941100564626978, 0.23853527246002126, 0.27277355193056574, 0.5556171757583562, 0.19481513110659687, 0.7460207524242459, 0.12627308236197843, 0.2115813466591615, 0.4773837842994688, 0.22238536240250728, 0.1978655273089749, 0.32057959349203036, 0.1601330373243487, 0.6256605001243821, 0.34062746964654456, 0.5899158924001677, 0.1273375405407705, 0.6866376712310945, 0.3812864953771038, 0.07918534602430627, 0.10510921928053807, 0.052405178286905496, 0.29010285216427345, 0.5802968836962079, 0.4475494904811408, 0.33107045093633036, 0.6046547135519548, 0.33132995382553565, 0.3391582818855403, 0.37109937806185267, 0.18876467901964422, 0.03244681540368277, 0.6531311156123596, 0.18281848038190407, 0.06840545126676123, 0.23876166598551407, 0.5602062902528231, 0.05478334190217349, 0.18965009362393503, 0.502081053312289, 0.0945975060483667, 0.24937367783354814, 0.14040338921272166, 0.09582424632391484, 0.4879833184669665, 0.07536550594022651, 0.37763546052463404, 0.20240400638142053, 0.06234715971662652, 0.1729504208160284, 0.2536573606029918, 0.1491704939138675, 0.47224603889779837, 0.20734784509414073, 0.1656619584420439, 0.20263687678412212, 0.4576701693643329, 0.3746187330143109, 0.06578487521364562, 0.09359041291034786, 0.15714155813810793, 0.43198081216185935, 0.17693664965610134, 0.14200602748771296, 0.16878839641400256, 0.11131318694256087, 0.43040972974554736, 0.12494266711040569, 0.5286591337585229, 0.3917329141436472, 0.14284790216410748, 0.29931895876037384, 0.3998656181534954, 0.13198036366642862, 0.2166851793268345, 0.164669749255824, 0.3116999397838065, 0.5702002297218003, 0.2867818412254799, 0.05809024612643199, 0.0701620515557333, 0.10493669218879953, 0.03474255021640338, 0.14069518845012563, 0.7697788668098057, 0.44513161239284327, 0.12104291767226882, 0.2823656727566666, 0.28640273091276736, 0.09904459769556595, 0.10889384421684001, 0.1978655273089749, 0.6326587477498924, 0.0766186874204361, 0.07300117689776386, 0.3978521493117628, 0.7293533971641823, 0.24040337450518035, 0.46827469198568006, 0.03737110954461231, 0.48112847828662497, 0.5755848065786346, 0.12151472907643468, 0.332302417201758, 0.3208349144509022, 0.13406270144296106, 0.47820199098358873, 0.024219732643774528, 0.7923035912680444, 0.3099424932714111, 0.8494816644677875, 0.15230116664989468, 0.8795672599938588, 0.34536882843285344, 0.587897812361327, 0.3660303223369904, 0.3074082248441362, 0.1925553058603695, 0.1582957933341015, 0.5297945963993664, 0.1892543681582496, 0.06574637766643598, 0.03286461121245521, 0.6223124217546917, 0.48666930315350876, 0.17200815643270417, 0.27042696199957883, 0.16010429726024444, 0.25291734909108765, 0.22778758435893687, 0.6055190518965303, 0.41989528411161425, 0.2865861541738164, 0.17344095530188786, 0.4163761941495938, 0.24610426408478792, 0.029106329843254564, 0.5849270471051293, 0.09607886499379148, 0.4890296174547498, 0.11193395874659995, 0.3667485749721523, 0.29672938182784603, 0.13696827462710404, 0.03986507081677082, 0.41542023534722683, 0.1642424989032959, 0.041559354155004224, 0.1266666793707928, 0.5259198205822933, 0.42123490919744344, 0.6147437654518444, 0.42849246998341506, 0.04874684240881699, 0.16870816563337898, 0.35179373534084035, 0.4552463954734379, 0.1543174595222413, 0.4641274821418986, 0.1106599594415556, 0.40441066041397966, 0.05916303638108533, 0.24194101851814365, 0.5755848065786346, 0.23631147082452741, 0.04679471849088612, 0.33132995382553565, 0.6031606095022326, 0.16900214819844117, 0.9322526967181247, 0.1065938389205352, 0.0540586741766943, 0.14920224829950646, 0.03054451782098533, 0.13595064656866984, 0.15908339514281045, 0.09402391562754642, 0.27219479721363327, 0.10477531970828624, 0.6046547135519548, 0.04412971358840656, 0.0821245873848182, 0.24953715645213048, 0.24311299470472425, 0.679537413518331, 0.02875041056121841, 0.2874129658970298, 0.17131102264191878, 0.07042427222914205, 0.1577516063520068, 0.39934634677258996, 0.42249259173992826, 0.24940231538328683, 0.46827469198568006, 0.040988937643475554, 0.034828704291737345, 0.26663563965858417, 0.22421743312747255, 0.10716094829621758, 0.7421831263598226, 0.4644511163280224, 0.1591307416719686, 0.21502194578256428, 0.12883185373794437, 0.15520095945599266, 0.04280666734842442, 0.06928764484923078, 0.3578757504587543, 0.0760792945579073, 0.06637805380770656, 0.5755848065786346, 0.4326356954473739, 0.16985579355455038, 0.47152805642545803, 0.11644579282256762, 0.11790522998710073, 0.5438286352264949, 0.41561805514360906, 0.050606352251634235, 0.21836830194439782, 0.22298545275517268, 0.1504846162366139, 0.16819644397314482, 0.47796113776613436, 0.14100197907825862, 0.7878397890034206, 0.12176963827920351, 0.09814942480303201, 0.23162396036129984, 0.04400104962869911, 0.061588508633294015, 0.2774601068082493, 0.40816383821078206, 0.14036214651023216, 0.11837607594274324, 0.0703155477214753, 0.17002415827487982, 0.24611532014486182, 0.06874641727313702, 0.30975746960573625, 0.07004288447243323, 0.6453829176356538, 0.3880412370469972, 0.10205495289732236, 0.12171087020281346, 0.38550692709735157, 0.4398162761337091, 0.5769741243450848, 0.48842976274850136, 0.3866799681687785, 0.17129518728202664, 0.5711206597512044, 0.4456070955069118, 0.4585850027539752, 0.25462747480751524, 0.34771016550763867, 0.35548618548401445, 0.07878090041588082, 0.3008706318705062, 0.08117751180329491, 0.055511805197920094, 0.1600174453683395, 0.35597309965685686, 0.5473978930443646, 0.3321771897262046, 0.14643302530661162, 0.7653011157176768, 0.24188431843396252, 0.16704799028757666, 0.41136103198090634, 0.5749869949413896, 0.709238838470871, 0.09340318303147321, 0.602429869503323, 0.04154705947390969, 0.7519582179986716, 0.15993940416551844, 0.04372375151311325, 0.4076899811241429, 0.4644511163280224, 0.3133137248525114, 0.24628490675063597, 0.06972977174174444, 0.15949948541388637, 0.2241543425141257, 0.1729876202034616, 0.07290025122558275, 0.1220000714032804, 0.36493953208423235, 0.09420126302076737, 0.026726938234992392, 0.7199273032686843, 0.4606762448039463, 0.04906818437448113, 0.19446415942665518, 0.14876853598344464, 0.3247816953453747, 0.023320858692869595, 0.7310618090422621, 0.48944479260603346, 0.20357574295749958, 0.0840537250624015, 0.5368744051465595, 0.21101467800102214, 0.46682279298460017, 0.3749869638443927, 0.46592999202179275, 0.10188412989688433, 0.15751976448865512], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"pH\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"pH\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}}, {\"id\": \"All_sulphates\", \"params\": {\"data\": [{\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Reference<br>sulphates=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [0.42, 0.54, 0.53, 0.49, 0.54, 0.54, 0.53, 0.5, 0.38, 0.38, 0.34, 0.54, 0.37, 0.44, 0.67, 0.45, 0.37, 0.68, 0.48, 0.34, 0.56, 0.59, 0.42, 0.4, 0.32, 0.54, 0.4, 0.35, 0.4, 0.39, 0.42, 0.65, 0.39, 0.9, 0.63, 0.48, 0.55, 0.41, 0.53, 0.75, 0.38, 0.44, 0.71, 0.41, 0.49, 0.4, 0.47, 0.45, 1.13, 0.37, 0.37, 0.58, 0.41, 0.47, 0.54, 0.38, 0.48, 0.32, 0.29, 0.58, 0.57, 0.48, 0.41, 0.51, 0.68, 0.59, 0.39, 0.35, 0.46, 0.22, 0.64, 0.26, 0.4, 0.51, 0.69, 0.46, 0.86, 0.33, 0.75, 0.32, 0.72, 0.36, 0.51, 0.46, 0.41, 0.72, 0.48, 0.91, 0.48, 0.67, 0.51, 0.58, 0.67, 0.52, 0.44, 0.4, 0.38, 0.42, 0.48, 0.62, 0.4, 0.46, 0.69, 0.64, 0.36, 0.5, 0.45, 0.42, 0.76, 0.56, 0.45, 0.38, 0.54, 0.76, 0.44, 0.53, 0.54, 0.5, 0.59, 0.85, 0.52, 0.61, 0.41, 0.53, 0.46, 0.54, 0.56, 0.53, 0.56, 0.96, 0.39, 0.83, 0.41, 0.85, 0.5, 0.34, 0.64, 0.6, 0.47, 0.74, 0.44, 0.46, 0.52, 0.59, 0.67, 0.62, 0.78, 0.36, 0.6, 0.35, 0.39, 0.68, 0.54, 0.43, 0.54, 0.53, 0.41, 0.41, 0.41, 0.43, 0.48, 0.58, 0.5, 0.96, 0.69, 0.5, 0.49, 0.33, 0.41, 0.33, 0.79, 0.59, 0.51, 0.39, 0.57, 0.38, 0.56, 0.54, 0.43, 0.69, 0.57, 0.48, 0.8, 0.43, 0.47, 0.5, 0.39, 0.64, 0.52, 0.51, 0.48, 0.63, 0.51, 0.46, 0.53, 0.38, 0.46, 0.55, 0.47, 0.5, 0.49, 0.71, 0.58, 0.89, 0.63, 0.81, 0.94, 0.41, 0.41, 0.46, 0.38, 0.54, 0.48, 0.46, 0.39, 0.6, 0.43, 0.48, 0.38, 0.63, 0.54, 0.39, 0.46, 0.6, 0.72, 0.49, 0.53, 0.78, 0.55, 0.44, 0.54, 0.41, 0.6, 0.56, 0.58, 0.48, 0.69, 0.57, 0.43, 0.4, 0.46, 0.48, 0.43, 0.54, 0.59, 0.39, 0.5, 0.49, 0.44, 0.42, 0.69, 0.49, 0.76, 0.83, 0.65, 0.4, 0.34, 0.45, 0.44, 0.57, 0.37, 0.42, 0.5, 0.76, 0.62, 0.41, 0.43, 0.57, 0.83, 0.48, 0.54, 0.49, 0.47, 0.57, 0.49, 0.46, 0.45, 0.85, 0.63, 0.46, 0.37, 0.37, 0.52, 0.58, 0.49, 0.73, 0.62, 0.46, 0.66, 0.35, 0.58, 0.59, 0.62, 0.43, 0.59, 0.4, 0.7, 0.42, 0.68, 0.58, 0.66, 0.58, 0.61, 0.42, 0.42, 0.85, 0.37, 0.64, 0.47, 0.56, 0.59, 0.42, 0.67, 0.79, 0.42, 0.67, 0.58, 0.42, 0.63, 0.46, 0.56, 0.64, 0.66, 0.79, 0.5, 0.67, 0.36, 0.69, 0.58, 0.49, 0.37, 0.44, 0.82, 0.61, 0.54, 0.52, 0.54, 0.78, 0.64, 0.53, 0.51, 0.33, 0.64, 0.72, 0.68, 0.41, 0.54, 0.55, 0.38, 0.46, 0.4, 0.66, 0.45, 0.51, 0.5, 0.5, 0.72, 0.37, 0.97, 0.38, 0.63, 0.43, 1.36, 0.84, 0.58, 0.49, 0.54, 0.38, 0.86, 0.52, 0.42, 0.53, 0.53, 0.34, 0.62, 0.34, 0.5, 0.6, 0.44, 0.62, 0.69, 0.46, 0.62, 0.55, 0.4, 0.54, 0.77, 0.77, 0.6, 0.45, 0.47, 0.45, 0.45, 0.41, 0.54, 0.66, 0.49, 0.42, 0.31, 0.54, 0.57, 0.58, 0.65, 0.67, 0.37, 0.53, 0.38, 0.53, 0.67, 0.37, 0.61, 0.49, 0.69, 0.44, 0.33, 0.48, 0.46, 0.59, 0.51, 0.4, 0.55, 0.49, 0.39, 0.39, 0.4, 0.4, 0.32, 0.42, 0.46, 0.47, 0.38, 0.63, 0.58, 0.44, 0.44, 0.34, 0.68, 0.66, 0.79, 1.02, 0.35, 0.41, 0.61, 0.36, 0.59, 0.46, 0.59, 0.56, 0.9, 0.42, 0.38, 0.42, 0.4, 0.51, 0.57, 0.6, 0.35, 0.61, 0.5, 0.38, 0.66, 0.59, 0.91, 0.5, 0.35, 0.68, 0.42, 0.48, 0.5, 0.9, 0.54, 0.6, 0.44, 0.47, 0.67, 0.25, 0.68, 0.54, 0.52, 0.46, 0.57, 0.61, 0.46, 0.64, 0.45, 0.38, 0.46, 0.54, 0.39, 0.56, 0.71, 0.58, 0.38, 0.72, 0.52, 0.49, 0.38, 0.5, 0.53, 0.6, 0.54, 0.31, 0.46, 0.44, 0.37, 0.52, 0.43, 0.45, 0.36, 0.44, 0.46, 0.47, 0.59, 0.46, 0.5, 0.39, 0.62, 0.54, 0.59, 0.57, 0.45, 0.43, 0.34, 0.51, 0.58, 0.36, 0.73, 0.72, 0.42, 0.38, 0.77, 0.6, 0.44, 0.54, 0.42, 0.67, 0.53, 0.96, 0.54, 0.64, 0.55, 0.39, 0.6, 0.48, 0.44, 0.43, 0.65, 0.36, 0.51, 0.59, 0.67, 0.43, 0.64, 0.84, 0.49, 0.62, 0.4, 0.56, 0.61, 0.54, 0.54, 0.49, 0.51, 0.53, 0.73, 0.33, 0.37, 0.59, 0.4, 0.55, 0.47, 0.53, 1.06, 0.49, 0.65, 0.4, 0.43, 0.47, 0.59, 0.45, 0.43, 0.6, 0.42, 0.93, 0.38, 0.53, 0.53, 0.52, 0.61, 0.62, 1.95, 0.35, 0.48, 0.39, 0.57, 0.68, 0.49, 0.92, 0.49, 0.58, 0.47, 0.9, 0.5, 0.53, 0.92, 0.5, 0.74, 0.41, 0.49, 0.41, 0.34, 0.69, 0.55, 0.77, 0.38, 0.72, 0.59, 0.4, 0.73, 1.36, 0.77, 0.58, 0.66, 0.6, 0.58, 0.5, 0.79, 0.36, 0.5, 0.62, 0.44, 0.56, 0.5, 0.56, 0.46, 0.53, 0.78, 0.5, 0.65, 0.58, 0.53, 0.98, 0.44, 0.46, 0.95], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Current<br>sulphates=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [0.38, 0.44, 0.87, 0.39, 0.58, 0.33, 0.7, 0.38, 0.61, 0.59, 0.56, 0.52, 0.37, 0.53, 0.36, 0.41, 0.58, 0.44, 0.87, 0.33, 0.46, 0.5, 0.38, 0.58, 0.6, 0.33, 0.3, 0.54, 0.6, 0.49, 0.35, 0.49, 0.82, 0.41, 0.34, 0.31, 0.76, 0.49, 0.53, 0.53, 0.32, 0.5, 0.38, 0.41, 0.8, 0.74, 0.38, 0.57, 0.49, 0.72, 0.61, 0.67, 0.36, 0.25, 0.49, 0.75, 0.68, 0.79, 0.44, 1.33, 0.68, 0.38, 0.47, 0.36, 0.36, 0.42, 0.58, 0.62, 0.5, 0.8, 0.53, 0.39, 0.29, 0.51, 0.37, 0.42, 0.44, 0.45, 0.47, 0.61, 0.46, 0.52, 0.85, 0.68, 0.49, 0.78, 0.73, 0.3, 0.27, 0.49, 0.35, 0.33, 0.5, 0.4, 0.48, 0.58, 0.65, 0.43, 0.72, 0.77, 0.34, 0.5, 0.84, 0.43, 0.53, 0.62, 0.54, 0.35, 0.59, 0.63, 0.5, 0.38, 0.37, 0.51, 0.5, 0.93, 0.76, 0.56, 0.65, 0.71, 0.64, 0.99, 0.56, 0.42, 0.75, 0.74, 0.74, 0.62, 0.75, 0.57, 0.36, 0.88, 0.44, 0.56, 0.44, 0.51, 0.67, 0.7, 0.57, 0.5, 0.62, 0.49, 0.61, 0.48, 0.41, 0.6, 0.58, 0.77, 0.39, 0.47, 0.38, 0.68, 0.44, 0.36, 0.68, 0.53, 0.82, 0.73, 0.45, 0.48, 0.4, 0.78, 0.26, 0.49, 0.82, 0.36, 0.45, 0.55, 0.86, 0.39, 0.57, 0.32, 0.39, 0.66, 0.45, 0.49, 0.43, 0.42, 0.47, 0.77, 0.44, 0.41, 0.95, 0.76, 0.43, 0.82, 0.87, 0.37, 0.45, 0.75, 0.39, 0.43, 0.59, 0.48, 0.46, 0.58, 0.57, 0.38, 0.58, 0.64, 0.59, 0.56, 0.57, 0.4, 0.56, 0.63, 0.53, 0.85, 0.51, 0.78, 0.41, 0.33, 0.6, 0.6, 0.56, 0.65, 0.47, 0.44, 0.5, 0.49, 0.4, 0.55, 0.6, 0.53, 0.66, 0.58, 0.68, 0.48, 0.77, 0.48, 0.72, 0.44, 0.66, 0.47, 0.66, 0.82, 0.4, 0.54, 0.31, 0.47, 0.53, 0.46, 0.39, 0.57, 0.64, 0.87, 0.41, 0.5, 0.47, 0.7, 0.76, 0.3, 0.75, 0.41, 0.55, 0.35, 0.45, 0.58, 0.48, 0.73, 0.62, 0.57, 0.47, 0.35, 0.39, 0.48, 0.51, 0.43, 0.48, 0.43, 0.37, 0.43, 0.58, 0.65, 0.4, 0.7, 0.57, 0.44, 0.56, 0.76, 1.06, 0.51, 0.51, 0.49, 0.64, 0.63, 0.36, 0.52, 0.57, 0.43, 1.11, 0.63, 0.42, 0.47, 0.49, 0.46, 0.45, 0.42, 0.33, 0.44, 0.33, 0.75, 0.59, 0.38, 0.48, 0.85, 0.56, 0.54, 0.75, 0.47, 0.38, 0.6, 0.63, 0.5, 0.52, 0.63, 0.51, 0.5, 0.51, 0.48, 0.64, 0.44, 0.59, 0.36, 0.64, 0.39, 0.4, 0.77, 0.48, 0.73, 0.81, 0.36, 0.86, 0.53, 0.43, 0.38, 0.75, 0.41, 0.43, 0.46, 0.39, 0.52, 0.58, 0.84, 0.54, 0.45, 0.42, 0.5, 0.9, 0.34, 0.35, 0.52, 0.47, 0.36, 0.4, 0.82, 0.6, 0.38, 0.82, 0.72, 0.32, 0.59, 0.75, 0.35, 0.75, 0.43, 0.46, 0.5, 0.57, 0.69, 0.46, 0.53, 0.54, 0.54, 0.56, 0.49, 0.48, 0.37, 0.65, 0.46, 0.5, 0.55, 0.55, 0.48, 0.43, 0.62, 0.46, 0.44, 0.65, 0.44, 0.58, 0.44, 0.49, 0.64, 0.42, 0.62, 0.47, 0.53, 0.59, 0.45, 0.41, 0.31, 0.64, 0.5, 0.41, 0.42, 0.46, 0.36, 0.39, 0.36, 0.7, 0.49, 0.68, 0.46, 0.5, 0.7, 0.36, 0.65, 0.6, 0.49, 0.56, 0.98, 0.77, 0.6, 0.7, 0.59, 0.6, 0.33, 0.61, 0.4, 0.34, 0.41, 0.53, 0.51, 0.71, 0.65, 0.74, 0.48, 0.7, 0.52, 0.49, 0.84, 0.32, 0.54, 0.33, 0.66, 0.75, 0.4, 0.78, 0.47, 0.37, 0.54, 0.72, 0.54, 0.43, 0.53, 0.56, 0.55, 0.43, 0.49, 0.59, 0.5, 0.42, 0.41, 0.38, 0.65, 0.27, 0.54, 0.4, 0.57, 0.45, 0.3, 0.67, 0.43, 0.41, 0.55, 0.43, 0.6, 0.35, 0.42, 0.65, 0.38, 0.77, 0.76, 0.52, 0.32, 0.32, 0.37, 0.43, 0.68, 0.57, 0.41, 0.77, 0.81, 0.36, 0.75, 0.49, 0.92, 0.52, 0.76, 0.64, 0.5, 0.49, 0.4, 0.5, 0.46, 0.44, 0.59, 0.57, 0.5, 0.82, 0.4, 0.4, 0.45, 0.32, 0.62, 0.64, 0.82, 0.43, 0.8, 0.3, 0.9, 0.38, 0.51, 0.95, 0.59, 0.72, 0.62, 0.36, 0.45, 0.6, 0.37, 0.48, 0.31, 0.81, 0.45, 0.74, 0.37, 0.6, 0.6, 0.55, 0.56, 0.87, 0.51, 0.33, 0.38, 0.72, 0.79, 0.46, 0.49, 0.66, 0.44, 0.52, 0.58, 0.55, 0.37, 0.53, 0.41, 0.42, 0.39, 0.35, 0.65, 0.44, 0.6, 0.51, 0.74, 0.37, 0.39, 0.38, 0.42, 0.69, 0.58, 0.59, 0.5, 0.39, 0.68, 0.48, 0.32, 0.42, 0.56, 0.43, 0.52, 0.34, 0.38, 0.53, 0.64, 0.6, 0.59, 0.38, 0.65, 0.63, 0.5, 0.54, 0.63, 0.58, 0.75, 0.73, 0.79, 0.46, 0.31, 0.52, 0.44, 0.45, 0.39, 0.68, 0.58, 0.75, 0.57, 0.51, 0.68, 0.36, 0.56, 0.43, 0.52, 0.56, 0.44, 0.37, 0.57, 0.6, 0.47, 0.46, 0.37, 0.45, 0.36, 0.55, 0.48, 0.39, 0.35, 0.63, 0.71, 0.59, 0.8, 0.37, 0.46, 0.47, 0.54, 0.33, 0.64, 0.52, 0.51, 0.52, 0.52, 0.66, 0.55, 0.53, 0.52, 0.59, 0.54], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Reference<br>sulphates=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [0.42, 0.41, 0.41, 0.58, 0.51, 0.54, 0.57, 0.67, 0.5, 0.49, 1.17, 0.63, 0.4, 0.42, 0.43, 0.43, 0.6, 0.48, 0.5, 0.49, 0.45, 0.36, 0.6, 0.47, 0.81, 0.65, 0.5, 0.62, 0.5, 0.43, 0.56, 0.55, 0.55, 0.78, 0.44, 0.46, 0.36, 0.35, 0.63, 0.42, 0.48, 0.68, 0.46, 0.43, 0.5, 0.5, 0.47, 0.52, 0.64, 0.62, 0.57, 0.5, 0.38, 0.44, 0.6, 0.51, 0.43, 0.57, 0.52, 0.88, 0.57, 0.47, 0.52, 0.39, 0.48, 0.45, 0.6, 0.45, 0.64, 0.37, 0.32, 0.58, 0.46, 0.5, 0.38, 0.42, 0.38, 0.7, 0.58, 0.48, 0.5, 0.54, 0.47, 0.43, 0.62, 0.56, 0.44, 0.32, 0.29, 0.39, 0.58, 0.38, 0.66, 0.46, 0.44, 0.48, 0.4, 0.58, 0.48, 0.5, 0.47, 0.65, 0.64, 0.55, 0.53, 1.31, 0.43, 0.34, 0.57, 0.44, 0.62, 0.4, 0.56, 0.44, 0.64, 0.49, 0.5, 0.62, 0.57, 0.38, 0.46, 0.6, 0.51, 0.29, 0.49, 0.5, 0.67, 0.55, 0.59, 0.5, 0.28, 0.64, 0.4, 0.49, 0.49, 0.42, 0.35, 0.54, 0.45, 0.51, 0.53, 0.5, 0.34, 0.5, 0.48, 0.4, 0.66, 0.38, 0.56, 0.7, 0.52, 0.53, 0.42, 0.61, 0.39, 0.5, 0.95, 0.39, 0.39, 0.28, 0.36, 0.6, 0.57, 0.48, 0.39, 0.46, 0.48, 0.54, 0.57, 0.42, 0.51, 0.39, 0.49, 0.8, 0.67, 0.53, 0.47, 0.57, 0.59, 0.39, 0.49, 0.48, 0.5, 0.47, 0.46, 0.36, 0.59, 0.36, 0.52, 0.47, 0.44, 0.56, 0.6, 0.4, 0.54, 0.49, 0.54, 0.53, 0.68, 0.41, 0.71, 0.75, 0.75, 0.57, 0.73, 0.43, 0.39, 0.5, 0.58, 0.31, 0.42, 0.49, 0.44, 0.43, 0.56, 0.47, 0.53, 0.29, 0.48, 0.29, 0.47, 0.39, 0.6, 0.44, 0.38, 0.52, 0.38, 0.66, 0.51, 0.52, 0.43, 0.43, 0.44, 0.51, 0.66, 0.35, 0.53, 0.37, 0.61, 0.63, 0.71, 0.53, 0.52, 0.48, 0.39, 0.57, 0.55, 0.52, 0.39, 0.6, 0.67, 0.47, 0.55, 0.47, 0.51, 0.51, 0.79, 0.32, 0.58, 0.49, 0.41, 0.62, 0.38, 0.4, 0.43, 0.34, 0.6, 0.43, 0.97, 0.54, 0.43, 0.67, 0.55, 0.58, 0.45, 0.58, 0.48, 0.54, 0.38, 0.52, 0.52, 0.66, 0.49, 0.6, 0.35, 0.52, 0.64, 0.39, 0.39, 0.41, 0.62, 0.69, 0.37, 0.48, 0.48, 0.98, 0.52, 0.49, 0.46, 0.59, 0.73, 0.44, 0.53, 0.49, 0.53, 0.38, 0.61, 0.56, 1.05, 0.47, 0.4, 0.48, 0.66, 0.48, 0.99, 0.43, 0.51, 0.61, 0.56, 0.65, 0.63, 0.5, 0.44, 0.59, 0.46, 0.4, 0.84, 0.7, 0.51, 0.46, 0.5, 0.62, 0.51, 0.69, 0.45, 0.57, 0.45, 0.64, 0.4, 0.5, 0.46, 0.5, 0.51, 0.51, 0.51, 0.65, 0.71, 0.48, 0.47, 0.56, 0.35, 0.57, 0.64, 0.63, 0.66], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Current<br>sulphates=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [0.78, 0.48, 0.33, 0.45, 0.47, 0.5, 0.51, 0.54, 0.67, 0.57, 0.49, 0.5, 0.52, 0.37, 0.57, 0.48, 0.38, 0.61, 0.81, 0.28, 0.72, 0.46, 0.49, 0.51, 0.66, 0.38, 0.52, 0.49, 0.4, 0.53, 0.44, 0.54, 0.46, 0.45, 0.51, 0.44, 0.48, 0.58, 0.41, 0.55, 0.38, 0.43, 0.81, 0.45, 0.41, 0.57, 0.61, 0.53, 0.5, 0.52, 0.7, 0.39, 0.34, 0.58, 0.49, 0.67, 0.65, 0.74, 0.35, 0.54, 0.74, 0.64, 0.47, 0.91, 0.47, 0.64, 1.34, 0.56, 0.56, 0.48, 0.69, 0.4, 0.46, 0.47, 0.37, 0.53, 0.52, 0.43, 0.46, 0.61, 0.39, 0.49, 0.42, 0.55, 0.37, 0.48, 0.44, 0.75, 0.42, 0.8, 0.34, 0.38, 0.7, 0.63, 0.73, 0.4, 0.34, 0.93, 0.46, 0.5, 0.43, 0.43, 0.48, 0.52, 0.46, 0.54, 0.7, 0.45, 0.41, 0.64, 0.46, 0.44, 0.75, 0.54, 0.46, 0.48, 0.67, 0.49, 0.48, 0.52, 0.37, 0.46, 0.6, 0.48, 0.54, 0.77, 0.48, 0.55, 0.54, 0.65, 0.4, 0.56, 0.63, 0.33, 0.48, 0.5, 0.7, 0.55, 0.4, 0.51, 0.42, 0.37, 0.31, 0.52, 0.63, 0.49, 0.52, 0.56, 0.54, 0.42, 0.34, 0.59, 0.72, 0.38, 0.52, 0.35, 0.4, 0.51, 0.46, 0.56, 0.57, 0.56, 0.68, 0.48, 0.5, 0.5, 0.38, 0.49, 0.38, 0.46, 0.6, 0.49, 0.38, 0.42, 0.58, 0.35, 0.31, 0.53, 0.45, 0.37, 0.39, 0.44, 0.61, 0.38, 0.52, 0.42, 0.4, 0.53, 0.59, 0.52, 0.57, 0.58, 0.5, 0.65, 0.49, 0.47, 0.46, 0.48, 0.78, 0.44, 0.52, 0.46, 0.45, 0.69, 0.3, 0.76, 0.46, 0.78, 0.33, 0.45, 0.61, 0.52, 0.64, 0.35, 0.47, 0.37, 0.57, 0.4, 0.5, 0.39, 0.46, 0.43, 0.47, 0.46, 0.45, 0.45, 0.64, 0.59, 0.39, 0.4, 0.51, 0.7, 0.37, 0.32, 0.82, 0.47, 0.45, 0.59, 0.63, 0.55, 0.72, 0.8, 0.52, 0.41, 0.5, 0.72, 0.88, 0.45, 0.52, 0.42, 0.64, 0.45, 0.42, 0.44, 0.44, 0.41, 0.41, 0.6, 0.58, 0.71, 0.65, 0.53, 0.68, 0.68, 0.49, 0.45, 0.56, 0.73, 0.44, 0.48, 0.5, 0.72, 0.41, 0.45, 0.53, 0.55, 0.68, 0.6, 0.54, 0.88, 0.53, 0.48, 0.38, 0.43, 0.88, 0.44, 0.39, 0.46, 0.28, 0.58, 0.5, 0.58, 0.52, 0.54, 0.58, 0.65, 0.42, 0.37, 0.51, 0.58, 0.46, 0.61, 0.7, 0.63, 0.5, 0.29, 0.53, 0.35, 0.58, 0.49, 0.58, 0.63, 0.62, 0.39, 0.56, 0.44, 0.46, 0.48, 0.64, 0.38, 0.61, 0.58, 0.5, 0.76, 0.52, 0.4, 0.51, 0.63, 0.48, 0.46, 0.56, 0.45, 0.5, 0.53, 0.55, 0.51, 0.51, 0.39, 0.37, 0.45, 0.45, 0.58, 0.6, 0.48, 0.63, 0.73, 0.49, 0.78, 0.37, 0.76, 0.56, 0.49], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Reference\", \"x\": 0.245, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Current\", \"x\": 0.755, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"barmode\": \"overlay\", \"legend\": {\"title\": {\"text\": \"target\"}, \"tracegroupgap\": 0}, \"margin\": {\"t\": 60}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.49], \"title\": {\"text\": \"sulphates\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.51, 1.0], \"matches\": \"x\", \"title\": {\"text\": \"sulphates\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"count\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}}}}, {\"id\": \"sulphates_good\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (ref)\", \"type\": \"scatter\", \"x\": [0.42, 0.54, 0.53, 0.49, 0.54, 0.54, 0.53, 0.5, 0.38, 0.38, 0.34, 0.54, 0.37, 0.44, 0.67, 0.45, 0.37, 0.68, 0.48, 0.34, 0.56, 0.59, 0.42, 0.4, 0.32, 0.54, 0.4, 0.35, 0.4, 0.39, 0.42, 0.65, 0.39, 0.9, 0.63, 0.48, 0.55, 0.41, 0.53, 0.75, 0.38, 0.44, 0.71, 0.41, 0.49, 0.4, 0.47, 0.45, 1.13, 0.37, 0.37, 0.58, 0.41, 0.47, 0.54, 0.38, 0.48, 0.32, 0.29, 0.58, 0.57, 0.48, 0.41, 0.51, 0.68, 0.59, 0.39, 0.35, 0.46, 0.22, 0.64, 0.26, 0.4, 0.51, 0.69, 0.46, 0.86, 0.33, 0.75, 0.32, 0.72, 0.36, 0.51, 0.46, 0.41, 0.72, 0.48, 0.91, 0.48, 0.67, 0.51, 0.58, 0.67, 0.52, 0.44, 0.4, 0.38, 0.42, 0.48, 0.62, 0.4, 0.46, 0.69, 0.64, 0.36, 0.5, 0.45, 0.42, 0.76, 0.56, 0.45, 0.38, 0.54, 0.76, 0.44, 0.53, 0.54, 0.5, 0.59, 0.85, 0.52, 0.61, 0.41, 0.53, 0.46, 0.54, 0.56, 0.53, 0.56, 0.96, 0.39, 0.83, 0.41, 0.85, 0.5, 0.34, 0.64, 0.6, 0.47, 0.74, 0.44, 0.46, 0.52, 0.59, 0.67, 0.62, 0.78, 0.36, 0.6, 0.35, 0.39, 0.68, 0.54, 0.43, 0.54, 0.53, 0.41, 0.41, 0.41, 0.43, 0.48, 0.58, 0.5, 0.96, 0.69, 0.5, 0.49, 0.33, 0.41, 0.33, 0.79, 0.59, 0.51, 0.39, 0.57, 0.38, 0.56, 0.54, 0.43, 0.69, 0.57, 0.48, 0.8, 0.43, 0.47, 0.5, 0.39, 0.64, 0.52, 0.51, 0.48, 0.63, 0.51, 0.46, 0.53, 0.38, 0.46, 0.55, 0.47, 0.5, 0.49, 0.71, 0.58, 0.89, 0.63, 0.81, 0.94, 0.41, 0.41, 0.46, 0.38, 0.54, 0.48, 0.46, 0.39, 0.6, 0.43, 0.48, 0.38, 0.63, 0.54, 0.39, 0.46, 0.6, 0.72, 0.49, 0.53, 0.78, 0.55, 0.44, 0.54, 0.41, 0.6, 0.56, 0.58, 0.48, 0.69, 0.57, 0.43, 0.4, 0.46, 0.48, 0.43, 0.54, 0.59, 0.39, 0.5, 0.49, 0.44, 0.42, 0.69, 0.49, 0.76, 0.83, 0.65, 0.4, 0.34, 0.45, 0.44, 0.57, 0.37, 0.42, 0.5, 0.76, 0.62, 0.41, 0.43, 0.57, 0.83, 0.48, 0.54, 0.49, 0.47, 0.57, 0.49, 0.46, 0.45, 0.85, 0.63, 0.46, 0.37, 0.37, 0.52, 0.58, 0.49, 0.73, 0.62, 0.46, 0.66, 0.35, 0.58, 0.59, 0.62, 0.43, 0.59, 0.4, 0.7, 0.42, 0.68, 0.58, 0.66, 0.58, 0.61, 0.42, 0.42, 0.85, 0.37, 0.64, 0.47, 0.56, 0.59, 0.42, 0.67, 0.79, 0.42, 0.67, 0.58, 0.42, 0.63, 0.46, 0.56, 0.64, 0.66, 0.79, 0.5, 0.67, 0.36, 0.69, 0.58, 0.49, 0.37, 0.44, 0.82, 0.61, 0.54, 0.52, 0.54, 0.78, 0.64, 0.53, 0.51, 0.33, 0.64, 0.72, 0.68, 0.41, 0.54, 0.55, 0.38, 0.46, 0.4, 0.66, 0.45, 0.51, 0.5, 0.5, 0.72, 0.37, 0.97, 0.38, 0.63, 0.43, 1.36, 0.84, 0.58, 0.49, 0.54, 0.38, 0.86, 0.52, 0.42, 0.53, 0.53, 0.34, 0.62, 0.34, 0.5, 0.6, 0.44, 0.62, 0.69, 0.46, 0.62, 0.55, 0.4, 0.54, 0.77, 0.77, 0.6, 0.45, 0.47, 0.45, 0.45, 0.41, 0.54, 0.66, 0.49, 0.42, 0.31, 0.54, 0.57, 0.58, 0.65, 0.67, 0.37, 0.53, 0.38, 0.53, 0.67, 0.37, 0.61, 0.49, 0.69, 0.44, 0.33, 0.48, 0.46, 0.59, 0.51, 0.4, 0.55, 0.49, 0.39, 0.39, 0.4, 0.4, 0.32, 0.42, 0.46, 0.47, 0.38, 0.63, 0.58, 0.44, 0.44, 0.34, 0.68, 0.66, 0.79, 1.02, 0.35, 0.41, 0.61, 0.36, 0.59, 0.46, 0.59, 0.56, 0.9, 0.42, 0.38, 0.42, 0.4, 0.51, 0.57, 0.6, 0.35, 0.61, 0.5, 0.38, 0.66, 0.59, 0.91, 0.5, 0.35, 0.68, 0.42, 0.48, 0.5, 0.9, 0.54, 0.6, 0.44, 0.47, 0.67, 0.25, 0.68, 0.54, 0.52, 0.46, 0.57, 0.61, 0.46, 0.64, 0.45, 0.38, 0.46, 0.54, 0.39, 0.56, 0.71, 0.58, 0.38, 0.72, 0.52, 0.49, 0.38, 0.5, 0.53, 0.6, 0.54, 0.31, 0.46, 0.44, 0.37, 0.52, 0.43, 0.45, 0.36, 0.44, 0.46, 0.47, 0.59, 0.46, 0.5, 0.39, 0.62, 0.54, 0.59, 0.57, 0.45, 0.43, 0.34, 0.51, 0.58, 0.36, 0.73, 0.72, 0.42, 0.38, 0.77, 0.6, 0.44, 0.54, 0.42, 0.67, 0.53, 0.96, 0.54, 0.64, 0.55, 0.39, 0.6, 0.48, 0.44, 0.43, 0.65, 0.36, 0.51, 0.59, 0.67, 0.43, 0.64, 0.84, 0.49, 0.62, 0.4, 0.56, 0.61, 0.54, 0.54, 0.49, 0.51, 0.53, 0.73, 0.33, 0.37, 0.59, 0.4, 0.55, 0.47, 0.53, 1.06, 0.49, 0.65, 0.4, 0.43, 0.47, 0.59, 0.45, 0.43, 0.6, 0.42, 0.93, 0.38, 0.53, 0.53, 0.52, 0.61, 0.62, 1.95, 0.35, 0.48, 0.39, 0.57, 0.68, 0.49, 0.92, 0.49, 0.58, 0.47, 0.9, 0.5, 0.53, 0.92, 0.5, 0.74, 0.41, 0.49, 0.41, 0.34, 0.69, 0.55, 0.77, 0.38, 0.72, 0.59, 0.4, 0.73, 1.36, 0.77, 0.58, 0.66, 0.6, 0.58, 0.5, 0.79, 0.36, 0.5, 0.62, 0.44, 0.56, 0.5, 0.56, 0.46, 0.53, 0.78, 0.5, 0.65, 0.58, 0.53, 0.98, 0.44, 0.46, 0.95], \"xaxis\": \"x\", \"y\": [0.8156061324462894, 0.42491310922683634, 0.8867827646463432, 0.8014995238430205, 0.30499958310650876, 0.5817355832705369, 0.959171062334887, 0.7854416128369749, 0.9085690698200813, 0.8998600376511439, 0.6341165000693628, 0.412102187638673, 0.7643629411050379, 0.4710001938005606, 0.40182653035141874, 0.40438056362905367, 0.8870480016118494, 0.3650667978415713, 0.9064321709292111, 0.9327245345966092, 0.6458420185168736, 0.8821841129047617, 0.6704018506542557, 0.7655671181822064, 0.8616986618932058, 0.48774537944210006, 0.9637355036179479, 0.6794204065079696, 0.6044835155949141, 0.7867954023600708, 0.9137982268836646, 0.5867502063434873, 0.8048584290077971, 0.9718511071053526, 0.9627192884041744, 0.7978623718349598, 0.6091120966723917, 0.8943338178728011, 0.8853376735027229, 0.9045563504021151, 0.9264844632598176, 0.6342457655367447, 0.9414033426130164, 0.5636516403732365, 0.5172967922101196, 0.4836896337264441, 0.35199620689495453, 0.788779954566273, 0.9696552399248426, 0.772496554239754, 0.8132656157621138, 0.4539090261140653, 0.9333708926412786, 0.679765045723866, 0.48457442622955804, 0.4248820606938153, 0.6737819616086004, 0.8780741425819777, 0.38340602447337646, 0.90634085684919, 0.5574014604752268, 0.6804147683859246, 0.9077110088845216, 0.7718472635729894, 0.4717552048891654, 0.22222808308441652, 0.8616549355667619, 0.705749071892896, 0.4699129352300819, 0.9680524782819758, 0.8891353183282249, 0.9466602521798594, 0.8553382520847058, 0.7430243903066251, 0.6616131862201935, 0.6919609500216202, 0.96565744679506, 0.913108907487878, 0.5395521774612226, 0.9026238558501023, 0.6550941529376255, 0.9757876320152292, 0.8833495792027257, 0.6666029765862381, 0.8504582120840628, 0.9320215595878566, 0.7639947574915884, 0.6085229656221847, 0.9557131606798471, 0.46184432615952054, 0.5642658412077981, 0.8815615400732472, 0.7189203536918151, 0.9301020530176726, 0.7341394174346678, 0.7759189559372703, 0.8448078654733812, 0.9012666081120407, 0.8926028620066223, 0.5287492720273277, 0.6874206920638863, 0.37408584674942635, 0.8348370105186077, 0.8697567261320243, 0.9175759024810304, 0.44644098895981, 0.8874384748400057, 0.7787567487441118, 0.9416122482572158, 0.3265229243180111, 0.9308095750950773, 0.42267134533232753, 0.43068181214270274, 0.8727308285810839, 0.7201611177732586, 0.8430904589044517, 0.8140617541555761, 0.9456747441572588, 0.6672663325862807, 0.8756470416862959, 0.518871521713375, 0.7040615347784164, 0.4957960231649875, 0.6250130361556073, 0.27413726132188326, 0.5193133578087885, 0.37656641690434584, 0.5808048103476511, 0.7917827117482167, 0.36569143480873245, 0.7232542293832885, 0.9785934574433302, 0.5715075300165849, 0.8182555969893297, 0.5448461144048058, 0.9491291995847589, 0.4833587957991669, 0.3189279754564957, 0.9184825510014271, 0.5524830505676419, 0.9600429304649183, 0.7818180966165994, 0.7962710274484252, 0.7569429870375118, 0.46184432615952054, 0.7641514270390748, 0.9486763575522457, 0.8086368705092697, 0.6784536879503494, 0.6877019790624462, 0.6082670858563528, 0.6053794617794684, 0.6319330693089359, 0.4982105707488519, 0.6787928880949093, 0.9231980717613485, 0.8831230955067948, 0.6845485656817341, 0.8799204262605215, 0.9164563829924386, 0.7819268199067826, 0.23469888428232324, 0.9492377841603665, 0.8826092272015389, 0.6360541596480074, 0.5184081252698399, 0.6400126753125241, 0.542646305979658, 0.4479501208302092, 0.7783171875827786, 0.7867712153112567, 0.5236605417423803, 0.6959846197179591, 0.7925023358445066, 0.6683189355892497, 0.18737025221649042, 0.42506327048176057, 0.7272596040941706, 0.7314191754306454, 0.4827891324637794, 0.6649341228620356, 0.9038332731164471, 0.9588917860646077, 0.8945194928389463, 0.49833043835950624, 0.7997712594855277, 0.8577935987172323, 0.7622736922026153, 0.8039391974899521, 0.7396811504731934, 0.8115340233127679, 0.801728888664367, 0.738451208106372, 0.5859674792922007, 0.1865203674848816, 0.8773430435604171, 0.36888329310067386, 0.8651817982269884, 0.9067615420962557, 0.8594983988587351, 0.7437750884018276, 0.9145224932934428, 0.9135679891815164, 0.8001832456898428, 0.6860977766129374, 0.9377826008632761, 0.9300369611912853, 0.6997062971069969, 0.5693182102579236, 0.3404656140239559, 0.7160591142088384, 0.7953146078011, 0.8869803873277935, 0.7639982823097876, 0.8681285227071118, 0.576868797021353, 0.93035102563313, 0.8375600281828176, 0.8279918435672958, 0.9266689436294401, 0.7559862346636359, 0.5099889666930224, 0.6914445842613687, 0.9651950326885705, 0.87851968214492, 0.8499702807396289, 0.4685752957996948, 0.7241546992314323, 0.7848147251007912, 0.7341394174346678, 0.7008877443692281, 0.340588975625529, 0.5013021766499856, 0.8321174529331695, 0.8818378666553491, 0.9176909075187759, 0.8634678749265305, 0.7436082905772717, 0.9343776659412377, 0.7668809937296346, 0.6243383802582345, 0.5332560471205093, 0.6907315465649003, 0.16626803588025432, 0.1668542888532837, 0.7408943843163458, 0.5221312328975666, 0.7457559475413279, 0.46389636934606376, 0.9292627865919654, 0.5268311186840582, 0.4244151934213653, 0.643310536612302, 0.8577438313980266, 0.7816208399762355, 0.8553382520847058, 0.7010035672814305, 0.5242572272016158, 0.9187320011579697, 0.8703498177621264, 0.6713045345576062, 0.9137982268836646, 0.8614414457916845, 0.9445662266054761, 0.8808216590199034, 0.7386378115490353, 0.8873009977622293, 0.9157094897337859, 0.6606038558129893, 0.9296803968514485, 0.8864322240790464, 0.5146720135715994, 0.8720710714485208, 0.9415427660945741, 0.9138701141498735, 0.6527559092576063, 0.8751970040938668, 0.9249766460056568, 0.801728888664367, 0.6575848465963361, 0.6934824043184128, 0.8619113960143526, 0.9419078024651042, 0.9591721389341828, 0.8397407150753159, 0.9084383840076588, 0.4963969309336195, 0.7359588175524252, 0.3531961907069324, 0.9279819479140234, 0.7752976919572294, 0.8665226278427577, 0.9515211055933231, 0.7314191754306454, 0.890886918514299, 0.3235491032739525, 0.3719939405423586, 0.6323804178173072, 0.8398006965792015, 0.8239469134189235, 0.8592101816891015, 0.7615002907198236, 0.8688259750909261, 0.8718104001390852, 0.5838074755684882, 0.8756470416862959, 0.901850575196968, 0.9451930143658351, 0.6253812669856891, 0.5890764576710766, 0.4921052500998711, 0.4862070578416567, 0.9170647663398394, 0.7035583451969506, 0.8476385889092957, 0.5603058978573646, 0.5810606890504925, 0.9088604673919816, 0.8903252600075929, 0.944267921154058, 0.9435968591480925, 0.938237366988842, 0.9357286047893738, 0.7961386682142712, 0.7840233885688647, 0.2513590507613302, 0.7389284097502917, 0.9053472250810051, 0.44438282424164377, 0.862281110352348, 0.8021059248496223, 0.9152740930046814, 0.643737358401971, 0.8540304955499701, 0.8613418170006786, 0.6911084183178322, 0.8848367871057808, 0.8387883096682573, 0.5942651630821018, 0.65691393717736, 0.6369979527510315, 0.8280658524313272, 0.9640736168216585, 0.6546311715671466, 0.5599819536107853, 0.48348053317652906, 0.7668016587569692, 0.03620763244300767, 0.7364400865449663, 0.37408584674942635, 0.8767503774172, 0.8743962287172513, 0.8751970040938668, 0.8833495792027257, 0.7091886355621774, 0.87006937054451, 0.7904001815220257, 0.8761418339280951, 0.8306834851111597, 0.7531715889012326, 0.38181207472529843, 0.6490458991820136, 0.9138057013338913, 0.9046222904886461, 0.17956061692355052, 0.7506163079023257, 0.8963285795381793, 0.8848361664653354, 0.9283037217377402, 0.45996158699034445, 0.7290858434196763, 0.8319094967702583, 0.6578018675312727, 0.18727567457681707, 0.8673410249845035, 0.9453298670648187, 0.9446538464906173, 0.19605573045952288, 0.6723831041639817, 0.3438281302059518, 0.37858973820495484, 0.6953170483296187, 0.21463507152544156, 0.26963792069965237, 0.3280912492037974, 0.8399932187801539, 0.420387898633768, 0.36522500752858966, 0.5810560693343539, 0.9306346767722963, 0.7167716539092029, 0.656736106921484, 0.5549139996760648, 0.6909161521388689, 0.591904263202073, 0.884703171197362, 0.866402281883595, 0.7582770814524421, 0.8990773411030794, 0.1818065866116437, 0.6222165686186035, 0.17261914235374884, 0.8156064679757086, 0.4851213943917703, 0.8871292211128762, 0.8398494053952754, 0.703270618172154, 0.6305543892506115, 0.7494149477175548, 0.1532408287022325, 0.6159732902773407, 0.738220551127759, 0.8354520044441791, 0.8536870432671441, 0.5751476712690671, 0.9077719201719568, 0.7878515691455199, 0.6672663325862807, 0.45293736875445273, 0.17058553029544155, 0.747933377844996, 0.8400163125056676, 0.4516778718827729, 0.6082670858563528, 0.8401843469141149, 0.7636885291754726, 0.789170795337903, 0.8128612802083497, 0.7522530659814418, 0.8086757686066508, 0.8356255123032285, 0.9241779635105248, 0.9674588597049086, 0.9368885694202199, 0.4990764491242286, 0.876561204324957, 0.554264192243629, 0.5967716244634195, 0.9060244606340249, 0.8401608718856799, 0.7329750583133859, 0.8021769878309102, 0.9316817655017511, 0.45488322534173153, 0.798578398438993, 0.7425236774748816, 0.5742682328784404, 0.4937681935814938, 0.8972164286692267, 0.8914273370768748, 0.9377613518261881, 0.8862258850530264, 0.8591757581361523, 0.7410678096850266, 0.6822336012657398, 0.9201658505843877, 0.6982578893131915, 0.5746709232170782, 0.7626532952948841, 0.7137703530889916, 0.7520971196461234, 0.4473853625959922, 0.7957460056304991, 0.4833174871501707, 0.8758467705785958, 0.4689303842787964, 0.6133612564737879, 0.8568681391705205, 0.6835133967314007, 0.9732070839986944, 0.21435716257549006, 0.5761668962420043, 0.4055433603128916, 0.3743394998756179, 0.9118635774953143, 0.964551884718591, 0.9306459334511011, 0.8424802355113449, 0.7739144871152517, 0.6872688771534424, 0.8590561833388345, 0.6714384475466295, 0.6408669500407106, 0.5203550269219845, 0.2856853969697174, 0.857760555506807, 0.9307094503226838, 0.6787928880949093, 0.8308635255795866, 0.29271374211533296, 0.6769315553524353, 0.23831547366416572, 0.5895099457120908, 0.8994675076574448, 0.8893400405584444, 0.8456825404777587, 0.5399612081435882, 0.6188649121485582, 0.9281492942813848, 0.7611740601422801, 0.46550237374781617, 0.8896861436466836, 0.9038901015569306, 0.5044440900554997, 0.9215480939667524, 0.6930273792518707, 0.8723244804196287, 0.5624338775604165, 0.9226297661236537, 0.8469231754225917, 0.9430557295321259, 0.9097116306258912, 0.5988707702267543, 0.3813853072548755, 0.8843832309478876, 0.9006952500629406, 0.918975987201669, 0.18997930334445084, 0.8923106748541326, 0.8461388699436441, 0.5973439234355874, 0.9544642924744549, 0.91770416680597, 0.9177239854204658, 0.17584552180125673, 0.9240099144459667, 0.48524948024905407, 0.8889685222180134, 0.5785503824403398, 0.7511953459672914, 0.6887596776945688, 0.6717539058356753, 0.7168761391602206, 0.7134478068952186, 0.834626350903405, 0.5715867980362679, 0.6588392688727011, 0.9488572786900573, 0.8920529250761863, 0.8891353183282249, 0.707981940789761, 0.926348680038428, 0.631489487929038, 0.7443856388661001, 0.9260754381930228, 0.9544642924744549, 0.8497401318990601, 0.5604010177433062, 0.8036334301115304, 0.7898153537185114, 0.8491431337122072, 0.6570881560807702, 0.8389599143569951, 0.7944137576415592, 0.8132668978866627, 0.44714680104169846, 0.7978021044641371, 0.41921696608658454, 0.38876183891604754, 0.9248463736054193, 0.4277915265084825, 0.6345107008491314, 0.8008942533173764, 0.5087430598332189, 0.9414938992689892, 0.6922115882765215, 0.8296175750175913, 0.8593339228153332, 0.8975141534758351, 0.5977126281557783, 0.9279478536756302, 0.6485770817571253, 0.8905823996589662, 0.9332072841984264, 0.9432461110830079, 0.9410120781436498, 0.6339696776630096, 0.7120962557761497, 0.5841709037351369, 0.5928970840420333, 0.9006589732900512, 0.936371533648048, 0.6907852379101131, 0.7675780198071424, 0.9444587893431046, 0.4702336163336472, 0.8925536722101626, 0.8158978708906081, 0.822780392485108, 0.8037335327290217, 0.8382351003285965, 0.8941557358589171, 0.4796498334522667, 0.926348680038428, 0.6842118015950474, 0.6463580983468415, 0.8292048071278182, 0.5834426687867836, 0.8419845362148763, 0.2431563391580561, 0.7763142135369961, 0.9390550746437164, 0.7774903237071782, 0.8141232663130791, 0.9444089886680379, 0.430401459478284, 0.9192677156927759, 0.8427595869840984, 0.87120858451521, 0.5693182102579236, 0.820012080301976, 0.58719119911586, 0.42769376643096113, 0.3542595869275313, 0.89579938191327, 0.8743523014696554, 0.7820497043505815, 0.5279069501129625, 0.8869579700149332, 0.45488774279476296, 0.8514781135508903, 0.8278297091497892, 0.663749097381813, 0.5132851713944618, 0.4906566565015208, 0.6415219885510332, 0.6991293681294938, 0.8150539074042624, 0.5800669536763935, 0.9583771200922359, 0.7366090055976814, 0.5747817696023392, 0.5315376696882942, 0.8074446941396305, 0.9038901015569306, 0.9087015650331977, 0.6697291810323083, 0.5800669536763935, 0.8807270543114014, 0.5135845984304893, 0.9352791850238339, 0.36120709973337456, 0.6206709330576408, 0.906286252315459, 0.7937202818717513], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [0.42, 0.41, 0.41, 0.58, 0.51, 0.54, 0.57, 0.67, 0.5, 0.49, 1.17, 0.63, 0.4, 0.42, 0.43, 0.43, 0.6, 0.48, 0.5, 0.49, 0.45, 0.36, 0.6, 0.47, 0.81, 0.65, 0.5, 0.62, 0.5, 0.43, 0.56, 0.55, 0.55, 0.78, 0.44, 0.46, 0.36, 0.35, 0.63, 0.42, 0.48, 0.68, 0.46, 0.43, 0.5, 0.5, 0.47, 0.52, 0.64, 0.62, 0.57, 0.5, 0.38, 0.44, 0.6, 0.51, 0.43, 0.57, 0.52, 0.88, 0.57, 0.47, 0.52, 0.39, 0.48, 0.45, 0.6, 0.45, 0.64, 0.37, 0.32, 0.58, 0.46, 0.5, 0.38, 0.42, 0.38, 0.7, 0.58, 0.48, 0.5, 0.54, 0.47, 0.43, 0.62, 0.56, 0.44, 0.32, 0.29, 0.39, 0.58, 0.38, 0.66, 0.46, 0.44, 0.48, 0.4, 0.58, 0.48, 0.5, 0.47, 0.65, 0.64, 0.55, 0.53, 1.31, 0.43, 0.34, 0.57, 0.44, 0.62, 0.4, 0.56, 0.44, 0.64, 0.49, 0.5, 0.62, 0.57, 0.38, 0.46, 0.6, 0.51, 0.29, 0.49, 0.5, 0.67, 0.55, 0.59, 0.5, 0.28, 0.64, 0.4, 0.49, 0.49, 0.42, 0.35, 0.54, 0.45, 0.51, 0.53, 0.5, 0.34, 0.5, 0.48, 0.4, 0.66, 0.38, 0.56, 0.7, 0.52, 0.53, 0.42, 0.61, 0.39, 0.5, 0.95, 0.39, 0.39, 0.28, 0.36, 0.6, 0.57, 0.48, 0.39, 0.46, 0.48, 0.54, 0.57, 0.42, 0.51, 0.39, 0.49, 0.8, 0.67, 0.53, 0.47, 0.57, 0.59, 0.39, 0.49, 0.48, 0.5, 0.47, 0.46, 0.36, 0.59, 0.36, 0.52, 0.47, 0.44, 0.56, 0.6, 0.4, 0.54, 0.49, 0.54, 0.53, 0.68, 0.41, 0.71, 0.75, 0.75, 0.57, 0.73, 0.43, 0.39, 0.5, 0.58, 0.31, 0.42, 0.49, 0.44, 0.43, 0.56, 0.47, 0.53, 0.29, 0.48, 0.29, 0.47, 0.39, 0.6, 0.44, 0.38, 0.52, 0.38, 0.66, 0.51, 0.52, 0.43, 0.43, 0.44, 0.51, 0.66, 0.35, 0.53, 0.37, 0.61, 0.63, 0.71, 0.53, 0.52, 0.48, 0.39, 0.57, 0.55, 0.52, 0.39, 0.6, 0.67, 0.47, 0.55, 0.47, 0.51, 0.51, 0.79, 0.32, 0.58, 0.49, 0.41, 0.62, 0.38, 0.4, 0.43, 0.34, 0.6, 0.43, 0.97, 0.54, 0.43, 0.67, 0.55, 0.58, 0.45, 0.58, 0.48, 0.54, 0.38, 0.52, 0.52, 0.66, 0.49, 0.6, 0.35, 0.52, 0.64, 0.39, 0.39, 0.41, 0.62, 0.69, 0.37, 0.48, 0.48, 0.98, 0.52, 0.49, 0.46, 0.59, 0.73, 0.44, 0.53, 0.49, 0.53, 0.38, 0.61, 0.56, 1.05, 0.47, 0.4, 0.48, 0.66, 0.48, 0.99, 0.43, 0.51, 0.61, 0.56, 0.65, 0.63, 0.5, 0.44, 0.59, 0.46, 0.4, 0.84, 0.7, 0.51, 0.46, 0.5, 0.62, 0.51, 0.69, 0.45, 0.57, 0.45, 0.64, 0.4, 0.5, 0.46, 0.5, 0.51, 0.51, 0.51, 0.65, 0.71, 0.48, 0.47, 0.56, 0.35, 0.57, 0.64, 0.63, 0.66], \"xaxis\": \"x\", \"y\": [0.2802292104526322, 0.9455194119275858, 0.4978743212349556, 0.5289145624519528, 0.28439238707197784, 0.2033309570226689, 0.27345747478543325, 0.8322873304845451, 0.389055896812549, 0.3675472469853882, 0.5781933746273124, 0.7401955299744071, 0.44969671697605845, 0.4367887814338696, 0.31593955341667695, 0.3775624358859999, 0.19282181046294666, 0.048451763306065584, 0.6005928650583868, 0.032225376113695775, 0.427412413738938, 0.23973251442015217, 0.13890126550157303, 0.8613925272127, 0.329663916828638, 0.19359965390713213, 0.6827271716759634, 0.1960905505555538, 0.08135735686643118, 0.39737240301928484, 0.13902987396822816, 0.6514166433739288, 0.6994753721471061, 0.7140886736258081, 0.5021795028970708, 0.48743245558712556, 0.5731139673640956, 0.8820820642542792, 0.559972149724866, 0.5061565591493914, 0.5066810377847554, 0.833805652807593, 0.6979972163580744, 0.3177574231538272, 0.13068190592986567, 0.758876109553896, 0.5681062961269688, 0.715544821914063, 0.762062625203523, 0.4464438677531786, 0.20995974230910305, 0.5262622410710028, 0.39442669669188163, 0.2537324982988368, 0.6775437642744659, 0.23876321589577687, 0.6369158982934647, 0.38960060362966165, 0.6034323722874255, 0.7769991715799629, 0.15199748354041337, 0.5641412449951732, 0.7590466800561823, 0.5969347905931296, 0.1048362779837843, 0.7217824369593382, 0.2662339163773806, 0.16472378978351135, 0.37760124376932414, 0.7071736299639594, 0.3436862995931572, 0.8384434752264291, 0.3635333644877426, 0.7813188949129265, 0.7279369976219869, 0.5641098847382463, 0.3863964747623771, 0.9209913370067284, 0.1477144681640183, 0.8809374658555192, 0.6533168894759348, 0.8873477284758582, 0.3697306267878623, 0.28319023347825867, 0.5203701741750857, 0.5523747693308857, 0.6387521731780509, 0.3881380695009739, 0.8487896327149285, 0.4636606453307818, 0.8384434752264291, 0.558266603669778, 0.21657231888677728, 0.3635333644877426, 0.5512671313974766, 0.5051039398599867, 0.5827915753039158, 0.49441682850108926, 0.47309171914705017, 0.6262595591688196, 0.5508242483721094, 0.47332791509789995, 0.7117569366896692, 0.3933786516273859, 0.16465066549244003, 0.7490394132223248, 0.769261050002088, 0.7431932405995126, 0.3141000916210982, 0.723735045552473, 0.6484132891031948, 0.688519894019609, 0.40496704226994307, 0.5803736122960511, 0.6327801522745691, 0.45115706990411364, 0.37268733756108086, 0.9009693101135351, 0.06496389958099598, 0.44431713201158524, 0.39960831974332744, 0.8662156944598043, 0.31018081106061823, 0.5339551117365043, 0.33311273919547707, 0.400132762133902, 0.8528754522806217, 0.14419347879543085, 0.11672350429510901, 0.44556702529145975, 0.6160120899414699, 0.13766892845409207, 0.5517204028384314, 0.5232178919035022, 0.35483403305733974, 0.4900213704561591, 0.8854578072659228, 0.43084122675663034, 0.7601186327653665, 0.14072030431570776, 0.6186690618327106, 0.5245054232921349, 0.7326259458716644, 0.5690781983520095, 0.4018508815425063, 0.24877469563805235, 0.7952501197393639, 0.8766221356386195, 0.303451532996695, 0.5357745481647883, 0.7096524147827454, 0.20877177283968149, 0.8635610141758273, 0.46736762313881036, 0.6061151992073851, 0.113015272873705, 0.40446014603085867, 0.6332606063976143, 0.648705381890928, 0.42186952587750404, 0.8047913565308571, 0.3017058309841093, 0.38406990132164637, 0.33494193042999065, 0.19929939967121216, 0.8624919783238055, 0.528785836409086, 0.43084122675663034, 0.47042159929499583, 0.5061565591493914, 0.5759491569657543, 0.8468794444363914, 0.20342296359496542, 0.5170831534483544, 0.3666753044655067, 0.6131723001375537, 0.4410646109528086, 0.6903416342484309, 0.3866428492574258, 0.4636606453307818, 0.4525459302795702, 0.03199256040434073, 0.7029629492254846, 0.2433141614541866, 0.548755973819273, 0.3775060302547258, 0.06593060991448157, 0.8745624549148976, 0.22931948662359403, 0.27267688907931714, 0.589328430619086, 0.8007160756317941, 0.5525637789187225, 0.5008522318356121, 0.4556212410144909, 0.17391722008742402, 0.43574637053357784, 0.3237440077649342, 0.6071692164257629, 0.6925152430641841, 0.592675381607996, 0.43854150134957587, 0.43854150134957587, 0.42437112972565305, 0.8061118855433299, 0.35195592295594336, 0.7605370065149419, 0.38898578429124253, 0.67510953655807, 0.872979709380305, 0.710510994258769, 0.720290290780972, 0.4820787970895852, 0.42019280799979697, 0.4304380754474639, 0.25285023254778977, 0.3238056884730761, 0.39471961640683584, 0.09510031985475974, 0.367046376808582, 0.21500793651835448, 0.8705359023101334, 0.6100742529031461, 0.6226449432624995, 0.7279369976219869, 0.3643494054700089, 0.09992017521484964, 0.41475515148757036, 0.6462260464983366, 0.14102909592513518, 0.48949585696458414, 0.5239520436918008, 0.6084413884537807, 0.5655473856702703, 0.9517420512476797, 0.7489379515982664, 0.4647937384849751, 0.7915321263825208, 0.44112279258530757, 0.5734340256727429, 0.6604471727860799, 0.4845203185458914, 0.6968730453869196, 0.5315374962198609, 0.8685951485887234, 0.6242442748350044, 0.2912097196987059, 0.7725938221565348, 0.2067629769731588, 0.30221725334927335, 0.13129342562285412, 0.6467789443522378, 0.6994753721471061, 0.11825382206919556, 0.41022417118631593, 0.4882665226122541, 0.7732287086973071, 0.25374762405010176, 0.49441682850108926, 0.3723877205427743, 0.652330313245635, 0.43667799883041203, 0.5964718913578133, 0.55172276504346, 0.24113559934961917, 0.8243980268882987, 0.7263843594269437, 0.43535214809021755, 0.8721122798612579, 0.18723914490145582, 0.6486906676970999, 0.11576704656818047, 0.4328241622975616, 0.491481212420291, 0.5264345378086769, 0.33856526784971647, 0.2967410926251248, 0.581398831228375, 0.5973776665460488, 0.6195406102170065, 0.37782717658841725, 0.323061133240968, 0.17420808473594895, 0.19634770547538957, 0.46492234760650425, 0.49613167963272686, 0.5812209036149294, 0.6057291775435286, 0.63414717387345, 0.5702687187355167, 0.8604975146328253, 0.6309022132706124, 0.48732991249542923, 0.6887148870948692, 0.41581945293096145, 0.5706760596351739, 0.4831274653996314, 0.06684727567316755, 0.49090643211649887, 0.15191610726090596, 0.2711405311223577, 0.7653618545702112, 0.09266565137124261, 0.4554350627407873, 0.19698919164573708, 0.6930185080649685, 0.5227537922811563, 0.50434568709929, 0.7082092780767422, 0.46058046365566996, 0.6735723234187477, 0.4285936050615775, 0.323061133240968, 0.5168500865319015, 0.6161307914674419, 0.23456444218973552, 0.3192004782541023, 0.21968945907811915, 0.5028183230931117, 0.43371621376298963, 0.6744209213341115, 0.5940260419772637, 0.13783310426722128, 0.5136444387530009, 0.5508647999875032, 0.4955911012838212, 0.9814394195009358, 0.8260225289794664, 0.17965956338109995, 0.46844896472597397, 0.6048119589659149, 0.3289160319090978, 0.2454606394453749, 0.7497022835596558, 0.683485355417811, 0.20995974230910305, 0.23504578258460665, 0.37175956099497537, 0.4875530438829156, 0.24982584224249993, 0.6282829625348888, 0.4520795162158371, 0.8200372413039435, 0.12832513643528837, 0.5299630655130737, 0.29552777318700446, 0.24021937552346023, 0.5429028773737552, 0.6311869746243346, 0.4145977043912777, 0.39329840463575844, 0.39070335653410526, 0.4286990948130573, 0.846836560604146, 0.6880850122626078], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (curr)\", \"type\": \"scatter\", \"x\": [0.38, 0.44, 0.87, 0.39, 0.58, 0.33, 0.7, 0.38, 0.61, 0.59, 0.56, 0.52, 0.37, 0.53, 0.36, 0.41, 0.58, 0.44, 0.87, 0.33, 0.46, 0.5, 0.38, 0.58, 0.6, 0.33, 0.3, 0.54, 0.6, 0.49, 0.35, 0.49, 0.82, 0.41, 0.34, 0.31, 0.76, 0.49, 0.53, 0.53, 0.32, 0.5, 0.38, 0.41, 0.8, 0.74, 0.38, 0.57, 0.49, 0.72, 0.61, 0.67, 0.36, 0.25, 0.49, 0.75, 0.68, 0.79, 0.44, 1.33, 0.68, 0.38, 0.47, 0.36, 0.36, 0.42, 0.58, 0.62, 0.5, 0.8, 0.53, 0.39, 0.29, 0.51, 0.37, 0.42, 0.44, 0.45, 0.47, 0.61, 0.46, 0.52, 0.85, 0.68, 0.49, 0.78, 0.73, 0.3, 0.27, 0.49, 0.35, 0.33, 0.5, 0.4, 0.48, 0.58, 0.65, 0.43, 0.72, 0.77, 0.34, 0.5, 0.84, 0.43, 0.53, 0.62, 0.54, 0.35, 0.59, 0.63, 0.5, 0.38, 0.37, 0.51, 0.5, 0.93, 0.76, 0.56, 0.65, 0.71, 0.64, 0.99, 0.56, 0.42, 0.75, 0.74, 0.74, 0.62, 0.75, 0.57, 0.36, 0.88, 0.44, 0.56, 0.44, 0.51, 0.67, 0.7, 0.57, 0.5, 0.62, 0.49, 0.61, 0.48, 0.41, 0.6, 0.58, 0.77, 0.39, 0.47, 0.38, 0.68, 0.44, 0.36, 0.68, 0.53, 0.82, 0.73, 0.45, 0.48, 0.4, 0.78, 0.26, 0.49, 0.82, 0.36, 0.45, 0.55, 0.86, 0.39, 0.57, 0.32, 0.39, 0.66, 0.45, 0.49, 0.43, 0.42, 0.47, 0.77, 0.44, 0.41, 0.95, 0.76, 0.43, 0.82, 0.87, 0.37, 0.45, 0.75, 0.39, 0.43, 0.59, 0.48, 0.46, 0.58, 0.57, 0.38, 0.58, 0.64, 0.59, 0.56, 0.57, 0.4, 0.56, 0.63, 0.53, 0.85, 0.51, 0.78, 0.41, 0.33, 0.6, 0.6, 0.56, 0.65, 0.47, 0.44, 0.5, 0.49, 0.4, 0.55, 0.6, 0.53, 0.66, 0.58, 0.68, 0.48, 0.77, 0.48, 0.72, 0.44, 0.66, 0.47, 0.66, 0.82, 0.4, 0.54, 0.31, 0.47, 0.53, 0.46, 0.39, 0.57, 0.64, 0.87, 0.41, 0.5, 0.47, 0.7, 0.76, 0.3, 0.75, 0.41, 0.55, 0.35, 0.45, 0.58, 0.48, 0.73, 0.62, 0.57, 0.47, 0.35, 0.39, 0.48, 0.51, 0.43, 0.48, 0.43, 0.37, 0.43, 0.58, 0.65, 0.4, 0.7, 0.57, 0.44, 0.56, 0.76, 1.06, 0.51, 0.51, 0.49, 0.64, 0.63, 0.36, 0.52, 0.57, 0.43, 1.11, 0.63, 0.42, 0.47, 0.49, 0.46, 0.45, 0.42, 0.33, 0.44, 0.33, 0.75, 0.59, 0.38, 0.48, 0.85, 0.56, 0.54, 0.75, 0.47, 0.38, 0.6, 0.63, 0.5, 0.52, 0.63, 0.51, 0.5, 0.51, 0.48, 0.64, 0.44, 0.59, 0.36, 0.64, 0.39, 0.4, 0.77, 0.48, 0.73, 0.81, 0.36, 0.86, 0.53, 0.43, 0.38, 0.75, 0.41, 0.43, 0.46, 0.39, 0.52, 0.58, 0.84, 0.54, 0.45, 0.42, 0.5, 0.9, 0.34, 0.35, 0.52, 0.47, 0.36, 0.4, 0.82, 0.6, 0.38, 0.82, 0.72, 0.32, 0.59, 0.75, 0.35, 0.75, 0.43, 0.46, 0.5, 0.57, 0.69, 0.46, 0.53, 0.54, 0.54, 0.56, 0.49, 0.48, 0.37, 0.65, 0.46, 0.5, 0.55, 0.55, 0.48, 0.43, 0.62, 0.46, 0.44, 0.65, 0.44, 0.58, 0.44, 0.49, 0.64, 0.42, 0.62, 0.47, 0.53, 0.59, 0.45, 0.41, 0.31, 0.64, 0.5, 0.41, 0.42, 0.46, 0.36, 0.39, 0.36, 0.7, 0.49, 0.68, 0.46, 0.5, 0.7, 0.36, 0.65, 0.6, 0.49, 0.56, 0.98, 0.77, 0.6, 0.7, 0.59, 0.6, 0.33, 0.61, 0.4, 0.34, 0.41, 0.53, 0.51, 0.71, 0.65, 0.74, 0.48, 0.7, 0.52, 0.49, 0.84, 0.32, 0.54, 0.33, 0.66, 0.75, 0.4, 0.78, 0.47, 0.37, 0.54, 0.72, 0.54, 0.43, 0.53, 0.56, 0.55, 0.43, 0.49, 0.59, 0.5, 0.42, 0.41, 0.38, 0.65, 0.27, 0.54, 0.4, 0.57, 0.45, 0.3, 0.67, 0.43, 0.41, 0.55, 0.43, 0.6, 0.35, 0.42, 0.65, 0.38, 0.77, 0.76, 0.52, 0.32, 0.32, 0.37, 0.43, 0.68, 0.57, 0.41, 0.77, 0.81, 0.36, 0.75, 0.49, 0.92, 0.52, 0.76, 0.64, 0.5, 0.49, 0.4, 0.5, 0.46, 0.44, 0.59, 0.57, 0.5, 0.82, 0.4, 0.4, 0.45, 0.32, 0.62, 0.64, 0.82, 0.43, 0.8, 0.3, 0.9, 0.38, 0.51, 0.95, 0.59, 0.72, 0.62, 0.36, 0.45, 0.6, 0.37, 0.48, 0.31, 0.81, 0.45, 0.74, 0.37, 0.6, 0.6, 0.55, 0.56, 0.87, 0.51, 0.33, 0.38, 0.72, 0.79, 0.46, 0.49, 0.66, 0.44, 0.52, 0.58, 0.55, 0.37, 0.53, 0.41, 0.42, 0.39, 0.35, 0.65, 0.44, 0.6, 0.51, 0.74, 0.37, 0.39, 0.38, 0.42, 0.69, 0.58, 0.59, 0.5, 0.39, 0.68, 0.48, 0.32, 0.42, 0.56, 0.43, 0.52, 0.34, 0.38, 0.53, 0.64, 0.6, 0.59, 0.38, 0.65, 0.63, 0.5, 0.54, 0.63, 0.58, 0.75, 0.73, 0.79, 0.46, 0.31, 0.52, 0.44, 0.45, 0.39, 0.68, 0.58, 0.75, 0.57, 0.51, 0.68, 0.36, 0.56, 0.43, 0.52, 0.56, 0.44, 0.37, 0.57, 0.6, 0.47, 0.46, 0.37, 0.45, 0.36, 0.55, 0.48, 0.39, 0.35, 0.63, 0.71, 0.59, 0.8, 0.37, 0.46, 0.47, 0.54, 0.33, 0.64, 0.52, 0.51, 0.52, 0.52, 0.66, 0.55, 0.53, 0.52, 0.59, 0.54], \"xaxis\": \"x2\", \"y\": [0.33396714643252134, 0.5044440900554997, 0.8874896900044845, 0.4686759077780351, 0.23831547366416572, 0.571181601185031, 0.7785327680196316, 0.7290551099174598, 0.9581131370131553, 0.6801000322064107, 0.413367674560271, 0.6667140739211237, 0.9108229754863395, 0.9275086157065797, 0.9186958597750785, 0.7191871442695774, 0.8184457509658746, 0.8597940676688322, 0.7947045908306632, 0.8244149680645384, 0.42771531534877594, 0.5315376696882942, 0.7136291946100958, 0.5510697799054304, 0.6393262665313312, 0.9016582766249417, 0.8560880110261746, 0.8947361144883382, 0.9102326114023062, 0.840723585394272, 0.9264645566705582, 0.5105903360131552, 0.752648770317166, 0.5855954083225455, 0.8989214048388485, 0.5190750352404293, 0.9560713253502463, 0.7273157243430202, 0.9279672131348602, 0.640103147954212, 0.9158977434209615, 0.9035955072010529, 0.7140955379655831, 0.233508355491505, 0.7280578325574358, 0.8810827811902006, 0.3966129217085586, 0.15541760955422754, 0.5851621750323275, 0.9046111951917862, 0.4177213302712193, 0.7993763114768937, 0.6978409661933959, 0.6473373667551029, 0.770784382977056, 0.6500641275496193, 0.548949563093737, 0.9803199442553986, 0.6150775052067382, 0.391333092160729, 0.6966682278280982, 0.9426748402861506, 0.9170092977635526, 0.844625652038695, 0.5621782696252592, 0.8935808323282117, 0.6792214086077275, 0.6719996755401956, 0.5252591274442797, 0.7277045758687855, 0.4685752957996948, 0.8616549355667619, 0.347491516391863, 0.8224130863808733, 0.5340790568488665, 0.6711667658766297, 0.5277539611022016, 0.7226430813715845, 0.8140972745487615, 0.3280236940194876, 0.9543080196225542, 0.7752655593026647, 0.9223925066666061, 0.8588031784191832, 0.6345107008491314, 0.9393010047953068, 0.7897067132703484, 0.8608062836413887, 0.8367885032124018, 0.38555642305179116, 0.8611944449682004, 0.9172341012895443, 0.9206892306522243, 0.9500505925695213, 0.537798347971205, 0.9173482789702866, 0.44454351342386716, 0.8909704850569525, 0.7351932580165473, 0.6818328744935735, 0.7981559962965634, 0.7626532952948841, 0.807353254900461, 0.964411205143099, 0.4685752957996948, 0.6986526320119215, 0.1956969407137045, 0.9233481403380283, 0.8218375601976645, 0.8536269727611236, 0.5637680470866036, 0.42267134533232753, 0.93003590801509, 0.9364808605729722, 0.8816060831574614, 0.9663102962713933, 0.8345570787709832, 0.4997893986747249, 0.7921603237806832, 0.5586815647381762, 0.8622246464681924, 0.9828719612298703, 0.909295720392338, 0.9476267884443668, 0.5395521774612226, 0.901360886913609, 0.39410444510430487, 0.9262213132200262, 0.6627387433216217, 0.9629433821448677, 0.9614311452267452, 0.9802968012486629, 0.933760787013923, 0.34432718187202205, 0.63596173557573, 0.624364378916488, 0.7417789548241253, 0.7300918276682445, 0.6968315453320488, 0.7840233885688647, 0.8958841271622066, 0.5417426694559925, 0.7102579146160282, 0.6004345411549624, 0.515920701757342, 0.7587882454650442, 0.5029588531082266, 0.6887596776945688, 0.8642849605932809, 0.6469572639767995, 0.8103639651534781, 0.939764354405301, 0.694136577696587, 0.6593725303534554, 0.9646797005081557, 0.7979900311745153, 0.792123904710467, 0.8869579700149332, 0.7351250317969437, 0.5332560471205093, 0.9406873315653421, 0.39362685027924615, 0.9466602521798594, 0.8394325033041952, 0.6633442657978572, 0.8126408700417265, 0.7332457619716184, 0.08024070404520958, 0.8667774471450977, 0.6466814331404849, 0.912366876100516, 0.656670904734599, 0.8701678467707724, 0.8875925797813499, 0.9658725076002231, 0.7668332861852056, 0.8604440887473094, 0.934384507524058, 0.9605946056867319, 0.951253157591183, 0.5749289095213865, 0.6279243005170476, 0.7937202818717513, 0.7665301650725991, 0.700127941221274, 0.8531107444728586, 0.7947045908306632, 0.8870566665876504, 0.5476228787844645, 0.8410401833568673, 0.8736671065238262, 0.6519898659949606, 0.936943112068646, 0.9077719201719568, 0.8071889556778997, 0.8815615400732472, 0.8935313268029127, 0.8782891297971865, 0.5029588531082266, 0.5797201450332624, 0.9416775458320723, 0.5958140198486584, 0.2485157288688957, 0.932021424688801, 0.8531502837407814, 0.6344194678828672, 0.632587077283238, 0.9121448358615357, 0.5776545535910985, 0.9052765174806566, 0.8580390107418799, 0.8998644401112552, 0.6784536879503494, 0.9458342431661766, 0.21387363850783603, 0.9530348339880965, 0.7307391114165022, 0.7187682731289255, 0.6905635603269331, 0.9569274903702625, 0.9287384091375525, 0.3856984054091925, 0.504413920551941, 0.5389739198483336, 0.5921068831639978, 0.10702848140489757, 0.8772993497727819, 0.6361944011057532, 0.8952999713010865, 0.7069578609115064, 0.10632960186243966, 0.6465592619811017, 0.9116333268133815, 0.9210441535829985, 0.9483358221641291, 0.5800224234700003, 0.896951343689222, 0.8958659323404018, 0.8896861436466836, 0.7763142135369961, 0.778627444633172, 0.9274605647284293, 0.9167924025380936, 0.6422094408272838, 0.6363725079258666, 0.8694129796739031, 0.5693182102579236, 0.5315376696882942, 0.6814536952243052, 0.30089534057709466, 0.6689448970920832, 0.6419522618821227, 0.6500641275496193, 0.8221968069187356, 0.9285763346020383, 0.8495153837633861, 0.7135666997345446, 0.8850789772017983, 0.9128367188568884, 0.8709442503982084, 0.44714680104169846, 0.7147831401969469, 0.6814536952243052, 0.5823319261018008, 0.7718122970862826, 0.8925058444773368, 0.9249991097277733, 0.7849066379312727, 0.5120166815330335, 0.7863291630268572, 0.8171821177205619, 0.8878235148823457, 0.9813953955585096, 0.5009899161211654, 0.6787020040856314, 0.2747106808400709, 0.6998114428322438, 0.7191783799678735, 0.7566715075843347, 0.7741630673610131, 0.692871858980435, 0.8706970297938403, 0.9226518689226377, 0.619213859232465, 0.9620625840847012, 0.8161066853745392, 0.7984578805051198, 0.8987836568806694, 0.27900511725120763, 0.747868261422589, 0.8013372150606806, 0.4430395412241901, 0.8082746512504794, 0.9248395818955686, 0.8132668978866627, 0.7926355964369082, 0.7243101498981422, 0.8251498778038484, 0.865753667016409, 0.8784859927081519, 0.9613966942665844, 0.8380103992838959, 0.9376908870460701, 0.8505645904112248, 0.5317253080143199, 0.8756470416862959, 0.8823120896825394, 0.8920529250761863, 0.9565288857220365, 0.92576324319171, 0.8397457208604353, 0.8008835764985612, 0.7620555647282774, 0.6333567796033132, 0.8986985644274655, 0.8289197139212982, 0.38568054861828666, 0.4358764146033148, 0.7013568331933456, 0.5524769805317635, 0.8654015550049637, 0.9625385348003681, 0.4997035751430624, 0.5940434106189647, 0.29640429037896177, 0.9370396801623051, 0.7496358493500708, 0.8521916566704996, 0.7519935213994349, 0.8956127660014477, 0.7563308848917781, 0.5425355780301907, 0.1652985164032473, 0.5777375433929663, 0.5926841497777402, 0.5247451599628447, 0.6215406511606532, 0.646742228322253, 0.5236567091352762, 0.8105889943537302, 0.7614647275399787, 0.7272264480694343, 0.44438282424164377, 0.8051848688934031, 0.253979247575754, 0.8737269176380216, 0.7884186533408385, 0.5226162157005312, 0.7776146375974927, 0.8021344726910251, 0.6794204065079696, 0.8398669626756513, 0.3743394998756179, 0.6593725303534554, 0.41008410759983227, 0.8726624594592295, 0.31336232876890546, 0.6187135046228962, 0.9208146539756937, 0.8948907807194619, 0.9475948217130945, 0.7098971478357265, 0.41970311630379203, 0.5524505095188592, 0.6689295490636696, 0.39534528644804523, 0.6686700461744643, 0.6608417181144597, 0.6289006219381473, 0.8112353209803558, 0.9675531845963172, 0.3468688843876404, 0.8171815196180959, 0.9315945487332388, 0.7612383340144859, 0.43979370974717685, 0.9452166580978265, 0.810349906376065, 0.4979189466877109, 0.9054024939516333, 0.7506263221664519, 0.8595966107872783, 0.9041757536760852, 0.5120166815330335, 0.9246344940597735, 0.622364539475366, 0.7975959936185795, 0.9376528402833735, 0.8270495791839716, 0.7463426393970082, 0.8508295060861325, 0.5277539611022016, 0.7926521549058593, 0.8343380415579561, 0.7973631232158779, 0.5423298306356671, 0.6253812669856891, 0.9342151247863544, 0.9064095870896521, 0.8428584418618921, 0.5680191878381406, 0.8230633503438987, 0.857993972512287, 0.8312116035859974, 0.8886868130574391, 0.5695902702544526, 0.8750573328895943, 0.47134086624147714, 0.6082670858563528, 0.8571520978358925, 0.7006810412396262, 0.6001343818465046, 0.8680196363335714, 0.7833148206731655, 0.835330250744176, 0.6883000602161935, 0.4297997702781997, 0.7132181587745201, 0.941909753873568, 0.9298379484442667, 0.8950633078112005, 0.9652574497835966, 0.8593048115498744, 0.23022113319019433, 0.5548683876071567, 0.8789570823277312, 0.7176343272433334, 0.7135972690872326, 0.900955402304434, 0.89110615578316, 0.8021344726910251, 0.36734125225010755, 0.9233813125795639, 0.9269988231022361, 0.6021478506882372, 0.27064660283581765, 0.7595966254948197, 0.5317253080143199, 0.9626288904553877, 0.518871521713375, 0.4244151934213653, 0.8784852709235653, 0.667697582798242, 0.6791650855490978, 0.8659372985570389, 0.5217980090164113, 0.9757802673562255, 0.20769640873195563, 0.6900575067285889, 0.15051833553221247, 0.8476988333501053, 0.12043274000614122, 0.6546311715671466, 0.412102187638673, 0.6339696776630096, 0.6925917751558638, 0.8074446941396305, 0.8417042066658985, 0.4702054036006336, 0.8107456318417504, 0.934253622333564, 0.9671353887875448, 0.3776875782453083, 0.5133306968464912, 0.8279918435672958, 0.7295730380004212, 0.8398957027397556, 0.7470826509089123, 0.7722124156410631, 0.3944809481034696, 0.5801047158883857, 0.7134138458261836, 0.8265590446981121, 0.5836238058504062, 0.7538957359152121, 0.9708936701567454, 0.41507295289487073, 0.9039211350062085, 0.5109703825452502, 0.8880660412534, 0.6332514250278477, 0.703270618172154, 0.863031725372896, 0.9601349291832292, 0.5845797646527732, 0.8357575010967041, 0.9584406458449958, 0.8733333206292072, 0.4740801794177068, 0.5787650908025566, 0.38525623454815555, 0.5715075300165849, 0.951253157591183, 0.831291834366621, 0.6482062646591596, 0.5447536045265621, 0.8456825404777587, 0.5358725178581014, 0.8893400405584444, 0.5955893395860203, 0.9408369636189147, 0.7580589814818564, 0.4244151934213653, 0.7636885291754726, 0.9532052815091139, 0.6686700461744643, 0.39683939049776734, 0.8309978518015588, 0.06774730328187532, 0.8934061610794648, 0.9459413258233057, 0.8507977517004935, 0.9694554821790147, 0.8640493534313302, 0.8409166048571896, 0.9059760843724536, 0.7278052027863667, 0.8952246802917138, 0.39534528644804523, 0.9558702864115934, 0.9178754126151818, 0.7504628435478695, 0.7568870052952757, 0.32046258648166903, 0.9712495894387816, 0.7125870341029702, 0.8286889773580812, 0.929575727770858, 0.8422483936479932, 0.60065365322741, 0.5775074082600717, 0.7505976846167132, 0.5317253080143199, 0.9590110623565244, 0.9651712957082627, 0.7333643603414158, 0.7757825668725274, 0.8928390517037824, 0.2578168736401774, 0.5355488836719776, 0.8408692583280314, 0.7849780542174357, 0.8711681462620556, 0.8447990405440073, 0.9571933326515756, 0.9307123551507692, 0.6421242495412457, 0.9239207054420927, 0.9336219461922934, 0.4244151934213653, 0.5673643045526261, 0.8301442064454496, 0.528471943574542, 0.8835542071774324, 0.8820947700128993, 0.4561713647735051, 0.584381944856391, 0.9493936477483658, 0.7816316980556022, 0.7770145472448273, 0.8495153837633861, 0.8318035560268552, 0.5220388622338656, 0.8589980209217414, 0.21216021099657945, 0.8782303617207965, 0.901850575196968, 0.7683760396387002, 0.9559989503713009, 0.938411491366706, 0.7225398931917507, 0.5918361617892179, 0.8596378534897678, 0.8816239240572568, 0.9296844522785247, 0.8299758417251202, 0.7538846798551382, 0.931253582726863, 0.6902425303942638, 0.9299571155275668, 0.35461708236434614, 0.6119587629530028, 0.8979450471026776, 0.8782891297971865, 0.6144930729026484, 0.5601837238662909, 0.4230258756549153, 0.5115702372514986, 0.6133200318312215, 0.8287048127179734, 0.42887934024879554, 0.5543929044930882, 0.5414149972460248, 0.7453725251924848, 0.6522898344923613, 0.6445138145159856, 0.9212190995841192, 0.6991293681294938, 0.9188224881967051, 0.9444881948020799, 0.8399825546316605, 0.6440269003431431, 0.45260210695563535, 0.6678228102737954, 0.8535669746933884, 0.23469888428232324, 0.7581156815660375, 0.8329520097124233, 0.5886389680190937, 0.4250130050586104, 0.290761161529129, 0.9065968169685268, 0.39757013049667705, 0.9584529405260903, 0.24804178200132845, 0.8400605958344816, 0.9562762484868867, 0.5923100188758571, 0.5355488836719776, 0.6866862751474886, 0.753715093249364, 0.9302702282582556, 0.8405005145861136, 0.7758456574858743, 0.8270123797965384, 0.9270997487744173, 0.8779999285967196, 0.6350604679157676, 0.9057987369792326, 0.9732730617650076, 0.28007269673131574, 0.5393237551960537, 0.9509318156255189, 0.8055358405733448, 0.8512314640165554, 0.6752183046546253, 0.9766791413071304, 0.26893819095773785, 0.5105552073939665, 0.7964242570425004, 0.9159462749375985, 0.46312559485344046, 0.7889853219989779, 0.5331772070153998, 0.6250130361556073, 0.5340700079782073, 0.8981158701031157, 0.8424802355113449], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [0.78, 0.48, 0.33, 0.45, 0.47, 0.5, 0.51, 0.54, 0.67, 0.57, 0.49, 0.5, 0.52, 0.37, 0.57, 0.48, 0.38, 0.61, 0.81, 0.28, 0.72, 0.46, 0.49, 0.51, 0.66, 0.38, 0.52, 0.49, 0.4, 0.53, 0.44, 0.54, 0.46, 0.45, 0.51, 0.44, 0.48, 0.58, 0.41, 0.55, 0.38, 0.43, 0.81, 0.45, 0.41, 0.57, 0.61, 0.53, 0.5, 0.52, 0.7, 0.39, 0.34, 0.58, 0.49, 0.67, 0.65, 0.74, 0.35, 0.54, 0.74, 0.64, 0.47, 0.91, 0.47, 0.64, 1.34, 0.56, 0.56, 0.48, 0.69, 0.4, 0.46, 0.47, 0.37, 0.53, 0.52, 0.43, 0.46, 0.61, 0.39, 0.49, 0.42, 0.55, 0.37, 0.48, 0.44, 0.75, 0.42, 0.8, 0.34, 0.38, 0.7, 0.63, 0.73, 0.4, 0.34, 0.93, 0.46, 0.5, 0.43, 0.43, 0.48, 0.52, 0.46, 0.54, 0.7, 0.45, 0.41, 0.64, 0.46, 0.44, 0.75, 0.54, 0.46, 0.48, 0.67, 0.49, 0.48, 0.52, 0.37, 0.46, 0.6, 0.48, 0.54, 0.77, 0.48, 0.55, 0.54, 0.65, 0.4, 0.56, 0.63, 0.33, 0.48, 0.5, 0.7, 0.55, 0.4, 0.51, 0.42, 0.37, 0.31, 0.52, 0.63, 0.49, 0.52, 0.56, 0.54, 0.42, 0.34, 0.59, 0.72, 0.38, 0.52, 0.35, 0.4, 0.51, 0.46, 0.56, 0.57, 0.56, 0.68, 0.48, 0.5, 0.5, 0.38, 0.49, 0.38, 0.46, 0.6, 0.49, 0.38, 0.42, 0.58, 0.35, 0.31, 0.53, 0.45, 0.37, 0.39, 0.44, 0.61, 0.38, 0.52, 0.42, 0.4, 0.53, 0.59, 0.52, 0.57, 0.58, 0.5, 0.65, 0.49, 0.47, 0.46, 0.48, 0.78, 0.44, 0.52, 0.46, 0.45, 0.69, 0.3, 0.76, 0.46, 0.78, 0.33, 0.45, 0.61, 0.52, 0.64, 0.35, 0.47, 0.37, 0.57, 0.4, 0.5, 0.39, 0.46, 0.43, 0.47, 0.46, 0.45, 0.45, 0.64, 0.59, 0.39, 0.4, 0.51, 0.7, 0.37, 0.32, 0.82, 0.47, 0.45, 0.59, 0.63, 0.55, 0.72, 0.8, 0.52, 0.41, 0.5, 0.72, 0.88, 0.45, 0.52, 0.42, 0.64, 0.45, 0.42, 0.44, 0.44, 0.41, 0.41, 0.6, 0.58, 0.71, 0.65, 0.53, 0.68, 0.68, 0.49, 0.45, 0.56, 0.73, 0.44, 0.48, 0.5, 0.72, 0.41, 0.45, 0.53, 0.55, 0.68, 0.6, 0.54, 0.88, 0.53, 0.48, 0.38, 0.43, 0.88, 0.44, 0.39, 0.46, 0.28, 0.58, 0.5, 0.58, 0.52, 0.54, 0.58, 0.65, 0.42, 0.37, 0.51, 0.58, 0.46, 0.61, 0.7, 0.63, 0.5, 0.29, 0.53, 0.35, 0.58, 0.49, 0.58, 0.63, 0.62, 0.39, 0.56, 0.44, 0.46, 0.48, 0.64, 0.38, 0.61, 0.58, 0.5, 0.76, 0.52, 0.4, 0.51, 0.63, 0.48, 0.46, 0.56, 0.45, 0.5, 0.53, 0.55, 0.51, 0.51, 0.39, 0.37, 0.45, 0.45, 0.58, 0.6, 0.48, 0.63, 0.73, 0.49, 0.78, 0.37, 0.76, 0.56, 0.49], \"xaxis\": \"x2\", \"y\": [0.8142007211296887, 0.07257977436397642, 0.7430932382113554, 0.8214862427787604, 0.5698848321031316, 0.6048119589659149, 0.6466669219762841, 0.14510080060429495, 0.2250304680670007, 0.28492472637839966, 0.42061632734231896, 0.8281252124183194, 0.49622399336621903, 0.3482895521074759, 0.4678833354511545, 0.5708968386647719, 0.37048677721847617, 0.553632248395139, 0.8702137350251022, 0.42186952587750404, 0.8696774950675754, 0.5410576963494411, 0.3971326977900686, 0.3275001196198921, 0.9448289227093116, 0.7109941475090589, 0.41925580570138304, 0.3675472469853882, 0.6721911818800557, 0.5562207270314473, 0.5262426608517637, 0.3244609607385458, 0.15056615442564347, 0.15676979724311627, 0.6037730696030339, 0.6342511279653397, 0.021947035536558718, 0.32429164429335744, 0.5678746850743716, 0.3571680467137555, 0.7755534309390314, 0.3240287891037917, 0.699424662214302, 0.5151532452376618, 0.7564675819717819, 0.38343591026479057, 0.19811005648518398, 0.3168419703358067, 0.5315947262677626, 0.9269044449273315, 0.8260225289794664, 0.451791899378283, 0.830516920403184, 0.47128602930186, 0.19027823806377472, 0.5181346713949518, 0.29552777318700446, 0.45414400334446664, 0.39329840463575844, 0.42327932510626076, 0.45838907164509224, 0.2233864252642039, 0.3628419195926303, 0.6709353200988277, 0.46058046365566996, 0.25551237833043455, 0.7234147543269824, 0.1481282262733752, 0.314935793994079, 0.20050531530561894, 0.37453315488553635, 0.701015529968035, 0.6343341418527783, 0.1739320900588749, 0.734996253073231, 0.8172229478314255, 0.3598554146739685, 0.7121055211356295, 0.2620604909731644, 0.3421138035730516, 0.6951268813066005, 0.35208221297891723, 0.452099210446082, 0.18907620085798427, 0.5444201651108793, 0.6484058972837882, 0.3258186925596978, 0.5963383680780668, 0.6202666247822538, 0.576738593946626, 0.5054992484109841, 0.2972245631729925, 0.6844333356791464, 0.42629475072919953, 0.4405153833121037, 0.01207867704715336, 0.7609288944606691, 0.23951123982998349, 0.09310514674080905, 0.5084920166510624, 0.33067609257366243, 0.36481899584296196, 0.5708968386647719, 0.3194802059637459, 0.14207297841267416, 0.5776897120055972, 0.2026163425795633, 0.37909000048748537, 0.38206764842015895, 0.41324683104354176, 0.17826143731067332, 0.42339414872454434, 0.39148091864802853, 0.3511350413575442, 0.8053393751847749, 0.5937005322868365, 0.6849942580153355, 0.38930033076762494, 0.5168500865319015, 0.5699073288866824, 0.5376087249833421, 0.8185832461647057, 0.25950508036415604, 0.20394483716883388, 0.3303044530853749, 0.2528102968078532, 0.8477719856767125, 0.5217124250004609, 0.3303044530853749, 0.5382885532339231, 0.9625763866028243, 0.6536174904341296, 0.42629475072919953, 0.6458781618432388, 0.46574001023909845, 0.37268733756108086, 0.8180085473348132, 0.35493594975273335, 0.2423640089427935, 0.3636330633241046, 0.6421622311157122, 0.5444201651108793, 0.7396308412796291, 0.9036153464846048, 0.21101569987323432, 0.6004024464464508, 0.7595861882737439, 0.486549602332862, 0.2379839758891197, 0.5147825233229498, 0.2065932277190248, 0.4342628292980428, 0.5940848250235929, 0.4857193175270624, 0.5332610244722983, 0.5402196969638672, 0.8578846895389459, 0.5290225674595067, 0.6074669506688956, 0.1847839155105034, 0.3581391437324269, 0.4304380754474639, 0.8410120374942113, 0.5810086483513661, 0.19026233744636453, 0.7223494520380469, 0.8589928738613049, 0.8374625942163022, 0.781203852328267, 0.73983195178881, 0.41156537259256004, 0.7482873396984137, 0.44431713201158524, 0.7113673874393347, 0.49869552495399233, 0.7627102864663872, 0.37193390769028617, 0.37187810520956766, 0.3773291605703562, 0.8719651627687759, 0.6218762459828849, 0.3781393537983126, 0.553632248395139, 0.47624084907999176, 0.774399353278846, 0.5840424935194366, 0.5601025471409736, 0.6186690618327106, 0.620611700356168, 0.5755798886129706, 0.15047650536569443, 0.5530049338021776, 0.6597439619439023, 0.8300222117931148, 0.3490158529243493, 0.4410646109528086, 0.5067909967309752, 0.5851482063434866, 0.7149827463187939, 0.4849259975950144, 0.2094210588097294, 0.33399024531412796, 0.4083143545243069, 0.7497022835596558, 0.7817929239213606, 0.7637421953724776, 0.3825655414920891, 0.6611482494098961, 0.19022241257108333, 0.44972084577511023, 0.5476732603321269, 0.4831274653996314, 0.5077048340566679, 0.7289504589448288, 0.4379810490617926, 0.8017221455714771, 0.6434673631716396, 0.5059779734745421, 0.6065367192264559, 0.650368705032214, 0.34567471266024347, 0.39561589000187136, 0.3427787545601037, 0.4676404271158623, 0.5332283386400669, 0.4519108142444285, 0.40662831629925006, 0.42305576187259053, 0.22032895172816622, 0.5278715769330472, 0.43679486629948455, 0.743933429392776, 0.5269515041023835, 0.5008800654866953, 0.214168174561682, 0.44879088851457377, 0.683485355417811, 0.807753104897186, 0.42629475072919953, 0.8502951424821861, 0.17421175568219957, 0.25491371883486935, 0.7595861882737439, 0.6571724132942184, 0.7813188949129265, 0.5626906653340306, 0.8674288259883418, 0.6600514650598344, 0.4827749661719035, 0.5456147119159479, 0.39827550056677263, 0.27323823737433794, 0.695896529362927, 0.5048820477254727, 0.5422349097465021, 0.5610936746718964, 0.6571724132942184, 0.3088751107498249, 0.45428761266464013, 0.6604471727860799, 0.43371621376298963, 0.6171893197168647, 0.8100511550343341, 0.8100511550343341, 0.605832578461134, 0.5526475584669951, 0.4275055171336787, 0.8734720021260204, 0.8508295378350301, 0.5807723706867254, 0.8272749548927728, 0.2670652478909882, 0.7020144194675465, 0.4615566916191992, 0.7055847950248242, 0.43389869234556755, 0.6071692164257629, 0.3496825637352313, 0.23676491619791426, 0.7057755976874825, 0.15539001443149586, 0.6187538615870153, 0.8735882828904331, 0.30049486749739024, 0.23191705420611952, 0.8913917397916864, 0.4977157214618499, 0.16961113509580228, 0.8485494795219795, 0.4760032757956232, 0.5053843099270294, 0.2676015269871764, 0.3627664421236291, 0.15146266807038725, 0.7898179638281774, 0.6145296307645981, 0.3790380236797623, 0.3003532640340299, 0.6086112016774773, 0.39906793889171593, 0.8185832461647057, 0.6715802865662828, 0.8260225289794664, 0.6056902064850618, 0.400132762133902, 0.39471961640683584, 0.6449859309106076, 0.5637152910565628, 0.39949420960438964, 0.5490401551410112, 0.4398875418860128, 0.30916577334906253, 0.7093303227687476, 0.4562508424819209, 0.40444044759428516, 0.5773483646962835, 0.447777692034652, 0.4961542215384683, 0.32474312180562226, 0.21192693199409943, 0.9056903490933487, 0.5013816399998683, 0.758876109553896, 0.6364928148646596, 0.2952804752502578, 0.4748951900520853, 0.43679486629948455, 0.5479962315186364, 0.4728142838839701, 0.6343341418527783, 0.12248807650217919, 0.5052525886146573, 0.8281252124183194, 0.8930081609652758, 0.36283726088930296, 0.8098196742550625, 0.656477404357746, 0.193885049884708, 0.5269515041023835, 0.49858469647139786, 0.32780472036158087, 0.24927512797396847, 0.6148718578314069, 0.10691527318901187, 0.136775438340409, 0.8489192718114075, 0.2600203086082801, 0.8142007211296887, 0.5269515041023835, 0.7966615933629455, 0.5633234794197017, 0.767479452333631], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"sulphates\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"sulphates\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}}, {\"id\": \"sulphates_bad\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (ref)\", \"type\": \"scatter\", \"x\": [0.42, 0.41, 0.41, 0.58, 0.51, 0.54, 0.57, 0.67, 0.5, 0.49, 1.17, 0.63, 0.4, 0.42, 0.43, 0.43, 0.6, 0.48, 0.5, 0.49, 0.45, 0.36, 0.6, 0.47, 0.81, 0.65, 0.5, 0.62, 0.5, 0.43, 0.56, 0.55, 0.55, 0.78, 0.44, 0.46, 0.36, 0.35, 0.63, 0.42, 0.48, 0.68, 0.46, 0.43, 0.5, 0.5, 0.47, 0.52, 0.64, 0.62, 0.57, 0.5, 0.38, 0.44, 0.6, 0.51, 0.43, 0.57, 0.52, 0.88, 0.57, 0.47, 0.52, 0.39, 0.48, 0.45, 0.6, 0.45, 0.64, 0.37, 0.32, 0.58, 0.46, 0.5, 0.38, 0.42, 0.38, 0.7, 0.58, 0.48, 0.5, 0.54, 0.47, 0.43, 0.62, 0.56, 0.44, 0.32, 0.29, 0.39, 0.58, 0.38, 0.66, 0.46, 0.44, 0.48, 0.4, 0.58, 0.48, 0.5, 0.47, 0.65, 0.64, 0.55, 0.53, 1.31, 0.43, 0.34, 0.57, 0.44, 0.62, 0.4, 0.56, 0.44, 0.64, 0.49, 0.5, 0.62, 0.57, 0.38, 0.46, 0.6, 0.51, 0.29, 0.49, 0.5, 0.67, 0.55, 0.59, 0.5, 0.28, 0.64, 0.4, 0.49, 0.49, 0.42, 0.35, 0.54, 0.45, 0.51, 0.53, 0.5, 0.34, 0.5, 0.48, 0.4, 0.66, 0.38, 0.56, 0.7, 0.52, 0.53, 0.42, 0.61, 0.39, 0.5, 0.95, 0.39, 0.39, 0.28, 0.36, 0.6, 0.57, 0.48, 0.39, 0.46, 0.48, 0.54, 0.57, 0.42, 0.51, 0.39, 0.49, 0.8, 0.67, 0.53, 0.47, 0.57, 0.59, 0.39, 0.49, 0.48, 0.5, 0.47, 0.46, 0.36, 0.59, 0.36, 0.52, 0.47, 0.44, 0.56, 0.6, 0.4, 0.54, 0.49, 0.54, 0.53, 0.68, 0.41, 0.71, 0.75, 0.75, 0.57, 0.73, 0.43, 0.39, 0.5, 0.58, 0.31, 0.42, 0.49, 0.44, 0.43, 0.56, 0.47, 0.53, 0.29, 0.48, 0.29, 0.47, 0.39, 0.6, 0.44, 0.38, 0.52, 0.38, 0.66, 0.51, 0.52, 0.43, 0.43, 0.44, 0.51, 0.66, 0.35, 0.53, 0.37, 0.61, 0.63, 0.71, 0.53, 0.52, 0.48, 0.39, 0.57, 0.55, 0.52, 0.39, 0.6, 0.67, 0.47, 0.55, 0.47, 0.51, 0.51, 0.79, 0.32, 0.58, 0.49, 0.41, 0.62, 0.38, 0.4, 0.43, 0.34, 0.6, 0.43, 0.97, 0.54, 0.43, 0.67, 0.55, 0.58, 0.45, 0.58, 0.48, 0.54, 0.38, 0.52, 0.52, 0.66, 0.49, 0.6, 0.35, 0.52, 0.64, 0.39, 0.39, 0.41, 0.62, 0.69, 0.37, 0.48, 0.48, 0.98, 0.52, 0.49, 0.46, 0.59, 0.73, 0.44, 0.53, 0.49, 0.53, 0.38, 0.61, 0.56, 1.05, 0.47, 0.4, 0.48, 0.66, 0.48, 0.99, 0.43, 0.51, 0.61, 0.56, 0.65, 0.63, 0.5, 0.44, 0.59, 0.46, 0.4, 0.84, 0.7, 0.51, 0.46, 0.5, 0.62, 0.51, 0.69, 0.45, 0.57, 0.45, 0.64, 0.4, 0.5, 0.46, 0.5, 0.51, 0.51, 0.51, 0.65, 0.71, 0.48, 0.47, 0.56, 0.35, 0.57, 0.64, 0.63, 0.66], \"xaxis\": \"x\", \"y\": [0.7197707895473677, 0.05448058807241418, 0.5021256787650443, 0.4710854375480472, 0.7156076129280222, 0.7966690429773311, 0.7265425252145667, 0.16771266951545494, 0.610944103187451, 0.6324527530146118, 0.42180662537268765, 0.2598044700255929, 0.5503032830239416, 0.5632112185661304, 0.6840604465833231, 0.6224375641140001, 0.8071781895370533, 0.9515482366939344, 0.3994071349416132, 0.9677746238863042, 0.572587586261062, 0.7602674855798478, 0.861098734498427, 0.1386074727873, 0.6703360831713621, 0.8064003460928679, 0.3172728283240366, 0.8039094494444462, 0.9186426431335688, 0.6026275969807151, 0.8609701260317718, 0.3485833566260712, 0.3005246278528939, 0.2859113263741919, 0.4978204971029292, 0.5125675444128744, 0.4268860326359044, 0.11791793574572085, 0.440027850275134, 0.4938434408506086, 0.4933189622152446, 0.166194347192407, 0.30200278364192557, 0.6822425768461728, 0.8693180940701344, 0.24112389044610405, 0.43189370387303117, 0.284455178085937, 0.23793737479647703, 0.5535561322468214, 0.7900402576908969, 0.47373775892899717, 0.6055733033081183, 0.7462675017011632, 0.32245623572553406, 0.7612367841042231, 0.36308410170653527, 0.6103993963703384, 0.3965676277125745, 0.2230008284200371, 0.8480025164595866, 0.43585875500482685, 0.24095331994381775, 0.4030652094068704, 0.8951637220162157, 0.2782175630406618, 0.7337660836226194, 0.8352762102164887, 0.6223987562306759, 0.2928263700360406, 0.6563137004068428, 0.16155652477357085, 0.6364666355122575, 0.2186811050870735, 0.27206300237801306, 0.4358901152617537, 0.6136035252376228, 0.07900866299327158, 0.8522855318359817, 0.11906253414448076, 0.3466831105240652, 0.11265227152414181, 0.6302693732121377, 0.7168097665217413, 0.4796298258249143, 0.4476252306691143, 0.3612478268219491, 0.611861930499026, 0.15121036728507153, 0.5363393546692182, 0.16155652477357085, 0.441733396330222, 0.7834276811132227, 0.6364666355122575, 0.44873286860252337, 0.4948960601400133, 0.4172084246960842, 0.5055831714989107, 0.5269082808529498, 0.3737404408311804, 0.4491757516278906, 0.5266720849021, 0.2882430633103308, 0.6066213483726142, 0.83534933450756, 0.2509605867776752, 0.230738949997912, 0.25680675940048736, 0.6858999083789018, 0.27626495444752697, 0.35158671089680515, 0.311480105980391, 0.5950329577300569, 0.4196263877039489, 0.3672198477254309, 0.5488429300958864, 0.6273126624389191, 0.0990306898864649, 0.935036100419004, 0.5556828679884147, 0.6003916802566726, 0.1337843055401957, 0.6898191889393818, 0.46604488826349566, 0.6668872608045229, 0.5998672378660981, 0.14712454771937833, 0.8558065212045691, 0.883276495704891, 0.5544329747085402, 0.38398791005853006, 0.8623310715459079, 0.4482795971615686, 0.4767821080964978, 0.6451659669426603, 0.5099786295438409, 0.11454219273407718, 0.5691587732433696, 0.2398813672346335, 0.8592796956842923, 0.38133093816728936, 0.4754945767078651, 0.2673740541283356, 0.43092180164799054, 0.5981491184574936, 0.7512253043619477, 0.20474988026063612, 0.12337786436138054, 0.6965484670033051, 0.4642254518352117, 0.29034758521725457, 0.7912282271603185, 0.1364389858241727, 0.5326323768611896, 0.3938848007926149, 0.886984727126295, 0.5955398539691413, 0.3667393936023857, 0.35129461810907203, 0.578130474122496, 0.1952086434691429, 0.6982941690158907, 0.6159300986783536, 0.6650580695700093, 0.8007006003287879, 0.13750802167619447, 0.47121416359091395, 0.5691587732433696, 0.5295784007050042, 0.4938434408506086, 0.4240508430342457, 0.1531205555636086, 0.7965770364050346, 0.4829168465516456, 0.6333246955344933, 0.38682769986244625, 0.5589353890471914, 0.30965836575156913, 0.6133571507425741, 0.5363393546692182, 0.5474540697204298, 0.9680074395956593, 0.29703705077451537, 0.7566858385458134, 0.451244026180727, 0.6224939697452743, 0.9340693900855184, 0.1254375450851024, 0.770680513376406, 0.7273231109206828, 0.410671569380914, 0.19928392436820586, 0.44743622108127745, 0.4991477681643879, 0.5443787589855091, 0.826082779912576, 0.5642536294664222, 0.6762559922350657, 0.39283078357423706, 0.3074847569358159, 0.40732461839200396, 0.5614584986504241, 0.5614584986504241, 0.575628870274347, 0.1938881144566701, 0.6480440770440566, 0.23946299348505806, 0.6110142157087575, 0.32489046344192996, 0.127020290619695, 0.28948900574123104, 0.27970970921902805, 0.5179212029104148, 0.579807192000203, 0.5695619245525361, 0.7471497674522103, 0.6761943115269239, 0.6052803835931642, 0.9048996801452402, 0.632953623191418, 0.7849920634816455, 0.12946409768986655, 0.3899257470968539, 0.37735505673750047, 0.27206300237801306, 0.6356505945299911, 0.9000798247851504, 0.5852448485124296, 0.3537739535016634, 0.8589709040748648, 0.5105041430354158, 0.4760479563081992, 0.3915586115462193, 0.4344526143297297, 0.04825794875232026, 0.25106204840173363, 0.5352062615150248, 0.2084678736174792, 0.5588772074146924, 0.42656597432725707, 0.3395528272139201, 0.5154796814541086, 0.30312695461308037, 0.4684625037801391, 0.13140485141127656, 0.37575572516499556, 0.7087902803012941, 0.22740617784346517, 0.7932370230268412, 0.6977827466507267, 0.8687065743771458, 0.3532210556477622, 0.3005246278528939, 0.8817461779308045, 0.5897758288136841, 0.5117334773877459, 0.2267712913026929, 0.7462523759498982, 0.5055831714989107, 0.6276122794572256, 0.34766968675436505, 0.563322001169588, 0.4035281086421867, 0.44827723495654004, 0.7588644006503809, 0.17560197311170134, 0.2736156405730563, 0.5646478519097824, 0.12788772013874206, 0.8127608550985441, 0.35130933230290007, 0.8842329534318195, 0.5671758377024384, 0.508518787579709, 0.4735654621913231, 0.6614347321502836, 0.7032589073748752, 0.418601168771625, 0.40262233345395115, 0.38045938978299354, 0.6221728234115828, 0.6769388667590319, 0.825791915264051, 0.8036522945246104, 0.5350776523934957, 0.5038683203672731, 0.4187790963850706, 0.3942708224564714, 0.36585282612655, 0.42973128126448334, 0.1395024853671747, 0.36909778672938764, 0.5126700875045708, 0.31128511290513083, 0.5841805470690385, 0.42932394036482613, 0.5168725346003686, 0.9331527243268325, 0.5090935678835011, 0.848083892739094, 0.7288594688776423, 0.23463814542978878, 0.9073343486287574, 0.5445649372592127, 0.8030108083542629, 0.30698149193503155, 0.47724620771884374, 0.49565431290071005, 0.29179072192325783, 0.53941953634433, 0.32642767658125227, 0.5714063949384225, 0.6769388667590319, 0.48314991346809855, 0.3838692085325581, 0.7654355578102645, 0.6807995217458978, 0.7803105409218809, 0.4971816769068883, 0.5662837862370104, 0.32557907866588853, 0.4059739580227363, 0.8621668957327787, 0.4863555612469991, 0.44913520001249685, 0.5044088987161788, 0.018560580499064172, 0.17397747102053363, 0.8203404366189, 0.531551035274026, 0.3951880410340851, 0.6710839680909022, 0.7545393605546251, 0.25029771644034415, 0.31651464458218903, 0.7900402576908969, 0.7649542174153934, 0.6282404390050247, 0.5124469561170844, 0.7501741577575001, 0.3717170374651112, 0.5479204837841629, 0.1799627586960565, 0.8716748635647116, 0.4700369344869263, 0.7044722268129955, 0.7597806244765397, 0.4570971226262448, 0.3688130253756654, 0.5854022956087224, 0.6067015953642416, 0.6092966434658947, 0.5713009051869427, 0.15316343939585397, 0.31191498773739224], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [0.42, 0.54, 0.53, 0.49, 0.54, 0.54, 0.53, 0.5, 0.38, 0.38, 0.34, 0.54, 0.37, 0.44, 0.67, 0.45, 0.37, 0.68, 0.48, 0.34, 0.56, 0.59, 0.42, 0.4, 0.32, 0.54, 0.4, 0.35, 0.4, 0.39, 0.42, 0.65, 0.39, 0.9, 0.63, 0.48, 0.55, 0.41, 0.53, 0.75, 0.38, 0.44, 0.71, 0.41, 0.49, 0.4, 0.47, 0.45, 1.13, 0.37, 0.37, 0.58, 0.41, 0.47, 0.54, 0.38, 0.48, 0.32, 0.29, 0.58, 0.57, 0.48, 0.41, 0.51, 0.68, 0.59, 0.39, 0.35, 0.46, 0.22, 0.64, 0.26, 0.4, 0.51, 0.69, 0.46, 0.86, 0.33, 0.75, 0.32, 0.72, 0.36, 0.51, 0.46, 0.41, 0.72, 0.48, 0.91, 0.48, 0.67, 0.51, 0.58, 0.67, 0.52, 0.44, 0.4, 0.38, 0.42, 0.48, 0.62, 0.4, 0.46, 0.69, 0.64, 0.36, 0.5, 0.45, 0.42, 0.76, 0.56, 0.45, 0.38, 0.54, 0.76, 0.44, 0.53, 0.54, 0.5, 0.59, 0.85, 0.52, 0.61, 0.41, 0.53, 0.46, 0.54, 0.56, 0.53, 0.56, 0.96, 0.39, 0.83, 0.41, 0.85, 0.5, 0.34, 0.64, 0.6, 0.47, 0.74, 0.44, 0.46, 0.52, 0.59, 0.67, 0.62, 0.78, 0.36, 0.6, 0.35, 0.39, 0.68, 0.54, 0.43, 0.54, 0.53, 0.41, 0.41, 0.41, 0.43, 0.48, 0.58, 0.5, 0.96, 0.69, 0.5, 0.49, 0.33, 0.41, 0.33, 0.79, 0.59, 0.51, 0.39, 0.57, 0.38, 0.56, 0.54, 0.43, 0.69, 0.57, 0.48, 0.8, 0.43, 0.47, 0.5, 0.39, 0.64, 0.52, 0.51, 0.48, 0.63, 0.51, 0.46, 0.53, 0.38, 0.46, 0.55, 0.47, 0.5, 0.49, 0.71, 0.58, 0.89, 0.63, 0.81, 0.94, 0.41, 0.41, 0.46, 0.38, 0.54, 0.48, 0.46, 0.39, 0.6, 0.43, 0.48, 0.38, 0.63, 0.54, 0.39, 0.46, 0.6, 0.72, 0.49, 0.53, 0.78, 0.55, 0.44, 0.54, 0.41, 0.6, 0.56, 0.58, 0.48, 0.69, 0.57, 0.43, 0.4, 0.46, 0.48, 0.43, 0.54, 0.59, 0.39, 0.5, 0.49, 0.44, 0.42, 0.69, 0.49, 0.76, 0.83, 0.65, 0.4, 0.34, 0.45, 0.44, 0.57, 0.37, 0.42, 0.5, 0.76, 0.62, 0.41, 0.43, 0.57, 0.83, 0.48, 0.54, 0.49, 0.47, 0.57, 0.49, 0.46, 0.45, 0.85, 0.63, 0.46, 0.37, 0.37, 0.52, 0.58, 0.49, 0.73, 0.62, 0.46, 0.66, 0.35, 0.58, 0.59, 0.62, 0.43, 0.59, 0.4, 0.7, 0.42, 0.68, 0.58, 0.66, 0.58, 0.61, 0.42, 0.42, 0.85, 0.37, 0.64, 0.47, 0.56, 0.59, 0.42, 0.67, 0.79, 0.42, 0.67, 0.58, 0.42, 0.63, 0.46, 0.56, 0.64, 0.66, 0.79, 0.5, 0.67, 0.36, 0.69, 0.58, 0.49, 0.37, 0.44, 0.82, 0.61, 0.54, 0.52, 0.54, 0.78, 0.64, 0.53, 0.51, 0.33, 0.64, 0.72, 0.68, 0.41, 0.54, 0.55, 0.38, 0.46, 0.4, 0.66, 0.45, 0.51, 0.5, 0.5, 0.72, 0.37, 0.97, 0.38, 0.63, 0.43, 1.36, 0.84, 0.58, 0.49, 0.54, 0.38, 0.86, 0.52, 0.42, 0.53, 0.53, 0.34, 0.62, 0.34, 0.5, 0.6, 0.44, 0.62, 0.69, 0.46, 0.62, 0.55, 0.4, 0.54, 0.77, 0.77, 0.6, 0.45, 0.47, 0.45, 0.45, 0.41, 0.54, 0.66, 0.49, 0.42, 0.31, 0.54, 0.57, 0.58, 0.65, 0.67, 0.37, 0.53, 0.38, 0.53, 0.67, 0.37, 0.61, 0.49, 0.69, 0.44, 0.33, 0.48, 0.46, 0.59, 0.51, 0.4, 0.55, 0.49, 0.39, 0.39, 0.4, 0.4, 0.32, 0.42, 0.46, 0.47, 0.38, 0.63, 0.58, 0.44, 0.44, 0.34, 0.68, 0.66, 0.79, 1.02, 0.35, 0.41, 0.61, 0.36, 0.59, 0.46, 0.59, 0.56, 0.9, 0.42, 0.38, 0.42, 0.4, 0.51, 0.57, 0.6, 0.35, 0.61, 0.5, 0.38, 0.66, 0.59, 0.91, 0.5, 0.35, 0.68, 0.42, 0.48, 0.5, 0.9, 0.54, 0.6, 0.44, 0.47, 0.67, 0.25, 0.68, 0.54, 0.52, 0.46, 0.57, 0.61, 0.46, 0.64, 0.45, 0.38, 0.46, 0.54, 0.39, 0.56, 0.71, 0.58, 0.38, 0.72, 0.52, 0.49, 0.38, 0.5, 0.53, 0.6, 0.54, 0.31, 0.46, 0.44, 0.37, 0.52, 0.43, 0.45, 0.36, 0.44, 0.46, 0.47, 0.59, 0.46, 0.5, 0.39, 0.62, 0.54, 0.59, 0.57, 0.45, 0.43, 0.34, 0.51, 0.58, 0.36, 0.73, 0.72, 0.42, 0.38, 0.77, 0.6, 0.44, 0.54, 0.42, 0.67, 0.53, 0.96, 0.54, 0.64, 0.55, 0.39, 0.6, 0.48, 0.44, 0.43, 0.65, 0.36, 0.51, 0.59, 0.67, 0.43, 0.64, 0.84, 0.49, 0.62, 0.4, 0.56, 0.61, 0.54, 0.54, 0.49, 0.51, 0.53, 0.73, 0.33, 0.37, 0.59, 0.4, 0.55, 0.47, 0.53, 1.06, 0.49, 0.65, 0.4, 0.43, 0.47, 0.59, 0.45, 0.43, 0.6, 0.42, 0.93, 0.38, 0.53, 0.53, 0.52, 0.61, 0.62, 1.95, 0.35, 0.48, 0.39, 0.57, 0.68, 0.49, 0.92, 0.49, 0.58, 0.47, 0.9, 0.5, 0.53, 0.92, 0.5, 0.74, 0.41, 0.49, 0.41, 0.34, 0.69, 0.55, 0.77, 0.38, 0.72, 0.59, 0.4, 0.73, 1.36, 0.77, 0.58, 0.66, 0.6, 0.58, 0.5, 0.79, 0.36, 0.5, 0.62, 0.44, 0.56, 0.5, 0.56, 0.46, 0.53, 0.78, 0.5, 0.65, 0.58, 0.53, 0.98, 0.44, 0.46, 0.95], \"xaxis\": \"x\", \"y\": [0.18439386755371057, 0.5750868907731637, 0.1132172353536568, 0.19850047615697952, 0.6950004168934912, 0.41826441672946313, 0.040828937665112974, 0.2145583871630251, 0.09143093017991866, 0.10013996234885614, 0.3658834999306372, 0.587897812361327, 0.23563705889496211, 0.5289998061994394, 0.5981734696485812, 0.5956194363709464, 0.11295199838815062, 0.6349332021584286, 0.09356782907078887, 0.0672754654033908, 0.3541579814831264, 0.11781588709523827, 0.3295981493457443, 0.23443288181779365, 0.13830133810679424, 0.5122546205578999, 0.03626449638205209, 0.32057959349203036, 0.3955164844050859, 0.21320459763992916, 0.08620177311633537, 0.4132497936565127, 0.19514157099220286, 0.028148892894647393, 0.03728071159582558, 0.20213762816504022, 0.39088790332760825, 0.10566618212719892, 0.11466232649727714, 0.09544364959788487, 0.07351553674018241, 0.3657542344632553, 0.05859665738698361, 0.43634835962676355, 0.4827032077898804, 0.516310366273556, 0.6480037931050455, 0.21122004543372697, 0.030344760075157406, 0.22750344576024595, 0.18673438423788624, 0.5460909738859347, 0.0666291073587214, 0.320234954276134, 0.515425573770442, 0.5751179393061847, 0.3262180383913996, 0.12192585741802231, 0.6165939755266235, 0.09365914315081003, 0.44259853952477324, 0.31958523161407537, 0.09228899111547839, 0.22815273642701062, 0.5282447951108347, 0.7777719169155834, 0.13834506443323813, 0.29425092810710396, 0.5300870647699181, 0.031947521718024174, 0.1108646816717751, 0.053339747820140615, 0.14466174791529418, 0.25697560969337485, 0.3383868137798065, 0.30803904997837983, 0.03434255320493995, 0.08689109251212201, 0.46044782253877736, 0.0973761441498977, 0.3449058470623745, 0.024212367984770777, 0.11665042079727428, 0.3333970234137619, 0.1495417879159372, 0.0679784404121434, 0.2360052425084116, 0.39147703437781534, 0.04428683932015287, 0.5381556738404795, 0.4357341587922019, 0.11843845992675284, 0.28107964630818494, 0.06989794698232743, 0.2658605825653322, 0.22408104406272966, 0.15519213452661884, 0.09873339188795927, 0.10739713799337769, 0.4712507279726723, 0.31257930793611366, 0.6259141532505736, 0.1651629894813923, 0.13024327386797574, 0.08242409751896962, 0.55355901104019, 0.11256152515999429, 0.22124325125588817, 0.05838775174278421, 0.6734770756819889, 0.06919042490492266, 0.5773286546676725, 0.5693181878572973, 0.12726917141891614, 0.27983888222674136, 0.15690954109554833, 0.18593824584442387, 0.05432525584274117, 0.33273366741371935, 0.12435295831370408, 0.48112847828662497, 0.2959384652215836, 0.5042039768350125, 0.3749869638443927, 0.7258627386781167, 0.4806866421912115, 0.6234335830956541, 0.4191951896523489, 0.20821728825178332, 0.6343085651912675, 0.27674577061671146, 0.02140654255666985, 0.42849246998341506, 0.1817444030106703, 0.4551538855951942, 0.05087080041524106, 0.516641204200833, 0.6810720245435042, 0.08151744899857294, 0.4475169494323581, 0.03995706953508171, 0.2181819033834006, 0.20372897255157485, 0.24305701296248816, 0.5381556738404795, 0.2358485729609252, 0.051323642447754336, 0.1913631294907303, 0.32154631204965056, 0.31229802093755377, 0.3917329141436472, 0.39462053822053156, 0.3680669306910641, 0.5017894292511481, 0.32120711190509066, 0.0768019282386515, 0.1168769044932052, 0.31545143431826594, 0.12007957373947853, 0.08354361700756141, 0.2180731800932174, 0.7653011157176768, 0.05076221583963347, 0.11739077279846111, 0.3639458403519926, 0.4815918747301601, 0.35998732468747585, 0.457353694020342, 0.5520498791697908, 0.22168281241722143, 0.2132287846887433, 0.4763394582576197, 0.3040153802820409, 0.20749766415549342, 0.3316810644107503, 0.8126297477835096, 0.5749367295182395, 0.27274039590582944, 0.2685808245693546, 0.5172108675362206, 0.33506587713796443, 0.09616672688355288, 0.041108213935392324, 0.10548050716105373, 0.5016695616404938, 0.20022874051447226, 0.14220640128276774, 0.23772630779738468, 0.19606080251004787, 0.2603188495268066, 0.18846597668723208, 0.19827111133563302, 0.261548791893628, 0.4140325207077993, 0.8134796325151183, 0.12265695643958285, 0.6311167068993262, 0.13481820177301163, 0.0932384579037443, 0.14050160114126486, 0.2562249115981724, 0.08547750670655718, 0.08643201081848362, 0.19981675431015722, 0.31390222338706264, 0.06221739913672386, 0.06996303880871468, 0.30029370289300306, 0.4306817897420764, 0.6595343859760441, 0.2839408857911616, 0.20468539219890003, 0.1130196126722065, 0.2360017176902124, 0.13187147729288817, 0.42313120297864704, 0.06964897436687001, 0.1624399718171824, 0.17200815643270417, 0.07333105637055992, 0.2440137653363641, 0.4900110333069776, 0.3085554157386313, 0.03480496731142946, 0.12148031785507996, 0.15002971926037112, 0.5314247042003052, 0.2758453007685677, 0.2151852748992088, 0.2658605825653322, 0.29911225563077193, 0.6594110243744711, 0.49869782335001445, 0.16788254706683048, 0.11816213334465087, 0.08230909248122409, 0.13653212507346946, 0.25639170942272826, 0.06562233405876228, 0.23311900627036541, 0.3756616197417655, 0.46674395287949066, 0.3092684534350997, 0.8337319641197457, 0.8331457111467163, 0.2591056156836542, 0.4778687671024334, 0.2542440524586721, 0.5361036306539362, 0.07073721340803463, 0.4731688813159418, 0.5755848065786346, 0.356689463387698, 0.14225616860197343, 0.21837916002376445, 0.14466174791529418, 0.29899643271856946, 0.4757427727983842, 0.08126799884203029, 0.1296501822378736, 0.3286954654423938, 0.08620177311633537, 0.13855855420831553, 0.05543377339452393, 0.11917834098009661, 0.2613621884509647, 0.11269900223777074, 0.08429051026621415, 0.3393961441870107, 0.07031960314855146, 0.11356777592095357, 0.4853279864284006, 0.1279289285514792, 0.0584572339054259, 0.08612988585012649, 0.3472440907423937, 0.1248029959061332, 0.07502335399434323, 0.19827111133563302, 0.3424151534036639, 0.3065175956815872, 0.13808860398564737, 0.058092197534895806, 0.04082786106581715, 0.1602592849246841, 0.09156161599234125, 0.5036030690663805, 0.2640411824475748, 0.6468038092930676, 0.07201805208597656, 0.22470230804277058, 0.1334773721572423, 0.04847889440667685, 0.2685808245693546, 0.10911308148570098, 0.6764508967260475, 0.6280060594576413, 0.36761958218269275, 0.16019930342079847, 0.17605308658107655, 0.14078981831089854, 0.2384997092801764, 0.13117402490907393, 0.12818959986091483, 0.4161925244315118, 0.12435295831370408, 0.09814942480303201, 0.05480698563416486, 0.3746187330143109, 0.41092354232892336, 0.507894749900129, 0.5137929421583434, 0.08293523366016065, 0.2964416548030494, 0.15236141109070434, 0.4396941021426354, 0.41893931094950754, 0.09113953260801844, 0.10967473999240707, 0.055732078845942, 0.05640314085190745, 0.06176263301115803, 0.06427139521062619, 0.20386133178572885, 0.21597661143113533, 0.7486409492386699, 0.2610715902497083, 0.09465277491899493, 0.5556171757583562, 0.137718889647652, 0.1978940751503777, 0.08472590699531857, 0.356262641598029, 0.14596950445002987, 0.13865818299932142, 0.3088915816821678, 0.11516321289421916, 0.16121169033174265, 0.40573483691789825, 0.34308606282264, 0.36300204724896845, 0.17193414756867276, 0.035926383178341514, 0.34536882843285344, 0.4400180463892147, 0.5165194668234709, 0.23319834124303085, 0.9637923675569924, 0.2635599134550337, 0.6259141532505736, 0.12324962258280003, 0.1256037712827487, 0.1248029959061332, 0.11665042079727428, 0.29081136443782263, 0.12993062945549005, 0.20959981847797426, 0.12385816607190492, 0.16931651488884025, 0.2468284110987674, 0.6181879252747016, 0.3509541008179864, 0.08619429866610873, 0.09537770951135394, 0.8204393830764495, 0.2493836920976743, 0.10367142046182065, 0.11516383353466464, 0.07169627826225977, 0.5400384130096556, 0.2709141565803237, 0.16809050322974173, 0.3421981324687273, 0.812724325423183, 0.1326589750154965, 0.054670132935181304, 0.055346153509382656, 0.8039442695404772, 0.3276168958360183, 0.6561718697940482, 0.6214102617950452, 0.3046829516703813, 0.7853649284745584, 0.7303620793003476, 0.6719087507962026, 0.16000678121984613, 0.579612101366232, 0.6347749924714103, 0.41894393066564606, 0.06936532322770372, 0.28322834609079706, 0.343263893078516, 0.4450860003239352, 0.3090838478611311, 0.408095736797927, 0.11529682880263803, 0.13359771811640497, 0.2417229185475579, 0.10092265889692065, 0.8181934133883563, 0.3777834313813965, 0.8273808576462511, 0.18439353202429143, 0.5148786056082297, 0.11287077888712382, 0.16015059460472458, 0.29672938182784603, 0.36944561074938853, 0.2505850522824452, 0.8467591712977676, 0.3840267097226593, 0.261779448872241, 0.1645479955558209, 0.14631295673285594, 0.4248523287309329, 0.09222807982804315, 0.2121484308544801, 0.33273366741371935, 0.5470626312455473, 0.8294144697045585, 0.25206662215500397, 0.15998368749433245, 0.548322128117227, 0.3917329141436472, 0.15981565308588508, 0.23631147082452741, 0.21082920466209698, 0.1871387197916503, 0.24774693401855818, 0.1913242313933492, 0.16437448769677154, 0.07582203648947516, 0.032541140295091364, 0.06311143057978008, 0.5009235508757715, 0.12343879567504301, 0.445735807756371, 0.40322837553658053, 0.09397553936597514, 0.1598391281143201, 0.26702494168661406, 0.19782301216908982, 0.06831823449824892, 0.5451167746582685, 0.20142160156100697, 0.25747632252511843, 0.4257317671215596, 0.5062318064185062, 0.10278357133077332, 0.10857266292312517, 0.06223864817381186, 0.11377411494697365, 0.14082424186384768, 0.2589321903149734, 0.31776639873426016, 0.07983414941561229, 0.30174211068680845, 0.42532907678292176, 0.23734670470511587, 0.2862296469110084, 0.24790288035387664, 0.5526146374040077, 0.20425399436950087, 0.5166825128498294, 0.12415322942140417, 0.5310696157212036, 0.3866387435262121, 0.14313186082947948, 0.31648660326859934, 0.026792916001305622, 0.7856428374245099, 0.42383310375799566, 0.5944566396871084, 0.6256605001243821, 0.08813642250468567, 0.03544811528140901, 0.06935406654889886, 0.15751976448865512, 0.22608551288474832, 0.3127311228465576, 0.1409438166611655, 0.3285615524533705, 0.3591330499592894, 0.47964497307801546, 0.7143146030302826, 0.14223944449319303, 0.06929054967731618, 0.32120711190509066, 0.16913647442041335, 0.707286257884667, 0.3230684446475647, 0.7616845263358343, 0.4104900542879092, 0.10053249234255524, 0.1106599594415556, 0.1543174595222413, 0.46003879185641183, 0.3811350878514418, 0.07185070571861518, 0.23882593985771994, 0.5344976262521839, 0.11031385635331636, 0.09610989844306939, 0.4955559099445003, 0.07845190603324759, 0.30697262074812925, 0.12767551958037127, 0.4375661224395835, 0.07737023387634634, 0.15307682457740834, 0.05694427046787409, 0.09028836937410878, 0.4011292297732457, 0.6186146927451245, 0.11561676905211238, 0.0993047499370594, 0.08102401279833105, 0.8100206966555492, 0.10768932514586738, 0.15386113005635593, 0.4026560765644126, 0.045535707525545144, 0.08229583319403, 0.08227601457953415, 0.8241544781987433, 0.0759900855540333, 0.5147505197509459, 0.11103147778198663, 0.42144961755966015, 0.24880465403270857, 0.3112403223054312, 0.3282460941643247, 0.28312386083977936, 0.2865521931047814, 0.16537364909659502, 0.4284132019637321, 0.34116073112729894, 0.051142721309942685, 0.10794707492381372, 0.1108646816717751, 0.29201805921023904, 0.07365131996157204, 0.36851051207096197, 0.2556143611338999, 0.07392456180697715, 0.045535707525545144, 0.15025986810093994, 0.4395989822566938, 0.19636656988846957, 0.21018464628148859, 0.15085686628779282, 0.3429118439192298, 0.16104008564300487, 0.2055862423584408, 0.18673310211333727, 0.5528531989583015, 0.20219789553586287, 0.5807830339134155, 0.6112381610839525, 0.07515362639458067, 0.5722084734915175, 0.3654892991508686, 0.1991057466826236, 0.4912569401667811, 0.05850610073101081, 0.3077884117234785, 0.17038242498240874, 0.14066607718466684, 0.10248584652416493, 0.4022873718442217, 0.07205214632436985, 0.35142291824287475, 0.10941760034103376, 0.06679271580157364, 0.05675388891699207, 0.058987921856350156, 0.3660303223369904, 0.28790374422385034, 0.4158290962648631, 0.40710291595796666, 0.09934102670994882, 0.06362846635195196, 0.30921476208988685, 0.23242198019285765, 0.055541210656895434, 0.5297663836663529, 0.10744632778983743, 0.18410212910939194, 0.17721960751489196, 0.1962664672709783, 0.1617648996714035, 0.10584426414108294, 0.5203501665477333, 0.07365131996157204, 0.31578819840495265, 0.35364190165315845, 0.1707951928721818, 0.41655733121321636, 0.15801546378512366, 0.7568436608419439, 0.22368578646300386, 0.0609449253562836, 0.2225096762928218, 0.18587673368692093, 0.05559101133196209, 0.569598540521716, 0.08073228430722412, 0.15724041301590164, 0.12879141548479, 0.4306817897420764, 0.17998791969802397, 0.41280880088413996, 0.5723062335690389, 0.6457404130724687, 0.10420061808672998, 0.12564769853034463, 0.21795029564941848, 0.4720930498870375, 0.11304202998506685, 0.545112257205237, 0.14852188644910969, 0.17217029085021085, 0.336250902618187, 0.48671482860553816, 0.5093433434984792, 0.35847801144896685, 0.3008706318705062, 0.18494609259573758, 0.4199330463236065, 0.04162287990776414, 0.2633909944023186, 0.4252182303976608, 0.4684623303117058, 0.1925553058603695, 0.09610989844306939, 0.09129843496680234, 0.3302708189676917, 0.4199330463236065, 0.11927294568859859, 0.4864154015695107, 0.06472081497616611, 0.6387929002666255, 0.37932906694235924, 0.093713747684541, 0.20627971812824875], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (curr)\", \"type\": \"scatter\", \"x\": [0.78, 0.48, 0.33, 0.45, 0.47, 0.5, 0.51, 0.54, 0.67, 0.57, 0.49, 0.5, 0.52, 0.37, 0.57, 0.48, 0.38, 0.61, 0.81, 0.28, 0.72, 0.46, 0.49, 0.51, 0.66, 0.38, 0.52, 0.49, 0.4, 0.53, 0.44, 0.54, 0.46, 0.45, 0.51, 0.44, 0.48, 0.58, 0.41, 0.55, 0.38, 0.43, 0.81, 0.45, 0.41, 0.57, 0.61, 0.53, 0.5, 0.52, 0.7, 0.39, 0.34, 0.58, 0.49, 0.67, 0.65, 0.74, 0.35, 0.54, 0.74, 0.64, 0.47, 0.91, 0.47, 0.64, 1.34, 0.56, 0.56, 0.48, 0.69, 0.4, 0.46, 0.47, 0.37, 0.53, 0.52, 0.43, 0.46, 0.61, 0.39, 0.49, 0.42, 0.55, 0.37, 0.48, 0.44, 0.75, 0.42, 0.8, 0.34, 0.38, 0.7, 0.63, 0.73, 0.4, 0.34, 0.93, 0.46, 0.5, 0.43, 0.43, 0.48, 0.52, 0.46, 0.54, 0.7, 0.45, 0.41, 0.64, 0.46, 0.44, 0.75, 0.54, 0.46, 0.48, 0.67, 0.49, 0.48, 0.52, 0.37, 0.46, 0.6, 0.48, 0.54, 0.77, 0.48, 0.55, 0.54, 0.65, 0.4, 0.56, 0.63, 0.33, 0.48, 0.5, 0.7, 0.55, 0.4, 0.51, 0.42, 0.37, 0.31, 0.52, 0.63, 0.49, 0.52, 0.56, 0.54, 0.42, 0.34, 0.59, 0.72, 0.38, 0.52, 0.35, 0.4, 0.51, 0.46, 0.56, 0.57, 0.56, 0.68, 0.48, 0.5, 0.5, 0.38, 0.49, 0.38, 0.46, 0.6, 0.49, 0.38, 0.42, 0.58, 0.35, 0.31, 0.53, 0.45, 0.37, 0.39, 0.44, 0.61, 0.38, 0.52, 0.42, 0.4, 0.53, 0.59, 0.52, 0.57, 0.58, 0.5, 0.65, 0.49, 0.47, 0.46, 0.48, 0.78, 0.44, 0.52, 0.46, 0.45, 0.69, 0.3, 0.76, 0.46, 0.78, 0.33, 0.45, 0.61, 0.52, 0.64, 0.35, 0.47, 0.37, 0.57, 0.4, 0.5, 0.39, 0.46, 0.43, 0.47, 0.46, 0.45, 0.45, 0.64, 0.59, 0.39, 0.4, 0.51, 0.7, 0.37, 0.32, 0.82, 0.47, 0.45, 0.59, 0.63, 0.55, 0.72, 0.8, 0.52, 0.41, 0.5, 0.72, 0.88, 0.45, 0.52, 0.42, 0.64, 0.45, 0.42, 0.44, 0.44, 0.41, 0.41, 0.6, 0.58, 0.71, 0.65, 0.53, 0.68, 0.68, 0.49, 0.45, 0.56, 0.73, 0.44, 0.48, 0.5, 0.72, 0.41, 0.45, 0.53, 0.55, 0.68, 0.6, 0.54, 0.88, 0.53, 0.48, 0.38, 0.43, 0.88, 0.44, 0.39, 0.46, 0.28, 0.58, 0.5, 0.58, 0.52, 0.54, 0.58, 0.65, 0.42, 0.37, 0.51, 0.58, 0.46, 0.61, 0.7, 0.63, 0.5, 0.29, 0.53, 0.35, 0.58, 0.49, 0.58, 0.63, 0.62, 0.39, 0.56, 0.44, 0.46, 0.48, 0.64, 0.38, 0.61, 0.58, 0.5, 0.76, 0.52, 0.4, 0.51, 0.63, 0.48, 0.46, 0.56, 0.45, 0.5, 0.53, 0.55, 0.51, 0.51, 0.39, 0.37, 0.45, 0.45, 0.58, 0.6, 0.48, 0.63, 0.73, 0.49, 0.78, 0.37, 0.76, 0.56, 0.49], \"xaxis\": \"x2\", \"y\": [0.18579927887031134, 0.9274202256360236, 0.2569067617886446, 0.17851375722123963, 0.43011516789686843, 0.3951880410340851, 0.35333307802371594, 0.854899199395705, 0.7749695319329993, 0.7150752736216004, 0.5793836726576811, 0.17187478758168062, 0.503776006633781, 0.6517104478925241, 0.5321166645488455, 0.4291031613352281, 0.6295132227815239, 0.446367751604861, 0.12978626497489776, 0.578130474122496, 0.1303225049324246, 0.4589423036505589, 0.6028673022099313, 0.6724998803801079, 0.055171077290688375, 0.28900585249094113, 0.5807441942986169, 0.6324527530146118, 0.32780881811994433, 0.4437792729685527, 0.47375733914823626, 0.6755390392614542, 0.8494338455743565, 0.8432302027568838, 0.3962269303969661, 0.36574887203466033, 0.9780529644634413, 0.6757083557066426, 0.43212531492562845, 0.6428319532862445, 0.2244465690609686, 0.6759712108962084, 0.300575337785698, 0.4848467547623382, 0.24353241802821812, 0.6165640897352094, 0.801889943514816, 0.6831580296641933, 0.4684052737322374, 0.07309555507266852, 0.17397747102053363, 0.548208100621717, 0.16948307959681597, 0.5287139706981401, 0.8097217619362252, 0.48186532860504816, 0.7044722268129955, 0.5458559966555334, 0.6067015953642416, 0.5767206748937392, 0.5416109283549078, 0.7766135747357961, 0.6371580804073698, 0.3290646799011723, 0.53941953634433, 0.7444876216695655, 0.27658524567301757, 0.8518717737266248, 0.685064206005921, 0.7994946846943811, 0.6254668451144636, 0.29898447003196504, 0.36566585814722175, 0.8260679099411251, 0.265003746926769, 0.18277705216857454, 0.6401445853260315, 0.2878944788643705, 0.7379395090268356, 0.6578861964269485, 0.3048731186933995, 0.6479177870210828, 0.5479007895539181, 0.8109237991420157, 0.4555798348891207, 0.35159410271621183, 0.6741813074403022, 0.40366163192193316, 0.3797333752177462, 0.42326140605337403, 0.49450075158901585, 0.7027754368270075, 0.31556666432085356, 0.5737052492708005, 0.5594846166878963, 0.9879213229528466, 0.23907110553933086, 0.7604887601700165, 0.906894853259191, 0.49150798334893764, 0.6693239074263375, 0.635181004157038, 0.4291031613352281, 0.6805197940362542, 0.8579270215873258, 0.42231028799440284, 0.7973836574204367, 0.6209099995125147, 0.617932351579841, 0.5867531689564582, 0.8217385626893267, 0.5766058512754557, 0.6085190813519714, 0.6488649586424557, 0.19466062481522506, 0.4062994677131635, 0.31500574198466447, 0.6106996692323751, 0.48314991346809855, 0.4300926711133176, 0.4623912750166579, 0.18141675383529432, 0.7404949196358439, 0.7960551628311661, 0.6696955469146251, 0.7471897031921468, 0.15222801432328747, 0.4782875749995391, 0.6696955469146251, 0.4617114467660769, 0.0374236133971757, 0.34638250956587036, 0.5737052492708005, 0.35412183815676124, 0.5342599897609015, 0.6273126624389191, 0.1819914526651868, 0.6450640502472667, 0.7576359910572065, 0.6363669366758954, 0.35783776888428775, 0.4555798348891207, 0.2603691587203709, 0.09638465351539516, 0.7889843001267657, 0.3995975535535492, 0.2404138117262561, 0.5134503976671381, 0.7620160241108803, 0.4852174766770502, 0.7934067722809752, 0.5657371707019572, 0.40591517497640706, 0.5142806824729376, 0.4667389755277017, 0.4597803030361328, 0.14211531046105408, 0.4709774325404933, 0.39253304933110444, 0.8152160844894966, 0.6418608562675732, 0.5695619245525361, 0.15898796250578873, 0.4189913516486339, 0.8097376625536354, 0.2776505479619531, 0.14100712613869515, 0.1625374057836978, 0.21879614767173305, 0.26016804821119, 0.5884346274074399, 0.25171266030158634, 0.5556828679884147, 0.2886326125606653, 0.5013044750460076, 0.23728971353361283, 0.6280660923097139, 0.6281218947904323, 0.6226708394296439, 0.1280348372312241, 0.37812375401711507, 0.6218606462016874, 0.446367751604861, 0.5237591509200082, 0.22560064672115399, 0.4159575064805634, 0.43989745285902637, 0.38133093816728936, 0.379388299643832, 0.4244201113870294, 0.8495234946343055, 0.44699506619782237, 0.3402560380560977, 0.16997778820688525, 0.6509841470756508, 0.5589353890471914, 0.49320900326902484, 0.41485179365651337, 0.2850172536812061, 0.5150740024049856, 0.7905789411902706, 0.6660097546858721, 0.5916856454756931, 0.25029771644034415, 0.21820707607863943, 0.23625780462752244, 0.6174344585079109, 0.33885175059010386, 0.8097775874289167, 0.5502791542248897, 0.45232673966787307, 0.5168725346003686, 0.4922951659433321, 0.2710495410551712, 0.5620189509382074, 0.19827785442852286, 0.35653263682836045, 0.4940220265254579, 0.3934632807735441, 0.349631294967786, 0.6543252873397565, 0.6043841099981286, 0.6572212454398962, 0.5323595728841377, 0.4667716613599331, 0.5480891857555714, 0.5933716837007499, 0.5769442381274095, 0.7796710482718338, 0.4721284230669528, 0.5632051337005155, 0.25606657060722404, 0.47304849589761655, 0.4991199345133047, 0.785831825438318, 0.5512091114854263, 0.31651464458218903, 0.192246895102814, 0.5737052492708005, 0.14970485751781393, 0.8257882443178004, 0.7450862811651306, 0.2404138117262561, 0.3428275867057816, 0.2186811050870735, 0.43730933466596944, 0.1325711740116582, 0.33994853494016564, 0.5172250338280965, 0.4543852880840521, 0.6017244994332274, 0.7267617626256621, 0.304103470637073, 0.49511795227452726, 0.4577650902534979, 0.4389063253281036, 0.3428275867057816, 0.6911248892501751, 0.5457123873353599, 0.3395528272139201, 0.5662837862370104, 0.38281068028313525, 0.1899488449656659, 0.1899488449656659, 0.39416742153886597, 0.4473524415330049, 0.5724944828663213, 0.12652799787397961, 0.14917046216496987, 0.4192276293132746, 0.1727250451072272, 0.7329347521090118, 0.2979855805324535, 0.5384433083808008, 0.2944152049751758, 0.5661013076544325, 0.39283078357423706, 0.6503174362647687, 0.7632350838020857, 0.29422440231251745, 0.8446099855685041, 0.3812461384129847, 0.1264117171095669, 0.6995051325026098, 0.7680829457938805, 0.1086082602083136, 0.50228427853815, 0.8303888649041977, 0.15145052047802054, 0.5239967242043768, 0.49461569007297057, 0.7323984730128237, 0.6372335578763709, 0.8485373319296128, 0.21018203617182263, 0.3854703692354019, 0.6209619763202376, 0.6996467359659702, 0.3913887983225227, 0.600932061108284, 0.18141675383529432, 0.32841971343371723, 0.17397747102053363, 0.3943097935149382, 0.5998672378660981, 0.6052803835931642, 0.35501406908939237, 0.4362847089434372, 0.6005057903956104, 0.45095984485898877, 0.5601124581139871, 0.6908342266509375, 0.29066967723125237, 0.5437491575180791, 0.5955595524057149, 0.4226516353037165, 0.552222307965348, 0.5038457784615318, 0.6752568781943777, 0.7880730680059006, 0.09430965090665133, 0.4986183600001317, 0.24112389044610405, 0.3635071851353404, 0.7047195247497422, 0.5251048099479148, 0.5632051337005155, 0.4520037684813636, 0.5271857161160298, 0.36566585814722175, 0.8775119234978208, 0.49474741138534273, 0.17187478758168062, 0.1069918390347242, 0.6371627391106971, 0.19018032574493748, 0.34352259564225396, 0.806114950115292, 0.47304849589761655, 0.5014153035286022, 0.6721952796384192, 0.7507248720260316, 0.38512814216859315, 0.8930847268109882, 0.863224561659591, 0.15108072818859253, 0.7399796913917198, 0.18579927887031134, 0.47304849589761655, 0.2033384066370545, 0.43667652058029827, 0.23252054766636898], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [0.38, 0.44, 0.87, 0.39, 0.58, 0.33, 0.7, 0.38, 0.61, 0.59, 0.56, 0.52, 0.37, 0.53, 0.36, 0.41, 0.58, 0.44, 0.87, 0.33, 0.46, 0.5, 0.38, 0.58, 0.6, 0.33, 0.3, 0.54, 0.6, 0.49, 0.35, 0.49, 0.82, 0.41, 0.34, 0.31, 0.76, 0.49, 0.53, 0.53, 0.32, 0.5, 0.38, 0.41, 0.8, 0.74, 0.38, 0.57, 0.49, 0.72, 0.61, 0.67, 0.36, 0.25, 0.49, 0.75, 0.68, 0.79, 0.44, 1.33, 0.68, 0.38, 0.47, 0.36, 0.36, 0.42, 0.58, 0.62, 0.5, 0.8, 0.53, 0.39, 0.29, 0.51, 0.37, 0.42, 0.44, 0.45, 0.47, 0.61, 0.46, 0.52, 0.85, 0.68, 0.49, 0.78, 0.73, 0.3, 0.27, 0.49, 0.35, 0.33, 0.5, 0.4, 0.48, 0.58, 0.65, 0.43, 0.72, 0.77, 0.34, 0.5, 0.84, 0.43, 0.53, 0.62, 0.54, 0.35, 0.59, 0.63, 0.5, 0.38, 0.37, 0.51, 0.5, 0.93, 0.76, 0.56, 0.65, 0.71, 0.64, 0.99, 0.56, 0.42, 0.75, 0.74, 0.74, 0.62, 0.75, 0.57, 0.36, 0.88, 0.44, 0.56, 0.44, 0.51, 0.67, 0.7, 0.57, 0.5, 0.62, 0.49, 0.61, 0.48, 0.41, 0.6, 0.58, 0.77, 0.39, 0.47, 0.38, 0.68, 0.44, 0.36, 0.68, 0.53, 0.82, 0.73, 0.45, 0.48, 0.4, 0.78, 0.26, 0.49, 0.82, 0.36, 0.45, 0.55, 0.86, 0.39, 0.57, 0.32, 0.39, 0.66, 0.45, 0.49, 0.43, 0.42, 0.47, 0.77, 0.44, 0.41, 0.95, 0.76, 0.43, 0.82, 0.87, 0.37, 0.45, 0.75, 0.39, 0.43, 0.59, 0.48, 0.46, 0.58, 0.57, 0.38, 0.58, 0.64, 0.59, 0.56, 0.57, 0.4, 0.56, 0.63, 0.53, 0.85, 0.51, 0.78, 0.41, 0.33, 0.6, 0.6, 0.56, 0.65, 0.47, 0.44, 0.5, 0.49, 0.4, 0.55, 0.6, 0.53, 0.66, 0.58, 0.68, 0.48, 0.77, 0.48, 0.72, 0.44, 0.66, 0.47, 0.66, 0.82, 0.4, 0.54, 0.31, 0.47, 0.53, 0.46, 0.39, 0.57, 0.64, 0.87, 0.41, 0.5, 0.47, 0.7, 0.76, 0.3, 0.75, 0.41, 0.55, 0.35, 0.45, 0.58, 0.48, 0.73, 0.62, 0.57, 0.47, 0.35, 0.39, 0.48, 0.51, 0.43, 0.48, 0.43, 0.37, 0.43, 0.58, 0.65, 0.4, 0.7, 0.57, 0.44, 0.56, 0.76, 1.06, 0.51, 0.51, 0.49, 0.64, 0.63, 0.36, 0.52, 0.57, 0.43, 1.11, 0.63, 0.42, 0.47, 0.49, 0.46, 0.45, 0.42, 0.33, 0.44, 0.33, 0.75, 0.59, 0.38, 0.48, 0.85, 0.56, 0.54, 0.75, 0.47, 0.38, 0.6, 0.63, 0.5, 0.52, 0.63, 0.51, 0.5, 0.51, 0.48, 0.64, 0.44, 0.59, 0.36, 0.64, 0.39, 0.4, 0.77, 0.48, 0.73, 0.81, 0.36, 0.86, 0.53, 0.43, 0.38, 0.75, 0.41, 0.43, 0.46, 0.39, 0.52, 0.58, 0.84, 0.54, 0.45, 0.42, 0.5, 0.9, 0.34, 0.35, 0.52, 0.47, 0.36, 0.4, 0.82, 0.6, 0.38, 0.82, 0.72, 0.32, 0.59, 0.75, 0.35, 0.75, 0.43, 0.46, 0.5, 0.57, 0.69, 0.46, 0.53, 0.54, 0.54, 0.56, 0.49, 0.48, 0.37, 0.65, 0.46, 0.5, 0.55, 0.55, 0.48, 0.43, 0.62, 0.46, 0.44, 0.65, 0.44, 0.58, 0.44, 0.49, 0.64, 0.42, 0.62, 0.47, 0.53, 0.59, 0.45, 0.41, 0.31, 0.64, 0.5, 0.41, 0.42, 0.46, 0.36, 0.39, 0.36, 0.7, 0.49, 0.68, 0.46, 0.5, 0.7, 0.36, 0.65, 0.6, 0.49, 0.56, 0.98, 0.77, 0.6, 0.7, 0.59, 0.6, 0.33, 0.61, 0.4, 0.34, 0.41, 0.53, 0.51, 0.71, 0.65, 0.74, 0.48, 0.7, 0.52, 0.49, 0.84, 0.32, 0.54, 0.33, 0.66, 0.75, 0.4, 0.78, 0.47, 0.37, 0.54, 0.72, 0.54, 0.43, 0.53, 0.56, 0.55, 0.43, 0.49, 0.59, 0.5, 0.42, 0.41, 0.38, 0.65, 0.27, 0.54, 0.4, 0.57, 0.45, 0.3, 0.67, 0.43, 0.41, 0.55, 0.43, 0.6, 0.35, 0.42, 0.65, 0.38, 0.77, 0.76, 0.52, 0.32, 0.32, 0.37, 0.43, 0.68, 0.57, 0.41, 0.77, 0.81, 0.36, 0.75, 0.49, 0.92, 0.52, 0.76, 0.64, 0.5, 0.49, 0.4, 0.5, 0.46, 0.44, 0.59, 0.57, 0.5, 0.82, 0.4, 0.4, 0.45, 0.32, 0.62, 0.64, 0.82, 0.43, 0.8, 0.3, 0.9, 0.38, 0.51, 0.95, 0.59, 0.72, 0.62, 0.36, 0.45, 0.6, 0.37, 0.48, 0.31, 0.81, 0.45, 0.74, 0.37, 0.6, 0.6, 0.55, 0.56, 0.87, 0.51, 0.33, 0.38, 0.72, 0.79, 0.46, 0.49, 0.66, 0.44, 0.52, 0.58, 0.55, 0.37, 0.53, 0.41, 0.42, 0.39, 0.35, 0.65, 0.44, 0.6, 0.51, 0.74, 0.37, 0.39, 0.38, 0.42, 0.69, 0.58, 0.59, 0.5, 0.39, 0.68, 0.48, 0.32, 0.42, 0.56, 0.43, 0.52, 0.34, 0.38, 0.53, 0.64, 0.6, 0.59, 0.38, 0.65, 0.63, 0.5, 0.54, 0.63, 0.58, 0.75, 0.73, 0.79, 0.46, 0.31, 0.52, 0.44, 0.45, 0.39, 0.68, 0.58, 0.75, 0.57, 0.51, 0.68, 0.36, 0.56, 0.43, 0.52, 0.56, 0.44, 0.37, 0.57, 0.6, 0.47, 0.46, 0.37, 0.45, 0.36, 0.55, 0.48, 0.39, 0.35, 0.63, 0.71, 0.59, 0.8, 0.37, 0.46, 0.47, 0.54, 0.33, 0.64, 0.52, 0.51, 0.52, 0.52, 0.66, 0.55, 0.53, 0.52, 0.59, 0.54], \"xaxis\": \"x2\", \"y\": [0.6660328535674787, 0.4955559099445003, 0.11251030999551548, 0.5313240922219649, 0.7616845263358343, 0.42881839881496897, 0.22146723198036844, 0.2709448900825402, 0.04188686298684474, 0.3198999677935893, 0.586632325439729, 0.3332859260788763, 0.0891770245136605, 0.07249138429342028, 0.0813041402249215, 0.2808128557304226, 0.18155424903412543, 0.14020593233116785, 0.20529540916933675, 0.1755850319354616, 0.5722846846512241, 0.4684623303117058, 0.2863708053899042, 0.4489302200945696, 0.3606737334686688, 0.09834172337505831, 0.1439119889738254, 0.10526388551166177, 0.08976738859769384, 0.15927641460572795, 0.07353544332944184, 0.4894096639868448, 0.24735122968283396, 0.41440459167745447, 0.10107859516115147, 0.4809249647595707, 0.043928674649753696, 0.27268427565697984, 0.07203278686513981, 0.35989685204578803, 0.08410225657903847, 0.09640449279894714, 0.2859044620344169, 0.766491644508495, 0.27194216744256416, 0.11891721880979944, 0.6033870782914414, 0.8445823904457724, 0.4148378249676725, 0.09538880480821377, 0.5822786697287807, 0.2006236885231063, 0.30215903380660414, 0.3526626332448971, 0.22921561702294402, 0.3499358724503807, 0.451050436906263, 0.01968005574460141, 0.3849224947932618, 0.608666907839271, 0.30333177217190177, 0.05732515971384944, 0.08299070223644744, 0.155374347961305, 0.4378217303747408, 0.10641916767178827, 0.3207785913922725, 0.3280003244598044, 0.4747408725557203, 0.27229542413121455, 0.5314247042003052, 0.13834506443323813, 0.652508483608137, 0.1775869136191267, 0.4659209431511335, 0.3288332341233703, 0.47224603889779837, 0.2773569186284155, 0.18590272545123854, 0.6719763059805124, 0.04569198037744582, 0.22473444069733528, 0.0776074933333939, 0.1411968215808168, 0.3654892991508686, 0.06069899520469324, 0.21029328672965164, 0.13919371635861133, 0.16321149678759816, 0.6144435769482088, 0.1388055550317996, 0.0827658987104557, 0.0793107693477757, 0.04994940743047871, 0.46220165202879504, 0.08265172102971341, 0.5554564865761329, 0.10902951494304747, 0.26480674198345266, 0.31816712550642645, 0.20184400370343658, 0.23734670470511587, 0.19264674509953905, 0.03558879485690103, 0.5314247042003052, 0.3013473679880785, 0.8043030592862955, 0.07665185966197174, 0.17816243980233548, 0.14637302723887635, 0.43623195291339645, 0.5773286546676725, 0.06996409198491005, 0.0635191394270278, 0.11839391684253864, 0.03368970372860669, 0.16544292122901683, 0.5002106013252752, 0.20783967621931676, 0.4413184352618238, 0.1377753535318076, 0.017128038770129694, 0.09070427960766203, 0.05237321155563324, 0.46044782253877736, 0.09863911308639095, 0.6058955548956951, 0.07377868677997379, 0.33726125667837825, 0.03705661785513226, 0.03856885477325478, 0.01970319875133708, 0.06623921298607705, 0.655672818127978, 0.36403826442427, 0.375635621083512, 0.25822104517587474, 0.26990817233175546, 0.30316845466795117, 0.21597661143113533, 0.10411587283779344, 0.4582573305440075, 0.28974208538397184, 0.3995654588450376, 0.48407929824265805, 0.2412117545349558, 0.49704114689177337, 0.3112403223054312, 0.13571503940671914, 0.35304273602320047, 0.18963603484652192, 0.06023564559469896, 0.305863422303413, 0.34062746964654456, 0.03532029949184434, 0.20200996882548472, 0.207876095289533, 0.11304202998506685, 0.26487496820305634, 0.46674395287949066, 0.05931266843465788, 0.6063731497207538, 0.053339747820140615, 0.16056749669580483, 0.3366557342021428, 0.18735912995827353, 0.2667542380283816, 0.9197592959547904, 0.13322255285490225, 0.3533185668595151, 0.08763312389948397, 0.343329095265401, 0.1298321532292276, 0.11240742021865013, 0.03412749239977686, 0.23316671381479437, 0.13955591125269062, 0.065615492475942, 0.03940539431326806, 0.04874684240881699, 0.42507109047861347, 0.3720756994829524, 0.20627971812824875, 0.23346983492740092, 0.299872058778726, 0.14688925552714138, 0.20529540916933675, 0.11294333341234963, 0.4523771212155355, 0.15895981664313275, 0.12633289347617382, 0.34801013400503944, 0.063056887931354, 0.09222807982804315, 0.19281104432210028, 0.11843845992675284, 0.1064686731970873, 0.12171087020281346, 0.49704114689177337, 0.4202798549667376, 0.058322454167927695, 0.40418598015134155, 0.7514842711311043, 0.067978575311199, 0.1468497162592186, 0.3655805321171328, 0.36741292271676196, 0.08785516413846428, 0.4223454464089015, 0.09472348251934337, 0.14196098925812006, 0.10013555988874479, 0.32154631204965056, 0.05416575683382341, 0.786126361492164, 0.04696516601190348, 0.26926088858349784, 0.28123172687107445, 0.3094364396730669, 0.04307250962973752, 0.07126159086244754, 0.6143015945908075, 0.495586079448059, 0.46102608015166635, 0.40789311683600216, 0.8929715185951024, 0.1227006502272181, 0.3638055988942468, 0.10470002869891348, 0.29304213908849364, 0.8936703981375603, 0.3534407380188983, 0.0883666731866185, 0.07895584641700149, 0.05166417783587085, 0.4199775765299997, 0.10304865631077798, 0.1041340676595982, 0.11031385635331636, 0.22368578646300386, 0.22137255536682798, 0.0725394352715707, 0.08320759746190642, 0.3577905591727162, 0.36362749207413336, 0.13058702032609693, 0.4306817897420764, 0.4684623303117058, 0.3185463047756948, 0.6991046594229053, 0.33105510290791684, 0.35804773811787727, 0.3499358724503807, 0.17780319308126435, 0.07142366539796174, 0.1504846162366139, 0.28643330026545544, 0.11492102279820171, 0.08716328114311156, 0.12905574960179156, 0.5528531989583015, 0.2852168598030531, 0.3185463047756948, 0.41766807389819915, 0.22818770291371737, 0.10749415552266317, 0.07500089027222667, 0.2150933620687273, 0.4879833184669665, 0.21367083697314282, 0.18281788227943807, 0.11217648511765432, 0.01860460444149037, 0.4990100838788346, 0.3212979959143686, 0.7252893191599291, 0.30018855716775616, 0.2808216200321265, 0.24332849241566534, 0.22583693263898685, 0.307128141019565, 0.12930297020615966, 0.07734813107736227, 0.38078614076753503, 0.037937415915298756, 0.18389331462546077, 0.2015421194948802, 0.10121634311933059, 0.7209948827487924, 0.252131738577411, 0.19866278493931944, 0.5569604587758099, 0.19172534874952063, 0.07516041810443141, 0.18673310211333727, 0.20736440356309183, 0.27568985010185776, 0.1748501221961516, 0.134246332983591, 0.12151400729184814, 0.03860330573341564, 0.16198960071610413, 0.062309112953929935, 0.14943540958877521, 0.46827469198568006, 0.12435295831370408, 0.11768791031746062, 0.10794707492381372, 0.04347111427796346, 0.07423675680829, 0.1602542791395647, 0.19911642350143877, 0.2379444352717226, 0.36664322039668684, 0.10130143557253446, 0.17108028607870185, 0.6143194513817134, 0.5641235853966853, 0.29864316680665437, 0.44752301946823647, 0.13459844499503626, 0.037461465199631894, 0.5002964248569376, 0.4059565893810353, 0.7035957096210382, 0.0629603198376949, 0.25036415064992923, 0.14780834332950044, 0.24800647860056513, 0.10438723399855232, 0.24366911510822187, 0.4574644219698093, 0.8347014835967527, 0.42226245660703365, 0.4073158502222598, 0.47525484003715535, 0.37845934883934684, 0.35325777167774697, 0.4763432908647238, 0.18941100564626978, 0.23853527246002126, 0.27277355193056574, 0.5556171757583562, 0.19481513110659687, 0.7460207524242459, 0.12627308236197843, 0.2115813466591615, 0.4773837842994688, 0.22238536240250728, 0.1978655273089749, 0.32057959349203036, 0.1601330373243487, 0.6256605001243821, 0.34062746964654456, 0.5899158924001677, 0.1273375405407705, 0.6866376712310945, 0.3812864953771038, 0.07918534602430627, 0.10510921928053807, 0.052405178286905496, 0.29010285216427345, 0.5802968836962079, 0.4475494904811408, 0.33107045093633036, 0.6046547135519548, 0.33132995382553565, 0.3391582818855403, 0.37109937806185267, 0.18876467901964422, 0.03244681540368277, 0.6531311156123596, 0.18281848038190407, 0.06840545126676123, 0.23876166598551407, 0.5602062902528231, 0.05478334190217349, 0.18965009362393503, 0.502081053312289, 0.0945975060483667, 0.24937367783354814, 0.14040338921272166, 0.09582424632391484, 0.4879833184669665, 0.07536550594022651, 0.37763546052463404, 0.20240400638142053, 0.06234715971662652, 0.1729504208160284, 0.2536573606029918, 0.1491704939138675, 0.47224603889779837, 0.20734784509414073, 0.1656619584420439, 0.20263687678412212, 0.4576701693643329, 0.3746187330143109, 0.06578487521364562, 0.09359041291034786, 0.15714155813810793, 0.43198081216185935, 0.17693664965610134, 0.14200602748771296, 0.16878839641400256, 0.11131318694256087, 0.43040972974554736, 0.12494266711040569, 0.5286591337585229, 0.3917329141436472, 0.14284790216410748, 0.29931895876037384, 0.3998656181534954, 0.13198036366642862, 0.2166851793268345, 0.164669749255824, 0.3116999397838065, 0.5702002297218003, 0.2867818412254799, 0.05809024612643199, 0.0701620515557333, 0.10493669218879953, 0.03474255021640338, 0.14069518845012563, 0.7697788668098057, 0.44513161239284327, 0.12104291767226882, 0.2823656727566666, 0.28640273091276736, 0.09904459769556595, 0.10889384421684001, 0.1978655273089749, 0.6326587477498924, 0.0766186874204361, 0.07300117689776386, 0.3978521493117628, 0.7293533971641823, 0.24040337450518035, 0.46827469198568006, 0.03737110954461231, 0.48112847828662497, 0.5755848065786346, 0.12151472907643468, 0.332302417201758, 0.3208349144509022, 0.13406270144296106, 0.47820199098358873, 0.024219732643774528, 0.7923035912680444, 0.3099424932714111, 0.8494816644677875, 0.15230116664989468, 0.8795672599938588, 0.34536882843285344, 0.587897812361327, 0.3660303223369904, 0.3074082248441362, 0.1925553058603695, 0.1582957933341015, 0.5297945963993664, 0.1892543681582496, 0.06574637766643598, 0.03286461121245521, 0.6223124217546917, 0.48666930315350876, 0.17200815643270417, 0.27042696199957883, 0.16010429726024444, 0.25291734909108765, 0.22778758435893687, 0.6055190518965303, 0.41989528411161425, 0.2865861541738164, 0.17344095530188786, 0.4163761941495938, 0.24610426408478792, 0.029106329843254564, 0.5849270471051293, 0.09607886499379148, 0.4890296174547498, 0.11193395874659995, 0.3667485749721523, 0.29672938182784603, 0.13696827462710404, 0.03986507081677082, 0.41542023534722683, 0.1642424989032959, 0.041559354155004224, 0.1266666793707928, 0.5259198205822933, 0.42123490919744344, 0.6147437654518444, 0.42849246998341506, 0.04874684240881699, 0.16870816563337898, 0.35179373534084035, 0.4552463954734379, 0.1543174595222413, 0.4641274821418986, 0.1106599594415556, 0.40441066041397966, 0.05916303638108533, 0.24194101851814365, 0.5755848065786346, 0.23631147082452741, 0.04679471849088612, 0.33132995382553565, 0.6031606095022326, 0.16900214819844117, 0.9322526967181247, 0.1065938389205352, 0.0540586741766943, 0.14920224829950646, 0.03054451782098533, 0.13595064656866984, 0.15908339514281045, 0.09402391562754642, 0.27219479721363327, 0.10477531970828624, 0.6046547135519548, 0.04412971358840656, 0.0821245873848182, 0.24953715645213048, 0.24311299470472425, 0.679537413518331, 0.02875041056121841, 0.2874129658970298, 0.17131102264191878, 0.07042427222914205, 0.1577516063520068, 0.39934634677258996, 0.42249259173992826, 0.24940231538328683, 0.46827469198568006, 0.040988937643475554, 0.034828704291737345, 0.26663563965858417, 0.22421743312747255, 0.10716094829621758, 0.7421831263598226, 0.4644511163280224, 0.1591307416719686, 0.21502194578256428, 0.12883185373794437, 0.15520095945599266, 0.04280666734842442, 0.06928764484923078, 0.3578757504587543, 0.0760792945579073, 0.06637805380770656, 0.5755848065786346, 0.4326356954473739, 0.16985579355455038, 0.47152805642545803, 0.11644579282256762, 0.11790522998710073, 0.5438286352264949, 0.41561805514360906, 0.050606352251634235, 0.21836830194439782, 0.22298545275517268, 0.1504846162366139, 0.16819644397314482, 0.47796113776613436, 0.14100197907825862, 0.7878397890034206, 0.12176963827920351, 0.09814942480303201, 0.23162396036129984, 0.04400104962869911, 0.061588508633294015, 0.2774601068082493, 0.40816383821078206, 0.14036214651023216, 0.11837607594274324, 0.0703155477214753, 0.17002415827487982, 0.24611532014486182, 0.06874641727313702, 0.30975746960573625, 0.07004288447243323, 0.6453829176356538, 0.3880412370469972, 0.10205495289732236, 0.12171087020281346, 0.38550692709735157, 0.4398162761337091, 0.5769741243450848, 0.48842976274850136, 0.3866799681687785, 0.17129518728202664, 0.5711206597512044, 0.4456070955069118, 0.4585850027539752, 0.25462747480751524, 0.34771016550763867, 0.35548618548401445, 0.07878090041588082, 0.3008706318705062, 0.08117751180329491, 0.055511805197920094, 0.1600174453683395, 0.35597309965685686, 0.5473978930443646, 0.3321771897262046, 0.14643302530661162, 0.7653011157176768, 0.24188431843396252, 0.16704799028757666, 0.41136103198090634, 0.5749869949413896, 0.709238838470871, 0.09340318303147321, 0.602429869503323, 0.04154705947390969, 0.7519582179986716, 0.15993940416551844, 0.04372375151311325, 0.4076899811241429, 0.4644511163280224, 0.3133137248525114, 0.24628490675063597, 0.06972977174174444, 0.15949948541388637, 0.2241543425141257, 0.1729876202034616, 0.07290025122558275, 0.1220000714032804, 0.36493953208423235, 0.09420126302076737, 0.026726938234992392, 0.7199273032686843, 0.4606762448039463, 0.04906818437448113, 0.19446415942665518, 0.14876853598344464, 0.3247816953453747, 0.023320858692869595, 0.7310618090422621, 0.48944479260603346, 0.20357574295749958, 0.0840537250624015, 0.5368744051465595, 0.21101467800102214, 0.46682279298460017, 0.3749869638443927, 0.46592999202179275, 0.10188412989688433, 0.15751976448865512], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"sulphates\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"sulphates\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}}, {\"id\": \"All_alcohol\", \"params\": {\"data\": [{\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Reference<br>alcohol=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [11.2, 10.0, 12.7, 10.5, 9.4, 10.1, 13.5, 10.4, 12.4, 11.5, 10.0, 9.8, 10.5, 9.1, 9.5, 9.6, 11.7, 11.2, 12.3, 11.9, 10.0, 12.3, 10.1, 11.9, 11.5, 10.0, 13.6, 11.3, 9.6, 12.8, 12.2, 10.0, 10.9, 11.8, 12.5, 10.0, 9.5, 12.9, 12.8, 11.3, 11.5, 10.2, 12.1, 9.7, 10.0, 8.8, 9.0, 12.3, 12.0, 12.0, 9.7, 8.9, 12.4, 10.3, 11.1, 8.6, 10.8, 11.8, 10.8, 12.5, 10.4, 12.8, 12.2, 10.2, 9.8, 9.2, 11.7, 10.5, 9.8, 13.4, 12.2, 13.4, 11.0, 12.3, 10.7, 9.8, 12.8, 12.3, 10.9, 12.4, 10.1, 13.5, 11.0, 10.4, 12.2, 11.3, 11.3, 9.9, 13.4, 9.3, 10.4, 12.2, 10.2, 12.4, 10.6, 11.3, 10.6, 12.6, 11.2, 9.4, 10.2, 8.9, 11.9, 11.0, 12.5, 9.7, 12.2, 10.6, 11.4, 10.75, 12.4, 8.8, 9.8, 10.9, 10.7, 12.7, 11.4, 11.5, 9.1, 11.0, 9.0, 9.8, 10.4, 8.9, 9.6, 10.5, 9.5, 8.9, 11.0, 9.9, 10.6, 14.0, 9.1, 11.0, 9.9, 12.9, 10.0, 11.0, 13.4, 10.0, 12.7, 10.5, 10.5, 10.6, 9.3, 10.6, 11.7, 10.9, 10.6, 9.2, 9.0, 10.5, 10.3, 9.5, 9.0, 11.9, 11.4, 12.1, 11.4, 12.0, 10.5, 9.8, 11.7, 12.1, 10.4, 9.6, 10.2, 10.1, 8.9, 12.1, 11.1, 9.4, 9.7, 10.5, 10.5, 10.1, 10.0, 9.8, 11.2, 10.8, 10.7, 12.1, 11.9, 12.7, 9.6, 11.0, 13.55, 10.1, 11.6, 10.3, 11.2, 12.8, 12.5, 12.2, 9.7, 12.1, 8.7, 11.0, 11.8, 10.5, 10.7, 12.5, 12.2, 11.8, 10.6, 12.0, 10.9, 10.8, 8.8, 9.5, 10.4, 10.8, 12.1, 10.8, 11.5, 10.0, 11.5, 10.8, 10.9, 12.8, 10.2, 8.7, 10.5, 12.9, 10.6, 10.8, 9.1, 9.1, 10.8, 10.6, 11.0, 9.9, 11.5, 10.4, 11.9, 12.2, 11.0, 9.8, 11.8, 10.7, 10.8, 9.0, 9.2, 8.8, 9.5, 11.4, 10.1, 10.1, 9.3, 12.3, 8.6, 9.1, 10.8, 11.2, 11.2, 11.0, 12.0, 9.4, 12.6, 11.5, 9.0, 12.2, 10.9, 12.3, 11.6, 11.2, 13.2, 12.5, 10.3, 13.0, 10.8, 11.4, 11.4, 11.0, 13.0, 9.9, 10.9, 11.7, 12.8, 10.5, 11.2, 11.6, 12.2, 12.75, 11.9, 11.9, 9.3, 10.0, 9.6, 12.0, 10.1, 12.0, 12.4, 11.2, 10.9666666666667, 9.1, 9.9, 10.0, 10.9, 10.7, 12.6, 10.5, 12.3, 11.0, 9.7, 11.0, 11.4, 11.5, 9.0, 10.1, 9.5, 9.0, 12.4, 11.3, 11.0, 9.7, 9.4, 12.8, 10.9, 12.2, 12.6, 11.4, 12.6, 11.7, 11.0, 9.5, 9.7, 11.2, 9.7, 12.2, 11.0, 12.4, 9.3, 10.4, 10.8, 9.1, 10.5, 12.8, 9.6, 10.5, 9.9, 11.1, 12.1, 9.5, 9.9, 10.0, 9.4, 9.0, 12.4, 8.9, 10.8, 11.2, 10.9, 11.0, 9.6, 11.4, 11.0, 12.4, 10.1, 12.2, 9.4, 10.4, 10.3, 11.5, 9.8, 9.7, 12.6, 11.2, 12.0, 9.0, 10.8, 10.3, 10.4, 10.1, 12.9, 12.5, 12.7, 10.4, 9.9, 9.5, 9.2, 10.8, 9.1, 9.3, 9.0, 10.9, 9.0, 9.5, 10.5, 12.2, 11.2666666666667, 8.9, 9.9, 11.0, 10.4, 11.0, 11.8, 10.6, 12.6, 9.4, 11.5, 9.3, 12.5, 8.8, 11.5, 10.4, 10.6, 11.3, 10.8, 8.7, 10.4, 11.1, 11.3, 11.2, 10.5, 11.9, 11.6, 9.1, 10.8, 9.4, 10.5, 10.8, 9.6, 9.0, 10.2, 11.0, 11.2, 11.4333333333333, 12.2, 12.0, 12.4, 12.4, 12.8, 11.6333333333333, 10.0, 13.1, 11.5, 11.3, 12.3, 10.6, 11.0, 10.7, 11.8, 10.1, 10.2, 10.4, 9.6, 9.5, 11.0, 10.9, 12.6, 12.4, 11.9, 10.2, 9.7, 13.0, 10.2, 10.9, 9.9, 9.1, 11.2, 9.5, 11.0, 9.2, 11.5, 11.0666666666667, 10.4, 11.0, 10.4, 13.4, 9.6, 9.4, 8.7, 8.8, 12.4, 12.9, 12.4, 11.0, 10.2, 10.0, 11.7, 8.5, 8.8, 9.7, 9.0, 12.0, 12.5, 9.0, 11.7, 9.2, 9.4, 9.5, 9.2, 10.3, 11.5, 11.4, 9.6, 10.1, 12.8, 10.5, 10.5, 12.0, 11.7, 9.0, 12.5, 10.1, 11.4, 9.9, 12.3, 12.2, 12.3, 12.1, 10.4, 9.0, 12.1, 12.3, 11.9, 9.3, 11.6, 12.7, 9.5, 13.2, 13.0, 11.5, 9.0, 12.0, 9.3, 11.6, 9.3, 11.2, 10.5, 10.1, 10.7, 10.1, 11.4, 10.7, 10.5, 12.1, 11.0, 12.2, 10.5, 12.8, 10.0, 10.6, 12.2, 13.2, 11.6, 9.4, 12.0, 11.0, 10.0, 11.3, 10.8, 9.7, 10.4, 10.4, 10.8, 9.2, 9.3, 11.4, 9.4, 9.8, 11.2, 9.8, 13.6, 11.0, 11.3666666666667, 10.5, 12.5, 10.1, 12.1, 10.1, 11.5, 12.7, 12.0, 12.9, 9.0, 10.6, 10.5, 10.5, 11.9, 12.5, 10.1, 10.7, 12.2, 10.8, 13.2, 10.8, 10.3, 11.2, 9.9, 12.5, 9.5, 12.8, 10.2, 10.1, 11.1, 10.5, 11.1, 9.2, 11.2, 11.7, 10.2, 11.0, 11.7, 8.8, 10.8, 9.7, 11.5, 8.8, 10.9333333333333, 10.5, 9.8, 10.7, 12.7, 11.8, 10.1, 9.4, 11.3, 10.2, 10.4, 11.3, 10.0, 10.9, 9.6, 10.9, 9.6, 11.7, 9.53333333333333, 12.3, 10.2, 9.5, 9.2, 11.0, 11.7, 11.3, 10.0, 9.53333333333333, 10.8, 9.5, 11.8, 9.9, 12.0, 11.8, 9.5], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Current<br>alcohol=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [9.0, 9.0, 10.9, 9.4, 9.5, 9.8, 10.1, 10.8, 12.0, 10.5, 10.0, 11.0, 12.4, 12.2, 12.8, 10.6, 11.4, 11.5, 10.3, 12.4, 8.9, 9.2, 10.5, 9.6, 10.1, 12.2, 11.0, 11.3, 12.5, 12.3, 13.0, 10.1, 9.5, 9.2, 12.1, 8.7, 11.3333333333333, 9.3, 13.4, 11.8, 12.4, 11.3, 11.8, 8.7, 9.4, 12.7, 9.0, 9.3, 9.5, 12.5, 9.2, 12.8, 10.4, 10.5, 11.4, 8.8, 9.5, 14.0, 9.8, 9.1, 10.4, 12.3, 11.8, 11.2, 9.3, 12.5, 11.0, 10.7, 10.55, 9.6, 9.1, 11.7, 9.2, 11.0, 9.7, 9.3, 9.3, 10.2, 10.8, 9.4, 12.2, 10.2, 11.4, 11.9, 9.8, 12.0, 10.9, 11.5, 11.5, 9.5, 10.8, 11.9, 12.6, 13.2, 10.1, 12.6, 10.0333333333333, 13.1, 10.2, 11.1, 11.1, 9.9, 11.2, 13.2, 9.1, 9.5, 9.4, 12.6, 11.6, 11.3, 10.7, 8.8, 12.3, 12.6, 12.4, 12.4, 11.3, 9.5, 10.4, 11.5, 11.8, 12.1, 12.0, 12.2, 10.9, 12.3, 9.2, 12.3, 10.2, 12.0, 12.5, 13.6, 12.5, 9.1, 9.8, 9.3, 10.5, 10.8, 11.6, 11.0, 11.2, 12.7, 10.8, 9.4, 9.6, 10.5, 9.4, 10.5, 10.9, 10.2, 9.8, 11.2, 9.5, 9.2, 12.5, 12.0, 10.6, 11.3, 10.0, 9.0, 12.7, 9.5, 13.4, 11.7, 10.3, 11.4, 11.5, 9.9, 11.0, 9.2, 11.4, 10.2, 10.9, 11.6, 14.0, 11.8, 11.4, 13.1, 13.6, 12.5, 11.0, 9.2, 9.5, 10.7, 9.4, 11.6, 10.3, 12.6, 8.8, 11.1, 11.0, 9.4, 11.9, 11.9, 10.8, 12.2, 10.5, 12.5, 9.4, 9.8, 12.5, 10.4, 9.6, 11.9, 11.0, 10.6, 9.7, 12.0, 10.1, 10.2, 11.4, 12.8, 10.6, 12.4, 9.0, 12.8, 10.0, 11.3, 11.6, 12.8, 12.2, 10.0, 10.8, 9.5, 9.0, 9.2, 11.2, 10.3, 12.0, 11.2, 9.25, 10.1, 10.8, 12.1, 12.8, 8.9, 12.3, 11.2, 12.0, 11.2, 10.7, 13.3, 13.0, 10.3, 10.4, 11.4, 8.8, 9.2, 10.7, 10.1, 9.6, 9.2, 8.8, 11.6, 10.7, 9.8, 10.2, 11.0, 12.2, 12.2, 10.4, 10.6, 10.7, 10.2, 11.1, 12.5, 12.7, 10.6, 9.3, 9.9, 9.9, 11.3, 12.6, 11.0, 9.3, 9.9, 10.7, 10.4, 10.6, 11.2, 9.1, 11.9, 11.8, 10.0, 12.8, 11.6, 11.45, 11.3, 9.7, 10.2, 11.0, 9.5, 10.1, 12.8, 10.4, 11.0, 9.2, 12.2, 11.0, 11.8, 12.9, 10.3, 11.3, 12.3, 9.0, 11.0, 12.0, 11.0, 12.6, 11.2, 10.5, 11.5, 11.6, 9.3, 11.4, 11.0, 9.8, 9.8, 10.1, 9.5, 12.5, 13.0, 10.3, 9.1, 10.4, 12.7, 11.0, 11.5, 9.6, 12.6, 10.6, 9.0, 9.4, 9.5, 9.2, 9.4, 9.1, 10.0, 10.2, 11.9, 10.8, 10.2, 9.7, 11.4, 9.5, 10.9, 11.4, 10.5, 10.0, 11.7, 11.3, 11.5, 8.8, 9.2, 9.3, 12.0, 10.0, 10.2, 10.4, 12.5, 12.9, 10.3, 8.7, 8.8, 10.2, 9.2, 8.9, 10.3, 9.4, 10.2, 13.05, 10.1, 10.8, 11.4, 11.7, 10.8, 12.0, 11.2, 9.6, 12.4, 9.4, 11.5, 12.2, 9.3, 11.9, 10.5, 11.0, 11.65, 11.4, 11.3, 11.0, 9.3, 11.2, 10.2, 10.2, 10.8, 9.0, 12.5, 12.6, 10.8, 10.6, 11.5, 11.4, 9.5, 12.7, 9.8, 11.0, 10.5, 9.0, 12.5, 9.6, 10.0, 10.4, 9.8, 10.6, 10.3, 9.3, 10.6, 12.6, 12.8, 11.3, 11.9, 12.1, 10.3, 9.2, 11.2, 10.2, 10.6, 12.4, 12.0, 11.7, 10.2, 11.4, 12.8, 10.5, 9.0, 10.8, 9.0, 12.0, 9.0, 9.1, 12.5, 9.8, 9.4, 12.0, 9.2, 14.0, 9.2, 10.0, 9.7, 10.6, 9.2, 9.5, 9.8, 9.0, 11.0, 11.0, 10.65, 9.0, 11.3, 11.3, 13.3, 9.4, 8.7, 10.9, 10.4, 12.7, 10.3, 11.0, 10.6, 10.4, 10.3, 12.5, 8.7, 10.3, 12.8, 9.5, 11.3, 10.2, 11.4, 10.0, 10.6, 11.4, 11.9, 9.6, 11.0, 12.7, 12.5, 9.7, 10.8, 10.1, 9.1, 12.5, 11.0, 9.8, 9.8, 11.4, 10.0, 11.5, 10.3, 11.75, 10.3, 9.1, 11.0, 13.5, 8.9, 9.4, 12.0, 10.1, 12.3, 12.9, 11.3, 14.2, 11.4, 11.5, 12.6, 10.1, 11.7, 9.2, 12.4, 13.0, 10.5, 11.0, 9.2, 11.6, 9.3, 10.7, 12.6, 11.5, 9.1, 11.3, 10.0, 9.0, 13.0, 12.5, 11.6, 11.5, 12.1, 9.7, 9.5, 11.2, 11.3333333333333, 10.9, 11.4, 13.1, 11.5, 10.9, 11.8, 12.3, 9.1, 9.5, 11.4, 10.5, 11.1, 11.0, 10.0, 10.1, 12.3, 11.9, 11.0, 9.8, 10.4, 8.7, 11.4, 9.1, 12.1, 11.4, 11.2, 13.0, 12.5, 10.5, 10.3, 11.1, 12.0, 12.4, 11.0, 11.0, 12.3, 11.0, 12.4, 9.5, 9.6, 10.5, 12.5, 10.0, 10.0, 10.2, 9.5, 10.2, 11.1, 10.0, 10.4, 10.0, 10.0, 11.2, 10.4, 12.5, 9.6, 11.5, 12.7, 10.8, 12.2, 9.4, 11.2, 10.5, 9.8, 10.5, 10.6, 10.4, 9.9, 9.6, 10.5, 9.1, 11.9, 9.8, 12.1, 12.9, 10.4, 9.5, 12.2, 10.4, 12.4, 11.0, 10.0, 10.8, 12.15, 11.45, 10.2, 11.8, 12.1, 9.8, 10.0, 12.7, 11.6, 12.3, 10.2, 13.4, 9.5, 11.0, 12.0, 12.8, 9.2, 8.8, 9.9, 8.9, 9.5, 13.4, 11.0], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Reference<br>alcohol=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [8.7, 12.6, 10.6, 10.5, 9.4, 9.5, 9.7, 10.4, 9.3, 9.7, 10.2, 11.0, 8.7, 10.7, 9.3, 9.5, 9.5, 9.8, 9.2, 10.9, 9.5, 9.1, 11.2, 11.2, 9.9, 9.8, 9.9, 10.1, 9.1, 10.1, 9.6, 10.4, 10.8, 10.0, 9.1, 10.1, 10.0, 10.8, 9.6, 9.2, 9.2, 10.6, 9.5, 8.9, 9.5, 10.1, 9.1, 10.5, 10.6, 9.3, 9.4, 9.1, 9.3, 9.6, 9.8, 9.2, 10.6, 10.6, 10.1, 11.0, 9.3, 10.0, 12.6, 9.4, 9.2, 10.4, 9.2, 9.9, 9.8, 10.1, 8.8, 11.0, 8.7, 11.4, 10.2, 10.0, 8.9, 11.1, 9.2, 12.0, 10.0, 11.1, 9.0, 9.05, 9.8, 10.9, 10.1, 10.0, 11.6, 9.2, 11.0, 9.4, 9.8, 8.7, 9.1, 9.5, 9.1, 9.5, 9.2, 9.6, 9.2, 9.7, 10.2, 9.0, 9.3, 9.3, 10.3, 11.4, 9.0, 10.5, 10.4, 9.9, 9.2, 9.0, 10.4, 9.6, 8.7, 11.4, 10.1, 9.4, 8.9, 12.8, 9.1, 9.7, 8.8, 9.5, 10.6, 9.4, 9.5, 9.4, 9.6, 11.3, 9.4, 9.2, 9.3, 10.0, 11.05, 9.1, 11.2, 9.9, 9.2, 9.4, 11.4, 9.2, 9.9, 9.0, 11.0, 10.6, 9.7, 9.6, 11.1, 9.5, 11.4, 10.2, 9.2, 9.8, 9.2, 9.5, 9.9, 10.8, 11.5, 10.2, 9.6, 8.4, 9.5, 11.5, 9.53333333333333, 9.1, 9.4, 9.2, 9.6, 11.5, 9.4, 9.3, 9.4, 10.3, 9.5, 11.4, 10.2, 9.2, 9.6, 10.9, 10.2, 9.7, 9.0, 9.4, 10.2, 11.8, 9.4, 9.0, 9.6, 10.7, 9.4, 11.0, 9.4, 9.7, 9.3, 9.5, 9.5, 9.7, 10.3, 8.8, 8.8, 11.0, 11.3, 9.0, 10.5, 9.5, 11.4, 10.8, 9.9, 10.4, 9.6, 10.0, 9.0, 9.0, 9.4, 10.8, 9.2, 10.0, 9.7, 11.2, 9.5, 10.0, 10.2, 9.2, 9.2, 9.0, 10.2, 9.2, 10.1, 10.5, 9.6, 8.7, 12.0, 11.1, 9.1, 10.6, 10.0, 9.3, 10.8, 9.5, 9.0, 9.4, 11.2, 10.5, 9.4, 10.5, 8.8, 9.3, 11.2, 10.7, 10.8, 9.6, 9.5, 9.1, 9.7, 10.4, 9.5, 9.5, 10.5, 9.2, 9.9, 9.5, 9.0, 10.8, 10.6, 10.0, 10.6, 9.2, 8.9, 9.0, 9.9, 9.9, 9.6, 9.7, 10.5, 9.3, 9.9, 10.5, 10.0, 9.8, 9.5, 9.3, 10.2, 9.5, 9.5, 9.4, 10.8, 10.2, 11.1, 10.3, 11.0, 11.2, 9.4, 10.2, 9.0, 8.7, 8.9, 9.5, 11.4, 10.7, 10.0, 8.6, 9.7, 10.6, 9.3, 9.3, 9.4, 9.3, 9.3, 9.5, 9.8, 9.5, 9.8, 9.3, 9.3, 9.4, 9.5, 9.8, 10.5, 9.5, 10.9, 9.5, 9.6, 9.5, 14.9, 10.4, 9.2, 9.4, 8.7, 9.5, 9.7, 9.4, 9.8, 9.4, 8.9, 9.5, 10.9, 9.0, 9.6, 9.4, 10.8, 9.6, 9.2, 9.8, 9.2, 10.0, 10.1, 9.4, 9.4, 10.0, 9.7, 13.0, 10.0], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Current<br>alcohol=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [11.0, 8.9, 11.0, 10.1, 8.9, 8.7, 10.7, 9.7, 10.0, 9.9, 9.2, 10.5, 9.8, 9.2, 9.1, 8.8, 9.0, 10.3, 12.0, 10.8, 11.7, 9.7, 9.7, 8.9, 12.0, 10.9, 9.4, 9.7, 9.8, 10.2, 8.7, 8.7, 9.6, 9.3, 10.5, 9.5, 9.4, 9.6, 9.4, 9.3, 12.4, 9.3, 9.2, 9.3, 11.4, 10.5666666666667, 9.4, 9.8, 9.0, 10.9, 10.4, 8.8, 11.5, 11.0, 9.7, 9.3, 9.8, 11.1, 9.4, 9.4, 11.1, 9.7, 9.0, 9.7, 9.3, 10.9, 9.2, 9.4, 10.7, 9.0, 9.5, 11.3, 10.4666666666667, 9.4, 10.5, 11.1, 8.9, 10.4, 9.2, 9.0, 9.6, 9.9, 9.5, 9.5, 10.1, 10.4, 9.0, 8.9, 9.8, 10.5, 9.5, 9.5, 9.7, 9.2, 9.7, 10.9, 10.8, 9.2, 8.9, 9.2, 9.4, 10.6, 8.8, 9.3, 9.4, 10.5, 9.4, 9.5, 9.2, 9.1, 9.4, 9.1, 9.8, 9.9, 10.6, 10.6, 9.4, 9.4, 9.5, 11.0, 10.2, 11.4, 10.6, 9.5, 10.1, 9.4, 11.0, 9.7, 10.1, 10.5, 13.4, 10.4, 9.2, 10.5, 9.4, 8.7, 11.4, 10.4, 9.4, 8.8, 10.7, 10.1, 10.3, 11.7, 9.5, 10.3, 10.9, 9.2, 9.5, 10.0, 9.2, 10.0, 10.5, 9.5, 10.1, 10.5, 10.7, 9.4, 9.6, 9.3, 10.4, 9.0, 10.4, 9.2, 9.0, 10.4, 11.3, 10.9, 11.0, 10.3, 9.2, 10.5, 9.4, 10.2, 9.5, 12.4, 10.1, 9.3, 8.8, 10.6, 10.3, 8.0, 10.3, 9.8, 10.5, 10.5, 9.3, 9.2, 10.2, 9.3, 9.7, 9.7, 10.1, 11.1, 8.6, 9.5, 9.1, 9.8, 9.1, 9.6, 9.5, 9.0, 9.0, 9.4, 11.4, 9.4, 9.0, 9.6, 9.0, 8.6, 10.2, 9.0, 9.7, 10.5, 9.3, 11.5, 9.0, 10.2, 9.3, 9.8, 8.7, 9.3, 9.3, 9.4, 9.1, 10.0, 9.1, 10.3, 10.6, 10.1, 8.8, 10.4, 8.8, 9.7, 9.6, 9.4, 9.8, 10.9, 9.2, 11.4, 9.2, 9.7, 10.9, 9.4, 11.4, 10.0, 10.7, 9.3, 9.4, 10.0, 9.0, 8.6, 10.6, 8.8, 9.9, 8.8, 9.4, 9.5, 9.5, 10.8, 9.8, 10.0, 10.1, 10.1, 9.5, 10.8, 9.7, 11.4, 12.2, 9.6, 11.4, 10.0, 9.3, 9.6, 10.2, 9.0, 9.5, 9.5, 10.1, 9.2, 10.0, 9.5, 11.4, 10.9, 9.2, 11.2, 10.1, 9.1, 11.4, 9.8, 9.5, 9.7, 9.2, 9.5, 11.1, 10.2, 9.5, 9.0, 9.2, 10.3, 11.4, 10.6, 10.4, 9.3, 9.5, 10.8, 10.5, 9.5, 9.0, 9.4, 9.4, 9.6, 10.2, 8.7, 9.9, 8.8, 9.8, 9.5, 9.5, 9.3, 11.8, 9.4, 10.1, 9.5, 11.5, 9.4, 8.8, 10.4, 9.5, 10.4666666666667, 9.8, 9.5, 10.5, 11.4, 9.7, 10.4, 9.3, 10.2, 8.8, 10.7, 8.9, 9.2, 10.4, 9.8, 8.4, 10.3, 9.3, 11.0, 8.8, 10.0, 9.3, 11.4], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Reference\", \"x\": 0.245, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Current\", \"x\": 0.755, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"barmode\": \"overlay\", \"legend\": {\"title\": {\"text\": \"target\"}, \"tracegroupgap\": 0}, \"margin\": {\"t\": 60}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.49], \"title\": {\"text\": \"alcohol\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.51, 1.0], \"matches\": \"x\", \"title\": {\"text\": \"alcohol\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"count\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}}}}, {\"id\": \"alcohol_good\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (ref)\", \"type\": \"scatter\", \"x\": [11.2, 10.0, 12.7, 10.5, 9.4, 10.1, 13.5, 10.4, 12.4, 11.5, 10.0, 9.8, 10.5, 9.1, 9.5, 9.6, 11.7, 11.2, 12.3, 11.9, 10.0, 12.3, 10.1, 11.9, 11.5, 10.0, 13.6, 11.3, 9.6, 12.8, 12.2, 10.0, 10.9, 11.8, 12.5, 10.0, 9.5, 12.9, 12.8, 11.3, 11.5, 10.2, 12.1, 9.7, 10.0, 8.8, 9.0, 12.3, 12.0, 12.0, 9.7, 8.9, 12.4, 10.3, 11.1, 8.6, 10.8, 11.8, 10.8, 12.5, 10.4, 12.8, 12.2, 10.2, 9.8, 9.2, 11.7, 10.5, 9.8, 13.4, 12.2, 13.4, 11.0, 12.3, 10.7, 9.8, 12.8, 12.3, 10.9, 12.4, 10.1, 13.5, 11.0, 10.4, 12.2, 11.3, 11.3, 9.9, 13.4, 9.3, 10.4, 12.2, 10.2, 12.4, 10.6, 11.3, 10.6, 12.6, 11.2, 9.4, 10.2, 8.9, 11.9, 11.0, 12.5, 9.7, 12.2, 10.6, 11.4, 10.75, 12.4, 8.8, 9.8, 10.9, 10.7, 12.7, 11.4, 11.5, 9.1, 11.0, 9.0, 9.8, 10.4, 8.9, 9.6, 10.5, 9.5, 8.9, 11.0, 9.9, 10.6, 14.0, 9.1, 11.0, 9.9, 12.9, 10.0, 11.0, 13.4, 10.0, 12.7, 10.5, 10.5, 10.6, 9.3, 10.6, 11.7, 10.9, 10.6, 9.2, 9.0, 10.5, 10.3, 9.5, 9.0, 11.9, 11.4, 12.1, 11.4, 12.0, 10.5, 9.8, 11.7, 12.1, 10.4, 9.6, 10.2, 10.1, 8.9, 12.1, 11.1, 9.4, 9.7, 10.5, 10.5, 10.1, 10.0, 9.8, 11.2, 10.8, 10.7, 12.1, 11.9, 12.7, 9.6, 11.0, 13.55, 10.1, 11.6, 10.3, 11.2, 12.8, 12.5, 12.2, 9.7, 12.1, 8.7, 11.0, 11.8, 10.5, 10.7, 12.5, 12.2, 11.8, 10.6, 12.0, 10.9, 10.8, 8.8, 9.5, 10.4, 10.8, 12.1, 10.8, 11.5, 10.0, 11.5, 10.8, 10.9, 12.8, 10.2, 8.7, 10.5, 12.9, 10.6, 10.8, 9.1, 9.1, 10.8, 10.6, 11.0, 9.9, 11.5, 10.4, 11.9, 12.2, 11.0, 9.8, 11.8, 10.7, 10.8, 9.0, 9.2, 8.8, 9.5, 11.4, 10.1, 10.1, 9.3, 12.3, 8.6, 9.1, 10.8, 11.2, 11.2, 11.0, 12.0, 9.4, 12.6, 11.5, 9.0, 12.2, 10.9, 12.3, 11.6, 11.2, 13.2, 12.5, 10.3, 13.0, 10.8, 11.4, 11.4, 11.0, 13.0, 9.9, 10.9, 11.7, 12.8, 10.5, 11.2, 11.6, 12.2, 12.75, 11.9, 11.9, 9.3, 10.0, 9.6, 12.0, 10.1, 12.0, 12.4, 11.2, 10.9666666666667, 9.1, 9.9, 10.0, 10.9, 10.7, 12.6, 10.5, 12.3, 11.0, 9.7, 11.0, 11.4, 11.5, 9.0, 10.1, 9.5, 9.0, 12.4, 11.3, 11.0, 9.7, 9.4, 12.8, 10.9, 12.2, 12.6, 11.4, 12.6, 11.7, 11.0, 9.5, 9.7, 11.2, 9.7, 12.2, 11.0, 12.4, 9.3, 10.4, 10.8, 9.1, 10.5, 12.8, 9.6, 10.5, 9.9, 11.1, 12.1, 9.5, 9.9, 10.0, 9.4, 9.0, 12.4, 8.9, 10.8, 11.2, 10.9, 11.0, 9.6, 11.4, 11.0, 12.4, 10.1, 12.2, 9.4, 10.4, 10.3, 11.5, 9.8, 9.7, 12.6, 11.2, 12.0, 9.0, 10.8, 10.3, 10.4, 10.1, 12.9, 12.5, 12.7, 10.4, 9.9, 9.5, 9.2, 10.8, 9.1, 9.3, 9.0, 10.9, 9.0, 9.5, 10.5, 12.2, 11.2666666666667, 8.9, 9.9, 11.0, 10.4, 11.0, 11.8, 10.6, 12.6, 9.4, 11.5, 9.3, 12.5, 8.8, 11.5, 10.4, 10.6, 11.3, 10.8, 8.7, 10.4, 11.1, 11.3, 11.2, 10.5, 11.9, 11.6, 9.1, 10.8, 9.4, 10.5, 10.8, 9.6, 9.0, 10.2, 11.0, 11.2, 11.4333333333333, 12.2, 12.0, 12.4, 12.4, 12.8, 11.6333333333333, 10.0, 13.1, 11.5, 11.3, 12.3, 10.6, 11.0, 10.7, 11.8, 10.1, 10.2, 10.4, 9.6, 9.5, 11.0, 10.9, 12.6, 12.4, 11.9, 10.2, 9.7, 13.0, 10.2, 10.9, 9.9, 9.1, 11.2, 9.5, 11.0, 9.2, 11.5, 11.0666666666667, 10.4, 11.0, 10.4, 13.4, 9.6, 9.4, 8.7, 8.8, 12.4, 12.9, 12.4, 11.0, 10.2, 10.0, 11.7, 8.5, 8.8, 9.7, 9.0, 12.0, 12.5, 9.0, 11.7, 9.2, 9.4, 9.5, 9.2, 10.3, 11.5, 11.4, 9.6, 10.1, 12.8, 10.5, 10.5, 12.0, 11.7, 9.0, 12.5, 10.1, 11.4, 9.9, 12.3, 12.2, 12.3, 12.1, 10.4, 9.0, 12.1, 12.3, 11.9, 9.3, 11.6, 12.7, 9.5, 13.2, 13.0, 11.5, 9.0, 12.0, 9.3, 11.6, 9.3, 11.2, 10.5, 10.1, 10.7, 10.1, 11.4, 10.7, 10.5, 12.1, 11.0, 12.2, 10.5, 12.8, 10.0, 10.6, 12.2, 13.2, 11.6, 9.4, 12.0, 11.0, 10.0, 11.3, 10.8, 9.7, 10.4, 10.4, 10.8, 9.2, 9.3, 11.4, 9.4, 9.8, 11.2, 9.8, 13.6, 11.0, 11.3666666666667, 10.5, 12.5, 10.1, 12.1, 10.1, 11.5, 12.7, 12.0, 12.9, 9.0, 10.6, 10.5, 10.5, 11.9, 12.5, 10.1, 10.7, 12.2, 10.8, 13.2, 10.8, 10.3, 11.2, 9.9, 12.5, 9.5, 12.8, 10.2, 10.1, 11.1, 10.5, 11.1, 9.2, 11.2, 11.7, 10.2, 11.0, 11.7, 8.8, 10.8, 9.7, 11.5, 8.8, 10.9333333333333, 10.5, 9.8, 10.7, 12.7, 11.8, 10.1, 9.4, 11.3, 10.2, 10.4, 11.3, 10.0, 10.9, 9.6, 10.9, 9.6, 11.7, 9.53333333333333, 12.3, 10.2, 9.5, 9.2, 11.0, 11.7, 11.3, 10.0, 9.53333333333333, 10.8, 9.5, 11.8, 9.9, 12.0, 11.8, 9.5], \"xaxis\": \"x\", \"y\": [0.8156061324462894, 0.42491310922683634, 0.8867827646463432, 0.8014995238430205, 0.30499958310650876, 0.5817355832705369, 0.959171062334887, 0.7854416128369749, 0.9085690698200813, 0.8998600376511439, 0.6341165000693628, 0.412102187638673, 0.7643629411050379, 0.4710001938005606, 0.40182653035141874, 0.40438056362905367, 0.8870480016118494, 0.3650667978415713, 0.9064321709292111, 0.9327245345966092, 0.6458420185168736, 0.8821841129047617, 0.6704018506542557, 0.7655671181822064, 0.8616986618932058, 0.48774537944210006, 0.9637355036179479, 0.6794204065079696, 0.6044835155949141, 0.7867954023600708, 0.9137982268836646, 0.5867502063434873, 0.8048584290077971, 0.9718511071053526, 0.9627192884041744, 0.7978623718349598, 0.6091120966723917, 0.8943338178728011, 0.8853376735027229, 0.9045563504021151, 0.9264844632598176, 0.6342457655367447, 0.9414033426130164, 0.5636516403732365, 0.5172967922101196, 0.4836896337264441, 0.35199620689495453, 0.788779954566273, 0.9696552399248426, 0.772496554239754, 0.8132656157621138, 0.4539090261140653, 0.9333708926412786, 0.679765045723866, 0.48457442622955804, 0.4248820606938153, 0.6737819616086004, 0.8780741425819777, 0.38340602447337646, 0.90634085684919, 0.5574014604752268, 0.6804147683859246, 0.9077110088845216, 0.7718472635729894, 0.4717552048891654, 0.22222808308441652, 0.8616549355667619, 0.705749071892896, 0.4699129352300819, 0.9680524782819758, 0.8891353183282249, 0.9466602521798594, 0.8553382520847058, 0.7430243903066251, 0.6616131862201935, 0.6919609500216202, 0.96565744679506, 0.913108907487878, 0.5395521774612226, 0.9026238558501023, 0.6550941529376255, 0.9757876320152292, 0.8833495792027257, 0.6666029765862381, 0.8504582120840628, 0.9320215595878566, 0.7639947574915884, 0.6085229656221847, 0.9557131606798471, 0.46184432615952054, 0.5642658412077981, 0.8815615400732472, 0.7189203536918151, 0.9301020530176726, 0.7341394174346678, 0.7759189559372703, 0.8448078654733812, 0.9012666081120407, 0.8926028620066223, 0.5287492720273277, 0.6874206920638863, 0.37408584674942635, 0.8348370105186077, 0.8697567261320243, 0.9175759024810304, 0.44644098895981, 0.8874384748400057, 0.7787567487441118, 0.9416122482572158, 0.3265229243180111, 0.9308095750950773, 0.42267134533232753, 0.43068181214270274, 0.8727308285810839, 0.7201611177732586, 0.8430904589044517, 0.8140617541555761, 0.9456747441572588, 0.6672663325862807, 0.8756470416862959, 0.518871521713375, 0.7040615347784164, 0.4957960231649875, 0.6250130361556073, 0.27413726132188326, 0.5193133578087885, 0.37656641690434584, 0.5808048103476511, 0.7917827117482167, 0.36569143480873245, 0.7232542293832885, 0.9785934574433302, 0.5715075300165849, 0.8182555969893297, 0.5448461144048058, 0.9491291995847589, 0.4833587957991669, 0.3189279754564957, 0.9184825510014271, 0.5524830505676419, 0.9600429304649183, 0.7818180966165994, 0.7962710274484252, 0.7569429870375118, 0.46184432615952054, 0.7641514270390748, 0.9486763575522457, 0.8086368705092697, 0.6784536879503494, 0.6877019790624462, 0.6082670858563528, 0.6053794617794684, 0.6319330693089359, 0.4982105707488519, 0.6787928880949093, 0.9231980717613485, 0.8831230955067948, 0.6845485656817341, 0.8799204262605215, 0.9164563829924386, 0.7819268199067826, 0.23469888428232324, 0.9492377841603665, 0.8826092272015389, 0.6360541596480074, 0.5184081252698399, 0.6400126753125241, 0.542646305979658, 0.4479501208302092, 0.7783171875827786, 0.7867712153112567, 0.5236605417423803, 0.6959846197179591, 0.7925023358445066, 0.6683189355892497, 0.18737025221649042, 0.42506327048176057, 0.7272596040941706, 0.7314191754306454, 0.4827891324637794, 0.6649341228620356, 0.9038332731164471, 0.9588917860646077, 0.8945194928389463, 0.49833043835950624, 0.7997712594855277, 0.8577935987172323, 0.7622736922026153, 0.8039391974899521, 0.7396811504731934, 0.8115340233127679, 0.801728888664367, 0.738451208106372, 0.5859674792922007, 0.1865203674848816, 0.8773430435604171, 0.36888329310067386, 0.8651817982269884, 0.9067615420962557, 0.8594983988587351, 0.7437750884018276, 0.9145224932934428, 0.9135679891815164, 0.8001832456898428, 0.6860977766129374, 0.9377826008632761, 0.9300369611912853, 0.6997062971069969, 0.5693182102579236, 0.3404656140239559, 0.7160591142088384, 0.7953146078011, 0.8869803873277935, 0.7639982823097876, 0.8681285227071118, 0.576868797021353, 0.93035102563313, 0.8375600281828176, 0.8279918435672958, 0.9266689436294401, 0.7559862346636359, 0.5099889666930224, 0.6914445842613687, 0.9651950326885705, 0.87851968214492, 0.8499702807396289, 0.4685752957996948, 0.7241546992314323, 0.7848147251007912, 0.7341394174346678, 0.7008877443692281, 0.340588975625529, 0.5013021766499856, 0.8321174529331695, 0.8818378666553491, 0.9176909075187759, 0.8634678749265305, 0.7436082905772717, 0.9343776659412377, 0.7668809937296346, 0.6243383802582345, 0.5332560471205093, 0.6907315465649003, 0.16626803588025432, 0.1668542888532837, 0.7408943843163458, 0.5221312328975666, 0.7457559475413279, 0.46389636934606376, 0.9292627865919654, 0.5268311186840582, 0.4244151934213653, 0.643310536612302, 0.8577438313980266, 0.7816208399762355, 0.8553382520847058, 0.7010035672814305, 0.5242572272016158, 0.9187320011579697, 0.8703498177621264, 0.6713045345576062, 0.9137982268836646, 0.8614414457916845, 0.9445662266054761, 0.8808216590199034, 0.7386378115490353, 0.8873009977622293, 0.9157094897337859, 0.6606038558129893, 0.9296803968514485, 0.8864322240790464, 0.5146720135715994, 0.8720710714485208, 0.9415427660945741, 0.9138701141498735, 0.6527559092576063, 0.8751970040938668, 0.9249766460056568, 0.801728888664367, 0.6575848465963361, 0.6934824043184128, 0.8619113960143526, 0.9419078024651042, 0.9591721389341828, 0.8397407150753159, 0.9084383840076588, 0.4963969309336195, 0.7359588175524252, 0.3531961907069324, 0.9279819479140234, 0.7752976919572294, 0.8665226278427577, 0.9515211055933231, 0.7314191754306454, 0.890886918514299, 0.3235491032739525, 0.3719939405423586, 0.6323804178173072, 0.8398006965792015, 0.8239469134189235, 0.8592101816891015, 0.7615002907198236, 0.8688259750909261, 0.8718104001390852, 0.5838074755684882, 0.8756470416862959, 0.901850575196968, 0.9451930143658351, 0.6253812669856891, 0.5890764576710766, 0.4921052500998711, 0.4862070578416567, 0.9170647663398394, 0.7035583451969506, 0.8476385889092957, 0.5603058978573646, 0.5810606890504925, 0.9088604673919816, 0.8903252600075929, 0.944267921154058, 0.9435968591480925, 0.938237366988842, 0.9357286047893738, 0.7961386682142712, 0.7840233885688647, 0.2513590507613302, 0.7389284097502917, 0.9053472250810051, 0.44438282424164377, 0.862281110352348, 0.8021059248496223, 0.9152740930046814, 0.643737358401971, 0.8540304955499701, 0.8613418170006786, 0.6911084183178322, 0.8848367871057808, 0.8387883096682573, 0.5942651630821018, 0.65691393717736, 0.6369979527510315, 0.8280658524313272, 0.9640736168216585, 0.6546311715671466, 0.5599819536107853, 0.48348053317652906, 0.7668016587569692, 0.03620763244300767, 0.7364400865449663, 0.37408584674942635, 0.8767503774172, 0.8743962287172513, 0.8751970040938668, 0.8833495792027257, 0.7091886355621774, 0.87006937054451, 0.7904001815220257, 0.8761418339280951, 0.8306834851111597, 0.7531715889012326, 0.38181207472529843, 0.6490458991820136, 0.9138057013338913, 0.9046222904886461, 0.17956061692355052, 0.7506163079023257, 0.8963285795381793, 0.8848361664653354, 0.9283037217377402, 0.45996158699034445, 0.7290858434196763, 0.8319094967702583, 0.6578018675312727, 0.18727567457681707, 0.8673410249845035, 0.9453298670648187, 0.9446538464906173, 0.19605573045952288, 0.6723831041639817, 0.3438281302059518, 0.37858973820495484, 0.6953170483296187, 0.21463507152544156, 0.26963792069965237, 0.3280912492037974, 0.8399932187801539, 0.420387898633768, 0.36522500752858966, 0.5810560693343539, 0.9306346767722963, 0.7167716539092029, 0.656736106921484, 0.5549139996760648, 0.6909161521388689, 0.591904263202073, 0.884703171197362, 0.866402281883595, 0.7582770814524421, 0.8990773411030794, 0.1818065866116437, 0.6222165686186035, 0.17261914235374884, 0.8156064679757086, 0.4851213943917703, 0.8871292211128762, 0.8398494053952754, 0.703270618172154, 0.6305543892506115, 0.7494149477175548, 0.1532408287022325, 0.6159732902773407, 0.738220551127759, 0.8354520044441791, 0.8536870432671441, 0.5751476712690671, 0.9077719201719568, 0.7878515691455199, 0.6672663325862807, 0.45293736875445273, 0.17058553029544155, 0.747933377844996, 0.8400163125056676, 0.4516778718827729, 0.6082670858563528, 0.8401843469141149, 0.7636885291754726, 0.789170795337903, 0.8128612802083497, 0.7522530659814418, 0.8086757686066508, 0.8356255123032285, 0.9241779635105248, 0.9674588597049086, 0.9368885694202199, 0.4990764491242286, 0.876561204324957, 0.554264192243629, 0.5967716244634195, 0.9060244606340249, 0.8401608718856799, 0.7329750583133859, 0.8021769878309102, 0.9316817655017511, 0.45488322534173153, 0.798578398438993, 0.7425236774748816, 0.5742682328784404, 0.4937681935814938, 0.8972164286692267, 0.8914273370768748, 0.9377613518261881, 0.8862258850530264, 0.8591757581361523, 0.7410678096850266, 0.6822336012657398, 0.9201658505843877, 0.6982578893131915, 0.5746709232170782, 0.7626532952948841, 0.7137703530889916, 0.7520971196461234, 0.4473853625959922, 0.7957460056304991, 0.4833174871501707, 0.8758467705785958, 0.4689303842787964, 0.6133612564737879, 0.8568681391705205, 0.6835133967314007, 0.9732070839986944, 0.21435716257549006, 0.5761668962420043, 0.4055433603128916, 0.3743394998756179, 0.9118635774953143, 0.964551884718591, 0.9306459334511011, 0.8424802355113449, 0.7739144871152517, 0.6872688771534424, 0.8590561833388345, 0.6714384475466295, 0.6408669500407106, 0.5203550269219845, 0.2856853969697174, 0.857760555506807, 0.9307094503226838, 0.6787928880949093, 0.8308635255795866, 0.29271374211533296, 0.6769315553524353, 0.23831547366416572, 0.5895099457120908, 0.8994675076574448, 0.8893400405584444, 0.8456825404777587, 0.5399612081435882, 0.6188649121485582, 0.9281492942813848, 0.7611740601422801, 0.46550237374781617, 0.8896861436466836, 0.9038901015569306, 0.5044440900554997, 0.9215480939667524, 0.6930273792518707, 0.8723244804196287, 0.5624338775604165, 0.9226297661236537, 0.8469231754225917, 0.9430557295321259, 0.9097116306258912, 0.5988707702267543, 0.3813853072548755, 0.8843832309478876, 0.9006952500629406, 0.918975987201669, 0.18997930334445084, 0.8923106748541326, 0.8461388699436441, 0.5973439234355874, 0.9544642924744549, 0.91770416680597, 0.9177239854204658, 0.17584552180125673, 0.9240099144459667, 0.48524948024905407, 0.8889685222180134, 0.5785503824403398, 0.7511953459672914, 0.6887596776945688, 0.6717539058356753, 0.7168761391602206, 0.7134478068952186, 0.834626350903405, 0.5715867980362679, 0.6588392688727011, 0.9488572786900573, 0.8920529250761863, 0.8891353183282249, 0.707981940789761, 0.926348680038428, 0.631489487929038, 0.7443856388661001, 0.9260754381930228, 0.9544642924744549, 0.8497401318990601, 0.5604010177433062, 0.8036334301115304, 0.7898153537185114, 0.8491431337122072, 0.6570881560807702, 0.8389599143569951, 0.7944137576415592, 0.8132668978866627, 0.44714680104169846, 0.7978021044641371, 0.41921696608658454, 0.38876183891604754, 0.9248463736054193, 0.4277915265084825, 0.6345107008491314, 0.8008942533173764, 0.5087430598332189, 0.9414938992689892, 0.6922115882765215, 0.8296175750175913, 0.8593339228153332, 0.8975141534758351, 0.5977126281557783, 0.9279478536756302, 0.6485770817571253, 0.8905823996589662, 0.9332072841984264, 0.9432461110830079, 0.9410120781436498, 0.6339696776630096, 0.7120962557761497, 0.5841709037351369, 0.5928970840420333, 0.9006589732900512, 0.936371533648048, 0.6907852379101131, 0.7675780198071424, 0.9444587893431046, 0.4702336163336472, 0.8925536722101626, 0.8158978708906081, 0.822780392485108, 0.8037335327290217, 0.8382351003285965, 0.8941557358589171, 0.4796498334522667, 0.926348680038428, 0.6842118015950474, 0.6463580983468415, 0.8292048071278182, 0.5834426687867836, 0.8419845362148763, 0.2431563391580561, 0.7763142135369961, 0.9390550746437164, 0.7774903237071782, 0.8141232663130791, 0.9444089886680379, 0.430401459478284, 0.9192677156927759, 0.8427595869840984, 0.87120858451521, 0.5693182102579236, 0.820012080301976, 0.58719119911586, 0.42769376643096113, 0.3542595869275313, 0.89579938191327, 0.8743523014696554, 0.7820497043505815, 0.5279069501129625, 0.8869579700149332, 0.45488774279476296, 0.8514781135508903, 0.8278297091497892, 0.663749097381813, 0.5132851713944618, 0.4906566565015208, 0.6415219885510332, 0.6991293681294938, 0.8150539074042624, 0.5800669536763935, 0.9583771200922359, 0.7366090055976814, 0.5747817696023392, 0.5315376696882942, 0.8074446941396305, 0.9038901015569306, 0.9087015650331977, 0.6697291810323083, 0.5800669536763935, 0.8807270543114014, 0.5135845984304893, 0.9352791850238339, 0.36120709973337456, 0.6206709330576408, 0.906286252315459, 0.7937202818717513], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [8.7, 12.6, 10.6, 10.5, 9.4, 9.5, 9.7, 10.4, 9.3, 9.7, 10.2, 11.0, 8.7, 10.7, 9.3, 9.5, 9.5, 9.8, 9.2, 10.9, 9.5, 9.1, 11.2, 11.2, 9.9, 9.8, 9.9, 10.1, 9.1, 10.1, 9.6, 10.4, 10.8, 10.0, 9.1, 10.1, 10.0, 10.8, 9.6, 9.2, 9.2, 10.6, 9.5, 8.9, 9.5, 10.1, 9.1, 10.5, 10.6, 9.3, 9.4, 9.1, 9.3, 9.6, 9.8, 9.2, 10.6, 10.6, 10.1, 11.0, 9.3, 10.0, 12.6, 9.4, 9.2, 10.4, 9.2, 9.9, 9.8, 10.1, 8.8, 11.0, 8.7, 11.4, 10.2, 10.0, 8.9, 11.1, 9.2, 12.0, 10.0, 11.1, 9.0, 9.05, 9.8, 10.9, 10.1, 10.0, 11.6, 9.2, 11.0, 9.4, 9.8, 8.7, 9.1, 9.5, 9.1, 9.5, 9.2, 9.6, 9.2, 9.7, 10.2, 9.0, 9.3, 9.3, 10.3, 11.4, 9.0, 10.5, 10.4, 9.9, 9.2, 9.0, 10.4, 9.6, 8.7, 11.4, 10.1, 9.4, 8.9, 12.8, 9.1, 9.7, 8.8, 9.5, 10.6, 9.4, 9.5, 9.4, 9.6, 11.3, 9.4, 9.2, 9.3, 10.0, 11.05, 9.1, 11.2, 9.9, 9.2, 9.4, 11.4, 9.2, 9.9, 9.0, 11.0, 10.6, 9.7, 9.6, 11.1, 9.5, 11.4, 10.2, 9.2, 9.8, 9.2, 9.5, 9.9, 10.8, 11.5, 10.2, 9.6, 8.4, 9.5, 11.5, 9.53333333333333, 9.1, 9.4, 9.2, 9.6, 11.5, 9.4, 9.3, 9.4, 10.3, 9.5, 11.4, 10.2, 9.2, 9.6, 10.9, 10.2, 9.7, 9.0, 9.4, 10.2, 11.8, 9.4, 9.0, 9.6, 10.7, 9.4, 11.0, 9.4, 9.7, 9.3, 9.5, 9.5, 9.7, 10.3, 8.8, 8.8, 11.0, 11.3, 9.0, 10.5, 9.5, 11.4, 10.8, 9.9, 10.4, 9.6, 10.0, 9.0, 9.0, 9.4, 10.8, 9.2, 10.0, 9.7, 11.2, 9.5, 10.0, 10.2, 9.2, 9.2, 9.0, 10.2, 9.2, 10.1, 10.5, 9.6, 8.7, 12.0, 11.1, 9.1, 10.6, 10.0, 9.3, 10.8, 9.5, 9.0, 9.4, 11.2, 10.5, 9.4, 10.5, 8.8, 9.3, 11.2, 10.7, 10.8, 9.6, 9.5, 9.1, 9.7, 10.4, 9.5, 9.5, 10.5, 9.2, 9.9, 9.5, 9.0, 10.8, 10.6, 10.0, 10.6, 9.2, 8.9, 9.0, 9.9, 9.9, 9.6, 9.7, 10.5, 9.3, 9.9, 10.5, 10.0, 9.8, 9.5, 9.3, 10.2, 9.5, 9.5, 9.4, 10.8, 10.2, 11.1, 10.3, 11.0, 11.2, 9.4, 10.2, 9.0, 8.7, 8.9, 9.5, 11.4, 10.7, 10.0, 8.6, 9.7, 10.6, 9.3, 9.3, 9.4, 9.3, 9.3, 9.5, 9.8, 9.5, 9.8, 9.3, 9.3, 9.4, 9.5, 9.8, 10.5, 9.5, 10.9, 9.5, 9.6, 9.5, 14.9, 10.4, 9.2, 9.4, 8.7, 9.5, 9.7, 9.4, 9.8, 9.4, 8.9, 9.5, 10.9, 9.0, 9.6, 9.4, 10.8, 9.6, 9.2, 9.8, 9.2, 10.0, 10.1, 9.4, 9.4, 10.0, 9.7, 13.0, 10.0], \"xaxis\": \"x\", \"y\": [0.2802292104526322, 0.9455194119275858, 0.4978743212349556, 0.5289145624519528, 0.28439238707197784, 0.2033309570226689, 0.27345747478543325, 0.8322873304845451, 0.389055896812549, 0.3675472469853882, 0.5781933746273124, 0.7401955299744071, 0.44969671697605845, 0.4367887814338696, 0.31593955341667695, 0.3775624358859999, 0.19282181046294666, 0.048451763306065584, 0.6005928650583868, 0.032225376113695775, 0.427412413738938, 0.23973251442015217, 0.13890126550157303, 0.8613925272127, 0.329663916828638, 0.19359965390713213, 0.6827271716759634, 0.1960905505555538, 0.08135735686643118, 0.39737240301928484, 0.13902987396822816, 0.6514166433739288, 0.6994753721471061, 0.7140886736258081, 0.5021795028970708, 0.48743245558712556, 0.5731139673640956, 0.8820820642542792, 0.559972149724866, 0.5061565591493914, 0.5066810377847554, 0.833805652807593, 0.6979972163580744, 0.3177574231538272, 0.13068190592986567, 0.758876109553896, 0.5681062961269688, 0.715544821914063, 0.762062625203523, 0.4464438677531786, 0.20995974230910305, 0.5262622410710028, 0.39442669669188163, 0.2537324982988368, 0.6775437642744659, 0.23876321589577687, 0.6369158982934647, 0.38960060362966165, 0.6034323722874255, 0.7769991715799629, 0.15199748354041337, 0.5641412449951732, 0.7590466800561823, 0.5969347905931296, 0.1048362779837843, 0.7217824369593382, 0.2662339163773806, 0.16472378978351135, 0.37760124376932414, 0.7071736299639594, 0.3436862995931572, 0.8384434752264291, 0.3635333644877426, 0.7813188949129265, 0.7279369976219869, 0.5641098847382463, 0.3863964747623771, 0.9209913370067284, 0.1477144681640183, 0.8809374658555192, 0.6533168894759348, 0.8873477284758582, 0.3697306267878623, 0.28319023347825867, 0.5203701741750857, 0.5523747693308857, 0.6387521731780509, 0.3881380695009739, 0.8487896327149285, 0.4636606453307818, 0.8384434752264291, 0.558266603669778, 0.21657231888677728, 0.3635333644877426, 0.5512671313974766, 0.5051039398599867, 0.5827915753039158, 0.49441682850108926, 0.47309171914705017, 0.6262595591688196, 0.5508242483721094, 0.47332791509789995, 0.7117569366896692, 0.3933786516273859, 0.16465066549244003, 0.7490394132223248, 0.769261050002088, 0.7431932405995126, 0.3141000916210982, 0.723735045552473, 0.6484132891031948, 0.688519894019609, 0.40496704226994307, 0.5803736122960511, 0.6327801522745691, 0.45115706990411364, 0.37268733756108086, 0.9009693101135351, 0.06496389958099598, 0.44431713201158524, 0.39960831974332744, 0.8662156944598043, 0.31018081106061823, 0.5339551117365043, 0.33311273919547707, 0.400132762133902, 0.8528754522806217, 0.14419347879543085, 0.11672350429510901, 0.44556702529145975, 0.6160120899414699, 0.13766892845409207, 0.5517204028384314, 0.5232178919035022, 0.35483403305733974, 0.4900213704561591, 0.8854578072659228, 0.43084122675663034, 0.7601186327653665, 0.14072030431570776, 0.6186690618327106, 0.5245054232921349, 0.7326259458716644, 0.5690781983520095, 0.4018508815425063, 0.24877469563805235, 0.7952501197393639, 0.8766221356386195, 0.303451532996695, 0.5357745481647883, 0.7096524147827454, 0.20877177283968149, 0.8635610141758273, 0.46736762313881036, 0.6061151992073851, 0.113015272873705, 0.40446014603085867, 0.6332606063976143, 0.648705381890928, 0.42186952587750404, 0.8047913565308571, 0.3017058309841093, 0.38406990132164637, 0.33494193042999065, 0.19929939967121216, 0.8624919783238055, 0.528785836409086, 0.43084122675663034, 0.47042159929499583, 0.5061565591493914, 0.5759491569657543, 0.8468794444363914, 0.20342296359496542, 0.5170831534483544, 0.3666753044655067, 0.6131723001375537, 0.4410646109528086, 0.6903416342484309, 0.3866428492574258, 0.4636606453307818, 0.4525459302795702, 0.03199256040434073, 0.7029629492254846, 0.2433141614541866, 0.548755973819273, 0.3775060302547258, 0.06593060991448157, 0.8745624549148976, 0.22931948662359403, 0.27267688907931714, 0.589328430619086, 0.8007160756317941, 0.5525637789187225, 0.5008522318356121, 0.4556212410144909, 0.17391722008742402, 0.43574637053357784, 0.3237440077649342, 0.6071692164257629, 0.6925152430641841, 0.592675381607996, 0.43854150134957587, 0.43854150134957587, 0.42437112972565305, 0.8061118855433299, 0.35195592295594336, 0.7605370065149419, 0.38898578429124253, 0.67510953655807, 0.872979709380305, 0.710510994258769, 0.720290290780972, 0.4820787970895852, 0.42019280799979697, 0.4304380754474639, 0.25285023254778977, 0.3238056884730761, 0.39471961640683584, 0.09510031985475974, 0.367046376808582, 0.21500793651835448, 0.8705359023101334, 0.6100742529031461, 0.6226449432624995, 0.7279369976219869, 0.3643494054700089, 0.09992017521484964, 0.41475515148757036, 0.6462260464983366, 0.14102909592513518, 0.48949585696458414, 0.5239520436918008, 0.6084413884537807, 0.5655473856702703, 0.9517420512476797, 0.7489379515982664, 0.4647937384849751, 0.7915321263825208, 0.44112279258530757, 0.5734340256727429, 0.6604471727860799, 0.4845203185458914, 0.6968730453869196, 0.5315374962198609, 0.8685951485887234, 0.6242442748350044, 0.2912097196987059, 0.7725938221565348, 0.2067629769731588, 0.30221725334927335, 0.13129342562285412, 0.6467789443522378, 0.6994753721471061, 0.11825382206919556, 0.41022417118631593, 0.4882665226122541, 0.7732287086973071, 0.25374762405010176, 0.49441682850108926, 0.3723877205427743, 0.652330313245635, 0.43667799883041203, 0.5964718913578133, 0.55172276504346, 0.24113559934961917, 0.8243980268882987, 0.7263843594269437, 0.43535214809021755, 0.8721122798612579, 0.18723914490145582, 0.6486906676970999, 0.11576704656818047, 0.4328241622975616, 0.491481212420291, 0.5264345378086769, 0.33856526784971647, 0.2967410926251248, 0.581398831228375, 0.5973776665460488, 0.6195406102170065, 0.37782717658841725, 0.323061133240968, 0.17420808473594895, 0.19634770547538957, 0.46492234760650425, 0.49613167963272686, 0.5812209036149294, 0.6057291775435286, 0.63414717387345, 0.5702687187355167, 0.8604975146328253, 0.6309022132706124, 0.48732991249542923, 0.6887148870948692, 0.41581945293096145, 0.5706760596351739, 0.4831274653996314, 0.06684727567316755, 0.49090643211649887, 0.15191610726090596, 0.2711405311223577, 0.7653618545702112, 0.09266565137124261, 0.4554350627407873, 0.19698919164573708, 0.6930185080649685, 0.5227537922811563, 0.50434568709929, 0.7082092780767422, 0.46058046365566996, 0.6735723234187477, 0.4285936050615775, 0.323061133240968, 0.5168500865319015, 0.6161307914674419, 0.23456444218973552, 0.3192004782541023, 0.21968945907811915, 0.5028183230931117, 0.43371621376298963, 0.6744209213341115, 0.5940260419772637, 0.13783310426722128, 0.5136444387530009, 0.5508647999875032, 0.4955911012838212, 0.9814394195009358, 0.8260225289794664, 0.17965956338109995, 0.46844896472597397, 0.6048119589659149, 0.3289160319090978, 0.2454606394453749, 0.7497022835596558, 0.683485355417811, 0.20995974230910305, 0.23504578258460665, 0.37175956099497537, 0.4875530438829156, 0.24982584224249993, 0.6282829625348888, 0.4520795162158371, 0.8200372413039435, 0.12832513643528837, 0.5299630655130737, 0.29552777318700446, 0.24021937552346023, 0.5429028773737552, 0.6311869746243346, 0.4145977043912777, 0.39329840463575844, 0.39070335653410526, 0.4286990948130573, 0.846836560604146, 0.6880850122626078], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (curr)\", \"type\": \"scatter\", \"x\": [9.0, 9.0, 10.9, 9.4, 9.5, 9.8, 10.1, 10.8, 12.0, 10.5, 10.0, 11.0, 12.4, 12.2, 12.8, 10.6, 11.4, 11.5, 10.3, 12.4, 8.9, 9.2, 10.5, 9.6, 10.1, 12.2, 11.0, 11.3, 12.5, 12.3, 13.0, 10.1, 9.5, 9.2, 12.1, 8.7, 11.3333333333333, 9.3, 13.4, 11.8, 12.4, 11.3, 11.8, 8.7, 9.4, 12.7, 9.0, 9.3, 9.5, 12.5, 9.2, 12.8, 10.4, 10.5, 11.4, 8.8, 9.5, 14.0, 9.8, 9.1, 10.4, 12.3, 11.8, 11.2, 9.3, 12.5, 11.0, 10.7, 10.55, 9.6, 9.1, 11.7, 9.2, 11.0, 9.7, 9.3, 9.3, 10.2, 10.8, 9.4, 12.2, 10.2, 11.4, 11.9, 9.8, 12.0, 10.9, 11.5, 11.5, 9.5, 10.8, 11.9, 12.6, 13.2, 10.1, 12.6, 10.0333333333333, 13.1, 10.2, 11.1, 11.1, 9.9, 11.2, 13.2, 9.1, 9.5, 9.4, 12.6, 11.6, 11.3, 10.7, 8.8, 12.3, 12.6, 12.4, 12.4, 11.3, 9.5, 10.4, 11.5, 11.8, 12.1, 12.0, 12.2, 10.9, 12.3, 9.2, 12.3, 10.2, 12.0, 12.5, 13.6, 12.5, 9.1, 9.8, 9.3, 10.5, 10.8, 11.6, 11.0, 11.2, 12.7, 10.8, 9.4, 9.6, 10.5, 9.4, 10.5, 10.9, 10.2, 9.8, 11.2, 9.5, 9.2, 12.5, 12.0, 10.6, 11.3, 10.0, 9.0, 12.7, 9.5, 13.4, 11.7, 10.3, 11.4, 11.5, 9.9, 11.0, 9.2, 11.4, 10.2, 10.9, 11.6, 14.0, 11.8, 11.4, 13.1, 13.6, 12.5, 11.0, 9.2, 9.5, 10.7, 9.4, 11.6, 10.3, 12.6, 8.8, 11.1, 11.0, 9.4, 11.9, 11.9, 10.8, 12.2, 10.5, 12.5, 9.4, 9.8, 12.5, 10.4, 9.6, 11.9, 11.0, 10.6, 9.7, 12.0, 10.1, 10.2, 11.4, 12.8, 10.6, 12.4, 9.0, 12.8, 10.0, 11.3, 11.6, 12.8, 12.2, 10.0, 10.8, 9.5, 9.0, 9.2, 11.2, 10.3, 12.0, 11.2, 9.25, 10.1, 10.8, 12.1, 12.8, 8.9, 12.3, 11.2, 12.0, 11.2, 10.7, 13.3, 13.0, 10.3, 10.4, 11.4, 8.8, 9.2, 10.7, 10.1, 9.6, 9.2, 8.8, 11.6, 10.7, 9.8, 10.2, 11.0, 12.2, 12.2, 10.4, 10.6, 10.7, 10.2, 11.1, 12.5, 12.7, 10.6, 9.3, 9.9, 9.9, 11.3, 12.6, 11.0, 9.3, 9.9, 10.7, 10.4, 10.6, 11.2, 9.1, 11.9, 11.8, 10.0, 12.8, 11.6, 11.45, 11.3, 9.7, 10.2, 11.0, 9.5, 10.1, 12.8, 10.4, 11.0, 9.2, 12.2, 11.0, 11.8, 12.9, 10.3, 11.3, 12.3, 9.0, 11.0, 12.0, 11.0, 12.6, 11.2, 10.5, 11.5, 11.6, 9.3, 11.4, 11.0, 9.8, 9.8, 10.1, 9.5, 12.5, 13.0, 10.3, 9.1, 10.4, 12.7, 11.0, 11.5, 9.6, 12.6, 10.6, 9.0, 9.4, 9.5, 9.2, 9.4, 9.1, 10.0, 10.2, 11.9, 10.8, 10.2, 9.7, 11.4, 9.5, 10.9, 11.4, 10.5, 10.0, 11.7, 11.3, 11.5, 8.8, 9.2, 9.3, 12.0, 10.0, 10.2, 10.4, 12.5, 12.9, 10.3, 8.7, 8.8, 10.2, 9.2, 8.9, 10.3, 9.4, 10.2, 13.05, 10.1, 10.8, 11.4, 11.7, 10.8, 12.0, 11.2, 9.6, 12.4, 9.4, 11.5, 12.2, 9.3, 11.9, 10.5, 11.0, 11.65, 11.4, 11.3, 11.0, 9.3, 11.2, 10.2, 10.2, 10.8, 9.0, 12.5, 12.6, 10.8, 10.6, 11.5, 11.4, 9.5, 12.7, 9.8, 11.0, 10.5, 9.0, 12.5, 9.6, 10.0, 10.4, 9.8, 10.6, 10.3, 9.3, 10.6, 12.6, 12.8, 11.3, 11.9, 12.1, 10.3, 9.2, 11.2, 10.2, 10.6, 12.4, 12.0, 11.7, 10.2, 11.4, 12.8, 10.5, 9.0, 10.8, 9.0, 12.0, 9.0, 9.1, 12.5, 9.8, 9.4, 12.0, 9.2, 14.0, 9.2, 10.0, 9.7, 10.6, 9.2, 9.5, 9.8, 9.0, 11.0, 11.0, 10.65, 9.0, 11.3, 11.3, 13.3, 9.4, 8.7, 10.9, 10.4, 12.7, 10.3, 11.0, 10.6, 10.4, 10.3, 12.5, 8.7, 10.3, 12.8, 9.5, 11.3, 10.2, 11.4, 10.0, 10.6, 11.4, 11.9, 9.6, 11.0, 12.7, 12.5, 9.7, 10.8, 10.1, 9.1, 12.5, 11.0, 9.8, 9.8, 11.4, 10.0, 11.5, 10.3, 11.75, 10.3, 9.1, 11.0, 13.5, 8.9, 9.4, 12.0, 10.1, 12.3, 12.9, 11.3, 14.2, 11.4, 11.5, 12.6, 10.1, 11.7, 9.2, 12.4, 13.0, 10.5, 11.0, 9.2, 11.6, 9.3, 10.7, 12.6, 11.5, 9.1, 11.3, 10.0, 9.0, 13.0, 12.5, 11.6, 11.5, 12.1, 9.7, 9.5, 11.2, 11.3333333333333, 10.9, 11.4, 13.1, 11.5, 10.9, 11.8, 12.3, 9.1, 9.5, 11.4, 10.5, 11.1, 11.0, 10.0, 10.1, 12.3, 11.9, 11.0, 9.8, 10.4, 8.7, 11.4, 9.1, 12.1, 11.4, 11.2, 13.0, 12.5, 10.5, 10.3, 11.1, 12.0, 12.4, 11.0, 11.0, 12.3, 11.0, 12.4, 9.5, 9.6, 10.5, 12.5, 10.0, 10.0, 10.2, 9.5, 10.2, 11.1, 10.0, 10.4, 10.0, 10.0, 11.2, 10.4, 12.5, 9.6, 11.5, 12.7, 10.8, 12.2, 9.4, 11.2, 10.5, 9.8, 10.5, 10.6, 10.4, 9.9, 9.6, 10.5, 9.1, 11.9, 9.8, 12.1, 12.9, 10.4, 9.5, 12.2, 10.4, 12.4, 11.0, 10.0, 10.8, 12.15, 11.45, 10.2, 11.8, 12.1, 9.8, 10.0, 12.7, 11.6, 12.3, 10.2, 13.4, 9.5, 11.0, 12.0, 12.8, 9.2, 8.8, 9.9, 8.9, 9.5, 13.4, 11.0], \"xaxis\": \"x2\", \"y\": [0.33396714643252134, 0.5044440900554997, 0.8874896900044845, 0.4686759077780351, 0.23831547366416572, 0.571181601185031, 0.7785327680196316, 0.7290551099174598, 0.9581131370131553, 0.6801000322064107, 0.413367674560271, 0.6667140739211237, 0.9108229754863395, 0.9275086157065797, 0.9186958597750785, 0.7191871442695774, 0.8184457509658746, 0.8597940676688322, 0.7947045908306632, 0.8244149680645384, 0.42771531534877594, 0.5315376696882942, 0.7136291946100958, 0.5510697799054304, 0.6393262665313312, 0.9016582766249417, 0.8560880110261746, 0.8947361144883382, 0.9102326114023062, 0.840723585394272, 0.9264645566705582, 0.5105903360131552, 0.752648770317166, 0.5855954083225455, 0.8989214048388485, 0.5190750352404293, 0.9560713253502463, 0.7273157243430202, 0.9279672131348602, 0.640103147954212, 0.9158977434209615, 0.9035955072010529, 0.7140955379655831, 0.233508355491505, 0.7280578325574358, 0.8810827811902006, 0.3966129217085586, 0.15541760955422754, 0.5851621750323275, 0.9046111951917862, 0.4177213302712193, 0.7993763114768937, 0.6978409661933959, 0.6473373667551029, 0.770784382977056, 0.6500641275496193, 0.548949563093737, 0.9803199442553986, 0.6150775052067382, 0.391333092160729, 0.6966682278280982, 0.9426748402861506, 0.9170092977635526, 0.844625652038695, 0.5621782696252592, 0.8935808323282117, 0.6792214086077275, 0.6719996755401956, 0.5252591274442797, 0.7277045758687855, 0.4685752957996948, 0.8616549355667619, 0.347491516391863, 0.8224130863808733, 0.5340790568488665, 0.6711667658766297, 0.5277539611022016, 0.7226430813715845, 0.8140972745487615, 0.3280236940194876, 0.9543080196225542, 0.7752655593026647, 0.9223925066666061, 0.8588031784191832, 0.6345107008491314, 0.9393010047953068, 0.7897067132703484, 0.8608062836413887, 0.8367885032124018, 0.38555642305179116, 0.8611944449682004, 0.9172341012895443, 0.9206892306522243, 0.9500505925695213, 0.537798347971205, 0.9173482789702866, 0.44454351342386716, 0.8909704850569525, 0.7351932580165473, 0.6818328744935735, 0.7981559962965634, 0.7626532952948841, 0.807353254900461, 0.964411205143099, 0.4685752957996948, 0.6986526320119215, 0.1956969407137045, 0.9233481403380283, 0.8218375601976645, 0.8536269727611236, 0.5637680470866036, 0.42267134533232753, 0.93003590801509, 0.9364808605729722, 0.8816060831574614, 0.9663102962713933, 0.8345570787709832, 0.4997893986747249, 0.7921603237806832, 0.5586815647381762, 0.8622246464681924, 0.9828719612298703, 0.909295720392338, 0.9476267884443668, 0.5395521774612226, 0.901360886913609, 0.39410444510430487, 0.9262213132200262, 0.6627387433216217, 0.9629433821448677, 0.9614311452267452, 0.9802968012486629, 0.933760787013923, 0.34432718187202205, 0.63596173557573, 0.624364378916488, 0.7417789548241253, 0.7300918276682445, 0.6968315453320488, 0.7840233885688647, 0.8958841271622066, 0.5417426694559925, 0.7102579146160282, 0.6004345411549624, 0.515920701757342, 0.7587882454650442, 0.5029588531082266, 0.6887596776945688, 0.8642849605932809, 0.6469572639767995, 0.8103639651534781, 0.939764354405301, 0.694136577696587, 0.6593725303534554, 0.9646797005081557, 0.7979900311745153, 0.792123904710467, 0.8869579700149332, 0.7351250317969437, 0.5332560471205093, 0.9406873315653421, 0.39362685027924615, 0.9466602521798594, 0.8394325033041952, 0.6633442657978572, 0.8126408700417265, 0.7332457619716184, 0.08024070404520958, 0.8667774471450977, 0.6466814331404849, 0.912366876100516, 0.656670904734599, 0.8701678467707724, 0.8875925797813499, 0.9658725076002231, 0.7668332861852056, 0.8604440887473094, 0.934384507524058, 0.9605946056867319, 0.951253157591183, 0.5749289095213865, 0.6279243005170476, 0.7937202818717513, 0.7665301650725991, 0.700127941221274, 0.8531107444728586, 0.7947045908306632, 0.8870566665876504, 0.5476228787844645, 0.8410401833568673, 0.8736671065238262, 0.6519898659949606, 0.936943112068646, 0.9077719201719568, 0.8071889556778997, 0.8815615400732472, 0.8935313268029127, 0.8782891297971865, 0.5029588531082266, 0.5797201450332624, 0.9416775458320723, 0.5958140198486584, 0.2485157288688957, 0.932021424688801, 0.8531502837407814, 0.6344194678828672, 0.632587077283238, 0.9121448358615357, 0.5776545535910985, 0.9052765174806566, 0.8580390107418799, 0.8998644401112552, 0.6784536879503494, 0.9458342431661766, 0.21387363850783603, 0.9530348339880965, 0.7307391114165022, 0.7187682731289255, 0.6905635603269331, 0.9569274903702625, 0.9287384091375525, 0.3856984054091925, 0.504413920551941, 0.5389739198483336, 0.5921068831639978, 0.10702848140489757, 0.8772993497727819, 0.6361944011057532, 0.8952999713010865, 0.7069578609115064, 0.10632960186243966, 0.6465592619811017, 0.9116333268133815, 0.9210441535829985, 0.9483358221641291, 0.5800224234700003, 0.896951343689222, 0.8958659323404018, 0.8896861436466836, 0.7763142135369961, 0.778627444633172, 0.9274605647284293, 0.9167924025380936, 0.6422094408272838, 0.6363725079258666, 0.8694129796739031, 0.5693182102579236, 0.5315376696882942, 0.6814536952243052, 0.30089534057709466, 0.6689448970920832, 0.6419522618821227, 0.6500641275496193, 0.8221968069187356, 0.9285763346020383, 0.8495153837633861, 0.7135666997345446, 0.8850789772017983, 0.9128367188568884, 0.8709442503982084, 0.44714680104169846, 0.7147831401969469, 0.6814536952243052, 0.5823319261018008, 0.7718122970862826, 0.8925058444773368, 0.9249991097277733, 0.7849066379312727, 0.5120166815330335, 0.7863291630268572, 0.8171821177205619, 0.8878235148823457, 0.9813953955585096, 0.5009899161211654, 0.6787020040856314, 0.2747106808400709, 0.6998114428322438, 0.7191783799678735, 0.7566715075843347, 0.7741630673610131, 0.692871858980435, 0.8706970297938403, 0.9226518689226377, 0.619213859232465, 0.9620625840847012, 0.8161066853745392, 0.7984578805051198, 0.8987836568806694, 0.27900511725120763, 0.747868261422589, 0.8013372150606806, 0.4430395412241901, 0.8082746512504794, 0.9248395818955686, 0.8132668978866627, 0.7926355964369082, 0.7243101498981422, 0.8251498778038484, 0.865753667016409, 0.8784859927081519, 0.9613966942665844, 0.8380103992838959, 0.9376908870460701, 0.8505645904112248, 0.5317253080143199, 0.8756470416862959, 0.8823120896825394, 0.8920529250761863, 0.9565288857220365, 0.92576324319171, 0.8397457208604353, 0.8008835764985612, 0.7620555647282774, 0.6333567796033132, 0.8986985644274655, 0.8289197139212982, 0.38568054861828666, 0.4358764146033148, 0.7013568331933456, 0.5524769805317635, 0.8654015550049637, 0.9625385348003681, 0.4997035751430624, 0.5940434106189647, 0.29640429037896177, 0.9370396801623051, 0.7496358493500708, 0.8521916566704996, 0.7519935213994349, 0.8956127660014477, 0.7563308848917781, 0.5425355780301907, 0.1652985164032473, 0.5777375433929663, 0.5926841497777402, 0.5247451599628447, 0.6215406511606532, 0.646742228322253, 0.5236567091352762, 0.8105889943537302, 0.7614647275399787, 0.7272264480694343, 0.44438282424164377, 0.8051848688934031, 0.253979247575754, 0.8737269176380216, 0.7884186533408385, 0.5226162157005312, 0.7776146375974927, 0.8021344726910251, 0.6794204065079696, 0.8398669626756513, 0.3743394998756179, 0.6593725303534554, 0.41008410759983227, 0.8726624594592295, 0.31336232876890546, 0.6187135046228962, 0.9208146539756937, 0.8948907807194619, 0.9475948217130945, 0.7098971478357265, 0.41970311630379203, 0.5524505095188592, 0.6689295490636696, 0.39534528644804523, 0.6686700461744643, 0.6608417181144597, 0.6289006219381473, 0.8112353209803558, 0.9675531845963172, 0.3468688843876404, 0.8171815196180959, 0.9315945487332388, 0.7612383340144859, 0.43979370974717685, 0.9452166580978265, 0.810349906376065, 0.4979189466877109, 0.9054024939516333, 0.7506263221664519, 0.8595966107872783, 0.9041757536760852, 0.5120166815330335, 0.9246344940597735, 0.622364539475366, 0.7975959936185795, 0.9376528402833735, 0.8270495791839716, 0.7463426393970082, 0.8508295060861325, 0.5277539611022016, 0.7926521549058593, 0.8343380415579561, 0.7973631232158779, 0.5423298306356671, 0.6253812669856891, 0.9342151247863544, 0.9064095870896521, 0.8428584418618921, 0.5680191878381406, 0.8230633503438987, 0.857993972512287, 0.8312116035859974, 0.8886868130574391, 0.5695902702544526, 0.8750573328895943, 0.47134086624147714, 0.6082670858563528, 0.8571520978358925, 0.7006810412396262, 0.6001343818465046, 0.8680196363335714, 0.7833148206731655, 0.835330250744176, 0.6883000602161935, 0.4297997702781997, 0.7132181587745201, 0.941909753873568, 0.9298379484442667, 0.8950633078112005, 0.9652574497835966, 0.8593048115498744, 0.23022113319019433, 0.5548683876071567, 0.8789570823277312, 0.7176343272433334, 0.7135972690872326, 0.900955402304434, 0.89110615578316, 0.8021344726910251, 0.36734125225010755, 0.9233813125795639, 0.9269988231022361, 0.6021478506882372, 0.27064660283581765, 0.7595966254948197, 0.5317253080143199, 0.9626288904553877, 0.518871521713375, 0.4244151934213653, 0.8784852709235653, 0.667697582798242, 0.6791650855490978, 0.8659372985570389, 0.5217980090164113, 0.9757802673562255, 0.20769640873195563, 0.6900575067285889, 0.15051833553221247, 0.8476988333501053, 0.12043274000614122, 0.6546311715671466, 0.412102187638673, 0.6339696776630096, 0.6925917751558638, 0.8074446941396305, 0.8417042066658985, 0.4702054036006336, 0.8107456318417504, 0.934253622333564, 0.9671353887875448, 0.3776875782453083, 0.5133306968464912, 0.8279918435672958, 0.7295730380004212, 0.8398957027397556, 0.7470826509089123, 0.7722124156410631, 0.3944809481034696, 0.5801047158883857, 0.7134138458261836, 0.8265590446981121, 0.5836238058504062, 0.7538957359152121, 0.9708936701567454, 0.41507295289487073, 0.9039211350062085, 0.5109703825452502, 0.8880660412534, 0.6332514250278477, 0.703270618172154, 0.863031725372896, 0.9601349291832292, 0.5845797646527732, 0.8357575010967041, 0.9584406458449958, 0.8733333206292072, 0.4740801794177068, 0.5787650908025566, 0.38525623454815555, 0.5715075300165849, 0.951253157591183, 0.831291834366621, 0.6482062646591596, 0.5447536045265621, 0.8456825404777587, 0.5358725178581014, 0.8893400405584444, 0.5955893395860203, 0.9408369636189147, 0.7580589814818564, 0.4244151934213653, 0.7636885291754726, 0.9532052815091139, 0.6686700461744643, 0.39683939049776734, 0.8309978518015588, 0.06774730328187532, 0.8934061610794648, 0.9459413258233057, 0.8507977517004935, 0.9694554821790147, 0.8640493534313302, 0.8409166048571896, 0.9059760843724536, 0.7278052027863667, 0.8952246802917138, 0.39534528644804523, 0.9558702864115934, 0.9178754126151818, 0.7504628435478695, 0.7568870052952757, 0.32046258648166903, 0.9712495894387816, 0.7125870341029702, 0.8286889773580812, 0.929575727770858, 0.8422483936479932, 0.60065365322741, 0.5775074082600717, 0.7505976846167132, 0.5317253080143199, 0.9590110623565244, 0.9651712957082627, 0.7333643603414158, 0.7757825668725274, 0.8928390517037824, 0.2578168736401774, 0.5355488836719776, 0.8408692583280314, 0.7849780542174357, 0.8711681462620556, 0.8447990405440073, 0.9571933326515756, 0.9307123551507692, 0.6421242495412457, 0.9239207054420927, 0.9336219461922934, 0.4244151934213653, 0.5673643045526261, 0.8301442064454496, 0.528471943574542, 0.8835542071774324, 0.8820947700128993, 0.4561713647735051, 0.584381944856391, 0.9493936477483658, 0.7816316980556022, 0.7770145472448273, 0.8495153837633861, 0.8318035560268552, 0.5220388622338656, 0.8589980209217414, 0.21216021099657945, 0.8782303617207965, 0.901850575196968, 0.7683760396387002, 0.9559989503713009, 0.938411491366706, 0.7225398931917507, 0.5918361617892179, 0.8596378534897678, 0.8816239240572568, 0.9296844522785247, 0.8299758417251202, 0.7538846798551382, 0.931253582726863, 0.6902425303942638, 0.9299571155275668, 0.35461708236434614, 0.6119587629530028, 0.8979450471026776, 0.8782891297971865, 0.6144930729026484, 0.5601837238662909, 0.4230258756549153, 0.5115702372514986, 0.6133200318312215, 0.8287048127179734, 0.42887934024879554, 0.5543929044930882, 0.5414149972460248, 0.7453725251924848, 0.6522898344923613, 0.6445138145159856, 0.9212190995841192, 0.6991293681294938, 0.9188224881967051, 0.9444881948020799, 0.8399825546316605, 0.6440269003431431, 0.45260210695563535, 0.6678228102737954, 0.8535669746933884, 0.23469888428232324, 0.7581156815660375, 0.8329520097124233, 0.5886389680190937, 0.4250130050586104, 0.290761161529129, 0.9065968169685268, 0.39757013049667705, 0.9584529405260903, 0.24804178200132845, 0.8400605958344816, 0.9562762484868867, 0.5923100188758571, 0.5355488836719776, 0.6866862751474886, 0.753715093249364, 0.9302702282582556, 0.8405005145861136, 0.7758456574858743, 0.8270123797965384, 0.9270997487744173, 0.8779999285967196, 0.6350604679157676, 0.9057987369792326, 0.9732730617650076, 0.28007269673131574, 0.5393237551960537, 0.9509318156255189, 0.8055358405733448, 0.8512314640165554, 0.6752183046546253, 0.9766791413071304, 0.26893819095773785, 0.5105552073939665, 0.7964242570425004, 0.9159462749375985, 0.46312559485344046, 0.7889853219989779, 0.5331772070153998, 0.6250130361556073, 0.5340700079782073, 0.8981158701031157, 0.8424802355113449], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [11.0, 8.9, 11.0, 10.1, 8.9, 8.7, 10.7, 9.7, 10.0, 9.9, 9.2, 10.5, 9.8, 9.2, 9.1, 8.8, 9.0, 10.3, 12.0, 10.8, 11.7, 9.7, 9.7, 8.9, 12.0, 10.9, 9.4, 9.7, 9.8, 10.2, 8.7, 8.7, 9.6, 9.3, 10.5, 9.5, 9.4, 9.6, 9.4, 9.3, 12.4, 9.3, 9.2, 9.3, 11.4, 10.5666666666667, 9.4, 9.8, 9.0, 10.9, 10.4, 8.8, 11.5, 11.0, 9.7, 9.3, 9.8, 11.1, 9.4, 9.4, 11.1, 9.7, 9.0, 9.7, 9.3, 10.9, 9.2, 9.4, 10.7, 9.0, 9.5, 11.3, 10.4666666666667, 9.4, 10.5, 11.1, 8.9, 10.4, 9.2, 9.0, 9.6, 9.9, 9.5, 9.5, 10.1, 10.4, 9.0, 8.9, 9.8, 10.5, 9.5, 9.5, 9.7, 9.2, 9.7, 10.9, 10.8, 9.2, 8.9, 9.2, 9.4, 10.6, 8.8, 9.3, 9.4, 10.5, 9.4, 9.5, 9.2, 9.1, 9.4, 9.1, 9.8, 9.9, 10.6, 10.6, 9.4, 9.4, 9.5, 11.0, 10.2, 11.4, 10.6, 9.5, 10.1, 9.4, 11.0, 9.7, 10.1, 10.5, 13.4, 10.4, 9.2, 10.5, 9.4, 8.7, 11.4, 10.4, 9.4, 8.8, 10.7, 10.1, 10.3, 11.7, 9.5, 10.3, 10.9, 9.2, 9.5, 10.0, 9.2, 10.0, 10.5, 9.5, 10.1, 10.5, 10.7, 9.4, 9.6, 9.3, 10.4, 9.0, 10.4, 9.2, 9.0, 10.4, 11.3, 10.9, 11.0, 10.3, 9.2, 10.5, 9.4, 10.2, 9.5, 12.4, 10.1, 9.3, 8.8, 10.6, 10.3, 8.0, 10.3, 9.8, 10.5, 10.5, 9.3, 9.2, 10.2, 9.3, 9.7, 9.7, 10.1, 11.1, 8.6, 9.5, 9.1, 9.8, 9.1, 9.6, 9.5, 9.0, 9.0, 9.4, 11.4, 9.4, 9.0, 9.6, 9.0, 8.6, 10.2, 9.0, 9.7, 10.5, 9.3, 11.5, 9.0, 10.2, 9.3, 9.8, 8.7, 9.3, 9.3, 9.4, 9.1, 10.0, 9.1, 10.3, 10.6, 10.1, 8.8, 10.4, 8.8, 9.7, 9.6, 9.4, 9.8, 10.9, 9.2, 11.4, 9.2, 9.7, 10.9, 9.4, 11.4, 10.0, 10.7, 9.3, 9.4, 10.0, 9.0, 8.6, 10.6, 8.8, 9.9, 8.8, 9.4, 9.5, 9.5, 10.8, 9.8, 10.0, 10.1, 10.1, 9.5, 10.8, 9.7, 11.4, 12.2, 9.6, 11.4, 10.0, 9.3, 9.6, 10.2, 9.0, 9.5, 9.5, 10.1, 9.2, 10.0, 9.5, 11.4, 10.9, 9.2, 11.2, 10.1, 9.1, 11.4, 9.8, 9.5, 9.7, 9.2, 9.5, 11.1, 10.2, 9.5, 9.0, 9.2, 10.3, 11.4, 10.6, 10.4, 9.3, 9.5, 10.8, 10.5, 9.5, 9.0, 9.4, 9.4, 9.6, 10.2, 8.7, 9.9, 8.8, 9.8, 9.5, 9.5, 9.3, 11.8, 9.4, 10.1, 9.5, 11.5, 9.4, 8.8, 10.4, 9.5, 10.4666666666667, 9.8, 9.5, 10.5, 11.4, 9.7, 10.4, 9.3, 10.2, 8.8, 10.7, 8.9, 9.2, 10.4, 9.8, 8.4, 10.3, 9.3, 11.0, 8.8, 10.0, 9.3, 11.4], \"xaxis\": \"x2\", \"y\": [0.8142007211296887, 0.07257977436397642, 0.7430932382113554, 0.8214862427787604, 0.5698848321031316, 0.6048119589659149, 0.6466669219762841, 0.14510080060429495, 0.2250304680670007, 0.28492472637839966, 0.42061632734231896, 0.8281252124183194, 0.49622399336621903, 0.3482895521074759, 0.4678833354511545, 0.5708968386647719, 0.37048677721847617, 0.553632248395139, 0.8702137350251022, 0.42186952587750404, 0.8696774950675754, 0.5410576963494411, 0.3971326977900686, 0.3275001196198921, 0.9448289227093116, 0.7109941475090589, 0.41925580570138304, 0.3675472469853882, 0.6721911818800557, 0.5562207270314473, 0.5262426608517637, 0.3244609607385458, 0.15056615442564347, 0.15676979724311627, 0.6037730696030339, 0.6342511279653397, 0.021947035536558718, 0.32429164429335744, 0.5678746850743716, 0.3571680467137555, 0.7755534309390314, 0.3240287891037917, 0.699424662214302, 0.5151532452376618, 0.7564675819717819, 0.38343591026479057, 0.19811005648518398, 0.3168419703358067, 0.5315947262677626, 0.9269044449273315, 0.8260225289794664, 0.451791899378283, 0.830516920403184, 0.47128602930186, 0.19027823806377472, 0.5181346713949518, 0.29552777318700446, 0.45414400334446664, 0.39329840463575844, 0.42327932510626076, 0.45838907164509224, 0.2233864252642039, 0.3628419195926303, 0.6709353200988277, 0.46058046365566996, 0.25551237833043455, 0.7234147543269824, 0.1481282262733752, 0.314935793994079, 0.20050531530561894, 0.37453315488553635, 0.701015529968035, 0.6343341418527783, 0.1739320900588749, 0.734996253073231, 0.8172229478314255, 0.3598554146739685, 0.7121055211356295, 0.2620604909731644, 0.3421138035730516, 0.6951268813066005, 0.35208221297891723, 0.452099210446082, 0.18907620085798427, 0.5444201651108793, 0.6484058972837882, 0.3258186925596978, 0.5963383680780668, 0.6202666247822538, 0.576738593946626, 0.5054992484109841, 0.2972245631729925, 0.6844333356791464, 0.42629475072919953, 0.4405153833121037, 0.01207867704715336, 0.7609288944606691, 0.23951123982998349, 0.09310514674080905, 0.5084920166510624, 0.33067609257366243, 0.36481899584296196, 0.5708968386647719, 0.3194802059637459, 0.14207297841267416, 0.5776897120055972, 0.2026163425795633, 0.37909000048748537, 0.38206764842015895, 0.41324683104354176, 0.17826143731067332, 0.42339414872454434, 0.39148091864802853, 0.3511350413575442, 0.8053393751847749, 0.5937005322868365, 0.6849942580153355, 0.38930033076762494, 0.5168500865319015, 0.5699073288866824, 0.5376087249833421, 0.8185832461647057, 0.25950508036415604, 0.20394483716883388, 0.3303044530853749, 0.2528102968078532, 0.8477719856767125, 0.5217124250004609, 0.3303044530853749, 0.5382885532339231, 0.9625763866028243, 0.6536174904341296, 0.42629475072919953, 0.6458781618432388, 0.46574001023909845, 0.37268733756108086, 0.8180085473348132, 0.35493594975273335, 0.2423640089427935, 0.3636330633241046, 0.6421622311157122, 0.5444201651108793, 0.7396308412796291, 0.9036153464846048, 0.21101569987323432, 0.6004024464464508, 0.7595861882737439, 0.486549602332862, 0.2379839758891197, 0.5147825233229498, 0.2065932277190248, 0.4342628292980428, 0.5940848250235929, 0.4857193175270624, 0.5332610244722983, 0.5402196969638672, 0.8578846895389459, 0.5290225674595067, 0.6074669506688956, 0.1847839155105034, 0.3581391437324269, 0.4304380754474639, 0.8410120374942113, 0.5810086483513661, 0.19026233744636453, 0.7223494520380469, 0.8589928738613049, 0.8374625942163022, 0.781203852328267, 0.73983195178881, 0.41156537259256004, 0.7482873396984137, 0.44431713201158524, 0.7113673874393347, 0.49869552495399233, 0.7627102864663872, 0.37193390769028617, 0.37187810520956766, 0.3773291605703562, 0.8719651627687759, 0.6218762459828849, 0.3781393537983126, 0.553632248395139, 0.47624084907999176, 0.774399353278846, 0.5840424935194366, 0.5601025471409736, 0.6186690618327106, 0.620611700356168, 0.5755798886129706, 0.15047650536569443, 0.5530049338021776, 0.6597439619439023, 0.8300222117931148, 0.3490158529243493, 0.4410646109528086, 0.5067909967309752, 0.5851482063434866, 0.7149827463187939, 0.4849259975950144, 0.2094210588097294, 0.33399024531412796, 0.4083143545243069, 0.7497022835596558, 0.7817929239213606, 0.7637421953724776, 0.3825655414920891, 0.6611482494098961, 0.19022241257108333, 0.44972084577511023, 0.5476732603321269, 0.4831274653996314, 0.5077048340566679, 0.7289504589448288, 0.4379810490617926, 0.8017221455714771, 0.6434673631716396, 0.5059779734745421, 0.6065367192264559, 0.650368705032214, 0.34567471266024347, 0.39561589000187136, 0.3427787545601037, 0.4676404271158623, 0.5332283386400669, 0.4519108142444285, 0.40662831629925006, 0.42305576187259053, 0.22032895172816622, 0.5278715769330472, 0.43679486629948455, 0.743933429392776, 0.5269515041023835, 0.5008800654866953, 0.214168174561682, 0.44879088851457377, 0.683485355417811, 0.807753104897186, 0.42629475072919953, 0.8502951424821861, 0.17421175568219957, 0.25491371883486935, 0.7595861882737439, 0.6571724132942184, 0.7813188949129265, 0.5626906653340306, 0.8674288259883418, 0.6600514650598344, 0.4827749661719035, 0.5456147119159479, 0.39827550056677263, 0.27323823737433794, 0.695896529362927, 0.5048820477254727, 0.5422349097465021, 0.5610936746718964, 0.6571724132942184, 0.3088751107498249, 0.45428761266464013, 0.6604471727860799, 0.43371621376298963, 0.6171893197168647, 0.8100511550343341, 0.8100511550343341, 0.605832578461134, 0.5526475584669951, 0.4275055171336787, 0.8734720021260204, 0.8508295378350301, 0.5807723706867254, 0.8272749548927728, 0.2670652478909882, 0.7020144194675465, 0.4615566916191992, 0.7055847950248242, 0.43389869234556755, 0.6071692164257629, 0.3496825637352313, 0.23676491619791426, 0.7057755976874825, 0.15539001443149586, 0.6187538615870153, 0.8735882828904331, 0.30049486749739024, 0.23191705420611952, 0.8913917397916864, 0.4977157214618499, 0.16961113509580228, 0.8485494795219795, 0.4760032757956232, 0.5053843099270294, 0.2676015269871764, 0.3627664421236291, 0.15146266807038725, 0.7898179638281774, 0.6145296307645981, 0.3790380236797623, 0.3003532640340299, 0.6086112016774773, 0.39906793889171593, 0.8185832461647057, 0.6715802865662828, 0.8260225289794664, 0.6056902064850618, 0.400132762133902, 0.39471961640683584, 0.6449859309106076, 0.5637152910565628, 0.39949420960438964, 0.5490401551410112, 0.4398875418860128, 0.30916577334906253, 0.7093303227687476, 0.4562508424819209, 0.40444044759428516, 0.5773483646962835, 0.447777692034652, 0.4961542215384683, 0.32474312180562226, 0.21192693199409943, 0.9056903490933487, 0.5013816399998683, 0.758876109553896, 0.6364928148646596, 0.2952804752502578, 0.4748951900520853, 0.43679486629948455, 0.5479962315186364, 0.4728142838839701, 0.6343341418527783, 0.12248807650217919, 0.5052525886146573, 0.8281252124183194, 0.8930081609652758, 0.36283726088930296, 0.8098196742550625, 0.656477404357746, 0.193885049884708, 0.5269515041023835, 0.49858469647139786, 0.32780472036158087, 0.24927512797396847, 0.6148718578314069, 0.10691527318901187, 0.136775438340409, 0.8489192718114075, 0.2600203086082801, 0.8142007211296887, 0.5269515041023835, 0.7966615933629455, 0.5633234794197017, 0.767479452333631], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"alcohol\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"alcohol\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}}, {\"id\": \"alcohol_bad\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (ref)\", \"type\": \"scatter\", \"x\": [8.7, 12.6, 10.6, 10.5, 9.4, 9.5, 9.7, 10.4, 9.3, 9.7, 10.2, 11.0, 8.7, 10.7, 9.3, 9.5, 9.5, 9.8, 9.2, 10.9, 9.5, 9.1, 11.2, 11.2, 9.9, 9.8, 9.9, 10.1, 9.1, 10.1, 9.6, 10.4, 10.8, 10.0, 9.1, 10.1, 10.0, 10.8, 9.6, 9.2, 9.2, 10.6, 9.5, 8.9, 9.5, 10.1, 9.1, 10.5, 10.6, 9.3, 9.4, 9.1, 9.3, 9.6, 9.8, 9.2, 10.6, 10.6, 10.1, 11.0, 9.3, 10.0, 12.6, 9.4, 9.2, 10.4, 9.2, 9.9, 9.8, 10.1, 8.8, 11.0, 8.7, 11.4, 10.2, 10.0, 8.9, 11.1, 9.2, 12.0, 10.0, 11.1, 9.0, 9.05, 9.8, 10.9, 10.1, 10.0, 11.6, 9.2, 11.0, 9.4, 9.8, 8.7, 9.1, 9.5, 9.1, 9.5, 9.2, 9.6, 9.2, 9.7, 10.2, 9.0, 9.3, 9.3, 10.3, 11.4, 9.0, 10.5, 10.4, 9.9, 9.2, 9.0, 10.4, 9.6, 8.7, 11.4, 10.1, 9.4, 8.9, 12.8, 9.1, 9.7, 8.8, 9.5, 10.6, 9.4, 9.5, 9.4, 9.6, 11.3, 9.4, 9.2, 9.3, 10.0, 11.05, 9.1, 11.2, 9.9, 9.2, 9.4, 11.4, 9.2, 9.9, 9.0, 11.0, 10.6, 9.7, 9.6, 11.1, 9.5, 11.4, 10.2, 9.2, 9.8, 9.2, 9.5, 9.9, 10.8, 11.5, 10.2, 9.6, 8.4, 9.5, 11.5, 9.53333333333333, 9.1, 9.4, 9.2, 9.6, 11.5, 9.4, 9.3, 9.4, 10.3, 9.5, 11.4, 10.2, 9.2, 9.6, 10.9, 10.2, 9.7, 9.0, 9.4, 10.2, 11.8, 9.4, 9.0, 9.6, 10.7, 9.4, 11.0, 9.4, 9.7, 9.3, 9.5, 9.5, 9.7, 10.3, 8.8, 8.8, 11.0, 11.3, 9.0, 10.5, 9.5, 11.4, 10.8, 9.9, 10.4, 9.6, 10.0, 9.0, 9.0, 9.4, 10.8, 9.2, 10.0, 9.7, 11.2, 9.5, 10.0, 10.2, 9.2, 9.2, 9.0, 10.2, 9.2, 10.1, 10.5, 9.6, 8.7, 12.0, 11.1, 9.1, 10.6, 10.0, 9.3, 10.8, 9.5, 9.0, 9.4, 11.2, 10.5, 9.4, 10.5, 8.8, 9.3, 11.2, 10.7, 10.8, 9.6, 9.5, 9.1, 9.7, 10.4, 9.5, 9.5, 10.5, 9.2, 9.9, 9.5, 9.0, 10.8, 10.6, 10.0, 10.6, 9.2, 8.9, 9.0, 9.9, 9.9, 9.6, 9.7, 10.5, 9.3, 9.9, 10.5, 10.0, 9.8, 9.5, 9.3, 10.2, 9.5, 9.5, 9.4, 10.8, 10.2, 11.1, 10.3, 11.0, 11.2, 9.4, 10.2, 9.0, 8.7, 8.9, 9.5, 11.4, 10.7, 10.0, 8.6, 9.7, 10.6, 9.3, 9.3, 9.4, 9.3, 9.3, 9.5, 9.8, 9.5, 9.8, 9.3, 9.3, 9.4, 9.5, 9.8, 10.5, 9.5, 10.9, 9.5, 9.6, 9.5, 14.9, 10.4, 9.2, 9.4, 8.7, 9.5, 9.7, 9.4, 9.8, 9.4, 8.9, 9.5, 10.9, 9.0, 9.6, 9.4, 10.8, 9.6, 9.2, 9.8, 9.2, 10.0, 10.1, 9.4, 9.4, 10.0, 9.7, 13.0, 10.0], \"xaxis\": \"x\", \"y\": [0.7197707895473677, 0.05448058807241418, 0.5021256787650443, 0.4710854375480472, 0.7156076129280222, 0.7966690429773311, 0.7265425252145667, 0.16771266951545494, 0.610944103187451, 0.6324527530146118, 0.42180662537268765, 0.2598044700255929, 0.5503032830239416, 0.5632112185661304, 0.6840604465833231, 0.6224375641140001, 0.8071781895370533, 0.9515482366939344, 0.3994071349416132, 0.9677746238863042, 0.572587586261062, 0.7602674855798478, 0.861098734498427, 0.1386074727873, 0.6703360831713621, 0.8064003460928679, 0.3172728283240366, 0.8039094494444462, 0.9186426431335688, 0.6026275969807151, 0.8609701260317718, 0.3485833566260712, 0.3005246278528939, 0.2859113263741919, 0.4978204971029292, 0.5125675444128744, 0.4268860326359044, 0.11791793574572085, 0.440027850275134, 0.4938434408506086, 0.4933189622152446, 0.166194347192407, 0.30200278364192557, 0.6822425768461728, 0.8693180940701344, 0.24112389044610405, 0.43189370387303117, 0.284455178085937, 0.23793737479647703, 0.5535561322468214, 0.7900402576908969, 0.47373775892899717, 0.6055733033081183, 0.7462675017011632, 0.32245623572553406, 0.7612367841042231, 0.36308410170653527, 0.6103993963703384, 0.3965676277125745, 0.2230008284200371, 0.8480025164595866, 0.43585875500482685, 0.24095331994381775, 0.4030652094068704, 0.8951637220162157, 0.2782175630406618, 0.7337660836226194, 0.8352762102164887, 0.6223987562306759, 0.2928263700360406, 0.6563137004068428, 0.16155652477357085, 0.6364666355122575, 0.2186811050870735, 0.27206300237801306, 0.4358901152617537, 0.6136035252376228, 0.07900866299327158, 0.8522855318359817, 0.11906253414448076, 0.3466831105240652, 0.11265227152414181, 0.6302693732121377, 0.7168097665217413, 0.4796298258249143, 0.4476252306691143, 0.3612478268219491, 0.611861930499026, 0.15121036728507153, 0.5363393546692182, 0.16155652477357085, 0.441733396330222, 0.7834276811132227, 0.6364666355122575, 0.44873286860252337, 0.4948960601400133, 0.4172084246960842, 0.5055831714989107, 0.5269082808529498, 0.3737404408311804, 0.4491757516278906, 0.5266720849021, 0.2882430633103308, 0.6066213483726142, 0.83534933450756, 0.2509605867776752, 0.230738949997912, 0.25680675940048736, 0.6858999083789018, 0.27626495444752697, 0.35158671089680515, 0.311480105980391, 0.5950329577300569, 0.4196263877039489, 0.3672198477254309, 0.5488429300958864, 0.6273126624389191, 0.0990306898864649, 0.935036100419004, 0.5556828679884147, 0.6003916802566726, 0.1337843055401957, 0.6898191889393818, 0.46604488826349566, 0.6668872608045229, 0.5998672378660981, 0.14712454771937833, 0.8558065212045691, 0.883276495704891, 0.5544329747085402, 0.38398791005853006, 0.8623310715459079, 0.4482795971615686, 0.4767821080964978, 0.6451659669426603, 0.5099786295438409, 0.11454219273407718, 0.5691587732433696, 0.2398813672346335, 0.8592796956842923, 0.38133093816728936, 0.4754945767078651, 0.2673740541283356, 0.43092180164799054, 0.5981491184574936, 0.7512253043619477, 0.20474988026063612, 0.12337786436138054, 0.6965484670033051, 0.4642254518352117, 0.29034758521725457, 0.7912282271603185, 0.1364389858241727, 0.5326323768611896, 0.3938848007926149, 0.886984727126295, 0.5955398539691413, 0.3667393936023857, 0.35129461810907203, 0.578130474122496, 0.1952086434691429, 0.6982941690158907, 0.6159300986783536, 0.6650580695700093, 0.8007006003287879, 0.13750802167619447, 0.47121416359091395, 0.5691587732433696, 0.5295784007050042, 0.4938434408506086, 0.4240508430342457, 0.1531205555636086, 0.7965770364050346, 0.4829168465516456, 0.6333246955344933, 0.38682769986244625, 0.5589353890471914, 0.30965836575156913, 0.6133571507425741, 0.5363393546692182, 0.5474540697204298, 0.9680074395956593, 0.29703705077451537, 0.7566858385458134, 0.451244026180727, 0.6224939697452743, 0.9340693900855184, 0.1254375450851024, 0.770680513376406, 0.7273231109206828, 0.410671569380914, 0.19928392436820586, 0.44743622108127745, 0.4991477681643879, 0.5443787589855091, 0.826082779912576, 0.5642536294664222, 0.6762559922350657, 0.39283078357423706, 0.3074847569358159, 0.40732461839200396, 0.5614584986504241, 0.5614584986504241, 0.575628870274347, 0.1938881144566701, 0.6480440770440566, 0.23946299348505806, 0.6110142157087575, 0.32489046344192996, 0.127020290619695, 0.28948900574123104, 0.27970970921902805, 0.5179212029104148, 0.579807192000203, 0.5695619245525361, 0.7471497674522103, 0.6761943115269239, 0.6052803835931642, 0.9048996801452402, 0.632953623191418, 0.7849920634816455, 0.12946409768986655, 0.3899257470968539, 0.37735505673750047, 0.27206300237801306, 0.6356505945299911, 0.9000798247851504, 0.5852448485124296, 0.3537739535016634, 0.8589709040748648, 0.5105041430354158, 0.4760479563081992, 0.3915586115462193, 0.4344526143297297, 0.04825794875232026, 0.25106204840173363, 0.5352062615150248, 0.2084678736174792, 0.5588772074146924, 0.42656597432725707, 0.3395528272139201, 0.5154796814541086, 0.30312695461308037, 0.4684625037801391, 0.13140485141127656, 0.37575572516499556, 0.7087902803012941, 0.22740617784346517, 0.7932370230268412, 0.6977827466507267, 0.8687065743771458, 0.3532210556477622, 0.3005246278528939, 0.8817461779308045, 0.5897758288136841, 0.5117334773877459, 0.2267712913026929, 0.7462523759498982, 0.5055831714989107, 0.6276122794572256, 0.34766968675436505, 0.563322001169588, 0.4035281086421867, 0.44827723495654004, 0.7588644006503809, 0.17560197311170134, 0.2736156405730563, 0.5646478519097824, 0.12788772013874206, 0.8127608550985441, 0.35130933230290007, 0.8842329534318195, 0.5671758377024384, 0.508518787579709, 0.4735654621913231, 0.6614347321502836, 0.7032589073748752, 0.418601168771625, 0.40262233345395115, 0.38045938978299354, 0.6221728234115828, 0.6769388667590319, 0.825791915264051, 0.8036522945246104, 0.5350776523934957, 0.5038683203672731, 0.4187790963850706, 0.3942708224564714, 0.36585282612655, 0.42973128126448334, 0.1395024853671747, 0.36909778672938764, 0.5126700875045708, 0.31128511290513083, 0.5841805470690385, 0.42932394036482613, 0.5168725346003686, 0.9331527243268325, 0.5090935678835011, 0.848083892739094, 0.7288594688776423, 0.23463814542978878, 0.9073343486287574, 0.5445649372592127, 0.8030108083542629, 0.30698149193503155, 0.47724620771884374, 0.49565431290071005, 0.29179072192325783, 0.53941953634433, 0.32642767658125227, 0.5714063949384225, 0.6769388667590319, 0.48314991346809855, 0.3838692085325581, 0.7654355578102645, 0.6807995217458978, 0.7803105409218809, 0.4971816769068883, 0.5662837862370104, 0.32557907866588853, 0.4059739580227363, 0.8621668957327787, 0.4863555612469991, 0.44913520001249685, 0.5044088987161788, 0.018560580499064172, 0.17397747102053363, 0.8203404366189, 0.531551035274026, 0.3951880410340851, 0.6710839680909022, 0.7545393605546251, 0.25029771644034415, 0.31651464458218903, 0.7900402576908969, 0.7649542174153934, 0.6282404390050247, 0.5124469561170844, 0.7501741577575001, 0.3717170374651112, 0.5479204837841629, 0.1799627586960565, 0.8716748635647116, 0.4700369344869263, 0.7044722268129955, 0.7597806244765397, 0.4570971226262448, 0.3688130253756654, 0.5854022956087224, 0.6067015953642416, 0.6092966434658947, 0.5713009051869427, 0.15316343939585397, 0.31191498773739224], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [11.2, 10.0, 12.7, 10.5, 9.4, 10.1, 13.5, 10.4, 12.4, 11.5, 10.0, 9.8, 10.5, 9.1, 9.5, 9.6, 11.7, 11.2, 12.3, 11.9, 10.0, 12.3, 10.1, 11.9, 11.5, 10.0, 13.6, 11.3, 9.6, 12.8, 12.2, 10.0, 10.9, 11.8, 12.5, 10.0, 9.5, 12.9, 12.8, 11.3, 11.5, 10.2, 12.1, 9.7, 10.0, 8.8, 9.0, 12.3, 12.0, 12.0, 9.7, 8.9, 12.4, 10.3, 11.1, 8.6, 10.8, 11.8, 10.8, 12.5, 10.4, 12.8, 12.2, 10.2, 9.8, 9.2, 11.7, 10.5, 9.8, 13.4, 12.2, 13.4, 11.0, 12.3, 10.7, 9.8, 12.8, 12.3, 10.9, 12.4, 10.1, 13.5, 11.0, 10.4, 12.2, 11.3, 11.3, 9.9, 13.4, 9.3, 10.4, 12.2, 10.2, 12.4, 10.6, 11.3, 10.6, 12.6, 11.2, 9.4, 10.2, 8.9, 11.9, 11.0, 12.5, 9.7, 12.2, 10.6, 11.4, 10.75, 12.4, 8.8, 9.8, 10.9, 10.7, 12.7, 11.4, 11.5, 9.1, 11.0, 9.0, 9.8, 10.4, 8.9, 9.6, 10.5, 9.5, 8.9, 11.0, 9.9, 10.6, 14.0, 9.1, 11.0, 9.9, 12.9, 10.0, 11.0, 13.4, 10.0, 12.7, 10.5, 10.5, 10.6, 9.3, 10.6, 11.7, 10.9, 10.6, 9.2, 9.0, 10.5, 10.3, 9.5, 9.0, 11.9, 11.4, 12.1, 11.4, 12.0, 10.5, 9.8, 11.7, 12.1, 10.4, 9.6, 10.2, 10.1, 8.9, 12.1, 11.1, 9.4, 9.7, 10.5, 10.5, 10.1, 10.0, 9.8, 11.2, 10.8, 10.7, 12.1, 11.9, 12.7, 9.6, 11.0, 13.55, 10.1, 11.6, 10.3, 11.2, 12.8, 12.5, 12.2, 9.7, 12.1, 8.7, 11.0, 11.8, 10.5, 10.7, 12.5, 12.2, 11.8, 10.6, 12.0, 10.9, 10.8, 8.8, 9.5, 10.4, 10.8, 12.1, 10.8, 11.5, 10.0, 11.5, 10.8, 10.9, 12.8, 10.2, 8.7, 10.5, 12.9, 10.6, 10.8, 9.1, 9.1, 10.8, 10.6, 11.0, 9.9, 11.5, 10.4, 11.9, 12.2, 11.0, 9.8, 11.8, 10.7, 10.8, 9.0, 9.2, 8.8, 9.5, 11.4, 10.1, 10.1, 9.3, 12.3, 8.6, 9.1, 10.8, 11.2, 11.2, 11.0, 12.0, 9.4, 12.6, 11.5, 9.0, 12.2, 10.9, 12.3, 11.6, 11.2, 13.2, 12.5, 10.3, 13.0, 10.8, 11.4, 11.4, 11.0, 13.0, 9.9, 10.9, 11.7, 12.8, 10.5, 11.2, 11.6, 12.2, 12.75, 11.9, 11.9, 9.3, 10.0, 9.6, 12.0, 10.1, 12.0, 12.4, 11.2, 10.9666666666667, 9.1, 9.9, 10.0, 10.9, 10.7, 12.6, 10.5, 12.3, 11.0, 9.7, 11.0, 11.4, 11.5, 9.0, 10.1, 9.5, 9.0, 12.4, 11.3, 11.0, 9.7, 9.4, 12.8, 10.9, 12.2, 12.6, 11.4, 12.6, 11.7, 11.0, 9.5, 9.7, 11.2, 9.7, 12.2, 11.0, 12.4, 9.3, 10.4, 10.8, 9.1, 10.5, 12.8, 9.6, 10.5, 9.9, 11.1, 12.1, 9.5, 9.9, 10.0, 9.4, 9.0, 12.4, 8.9, 10.8, 11.2, 10.9, 11.0, 9.6, 11.4, 11.0, 12.4, 10.1, 12.2, 9.4, 10.4, 10.3, 11.5, 9.8, 9.7, 12.6, 11.2, 12.0, 9.0, 10.8, 10.3, 10.4, 10.1, 12.9, 12.5, 12.7, 10.4, 9.9, 9.5, 9.2, 10.8, 9.1, 9.3, 9.0, 10.9, 9.0, 9.5, 10.5, 12.2, 11.2666666666667, 8.9, 9.9, 11.0, 10.4, 11.0, 11.8, 10.6, 12.6, 9.4, 11.5, 9.3, 12.5, 8.8, 11.5, 10.4, 10.6, 11.3, 10.8, 8.7, 10.4, 11.1, 11.3, 11.2, 10.5, 11.9, 11.6, 9.1, 10.8, 9.4, 10.5, 10.8, 9.6, 9.0, 10.2, 11.0, 11.2, 11.4333333333333, 12.2, 12.0, 12.4, 12.4, 12.8, 11.6333333333333, 10.0, 13.1, 11.5, 11.3, 12.3, 10.6, 11.0, 10.7, 11.8, 10.1, 10.2, 10.4, 9.6, 9.5, 11.0, 10.9, 12.6, 12.4, 11.9, 10.2, 9.7, 13.0, 10.2, 10.9, 9.9, 9.1, 11.2, 9.5, 11.0, 9.2, 11.5, 11.0666666666667, 10.4, 11.0, 10.4, 13.4, 9.6, 9.4, 8.7, 8.8, 12.4, 12.9, 12.4, 11.0, 10.2, 10.0, 11.7, 8.5, 8.8, 9.7, 9.0, 12.0, 12.5, 9.0, 11.7, 9.2, 9.4, 9.5, 9.2, 10.3, 11.5, 11.4, 9.6, 10.1, 12.8, 10.5, 10.5, 12.0, 11.7, 9.0, 12.5, 10.1, 11.4, 9.9, 12.3, 12.2, 12.3, 12.1, 10.4, 9.0, 12.1, 12.3, 11.9, 9.3, 11.6, 12.7, 9.5, 13.2, 13.0, 11.5, 9.0, 12.0, 9.3, 11.6, 9.3, 11.2, 10.5, 10.1, 10.7, 10.1, 11.4, 10.7, 10.5, 12.1, 11.0, 12.2, 10.5, 12.8, 10.0, 10.6, 12.2, 13.2, 11.6, 9.4, 12.0, 11.0, 10.0, 11.3, 10.8, 9.7, 10.4, 10.4, 10.8, 9.2, 9.3, 11.4, 9.4, 9.8, 11.2, 9.8, 13.6, 11.0, 11.3666666666667, 10.5, 12.5, 10.1, 12.1, 10.1, 11.5, 12.7, 12.0, 12.9, 9.0, 10.6, 10.5, 10.5, 11.9, 12.5, 10.1, 10.7, 12.2, 10.8, 13.2, 10.8, 10.3, 11.2, 9.9, 12.5, 9.5, 12.8, 10.2, 10.1, 11.1, 10.5, 11.1, 9.2, 11.2, 11.7, 10.2, 11.0, 11.7, 8.8, 10.8, 9.7, 11.5, 8.8, 10.9333333333333, 10.5, 9.8, 10.7, 12.7, 11.8, 10.1, 9.4, 11.3, 10.2, 10.4, 11.3, 10.0, 10.9, 9.6, 10.9, 9.6, 11.7, 9.53333333333333, 12.3, 10.2, 9.5, 9.2, 11.0, 11.7, 11.3, 10.0, 9.53333333333333, 10.8, 9.5, 11.8, 9.9, 12.0, 11.8, 9.5], \"xaxis\": \"x\", \"y\": [0.18439386755371057, 0.5750868907731637, 0.1132172353536568, 0.19850047615697952, 0.6950004168934912, 0.41826441672946313, 0.040828937665112974, 0.2145583871630251, 0.09143093017991866, 0.10013996234885614, 0.3658834999306372, 0.587897812361327, 0.23563705889496211, 0.5289998061994394, 0.5981734696485812, 0.5956194363709464, 0.11295199838815062, 0.6349332021584286, 0.09356782907078887, 0.0672754654033908, 0.3541579814831264, 0.11781588709523827, 0.3295981493457443, 0.23443288181779365, 0.13830133810679424, 0.5122546205578999, 0.03626449638205209, 0.32057959349203036, 0.3955164844050859, 0.21320459763992916, 0.08620177311633537, 0.4132497936565127, 0.19514157099220286, 0.028148892894647393, 0.03728071159582558, 0.20213762816504022, 0.39088790332760825, 0.10566618212719892, 0.11466232649727714, 0.09544364959788487, 0.07351553674018241, 0.3657542344632553, 0.05859665738698361, 0.43634835962676355, 0.4827032077898804, 0.516310366273556, 0.6480037931050455, 0.21122004543372697, 0.030344760075157406, 0.22750344576024595, 0.18673438423788624, 0.5460909738859347, 0.0666291073587214, 0.320234954276134, 0.515425573770442, 0.5751179393061847, 0.3262180383913996, 0.12192585741802231, 0.6165939755266235, 0.09365914315081003, 0.44259853952477324, 0.31958523161407537, 0.09228899111547839, 0.22815273642701062, 0.5282447951108347, 0.7777719169155834, 0.13834506443323813, 0.29425092810710396, 0.5300870647699181, 0.031947521718024174, 0.1108646816717751, 0.053339747820140615, 0.14466174791529418, 0.25697560969337485, 0.3383868137798065, 0.30803904997837983, 0.03434255320493995, 0.08689109251212201, 0.46044782253877736, 0.0973761441498977, 0.3449058470623745, 0.024212367984770777, 0.11665042079727428, 0.3333970234137619, 0.1495417879159372, 0.0679784404121434, 0.2360052425084116, 0.39147703437781534, 0.04428683932015287, 0.5381556738404795, 0.4357341587922019, 0.11843845992675284, 0.28107964630818494, 0.06989794698232743, 0.2658605825653322, 0.22408104406272966, 0.15519213452661884, 0.09873339188795927, 0.10739713799337769, 0.4712507279726723, 0.31257930793611366, 0.6259141532505736, 0.1651629894813923, 0.13024327386797574, 0.08242409751896962, 0.55355901104019, 0.11256152515999429, 0.22124325125588817, 0.05838775174278421, 0.6734770756819889, 0.06919042490492266, 0.5773286546676725, 0.5693181878572973, 0.12726917141891614, 0.27983888222674136, 0.15690954109554833, 0.18593824584442387, 0.05432525584274117, 0.33273366741371935, 0.12435295831370408, 0.48112847828662497, 0.2959384652215836, 0.5042039768350125, 0.3749869638443927, 0.7258627386781167, 0.4806866421912115, 0.6234335830956541, 0.4191951896523489, 0.20821728825178332, 0.6343085651912675, 0.27674577061671146, 0.02140654255666985, 0.42849246998341506, 0.1817444030106703, 0.4551538855951942, 0.05087080041524106, 0.516641204200833, 0.6810720245435042, 0.08151744899857294, 0.4475169494323581, 0.03995706953508171, 0.2181819033834006, 0.20372897255157485, 0.24305701296248816, 0.5381556738404795, 0.2358485729609252, 0.051323642447754336, 0.1913631294907303, 0.32154631204965056, 0.31229802093755377, 0.3917329141436472, 0.39462053822053156, 0.3680669306910641, 0.5017894292511481, 0.32120711190509066, 0.0768019282386515, 0.1168769044932052, 0.31545143431826594, 0.12007957373947853, 0.08354361700756141, 0.2180731800932174, 0.7653011157176768, 0.05076221583963347, 0.11739077279846111, 0.3639458403519926, 0.4815918747301601, 0.35998732468747585, 0.457353694020342, 0.5520498791697908, 0.22168281241722143, 0.2132287846887433, 0.4763394582576197, 0.3040153802820409, 0.20749766415549342, 0.3316810644107503, 0.8126297477835096, 0.5749367295182395, 0.27274039590582944, 0.2685808245693546, 0.5172108675362206, 0.33506587713796443, 0.09616672688355288, 0.041108213935392324, 0.10548050716105373, 0.5016695616404938, 0.20022874051447226, 0.14220640128276774, 0.23772630779738468, 0.19606080251004787, 0.2603188495268066, 0.18846597668723208, 0.19827111133563302, 0.261548791893628, 0.4140325207077993, 0.8134796325151183, 0.12265695643958285, 0.6311167068993262, 0.13481820177301163, 0.0932384579037443, 0.14050160114126486, 0.2562249115981724, 0.08547750670655718, 0.08643201081848362, 0.19981675431015722, 0.31390222338706264, 0.06221739913672386, 0.06996303880871468, 0.30029370289300306, 0.4306817897420764, 0.6595343859760441, 0.2839408857911616, 0.20468539219890003, 0.1130196126722065, 0.2360017176902124, 0.13187147729288817, 0.42313120297864704, 0.06964897436687001, 0.1624399718171824, 0.17200815643270417, 0.07333105637055992, 0.2440137653363641, 0.4900110333069776, 0.3085554157386313, 0.03480496731142946, 0.12148031785507996, 0.15002971926037112, 0.5314247042003052, 0.2758453007685677, 0.2151852748992088, 0.2658605825653322, 0.29911225563077193, 0.6594110243744711, 0.49869782335001445, 0.16788254706683048, 0.11816213334465087, 0.08230909248122409, 0.13653212507346946, 0.25639170942272826, 0.06562233405876228, 0.23311900627036541, 0.3756616197417655, 0.46674395287949066, 0.3092684534350997, 0.8337319641197457, 0.8331457111467163, 0.2591056156836542, 0.4778687671024334, 0.2542440524586721, 0.5361036306539362, 0.07073721340803463, 0.4731688813159418, 0.5755848065786346, 0.356689463387698, 0.14225616860197343, 0.21837916002376445, 0.14466174791529418, 0.29899643271856946, 0.4757427727983842, 0.08126799884203029, 0.1296501822378736, 0.3286954654423938, 0.08620177311633537, 0.13855855420831553, 0.05543377339452393, 0.11917834098009661, 0.2613621884509647, 0.11269900223777074, 0.08429051026621415, 0.3393961441870107, 0.07031960314855146, 0.11356777592095357, 0.4853279864284006, 0.1279289285514792, 0.0584572339054259, 0.08612988585012649, 0.3472440907423937, 0.1248029959061332, 0.07502335399434323, 0.19827111133563302, 0.3424151534036639, 0.3065175956815872, 0.13808860398564737, 0.058092197534895806, 0.04082786106581715, 0.1602592849246841, 0.09156161599234125, 0.5036030690663805, 0.2640411824475748, 0.6468038092930676, 0.07201805208597656, 0.22470230804277058, 0.1334773721572423, 0.04847889440667685, 0.2685808245693546, 0.10911308148570098, 0.6764508967260475, 0.6280060594576413, 0.36761958218269275, 0.16019930342079847, 0.17605308658107655, 0.14078981831089854, 0.2384997092801764, 0.13117402490907393, 0.12818959986091483, 0.4161925244315118, 0.12435295831370408, 0.09814942480303201, 0.05480698563416486, 0.3746187330143109, 0.41092354232892336, 0.507894749900129, 0.5137929421583434, 0.08293523366016065, 0.2964416548030494, 0.15236141109070434, 0.4396941021426354, 0.41893931094950754, 0.09113953260801844, 0.10967473999240707, 0.055732078845942, 0.05640314085190745, 0.06176263301115803, 0.06427139521062619, 0.20386133178572885, 0.21597661143113533, 0.7486409492386699, 0.2610715902497083, 0.09465277491899493, 0.5556171757583562, 0.137718889647652, 0.1978940751503777, 0.08472590699531857, 0.356262641598029, 0.14596950445002987, 0.13865818299932142, 0.3088915816821678, 0.11516321289421916, 0.16121169033174265, 0.40573483691789825, 0.34308606282264, 0.36300204724896845, 0.17193414756867276, 0.035926383178341514, 0.34536882843285344, 0.4400180463892147, 0.5165194668234709, 0.23319834124303085, 0.9637923675569924, 0.2635599134550337, 0.6259141532505736, 0.12324962258280003, 0.1256037712827487, 0.1248029959061332, 0.11665042079727428, 0.29081136443782263, 0.12993062945549005, 0.20959981847797426, 0.12385816607190492, 0.16931651488884025, 0.2468284110987674, 0.6181879252747016, 0.3509541008179864, 0.08619429866610873, 0.09537770951135394, 0.8204393830764495, 0.2493836920976743, 0.10367142046182065, 0.11516383353466464, 0.07169627826225977, 0.5400384130096556, 0.2709141565803237, 0.16809050322974173, 0.3421981324687273, 0.812724325423183, 0.1326589750154965, 0.054670132935181304, 0.055346153509382656, 0.8039442695404772, 0.3276168958360183, 0.6561718697940482, 0.6214102617950452, 0.3046829516703813, 0.7853649284745584, 0.7303620793003476, 0.6719087507962026, 0.16000678121984613, 0.579612101366232, 0.6347749924714103, 0.41894393066564606, 0.06936532322770372, 0.28322834609079706, 0.343263893078516, 0.4450860003239352, 0.3090838478611311, 0.408095736797927, 0.11529682880263803, 0.13359771811640497, 0.2417229185475579, 0.10092265889692065, 0.8181934133883563, 0.3777834313813965, 0.8273808576462511, 0.18439353202429143, 0.5148786056082297, 0.11287077888712382, 0.16015059460472458, 0.29672938182784603, 0.36944561074938853, 0.2505850522824452, 0.8467591712977676, 0.3840267097226593, 0.261779448872241, 0.1645479955558209, 0.14631295673285594, 0.4248523287309329, 0.09222807982804315, 0.2121484308544801, 0.33273366741371935, 0.5470626312455473, 0.8294144697045585, 0.25206662215500397, 0.15998368749433245, 0.548322128117227, 0.3917329141436472, 0.15981565308588508, 0.23631147082452741, 0.21082920466209698, 0.1871387197916503, 0.24774693401855818, 0.1913242313933492, 0.16437448769677154, 0.07582203648947516, 0.032541140295091364, 0.06311143057978008, 0.5009235508757715, 0.12343879567504301, 0.445735807756371, 0.40322837553658053, 0.09397553936597514, 0.1598391281143201, 0.26702494168661406, 0.19782301216908982, 0.06831823449824892, 0.5451167746582685, 0.20142160156100697, 0.25747632252511843, 0.4257317671215596, 0.5062318064185062, 0.10278357133077332, 0.10857266292312517, 0.06223864817381186, 0.11377411494697365, 0.14082424186384768, 0.2589321903149734, 0.31776639873426016, 0.07983414941561229, 0.30174211068680845, 0.42532907678292176, 0.23734670470511587, 0.2862296469110084, 0.24790288035387664, 0.5526146374040077, 0.20425399436950087, 0.5166825128498294, 0.12415322942140417, 0.5310696157212036, 0.3866387435262121, 0.14313186082947948, 0.31648660326859934, 0.026792916001305622, 0.7856428374245099, 0.42383310375799566, 0.5944566396871084, 0.6256605001243821, 0.08813642250468567, 0.03544811528140901, 0.06935406654889886, 0.15751976448865512, 0.22608551288474832, 0.3127311228465576, 0.1409438166611655, 0.3285615524533705, 0.3591330499592894, 0.47964497307801546, 0.7143146030302826, 0.14223944449319303, 0.06929054967731618, 0.32120711190509066, 0.16913647442041335, 0.707286257884667, 0.3230684446475647, 0.7616845263358343, 0.4104900542879092, 0.10053249234255524, 0.1106599594415556, 0.1543174595222413, 0.46003879185641183, 0.3811350878514418, 0.07185070571861518, 0.23882593985771994, 0.5344976262521839, 0.11031385635331636, 0.09610989844306939, 0.4955559099445003, 0.07845190603324759, 0.30697262074812925, 0.12767551958037127, 0.4375661224395835, 0.07737023387634634, 0.15307682457740834, 0.05694427046787409, 0.09028836937410878, 0.4011292297732457, 0.6186146927451245, 0.11561676905211238, 0.0993047499370594, 0.08102401279833105, 0.8100206966555492, 0.10768932514586738, 0.15386113005635593, 0.4026560765644126, 0.045535707525545144, 0.08229583319403, 0.08227601457953415, 0.8241544781987433, 0.0759900855540333, 0.5147505197509459, 0.11103147778198663, 0.42144961755966015, 0.24880465403270857, 0.3112403223054312, 0.3282460941643247, 0.28312386083977936, 0.2865521931047814, 0.16537364909659502, 0.4284132019637321, 0.34116073112729894, 0.051142721309942685, 0.10794707492381372, 0.1108646816717751, 0.29201805921023904, 0.07365131996157204, 0.36851051207096197, 0.2556143611338999, 0.07392456180697715, 0.045535707525545144, 0.15025986810093994, 0.4395989822566938, 0.19636656988846957, 0.21018464628148859, 0.15085686628779282, 0.3429118439192298, 0.16104008564300487, 0.2055862423584408, 0.18673310211333727, 0.5528531989583015, 0.20219789553586287, 0.5807830339134155, 0.6112381610839525, 0.07515362639458067, 0.5722084734915175, 0.3654892991508686, 0.1991057466826236, 0.4912569401667811, 0.05850610073101081, 0.3077884117234785, 0.17038242498240874, 0.14066607718466684, 0.10248584652416493, 0.4022873718442217, 0.07205214632436985, 0.35142291824287475, 0.10941760034103376, 0.06679271580157364, 0.05675388891699207, 0.058987921856350156, 0.3660303223369904, 0.28790374422385034, 0.4158290962648631, 0.40710291595796666, 0.09934102670994882, 0.06362846635195196, 0.30921476208988685, 0.23242198019285765, 0.055541210656895434, 0.5297663836663529, 0.10744632778983743, 0.18410212910939194, 0.17721960751489196, 0.1962664672709783, 0.1617648996714035, 0.10584426414108294, 0.5203501665477333, 0.07365131996157204, 0.31578819840495265, 0.35364190165315845, 0.1707951928721818, 0.41655733121321636, 0.15801546378512366, 0.7568436608419439, 0.22368578646300386, 0.0609449253562836, 0.2225096762928218, 0.18587673368692093, 0.05559101133196209, 0.569598540521716, 0.08073228430722412, 0.15724041301590164, 0.12879141548479, 0.4306817897420764, 0.17998791969802397, 0.41280880088413996, 0.5723062335690389, 0.6457404130724687, 0.10420061808672998, 0.12564769853034463, 0.21795029564941848, 0.4720930498870375, 0.11304202998506685, 0.545112257205237, 0.14852188644910969, 0.17217029085021085, 0.336250902618187, 0.48671482860553816, 0.5093433434984792, 0.35847801144896685, 0.3008706318705062, 0.18494609259573758, 0.4199330463236065, 0.04162287990776414, 0.2633909944023186, 0.4252182303976608, 0.4684623303117058, 0.1925553058603695, 0.09610989844306939, 0.09129843496680234, 0.3302708189676917, 0.4199330463236065, 0.11927294568859859, 0.4864154015695107, 0.06472081497616611, 0.6387929002666255, 0.37932906694235924, 0.093713747684541, 0.20627971812824875], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (curr)\", \"type\": \"scatter\", \"x\": [11.0, 8.9, 11.0, 10.1, 8.9, 8.7, 10.7, 9.7, 10.0, 9.9, 9.2, 10.5, 9.8, 9.2, 9.1, 8.8, 9.0, 10.3, 12.0, 10.8, 11.7, 9.7, 9.7, 8.9, 12.0, 10.9, 9.4, 9.7, 9.8, 10.2, 8.7, 8.7, 9.6, 9.3, 10.5, 9.5, 9.4, 9.6, 9.4, 9.3, 12.4, 9.3, 9.2, 9.3, 11.4, 10.5666666666667, 9.4, 9.8, 9.0, 10.9, 10.4, 8.8, 11.5, 11.0, 9.7, 9.3, 9.8, 11.1, 9.4, 9.4, 11.1, 9.7, 9.0, 9.7, 9.3, 10.9, 9.2, 9.4, 10.7, 9.0, 9.5, 11.3, 10.4666666666667, 9.4, 10.5, 11.1, 8.9, 10.4, 9.2, 9.0, 9.6, 9.9, 9.5, 9.5, 10.1, 10.4, 9.0, 8.9, 9.8, 10.5, 9.5, 9.5, 9.7, 9.2, 9.7, 10.9, 10.8, 9.2, 8.9, 9.2, 9.4, 10.6, 8.8, 9.3, 9.4, 10.5, 9.4, 9.5, 9.2, 9.1, 9.4, 9.1, 9.8, 9.9, 10.6, 10.6, 9.4, 9.4, 9.5, 11.0, 10.2, 11.4, 10.6, 9.5, 10.1, 9.4, 11.0, 9.7, 10.1, 10.5, 13.4, 10.4, 9.2, 10.5, 9.4, 8.7, 11.4, 10.4, 9.4, 8.8, 10.7, 10.1, 10.3, 11.7, 9.5, 10.3, 10.9, 9.2, 9.5, 10.0, 9.2, 10.0, 10.5, 9.5, 10.1, 10.5, 10.7, 9.4, 9.6, 9.3, 10.4, 9.0, 10.4, 9.2, 9.0, 10.4, 11.3, 10.9, 11.0, 10.3, 9.2, 10.5, 9.4, 10.2, 9.5, 12.4, 10.1, 9.3, 8.8, 10.6, 10.3, 8.0, 10.3, 9.8, 10.5, 10.5, 9.3, 9.2, 10.2, 9.3, 9.7, 9.7, 10.1, 11.1, 8.6, 9.5, 9.1, 9.8, 9.1, 9.6, 9.5, 9.0, 9.0, 9.4, 11.4, 9.4, 9.0, 9.6, 9.0, 8.6, 10.2, 9.0, 9.7, 10.5, 9.3, 11.5, 9.0, 10.2, 9.3, 9.8, 8.7, 9.3, 9.3, 9.4, 9.1, 10.0, 9.1, 10.3, 10.6, 10.1, 8.8, 10.4, 8.8, 9.7, 9.6, 9.4, 9.8, 10.9, 9.2, 11.4, 9.2, 9.7, 10.9, 9.4, 11.4, 10.0, 10.7, 9.3, 9.4, 10.0, 9.0, 8.6, 10.6, 8.8, 9.9, 8.8, 9.4, 9.5, 9.5, 10.8, 9.8, 10.0, 10.1, 10.1, 9.5, 10.8, 9.7, 11.4, 12.2, 9.6, 11.4, 10.0, 9.3, 9.6, 10.2, 9.0, 9.5, 9.5, 10.1, 9.2, 10.0, 9.5, 11.4, 10.9, 9.2, 11.2, 10.1, 9.1, 11.4, 9.8, 9.5, 9.7, 9.2, 9.5, 11.1, 10.2, 9.5, 9.0, 9.2, 10.3, 11.4, 10.6, 10.4, 9.3, 9.5, 10.8, 10.5, 9.5, 9.0, 9.4, 9.4, 9.6, 10.2, 8.7, 9.9, 8.8, 9.8, 9.5, 9.5, 9.3, 11.8, 9.4, 10.1, 9.5, 11.5, 9.4, 8.8, 10.4, 9.5, 10.4666666666667, 9.8, 9.5, 10.5, 11.4, 9.7, 10.4, 9.3, 10.2, 8.8, 10.7, 8.9, 9.2, 10.4, 9.8, 8.4, 10.3, 9.3, 11.0, 8.8, 10.0, 9.3, 11.4], \"xaxis\": \"x2\", \"y\": [0.18579927887031134, 0.9274202256360236, 0.2569067617886446, 0.17851375722123963, 0.43011516789686843, 0.3951880410340851, 0.35333307802371594, 0.854899199395705, 0.7749695319329993, 0.7150752736216004, 0.5793836726576811, 0.17187478758168062, 0.503776006633781, 0.6517104478925241, 0.5321166645488455, 0.4291031613352281, 0.6295132227815239, 0.446367751604861, 0.12978626497489776, 0.578130474122496, 0.1303225049324246, 0.4589423036505589, 0.6028673022099313, 0.6724998803801079, 0.055171077290688375, 0.28900585249094113, 0.5807441942986169, 0.6324527530146118, 0.32780881811994433, 0.4437792729685527, 0.47375733914823626, 0.6755390392614542, 0.8494338455743565, 0.8432302027568838, 0.3962269303969661, 0.36574887203466033, 0.9780529644634413, 0.6757083557066426, 0.43212531492562845, 0.6428319532862445, 0.2244465690609686, 0.6759712108962084, 0.300575337785698, 0.4848467547623382, 0.24353241802821812, 0.6165640897352094, 0.801889943514816, 0.6831580296641933, 0.4684052737322374, 0.07309555507266852, 0.17397747102053363, 0.548208100621717, 0.16948307959681597, 0.5287139706981401, 0.8097217619362252, 0.48186532860504816, 0.7044722268129955, 0.5458559966555334, 0.6067015953642416, 0.5767206748937392, 0.5416109283549078, 0.7766135747357961, 0.6371580804073698, 0.3290646799011723, 0.53941953634433, 0.7444876216695655, 0.27658524567301757, 0.8518717737266248, 0.685064206005921, 0.7994946846943811, 0.6254668451144636, 0.29898447003196504, 0.36566585814722175, 0.8260679099411251, 0.265003746926769, 0.18277705216857454, 0.6401445853260315, 0.2878944788643705, 0.7379395090268356, 0.6578861964269485, 0.3048731186933995, 0.6479177870210828, 0.5479007895539181, 0.8109237991420157, 0.4555798348891207, 0.35159410271621183, 0.6741813074403022, 0.40366163192193316, 0.3797333752177462, 0.42326140605337403, 0.49450075158901585, 0.7027754368270075, 0.31556666432085356, 0.5737052492708005, 0.5594846166878963, 0.9879213229528466, 0.23907110553933086, 0.7604887601700165, 0.906894853259191, 0.49150798334893764, 0.6693239074263375, 0.635181004157038, 0.4291031613352281, 0.6805197940362542, 0.8579270215873258, 0.42231028799440284, 0.7973836574204367, 0.6209099995125147, 0.617932351579841, 0.5867531689564582, 0.8217385626893267, 0.5766058512754557, 0.6085190813519714, 0.6488649586424557, 0.19466062481522506, 0.4062994677131635, 0.31500574198466447, 0.6106996692323751, 0.48314991346809855, 0.4300926711133176, 0.4623912750166579, 0.18141675383529432, 0.7404949196358439, 0.7960551628311661, 0.6696955469146251, 0.7471897031921468, 0.15222801432328747, 0.4782875749995391, 0.6696955469146251, 0.4617114467660769, 0.0374236133971757, 0.34638250956587036, 0.5737052492708005, 0.35412183815676124, 0.5342599897609015, 0.6273126624389191, 0.1819914526651868, 0.6450640502472667, 0.7576359910572065, 0.6363669366758954, 0.35783776888428775, 0.4555798348891207, 0.2603691587203709, 0.09638465351539516, 0.7889843001267657, 0.3995975535535492, 0.2404138117262561, 0.5134503976671381, 0.7620160241108803, 0.4852174766770502, 0.7934067722809752, 0.5657371707019572, 0.40591517497640706, 0.5142806824729376, 0.4667389755277017, 0.4597803030361328, 0.14211531046105408, 0.4709774325404933, 0.39253304933110444, 0.8152160844894966, 0.6418608562675732, 0.5695619245525361, 0.15898796250578873, 0.4189913516486339, 0.8097376625536354, 0.2776505479619531, 0.14100712613869515, 0.1625374057836978, 0.21879614767173305, 0.26016804821119, 0.5884346274074399, 0.25171266030158634, 0.5556828679884147, 0.2886326125606653, 0.5013044750460076, 0.23728971353361283, 0.6280660923097139, 0.6281218947904323, 0.6226708394296439, 0.1280348372312241, 0.37812375401711507, 0.6218606462016874, 0.446367751604861, 0.5237591509200082, 0.22560064672115399, 0.4159575064805634, 0.43989745285902637, 0.38133093816728936, 0.379388299643832, 0.4244201113870294, 0.8495234946343055, 0.44699506619782237, 0.3402560380560977, 0.16997778820688525, 0.6509841470756508, 0.5589353890471914, 0.49320900326902484, 0.41485179365651337, 0.2850172536812061, 0.5150740024049856, 0.7905789411902706, 0.6660097546858721, 0.5916856454756931, 0.25029771644034415, 0.21820707607863943, 0.23625780462752244, 0.6174344585079109, 0.33885175059010386, 0.8097775874289167, 0.5502791542248897, 0.45232673966787307, 0.5168725346003686, 0.4922951659433321, 0.2710495410551712, 0.5620189509382074, 0.19827785442852286, 0.35653263682836045, 0.4940220265254579, 0.3934632807735441, 0.349631294967786, 0.6543252873397565, 0.6043841099981286, 0.6572212454398962, 0.5323595728841377, 0.4667716613599331, 0.5480891857555714, 0.5933716837007499, 0.5769442381274095, 0.7796710482718338, 0.4721284230669528, 0.5632051337005155, 0.25606657060722404, 0.47304849589761655, 0.4991199345133047, 0.785831825438318, 0.5512091114854263, 0.31651464458218903, 0.192246895102814, 0.5737052492708005, 0.14970485751781393, 0.8257882443178004, 0.7450862811651306, 0.2404138117262561, 0.3428275867057816, 0.2186811050870735, 0.43730933466596944, 0.1325711740116582, 0.33994853494016564, 0.5172250338280965, 0.4543852880840521, 0.6017244994332274, 0.7267617626256621, 0.304103470637073, 0.49511795227452726, 0.4577650902534979, 0.4389063253281036, 0.3428275867057816, 0.6911248892501751, 0.5457123873353599, 0.3395528272139201, 0.5662837862370104, 0.38281068028313525, 0.1899488449656659, 0.1899488449656659, 0.39416742153886597, 0.4473524415330049, 0.5724944828663213, 0.12652799787397961, 0.14917046216496987, 0.4192276293132746, 0.1727250451072272, 0.7329347521090118, 0.2979855805324535, 0.5384433083808008, 0.2944152049751758, 0.5661013076544325, 0.39283078357423706, 0.6503174362647687, 0.7632350838020857, 0.29422440231251745, 0.8446099855685041, 0.3812461384129847, 0.1264117171095669, 0.6995051325026098, 0.7680829457938805, 0.1086082602083136, 0.50228427853815, 0.8303888649041977, 0.15145052047802054, 0.5239967242043768, 0.49461569007297057, 0.7323984730128237, 0.6372335578763709, 0.8485373319296128, 0.21018203617182263, 0.3854703692354019, 0.6209619763202376, 0.6996467359659702, 0.3913887983225227, 0.600932061108284, 0.18141675383529432, 0.32841971343371723, 0.17397747102053363, 0.3943097935149382, 0.5998672378660981, 0.6052803835931642, 0.35501406908939237, 0.4362847089434372, 0.6005057903956104, 0.45095984485898877, 0.5601124581139871, 0.6908342266509375, 0.29066967723125237, 0.5437491575180791, 0.5955595524057149, 0.4226516353037165, 0.552222307965348, 0.5038457784615318, 0.6752568781943777, 0.7880730680059006, 0.09430965090665133, 0.4986183600001317, 0.24112389044610405, 0.3635071851353404, 0.7047195247497422, 0.5251048099479148, 0.5632051337005155, 0.4520037684813636, 0.5271857161160298, 0.36566585814722175, 0.8775119234978208, 0.49474741138534273, 0.17187478758168062, 0.1069918390347242, 0.6371627391106971, 0.19018032574493748, 0.34352259564225396, 0.806114950115292, 0.47304849589761655, 0.5014153035286022, 0.6721952796384192, 0.7507248720260316, 0.38512814216859315, 0.8930847268109882, 0.863224561659591, 0.15108072818859253, 0.7399796913917198, 0.18579927887031134, 0.47304849589761655, 0.2033384066370545, 0.43667652058029827, 0.23252054766636898], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [9.0, 9.0, 10.9, 9.4, 9.5, 9.8, 10.1, 10.8, 12.0, 10.5, 10.0, 11.0, 12.4, 12.2, 12.8, 10.6, 11.4, 11.5, 10.3, 12.4, 8.9, 9.2, 10.5, 9.6, 10.1, 12.2, 11.0, 11.3, 12.5, 12.3, 13.0, 10.1, 9.5, 9.2, 12.1, 8.7, 11.3333333333333, 9.3, 13.4, 11.8, 12.4, 11.3, 11.8, 8.7, 9.4, 12.7, 9.0, 9.3, 9.5, 12.5, 9.2, 12.8, 10.4, 10.5, 11.4, 8.8, 9.5, 14.0, 9.8, 9.1, 10.4, 12.3, 11.8, 11.2, 9.3, 12.5, 11.0, 10.7, 10.55, 9.6, 9.1, 11.7, 9.2, 11.0, 9.7, 9.3, 9.3, 10.2, 10.8, 9.4, 12.2, 10.2, 11.4, 11.9, 9.8, 12.0, 10.9, 11.5, 11.5, 9.5, 10.8, 11.9, 12.6, 13.2, 10.1, 12.6, 10.0333333333333, 13.1, 10.2, 11.1, 11.1, 9.9, 11.2, 13.2, 9.1, 9.5, 9.4, 12.6, 11.6, 11.3, 10.7, 8.8, 12.3, 12.6, 12.4, 12.4, 11.3, 9.5, 10.4, 11.5, 11.8, 12.1, 12.0, 12.2, 10.9, 12.3, 9.2, 12.3, 10.2, 12.0, 12.5, 13.6, 12.5, 9.1, 9.8, 9.3, 10.5, 10.8, 11.6, 11.0, 11.2, 12.7, 10.8, 9.4, 9.6, 10.5, 9.4, 10.5, 10.9, 10.2, 9.8, 11.2, 9.5, 9.2, 12.5, 12.0, 10.6, 11.3, 10.0, 9.0, 12.7, 9.5, 13.4, 11.7, 10.3, 11.4, 11.5, 9.9, 11.0, 9.2, 11.4, 10.2, 10.9, 11.6, 14.0, 11.8, 11.4, 13.1, 13.6, 12.5, 11.0, 9.2, 9.5, 10.7, 9.4, 11.6, 10.3, 12.6, 8.8, 11.1, 11.0, 9.4, 11.9, 11.9, 10.8, 12.2, 10.5, 12.5, 9.4, 9.8, 12.5, 10.4, 9.6, 11.9, 11.0, 10.6, 9.7, 12.0, 10.1, 10.2, 11.4, 12.8, 10.6, 12.4, 9.0, 12.8, 10.0, 11.3, 11.6, 12.8, 12.2, 10.0, 10.8, 9.5, 9.0, 9.2, 11.2, 10.3, 12.0, 11.2, 9.25, 10.1, 10.8, 12.1, 12.8, 8.9, 12.3, 11.2, 12.0, 11.2, 10.7, 13.3, 13.0, 10.3, 10.4, 11.4, 8.8, 9.2, 10.7, 10.1, 9.6, 9.2, 8.8, 11.6, 10.7, 9.8, 10.2, 11.0, 12.2, 12.2, 10.4, 10.6, 10.7, 10.2, 11.1, 12.5, 12.7, 10.6, 9.3, 9.9, 9.9, 11.3, 12.6, 11.0, 9.3, 9.9, 10.7, 10.4, 10.6, 11.2, 9.1, 11.9, 11.8, 10.0, 12.8, 11.6, 11.45, 11.3, 9.7, 10.2, 11.0, 9.5, 10.1, 12.8, 10.4, 11.0, 9.2, 12.2, 11.0, 11.8, 12.9, 10.3, 11.3, 12.3, 9.0, 11.0, 12.0, 11.0, 12.6, 11.2, 10.5, 11.5, 11.6, 9.3, 11.4, 11.0, 9.8, 9.8, 10.1, 9.5, 12.5, 13.0, 10.3, 9.1, 10.4, 12.7, 11.0, 11.5, 9.6, 12.6, 10.6, 9.0, 9.4, 9.5, 9.2, 9.4, 9.1, 10.0, 10.2, 11.9, 10.8, 10.2, 9.7, 11.4, 9.5, 10.9, 11.4, 10.5, 10.0, 11.7, 11.3, 11.5, 8.8, 9.2, 9.3, 12.0, 10.0, 10.2, 10.4, 12.5, 12.9, 10.3, 8.7, 8.8, 10.2, 9.2, 8.9, 10.3, 9.4, 10.2, 13.05, 10.1, 10.8, 11.4, 11.7, 10.8, 12.0, 11.2, 9.6, 12.4, 9.4, 11.5, 12.2, 9.3, 11.9, 10.5, 11.0, 11.65, 11.4, 11.3, 11.0, 9.3, 11.2, 10.2, 10.2, 10.8, 9.0, 12.5, 12.6, 10.8, 10.6, 11.5, 11.4, 9.5, 12.7, 9.8, 11.0, 10.5, 9.0, 12.5, 9.6, 10.0, 10.4, 9.8, 10.6, 10.3, 9.3, 10.6, 12.6, 12.8, 11.3, 11.9, 12.1, 10.3, 9.2, 11.2, 10.2, 10.6, 12.4, 12.0, 11.7, 10.2, 11.4, 12.8, 10.5, 9.0, 10.8, 9.0, 12.0, 9.0, 9.1, 12.5, 9.8, 9.4, 12.0, 9.2, 14.0, 9.2, 10.0, 9.7, 10.6, 9.2, 9.5, 9.8, 9.0, 11.0, 11.0, 10.65, 9.0, 11.3, 11.3, 13.3, 9.4, 8.7, 10.9, 10.4, 12.7, 10.3, 11.0, 10.6, 10.4, 10.3, 12.5, 8.7, 10.3, 12.8, 9.5, 11.3, 10.2, 11.4, 10.0, 10.6, 11.4, 11.9, 9.6, 11.0, 12.7, 12.5, 9.7, 10.8, 10.1, 9.1, 12.5, 11.0, 9.8, 9.8, 11.4, 10.0, 11.5, 10.3, 11.75, 10.3, 9.1, 11.0, 13.5, 8.9, 9.4, 12.0, 10.1, 12.3, 12.9, 11.3, 14.2, 11.4, 11.5, 12.6, 10.1, 11.7, 9.2, 12.4, 13.0, 10.5, 11.0, 9.2, 11.6, 9.3, 10.7, 12.6, 11.5, 9.1, 11.3, 10.0, 9.0, 13.0, 12.5, 11.6, 11.5, 12.1, 9.7, 9.5, 11.2, 11.3333333333333, 10.9, 11.4, 13.1, 11.5, 10.9, 11.8, 12.3, 9.1, 9.5, 11.4, 10.5, 11.1, 11.0, 10.0, 10.1, 12.3, 11.9, 11.0, 9.8, 10.4, 8.7, 11.4, 9.1, 12.1, 11.4, 11.2, 13.0, 12.5, 10.5, 10.3, 11.1, 12.0, 12.4, 11.0, 11.0, 12.3, 11.0, 12.4, 9.5, 9.6, 10.5, 12.5, 10.0, 10.0, 10.2, 9.5, 10.2, 11.1, 10.0, 10.4, 10.0, 10.0, 11.2, 10.4, 12.5, 9.6, 11.5, 12.7, 10.8, 12.2, 9.4, 11.2, 10.5, 9.8, 10.5, 10.6, 10.4, 9.9, 9.6, 10.5, 9.1, 11.9, 9.8, 12.1, 12.9, 10.4, 9.5, 12.2, 10.4, 12.4, 11.0, 10.0, 10.8, 12.15, 11.45, 10.2, 11.8, 12.1, 9.8, 10.0, 12.7, 11.6, 12.3, 10.2, 13.4, 9.5, 11.0, 12.0, 12.8, 9.2, 8.8, 9.9, 8.9, 9.5, 13.4, 11.0], \"xaxis\": \"x2\", \"y\": [0.6660328535674787, 0.4955559099445003, 0.11251030999551548, 0.5313240922219649, 0.7616845263358343, 0.42881839881496897, 0.22146723198036844, 0.2709448900825402, 0.04188686298684474, 0.3198999677935893, 0.586632325439729, 0.3332859260788763, 0.0891770245136605, 0.07249138429342028, 0.0813041402249215, 0.2808128557304226, 0.18155424903412543, 0.14020593233116785, 0.20529540916933675, 0.1755850319354616, 0.5722846846512241, 0.4684623303117058, 0.2863708053899042, 0.4489302200945696, 0.3606737334686688, 0.09834172337505831, 0.1439119889738254, 0.10526388551166177, 0.08976738859769384, 0.15927641460572795, 0.07353544332944184, 0.4894096639868448, 0.24735122968283396, 0.41440459167745447, 0.10107859516115147, 0.4809249647595707, 0.043928674649753696, 0.27268427565697984, 0.07203278686513981, 0.35989685204578803, 0.08410225657903847, 0.09640449279894714, 0.2859044620344169, 0.766491644508495, 0.27194216744256416, 0.11891721880979944, 0.6033870782914414, 0.8445823904457724, 0.4148378249676725, 0.09538880480821377, 0.5822786697287807, 0.2006236885231063, 0.30215903380660414, 0.3526626332448971, 0.22921561702294402, 0.3499358724503807, 0.451050436906263, 0.01968005574460141, 0.3849224947932618, 0.608666907839271, 0.30333177217190177, 0.05732515971384944, 0.08299070223644744, 0.155374347961305, 0.4378217303747408, 0.10641916767178827, 0.3207785913922725, 0.3280003244598044, 0.4747408725557203, 0.27229542413121455, 0.5314247042003052, 0.13834506443323813, 0.652508483608137, 0.1775869136191267, 0.4659209431511335, 0.3288332341233703, 0.47224603889779837, 0.2773569186284155, 0.18590272545123854, 0.6719763059805124, 0.04569198037744582, 0.22473444069733528, 0.0776074933333939, 0.1411968215808168, 0.3654892991508686, 0.06069899520469324, 0.21029328672965164, 0.13919371635861133, 0.16321149678759816, 0.6144435769482088, 0.1388055550317996, 0.0827658987104557, 0.0793107693477757, 0.04994940743047871, 0.46220165202879504, 0.08265172102971341, 0.5554564865761329, 0.10902951494304747, 0.26480674198345266, 0.31816712550642645, 0.20184400370343658, 0.23734670470511587, 0.19264674509953905, 0.03558879485690103, 0.5314247042003052, 0.3013473679880785, 0.8043030592862955, 0.07665185966197174, 0.17816243980233548, 0.14637302723887635, 0.43623195291339645, 0.5773286546676725, 0.06996409198491005, 0.0635191394270278, 0.11839391684253864, 0.03368970372860669, 0.16544292122901683, 0.5002106013252752, 0.20783967621931676, 0.4413184352618238, 0.1377753535318076, 0.017128038770129694, 0.09070427960766203, 0.05237321155563324, 0.46044782253877736, 0.09863911308639095, 0.6058955548956951, 0.07377868677997379, 0.33726125667837825, 0.03705661785513226, 0.03856885477325478, 0.01970319875133708, 0.06623921298607705, 0.655672818127978, 0.36403826442427, 0.375635621083512, 0.25822104517587474, 0.26990817233175546, 0.30316845466795117, 0.21597661143113533, 0.10411587283779344, 0.4582573305440075, 0.28974208538397184, 0.3995654588450376, 0.48407929824265805, 0.2412117545349558, 0.49704114689177337, 0.3112403223054312, 0.13571503940671914, 0.35304273602320047, 0.18963603484652192, 0.06023564559469896, 0.305863422303413, 0.34062746964654456, 0.03532029949184434, 0.20200996882548472, 0.207876095289533, 0.11304202998506685, 0.26487496820305634, 0.46674395287949066, 0.05931266843465788, 0.6063731497207538, 0.053339747820140615, 0.16056749669580483, 0.3366557342021428, 0.18735912995827353, 0.2667542380283816, 0.9197592959547904, 0.13322255285490225, 0.3533185668595151, 0.08763312389948397, 0.343329095265401, 0.1298321532292276, 0.11240742021865013, 0.03412749239977686, 0.23316671381479437, 0.13955591125269062, 0.065615492475942, 0.03940539431326806, 0.04874684240881699, 0.42507109047861347, 0.3720756994829524, 0.20627971812824875, 0.23346983492740092, 0.299872058778726, 0.14688925552714138, 0.20529540916933675, 0.11294333341234963, 0.4523771212155355, 0.15895981664313275, 0.12633289347617382, 0.34801013400503944, 0.063056887931354, 0.09222807982804315, 0.19281104432210028, 0.11843845992675284, 0.1064686731970873, 0.12171087020281346, 0.49704114689177337, 0.4202798549667376, 0.058322454167927695, 0.40418598015134155, 0.7514842711311043, 0.067978575311199, 0.1468497162592186, 0.3655805321171328, 0.36741292271676196, 0.08785516413846428, 0.4223454464089015, 0.09472348251934337, 0.14196098925812006, 0.10013555988874479, 0.32154631204965056, 0.05416575683382341, 0.786126361492164, 0.04696516601190348, 0.26926088858349784, 0.28123172687107445, 0.3094364396730669, 0.04307250962973752, 0.07126159086244754, 0.6143015945908075, 0.495586079448059, 0.46102608015166635, 0.40789311683600216, 0.8929715185951024, 0.1227006502272181, 0.3638055988942468, 0.10470002869891348, 0.29304213908849364, 0.8936703981375603, 0.3534407380188983, 0.0883666731866185, 0.07895584641700149, 0.05166417783587085, 0.4199775765299997, 0.10304865631077798, 0.1041340676595982, 0.11031385635331636, 0.22368578646300386, 0.22137255536682798, 0.0725394352715707, 0.08320759746190642, 0.3577905591727162, 0.36362749207413336, 0.13058702032609693, 0.4306817897420764, 0.4684623303117058, 0.3185463047756948, 0.6991046594229053, 0.33105510290791684, 0.35804773811787727, 0.3499358724503807, 0.17780319308126435, 0.07142366539796174, 0.1504846162366139, 0.28643330026545544, 0.11492102279820171, 0.08716328114311156, 0.12905574960179156, 0.5528531989583015, 0.2852168598030531, 0.3185463047756948, 0.41766807389819915, 0.22818770291371737, 0.10749415552266317, 0.07500089027222667, 0.2150933620687273, 0.4879833184669665, 0.21367083697314282, 0.18281788227943807, 0.11217648511765432, 0.01860460444149037, 0.4990100838788346, 0.3212979959143686, 0.7252893191599291, 0.30018855716775616, 0.2808216200321265, 0.24332849241566534, 0.22583693263898685, 0.307128141019565, 0.12930297020615966, 0.07734813107736227, 0.38078614076753503, 0.037937415915298756, 0.18389331462546077, 0.2015421194948802, 0.10121634311933059, 0.7209948827487924, 0.252131738577411, 0.19866278493931944, 0.5569604587758099, 0.19172534874952063, 0.07516041810443141, 0.18673310211333727, 0.20736440356309183, 0.27568985010185776, 0.1748501221961516, 0.134246332983591, 0.12151400729184814, 0.03860330573341564, 0.16198960071610413, 0.062309112953929935, 0.14943540958877521, 0.46827469198568006, 0.12435295831370408, 0.11768791031746062, 0.10794707492381372, 0.04347111427796346, 0.07423675680829, 0.1602542791395647, 0.19911642350143877, 0.2379444352717226, 0.36664322039668684, 0.10130143557253446, 0.17108028607870185, 0.6143194513817134, 0.5641235853966853, 0.29864316680665437, 0.44752301946823647, 0.13459844499503626, 0.037461465199631894, 0.5002964248569376, 0.4059565893810353, 0.7035957096210382, 0.0629603198376949, 0.25036415064992923, 0.14780834332950044, 0.24800647860056513, 0.10438723399855232, 0.24366911510822187, 0.4574644219698093, 0.8347014835967527, 0.42226245660703365, 0.4073158502222598, 0.47525484003715535, 0.37845934883934684, 0.35325777167774697, 0.4763432908647238, 0.18941100564626978, 0.23853527246002126, 0.27277355193056574, 0.5556171757583562, 0.19481513110659687, 0.7460207524242459, 0.12627308236197843, 0.2115813466591615, 0.4773837842994688, 0.22238536240250728, 0.1978655273089749, 0.32057959349203036, 0.1601330373243487, 0.6256605001243821, 0.34062746964654456, 0.5899158924001677, 0.1273375405407705, 0.6866376712310945, 0.3812864953771038, 0.07918534602430627, 0.10510921928053807, 0.052405178286905496, 0.29010285216427345, 0.5802968836962079, 0.4475494904811408, 0.33107045093633036, 0.6046547135519548, 0.33132995382553565, 0.3391582818855403, 0.37109937806185267, 0.18876467901964422, 0.03244681540368277, 0.6531311156123596, 0.18281848038190407, 0.06840545126676123, 0.23876166598551407, 0.5602062902528231, 0.05478334190217349, 0.18965009362393503, 0.502081053312289, 0.0945975060483667, 0.24937367783354814, 0.14040338921272166, 0.09582424632391484, 0.4879833184669665, 0.07536550594022651, 0.37763546052463404, 0.20240400638142053, 0.06234715971662652, 0.1729504208160284, 0.2536573606029918, 0.1491704939138675, 0.47224603889779837, 0.20734784509414073, 0.1656619584420439, 0.20263687678412212, 0.4576701693643329, 0.3746187330143109, 0.06578487521364562, 0.09359041291034786, 0.15714155813810793, 0.43198081216185935, 0.17693664965610134, 0.14200602748771296, 0.16878839641400256, 0.11131318694256087, 0.43040972974554736, 0.12494266711040569, 0.5286591337585229, 0.3917329141436472, 0.14284790216410748, 0.29931895876037384, 0.3998656181534954, 0.13198036366642862, 0.2166851793268345, 0.164669749255824, 0.3116999397838065, 0.5702002297218003, 0.2867818412254799, 0.05809024612643199, 0.0701620515557333, 0.10493669218879953, 0.03474255021640338, 0.14069518845012563, 0.7697788668098057, 0.44513161239284327, 0.12104291767226882, 0.2823656727566666, 0.28640273091276736, 0.09904459769556595, 0.10889384421684001, 0.1978655273089749, 0.6326587477498924, 0.0766186874204361, 0.07300117689776386, 0.3978521493117628, 0.7293533971641823, 0.24040337450518035, 0.46827469198568006, 0.03737110954461231, 0.48112847828662497, 0.5755848065786346, 0.12151472907643468, 0.332302417201758, 0.3208349144509022, 0.13406270144296106, 0.47820199098358873, 0.024219732643774528, 0.7923035912680444, 0.3099424932714111, 0.8494816644677875, 0.15230116664989468, 0.8795672599938588, 0.34536882843285344, 0.587897812361327, 0.3660303223369904, 0.3074082248441362, 0.1925553058603695, 0.1582957933341015, 0.5297945963993664, 0.1892543681582496, 0.06574637766643598, 0.03286461121245521, 0.6223124217546917, 0.48666930315350876, 0.17200815643270417, 0.27042696199957883, 0.16010429726024444, 0.25291734909108765, 0.22778758435893687, 0.6055190518965303, 0.41989528411161425, 0.2865861541738164, 0.17344095530188786, 0.4163761941495938, 0.24610426408478792, 0.029106329843254564, 0.5849270471051293, 0.09607886499379148, 0.4890296174547498, 0.11193395874659995, 0.3667485749721523, 0.29672938182784603, 0.13696827462710404, 0.03986507081677082, 0.41542023534722683, 0.1642424989032959, 0.041559354155004224, 0.1266666793707928, 0.5259198205822933, 0.42123490919744344, 0.6147437654518444, 0.42849246998341506, 0.04874684240881699, 0.16870816563337898, 0.35179373534084035, 0.4552463954734379, 0.1543174595222413, 0.4641274821418986, 0.1106599594415556, 0.40441066041397966, 0.05916303638108533, 0.24194101851814365, 0.5755848065786346, 0.23631147082452741, 0.04679471849088612, 0.33132995382553565, 0.6031606095022326, 0.16900214819844117, 0.9322526967181247, 0.1065938389205352, 0.0540586741766943, 0.14920224829950646, 0.03054451782098533, 0.13595064656866984, 0.15908339514281045, 0.09402391562754642, 0.27219479721363327, 0.10477531970828624, 0.6046547135519548, 0.04412971358840656, 0.0821245873848182, 0.24953715645213048, 0.24311299470472425, 0.679537413518331, 0.02875041056121841, 0.2874129658970298, 0.17131102264191878, 0.07042427222914205, 0.1577516063520068, 0.39934634677258996, 0.42249259173992826, 0.24940231538328683, 0.46827469198568006, 0.040988937643475554, 0.034828704291737345, 0.26663563965858417, 0.22421743312747255, 0.10716094829621758, 0.7421831263598226, 0.4644511163280224, 0.1591307416719686, 0.21502194578256428, 0.12883185373794437, 0.15520095945599266, 0.04280666734842442, 0.06928764484923078, 0.3578757504587543, 0.0760792945579073, 0.06637805380770656, 0.5755848065786346, 0.4326356954473739, 0.16985579355455038, 0.47152805642545803, 0.11644579282256762, 0.11790522998710073, 0.5438286352264949, 0.41561805514360906, 0.050606352251634235, 0.21836830194439782, 0.22298545275517268, 0.1504846162366139, 0.16819644397314482, 0.47796113776613436, 0.14100197907825862, 0.7878397890034206, 0.12176963827920351, 0.09814942480303201, 0.23162396036129984, 0.04400104962869911, 0.061588508633294015, 0.2774601068082493, 0.40816383821078206, 0.14036214651023216, 0.11837607594274324, 0.0703155477214753, 0.17002415827487982, 0.24611532014486182, 0.06874641727313702, 0.30975746960573625, 0.07004288447243323, 0.6453829176356538, 0.3880412370469972, 0.10205495289732236, 0.12171087020281346, 0.38550692709735157, 0.4398162761337091, 0.5769741243450848, 0.48842976274850136, 0.3866799681687785, 0.17129518728202664, 0.5711206597512044, 0.4456070955069118, 0.4585850027539752, 0.25462747480751524, 0.34771016550763867, 0.35548618548401445, 0.07878090041588082, 0.3008706318705062, 0.08117751180329491, 0.055511805197920094, 0.1600174453683395, 0.35597309965685686, 0.5473978930443646, 0.3321771897262046, 0.14643302530661162, 0.7653011157176768, 0.24188431843396252, 0.16704799028757666, 0.41136103198090634, 0.5749869949413896, 0.709238838470871, 0.09340318303147321, 0.602429869503323, 0.04154705947390969, 0.7519582179986716, 0.15993940416551844, 0.04372375151311325, 0.4076899811241429, 0.4644511163280224, 0.3133137248525114, 0.24628490675063597, 0.06972977174174444, 0.15949948541388637, 0.2241543425141257, 0.1729876202034616, 0.07290025122558275, 0.1220000714032804, 0.36493953208423235, 0.09420126302076737, 0.026726938234992392, 0.7199273032686843, 0.4606762448039463, 0.04906818437448113, 0.19446415942665518, 0.14876853598344464, 0.3247816953453747, 0.023320858692869595, 0.7310618090422621, 0.48944479260603346, 0.20357574295749958, 0.0840537250624015, 0.5368744051465595, 0.21101467800102214, 0.46682279298460017, 0.3749869638443927, 0.46592999202179275, 0.10188412989688433, 0.15751976448865512], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"alcohol\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"alcohol\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}}], \"alerts\": [], \"tabs\": []}]};\n",
399         "    var additional_graphs_evidently_dashboard_cf026d3015f94e9a8797581f20ae8f6c = {\"All_fixed.acidity\": {\"data\": [{\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Reference<br>fixed.acidity=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [7.0, 7.3, 7.5, 6.3, 6.3, 7.0, 6.5, 5.6, 6.9, 5.8, 8.1, 7.7, 6.2, 7.3, 6.8, 6.6, 7.3, 15.6, 5.2, 6.2, 8.0, 7.7, 6.3, 7.3, 9.0, 6.0, 5.3, 7.8, 7.1, 6.2, 6.3, 7.3, 7.2, 5.8, 7.2, 7.7, 7.7, 5.9, 6.7, 6.5, 6.0, 7.2, 7.7, 7.4, 8.1, 6.8, 8.2, 6.2, 9.4, 6.8, 7.0, 6.6, 6.0, 6.3, 14.2, 6.8, 5.9, 6.0, 7.6, 5.9, 11.1, 5.9, 7.1, 6.6, 12.6, 8.3, 6.7, 7.4, 7.0, 6.7, 7.0, 6.2, 6.4, 7.9, 7.4, 7.0, 7.9, 6.5, 8.2, 6.9, 5.7, 6.3, 8.3, 9.1, 8.0, 7.8, 7.3, 8.6, 6.9, 10.8, 6.4, 7.7, 8.8, 6.6, 6.1, 5.0, 6.3, 5.9, 6.6, 7.3, 8.3, 7.3, 9.9, 7.5, 7.2, 6.4, 5.2, 7.9, 6.7, 6.7, 8.0, 7.9, 6.9, 7.4, 5.6, 6.7, 5.9, 6.0, 7.1, 7.2, 6.8, 6.3, 9.2, 7.8, 8.1, 7.5, 6.8, 6.7, 6.9, 7.3, 7.0, 5.0, 7.3, 8.2, 7.7, 5.0, 10.1, 6.6, 7.1, 9.5, 8.0, 5.9, 6.8, 6.9, 10.8, 7.4, 7.2, 5.8, 6.7, 7.3, 7.0, 12.0, 6.7, 6.2, 6.6, 6.4, 5.9, 7.8, 7.4, 6.1, 5.9, 7.5, 6.4, 7.9, 6.1, 7.2, 7.1, 6.3, 7.8, 5.2, 10.2, 7.8, 6.2, 8.5, 7.6, 6.4, 7.8, 6.0, 6.2, 7.4, 6.0, 6.8, 7.9, 6.1, 6.2, 5.6, 5.5, 11.1, 5.9, 6.4, 6.6, 5.6, 5.0, 7.0, 7.1, 7.8, 6.1, 8.4, 6.8, 8.5, 7.7, 6.4, 7.1, 8.4, 6.7, 8.2, 8.2, 8.1, 7.3, 8.0, 8.2, 6.5, 6.5, 6.0, 6.9, 6.6, 6.6, 7.0, 7.5, 6.6, 6.6, 6.6, 7.0, 8.3, 7.1, 7.0, 7.1, 7.1, 7.7, 6.1, 6.0, 6.6, 6.3, 6.9, 6.7, 4.8, 6.4, 6.6, 6.3, 7.1, 8.9, 7.2, 7.2, 6.4, 7.0, 7.0, 7.7, 6.5, 6.3, 5.8, 8.0, 7.4, 10.8, 10.1, 10.7, 6.4, 6.5, 6.6, 7.3, 9.8, 7.4, 6.3, 6.1, 7.2, 7.0, 6.2, 7.3, 9.1, 6.5, 5.2, 6.0, 6.4, 6.7, 6.0, 5.5, 6.7, 6.7, 9.1, 5.6, 7.1, 7.8, 7.6, 5.1, 5.8, 8.0, 10.8, 6.2, 7.8, 7.7, 7.3, 5.6, 7.9, 8.3, 6.2, 6.0, 6.1, 7.1, 6.7, 5.7, 6.8, 6.6, 5.9, 5.7, 6.0, 8.4, 7.2, 8.5, 7.1, 7.2, 6.6, 7.2, 7.3, 5.9, 6.1, 7.1, 13.4, 8.3, 6.0, 6.4, 5.9, 5.8, 6.1, 6.8, 6.3, 7.3, 7.0, 7.4, 8.8, 7.4, 6.4, 5.1, 8.1, 11.4, 5.6, 6.8, 6.9, 7.0, 7.2, 6.2, 6.8, 6.5, 8.8, 5.1, 6.5, 7.2, 8.1, 7.1, 8.2, 5.8, 7.3, 6.8, 7.7, 6.7, 8.3, 6.8, 6.3, 8.4, 6.2, 11.5, 6.9, 7.4, 6.2, 8.9, 7.2, 7.2, 6.6, 6.2, 6.2, 9.2, 7.2, 5.8, 5.6, 7.7, 9.2, 6.6, 7.0, 5.9, 8.6, 7.4, 9.0, 10.0, 7.5, 8.3, 6.5, 6.9, 7.5, 10.2, 6.1, 7.7, 6.8, 6.1, 6.0, 6.7, 6.3, 7.0, 6.0, 7.7, 6.8, 5.0, 8.0, 7.4, 6.7, 6.1, 7.0, 7.4, 5.7, 6.8, 7.4, 6.1, 6.5, 6.6, 6.4, 5.7, 6.6, 7.1, 7.0, 6.3, 7.1, 7.7, 7.5, 7.5, 6.9, 5.9, 7.0, 6.1, 5.8, 8.0, 7.4, 6.7, 8.0, 7.7, 6.6, 6.4, 5.5, 6.9, 4.4, 8.3, 6.3, 6.9, 11.1, 6.4, 6.8, 7.4, 7.5, 6.9, 6.3, 7.2, 6.7, 10.5, 5.9, 6.8, 6.1, 5.8, 7.3, 7.4, 12.0, 6.4, 7.1, 6.4, 6.2, 11.1, 7.6, 11.5, 8.0, 6.4, 7.3, 6.2, 6.7, 7.3, 8.9, 8.3, 6.2, 6.5, 8.7, 5.7, 6.5, 7.0, 6.7, 7.5, 7.3, 6.2, 6.5, 6.6, 6.3, 6.5, 7.7, 7.5, 6.6, 5.7, 6.0, 7.3, 7.9, 7.0, 6.5, 7.3, 8.6, 6.9, 6.5, 7.3, 7.4, 6.9, 7.0, 5.3, 7.2, 7.9, 6.7, 5.1, 6.7, 6.5, 6.4, 6.9, 7.8, 7.1, 7.5, 6.5, 6.3, 6.7, 6.6, 6.7, 6.8, 8.4, 6.0, 8.1, 6.5, 7.2, 7.1, 8.6, 8.0, 6.2, 6.5, 8.9, 6.9, 5.8, 6.0, 6.8, 7.9, 6.8, 7.1, 6.8, 7.0, 6.8, 6.0, 7.9, 7.9, 6.5, 6.0, 10.1, 7.0, 6.8, 6.3, 7.2, 7.7, 6.6, 8.2, 6.4, 6.8, 7.2, 7.0, 7.8, 6.6, 6.7, 7.6, 5.6, 6.4, 5.1, 7.7, 7.1, 8.6, 6.1, 8.0, 6.2, 7.6, 7.2, 7.1, 6.5, 6.3, 7.2, 6.4, 7.9, 7.8, 7.5, 6.4, 5.9, 6.0, 7.0, 6.9, 5.4, 6.8, 6.0, 6.8, 8.6, 6.7, 6.3, 6.0, 5.0, 7.2, 5.6, 8.0, 5.6, 7.8, 7.4, 7.1, 6.4, 7.0, 9.4, 6.0, 5.9, 7.1, 6.3, 7.3, 6.4, 10.5, 8.1, 8.1, 6.4, 8.8, 6.1, 7.0, 7.2, 9.2, 6.6, 6.9, 9.7, 8.8, 7.8, 7.8, 7.3, 6.7, 6.6, 6.8, 7.15, 8.0, 7.4, 6.5, 5.3, 7.1, 10.8, 6.6, 7.0, 7.2, 7.5, 10.7, 5.9, 6.8, 6.9], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Current<br>fixed.acidity=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [6.4, 7.2, 6.8, 6.8, 7.9, 7.4, 7.3, 6.6, 6.5, 5.8, 10.0, 6.9, 6.6, 5.3, 4.4, 7.9, 6.9, 8.5, 9.1, 7.6, 7.6, 7.4, 8.3, 6.7, 7.8, 7.1, 6.4, 6.0, 7.6, 6.9, 7.3, 6.6, 6.9, 5.1, 5.8, 6.6, 6.5, 6.4, 6.8, 7.2, 6.7, 6.0, 7.6, 7.3, 8.3, 7.8, 7.8, 6.8, 7.9, 6.8, 8.0, 8.0, 6.8, 9.2, 6.9, 8.1, 10.7, 5.2, 6.6, 9.1, 6.4, 6.8, 6.6, 8.0, 6.7, 6.0, 7.7, 7.7, 6.0, 7.5, 7.1, 6.7, 7.7, 5.3, 8.0, 6.3, 6.1, 6.6, 7.7, 9.0, 6.4, 7.3, 7.5, 8.3, 7.6, 8.4, 9.3, 6.5, 6.9, 6.3, 6.3, 8.4, 5.6, 6.6, 6.0, 7.3, 11.6, 7.6, 11.8, 5.9, 7.2, 6.4, 6.9, 6.9, 7.1, 6.6, 7.9, 6.7, 6.2, 6.7, 6.7, 7.9, 6.9, 6.1, 6.4, 6.4, 5.0, 6.6, 6.9, 9.8, 5.0, 5.4, 6.5, 6.2, 8.2, 9.7, 7.8, 6.1, 9.3, 6.8, 6.2, 7.4, 6.1, 8.3, 6.2, 8.3, 9.2, 8.3, 6.8, 7.3, 7.2, 6.4, 11.9, 6.6, 6.2, 5.8, 8.4, 8.9, 7.1, 8.3, 7.0, 7.6, 7.5, 7.2, 6.5, 6.8, 9.9, 7.2, 5.9, 7.2, 7.1, 7.5, 6.2, 6.3, 12.6, 8.6, 8.9, 7.9, 8.3, 6.9, 6.3, 8.6, 7.2, 8.5, 5.8, 7.0, 6.1, 6.5, 6.0, 8.3, 7.7, 5.8, 6.9, 11.8, 7.0, 6.3, 9.1, 5.6, 7.0, 6.9, 7.8, 6.6, 6.5, 7.0, 6.2, 7.7, 6.7, 5.1, 8.4, 6.5, 7.2, 7.5, 5.8, 7.7, 6.6, 6.7, 8.5, 10.4, 6.6, 6.8, 5.9, 5.8, 6.7, 6.2, 13.2, 7.0, 5.9, 6.0, 5.6, 6.8, 7.0, 6.2, 7.8, 6.3, 7.3, 7.3, 6.0, 7.4, 8.7, 7.3, 6.9, 8.1, 6.9, 7.0, 10.3, 8.4, 6.6, 6.8, 7.0, 7.4, 6.8, 8.1, 8.4, 6.4, 7.1, 10.4, 7.3, 7.4, 7.5, 9.4, 7.9, 7.6, 8.1, 6.5, 7.0, 6.7, 7.5, 6.6, 6.7, 5.8, 6.8, 6.9, 7.5, 6.4, 7.3, 7.4, 7.6, 6.1, 6.8, 7.6, 6.8, 6.3, 5.4, 11.5, 6.7, 7.4, 6.9, 6.8, 5.6, 5.9, 8.4, 7.9, 6.0, 5.8, 7.0, 10.0, 6.1, 6.2, 5.3, 6.1, 11.5, 10.3, 6.9, 8.2, 6.4, 6.1, 6.1, 7.0, 6.9, 7.0, 8.0, 7.6, 7.5, 6.0, 7.4, 7.2, 5.9, 6.8, 7.8, 7.0, 6.2, 6.5, 6.2, 6.5, 5.7, 5.4, 7.2, 8.1, 8.5, 6.7, 7.0, 6.0, 7.7, 7.3, 10.1, 7.2, 7.4, 10.9, 6.8, 6.6, 7.0, 6.7, 9.1, 8.0, 6.7, 6.9, 7.3, 6.5, 7.6, 7.0, 7.1, 6.1, 7.4, 7.0, 7.7, 6.8, 7.0, 6.3, 9.8, 6.7, 7.8, 7.5, 8.7, 7.2, 7.6, 6.7, 8.6, 6.5, 7.5, 6.6, 6.8, 6.6, 8.2, 7.0, 8.8, 6.4, 5.7, 6.9, 6.2, 6.8, 5.6, 6.3, 7.9, 6.9, 10.9, 6.6, 5.8, 6.4, 6.8, 5.6, 4.9, 7.4, 6.8, 6.8, 6.5, 7.1, 7.2, 5.5, 6.9, 6.3, 6.4, 6.1, 5.2, 6.8, 6.9, 7.5, 7.2, 10.1, 7.2, 6.8, 7.4, 5.6, 6.3, 6.8, 6.0, 6.9, 6.2, 5.9, 7.0, 6.9, 8.3, 5.6, 8.2, 6.0, 6.7, 7.5, 6.2, 10.1, 7.0, 7.2, 5.5, 5.7, 11.1, 6.9, 11.5, 7.1, 6.6, 6.3, 6.6, 7.8, 6.7, 5.7, 6.7, 7.2, 9.1, 7.8, 8.1, 7.4, 6.5, 6.8, 7.4, 5.3, 7.6, 7.0, 6.2, 11.3, 5.0, 6.4, 6.0, 8.9, 6.6, 7.0, 6.5, 7.7, 7.2, 6.0, 6.5, 5.9, 6.4, 7.0, 6.7, 6.2, 6.6, 6.8, 7.5, 7.4, 8.0, 6.2, 7.2, 6.9, 6.2, 8.2, 6.0, 7.4, 8.3, 6.6, 6.4, 6.8, 5.6, 6.0, 6.4, 6.8, 7.0, 8.9, 7.1, 7.4, 6.9, 6.6, 8.4, 7.1, 8.7, 7.3, 8.3, 8.2, 9.0, 10.9, 8.6, 9.6, 7.3, 12.0, 6.0, 6.9, 7.4, 5.8, 5.6, 5.7, 6.7, 6.1, 10.6, 8.2, 7.3, 7.2, 6.4, 7.4, 7.9, 6.7, 6.8, 9.9, 6.4, 7.2, 5.0, 7.5, 5.3, 6.9, 5.6, 7.2, 6.9, 6.1, 6.9, 7.3, 7.0, 6.6, 7.4, 6.3, 8.0, 7.4, 11.6, 8.9, 7.0, 6.9, 6.4, 6.5, 10.4, 6.7, 5.6, 5.5, 10.6, 8.8, 6.9, 7.4, 7.6, 7.2, 6.0, 9.1, 5.8, 7.5, 7.0, 6.5, 6.0, 5.1, 6.7, 6.9, 7.4, 7.9, 7.3, 7.8, 8.5, 6.6, 6.7, 6.1, 7.3, 7.0, 6.0, 7.7, 7.4, 6.3, 6.0, 6.6, 7.1, 6.8, 6.4, 7.0, 5.7, 5.1, 7.4, 5.7, 7.7, 6.7, 6.6, 6.4, 6.8, 7.1, 8.0, 6.0, 8.0, 12.4, 6.6, 7.3, 7.0, 6.1, 6.6, 6.9, 6.4, 7.9, 6.6, 7.5, 9.6, 7.2, 8.0, 5.5, 6.3, 6.8, 6.9, 6.6, 7.4, 7.6, 5.6, 7.0, 6.9, 6.9, 6.9, 6.7, 6.8, 6.4, 6.8, 6.0, 7.5, 9.0, 10.2, 6.6, 7.8, 13.7, 7.1, 7.0, 7.1, 7.7, 6.1, 8.2, 9.5, 7.4, 6.5, 8.3, 5.7, 6.4, 7.8, 6.8, 6.7, 6.7], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Reference<br>fixed.acidity=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [7.2, 7.2, 9.1, 6.2, 9.2, 7.1, 5.3, 8.5, 6.9, 7.5, 7.0, 6.9, 7.3, 7.3, 5.1, 6.4, 7.8, 5.7, 6.6, 8.2, 6.1, 7.4, 7.5, 8.8, 7.0, 7.8, 5.9, 9.7, 7.5, 6.2, 7.0, 7.8, 5.8, 7.1, 7.4, 9.1, 8.5, 6.3, 10.2, 6.6, 6.9, 8.2, 5.7, 7.1, 7.1, 5.7, 5.3, 6.7, 8.2, 6.6, 9.9, 6.3, 6.6, 12.3, 7.4, 7.6, 8.0, 6.5, 6.5, 11.5, 6.3, 6.5, 6.7, 6.0, 8.5, 5.8, 6.7, 7.7, 6.7, 8.5, 7.4, 8.6, 7.4, 7.0, 6.4, 6.6, 6.2, 7.9, 7.5, 7.7, 8.2, 6.9, 6.1, 6.9, 7.7, 9.2, 6.1, 6.5, 7.1, 7.0, 8.6, 5.8, 8.4, 7.4, 7.4, 6.6, 6.4, 9.2, 6.4, 7.7, 7.2, 7.6, 7.1, 7.6, 7.8, 7.8, 5.9, 5.6, 6.2, 6.5, 7.4, 7.2, 6.2, 5.5, 7.1, 6.7, 7.2, 5.2, 10.6, 7.1, 5.8, 6.3, 6.7, 6.9, 7.1, 7.0, 6.8, 8.7, 7.7, 7.1, 10.3, 10.1, 6.4, 6.6, 9.4, 7.1, 8.3, 6.4, 7.8, 7.9, 6.8, 6.5, 5.8, 6.4, 7.3, 5.7, 6.2, 6.4, 9.4, 7.5, 7.2, 7.1, 7.6, 6.7, 6.9, 8.1, 11.6, 5.9, 7.2, 6.4, 8.3, 9.6, 12.5, 6.2, 7.2, 7.3, 6.5, 6.4, 7.2, 6.6, 6.9, 5.1, 7.3, 8.2, 7.8, 7.1, 7.3, 7.0, 7.3, 7.0, 6.0, 8.1, 5.8, 8.9, 7.5, 5.9, 9.8, 7.5, 6.6, 7.3, 6.5, 7.7, 6.4, 6.0, 6.3, 7.5, 7.5, 6.7, 7.4, 6.1, 5.6, 9.9, 9.9, 10.0, 5.9, 7.2, 6.1, 9.9, 5.6, 5.9, 7.5, 5.1, 6.7, 9.8, 6.6, 6.6, 7.1, 6.4, 8.0, 9.8, 10.0, 5.5, 7.5, 8.6, 6.4, 7.4, 5.3, 8.5, 5.9, 7.3, 6.4, 9.6, 7.0, 7.2, 6.8, 7.5, 6.1, 5.7, 6.6, 6.8, 10.8, 7.0, 6.7, 6.4, 5.6, 11.3, 9.3, 6.8, 6.6, 9.1, 9.8, 7.6, 5.8, 7.3, 7.6, 7.9, 7.2, 6.7, 9.2, 12.3, 7.1, 6.5, 6.9, 6.4, 9.3, 6.4, 5.8, 5.6, 6.1, 6.6, 7.5, 6.8, 7.8, 6.3, 6.2, 6.7, 7.0, 7.7, 6.6, 5.9, 9.9, 6.4, 8.9, 6.8, 6.3, 7.2, 9.5, 5.9, 9.2, 6.7, 7.5, 9.4, 7.1, 5.3, 8.6, 9.9, 5.8, 6.3, 7.7, 9.2, 5.6, 7.4, 9.0, 6.5, 9.4, 8.7, 6.1, 6.3, 10.6, 7.0, 6.4, 6.1, 6.4, 6.4, 8.2, 7.5, 9.4, 9.0, 6.8, 6.5, 7.4, 6.2, 7.7, 7.6, 6.6, 7.1, 15.9, 6.2, 8.1, 6.4, 6.8, 9.1, 6.5, 6.9, 5.5, 9.9, 7.3, 10.8, 6.0, 6.7, 6.1, 6.3, 7.0, 9.1, 6.6, 7.4, 6.2, 8.0, 7.0, 7.0, 7.6, 8.0, 8.4, 5.6, 9.2], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Current<br>fixed.acidity=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [7.3, 6.4, 7.5, 5.6, 6.9, 6.8, 6.5, 9.1, 9.0, 12.7, 7.6, 7.2, 6.4, 7.3, 6.7, 6.8, 6.8, 11.9, 6.6, 6.4, 6.8, 8.0, 6.3, 6.5, 6.6, 7.4, 7.2, 7.5, 5.3, 7.0, 7.5, 5.3, 8.1, 8.2, 6.9, 5.9, 9.8, 7.5, 7.0, 6.0, 8.6, 7.5, 6.9, 7.0, 6.4, 6.5, 8.3, 8.3, 6.0, 7.4, 6.2, 7.5, 9.0, 8.0, 7.7, 7.9, 7.4, 15.6, 7.6, 6.9, 15.5, 8.1, 6.3, 10.0, 7.0, 6.8, 8.5, 7.4, 6.8, 7.3, 6.6, 5.6, 4.9, 8.8, 6.6, 7.1, 7.2, 7.0, 6.2, 8.0, 7.6, 9.2, 6.0, 7.9, 8.3, 8.2, 7.9, 7.8, 6.7, 7.5, 6.3, 7.6, 9.3, 7.7, 6.9, 7.6, 8.0, 8.9, 6.8, 6.3, 10.0, 9.4, 6.8, 6.5, 8.9, 7.0, 9.0, 6.0, 6.0, 7.6, 7.9, 7.1, 6.9, 6.9, 9.6, 8.9, 6.6, 6.6, 6.4, 8.4, 5.8, 6.6, 7.0, 7.8, 7.2, 7.5, 5.7, 11.8, 7.2, 6.8, 6.9, 6.6, 7.7, 8.8, 7.1, 7.2, 6.9, 9.0, 7.2, 6.5, 7.9, 8.3, 8.6, 8.4, 9.5, 7.4, 7.9, 6.4, 7.9, 6.9, 7.2, 7.9, 7.1, 7.2, 7.0, 7.2, 6.1, 6.8, 6.9, 8.0, 8.4, 6.6, 7.1, 7.6, 7.4, 7.7, 5.9, 6.7, 6.6, 7.4, 6.6, 7.2, 7.1, 6.6, 7.9, 5.8, 7.0, 6.8, 6.6, 6.1, 8.0, 4.2, 11.9, 6.4, 6.8, 7.5, 6.3, 6.8, 7.8, 6.2, 7.2, 8.2, 7.7, 7.0, 7.2, 7.3, 7.8, 5.6, 7.1, 6.8, 6.8, 6.2, 6.4, 6.9, 7.1, 7.2, 6.8, 10.0, 6.4, 7.3, 9.3, 5.8, 6.7, 8.5, 6.0, 6.7, 6.4, 8.8, 7.1, 6.5, 6.9, 6.7, 8.3, 6.4, 6.8, 6.1, 7.6, 7.0, 8.2, 4.9, 6.3, 7.6, 6.5, 9.2, 8.4, 6.7, 5.5, 6.1, 7.7, 7.4, 6.2, 7.2, 7.9, 7.1, 7.0, 6.0, 7.5, 5.7, 8.2, 6.4, 7.5, 6.8, 9.4, 7.5, 6.5, 6.5, 7.1, 6.8, 7.2, 10.8, 6.5, 7.2, 6.4, 6.4, 8.2, 6.4, 7.1, 6.2, 6.2, 6.4, 7.1, 8.3, 7.9, 6.7, 9.2, 6.0, 7.4, 7.0, 6.7, 6.8, 8.3, 6.1, 6.9, 5.8, 8.9, 6.0, 8.6, 6.0, 7.8, 9.8, 6.4, 5.2, 7.2, 7.2, 6.4, 9.3, 6.3, 6.4, 6.2, 8.9, 6.6, 13.0, 6.2, 6.8, 7.0, 6.4, 11.1, 7.4, 8.1, 6.4, 7.5, 6.4, 8.2, 7.1, 7.6, 7.2, 7.6, 6.7, 6.2, 5.4, 11.0, 6.3, 5.7, 6.6, 8.9, 6.8, 6.3, 12.2, 6.6, 4.9, 7.6, 6.4, 7.2, 6.3, 7.6, 7.2, 5.8, 6.8, 6.5, 7.3, 6.9, 9.0, 6.8, 8.0, 10.4, 8.1, 8.3, 7.3, 6.5, 7.6, 7.0, 7.1], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Reference\", \"x\": 0.245, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Current\", \"x\": 0.755, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"barmode\": \"overlay\", \"legend\": {\"title\": {\"text\": \"target\"}, \"tracegroupgap\": 0}, \"margin\": {\"t\": 60}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.49], \"title\": {\"text\": \"fixed.acidity\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.51, 1.0], \"matches\": \"x\", \"title\": {\"text\": \"fixed.acidity\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"count\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}}}, \"fixed.acidity_good\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (ref)\", \"type\": \"scatter\", \"x\": [7.0, 7.3, 7.5, 6.3, 6.3, 7.0, 6.5, 5.6, 6.9, 5.8, 8.1, 7.7, 6.2, 7.3, 6.8, 6.6, 7.3, 15.6, 5.2, 6.2, 8.0, 7.7, 6.3, 7.3, 9.0, 6.0, 5.3, 7.8, 7.1, 6.2, 6.3, 7.3, 7.2, 5.8, 7.2, 7.7, 7.7, 5.9, 6.7, 6.5, 6.0, 7.2, 7.7, 7.4, 8.1, 6.8, 8.2, 6.2, 9.4, 6.8, 7.0, 6.6, 6.0, 6.3, 14.2, 6.8, 5.9, 6.0, 7.6, 5.9, 11.1, 5.9, 7.1, 6.6, 12.6, 8.3, 6.7, 7.4, 7.0, 6.7, 7.0, 6.2, 6.4, 7.9, 7.4, 7.0, 7.9, 6.5, 8.2, 6.9, 5.7, 6.3, 8.3, 9.1, 8.0, 7.8, 7.3, 8.6, 6.9, 10.8, 6.4, 7.7, 8.8, 6.6, 6.1, 5.0, 6.3, 5.9, 6.6, 7.3, 8.3, 7.3, 9.9, 7.5, 7.2, 6.4, 5.2, 7.9, 6.7, 6.7, 8.0, 7.9, 6.9, 7.4, 5.6, 6.7, 5.9, 6.0, 7.1, 7.2, 6.8, 6.3, 9.2, 7.8, 8.1, 7.5, 6.8, 6.7, 6.9, 7.3, 7.0, 5.0, 7.3, 8.2, 7.7, 5.0, 10.1, 6.6, 7.1, 9.5, 8.0, 5.9, 6.8, 6.9, 10.8, 7.4, 7.2, 5.8, 6.7, 7.3, 7.0, 12.0, 6.7, 6.2, 6.6, 6.4, 5.9, 7.8, 7.4, 6.1, 5.9, 7.5, 6.4, 7.9, 6.1, 7.2, 7.1, 6.3, 7.8, 5.2, 10.2, 7.8, 6.2, 8.5, 7.6, 6.4, 7.8, 6.0, 6.2, 7.4, 6.0, 6.8, 7.9, 6.1, 6.2, 5.6, 5.5, 11.1, 5.9, 6.4, 6.6, 5.6, 5.0, 7.0, 7.1, 7.8, 6.1, 8.4, 6.8, 8.5, 7.7, 6.4, 7.1, 8.4, 6.7, 8.2, 8.2, 8.1, 7.3, 8.0, 8.2, 6.5, 6.5, 6.0, 6.9, 6.6, 6.6, 7.0, 7.5, 6.6, 6.6, 6.6, 7.0, 8.3, 7.1, 7.0, 7.1, 7.1, 7.7, 6.1, 6.0, 6.6, 6.3, 6.9, 6.7, 4.8, 6.4, 6.6, 6.3, 7.1, 8.9, 7.2, 7.2, 6.4, 7.0, 7.0, 7.7, 6.5, 6.3, 5.8, 8.0, 7.4, 10.8, 10.1, 10.7, 6.4, 6.5, 6.6, 7.3, 9.8, 7.4, 6.3, 6.1, 7.2, 7.0, 6.2, 7.3, 9.1, 6.5, 5.2, 6.0, 6.4, 6.7, 6.0, 5.5, 6.7, 6.7, 9.1, 5.6, 7.1, 7.8, 7.6, 5.1, 5.8, 8.0, 10.8, 6.2, 7.8, 7.7, 7.3, 5.6, 7.9, 8.3, 6.2, 6.0, 6.1, 7.1, 6.7, 5.7, 6.8, 6.6, 5.9, 5.7, 6.0, 8.4, 7.2, 8.5, 7.1, 7.2, 6.6, 7.2, 7.3, 5.9, 6.1, 7.1, 13.4, 8.3, 6.0, 6.4, 5.9, 5.8, 6.1, 6.8, 6.3, 7.3, 7.0, 7.4, 8.8, 7.4, 6.4, 5.1, 8.1, 11.4, 5.6, 6.8, 6.9, 7.0, 7.2, 6.2, 6.8, 6.5, 8.8, 5.1, 6.5, 7.2, 8.1, 7.1, 8.2, 5.8, 7.3, 6.8, 7.7, 6.7, 8.3, 6.8, 6.3, 8.4, 6.2, 11.5, 6.9, 7.4, 6.2, 8.9, 7.2, 7.2, 6.6, 6.2, 6.2, 9.2, 7.2, 5.8, 5.6, 7.7, 9.2, 6.6, 7.0, 5.9, 8.6, 7.4, 9.0, 10.0, 7.5, 8.3, 6.5, 6.9, 7.5, 10.2, 6.1, 7.7, 6.8, 6.1, 6.0, 6.7, 6.3, 7.0, 6.0, 7.7, 6.8, 5.0, 8.0, 7.4, 6.7, 6.1, 7.0, 7.4, 5.7, 6.8, 7.4, 6.1, 6.5, 6.6, 6.4, 5.7, 6.6, 7.1, 7.0, 6.3, 7.1, 7.7, 7.5, 7.5, 6.9, 5.9, 7.0, 6.1, 5.8, 8.0, 7.4, 6.7, 8.0, 7.7, 6.6, 6.4, 5.5, 6.9, 4.4, 8.3, 6.3, 6.9, 11.1, 6.4, 6.8, 7.4, 7.5, 6.9, 6.3, 7.2, 6.7, 10.5, 5.9, 6.8, 6.1, 5.8, 7.3, 7.4, 12.0, 6.4, 7.1, 6.4, 6.2, 11.1, 7.6, 11.5, 8.0, 6.4, 7.3, 6.2, 6.7, 7.3, 8.9, 8.3, 6.2, 6.5, 8.7, 5.7, 6.5, 7.0, 6.7, 7.5, 7.3, 6.2, 6.5, 6.6, 6.3, 6.5, 7.7, 7.5, 6.6, 5.7, 6.0, 7.3, 7.9, 7.0, 6.5, 7.3, 8.6, 6.9, 6.5, 7.3, 7.4, 6.9, 7.0, 5.3, 7.2, 7.9, 6.7, 5.1, 6.7, 6.5, 6.4, 6.9, 7.8, 7.1, 7.5, 6.5, 6.3, 6.7, 6.6, 6.7, 6.8, 8.4, 6.0, 8.1, 6.5, 7.2, 7.1, 8.6, 8.0, 6.2, 6.5, 8.9, 6.9, 5.8, 6.0, 6.8, 7.9, 6.8, 7.1, 6.8, 7.0, 6.8, 6.0, 7.9, 7.9, 6.5, 6.0, 10.1, 7.0, 6.8, 6.3, 7.2, 7.7, 6.6, 8.2, 6.4, 6.8, 7.2, 7.0, 7.8, 6.6, 6.7, 7.6, 5.6, 6.4, 5.1, 7.7, 7.1, 8.6, 6.1, 8.0, 6.2, 7.6, 7.2, 7.1, 6.5, 6.3, 7.2, 6.4, 7.9, 7.8, 7.5, 6.4, 5.9, 6.0, 7.0, 6.9, 5.4, 6.8, 6.0, 6.8, 8.6, 6.7, 6.3, 6.0, 5.0, 7.2, 5.6, 8.0, 5.6, 7.8, 7.4, 7.1, 6.4, 7.0, 9.4, 6.0, 5.9, 7.1, 6.3, 7.3, 6.4, 10.5, 8.1, 8.1, 6.4, 8.8, 6.1, 7.0, 7.2, 9.2, 6.6, 6.9, 9.7, 8.8, 7.8, 7.8, 7.3, 6.7, 6.6, 6.8, 7.15, 8.0, 7.4, 6.5, 5.3, 7.1, 10.8, 6.6, 7.0, 7.2, 7.5, 10.7, 5.9, 6.8, 6.9], \"xaxis\": \"x\", \"y\": [0.8156061324462894, 0.42491310922683634, 0.8867827646463432, 0.8014995238430205, 0.30499958310650876, 0.5817355832705369, 0.959171062334887, 0.7854416128369749, 0.9085690698200813, 0.8998600376511439, 0.6341165000693628, 0.412102187638673, 0.7643629411050379, 0.4710001938005606, 0.40182653035141874, 0.40438056362905367, 0.8870480016118494, 0.3650667978415713, 0.9064321709292111, 0.9327245345966092, 0.6458420185168736, 0.8821841129047617, 0.6704018506542557, 0.7655671181822064, 0.8616986618932058, 0.48774537944210006, 0.9637355036179479, 0.6794204065079696, 0.6044835155949141, 0.7867954023600708, 0.9137982268836646, 0.5867502063434873, 0.8048584290077971, 0.9718511071053526, 0.9627192884041744, 0.7978623718349598, 0.6091120966723917, 0.8943338178728011, 0.8853376735027229, 0.9045563504021151, 0.9264844632598176, 0.6342457655367447, 0.9414033426130164, 0.5636516403732365, 0.5172967922101196, 0.4836896337264441, 0.35199620689495453, 0.788779954566273, 0.9696552399248426, 0.772496554239754, 0.8132656157621138, 0.4539090261140653, 0.9333708926412786, 0.679765045723866, 0.48457442622955804, 0.4248820606938153, 0.6737819616086004, 0.8780741425819777, 0.38340602447337646, 0.90634085684919, 0.5574014604752268, 0.6804147683859246, 0.9077110088845216, 0.7718472635729894, 0.4717552048891654, 0.22222808308441652, 0.8616549355667619, 0.705749071892896, 0.4699129352300819, 0.9680524782819758, 0.8891353183282249, 0.9466602521798594, 0.8553382520847058, 0.7430243903066251, 0.6616131862201935, 0.6919609500216202, 0.96565744679506, 0.913108907487878, 0.5395521774612226, 0.9026238558501023, 0.6550941529376255, 0.9757876320152292, 0.8833495792027257, 0.6666029765862381, 0.8504582120840628, 0.9320215595878566, 0.7639947574915884, 0.6085229656221847, 0.9557131606798471, 0.46184432615952054, 0.5642658412077981, 0.8815615400732472, 0.7189203536918151, 0.9301020530176726, 0.7341394174346678, 0.7759189559372703, 0.8448078654733812, 0.9012666081120407, 0.8926028620066223, 0.5287492720273277, 0.6874206920638863, 0.37408584674942635, 0.8348370105186077, 0.8697567261320243, 0.9175759024810304, 0.44644098895981, 0.8874384748400057, 0.7787567487441118, 0.9416122482572158, 0.3265229243180111, 0.9308095750950773, 0.42267134533232753, 0.43068181214270274, 0.8727308285810839, 0.7201611177732586, 0.8430904589044517, 0.8140617541555761, 0.9456747441572588, 0.6672663325862807, 0.8756470416862959, 0.518871521713375, 0.7040615347784164, 0.4957960231649875, 0.6250130361556073, 0.27413726132188326, 0.5193133578087885, 0.37656641690434584, 0.5808048103476511, 0.7917827117482167, 0.36569143480873245, 0.7232542293832885, 0.9785934574433302, 0.5715075300165849, 0.8182555969893297, 0.5448461144048058, 0.9491291995847589, 0.4833587957991669, 0.3189279754564957, 0.9184825510014271, 0.5524830505676419, 0.9600429304649183, 0.7818180966165994, 0.7962710274484252, 0.7569429870375118, 0.46184432615952054, 0.7641514270390748, 0.9486763575522457, 0.8086368705092697, 0.6784536879503494, 0.6877019790624462, 0.6082670858563528, 0.6053794617794684, 0.6319330693089359, 0.4982105707488519, 0.6787928880949093, 0.9231980717613485, 0.8831230955067948, 0.6845485656817341, 0.8799204262605215, 0.9164563829924386, 0.7819268199067826, 0.23469888428232324, 0.9492377841603665, 0.8826092272015389, 0.6360541596480074, 0.5184081252698399, 0.6400126753125241, 0.542646305979658, 0.4479501208302092, 0.7783171875827786, 0.7867712153112567, 0.5236605417423803, 0.6959846197179591, 0.7925023358445066, 0.6683189355892497, 0.18737025221649042, 0.42506327048176057, 0.7272596040941706, 0.7314191754306454, 0.4827891324637794, 0.6649341228620356, 0.9038332731164471, 0.9588917860646077, 0.8945194928389463, 0.49833043835950624, 0.7997712594855277, 0.8577935987172323, 0.7622736922026153, 0.8039391974899521, 0.7396811504731934, 0.8115340233127679, 0.801728888664367, 0.738451208106372, 0.5859674792922007, 0.1865203674848816, 0.8773430435604171, 0.36888329310067386, 0.8651817982269884, 0.9067615420962557, 0.8594983988587351, 0.7437750884018276, 0.9145224932934428, 0.9135679891815164, 0.8001832456898428, 0.6860977766129374, 0.9377826008632761, 0.9300369611912853, 0.6997062971069969, 0.5693182102579236, 0.3404656140239559, 0.7160591142088384, 0.7953146078011, 0.8869803873277935, 0.7639982823097876, 0.8681285227071118, 0.576868797021353, 0.93035102563313, 0.8375600281828176, 0.8279918435672958, 0.9266689436294401, 0.7559862346636359, 0.5099889666930224, 0.6914445842613687, 0.9651950326885705, 0.87851968214492, 0.8499702807396289, 0.4685752957996948, 0.7241546992314323, 0.7848147251007912, 0.7341394174346678, 0.7008877443692281, 0.340588975625529, 0.5013021766499856, 0.8321174529331695, 0.8818378666553491, 0.9176909075187759, 0.8634678749265305, 0.7436082905772717, 0.9343776659412377, 0.7668809937296346, 0.6243383802582345, 0.5332560471205093, 0.6907315465649003, 0.16626803588025432, 0.1668542888532837, 0.7408943843163458, 0.5221312328975666, 0.7457559475413279, 0.46389636934606376, 0.9292627865919654, 0.5268311186840582, 0.4244151934213653, 0.643310536612302, 0.8577438313980266, 0.7816208399762355, 0.8553382520847058, 0.7010035672814305, 0.5242572272016158, 0.9187320011579697, 0.8703498177621264, 0.6713045345576062, 0.9137982268836646, 0.8614414457916845, 0.9445662266054761, 0.8808216590199034, 0.7386378115490353, 0.8873009977622293, 0.9157094897337859, 0.6606038558129893, 0.9296803968514485, 0.8864322240790464, 0.5146720135715994, 0.8720710714485208, 0.9415427660945741, 0.9138701141498735, 0.6527559092576063, 0.8751970040938668, 0.9249766460056568, 0.801728888664367, 0.6575848465963361, 0.6934824043184128, 0.8619113960143526, 0.9419078024651042, 0.9591721389341828, 0.8397407150753159, 0.9084383840076588, 0.4963969309336195, 0.7359588175524252, 0.3531961907069324, 0.9279819479140234, 0.7752976919572294, 0.8665226278427577, 0.9515211055933231, 0.7314191754306454, 0.890886918514299, 0.3235491032739525, 0.3719939405423586, 0.6323804178173072, 0.8398006965792015, 0.8239469134189235, 0.8592101816891015, 0.7615002907198236, 0.8688259750909261, 0.8718104001390852, 0.5838074755684882, 0.8756470416862959, 0.901850575196968, 0.9451930143658351, 0.6253812669856891, 0.5890764576710766, 0.4921052500998711, 0.4862070578416567, 0.9170647663398394, 0.7035583451969506, 0.8476385889092957, 0.5603058978573646, 0.5810606890504925, 0.9088604673919816, 0.8903252600075929, 0.944267921154058, 0.9435968591480925, 0.938237366988842, 0.9357286047893738, 0.7961386682142712, 0.7840233885688647, 0.2513590507613302, 0.7389284097502917, 0.9053472250810051, 0.44438282424164377, 0.862281110352348, 0.8021059248496223, 0.9152740930046814, 0.643737358401971, 0.8540304955499701, 0.8613418170006786, 0.6911084183178322, 0.8848367871057808, 0.8387883096682573, 0.5942651630821018, 0.65691393717736, 0.6369979527510315, 0.8280658524313272, 0.9640736168216585, 0.6546311715671466, 0.5599819536107853, 0.48348053317652906, 0.7668016587569692, 0.03620763244300767, 0.7364400865449663, 0.37408584674942635, 0.8767503774172, 0.8743962287172513, 0.8751970040938668, 0.8833495792027257, 0.7091886355621774, 0.87006937054451, 0.7904001815220257, 0.8761418339280951, 0.8306834851111597, 0.7531715889012326, 0.38181207472529843, 0.6490458991820136, 0.9138057013338913, 0.9046222904886461, 0.17956061692355052, 0.7506163079023257, 0.8963285795381793, 0.8848361664653354, 0.9283037217377402, 0.45996158699034445, 0.7290858434196763, 0.8319094967702583, 0.6578018675312727, 0.18727567457681707, 0.8673410249845035, 0.9453298670648187, 0.9446538464906173, 0.19605573045952288, 0.6723831041639817, 0.3438281302059518, 0.37858973820495484, 0.6953170483296187, 0.21463507152544156, 0.26963792069965237, 0.3280912492037974, 0.8399932187801539, 0.420387898633768, 0.36522500752858966, 0.5810560693343539, 0.9306346767722963, 0.7167716539092029, 0.656736106921484, 0.5549139996760648, 0.6909161521388689, 0.591904263202073, 0.884703171197362, 0.866402281883595, 0.7582770814524421, 0.8990773411030794, 0.1818065866116437, 0.6222165686186035, 0.17261914235374884, 0.8156064679757086, 0.4851213943917703, 0.8871292211128762, 0.8398494053952754, 0.703270618172154, 0.6305543892506115, 0.7494149477175548, 0.1532408287022325, 0.6159732902773407, 0.738220551127759, 0.8354520044441791, 0.8536870432671441, 0.5751476712690671, 0.9077719201719568, 0.7878515691455199, 0.6672663325862807, 0.45293736875445273, 0.17058553029544155, 0.747933377844996, 0.8400163125056676, 0.4516778718827729, 0.6082670858563528, 0.8401843469141149, 0.7636885291754726, 0.789170795337903, 0.8128612802083497, 0.7522530659814418, 0.8086757686066508, 0.8356255123032285, 0.9241779635105248, 0.9674588597049086, 0.9368885694202199, 0.4990764491242286, 0.876561204324957, 0.554264192243629, 0.5967716244634195, 0.9060244606340249, 0.8401608718856799, 0.7329750583133859, 0.8021769878309102, 0.9316817655017511, 0.45488322534173153, 0.798578398438993, 0.7425236774748816, 0.5742682328784404, 0.4937681935814938, 0.8972164286692267, 0.8914273370768748, 0.9377613518261881, 0.8862258850530264, 0.8591757581361523, 0.7410678096850266, 0.6822336012657398, 0.9201658505843877, 0.6982578893131915, 0.5746709232170782, 0.7626532952948841, 0.7137703530889916, 0.7520971196461234, 0.4473853625959922, 0.7957460056304991, 0.4833174871501707, 0.8758467705785958, 0.4689303842787964, 0.6133612564737879, 0.8568681391705205, 0.6835133967314007, 0.9732070839986944, 0.21435716257549006, 0.5761668962420043, 0.4055433603128916, 0.3743394998756179, 0.9118635774953143, 0.964551884718591, 0.9306459334511011, 0.8424802355113449, 0.7739144871152517, 0.6872688771534424, 0.8590561833388345, 0.6714384475466295, 0.6408669500407106, 0.5203550269219845, 0.2856853969697174, 0.857760555506807, 0.9307094503226838, 0.6787928880949093, 0.8308635255795866, 0.29271374211533296, 0.6769315553524353, 0.23831547366416572, 0.5895099457120908, 0.8994675076574448, 0.8893400405584444, 0.8456825404777587, 0.5399612081435882, 0.6188649121485582, 0.9281492942813848, 0.7611740601422801, 0.46550237374781617, 0.8896861436466836, 0.9038901015569306, 0.5044440900554997, 0.9215480939667524, 0.6930273792518707, 0.8723244804196287, 0.5624338775604165, 0.9226297661236537, 0.8469231754225917, 0.9430557295321259, 0.9097116306258912, 0.5988707702267543, 0.3813853072548755, 0.8843832309478876, 0.9006952500629406, 0.918975987201669, 0.18997930334445084, 0.8923106748541326, 0.8461388699436441, 0.5973439234355874, 0.9544642924744549, 0.91770416680597, 0.9177239854204658, 0.17584552180125673, 0.9240099144459667, 0.48524948024905407, 0.8889685222180134, 0.5785503824403398, 0.7511953459672914, 0.6887596776945688, 0.6717539058356753, 0.7168761391602206, 0.7134478068952186, 0.834626350903405, 0.5715867980362679, 0.6588392688727011, 0.9488572786900573, 0.8920529250761863, 0.8891353183282249, 0.707981940789761, 0.926348680038428, 0.631489487929038, 0.7443856388661001, 0.9260754381930228, 0.9544642924744549, 0.8497401318990601, 0.5604010177433062, 0.8036334301115304, 0.7898153537185114, 0.8491431337122072, 0.6570881560807702, 0.8389599143569951, 0.7944137576415592, 0.8132668978866627, 0.44714680104169846, 0.7978021044641371, 0.41921696608658454, 0.38876183891604754, 0.9248463736054193, 0.4277915265084825, 0.6345107008491314, 0.8008942533173764, 0.5087430598332189, 0.9414938992689892, 0.6922115882765215, 0.8296175750175913, 0.8593339228153332, 0.8975141534758351, 0.5977126281557783, 0.9279478536756302, 0.6485770817571253, 0.8905823996589662, 0.9332072841984264, 0.9432461110830079, 0.9410120781436498, 0.6339696776630096, 0.7120962557761497, 0.5841709037351369, 0.5928970840420333, 0.9006589732900512, 0.936371533648048, 0.6907852379101131, 0.7675780198071424, 0.9444587893431046, 0.4702336163336472, 0.8925536722101626, 0.8158978708906081, 0.822780392485108, 0.8037335327290217, 0.8382351003285965, 0.8941557358589171, 0.4796498334522667, 0.926348680038428, 0.6842118015950474, 0.6463580983468415, 0.8292048071278182, 0.5834426687867836, 0.8419845362148763, 0.2431563391580561, 0.7763142135369961, 0.9390550746437164, 0.7774903237071782, 0.8141232663130791, 0.9444089886680379, 0.430401459478284, 0.9192677156927759, 0.8427595869840984, 0.87120858451521, 0.5693182102579236, 0.820012080301976, 0.58719119911586, 0.42769376643096113, 0.3542595869275313, 0.89579938191327, 0.8743523014696554, 0.7820497043505815, 0.5279069501129625, 0.8869579700149332, 0.45488774279476296, 0.8514781135508903, 0.8278297091497892, 0.663749097381813, 0.5132851713944618, 0.4906566565015208, 0.6415219885510332, 0.6991293681294938, 0.8150539074042624, 0.5800669536763935, 0.9583771200922359, 0.7366090055976814, 0.5747817696023392, 0.5315376696882942, 0.8074446941396305, 0.9038901015569306, 0.9087015650331977, 0.6697291810323083, 0.5800669536763935, 0.8807270543114014, 0.5135845984304893, 0.9352791850238339, 0.36120709973337456, 0.6206709330576408, 0.906286252315459, 0.7937202818717513], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [7.2, 7.2, 9.1, 6.2, 9.2, 7.1, 5.3, 8.5, 6.9, 7.5, 7.0, 6.9, 7.3, 7.3, 5.1, 6.4, 7.8, 5.7, 6.6, 8.2, 6.1, 7.4, 7.5, 8.8, 7.0, 7.8, 5.9, 9.7, 7.5, 6.2, 7.0, 7.8, 5.8, 7.1, 7.4, 9.1, 8.5, 6.3, 10.2, 6.6, 6.9, 8.2, 5.7, 7.1, 7.1, 5.7, 5.3, 6.7, 8.2, 6.6, 9.9, 6.3, 6.6, 12.3, 7.4, 7.6, 8.0, 6.5, 6.5, 11.5, 6.3, 6.5, 6.7, 6.0, 8.5, 5.8, 6.7, 7.7, 6.7, 8.5, 7.4, 8.6, 7.4, 7.0, 6.4, 6.6, 6.2, 7.9, 7.5, 7.7, 8.2, 6.9, 6.1, 6.9, 7.7, 9.2, 6.1, 6.5, 7.1, 7.0, 8.6, 5.8, 8.4, 7.4, 7.4, 6.6, 6.4, 9.2, 6.4, 7.7, 7.2, 7.6, 7.1, 7.6, 7.8, 7.8, 5.9, 5.6, 6.2, 6.5, 7.4, 7.2, 6.2, 5.5, 7.1, 6.7, 7.2, 5.2, 10.6, 7.1, 5.8, 6.3, 6.7, 6.9, 7.1, 7.0, 6.8, 8.7, 7.7, 7.1, 10.3, 10.1, 6.4, 6.6, 9.4, 7.1, 8.3, 6.4, 7.8, 7.9, 6.8, 6.5, 5.8, 6.4, 7.3, 5.7, 6.2, 6.4, 9.4, 7.5, 7.2, 7.1, 7.6, 6.7, 6.9, 8.1, 11.6, 5.9, 7.2, 6.4, 8.3, 9.6, 12.5, 6.2, 7.2, 7.3, 6.5, 6.4, 7.2, 6.6, 6.9, 5.1, 7.3, 8.2, 7.8, 7.1, 7.3, 7.0, 7.3, 7.0, 6.0, 8.1, 5.8, 8.9, 7.5, 5.9, 9.8, 7.5, 6.6, 7.3, 6.5, 7.7, 6.4, 6.0, 6.3, 7.5, 7.5, 6.7, 7.4, 6.1, 5.6, 9.9, 9.9, 10.0, 5.9, 7.2, 6.1, 9.9, 5.6, 5.9, 7.5, 5.1, 6.7, 9.8, 6.6, 6.6, 7.1, 6.4, 8.0, 9.8, 10.0, 5.5, 7.5, 8.6, 6.4, 7.4, 5.3, 8.5, 5.9, 7.3, 6.4, 9.6, 7.0, 7.2, 6.8, 7.5, 6.1, 5.7, 6.6, 6.8, 10.8, 7.0, 6.7, 6.4, 5.6, 11.3, 9.3, 6.8, 6.6, 9.1, 9.8, 7.6, 5.8, 7.3, 7.6, 7.9, 7.2, 6.7, 9.2, 12.3, 7.1, 6.5, 6.9, 6.4, 9.3, 6.4, 5.8, 5.6, 6.1, 6.6, 7.5, 6.8, 7.8, 6.3, 6.2, 6.7, 7.0, 7.7, 6.6, 5.9, 9.9, 6.4, 8.9, 6.8, 6.3, 7.2, 9.5, 5.9, 9.2, 6.7, 7.5, 9.4, 7.1, 5.3, 8.6, 9.9, 5.8, 6.3, 7.7, 9.2, 5.6, 7.4, 9.0, 6.5, 9.4, 8.7, 6.1, 6.3, 10.6, 7.0, 6.4, 6.1, 6.4, 6.4, 8.2, 7.5, 9.4, 9.0, 6.8, 6.5, 7.4, 6.2, 7.7, 7.6, 6.6, 7.1, 15.9, 6.2, 8.1, 6.4, 6.8, 9.1, 6.5, 6.9, 5.5, 9.9, 7.3, 10.8, 6.0, 6.7, 6.1, 6.3, 7.0, 9.1, 6.6, 7.4, 6.2, 8.0, 7.0, 7.0, 7.6, 8.0, 8.4, 5.6, 9.2], \"xaxis\": \"x\", \"y\": [0.2802292104526322, 0.9455194119275858, 0.4978743212349556, 0.5289145624519528, 0.28439238707197784, 0.2033309570226689, 0.27345747478543325, 0.8322873304845451, 0.389055896812549, 0.3675472469853882, 0.5781933746273124, 0.7401955299744071, 0.44969671697605845, 0.4367887814338696, 0.31593955341667695, 0.3775624358859999, 0.19282181046294666, 0.048451763306065584, 0.6005928650583868, 0.032225376113695775, 0.427412413738938, 0.23973251442015217, 0.13890126550157303, 0.8613925272127, 0.329663916828638, 0.19359965390713213, 0.6827271716759634, 0.1960905505555538, 0.08135735686643118, 0.39737240301928484, 0.13902987396822816, 0.6514166433739288, 0.6994753721471061, 0.7140886736258081, 0.5021795028970708, 0.48743245558712556, 0.5731139673640956, 0.8820820642542792, 0.559972149724866, 0.5061565591493914, 0.5066810377847554, 0.833805652807593, 0.6979972163580744, 0.3177574231538272, 0.13068190592986567, 0.758876109553896, 0.5681062961269688, 0.715544821914063, 0.762062625203523, 0.4464438677531786, 0.20995974230910305, 0.5262622410710028, 0.39442669669188163, 0.2537324982988368, 0.6775437642744659, 0.23876321589577687, 0.6369158982934647, 0.38960060362966165, 0.6034323722874255, 0.7769991715799629, 0.15199748354041337, 0.5641412449951732, 0.7590466800561823, 0.5969347905931296, 0.1048362779837843, 0.7217824369593382, 0.2662339163773806, 0.16472378978351135, 0.37760124376932414, 0.7071736299639594, 0.3436862995931572, 0.8384434752264291, 0.3635333644877426, 0.7813188949129265, 0.7279369976219869, 0.5641098847382463, 0.3863964747623771, 0.9209913370067284, 0.1477144681640183, 0.8809374658555192, 0.6533168894759348, 0.8873477284758582, 0.3697306267878623, 0.28319023347825867, 0.5203701741750857, 0.5523747693308857, 0.6387521731780509, 0.3881380695009739, 0.8487896327149285, 0.4636606453307818, 0.8384434752264291, 0.558266603669778, 0.21657231888677728, 0.3635333644877426, 0.5512671313974766, 0.5051039398599867, 0.5827915753039158, 0.49441682850108926, 0.47309171914705017, 0.6262595591688196, 0.5508242483721094, 0.47332791509789995, 0.7117569366896692, 0.3933786516273859, 0.16465066549244003, 0.7490394132223248, 0.769261050002088, 0.7431932405995126, 0.3141000916210982, 0.723735045552473, 0.6484132891031948, 0.688519894019609, 0.40496704226994307, 0.5803736122960511, 0.6327801522745691, 0.45115706990411364, 0.37268733756108086, 0.9009693101135351, 0.06496389958099598, 0.44431713201158524, 0.39960831974332744, 0.8662156944598043, 0.31018081106061823, 0.5339551117365043, 0.33311273919547707, 0.400132762133902, 0.8528754522806217, 0.14419347879543085, 0.11672350429510901, 0.44556702529145975, 0.6160120899414699, 0.13766892845409207, 0.5517204028384314, 0.5232178919035022, 0.35483403305733974, 0.4900213704561591, 0.8854578072659228, 0.43084122675663034, 0.7601186327653665, 0.14072030431570776, 0.6186690618327106, 0.5245054232921349, 0.7326259458716644, 0.5690781983520095, 0.4018508815425063, 0.24877469563805235, 0.7952501197393639, 0.8766221356386195, 0.303451532996695, 0.5357745481647883, 0.7096524147827454, 0.20877177283968149, 0.8635610141758273, 0.46736762313881036, 0.6061151992073851, 0.113015272873705, 0.40446014603085867, 0.6332606063976143, 0.648705381890928, 0.42186952587750404, 0.8047913565308571, 0.3017058309841093, 0.38406990132164637, 0.33494193042999065, 0.19929939967121216, 0.8624919783238055, 0.528785836409086, 0.43084122675663034, 0.47042159929499583, 0.5061565591493914, 0.5759491569657543, 0.8468794444363914, 0.20342296359496542, 0.5170831534483544, 0.3666753044655067, 0.6131723001375537, 0.4410646109528086, 0.6903416342484309, 0.3866428492574258, 0.4636606453307818, 0.4525459302795702, 0.03199256040434073, 0.7029629492254846, 0.2433141614541866, 0.548755973819273, 0.3775060302547258, 0.06593060991448157, 0.8745624549148976, 0.22931948662359403, 0.27267688907931714, 0.589328430619086, 0.8007160756317941, 0.5525637789187225, 0.5008522318356121, 0.4556212410144909, 0.17391722008742402, 0.43574637053357784, 0.3237440077649342, 0.6071692164257629, 0.6925152430641841, 0.592675381607996, 0.43854150134957587, 0.43854150134957587, 0.42437112972565305, 0.8061118855433299, 0.35195592295594336, 0.7605370065149419, 0.38898578429124253, 0.67510953655807, 0.872979709380305, 0.710510994258769, 0.720290290780972, 0.4820787970895852, 0.42019280799979697, 0.4304380754474639, 0.25285023254778977, 0.3238056884730761, 0.39471961640683584, 0.09510031985475974, 0.367046376808582, 0.21500793651835448, 0.8705359023101334, 0.6100742529031461, 0.6226449432624995, 0.7279369976219869, 0.3643494054700089, 0.09992017521484964, 0.41475515148757036, 0.6462260464983366, 0.14102909592513518, 0.48949585696458414, 0.5239520436918008, 0.6084413884537807, 0.5655473856702703, 0.9517420512476797, 0.7489379515982664, 0.4647937384849751, 0.7915321263825208, 0.44112279258530757, 0.5734340256727429, 0.6604471727860799, 0.4845203185458914, 0.6968730453869196, 0.5315374962198609, 0.8685951485887234, 0.6242442748350044, 0.2912097196987059, 0.7725938221565348, 0.2067629769731588, 0.30221725334927335, 0.13129342562285412, 0.6467789443522378, 0.6994753721471061, 0.11825382206919556, 0.41022417118631593, 0.4882665226122541, 0.7732287086973071, 0.25374762405010176, 0.49441682850108926, 0.3723877205427743, 0.652330313245635, 0.43667799883041203, 0.5964718913578133, 0.55172276504346, 0.24113559934961917, 0.8243980268882987, 0.7263843594269437, 0.43535214809021755, 0.8721122798612579, 0.18723914490145582, 0.6486906676970999, 0.11576704656818047, 0.4328241622975616, 0.491481212420291, 0.5264345378086769, 0.33856526784971647, 0.2967410926251248, 0.581398831228375, 0.5973776665460488, 0.6195406102170065, 0.37782717658841725, 0.323061133240968, 0.17420808473594895, 0.19634770547538957, 0.46492234760650425, 0.49613167963272686, 0.5812209036149294, 0.6057291775435286, 0.63414717387345, 0.5702687187355167, 0.8604975146328253, 0.6309022132706124, 0.48732991249542923, 0.6887148870948692, 0.41581945293096145, 0.5706760596351739, 0.4831274653996314, 0.06684727567316755, 0.49090643211649887, 0.15191610726090596, 0.2711405311223577, 0.7653618545702112, 0.09266565137124261, 0.4554350627407873, 0.19698919164573708, 0.6930185080649685, 0.5227537922811563, 0.50434568709929, 0.7082092780767422, 0.46058046365566996, 0.6735723234187477, 0.4285936050615775, 0.323061133240968, 0.5168500865319015, 0.6161307914674419, 0.23456444218973552, 0.3192004782541023, 0.21968945907811915, 0.5028183230931117, 0.43371621376298963, 0.6744209213341115, 0.5940260419772637, 0.13783310426722128, 0.5136444387530009, 0.5508647999875032, 0.4955911012838212, 0.9814394195009358, 0.8260225289794664, 0.17965956338109995, 0.46844896472597397, 0.6048119589659149, 0.3289160319090978, 0.2454606394453749, 0.7497022835596558, 0.683485355417811, 0.20995974230910305, 0.23504578258460665, 0.37175956099497537, 0.4875530438829156, 0.24982584224249993, 0.6282829625348888, 0.4520795162158371, 0.8200372413039435, 0.12832513643528837, 0.5299630655130737, 0.29552777318700446, 0.24021937552346023, 0.5429028773737552, 0.6311869746243346, 0.4145977043912777, 0.39329840463575844, 0.39070335653410526, 0.4286990948130573, 0.846836560604146, 0.6880850122626078], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (curr)\", \"type\": \"scatter\", \"x\": [6.4, 7.2, 6.8, 6.8, 7.9, 7.4, 7.3, 6.6, 6.5, 5.8, 10.0, 6.9, 6.6, 5.3, 4.4, 7.9, 6.9, 8.5, 9.1, 7.6, 7.6, 7.4, 8.3, 6.7, 7.8, 7.1, 6.4, 6.0, 7.6, 6.9, 7.3, 6.6, 6.9, 5.1, 5.8, 6.6, 6.5, 6.4, 6.8, 7.2, 6.7, 6.0, 7.6, 7.3, 8.3, 7.8, 7.8, 6.8, 7.9, 6.8, 8.0, 8.0, 6.8, 9.2, 6.9, 8.1, 10.7, 5.2, 6.6, 9.1, 6.4, 6.8, 6.6, 8.0, 6.7, 6.0, 7.7, 7.7, 6.0, 7.5, 7.1, 6.7, 7.7, 5.3, 8.0, 6.3, 6.1, 6.6, 7.7, 9.0, 6.4, 7.3, 7.5, 8.3, 7.6, 8.4, 9.3, 6.5, 6.9, 6.3, 6.3, 8.4, 5.6, 6.6, 6.0, 7.3, 11.6, 7.6, 11.8, 5.9, 7.2, 6.4, 6.9, 6.9, 7.1, 6.6, 7.9, 6.7, 6.2, 6.7, 6.7, 7.9, 6.9, 6.1, 6.4, 6.4, 5.0, 6.6, 6.9, 9.8, 5.0, 5.4, 6.5, 6.2, 8.2, 9.7, 7.8, 6.1, 9.3, 6.8, 6.2, 7.4, 6.1, 8.3, 6.2, 8.3, 9.2, 8.3, 6.8, 7.3, 7.2, 6.4, 11.9, 6.6, 6.2, 5.8, 8.4, 8.9, 7.1, 8.3, 7.0, 7.6, 7.5, 7.2, 6.5, 6.8, 9.9, 7.2, 5.9, 7.2, 7.1, 7.5, 6.2, 6.3, 12.6, 8.6, 8.9, 7.9, 8.3, 6.9, 6.3, 8.6, 7.2, 8.5, 5.8, 7.0, 6.1, 6.5, 6.0, 8.3, 7.7, 5.8, 6.9, 11.8, 7.0, 6.3, 9.1, 5.6, 7.0, 6.9, 7.8, 6.6, 6.5, 7.0, 6.2, 7.7, 6.7, 5.1, 8.4, 6.5, 7.2, 7.5, 5.8, 7.7, 6.6, 6.7, 8.5, 10.4, 6.6, 6.8, 5.9, 5.8, 6.7, 6.2, 13.2, 7.0, 5.9, 6.0, 5.6, 6.8, 7.0, 6.2, 7.8, 6.3, 7.3, 7.3, 6.0, 7.4, 8.7, 7.3, 6.9, 8.1, 6.9, 7.0, 10.3, 8.4, 6.6, 6.8, 7.0, 7.4, 6.8, 8.1, 8.4, 6.4, 7.1, 10.4, 7.3, 7.4, 7.5, 9.4, 7.9, 7.6, 8.1, 6.5, 7.0, 6.7, 7.5, 6.6, 6.7, 5.8, 6.8, 6.9, 7.5, 6.4, 7.3, 7.4, 7.6, 6.1, 6.8, 7.6, 6.8, 6.3, 5.4, 11.5, 6.7, 7.4, 6.9, 6.8, 5.6, 5.9, 8.4, 7.9, 6.0, 5.8, 7.0, 10.0, 6.1, 6.2, 5.3, 6.1, 11.5, 10.3, 6.9, 8.2, 6.4, 6.1, 6.1, 7.0, 6.9, 7.0, 8.0, 7.6, 7.5, 6.0, 7.4, 7.2, 5.9, 6.8, 7.8, 7.0, 6.2, 6.5, 6.2, 6.5, 5.7, 5.4, 7.2, 8.1, 8.5, 6.7, 7.0, 6.0, 7.7, 7.3, 10.1, 7.2, 7.4, 10.9, 6.8, 6.6, 7.0, 6.7, 9.1, 8.0, 6.7, 6.9, 7.3, 6.5, 7.6, 7.0, 7.1, 6.1, 7.4, 7.0, 7.7, 6.8, 7.0, 6.3, 9.8, 6.7, 7.8, 7.5, 8.7, 7.2, 7.6, 6.7, 8.6, 6.5, 7.5, 6.6, 6.8, 6.6, 8.2, 7.0, 8.8, 6.4, 5.7, 6.9, 6.2, 6.8, 5.6, 6.3, 7.9, 6.9, 10.9, 6.6, 5.8, 6.4, 6.8, 5.6, 4.9, 7.4, 6.8, 6.8, 6.5, 7.1, 7.2, 5.5, 6.9, 6.3, 6.4, 6.1, 5.2, 6.8, 6.9, 7.5, 7.2, 10.1, 7.2, 6.8, 7.4, 5.6, 6.3, 6.8, 6.0, 6.9, 6.2, 5.9, 7.0, 6.9, 8.3, 5.6, 8.2, 6.0, 6.7, 7.5, 6.2, 10.1, 7.0, 7.2, 5.5, 5.7, 11.1, 6.9, 11.5, 7.1, 6.6, 6.3, 6.6, 7.8, 6.7, 5.7, 6.7, 7.2, 9.1, 7.8, 8.1, 7.4, 6.5, 6.8, 7.4, 5.3, 7.6, 7.0, 6.2, 11.3, 5.0, 6.4, 6.0, 8.9, 6.6, 7.0, 6.5, 7.7, 7.2, 6.0, 6.5, 5.9, 6.4, 7.0, 6.7, 6.2, 6.6, 6.8, 7.5, 7.4, 8.0, 6.2, 7.2, 6.9, 6.2, 8.2, 6.0, 7.4, 8.3, 6.6, 6.4, 6.8, 5.6, 6.0, 6.4, 6.8, 7.0, 8.9, 7.1, 7.4, 6.9, 6.6, 8.4, 7.1, 8.7, 7.3, 8.3, 8.2, 9.0, 10.9, 8.6, 9.6, 7.3, 12.0, 6.0, 6.9, 7.4, 5.8, 5.6, 5.7, 6.7, 6.1, 10.6, 8.2, 7.3, 7.2, 6.4, 7.4, 7.9, 6.7, 6.8, 9.9, 6.4, 7.2, 5.0, 7.5, 5.3, 6.9, 5.6, 7.2, 6.9, 6.1, 6.9, 7.3, 7.0, 6.6, 7.4, 6.3, 8.0, 7.4, 11.6, 8.9, 7.0, 6.9, 6.4, 6.5, 10.4, 6.7, 5.6, 5.5, 10.6, 8.8, 6.9, 7.4, 7.6, 7.2, 6.0, 9.1, 5.8, 7.5, 7.0, 6.5, 6.0, 5.1, 6.7, 6.9, 7.4, 7.9, 7.3, 7.8, 8.5, 6.6, 6.7, 6.1, 7.3, 7.0, 6.0, 7.7, 7.4, 6.3, 6.0, 6.6, 7.1, 6.8, 6.4, 7.0, 5.7, 5.1, 7.4, 5.7, 7.7, 6.7, 6.6, 6.4, 6.8, 7.1, 8.0, 6.0, 8.0, 12.4, 6.6, 7.3, 7.0, 6.1, 6.6, 6.9, 6.4, 7.9, 6.6, 7.5, 9.6, 7.2, 8.0, 5.5, 6.3, 6.8, 6.9, 6.6, 7.4, 7.6, 5.6, 7.0, 6.9, 6.9, 6.9, 6.7, 6.8, 6.4, 6.8, 6.0, 7.5, 9.0, 10.2, 6.6, 7.8, 13.7, 7.1, 7.0, 7.1, 7.7, 6.1, 8.2, 9.5, 7.4, 6.5, 8.3, 5.7, 6.4, 7.8, 6.8, 6.7, 6.7], \"xaxis\": \"x2\", \"y\": [0.33396714643252134, 0.5044440900554997, 0.8874896900044845, 0.4686759077780351, 0.23831547366416572, 0.571181601185031, 0.7785327680196316, 0.7290551099174598, 0.9581131370131553, 0.6801000322064107, 0.413367674560271, 0.6667140739211237, 0.9108229754863395, 0.9275086157065797, 0.9186958597750785, 0.7191871442695774, 0.8184457509658746, 0.8597940676688322, 0.7947045908306632, 0.8244149680645384, 0.42771531534877594, 0.5315376696882942, 0.7136291946100958, 0.5510697799054304, 0.6393262665313312, 0.9016582766249417, 0.8560880110261746, 0.8947361144883382, 0.9102326114023062, 0.840723585394272, 0.9264645566705582, 0.5105903360131552, 0.752648770317166, 0.5855954083225455, 0.8989214048388485, 0.5190750352404293, 0.9560713253502463, 0.7273157243430202, 0.9279672131348602, 0.640103147954212, 0.9158977434209615, 0.9035955072010529, 0.7140955379655831, 0.233508355491505, 0.7280578325574358, 0.8810827811902006, 0.3966129217085586, 0.15541760955422754, 0.5851621750323275, 0.9046111951917862, 0.4177213302712193, 0.7993763114768937, 0.6978409661933959, 0.6473373667551029, 0.770784382977056, 0.6500641275496193, 0.548949563093737, 0.9803199442553986, 0.6150775052067382, 0.391333092160729, 0.6966682278280982, 0.9426748402861506, 0.9170092977635526, 0.844625652038695, 0.5621782696252592, 0.8935808323282117, 0.6792214086077275, 0.6719996755401956, 0.5252591274442797, 0.7277045758687855, 0.4685752957996948, 0.8616549355667619, 0.347491516391863, 0.8224130863808733, 0.5340790568488665, 0.6711667658766297, 0.5277539611022016, 0.7226430813715845, 0.8140972745487615, 0.3280236940194876, 0.9543080196225542, 0.7752655593026647, 0.9223925066666061, 0.8588031784191832, 0.6345107008491314, 0.9393010047953068, 0.7897067132703484, 0.8608062836413887, 0.8367885032124018, 0.38555642305179116, 0.8611944449682004, 0.9172341012895443, 0.9206892306522243, 0.9500505925695213, 0.537798347971205, 0.9173482789702866, 0.44454351342386716, 0.8909704850569525, 0.7351932580165473, 0.6818328744935735, 0.7981559962965634, 0.7626532952948841, 0.807353254900461, 0.964411205143099, 0.4685752957996948, 0.6986526320119215, 0.1956969407137045, 0.9233481403380283, 0.8218375601976645, 0.8536269727611236, 0.5637680470866036, 0.42267134533232753, 0.93003590801509, 0.9364808605729722, 0.8816060831574614, 0.9663102962713933, 0.8345570787709832, 0.4997893986747249, 0.7921603237806832, 0.5586815647381762, 0.8622246464681924, 0.9828719612298703, 0.909295720392338, 0.9476267884443668, 0.5395521774612226, 0.901360886913609, 0.39410444510430487, 0.9262213132200262, 0.6627387433216217, 0.9629433821448677, 0.9614311452267452, 0.9802968012486629, 0.933760787013923, 0.34432718187202205, 0.63596173557573, 0.624364378916488, 0.7417789548241253, 0.7300918276682445, 0.6968315453320488, 0.7840233885688647, 0.8958841271622066, 0.5417426694559925, 0.7102579146160282, 0.6004345411549624, 0.515920701757342, 0.7587882454650442, 0.5029588531082266, 0.6887596776945688, 0.8642849605932809, 0.6469572639767995, 0.8103639651534781, 0.939764354405301, 0.694136577696587, 0.6593725303534554, 0.9646797005081557, 0.7979900311745153, 0.792123904710467, 0.8869579700149332, 0.7351250317969437, 0.5332560471205093, 0.9406873315653421, 0.39362685027924615, 0.9466602521798594, 0.8394325033041952, 0.6633442657978572, 0.8126408700417265, 0.7332457619716184, 0.08024070404520958, 0.8667774471450977, 0.6466814331404849, 0.912366876100516, 0.656670904734599, 0.8701678467707724, 0.8875925797813499, 0.9658725076002231, 0.7668332861852056, 0.8604440887473094, 0.934384507524058, 0.9605946056867319, 0.951253157591183, 0.5749289095213865, 0.6279243005170476, 0.7937202818717513, 0.7665301650725991, 0.700127941221274, 0.8531107444728586, 0.7947045908306632, 0.8870566665876504, 0.5476228787844645, 0.8410401833568673, 0.8736671065238262, 0.6519898659949606, 0.936943112068646, 0.9077719201719568, 0.8071889556778997, 0.8815615400732472, 0.8935313268029127, 0.8782891297971865, 0.5029588531082266, 0.5797201450332624, 0.9416775458320723, 0.5958140198486584, 0.2485157288688957, 0.932021424688801, 0.8531502837407814, 0.6344194678828672, 0.632587077283238, 0.9121448358615357, 0.5776545535910985, 0.9052765174806566, 0.8580390107418799, 0.8998644401112552, 0.6784536879503494, 0.9458342431661766, 0.21387363850783603, 0.9530348339880965, 0.7307391114165022, 0.7187682731289255, 0.6905635603269331, 0.9569274903702625, 0.9287384091375525, 0.3856984054091925, 0.504413920551941, 0.5389739198483336, 0.5921068831639978, 0.10702848140489757, 0.8772993497727819, 0.6361944011057532, 0.8952999713010865, 0.7069578609115064, 0.10632960186243966, 0.6465592619811017, 0.9116333268133815, 0.9210441535829985, 0.9483358221641291, 0.5800224234700003, 0.896951343689222, 0.8958659323404018, 0.8896861436466836, 0.7763142135369961, 0.778627444633172, 0.9274605647284293, 0.9167924025380936, 0.6422094408272838, 0.6363725079258666, 0.8694129796739031, 0.5693182102579236, 0.5315376696882942, 0.6814536952243052, 0.30089534057709466, 0.6689448970920832, 0.6419522618821227, 0.6500641275496193, 0.8221968069187356, 0.9285763346020383, 0.8495153837633861, 0.7135666997345446, 0.8850789772017983, 0.9128367188568884, 0.8709442503982084, 0.44714680104169846, 0.7147831401969469, 0.6814536952243052, 0.5823319261018008, 0.7718122970862826, 0.8925058444773368, 0.9249991097277733, 0.7849066379312727, 0.5120166815330335, 0.7863291630268572, 0.8171821177205619, 0.8878235148823457, 0.9813953955585096, 0.5009899161211654, 0.6787020040856314, 0.2747106808400709, 0.6998114428322438, 0.7191783799678735, 0.7566715075843347, 0.7741630673610131, 0.692871858980435, 0.8706970297938403, 0.9226518689226377, 0.619213859232465, 0.9620625840847012, 0.8161066853745392, 0.7984578805051198, 0.8987836568806694, 0.27900511725120763, 0.747868261422589, 0.8013372150606806, 0.4430395412241901, 0.8082746512504794, 0.9248395818955686, 0.8132668978866627, 0.7926355964369082, 0.7243101498981422, 0.8251498778038484, 0.865753667016409, 0.8784859927081519, 0.9613966942665844, 0.8380103992838959, 0.9376908870460701, 0.8505645904112248, 0.5317253080143199, 0.8756470416862959, 0.8823120896825394, 0.8920529250761863, 0.9565288857220365, 0.92576324319171, 0.8397457208604353, 0.8008835764985612, 0.7620555647282774, 0.6333567796033132, 0.8986985644274655, 0.8289197139212982, 0.38568054861828666, 0.4358764146033148, 0.7013568331933456, 0.5524769805317635, 0.8654015550049637, 0.9625385348003681, 0.4997035751430624, 0.5940434106189647, 0.29640429037896177, 0.9370396801623051, 0.7496358493500708, 0.8521916566704996, 0.7519935213994349, 0.8956127660014477, 0.7563308848917781, 0.5425355780301907, 0.1652985164032473, 0.5777375433929663, 0.5926841497777402, 0.5247451599628447, 0.6215406511606532, 0.646742228322253, 0.5236567091352762, 0.8105889943537302, 0.7614647275399787, 0.7272264480694343, 0.44438282424164377, 0.8051848688934031, 0.253979247575754, 0.8737269176380216, 0.7884186533408385, 0.5226162157005312, 0.7776146375974927, 0.8021344726910251, 0.6794204065079696, 0.8398669626756513, 0.3743394998756179, 0.6593725303534554, 0.41008410759983227, 0.8726624594592295, 0.31336232876890546, 0.6187135046228962, 0.9208146539756937, 0.8948907807194619, 0.9475948217130945, 0.7098971478357265, 0.41970311630379203, 0.5524505095188592, 0.6689295490636696, 0.39534528644804523, 0.6686700461744643, 0.6608417181144597, 0.6289006219381473, 0.8112353209803558, 0.9675531845963172, 0.3468688843876404, 0.8171815196180959, 0.9315945487332388, 0.7612383340144859, 0.43979370974717685, 0.9452166580978265, 0.810349906376065, 0.4979189466877109, 0.9054024939516333, 0.7506263221664519, 0.8595966107872783, 0.9041757536760852, 0.5120166815330335, 0.9246344940597735, 0.622364539475366, 0.7975959936185795, 0.9376528402833735, 0.8270495791839716, 0.7463426393970082, 0.8508295060861325, 0.5277539611022016, 0.7926521549058593, 0.8343380415579561, 0.7973631232158779, 0.5423298306356671, 0.6253812669856891, 0.9342151247863544, 0.9064095870896521, 0.8428584418618921, 0.5680191878381406, 0.8230633503438987, 0.857993972512287, 0.8312116035859974, 0.8886868130574391, 0.5695902702544526, 0.8750573328895943, 0.47134086624147714, 0.6082670858563528, 0.8571520978358925, 0.7006810412396262, 0.6001343818465046, 0.8680196363335714, 0.7833148206731655, 0.835330250744176, 0.6883000602161935, 0.4297997702781997, 0.7132181587745201, 0.941909753873568, 0.9298379484442667, 0.8950633078112005, 0.9652574497835966, 0.8593048115498744, 0.23022113319019433, 0.5548683876071567, 0.8789570823277312, 0.7176343272433334, 0.7135972690872326, 0.900955402304434, 0.89110615578316, 0.8021344726910251, 0.36734125225010755, 0.9233813125795639, 0.9269988231022361, 0.6021478506882372, 0.27064660283581765, 0.7595966254948197, 0.5317253080143199, 0.9626288904553877, 0.518871521713375, 0.4244151934213653, 0.8784852709235653, 0.667697582798242, 0.6791650855490978, 0.8659372985570389, 0.5217980090164113, 0.9757802673562255, 0.20769640873195563, 0.6900575067285889, 0.15051833553221247, 0.8476988333501053, 0.12043274000614122, 0.6546311715671466, 0.412102187638673, 0.6339696776630096, 0.6925917751558638, 0.8074446941396305, 0.8417042066658985, 0.4702054036006336, 0.8107456318417504, 0.934253622333564, 0.9671353887875448, 0.3776875782453083, 0.5133306968464912, 0.8279918435672958, 0.7295730380004212, 0.8398957027397556, 0.7470826509089123, 0.7722124156410631, 0.3944809481034696, 0.5801047158883857, 0.7134138458261836, 0.8265590446981121, 0.5836238058504062, 0.7538957359152121, 0.9708936701567454, 0.41507295289487073, 0.9039211350062085, 0.5109703825452502, 0.8880660412534, 0.6332514250278477, 0.703270618172154, 0.863031725372896, 0.9601349291832292, 0.5845797646527732, 0.8357575010967041, 0.9584406458449958, 0.8733333206292072, 0.4740801794177068, 0.5787650908025566, 0.38525623454815555, 0.5715075300165849, 0.951253157591183, 0.831291834366621, 0.6482062646591596, 0.5447536045265621, 0.8456825404777587, 0.5358725178581014, 0.8893400405584444, 0.5955893395860203, 0.9408369636189147, 0.7580589814818564, 0.4244151934213653, 0.7636885291754726, 0.9532052815091139, 0.6686700461744643, 0.39683939049776734, 0.8309978518015588, 0.06774730328187532, 0.8934061610794648, 0.9459413258233057, 0.8507977517004935, 0.9694554821790147, 0.8640493534313302, 0.8409166048571896, 0.9059760843724536, 0.7278052027863667, 0.8952246802917138, 0.39534528644804523, 0.9558702864115934, 0.9178754126151818, 0.7504628435478695, 0.7568870052952757, 0.32046258648166903, 0.9712495894387816, 0.7125870341029702, 0.8286889773580812, 0.929575727770858, 0.8422483936479932, 0.60065365322741, 0.5775074082600717, 0.7505976846167132, 0.5317253080143199, 0.9590110623565244, 0.9651712957082627, 0.7333643603414158, 0.7757825668725274, 0.8928390517037824, 0.2578168736401774, 0.5355488836719776, 0.8408692583280314, 0.7849780542174357, 0.8711681462620556, 0.8447990405440073, 0.9571933326515756, 0.9307123551507692, 0.6421242495412457, 0.9239207054420927, 0.9336219461922934, 0.4244151934213653, 0.5673643045526261, 0.8301442064454496, 0.528471943574542, 0.8835542071774324, 0.8820947700128993, 0.4561713647735051, 0.584381944856391, 0.9493936477483658, 0.7816316980556022, 0.7770145472448273, 0.8495153837633861, 0.8318035560268552, 0.5220388622338656, 0.8589980209217414, 0.21216021099657945, 0.8782303617207965, 0.901850575196968, 0.7683760396387002, 0.9559989503713009, 0.938411491366706, 0.7225398931917507, 0.5918361617892179, 0.8596378534897678, 0.8816239240572568, 0.9296844522785247, 0.8299758417251202, 0.7538846798551382, 0.931253582726863, 0.6902425303942638, 0.9299571155275668, 0.35461708236434614, 0.6119587629530028, 0.8979450471026776, 0.8782891297971865, 0.6144930729026484, 0.5601837238662909, 0.4230258756549153, 0.5115702372514986, 0.6133200318312215, 0.8287048127179734, 0.42887934024879554, 0.5543929044930882, 0.5414149972460248, 0.7453725251924848, 0.6522898344923613, 0.6445138145159856, 0.9212190995841192, 0.6991293681294938, 0.9188224881967051, 0.9444881948020799, 0.8399825546316605, 0.6440269003431431, 0.45260210695563535, 0.6678228102737954, 0.8535669746933884, 0.23469888428232324, 0.7581156815660375, 0.8329520097124233, 0.5886389680190937, 0.4250130050586104, 0.290761161529129, 0.9065968169685268, 0.39757013049667705, 0.9584529405260903, 0.24804178200132845, 0.8400605958344816, 0.9562762484868867, 0.5923100188758571, 0.5355488836719776, 0.6866862751474886, 0.753715093249364, 0.9302702282582556, 0.8405005145861136, 0.7758456574858743, 0.8270123797965384, 0.9270997487744173, 0.8779999285967196, 0.6350604679157676, 0.9057987369792326, 0.9732730617650076, 0.28007269673131574, 0.5393237551960537, 0.9509318156255189, 0.8055358405733448, 0.8512314640165554, 0.6752183046546253, 0.9766791413071304, 0.26893819095773785, 0.5105552073939665, 0.7964242570425004, 0.9159462749375985, 0.46312559485344046, 0.7889853219989779, 0.5331772070153998, 0.6250130361556073, 0.5340700079782073, 0.8981158701031157, 0.8424802355113449], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [7.3, 6.4, 7.5, 5.6, 6.9, 6.8, 6.5, 9.1, 9.0, 12.7, 7.6, 7.2, 6.4, 7.3, 6.7, 6.8, 6.8, 11.9, 6.6, 6.4, 6.8, 8.0, 6.3, 6.5, 6.6, 7.4, 7.2, 7.5, 5.3, 7.0, 7.5, 5.3, 8.1, 8.2, 6.9, 5.9, 9.8, 7.5, 7.0, 6.0, 8.6, 7.5, 6.9, 7.0, 6.4, 6.5, 8.3, 8.3, 6.0, 7.4, 6.2, 7.5, 9.0, 8.0, 7.7, 7.9, 7.4, 15.6, 7.6, 6.9, 15.5, 8.1, 6.3, 10.0, 7.0, 6.8, 8.5, 7.4, 6.8, 7.3, 6.6, 5.6, 4.9, 8.8, 6.6, 7.1, 7.2, 7.0, 6.2, 8.0, 7.6, 9.2, 6.0, 7.9, 8.3, 8.2, 7.9, 7.8, 6.7, 7.5, 6.3, 7.6, 9.3, 7.7, 6.9, 7.6, 8.0, 8.9, 6.8, 6.3, 10.0, 9.4, 6.8, 6.5, 8.9, 7.0, 9.0, 6.0, 6.0, 7.6, 7.9, 7.1, 6.9, 6.9, 9.6, 8.9, 6.6, 6.6, 6.4, 8.4, 5.8, 6.6, 7.0, 7.8, 7.2, 7.5, 5.7, 11.8, 7.2, 6.8, 6.9, 6.6, 7.7, 8.8, 7.1, 7.2, 6.9, 9.0, 7.2, 6.5, 7.9, 8.3, 8.6, 8.4, 9.5, 7.4, 7.9, 6.4, 7.9, 6.9, 7.2, 7.9, 7.1, 7.2, 7.0, 7.2, 6.1, 6.8, 6.9, 8.0, 8.4, 6.6, 7.1, 7.6, 7.4, 7.7, 5.9, 6.7, 6.6, 7.4, 6.6, 7.2, 7.1, 6.6, 7.9, 5.8, 7.0, 6.8, 6.6, 6.1, 8.0, 4.2, 11.9, 6.4, 6.8, 7.5, 6.3, 6.8, 7.8, 6.2, 7.2, 8.2, 7.7, 7.0, 7.2, 7.3, 7.8, 5.6, 7.1, 6.8, 6.8, 6.2, 6.4, 6.9, 7.1, 7.2, 6.8, 10.0, 6.4, 7.3, 9.3, 5.8, 6.7, 8.5, 6.0, 6.7, 6.4, 8.8, 7.1, 6.5, 6.9, 6.7, 8.3, 6.4, 6.8, 6.1, 7.6, 7.0, 8.2, 4.9, 6.3, 7.6, 6.5, 9.2, 8.4, 6.7, 5.5, 6.1, 7.7, 7.4, 6.2, 7.2, 7.9, 7.1, 7.0, 6.0, 7.5, 5.7, 8.2, 6.4, 7.5, 6.8, 9.4, 7.5, 6.5, 6.5, 7.1, 6.8, 7.2, 10.8, 6.5, 7.2, 6.4, 6.4, 8.2, 6.4, 7.1, 6.2, 6.2, 6.4, 7.1, 8.3, 7.9, 6.7, 9.2, 6.0, 7.4, 7.0, 6.7, 6.8, 8.3, 6.1, 6.9, 5.8, 8.9, 6.0, 8.6, 6.0, 7.8, 9.8, 6.4, 5.2, 7.2, 7.2, 6.4, 9.3, 6.3, 6.4, 6.2, 8.9, 6.6, 13.0, 6.2, 6.8, 7.0, 6.4, 11.1, 7.4, 8.1, 6.4, 7.5, 6.4, 8.2, 7.1, 7.6, 7.2, 7.6, 6.7, 6.2, 5.4, 11.0, 6.3, 5.7, 6.6, 8.9, 6.8, 6.3, 12.2, 6.6, 4.9, 7.6, 6.4, 7.2, 6.3, 7.6, 7.2, 5.8, 6.8, 6.5, 7.3, 6.9, 9.0, 6.8, 8.0, 10.4, 8.1, 8.3, 7.3, 6.5, 7.6, 7.0, 7.1], \"xaxis\": \"x2\", \"y\": [0.8142007211296887, 0.07257977436397642, 0.7430932382113554, 0.8214862427787604, 0.5698848321031316, 0.6048119589659149, 0.6466669219762841, 0.14510080060429495, 0.2250304680670007, 0.28492472637839966, 0.42061632734231896, 0.8281252124183194, 0.49622399336621903, 0.3482895521074759, 0.4678833354511545, 0.5708968386647719, 0.37048677721847617, 0.553632248395139, 0.8702137350251022, 0.42186952587750404, 0.8696774950675754, 0.5410576963494411, 0.3971326977900686, 0.3275001196198921, 0.9448289227093116, 0.7109941475090589, 0.41925580570138304, 0.3675472469853882, 0.6721911818800557, 0.5562207270314473, 0.5262426608517637, 0.3244609607385458, 0.15056615442564347, 0.15676979724311627, 0.6037730696030339, 0.6342511279653397, 0.021947035536558718, 0.32429164429335744, 0.5678746850743716, 0.3571680467137555, 0.7755534309390314, 0.3240287891037917, 0.699424662214302, 0.5151532452376618, 0.7564675819717819, 0.38343591026479057, 0.19811005648518398, 0.3168419703358067, 0.5315947262677626, 0.9269044449273315, 0.8260225289794664, 0.451791899378283, 0.830516920403184, 0.47128602930186, 0.19027823806377472, 0.5181346713949518, 0.29552777318700446, 0.45414400334446664, 0.39329840463575844, 0.42327932510626076, 0.45838907164509224, 0.2233864252642039, 0.3628419195926303, 0.6709353200988277, 0.46058046365566996, 0.25551237833043455, 0.7234147543269824, 0.1481282262733752, 0.314935793994079, 0.20050531530561894, 0.37453315488553635, 0.701015529968035, 0.6343341418527783, 0.1739320900588749, 0.734996253073231, 0.8172229478314255, 0.3598554146739685, 0.7121055211356295, 0.2620604909731644, 0.3421138035730516, 0.6951268813066005, 0.35208221297891723, 0.452099210446082, 0.18907620085798427, 0.5444201651108793, 0.6484058972837882, 0.3258186925596978, 0.5963383680780668, 0.6202666247822538, 0.576738593946626, 0.5054992484109841, 0.2972245631729925, 0.6844333356791464, 0.42629475072919953, 0.4405153833121037, 0.01207867704715336, 0.7609288944606691, 0.23951123982998349, 0.09310514674080905, 0.5084920166510624, 0.33067609257366243, 0.36481899584296196, 0.5708968386647719, 0.3194802059637459, 0.14207297841267416, 0.5776897120055972, 0.2026163425795633, 0.37909000048748537, 0.38206764842015895, 0.41324683104354176, 0.17826143731067332, 0.42339414872454434, 0.39148091864802853, 0.3511350413575442, 0.8053393751847749, 0.5937005322868365, 0.6849942580153355, 0.38930033076762494, 0.5168500865319015, 0.5699073288866824, 0.5376087249833421, 0.8185832461647057, 0.25950508036415604, 0.20394483716883388, 0.3303044530853749, 0.2528102968078532, 0.8477719856767125, 0.5217124250004609, 0.3303044530853749, 0.5382885532339231, 0.9625763866028243, 0.6536174904341296, 0.42629475072919953, 0.6458781618432388, 0.46574001023909845, 0.37268733756108086, 0.8180085473348132, 0.35493594975273335, 0.2423640089427935, 0.3636330633241046, 0.6421622311157122, 0.5444201651108793, 0.7396308412796291, 0.9036153464846048, 0.21101569987323432, 0.6004024464464508, 0.7595861882737439, 0.486549602332862, 0.2379839758891197, 0.5147825233229498, 0.2065932277190248, 0.4342628292980428, 0.5940848250235929, 0.4857193175270624, 0.5332610244722983, 0.5402196969638672, 0.8578846895389459, 0.5290225674595067, 0.6074669506688956, 0.1847839155105034, 0.3581391437324269, 0.4304380754474639, 0.8410120374942113, 0.5810086483513661, 0.19026233744636453, 0.7223494520380469, 0.8589928738613049, 0.8374625942163022, 0.781203852328267, 0.73983195178881, 0.41156537259256004, 0.7482873396984137, 0.44431713201158524, 0.7113673874393347, 0.49869552495399233, 0.7627102864663872, 0.37193390769028617, 0.37187810520956766, 0.3773291605703562, 0.8719651627687759, 0.6218762459828849, 0.3781393537983126, 0.553632248395139, 0.47624084907999176, 0.774399353278846, 0.5840424935194366, 0.5601025471409736, 0.6186690618327106, 0.620611700356168, 0.5755798886129706, 0.15047650536569443, 0.5530049338021776, 0.6597439619439023, 0.8300222117931148, 0.3490158529243493, 0.4410646109528086, 0.5067909967309752, 0.5851482063434866, 0.7149827463187939, 0.4849259975950144, 0.2094210588097294, 0.33399024531412796, 0.4083143545243069, 0.7497022835596558, 0.7817929239213606, 0.7637421953724776, 0.3825655414920891, 0.6611482494098961, 0.19022241257108333, 0.44972084577511023, 0.5476732603321269, 0.4831274653996314, 0.5077048340566679, 0.7289504589448288, 0.4379810490617926, 0.8017221455714771, 0.6434673631716396, 0.5059779734745421, 0.6065367192264559, 0.650368705032214, 0.34567471266024347, 0.39561589000187136, 0.3427787545601037, 0.4676404271158623, 0.5332283386400669, 0.4519108142444285, 0.40662831629925006, 0.42305576187259053, 0.22032895172816622, 0.5278715769330472, 0.43679486629948455, 0.743933429392776, 0.5269515041023835, 0.5008800654866953, 0.214168174561682, 0.44879088851457377, 0.683485355417811, 0.807753104897186, 0.42629475072919953, 0.8502951424821861, 0.17421175568219957, 0.25491371883486935, 0.7595861882737439, 0.6571724132942184, 0.7813188949129265, 0.5626906653340306, 0.8674288259883418, 0.6600514650598344, 0.4827749661719035, 0.5456147119159479, 0.39827550056677263, 0.27323823737433794, 0.695896529362927, 0.5048820477254727, 0.5422349097465021, 0.5610936746718964, 0.6571724132942184, 0.3088751107498249, 0.45428761266464013, 0.6604471727860799, 0.43371621376298963, 0.6171893197168647, 0.8100511550343341, 0.8100511550343341, 0.605832578461134, 0.5526475584669951, 0.4275055171336787, 0.8734720021260204, 0.8508295378350301, 0.5807723706867254, 0.8272749548927728, 0.2670652478909882, 0.7020144194675465, 0.4615566916191992, 0.7055847950248242, 0.43389869234556755, 0.6071692164257629, 0.3496825637352313, 0.23676491619791426, 0.7057755976874825, 0.15539001443149586, 0.6187538615870153, 0.8735882828904331, 0.30049486749739024, 0.23191705420611952, 0.8913917397916864, 0.4977157214618499, 0.16961113509580228, 0.8485494795219795, 0.4760032757956232, 0.5053843099270294, 0.2676015269871764, 0.3627664421236291, 0.15146266807038725, 0.7898179638281774, 0.6145296307645981, 0.3790380236797623, 0.3003532640340299, 0.6086112016774773, 0.39906793889171593, 0.8185832461647057, 0.6715802865662828, 0.8260225289794664, 0.6056902064850618, 0.400132762133902, 0.39471961640683584, 0.6449859309106076, 0.5637152910565628, 0.39949420960438964, 0.5490401551410112, 0.4398875418860128, 0.30916577334906253, 0.7093303227687476, 0.4562508424819209, 0.40444044759428516, 0.5773483646962835, 0.447777692034652, 0.4961542215384683, 0.32474312180562226, 0.21192693199409943, 0.9056903490933487, 0.5013816399998683, 0.758876109553896, 0.6364928148646596, 0.2952804752502578, 0.4748951900520853, 0.43679486629948455, 0.5479962315186364, 0.4728142838839701, 0.6343341418527783, 0.12248807650217919, 0.5052525886146573, 0.8281252124183194, 0.8930081609652758, 0.36283726088930296, 0.8098196742550625, 0.656477404357746, 0.193885049884708, 0.5269515041023835, 0.49858469647139786, 0.32780472036158087, 0.24927512797396847, 0.6148718578314069, 0.10691527318901187, 0.136775438340409, 0.8489192718114075, 0.2600203086082801, 0.8142007211296887, 0.5269515041023835, 0.7966615933629455, 0.5633234794197017, 0.767479452333631], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"fixed.acidity\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"fixed.acidity\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}, \"fixed.acidity_bad\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (ref)\", \"type\": \"scatter\", \"x\": [7.2, 7.2, 9.1, 6.2, 9.2, 7.1, 5.3, 8.5, 6.9, 7.5, 7.0, 6.9, 7.3, 7.3, 5.1, 6.4, 7.8, 5.7, 6.6, 8.2, 6.1, 7.4, 7.5, 8.8, 7.0, 7.8, 5.9, 9.7, 7.5, 6.2, 7.0, 7.8, 5.8, 7.1, 7.4, 9.1, 8.5, 6.3, 10.2, 6.6, 6.9, 8.2, 5.7, 7.1, 7.1, 5.7, 5.3, 6.7, 8.2, 6.6, 9.9, 6.3, 6.6, 12.3, 7.4, 7.6, 8.0, 6.5, 6.5, 11.5, 6.3, 6.5, 6.7, 6.0, 8.5, 5.8, 6.7, 7.7, 6.7, 8.5, 7.4, 8.6, 7.4, 7.0, 6.4, 6.6, 6.2, 7.9, 7.5, 7.7, 8.2, 6.9, 6.1, 6.9, 7.7, 9.2, 6.1, 6.5, 7.1, 7.0, 8.6, 5.8, 8.4, 7.4, 7.4, 6.6, 6.4, 9.2, 6.4, 7.7, 7.2, 7.6, 7.1, 7.6, 7.8, 7.8, 5.9, 5.6, 6.2, 6.5, 7.4, 7.2, 6.2, 5.5, 7.1, 6.7, 7.2, 5.2, 10.6, 7.1, 5.8, 6.3, 6.7, 6.9, 7.1, 7.0, 6.8, 8.7, 7.7, 7.1, 10.3, 10.1, 6.4, 6.6, 9.4, 7.1, 8.3, 6.4, 7.8, 7.9, 6.8, 6.5, 5.8, 6.4, 7.3, 5.7, 6.2, 6.4, 9.4, 7.5, 7.2, 7.1, 7.6, 6.7, 6.9, 8.1, 11.6, 5.9, 7.2, 6.4, 8.3, 9.6, 12.5, 6.2, 7.2, 7.3, 6.5, 6.4, 7.2, 6.6, 6.9, 5.1, 7.3, 8.2, 7.8, 7.1, 7.3, 7.0, 7.3, 7.0, 6.0, 8.1, 5.8, 8.9, 7.5, 5.9, 9.8, 7.5, 6.6, 7.3, 6.5, 7.7, 6.4, 6.0, 6.3, 7.5, 7.5, 6.7, 7.4, 6.1, 5.6, 9.9, 9.9, 10.0, 5.9, 7.2, 6.1, 9.9, 5.6, 5.9, 7.5, 5.1, 6.7, 9.8, 6.6, 6.6, 7.1, 6.4, 8.0, 9.8, 10.0, 5.5, 7.5, 8.6, 6.4, 7.4, 5.3, 8.5, 5.9, 7.3, 6.4, 9.6, 7.0, 7.2, 6.8, 7.5, 6.1, 5.7, 6.6, 6.8, 10.8, 7.0, 6.7, 6.4, 5.6, 11.3, 9.3, 6.8, 6.6, 9.1, 9.8, 7.6, 5.8, 7.3, 7.6, 7.9, 7.2, 6.7, 9.2, 12.3, 7.1, 6.5, 6.9, 6.4, 9.3, 6.4, 5.8, 5.6, 6.1, 6.6, 7.5, 6.8, 7.8, 6.3, 6.2, 6.7, 7.0, 7.7, 6.6, 5.9, 9.9, 6.4, 8.9, 6.8, 6.3, 7.2, 9.5, 5.9, 9.2, 6.7, 7.5, 9.4, 7.1, 5.3, 8.6, 9.9, 5.8, 6.3, 7.7, 9.2, 5.6, 7.4, 9.0, 6.5, 9.4, 8.7, 6.1, 6.3, 10.6, 7.0, 6.4, 6.1, 6.4, 6.4, 8.2, 7.5, 9.4, 9.0, 6.8, 6.5, 7.4, 6.2, 7.7, 7.6, 6.6, 7.1, 15.9, 6.2, 8.1, 6.4, 6.8, 9.1, 6.5, 6.9, 5.5, 9.9, 7.3, 10.8, 6.0, 6.7, 6.1, 6.3, 7.0, 9.1, 6.6, 7.4, 6.2, 8.0, 7.0, 7.0, 7.6, 8.0, 8.4, 5.6, 9.2], \"xaxis\": \"x\", \"y\": [0.7197707895473677, 0.05448058807241418, 0.5021256787650443, 0.4710854375480472, 0.7156076129280222, 0.7966690429773311, 0.7265425252145667, 0.16771266951545494, 0.610944103187451, 0.6324527530146118, 0.42180662537268765, 0.2598044700255929, 0.5503032830239416, 0.5632112185661304, 0.6840604465833231, 0.6224375641140001, 0.8071781895370533, 0.9515482366939344, 0.3994071349416132, 0.9677746238863042, 0.572587586261062, 0.7602674855798478, 0.861098734498427, 0.1386074727873, 0.6703360831713621, 0.8064003460928679, 0.3172728283240366, 0.8039094494444462, 0.9186426431335688, 0.6026275969807151, 0.8609701260317718, 0.3485833566260712, 0.3005246278528939, 0.2859113263741919, 0.4978204971029292, 0.5125675444128744, 0.4268860326359044, 0.11791793574572085, 0.440027850275134, 0.4938434408506086, 0.4933189622152446, 0.166194347192407, 0.30200278364192557, 0.6822425768461728, 0.8693180940701344, 0.24112389044610405, 0.43189370387303117, 0.284455178085937, 0.23793737479647703, 0.5535561322468214, 0.7900402576908969, 0.47373775892899717, 0.6055733033081183, 0.7462675017011632, 0.32245623572553406, 0.7612367841042231, 0.36308410170653527, 0.6103993963703384, 0.3965676277125745, 0.2230008284200371, 0.8480025164595866, 0.43585875500482685, 0.24095331994381775, 0.4030652094068704, 0.8951637220162157, 0.2782175630406618, 0.7337660836226194, 0.8352762102164887, 0.6223987562306759, 0.2928263700360406, 0.6563137004068428, 0.16155652477357085, 0.6364666355122575, 0.2186811050870735, 0.27206300237801306, 0.4358901152617537, 0.6136035252376228, 0.07900866299327158, 0.8522855318359817, 0.11906253414448076, 0.3466831105240652, 0.11265227152414181, 0.6302693732121377, 0.7168097665217413, 0.4796298258249143, 0.4476252306691143, 0.3612478268219491, 0.611861930499026, 0.15121036728507153, 0.5363393546692182, 0.16155652477357085, 0.441733396330222, 0.7834276811132227, 0.6364666355122575, 0.44873286860252337, 0.4948960601400133, 0.4172084246960842, 0.5055831714989107, 0.5269082808529498, 0.3737404408311804, 0.4491757516278906, 0.5266720849021, 0.2882430633103308, 0.6066213483726142, 0.83534933450756, 0.2509605867776752, 0.230738949997912, 0.25680675940048736, 0.6858999083789018, 0.27626495444752697, 0.35158671089680515, 0.311480105980391, 0.5950329577300569, 0.4196263877039489, 0.3672198477254309, 0.5488429300958864, 0.6273126624389191, 0.0990306898864649, 0.935036100419004, 0.5556828679884147, 0.6003916802566726, 0.1337843055401957, 0.6898191889393818, 0.46604488826349566, 0.6668872608045229, 0.5998672378660981, 0.14712454771937833, 0.8558065212045691, 0.883276495704891, 0.5544329747085402, 0.38398791005853006, 0.8623310715459079, 0.4482795971615686, 0.4767821080964978, 0.6451659669426603, 0.5099786295438409, 0.11454219273407718, 0.5691587732433696, 0.2398813672346335, 0.8592796956842923, 0.38133093816728936, 0.4754945767078651, 0.2673740541283356, 0.43092180164799054, 0.5981491184574936, 0.7512253043619477, 0.20474988026063612, 0.12337786436138054, 0.6965484670033051, 0.4642254518352117, 0.29034758521725457, 0.7912282271603185, 0.1364389858241727, 0.5326323768611896, 0.3938848007926149, 0.886984727126295, 0.5955398539691413, 0.3667393936023857, 0.35129461810907203, 0.578130474122496, 0.1952086434691429, 0.6982941690158907, 0.6159300986783536, 0.6650580695700093, 0.8007006003287879, 0.13750802167619447, 0.47121416359091395, 0.5691587732433696, 0.5295784007050042, 0.4938434408506086, 0.4240508430342457, 0.1531205555636086, 0.7965770364050346, 0.4829168465516456, 0.6333246955344933, 0.38682769986244625, 0.5589353890471914, 0.30965836575156913, 0.6133571507425741, 0.5363393546692182, 0.5474540697204298, 0.9680074395956593, 0.29703705077451537, 0.7566858385458134, 0.451244026180727, 0.6224939697452743, 0.9340693900855184, 0.1254375450851024, 0.770680513376406, 0.7273231109206828, 0.410671569380914, 0.19928392436820586, 0.44743622108127745, 0.4991477681643879, 0.5443787589855091, 0.826082779912576, 0.5642536294664222, 0.6762559922350657, 0.39283078357423706, 0.3074847569358159, 0.40732461839200396, 0.5614584986504241, 0.5614584986504241, 0.575628870274347, 0.1938881144566701, 0.6480440770440566, 0.23946299348505806, 0.6110142157087575, 0.32489046344192996, 0.127020290619695, 0.28948900574123104, 0.27970970921902805, 0.5179212029104148, 0.579807192000203, 0.5695619245525361, 0.7471497674522103, 0.6761943115269239, 0.6052803835931642, 0.9048996801452402, 0.632953623191418, 0.7849920634816455, 0.12946409768986655, 0.3899257470968539, 0.37735505673750047, 0.27206300237801306, 0.6356505945299911, 0.9000798247851504, 0.5852448485124296, 0.3537739535016634, 0.8589709040748648, 0.5105041430354158, 0.4760479563081992, 0.3915586115462193, 0.4344526143297297, 0.04825794875232026, 0.25106204840173363, 0.5352062615150248, 0.2084678736174792, 0.5588772074146924, 0.42656597432725707, 0.3395528272139201, 0.5154796814541086, 0.30312695461308037, 0.4684625037801391, 0.13140485141127656, 0.37575572516499556, 0.7087902803012941, 0.22740617784346517, 0.7932370230268412, 0.6977827466507267, 0.8687065743771458, 0.3532210556477622, 0.3005246278528939, 0.8817461779308045, 0.5897758288136841, 0.5117334773877459, 0.2267712913026929, 0.7462523759498982, 0.5055831714989107, 0.6276122794572256, 0.34766968675436505, 0.563322001169588, 0.4035281086421867, 0.44827723495654004, 0.7588644006503809, 0.17560197311170134, 0.2736156405730563, 0.5646478519097824, 0.12788772013874206, 0.8127608550985441, 0.35130933230290007, 0.8842329534318195, 0.5671758377024384, 0.508518787579709, 0.4735654621913231, 0.6614347321502836, 0.7032589073748752, 0.418601168771625, 0.40262233345395115, 0.38045938978299354, 0.6221728234115828, 0.6769388667590319, 0.825791915264051, 0.8036522945246104, 0.5350776523934957, 0.5038683203672731, 0.4187790963850706, 0.3942708224564714, 0.36585282612655, 0.42973128126448334, 0.1395024853671747, 0.36909778672938764, 0.5126700875045708, 0.31128511290513083, 0.5841805470690385, 0.42932394036482613, 0.5168725346003686, 0.9331527243268325, 0.5090935678835011, 0.848083892739094, 0.7288594688776423, 0.23463814542978878, 0.9073343486287574, 0.5445649372592127, 0.8030108083542629, 0.30698149193503155, 0.47724620771884374, 0.49565431290071005, 0.29179072192325783, 0.53941953634433, 0.32642767658125227, 0.5714063949384225, 0.6769388667590319, 0.48314991346809855, 0.3838692085325581, 0.7654355578102645, 0.6807995217458978, 0.7803105409218809, 0.4971816769068883, 0.5662837862370104, 0.32557907866588853, 0.4059739580227363, 0.8621668957327787, 0.4863555612469991, 0.44913520001249685, 0.5044088987161788, 0.018560580499064172, 0.17397747102053363, 0.8203404366189, 0.531551035274026, 0.3951880410340851, 0.6710839680909022, 0.7545393605546251, 0.25029771644034415, 0.31651464458218903, 0.7900402576908969, 0.7649542174153934, 0.6282404390050247, 0.5124469561170844, 0.7501741577575001, 0.3717170374651112, 0.5479204837841629, 0.1799627586960565, 0.8716748635647116, 0.4700369344869263, 0.7044722268129955, 0.7597806244765397, 0.4570971226262448, 0.3688130253756654, 0.5854022956087224, 0.6067015953642416, 0.6092966434658947, 0.5713009051869427, 0.15316343939585397, 0.31191498773739224], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [7.0, 7.3, 7.5, 6.3, 6.3, 7.0, 6.5, 5.6, 6.9, 5.8, 8.1, 7.7, 6.2, 7.3, 6.8, 6.6, 7.3, 15.6, 5.2, 6.2, 8.0, 7.7, 6.3, 7.3, 9.0, 6.0, 5.3, 7.8, 7.1, 6.2, 6.3, 7.3, 7.2, 5.8, 7.2, 7.7, 7.7, 5.9, 6.7, 6.5, 6.0, 7.2, 7.7, 7.4, 8.1, 6.8, 8.2, 6.2, 9.4, 6.8, 7.0, 6.6, 6.0, 6.3, 14.2, 6.8, 5.9, 6.0, 7.6, 5.9, 11.1, 5.9, 7.1, 6.6, 12.6, 8.3, 6.7, 7.4, 7.0, 6.7, 7.0, 6.2, 6.4, 7.9, 7.4, 7.0, 7.9, 6.5, 8.2, 6.9, 5.7, 6.3, 8.3, 9.1, 8.0, 7.8, 7.3, 8.6, 6.9, 10.8, 6.4, 7.7, 8.8, 6.6, 6.1, 5.0, 6.3, 5.9, 6.6, 7.3, 8.3, 7.3, 9.9, 7.5, 7.2, 6.4, 5.2, 7.9, 6.7, 6.7, 8.0, 7.9, 6.9, 7.4, 5.6, 6.7, 5.9, 6.0, 7.1, 7.2, 6.8, 6.3, 9.2, 7.8, 8.1, 7.5, 6.8, 6.7, 6.9, 7.3, 7.0, 5.0, 7.3, 8.2, 7.7, 5.0, 10.1, 6.6, 7.1, 9.5, 8.0, 5.9, 6.8, 6.9, 10.8, 7.4, 7.2, 5.8, 6.7, 7.3, 7.0, 12.0, 6.7, 6.2, 6.6, 6.4, 5.9, 7.8, 7.4, 6.1, 5.9, 7.5, 6.4, 7.9, 6.1, 7.2, 7.1, 6.3, 7.8, 5.2, 10.2, 7.8, 6.2, 8.5, 7.6, 6.4, 7.8, 6.0, 6.2, 7.4, 6.0, 6.8, 7.9, 6.1, 6.2, 5.6, 5.5, 11.1, 5.9, 6.4, 6.6, 5.6, 5.0, 7.0, 7.1, 7.8, 6.1, 8.4, 6.8, 8.5, 7.7, 6.4, 7.1, 8.4, 6.7, 8.2, 8.2, 8.1, 7.3, 8.0, 8.2, 6.5, 6.5, 6.0, 6.9, 6.6, 6.6, 7.0, 7.5, 6.6, 6.6, 6.6, 7.0, 8.3, 7.1, 7.0, 7.1, 7.1, 7.7, 6.1, 6.0, 6.6, 6.3, 6.9, 6.7, 4.8, 6.4, 6.6, 6.3, 7.1, 8.9, 7.2, 7.2, 6.4, 7.0, 7.0, 7.7, 6.5, 6.3, 5.8, 8.0, 7.4, 10.8, 10.1, 10.7, 6.4, 6.5, 6.6, 7.3, 9.8, 7.4, 6.3, 6.1, 7.2, 7.0, 6.2, 7.3, 9.1, 6.5, 5.2, 6.0, 6.4, 6.7, 6.0, 5.5, 6.7, 6.7, 9.1, 5.6, 7.1, 7.8, 7.6, 5.1, 5.8, 8.0, 10.8, 6.2, 7.8, 7.7, 7.3, 5.6, 7.9, 8.3, 6.2, 6.0, 6.1, 7.1, 6.7, 5.7, 6.8, 6.6, 5.9, 5.7, 6.0, 8.4, 7.2, 8.5, 7.1, 7.2, 6.6, 7.2, 7.3, 5.9, 6.1, 7.1, 13.4, 8.3, 6.0, 6.4, 5.9, 5.8, 6.1, 6.8, 6.3, 7.3, 7.0, 7.4, 8.8, 7.4, 6.4, 5.1, 8.1, 11.4, 5.6, 6.8, 6.9, 7.0, 7.2, 6.2, 6.8, 6.5, 8.8, 5.1, 6.5, 7.2, 8.1, 7.1, 8.2, 5.8, 7.3, 6.8, 7.7, 6.7, 8.3, 6.8, 6.3, 8.4, 6.2, 11.5, 6.9, 7.4, 6.2, 8.9, 7.2, 7.2, 6.6, 6.2, 6.2, 9.2, 7.2, 5.8, 5.6, 7.7, 9.2, 6.6, 7.0, 5.9, 8.6, 7.4, 9.0, 10.0, 7.5, 8.3, 6.5, 6.9, 7.5, 10.2, 6.1, 7.7, 6.8, 6.1, 6.0, 6.7, 6.3, 7.0, 6.0, 7.7, 6.8, 5.0, 8.0, 7.4, 6.7, 6.1, 7.0, 7.4, 5.7, 6.8, 7.4, 6.1, 6.5, 6.6, 6.4, 5.7, 6.6, 7.1, 7.0, 6.3, 7.1, 7.7, 7.5, 7.5, 6.9, 5.9, 7.0, 6.1, 5.8, 8.0, 7.4, 6.7, 8.0, 7.7, 6.6, 6.4, 5.5, 6.9, 4.4, 8.3, 6.3, 6.9, 11.1, 6.4, 6.8, 7.4, 7.5, 6.9, 6.3, 7.2, 6.7, 10.5, 5.9, 6.8, 6.1, 5.8, 7.3, 7.4, 12.0, 6.4, 7.1, 6.4, 6.2, 11.1, 7.6, 11.5, 8.0, 6.4, 7.3, 6.2, 6.7, 7.3, 8.9, 8.3, 6.2, 6.5, 8.7, 5.7, 6.5, 7.0, 6.7, 7.5, 7.3, 6.2, 6.5, 6.6, 6.3, 6.5, 7.7, 7.5, 6.6, 5.7, 6.0, 7.3, 7.9, 7.0, 6.5, 7.3, 8.6, 6.9, 6.5, 7.3, 7.4, 6.9, 7.0, 5.3, 7.2, 7.9, 6.7, 5.1, 6.7, 6.5, 6.4, 6.9, 7.8, 7.1, 7.5, 6.5, 6.3, 6.7, 6.6, 6.7, 6.8, 8.4, 6.0, 8.1, 6.5, 7.2, 7.1, 8.6, 8.0, 6.2, 6.5, 8.9, 6.9, 5.8, 6.0, 6.8, 7.9, 6.8, 7.1, 6.8, 7.0, 6.8, 6.0, 7.9, 7.9, 6.5, 6.0, 10.1, 7.0, 6.8, 6.3, 7.2, 7.7, 6.6, 8.2, 6.4, 6.8, 7.2, 7.0, 7.8, 6.6, 6.7, 7.6, 5.6, 6.4, 5.1, 7.7, 7.1, 8.6, 6.1, 8.0, 6.2, 7.6, 7.2, 7.1, 6.5, 6.3, 7.2, 6.4, 7.9, 7.8, 7.5, 6.4, 5.9, 6.0, 7.0, 6.9, 5.4, 6.8, 6.0, 6.8, 8.6, 6.7, 6.3, 6.0, 5.0, 7.2, 5.6, 8.0, 5.6, 7.8, 7.4, 7.1, 6.4, 7.0, 9.4, 6.0, 5.9, 7.1, 6.3, 7.3, 6.4, 10.5, 8.1, 8.1, 6.4, 8.8, 6.1, 7.0, 7.2, 9.2, 6.6, 6.9, 9.7, 8.8, 7.8, 7.8, 7.3, 6.7, 6.6, 6.8, 7.15, 8.0, 7.4, 6.5, 5.3, 7.1, 10.8, 6.6, 7.0, 7.2, 7.5, 10.7, 5.9, 6.8, 6.9], \"xaxis\": \"x\", \"y\": [0.18439386755371057, 0.5750868907731637, 0.1132172353536568, 0.19850047615697952, 0.6950004168934912, 0.41826441672946313, 0.040828937665112974, 0.2145583871630251, 0.09143093017991866, 0.10013996234885614, 0.3658834999306372, 0.587897812361327, 0.23563705889496211, 0.5289998061994394, 0.5981734696485812, 0.5956194363709464, 0.11295199838815062, 0.6349332021584286, 0.09356782907078887, 0.0672754654033908, 0.3541579814831264, 0.11781588709523827, 0.3295981493457443, 0.23443288181779365, 0.13830133810679424, 0.5122546205578999, 0.03626449638205209, 0.32057959349203036, 0.3955164844050859, 0.21320459763992916, 0.08620177311633537, 0.4132497936565127, 0.19514157099220286, 0.028148892894647393, 0.03728071159582558, 0.20213762816504022, 0.39088790332760825, 0.10566618212719892, 0.11466232649727714, 0.09544364959788487, 0.07351553674018241, 0.3657542344632553, 0.05859665738698361, 0.43634835962676355, 0.4827032077898804, 0.516310366273556, 0.6480037931050455, 0.21122004543372697, 0.030344760075157406, 0.22750344576024595, 0.18673438423788624, 0.5460909738859347, 0.0666291073587214, 0.320234954276134, 0.515425573770442, 0.5751179393061847, 0.3262180383913996, 0.12192585741802231, 0.6165939755266235, 0.09365914315081003, 0.44259853952477324, 0.31958523161407537, 0.09228899111547839, 0.22815273642701062, 0.5282447951108347, 0.7777719169155834, 0.13834506443323813, 0.29425092810710396, 0.5300870647699181, 0.031947521718024174, 0.1108646816717751, 0.053339747820140615, 0.14466174791529418, 0.25697560969337485, 0.3383868137798065, 0.30803904997837983, 0.03434255320493995, 0.08689109251212201, 0.46044782253877736, 0.0973761441498977, 0.3449058470623745, 0.024212367984770777, 0.11665042079727428, 0.3333970234137619, 0.1495417879159372, 0.0679784404121434, 0.2360052425084116, 0.39147703437781534, 0.04428683932015287, 0.5381556738404795, 0.4357341587922019, 0.11843845992675284, 0.28107964630818494, 0.06989794698232743, 0.2658605825653322, 0.22408104406272966, 0.15519213452661884, 0.09873339188795927, 0.10739713799337769, 0.4712507279726723, 0.31257930793611366, 0.6259141532505736, 0.1651629894813923, 0.13024327386797574, 0.08242409751896962, 0.55355901104019, 0.11256152515999429, 0.22124325125588817, 0.05838775174278421, 0.6734770756819889, 0.06919042490492266, 0.5773286546676725, 0.5693181878572973, 0.12726917141891614, 0.27983888222674136, 0.15690954109554833, 0.18593824584442387, 0.05432525584274117, 0.33273366741371935, 0.12435295831370408, 0.48112847828662497, 0.2959384652215836, 0.5042039768350125, 0.3749869638443927, 0.7258627386781167, 0.4806866421912115, 0.6234335830956541, 0.4191951896523489, 0.20821728825178332, 0.6343085651912675, 0.27674577061671146, 0.02140654255666985, 0.42849246998341506, 0.1817444030106703, 0.4551538855951942, 0.05087080041524106, 0.516641204200833, 0.6810720245435042, 0.08151744899857294, 0.4475169494323581, 0.03995706953508171, 0.2181819033834006, 0.20372897255157485, 0.24305701296248816, 0.5381556738404795, 0.2358485729609252, 0.051323642447754336, 0.1913631294907303, 0.32154631204965056, 0.31229802093755377, 0.3917329141436472, 0.39462053822053156, 0.3680669306910641, 0.5017894292511481, 0.32120711190509066, 0.0768019282386515, 0.1168769044932052, 0.31545143431826594, 0.12007957373947853, 0.08354361700756141, 0.2180731800932174, 0.7653011157176768, 0.05076221583963347, 0.11739077279846111, 0.3639458403519926, 0.4815918747301601, 0.35998732468747585, 0.457353694020342, 0.5520498791697908, 0.22168281241722143, 0.2132287846887433, 0.4763394582576197, 0.3040153802820409, 0.20749766415549342, 0.3316810644107503, 0.8126297477835096, 0.5749367295182395, 0.27274039590582944, 0.2685808245693546, 0.5172108675362206, 0.33506587713796443, 0.09616672688355288, 0.041108213935392324, 0.10548050716105373, 0.5016695616404938, 0.20022874051447226, 0.14220640128276774, 0.23772630779738468, 0.19606080251004787, 0.2603188495268066, 0.18846597668723208, 0.19827111133563302, 0.261548791893628, 0.4140325207077993, 0.8134796325151183, 0.12265695643958285, 0.6311167068993262, 0.13481820177301163, 0.0932384579037443, 0.14050160114126486, 0.2562249115981724, 0.08547750670655718, 0.08643201081848362, 0.19981675431015722, 0.31390222338706264, 0.06221739913672386, 0.06996303880871468, 0.30029370289300306, 0.4306817897420764, 0.6595343859760441, 0.2839408857911616, 0.20468539219890003, 0.1130196126722065, 0.2360017176902124, 0.13187147729288817, 0.42313120297864704, 0.06964897436687001, 0.1624399718171824, 0.17200815643270417, 0.07333105637055992, 0.2440137653363641, 0.4900110333069776, 0.3085554157386313, 0.03480496731142946, 0.12148031785507996, 0.15002971926037112, 0.5314247042003052, 0.2758453007685677, 0.2151852748992088, 0.2658605825653322, 0.29911225563077193, 0.6594110243744711, 0.49869782335001445, 0.16788254706683048, 0.11816213334465087, 0.08230909248122409, 0.13653212507346946, 0.25639170942272826, 0.06562233405876228, 0.23311900627036541, 0.3756616197417655, 0.46674395287949066, 0.3092684534350997, 0.8337319641197457, 0.8331457111467163, 0.2591056156836542, 0.4778687671024334, 0.2542440524586721, 0.5361036306539362, 0.07073721340803463, 0.4731688813159418, 0.5755848065786346, 0.356689463387698, 0.14225616860197343, 0.21837916002376445, 0.14466174791529418, 0.29899643271856946, 0.4757427727983842, 0.08126799884203029, 0.1296501822378736, 0.3286954654423938, 0.08620177311633537, 0.13855855420831553, 0.05543377339452393, 0.11917834098009661, 0.2613621884509647, 0.11269900223777074, 0.08429051026621415, 0.3393961441870107, 0.07031960314855146, 0.11356777592095357, 0.4853279864284006, 0.1279289285514792, 0.0584572339054259, 0.08612988585012649, 0.3472440907423937, 0.1248029959061332, 0.07502335399434323, 0.19827111133563302, 0.3424151534036639, 0.3065175956815872, 0.13808860398564737, 0.058092197534895806, 0.04082786106581715, 0.1602592849246841, 0.09156161599234125, 0.5036030690663805, 0.2640411824475748, 0.6468038092930676, 0.07201805208597656, 0.22470230804277058, 0.1334773721572423, 0.04847889440667685, 0.2685808245693546, 0.10911308148570098, 0.6764508967260475, 0.6280060594576413, 0.36761958218269275, 0.16019930342079847, 0.17605308658107655, 0.14078981831089854, 0.2384997092801764, 0.13117402490907393, 0.12818959986091483, 0.4161925244315118, 0.12435295831370408, 0.09814942480303201, 0.05480698563416486, 0.3746187330143109, 0.41092354232892336, 0.507894749900129, 0.5137929421583434, 0.08293523366016065, 0.2964416548030494, 0.15236141109070434, 0.4396941021426354, 0.41893931094950754, 0.09113953260801844, 0.10967473999240707, 0.055732078845942, 0.05640314085190745, 0.06176263301115803, 0.06427139521062619, 0.20386133178572885, 0.21597661143113533, 0.7486409492386699, 0.2610715902497083, 0.09465277491899493, 0.5556171757583562, 0.137718889647652, 0.1978940751503777, 0.08472590699531857, 0.356262641598029, 0.14596950445002987, 0.13865818299932142, 0.3088915816821678, 0.11516321289421916, 0.16121169033174265, 0.40573483691789825, 0.34308606282264, 0.36300204724896845, 0.17193414756867276, 0.035926383178341514, 0.34536882843285344, 0.4400180463892147, 0.5165194668234709, 0.23319834124303085, 0.9637923675569924, 0.2635599134550337, 0.6259141532505736, 0.12324962258280003, 0.1256037712827487, 0.1248029959061332, 0.11665042079727428, 0.29081136443782263, 0.12993062945549005, 0.20959981847797426, 0.12385816607190492, 0.16931651488884025, 0.2468284110987674, 0.6181879252747016, 0.3509541008179864, 0.08619429866610873, 0.09537770951135394, 0.8204393830764495, 0.2493836920976743, 0.10367142046182065, 0.11516383353466464, 0.07169627826225977, 0.5400384130096556, 0.2709141565803237, 0.16809050322974173, 0.3421981324687273, 0.812724325423183, 0.1326589750154965, 0.054670132935181304, 0.055346153509382656, 0.8039442695404772, 0.3276168958360183, 0.6561718697940482, 0.6214102617950452, 0.3046829516703813, 0.7853649284745584, 0.7303620793003476, 0.6719087507962026, 0.16000678121984613, 0.579612101366232, 0.6347749924714103, 0.41894393066564606, 0.06936532322770372, 0.28322834609079706, 0.343263893078516, 0.4450860003239352, 0.3090838478611311, 0.408095736797927, 0.11529682880263803, 0.13359771811640497, 0.2417229185475579, 0.10092265889692065, 0.8181934133883563, 0.3777834313813965, 0.8273808576462511, 0.18439353202429143, 0.5148786056082297, 0.11287077888712382, 0.16015059460472458, 0.29672938182784603, 0.36944561074938853, 0.2505850522824452, 0.8467591712977676, 0.3840267097226593, 0.261779448872241, 0.1645479955558209, 0.14631295673285594, 0.4248523287309329, 0.09222807982804315, 0.2121484308544801, 0.33273366741371935, 0.5470626312455473, 0.8294144697045585, 0.25206662215500397, 0.15998368749433245, 0.548322128117227, 0.3917329141436472, 0.15981565308588508, 0.23631147082452741, 0.21082920466209698, 0.1871387197916503, 0.24774693401855818, 0.1913242313933492, 0.16437448769677154, 0.07582203648947516, 0.032541140295091364, 0.06311143057978008, 0.5009235508757715, 0.12343879567504301, 0.445735807756371, 0.40322837553658053, 0.09397553936597514, 0.1598391281143201, 0.26702494168661406, 0.19782301216908982, 0.06831823449824892, 0.5451167746582685, 0.20142160156100697, 0.25747632252511843, 0.4257317671215596, 0.5062318064185062, 0.10278357133077332, 0.10857266292312517, 0.06223864817381186, 0.11377411494697365, 0.14082424186384768, 0.2589321903149734, 0.31776639873426016, 0.07983414941561229, 0.30174211068680845, 0.42532907678292176, 0.23734670470511587, 0.2862296469110084, 0.24790288035387664, 0.5526146374040077, 0.20425399436950087, 0.5166825128498294, 0.12415322942140417, 0.5310696157212036, 0.3866387435262121, 0.14313186082947948, 0.31648660326859934, 0.026792916001305622, 0.7856428374245099, 0.42383310375799566, 0.5944566396871084, 0.6256605001243821, 0.08813642250468567, 0.03544811528140901, 0.06935406654889886, 0.15751976448865512, 0.22608551288474832, 0.3127311228465576, 0.1409438166611655, 0.3285615524533705, 0.3591330499592894, 0.47964497307801546, 0.7143146030302826, 0.14223944449319303, 0.06929054967731618, 0.32120711190509066, 0.16913647442041335, 0.707286257884667, 0.3230684446475647, 0.7616845263358343, 0.4104900542879092, 0.10053249234255524, 0.1106599594415556, 0.1543174595222413, 0.46003879185641183, 0.3811350878514418, 0.07185070571861518, 0.23882593985771994, 0.5344976262521839, 0.11031385635331636, 0.09610989844306939, 0.4955559099445003, 0.07845190603324759, 0.30697262074812925, 0.12767551958037127, 0.4375661224395835, 0.07737023387634634, 0.15307682457740834, 0.05694427046787409, 0.09028836937410878, 0.4011292297732457, 0.6186146927451245, 0.11561676905211238, 0.0993047499370594, 0.08102401279833105, 0.8100206966555492, 0.10768932514586738, 0.15386113005635593, 0.4026560765644126, 0.045535707525545144, 0.08229583319403, 0.08227601457953415, 0.8241544781987433, 0.0759900855540333, 0.5147505197509459, 0.11103147778198663, 0.42144961755966015, 0.24880465403270857, 0.3112403223054312, 0.3282460941643247, 0.28312386083977936, 0.2865521931047814, 0.16537364909659502, 0.4284132019637321, 0.34116073112729894, 0.051142721309942685, 0.10794707492381372, 0.1108646816717751, 0.29201805921023904, 0.07365131996157204, 0.36851051207096197, 0.2556143611338999, 0.07392456180697715, 0.045535707525545144, 0.15025986810093994, 0.4395989822566938, 0.19636656988846957, 0.21018464628148859, 0.15085686628779282, 0.3429118439192298, 0.16104008564300487, 0.2055862423584408, 0.18673310211333727, 0.5528531989583015, 0.20219789553586287, 0.5807830339134155, 0.6112381610839525, 0.07515362639458067, 0.5722084734915175, 0.3654892991508686, 0.1991057466826236, 0.4912569401667811, 0.05850610073101081, 0.3077884117234785, 0.17038242498240874, 0.14066607718466684, 0.10248584652416493, 0.4022873718442217, 0.07205214632436985, 0.35142291824287475, 0.10941760034103376, 0.06679271580157364, 0.05675388891699207, 0.058987921856350156, 0.3660303223369904, 0.28790374422385034, 0.4158290962648631, 0.40710291595796666, 0.09934102670994882, 0.06362846635195196, 0.30921476208988685, 0.23242198019285765, 0.055541210656895434, 0.5297663836663529, 0.10744632778983743, 0.18410212910939194, 0.17721960751489196, 0.1962664672709783, 0.1617648996714035, 0.10584426414108294, 0.5203501665477333, 0.07365131996157204, 0.31578819840495265, 0.35364190165315845, 0.1707951928721818, 0.41655733121321636, 0.15801546378512366, 0.7568436608419439, 0.22368578646300386, 0.0609449253562836, 0.2225096762928218, 0.18587673368692093, 0.05559101133196209, 0.569598540521716, 0.08073228430722412, 0.15724041301590164, 0.12879141548479, 0.4306817897420764, 0.17998791969802397, 0.41280880088413996, 0.5723062335690389, 0.6457404130724687, 0.10420061808672998, 0.12564769853034463, 0.21795029564941848, 0.4720930498870375, 0.11304202998506685, 0.545112257205237, 0.14852188644910969, 0.17217029085021085, 0.336250902618187, 0.48671482860553816, 0.5093433434984792, 0.35847801144896685, 0.3008706318705062, 0.18494609259573758, 0.4199330463236065, 0.04162287990776414, 0.2633909944023186, 0.4252182303976608, 0.4684623303117058, 0.1925553058603695, 0.09610989844306939, 0.09129843496680234, 0.3302708189676917, 0.4199330463236065, 0.11927294568859859, 0.4864154015695107, 0.06472081497616611, 0.6387929002666255, 0.37932906694235924, 0.093713747684541, 0.20627971812824875], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (curr)\", \"type\": \"scatter\", \"x\": [7.3, 6.4, 7.5, 5.6, 6.9, 6.8, 6.5, 9.1, 9.0, 12.7, 7.6, 7.2, 6.4, 7.3, 6.7, 6.8, 6.8, 11.9, 6.6, 6.4, 6.8, 8.0, 6.3, 6.5, 6.6, 7.4, 7.2, 7.5, 5.3, 7.0, 7.5, 5.3, 8.1, 8.2, 6.9, 5.9, 9.8, 7.5, 7.0, 6.0, 8.6, 7.5, 6.9, 7.0, 6.4, 6.5, 8.3, 8.3, 6.0, 7.4, 6.2, 7.5, 9.0, 8.0, 7.7, 7.9, 7.4, 15.6, 7.6, 6.9, 15.5, 8.1, 6.3, 10.0, 7.0, 6.8, 8.5, 7.4, 6.8, 7.3, 6.6, 5.6, 4.9, 8.8, 6.6, 7.1, 7.2, 7.0, 6.2, 8.0, 7.6, 9.2, 6.0, 7.9, 8.3, 8.2, 7.9, 7.8, 6.7, 7.5, 6.3, 7.6, 9.3, 7.7, 6.9, 7.6, 8.0, 8.9, 6.8, 6.3, 10.0, 9.4, 6.8, 6.5, 8.9, 7.0, 9.0, 6.0, 6.0, 7.6, 7.9, 7.1, 6.9, 6.9, 9.6, 8.9, 6.6, 6.6, 6.4, 8.4, 5.8, 6.6, 7.0, 7.8, 7.2, 7.5, 5.7, 11.8, 7.2, 6.8, 6.9, 6.6, 7.7, 8.8, 7.1, 7.2, 6.9, 9.0, 7.2, 6.5, 7.9, 8.3, 8.6, 8.4, 9.5, 7.4, 7.9, 6.4, 7.9, 6.9, 7.2, 7.9, 7.1, 7.2, 7.0, 7.2, 6.1, 6.8, 6.9, 8.0, 8.4, 6.6, 7.1, 7.6, 7.4, 7.7, 5.9, 6.7, 6.6, 7.4, 6.6, 7.2, 7.1, 6.6, 7.9, 5.8, 7.0, 6.8, 6.6, 6.1, 8.0, 4.2, 11.9, 6.4, 6.8, 7.5, 6.3, 6.8, 7.8, 6.2, 7.2, 8.2, 7.7, 7.0, 7.2, 7.3, 7.8, 5.6, 7.1, 6.8, 6.8, 6.2, 6.4, 6.9, 7.1, 7.2, 6.8, 10.0, 6.4, 7.3, 9.3, 5.8, 6.7, 8.5, 6.0, 6.7, 6.4, 8.8, 7.1, 6.5, 6.9, 6.7, 8.3, 6.4, 6.8, 6.1, 7.6, 7.0, 8.2, 4.9, 6.3, 7.6, 6.5, 9.2, 8.4, 6.7, 5.5, 6.1, 7.7, 7.4, 6.2, 7.2, 7.9, 7.1, 7.0, 6.0, 7.5, 5.7, 8.2, 6.4, 7.5, 6.8, 9.4, 7.5, 6.5, 6.5, 7.1, 6.8, 7.2, 10.8, 6.5, 7.2, 6.4, 6.4, 8.2, 6.4, 7.1, 6.2, 6.2, 6.4, 7.1, 8.3, 7.9, 6.7, 9.2, 6.0, 7.4, 7.0, 6.7, 6.8, 8.3, 6.1, 6.9, 5.8, 8.9, 6.0, 8.6, 6.0, 7.8, 9.8, 6.4, 5.2, 7.2, 7.2, 6.4, 9.3, 6.3, 6.4, 6.2, 8.9, 6.6, 13.0, 6.2, 6.8, 7.0, 6.4, 11.1, 7.4, 8.1, 6.4, 7.5, 6.4, 8.2, 7.1, 7.6, 7.2, 7.6, 6.7, 6.2, 5.4, 11.0, 6.3, 5.7, 6.6, 8.9, 6.8, 6.3, 12.2, 6.6, 4.9, 7.6, 6.4, 7.2, 6.3, 7.6, 7.2, 5.8, 6.8, 6.5, 7.3, 6.9, 9.0, 6.8, 8.0, 10.4, 8.1, 8.3, 7.3, 6.5, 7.6, 7.0, 7.1], \"xaxis\": \"x2\", \"y\": [0.18579927887031134, 0.9274202256360236, 0.2569067617886446, 0.17851375722123963, 0.43011516789686843, 0.3951880410340851, 0.35333307802371594, 0.854899199395705, 0.7749695319329993, 0.7150752736216004, 0.5793836726576811, 0.17187478758168062, 0.503776006633781, 0.6517104478925241, 0.5321166645488455, 0.4291031613352281, 0.6295132227815239, 0.446367751604861, 0.12978626497489776, 0.578130474122496, 0.1303225049324246, 0.4589423036505589, 0.6028673022099313, 0.6724998803801079, 0.055171077290688375, 0.28900585249094113, 0.5807441942986169, 0.6324527530146118, 0.32780881811994433, 0.4437792729685527, 0.47375733914823626, 0.6755390392614542, 0.8494338455743565, 0.8432302027568838, 0.3962269303969661, 0.36574887203466033, 0.9780529644634413, 0.6757083557066426, 0.43212531492562845, 0.6428319532862445, 0.2244465690609686, 0.6759712108962084, 0.300575337785698, 0.4848467547623382, 0.24353241802821812, 0.6165640897352094, 0.801889943514816, 0.6831580296641933, 0.4684052737322374, 0.07309555507266852, 0.17397747102053363, 0.548208100621717, 0.16948307959681597, 0.5287139706981401, 0.8097217619362252, 0.48186532860504816, 0.7044722268129955, 0.5458559966555334, 0.6067015953642416, 0.5767206748937392, 0.5416109283549078, 0.7766135747357961, 0.6371580804073698, 0.3290646799011723, 0.53941953634433, 0.7444876216695655, 0.27658524567301757, 0.8518717737266248, 0.685064206005921, 0.7994946846943811, 0.6254668451144636, 0.29898447003196504, 0.36566585814722175, 0.8260679099411251, 0.265003746926769, 0.18277705216857454, 0.6401445853260315, 0.2878944788643705, 0.7379395090268356, 0.6578861964269485, 0.3048731186933995, 0.6479177870210828, 0.5479007895539181, 0.8109237991420157, 0.4555798348891207, 0.35159410271621183, 0.6741813074403022, 0.40366163192193316, 0.3797333752177462, 0.42326140605337403, 0.49450075158901585, 0.7027754368270075, 0.31556666432085356, 0.5737052492708005, 0.5594846166878963, 0.9879213229528466, 0.23907110553933086, 0.7604887601700165, 0.906894853259191, 0.49150798334893764, 0.6693239074263375, 0.635181004157038, 0.4291031613352281, 0.6805197940362542, 0.8579270215873258, 0.42231028799440284, 0.7973836574204367, 0.6209099995125147, 0.617932351579841, 0.5867531689564582, 0.8217385626893267, 0.5766058512754557, 0.6085190813519714, 0.6488649586424557, 0.19466062481522506, 0.4062994677131635, 0.31500574198466447, 0.6106996692323751, 0.48314991346809855, 0.4300926711133176, 0.4623912750166579, 0.18141675383529432, 0.7404949196358439, 0.7960551628311661, 0.6696955469146251, 0.7471897031921468, 0.15222801432328747, 0.4782875749995391, 0.6696955469146251, 0.4617114467660769, 0.0374236133971757, 0.34638250956587036, 0.5737052492708005, 0.35412183815676124, 0.5342599897609015, 0.6273126624389191, 0.1819914526651868, 0.6450640502472667, 0.7576359910572065, 0.6363669366758954, 0.35783776888428775, 0.4555798348891207, 0.2603691587203709, 0.09638465351539516, 0.7889843001267657, 0.3995975535535492, 0.2404138117262561, 0.5134503976671381, 0.7620160241108803, 0.4852174766770502, 0.7934067722809752, 0.5657371707019572, 0.40591517497640706, 0.5142806824729376, 0.4667389755277017, 0.4597803030361328, 0.14211531046105408, 0.4709774325404933, 0.39253304933110444, 0.8152160844894966, 0.6418608562675732, 0.5695619245525361, 0.15898796250578873, 0.4189913516486339, 0.8097376625536354, 0.2776505479619531, 0.14100712613869515, 0.1625374057836978, 0.21879614767173305, 0.26016804821119, 0.5884346274074399, 0.25171266030158634, 0.5556828679884147, 0.2886326125606653, 0.5013044750460076, 0.23728971353361283, 0.6280660923097139, 0.6281218947904323, 0.6226708394296439, 0.1280348372312241, 0.37812375401711507, 0.6218606462016874, 0.446367751604861, 0.5237591509200082, 0.22560064672115399, 0.4159575064805634, 0.43989745285902637, 0.38133093816728936, 0.379388299643832, 0.4244201113870294, 0.8495234946343055, 0.44699506619782237, 0.3402560380560977, 0.16997778820688525, 0.6509841470756508, 0.5589353890471914, 0.49320900326902484, 0.41485179365651337, 0.2850172536812061, 0.5150740024049856, 0.7905789411902706, 0.6660097546858721, 0.5916856454756931, 0.25029771644034415, 0.21820707607863943, 0.23625780462752244, 0.6174344585079109, 0.33885175059010386, 0.8097775874289167, 0.5502791542248897, 0.45232673966787307, 0.5168725346003686, 0.4922951659433321, 0.2710495410551712, 0.5620189509382074, 0.19827785442852286, 0.35653263682836045, 0.4940220265254579, 0.3934632807735441, 0.349631294967786, 0.6543252873397565, 0.6043841099981286, 0.6572212454398962, 0.5323595728841377, 0.4667716613599331, 0.5480891857555714, 0.5933716837007499, 0.5769442381274095, 0.7796710482718338, 0.4721284230669528, 0.5632051337005155, 0.25606657060722404, 0.47304849589761655, 0.4991199345133047, 0.785831825438318, 0.5512091114854263, 0.31651464458218903, 0.192246895102814, 0.5737052492708005, 0.14970485751781393, 0.8257882443178004, 0.7450862811651306, 0.2404138117262561, 0.3428275867057816, 0.2186811050870735, 0.43730933466596944, 0.1325711740116582, 0.33994853494016564, 0.5172250338280965, 0.4543852880840521, 0.6017244994332274, 0.7267617626256621, 0.304103470637073, 0.49511795227452726, 0.4577650902534979, 0.4389063253281036, 0.3428275867057816, 0.6911248892501751, 0.5457123873353599, 0.3395528272139201, 0.5662837862370104, 0.38281068028313525, 0.1899488449656659, 0.1899488449656659, 0.39416742153886597, 0.4473524415330049, 0.5724944828663213, 0.12652799787397961, 0.14917046216496987, 0.4192276293132746, 0.1727250451072272, 0.7329347521090118, 0.2979855805324535, 0.5384433083808008, 0.2944152049751758, 0.5661013076544325, 0.39283078357423706, 0.6503174362647687, 0.7632350838020857, 0.29422440231251745, 0.8446099855685041, 0.3812461384129847, 0.1264117171095669, 0.6995051325026098, 0.7680829457938805, 0.1086082602083136, 0.50228427853815, 0.8303888649041977, 0.15145052047802054, 0.5239967242043768, 0.49461569007297057, 0.7323984730128237, 0.6372335578763709, 0.8485373319296128, 0.21018203617182263, 0.3854703692354019, 0.6209619763202376, 0.6996467359659702, 0.3913887983225227, 0.600932061108284, 0.18141675383529432, 0.32841971343371723, 0.17397747102053363, 0.3943097935149382, 0.5998672378660981, 0.6052803835931642, 0.35501406908939237, 0.4362847089434372, 0.6005057903956104, 0.45095984485898877, 0.5601124581139871, 0.6908342266509375, 0.29066967723125237, 0.5437491575180791, 0.5955595524057149, 0.4226516353037165, 0.552222307965348, 0.5038457784615318, 0.6752568781943777, 0.7880730680059006, 0.09430965090665133, 0.4986183600001317, 0.24112389044610405, 0.3635071851353404, 0.7047195247497422, 0.5251048099479148, 0.5632051337005155, 0.4520037684813636, 0.5271857161160298, 0.36566585814722175, 0.8775119234978208, 0.49474741138534273, 0.17187478758168062, 0.1069918390347242, 0.6371627391106971, 0.19018032574493748, 0.34352259564225396, 0.806114950115292, 0.47304849589761655, 0.5014153035286022, 0.6721952796384192, 0.7507248720260316, 0.38512814216859315, 0.8930847268109882, 0.863224561659591, 0.15108072818859253, 0.7399796913917198, 0.18579927887031134, 0.47304849589761655, 0.2033384066370545, 0.43667652058029827, 0.23252054766636898], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [6.4, 7.2, 6.8, 6.8, 7.9, 7.4, 7.3, 6.6, 6.5, 5.8, 10.0, 6.9, 6.6, 5.3, 4.4, 7.9, 6.9, 8.5, 9.1, 7.6, 7.6, 7.4, 8.3, 6.7, 7.8, 7.1, 6.4, 6.0, 7.6, 6.9, 7.3, 6.6, 6.9, 5.1, 5.8, 6.6, 6.5, 6.4, 6.8, 7.2, 6.7, 6.0, 7.6, 7.3, 8.3, 7.8, 7.8, 6.8, 7.9, 6.8, 8.0, 8.0, 6.8, 9.2, 6.9, 8.1, 10.7, 5.2, 6.6, 9.1, 6.4, 6.8, 6.6, 8.0, 6.7, 6.0, 7.7, 7.7, 6.0, 7.5, 7.1, 6.7, 7.7, 5.3, 8.0, 6.3, 6.1, 6.6, 7.7, 9.0, 6.4, 7.3, 7.5, 8.3, 7.6, 8.4, 9.3, 6.5, 6.9, 6.3, 6.3, 8.4, 5.6, 6.6, 6.0, 7.3, 11.6, 7.6, 11.8, 5.9, 7.2, 6.4, 6.9, 6.9, 7.1, 6.6, 7.9, 6.7, 6.2, 6.7, 6.7, 7.9, 6.9, 6.1, 6.4, 6.4, 5.0, 6.6, 6.9, 9.8, 5.0, 5.4, 6.5, 6.2, 8.2, 9.7, 7.8, 6.1, 9.3, 6.8, 6.2, 7.4, 6.1, 8.3, 6.2, 8.3, 9.2, 8.3, 6.8, 7.3, 7.2, 6.4, 11.9, 6.6, 6.2, 5.8, 8.4, 8.9, 7.1, 8.3, 7.0, 7.6, 7.5, 7.2, 6.5, 6.8, 9.9, 7.2, 5.9, 7.2, 7.1, 7.5, 6.2, 6.3, 12.6, 8.6, 8.9, 7.9, 8.3, 6.9, 6.3, 8.6, 7.2, 8.5, 5.8, 7.0, 6.1, 6.5, 6.0, 8.3, 7.7, 5.8, 6.9, 11.8, 7.0, 6.3, 9.1, 5.6, 7.0, 6.9, 7.8, 6.6, 6.5, 7.0, 6.2, 7.7, 6.7, 5.1, 8.4, 6.5, 7.2, 7.5, 5.8, 7.7, 6.6, 6.7, 8.5, 10.4, 6.6, 6.8, 5.9, 5.8, 6.7, 6.2, 13.2, 7.0, 5.9, 6.0, 5.6, 6.8, 7.0, 6.2, 7.8, 6.3, 7.3, 7.3, 6.0, 7.4, 8.7, 7.3, 6.9, 8.1, 6.9, 7.0, 10.3, 8.4, 6.6, 6.8, 7.0, 7.4, 6.8, 8.1, 8.4, 6.4, 7.1, 10.4, 7.3, 7.4, 7.5, 9.4, 7.9, 7.6, 8.1, 6.5, 7.0, 6.7, 7.5, 6.6, 6.7, 5.8, 6.8, 6.9, 7.5, 6.4, 7.3, 7.4, 7.6, 6.1, 6.8, 7.6, 6.8, 6.3, 5.4, 11.5, 6.7, 7.4, 6.9, 6.8, 5.6, 5.9, 8.4, 7.9, 6.0, 5.8, 7.0, 10.0, 6.1, 6.2, 5.3, 6.1, 11.5, 10.3, 6.9, 8.2, 6.4, 6.1, 6.1, 7.0, 6.9, 7.0, 8.0, 7.6, 7.5, 6.0, 7.4, 7.2, 5.9, 6.8, 7.8, 7.0, 6.2, 6.5, 6.2, 6.5, 5.7, 5.4, 7.2, 8.1, 8.5, 6.7, 7.0, 6.0, 7.7, 7.3, 10.1, 7.2, 7.4, 10.9, 6.8, 6.6, 7.0, 6.7, 9.1, 8.0, 6.7, 6.9, 7.3, 6.5, 7.6, 7.0, 7.1, 6.1, 7.4, 7.0, 7.7, 6.8, 7.0, 6.3, 9.8, 6.7, 7.8, 7.5, 8.7, 7.2, 7.6, 6.7, 8.6, 6.5, 7.5, 6.6, 6.8, 6.6, 8.2, 7.0, 8.8, 6.4, 5.7, 6.9, 6.2, 6.8, 5.6, 6.3, 7.9, 6.9, 10.9, 6.6, 5.8, 6.4, 6.8, 5.6, 4.9, 7.4, 6.8, 6.8, 6.5, 7.1, 7.2, 5.5, 6.9, 6.3, 6.4, 6.1, 5.2, 6.8, 6.9, 7.5, 7.2, 10.1, 7.2, 6.8, 7.4, 5.6, 6.3, 6.8, 6.0, 6.9, 6.2, 5.9, 7.0, 6.9, 8.3, 5.6, 8.2, 6.0, 6.7, 7.5, 6.2, 10.1, 7.0, 7.2, 5.5, 5.7, 11.1, 6.9, 11.5, 7.1, 6.6, 6.3, 6.6, 7.8, 6.7, 5.7, 6.7, 7.2, 9.1, 7.8, 8.1, 7.4, 6.5, 6.8, 7.4, 5.3, 7.6, 7.0, 6.2, 11.3, 5.0, 6.4, 6.0, 8.9, 6.6, 7.0, 6.5, 7.7, 7.2, 6.0, 6.5, 5.9, 6.4, 7.0, 6.7, 6.2, 6.6, 6.8, 7.5, 7.4, 8.0, 6.2, 7.2, 6.9, 6.2, 8.2, 6.0, 7.4, 8.3, 6.6, 6.4, 6.8, 5.6, 6.0, 6.4, 6.8, 7.0, 8.9, 7.1, 7.4, 6.9, 6.6, 8.4, 7.1, 8.7, 7.3, 8.3, 8.2, 9.0, 10.9, 8.6, 9.6, 7.3, 12.0, 6.0, 6.9, 7.4, 5.8, 5.6, 5.7, 6.7, 6.1, 10.6, 8.2, 7.3, 7.2, 6.4, 7.4, 7.9, 6.7, 6.8, 9.9, 6.4, 7.2, 5.0, 7.5, 5.3, 6.9, 5.6, 7.2, 6.9, 6.1, 6.9, 7.3, 7.0, 6.6, 7.4, 6.3, 8.0, 7.4, 11.6, 8.9, 7.0, 6.9, 6.4, 6.5, 10.4, 6.7, 5.6, 5.5, 10.6, 8.8, 6.9, 7.4, 7.6, 7.2, 6.0, 9.1, 5.8, 7.5, 7.0, 6.5, 6.0, 5.1, 6.7, 6.9, 7.4, 7.9, 7.3, 7.8, 8.5, 6.6, 6.7, 6.1, 7.3, 7.0, 6.0, 7.7, 7.4, 6.3, 6.0, 6.6, 7.1, 6.8, 6.4, 7.0, 5.7, 5.1, 7.4, 5.7, 7.7, 6.7, 6.6, 6.4, 6.8, 7.1, 8.0, 6.0, 8.0, 12.4, 6.6, 7.3, 7.0, 6.1, 6.6, 6.9, 6.4, 7.9, 6.6, 7.5, 9.6, 7.2, 8.0, 5.5, 6.3, 6.8, 6.9, 6.6, 7.4, 7.6, 5.6, 7.0, 6.9, 6.9, 6.9, 6.7, 6.8, 6.4, 6.8, 6.0, 7.5, 9.0, 10.2, 6.6, 7.8, 13.7, 7.1, 7.0, 7.1, 7.7, 6.1, 8.2, 9.5, 7.4, 6.5, 8.3, 5.7, 6.4, 7.8, 6.8, 6.7, 6.7], \"xaxis\": \"x2\", \"y\": [0.6660328535674787, 0.4955559099445003, 0.11251030999551548, 0.5313240922219649, 0.7616845263358343, 0.42881839881496897, 0.22146723198036844, 0.2709448900825402, 0.04188686298684474, 0.3198999677935893, 0.586632325439729, 0.3332859260788763, 0.0891770245136605, 0.07249138429342028, 0.0813041402249215, 0.2808128557304226, 0.18155424903412543, 0.14020593233116785, 0.20529540916933675, 0.1755850319354616, 0.5722846846512241, 0.4684623303117058, 0.2863708053899042, 0.4489302200945696, 0.3606737334686688, 0.09834172337505831, 0.1439119889738254, 0.10526388551166177, 0.08976738859769384, 0.15927641460572795, 0.07353544332944184, 0.4894096639868448, 0.24735122968283396, 0.41440459167745447, 0.10107859516115147, 0.4809249647595707, 0.043928674649753696, 0.27268427565697984, 0.07203278686513981, 0.35989685204578803, 0.08410225657903847, 0.09640449279894714, 0.2859044620344169, 0.766491644508495, 0.27194216744256416, 0.11891721880979944, 0.6033870782914414, 0.8445823904457724, 0.4148378249676725, 0.09538880480821377, 0.5822786697287807, 0.2006236885231063, 0.30215903380660414, 0.3526626332448971, 0.22921561702294402, 0.3499358724503807, 0.451050436906263, 0.01968005574460141, 0.3849224947932618, 0.608666907839271, 0.30333177217190177, 0.05732515971384944, 0.08299070223644744, 0.155374347961305, 0.4378217303747408, 0.10641916767178827, 0.3207785913922725, 0.3280003244598044, 0.4747408725557203, 0.27229542413121455, 0.5314247042003052, 0.13834506443323813, 0.652508483608137, 0.1775869136191267, 0.4659209431511335, 0.3288332341233703, 0.47224603889779837, 0.2773569186284155, 0.18590272545123854, 0.6719763059805124, 0.04569198037744582, 0.22473444069733528, 0.0776074933333939, 0.1411968215808168, 0.3654892991508686, 0.06069899520469324, 0.21029328672965164, 0.13919371635861133, 0.16321149678759816, 0.6144435769482088, 0.1388055550317996, 0.0827658987104557, 0.0793107693477757, 0.04994940743047871, 0.46220165202879504, 0.08265172102971341, 0.5554564865761329, 0.10902951494304747, 0.26480674198345266, 0.31816712550642645, 0.20184400370343658, 0.23734670470511587, 0.19264674509953905, 0.03558879485690103, 0.5314247042003052, 0.3013473679880785, 0.8043030592862955, 0.07665185966197174, 0.17816243980233548, 0.14637302723887635, 0.43623195291339645, 0.5773286546676725, 0.06996409198491005, 0.0635191394270278, 0.11839391684253864, 0.03368970372860669, 0.16544292122901683, 0.5002106013252752, 0.20783967621931676, 0.4413184352618238, 0.1377753535318076, 0.017128038770129694, 0.09070427960766203, 0.05237321155563324, 0.46044782253877736, 0.09863911308639095, 0.6058955548956951, 0.07377868677997379, 0.33726125667837825, 0.03705661785513226, 0.03856885477325478, 0.01970319875133708, 0.06623921298607705, 0.655672818127978, 0.36403826442427, 0.375635621083512, 0.25822104517587474, 0.26990817233175546, 0.30316845466795117, 0.21597661143113533, 0.10411587283779344, 0.4582573305440075, 0.28974208538397184, 0.3995654588450376, 0.48407929824265805, 0.2412117545349558, 0.49704114689177337, 0.3112403223054312, 0.13571503940671914, 0.35304273602320047, 0.18963603484652192, 0.06023564559469896, 0.305863422303413, 0.34062746964654456, 0.03532029949184434, 0.20200996882548472, 0.207876095289533, 0.11304202998506685, 0.26487496820305634, 0.46674395287949066, 0.05931266843465788, 0.6063731497207538, 0.053339747820140615, 0.16056749669580483, 0.3366557342021428, 0.18735912995827353, 0.2667542380283816, 0.9197592959547904, 0.13322255285490225, 0.3533185668595151, 0.08763312389948397, 0.343329095265401, 0.1298321532292276, 0.11240742021865013, 0.03412749239977686, 0.23316671381479437, 0.13955591125269062, 0.065615492475942, 0.03940539431326806, 0.04874684240881699, 0.42507109047861347, 0.3720756994829524, 0.20627971812824875, 0.23346983492740092, 0.299872058778726, 0.14688925552714138, 0.20529540916933675, 0.11294333341234963, 0.4523771212155355, 0.15895981664313275, 0.12633289347617382, 0.34801013400503944, 0.063056887931354, 0.09222807982804315, 0.19281104432210028, 0.11843845992675284, 0.1064686731970873, 0.12171087020281346, 0.49704114689177337, 0.4202798549667376, 0.058322454167927695, 0.40418598015134155, 0.7514842711311043, 0.067978575311199, 0.1468497162592186, 0.3655805321171328, 0.36741292271676196, 0.08785516413846428, 0.4223454464089015, 0.09472348251934337, 0.14196098925812006, 0.10013555988874479, 0.32154631204965056, 0.05416575683382341, 0.786126361492164, 0.04696516601190348, 0.26926088858349784, 0.28123172687107445, 0.3094364396730669, 0.04307250962973752, 0.07126159086244754, 0.6143015945908075, 0.495586079448059, 0.46102608015166635, 0.40789311683600216, 0.8929715185951024, 0.1227006502272181, 0.3638055988942468, 0.10470002869891348, 0.29304213908849364, 0.8936703981375603, 0.3534407380188983, 0.0883666731866185, 0.07895584641700149, 0.05166417783587085, 0.4199775765299997, 0.10304865631077798, 0.1041340676595982, 0.11031385635331636, 0.22368578646300386, 0.22137255536682798, 0.0725394352715707, 0.08320759746190642, 0.3577905591727162, 0.36362749207413336, 0.13058702032609693, 0.4306817897420764, 0.4684623303117058, 0.3185463047756948, 0.6991046594229053, 0.33105510290791684, 0.35804773811787727, 0.3499358724503807, 0.17780319308126435, 0.07142366539796174, 0.1504846162366139, 0.28643330026545544, 0.11492102279820171, 0.08716328114311156, 0.12905574960179156, 0.5528531989583015, 0.2852168598030531, 0.3185463047756948, 0.41766807389819915, 0.22818770291371737, 0.10749415552266317, 0.07500089027222667, 0.2150933620687273, 0.4879833184669665, 0.21367083697314282, 0.18281788227943807, 0.11217648511765432, 0.01860460444149037, 0.4990100838788346, 0.3212979959143686, 0.7252893191599291, 0.30018855716775616, 0.2808216200321265, 0.24332849241566534, 0.22583693263898685, 0.307128141019565, 0.12930297020615966, 0.07734813107736227, 0.38078614076753503, 0.037937415915298756, 0.18389331462546077, 0.2015421194948802, 0.10121634311933059, 0.7209948827487924, 0.252131738577411, 0.19866278493931944, 0.5569604587758099, 0.19172534874952063, 0.07516041810443141, 0.18673310211333727, 0.20736440356309183, 0.27568985010185776, 0.1748501221961516, 0.134246332983591, 0.12151400729184814, 0.03860330573341564, 0.16198960071610413, 0.062309112953929935, 0.14943540958877521, 0.46827469198568006, 0.12435295831370408, 0.11768791031746062, 0.10794707492381372, 0.04347111427796346, 0.07423675680829, 0.1602542791395647, 0.19911642350143877, 0.2379444352717226, 0.36664322039668684, 0.10130143557253446, 0.17108028607870185, 0.6143194513817134, 0.5641235853966853, 0.29864316680665437, 0.44752301946823647, 0.13459844499503626, 0.037461465199631894, 0.5002964248569376, 0.4059565893810353, 0.7035957096210382, 0.0629603198376949, 0.25036415064992923, 0.14780834332950044, 0.24800647860056513, 0.10438723399855232, 0.24366911510822187, 0.4574644219698093, 0.8347014835967527, 0.42226245660703365, 0.4073158502222598, 0.47525484003715535, 0.37845934883934684, 0.35325777167774697, 0.4763432908647238, 0.18941100564626978, 0.23853527246002126, 0.27277355193056574, 0.5556171757583562, 0.19481513110659687, 0.7460207524242459, 0.12627308236197843, 0.2115813466591615, 0.4773837842994688, 0.22238536240250728, 0.1978655273089749, 0.32057959349203036, 0.1601330373243487, 0.6256605001243821, 0.34062746964654456, 0.5899158924001677, 0.1273375405407705, 0.6866376712310945, 0.3812864953771038, 0.07918534602430627, 0.10510921928053807, 0.052405178286905496, 0.29010285216427345, 0.5802968836962079, 0.4475494904811408, 0.33107045093633036, 0.6046547135519548, 0.33132995382553565, 0.3391582818855403, 0.37109937806185267, 0.18876467901964422, 0.03244681540368277, 0.6531311156123596, 0.18281848038190407, 0.06840545126676123, 0.23876166598551407, 0.5602062902528231, 0.05478334190217349, 0.18965009362393503, 0.502081053312289, 0.0945975060483667, 0.24937367783354814, 0.14040338921272166, 0.09582424632391484, 0.4879833184669665, 0.07536550594022651, 0.37763546052463404, 0.20240400638142053, 0.06234715971662652, 0.1729504208160284, 0.2536573606029918, 0.1491704939138675, 0.47224603889779837, 0.20734784509414073, 0.1656619584420439, 0.20263687678412212, 0.4576701693643329, 0.3746187330143109, 0.06578487521364562, 0.09359041291034786, 0.15714155813810793, 0.43198081216185935, 0.17693664965610134, 0.14200602748771296, 0.16878839641400256, 0.11131318694256087, 0.43040972974554736, 0.12494266711040569, 0.5286591337585229, 0.3917329141436472, 0.14284790216410748, 0.29931895876037384, 0.3998656181534954, 0.13198036366642862, 0.2166851793268345, 0.164669749255824, 0.3116999397838065, 0.5702002297218003, 0.2867818412254799, 0.05809024612643199, 0.0701620515557333, 0.10493669218879953, 0.03474255021640338, 0.14069518845012563, 0.7697788668098057, 0.44513161239284327, 0.12104291767226882, 0.2823656727566666, 0.28640273091276736, 0.09904459769556595, 0.10889384421684001, 0.1978655273089749, 0.6326587477498924, 0.0766186874204361, 0.07300117689776386, 0.3978521493117628, 0.7293533971641823, 0.24040337450518035, 0.46827469198568006, 0.03737110954461231, 0.48112847828662497, 0.5755848065786346, 0.12151472907643468, 0.332302417201758, 0.3208349144509022, 0.13406270144296106, 0.47820199098358873, 0.024219732643774528, 0.7923035912680444, 0.3099424932714111, 0.8494816644677875, 0.15230116664989468, 0.8795672599938588, 0.34536882843285344, 0.587897812361327, 0.3660303223369904, 0.3074082248441362, 0.1925553058603695, 0.1582957933341015, 0.5297945963993664, 0.1892543681582496, 0.06574637766643598, 0.03286461121245521, 0.6223124217546917, 0.48666930315350876, 0.17200815643270417, 0.27042696199957883, 0.16010429726024444, 0.25291734909108765, 0.22778758435893687, 0.6055190518965303, 0.41989528411161425, 0.2865861541738164, 0.17344095530188786, 0.4163761941495938, 0.24610426408478792, 0.029106329843254564, 0.5849270471051293, 0.09607886499379148, 0.4890296174547498, 0.11193395874659995, 0.3667485749721523, 0.29672938182784603, 0.13696827462710404, 0.03986507081677082, 0.41542023534722683, 0.1642424989032959, 0.041559354155004224, 0.1266666793707928, 0.5259198205822933, 0.42123490919744344, 0.6147437654518444, 0.42849246998341506, 0.04874684240881699, 0.16870816563337898, 0.35179373534084035, 0.4552463954734379, 0.1543174595222413, 0.4641274821418986, 0.1106599594415556, 0.40441066041397966, 0.05916303638108533, 0.24194101851814365, 0.5755848065786346, 0.23631147082452741, 0.04679471849088612, 0.33132995382553565, 0.6031606095022326, 0.16900214819844117, 0.9322526967181247, 0.1065938389205352, 0.0540586741766943, 0.14920224829950646, 0.03054451782098533, 0.13595064656866984, 0.15908339514281045, 0.09402391562754642, 0.27219479721363327, 0.10477531970828624, 0.6046547135519548, 0.04412971358840656, 0.0821245873848182, 0.24953715645213048, 0.24311299470472425, 0.679537413518331, 0.02875041056121841, 0.2874129658970298, 0.17131102264191878, 0.07042427222914205, 0.1577516063520068, 0.39934634677258996, 0.42249259173992826, 0.24940231538328683, 0.46827469198568006, 0.040988937643475554, 0.034828704291737345, 0.26663563965858417, 0.22421743312747255, 0.10716094829621758, 0.7421831263598226, 0.4644511163280224, 0.1591307416719686, 0.21502194578256428, 0.12883185373794437, 0.15520095945599266, 0.04280666734842442, 0.06928764484923078, 0.3578757504587543, 0.0760792945579073, 0.06637805380770656, 0.5755848065786346, 0.4326356954473739, 0.16985579355455038, 0.47152805642545803, 0.11644579282256762, 0.11790522998710073, 0.5438286352264949, 0.41561805514360906, 0.050606352251634235, 0.21836830194439782, 0.22298545275517268, 0.1504846162366139, 0.16819644397314482, 0.47796113776613436, 0.14100197907825862, 0.7878397890034206, 0.12176963827920351, 0.09814942480303201, 0.23162396036129984, 0.04400104962869911, 0.061588508633294015, 0.2774601068082493, 0.40816383821078206, 0.14036214651023216, 0.11837607594274324, 0.0703155477214753, 0.17002415827487982, 0.24611532014486182, 0.06874641727313702, 0.30975746960573625, 0.07004288447243323, 0.6453829176356538, 0.3880412370469972, 0.10205495289732236, 0.12171087020281346, 0.38550692709735157, 0.4398162761337091, 0.5769741243450848, 0.48842976274850136, 0.3866799681687785, 0.17129518728202664, 0.5711206597512044, 0.4456070955069118, 0.4585850027539752, 0.25462747480751524, 0.34771016550763867, 0.35548618548401445, 0.07878090041588082, 0.3008706318705062, 0.08117751180329491, 0.055511805197920094, 0.1600174453683395, 0.35597309965685686, 0.5473978930443646, 0.3321771897262046, 0.14643302530661162, 0.7653011157176768, 0.24188431843396252, 0.16704799028757666, 0.41136103198090634, 0.5749869949413896, 0.709238838470871, 0.09340318303147321, 0.602429869503323, 0.04154705947390969, 0.7519582179986716, 0.15993940416551844, 0.04372375151311325, 0.4076899811241429, 0.4644511163280224, 0.3133137248525114, 0.24628490675063597, 0.06972977174174444, 0.15949948541388637, 0.2241543425141257, 0.1729876202034616, 0.07290025122558275, 0.1220000714032804, 0.36493953208423235, 0.09420126302076737, 0.026726938234992392, 0.7199273032686843, 0.4606762448039463, 0.04906818437448113, 0.19446415942665518, 0.14876853598344464, 0.3247816953453747, 0.023320858692869595, 0.7310618090422621, 0.48944479260603346, 0.20357574295749958, 0.0840537250624015, 0.5368744051465595, 0.21101467800102214, 0.46682279298460017, 0.3749869638443927, 0.46592999202179275, 0.10188412989688433, 0.15751976448865512], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"fixed.acidity\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"fixed.acidity\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}, \"All_volatile.acidity\": {\"data\": [{\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Reference<br>volatile.acidity=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [0.24, 0.19, 0.33, 0.1, 0.33, 0.36, 0.37, 0.19, 0.23, 0.27, 0.19, 0.57, 0.12, 0.26, 0.25, 0.37, 0.18, 0.685, 0.335, 0.2, 0.26, 0.4, 0.21, 0.25, 0.3, 0.24, 0.3, 0.43, 0.145, 0.66, 0.27, 0.48, 0.24, 0.17, 0.24, 0.2, 0.23, 0.34, 0.44, 0.26, 0.2, 0.08, 0.23, 0.22, 0.24, 0.15, 0.34, 0.47, 0.27, 0.43, 0.15, 0.35, 0.19, 0.19, 0.27, 0.27, 0.44, 0.21, 0.51, 0.4, 0.44, 0.65, 0.22, 0.14, 0.38, 0.6, 0.28, 0.21, 0.31, 0.21, 0.32, 0.37, 0.21, 0.3, 0.37, 0.22, 0.35, 0.24, 0.635, 0.36, 0.21, 0.22, 0.18, 0.27, 0.4, 0.15, 0.18, 0.45, 0.33, 0.4, 0.31, 0.39, 0.17, 0.16, 0.15, 0.35, 0.24, 0.29, 0.25, 0.18, 0.14, 0.25, 0.44, 0.27, 0.24, 0.17, 0.38, 0.11, 0.22, 0.855, 0.27, 0.33, 0.31, 0.25, 0.28, 0.48, 0.34, 0.13, 0.23, 0.36, 0.18, 0.26, 0.27, 0.18, 0.53, 0.51, 0.51, 0.3, 0.2, 0.66, 0.17, 0.455, 0.22, 0.38, 0.25, 0.29, 0.43, 0.855, 0.42, 0.46, 0.18, 0.15, 0.23, 0.24, 0.4, 0.23, 0.23, 0.2, 0.46, 0.13, 0.15, 0.5, 0.23, 0.3, 0.23, 0.31, 0.2, 0.34, 0.22, 0.21, 0.27, 0.63, 0.125, 0.51, 0.38, 0.21, 0.32, 0.23, 0.27, 0.44, 0.44, 0.34, 0.15, 0.23, 0.41, 0.69, 0.53, 0.17, 0.39, 0.635, 0.34, 0.27, 0.2, 0.3, 0.32, 0.235, 0.62, 0.18, 0.28, 0.15, 0.21, 0.66, 0.55, 0.55, 0.59, 0.28, 0.28, 0.23, 0.26, 0.19, 0.16, 0.32, 0.28, 0.62, 0.27, 0.34, 0.24, 0.29, 0.19, 0.36, 0.23, 0.25, 0.28, 0.27, 0.26, 0.23, 0.21, 0.2, 0.18, 0.44, 0.2, 0.21, 0.29, 0.21, 0.27, 0.17, 0.26, 0.17, 0.24, 0.15, 0.32, 0.36, 0.76, 0.28, 0.28, 0.21, 0.15, 0.19, 0.17, 0.29, 0.26, 0.23, 0.21, 0.44, 0.745, 0.27, 0.26, 0.25, 0.29, 0.29, 0.22, 0.19, 0.47, 0.31, 0.4, 0.21, 0.43, 0.2, 0.21, 0.3, 0.105, 0.27, 0.19, 0.34, 0.29, 0.3, 0.43, 0.4, 0.53, 0.3, 0.17, 0.67, 0.28, 0.17, 0.34, 0.25, 0.18, 0.3, 0.66, 0.39, 0.29, 0.24, 0.11, 0.28, 0.36, 0.29, 0.35, 0.2, 0.56, 0.2, 0.18, 0.37, 0.28, 0.39, 0.29, 0.28, 0.6, 0.27, 0.18, 0.2, 0.58, 0.25, 0.43, 0.2, 0.16, 0.36, 0.21, 0.14, 0.25, 0.36, 0.38, 0.24, 0.395, 0.18, 0.16, 0.27, 0.17, 0.32, 0.23, 0.25, 0.3, 0.22, 0.22, 0.41, 0.21, 0.65, 0.24, 0.27, 0.3, 0.3, 0.29, 0.27, 0.26, 0.255, 0.19, 0.19, 0.2, 0.66, 0.25, 0.18, 0.35, 0.28, 0.25, 0.18, 0.53, 0.28, 0.18, 1.0, 0.58, 0.25, 0.16, 0.16, 0.18, 0.18, 0.27, 0.2, 0.36, 0.3, 0.18, 0.48, 0.4, 0.26, 0.29, 0.39, 0.63, 0.26, 0.3, 0.15, 0.31, 0.28, 0.275, 0.19, 0.24, 0.71, 0.64, 0.22, 0.21, 0.83, 0.22, 0.43, 0.49, 0.25, 0.58, 0.34, 0.34, 0.23, 0.54, 0.4, 0.28, 0.25, 0.44, 0.28, 0.3, 0.35, 0.21, 0.31, 0.22, 0.45, 0.27, 0.58, 0.62, 0.62, 0.58, 0.28, 0.25, 0.25, 0.25, 0.34, 0.41, 0.44, 0.295, 0.33, 0.28, 0.16, 0.36, 0.25, 0.37, 0.23, 0.46, 0.42, 0.18, 0.22, 0.31, 0.15, 0.23, 0.26, 0.2, 0.16, 0.45, 0.32, 0.35, 0.33, 0.25, 0.16, 0.24, 0.46, 0.76, 0.68, 0.3, 0.31, 0.31, 0.21, 0.2, 0.42, 0.21, 0.23, 0.29, 0.23, 0.24, 0.12, 0.25, 0.32, 0.315, 0.16, 0.18, 0.37, 0.17, 0.6, 0.17, 0.15, 0.45, 0.4, 0.35, 0.27, 0.14, 0.67, 0.33, 0.19, 0.26, 0.4, 0.66, 0.3, 0.18, 0.23, 0.4, 0.115, 0.3, 0.28, 0.21, 0.2, 0.36, 0.18, 0.22, 0.26, 0.36, 0.28, 0.32, 0.23, 0.37, 0.41, 0.23, 0.58, 0.2, 0.18, 0.305, 0.2, 0.16, 0.21, 0.3, 0.18, 0.54, 0.31, 0.31, 0.23, 0.34, 0.23, 0.26, 0.29, 0.24, 0.3, 0.19, 0.26, 0.2, 0.38, 0.35, 0.37, 0.24, 0.52, 0.22, 0.53, 0.2, 0.29, 0.31, 0.13, 0.63, 0.2, 0.37, 0.26, 0.19, 0.37, 0.4, 0.36, 0.28, 0.29, 0.16, 0.545, 0.18, 0.38, 0.18, 0.32, 0.24, 0.26, 0.26, 0.18, 0.28, 0.29, 0.38, 0.14, 0.46, 0.28, 0.14, 0.44, 0.18, 0.23, 0.17, 0.65, 0.18, 0.43, 0.29, 0.17, 0.3, 0.22, 0.34, 0.41, 0.42, 0.3, 0.23, 0.16, 0.27, 0.28, 0.2, 0.16, 0.2, 0.36, 0.2, 0.23, 0.17, 0.26, 0.35, 0.27, 0.26, 0.32, 0.19, 0.51, 0.17, 0.63, 0.53, 0.26, 0.1, 0.29, 0.49, 0.32, 0.27, 0.26, 0.44, 0.24, 0.34, 0.59, 0.32, 0.42, 0.16, 0.13, 0.24, 0.24, 0.3, 0.34, 0.22, 0.13, 0.21, 0.19, 0.29, 0.43, 0.34, 0.825, 0.31, 0.3, 0.125, 0.29, 0.37, 0.755, 0.19, 0.25, 0.31, 0.55, 0.32, 0.26, 0.28, 0.37, 0.34, 0.19, 0.17, 0.23, 0.19, 0.36, 0.31, 0.18, 0.32, 0.34, 0.23, 0.35, 0.13, 0.67, 0.62, 0.24, 0.18], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Current<br>volatile.acidity=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [0.37, 0.23, 0.21, 0.32, 0.58, 0.21, 0.24, 0.3, 0.2, 0.3, 0.48, 0.25, 0.27, 0.32, 0.32, 0.2, 0.44, 0.25, 0.22, 0.37, 0.2, 0.19, 0.2, 0.26, 0.25, 0.29, 0.22, 0.24, 0.39, 0.34, 0.41, 0.34, 0.22, 0.26, 0.3, 0.19, 0.13, 0.23, 0.475, 0.605, 0.33, 0.24, 0.52, 0.29, 0.26, 0.57, 0.3, 0.6, 0.26, 0.22, 0.42, 0.57, 0.28, 0.28, 0.26, 0.17, 0.22, 0.34, 0.21, 0.76, 0.42, 0.3, 0.22, 0.25, 0.26, 0.3, 0.42, 0.28, 0.54, 0.14, 0.26, 0.28, 0.34, 0.275, 0.29, 0.2, 0.28, 0.18, 0.26, 0.53, 0.15, 0.21, 0.31, 0.24, 0.22, 0.31, 0.36, 0.33, 0.19, 0.3, 0.2, 0.24, 0.25, 0.31, 0.4, 0.4, 0.475, 0.25, 0.26, 0.61, 0.26, 0.17, 0.51, 0.28, 0.26, 0.28, 0.53, 0.24, 0.38, 0.3, 0.66, 0.33, 0.29, 0.29, 0.32, 0.36, 0.255, 0.24, 0.29, 0.66, 0.33, 0.23, 0.34, 0.16, 0.635, 0.42, 0.46, 0.34, 0.39, 0.17, 0.19, 0.36, 0.26, 0.28, 0.27, 0.21, 0.36, 0.42, 0.34, 0.21, 0.18, 0.865, 0.39, 0.23, 0.29, 0.31, 0.35, 0.4, 0.09, 0.22, 0.12, 0.1, 0.18, 0.2, 0.19, 0.3, 0.35, 0.37, 0.2, 0.23, 0.23, 0.55, 0.37, 0.3, 0.39, 0.265, 0.3, 1.04, 0.34, 0.21, 0.15, 0.18, 0.27, 0.34, 0.39, 0.24, 0.2, 0.28, 0.38, 0.31, 0.39, 0.19, 0.18, 0.33, 0.14, 0.55, 0.22, 0.46, 0.27, 0.41, 0.19, 0.18, 0.22, 0.25, 0.17, 0.39, 0.19, 0.33, 0.35, 0.27, 0.36, 0.26, 0.4, 0.17, 0.21, 0.31, 0.21, 0.44, 0.25, 0.15, 0.26, 0.28, 0.46, 0.32, 0.46, 0.32, 0.22, 0.31, 0.35, 0.24, 0.18, 0.35, 0.6, 0.26, 0.22, 0.655, 0.2, 0.28, 0.42, 0.22, 0.84, 0.28, 0.19, 0.23, 0.27, 0.2, 0.34, 0.14, 0.31, 0.16, 0.22, 0.4, 0.36, 0.22, 0.46, 0.43, 0.19, 0.19, 0.21, 0.685, 0.17, 0.22, 0.17, 0.28, 0.13, 0.11, 0.14, 0.17, 0.34, 0.32, 0.65, 0.28, 0.21, 0.28, 0.13, 0.24, 0.27, 0.41, 0.23, 0.18, 0.11, 0.17, 0.15, 0.59, 0.11, 0.68, 0.24, 0.18, 0.295, 0.55, 0.37, 0.27, 0.28, 0.345, 0.28, 0.44, 0.32, 0.2, 0.585, 0.17, 0.45, 0.43, 0.13, 0.32, 0.17, 0.28, 0.25, 0.36, 0.24, 0.3, 0.17, 0.16, 0.25, 0.38, 0.25, 0.36, 0.37, 0.18, 0.21, 0.16, 0.24, 0.46, 0.52, 0.31, 0.21, 0.22, 0.37, 0.28, 0.19, 0.25, 0.33, 0.28, 0.29, 0.19, 0.65, 0.2, 0.29, 0.32, 0.19, 0.4, 0.43, 0.16, 0.785, 0.22, 0.27, 0.25, 0.25, 0.26, 0.36, 0.43, 0.21, 0.32, 0.3, 0.54, 0.63, 0.18, 0.35, 0.27, 0.25, 0.41, 0.43, 0.305, 0.23, 0.2, 0.3, 0.31, 0.645, 0.29, 0.16, 0.52, 0.3, 0.24, 0.42, 0.26, 0.45, 0.27, 0.22, 0.22, 0.33, 0.24, 0.22, 0.34, 0.21, 0.14, 0.53, 0.725, 0.18, 0.27, 0.47, 0.26, 0.235, 0.26, 0.33, 0.23, 0.23, 0.2, 0.27, 0.16, 0.45, 0.4, 0.2, 0.28, 0.24, 0.23, 0.115, 0.57, 0.25, 0.27, 0.37, 0.18, 0.18, 0.21, 0.19, 0.19, 0.31, 0.23, 0.24, 0.445, 0.15, 0.45, 0.26, 0.2, 0.18, 0.19, 0.18, 0.4, 0.21, 0.37, 0.32, 0.26, 0.21, 0.28, 0.42, 0.765, 0.315, 0.28, 0.25, 0.28, 0.36, 0.17, 0.41, 0.27, 0.15, 0.32, 0.5, 0.52, 0.24, 0.25, 0.08, 0.18, 0.19, 0.57, 0.23, 0.19, 0.36, 0.34, 0.38, 0.5, 0.42, 0.745, 0.22, 0.69, 0.18, 0.57, 0.17, 0.33, 0.36, 0.18, 0.22, 0.4, 0.24, 0.36, 0.19, 0.23, 0.18, 0.17, 0.44, 0.17, 0.21, 0.685, 0.3, 0.2, 0.58, 0.16, 0.16, 0.24, 0.36, 0.13, 0.26, 0.21, 0.34, 0.25, 0.38, 0.12, 0.17, 0.19, 0.3, 0.38, 0.39, 0.59, 0.45, 0.22, 0.31, 0.35, 0.2, 0.39, 0.2, 0.56, 0.305, 0.45, 0.24, 0.26, 0.19, 0.26, 0.41, 0.22, 0.31, 0.35, 1.02, 0.27, 0.52, 0.21, 0.35, 0.26, 0.22, 0.44, 0.41, 0.4, 0.27, 0.25, 0.3, 0.49, 0.24, 0.32, 0.21, 0.19, 0.25, 0.37, 0.25, 0.26, 0.69, 0.17, 0.25, 0.25, 0.31, 0.3, 0.53, 0.24, 0.69, 0.38, 0.22, 0.29, 0.26, 0.16, 0.27, 0.15, 0.5, 0.31, 0.21, 0.19, 0.29, 0.32, 0.41, 0.21, 0.2, 0.42, 0.36, 0.15, 0.35, 0.33, 0.11, 0.31, 0.16, 0.34, 0.34, 0.2, 0.21, 0.28, 0.19, 0.28, 0.205, 0.26, 0.19, 0.43, 0.28, 0.21, 0.33, 0.24, 0.25, 0.28, 0.38, 0.3, 0.15, 0.33, 0.18, 0.32, 0.61, 0.3, 0.38, 0.38, 0.56, 0.34, 0.24, 0.22, 0.58, 0.35, 0.32, 0.28, 0.2, 0.21, 0.16, 0.58, 0.28, 0.255, 0.21, 0.63, 0.38, 0.16, 0.24, 0.35, 0.48, 0.19, 0.2, 0.17, 0.6, 0.32, 0.18, 0.2, 0.38, 0.52, 0.15, 0.38, 0.18, 0.14, 0.16, 0.26, 0.24, 0.245, 0.29, 0.15, 0.645, 0.415, 0.18, 0.2, 0.34, 0.18, 0.22, 0.51, 0.42, 0.49, 0.32, 0.25, 0.2, 0.24, 0.18, 0.27, 0.53, 0.28], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Reference<br>volatile.acidity=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [0.46, 0.32, 0.27, 0.6, 0.46, 0.66, 0.58, 0.21, 0.4, 0.41, 0.6, 0.21, 0.3, 0.32, 0.52, 0.37, 0.53, 1.13, 0.26, 1.33, 0.3, 0.31, 1.115, 0.19, 0.685, 0.76, 0.22, 0.69, 0.705, 0.3, 0.805, 0.34, 0.28, 0.23, 0.25, 0.28, 0.16, 0.2, 0.42, 0.25, 0.38, 0.28, 0.1, 0.365, 0.755, 0.26, 0.165, 0.17, 0.31, 0.44, 0.63, 0.305, 0.26, 0.5, 0.27, 0.47, 0.28, 0.51, 0.38, 0.41, 0.6, 0.25, 0.7, 0.21, 0.66, 0.22, 0.47, 0.64, 0.54, 0.17, 0.24, 0.37, 0.41, 0.29, 0.15, 0.31, 0.28, 0.18, 0.77, 0.31, 0.24, 0.28, 0.27, 0.48, 0.3, 0.54, 0.2, 0.52, 0.39, 0.34, 0.37, 0.26, 0.6, 0.41, 0.28, 0.27, 0.22, 0.28, 0.28, 0.28, 0.31, 0.39, 0.21, 0.32, 0.57, 0.41, 0.32, 0.35, 0.43, 0.2, 0.41, 0.15, 0.45, 0.14, 0.43, 0.5, 0.39, 0.25, 1.025, 0.28, 0.33, 0.57, 0.41, 0.35, 0.32, 0.44, 0.26, 0.765, 0.775, 0.28, 0.17, 0.935, 0.29, 0.25, 0.28, 0.34, 0.14, 0.32, 0.27, 0.69, 0.27, 0.27, 0.36, 0.29, 0.33, 0.45, 0.2, 0.21, 0.59, 0.38, 0.28, 0.68, 0.19, 0.56, 0.2, 0.87, 0.42, 0.21, 0.14, 0.45, 0.23, 0.68, 0.46, 0.31, 0.655, 0.25, 0.23, 0.32, 0.34, 0.25, 0.29, 0.23, 0.59, 0.37, 0.44, 0.48, 0.38, 0.3, 0.58, 0.34, 0.32, 1.33, 0.28, 0.33, 0.26, 0.29, 0.93, 0.34, 0.56, 0.29, 0.22, 0.275, 0.32, 0.615, 0.27, 0.755, 0.29, 0.25, 0.33, 0.17, 0.35, 0.5, 0.5, 0.73, 0.26, 0.31, 0.21, 0.35, 0.54, 0.19, 0.22, 0.21, 0.31, 0.25, 0.32, 0.42, 0.46, 0.475, 0.61, 0.42, 0.69, 0.19, 0.31, 0.26, 0.15, 0.38, 0.76, 0.24, 0.36, 0.695, 0.35, 0.25, 0.12, 0.23, 0.17, 0.3, 0.36, 0.26, 0.34, 0.29, 0.45, 0.34, 0.24, 0.27, 0.19, 0.37, 0.4, 0.26, 0.31, 0.52, 0.88, 0.29, 0.28, 0.835, 0.25, 0.345, 0.23, 0.62, 0.28, 0.39, 0.25, 0.41, 0.26, 0.25, 0.2, 0.22, 0.19, 0.2, 0.32, 0.725, 0.23, 0.67, 0.24, 0.32, 0.32, 0.42, 0.58, 0.32, 0.35, 0.415, 0.5, 0.64, 0.34, 0.66, 0.39, 0.29, 0.21, 0.23, 0.34, 0.265, 0.2, 0.29, 0.49, 0.43, 0.33, 0.54, 0.33, 0.695, 0.28, 0.58, 0.915, 0.18, 0.82, 0.14, 0.615, 0.24, 0.34, 0.39, 0.36, 0.39, 0.18, 0.37, 0.64, 0.27, 0.39, 0.32, 0.23, 0.47, 0.28, 0.46, 0.47, 0.25, 0.96, 0.41, 0.32, 0.31, 0.36, 0.25, 0.575, 0.28, 0.28, 0.45, 0.39, 0.24, 0.12, 0.63, 0.37, 0.5, 0.59, 0.42, 0.22, 0.24, 0.2, 0.775, 0.24, 0.61, 0.38, 0.3, 0.24, 0.46, 0.31, 0.52, 0.4, 0.5, 0.19], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Current<br>volatile.acidity=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [0.365, 0.62, 0.27, 0.18, 0.29, 0.28, 0.43, 0.765, 0.785, 0.6, 0.3, 0.19, 0.31, 0.25, 0.29, 0.21, 0.31, 0.38, 0.35, 0.45, 0.28, 0.25, 0.34, 0.41, 0.22, 0.29, 0.41, 0.41, 0.21, 0.2, 0.27, 0.3, 0.73, 0.6, 0.18, 0.19, 0.98, 0.52, 0.12, 0.36, 0.485, 0.58, 0.34, 0.25, 0.43, 0.51, 0.54, 0.6, 0.28, 0.2, 0.25, 0.26, 0.31, 0.64, 0.705, 0.37, 0.61, 0.645, 0.31, 0.42, 0.645, 0.45, 0.27, 0.29, 0.39, 0.91, 0.46, 0.7, 0.775, 0.55, 0.57, 0.34, 0.335, 0.685, 0.24, 0.25, 0.27, 0.31, 0.47, 0.39, 0.13, 0.56, 0.29, 0.5, 0.2, 0.37, 0.16, 0.25, 0.25, 0.5, 0.23, 0.345, 0.27, 0.3, 0.58, 1.58, 0.29, 0.62, 0.64, 0.24, 0.35, 0.42, 0.21, 0.52, 0.33, 0.51, 0.62, 0.5, 0.33, 0.33, 0.6, 0.31, 0.63, 0.3, 0.21, 0.27, 0.24, 0.41, 0.27, 0.56, 0.27, 0.24, 0.61, 0.5, 0.695, 0.65, 0.16, 0.23, 0.695, 0.44, 0.28, 0.33, 0.3, 0.35, 0.34, 0.39, 0.25, 0.66, 0.585, 0.315, 0.29, 0.2, 0.22, 0.18, 0.59, 0.34, 0.21, 0.4, 0.52, 0.37, 0.5, 0.31, 0.43, 0.24, 0.3, 0.31, 0.22, 0.26, 0.28, 0.55, 0.635, 0.32, 0.14, 0.36, 0.59, 0.31, 0.3, 0.14, 0.21, 0.23, 0.31, 0.26, 0.28, 0.17, 0.35, 0.54, 0.39, 0.39, 0.24, 0.15, 0.16, 0.215, 0.38, 0.34, 0.26, 0.3, 0.29, 0.27, 0.28, 0.24, 0.66, 0.25, 0.25, 0.28, 0.4, 0.38, 0.21, 0.3, 0.18, 0.45, 0.67, 0.36, 0.34, 0.24, 0.27, 0.21, 0.31, 0.32, 0.5, 0.31, 0.34, 0.33, 0.48, 0.2, 0.28, 0.39, 0.29, 0.34, 0.34, 0.24, 0.4, 0.27, 0.33, 0.28, 0.18, 0.41, 0.41, 0.27, 0.52, 0.345, 0.33, 0.23, 0.22, 0.23, 0.745, 0.35, 0.12, 0.22, 0.3, 0.22, 0.44, 0.65, 0.21, 0.12, 0.29, 0.32, 0.17, 0.14, 0.4, 0.41, 0.42, 0.44, 0.3, 0.24, 0.29, 0.23, 0.12, 0.3, 0.34, 0.45, 0.46, 0.2, 0.18, 0.18, 0.26, 0.28, 0.47, 0.23, 0.235, 0.33, 0.28, 0.705, 0.16, 0.31, 0.16, 0.28, 0.33, 0.45, 0.675, 0.37, 0.78, 0.28, 0.19, 0.6, 0.62, 0.14, 0.31, 0.555, 0.21, 0.45, 0.26, 0.6, 0.4, 0.62, 0.3, 0.41, 0.41, 0.3, 0.25, 0.59, 0.24, 0.32, 0.25, 0.26, 0.44, 0.475, 0.35, 0.24, 0.28, 0.23, 0.4, 0.27, 0.26, 0.24, 0.27, 0.26, 0.31, 0.26, 0.33, 0.595, 0.26, 0.39, 0.26, 0.23, 0.875, 0.35, 0.33, 0.45, 0.3, 0.335, 0.9, 0.24, 0.19, 0.16, 0.55, 0.21, 0.15, 0.63, 0.22, 0.49, 0.32, 0.44, 0.48, 0.83, 0.61, 0.2, 0.4, 0.365, 0.22, 0.15, 0.23, 0.26], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Reference\", \"x\": 0.245, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Current\", \"x\": 0.755, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"barmode\": \"overlay\", \"legend\": {\"title\": {\"text\": \"target\"}, \"tracegroupgap\": 0}, \"margin\": {\"t\": 60}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.49], \"title\": {\"text\": \"volatile.acidity\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.51, 1.0], \"matches\": \"x\", \"title\": {\"text\": \"volatile.acidity\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"count\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}}}, \"volatile.acidity_good\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (ref)\", \"type\": \"scatter\", \"x\": [0.24, 0.19, 0.33, 0.1, 0.33, 0.36, 0.37, 0.19, 0.23, 0.27, 0.19, 0.57, 0.12, 0.26, 0.25, 0.37, 0.18, 0.685, 0.335, 0.2, 0.26, 0.4, 0.21, 0.25, 0.3, 0.24, 0.3, 0.43, 0.145, 0.66, 0.27, 0.48, 0.24, 0.17, 0.24, 0.2, 0.23, 0.34, 0.44, 0.26, 0.2, 0.08, 0.23, 0.22, 0.24, 0.15, 0.34, 0.47, 0.27, 0.43, 0.15, 0.35, 0.19, 0.19, 0.27, 0.27, 0.44, 0.21, 0.51, 0.4, 0.44, 0.65, 0.22, 0.14, 0.38, 0.6, 0.28, 0.21, 0.31, 0.21, 0.32, 0.37, 0.21, 0.3, 0.37, 0.22, 0.35, 0.24, 0.635, 0.36, 0.21, 0.22, 0.18, 0.27, 0.4, 0.15, 0.18, 0.45, 0.33, 0.4, 0.31, 0.39, 0.17, 0.16, 0.15, 0.35, 0.24, 0.29, 0.25, 0.18, 0.14, 0.25, 0.44, 0.27, 0.24, 0.17, 0.38, 0.11, 0.22, 0.855, 0.27, 0.33, 0.31, 0.25, 0.28, 0.48, 0.34, 0.13, 0.23, 0.36, 0.18, 0.26, 0.27, 0.18, 0.53, 0.51, 0.51, 0.3, 0.2, 0.66, 0.17, 0.455, 0.22, 0.38, 0.25, 0.29, 0.43, 0.855, 0.42, 0.46, 0.18, 0.15, 0.23, 0.24, 0.4, 0.23, 0.23, 0.2, 0.46, 0.13, 0.15, 0.5, 0.23, 0.3, 0.23, 0.31, 0.2, 0.34, 0.22, 0.21, 0.27, 0.63, 0.125, 0.51, 0.38, 0.21, 0.32, 0.23, 0.27, 0.44, 0.44, 0.34, 0.15, 0.23, 0.41, 0.69, 0.53, 0.17, 0.39, 0.635, 0.34, 0.27, 0.2, 0.3, 0.32, 0.235, 0.62, 0.18, 0.28, 0.15, 0.21, 0.66, 0.55, 0.55, 0.59, 0.28, 0.28, 0.23, 0.26, 0.19, 0.16, 0.32, 0.28, 0.62, 0.27, 0.34, 0.24, 0.29, 0.19, 0.36, 0.23, 0.25, 0.28, 0.27, 0.26, 0.23, 0.21, 0.2, 0.18, 0.44, 0.2, 0.21, 0.29, 0.21, 0.27, 0.17, 0.26, 0.17, 0.24, 0.15, 0.32, 0.36, 0.76, 0.28, 0.28, 0.21, 0.15, 0.19, 0.17, 0.29, 0.26, 0.23, 0.21, 0.44, 0.745, 0.27, 0.26, 0.25, 0.29, 0.29, 0.22, 0.19, 0.47, 0.31, 0.4, 0.21, 0.43, 0.2, 0.21, 0.3, 0.105, 0.27, 0.19, 0.34, 0.29, 0.3, 0.43, 0.4, 0.53, 0.3, 0.17, 0.67, 0.28, 0.17, 0.34, 0.25, 0.18, 0.3, 0.66, 0.39, 0.29, 0.24, 0.11, 0.28, 0.36, 0.29, 0.35, 0.2, 0.56, 0.2, 0.18, 0.37, 0.28, 0.39, 0.29, 0.28, 0.6, 0.27, 0.18, 0.2, 0.58, 0.25, 0.43, 0.2, 0.16, 0.36, 0.21, 0.14, 0.25, 0.36, 0.38, 0.24, 0.395, 0.18, 0.16, 0.27, 0.17, 0.32, 0.23, 0.25, 0.3, 0.22, 0.22, 0.41, 0.21, 0.65, 0.24, 0.27, 0.3, 0.3, 0.29, 0.27, 0.26, 0.255, 0.19, 0.19, 0.2, 0.66, 0.25, 0.18, 0.35, 0.28, 0.25, 0.18, 0.53, 0.28, 0.18, 1.0, 0.58, 0.25, 0.16, 0.16, 0.18, 0.18, 0.27, 0.2, 0.36, 0.3, 0.18, 0.48, 0.4, 0.26, 0.29, 0.39, 0.63, 0.26, 0.3, 0.15, 0.31, 0.28, 0.275, 0.19, 0.24, 0.71, 0.64, 0.22, 0.21, 0.83, 0.22, 0.43, 0.49, 0.25, 0.58, 0.34, 0.34, 0.23, 0.54, 0.4, 0.28, 0.25, 0.44, 0.28, 0.3, 0.35, 0.21, 0.31, 0.22, 0.45, 0.27, 0.58, 0.62, 0.62, 0.58, 0.28, 0.25, 0.25, 0.25, 0.34, 0.41, 0.44, 0.295, 0.33, 0.28, 0.16, 0.36, 0.25, 0.37, 0.23, 0.46, 0.42, 0.18, 0.22, 0.31, 0.15, 0.23, 0.26, 0.2, 0.16, 0.45, 0.32, 0.35, 0.33, 0.25, 0.16, 0.24, 0.46, 0.76, 0.68, 0.3, 0.31, 0.31, 0.21, 0.2, 0.42, 0.21, 0.23, 0.29, 0.23, 0.24, 0.12, 0.25, 0.32, 0.315, 0.16, 0.18, 0.37, 0.17, 0.6, 0.17, 0.15, 0.45, 0.4, 0.35, 0.27, 0.14, 0.67, 0.33, 0.19, 0.26, 0.4, 0.66, 0.3, 0.18, 0.23, 0.4, 0.115, 0.3, 0.28, 0.21, 0.2, 0.36, 0.18, 0.22, 0.26, 0.36, 0.28, 0.32, 0.23, 0.37, 0.41, 0.23, 0.58, 0.2, 0.18, 0.305, 0.2, 0.16, 0.21, 0.3, 0.18, 0.54, 0.31, 0.31, 0.23, 0.34, 0.23, 0.26, 0.29, 0.24, 0.3, 0.19, 0.26, 0.2, 0.38, 0.35, 0.37, 0.24, 0.52, 0.22, 0.53, 0.2, 0.29, 0.31, 0.13, 0.63, 0.2, 0.37, 0.26, 0.19, 0.37, 0.4, 0.36, 0.28, 0.29, 0.16, 0.545, 0.18, 0.38, 0.18, 0.32, 0.24, 0.26, 0.26, 0.18, 0.28, 0.29, 0.38, 0.14, 0.46, 0.28, 0.14, 0.44, 0.18, 0.23, 0.17, 0.65, 0.18, 0.43, 0.29, 0.17, 0.3, 0.22, 0.34, 0.41, 0.42, 0.3, 0.23, 0.16, 0.27, 0.28, 0.2, 0.16, 0.2, 0.36, 0.2, 0.23, 0.17, 0.26, 0.35, 0.27, 0.26, 0.32, 0.19, 0.51, 0.17, 0.63, 0.53, 0.26, 0.1, 0.29, 0.49, 0.32, 0.27, 0.26, 0.44, 0.24, 0.34, 0.59, 0.32, 0.42, 0.16, 0.13, 0.24, 0.24, 0.3, 0.34, 0.22, 0.13, 0.21, 0.19, 0.29, 0.43, 0.34, 0.825, 0.31, 0.3, 0.125, 0.29, 0.37, 0.755, 0.19, 0.25, 0.31, 0.55, 0.32, 0.26, 0.28, 0.37, 0.34, 0.19, 0.17, 0.23, 0.19, 0.36, 0.31, 0.18, 0.32, 0.34, 0.23, 0.35, 0.13, 0.67, 0.62, 0.24, 0.18], \"xaxis\": \"x\", \"y\": [0.8156061324462894, 0.42491310922683634, 0.8867827646463432, 0.8014995238430205, 0.30499958310650876, 0.5817355832705369, 0.959171062334887, 0.7854416128369749, 0.9085690698200813, 0.8998600376511439, 0.6341165000693628, 0.412102187638673, 0.7643629411050379, 0.4710001938005606, 0.40182653035141874, 0.40438056362905367, 0.8870480016118494, 0.3650667978415713, 0.9064321709292111, 0.9327245345966092, 0.6458420185168736, 0.8821841129047617, 0.6704018506542557, 0.7655671181822064, 0.8616986618932058, 0.48774537944210006, 0.9637355036179479, 0.6794204065079696, 0.6044835155949141, 0.7867954023600708, 0.9137982268836646, 0.5867502063434873, 0.8048584290077971, 0.9718511071053526, 0.9627192884041744, 0.7978623718349598, 0.6091120966723917, 0.8943338178728011, 0.8853376735027229, 0.9045563504021151, 0.9264844632598176, 0.6342457655367447, 0.9414033426130164, 0.5636516403732365, 0.5172967922101196, 0.4836896337264441, 0.35199620689495453, 0.788779954566273, 0.9696552399248426, 0.772496554239754, 0.8132656157621138, 0.4539090261140653, 0.9333708926412786, 0.679765045723866, 0.48457442622955804, 0.4248820606938153, 0.6737819616086004, 0.8780741425819777, 0.38340602447337646, 0.90634085684919, 0.5574014604752268, 0.6804147683859246, 0.9077110088845216, 0.7718472635729894, 0.4717552048891654, 0.22222808308441652, 0.8616549355667619, 0.705749071892896, 0.4699129352300819, 0.9680524782819758, 0.8891353183282249, 0.9466602521798594, 0.8553382520847058, 0.7430243903066251, 0.6616131862201935, 0.6919609500216202, 0.96565744679506, 0.913108907487878, 0.5395521774612226, 0.9026238558501023, 0.6550941529376255, 0.9757876320152292, 0.8833495792027257, 0.6666029765862381, 0.8504582120840628, 0.9320215595878566, 0.7639947574915884, 0.6085229656221847, 0.9557131606798471, 0.46184432615952054, 0.5642658412077981, 0.8815615400732472, 0.7189203536918151, 0.9301020530176726, 0.7341394174346678, 0.7759189559372703, 0.8448078654733812, 0.9012666081120407, 0.8926028620066223, 0.5287492720273277, 0.6874206920638863, 0.37408584674942635, 0.8348370105186077, 0.8697567261320243, 0.9175759024810304, 0.44644098895981, 0.8874384748400057, 0.7787567487441118, 0.9416122482572158, 0.3265229243180111, 0.9308095750950773, 0.42267134533232753, 0.43068181214270274, 0.8727308285810839, 0.7201611177732586, 0.8430904589044517, 0.8140617541555761, 0.9456747441572588, 0.6672663325862807, 0.8756470416862959, 0.518871521713375, 0.7040615347784164, 0.4957960231649875, 0.6250130361556073, 0.27413726132188326, 0.5193133578087885, 0.37656641690434584, 0.5808048103476511, 0.7917827117482167, 0.36569143480873245, 0.7232542293832885, 0.9785934574433302, 0.5715075300165849, 0.8182555969893297, 0.5448461144048058, 0.9491291995847589, 0.4833587957991669, 0.3189279754564957, 0.9184825510014271, 0.5524830505676419, 0.9600429304649183, 0.7818180966165994, 0.7962710274484252, 0.7569429870375118, 0.46184432615952054, 0.7641514270390748, 0.9486763575522457, 0.8086368705092697, 0.6784536879503494, 0.6877019790624462, 0.6082670858563528, 0.6053794617794684, 0.6319330693089359, 0.4982105707488519, 0.6787928880949093, 0.9231980717613485, 0.8831230955067948, 0.6845485656817341, 0.8799204262605215, 0.9164563829924386, 0.7819268199067826, 0.23469888428232324, 0.9492377841603665, 0.8826092272015389, 0.6360541596480074, 0.5184081252698399, 0.6400126753125241, 0.542646305979658, 0.4479501208302092, 0.7783171875827786, 0.7867712153112567, 0.5236605417423803, 0.6959846197179591, 0.7925023358445066, 0.6683189355892497, 0.18737025221649042, 0.42506327048176057, 0.7272596040941706, 0.7314191754306454, 0.4827891324637794, 0.6649341228620356, 0.9038332731164471, 0.9588917860646077, 0.8945194928389463, 0.49833043835950624, 0.7997712594855277, 0.8577935987172323, 0.7622736922026153, 0.8039391974899521, 0.7396811504731934, 0.8115340233127679, 0.801728888664367, 0.738451208106372, 0.5859674792922007, 0.1865203674848816, 0.8773430435604171, 0.36888329310067386, 0.8651817982269884, 0.9067615420962557, 0.8594983988587351, 0.7437750884018276, 0.9145224932934428, 0.9135679891815164, 0.8001832456898428, 0.6860977766129374, 0.9377826008632761, 0.9300369611912853, 0.6997062971069969, 0.5693182102579236, 0.3404656140239559, 0.7160591142088384, 0.7953146078011, 0.8869803873277935, 0.7639982823097876, 0.8681285227071118, 0.576868797021353, 0.93035102563313, 0.8375600281828176, 0.8279918435672958, 0.9266689436294401, 0.7559862346636359, 0.5099889666930224, 0.6914445842613687, 0.9651950326885705, 0.87851968214492, 0.8499702807396289, 0.4685752957996948, 0.7241546992314323, 0.7848147251007912, 0.7341394174346678, 0.7008877443692281, 0.340588975625529, 0.5013021766499856, 0.8321174529331695, 0.8818378666553491, 0.9176909075187759, 0.8634678749265305, 0.7436082905772717, 0.9343776659412377, 0.7668809937296346, 0.6243383802582345, 0.5332560471205093, 0.6907315465649003, 0.16626803588025432, 0.1668542888532837, 0.7408943843163458, 0.5221312328975666, 0.7457559475413279, 0.46389636934606376, 0.9292627865919654, 0.5268311186840582, 0.4244151934213653, 0.643310536612302, 0.8577438313980266, 0.7816208399762355, 0.8553382520847058, 0.7010035672814305, 0.5242572272016158, 0.9187320011579697, 0.8703498177621264, 0.6713045345576062, 0.9137982268836646, 0.8614414457916845, 0.9445662266054761, 0.8808216590199034, 0.7386378115490353, 0.8873009977622293, 0.9157094897337859, 0.6606038558129893, 0.9296803968514485, 0.8864322240790464, 0.5146720135715994, 0.8720710714485208, 0.9415427660945741, 0.9138701141498735, 0.6527559092576063, 0.8751970040938668, 0.9249766460056568, 0.801728888664367, 0.6575848465963361, 0.6934824043184128, 0.8619113960143526, 0.9419078024651042, 0.9591721389341828, 0.8397407150753159, 0.9084383840076588, 0.4963969309336195, 0.7359588175524252, 0.3531961907069324, 0.9279819479140234, 0.7752976919572294, 0.8665226278427577, 0.9515211055933231, 0.7314191754306454, 0.890886918514299, 0.3235491032739525, 0.3719939405423586, 0.6323804178173072, 0.8398006965792015, 0.8239469134189235, 0.8592101816891015, 0.7615002907198236, 0.8688259750909261, 0.8718104001390852, 0.5838074755684882, 0.8756470416862959, 0.901850575196968, 0.9451930143658351, 0.6253812669856891, 0.5890764576710766, 0.4921052500998711, 0.4862070578416567, 0.9170647663398394, 0.7035583451969506, 0.8476385889092957, 0.5603058978573646, 0.5810606890504925, 0.9088604673919816, 0.8903252600075929, 0.944267921154058, 0.9435968591480925, 0.938237366988842, 0.9357286047893738, 0.7961386682142712, 0.7840233885688647, 0.2513590507613302, 0.7389284097502917, 0.9053472250810051, 0.44438282424164377, 0.862281110352348, 0.8021059248496223, 0.9152740930046814, 0.643737358401971, 0.8540304955499701, 0.8613418170006786, 0.6911084183178322, 0.8848367871057808, 0.8387883096682573, 0.5942651630821018, 0.65691393717736, 0.6369979527510315, 0.8280658524313272, 0.9640736168216585, 0.6546311715671466, 0.5599819536107853, 0.48348053317652906, 0.7668016587569692, 0.03620763244300767, 0.7364400865449663, 0.37408584674942635, 0.8767503774172, 0.8743962287172513, 0.8751970040938668, 0.8833495792027257, 0.7091886355621774, 0.87006937054451, 0.7904001815220257, 0.8761418339280951, 0.8306834851111597, 0.7531715889012326, 0.38181207472529843, 0.6490458991820136, 0.9138057013338913, 0.9046222904886461, 0.17956061692355052, 0.7506163079023257, 0.8963285795381793, 0.8848361664653354, 0.9283037217377402, 0.45996158699034445, 0.7290858434196763, 0.8319094967702583, 0.6578018675312727, 0.18727567457681707, 0.8673410249845035, 0.9453298670648187, 0.9446538464906173, 0.19605573045952288, 0.6723831041639817, 0.3438281302059518, 0.37858973820495484, 0.6953170483296187, 0.21463507152544156, 0.26963792069965237, 0.3280912492037974, 0.8399932187801539, 0.420387898633768, 0.36522500752858966, 0.5810560693343539, 0.9306346767722963, 0.7167716539092029, 0.656736106921484, 0.5549139996760648, 0.6909161521388689, 0.591904263202073, 0.884703171197362, 0.866402281883595, 0.7582770814524421, 0.8990773411030794, 0.1818065866116437, 0.6222165686186035, 0.17261914235374884, 0.8156064679757086, 0.4851213943917703, 0.8871292211128762, 0.8398494053952754, 0.703270618172154, 0.6305543892506115, 0.7494149477175548, 0.1532408287022325, 0.6159732902773407, 0.738220551127759, 0.8354520044441791, 0.8536870432671441, 0.5751476712690671, 0.9077719201719568, 0.7878515691455199, 0.6672663325862807, 0.45293736875445273, 0.17058553029544155, 0.747933377844996, 0.8400163125056676, 0.4516778718827729, 0.6082670858563528, 0.8401843469141149, 0.7636885291754726, 0.789170795337903, 0.8128612802083497, 0.7522530659814418, 0.8086757686066508, 0.8356255123032285, 0.9241779635105248, 0.9674588597049086, 0.9368885694202199, 0.4990764491242286, 0.876561204324957, 0.554264192243629, 0.5967716244634195, 0.9060244606340249, 0.8401608718856799, 0.7329750583133859, 0.8021769878309102, 0.9316817655017511, 0.45488322534173153, 0.798578398438993, 0.7425236774748816, 0.5742682328784404, 0.4937681935814938, 0.8972164286692267, 0.8914273370768748, 0.9377613518261881, 0.8862258850530264, 0.8591757581361523, 0.7410678096850266, 0.6822336012657398, 0.9201658505843877, 0.6982578893131915, 0.5746709232170782, 0.7626532952948841, 0.7137703530889916, 0.7520971196461234, 0.4473853625959922, 0.7957460056304991, 0.4833174871501707, 0.8758467705785958, 0.4689303842787964, 0.6133612564737879, 0.8568681391705205, 0.6835133967314007, 0.9732070839986944, 0.21435716257549006, 0.5761668962420043, 0.4055433603128916, 0.3743394998756179, 0.9118635774953143, 0.964551884718591, 0.9306459334511011, 0.8424802355113449, 0.7739144871152517, 0.6872688771534424, 0.8590561833388345, 0.6714384475466295, 0.6408669500407106, 0.5203550269219845, 0.2856853969697174, 0.857760555506807, 0.9307094503226838, 0.6787928880949093, 0.8308635255795866, 0.29271374211533296, 0.6769315553524353, 0.23831547366416572, 0.5895099457120908, 0.8994675076574448, 0.8893400405584444, 0.8456825404777587, 0.5399612081435882, 0.6188649121485582, 0.9281492942813848, 0.7611740601422801, 0.46550237374781617, 0.8896861436466836, 0.9038901015569306, 0.5044440900554997, 0.9215480939667524, 0.6930273792518707, 0.8723244804196287, 0.5624338775604165, 0.9226297661236537, 0.8469231754225917, 0.9430557295321259, 0.9097116306258912, 0.5988707702267543, 0.3813853072548755, 0.8843832309478876, 0.9006952500629406, 0.918975987201669, 0.18997930334445084, 0.8923106748541326, 0.8461388699436441, 0.5973439234355874, 0.9544642924744549, 0.91770416680597, 0.9177239854204658, 0.17584552180125673, 0.9240099144459667, 0.48524948024905407, 0.8889685222180134, 0.5785503824403398, 0.7511953459672914, 0.6887596776945688, 0.6717539058356753, 0.7168761391602206, 0.7134478068952186, 0.834626350903405, 0.5715867980362679, 0.6588392688727011, 0.9488572786900573, 0.8920529250761863, 0.8891353183282249, 0.707981940789761, 0.926348680038428, 0.631489487929038, 0.7443856388661001, 0.9260754381930228, 0.9544642924744549, 0.8497401318990601, 0.5604010177433062, 0.8036334301115304, 0.7898153537185114, 0.8491431337122072, 0.6570881560807702, 0.8389599143569951, 0.7944137576415592, 0.8132668978866627, 0.44714680104169846, 0.7978021044641371, 0.41921696608658454, 0.38876183891604754, 0.9248463736054193, 0.4277915265084825, 0.6345107008491314, 0.8008942533173764, 0.5087430598332189, 0.9414938992689892, 0.6922115882765215, 0.8296175750175913, 0.8593339228153332, 0.8975141534758351, 0.5977126281557783, 0.9279478536756302, 0.6485770817571253, 0.8905823996589662, 0.9332072841984264, 0.9432461110830079, 0.9410120781436498, 0.6339696776630096, 0.7120962557761497, 0.5841709037351369, 0.5928970840420333, 0.9006589732900512, 0.936371533648048, 0.6907852379101131, 0.7675780198071424, 0.9444587893431046, 0.4702336163336472, 0.8925536722101626, 0.8158978708906081, 0.822780392485108, 0.8037335327290217, 0.8382351003285965, 0.8941557358589171, 0.4796498334522667, 0.926348680038428, 0.6842118015950474, 0.6463580983468415, 0.8292048071278182, 0.5834426687867836, 0.8419845362148763, 0.2431563391580561, 0.7763142135369961, 0.9390550746437164, 0.7774903237071782, 0.8141232663130791, 0.9444089886680379, 0.430401459478284, 0.9192677156927759, 0.8427595869840984, 0.87120858451521, 0.5693182102579236, 0.820012080301976, 0.58719119911586, 0.42769376643096113, 0.3542595869275313, 0.89579938191327, 0.8743523014696554, 0.7820497043505815, 0.5279069501129625, 0.8869579700149332, 0.45488774279476296, 0.8514781135508903, 0.8278297091497892, 0.663749097381813, 0.5132851713944618, 0.4906566565015208, 0.6415219885510332, 0.6991293681294938, 0.8150539074042624, 0.5800669536763935, 0.9583771200922359, 0.7366090055976814, 0.5747817696023392, 0.5315376696882942, 0.8074446941396305, 0.9038901015569306, 0.9087015650331977, 0.6697291810323083, 0.5800669536763935, 0.8807270543114014, 0.5135845984304893, 0.9352791850238339, 0.36120709973337456, 0.6206709330576408, 0.906286252315459, 0.7937202818717513], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [0.46, 0.32, 0.27, 0.6, 0.46, 0.66, 0.58, 0.21, 0.4, 0.41, 0.6, 0.21, 0.3, 0.32, 0.52, 0.37, 0.53, 1.13, 0.26, 1.33, 0.3, 0.31, 1.115, 0.19, 0.685, 0.76, 0.22, 0.69, 0.705, 0.3, 0.805, 0.34, 0.28, 0.23, 0.25, 0.28, 0.16, 0.2, 0.42, 0.25, 0.38, 0.28, 0.1, 0.365, 0.755, 0.26, 0.165, 0.17, 0.31, 0.44, 0.63, 0.305, 0.26, 0.5, 0.27, 0.47, 0.28, 0.51, 0.38, 0.41, 0.6, 0.25, 0.7, 0.21, 0.66, 0.22, 0.47, 0.64, 0.54, 0.17, 0.24, 0.37, 0.41, 0.29, 0.15, 0.31, 0.28, 0.18, 0.77, 0.31, 0.24, 0.28, 0.27, 0.48, 0.3, 0.54, 0.2, 0.52, 0.39, 0.34, 0.37, 0.26, 0.6, 0.41, 0.28, 0.27, 0.22, 0.28, 0.28, 0.28, 0.31, 0.39, 0.21, 0.32, 0.57, 0.41, 0.32, 0.35, 0.43, 0.2, 0.41, 0.15, 0.45, 0.14, 0.43, 0.5, 0.39, 0.25, 1.025, 0.28, 0.33, 0.57, 0.41, 0.35, 0.32, 0.44, 0.26, 0.765, 0.775, 0.28, 0.17, 0.935, 0.29, 0.25, 0.28, 0.34, 0.14, 0.32, 0.27, 0.69, 0.27, 0.27, 0.36, 0.29, 0.33, 0.45, 0.2, 0.21, 0.59, 0.38, 0.28, 0.68, 0.19, 0.56, 0.2, 0.87, 0.42, 0.21, 0.14, 0.45, 0.23, 0.68, 0.46, 0.31, 0.655, 0.25, 0.23, 0.32, 0.34, 0.25, 0.29, 0.23, 0.59, 0.37, 0.44, 0.48, 0.38, 0.3, 0.58, 0.34, 0.32, 1.33, 0.28, 0.33, 0.26, 0.29, 0.93, 0.34, 0.56, 0.29, 0.22, 0.275, 0.32, 0.615, 0.27, 0.755, 0.29, 0.25, 0.33, 0.17, 0.35, 0.5, 0.5, 0.73, 0.26, 0.31, 0.21, 0.35, 0.54, 0.19, 0.22, 0.21, 0.31, 0.25, 0.32, 0.42, 0.46, 0.475, 0.61, 0.42, 0.69, 0.19, 0.31, 0.26, 0.15, 0.38, 0.76, 0.24, 0.36, 0.695, 0.35, 0.25, 0.12, 0.23, 0.17, 0.3, 0.36, 0.26, 0.34, 0.29, 0.45, 0.34, 0.24, 0.27, 0.19, 0.37, 0.4, 0.26, 0.31, 0.52, 0.88, 0.29, 0.28, 0.835, 0.25, 0.345, 0.23, 0.62, 0.28, 0.39, 0.25, 0.41, 0.26, 0.25, 0.2, 0.22, 0.19, 0.2, 0.32, 0.725, 0.23, 0.67, 0.24, 0.32, 0.32, 0.42, 0.58, 0.32, 0.35, 0.415, 0.5, 0.64, 0.34, 0.66, 0.39, 0.29, 0.21, 0.23, 0.34, 0.265, 0.2, 0.29, 0.49, 0.43, 0.33, 0.54, 0.33, 0.695, 0.28, 0.58, 0.915, 0.18, 0.82, 0.14, 0.615, 0.24, 0.34, 0.39, 0.36, 0.39, 0.18, 0.37, 0.64, 0.27, 0.39, 0.32, 0.23, 0.47, 0.28, 0.46, 0.47, 0.25, 0.96, 0.41, 0.32, 0.31, 0.36, 0.25, 0.575, 0.28, 0.28, 0.45, 0.39, 0.24, 0.12, 0.63, 0.37, 0.5, 0.59, 0.42, 0.22, 0.24, 0.2, 0.775, 0.24, 0.61, 0.38, 0.3, 0.24, 0.46, 0.31, 0.52, 0.4, 0.5, 0.19], \"xaxis\": \"x\", \"y\": [0.2802292104526322, 0.9455194119275858, 0.4978743212349556, 0.5289145624519528, 0.28439238707197784, 0.2033309570226689, 0.27345747478543325, 0.8322873304845451, 0.389055896812549, 0.3675472469853882, 0.5781933746273124, 0.7401955299744071, 0.44969671697605845, 0.4367887814338696, 0.31593955341667695, 0.3775624358859999, 0.19282181046294666, 0.048451763306065584, 0.6005928650583868, 0.032225376113695775, 0.427412413738938, 0.23973251442015217, 0.13890126550157303, 0.8613925272127, 0.329663916828638, 0.19359965390713213, 0.6827271716759634, 0.1960905505555538, 0.08135735686643118, 0.39737240301928484, 0.13902987396822816, 0.6514166433739288, 0.6994753721471061, 0.7140886736258081, 0.5021795028970708, 0.48743245558712556, 0.5731139673640956, 0.8820820642542792, 0.559972149724866, 0.5061565591493914, 0.5066810377847554, 0.833805652807593, 0.6979972163580744, 0.3177574231538272, 0.13068190592986567, 0.758876109553896, 0.5681062961269688, 0.715544821914063, 0.762062625203523, 0.4464438677531786, 0.20995974230910305, 0.5262622410710028, 0.39442669669188163, 0.2537324982988368, 0.6775437642744659, 0.23876321589577687, 0.6369158982934647, 0.38960060362966165, 0.6034323722874255, 0.7769991715799629, 0.15199748354041337, 0.5641412449951732, 0.7590466800561823, 0.5969347905931296, 0.1048362779837843, 0.7217824369593382, 0.2662339163773806, 0.16472378978351135, 0.37760124376932414, 0.7071736299639594, 0.3436862995931572, 0.8384434752264291, 0.3635333644877426, 0.7813188949129265, 0.7279369976219869, 0.5641098847382463, 0.3863964747623771, 0.9209913370067284, 0.1477144681640183, 0.8809374658555192, 0.6533168894759348, 0.8873477284758582, 0.3697306267878623, 0.28319023347825867, 0.5203701741750857, 0.5523747693308857, 0.6387521731780509, 0.3881380695009739, 0.8487896327149285, 0.4636606453307818, 0.8384434752264291, 0.558266603669778, 0.21657231888677728, 0.3635333644877426, 0.5512671313974766, 0.5051039398599867, 0.5827915753039158, 0.49441682850108926, 0.47309171914705017, 0.6262595591688196, 0.5508242483721094, 0.47332791509789995, 0.7117569366896692, 0.3933786516273859, 0.16465066549244003, 0.7490394132223248, 0.769261050002088, 0.7431932405995126, 0.3141000916210982, 0.723735045552473, 0.6484132891031948, 0.688519894019609, 0.40496704226994307, 0.5803736122960511, 0.6327801522745691, 0.45115706990411364, 0.37268733756108086, 0.9009693101135351, 0.06496389958099598, 0.44431713201158524, 0.39960831974332744, 0.8662156944598043, 0.31018081106061823, 0.5339551117365043, 0.33311273919547707, 0.400132762133902, 0.8528754522806217, 0.14419347879543085, 0.11672350429510901, 0.44556702529145975, 0.6160120899414699, 0.13766892845409207, 0.5517204028384314, 0.5232178919035022, 0.35483403305733974, 0.4900213704561591, 0.8854578072659228, 0.43084122675663034, 0.7601186327653665, 0.14072030431570776, 0.6186690618327106, 0.5245054232921349, 0.7326259458716644, 0.5690781983520095, 0.4018508815425063, 0.24877469563805235, 0.7952501197393639, 0.8766221356386195, 0.303451532996695, 0.5357745481647883, 0.7096524147827454, 0.20877177283968149, 0.8635610141758273, 0.46736762313881036, 0.6061151992073851, 0.113015272873705, 0.40446014603085867, 0.6332606063976143, 0.648705381890928, 0.42186952587750404, 0.8047913565308571, 0.3017058309841093, 0.38406990132164637, 0.33494193042999065, 0.19929939967121216, 0.8624919783238055, 0.528785836409086, 0.43084122675663034, 0.47042159929499583, 0.5061565591493914, 0.5759491569657543, 0.8468794444363914, 0.20342296359496542, 0.5170831534483544, 0.3666753044655067, 0.6131723001375537, 0.4410646109528086, 0.6903416342484309, 0.3866428492574258, 0.4636606453307818, 0.4525459302795702, 0.03199256040434073, 0.7029629492254846, 0.2433141614541866, 0.548755973819273, 0.3775060302547258, 0.06593060991448157, 0.8745624549148976, 0.22931948662359403, 0.27267688907931714, 0.589328430619086, 0.8007160756317941, 0.5525637789187225, 0.5008522318356121, 0.4556212410144909, 0.17391722008742402, 0.43574637053357784, 0.3237440077649342, 0.6071692164257629, 0.6925152430641841, 0.592675381607996, 0.43854150134957587, 0.43854150134957587, 0.42437112972565305, 0.8061118855433299, 0.35195592295594336, 0.7605370065149419, 0.38898578429124253, 0.67510953655807, 0.872979709380305, 0.710510994258769, 0.720290290780972, 0.4820787970895852, 0.42019280799979697, 0.4304380754474639, 0.25285023254778977, 0.3238056884730761, 0.39471961640683584, 0.09510031985475974, 0.367046376808582, 0.21500793651835448, 0.8705359023101334, 0.6100742529031461, 0.6226449432624995, 0.7279369976219869, 0.3643494054700089, 0.09992017521484964, 0.41475515148757036, 0.6462260464983366, 0.14102909592513518, 0.48949585696458414, 0.5239520436918008, 0.6084413884537807, 0.5655473856702703, 0.9517420512476797, 0.7489379515982664, 0.4647937384849751, 0.7915321263825208, 0.44112279258530757, 0.5734340256727429, 0.6604471727860799, 0.4845203185458914, 0.6968730453869196, 0.5315374962198609, 0.8685951485887234, 0.6242442748350044, 0.2912097196987059, 0.7725938221565348, 0.2067629769731588, 0.30221725334927335, 0.13129342562285412, 0.6467789443522378, 0.6994753721471061, 0.11825382206919556, 0.41022417118631593, 0.4882665226122541, 0.7732287086973071, 0.25374762405010176, 0.49441682850108926, 0.3723877205427743, 0.652330313245635, 0.43667799883041203, 0.5964718913578133, 0.55172276504346, 0.24113559934961917, 0.8243980268882987, 0.7263843594269437, 0.43535214809021755, 0.8721122798612579, 0.18723914490145582, 0.6486906676970999, 0.11576704656818047, 0.4328241622975616, 0.491481212420291, 0.5264345378086769, 0.33856526784971647, 0.2967410926251248, 0.581398831228375, 0.5973776665460488, 0.6195406102170065, 0.37782717658841725, 0.323061133240968, 0.17420808473594895, 0.19634770547538957, 0.46492234760650425, 0.49613167963272686, 0.5812209036149294, 0.6057291775435286, 0.63414717387345, 0.5702687187355167, 0.8604975146328253, 0.6309022132706124, 0.48732991249542923, 0.6887148870948692, 0.41581945293096145, 0.5706760596351739, 0.4831274653996314, 0.06684727567316755, 0.49090643211649887, 0.15191610726090596, 0.2711405311223577, 0.7653618545702112, 0.09266565137124261, 0.4554350627407873, 0.19698919164573708, 0.6930185080649685, 0.5227537922811563, 0.50434568709929, 0.7082092780767422, 0.46058046365566996, 0.6735723234187477, 0.4285936050615775, 0.323061133240968, 0.5168500865319015, 0.6161307914674419, 0.23456444218973552, 0.3192004782541023, 0.21968945907811915, 0.5028183230931117, 0.43371621376298963, 0.6744209213341115, 0.5940260419772637, 0.13783310426722128, 0.5136444387530009, 0.5508647999875032, 0.4955911012838212, 0.9814394195009358, 0.8260225289794664, 0.17965956338109995, 0.46844896472597397, 0.6048119589659149, 0.3289160319090978, 0.2454606394453749, 0.7497022835596558, 0.683485355417811, 0.20995974230910305, 0.23504578258460665, 0.37175956099497537, 0.4875530438829156, 0.24982584224249993, 0.6282829625348888, 0.4520795162158371, 0.8200372413039435, 0.12832513643528837, 0.5299630655130737, 0.29552777318700446, 0.24021937552346023, 0.5429028773737552, 0.6311869746243346, 0.4145977043912777, 0.39329840463575844, 0.39070335653410526, 0.4286990948130573, 0.846836560604146, 0.6880850122626078], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (curr)\", \"type\": \"scatter\", \"x\": [0.37, 0.23, 0.21, 0.32, 0.58, 0.21, 0.24, 0.3, 0.2, 0.3, 0.48, 0.25, 0.27, 0.32, 0.32, 0.2, 0.44, 0.25, 0.22, 0.37, 0.2, 0.19, 0.2, 0.26, 0.25, 0.29, 0.22, 0.24, 0.39, 0.34, 0.41, 0.34, 0.22, 0.26, 0.3, 0.19, 0.13, 0.23, 0.475, 0.605, 0.33, 0.24, 0.52, 0.29, 0.26, 0.57, 0.3, 0.6, 0.26, 0.22, 0.42, 0.57, 0.28, 0.28, 0.26, 0.17, 0.22, 0.34, 0.21, 0.76, 0.42, 0.3, 0.22, 0.25, 0.26, 0.3, 0.42, 0.28, 0.54, 0.14, 0.26, 0.28, 0.34, 0.275, 0.29, 0.2, 0.28, 0.18, 0.26, 0.53, 0.15, 0.21, 0.31, 0.24, 0.22, 0.31, 0.36, 0.33, 0.19, 0.3, 0.2, 0.24, 0.25, 0.31, 0.4, 0.4, 0.475, 0.25, 0.26, 0.61, 0.26, 0.17, 0.51, 0.28, 0.26, 0.28, 0.53, 0.24, 0.38, 0.3, 0.66, 0.33, 0.29, 0.29, 0.32, 0.36, 0.255, 0.24, 0.29, 0.66, 0.33, 0.23, 0.34, 0.16, 0.635, 0.42, 0.46, 0.34, 0.39, 0.17, 0.19, 0.36, 0.26, 0.28, 0.27, 0.21, 0.36, 0.42, 0.34, 0.21, 0.18, 0.865, 0.39, 0.23, 0.29, 0.31, 0.35, 0.4, 0.09, 0.22, 0.12, 0.1, 0.18, 0.2, 0.19, 0.3, 0.35, 0.37, 0.2, 0.23, 0.23, 0.55, 0.37, 0.3, 0.39, 0.265, 0.3, 1.04, 0.34, 0.21, 0.15, 0.18, 0.27, 0.34, 0.39, 0.24, 0.2, 0.28, 0.38, 0.31, 0.39, 0.19, 0.18, 0.33, 0.14, 0.55, 0.22, 0.46, 0.27, 0.41, 0.19, 0.18, 0.22, 0.25, 0.17, 0.39, 0.19, 0.33, 0.35, 0.27, 0.36, 0.26, 0.4, 0.17, 0.21, 0.31, 0.21, 0.44, 0.25, 0.15, 0.26, 0.28, 0.46, 0.32, 0.46, 0.32, 0.22, 0.31, 0.35, 0.24, 0.18, 0.35, 0.6, 0.26, 0.22, 0.655, 0.2, 0.28, 0.42, 0.22, 0.84, 0.28, 0.19, 0.23, 0.27, 0.2, 0.34, 0.14, 0.31, 0.16, 0.22, 0.4, 0.36, 0.22, 0.46, 0.43, 0.19, 0.19, 0.21, 0.685, 0.17, 0.22, 0.17, 0.28, 0.13, 0.11, 0.14, 0.17, 0.34, 0.32, 0.65, 0.28, 0.21, 0.28, 0.13, 0.24, 0.27, 0.41, 0.23, 0.18, 0.11, 0.17, 0.15, 0.59, 0.11, 0.68, 0.24, 0.18, 0.295, 0.55, 0.37, 0.27, 0.28, 0.345, 0.28, 0.44, 0.32, 0.2, 0.585, 0.17, 0.45, 0.43, 0.13, 0.32, 0.17, 0.28, 0.25, 0.36, 0.24, 0.3, 0.17, 0.16, 0.25, 0.38, 0.25, 0.36, 0.37, 0.18, 0.21, 0.16, 0.24, 0.46, 0.52, 0.31, 0.21, 0.22, 0.37, 0.28, 0.19, 0.25, 0.33, 0.28, 0.29, 0.19, 0.65, 0.2, 0.29, 0.32, 0.19, 0.4, 0.43, 0.16, 0.785, 0.22, 0.27, 0.25, 0.25, 0.26, 0.36, 0.43, 0.21, 0.32, 0.3, 0.54, 0.63, 0.18, 0.35, 0.27, 0.25, 0.41, 0.43, 0.305, 0.23, 0.2, 0.3, 0.31, 0.645, 0.29, 0.16, 0.52, 0.3, 0.24, 0.42, 0.26, 0.45, 0.27, 0.22, 0.22, 0.33, 0.24, 0.22, 0.34, 0.21, 0.14, 0.53, 0.725, 0.18, 0.27, 0.47, 0.26, 0.235, 0.26, 0.33, 0.23, 0.23, 0.2, 0.27, 0.16, 0.45, 0.4, 0.2, 0.28, 0.24, 0.23, 0.115, 0.57, 0.25, 0.27, 0.37, 0.18, 0.18, 0.21, 0.19, 0.19, 0.31, 0.23, 0.24, 0.445, 0.15, 0.45, 0.26, 0.2, 0.18, 0.19, 0.18, 0.4, 0.21, 0.37, 0.32, 0.26, 0.21, 0.28, 0.42, 0.765, 0.315, 0.28, 0.25, 0.28, 0.36, 0.17, 0.41, 0.27, 0.15, 0.32, 0.5, 0.52, 0.24, 0.25, 0.08, 0.18, 0.19, 0.57, 0.23, 0.19, 0.36, 0.34, 0.38, 0.5, 0.42, 0.745, 0.22, 0.69, 0.18, 0.57, 0.17, 0.33, 0.36, 0.18, 0.22, 0.4, 0.24, 0.36, 0.19, 0.23, 0.18, 0.17, 0.44, 0.17, 0.21, 0.685, 0.3, 0.2, 0.58, 0.16, 0.16, 0.24, 0.36, 0.13, 0.26, 0.21, 0.34, 0.25, 0.38, 0.12, 0.17, 0.19, 0.3, 0.38, 0.39, 0.59, 0.45, 0.22, 0.31, 0.35, 0.2, 0.39, 0.2, 0.56, 0.305, 0.45, 0.24, 0.26, 0.19, 0.26, 0.41, 0.22, 0.31, 0.35, 1.02, 0.27, 0.52, 0.21, 0.35, 0.26, 0.22, 0.44, 0.41, 0.4, 0.27, 0.25, 0.3, 0.49, 0.24, 0.32, 0.21, 0.19, 0.25, 0.37, 0.25, 0.26, 0.69, 0.17, 0.25, 0.25, 0.31, 0.3, 0.53, 0.24, 0.69, 0.38, 0.22, 0.29, 0.26, 0.16, 0.27, 0.15, 0.5, 0.31, 0.21, 0.19, 0.29, 0.32, 0.41, 0.21, 0.2, 0.42, 0.36, 0.15, 0.35, 0.33, 0.11, 0.31, 0.16, 0.34, 0.34, 0.2, 0.21, 0.28, 0.19, 0.28, 0.205, 0.26, 0.19, 0.43, 0.28, 0.21, 0.33, 0.24, 0.25, 0.28, 0.38, 0.3, 0.15, 0.33, 0.18, 0.32, 0.61, 0.3, 0.38, 0.38, 0.56, 0.34, 0.24, 0.22, 0.58, 0.35, 0.32, 0.28, 0.2, 0.21, 0.16, 0.58, 0.28, 0.255, 0.21, 0.63, 0.38, 0.16, 0.24, 0.35, 0.48, 0.19, 0.2, 0.17, 0.6, 0.32, 0.18, 0.2, 0.38, 0.52, 0.15, 0.38, 0.18, 0.14, 0.16, 0.26, 0.24, 0.245, 0.29, 0.15, 0.645, 0.415, 0.18, 0.2, 0.34, 0.18, 0.22, 0.51, 0.42, 0.49, 0.32, 0.25, 0.2, 0.24, 0.18, 0.27, 0.53, 0.28], \"xaxis\": \"x2\", \"y\": [0.33396714643252134, 0.5044440900554997, 0.8874896900044845, 0.4686759077780351, 0.23831547366416572, 0.571181601185031, 0.7785327680196316, 0.7290551099174598, 0.9581131370131553, 0.6801000322064107, 0.413367674560271, 0.6667140739211237, 0.9108229754863395, 0.9275086157065797, 0.9186958597750785, 0.7191871442695774, 0.8184457509658746, 0.8597940676688322, 0.7947045908306632, 0.8244149680645384, 0.42771531534877594, 0.5315376696882942, 0.7136291946100958, 0.5510697799054304, 0.6393262665313312, 0.9016582766249417, 0.8560880110261746, 0.8947361144883382, 0.9102326114023062, 0.840723585394272, 0.9264645566705582, 0.5105903360131552, 0.752648770317166, 0.5855954083225455, 0.8989214048388485, 0.5190750352404293, 0.9560713253502463, 0.7273157243430202, 0.9279672131348602, 0.640103147954212, 0.9158977434209615, 0.9035955072010529, 0.7140955379655831, 0.233508355491505, 0.7280578325574358, 0.8810827811902006, 0.3966129217085586, 0.15541760955422754, 0.5851621750323275, 0.9046111951917862, 0.4177213302712193, 0.7993763114768937, 0.6978409661933959, 0.6473373667551029, 0.770784382977056, 0.6500641275496193, 0.548949563093737, 0.9803199442553986, 0.6150775052067382, 0.391333092160729, 0.6966682278280982, 0.9426748402861506, 0.9170092977635526, 0.844625652038695, 0.5621782696252592, 0.8935808323282117, 0.6792214086077275, 0.6719996755401956, 0.5252591274442797, 0.7277045758687855, 0.4685752957996948, 0.8616549355667619, 0.347491516391863, 0.8224130863808733, 0.5340790568488665, 0.6711667658766297, 0.5277539611022016, 0.7226430813715845, 0.8140972745487615, 0.3280236940194876, 0.9543080196225542, 0.7752655593026647, 0.9223925066666061, 0.8588031784191832, 0.6345107008491314, 0.9393010047953068, 0.7897067132703484, 0.8608062836413887, 0.8367885032124018, 0.38555642305179116, 0.8611944449682004, 0.9172341012895443, 0.9206892306522243, 0.9500505925695213, 0.537798347971205, 0.9173482789702866, 0.44454351342386716, 0.8909704850569525, 0.7351932580165473, 0.6818328744935735, 0.7981559962965634, 0.7626532952948841, 0.807353254900461, 0.964411205143099, 0.4685752957996948, 0.6986526320119215, 0.1956969407137045, 0.9233481403380283, 0.8218375601976645, 0.8536269727611236, 0.5637680470866036, 0.42267134533232753, 0.93003590801509, 0.9364808605729722, 0.8816060831574614, 0.9663102962713933, 0.8345570787709832, 0.4997893986747249, 0.7921603237806832, 0.5586815647381762, 0.8622246464681924, 0.9828719612298703, 0.909295720392338, 0.9476267884443668, 0.5395521774612226, 0.901360886913609, 0.39410444510430487, 0.9262213132200262, 0.6627387433216217, 0.9629433821448677, 0.9614311452267452, 0.9802968012486629, 0.933760787013923, 0.34432718187202205, 0.63596173557573, 0.624364378916488, 0.7417789548241253, 0.7300918276682445, 0.6968315453320488, 0.7840233885688647, 0.8958841271622066, 0.5417426694559925, 0.7102579146160282, 0.6004345411549624, 0.515920701757342, 0.7587882454650442, 0.5029588531082266, 0.6887596776945688, 0.8642849605932809, 0.6469572639767995, 0.8103639651534781, 0.939764354405301, 0.694136577696587, 0.6593725303534554, 0.9646797005081557, 0.7979900311745153, 0.792123904710467, 0.8869579700149332, 0.7351250317969437, 0.5332560471205093, 0.9406873315653421, 0.39362685027924615, 0.9466602521798594, 0.8394325033041952, 0.6633442657978572, 0.8126408700417265, 0.7332457619716184, 0.08024070404520958, 0.8667774471450977, 0.6466814331404849, 0.912366876100516, 0.656670904734599, 0.8701678467707724, 0.8875925797813499, 0.9658725076002231, 0.7668332861852056, 0.8604440887473094, 0.934384507524058, 0.9605946056867319, 0.951253157591183, 0.5749289095213865, 0.6279243005170476, 0.7937202818717513, 0.7665301650725991, 0.700127941221274, 0.8531107444728586, 0.7947045908306632, 0.8870566665876504, 0.5476228787844645, 0.8410401833568673, 0.8736671065238262, 0.6519898659949606, 0.936943112068646, 0.9077719201719568, 0.8071889556778997, 0.8815615400732472, 0.8935313268029127, 0.8782891297971865, 0.5029588531082266, 0.5797201450332624, 0.9416775458320723, 0.5958140198486584, 0.2485157288688957, 0.932021424688801, 0.8531502837407814, 0.6344194678828672, 0.632587077283238, 0.9121448358615357, 0.5776545535910985, 0.9052765174806566, 0.8580390107418799, 0.8998644401112552, 0.6784536879503494, 0.9458342431661766, 0.21387363850783603, 0.9530348339880965, 0.7307391114165022, 0.7187682731289255, 0.6905635603269331, 0.9569274903702625, 0.9287384091375525, 0.3856984054091925, 0.504413920551941, 0.5389739198483336, 0.5921068831639978, 0.10702848140489757, 0.8772993497727819, 0.6361944011057532, 0.8952999713010865, 0.7069578609115064, 0.10632960186243966, 0.6465592619811017, 0.9116333268133815, 0.9210441535829985, 0.9483358221641291, 0.5800224234700003, 0.896951343689222, 0.8958659323404018, 0.8896861436466836, 0.7763142135369961, 0.778627444633172, 0.9274605647284293, 0.9167924025380936, 0.6422094408272838, 0.6363725079258666, 0.8694129796739031, 0.5693182102579236, 0.5315376696882942, 0.6814536952243052, 0.30089534057709466, 0.6689448970920832, 0.6419522618821227, 0.6500641275496193, 0.8221968069187356, 0.9285763346020383, 0.8495153837633861, 0.7135666997345446, 0.8850789772017983, 0.9128367188568884, 0.8709442503982084, 0.44714680104169846, 0.7147831401969469, 0.6814536952243052, 0.5823319261018008, 0.7718122970862826, 0.8925058444773368, 0.9249991097277733, 0.7849066379312727, 0.5120166815330335, 0.7863291630268572, 0.8171821177205619, 0.8878235148823457, 0.9813953955585096, 0.5009899161211654, 0.6787020040856314, 0.2747106808400709, 0.6998114428322438, 0.7191783799678735, 0.7566715075843347, 0.7741630673610131, 0.692871858980435, 0.8706970297938403, 0.9226518689226377, 0.619213859232465, 0.9620625840847012, 0.8161066853745392, 0.7984578805051198, 0.8987836568806694, 0.27900511725120763, 0.747868261422589, 0.8013372150606806, 0.4430395412241901, 0.8082746512504794, 0.9248395818955686, 0.8132668978866627, 0.7926355964369082, 0.7243101498981422, 0.8251498778038484, 0.865753667016409, 0.8784859927081519, 0.9613966942665844, 0.8380103992838959, 0.9376908870460701, 0.8505645904112248, 0.5317253080143199, 0.8756470416862959, 0.8823120896825394, 0.8920529250761863, 0.9565288857220365, 0.92576324319171, 0.8397457208604353, 0.8008835764985612, 0.7620555647282774, 0.6333567796033132, 0.8986985644274655, 0.8289197139212982, 0.38568054861828666, 0.4358764146033148, 0.7013568331933456, 0.5524769805317635, 0.8654015550049637, 0.9625385348003681, 0.4997035751430624, 0.5940434106189647, 0.29640429037896177, 0.9370396801623051, 0.7496358493500708, 0.8521916566704996, 0.7519935213994349, 0.8956127660014477, 0.7563308848917781, 0.5425355780301907, 0.1652985164032473, 0.5777375433929663, 0.5926841497777402, 0.5247451599628447, 0.6215406511606532, 0.646742228322253, 0.5236567091352762, 0.8105889943537302, 0.7614647275399787, 0.7272264480694343, 0.44438282424164377, 0.8051848688934031, 0.253979247575754, 0.8737269176380216, 0.7884186533408385, 0.5226162157005312, 0.7776146375974927, 0.8021344726910251, 0.6794204065079696, 0.8398669626756513, 0.3743394998756179, 0.6593725303534554, 0.41008410759983227, 0.8726624594592295, 0.31336232876890546, 0.6187135046228962, 0.9208146539756937, 0.8948907807194619, 0.9475948217130945, 0.7098971478357265, 0.41970311630379203, 0.5524505095188592, 0.6689295490636696, 0.39534528644804523, 0.6686700461744643, 0.6608417181144597, 0.6289006219381473, 0.8112353209803558, 0.9675531845963172, 0.3468688843876404, 0.8171815196180959, 0.9315945487332388, 0.7612383340144859, 0.43979370974717685, 0.9452166580978265, 0.810349906376065, 0.4979189466877109, 0.9054024939516333, 0.7506263221664519, 0.8595966107872783, 0.9041757536760852, 0.5120166815330335, 0.9246344940597735, 0.622364539475366, 0.7975959936185795, 0.9376528402833735, 0.8270495791839716, 0.7463426393970082, 0.8508295060861325, 0.5277539611022016, 0.7926521549058593, 0.8343380415579561, 0.7973631232158779, 0.5423298306356671, 0.6253812669856891, 0.9342151247863544, 0.9064095870896521, 0.8428584418618921, 0.5680191878381406, 0.8230633503438987, 0.857993972512287, 0.8312116035859974, 0.8886868130574391, 0.5695902702544526, 0.8750573328895943, 0.47134086624147714, 0.6082670858563528, 0.8571520978358925, 0.7006810412396262, 0.6001343818465046, 0.8680196363335714, 0.7833148206731655, 0.835330250744176, 0.6883000602161935, 0.4297997702781997, 0.7132181587745201, 0.941909753873568, 0.9298379484442667, 0.8950633078112005, 0.9652574497835966, 0.8593048115498744, 0.23022113319019433, 0.5548683876071567, 0.8789570823277312, 0.7176343272433334, 0.7135972690872326, 0.900955402304434, 0.89110615578316, 0.8021344726910251, 0.36734125225010755, 0.9233813125795639, 0.9269988231022361, 0.6021478506882372, 0.27064660283581765, 0.7595966254948197, 0.5317253080143199, 0.9626288904553877, 0.518871521713375, 0.4244151934213653, 0.8784852709235653, 0.667697582798242, 0.6791650855490978, 0.8659372985570389, 0.5217980090164113, 0.9757802673562255, 0.20769640873195563, 0.6900575067285889, 0.15051833553221247, 0.8476988333501053, 0.12043274000614122, 0.6546311715671466, 0.412102187638673, 0.6339696776630096, 0.6925917751558638, 0.8074446941396305, 0.8417042066658985, 0.4702054036006336, 0.8107456318417504, 0.934253622333564, 0.9671353887875448, 0.3776875782453083, 0.5133306968464912, 0.8279918435672958, 0.7295730380004212, 0.8398957027397556, 0.7470826509089123, 0.7722124156410631, 0.3944809481034696, 0.5801047158883857, 0.7134138458261836, 0.8265590446981121, 0.5836238058504062, 0.7538957359152121, 0.9708936701567454, 0.41507295289487073, 0.9039211350062085, 0.5109703825452502, 0.8880660412534, 0.6332514250278477, 0.703270618172154, 0.863031725372896, 0.9601349291832292, 0.5845797646527732, 0.8357575010967041, 0.9584406458449958, 0.8733333206292072, 0.4740801794177068, 0.5787650908025566, 0.38525623454815555, 0.5715075300165849, 0.951253157591183, 0.831291834366621, 0.6482062646591596, 0.5447536045265621, 0.8456825404777587, 0.5358725178581014, 0.8893400405584444, 0.5955893395860203, 0.9408369636189147, 0.7580589814818564, 0.4244151934213653, 0.7636885291754726, 0.9532052815091139, 0.6686700461744643, 0.39683939049776734, 0.8309978518015588, 0.06774730328187532, 0.8934061610794648, 0.9459413258233057, 0.8507977517004935, 0.9694554821790147, 0.8640493534313302, 0.8409166048571896, 0.9059760843724536, 0.7278052027863667, 0.8952246802917138, 0.39534528644804523, 0.9558702864115934, 0.9178754126151818, 0.7504628435478695, 0.7568870052952757, 0.32046258648166903, 0.9712495894387816, 0.7125870341029702, 0.8286889773580812, 0.929575727770858, 0.8422483936479932, 0.60065365322741, 0.5775074082600717, 0.7505976846167132, 0.5317253080143199, 0.9590110623565244, 0.9651712957082627, 0.7333643603414158, 0.7757825668725274, 0.8928390517037824, 0.2578168736401774, 0.5355488836719776, 0.8408692583280314, 0.7849780542174357, 0.8711681462620556, 0.8447990405440073, 0.9571933326515756, 0.9307123551507692, 0.6421242495412457, 0.9239207054420927, 0.9336219461922934, 0.4244151934213653, 0.5673643045526261, 0.8301442064454496, 0.528471943574542, 0.8835542071774324, 0.8820947700128993, 0.4561713647735051, 0.584381944856391, 0.9493936477483658, 0.7816316980556022, 0.7770145472448273, 0.8495153837633861, 0.8318035560268552, 0.5220388622338656, 0.8589980209217414, 0.21216021099657945, 0.8782303617207965, 0.901850575196968, 0.7683760396387002, 0.9559989503713009, 0.938411491366706, 0.7225398931917507, 0.5918361617892179, 0.8596378534897678, 0.8816239240572568, 0.9296844522785247, 0.8299758417251202, 0.7538846798551382, 0.931253582726863, 0.6902425303942638, 0.9299571155275668, 0.35461708236434614, 0.6119587629530028, 0.8979450471026776, 0.8782891297971865, 0.6144930729026484, 0.5601837238662909, 0.4230258756549153, 0.5115702372514986, 0.6133200318312215, 0.8287048127179734, 0.42887934024879554, 0.5543929044930882, 0.5414149972460248, 0.7453725251924848, 0.6522898344923613, 0.6445138145159856, 0.9212190995841192, 0.6991293681294938, 0.9188224881967051, 0.9444881948020799, 0.8399825546316605, 0.6440269003431431, 0.45260210695563535, 0.6678228102737954, 0.8535669746933884, 0.23469888428232324, 0.7581156815660375, 0.8329520097124233, 0.5886389680190937, 0.4250130050586104, 0.290761161529129, 0.9065968169685268, 0.39757013049667705, 0.9584529405260903, 0.24804178200132845, 0.8400605958344816, 0.9562762484868867, 0.5923100188758571, 0.5355488836719776, 0.6866862751474886, 0.753715093249364, 0.9302702282582556, 0.8405005145861136, 0.7758456574858743, 0.8270123797965384, 0.9270997487744173, 0.8779999285967196, 0.6350604679157676, 0.9057987369792326, 0.9732730617650076, 0.28007269673131574, 0.5393237551960537, 0.9509318156255189, 0.8055358405733448, 0.8512314640165554, 0.6752183046546253, 0.9766791413071304, 0.26893819095773785, 0.5105552073939665, 0.7964242570425004, 0.9159462749375985, 0.46312559485344046, 0.7889853219989779, 0.5331772070153998, 0.6250130361556073, 0.5340700079782073, 0.8981158701031157, 0.8424802355113449], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [0.365, 0.62, 0.27, 0.18, 0.29, 0.28, 0.43, 0.765, 0.785, 0.6, 0.3, 0.19, 0.31, 0.25, 0.29, 0.21, 0.31, 0.38, 0.35, 0.45, 0.28, 0.25, 0.34, 0.41, 0.22, 0.29, 0.41, 0.41, 0.21, 0.2, 0.27, 0.3, 0.73, 0.6, 0.18, 0.19, 0.98, 0.52, 0.12, 0.36, 0.485, 0.58, 0.34, 0.25, 0.43, 0.51, 0.54, 0.6, 0.28, 0.2, 0.25, 0.26, 0.31, 0.64, 0.705, 0.37, 0.61, 0.645, 0.31, 0.42, 0.645, 0.45, 0.27, 0.29, 0.39, 0.91, 0.46, 0.7, 0.775, 0.55, 0.57, 0.34, 0.335, 0.685, 0.24, 0.25, 0.27, 0.31, 0.47, 0.39, 0.13, 0.56, 0.29, 0.5, 0.2, 0.37, 0.16, 0.25, 0.25, 0.5, 0.23, 0.345, 0.27, 0.3, 0.58, 1.58, 0.29, 0.62, 0.64, 0.24, 0.35, 0.42, 0.21, 0.52, 0.33, 0.51, 0.62, 0.5, 0.33, 0.33, 0.6, 0.31, 0.63, 0.3, 0.21, 0.27, 0.24, 0.41, 0.27, 0.56, 0.27, 0.24, 0.61, 0.5, 0.695, 0.65, 0.16, 0.23, 0.695, 0.44, 0.28, 0.33, 0.3, 0.35, 0.34, 0.39, 0.25, 0.66, 0.585, 0.315, 0.29, 0.2, 0.22, 0.18, 0.59, 0.34, 0.21, 0.4, 0.52, 0.37, 0.5, 0.31, 0.43, 0.24, 0.3, 0.31, 0.22, 0.26, 0.28, 0.55, 0.635, 0.32, 0.14, 0.36, 0.59, 0.31, 0.3, 0.14, 0.21, 0.23, 0.31, 0.26, 0.28, 0.17, 0.35, 0.54, 0.39, 0.39, 0.24, 0.15, 0.16, 0.215, 0.38, 0.34, 0.26, 0.3, 0.29, 0.27, 0.28, 0.24, 0.66, 0.25, 0.25, 0.28, 0.4, 0.38, 0.21, 0.3, 0.18, 0.45, 0.67, 0.36, 0.34, 0.24, 0.27, 0.21, 0.31, 0.32, 0.5, 0.31, 0.34, 0.33, 0.48, 0.2, 0.28, 0.39, 0.29, 0.34, 0.34, 0.24, 0.4, 0.27, 0.33, 0.28, 0.18, 0.41, 0.41, 0.27, 0.52, 0.345, 0.33, 0.23, 0.22, 0.23, 0.745, 0.35, 0.12, 0.22, 0.3, 0.22, 0.44, 0.65, 0.21, 0.12, 0.29, 0.32, 0.17, 0.14, 0.4, 0.41, 0.42, 0.44, 0.3, 0.24, 0.29, 0.23, 0.12, 0.3, 0.34, 0.45, 0.46, 0.2, 0.18, 0.18, 0.26, 0.28, 0.47, 0.23, 0.235, 0.33, 0.28, 0.705, 0.16, 0.31, 0.16, 0.28, 0.33, 0.45, 0.675, 0.37, 0.78, 0.28, 0.19, 0.6, 0.62, 0.14, 0.31, 0.555, 0.21, 0.45, 0.26, 0.6, 0.4, 0.62, 0.3, 0.41, 0.41, 0.3, 0.25, 0.59, 0.24, 0.32, 0.25, 0.26, 0.44, 0.475, 0.35, 0.24, 0.28, 0.23, 0.4, 0.27, 0.26, 0.24, 0.27, 0.26, 0.31, 0.26, 0.33, 0.595, 0.26, 0.39, 0.26, 0.23, 0.875, 0.35, 0.33, 0.45, 0.3, 0.335, 0.9, 0.24, 0.19, 0.16, 0.55, 0.21, 0.15, 0.63, 0.22, 0.49, 0.32, 0.44, 0.48, 0.83, 0.61, 0.2, 0.4, 0.365, 0.22, 0.15, 0.23, 0.26], \"xaxis\": \"x2\", \"y\": [0.8142007211296887, 0.07257977436397642, 0.7430932382113554, 0.8214862427787604, 0.5698848321031316, 0.6048119589659149, 0.6466669219762841, 0.14510080060429495, 0.2250304680670007, 0.28492472637839966, 0.42061632734231896, 0.8281252124183194, 0.49622399336621903, 0.3482895521074759, 0.4678833354511545, 0.5708968386647719, 0.37048677721847617, 0.553632248395139, 0.8702137350251022, 0.42186952587750404, 0.8696774950675754, 0.5410576963494411, 0.3971326977900686, 0.3275001196198921, 0.9448289227093116, 0.7109941475090589, 0.41925580570138304, 0.3675472469853882, 0.6721911818800557, 0.5562207270314473, 0.5262426608517637, 0.3244609607385458, 0.15056615442564347, 0.15676979724311627, 0.6037730696030339, 0.6342511279653397, 0.021947035536558718, 0.32429164429335744, 0.5678746850743716, 0.3571680467137555, 0.7755534309390314, 0.3240287891037917, 0.699424662214302, 0.5151532452376618, 0.7564675819717819, 0.38343591026479057, 0.19811005648518398, 0.3168419703358067, 0.5315947262677626, 0.9269044449273315, 0.8260225289794664, 0.451791899378283, 0.830516920403184, 0.47128602930186, 0.19027823806377472, 0.5181346713949518, 0.29552777318700446, 0.45414400334446664, 0.39329840463575844, 0.42327932510626076, 0.45838907164509224, 0.2233864252642039, 0.3628419195926303, 0.6709353200988277, 0.46058046365566996, 0.25551237833043455, 0.7234147543269824, 0.1481282262733752, 0.314935793994079, 0.20050531530561894, 0.37453315488553635, 0.701015529968035, 0.6343341418527783, 0.1739320900588749, 0.734996253073231, 0.8172229478314255, 0.3598554146739685, 0.7121055211356295, 0.2620604909731644, 0.3421138035730516, 0.6951268813066005, 0.35208221297891723, 0.452099210446082, 0.18907620085798427, 0.5444201651108793, 0.6484058972837882, 0.3258186925596978, 0.5963383680780668, 0.6202666247822538, 0.576738593946626, 0.5054992484109841, 0.2972245631729925, 0.6844333356791464, 0.42629475072919953, 0.4405153833121037, 0.01207867704715336, 0.7609288944606691, 0.23951123982998349, 0.09310514674080905, 0.5084920166510624, 0.33067609257366243, 0.36481899584296196, 0.5708968386647719, 0.3194802059637459, 0.14207297841267416, 0.5776897120055972, 0.2026163425795633, 0.37909000048748537, 0.38206764842015895, 0.41324683104354176, 0.17826143731067332, 0.42339414872454434, 0.39148091864802853, 0.3511350413575442, 0.8053393751847749, 0.5937005322868365, 0.6849942580153355, 0.38930033076762494, 0.5168500865319015, 0.5699073288866824, 0.5376087249833421, 0.8185832461647057, 0.25950508036415604, 0.20394483716883388, 0.3303044530853749, 0.2528102968078532, 0.8477719856767125, 0.5217124250004609, 0.3303044530853749, 0.5382885532339231, 0.9625763866028243, 0.6536174904341296, 0.42629475072919953, 0.6458781618432388, 0.46574001023909845, 0.37268733756108086, 0.8180085473348132, 0.35493594975273335, 0.2423640089427935, 0.3636330633241046, 0.6421622311157122, 0.5444201651108793, 0.7396308412796291, 0.9036153464846048, 0.21101569987323432, 0.6004024464464508, 0.7595861882737439, 0.486549602332862, 0.2379839758891197, 0.5147825233229498, 0.2065932277190248, 0.4342628292980428, 0.5940848250235929, 0.4857193175270624, 0.5332610244722983, 0.5402196969638672, 0.8578846895389459, 0.5290225674595067, 0.6074669506688956, 0.1847839155105034, 0.3581391437324269, 0.4304380754474639, 0.8410120374942113, 0.5810086483513661, 0.19026233744636453, 0.7223494520380469, 0.8589928738613049, 0.8374625942163022, 0.781203852328267, 0.73983195178881, 0.41156537259256004, 0.7482873396984137, 0.44431713201158524, 0.7113673874393347, 0.49869552495399233, 0.7627102864663872, 0.37193390769028617, 0.37187810520956766, 0.3773291605703562, 0.8719651627687759, 0.6218762459828849, 0.3781393537983126, 0.553632248395139, 0.47624084907999176, 0.774399353278846, 0.5840424935194366, 0.5601025471409736, 0.6186690618327106, 0.620611700356168, 0.5755798886129706, 0.15047650536569443, 0.5530049338021776, 0.6597439619439023, 0.8300222117931148, 0.3490158529243493, 0.4410646109528086, 0.5067909967309752, 0.5851482063434866, 0.7149827463187939, 0.4849259975950144, 0.2094210588097294, 0.33399024531412796, 0.4083143545243069, 0.7497022835596558, 0.7817929239213606, 0.7637421953724776, 0.3825655414920891, 0.6611482494098961, 0.19022241257108333, 0.44972084577511023, 0.5476732603321269, 0.4831274653996314, 0.5077048340566679, 0.7289504589448288, 0.4379810490617926, 0.8017221455714771, 0.6434673631716396, 0.5059779734745421, 0.6065367192264559, 0.650368705032214, 0.34567471266024347, 0.39561589000187136, 0.3427787545601037, 0.4676404271158623, 0.5332283386400669, 0.4519108142444285, 0.40662831629925006, 0.42305576187259053, 0.22032895172816622, 0.5278715769330472, 0.43679486629948455, 0.743933429392776, 0.5269515041023835, 0.5008800654866953, 0.214168174561682, 0.44879088851457377, 0.683485355417811, 0.807753104897186, 0.42629475072919953, 0.8502951424821861, 0.17421175568219957, 0.25491371883486935, 0.7595861882737439, 0.6571724132942184, 0.7813188949129265, 0.5626906653340306, 0.8674288259883418, 0.6600514650598344, 0.4827749661719035, 0.5456147119159479, 0.39827550056677263, 0.27323823737433794, 0.695896529362927, 0.5048820477254727, 0.5422349097465021, 0.5610936746718964, 0.6571724132942184, 0.3088751107498249, 0.45428761266464013, 0.6604471727860799, 0.43371621376298963, 0.6171893197168647, 0.8100511550343341, 0.8100511550343341, 0.605832578461134, 0.5526475584669951, 0.4275055171336787, 0.8734720021260204, 0.8508295378350301, 0.5807723706867254, 0.8272749548927728, 0.2670652478909882, 0.7020144194675465, 0.4615566916191992, 0.7055847950248242, 0.43389869234556755, 0.6071692164257629, 0.3496825637352313, 0.23676491619791426, 0.7057755976874825, 0.15539001443149586, 0.6187538615870153, 0.8735882828904331, 0.30049486749739024, 0.23191705420611952, 0.8913917397916864, 0.4977157214618499, 0.16961113509580228, 0.8485494795219795, 0.4760032757956232, 0.5053843099270294, 0.2676015269871764, 0.3627664421236291, 0.15146266807038725, 0.7898179638281774, 0.6145296307645981, 0.3790380236797623, 0.3003532640340299, 0.6086112016774773, 0.39906793889171593, 0.8185832461647057, 0.6715802865662828, 0.8260225289794664, 0.6056902064850618, 0.400132762133902, 0.39471961640683584, 0.6449859309106076, 0.5637152910565628, 0.39949420960438964, 0.5490401551410112, 0.4398875418860128, 0.30916577334906253, 0.7093303227687476, 0.4562508424819209, 0.40444044759428516, 0.5773483646962835, 0.447777692034652, 0.4961542215384683, 0.32474312180562226, 0.21192693199409943, 0.9056903490933487, 0.5013816399998683, 0.758876109553896, 0.6364928148646596, 0.2952804752502578, 0.4748951900520853, 0.43679486629948455, 0.5479962315186364, 0.4728142838839701, 0.6343341418527783, 0.12248807650217919, 0.5052525886146573, 0.8281252124183194, 0.8930081609652758, 0.36283726088930296, 0.8098196742550625, 0.656477404357746, 0.193885049884708, 0.5269515041023835, 0.49858469647139786, 0.32780472036158087, 0.24927512797396847, 0.6148718578314069, 0.10691527318901187, 0.136775438340409, 0.8489192718114075, 0.2600203086082801, 0.8142007211296887, 0.5269515041023835, 0.7966615933629455, 0.5633234794197017, 0.767479452333631], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"volatile.acidity\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"volatile.acidity\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}, \"volatile.acidity_bad\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (ref)\", \"type\": \"scatter\", \"x\": [0.46, 0.32, 0.27, 0.6, 0.46, 0.66, 0.58, 0.21, 0.4, 0.41, 0.6, 0.21, 0.3, 0.32, 0.52, 0.37, 0.53, 1.13, 0.26, 1.33, 0.3, 0.31, 1.115, 0.19, 0.685, 0.76, 0.22, 0.69, 0.705, 0.3, 0.805, 0.34, 0.28, 0.23, 0.25, 0.28, 0.16, 0.2, 0.42, 0.25, 0.38, 0.28, 0.1, 0.365, 0.755, 0.26, 0.165, 0.17, 0.31, 0.44, 0.63, 0.305, 0.26, 0.5, 0.27, 0.47, 0.28, 0.51, 0.38, 0.41, 0.6, 0.25, 0.7, 0.21, 0.66, 0.22, 0.47, 0.64, 0.54, 0.17, 0.24, 0.37, 0.41, 0.29, 0.15, 0.31, 0.28, 0.18, 0.77, 0.31, 0.24, 0.28, 0.27, 0.48, 0.3, 0.54, 0.2, 0.52, 0.39, 0.34, 0.37, 0.26, 0.6, 0.41, 0.28, 0.27, 0.22, 0.28, 0.28, 0.28, 0.31, 0.39, 0.21, 0.32, 0.57, 0.41, 0.32, 0.35, 0.43, 0.2, 0.41, 0.15, 0.45, 0.14, 0.43, 0.5, 0.39, 0.25, 1.025, 0.28, 0.33, 0.57, 0.41, 0.35, 0.32, 0.44, 0.26, 0.765, 0.775, 0.28, 0.17, 0.935, 0.29, 0.25, 0.28, 0.34, 0.14, 0.32, 0.27, 0.69, 0.27, 0.27, 0.36, 0.29, 0.33, 0.45, 0.2, 0.21, 0.59, 0.38, 0.28, 0.68, 0.19, 0.56, 0.2, 0.87, 0.42, 0.21, 0.14, 0.45, 0.23, 0.68, 0.46, 0.31, 0.655, 0.25, 0.23, 0.32, 0.34, 0.25, 0.29, 0.23, 0.59, 0.37, 0.44, 0.48, 0.38, 0.3, 0.58, 0.34, 0.32, 1.33, 0.28, 0.33, 0.26, 0.29, 0.93, 0.34, 0.56, 0.29, 0.22, 0.275, 0.32, 0.615, 0.27, 0.755, 0.29, 0.25, 0.33, 0.17, 0.35, 0.5, 0.5, 0.73, 0.26, 0.31, 0.21, 0.35, 0.54, 0.19, 0.22, 0.21, 0.31, 0.25, 0.32, 0.42, 0.46, 0.475, 0.61, 0.42, 0.69, 0.19, 0.31, 0.26, 0.15, 0.38, 0.76, 0.24, 0.36, 0.695, 0.35, 0.25, 0.12, 0.23, 0.17, 0.3, 0.36, 0.26, 0.34, 0.29, 0.45, 0.34, 0.24, 0.27, 0.19, 0.37, 0.4, 0.26, 0.31, 0.52, 0.88, 0.29, 0.28, 0.835, 0.25, 0.345, 0.23, 0.62, 0.28, 0.39, 0.25, 0.41, 0.26, 0.25, 0.2, 0.22, 0.19, 0.2, 0.32, 0.725, 0.23, 0.67, 0.24, 0.32, 0.32, 0.42, 0.58, 0.32, 0.35, 0.415, 0.5, 0.64, 0.34, 0.66, 0.39, 0.29, 0.21, 0.23, 0.34, 0.265, 0.2, 0.29, 0.49, 0.43, 0.33, 0.54, 0.33, 0.695, 0.28, 0.58, 0.915, 0.18, 0.82, 0.14, 0.615, 0.24, 0.34, 0.39, 0.36, 0.39, 0.18, 0.37, 0.64, 0.27, 0.39, 0.32, 0.23, 0.47, 0.28, 0.46, 0.47, 0.25, 0.96, 0.41, 0.32, 0.31, 0.36, 0.25, 0.575, 0.28, 0.28, 0.45, 0.39, 0.24, 0.12, 0.63, 0.37, 0.5, 0.59, 0.42, 0.22, 0.24, 0.2, 0.775, 0.24, 0.61, 0.38, 0.3, 0.24, 0.46, 0.31, 0.52, 0.4, 0.5, 0.19], \"xaxis\": \"x\", \"y\": [0.7197707895473677, 0.05448058807241418, 0.5021256787650443, 0.4710854375480472, 0.7156076129280222, 0.7966690429773311, 0.7265425252145667, 0.16771266951545494, 0.610944103187451, 0.6324527530146118, 0.42180662537268765, 0.2598044700255929, 0.5503032830239416, 0.5632112185661304, 0.6840604465833231, 0.6224375641140001, 0.8071781895370533, 0.9515482366939344, 0.3994071349416132, 0.9677746238863042, 0.572587586261062, 0.7602674855798478, 0.861098734498427, 0.1386074727873, 0.6703360831713621, 0.8064003460928679, 0.3172728283240366, 0.8039094494444462, 0.9186426431335688, 0.6026275969807151, 0.8609701260317718, 0.3485833566260712, 0.3005246278528939, 0.2859113263741919, 0.4978204971029292, 0.5125675444128744, 0.4268860326359044, 0.11791793574572085, 0.440027850275134, 0.4938434408506086, 0.4933189622152446, 0.166194347192407, 0.30200278364192557, 0.6822425768461728, 0.8693180940701344, 0.24112389044610405, 0.43189370387303117, 0.284455178085937, 0.23793737479647703, 0.5535561322468214, 0.7900402576908969, 0.47373775892899717, 0.6055733033081183, 0.7462675017011632, 0.32245623572553406, 0.7612367841042231, 0.36308410170653527, 0.6103993963703384, 0.3965676277125745, 0.2230008284200371, 0.8480025164595866, 0.43585875500482685, 0.24095331994381775, 0.4030652094068704, 0.8951637220162157, 0.2782175630406618, 0.7337660836226194, 0.8352762102164887, 0.6223987562306759, 0.2928263700360406, 0.6563137004068428, 0.16155652477357085, 0.6364666355122575, 0.2186811050870735, 0.27206300237801306, 0.4358901152617537, 0.6136035252376228, 0.07900866299327158, 0.8522855318359817, 0.11906253414448076, 0.3466831105240652, 0.11265227152414181, 0.6302693732121377, 0.7168097665217413, 0.4796298258249143, 0.4476252306691143, 0.3612478268219491, 0.611861930499026, 0.15121036728507153, 0.5363393546692182, 0.16155652477357085, 0.441733396330222, 0.7834276811132227, 0.6364666355122575, 0.44873286860252337, 0.4948960601400133, 0.4172084246960842, 0.5055831714989107, 0.5269082808529498, 0.3737404408311804, 0.4491757516278906, 0.5266720849021, 0.2882430633103308, 0.6066213483726142, 0.83534933450756, 0.2509605867776752, 0.230738949997912, 0.25680675940048736, 0.6858999083789018, 0.27626495444752697, 0.35158671089680515, 0.311480105980391, 0.5950329577300569, 0.4196263877039489, 0.3672198477254309, 0.5488429300958864, 0.6273126624389191, 0.0990306898864649, 0.935036100419004, 0.5556828679884147, 0.6003916802566726, 0.1337843055401957, 0.6898191889393818, 0.46604488826349566, 0.6668872608045229, 0.5998672378660981, 0.14712454771937833, 0.8558065212045691, 0.883276495704891, 0.5544329747085402, 0.38398791005853006, 0.8623310715459079, 0.4482795971615686, 0.4767821080964978, 0.6451659669426603, 0.5099786295438409, 0.11454219273407718, 0.5691587732433696, 0.2398813672346335, 0.8592796956842923, 0.38133093816728936, 0.4754945767078651, 0.2673740541283356, 0.43092180164799054, 0.5981491184574936, 0.7512253043619477, 0.20474988026063612, 0.12337786436138054, 0.6965484670033051, 0.4642254518352117, 0.29034758521725457, 0.7912282271603185, 0.1364389858241727, 0.5326323768611896, 0.3938848007926149, 0.886984727126295, 0.5955398539691413, 0.3667393936023857, 0.35129461810907203, 0.578130474122496, 0.1952086434691429, 0.6982941690158907, 0.6159300986783536, 0.6650580695700093, 0.8007006003287879, 0.13750802167619447, 0.47121416359091395, 0.5691587732433696, 0.5295784007050042, 0.4938434408506086, 0.4240508430342457, 0.1531205555636086, 0.7965770364050346, 0.4829168465516456, 0.6333246955344933, 0.38682769986244625, 0.5589353890471914, 0.30965836575156913, 0.6133571507425741, 0.5363393546692182, 0.5474540697204298, 0.9680074395956593, 0.29703705077451537, 0.7566858385458134, 0.451244026180727, 0.6224939697452743, 0.9340693900855184, 0.1254375450851024, 0.770680513376406, 0.7273231109206828, 0.410671569380914, 0.19928392436820586, 0.44743622108127745, 0.4991477681643879, 0.5443787589855091, 0.826082779912576, 0.5642536294664222, 0.6762559922350657, 0.39283078357423706, 0.3074847569358159, 0.40732461839200396, 0.5614584986504241, 0.5614584986504241, 0.575628870274347, 0.1938881144566701, 0.6480440770440566, 0.23946299348505806, 0.6110142157087575, 0.32489046344192996, 0.127020290619695, 0.28948900574123104, 0.27970970921902805, 0.5179212029104148, 0.579807192000203, 0.5695619245525361, 0.7471497674522103, 0.6761943115269239, 0.6052803835931642, 0.9048996801452402, 0.632953623191418, 0.7849920634816455, 0.12946409768986655, 0.3899257470968539, 0.37735505673750047, 0.27206300237801306, 0.6356505945299911, 0.9000798247851504, 0.5852448485124296, 0.3537739535016634, 0.8589709040748648, 0.5105041430354158, 0.4760479563081992, 0.3915586115462193, 0.4344526143297297, 0.04825794875232026, 0.25106204840173363, 0.5352062615150248, 0.2084678736174792, 0.5588772074146924, 0.42656597432725707, 0.3395528272139201, 0.5154796814541086, 0.30312695461308037, 0.4684625037801391, 0.13140485141127656, 0.37575572516499556, 0.7087902803012941, 0.22740617784346517, 0.7932370230268412, 0.6977827466507267, 0.8687065743771458, 0.3532210556477622, 0.3005246278528939, 0.8817461779308045, 0.5897758288136841, 0.5117334773877459, 0.2267712913026929, 0.7462523759498982, 0.5055831714989107, 0.6276122794572256, 0.34766968675436505, 0.563322001169588, 0.4035281086421867, 0.44827723495654004, 0.7588644006503809, 0.17560197311170134, 0.2736156405730563, 0.5646478519097824, 0.12788772013874206, 0.8127608550985441, 0.35130933230290007, 0.8842329534318195, 0.5671758377024384, 0.508518787579709, 0.4735654621913231, 0.6614347321502836, 0.7032589073748752, 0.418601168771625, 0.40262233345395115, 0.38045938978299354, 0.6221728234115828, 0.6769388667590319, 0.825791915264051, 0.8036522945246104, 0.5350776523934957, 0.5038683203672731, 0.4187790963850706, 0.3942708224564714, 0.36585282612655, 0.42973128126448334, 0.1395024853671747, 0.36909778672938764, 0.5126700875045708, 0.31128511290513083, 0.5841805470690385, 0.42932394036482613, 0.5168725346003686, 0.9331527243268325, 0.5090935678835011, 0.848083892739094, 0.7288594688776423, 0.23463814542978878, 0.9073343486287574, 0.5445649372592127, 0.8030108083542629, 0.30698149193503155, 0.47724620771884374, 0.49565431290071005, 0.29179072192325783, 0.53941953634433, 0.32642767658125227, 0.5714063949384225, 0.6769388667590319, 0.48314991346809855, 0.3838692085325581, 0.7654355578102645, 0.6807995217458978, 0.7803105409218809, 0.4971816769068883, 0.5662837862370104, 0.32557907866588853, 0.4059739580227363, 0.8621668957327787, 0.4863555612469991, 0.44913520001249685, 0.5044088987161788, 0.018560580499064172, 0.17397747102053363, 0.8203404366189, 0.531551035274026, 0.3951880410340851, 0.6710839680909022, 0.7545393605546251, 0.25029771644034415, 0.31651464458218903, 0.7900402576908969, 0.7649542174153934, 0.6282404390050247, 0.5124469561170844, 0.7501741577575001, 0.3717170374651112, 0.5479204837841629, 0.1799627586960565, 0.8716748635647116, 0.4700369344869263, 0.7044722268129955, 0.7597806244765397, 0.4570971226262448, 0.3688130253756654, 0.5854022956087224, 0.6067015953642416, 0.6092966434658947, 0.5713009051869427, 0.15316343939585397, 0.31191498773739224], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [0.24, 0.19, 0.33, 0.1, 0.33, 0.36, 0.37, 0.19, 0.23, 0.27, 0.19, 0.57, 0.12, 0.26, 0.25, 0.37, 0.18, 0.685, 0.335, 0.2, 0.26, 0.4, 0.21, 0.25, 0.3, 0.24, 0.3, 0.43, 0.145, 0.66, 0.27, 0.48, 0.24, 0.17, 0.24, 0.2, 0.23, 0.34, 0.44, 0.26, 0.2, 0.08, 0.23, 0.22, 0.24, 0.15, 0.34, 0.47, 0.27, 0.43, 0.15, 0.35, 0.19, 0.19, 0.27, 0.27, 0.44, 0.21, 0.51, 0.4, 0.44, 0.65, 0.22, 0.14, 0.38, 0.6, 0.28, 0.21, 0.31, 0.21, 0.32, 0.37, 0.21, 0.3, 0.37, 0.22, 0.35, 0.24, 0.635, 0.36, 0.21, 0.22, 0.18, 0.27, 0.4, 0.15, 0.18, 0.45, 0.33, 0.4, 0.31, 0.39, 0.17, 0.16, 0.15, 0.35, 0.24, 0.29, 0.25, 0.18, 0.14, 0.25, 0.44, 0.27, 0.24, 0.17, 0.38, 0.11, 0.22, 0.855, 0.27, 0.33, 0.31, 0.25, 0.28, 0.48, 0.34, 0.13, 0.23, 0.36, 0.18, 0.26, 0.27, 0.18, 0.53, 0.51, 0.51, 0.3, 0.2, 0.66, 0.17, 0.455, 0.22, 0.38, 0.25, 0.29, 0.43, 0.855, 0.42, 0.46, 0.18, 0.15, 0.23, 0.24, 0.4, 0.23, 0.23, 0.2, 0.46, 0.13, 0.15, 0.5, 0.23, 0.3, 0.23, 0.31, 0.2, 0.34, 0.22, 0.21, 0.27, 0.63, 0.125, 0.51, 0.38, 0.21, 0.32, 0.23, 0.27, 0.44, 0.44, 0.34, 0.15, 0.23, 0.41, 0.69, 0.53, 0.17, 0.39, 0.635, 0.34, 0.27, 0.2, 0.3, 0.32, 0.235, 0.62, 0.18, 0.28, 0.15, 0.21, 0.66, 0.55, 0.55, 0.59, 0.28, 0.28, 0.23, 0.26, 0.19, 0.16, 0.32, 0.28, 0.62, 0.27, 0.34, 0.24, 0.29, 0.19, 0.36, 0.23, 0.25, 0.28, 0.27, 0.26, 0.23, 0.21, 0.2, 0.18, 0.44, 0.2, 0.21, 0.29, 0.21, 0.27, 0.17, 0.26, 0.17, 0.24, 0.15, 0.32, 0.36, 0.76, 0.28, 0.28, 0.21, 0.15, 0.19, 0.17, 0.29, 0.26, 0.23, 0.21, 0.44, 0.745, 0.27, 0.26, 0.25, 0.29, 0.29, 0.22, 0.19, 0.47, 0.31, 0.4, 0.21, 0.43, 0.2, 0.21, 0.3, 0.105, 0.27, 0.19, 0.34, 0.29, 0.3, 0.43, 0.4, 0.53, 0.3, 0.17, 0.67, 0.28, 0.17, 0.34, 0.25, 0.18, 0.3, 0.66, 0.39, 0.29, 0.24, 0.11, 0.28, 0.36, 0.29, 0.35, 0.2, 0.56, 0.2, 0.18, 0.37, 0.28, 0.39, 0.29, 0.28, 0.6, 0.27, 0.18, 0.2, 0.58, 0.25, 0.43, 0.2, 0.16, 0.36, 0.21, 0.14, 0.25, 0.36, 0.38, 0.24, 0.395, 0.18, 0.16, 0.27, 0.17, 0.32, 0.23, 0.25, 0.3, 0.22, 0.22, 0.41, 0.21, 0.65, 0.24, 0.27, 0.3, 0.3, 0.29, 0.27, 0.26, 0.255, 0.19, 0.19, 0.2, 0.66, 0.25, 0.18, 0.35, 0.28, 0.25, 0.18, 0.53, 0.28, 0.18, 1.0, 0.58, 0.25, 0.16, 0.16, 0.18, 0.18, 0.27, 0.2, 0.36, 0.3, 0.18, 0.48, 0.4, 0.26, 0.29, 0.39, 0.63, 0.26, 0.3, 0.15, 0.31, 0.28, 0.275, 0.19, 0.24, 0.71, 0.64, 0.22, 0.21, 0.83, 0.22, 0.43, 0.49, 0.25, 0.58, 0.34, 0.34, 0.23, 0.54, 0.4, 0.28, 0.25, 0.44, 0.28, 0.3, 0.35, 0.21, 0.31, 0.22, 0.45, 0.27, 0.58, 0.62, 0.62, 0.58, 0.28, 0.25, 0.25, 0.25, 0.34, 0.41, 0.44, 0.295, 0.33, 0.28, 0.16, 0.36, 0.25, 0.37, 0.23, 0.46, 0.42, 0.18, 0.22, 0.31, 0.15, 0.23, 0.26, 0.2, 0.16, 0.45, 0.32, 0.35, 0.33, 0.25, 0.16, 0.24, 0.46, 0.76, 0.68, 0.3, 0.31, 0.31, 0.21, 0.2, 0.42, 0.21, 0.23, 0.29, 0.23, 0.24, 0.12, 0.25, 0.32, 0.315, 0.16, 0.18, 0.37, 0.17, 0.6, 0.17, 0.15, 0.45, 0.4, 0.35, 0.27, 0.14, 0.67, 0.33, 0.19, 0.26, 0.4, 0.66, 0.3, 0.18, 0.23, 0.4, 0.115, 0.3, 0.28, 0.21, 0.2, 0.36, 0.18, 0.22, 0.26, 0.36, 0.28, 0.32, 0.23, 0.37, 0.41, 0.23, 0.58, 0.2, 0.18, 0.305, 0.2, 0.16, 0.21, 0.3, 0.18, 0.54, 0.31, 0.31, 0.23, 0.34, 0.23, 0.26, 0.29, 0.24, 0.3, 0.19, 0.26, 0.2, 0.38, 0.35, 0.37, 0.24, 0.52, 0.22, 0.53, 0.2, 0.29, 0.31, 0.13, 0.63, 0.2, 0.37, 0.26, 0.19, 0.37, 0.4, 0.36, 0.28, 0.29, 0.16, 0.545, 0.18, 0.38, 0.18, 0.32, 0.24, 0.26, 0.26, 0.18, 0.28, 0.29, 0.38, 0.14, 0.46, 0.28, 0.14, 0.44, 0.18, 0.23, 0.17, 0.65, 0.18, 0.43, 0.29, 0.17, 0.3, 0.22, 0.34, 0.41, 0.42, 0.3, 0.23, 0.16, 0.27, 0.28, 0.2, 0.16, 0.2, 0.36, 0.2, 0.23, 0.17, 0.26, 0.35, 0.27, 0.26, 0.32, 0.19, 0.51, 0.17, 0.63, 0.53, 0.26, 0.1, 0.29, 0.49, 0.32, 0.27, 0.26, 0.44, 0.24, 0.34, 0.59, 0.32, 0.42, 0.16, 0.13, 0.24, 0.24, 0.3, 0.34, 0.22, 0.13, 0.21, 0.19, 0.29, 0.43, 0.34, 0.825, 0.31, 0.3, 0.125, 0.29, 0.37, 0.755, 0.19, 0.25, 0.31, 0.55, 0.32, 0.26, 0.28, 0.37, 0.34, 0.19, 0.17, 0.23, 0.19, 0.36, 0.31, 0.18, 0.32, 0.34, 0.23, 0.35, 0.13, 0.67, 0.62, 0.24, 0.18], \"xaxis\": \"x\", \"y\": [0.18439386755371057, 0.5750868907731637, 0.1132172353536568, 0.19850047615697952, 0.6950004168934912, 0.41826441672946313, 0.040828937665112974, 0.2145583871630251, 0.09143093017991866, 0.10013996234885614, 0.3658834999306372, 0.587897812361327, 0.23563705889496211, 0.5289998061994394, 0.5981734696485812, 0.5956194363709464, 0.11295199838815062, 0.6349332021584286, 0.09356782907078887, 0.0672754654033908, 0.3541579814831264, 0.11781588709523827, 0.3295981493457443, 0.23443288181779365, 0.13830133810679424, 0.5122546205578999, 0.03626449638205209, 0.32057959349203036, 0.3955164844050859, 0.21320459763992916, 0.08620177311633537, 0.4132497936565127, 0.19514157099220286, 0.028148892894647393, 0.03728071159582558, 0.20213762816504022, 0.39088790332760825, 0.10566618212719892, 0.11466232649727714, 0.09544364959788487, 0.07351553674018241, 0.3657542344632553, 0.05859665738698361, 0.43634835962676355, 0.4827032077898804, 0.516310366273556, 0.6480037931050455, 0.21122004543372697, 0.030344760075157406, 0.22750344576024595, 0.18673438423788624, 0.5460909738859347, 0.0666291073587214, 0.320234954276134, 0.515425573770442, 0.5751179393061847, 0.3262180383913996, 0.12192585741802231, 0.6165939755266235, 0.09365914315081003, 0.44259853952477324, 0.31958523161407537, 0.09228899111547839, 0.22815273642701062, 0.5282447951108347, 0.7777719169155834, 0.13834506443323813, 0.29425092810710396, 0.5300870647699181, 0.031947521718024174, 0.1108646816717751, 0.053339747820140615, 0.14466174791529418, 0.25697560969337485, 0.3383868137798065, 0.30803904997837983, 0.03434255320493995, 0.08689109251212201, 0.46044782253877736, 0.0973761441498977, 0.3449058470623745, 0.024212367984770777, 0.11665042079727428, 0.3333970234137619, 0.1495417879159372, 0.0679784404121434, 0.2360052425084116, 0.39147703437781534, 0.04428683932015287, 0.5381556738404795, 0.4357341587922019, 0.11843845992675284, 0.28107964630818494, 0.06989794698232743, 0.2658605825653322, 0.22408104406272966, 0.15519213452661884, 0.09873339188795927, 0.10739713799337769, 0.4712507279726723, 0.31257930793611366, 0.6259141532505736, 0.1651629894813923, 0.13024327386797574, 0.08242409751896962, 0.55355901104019, 0.11256152515999429, 0.22124325125588817, 0.05838775174278421, 0.6734770756819889, 0.06919042490492266, 0.5773286546676725, 0.5693181878572973, 0.12726917141891614, 0.27983888222674136, 0.15690954109554833, 0.18593824584442387, 0.05432525584274117, 0.33273366741371935, 0.12435295831370408, 0.48112847828662497, 0.2959384652215836, 0.5042039768350125, 0.3749869638443927, 0.7258627386781167, 0.4806866421912115, 0.6234335830956541, 0.4191951896523489, 0.20821728825178332, 0.6343085651912675, 0.27674577061671146, 0.02140654255666985, 0.42849246998341506, 0.1817444030106703, 0.4551538855951942, 0.05087080041524106, 0.516641204200833, 0.6810720245435042, 0.08151744899857294, 0.4475169494323581, 0.03995706953508171, 0.2181819033834006, 0.20372897255157485, 0.24305701296248816, 0.5381556738404795, 0.2358485729609252, 0.051323642447754336, 0.1913631294907303, 0.32154631204965056, 0.31229802093755377, 0.3917329141436472, 0.39462053822053156, 0.3680669306910641, 0.5017894292511481, 0.32120711190509066, 0.0768019282386515, 0.1168769044932052, 0.31545143431826594, 0.12007957373947853, 0.08354361700756141, 0.2180731800932174, 0.7653011157176768, 0.05076221583963347, 0.11739077279846111, 0.3639458403519926, 0.4815918747301601, 0.35998732468747585, 0.457353694020342, 0.5520498791697908, 0.22168281241722143, 0.2132287846887433, 0.4763394582576197, 0.3040153802820409, 0.20749766415549342, 0.3316810644107503, 0.8126297477835096, 0.5749367295182395, 0.27274039590582944, 0.2685808245693546, 0.5172108675362206, 0.33506587713796443, 0.09616672688355288, 0.041108213935392324, 0.10548050716105373, 0.5016695616404938, 0.20022874051447226, 0.14220640128276774, 0.23772630779738468, 0.19606080251004787, 0.2603188495268066, 0.18846597668723208, 0.19827111133563302, 0.261548791893628, 0.4140325207077993, 0.8134796325151183, 0.12265695643958285, 0.6311167068993262, 0.13481820177301163, 0.0932384579037443, 0.14050160114126486, 0.2562249115981724, 0.08547750670655718, 0.08643201081848362, 0.19981675431015722, 0.31390222338706264, 0.06221739913672386, 0.06996303880871468, 0.30029370289300306, 0.4306817897420764, 0.6595343859760441, 0.2839408857911616, 0.20468539219890003, 0.1130196126722065, 0.2360017176902124, 0.13187147729288817, 0.42313120297864704, 0.06964897436687001, 0.1624399718171824, 0.17200815643270417, 0.07333105637055992, 0.2440137653363641, 0.4900110333069776, 0.3085554157386313, 0.03480496731142946, 0.12148031785507996, 0.15002971926037112, 0.5314247042003052, 0.2758453007685677, 0.2151852748992088, 0.2658605825653322, 0.29911225563077193, 0.6594110243744711, 0.49869782335001445, 0.16788254706683048, 0.11816213334465087, 0.08230909248122409, 0.13653212507346946, 0.25639170942272826, 0.06562233405876228, 0.23311900627036541, 0.3756616197417655, 0.46674395287949066, 0.3092684534350997, 0.8337319641197457, 0.8331457111467163, 0.2591056156836542, 0.4778687671024334, 0.2542440524586721, 0.5361036306539362, 0.07073721340803463, 0.4731688813159418, 0.5755848065786346, 0.356689463387698, 0.14225616860197343, 0.21837916002376445, 0.14466174791529418, 0.29899643271856946, 0.4757427727983842, 0.08126799884203029, 0.1296501822378736, 0.3286954654423938, 0.08620177311633537, 0.13855855420831553, 0.05543377339452393, 0.11917834098009661, 0.2613621884509647, 0.11269900223777074, 0.08429051026621415, 0.3393961441870107, 0.07031960314855146, 0.11356777592095357, 0.4853279864284006, 0.1279289285514792, 0.0584572339054259, 0.08612988585012649, 0.3472440907423937, 0.1248029959061332, 0.07502335399434323, 0.19827111133563302, 0.3424151534036639, 0.3065175956815872, 0.13808860398564737, 0.058092197534895806, 0.04082786106581715, 0.1602592849246841, 0.09156161599234125, 0.5036030690663805, 0.2640411824475748, 0.6468038092930676, 0.07201805208597656, 0.22470230804277058, 0.1334773721572423, 0.04847889440667685, 0.2685808245693546, 0.10911308148570098, 0.6764508967260475, 0.6280060594576413, 0.36761958218269275, 0.16019930342079847, 0.17605308658107655, 0.14078981831089854, 0.2384997092801764, 0.13117402490907393, 0.12818959986091483, 0.4161925244315118, 0.12435295831370408, 0.09814942480303201, 0.05480698563416486, 0.3746187330143109, 0.41092354232892336, 0.507894749900129, 0.5137929421583434, 0.08293523366016065, 0.2964416548030494, 0.15236141109070434, 0.4396941021426354, 0.41893931094950754, 0.09113953260801844, 0.10967473999240707, 0.055732078845942, 0.05640314085190745, 0.06176263301115803, 0.06427139521062619, 0.20386133178572885, 0.21597661143113533, 0.7486409492386699, 0.2610715902497083, 0.09465277491899493, 0.5556171757583562, 0.137718889647652, 0.1978940751503777, 0.08472590699531857, 0.356262641598029, 0.14596950445002987, 0.13865818299932142, 0.3088915816821678, 0.11516321289421916, 0.16121169033174265, 0.40573483691789825, 0.34308606282264, 0.36300204724896845, 0.17193414756867276, 0.035926383178341514, 0.34536882843285344, 0.4400180463892147, 0.5165194668234709, 0.23319834124303085, 0.9637923675569924, 0.2635599134550337, 0.6259141532505736, 0.12324962258280003, 0.1256037712827487, 0.1248029959061332, 0.11665042079727428, 0.29081136443782263, 0.12993062945549005, 0.20959981847797426, 0.12385816607190492, 0.16931651488884025, 0.2468284110987674, 0.6181879252747016, 0.3509541008179864, 0.08619429866610873, 0.09537770951135394, 0.8204393830764495, 0.2493836920976743, 0.10367142046182065, 0.11516383353466464, 0.07169627826225977, 0.5400384130096556, 0.2709141565803237, 0.16809050322974173, 0.3421981324687273, 0.812724325423183, 0.1326589750154965, 0.054670132935181304, 0.055346153509382656, 0.8039442695404772, 0.3276168958360183, 0.6561718697940482, 0.6214102617950452, 0.3046829516703813, 0.7853649284745584, 0.7303620793003476, 0.6719087507962026, 0.16000678121984613, 0.579612101366232, 0.6347749924714103, 0.41894393066564606, 0.06936532322770372, 0.28322834609079706, 0.343263893078516, 0.4450860003239352, 0.3090838478611311, 0.408095736797927, 0.11529682880263803, 0.13359771811640497, 0.2417229185475579, 0.10092265889692065, 0.8181934133883563, 0.3777834313813965, 0.8273808576462511, 0.18439353202429143, 0.5148786056082297, 0.11287077888712382, 0.16015059460472458, 0.29672938182784603, 0.36944561074938853, 0.2505850522824452, 0.8467591712977676, 0.3840267097226593, 0.261779448872241, 0.1645479955558209, 0.14631295673285594, 0.4248523287309329, 0.09222807982804315, 0.2121484308544801, 0.33273366741371935, 0.5470626312455473, 0.8294144697045585, 0.25206662215500397, 0.15998368749433245, 0.548322128117227, 0.3917329141436472, 0.15981565308588508, 0.23631147082452741, 0.21082920466209698, 0.1871387197916503, 0.24774693401855818, 0.1913242313933492, 0.16437448769677154, 0.07582203648947516, 0.032541140295091364, 0.06311143057978008, 0.5009235508757715, 0.12343879567504301, 0.445735807756371, 0.40322837553658053, 0.09397553936597514, 0.1598391281143201, 0.26702494168661406, 0.19782301216908982, 0.06831823449824892, 0.5451167746582685, 0.20142160156100697, 0.25747632252511843, 0.4257317671215596, 0.5062318064185062, 0.10278357133077332, 0.10857266292312517, 0.06223864817381186, 0.11377411494697365, 0.14082424186384768, 0.2589321903149734, 0.31776639873426016, 0.07983414941561229, 0.30174211068680845, 0.42532907678292176, 0.23734670470511587, 0.2862296469110084, 0.24790288035387664, 0.5526146374040077, 0.20425399436950087, 0.5166825128498294, 0.12415322942140417, 0.5310696157212036, 0.3866387435262121, 0.14313186082947948, 0.31648660326859934, 0.026792916001305622, 0.7856428374245099, 0.42383310375799566, 0.5944566396871084, 0.6256605001243821, 0.08813642250468567, 0.03544811528140901, 0.06935406654889886, 0.15751976448865512, 0.22608551288474832, 0.3127311228465576, 0.1409438166611655, 0.3285615524533705, 0.3591330499592894, 0.47964497307801546, 0.7143146030302826, 0.14223944449319303, 0.06929054967731618, 0.32120711190509066, 0.16913647442041335, 0.707286257884667, 0.3230684446475647, 0.7616845263358343, 0.4104900542879092, 0.10053249234255524, 0.1106599594415556, 0.1543174595222413, 0.46003879185641183, 0.3811350878514418, 0.07185070571861518, 0.23882593985771994, 0.5344976262521839, 0.11031385635331636, 0.09610989844306939, 0.4955559099445003, 0.07845190603324759, 0.30697262074812925, 0.12767551958037127, 0.4375661224395835, 0.07737023387634634, 0.15307682457740834, 0.05694427046787409, 0.09028836937410878, 0.4011292297732457, 0.6186146927451245, 0.11561676905211238, 0.0993047499370594, 0.08102401279833105, 0.8100206966555492, 0.10768932514586738, 0.15386113005635593, 0.4026560765644126, 0.045535707525545144, 0.08229583319403, 0.08227601457953415, 0.8241544781987433, 0.0759900855540333, 0.5147505197509459, 0.11103147778198663, 0.42144961755966015, 0.24880465403270857, 0.3112403223054312, 0.3282460941643247, 0.28312386083977936, 0.2865521931047814, 0.16537364909659502, 0.4284132019637321, 0.34116073112729894, 0.051142721309942685, 0.10794707492381372, 0.1108646816717751, 0.29201805921023904, 0.07365131996157204, 0.36851051207096197, 0.2556143611338999, 0.07392456180697715, 0.045535707525545144, 0.15025986810093994, 0.4395989822566938, 0.19636656988846957, 0.21018464628148859, 0.15085686628779282, 0.3429118439192298, 0.16104008564300487, 0.2055862423584408, 0.18673310211333727, 0.5528531989583015, 0.20219789553586287, 0.5807830339134155, 0.6112381610839525, 0.07515362639458067, 0.5722084734915175, 0.3654892991508686, 0.1991057466826236, 0.4912569401667811, 0.05850610073101081, 0.3077884117234785, 0.17038242498240874, 0.14066607718466684, 0.10248584652416493, 0.4022873718442217, 0.07205214632436985, 0.35142291824287475, 0.10941760034103376, 0.06679271580157364, 0.05675388891699207, 0.058987921856350156, 0.3660303223369904, 0.28790374422385034, 0.4158290962648631, 0.40710291595796666, 0.09934102670994882, 0.06362846635195196, 0.30921476208988685, 0.23242198019285765, 0.055541210656895434, 0.5297663836663529, 0.10744632778983743, 0.18410212910939194, 0.17721960751489196, 0.1962664672709783, 0.1617648996714035, 0.10584426414108294, 0.5203501665477333, 0.07365131996157204, 0.31578819840495265, 0.35364190165315845, 0.1707951928721818, 0.41655733121321636, 0.15801546378512366, 0.7568436608419439, 0.22368578646300386, 0.0609449253562836, 0.2225096762928218, 0.18587673368692093, 0.05559101133196209, 0.569598540521716, 0.08073228430722412, 0.15724041301590164, 0.12879141548479, 0.4306817897420764, 0.17998791969802397, 0.41280880088413996, 0.5723062335690389, 0.6457404130724687, 0.10420061808672998, 0.12564769853034463, 0.21795029564941848, 0.4720930498870375, 0.11304202998506685, 0.545112257205237, 0.14852188644910969, 0.17217029085021085, 0.336250902618187, 0.48671482860553816, 0.5093433434984792, 0.35847801144896685, 0.3008706318705062, 0.18494609259573758, 0.4199330463236065, 0.04162287990776414, 0.2633909944023186, 0.4252182303976608, 0.4684623303117058, 0.1925553058603695, 0.09610989844306939, 0.09129843496680234, 0.3302708189676917, 0.4199330463236065, 0.11927294568859859, 0.4864154015695107, 0.06472081497616611, 0.6387929002666255, 0.37932906694235924, 0.093713747684541, 0.20627971812824875], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (curr)\", \"type\": \"scatter\", \"x\": [0.365, 0.62, 0.27, 0.18, 0.29, 0.28, 0.43, 0.765, 0.785, 0.6, 0.3, 0.19, 0.31, 0.25, 0.29, 0.21, 0.31, 0.38, 0.35, 0.45, 0.28, 0.25, 0.34, 0.41, 0.22, 0.29, 0.41, 0.41, 0.21, 0.2, 0.27, 0.3, 0.73, 0.6, 0.18, 0.19, 0.98, 0.52, 0.12, 0.36, 0.485, 0.58, 0.34, 0.25, 0.43, 0.51, 0.54, 0.6, 0.28, 0.2, 0.25, 0.26, 0.31, 0.64, 0.705, 0.37, 0.61, 0.645, 0.31, 0.42, 0.645, 0.45, 0.27, 0.29, 0.39, 0.91, 0.46, 0.7, 0.775, 0.55, 0.57, 0.34, 0.335, 0.685, 0.24, 0.25, 0.27, 0.31, 0.47, 0.39, 0.13, 0.56, 0.29, 0.5, 0.2, 0.37, 0.16, 0.25, 0.25, 0.5, 0.23, 0.345, 0.27, 0.3, 0.58, 1.58, 0.29, 0.62, 0.64, 0.24, 0.35, 0.42, 0.21, 0.52, 0.33, 0.51, 0.62, 0.5, 0.33, 0.33, 0.6, 0.31, 0.63, 0.3, 0.21, 0.27, 0.24, 0.41, 0.27, 0.56, 0.27, 0.24, 0.61, 0.5, 0.695, 0.65, 0.16, 0.23, 0.695, 0.44, 0.28, 0.33, 0.3, 0.35, 0.34, 0.39, 0.25, 0.66, 0.585, 0.315, 0.29, 0.2, 0.22, 0.18, 0.59, 0.34, 0.21, 0.4, 0.52, 0.37, 0.5, 0.31, 0.43, 0.24, 0.3, 0.31, 0.22, 0.26, 0.28, 0.55, 0.635, 0.32, 0.14, 0.36, 0.59, 0.31, 0.3, 0.14, 0.21, 0.23, 0.31, 0.26, 0.28, 0.17, 0.35, 0.54, 0.39, 0.39, 0.24, 0.15, 0.16, 0.215, 0.38, 0.34, 0.26, 0.3, 0.29, 0.27, 0.28, 0.24, 0.66, 0.25, 0.25, 0.28, 0.4, 0.38, 0.21, 0.3, 0.18, 0.45, 0.67, 0.36, 0.34, 0.24, 0.27, 0.21, 0.31, 0.32, 0.5, 0.31, 0.34, 0.33, 0.48, 0.2, 0.28, 0.39, 0.29, 0.34, 0.34, 0.24, 0.4, 0.27, 0.33, 0.28, 0.18, 0.41, 0.41, 0.27, 0.52, 0.345, 0.33, 0.23, 0.22, 0.23, 0.745, 0.35, 0.12, 0.22, 0.3, 0.22, 0.44, 0.65, 0.21, 0.12, 0.29, 0.32, 0.17, 0.14, 0.4, 0.41, 0.42, 0.44, 0.3, 0.24, 0.29, 0.23, 0.12, 0.3, 0.34, 0.45, 0.46, 0.2, 0.18, 0.18, 0.26, 0.28, 0.47, 0.23, 0.235, 0.33, 0.28, 0.705, 0.16, 0.31, 0.16, 0.28, 0.33, 0.45, 0.675, 0.37, 0.78, 0.28, 0.19, 0.6, 0.62, 0.14, 0.31, 0.555, 0.21, 0.45, 0.26, 0.6, 0.4, 0.62, 0.3, 0.41, 0.41, 0.3, 0.25, 0.59, 0.24, 0.32, 0.25, 0.26, 0.44, 0.475, 0.35, 0.24, 0.28, 0.23, 0.4, 0.27, 0.26, 0.24, 0.27, 0.26, 0.31, 0.26, 0.33, 0.595, 0.26, 0.39, 0.26, 0.23, 0.875, 0.35, 0.33, 0.45, 0.3, 0.335, 0.9, 0.24, 0.19, 0.16, 0.55, 0.21, 0.15, 0.63, 0.22, 0.49, 0.32, 0.44, 0.48, 0.83, 0.61, 0.2, 0.4, 0.365, 0.22, 0.15, 0.23, 0.26], \"xaxis\": \"x2\", \"y\": [0.18579927887031134, 0.9274202256360236, 0.2569067617886446, 0.17851375722123963, 0.43011516789686843, 0.3951880410340851, 0.35333307802371594, 0.854899199395705, 0.7749695319329993, 0.7150752736216004, 0.5793836726576811, 0.17187478758168062, 0.503776006633781, 0.6517104478925241, 0.5321166645488455, 0.4291031613352281, 0.6295132227815239, 0.446367751604861, 0.12978626497489776, 0.578130474122496, 0.1303225049324246, 0.4589423036505589, 0.6028673022099313, 0.6724998803801079, 0.055171077290688375, 0.28900585249094113, 0.5807441942986169, 0.6324527530146118, 0.32780881811994433, 0.4437792729685527, 0.47375733914823626, 0.6755390392614542, 0.8494338455743565, 0.8432302027568838, 0.3962269303969661, 0.36574887203466033, 0.9780529644634413, 0.6757083557066426, 0.43212531492562845, 0.6428319532862445, 0.2244465690609686, 0.6759712108962084, 0.300575337785698, 0.4848467547623382, 0.24353241802821812, 0.6165640897352094, 0.801889943514816, 0.6831580296641933, 0.4684052737322374, 0.07309555507266852, 0.17397747102053363, 0.548208100621717, 0.16948307959681597, 0.5287139706981401, 0.8097217619362252, 0.48186532860504816, 0.7044722268129955, 0.5458559966555334, 0.6067015953642416, 0.5767206748937392, 0.5416109283549078, 0.7766135747357961, 0.6371580804073698, 0.3290646799011723, 0.53941953634433, 0.7444876216695655, 0.27658524567301757, 0.8518717737266248, 0.685064206005921, 0.7994946846943811, 0.6254668451144636, 0.29898447003196504, 0.36566585814722175, 0.8260679099411251, 0.265003746926769, 0.18277705216857454, 0.6401445853260315, 0.2878944788643705, 0.7379395090268356, 0.6578861964269485, 0.3048731186933995, 0.6479177870210828, 0.5479007895539181, 0.8109237991420157, 0.4555798348891207, 0.35159410271621183, 0.6741813074403022, 0.40366163192193316, 0.3797333752177462, 0.42326140605337403, 0.49450075158901585, 0.7027754368270075, 0.31556666432085356, 0.5737052492708005, 0.5594846166878963, 0.9879213229528466, 0.23907110553933086, 0.7604887601700165, 0.906894853259191, 0.49150798334893764, 0.6693239074263375, 0.635181004157038, 0.4291031613352281, 0.6805197940362542, 0.8579270215873258, 0.42231028799440284, 0.7973836574204367, 0.6209099995125147, 0.617932351579841, 0.5867531689564582, 0.8217385626893267, 0.5766058512754557, 0.6085190813519714, 0.6488649586424557, 0.19466062481522506, 0.4062994677131635, 0.31500574198466447, 0.6106996692323751, 0.48314991346809855, 0.4300926711133176, 0.4623912750166579, 0.18141675383529432, 0.7404949196358439, 0.7960551628311661, 0.6696955469146251, 0.7471897031921468, 0.15222801432328747, 0.4782875749995391, 0.6696955469146251, 0.4617114467660769, 0.0374236133971757, 0.34638250956587036, 0.5737052492708005, 0.35412183815676124, 0.5342599897609015, 0.6273126624389191, 0.1819914526651868, 0.6450640502472667, 0.7576359910572065, 0.6363669366758954, 0.35783776888428775, 0.4555798348891207, 0.2603691587203709, 0.09638465351539516, 0.7889843001267657, 0.3995975535535492, 0.2404138117262561, 0.5134503976671381, 0.7620160241108803, 0.4852174766770502, 0.7934067722809752, 0.5657371707019572, 0.40591517497640706, 0.5142806824729376, 0.4667389755277017, 0.4597803030361328, 0.14211531046105408, 0.4709774325404933, 0.39253304933110444, 0.8152160844894966, 0.6418608562675732, 0.5695619245525361, 0.15898796250578873, 0.4189913516486339, 0.8097376625536354, 0.2776505479619531, 0.14100712613869515, 0.1625374057836978, 0.21879614767173305, 0.26016804821119, 0.5884346274074399, 0.25171266030158634, 0.5556828679884147, 0.2886326125606653, 0.5013044750460076, 0.23728971353361283, 0.6280660923097139, 0.6281218947904323, 0.6226708394296439, 0.1280348372312241, 0.37812375401711507, 0.6218606462016874, 0.446367751604861, 0.5237591509200082, 0.22560064672115399, 0.4159575064805634, 0.43989745285902637, 0.38133093816728936, 0.379388299643832, 0.4244201113870294, 0.8495234946343055, 0.44699506619782237, 0.3402560380560977, 0.16997778820688525, 0.6509841470756508, 0.5589353890471914, 0.49320900326902484, 0.41485179365651337, 0.2850172536812061, 0.5150740024049856, 0.7905789411902706, 0.6660097546858721, 0.5916856454756931, 0.25029771644034415, 0.21820707607863943, 0.23625780462752244, 0.6174344585079109, 0.33885175059010386, 0.8097775874289167, 0.5502791542248897, 0.45232673966787307, 0.5168725346003686, 0.4922951659433321, 0.2710495410551712, 0.5620189509382074, 0.19827785442852286, 0.35653263682836045, 0.4940220265254579, 0.3934632807735441, 0.349631294967786, 0.6543252873397565, 0.6043841099981286, 0.6572212454398962, 0.5323595728841377, 0.4667716613599331, 0.5480891857555714, 0.5933716837007499, 0.5769442381274095, 0.7796710482718338, 0.4721284230669528, 0.5632051337005155, 0.25606657060722404, 0.47304849589761655, 0.4991199345133047, 0.785831825438318, 0.5512091114854263, 0.31651464458218903, 0.192246895102814, 0.5737052492708005, 0.14970485751781393, 0.8257882443178004, 0.7450862811651306, 0.2404138117262561, 0.3428275867057816, 0.2186811050870735, 0.43730933466596944, 0.1325711740116582, 0.33994853494016564, 0.5172250338280965, 0.4543852880840521, 0.6017244994332274, 0.7267617626256621, 0.304103470637073, 0.49511795227452726, 0.4577650902534979, 0.4389063253281036, 0.3428275867057816, 0.6911248892501751, 0.5457123873353599, 0.3395528272139201, 0.5662837862370104, 0.38281068028313525, 0.1899488449656659, 0.1899488449656659, 0.39416742153886597, 0.4473524415330049, 0.5724944828663213, 0.12652799787397961, 0.14917046216496987, 0.4192276293132746, 0.1727250451072272, 0.7329347521090118, 0.2979855805324535, 0.5384433083808008, 0.2944152049751758, 0.5661013076544325, 0.39283078357423706, 0.6503174362647687, 0.7632350838020857, 0.29422440231251745, 0.8446099855685041, 0.3812461384129847, 0.1264117171095669, 0.6995051325026098, 0.7680829457938805, 0.1086082602083136, 0.50228427853815, 0.8303888649041977, 0.15145052047802054, 0.5239967242043768, 0.49461569007297057, 0.7323984730128237, 0.6372335578763709, 0.8485373319296128, 0.21018203617182263, 0.3854703692354019, 0.6209619763202376, 0.6996467359659702, 0.3913887983225227, 0.600932061108284, 0.18141675383529432, 0.32841971343371723, 0.17397747102053363, 0.3943097935149382, 0.5998672378660981, 0.6052803835931642, 0.35501406908939237, 0.4362847089434372, 0.6005057903956104, 0.45095984485898877, 0.5601124581139871, 0.6908342266509375, 0.29066967723125237, 0.5437491575180791, 0.5955595524057149, 0.4226516353037165, 0.552222307965348, 0.5038457784615318, 0.6752568781943777, 0.7880730680059006, 0.09430965090665133, 0.4986183600001317, 0.24112389044610405, 0.3635071851353404, 0.7047195247497422, 0.5251048099479148, 0.5632051337005155, 0.4520037684813636, 0.5271857161160298, 0.36566585814722175, 0.8775119234978208, 0.49474741138534273, 0.17187478758168062, 0.1069918390347242, 0.6371627391106971, 0.19018032574493748, 0.34352259564225396, 0.806114950115292, 0.47304849589761655, 0.5014153035286022, 0.6721952796384192, 0.7507248720260316, 0.38512814216859315, 0.8930847268109882, 0.863224561659591, 0.15108072818859253, 0.7399796913917198, 0.18579927887031134, 0.47304849589761655, 0.2033384066370545, 0.43667652058029827, 0.23252054766636898], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [0.37, 0.23, 0.21, 0.32, 0.58, 0.21, 0.24, 0.3, 0.2, 0.3, 0.48, 0.25, 0.27, 0.32, 0.32, 0.2, 0.44, 0.25, 0.22, 0.37, 0.2, 0.19, 0.2, 0.26, 0.25, 0.29, 0.22, 0.24, 0.39, 0.34, 0.41, 0.34, 0.22, 0.26, 0.3, 0.19, 0.13, 0.23, 0.475, 0.605, 0.33, 0.24, 0.52, 0.29, 0.26, 0.57, 0.3, 0.6, 0.26, 0.22, 0.42, 0.57, 0.28, 0.28, 0.26, 0.17, 0.22, 0.34, 0.21, 0.76, 0.42, 0.3, 0.22, 0.25, 0.26, 0.3, 0.42, 0.28, 0.54, 0.14, 0.26, 0.28, 0.34, 0.275, 0.29, 0.2, 0.28, 0.18, 0.26, 0.53, 0.15, 0.21, 0.31, 0.24, 0.22, 0.31, 0.36, 0.33, 0.19, 0.3, 0.2, 0.24, 0.25, 0.31, 0.4, 0.4, 0.475, 0.25, 0.26, 0.61, 0.26, 0.17, 0.51, 0.28, 0.26, 0.28, 0.53, 0.24, 0.38, 0.3, 0.66, 0.33, 0.29, 0.29, 0.32, 0.36, 0.255, 0.24, 0.29, 0.66, 0.33, 0.23, 0.34, 0.16, 0.635, 0.42, 0.46, 0.34, 0.39, 0.17, 0.19, 0.36, 0.26, 0.28, 0.27, 0.21, 0.36, 0.42, 0.34, 0.21, 0.18, 0.865, 0.39, 0.23, 0.29, 0.31, 0.35, 0.4, 0.09, 0.22, 0.12, 0.1, 0.18, 0.2, 0.19, 0.3, 0.35, 0.37, 0.2, 0.23, 0.23, 0.55, 0.37, 0.3, 0.39, 0.265, 0.3, 1.04, 0.34, 0.21, 0.15, 0.18, 0.27, 0.34, 0.39, 0.24, 0.2, 0.28, 0.38, 0.31, 0.39, 0.19, 0.18, 0.33, 0.14, 0.55, 0.22, 0.46, 0.27, 0.41, 0.19, 0.18, 0.22, 0.25, 0.17, 0.39, 0.19, 0.33, 0.35, 0.27, 0.36, 0.26, 0.4, 0.17, 0.21, 0.31, 0.21, 0.44, 0.25, 0.15, 0.26, 0.28, 0.46, 0.32, 0.46, 0.32, 0.22, 0.31, 0.35, 0.24, 0.18, 0.35, 0.6, 0.26, 0.22, 0.655, 0.2, 0.28, 0.42, 0.22, 0.84, 0.28, 0.19, 0.23, 0.27, 0.2, 0.34, 0.14, 0.31, 0.16, 0.22, 0.4, 0.36, 0.22, 0.46, 0.43, 0.19, 0.19, 0.21, 0.685, 0.17, 0.22, 0.17, 0.28, 0.13, 0.11, 0.14, 0.17, 0.34, 0.32, 0.65, 0.28, 0.21, 0.28, 0.13, 0.24, 0.27, 0.41, 0.23, 0.18, 0.11, 0.17, 0.15, 0.59, 0.11, 0.68, 0.24, 0.18, 0.295, 0.55, 0.37, 0.27, 0.28, 0.345, 0.28, 0.44, 0.32, 0.2, 0.585, 0.17, 0.45, 0.43, 0.13, 0.32, 0.17, 0.28, 0.25, 0.36, 0.24, 0.3, 0.17, 0.16, 0.25, 0.38, 0.25, 0.36, 0.37, 0.18, 0.21, 0.16, 0.24, 0.46, 0.52, 0.31, 0.21, 0.22, 0.37, 0.28, 0.19, 0.25, 0.33, 0.28, 0.29, 0.19, 0.65, 0.2, 0.29, 0.32, 0.19, 0.4, 0.43, 0.16, 0.785, 0.22, 0.27, 0.25, 0.25, 0.26, 0.36, 0.43, 0.21, 0.32, 0.3, 0.54, 0.63, 0.18, 0.35, 0.27, 0.25, 0.41, 0.43, 0.305, 0.23, 0.2, 0.3, 0.31, 0.645, 0.29, 0.16, 0.52, 0.3, 0.24, 0.42, 0.26, 0.45, 0.27, 0.22, 0.22, 0.33, 0.24, 0.22, 0.34, 0.21, 0.14, 0.53, 0.725, 0.18, 0.27, 0.47, 0.26, 0.235, 0.26, 0.33, 0.23, 0.23, 0.2, 0.27, 0.16, 0.45, 0.4, 0.2, 0.28, 0.24, 0.23, 0.115, 0.57, 0.25, 0.27, 0.37, 0.18, 0.18, 0.21, 0.19, 0.19, 0.31, 0.23, 0.24, 0.445, 0.15, 0.45, 0.26, 0.2, 0.18, 0.19, 0.18, 0.4, 0.21, 0.37, 0.32, 0.26, 0.21, 0.28, 0.42, 0.765, 0.315, 0.28, 0.25, 0.28, 0.36, 0.17, 0.41, 0.27, 0.15, 0.32, 0.5, 0.52, 0.24, 0.25, 0.08, 0.18, 0.19, 0.57, 0.23, 0.19, 0.36, 0.34, 0.38, 0.5, 0.42, 0.745, 0.22, 0.69, 0.18, 0.57, 0.17, 0.33, 0.36, 0.18, 0.22, 0.4, 0.24, 0.36, 0.19, 0.23, 0.18, 0.17, 0.44, 0.17, 0.21, 0.685, 0.3, 0.2, 0.58, 0.16, 0.16, 0.24, 0.36, 0.13, 0.26, 0.21, 0.34, 0.25, 0.38, 0.12, 0.17, 0.19, 0.3, 0.38, 0.39, 0.59, 0.45, 0.22, 0.31, 0.35, 0.2, 0.39, 0.2, 0.56, 0.305, 0.45, 0.24, 0.26, 0.19, 0.26, 0.41, 0.22, 0.31, 0.35, 1.02, 0.27, 0.52, 0.21, 0.35, 0.26, 0.22, 0.44, 0.41, 0.4, 0.27, 0.25, 0.3, 0.49, 0.24, 0.32, 0.21, 0.19, 0.25, 0.37, 0.25, 0.26, 0.69, 0.17, 0.25, 0.25, 0.31, 0.3, 0.53, 0.24, 0.69, 0.38, 0.22, 0.29, 0.26, 0.16, 0.27, 0.15, 0.5, 0.31, 0.21, 0.19, 0.29, 0.32, 0.41, 0.21, 0.2, 0.42, 0.36, 0.15, 0.35, 0.33, 0.11, 0.31, 0.16, 0.34, 0.34, 0.2, 0.21, 0.28, 0.19, 0.28, 0.205, 0.26, 0.19, 0.43, 0.28, 0.21, 0.33, 0.24, 0.25, 0.28, 0.38, 0.3, 0.15, 0.33, 0.18, 0.32, 0.61, 0.3, 0.38, 0.38, 0.56, 0.34, 0.24, 0.22, 0.58, 0.35, 0.32, 0.28, 0.2, 0.21, 0.16, 0.58, 0.28, 0.255, 0.21, 0.63, 0.38, 0.16, 0.24, 0.35, 0.48, 0.19, 0.2, 0.17, 0.6, 0.32, 0.18, 0.2, 0.38, 0.52, 0.15, 0.38, 0.18, 0.14, 0.16, 0.26, 0.24, 0.245, 0.29, 0.15, 0.645, 0.415, 0.18, 0.2, 0.34, 0.18, 0.22, 0.51, 0.42, 0.49, 0.32, 0.25, 0.2, 0.24, 0.18, 0.27, 0.53, 0.28], \"xaxis\": \"x2\", \"y\": [0.6660328535674787, 0.4955559099445003, 0.11251030999551548, 0.5313240922219649, 0.7616845263358343, 0.42881839881496897, 0.22146723198036844, 0.2709448900825402, 0.04188686298684474, 0.3198999677935893, 0.586632325439729, 0.3332859260788763, 0.0891770245136605, 0.07249138429342028, 0.0813041402249215, 0.2808128557304226, 0.18155424903412543, 0.14020593233116785, 0.20529540916933675, 0.1755850319354616, 0.5722846846512241, 0.4684623303117058, 0.2863708053899042, 0.4489302200945696, 0.3606737334686688, 0.09834172337505831, 0.1439119889738254, 0.10526388551166177, 0.08976738859769384, 0.15927641460572795, 0.07353544332944184, 0.4894096639868448, 0.24735122968283396, 0.41440459167745447, 0.10107859516115147, 0.4809249647595707, 0.043928674649753696, 0.27268427565697984, 0.07203278686513981, 0.35989685204578803, 0.08410225657903847, 0.09640449279894714, 0.2859044620344169, 0.766491644508495, 0.27194216744256416, 0.11891721880979944, 0.6033870782914414, 0.8445823904457724, 0.4148378249676725, 0.09538880480821377, 0.5822786697287807, 0.2006236885231063, 0.30215903380660414, 0.3526626332448971, 0.22921561702294402, 0.3499358724503807, 0.451050436906263, 0.01968005574460141, 0.3849224947932618, 0.608666907839271, 0.30333177217190177, 0.05732515971384944, 0.08299070223644744, 0.155374347961305, 0.4378217303747408, 0.10641916767178827, 0.3207785913922725, 0.3280003244598044, 0.4747408725557203, 0.27229542413121455, 0.5314247042003052, 0.13834506443323813, 0.652508483608137, 0.1775869136191267, 0.4659209431511335, 0.3288332341233703, 0.47224603889779837, 0.2773569186284155, 0.18590272545123854, 0.6719763059805124, 0.04569198037744582, 0.22473444069733528, 0.0776074933333939, 0.1411968215808168, 0.3654892991508686, 0.06069899520469324, 0.21029328672965164, 0.13919371635861133, 0.16321149678759816, 0.6144435769482088, 0.1388055550317996, 0.0827658987104557, 0.0793107693477757, 0.04994940743047871, 0.46220165202879504, 0.08265172102971341, 0.5554564865761329, 0.10902951494304747, 0.26480674198345266, 0.31816712550642645, 0.20184400370343658, 0.23734670470511587, 0.19264674509953905, 0.03558879485690103, 0.5314247042003052, 0.3013473679880785, 0.8043030592862955, 0.07665185966197174, 0.17816243980233548, 0.14637302723887635, 0.43623195291339645, 0.5773286546676725, 0.06996409198491005, 0.0635191394270278, 0.11839391684253864, 0.03368970372860669, 0.16544292122901683, 0.5002106013252752, 0.20783967621931676, 0.4413184352618238, 0.1377753535318076, 0.017128038770129694, 0.09070427960766203, 0.05237321155563324, 0.46044782253877736, 0.09863911308639095, 0.6058955548956951, 0.07377868677997379, 0.33726125667837825, 0.03705661785513226, 0.03856885477325478, 0.01970319875133708, 0.06623921298607705, 0.655672818127978, 0.36403826442427, 0.375635621083512, 0.25822104517587474, 0.26990817233175546, 0.30316845466795117, 0.21597661143113533, 0.10411587283779344, 0.4582573305440075, 0.28974208538397184, 0.3995654588450376, 0.48407929824265805, 0.2412117545349558, 0.49704114689177337, 0.3112403223054312, 0.13571503940671914, 0.35304273602320047, 0.18963603484652192, 0.06023564559469896, 0.305863422303413, 0.34062746964654456, 0.03532029949184434, 0.20200996882548472, 0.207876095289533, 0.11304202998506685, 0.26487496820305634, 0.46674395287949066, 0.05931266843465788, 0.6063731497207538, 0.053339747820140615, 0.16056749669580483, 0.3366557342021428, 0.18735912995827353, 0.2667542380283816, 0.9197592959547904, 0.13322255285490225, 0.3533185668595151, 0.08763312389948397, 0.343329095265401, 0.1298321532292276, 0.11240742021865013, 0.03412749239977686, 0.23316671381479437, 0.13955591125269062, 0.065615492475942, 0.03940539431326806, 0.04874684240881699, 0.42507109047861347, 0.3720756994829524, 0.20627971812824875, 0.23346983492740092, 0.299872058778726, 0.14688925552714138, 0.20529540916933675, 0.11294333341234963, 0.4523771212155355, 0.15895981664313275, 0.12633289347617382, 0.34801013400503944, 0.063056887931354, 0.09222807982804315, 0.19281104432210028, 0.11843845992675284, 0.1064686731970873, 0.12171087020281346, 0.49704114689177337, 0.4202798549667376, 0.058322454167927695, 0.40418598015134155, 0.7514842711311043, 0.067978575311199, 0.1468497162592186, 0.3655805321171328, 0.36741292271676196, 0.08785516413846428, 0.4223454464089015, 0.09472348251934337, 0.14196098925812006, 0.10013555988874479, 0.32154631204965056, 0.05416575683382341, 0.786126361492164, 0.04696516601190348, 0.26926088858349784, 0.28123172687107445, 0.3094364396730669, 0.04307250962973752, 0.07126159086244754, 0.6143015945908075, 0.495586079448059, 0.46102608015166635, 0.40789311683600216, 0.8929715185951024, 0.1227006502272181, 0.3638055988942468, 0.10470002869891348, 0.29304213908849364, 0.8936703981375603, 0.3534407380188983, 0.0883666731866185, 0.07895584641700149, 0.05166417783587085, 0.4199775765299997, 0.10304865631077798, 0.1041340676595982, 0.11031385635331636, 0.22368578646300386, 0.22137255536682798, 0.0725394352715707, 0.08320759746190642, 0.3577905591727162, 0.36362749207413336, 0.13058702032609693, 0.4306817897420764, 0.4684623303117058, 0.3185463047756948, 0.6991046594229053, 0.33105510290791684, 0.35804773811787727, 0.3499358724503807, 0.17780319308126435, 0.07142366539796174, 0.1504846162366139, 0.28643330026545544, 0.11492102279820171, 0.08716328114311156, 0.12905574960179156, 0.5528531989583015, 0.2852168598030531, 0.3185463047756948, 0.41766807389819915, 0.22818770291371737, 0.10749415552266317, 0.07500089027222667, 0.2150933620687273, 0.4879833184669665, 0.21367083697314282, 0.18281788227943807, 0.11217648511765432, 0.01860460444149037, 0.4990100838788346, 0.3212979959143686, 0.7252893191599291, 0.30018855716775616, 0.2808216200321265, 0.24332849241566534, 0.22583693263898685, 0.307128141019565, 0.12930297020615966, 0.07734813107736227, 0.38078614076753503, 0.037937415915298756, 0.18389331462546077, 0.2015421194948802, 0.10121634311933059, 0.7209948827487924, 0.252131738577411, 0.19866278493931944, 0.5569604587758099, 0.19172534874952063, 0.07516041810443141, 0.18673310211333727, 0.20736440356309183, 0.27568985010185776, 0.1748501221961516, 0.134246332983591, 0.12151400729184814, 0.03860330573341564, 0.16198960071610413, 0.062309112953929935, 0.14943540958877521, 0.46827469198568006, 0.12435295831370408, 0.11768791031746062, 0.10794707492381372, 0.04347111427796346, 0.07423675680829, 0.1602542791395647, 0.19911642350143877, 0.2379444352717226, 0.36664322039668684, 0.10130143557253446, 0.17108028607870185, 0.6143194513817134, 0.5641235853966853, 0.29864316680665437, 0.44752301946823647, 0.13459844499503626, 0.037461465199631894, 0.5002964248569376, 0.4059565893810353, 0.7035957096210382, 0.0629603198376949, 0.25036415064992923, 0.14780834332950044, 0.24800647860056513, 0.10438723399855232, 0.24366911510822187, 0.4574644219698093, 0.8347014835967527, 0.42226245660703365, 0.4073158502222598, 0.47525484003715535, 0.37845934883934684, 0.35325777167774697, 0.4763432908647238, 0.18941100564626978, 0.23853527246002126, 0.27277355193056574, 0.5556171757583562, 0.19481513110659687, 0.7460207524242459, 0.12627308236197843, 0.2115813466591615, 0.4773837842994688, 0.22238536240250728, 0.1978655273089749, 0.32057959349203036, 0.1601330373243487, 0.6256605001243821, 0.34062746964654456, 0.5899158924001677, 0.1273375405407705, 0.6866376712310945, 0.3812864953771038, 0.07918534602430627, 0.10510921928053807, 0.052405178286905496, 0.29010285216427345, 0.5802968836962079, 0.4475494904811408, 0.33107045093633036, 0.6046547135519548, 0.33132995382553565, 0.3391582818855403, 0.37109937806185267, 0.18876467901964422, 0.03244681540368277, 0.6531311156123596, 0.18281848038190407, 0.06840545126676123, 0.23876166598551407, 0.5602062902528231, 0.05478334190217349, 0.18965009362393503, 0.502081053312289, 0.0945975060483667, 0.24937367783354814, 0.14040338921272166, 0.09582424632391484, 0.4879833184669665, 0.07536550594022651, 0.37763546052463404, 0.20240400638142053, 0.06234715971662652, 0.1729504208160284, 0.2536573606029918, 0.1491704939138675, 0.47224603889779837, 0.20734784509414073, 0.1656619584420439, 0.20263687678412212, 0.4576701693643329, 0.3746187330143109, 0.06578487521364562, 0.09359041291034786, 0.15714155813810793, 0.43198081216185935, 0.17693664965610134, 0.14200602748771296, 0.16878839641400256, 0.11131318694256087, 0.43040972974554736, 0.12494266711040569, 0.5286591337585229, 0.3917329141436472, 0.14284790216410748, 0.29931895876037384, 0.3998656181534954, 0.13198036366642862, 0.2166851793268345, 0.164669749255824, 0.3116999397838065, 0.5702002297218003, 0.2867818412254799, 0.05809024612643199, 0.0701620515557333, 0.10493669218879953, 0.03474255021640338, 0.14069518845012563, 0.7697788668098057, 0.44513161239284327, 0.12104291767226882, 0.2823656727566666, 0.28640273091276736, 0.09904459769556595, 0.10889384421684001, 0.1978655273089749, 0.6326587477498924, 0.0766186874204361, 0.07300117689776386, 0.3978521493117628, 0.7293533971641823, 0.24040337450518035, 0.46827469198568006, 0.03737110954461231, 0.48112847828662497, 0.5755848065786346, 0.12151472907643468, 0.332302417201758, 0.3208349144509022, 0.13406270144296106, 0.47820199098358873, 0.024219732643774528, 0.7923035912680444, 0.3099424932714111, 0.8494816644677875, 0.15230116664989468, 0.8795672599938588, 0.34536882843285344, 0.587897812361327, 0.3660303223369904, 0.3074082248441362, 0.1925553058603695, 0.1582957933341015, 0.5297945963993664, 0.1892543681582496, 0.06574637766643598, 0.03286461121245521, 0.6223124217546917, 0.48666930315350876, 0.17200815643270417, 0.27042696199957883, 0.16010429726024444, 0.25291734909108765, 0.22778758435893687, 0.6055190518965303, 0.41989528411161425, 0.2865861541738164, 0.17344095530188786, 0.4163761941495938, 0.24610426408478792, 0.029106329843254564, 0.5849270471051293, 0.09607886499379148, 0.4890296174547498, 0.11193395874659995, 0.3667485749721523, 0.29672938182784603, 0.13696827462710404, 0.03986507081677082, 0.41542023534722683, 0.1642424989032959, 0.041559354155004224, 0.1266666793707928, 0.5259198205822933, 0.42123490919744344, 0.6147437654518444, 0.42849246998341506, 0.04874684240881699, 0.16870816563337898, 0.35179373534084035, 0.4552463954734379, 0.1543174595222413, 0.4641274821418986, 0.1106599594415556, 0.40441066041397966, 0.05916303638108533, 0.24194101851814365, 0.5755848065786346, 0.23631147082452741, 0.04679471849088612, 0.33132995382553565, 0.6031606095022326, 0.16900214819844117, 0.9322526967181247, 0.1065938389205352, 0.0540586741766943, 0.14920224829950646, 0.03054451782098533, 0.13595064656866984, 0.15908339514281045, 0.09402391562754642, 0.27219479721363327, 0.10477531970828624, 0.6046547135519548, 0.04412971358840656, 0.0821245873848182, 0.24953715645213048, 0.24311299470472425, 0.679537413518331, 0.02875041056121841, 0.2874129658970298, 0.17131102264191878, 0.07042427222914205, 0.1577516063520068, 0.39934634677258996, 0.42249259173992826, 0.24940231538328683, 0.46827469198568006, 0.040988937643475554, 0.034828704291737345, 0.26663563965858417, 0.22421743312747255, 0.10716094829621758, 0.7421831263598226, 0.4644511163280224, 0.1591307416719686, 0.21502194578256428, 0.12883185373794437, 0.15520095945599266, 0.04280666734842442, 0.06928764484923078, 0.3578757504587543, 0.0760792945579073, 0.06637805380770656, 0.5755848065786346, 0.4326356954473739, 0.16985579355455038, 0.47152805642545803, 0.11644579282256762, 0.11790522998710073, 0.5438286352264949, 0.41561805514360906, 0.050606352251634235, 0.21836830194439782, 0.22298545275517268, 0.1504846162366139, 0.16819644397314482, 0.47796113776613436, 0.14100197907825862, 0.7878397890034206, 0.12176963827920351, 0.09814942480303201, 0.23162396036129984, 0.04400104962869911, 0.061588508633294015, 0.2774601068082493, 0.40816383821078206, 0.14036214651023216, 0.11837607594274324, 0.0703155477214753, 0.17002415827487982, 0.24611532014486182, 0.06874641727313702, 0.30975746960573625, 0.07004288447243323, 0.6453829176356538, 0.3880412370469972, 0.10205495289732236, 0.12171087020281346, 0.38550692709735157, 0.4398162761337091, 0.5769741243450848, 0.48842976274850136, 0.3866799681687785, 0.17129518728202664, 0.5711206597512044, 0.4456070955069118, 0.4585850027539752, 0.25462747480751524, 0.34771016550763867, 0.35548618548401445, 0.07878090041588082, 0.3008706318705062, 0.08117751180329491, 0.055511805197920094, 0.1600174453683395, 0.35597309965685686, 0.5473978930443646, 0.3321771897262046, 0.14643302530661162, 0.7653011157176768, 0.24188431843396252, 0.16704799028757666, 0.41136103198090634, 0.5749869949413896, 0.709238838470871, 0.09340318303147321, 0.602429869503323, 0.04154705947390969, 0.7519582179986716, 0.15993940416551844, 0.04372375151311325, 0.4076899811241429, 0.4644511163280224, 0.3133137248525114, 0.24628490675063597, 0.06972977174174444, 0.15949948541388637, 0.2241543425141257, 0.1729876202034616, 0.07290025122558275, 0.1220000714032804, 0.36493953208423235, 0.09420126302076737, 0.026726938234992392, 0.7199273032686843, 0.4606762448039463, 0.04906818437448113, 0.19446415942665518, 0.14876853598344464, 0.3247816953453747, 0.023320858692869595, 0.7310618090422621, 0.48944479260603346, 0.20357574295749958, 0.0840537250624015, 0.5368744051465595, 0.21101467800102214, 0.46682279298460017, 0.3749869638443927, 0.46592999202179275, 0.10188412989688433, 0.15751976448865512], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"volatile.acidity\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"volatile.acidity\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}, \"All_citric.acid\": {\"data\": [{\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Reference<br>citric.acid=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [0.32, 0.24, 0.36, 0.24, 0.27, 0.21, 0.3, 0.46, 0.34, 0.26, 0.4, 0.21, 0.26, 0.33, 0.24, 0.47, 0.29, 0.76, 0.2, 0.29, 0.28, 0.27, 0.28, 0.36, 0.49, 0.27, 0.3, 0.49, 0.33, 0.48, 0.49, 0.32, 0.28, 0.34, 0.36, 0.44, 0.31, 0.31, 0.22, 0.39, 0.26, 0.49, 0.37, 0.26, 0.26, 0.32, 0.38, 0.19, 0.53, 0.3, 0.29, 0.29, 0.26, 0.29, 0.49, 0.28, 0.36, 0.38, 0.24, 0.32, 0.42, 0.23, 0.74, 0.44, 0.66, 0.13, 0.28, 0.3, 0.26, 0.36, 0.35, 0.24, 0.28, 0.68, 0.35, 0.29, 0.46, 0.28, 0.1, 0.35, 0.24, 0.34, 0.3, 0.45, 0.33, 0.34, 0.29, 0.31, 0.31, 0.41, 0.28, 0.28, 0.38, 0.4, 0.29, 0.25, 0.29, 0.28, 0.25, 0.65, 0.34, 0.36, 0.46, 0.34, 0.3, 0.32, 0.26, 0.49, 0.33, 0.02, 0.33, 0.28, 0.32, 0.29, 0.27, 0.32, 0.25, 0.36, 0.35, 0.46, 0.3, 0.49, 0.34, 0.31, 0.22, 0.02, 0.01, 0.5, 0.36, 0.0, 0.33, 0.18, 0.4, 0.32, 0.43, 0.54, 0.4, 0.02, 0.2, 0.24, 0.37, 0.31, 0.32, 0.34, 0.41, 0.43, 0.46, 0.27, 0.24, 0.32, 0.28, 0.59, 0.25, 0.26, 0.3, 0.5, 0.28, 0.35, 0.26, 0.38, 0.29, 0.27, 0.36, 0.25, 0.2, 0.34, 0.3, 0.21, 0.58, 0.04, 0.42, 0.37, 0.46, 0.28, 0.14, 0.09, 0.04, 0.21, 0.24, 0.1, 0.29, 0.49, 0.35, 0.3, 0.16, 0.29, 0.33, 0.48, 0.34, 0.31, 0.29, 0.0, 0.14, 0.05, 0.02, 0.34, 0.16, 0.32, 0.26, 0.48, 0.49, 0.27, 0.49, 0.12, 0.26, 0.37, 0.34, 0.49, 0.27, 0.43, 0.49, 0.2, 0.34, 0.32, 0.27, 0.26, 0.29, 0.49, 0.31, 0.32, 0.32, 0.49, 0.26, 0.4, 0.6, 0.37, 0.34, 0.4, 0.31, 0.29, 0.32, 0.21, 0.0, 0.28, 0.28, 0.21, 0.36, 0.41, 0.42, 0.34, 0.33, 0.39, 1.0, 0.44, 0.12, 0.32, 0.31, 0.27, 0.4, 0.33, 0.42, 0.3, 0.43, 0.35, 0.37, 0.28, 0.31, 0.14, 0.49, 0.39, 0.34, 0.49, 0.37, 0.44, 0.35, 0.32, 0.37, 0.57, 0.06, 0.34, 0.36, 0.08, 0.31, 0.3, 0.26, 0.26, 0.28, 0.41, 0.0, 0.79, 0.36, 0.44, 0.32, 0.3, 0.39, 0.42, 0.25, 0.28, 0.08, 0.39, 0.31, 0.3, 0.48, 0.24, 0.41, 0.25, 0.0, 0.12, 0.36, 0.38, 0.02, 0.24, 0.3, 0.26, 0.33, 0.46, 0.26, 0.33, 0.39, 0.47, 0.3, 0.34, 0.13, 0.36, 0.36, 0.62, 0.31, 0.3, 0.27, 0.27, 0.27, 0.38, 0.31, 0.3, 0.29, 0.02, 0.22, 0.39, 0.49, 0.27, 0.28, 0.33, 0.44, 0.57, 0.36, 0.31, 0.33, 0.33, 0.21, 0.28, 0.28, 0.45, 0.36, 0.26, 0.13, 0.49, 0.32, 0.09, 0.0, 0.36, 0.29, 0.41, 0.28, 0.3, 0.3, 0.4, 0.32, 0.33, 0.51, 0.36, 0.41, 0.19, 0.35, 0.44, 0.03, 0.27, 0.31, 0.27, 0.36, 0.26, 0.3, 0.39, 0.3, 0.23, 0.28, 0.26, 0.31, 0.0, 0.27, 0.34, 0.2, 0.32, 0.13, 0.36, 0.49, 0.29, 0.37, 0.31, 0.29, 0.37, 0.28, 0.24, 0.49, 0.3, 0.28, 0.47, 0.42, 0.28, 0.32, 0.28, 0.05, 0.21, 0.23, 0.33, 0.28, 0.32, 0.34, 0.42, 0.0, 0.49, 0.24, 0.3, 0.35, 0.3, 0.56, 0.45, 0.28, 0.35, 0.18, 0.2, 0.37, 0.31, 0.3, 0.28, 0.27, 0.18, 0.44, 0.3, 0.3, 0.36, 0.49, 0.41, 0.28, 0.31, 0.35, 0.1, 0.29, 0.01, 0.33, 0.49, 0.38, 0.74, 0.37, 0.45, 0.62, 0.33, 0.4, 0.26, 0.47, 0.28, 0.28, 0.24, 0.27, 0.35, 0.3, 0.76, 0.27, 0.01, 0.27, 0.27, 0.73, 0.29, 0.49, 0.25, 0.31, 0.02, 0.27, 0.36, 0.3, 0.51, 0.15, 0.49, 0.33, 0.32, 0.35, 0.29, 0.49, 0.34, 0.32, 0.44, 0.24, 0.48, 0.23, 0.24, 0.31, 0.39, 0.49, 0.3, 0.3, 0.05, 0.41, 0.23, 0.4, 0.41, 0.39, 0.42, 0.3, 0.35, 0.34, 0.29, 0.26, 0.31, 0.38, 0.38, 0.44, 0.33, 0.33, 0.49, 0.38, 0.27, 0.33, 0.31, 0.31, 0.5, 0.36, 0.37, 0.46, 0.44, 0.37, 0.35, 0.31, 0.25, 0.36, 0.37, 0.0, 0.3, 0.7, 0.36, 0.29, 0.33, 0.32, 0.25, 0.28, 0.21, 0.4, 0.06, 0.28, 0.29, 0.35, 0.35, 0.35, 0.29, 0.41, 0.49, 0.25, 0.25, 0.5, 0.49, 0.26, 0.29, 0.32, 0.24, 0.28, 0.4, 0.3, 0.02, 0.31, 0.36, 0.22, 0.36, 0.35, 0.34, 0.1, 0.24, 0.0, 0.32, 0.23, 0.49, 0.32, 0.32, 0.28, 0.41, 0.28, 0.37, 0.33, 0.31, 0.28, 0.3, 0.24, 0.34, 0.31, 0.35, 0.26, 0.0, 0.74, 0.01, 0.16, 0.32, 0.24, 0.32, 0.28, 0.32, 0.37, 0.29, 0.04, 0.29, 0.3, 0.16, 0.33, 0.23, 0.49, 0.38, 0.32, 0.26, 0.56, 0.66, 0.29, 0.29, 0.4, 0.27, 0.21, 0.35, 0.28, 0.24, 0.28, 0.38, 0.25, 0.49, 0.32, 0.18, 0.43, 0.33, 0.47, 0.04, 0.33, 0.27, 0.36, 0.25, 0.4, 0.33, 0.24, 0.35, 0.31, 0.31, 0.38, 0.49, 0.44, 0.4, 0.33, 0.26, 0.38, 0.22, 0.28, 0.34, 0.36], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Current<br>citric.acid=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [0.19, 0.38, 0.42, 0.21, 0.23, 0.27, 0.29, 0.25, 0.31, 0.12, 0.24, 0.35, 0.25, 0.23, 0.39, 0.34, 0.0, 0.31, 0.24, 0.34, 0.3, 0.31, 0.35, 0.39, 0.28, 0.49, 0.38, 0.28, 0.32, 0.3, 0.29, 0.27, 0.37, 0.34, 0.23, 0.99, 0.27, 0.37, 0.33, 0.02, 0.34, 0.33, 0.49, 0.3, 0.42, 0.09, 0.29, 0.18, 0.33, 0.37, 0.17, 0.39, 0.44, 0.41, 0.31, 0.44, 0.56, 0.0, 0.31, 0.68, 0.09, 0.26, 0.36, 0.27, 0.29, 0.33, 0.38, 0.33, 0.06, 0.34, 0.34, 0.28, 0.28, 0.24, 0.29, 0.19, 0.24, 0.28, 0.3, 0.49, 0.4, 0.33, 0.41, 0.27, 0.34, 0.29, 0.39, 0.24, 0.49, 0.34, 0.26, 0.49, 0.26, 0.28, 0.3, 0.28, 0.4, 1.23, 0.52, 0.08, 0.44, 0.27, 0.23, 0.24, 0.34, 0.09, 0.24, 0.32, 0.42, 0.29, 0.0, 0.28, 0.3, 0.27, 0.25, 0.53, 0.22, 0.27, 0.25, 0.39, 0.23, 0.36, 0.27, 0.47, 0.1, 0.46, 0.26, 0.46, 0.4, 0.35, 0.38, 0.34, 0.28, 0.27, 0.49, 0.58, 0.34, 0.38, 0.27, 0.29, 0.45, 0.03, 0.69, 0.37, 0.26, 0.33, 0.56, 0.32, 0.3, 0.34, 0.29, 0.33, 0.31, 0.61, 0.34, 0.35, 0.38, 0.32, 0.4, 0.39, 0.39, 0.24, 0.24, 0.91, 0.49, 0.36, 0.35, 0.05, 0.4, 0.81, 0.3, 0.4, 0.28, 0.4, 0.47, 0.3, 0.17, 0.38, 0.26, 0.39, 0.3, 0.25, 0.36, 0.49, 0.32, 0.15, 0.24, 0.24, 0.36, 0.33, 0.32, 0.26, 0.32, 0.45, 0.28, 0.28, 0.32, 0.22, 0.56, 0.26, 0.36, 0.25, 0.42, 0.52, 0.5, 0.3, 0.41, 0.73, 0.3, 0.41, 0.29, 0.34, 0.24, 0.45, 0.52, 0.29, 0.38, 0.24, 0.4, 0.4, 0.49, 0.29, 0.14, 0.42, 0.5, 0.2, 0.32, 0.3, 0.45, 0.26, 0.21, 0.4, 0.39, 0.36, 0.24, 0.38, 0.24, 0.18, 0.31, 0.49, 0.35, 0.32, 0.36, 0.34, 0.2, 0.5, 0.27, 0.31, 0.34, 0.11, 0.32, 0.28, 0.44, 0.29, 0.37, 0.26, 0.74, 0.3, 0.4, 0.31, 0.02, 0.31, 0.34, 0.19, 0.27, 0.36, 0.42, 0.2, 0.42, 0.46, 0.27, 0.32, 0.32, 0.59, 0.34, 0.16, 0.49, 0.32, 0.26, 0.1, 0.53, 0.27, 0.52, 0.15, 0.32, 0.49, 0.28, 0.31, 0.07, 0.27, 0.5, 0.44, 0.28, 0.26, 0.3, 0.3, 0.48, 0.3, 0.36, 0.32, 0.29, 0.44, 0.47, 0.26, 0.36, 0.46, 0.3, 0.35, 0.39, 0.3, 0.27, 0.31, 0.08, 0.61, 0.25, 0.29, 0.4, 0.34, 0.49, 0.33, 0.28, 0.27, 0.29, 0.49, 0.37, 0.34, 0.25, 0.52, 0.58, 0.3, 0.02, 0.32, 0.0, 0.32, 0.69, 0.3, 0.42, 0.28, 0.44, 0.3, 0.31, 0.33, 0.49, 0.0, 0.08, 0.28, 0.3, 0.38, 0.49, 0.27, 0.49, 0.38, 0.32, 0.61, 0.22, 0.31, 0.25, 0.26, 0.38, 0.08, 0.29, 0.24, 0.49, 0.46, 0.43, 0.49, 0.2, 0.49, 0.41, 0.33, 0.32, 0.29, 0.4, 0.38, 0.49, 0.09, 0.37, 0.29, 0.08, 0.0, 0.27, 0.43, 0.31, 0.42, 0.39, 0.41, 0.42, 0.31, 0.11, 0.24, 0.22, 0.24, 0.45, 0.39, 0.35, 0.02, 0.39, 0.54, 0.15, 0.37, 0.42, 0.24, 0.28, 0.71, 0.27, 0.33, 0.29, 0.26, 0.28, 0.27, 0.37, 0.36, 0.49, 0.71, 0.24, 0.12, 0.38, 0.34, 0.27, 0.24, 0.25, 0.36, 0.47, 0.18, 0.54, 0.26, 0.41, 0.22, 0.29, 0.5, 0.27, 0.32, 0.38, 0.33, 0.3, 0.25, 0.38, 0.36, 0.33, 0.3, 0.3, 0.01, 0.29, 0.23, 0.38, 0.45, 0.01, 0.2, 0.19, 0.18, 0.3, 0.08, 0.26, 0.21, 0.28, 0.2, 0.31, 0.28, 0.32, 0.32, 0.3, 0.32, 0.25, 0.29, 0.31, 0.29, 0.49, 0.3, 0.33, 0.0, 0.2, 0.36, 0.2, 0.27, 0.48, 0.3, 0.2, 0.39, 0.18, 0.34, 0.23, 0.34, 0.49, 0.45, 0.38, 0.49, 0.3, 0.29, 0.1, 0.0, 0.4, 0.4, 0.39, 0.33, 0.33, 0.47, 0.42, 0.31, 0.39, 0.55, 0.41, 0.38, 0.3, 0.18, 0.24, 0.2, 0.18, 0.24, 0.43, 0.43, 0.32, 0.34, 0.28, 0.29, 0.38, 0.31, 0.31, 0.53, 0.49, 0.37, 0.33, 0.2, 0.33, 0.26, 0.4, 0.27, 0.26, 0.36, 0.35, 0.53, 0.07, 0.26, 0.36, 0.53, 0.45, 0.22, 0.66, 0.33, 0.0, 0.29, 0.32, 0.3, 0.48, 0.28, 0.37, 0.32, 0.45, 0.4, 0.24, 0.3, 0.58, 0.3, 0.21, 0.37, 0.3, 0.19, 0.21, 0.32, 0.51, 0.27, 0.26, 0.33, 0.3, 0.42, 0.3, 0.24, 0.26, 0.3, 0.39, 0.27, 0.31, 0.26, 0.29, 1.0, 0.36, 0.31, 0.38, 0.28, 0.25, 0.35, 0.2, 0.51, 0.47, 0.22, 0.31, 0.5, 0.18, 0.45, 0.15, 0.14, 0.03, 0.32, 0.36, 0.23, 0.16, 0.49, 0.26, 0.36, 0.34, 0.3, 0.21, 0.58, 0.43, 0.26, 0.36, 0.27, 0.42, 0.49, 0.26, 0.35, 0.04, 0.4, 0.28, 0.28, 0.26, 0.25, 0.27, 0.31, 0.29, 0.54, 0.28, 0.26, 0.28, 0.28, 0.18, 0.26, 0.29, 0.38, 0.65, 0.32, 0.0, 0.68, 0.36, 0.34, 0.31, 0.35, 0.46, 0.24, 0.41, 0.24, 0.3, 0.49, 0.24, 0.22, 0.31, 0.37, 0.29, 0.34], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Reference<br>citric.acid=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [0.65, 0.47, 0.32, 0.08, 0.23, 0.0, 0.07, 0.52, 0.37, 0.23, 0.3, 0.49, 0.74, 0.35, 0.06, 0.2, 0.33, 0.09, 0.22, 0.0, 0.47, 0.26, 0.1, 0.3, 0.0, 0.04, 0.18, 0.32, 0.1, 0.32, 0.0, 0.27, 0.66, 0.24, 0.37, 0.49, 0.35, 0.37, 0.57, 0.36, 0.38, 0.6, 0.27, 0.14, 0.15, 0.24, 0.24, 0.27, 0.43, 0.15, 0.24, 0.22, 0.31, 0.49, 0.26, 0.49, 0.42, 0.25, 0.53, 0.52, 0.44, 0.35, 0.08, 0.24, 0.2, 0.3, 0.34, 0.21, 0.13, 0.31, 0.31, 0.65, 0.66, 0.33, 0.29, 0.07, 0.43, 0.4, 0.2, 0.36, 0.3, 0.37, 0.43, 0.2, 0.23, 0.31, 0.34, 0.17, 0.35, 0.1, 0.65, 0.24, 0.1, 0.66, 0.42, 0.52, 0.56, 0.46, 0.44, 0.35, 0.5, 0.31, 0.28, 0.34, 0.31, 0.68, 0.19, 0.37, 0.49, 0.24, 0.24, 0.33, 0.2, 0.27, 0.17, 0.36, 0.62, 0.23, 0.43, 0.26, 0.2, 0.28, 0.34, 0.55, 0.24, 0.24, 0.22, 0.22, 0.42, 0.19, 0.47, 0.22, 0.3, 0.51, 0.3, 0.2, 0.36, 0.23, 0.35, 0.21, 0.22, 0.4, 0.38, 0.18, 0.22, 0.42, 0.26, 0.34, 0.14, 0.48, 0.38, 0.0, 0.41, 0.09, 0.41, 0.0, 0.53, 0.24, 0.35, 0.07, 0.43, 0.24, 0.49, 0.23, 0.03, 0.39, 0.2, 0.23, 0.28, 0.36, 0.41, 0.18, 0.26, 0.64, 0.28, 0.28, 0.21, 0.28, 0.3, 0.1, 0.46, 0.0, 0.35, 0.34, 0.52, 0.16, 0.45, 0.24, 0.15, 0.37, 0.19, 0.3, 0.5, 0.04, 0.51, 0.0, 0.31, 0.31, 0.26, 0.21, 0.14, 0.5, 0.5, 0.43, 0.24, 0.26, 0.19, 0.41, 0.04, 0.37, 0.29, 0.28, 0.44, 0.74, 0.47, 0.13, 0.23, 0.06, 0.38, 0.48, 0.11, 0.27, 0.51, 0.41, 0.29, 0.34, 0.03, 0.47, 0.04, 0.0, 0.2, 0.54, 0.28, 0.25, 0.32, 0.21, 0.41, 0.25, 0.34, 0.56, 0.33, 0.39, 0.29, 0.32, 0.27, 0.5, 0.49, 0.24, 0.37, 0.33, 0.25, 0.26, 0.66, 0.03, 0.34, 0.51, 0.38, 0.24, 0.46, 0.63, 0.28, 0.22, 0.33, 0.57, 0.33, 0.3, 0.24, 0.22, 0.25, 0.2, 0.35, 0.3, 0.38, 0.26, 0.5, 0.39, 0.12, 0.61, 0.19, 0.13, 0.24, 0.21, 0.32, 0.07, 0.24, 0.2, 0.47, 0.3, 0.27, 0.22, 0.49, 0.55, 0.22, 0.11, 0.4, 0.26, 0.23, 0.55, 0.58, 0.2, 0.0, 0.4, 0.05, 0.33, 0.28, 0.35, 0.24, 0.16, 0.59, 0.21, 0.48, 0.2, 0.21, 0.45, 0.49, 0.37, 0.56, 0.31, 0.44, 0.14, 0.46, 0.47, 0.2, 0.24, 0.36, 0.25, 0.65, 0.54, 0.22, 0.17, 0.4, 0.35, 0.35, 0.4, 0.33, 0.24, 0.16, 0.46, 0.0, 0.46, 0.49, 0.29, 0.3, 0.22, 0.27, 0.01, 0.18, 0.49, 0.18, 0.2, 0.29, 0.03, 0.7, 0.09, 0.42], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Current<br>citric.acid=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [0.49, 0.12, 0.36, 0.29, 0.4, 0.4, 0.18, 0.04, 0.24, 0.65, 0.25, 0.39, 0.4, 0.26, 0.45, 0.36, 0.32, 0.49, 0.34, 0.07, 0.39, 0.13, 0.36, 0.64, 0.37, 0.31, 0.3, 0.23, 0.29, 0.74, 0.79, 0.2, 0.0, 0.17, 0.33, 0.21, 0.32, 0.11, 0.19, 0.06, 0.29, 0.2, 0.74, 0.29, 0.32, 0.25, 0.24, 0.25, 0.29, 0.35, 0.54, 0.26, 0.49, 0.22, 0.1, 0.23, 0.01, 0.49, 0.29, 0.2, 0.49, 0.34, 0.18, 0.4, 0.21, 0.06, 0.59, 0.0, 0.0, 0.03, 0.02, 0.25, 0.14, 0.26, 0.35, 0.28, 0.46, 0.52, 0.21, 0.3, 0.34, 0.18, 0.2, 0.33, 0.49, 0.27, 0.3, 0.34, 0.13, 0.36, 0.49, 0.26, 0.41, 0.42, 0.01, 0.0, 0.49, 0.19, 0.08, 0.55, 0.45, 0.32, 0.36, 0.11, 0.32, 0.09, 0.04, 0.0, 0.26, 0.41, 0.06, 0.5, 0.02, 0.29, 0.28, 0.34, 0.22, 0.24, 0.45, 0.08, 0.2, 0.28, 0.26, 0.17, 0.13, 0.18, 0.32, 0.38, 0.13, 0.37, 0.41, 0.32, 0.42, 0.49, 0.28, 0.62, 0.24, 0.17, 0.2, 0.2, 0.39, 0.49, 0.33, 0.42, 0.44, 0.28, 0.39, 0.23, 0.26, 0.23, 0.0, 0.22, 0.42, 0.19, 0.27, 0.24, 0.25, 0.44, 0.22, 0.42, 0.36, 0.47, 0.35, 0.48, 0.08, 0.26, 0.29, 0.46, 0.34, 0.38, 0.38, 0.32, 0.26, 0.28, 0.21, 0.0, 0.24, 0.35, 0.27, 0.35, 0.36, 0.23, 0.49, 0.1, 0.34, 0.32, 0.3, 0.22, 0.49, 0.22, 0.03, 0.46, 0.3, 0.28, 0.62, 0.21, 0.27, 0.1, 0.39, 0.3, 0.02, 0.26, 0.2, 0.4, 0.28, 0.36, 0.42, 0.59, 0.16, 0.69, 0.49, 0.23, 0.08, 0.4, 0.49, 0.24, 0.28, 0.33, 0.86, 0.24, 0.56, 0.25, 0.43, 0.41, 0.37, 0.14, 0.49, 0.29, 0.34, 0.34, 0.2, 0.34, 0.25, 0.35, 0.11, 0.48, 0.33, 0.31, 0.42, 0.33, 0.18, 0.02, 0.39, 0.32, 0.33, 0.12, 0.37, 0.3, 0.48, 0.01, 0.31, 0.2, 0.32, 0.62, 0.25, 0.36, 0.32, 0.23, 0.23, 0.33, 0.14, 0.22, 0.74, 0.74, 0.33, 0.36, 0.24, 0.38, 0.34, 0.44, 0.31, 0.12, 0.74, 0.42, 0.49, 0.25, 0.26, 0.34, 0.07, 0.47, 0.1, 0.25, 0.38, 0.0, 0.18, 0.37, 0.3, 0.26, 0.49, 0.38, 0.35, 0.07, 0.24, 0.06, 0.33, 0.39, 0.16, 0.38, 0.44, 0.39, 0.28, 0.65, 0.54, 0.56, 0.24, 0.06, 0.48, 0.29, 0.46, 0.26, 0.18, 0.19, 0.44, 0.41, 0.33, 0.74, 0.26, 0.49, 0.29, 0.1, 0.68, 0.08, 0.24, 0.27, 0.13, 0.53, 0.2, 0.49, 0.45, 0.14, 0.06, 0.29, 0.39, 0.4, 0.21, 0.41, 0.28, 0.04, 0.25, 0.32, 0.15, 0.49, 0.25, 0.27, 0.49, 0.3, 0.41, 0.49, 0.25, 0.4, 0.28, 0.3], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Reference\", \"x\": 0.245, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Current\", \"x\": 0.755, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"barmode\": \"overlay\", \"legend\": {\"title\": {\"text\": \"target\"}, \"tracegroupgap\": 0}, \"margin\": {\"t\": 60}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.49], \"title\": {\"text\": \"citric.acid\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.51, 1.0], \"matches\": \"x\", \"title\": {\"text\": \"citric.acid\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"count\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}}}, \"citric.acid_good\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (ref)\", \"type\": \"scatter\", \"x\": [0.32, 0.24, 0.36, 0.24, 0.27, 0.21, 0.3, 0.46, 0.34, 0.26, 0.4, 0.21, 0.26, 0.33, 0.24, 0.47, 0.29, 0.76, 0.2, 0.29, 0.28, 0.27, 0.28, 0.36, 0.49, 0.27, 0.3, 0.49, 0.33, 0.48, 0.49, 0.32, 0.28, 0.34, 0.36, 0.44, 0.31, 0.31, 0.22, 0.39, 0.26, 0.49, 0.37, 0.26, 0.26, 0.32, 0.38, 0.19, 0.53, 0.3, 0.29, 0.29, 0.26, 0.29, 0.49, 0.28, 0.36, 0.38, 0.24, 0.32, 0.42, 0.23, 0.74, 0.44, 0.66, 0.13, 0.28, 0.3, 0.26, 0.36, 0.35, 0.24, 0.28, 0.68, 0.35, 0.29, 0.46, 0.28, 0.1, 0.35, 0.24, 0.34, 0.3, 0.45, 0.33, 0.34, 0.29, 0.31, 0.31, 0.41, 0.28, 0.28, 0.38, 0.4, 0.29, 0.25, 0.29, 0.28, 0.25, 0.65, 0.34, 0.36, 0.46, 0.34, 0.3, 0.32, 0.26, 0.49, 0.33, 0.02, 0.33, 0.28, 0.32, 0.29, 0.27, 0.32, 0.25, 0.36, 0.35, 0.46, 0.3, 0.49, 0.34, 0.31, 0.22, 0.02, 0.01, 0.5, 0.36, 0.0, 0.33, 0.18, 0.4, 0.32, 0.43, 0.54, 0.4, 0.02, 0.2, 0.24, 0.37, 0.31, 0.32, 0.34, 0.41, 0.43, 0.46, 0.27, 0.24, 0.32, 0.28, 0.59, 0.25, 0.26, 0.3, 0.5, 0.28, 0.35, 0.26, 0.38, 0.29, 0.27, 0.36, 0.25, 0.2, 0.34, 0.3, 0.21, 0.58, 0.04, 0.42, 0.37, 0.46, 0.28, 0.14, 0.09, 0.04, 0.21, 0.24, 0.1, 0.29, 0.49, 0.35, 0.3, 0.16, 0.29, 0.33, 0.48, 0.34, 0.31, 0.29, 0.0, 0.14, 0.05, 0.02, 0.34, 0.16, 0.32, 0.26, 0.48, 0.49, 0.27, 0.49, 0.12, 0.26, 0.37, 0.34, 0.49, 0.27, 0.43, 0.49, 0.2, 0.34, 0.32, 0.27, 0.26, 0.29, 0.49, 0.31, 0.32, 0.32, 0.49, 0.26, 0.4, 0.6, 0.37, 0.34, 0.4, 0.31, 0.29, 0.32, 0.21, 0.0, 0.28, 0.28, 0.21, 0.36, 0.41, 0.42, 0.34, 0.33, 0.39, 1.0, 0.44, 0.12, 0.32, 0.31, 0.27, 0.4, 0.33, 0.42, 0.3, 0.43, 0.35, 0.37, 0.28, 0.31, 0.14, 0.49, 0.39, 0.34, 0.49, 0.37, 0.44, 0.35, 0.32, 0.37, 0.57, 0.06, 0.34, 0.36, 0.08, 0.31, 0.3, 0.26, 0.26, 0.28, 0.41, 0.0, 0.79, 0.36, 0.44, 0.32, 0.3, 0.39, 0.42, 0.25, 0.28, 0.08, 0.39, 0.31, 0.3, 0.48, 0.24, 0.41, 0.25, 0.0, 0.12, 0.36, 0.38, 0.02, 0.24, 0.3, 0.26, 0.33, 0.46, 0.26, 0.33, 0.39, 0.47, 0.3, 0.34, 0.13, 0.36, 0.36, 0.62, 0.31, 0.3, 0.27, 0.27, 0.27, 0.38, 0.31, 0.3, 0.29, 0.02, 0.22, 0.39, 0.49, 0.27, 0.28, 0.33, 0.44, 0.57, 0.36, 0.31, 0.33, 0.33, 0.21, 0.28, 0.28, 0.45, 0.36, 0.26, 0.13, 0.49, 0.32, 0.09, 0.0, 0.36, 0.29, 0.41, 0.28, 0.3, 0.3, 0.4, 0.32, 0.33, 0.51, 0.36, 0.41, 0.19, 0.35, 0.44, 0.03, 0.27, 0.31, 0.27, 0.36, 0.26, 0.3, 0.39, 0.3, 0.23, 0.28, 0.26, 0.31, 0.0, 0.27, 0.34, 0.2, 0.32, 0.13, 0.36, 0.49, 0.29, 0.37, 0.31, 0.29, 0.37, 0.28, 0.24, 0.49, 0.3, 0.28, 0.47, 0.42, 0.28, 0.32, 0.28, 0.05, 0.21, 0.23, 0.33, 0.28, 0.32, 0.34, 0.42, 0.0, 0.49, 0.24, 0.3, 0.35, 0.3, 0.56, 0.45, 0.28, 0.35, 0.18, 0.2, 0.37, 0.31, 0.3, 0.28, 0.27, 0.18, 0.44, 0.3, 0.3, 0.36, 0.49, 0.41, 0.28, 0.31, 0.35, 0.1, 0.29, 0.01, 0.33, 0.49, 0.38, 0.74, 0.37, 0.45, 0.62, 0.33, 0.4, 0.26, 0.47, 0.28, 0.28, 0.24, 0.27, 0.35, 0.3, 0.76, 0.27, 0.01, 0.27, 0.27, 0.73, 0.29, 0.49, 0.25, 0.31, 0.02, 0.27, 0.36, 0.3, 0.51, 0.15, 0.49, 0.33, 0.32, 0.35, 0.29, 0.49, 0.34, 0.32, 0.44, 0.24, 0.48, 0.23, 0.24, 0.31, 0.39, 0.49, 0.3, 0.3, 0.05, 0.41, 0.23, 0.4, 0.41, 0.39, 0.42, 0.3, 0.35, 0.34, 0.29, 0.26, 0.31, 0.38, 0.38, 0.44, 0.33, 0.33, 0.49, 0.38, 0.27, 0.33, 0.31, 0.31, 0.5, 0.36, 0.37, 0.46, 0.44, 0.37, 0.35, 0.31, 0.25, 0.36, 0.37, 0.0, 0.3, 0.7, 0.36, 0.29, 0.33, 0.32, 0.25, 0.28, 0.21, 0.4, 0.06, 0.28, 0.29, 0.35, 0.35, 0.35, 0.29, 0.41, 0.49, 0.25, 0.25, 0.5, 0.49, 0.26, 0.29, 0.32, 0.24, 0.28, 0.4, 0.3, 0.02, 0.31, 0.36, 0.22, 0.36, 0.35, 0.34, 0.1, 0.24, 0.0, 0.32, 0.23, 0.49, 0.32, 0.32, 0.28, 0.41, 0.28, 0.37, 0.33, 0.31, 0.28, 0.3, 0.24, 0.34, 0.31, 0.35, 0.26, 0.0, 0.74, 0.01, 0.16, 0.32, 0.24, 0.32, 0.28, 0.32, 0.37, 0.29, 0.04, 0.29, 0.3, 0.16, 0.33, 0.23, 0.49, 0.38, 0.32, 0.26, 0.56, 0.66, 0.29, 0.29, 0.4, 0.27, 0.21, 0.35, 0.28, 0.24, 0.28, 0.38, 0.25, 0.49, 0.32, 0.18, 0.43, 0.33, 0.47, 0.04, 0.33, 0.27, 0.36, 0.25, 0.4, 0.33, 0.24, 0.35, 0.31, 0.31, 0.38, 0.49, 0.44, 0.4, 0.33, 0.26, 0.38, 0.22, 0.28, 0.34, 0.36], \"xaxis\": \"x\", \"y\": [0.8156061324462894, 0.42491310922683634, 0.8867827646463432, 0.8014995238430205, 0.30499958310650876, 0.5817355832705369, 0.959171062334887, 0.7854416128369749, 0.9085690698200813, 0.8998600376511439, 0.6341165000693628, 0.412102187638673, 0.7643629411050379, 0.4710001938005606, 0.40182653035141874, 0.40438056362905367, 0.8870480016118494, 0.3650667978415713, 0.9064321709292111, 0.9327245345966092, 0.6458420185168736, 0.8821841129047617, 0.6704018506542557, 0.7655671181822064, 0.8616986618932058, 0.48774537944210006, 0.9637355036179479, 0.6794204065079696, 0.6044835155949141, 0.7867954023600708, 0.9137982268836646, 0.5867502063434873, 0.8048584290077971, 0.9718511071053526, 0.9627192884041744, 0.7978623718349598, 0.6091120966723917, 0.8943338178728011, 0.8853376735027229, 0.9045563504021151, 0.9264844632598176, 0.6342457655367447, 0.9414033426130164, 0.5636516403732365, 0.5172967922101196, 0.4836896337264441, 0.35199620689495453, 0.788779954566273, 0.9696552399248426, 0.772496554239754, 0.8132656157621138, 0.4539090261140653, 0.9333708926412786, 0.679765045723866, 0.48457442622955804, 0.4248820606938153, 0.6737819616086004, 0.8780741425819777, 0.38340602447337646, 0.90634085684919, 0.5574014604752268, 0.6804147683859246, 0.9077110088845216, 0.7718472635729894, 0.4717552048891654, 0.22222808308441652, 0.8616549355667619, 0.705749071892896, 0.4699129352300819, 0.9680524782819758, 0.8891353183282249, 0.9466602521798594, 0.8553382520847058, 0.7430243903066251, 0.6616131862201935, 0.6919609500216202, 0.96565744679506, 0.913108907487878, 0.5395521774612226, 0.9026238558501023, 0.6550941529376255, 0.9757876320152292, 0.8833495792027257, 0.6666029765862381, 0.8504582120840628, 0.9320215595878566, 0.7639947574915884, 0.6085229656221847, 0.9557131606798471, 0.46184432615952054, 0.5642658412077981, 0.8815615400732472, 0.7189203536918151, 0.9301020530176726, 0.7341394174346678, 0.7759189559372703, 0.8448078654733812, 0.9012666081120407, 0.8926028620066223, 0.5287492720273277, 0.6874206920638863, 0.37408584674942635, 0.8348370105186077, 0.8697567261320243, 0.9175759024810304, 0.44644098895981, 0.8874384748400057, 0.7787567487441118, 0.9416122482572158, 0.3265229243180111, 0.9308095750950773, 0.42267134533232753, 0.43068181214270274, 0.8727308285810839, 0.7201611177732586, 0.8430904589044517, 0.8140617541555761, 0.9456747441572588, 0.6672663325862807, 0.8756470416862959, 0.518871521713375, 0.7040615347784164, 0.4957960231649875, 0.6250130361556073, 0.27413726132188326, 0.5193133578087885, 0.37656641690434584, 0.5808048103476511, 0.7917827117482167, 0.36569143480873245, 0.7232542293832885, 0.9785934574433302, 0.5715075300165849, 0.8182555969893297, 0.5448461144048058, 0.9491291995847589, 0.4833587957991669, 0.3189279754564957, 0.9184825510014271, 0.5524830505676419, 0.9600429304649183, 0.7818180966165994, 0.7962710274484252, 0.7569429870375118, 0.46184432615952054, 0.7641514270390748, 0.9486763575522457, 0.8086368705092697, 0.6784536879503494, 0.6877019790624462, 0.6082670858563528, 0.6053794617794684, 0.6319330693089359, 0.4982105707488519, 0.6787928880949093, 0.9231980717613485, 0.8831230955067948, 0.6845485656817341, 0.8799204262605215, 0.9164563829924386, 0.7819268199067826, 0.23469888428232324, 0.9492377841603665, 0.8826092272015389, 0.6360541596480074, 0.5184081252698399, 0.6400126753125241, 0.542646305979658, 0.4479501208302092, 0.7783171875827786, 0.7867712153112567, 0.5236605417423803, 0.6959846197179591, 0.7925023358445066, 0.6683189355892497, 0.18737025221649042, 0.42506327048176057, 0.7272596040941706, 0.7314191754306454, 0.4827891324637794, 0.6649341228620356, 0.9038332731164471, 0.9588917860646077, 0.8945194928389463, 0.49833043835950624, 0.7997712594855277, 0.8577935987172323, 0.7622736922026153, 0.8039391974899521, 0.7396811504731934, 0.8115340233127679, 0.801728888664367, 0.738451208106372, 0.5859674792922007, 0.1865203674848816, 0.8773430435604171, 0.36888329310067386, 0.8651817982269884, 0.9067615420962557, 0.8594983988587351, 0.7437750884018276, 0.9145224932934428, 0.9135679891815164, 0.8001832456898428, 0.6860977766129374, 0.9377826008632761, 0.9300369611912853, 0.6997062971069969, 0.5693182102579236, 0.3404656140239559, 0.7160591142088384, 0.7953146078011, 0.8869803873277935, 0.7639982823097876, 0.8681285227071118, 0.576868797021353, 0.93035102563313, 0.8375600281828176, 0.8279918435672958, 0.9266689436294401, 0.7559862346636359, 0.5099889666930224, 0.6914445842613687, 0.9651950326885705, 0.87851968214492, 0.8499702807396289, 0.4685752957996948, 0.7241546992314323, 0.7848147251007912, 0.7341394174346678, 0.7008877443692281, 0.340588975625529, 0.5013021766499856, 0.8321174529331695, 0.8818378666553491, 0.9176909075187759, 0.8634678749265305, 0.7436082905772717, 0.9343776659412377, 0.7668809937296346, 0.6243383802582345, 0.5332560471205093, 0.6907315465649003, 0.16626803588025432, 0.1668542888532837, 0.7408943843163458, 0.5221312328975666, 0.7457559475413279, 0.46389636934606376, 0.9292627865919654, 0.5268311186840582, 0.4244151934213653, 0.643310536612302, 0.8577438313980266, 0.7816208399762355, 0.8553382520847058, 0.7010035672814305, 0.5242572272016158, 0.9187320011579697, 0.8703498177621264, 0.6713045345576062, 0.9137982268836646, 0.8614414457916845, 0.9445662266054761, 0.8808216590199034, 0.7386378115490353, 0.8873009977622293, 0.9157094897337859, 0.6606038558129893, 0.9296803968514485, 0.8864322240790464, 0.5146720135715994, 0.8720710714485208, 0.9415427660945741, 0.9138701141498735, 0.6527559092576063, 0.8751970040938668, 0.9249766460056568, 0.801728888664367, 0.6575848465963361, 0.6934824043184128, 0.8619113960143526, 0.9419078024651042, 0.9591721389341828, 0.8397407150753159, 0.9084383840076588, 0.4963969309336195, 0.7359588175524252, 0.3531961907069324, 0.9279819479140234, 0.7752976919572294, 0.8665226278427577, 0.9515211055933231, 0.7314191754306454, 0.890886918514299, 0.3235491032739525, 0.3719939405423586, 0.6323804178173072, 0.8398006965792015, 0.8239469134189235, 0.8592101816891015, 0.7615002907198236, 0.8688259750909261, 0.8718104001390852, 0.5838074755684882, 0.8756470416862959, 0.901850575196968, 0.9451930143658351, 0.6253812669856891, 0.5890764576710766, 0.4921052500998711, 0.4862070578416567, 0.9170647663398394, 0.7035583451969506, 0.8476385889092957, 0.5603058978573646, 0.5810606890504925, 0.9088604673919816, 0.8903252600075929, 0.944267921154058, 0.9435968591480925, 0.938237366988842, 0.9357286047893738, 0.7961386682142712, 0.7840233885688647, 0.2513590507613302, 0.7389284097502917, 0.9053472250810051, 0.44438282424164377, 0.862281110352348, 0.8021059248496223, 0.9152740930046814, 0.643737358401971, 0.8540304955499701, 0.8613418170006786, 0.6911084183178322, 0.8848367871057808, 0.8387883096682573, 0.5942651630821018, 0.65691393717736, 0.6369979527510315, 0.8280658524313272, 0.9640736168216585, 0.6546311715671466, 0.5599819536107853, 0.48348053317652906, 0.7668016587569692, 0.03620763244300767, 0.7364400865449663, 0.37408584674942635, 0.8767503774172, 0.8743962287172513, 0.8751970040938668, 0.8833495792027257, 0.7091886355621774, 0.87006937054451, 0.7904001815220257, 0.8761418339280951, 0.8306834851111597, 0.7531715889012326, 0.38181207472529843, 0.6490458991820136, 0.9138057013338913, 0.9046222904886461, 0.17956061692355052, 0.7506163079023257, 0.8963285795381793, 0.8848361664653354, 0.9283037217377402, 0.45996158699034445, 0.7290858434196763, 0.8319094967702583, 0.6578018675312727, 0.18727567457681707, 0.8673410249845035, 0.9453298670648187, 0.9446538464906173, 0.19605573045952288, 0.6723831041639817, 0.3438281302059518, 0.37858973820495484, 0.6953170483296187, 0.21463507152544156, 0.26963792069965237, 0.3280912492037974, 0.8399932187801539, 0.420387898633768, 0.36522500752858966, 0.5810560693343539, 0.9306346767722963, 0.7167716539092029, 0.656736106921484, 0.5549139996760648, 0.6909161521388689, 0.591904263202073, 0.884703171197362, 0.866402281883595, 0.7582770814524421, 0.8990773411030794, 0.1818065866116437, 0.6222165686186035, 0.17261914235374884, 0.8156064679757086, 0.4851213943917703, 0.8871292211128762, 0.8398494053952754, 0.703270618172154, 0.6305543892506115, 0.7494149477175548, 0.1532408287022325, 0.6159732902773407, 0.738220551127759, 0.8354520044441791, 0.8536870432671441, 0.5751476712690671, 0.9077719201719568, 0.7878515691455199, 0.6672663325862807, 0.45293736875445273, 0.17058553029544155, 0.747933377844996, 0.8400163125056676, 0.4516778718827729, 0.6082670858563528, 0.8401843469141149, 0.7636885291754726, 0.789170795337903, 0.8128612802083497, 0.7522530659814418, 0.8086757686066508, 0.8356255123032285, 0.9241779635105248, 0.9674588597049086, 0.9368885694202199, 0.4990764491242286, 0.876561204324957, 0.554264192243629, 0.5967716244634195, 0.9060244606340249, 0.8401608718856799, 0.7329750583133859, 0.8021769878309102, 0.9316817655017511, 0.45488322534173153, 0.798578398438993, 0.7425236774748816, 0.5742682328784404, 0.4937681935814938, 0.8972164286692267, 0.8914273370768748, 0.9377613518261881, 0.8862258850530264, 0.8591757581361523, 0.7410678096850266, 0.6822336012657398, 0.9201658505843877, 0.6982578893131915, 0.5746709232170782, 0.7626532952948841, 0.7137703530889916, 0.7520971196461234, 0.4473853625959922, 0.7957460056304991, 0.4833174871501707, 0.8758467705785958, 0.4689303842787964, 0.6133612564737879, 0.8568681391705205, 0.6835133967314007, 0.9732070839986944, 0.21435716257549006, 0.5761668962420043, 0.4055433603128916, 0.3743394998756179, 0.9118635774953143, 0.964551884718591, 0.9306459334511011, 0.8424802355113449, 0.7739144871152517, 0.6872688771534424, 0.8590561833388345, 0.6714384475466295, 0.6408669500407106, 0.5203550269219845, 0.2856853969697174, 0.857760555506807, 0.9307094503226838, 0.6787928880949093, 0.8308635255795866, 0.29271374211533296, 0.6769315553524353, 0.23831547366416572, 0.5895099457120908, 0.8994675076574448, 0.8893400405584444, 0.8456825404777587, 0.5399612081435882, 0.6188649121485582, 0.9281492942813848, 0.7611740601422801, 0.46550237374781617, 0.8896861436466836, 0.9038901015569306, 0.5044440900554997, 0.9215480939667524, 0.6930273792518707, 0.8723244804196287, 0.5624338775604165, 0.9226297661236537, 0.8469231754225917, 0.9430557295321259, 0.9097116306258912, 0.5988707702267543, 0.3813853072548755, 0.8843832309478876, 0.9006952500629406, 0.918975987201669, 0.18997930334445084, 0.8923106748541326, 0.8461388699436441, 0.5973439234355874, 0.9544642924744549, 0.91770416680597, 0.9177239854204658, 0.17584552180125673, 0.9240099144459667, 0.48524948024905407, 0.8889685222180134, 0.5785503824403398, 0.7511953459672914, 0.6887596776945688, 0.6717539058356753, 0.7168761391602206, 0.7134478068952186, 0.834626350903405, 0.5715867980362679, 0.6588392688727011, 0.9488572786900573, 0.8920529250761863, 0.8891353183282249, 0.707981940789761, 0.926348680038428, 0.631489487929038, 0.7443856388661001, 0.9260754381930228, 0.9544642924744549, 0.8497401318990601, 0.5604010177433062, 0.8036334301115304, 0.7898153537185114, 0.8491431337122072, 0.6570881560807702, 0.8389599143569951, 0.7944137576415592, 0.8132668978866627, 0.44714680104169846, 0.7978021044641371, 0.41921696608658454, 0.38876183891604754, 0.9248463736054193, 0.4277915265084825, 0.6345107008491314, 0.8008942533173764, 0.5087430598332189, 0.9414938992689892, 0.6922115882765215, 0.8296175750175913, 0.8593339228153332, 0.8975141534758351, 0.5977126281557783, 0.9279478536756302, 0.6485770817571253, 0.8905823996589662, 0.9332072841984264, 0.9432461110830079, 0.9410120781436498, 0.6339696776630096, 0.7120962557761497, 0.5841709037351369, 0.5928970840420333, 0.9006589732900512, 0.936371533648048, 0.6907852379101131, 0.7675780198071424, 0.9444587893431046, 0.4702336163336472, 0.8925536722101626, 0.8158978708906081, 0.822780392485108, 0.8037335327290217, 0.8382351003285965, 0.8941557358589171, 0.4796498334522667, 0.926348680038428, 0.6842118015950474, 0.6463580983468415, 0.8292048071278182, 0.5834426687867836, 0.8419845362148763, 0.2431563391580561, 0.7763142135369961, 0.9390550746437164, 0.7774903237071782, 0.8141232663130791, 0.9444089886680379, 0.430401459478284, 0.9192677156927759, 0.8427595869840984, 0.87120858451521, 0.5693182102579236, 0.820012080301976, 0.58719119911586, 0.42769376643096113, 0.3542595869275313, 0.89579938191327, 0.8743523014696554, 0.7820497043505815, 0.5279069501129625, 0.8869579700149332, 0.45488774279476296, 0.8514781135508903, 0.8278297091497892, 0.663749097381813, 0.5132851713944618, 0.4906566565015208, 0.6415219885510332, 0.6991293681294938, 0.8150539074042624, 0.5800669536763935, 0.9583771200922359, 0.7366090055976814, 0.5747817696023392, 0.5315376696882942, 0.8074446941396305, 0.9038901015569306, 0.9087015650331977, 0.6697291810323083, 0.5800669536763935, 0.8807270543114014, 0.5135845984304893, 0.9352791850238339, 0.36120709973337456, 0.6206709330576408, 0.906286252315459, 0.7937202818717513], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [0.65, 0.47, 0.32, 0.08, 0.23, 0.0, 0.07, 0.52, 0.37, 0.23, 0.3, 0.49, 0.74, 0.35, 0.06, 0.2, 0.33, 0.09, 0.22, 0.0, 0.47, 0.26, 0.1, 0.3, 0.0, 0.04, 0.18, 0.32, 0.1, 0.32, 0.0, 0.27, 0.66, 0.24, 0.37, 0.49, 0.35, 0.37, 0.57, 0.36, 0.38, 0.6, 0.27, 0.14, 0.15, 0.24, 0.24, 0.27, 0.43, 0.15, 0.24, 0.22, 0.31, 0.49, 0.26, 0.49, 0.42, 0.25, 0.53, 0.52, 0.44, 0.35, 0.08, 0.24, 0.2, 0.3, 0.34, 0.21, 0.13, 0.31, 0.31, 0.65, 0.66, 0.33, 0.29, 0.07, 0.43, 0.4, 0.2, 0.36, 0.3, 0.37, 0.43, 0.2, 0.23, 0.31, 0.34, 0.17, 0.35, 0.1, 0.65, 0.24, 0.1, 0.66, 0.42, 0.52, 0.56, 0.46, 0.44, 0.35, 0.5, 0.31, 0.28, 0.34, 0.31, 0.68, 0.19, 0.37, 0.49, 0.24, 0.24, 0.33, 0.2, 0.27, 0.17, 0.36, 0.62, 0.23, 0.43, 0.26, 0.2, 0.28, 0.34, 0.55, 0.24, 0.24, 0.22, 0.22, 0.42, 0.19, 0.47, 0.22, 0.3, 0.51, 0.3, 0.2, 0.36, 0.23, 0.35, 0.21, 0.22, 0.4, 0.38, 0.18, 0.22, 0.42, 0.26, 0.34, 0.14, 0.48, 0.38, 0.0, 0.41, 0.09, 0.41, 0.0, 0.53, 0.24, 0.35, 0.07, 0.43, 0.24, 0.49, 0.23, 0.03, 0.39, 0.2, 0.23, 0.28, 0.36, 0.41, 0.18, 0.26, 0.64, 0.28, 0.28, 0.21, 0.28, 0.3, 0.1, 0.46, 0.0, 0.35, 0.34, 0.52, 0.16, 0.45, 0.24, 0.15, 0.37, 0.19, 0.3, 0.5, 0.04, 0.51, 0.0, 0.31, 0.31, 0.26, 0.21, 0.14, 0.5, 0.5, 0.43, 0.24, 0.26, 0.19, 0.41, 0.04, 0.37, 0.29, 0.28, 0.44, 0.74, 0.47, 0.13, 0.23, 0.06, 0.38, 0.48, 0.11, 0.27, 0.51, 0.41, 0.29, 0.34, 0.03, 0.47, 0.04, 0.0, 0.2, 0.54, 0.28, 0.25, 0.32, 0.21, 0.41, 0.25, 0.34, 0.56, 0.33, 0.39, 0.29, 0.32, 0.27, 0.5, 0.49, 0.24, 0.37, 0.33, 0.25, 0.26, 0.66, 0.03, 0.34, 0.51, 0.38, 0.24, 0.46, 0.63, 0.28, 0.22, 0.33, 0.57, 0.33, 0.3, 0.24, 0.22, 0.25, 0.2, 0.35, 0.3, 0.38, 0.26, 0.5, 0.39, 0.12, 0.61, 0.19, 0.13, 0.24, 0.21, 0.32, 0.07, 0.24, 0.2, 0.47, 0.3, 0.27, 0.22, 0.49, 0.55, 0.22, 0.11, 0.4, 0.26, 0.23, 0.55, 0.58, 0.2, 0.0, 0.4, 0.05, 0.33, 0.28, 0.35, 0.24, 0.16, 0.59, 0.21, 0.48, 0.2, 0.21, 0.45, 0.49, 0.37, 0.56, 0.31, 0.44, 0.14, 0.46, 0.47, 0.2, 0.24, 0.36, 0.25, 0.65, 0.54, 0.22, 0.17, 0.4, 0.35, 0.35, 0.4, 0.33, 0.24, 0.16, 0.46, 0.0, 0.46, 0.49, 0.29, 0.3, 0.22, 0.27, 0.01, 0.18, 0.49, 0.18, 0.2, 0.29, 0.03, 0.7, 0.09, 0.42], \"xaxis\": \"x\", \"y\": [0.2802292104526322, 0.9455194119275858, 0.4978743212349556, 0.5289145624519528, 0.28439238707197784, 0.2033309570226689, 0.27345747478543325, 0.8322873304845451, 0.389055896812549, 0.3675472469853882, 0.5781933746273124, 0.7401955299744071, 0.44969671697605845, 0.4367887814338696, 0.31593955341667695, 0.3775624358859999, 0.19282181046294666, 0.048451763306065584, 0.6005928650583868, 0.032225376113695775, 0.427412413738938, 0.23973251442015217, 0.13890126550157303, 0.8613925272127, 0.329663916828638, 0.19359965390713213, 0.6827271716759634, 0.1960905505555538, 0.08135735686643118, 0.39737240301928484, 0.13902987396822816, 0.6514166433739288, 0.6994753721471061, 0.7140886736258081, 0.5021795028970708, 0.48743245558712556, 0.5731139673640956, 0.8820820642542792, 0.559972149724866, 0.5061565591493914, 0.5066810377847554, 0.833805652807593, 0.6979972163580744, 0.3177574231538272, 0.13068190592986567, 0.758876109553896, 0.5681062961269688, 0.715544821914063, 0.762062625203523, 0.4464438677531786, 0.20995974230910305, 0.5262622410710028, 0.39442669669188163, 0.2537324982988368, 0.6775437642744659, 0.23876321589577687, 0.6369158982934647, 0.38960060362966165, 0.6034323722874255, 0.7769991715799629, 0.15199748354041337, 0.5641412449951732, 0.7590466800561823, 0.5969347905931296, 0.1048362779837843, 0.7217824369593382, 0.2662339163773806, 0.16472378978351135, 0.37760124376932414, 0.7071736299639594, 0.3436862995931572, 0.8384434752264291, 0.3635333644877426, 0.7813188949129265, 0.7279369976219869, 0.5641098847382463, 0.3863964747623771, 0.9209913370067284, 0.1477144681640183, 0.8809374658555192, 0.6533168894759348, 0.8873477284758582, 0.3697306267878623, 0.28319023347825867, 0.5203701741750857, 0.5523747693308857, 0.6387521731780509, 0.3881380695009739, 0.8487896327149285, 0.4636606453307818, 0.8384434752264291, 0.558266603669778, 0.21657231888677728, 0.3635333644877426, 0.5512671313974766, 0.5051039398599867, 0.5827915753039158, 0.49441682850108926, 0.47309171914705017, 0.6262595591688196, 0.5508242483721094, 0.47332791509789995, 0.7117569366896692, 0.3933786516273859, 0.16465066549244003, 0.7490394132223248, 0.769261050002088, 0.7431932405995126, 0.3141000916210982, 0.723735045552473, 0.6484132891031948, 0.688519894019609, 0.40496704226994307, 0.5803736122960511, 0.6327801522745691, 0.45115706990411364, 0.37268733756108086, 0.9009693101135351, 0.06496389958099598, 0.44431713201158524, 0.39960831974332744, 0.8662156944598043, 0.31018081106061823, 0.5339551117365043, 0.33311273919547707, 0.400132762133902, 0.8528754522806217, 0.14419347879543085, 0.11672350429510901, 0.44556702529145975, 0.6160120899414699, 0.13766892845409207, 0.5517204028384314, 0.5232178919035022, 0.35483403305733974, 0.4900213704561591, 0.8854578072659228, 0.43084122675663034, 0.7601186327653665, 0.14072030431570776, 0.6186690618327106, 0.5245054232921349, 0.7326259458716644, 0.5690781983520095, 0.4018508815425063, 0.24877469563805235, 0.7952501197393639, 0.8766221356386195, 0.303451532996695, 0.5357745481647883, 0.7096524147827454, 0.20877177283968149, 0.8635610141758273, 0.46736762313881036, 0.6061151992073851, 0.113015272873705, 0.40446014603085867, 0.6332606063976143, 0.648705381890928, 0.42186952587750404, 0.8047913565308571, 0.3017058309841093, 0.38406990132164637, 0.33494193042999065, 0.19929939967121216, 0.8624919783238055, 0.528785836409086, 0.43084122675663034, 0.47042159929499583, 0.5061565591493914, 0.5759491569657543, 0.8468794444363914, 0.20342296359496542, 0.5170831534483544, 0.3666753044655067, 0.6131723001375537, 0.4410646109528086, 0.6903416342484309, 0.3866428492574258, 0.4636606453307818, 0.4525459302795702, 0.03199256040434073, 0.7029629492254846, 0.2433141614541866, 0.548755973819273, 0.3775060302547258, 0.06593060991448157, 0.8745624549148976, 0.22931948662359403, 0.27267688907931714, 0.589328430619086, 0.8007160756317941, 0.5525637789187225, 0.5008522318356121, 0.4556212410144909, 0.17391722008742402, 0.43574637053357784, 0.3237440077649342, 0.6071692164257629, 0.6925152430641841, 0.592675381607996, 0.43854150134957587, 0.43854150134957587, 0.42437112972565305, 0.8061118855433299, 0.35195592295594336, 0.7605370065149419, 0.38898578429124253, 0.67510953655807, 0.872979709380305, 0.710510994258769, 0.720290290780972, 0.4820787970895852, 0.42019280799979697, 0.4304380754474639, 0.25285023254778977, 0.3238056884730761, 0.39471961640683584, 0.09510031985475974, 0.367046376808582, 0.21500793651835448, 0.8705359023101334, 0.6100742529031461, 0.6226449432624995, 0.7279369976219869, 0.3643494054700089, 0.09992017521484964, 0.41475515148757036, 0.6462260464983366, 0.14102909592513518, 0.48949585696458414, 0.5239520436918008, 0.6084413884537807, 0.5655473856702703, 0.9517420512476797, 0.7489379515982664, 0.4647937384849751, 0.7915321263825208, 0.44112279258530757, 0.5734340256727429, 0.6604471727860799, 0.4845203185458914, 0.6968730453869196, 0.5315374962198609, 0.8685951485887234, 0.6242442748350044, 0.2912097196987059, 0.7725938221565348, 0.2067629769731588, 0.30221725334927335, 0.13129342562285412, 0.6467789443522378, 0.6994753721471061, 0.11825382206919556, 0.41022417118631593, 0.4882665226122541, 0.7732287086973071, 0.25374762405010176, 0.49441682850108926, 0.3723877205427743, 0.652330313245635, 0.43667799883041203, 0.5964718913578133, 0.55172276504346, 0.24113559934961917, 0.8243980268882987, 0.7263843594269437, 0.43535214809021755, 0.8721122798612579, 0.18723914490145582, 0.6486906676970999, 0.11576704656818047, 0.4328241622975616, 0.491481212420291, 0.5264345378086769, 0.33856526784971647, 0.2967410926251248, 0.581398831228375, 0.5973776665460488, 0.6195406102170065, 0.37782717658841725, 0.323061133240968, 0.17420808473594895, 0.19634770547538957, 0.46492234760650425, 0.49613167963272686, 0.5812209036149294, 0.6057291775435286, 0.63414717387345, 0.5702687187355167, 0.8604975146328253, 0.6309022132706124, 0.48732991249542923, 0.6887148870948692, 0.41581945293096145, 0.5706760596351739, 0.4831274653996314, 0.06684727567316755, 0.49090643211649887, 0.15191610726090596, 0.2711405311223577, 0.7653618545702112, 0.09266565137124261, 0.4554350627407873, 0.19698919164573708, 0.6930185080649685, 0.5227537922811563, 0.50434568709929, 0.7082092780767422, 0.46058046365566996, 0.6735723234187477, 0.4285936050615775, 0.323061133240968, 0.5168500865319015, 0.6161307914674419, 0.23456444218973552, 0.3192004782541023, 0.21968945907811915, 0.5028183230931117, 0.43371621376298963, 0.6744209213341115, 0.5940260419772637, 0.13783310426722128, 0.5136444387530009, 0.5508647999875032, 0.4955911012838212, 0.9814394195009358, 0.8260225289794664, 0.17965956338109995, 0.46844896472597397, 0.6048119589659149, 0.3289160319090978, 0.2454606394453749, 0.7497022835596558, 0.683485355417811, 0.20995974230910305, 0.23504578258460665, 0.37175956099497537, 0.4875530438829156, 0.24982584224249993, 0.6282829625348888, 0.4520795162158371, 0.8200372413039435, 0.12832513643528837, 0.5299630655130737, 0.29552777318700446, 0.24021937552346023, 0.5429028773737552, 0.6311869746243346, 0.4145977043912777, 0.39329840463575844, 0.39070335653410526, 0.4286990948130573, 0.846836560604146, 0.6880850122626078], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (curr)\", \"type\": \"scatter\", \"x\": [0.19, 0.38, 0.42, 0.21, 0.23, 0.27, 0.29, 0.25, 0.31, 0.12, 0.24, 0.35, 0.25, 0.23, 0.39, 0.34, 0.0, 0.31, 0.24, 0.34, 0.3, 0.31, 0.35, 0.39, 0.28, 0.49, 0.38, 0.28, 0.32, 0.3, 0.29, 0.27, 0.37, 0.34, 0.23, 0.99, 0.27, 0.37, 0.33, 0.02, 0.34, 0.33, 0.49, 0.3, 0.42, 0.09, 0.29, 0.18, 0.33, 0.37, 0.17, 0.39, 0.44, 0.41, 0.31, 0.44, 0.56, 0.0, 0.31, 0.68, 0.09, 0.26, 0.36, 0.27, 0.29, 0.33, 0.38, 0.33, 0.06, 0.34, 0.34, 0.28, 0.28, 0.24, 0.29, 0.19, 0.24, 0.28, 0.3, 0.49, 0.4, 0.33, 0.41, 0.27, 0.34, 0.29, 0.39, 0.24, 0.49, 0.34, 0.26, 0.49, 0.26, 0.28, 0.3, 0.28, 0.4, 1.23, 0.52, 0.08, 0.44, 0.27, 0.23, 0.24, 0.34, 0.09, 0.24, 0.32, 0.42, 0.29, 0.0, 0.28, 0.3, 0.27, 0.25, 0.53, 0.22, 0.27, 0.25, 0.39, 0.23, 0.36, 0.27, 0.47, 0.1, 0.46, 0.26, 0.46, 0.4, 0.35, 0.38, 0.34, 0.28, 0.27, 0.49, 0.58, 0.34, 0.38, 0.27, 0.29, 0.45, 0.03, 0.69, 0.37, 0.26, 0.33, 0.56, 0.32, 0.3, 0.34, 0.29, 0.33, 0.31, 0.61, 0.34, 0.35, 0.38, 0.32, 0.4, 0.39, 0.39, 0.24, 0.24, 0.91, 0.49, 0.36, 0.35, 0.05, 0.4, 0.81, 0.3, 0.4, 0.28, 0.4, 0.47, 0.3, 0.17, 0.38, 0.26, 0.39, 0.3, 0.25, 0.36, 0.49, 0.32, 0.15, 0.24, 0.24, 0.36, 0.33, 0.32, 0.26, 0.32, 0.45, 0.28, 0.28, 0.32, 0.22, 0.56, 0.26, 0.36, 0.25, 0.42, 0.52, 0.5, 0.3, 0.41, 0.73, 0.3, 0.41, 0.29, 0.34, 0.24, 0.45, 0.52, 0.29, 0.38, 0.24, 0.4, 0.4, 0.49, 0.29, 0.14, 0.42, 0.5, 0.2, 0.32, 0.3, 0.45, 0.26, 0.21, 0.4, 0.39, 0.36, 0.24, 0.38, 0.24, 0.18, 0.31, 0.49, 0.35, 0.32, 0.36, 0.34, 0.2, 0.5, 0.27, 0.31, 0.34, 0.11, 0.32, 0.28, 0.44, 0.29, 0.37, 0.26, 0.74, 0.3, 0.4, 0.31, 0.02, 0.31, 0.34, 0.19, 0.27, 0.36, 0.42, 0.2, 0.42, 0.46, 0.27, 0.32, 0.32, 0.59, 0.34, 0.16, 0.49, 0.32, 0.26, 0.1, 0.53, 0.27, 0.52, 0.15, 0.32, 0.49, 0.28, 0.31, 0.07, 0.27, 0.5, 0.44, 0.28, 0.26, 0.3, 0.3, 0.48, 0.3, 0.36, 0.32, 0.29, 0.44, 0.47, 0.26, 0.36, 0.46, 0.3, 0.35, 0.39, 0.3, 0.27, 0.31, 0.08, 0.61, 0.25, 0.29, 0.4, 0.34, 0.49, 0.33, 0.28, 0.27, 0.29, 0.49, 0.37, 0.34, 0.25, 0.52, 0.58, 0.3, 0.02, 0.32, 0.0, 0.32, 0.69, 0.3, 0.42, 0.28, 0.44, 0.3, 0.31, 0.33, 0.49, 0.0, 0.08, 0.28, 0.3, 0.38, 0.49, 0.27, 0.49, 0.38, 0.32, 0.61, 0.22, 0.31, 0.25, 0.26, 0.38, 0.08, 0.29, 0.24, 0.49, 0.46, 0.43, 0.49, 0.2, 0.49, 0.41, 0.33, 0.32, 0.29, 0.4, 0.38, 0.49, 0.09, 0.37, 0.29, 0.08, 0.0, 0.27, 0.43, 0.31, 0.42, 0.39, 0.41, 0.42, 0.31, 0.11, 0.24, 0.22, 0.24, 0.45, 0.39, 0.35, 0.02, 0.39, 0.54, 0.15, 0.37, 0.42, 0.24, 0.28, 0.71, 0.27, 0.33, 0.29, 0.26, 0.28, 0.27, 0.37, 0.36, 0.49, 0.71, 0.24, 0.12, 0.38, 0.34, 0.27, 0.24, 0.25, 0.36, 0.47, 0.18, 0.54, 0.26, 0.41, 0.22, 0.29, 0.5, 0.27, 0.32, 0.38, 0.33, 0.3, 0.25, 0.38, 0.36, 0.33, 0.3, 0.3, 0.01, 0.29, 0.23, 0.38, 0.45, 0.01, 0.2, 0.19, 0.18, 0.3, 0.08, 0.26, 0.21, 0.28, 0.2, 0.31, 0.28, 0.32, 0.32, 0.3, 0.32, 0.25, 0.29, 0.31, 0.29, 0.49, 0.3, 0.33, 0.0, 0.2, 0.36, 0.2, 0.27, 0.48, 0.3, 0.2, 0.39, 0.18, 0.34, 0.23, 0.34, 0.49, 0.45, 0.38, 0.49, 0.3, 0.29, 0.1, 0.0, 0.4, 0.4, 0.39, 0.33, 0.33, 0.47, 0.42, 0.31, 0.39, 0.55, 0.41, 0.38, 0.3, 0.18, 0.24, 0.2, 0.18, 0.24, 0.43, 0.43, 0.32, 0.34, 0.28, 0.29, 0.38, 0.31, 0.31, 0.53, 0.49, 0.37, 0.33, 0.2, 0.33, 0.26, 0.4, 0.27, 0.26, 0.36, 0.35, 0.53, 0.07, 0.26, 0.36, 0.53, 0.45, 0.22, 0.66, 0.33, 0.0, 0.29, 0.32, 0.3, 0.48, 0.28, 0.37, 0.32, 0.45, 0.4, 0.24, 0.3, 0.58, 0.3, 0.21, 0.37, 0.3, 0.19, 0.21, 0.32, 0.51, 0.27, 0.26, 0.33, 0.3, 0.42, 0.3, 0.24, 0.26, 0.3, 0.39, 0.27, 0.31, 0.26, 0.29, 1.0, 0.36, 0.31, 0.38, 0.28, 0.25, 0.35, 0.2, 0.51, 0.47, 0.22, 0.31, 0.5, 0.18, 0.45, 0.15, 0.14, 0.03, 0.32, 0.36, 0.23, 0.16, 0.49, 0.26, 0.36, 0.34, 0.3, 0.21, 0.58, 0.43, 0.26, 0.36, 0.27, 0.42, 0.49, 0.26, 0.35, 0.04, 0.4, 0.28, 0.28, 0.26, 0.25, 0.27, 0.31, 0.29, 0.54, 0.28, 0.26, 0.28, 0.28, 0.18, 0.26, 0.29, 0.38, 0.65, 0.32, 0.0, 0.68, 0.36, 0.34, 0.31, 0.35, 0.46, 0.24, 0.41, 0.24, 0.3, 0.49, 0.24, 0.22, 0.31, 0.37, 0.29, 0.34], \"xaxis\": \"x2\", \"y\": [0.33396714643252134, 0.5044440900554997, 0.8874896900044845, 0.4686759077780351, 0.23831547366416572, 0.571181601185031, 0.7785327680196316, 0.7290551099174598, 0.9581131370131553, 0.6801000322064107, 0.413367674560271, 0.6667140739211237, 0.9108229754863395, 0.9275086157065797, 0.9186958597750785, 0.7191871442695774, 0.8184457509658746, 0.8597940676688322, 0.7947045908306632, 0.8244149680645384, 0.42771531534877594, 0.5315376696882942, 0.7136291946100958, 0.5510697799054304, 0.6393262665313312, 0.9016582766249417, 0.8560880110261746, 0.8947361144883382, 0.9102326114023062, 0.840723585394272, 0.9264645566705582, 0.5105903360131552, 0.752648770317166, 0.5855954083225455, 0.8989214048388485, 0.5190750352404293, 0.9560713253502463, 0.7273157243430202, 0.9279672131348602, 0.640103147954212, 0.9158977434209615, 0.9035955072010529, 0.7140955379655831, 0.233508355491505, 0.7280578325574358, 0.8810827811902006, 0.3966129217085586, 0.15541760955422754, 0.5851621750323275, 0.9046111951917862, 0.4177213302712193, 0.7993763114768937, 0.6978409661933959, 0.6473373667551029, 0.770784382977056, 0.6500641275496193, 0.548949563093737, 0.9803199442553986, 0.6150775052067382, 0.391333092160729, 0.6966682278280982, 0.9426748402861506, 0.9170092977635526, 0.844625652038695, 0.5621782696252592, 0.8935808323282117, 0.6792214086077275, 0.6719996755401956, 0.5252591274442797, 0.7277045758687855, 0.4685752957996948, 0.8616549355667619, 0.347491516391863, 0.8224130863808733, 0.5340790568488665, 0.6711667658766297, 0.5277539611022016, 0.7226430813715845, 0.8140972745487615, 0.3280236940194876, 0.9543080196225542, 0.7752655593026647, 0.9223925066666061, 0.8588031784191832, 0.6345107008491314, 0.9393010047953068, 0.7897067132703484, 0.8608062836413887, 0.8367885032124018, 0.38555642305179116, 0.8611944449682004, 0.9172341012895443, 0.9206892306522243, 0.9500505925695213, 0.537798347971205, 0.9173482789702866, 0.44454351342386716, 0.8909704850569525, 0.7351932580165473, 0.6818328744935735, 0.7981559962965634, 0.7626532952948841, 0.807353254900461, 0.964411205143099, 0.4685752957996948, 0.6986526320119215, 0.1956969407137045, 0.9233481403380283, 0.8218375601976645, 0.8536269727611236, 0.5637680470866036, 0.42267134533232753, 0.93003590801509, 0.9364808605729722, 0.8816060831574614, 0.9663102962713933, 0.8345570787709832, 0.4997893986747249, 0.7921603237806832, 0.5586815647381762, 0.8622246464681924, 0.9828719612298703, 0.909295720392338, 0.9476267884443668, 0.5395521774612226, 0.901360886913609, 0.39410444510430487, 0.9262213132200262, 0.6627387433216217, 0.9629433821448677, 0.9614311452267452, 0.9802968012486629, 0.933760787013923, 0.34432718187202205, 0.63596173557573, 0.624364378916488, 0.7417789548241253, 0.7300918276682445, 0.6968315453320488, 0.7840233885688647, 0.8958841271622066, 0.5417426694559925, 0.7102579146160282, 0.6004345411549624, 0.515920701757342, 0.7587882454650442, 0.5029588531082266, 0.6887596776945688, 0.8642849605932809, 0.6469572639767995, 0.8103639651534781, 0.939764354405301, 0.694136577696587, 0.6593725303534554, 0.9646797005081557, 0.7979900311745153, 0.792123904710467, 0.8869579700149332, 0.7351250317969437, 0.5332560471205093, 0.9406873315653421, 0.39362685027924615, 0.9466602521798594, 0.8394325033041952, 0.6633442657978572, 0.8126408700417265, 0.7332457619716184, 0.08024070404520958, 0.8667774471450977, 0.6466814331404849, 0.912366876100516, 0.656670904734599, 0.8701678467707724, 0.8875925797813499, 0.9658725076002231, 0.7668332861852056, 0.8604440887473094, 0.934384507524058, 0.9605946056867319, 0.951253157591183, 0.5749289095213865, 0.6279243005170476, 0.7937202818717513, 0.7665301650725991, 0.700127941221274, 0.8531107444728586, 0.7947045908306632, 0.8870566665876504, 0.5476228787844645, 0.8410401833568673, 0.8736671065238262, 0.6519898659949606, 0.936943112068646, 0.9077719201719568, 0.8071889556778997, 0.8815615400732472, 0.8935313268029127, 0.8782891297971865, 0.5029588531082266, 0.5797201450332624, 0.9416775458320723, 0.5958140198486584, 0.2485157288688957, 0.932021424688801, 0.8531502837407814, 0.6344194678828672, 0.632587077283238, 0.9121448358615357, 0.5776545535910985, 0.9052765174806566, 0.8580390107418799, 0.8998644401112552, 0.6784536879503494, 0.9458342431661766, 0.21387363850783603, 0.9530348339880965, 0.7307391114165022, 0.7187682731289255, 0.6905635603269331, 0.9569274903702625, 0.9287384091375525, 0.3856984054091925, 0.504413920551941, 0.5389739198483336, 0.5921068831639978, 0.10702848140489757, 0.8772993497727819, 0.6361944011057532, 0.8952999713010865, 0.7069578609115064, 0.10632960186243966, 0.6465592619811017, 0.9116333268133815, 0.9210441535829985, 0.9483358221641291, 0.5800224234700003, 0.896951343689222, 0.8958659323404018, 0.8896861436466836, 0.7763142135369961, 0.778627444633172, 0.9274605647284293, 0.9167924025380936, 0.6422094408272838, 0.6363725079258666, 0.8694129796739031, 0.5693182102579236, 0.5315376696882942, 0.6814536952243052, 0.30089534057709466, 0.6689448970920832, 0.6419522618821227, 0.6500641275496193, 0.8221968069187356, 0.9285763346020383, 0.8495153837633861, 0.7135666997345446, 0.8850789772017983, 0.9128367188568884, 0.8709442503982084, 0.44714680104169846, 0.7147831401969469, 0.6814536952243052, 0.5823319261018008, 0.7718122970862826, 0.8925058444773368, 0.9249991097277733, 0.7849066379312727, 0.5120166815330335, 0.7863291630268572, 0.8171821177205619, 0.8878235148823457, 0.9813953955585096, 0.5009899161211654, 0.6787020040856314, 0.2747106808400709, 0.6998114428322438, 0.7191783799678735, 0.7566715075843347, 0.7741630673610131, 0.692871858980435, 0.8706970297938403, 0.9226518689226377, 0.619213859232465, 0.9620625840847012, 0.8161066853745392, 0.7984578805051198, 0.8987836568806694, 0.27900511725120763, 0.747868261422589, 0.8013372150606806, 0.4430395412241901, 0.8082746512504794, 0.9248395818955686, 0.8132668978866627, 0.7926355964369082, 0.7243101498981422, 0.8251498778038484, 0.865753667016409, 0.8784859927081519, 0.9613966942665844, 0.8380103992838959, 0.9376908870460701, 0.8505645904112248, 0.5317253080143199, 0.8756470416862959, 0.8823120896825394, 0.8920529250761863, 0.9565288857220365, 0.92576324319171, 0.8397457208604353, 0.8008835764985612, 0.7620555647282774, 0.6333567796033132, 0.8986985644274655, 0.8289197139212982, 0.38568054861828666, 0.4358764146033148, 0.7013568331933456, 0.5524769805317635, 0.8654015550049637, 0.9625385348003681, 0.4997035751430624, 0.5940434106189647, 0.29640429037896177, 0.9370396801623051, 0.7496358493500708, 0.8521916566704996, 0.7519935213994349, 0.8956127660014477, 0.7563308848917781, 0.5425355780301907, 0.1652985164032473, 0.5777375433929663, 0.5926841497777402, 0.5247451599628447, 0.6215406511606532, 0.646742228322253, 0.5236567091352762, 0.8105889943537302, 0.7614647275399787, 0.7272264480694343, 0.44438282424164377, 0.8051848688934031, 0.253979247575754, 0.8737269176380216, 0.7884186533408385, 0.5226162157005312, 0.7776146375974927, 0.8021344726910251, 0.6794204065079696, 0.8398669626756513, 0.3743394998756179, 0.6593725303534554, 0.41008410759983227, 0.8726624594592295, 0.31336232876890546, 0.6187135046228962, 0.9208146539756937, 0.8948907807194619, 0.9475948217130945, 0.7098971478357265, 0.41970311630379203, 0.5524505095188592, 0.6689295490636696, 0.39534528644804523, 0.6686700461744643, 0.6608417181144597, 0.6289006219381473, 0.8112353209803558, 0.9675531845963172, 0.3468688843876404, 0.8171815196180959, 0.9315945487332388, 0.7612383340144859, 0.43979370974717685, 0.9452166580978265, 0.810349906376065, 0.4979189466877109, 0.9054024939516333, 0.7506263221664519, 0.8595966107872783, 0.9041757536760852, 0.5120166815330335, 0.9246344940597735, 0.622364539475366, 0.7975959936185795, 0.9376528402833735, 0.8270495791839716, 0.7463426393970082, 0.8508295060861325, 0.5277539611022016, 0.7926521549058593, 0.8343380415579561, 0.7973631232158779, 0.5423298306356671, 0.6253812669856891, 0.9342151247863544, 0.9064095870896521, 0.8428584418618921, 0.5680191878381406, 0.8230633503438987, 0.857993972512287, 0.8312116035859974, 0.8886868130574391, 0.5695902702544526, 0.8750573328895943, 0.47134086624147714, 0.6082670858563528, 0.8571520978358925, 0.7006810412396262, 0.6001343818465046, 0.8680196363335714, 0.7833148206731655, 0.835330250744176, 0.6883000602161935, 0.4297997702781997, 0.7132181587745201, 0.941909753873568, 0.9298379484442667, 0.8950633078112005, 0.9652574497835966, 0.8593048115498744, 0.23022113319019433, 0.5548683876071567, 0.8789570823277312, 0.7176343272433334, 0.7135972690872326, 0.900955402304434, 0.89110615578316, 0.8021344726910251, 0.36734125225010755, 0.9233813125795639, 0.9269988231022361, 0.6021478506882372, 0.27064660283581765, 0.7595966254948197, 0.5317253080143199, 0.9626288904553877, 0.518871521713375, 0.4244151934213653, 0.8784852709235653, 0.667697582798242, 0.6791650855490978, 0.8659372985570389, 0.5217980090164113, 0.9757802673562255, 0.20769640873195563, 0.6900575067285889, 0.15051833553221247, 0.8476988333501053, 0.12043274000614122, 0.6546311715671466, 0.412102187638673, 0.6339696776630096, 0.6925917751558638, 0.8074446941396305, 0.8417042066658985, 0.4702054036006336, 0.8107456318417504, 0.934253622333564, 0.9671353887875448, 0.3776875782453083, 0.5133306968464912, 0.8279918435672958, 0.7295730380004212, 0.8398957027397556, 0.7470826509089123, 0.7722124156410631, 0.3944809481034696, 0.5801047158883857, 0.7134138458261836, 0.8265590446981121, 0.5836238058504062, 0.7538957359152121, 0.9708936701567454, 0.41507295289487073, 0.9039211350062085, 0.5109703825452502, 0.8880660412534, 0.6332514250278477, 0.703270618172154, 0.863031725372896, 0.9601349291832292, 0.5845797646527732, 0.8357575010967041, 0.9584406458449958, 0.8733333206292072, 0.4740801794177068, 0.5787650908025566, 0.38525623454815555, 0.5715075300165849, 0.951253157591183, 0.831291834366621, 0.6482062646591596, 0.5447536045265621, 0.8456825404777587, 0.5358725178581014, 0.8893400405584444, 0.5955893395860203, 0.9408369636189147, 0.7580589814818564, 0.4244151934213653, 0.7636885291754726, 0.9532052815091139, 0.6686700461744643, 0.39683939049776734, 0.8309978518015588, 0.06774730328187532, 0.8934061610794648, 0.9459413258233057, 0.8507977517004935, 0.9694554821790147, 0.8640493534313302, 0.8409166048571896, 0.9059760843724536, 0.7278052027863667, 0.8952246802917138, 0.39534528644804523, 0.9558702864115934, 0.9178754126151818, 0.7504628435478695, 0.7568870052952757, 0.32046258648166903, 0.9712495894387816, 0.7125870341029702, 0.8286889773580812, 0.929575727770858, 0.8422483936479932, 0.60065365322741, 0.5775074082600717, 0.7505976846167132, 0.5317253080143199, 0.9590110623565244, 0.9651712957082627, 0.7333643603414158, 0.7757825668725274, 0.8928390517037824, 0.2578168736401774, 0.5355488836719776, 0.8408692583280314, 0.7849780542174357, 0.8711681462620556, 0.8447990405440073, 0.9571933326515756, 0.9307123551507692, 0.6421242495412457, 0.9239207054420927, 0.9336219461922934, 0.4244151934213653, 0.5673643045526261, 0.8301442064454496, 0.528471943574542, 0.8835542071774324, 0.8820947700128993, 0.4561713647735051, 0.584381944856391, 0.9493936477483658, 0.7816316980556022, 0.7770145472448273, 0.8495153837633861, 0.8318035560268552, 0.5220388622338656, 0.8589980209217414, 0.21216021099657945, 0.8782303617207965, 0.901850575196968, 0.7683760396387002, 0.9559989503713009, 0.938411491366706, 0.7225398931917507, 0.5918361617892179, 0.8596378534897678, 0.8816239240572568, 0.9296844522785247, 0.8299758417251202, 0.7538846798551382, 0.931253582726863, 0.6902425303942638, 0.9299571155275668, 0.35461708236434614, 0.6119587629530028, 0.8979450471026776, 0.8782891297971865, 0.6144930729026484, 0.5601837238662909, 0.4230258756549153, 0.5115702372514986, 0.6133200318312215, 0.8287048127179734, 0.42887934024879554, 0.5543929044930882, 0.5414149972460248, 0.7453725251924848, 0.6522898344923613, 0.6445138145159856, 0.9212190995841192, 0.6991293681294938, 0.9188224881967051, 0.9444881948020799, 0.8399825546316605, 0.6440269003431431, 0.45260210695563535, 0.6678228102737954, 0.8535669746933884, 0.23469888428232324, 0.7581156815660375, 0.8329520097124233, 0.5886389680190937, 0.4250130050586104, 0.290761161529129, 0.9065968169685268, 0.39757013049667705, 0.9584529405260903, 0.24804178200132845, 0.8400605958344816, 0.9562762484868867, 0.5923100188758571, 0.5355488836719776, 0.6866862751474886, 0.753715093249364, 0.9302702282582556, 0.8405005145861136, 0.7758456574858743, 0.8270123797965384, 0.9270997487744173, 0.8779999285967196, 0.6350604679157676, 0.9057987369792326, 0.9732730617650076, 0.28007269673131574, 0.5393237551960537, 0.9509318156255189, 0.8055358405733448, 0.8512314640165554, 0.6752183046546253, 0.9766791413071304, 0.26893819095773785, 0.5105552073939665, 0.7964242570425004, 0.9159462749375985, 0.46312559485344046, 0.7889853219989779, 0.5331772070153998, 0.6250130361556073, 0.5340700079782073, 0.8981158701031157, 0.8424802355113449], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [0.49, 0.12, 0.36, 0.29, 0.4, 0.4, 0.18, 0.04, 0.24, 0.65, 0.25, 0.39, 0.4, 0.26, 0.45, 0.36, 0.32, 0.49, 0.34, 0.07, 0.39, 0.13, 0.36, 0.64, 0.37, 0.31, 0.3, 0.23, 0.29, 0.74, 0.79, 0.2, 0.0, 0.17, 0.33, 0.21, 0.32, 0.11, 0.19, 0.06, 0.29, 0.2, 0.74, 0.29, 0.32, 0.25, 0.24, 0.25, 0.29, 0.35, 0.54, 0.26, 0.49, 0.22, 0.1, 0.23, 0.01, 0.49, 0.29, 0.2, 0.49, 0.34, 0.18, 0.4, 0.21, 0.06, 0.59, 0.0, 0.0, 0.03, 0.02, 0.25, 0.14, 0.26, 0.35, 0.28, 0.46, 0.52, 0.21, 0.3, 0.34, 0.18, 0.2, 0.33, 0.49, 0.27, 0.3, 0.34, 0.13, 0.36, 0.49, 0.26, 0.41, 0.42, 0.01, 0.0, 0.49, 0.19, 0.08, 0.55, 0.45, 0.32, 0.36, 0.11, 0.32, 0.09, 0.04, 0.0, 0.26, 0.41, 0.06, 0.5, 0.02, 0.29, 0.28, 0.34, 0.22, 0.24, 0.45, 0.08, 0.2, 0.28, 0.26, 0.17, 0.13, 0.18, 0.32, 0.38, 0.13, 0.37, 0.41, 0.32, 0.42, 0.49, 0.28, 0.62, 0.24, 0.17, 0.2, 0.2, 0.39, 0.49, 0.33, 0.42, 0.44, 0.28, 0.39, 0.23, 0.26, 0.23, 0.0, 0.22, 0.42, 0.19, 0.27, 0.24, 0.25, 0.44, 0.22, 0.42, 0.36, 0.47, 0.35, 0.48, 0.08, 0.26, 0.29, 0.46, 0.34, 0.38, 0.38, 0.32, 0.26, 0.28, 0.21, 0.0, 0.24, 0.35, 0.27, 0.35, 0.36, 0.23, 0.49, 0.1, 0.34, 0.32, 0.3, 0.22, 0.49, 0.22, 0.03, 0.46, 0.3, 0.28, 0.62, 0.21, 0.27, 0.1, 0.39, 0.3, 0.02, 0.26, 0.2, 0.4, 0.28, 0.36, 0.42, 0.59, 0.16, 0.69, 0.49, 0.23, 0.08, 0.4, 0.49, 0.24, 0.28, 0.33, 0.86, 0.24, 0.56, 0.25, 0.43, 0.41, 0.37, 0.14, 0.49, 0.29, 0.34, 0.34, 0.2, 0.34, 0.25, 0.35, 0.11, 0.48, 0.33, 0.31, 0.42, 0.33, 0.18, 0.02, 0.39, 0.32, 0.33, 0.12, 0.37, 0.3, 0.48, 0.01, 0.31, 0.2, 0.32, 0.62, 0.25, 0.36, 0.32, 0.23, 0.23, 0.33, 0.14, 0.22, 0.74, 0.74, 0.33, 0.36, 0.24, 0.38, 0.34, 0.44, 0.31, 0.12, 0.74, 0.42, 0.49, 0.25, 0.26, 0.34, 0.07, 0.47, 0.1, 0.25, 0.38, 0.0, 0.18, 0.37, 0.3, 0.26, 0.49, 0.38, 0.35, 0.07, 0.24, 0.06, 0.33, 0.39, 0.16, 0.38, 0.44, 0.39, 0.28, 0.65, 0.54, 0.56, 0.24, 0.06, 0.48, 0.29, 0.46, 0.26, 0.18, 0.19, 0.44, 0.41, 0.33, 0.74, 0.26, 0.49, 0.29, 0.1, 0.68, 0.08, 0.24, 0.27, 0.13, 0.53, 0.2, 0.49, 0.45, 0.14, 0.06, 0.29, 0.39, 0.4, 0.21, 0.41, 0.28, 0.04, 0.25, 0.32, 0.15, 0.49, 0.25, 0.27, 0.49, 0.3, 0.41, 0.49, 0.25, 0.4, 0.28, 0.3], \"xaxis\": \"x2\", \"y\": [0.8142007211296887, 0.07257977436397642, 0.7430932382113554, 0.8214862427787604, 0.5698848321031316, 0.6048119589659149, 0.6466669219762841, 0.14510080060429495, 0.2250304680670007, 0.28492472637839966, 0.42061632734231896, 0.8281252124183194, 0.49622399336621903, 0.3482895521074759, 0.4678833354511545, 0.5708968386647719, 0.37048677721847617, 0.553632248395139, 0.8702137350251022, 0.42186952587750404, 0.8696774950675754, 0.5410576963494411, 0.3971326977900686, 0.3275001196198921, 0.9448289227093116, 0.7109941475090589, 0.41925580570138304, 0.3675472469853882, 0.6721911818800557, 0.5562207270314473, 0.5262426608517637, 0.3244609607385458, 0.15056615442564347, 0.15676979724311627, 0.6037730696030339, 0.6342511279653397, 0.021947035536558718, 0.32429164429335744, 0.5678746850743716, 0.3571680467137555, 0.7755534309390314, 0.3240287891037917, 0.699424662214302, 0.5151532452376618, 0.7564675819717819, 0.38343591026479057, 0.19811005648518398, 0.3168419703358067, 0.5315947262677626, 0.9269044449273315, 0.8260225289794664, 0.451791899378283, 0.830516920403184, 0.47128602930186, 0.19027823806377472, 0.5181346713949518, 0.29552777318700446, 0.45414400334446664, 0.39329840463575844, 0.42327932510626076, 0.45838907164509224, 0.2233864252642039, 0.3628419195926303, 0.6709353200988277, 0.46058046365566996, 0.25551237833043455, 0.7234147543269824, 0.1481282262733752, 0.314935793994079, 0.20050531530561894, 0.37453315488553635, 0.701015529968035, 0.6343341418527783, 0.1739320900588749, 0.734996253073231, 0.8172229478314255, 0.3598554146739685, 0.7121055211356295, 0.2620604909731644, 0.3421138035730516, 0.6951268813066005, 0.35208221297891723, 0.452099210446082, 0.18907620085798427, 0.5444201651108793, 0.6484058972837882, 0.3258186925596978, 0.5963383680780668, 0.6202666247822538, 0.576738593946626, 0.5054992484109841, 0.2972245631729925, 0.6844333356791464, 0.42629475072919953, 0.4405153833121037, 0.01207867704715336, 0.7609288944606691, 0.23951123982998349, 0.09310514674080905, 0.5084920166510624, 0.33067609257366243, 0.36481899584296196, 0.5708968386647719, 0.3194802059637459, 0.14207297841267416, 0.5776897120055972, 0.2026163425795633, 0.37909000048748537, 0.38206764842015895, 0.41324683104354176, 0.17826143731067332, 0.42339414872454434, 0.39148091864802853, 0.3511350413575442, 0.8053393751847749, 0.5937005322868365, 0.6849942580153355, 0.38930033076762494, 0.5168500865319015, 0.5699073288866824, 0.5376087249833421, 0.8185832461647057, 0.25950508036415604, 0.20394483716883388, 0.3303044530853749, 0.2528102968078532, 0.8477719856767125, 0.5217124250004609, 0.3303044530853749, 0.5382885532339231, 0.9625763866028243, 0.6536174904341296, 0.42629475072919953, 0.6458781618432388, 0.46574001023909845, 0.37268733756108086, 0.8180085473348132, 0.35493594975273335, 0.2423640089427935, 0.3636330633241046, 0.6421622311157122, 0.5444201651108793, 0.7396308412796291, 0.9036153464846048, 0.21101569987323432, 0.6004024464464508, 0.7595861882737439, 0.486549602332862, 0.2379839758891197, 0.5147825233229498, 0.2065932277190248, 0.4342628292980428, 0.5940848250235929, 0.4857193175270624, 0.5332610244722983, 0.5402196969638672, 0.8578846895389459, 0.5290225674595067, 0.6074669506688956, 0.1847839155105034, 0.3581391437324269, 0.4304380754474639, 0.8410120374942113, 0.5810086483513661, 0.19026233744636453, 0.7223494520380469, 0.8589928738613049, 0.8374625942163022, 0.781203852328267, 0.73983195178881, 0.41156537259256004, 0.7482873396984137, 0.44431713201158524, 0.7113673874393347, 0.49869552495399233, 0.7627102864663872, 0.37193390769028617, 0.37187810520956766, 0.3773291605703562, 0.8719651627687759, 0.6218762459828849, 0.3781393537983126, 0.553632248395139, 0.47624084907999176, 0.774399353278846, 0.5840424935194366, 0.5601025471409736, 0.6186690618327106, 0.620611700356168, 0.5755798886129706, 0.15047650536569443, 0.5530049338021776, 0.6597439619439023, 0.8300222117931148, 0.3490158529243493, 0.4410646109528086, 0.5067909967309752, 0.5851482063434866, 0.7149827463187939, 0.4849259975950144, 0.2094210588097294, 0.33399024531412796, 0.4083143545243069, 0.7497022835596558, 0.7817929239213606, 0.7637421953724776, 0.3825655414920891, 0.6611482494098961, 0.19022241257108333, 0.44972084577511023, 0.5476732603321269, 0.4831274653996314, 0.5077048340566679, 0.7289504589448288, 0.4379810490617926, 0.8017221455714771, 0.6434673631716396, 0.5059779734745421, 0.6065367192264559, 0.650368705032214, 0.34567471266024347, 0.39561589000187136, 0.3427787545601037, 0.4676404271158623, 0.5332283386400669, 0.4519108142444285, 0.40662831629925006, 0.42305576187259053, 0.22032895172816622, 0.5278715769330472, 0.43679486629948455, 0.743933429392776, 0.5269515041023835, 0.5008800654866953, 0.214168174561682, 0.44879088851457377, 0.683485355417811, 0.807753104897186, 0.42629475072919953, 0.8502951424821861, 0.17421175568219957, 0.25491371883486935, 0.7595861882737439, 0.6571724132942184, 0.7813188949129265, 0.5626906653340306, 0.8674288259883418, 0.6600514650598344, 0.4827749661719035, 0.5456147119159479, 0.39827550056677263, 0.27323823737433794, 0.695896529362927, 0.5048820477254727, 0.5422349097465021, 0.5610936746718964, 0.6571724132942184, 0.3088751107498249, 0.45428761266464013, 0.6604471727860799, 0.43371621376298963, 0.6171893197168647, 0.8100511550343341, 0.8100511550343341, 0.605832578461134, 0.5526475584669951, 0.4275055171336787, 0.8734720021260204, 0.8508295378350301, 0.5807723706867254, 0.8272749548927728, 0.2670652478909882, 0.7020144194675465, 0.4615566916191992, 0.7055847950248242, 0.43389869234556755, 0.6071692164257629, 0.3496825637352313, 0.23676491619791426, 0.7057755976874825, 0.15539001443149586, 0.6187538615870153, 0.8735882828904331, 0.30049486749739024, 0.23191705420611952, 0.8913917397916864, 0.4977157214618499, 0.16961113509580228, 0.8485494795219795, 0.4760032757956232, 0.5053843099270294, 0.2676015269871764, 0.3627664421236291, 0.15146266807038725, 0.7898179638281774, 0.6145296307645981, 0.3790380236797623, 0.3003532640340299, 0.6086112016774773, 0.39906793889171593, 0.8185832461647057, 0.6715802865662828, 0.8260225289794664, 0.6056902064850618, 0.400132762133902, 0.39471961640683584, 0.6449859309106076, 0.5637152910565628, 0.39949420960438964, 0.5490401551410112, 0.4398875418860128, 0.30916577334906253, 0.7093303227687476, 0.4562508424819209, 0.40444044759428516, 0.5773483646962835, 0.447777692034652, 0.4961542215384683, 0.32474312180562226, 0.21192693199409943, 0.9056903490933487, 0.5013816399998683, 0.758876109553896, 0.6364928148646596, 0.2952804752502578, 0.4748951900520853, 0.43679486629948455, 0.5479962315186364, 0.4728142838839701, 0.6343341418527783, 0.12248807650217919, 0.5052525886146573, 0.8281252124183194, 0.8930081609652758, 0.36283726088930296, 0.8098196742550625, 0.656477404357746, 0.193885049884708, 0.5269515041023835, 0.49858469647139786, 0.32780472036158087, 0.24927512797396847, 0.6148718578314069, 0.10691527318901187, 0.136775438340409, 0.8489192718114075, 0.2600203086082801, 0.8142007211296887, 0.5269515041023835, 0.7966615933629455, 0.5633234794197017, 0.767479452333631], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"citric.acid\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"citric.acid\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}, \"citric.acid_bad\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (ref)\", \"type\": \"scatter\", \"x\": [0.65, 0.47, 0.32, 0.08, 0.23, 0.0, 0.07, 0.52, 0.37, 0.23, 0.3, 0.49, 0.74, 0.35, 0.06, 0.2, 0.33, 0.09, 0.22, 0.0, 0.47, 0.26, 0.1, 0.3, 0.0, 0.04, 0.18, 0.32, 0.1, 0.32, 0.0, 0.27, 0.66, 0.24, 0.37, 0.49, 0.35, 0.37, 0.57, 0.36, 0.38, 0.6, 0.27, 0.14, 0.15, 0.24, 0.24, 0.27, 0.43, 0.15, 0.24, 0.22, 0.31, 0.49, 0.26, 0.49, 0.42, 0.25, 0.53, 0.52, 0.44, 0.35, 0.08, 0.24, 0.2, 0.3, 0.34, 0.21, 0.13, 0.31, 0.31, 0.65, 0.66, 0.33, 0.29, 0.07, 0.43, 0.4, 0.2, 0.36, 0.3, 0.37, 0.43, 0.2, 0.23, 0.31, 0.34, 0.17, 0.35, 0.1, 0.65, 0.24, 0.1, 0.66, 0.42, 0.52, 0.56, 0.46, 0.44, 0.35, 0.5, 0.31, 0.28, 0.34, 0.31, 0.68, 0.19, 0.37, 0.49, 0.24, 0.24, 0.33, 0.2, 0.27, 0.17, 0.36, 0.62, 0.23, 0.43, 0.26, 0.2, 0.28, 0.34, 0.55, 0.24, 0.24, 0.22, 0.22, 0.42, 0.19, 0.47, 0.22, 0.3, 0.51, 0.3, 0.2, 0.36, 0.23, 0.35, 0.21, 0.22, 0.4, 0.38, 0.18, 0.22, 0.42, 0.26, 0.34, 0.14, 0.48, 0.38, 0.0, 0.41, 0.09, 0.41, 0.0, 0.53, 0.24, 0.35, 0.07, 0.43, 0.24, 0.49, 0.23, 0.03, 0.39, 0.2, 0.23, 0.28, 0.36, 0.41, 0.18, 0.26, 0.64, 0.28, 0.28, 0.21, 0.28, 0.3, 0.1, 0.46, 0.0, 0.35, 0.34, 0.52, 0.16, 0.45, 0.24, 0.15, 0.37, 0.19, 0.3, 0.5, 0.04, 0.51, 0.0, 0.31, 0.31, 0.26, 0.21, 0.14, 0.5, 0.5, 0.43, 0.24, 0.26, 0.19, 0.41, 0.04, 0.37, 0.29, 0.28, 0.44, 0.74, 0.47, 0.13, 0.23, 0.06, 0.38, 0.48, 0.11, 0.27, 0.51, 0.41, 0.29, 0.34, 0.03, 0.47, 0.04, 0.0, 0.2, 0.54, 0.28, 0.25, 0.32, 0.21, 0.41, 0.25, 0.34, 0.56, 0.33, 0.39, 0.29, 0.32, 0.27, 0.5, 0.49, 0.24, 0.37, 0.33, 0.25, 0.26, 0.66, 0.03, 0.34, 0.51, 0.38, 0.24, 0.46, 0.63, 0.28, 0.22, 0.33, 0.57, 0.33, 0.3, 0.24, 0.22, 0.25, 0.2, 0.35, 0.3, 0.38, 0.26, 0.5, 0.39, 0.12, 0.61, 0.19, 0.13, 0.24, 0.21, 0.32, 0.07, 0.24, 0.2, 0.47, 0.3, 0.27, 0.22, 0.49, 0.55, 0.22, 0.11, 0.4, 0.26, 0.23, 0.55, 0.58, 0.2, 0.0, 0.4, 0.05, 0.33, 0.28, 0.35, 0.24, 0.16, 0.59, 0.21, 0.48, 0.2, 0.21, 0.45, 0.49, 0.37, 0.56, 0.31, 0.44, 0.14, 0.46, 0.47, 0.2, 0.24, 0.36, 0.25, 0.65, 0.54, 0.22, 0.17, 0.4, 0.35, 0.35, 0.4, 0.33, 0.24, 0.16, 0.46, 0.0, 0.46, 0.49, 0.29, 0.3, 0.22, 0.27, 0.01, 0.18, 0.49, 0.18, 0.2, 0.29, 0.03, 0.7, 0.09, 0.42], \"xaxis\": \"x\", \"y\": [0.7197707895473677, 0.05448058807241418, 0.5021256787650443, 0.4710854375480472, 0.7156076129280222, 0.7966690429773311, 0.7265425252145667, 0.16771266951545494, 0.610944103187451, 0.6324527530146118, 0.42180662537268765, 0.2598044700255929, 0.5503032830239416, 0.5632112185661304, 0.6840604465833231, 0.6224375641140001, 0.8071781895370533, 0.9515482366939344, 0.3994071349416132, 0.9677746238863042, 0.572587586261062, 0.7602674855798478, 0.861098734498427, 0.1386074727873, 0.6703360831713621, 0.8064003460928679, 0.3172728283240366, 0.8039094494444462, 0.9186426431335688, 0.6026275969807151, 0.8609701260317718, 0.3485833566260712, 0.3005246278528939, 0.2859113263741919, 0.4978204971029292, 0.5125675444128744, 0.4268860326359044, 0.11791793574572085, 0.440027850275134, 0.4938434408506086, 0.4933189622152446, 0.166194347192407, 0.30200278364192557, 0.6822425768461728, 0.8693180940701344, 0.24112389044610405, 0.43189370387303117, 0.284455178085937, 0.23793737479647703, 0.5535561322468214, 0.7900402576908969, 0.47373775892899717, 0.6055733033081183, 0.7462675017011632, 0.32245623572553406, 0.7612367841042231, 0.36308410170653527, 0.6103993963703384, 0.3965676277125745, 0.2230008284200371, 0.8480025164595866, 0.43585875500482685, 0.24095331994381775, 0.4030652094068704, 0.8951637220162157, 0.2782175630406618, 0.7337660836226194, 0.8352762102164887, 0.6223987562306759, 0.2928263700360406, 0.6563137004068428, 0.16155652477357085, 0.6364666355122575, 0.2186811050870735, 0.27206300237801306, 0.4358901152617537, 0.6136035252376228, 0.07900866299327158, 0.8522855318359817, 0.11906253414448076, 0.3466831105240652, 0.11265227152414181, 0.6302693732121377, 0.7168097665217413, 0.4796298258249143, 0.4476252306691143, 0.3612478268219491, 0.611861930499026, 0.15121036728507153, 0.5363393546692182, 0.16155652477357085, 0.441733396330222, 0.7834276811132227, 0.6364666355122575, 0.44873286860252337, 0.4948960601400133, 0.4172084246960842, 0.5055831714989107, 0.5269082808529498, 0.3737404408311804, 0.4491757516278906, 0.5266720849021, 0.2882430633103308, 0.6066213483726142, 0.83534933450756, 0.2509605867776752, 0.230738949997912, 0.25680675940048736, 0.6858999083789018, 0.27626495444752697, 0.35158671089680515, 0.311480105980391, 0.5950329577300569, 0.4196263877039489, 0.3672198477254309, 0.5488429300958864, 0.6273126624389191, 0.0990306898864649, 0.935036100419004, 0.5556828679884147, 0.6003916802566726, 0.1337843055401957, 0.6898191889393818, 0.46604488826349566, 0.6668872608045229, 0.5998672378660981, 0.14712454771937833, 0.8558065212045691, 0.883276495704891, 0.5544329747085402, 0.38398791005853006, 0.8623310715459079, 0.4482795971615686, 0.4767821080964978, 0.6451659669426603, 0.5099786295438409, 0.11454219273407718, 0.5691587732433696, 0.2398813672346335, 0.8592796956842923, 0.38133093816728936, 0.4754945767078651, 0.2673740541283356, 0.43092180164799054, 0.5981491184574936, 0.7512253043619477, 0.20474988026063612, 0.12337786436138054, 0.6965484670033051, 0.4642254518352117, 0.29034758521725457, 0.7912282271603185, 0.1364389858241727, 0.5326323768611896, 0.3938848007926149, 0.886984727126295, 0.5955398539691413, 0.3667393936023857, 0.35129461810907203, 0.578130474122496, 0.1952086434691429, 0.6982941690158907, 0.6159300986783536, 0.6650580695700093, 0.8007006003287879, 0.13750802167619447, 0.47121416359091395, 0.5691587732433696, 0.5295784007050042, 0.4938434408506086, 0.4240508430342457, 0.1531205555636086, 0.7965770364050346, 0.4829168465516456, 0.6333246955344933, 0.38682769986244625, 0.5589353890471914, 0.30965836575156913, 0.6133571507425741, 0.5363393546692182, 0.5474540697204298, 0.9680074395956593, 0.29703705077451537, 0.7566858385458134, 0.451244026180727, 0.6224939697452743, 0.9340693900855184, 0.1254375450851024, 0.770680513376406, 0.7273231109206828, 0.410671569380914, 0.19928392436820586, 0.44743622108127745, 0.4991477681643879, 0.5443787589855091, 0.826082779912576, 0.5642536294664222, 0.6762559922350657, 0.39283078357423706, 0.3074847569358159, 0.40732461839200396, 0.5614584986504241, 0.5614584986504241, 0.575628870274347, 0.1938881144566701, 0.6480440770440566, 0.23946299348505806, 0.6110142157087575, 0.32489046344192996, 0.127020290619695, 0.28948900574123104, 0.27970970921902805, 0.5179212029104148, 0.579807192000203, 0.5695619245525361, 0.7471497674522103, 0.6761943115269239, 0.6052803835931642, 0.9048996801452402, 0.632953623191418, 0.7849920634816455, 0.12946409768986655, 0.3899257470968539, 0.37735505673750047, 0.27206300237801306, 0.6356505945299911, 0.9000798247851504, 0.5852448485124296, 0.3537739535016634, 0.8589709040748648, 0.5105041430354158, 0.4760479563081992, 0.3915586115462193, 0.4344526143297297, 0.04825794875232026, 0.25106204840173363, 0.5352062615150248, 0.2084678736174792, 0.5588772074146924, 0.42656597432725707, 0.3395528272139201, 0.5154796814541086, 0.30312695461308037, 0.4684625037801391, 0.13140485141127656, 0.37575572516499556, 0.7087902803012941, 0.22740617784346517, 0.7932370230268412, 0.6977827466507267, 0.8687065743771458, 0.3532210556477622, 0.3005246278528939, 0.8817461779308045, 0.5897758288136841, 0.5117334773877459, 0.2267712913026929, 0.7462523759498982, 0.5055831714989107, 0.6276122794572256, 0.34766968675436505, 0.563322001169588, 0.4035281086421867, 0.44827723495654004, 0.7588644006503809, 0.17560197311170134, 0.2736156405730563, 0.5646478519097824, 0.12788772013874206, 0.8127608550985441, 0.35130933230290007, 0.8842329534318195, 0.5671758377024384, 0.508518787579709, 0.4735654621913231, 0.6614347321502836, 0.7032589073748752, 0.418601168771625, 0.40262233345395115, 0.38045938978299354, 0.6221728234115828, 0.6769388667590319, 0.825791915264051, 0.8036522945246104, 0.5350776523934957, 0.5038683203672731, 0.4187790963850706, 0.3942708224564714, 0.36585282612655, 0.42973128126448334, 0.1395024853671747, 0.36909778672938764, 0.5126700875045708, 0.31128511290513083, 0.5841805470690385, 0.42932394036482613, 0.5168725346003686, 0.9331527243268325, 0.5090935678835011, 0.848083892739094, 0.7288594688776423, 0.23463814542978878, 0.9073343486287574, 0.5445649372592127, 0.8030108083542629, 0.30698149193503155, 0.47724620771884374, 0.49565431290071005, 0.29179072192325783, 0.53941953634433, 0.32642767658125227, 0.5714063949384225, 0.6769388667590319, 0.48314991346809855, 0.3838692085325581, 0.7654355578102645, 0.6807995217458978, 0.7803105409218809, 0.4971816769068883, 0.5662837862370104, 0.32557907866588853, 0.4059739580227363, 0.8621668957327787, 0.4863555612469991, 0.44913520001249685, 0.5044088987161788, 0.018560580499064172, 0.17397747102053363, 0.8203404366189, 0.531551035274026, 0.3951880410340851, 0.6710839680909022, 0.7545393605546251, 0.25029771644034415, 0.31651464458218903, 0.7900402576908969, 0.7649542174153934, 0.6282404390050247, 0.5124469561170844, 0.7501741577575001, 0.3717170374651112, 0.5479204837841629, 0.1799627586960565, 0.8716748635647116, 0.4700369344869263, 0.7044722268129955, 0.7597806244765397, 0.4570971226262448, 0.3688130253756654, 0.5854022956087224, 0.6067015953642416, 0.6092966434658947, 0.5713009051869427, 0.15316343939585397, 0.31191498773739224], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [0.32, 0.24, 0.36, 0.24, 0.27, 0.21, 0.3, 0.46, 0.34, 0.26, 0.4, 0.21, 0.26, 0.33, 0.24, 0.47, 0.29, 0.76, 0.2, 0.29, 0.28, 0.27, 0.28, 0.36, 0.49, 0.27, 0.3, 0.49, 0.33, 0.48, 0.49, 0.32, 0.28, 0.34, 0.36, 0.44, 0.31, 0.31, 0.22, 0.39, 0.26, 0.49, 0.37, 0.26, 0.26, 0.32, 0.38, 0.19, 0.53, 0.3, 0.29, 0.29, 0.26, 0.29, 0.49, 0.28, 0.36, 0.38, 0.24, 0.32, 0.42, 0.23, 0.74, 0.44, 0.66, 0.13, 0.28, 0.3, 0.26, 0.36, 0.35, 0.24, 0.28, 0.68, 0.35, 0.29, 0.46, 0.28, 0.1, 0.35, 0.24, 0.34, 0.3, 0.45, 0.33, 0.34, 0.29, 0.31, 0.31, 0.41, 0.28, 0.28, 0.38, 0.4, 0.29, 0.25, 0.29, 0.28, 0.25, 0.65, 0.34, 0.36, 0.46, 0.34, 0.3, 0.32, 0.26, 0.49, 0.33, 0.02, 0.33, 0.28, 0.32, 0.29, 0.27, 0.32, 0.25, 0.36, 0.35, 0.46, 0.3, 0.49, 0.34, 0.31, 0.22, 0.02, 0.01, 0.5, 0.36, 0.0, 0.33, 0.18, 0.4, 0.32, 0.43, 0.54, 0.4, 0.02, 0.2, 0.24, 0.37, 0.31, 0.32, 0.34, 0.41, 0.43, 0.46, 0.27, 0.24, 0.32, 0.28, 0.59, 0.25, 0.26, 0.3, 0.5, 0.28, 0.35, 0.26, 0.38, 0.29, 0.27, 0.36, 0.25, 0.2, 0.34, 0.3, 0.21, 0.58, 0.04, 0.42, 0.37, 0.46, 0.28, 0.14, 0.09, 0.04, 0.21, 0.24, 0.1, 0.29, 0.49, 0.35, 0.3, 0.16, 0.29, 0.33, 0.48, 0.34, 0.31, 0.29, 0.0, 0.14, 0.05, 0.02, 0.34, 0.16, 0.32, 0.26, 0.48, 0.49, 0.27, 0.49, 0.12, 0.26, 0.37, 0.34, 0.49, 0.27, 0.43, 0.49, 0.2, 0.34, 0.32, 0.27, 0.26, 0.29, 0.49, 0.31, 0.32, 0.32, 0.49, 0.26, 0.4, 0.6, 0.37, 0.34, 0.4, 0.31, 0.29, 0.32, 0.21, 0.0, 0.28, 0.28, 0.21, 0.36, 0.41, 0.42, 0.34, 0.33, 0.39, 1.0, 0.44, 0.12, 0.32, 0.31, 0.27, 0.4, 0.33, 0.42, 0.3, 0.43, 0.35, 0.37, 0.28, 0.31, 0.14, 0.49, 0.39, 0.34, 0.49, 0.37, 0.44, 0.35, 0.32, 0.37, 0.57, 0.06, 0.34, 0.36, 0.08, 0.31, 0.3, 0.26, 0.26, 0.28, 0.41, 0.0, 0.79, 0.36, 0.44, 0.32, 0.3, 0.39, 0.42, 0.25, 0.28, 0.08, 0.39, 0.31, 0.3, 0.48, 0.24, 0.41, 0.25, 0.0, 0.12, 0.36, 0.38, 0.02, 0.24, 0.3, 0.26, 0.33, 0.46, 0.26, 0.33, 0.39, 0.47, 0.3, 0.34, 0.13, 0.36, 0.36, 0.62, 0.31, 0.3, 0.27, 0.27, 0.27, 0.38, 0.31, 0.3, 0.29, 0.02, 0.22, 0.39, 0.49, 0.27, 0.28, 0.33, 0.44, 0.57, 0.36, 0.31, 0.33, 0.33, 0.21, 0.28, 0.28, 0.45, 0.36, 0.26, 0.13, 0.49, 0.32, 0.09, 0.0, 0.36, 0.29, 0.41, 0.28, 0.3, 0.3, 0.4, 0.32, 0.33, 0.51, 0.36, 0.41, 0.19, 0.35, 0.44, 0.03, 0.27, 0.31, 0.27, 0.36, 0.26, 0.3, 0.39, 0.3, 0.23, 0.28, 0.26, 0.31, 0.0, 0.27, 0.34, 0.2, 0.32, 0.13, 0.36, 0.49, 0.29, 0.37, 0.31, 0.29, 0.37, 0.28, 0.24, 0.49, 0.3, 0.28, 0.47, 0.42, 0.28, 0.32, 0.28, 0.05, 0.21, 0.23, 0.33, 0.28, 0.32, 0.34, 0.42, 0.0, 0.49, 0.24, 0.3, 0.35, 0.3, 0.56, 0.45, 0.28, 0.35, 0.18, 0.2, 0.37, 0.31, 0.3, 0.28, 0.27, 0.18, 0.44, 0.3, 0.3, 0.36, 0.49, 0.41, 0.28, 0.31, 0.35, 0.1, 0.29, 0.01, 0.33, 0.49, 0.38, 0.74, 0.37, 0.45, 0.62, 0.33, 0.4, 0.26, 0.47, 0.28, 0.28, 0.24, 0.27, 0.35, 0.3, 0.76, 0.27, 0.01, 0.27, 0.27, 0.73, 0.29, 0.49, 0.25, 0.31, 0.02, 0.27, 0.36, 0.3, 0.51, 0.15, 0.49, 0.33, 0.32, 0.35, 0.29, 0.49, 0.34, 0.32, 0.44, 0.24, 0.48, 0.23, 0.24, 0.31, 0.39, 0.49, 0.3, 0.3, 0.05, 0.41, 0.23, 0.4, 0.41, 0.39, 0.42, 0.3, 0.35, 0.34, 0.29, 0.26, 0.31, 0.38, 0.38, 0.44, 0.33, 0.33, 0.49, 0.38, 0.27, 0.33, 0.31, 0.31, 0.5, 0.36, 0.37, 0.46, 0.44, 0.37, 0.35, 0.31, 0.25, 0.36, 0.37, 0.0, 0.3, 0.7, 0.36, 0.29, 0.33, 0.32, 0.25, 0.28, 0.21, 0.4, 0.06, 0.28, 0.29, 0.35, 0.35, 0.35, 0.29, 0.41, 0.49, 0.25, 0.25, 0.5, 0.49, 0.26, 0.29, 0.32, 0.24, 0.28, 0.4, 0.3, 0.02, 0.31, 0.36, 0.22, 0.36, 0.35, 0.34, 0.1, 0.24, 0.0, 0.32, 0.23, 0.49, 0.32, 0.32, 0.28, 0.41, 0.28, 0.37, 0.33, 0.31, 0.28, 0.3, 0.24, 0.34, 0.31, 0.35, 0.26, 0.0, 0.74, 0.01, 0.16, 0.32, 0.24, 0.32, 0.28, 0.32, 0.37, 0.29, 0.04, 0.29, 0.3, 0.16, 0.33, 0.23, 0.49, 0.38, 0.32, 0.26, 0.56, 0.66, 0.29, 0.29, 0.4, 0.27, 0.21, 0.35, 0.28, 0.24, 0.28, 0.38, 0.25, 0.49, 0.32, 0.18, 0.43, 0.33, 0.47, 0.04, 0.33, 0.27, 0.36, 0.25, 0.4, 0.33, 0.24, 0.35, 0.31, 0.31, 0.38, 0.49, 0.44, 0.4, 0.33, 0.26, 0.38, 0.22, 0.28, 0.34, 0.36], \"xaxis\": \"x\", \"y\": [0.18439386755371057, 0.5750868907731637, 0.1132172353536568, 0.19850047615697952, 0.6950004168934912, 0.41826441672946313, 0.040828937665112974, 0.2145583871630251, 0.09143093017991866, 0.10013996234885614, 0.3658834999306372, 0.587897812361327, 0.23563705889496211, 0.5289998061994394, 0.5981734696485812, 0.5956194363709464, 0.11295199838815062, 0.6349332021584286, 0.09356782907078887, 0.0672754654033908, 0.3541579814831264, 0.11781588709523827, 0.3295981493457443, 0.23443288181779365, 0.13830133810679424, 0.5122546205578999, 0.03626449638205209, 0.32057959349203036, 0.3955164844050859, 0.21320459763992916, 0.08620177311633537, 0.4132497936565127, 0.19514157099220286, 0.028148892894647393, 0.03728071159582558, 0.20213762816504022, 0.39088790332760825, 0.10566618212719892, 0.11466232649727714, 0.09544364959788487, 0.07351553674018241, 0.3657542344632553, 0.05859665738698361, 0.43634835962676355, 0.4827032077898804, 0.516310366273556, 0.6480037931050455, 0.21122004543372697, 0.030344760075157406, 0.22750344576024595, 0.18673438423788624, 0.5460909738859347, 0.0666291073587214, 0.320234954276134, 0.515425573770442, 0.5751179393061847, 0.3262180383913996, 0.12192585741802231, 0.6165939755266235, 0.09365914315081003, 0.44259853952477324, 0.31958523161407537, 0.09228899111547839, 0.22815273642701062, 0.5282447951108347, 0.7777719169155834, 0.13834506443323813, 0.29425092810710396, 0.5300870647699181, 0.031947521718024174, 0.1108646816717751, 0.053339747820140615, 0.14466174791529418, 0.25697560969337485, 0.3383868137798065, 0.30803904997837983, 0.03434255320493995, 0.08689109251212201, 0.46044782253877736, 0.0973761441498977, 0.3449058470623745, 0.024212367984770777, 0.11665042079727428, 0.3333970234137619, 0.1495417879159372, 0.0679784404121434, 0.2360052425084116, 0.39147703437781534, 0.04428683932015287, 0.5381556738404795, 0.4357341587922019, 0.11843845992675284, 0.28107964630818494, 0.06989794698232743, 0.2658605825653322, 0.22408104406272966, 0.15519213452661884, 0.09873339188795927, 0.10739713799337769, 0.4712507279726723, 0.31257930793611366, 0.6259141532505736, 0.1651629894813923, 0.13024327386797574, 0.08242409751896962, 0.55355901104019, 0.11256152515999429, 0.22124325125588817, 0.05838775174278421, 0.6734770756819889, 0.06919042490492266, 0.5773286546676725, 0.5693181878572973, 0.12726917141891614, 0.27983888222674136, 0.15690954109554833, 0.18593824584442387, 0.05432525584274117, 0.33273366741371935, 0.12435295831370408, 0.48112847828662497, 0.2959384652215836, 0.5042039768350125, 0.3749869638443927, 0.7258627386781167, 0.4806866421912115, 0.6234335830956541, 0.4191951896523489, 0.20821728825178332, 0.6343085651912675, 0.27674577061671146, 0.02140654255666985, 0.42849246998341506, 0.1817444030106703, 0.4551538855951942, 0.05087080041524106, 0.516641204200833, 0.6810720245435042, 0.08151744899857294, 0.4475169494323581, 0.03995706953508171, 0.2181819033834006, 0.20372897255157485, 0.24305701296248816, 0.5381556738404795, 0.2358485729609252, 0.051323642447754336, 0.1913631294907303, 0.32154631204965056, 0.31229802093755377, 0.3917329141436472, 0.39462053822053156, 0.3680669306910641, 0.5017894292511481, 0.32120711190509066, 0.0768019282386515, 0.1168769044932052, 0.31545143431826594, 0.12007957373947853, 0.08354361700756141, 0.2180731800932174, 0.7653011157176768, 0.05076221583963347, 0.11739077279846111, 0.3639458403519926, 0.4815918747301601, 0.35998732468747585, 0.457353694020342, 0.5520498791697908, 0.22168281241722143, 0.2132287846887433, 0.4763394582576197, 0.3040153802820409, 0.20749766415549342, 0.3316810644107503, 0.8126297477835096, 0.5749367295182395, 0.27274039590582944, 0.2685808245693546, 0.5172108675362206, 0.33506587713796443, 0.09616672688355288, 0.041108213935392324, 0.10548050716105373, 0.5016695616404938, 0.20022874051447226, 0.14220640128276774, 0.23772630779738468, 0.19606080251004787, 0.2603188495268066, 0.18846597668723208, 0.19827111133563302, 0.261548791893628, 0.4140325207077993, 0.8134796325151183, 0.12265695643958285, 0.6311167068993262, 0.13481820177301163, 0.0932384579037443, 0.14050160114126486, 0.2562249115981724, 0.08547750670655718, 0.08643201081848362, 0.19981675431015722, 0.31390222338706264, 0.06221739913672386, 0.06996303880871468, 0.30029370289300306, 0.4306817897420764, 0.6595343859760441, 0.2839408857911616, 0.20468539219890003, 0.1130196126722065, 0.2360017176902124, 0.13187147729288817, 0.42313120297864704, 0.06964897436687001, 0.1624399718171824, 0.17200815643270417, 0.07333105637055992, 0.2440137653363641, 0.4900110333069776, 0.3085554157386313, 0.03480496731142946, 0.12148031785507996, 0.15002971926037112, 0.5314247042003052, 0.2758453007685677, 0.2151852748992088, 0.2658605825653322, 0.29911225563077193, 0.6594110243744711, 0.49869782335001445, 0.16788254706683048, 0.11816213334465087, 0.08230909248122409, 0.13653212507346946, 0.25639170942272826, 0.06562233405876228, 0.23311900627036541, 0.3756616197417655, 0.46674395287949066, 0.3092684534350997, 0.8337319641197457, 0.8331457111467163, 0.2591056156836542, 0.4778687671024334, 0.2542440524586721, 0.5361036306539362, 0.07073721340803463, 0.4731688813159418, 0.5755848065786346, 0.356689463387698, 0.14225616860197343, 0.21837916002376445, 0.14466174791529418, 0.29899643271856946, 0.4757427727983842, 0.08126799884203029, 0.1296501822378736, 0.3286954654423938, 0.08620177311633537, 0.13855855420831553, 0.05543377339452393, 0.11917834098009661, 0.2613621884509647, 0.11269900223777074, 0.08429051026621415, 0.3393961441870107, 0.07031960314855146, 0.11356777592095357, 0.4853279864284006, 0.1279289285514792, 0.0584572339054259, 0.08612988585012649, 0.3472440907423937, 0.1248029959061332, 0.07502335399434323, 0.19827111133563302, 0.3424151534036639, 0.3065175956815872, 0.13808860398564737, 0.058092197534895806, 0.04082786106581715, 0.1602592849246841, 0.09156161599234125, 0.5036030690663805, 0.2640411824475748, 0.6468038092930676, 0.07201805208597656, 0.22470230804277058, 0.1334773721572423, 0.04847889440667685, 0.2685808245693546, 0.10911308148570098, 0.6764508967260475, 0.6280060594576413, 0.36761958218269275, 0.16019930342079847, 0.17605308658107655, 0.14078981831089854, 0.2384997092801764, 0.13117402490907393, 0.12818959986091483, 0.4161925244315118, 0.12435295831370408, 0.09814942480303201, 0.05480698563416486, 0.3746187330143109, 0.41092354232892336, 0.507894749900129, 0.5137929421583434, 0.08293523366016065, 0.2964416548030494, 0.15236141109070434, 0.4396941021426354, 0.41893931094950754, 0.09113953260801844, 0.10967473999240707, 0.055732078845942, 0.05640314085190745, 0.06176263301115803, 0.06427139521062619, 0.20386133178572885, 0.21597661143113533, 0.7486409492386699, 0.2610715902497083, 0.09465277491899493, 0.5556171757583562, 0.137718889647652, 0.1978940751503777, 0.08472590699531857, 0.356262641598029, 0.14596950445002987, 0.13865818299932142, 0.3088915816821678, 0.11516321289421916, 0.16121169033174265, 0.40573483691789825, 0.34308606282264, 0.36300204724896845, 0.17193414756867276, 0.035926383178341514, 0.34536882843285344, 0.4400180463892147, 0.5165194668234709, 0.23319834124303085, 0.9637923675569924, 0.2635599134550337, 0.6259141532505736, 0.12324962258280003, 0.1256037712827487, 0.1248029959061332, 0.11665042079727428, 0.29081136443782263, 0.12993062945549005, 0.20959981847797426, 0.12385816607190492, 0.16931651488884025, 0.2468284110987674, 0.6181879252747016, 0.3509541008179864, 0.08619429866610873, 0.09537770951135394, 0.8204393830764495, 0.2493836920976743, 0.10367142046182065, 0.11516383353466464, 0.07169627826225977, 0.5400384130096556, 0.2709141565803237, 0.16809050322974173, 0.3421981324687273, 0.812724325423183, 0.1326589750154965, 0.054670132935181304, 0.055346153509382656, 0.8039442695404772, 0.3276168958360183, 0.6561718697940482, 0.6214102617950452, 0.3046829516703813, 0.7853649284745584, 0.7303620793003476, 0.6719087507962026, 0.16000678121984613, 0.579612101366232, 0.6347749924714103, 0.41894393066564606, 0.06936532322770372, 0.28322834609079706, 0.343263893078516, 0.4450860003239352, 0.3090838478611311, 0.408095736797927, 0.11529682880263803, 0.13359771811640497, 0.2417229185475579, 0.10092265889692065, 0.8181934133883563, 0.3777834313813965, 0.8273808576462511, 0.18439353202429143, 0.5148786056082297, 0.11287077888712382, 0.16015059460472458, 0.29672938182784603, 0.36944561074938853, 0.2505850522824452, 0.8467591712977676, 0.3840267097226593, 0.261779448872241, 0.1645479955558209, 0.14631295673285594, 0.4248523287309329, 0.09222807982804315, 0.2121484308544801, 0.33273366741371935, 0.5470626312455473, 0.8294144697045585, 0.25206662215500397, 0.15998368749433245, 0.548322128117227, 0.3917329141436472, 0.15981565308588508, 0.23631147082452741, 0.21082920466209698, 0.1871387197916503, 0.24774693401855818, 0.1913242313933492, 0.16437448769677154, 0.07582203648947516, 0.032541140295091364, 0.06311143057978008, 0.5009235508757715, 0.12343879567504301, 0.445735807756371, 0.40322837553658053, 0.09397553936597514, 0.1598391281143201, 0.26702494168661406, 0.19782301216908982, 0.06831823449824892, 0.5451167746582685, 0.20142160156100697, 0.25747632252511843, 0.4257317671215596, 0.5062318064185062, 0.10278357133077332, 0.10857266292312517, 0.06223864817381186, 0.11377411494697365, 0.14082424186384768, 0.2589321903149734, 0.31776639873426016, 0.07983414941561229, 0.30174211068680845, 0.42532907678292176, 0.23734670470511587, 0.2862296469110084, 0.24790288035387664, 0.5526146374040077, 0.20425399436950087, 0.5166825128498294, 0.12415322942140417, 0.5310696157212036, 0.3866387435262121, 0.14313186082947948, 0.31648660326859934, 0.026792916001305622, 0.7856428374245099, 0.42383310375799566, 0.5944566396871084, 0.6256605001243821, 0.08813642250468567, 0.03544811528140901, 0.06935406654889886, 0.15751976448865512, 0.22608551288474832, 0.3127311228465576, 0.1409438166611655, 0.3285615524533705, 0.3591330499592894, 0.47964497307801546, 0.7143146030302826, 0.14223944449319303, 0.06929054967731618, 0.32120711190509066, 0.16913647442041335, 0.707286257884667, 0.3230684446475647, 0.7616845263358343, 0.4104900542879092, 0.10053249234255524, 0.1106599594415556, 0.1543174595222413, 0.46003879185641183, 0.3811350878514418, 0.07185070571861518, 0.23882593985771994, 0.5344976262521839, 0.11031385635331636, 0.09610989844306939, 0.4955559099445003, 0.07845190603324759, 0.30697262074812925, 0.12767551958037127, 0.4375661224395835, 0.07737023387634634, 0.15307682457740834, 0.05694427046787409, 0.09028836937410878, 0.4011292297732457, 0.6186146927451245, 0.11561676905211238, 0.0993047499370594, 0.08102401279833105, 0.8100206966555492, 0.10768932514586738, 0.15386113005635593, 0.4026560765644126, 0.045535707525545144, 0.08229583319403, 0.08227601457953415, 0.8241544781987433, 0.0759900855540333, 0.5147505197509459, 0.11103147778198663, 0.42144961755966015, 0.24880465403270857, 0.3112403223054312, 0.3282460941643247, 0.28312386083977936, 0.2865521931047814, 0.16537364909659502, 0.4284132019637321, 0.34116073112729894, 0.051142721309942685, 0.10794707492381372, 0.1108646816717751, 0.29201805921023904, 0.07365131996157204, 0.36851051207096197, 0.2556143611338999, 0.07392456180697715, 0.045535707525545144, 0.15025986810093994, 0.4395989822566938, 0.19636656988846957, 0.21018464628148859, 0.15085686628779282, 0.3429118439192298, 0.16104008564300487, 0.2055862423584408, 0.18673310211333727, 0.5528531989583015, 0.20219789553586287, 0.5807830339134155, 0.6112381610839525, 0.07515362639458067, 0.5722084734915175, 0.3654892991508686, 0.1991057466826236, 0.4912569401667811, 0.05850610073101081, 0.3077884117234785, 0.17038242498240874, 0.14066607718466684, 0.10248584652416493, 0.4022873718442217, 0.07205214632436985, 0.35142291824287475, 0.10941760034103376, 0.06679271580157364, 0.05675388891699207, 0.058987921856350156, 0.3660303223369904, 0.28790374422385034, 0.4158290962648631, 0.40710291595796666, 0.09934102670994882, 0.06362846635195196, 0.30921476208988685, 0.23242198019285765, 0.055541210656895434, 0.5297663836663529, 0.10744632778983743, 0.18410212910939194, 0.17721960751489196, 0.1962664672709783, 0.1617648996714035, 0.10584426414108294, 0.5203501665477333, 0.07365131996157204, 0.31578819840495265, 0.35364190165315845, 0.1707951928721818, 0.41655733121321636, 0.15801546378512366, 0.7568436608419439, 0.22368578646300386, 0.0609449253562836, 0.2225096762928218, 0.18587673368692093, 0.05559101133196209, 0.569598540521716, 0.08073228430722412, 0.15724041301590164, 0.12879141548479, 0.4306817897420764, 0.17998791969802397, 0.41280880088413996, 0.5723062335690389, 0.6457404130724687, 0.10420061808672998, 0.12564769853034463, 0.21795029564941848, 0.4720930498870375, 0.11304202998506685, 0.545112257205237, 0.14852188644910969, 0.17217029085021085, 0.336250902618187, 0.48671482860553816, 0.5093433434984792, 0.35847801144896685, 0.3008706318705062, 0.18494609259573758, 0.4199330463236065, 0.04162287990776414, 0.2633909944023186, 0.4252182303976608, 0.4684623303117058, 0.1925553058603695, 0.09610989844306939, 0.09129843496680234, 0.3302708189676917, 0.4199330463236065, 0.11927294568859859, 0.4864154015695107, 0.06472081497616611, 0.6387929002666255, 0.37932906694235924, 0.093713747684541, 0.20627971812824875], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (curr)\", \"type\": \"scatter\", \"x\": [0.49, 0.12, 0.36, 0.29, 0.4, 0.4, 0.18, 0.04, 0.24, 0.65, 0.25, 0.39, 0.4, 0.26, 0.45, 0.36, 0.32, 0.49, 0.34, 0.07, 0.39, 0.13, 0.36, 0.64, 0.37, 0.31, 0.3, 0.23, 0.29, 0.74, 0.79, 0.2, 0.0, 0.17, 0.33, 0.21, 0.32, 0.11, 0.19, 0.06, 0.29, 0.2, 0.74, 0.29, 0.32, 0.25, 0.24, 0.25, 0.29, 0.35, 0.54, 0.26, 0.49, 0.22, 0.1, 0.23, 0.01, 0.49, 0.29, 0.2, 0.49, 0.34, 0.18, 0.4, 0.21, 0.06, 0.59, 0.0, 0.0, 0.03, 0.02, 0.25, 0.14, 0.26, 0.35, 0.28, 0.46, 0.52, 0.21, 0.3, 0.34, 0.18, 0.2, 0.33, 0.49, 0.27, 0.3, 0.34, 0.13, 0.36, 0.49, 0.26, 0.41, 0.42, 0.01, 0.0, 0.49, 0.19, 0.08, 0.55, 0.45, 0.32, 0.36, 0.11, 0.32, 0.09, 0.04, 0.0, 0.26, 0.41, 0.06, 0.5, 0.02, 0.29, 0.28, 0.34, 0.22, 0.24, 0.45, 0.08, 0.2, 0.28, 0.26, 0.17, 0.13, 0.18, 0.32, 0.38, 0.13, 0.37, 0.41, 0.32, 0.42, 0.49, 0.28, 0.62, 0.24, 0.17, 0.2, 0.2, 0.39, 0.49, 0.33, 0.42, 0.44, 0.28, 0.39, 0.23, 0.26, 0.23, 0.0, 0.22, 0.42, 0.19, 0.27, 0.24, 0.25, 0.44, 0.22, 0.42, 0.36, 0.47, 0.35, 0.48, 0.08, 0.26, 0.29, 0.46, 0.34, 0.38, 0.38, 0.32, 0.26, 0.28, 0.21, 0.0, 0.24, 0.35, 0.27, 0.35, 0.36, 0.23, 0.49, 0.1, 0.34, 0.32, 0.3, 0.22, 0.49, 0.22, 0.03, 0.46, 0.3, 0.28, 0.62, 0.21, 0.27, 0.1, 0.39, 0.3, 0.02, 0.26, 0.2, 0.4, 0.28, 0.36, 0.42, 0.59, 0.16, 0.69, 0.49, 0.23, 0.08, 0.4, 0.49, 0.24, 0.28, 0.33, 0.86, 0.24, 0.56, 0.25, 0.43, 0.41, 0.37, 0.14, 0.49, 0.29, 0.34, 0.34, 0.2, 0.34, 0.25, 0.35, 0.11, 0.48, 0.33, 0.31, 0.42, 0.33, 0.18, 0.02, 0.39, 0.32, 0.33, 0.12, 0.37, 0.3, 0.48, 0.01, 0.31, 0.2, 0.32, 0.62, 0.25, 0.36, 0.32, 0.23, 0.23, 0.33, 0.14, 0.22, 0.74, 0.74, 0.33, 0.36, 0.24, 0.38, 0.34, 0.44, 0.31, 0.12, 0.74, 0.42, 0.49, 0.25, 0.26, 0.34, 0.07, 0.47, 0.1, 0.25, 0.38, 0.0, 0.18, 0.37, 0.3, 0.26, 0.49, 0.38, 0.35, 0.07, 0.24, 0.06, 0.33, 0.39, 0.16, 0.38, 0.44, 0.39, 0.28, 0.65, 0.54, 0.56, 0.24, 0.06, 0.48, 0.29, 0.46, 0.26, 0.18, 0.19, 0.44, 0.41, 0.33, 0.74, 0.26, 0.49, 0.29, 0.1, 0.68, 0.08, 0.24, 0.27, 0.13, 0.53, 0.2, 0.49, 0.45, 0.14, 0.06, 0.29, 0.39, 0.4, 0.21, 0.41, 0.28, 0.04, 0.25, 0.32, 0.15, 0.49, 0.25, 0.27, 0.49, 0.3, 0.41, 0.49, 0.25, 0.4, 0.28, 0.3], \"xaxis\": \"x2\", \"y\": [0.18579927887031134, 0.9274202256360236, 0.2569067617886446, 0.17851375722123963, 0.43011516789686843, 0.3951880410340851, 0.35333307802371594, 0.854899199395705, 0.7749695319329993, 0.7150752736216004, 0.5793836726576811, 0.17187478758168062, 0.503776006633781, 0.6517104478925241, 0.5321166645488455, 0.4291031613352281, 0.6295132227815239, 0.446367751604861, 0.12978626497489776, 0.578130474122496, 0.1303225049324246, 0.4589423036505589, 0.6028673022099313, 0.6724998803801079, 0.055171077290688375, 0.28900585249094113, 0.5807441942986169, 0.6324527530146118, 0.32780881811994433, 0.4437792729685527, 0.47375733914823626, 0.6755390392614542, 0.8494338455743565, 0.8432302027568838, 0.3962269303969661, 0.36574887203466033, 0.9780529644634413, 0.6757083557066426, 0.43212531492562845, 0.6428319532862445, 0.2244465690609686, 0.6759712108962084, 0.300575337785698, 0.4848467547623382, 0.24353241802821812, 0.6165640897352094, 0.801889943514816, 0.6831580296641933, 0.4684052737322374, 0.07309555507266852, 0.17397747102053363, 0.548208100621717, 0.16948307959681597, 0.5287139706981401, 0.8097217619362252, 0.48186532860504816, 0.7044722268129955, 0.5458559966555334, 0.6067015953642416, 0.5767206748937392, 0.5416109283549078, 0.7766135747357961, 0.6371580804073698, 0.3290646799011723, 0.53941953634433, 0.7444876216695655, 0.27658524567301757, 0.8518717737266248, 0.685064206005921, 0.7994946846943811, 0.6254668451144636, 0.29898447003196504, 0.36566585814722175, 0.8260679099411251, 0.265003746926769, 0.18277705216857454, 0.6401445853260315, 0.2878944788643705, 0.7379395090268356, 0.6578861964269485, 0.3048731186933995, 0.6479177870210828, 0.5479007895539181, 0.8109237991420157, 0.4555798348891207, 0.35159410271621183, 0.6741813074403022, 0.40366163192193316, 0.3797333752177462, 0.42326140605337403, 0.49450075158901585, 0.7027754368270075, 0.31556666432085356, 0.5737052492708005, 0.5594846166878963, 0.9879213229528466, 0.23907110553933086, 0.7604887601700165, 0.906894853259191, 0.49150798334893764, 0.6693239074263375, 0.635181004157038, 0.4291031613352281, 0.6805197940362542, 0.8579270215873258, 0.42231028799440284, 0.7973836574204367, 0.6209099995125147, 0.617932351579841, 0.5867531689564582, 0.8217385626893267, 0.5766058512754557, 0.6085190813519714, 0.6488649586424557, 0.19466062481522506, 0.4062994677131635, 0.31500574198466447, 0.6106996692323751, 0.48314991346809855, 0.4300926711133176, 0.4623912750166579, 0.18141675383529432, 0.7404949196358439, 0.7960551628311661, 0.6696955469146251, 0.7471897031921468, 0.15222801432328747, 0.4782875749995391, 0.6696955469146251, 0.4617114467660769, 0.0374236133971757, 0.34638250956587036, 0.5737052492708005, 0.35412183815676124, 0.5342599897609015, 0.6273126624389191, 0.1819914526651868, 0.6450640502472667, 0.7576359910572065, 0.6363669366758954, 0.35783776888428775, 0.4555798348891207, 0.2603691587203709, 0.09638465351539516, 0.7889843001267657, 0.3995975535535492, 0.2404138117262561, 0.5134503976671381, 0.7620160241108803, 0.4852174766770502, 0.7934067722809752, 0.5657371707019572, 0.40591517497640706, 0.5142806824729376, 0.4667389755277017, 0.4597803030361328, 0.14211531046105408, 0.4709774325404933, 0.39253304933110444, 0.8152160844894966, 0.6418608562675732, 0.5695619245525361, 0.15898796250578873, 0.4189913516486339, 0.8097376625536354, 0.2776505479619531, 0.14100712613869515, 0.1625374057836978, 0.21879614767173305, 0.26016804821119, 0.5884346274074399, 0.25171266030158634, 0.5556828679884147, 0.2886326125606653, 0.5013044750460076, 0.23728971353361283, 0.6280660923097139, 0.6281218947904323, 0.6226708394296439, 0.1280348372312241, 0.37812375401711507, 0.6218606462016874, 0.446367751604861, 0.5237591509200082, 0.22560064672115399, 0.4159575064805634, 0.43989745285902637, 0.38133093816728936, 0.379388299643832, 0.4244201113870294, 0.8495234946343055, 0.44699506619782237, 0.3402560380560977, 0.16997778820688525, 0.6509841470756508, 0.5589353890471914, 0.49320900326902484, 0.41485179365651337, 0.2850172536812061, 0.5150740024049856, 0.7905789411902706, 0.6660097546858721, 0.5916856454756931, 0.25029771644034415, 0.21820707607863943, 0.23625780462752244, 0.6174344585079109, 0.33885175059010386, 0.8097775874289167, 0.5502791542248897, 0.45232673966787307, 0.5168725346003686, 0.4922951659433321, 0.2710495410551712, 0.5620189509382074, 0.19827785442852286, 0.35653263682836045, 0.4940220265254579, 0.3934632807735441, 0.349631294967786, 0.6543252873397565, 0.6043841099981286, 0.6572212454398962, 0.5323595728841377, 0.4667716613599331, 0.5480891857555714, 0.5933716837007499, 0.5769442381274095, 0.7796710482718338, 0.4721284230669528, 0.5632051337005155, 0.25606657060722404, 0.47304849589761655, 0.4991199345133047, 0.785831825438318, 0.5512091114854263, 0.31651464458218903, 0.192246895102814, 0.5737052492708005, 0.14970485751781393, 0.8257882443178004, 0.7450862811651306, 0.2404138117262561, 0.3428275867057816, 0.2186811050870735, 0.43730933466596944, 0.1325711740116582, 0.33994853494016564, 0.5172250338280965, 0.4543852880840521, 0.6017244994332274, 0.7267617626256621, 0.304103470637073, 0.49511795227452726, 0.4577650902534979, 0.4389063253281036, 0.3428275867057816, 0.6911248892501751, 0.5457123873353599, 0.3395528272139201, 0.5662837862370104, 0.38281068028313525, 0.1899488449656659, 0.1899488449656659, 0.39416742153886597, 0.4473524415330049, 0.5724944828663213, 0.12652799787397961, 0.14917046216496987, 0.4192276293132746, 0.1727250451072272, 0.7329347521090118, 0.2979855805324535, 0.5384433083808008, 0.2944152049751758, 0.5661013076544325, 0.39283078357423706, 0.6503174362647687, 0.7632350838020857, 0.29422440231251745, 0.8446099855685041, 0.3812461384129847, 0.1264117171095669, 0.6995051325026098, 0.7680829457938805, 0.1086082602083136, 0.50228427853815, 0.8303888649041977, 0.15145052047802054, 0.5239967242043768, 0.49461569007297057, 0.7323984730128237, 0.6372335578763709, 0.8485373319296128, 0.21018203617182263, 0.3854703692354019, 0.6209619763202376, 0.6996467359659702, 0.3913887983225227, 0.600932061108284, 0.18141675383529432, 0.32841971343371723, 0.17397747102053363, 0.3943097935149382, 0.5998672378660981, 0.6052803835931642, 0.35501406908939237, 0.4362847089434372, 0.6005057903956104, 0.45095984485898877, 0.5601124581139871, 0.6908342266509375, 0.29066967723125237, 0.5437491575180791, 0.5955595524057149, 0.4226516353037165, 0.552222307965348, 0.5038457784615318, 0.6752568781943777, 0.7880730680059006, 0.09430965090665133, 0.4986183600001317, 0.24112389044610405, 0.3635071851353404, 0.7047195247497422, 0.5251048099479148, 0.5632051337005155, 0.4520037684813636, 0.5271857161160298, 0.36566585814722175, 0.8775119234978208, 0.49474741138534273, 0.17187478758168062, 0.1069918390347242, 0.6371627391106971, 0.19018032574493748, 0.34352259564225396, 0.806114950115292, 0.47304849589761655, 0.5014153035286022, 0.6721952796384192, 0.7507248720260316, 0.38512814216859315, 0.8930847268109882, 0.863224561659591, 0.15108072818859253, 0.7399796913917198, 0.18579927887031134, 0.47304849589761655, 0.2033384066370545, 0.43667652058029827, 0.23252054766636898], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [0.19, 0.38, 0.42, 0.21, 0.23, 0.27, 0.29, 0.25, 0.31, 0.12, 0.24, 0.35, 0.25, 0.23, 0.39, 0.34, 0.0, 0.31, 0.24, 0.34, 0.3, 0.31, 0.35, 0.39, 0.28, 0.49, 0.38, 0.28, 0.32, 0.3, 0.29, 0.27, 0.37, 0.34, 0.23, 0.99, 0.27, 0.37, 0.33, 0.02, 0.34, 0.33, 0.49, 0.3, 0.42, 0.09, 0.29, 0.18, 0.33, 0.37, 0.17, 0.39, 0.44, 0.41, 0.31, 0.44, 0.56, 0.0, 0.31, 0.68, 0.09, 0.26, 0.36, 0.27, 0.29, 0.33, 0.38, 0.33, 0.06, 0.34, 0.34, 0.28, 0.28, 0.24, 0.29, 0.19, 0.24, 0.28, 0.3, 0.49, 0.4, 0.33, 0.41, 0.27, 0.34, 0.29, 0.39, 0.24, 0.49, 0.34, 0.26, 0.49, 0.26, 0.28, 0.3, 0.28, 0.4, 1.23, 0.52, 0.08, 0.44, 0.27, 0.23, 0.24, 0.34, 0.09, 0.24, 0.32, 0.42, 0.29, 0.0, 0.28, 0.3, 0.27, 0.25, 0.53, 0.22, 0.27, 0.25, 0.39, 0.23, 0.36, 0.27, 0.47, 0.1, 0.46, 0.26, 0.46, 0.4, 0.35, 0.38, 0.34, 0.28, 0.27, 0.49, 0.58, 0.34, 0.38, 0.27, 0.29, 0.45, 0.03, 0.69, 0.37, 0.26, 0.33, 0.56, 0.32, 0.3, 0.34, 0.29, 0.33, 0.31, 0.61, 0.34, 0.35, 0.38, 0.32, 0.4, 0.39, 0.39, 0.24, 0.24, 0.91, 0.49, 0.36, 0.35, 0.05, 0.4, 0.81, 0.3, 0.4, 0.28, 0.4, 0.47, 0.3, 0.17, 0.38, 0.26, 0.39, 0.3, 0.25, 0.36, 0.49, 0.32, 0.15, 0.24, 0.24, 0.36, 0.33, 0.32, 0.26, 0.32, 0.45, 0.28, 0.28, 0.32, 0.22, 0.56, 0.26, 0.36, 0.25, 0.42, 0.52, 0.5, 0.3, 0.41, 0.73, 0.3, 0.41, 0.29, 0.34, 0.24, 0.45, 0.52, 0.29, 0.38, 0.24, 0.4, 0.4, 0.49, 0.29, 0.14, 0.42, 0.5, 0.2, 0.32, 0.3, 0.45, 0.26, 0.21, 0.4, 0.39, 0.36, 0.24, 0.38, 0.24, 0.18, 0.31, 0.49, 0.35, 0.32, 0.36, 0.34, 0.2, 0.5, 0.27, 0.31, 0.34, 0.11, 0.32, 0.28, 0.44, 0.29, 0.37, 0.26, 0.74, 0.3, 0.4, 0.31, 0.02, 0.31, 0.34, 0.19, 0.27, 0.36, 0.42, 0.2, 0.42, 0.46, 0.27, 0.32, 0.32, 0.59, 0.34, 0.16, 0.49, 0.32, 0.26, 0.1, 0.53, 0.27, 0.52, 0.15, 0.32, 0.49, 0.28, 0.31, 0.07, 0.27, 0.5, 0.44, 0.28, 0.26, 0.3, 0.3, 0.48, 0.3, 0.36, 0.32, 0.29, 0.44, 0.47, 0.26, 0.36, 0.46, 0.3, 0.35, 0.39, 0.3, 0.27, 0.31, 0.08, 0.61, 0.25, 0.29, 0.4, 0.34, 0.49, 0.33, 0.28, 0.27, 0.29, 0.49, 0.37, 0.34, 0.25, 0.52, 0.58, 0.3, 0.02, 0.32, 0.0, 0.32, 0.69, 0.3, 0.42, 0.28, 0.44, 0.3, 0.31, 0.33, 0.49, 0.0, 0.08, 0.28, 0.3, 0.38, 0.49, 0.27, 0.49, 0.38, 0.32, 0.61, 0.22, 0.31, 0.25, 0.26, 0.38, 0.08, 0.29, 0.24, 0.49, 0.46, 0.43, 0.49, 0.2, 0.49, 0.41, 0.33, 0.32, 0.29, 0.4, 0.38, 0.49, 0.09, 0.37, 0.29, 0.08, 0.0, 0.27, 0.43, 0.31, 0.42, 0.39, 0.41, 0.42, 0.31, 0.11, 0.24, 0.22, 0.24, 0.45, 0.39, 0.35, 0.02, 0.39, 0.54, 0.15, 0.37, 0.42, 0.24, 0.28, 0.71, 0.27, 0.33, 0.29, 0.26, 0.28, 0.27, 0.37, 0.36, 0.49, 0.71, 0.24, 0.12, 0.38, 0.34, 0.27, 0.24, 0.25, 0.36, 0.47, 0.18, 0.54, 0.26, 0.41, 0.22, 0.29, 0.5, 0.27, 0.32, 0.38, 0.33, 0.3, 0.25, 0.38, 0.36, 0.33, 0.3, 0.3, 0.01, 0.29, 0.23, 0.38, 0.45, 0.01, 0.2, 0.19, 0.18, 0.3, 0.08, 0.26, 0.21, 0.28, 0.2, 0.31, 0.28, 0.32, 0.32, 0.3, 0.32, 0.25, 0.29, 0.31, 0.29, 0.49, 0.3, 0.33, 0.0, 0.2, 0.36, 0.2, 0.27, 0.48, 0.3, 0.2, 0.39, 0.18, 0.34, 0.23, 0.34, 0.49, 0.45, 0.38, 0.49, 0.3, 0.29, 0.1, 0.0, 0.4, 0.4, 0.39, 0.33, 0.33, 0.47, 0.42, 0.31, 0.39, 0.55, 0.41, 0.38, 0.3, 0.18, 0.24, 0.2, 0.18, 0.24, 0.43, 0.43, 0.32, 0.34, 0.28, 0.29, 0.38, 0.31, 0.31, 0.53, 0.49, 0.37, 0.33, 0.2, 0.33, 0.26, 0.4, 0.27, 0.26, 0.36, 0.35, 0.53, 0.07, 0.26, 0.36, 0.53, 0.45, 0.22, 0.66, 0.33, 0.0, 0.29, 0.32, 0.3, 0.48, 0.28, 0.37, 0.32, 0.45, 0.4, 0.24, 0.3, 0.58, 0.3, 0.21, 0.37, 0.3, 0.19, 0.21, 0.32, 0.51, 0.27, 0.26, 0.33, 0.3, 0.42, 0.3, 0.24, 0.26, 0.3, 0.39, 0.27, 0.31, 0.26, 0.29, 1.0, 0.36, 0.31, 0.38, 0.28, 0.25, 0.35, 0.2, 0.51, 0.47, 0.22, 0.31, 0.5, 0.18, 0.45, 0.15, 0.14, 0.03, 0.32, 0.36, 0.23, 0.16, 0.49, 0.26, 0.36, 0.34, 0.3, 0.21, 0.58, 0.43, 0.26, 0.36, 0.27, 0.42, 0.49, 0.26, 0.35, 0.04, 0.4, 0.28, 0.28, 0.26, 0.25, 0.27, 0.31, 0.29, 0.54, 0.28, 0.26, 0.28, 0.28, 0.18, 0.26, 0.29, 0.38, 0.65, 0.32, 0.0, 0.68, 0.36, 0.34, 0.31, 0.35, 0.46, 0.24, 0.41, 0.24, 0.3, 0.49, 0.24, 0.22, 0.31, 0.37, 0.29, 0.34], \"xaxis\": \"x2\", \"y\": [0.6660328535674787, 0.4955559099445003, 0.11251030999551548, 0.5313240922219649, 0.7616845263358343, 0.42881839881496897, 0.22146723198036844, 0.2709448900825402, 0.04188686298684474, 0.3198999677935893, 0.586632325439729, 0.3332859260788763, 0.0891770245136605, 0.07249138429342028, 0.0813041402249215, 0.2808128557304226, 0.18155424903412543, 0.14020593233116785, 0.20529540916933675, 0.1755850319354616, 0.5722846846512241, 0.4684623303117058, 0.2863708053899042, 0.4489302200945696, 0.3606737334686688, 0.09834172337505831, 0.1439119889738254, 0.10526388551166177, 0.08976738859769384, 0.15927641460572795, 0.07353544332944184, 0.4894096639868448, 0.24735122968283396, 0.41440459167745447, 0.10107859516115147, 0.4809249647595707, 0.043928674649753696, 0.27268427565697984, 0.07203278686513981, 0.35989685204578803, 0.08410225657903847, 0.09640449279894714, 0.2859044620344169, 0.766491644508495, 0.27194216744256416, 0.11891721880979944, 0.6033870782914414, 0.8445823904457724, 0.4148378249676725, 0.09538880480821377, 0.5822786697287807, 0.2006236885231063, 0.30215903380660414, 0.3526626332448971, 0.22921561702294402, 0.3499358724503807, 0.451050436906263, 0.01968005574460141, 0.3849224947932618, 0.608666907839271, 0.30333177217190177, 0.05732515971384944, 0.08299070223644744, 0.155374347961305, 0.4378217303747408, 0.10641916767178827, 0.3207785913922725, 0.3280003244598044, 0.4747408725557203, 0.27229542413121455, 0.5314247042003052, 0.13834506443323813, 0.652508483608137, 0.1775869136191267, 0.4659209431511335, 0.3288332341233703, 0.47224603889779837, 0.2773569186284155, 0.18590272545123854, 0.6719763059805124, 0.04569198037744582, 0.22473444069733528, 0.0776074933333939, 0.1411968215808168, 0.3654892991508686, 0.06069899520469324, 0.21029328672965164, 0.13919371635861133, 0.16321149678759816, 0.6144435769482088, 0.1388055550317996, 0.0827658987104557, 0.0793107693477757, 0.04994940743047871, 0.46220165202879504, 0.08265172102971341, 0.5554564865761329, 0.10902951494304747, 0.26480674198345266, 0.31816712550642645, 0.20184400370343658, 0.23734670470511587, 0.19264674509953905, 0.03558879485690103, 0.5314247042003052, 0.3013473679880785, 0.8043030592862955, 0.07665185966197174, 0.17816243980233548, 0.14637302723887635, 0.43623195291339645, 0.5773286546676725, 0.06996409198491005, 0.0635191394270278, 0.11839391684253864, 0.03368970372860669, 0.16544292122901683, 0.5002106013252752, 0.20783967621931676, 0.4413184352618238, 0.1377753535318076, 0.017128038770129694, 0.09070427960766203, 0.05237321155563324, 0.46044782253877736, 0.09863911308639095, 0.6058955548956951, 0.07377868677997379, 0.33726125667837825, 0.03705661785513226, 0.03856885477325478, 0.01970319875133708, 0.06623921298607705, 0.655672818127978, 0.36403826442427, 0.375635621083512, 0.25822104517587474, 0.26990817233175546, 0.30316845466795117, 0.21597661143113533, 0.10411587283779344, 0.4582573305440075, 0.28974208538397184, 0.3995654588450376, 0.48407929824265805, 0.2412117545349558, 0.49704114689177337, 0.3112403223054312, 0.13571503940671914, 0.35304273602320047, 0.18963603484652192, 0.06023564559469896, 0.305863422303413, 0.34062746964654456, 0.03532029949184434, 0.20200996882548472, 0.207876095289533, 0.11304202998506685, 0.26487496820305634, 0.46674395287949066, 0.05931266843465788, 0.6063731497207538, 0.053339747820140615, 0.16056749669580483, 0.3366557342021428, 0.18735912995827353, 0.2667542380283816, 0.9197592959547904, 0.13322255285490225, 0.3533185668595151, 0.08763312389948397, 0.343329095265401, 0.1298321532292276, 0.11240742021865013, 0.03412749239977686, 0.23316671381479437, 0.13955591125269062, 0.065615492475942, 0.03940539431326806, 0.04874684240881699, 0.42507109047861347, 0.3720756994829524, 0.20627971812824875, 0.23346983492740092, 0.299872058778726, 0.14688925552714138, 0.20529540916933675, 0.11294333341234963, 0.4523771212155355, 0.15895981664313275, 0.12633289347617382, 0.34801013400503944, 0.063056887931354, 0.09222807982804315, 0.19281104432210028, 0.11843845992675284, 0.1064686731970873, 0.12171087020281346, 0.49704114689177337, 0.4202798549667376, 0.058322454167927695, 0.40418598015134155, 0.7514842711311043, 0.067978575311199, 0.1468497162592186, 0.3655805321171328, 0.36741292271676196, 0.08785516413846428, 0.4223454464089015, 0.09472348251934337, 0.14196098925812006, 0.10013555988874479, 0.32154631204965056, 0.05416575683382341, 0.786126361492164, 0.04696516601190348, 0.26926088858349784, 0.28123172687107445, 0.3094364396730669, 0.04307250962973752, 0.07126159086244754, 0.6143015945908075, 0.495586079448059, 0.46102608015166635, 0.40789311683600216, 0.8929715185951024, 0.1227006502272181, 0.3638055988942468, 0.10470002869891348, 0.29304213908849364, 0.8936703981375603, 0.3534407380188983, 0.0883666731866185, 0.07895584641700149, 0.05166417783587085, 0.4199775765299997, 0.10304865631077798, 0.1041340676595982, 0.11031385635331636, 0.22368578646300386, 0.22137255536682798, 0.0725394352715707, 0.08320759746190642, 0.3577905591727162, 0.36362749207413336, 0.13058702032609693, 0.4306817897420764, 0.4684623303117058, 0.3185463047756948, 0.6991046594229053, 0.33105510290791684, 0.35804773811787727, 0.3499358724503807, 0.17780319308126435, 0.07142366539796174, 0.1504846162366139, 0.28643330026545544, 0.11492102279820171, 0.08716328114311156, 0.12905574960179156, 0.5528531989583015, 0.2852168598030531, 0.3185463047756948, 0.41766807389819915, 0.22818770291371737, 0.10749415552266317, 0.07500089027222667, 0.2150933620687273, 0.4879833184669665, 0.21367083697314282, 0.18281788227943807, 0.11217648511765432, 0.01860460444149037, 0.4990100838788346, 0.3212979959143686, 0.7252893191599291, 0.30018855716775616, 0.2808216200321265, 0.24332849241566534, 0.22583693263898685, 0.307128141019565, 0.12930297020615966, 0.07734813107736227, 0.38078614076753503, 0.037937415915298756, 0.18389331462546077, 0.2015421194948802, 0.10121634311933059, 0.7209948827487924, 0.252131738577411, 0.19866278493931944, 0.5569604587758099, 0.19172534874952063, 0.07516041810443141, 0.18673310211333727, 0.20736440356309183, 0.27568985010185776, 0.1748501221961516, 0.134246332983591, 0.12151400729184814, 0.03860330573341564, 0.16198960071610413, 0.062309112953929935, 0.14943540958877521, 0.46827469198568006, 0.12435295831370408, 0.11768791031746062, 0.10794707492381372, 0.04347111427796346, 0.07423675680829, 0.1602542791395647, 0.19911642350143877, 0.2379444352717226, 0.36664322039668684, 0.10130143557253446, 0.17108028607870185, 0.6143194513817134, 0.5641235853966853, 0.29864316680665437, 0.44752301946823647, 0.13459844499503626, 0.037461465199631894, 0.5002964248569376, 0.4059565893810353, 0.7035957096210382, 0.0629603198376949, 0.25036415064992923, 0.14780834332950044, 0.24800647860056513, 0.10438723399855232, 0.24366911510822187, 0.4574644219698093, 0.8347014835967527, 0.42226245660703365, 0.4073158502222598, 0.47525484003715535, 0.37845934883934684, 0.35325777167774697, 0.4763432908647238, 0.18941100564626978, 0.23853527246002126, 0.27277355193056574, 0.5556171757583562, 0.19481513110659687, 0.7460207524242459, 0.12627308236197843, 0.2115813466591615, 0.4773837842994688, 0.22238536240250728, 0.1978655273089749, 0.32057959349203036, 0.1601330373243487, 0.6256605001243821, 0.34062746964654456, 0.5899158924001677, 0.1273375405407705, 0.6866376712310945, 0.3812864953771038, 0.07918534602430627, 0.10510921928053807, 0.052405178286905496, 0.29010285216427345, 0.5802968836962079, 0.4475494904811408, 0.33107045093633036, 0.6046547135519548, 0.33132995382553565, 0.3391582818855403, 0.37109937806185267, 0.18876467901964422, 0.03244681540368277, 0.6531311156123596, 0.18281848038190407, 0.06840545126676123, 0.23876166598551407, 0.5602062902528231, 0.05478334190217349, 0.18965009362393503, 0.502081053312289, 0.0945975060483667, 0.24937367783354814, 0.14040338921272166, 0.09582424632391484, 0.4879833184669665, 0.07536550594022651, 0.37763546052463404, 0.20240400638142053, 0.06234715971662652, 0.1729504208160284, 0.2536573606029918, 0.1491704939138675, 0.47224603889779837, 0.20734784509414073, 0.1656619584420439, 0.20263687678412212, 0.4576701693643329, 0.3746187330143109, 0.06578487521364562, 0.09359041291034786, 0.15714155813810793, 0.43198081216185935, 0.17693664965610134, 0.14200602748771296, 0.16878839641400256, 0.11131318694256087, 0.43040972974554736, 0.12494266711040569, 0.5286591337585229, 0.3917329141436472, 0.14284790216410748, 0.29931895876037384, 0.3998656181534954, 0.13198036366642862, 0.2166851793268345, 0.164669749255824, 0.3116999397838065, 0.5702002297218003, 0.2867818412254799, 0.05809024612643199, 0.0701620515557333, 0.10493669218879953, 0.03474255021640338, 0.14069518845012563, 0.7697788668098057, 0.44513161239284327, 0.12104291767226882, 0.2823656727566666, 0.28640273091276736, 0.09904459769556595, 0.10889384421684001, 0.1978655273089749, 0.6326587477498924, 0.0766186874204361, 0.07300117689776386, 0.3978521493117628, 0.7293533971641823, 0.24040337450518035, 0.46827469198568006, 0.03737110954461231, 0.48112847828662497, 0.5755848065786346, 0.12151472907643468, 0.332302417201758, 0.3208349144509022, 0.13406270144296106, 0.47820199098358873, 0.024219732643774528, 0.7923035912680444, 0.3099424932714111, 0.8494816644677875, 0.15230116664989468, 0.8795672599938588, 0.34536882843285344, 0.587897812361327, 0.3660303223369904, 0.3074082248441362, 0.1925553058603695, 0.1582957933341015, 0.5297945963993664, 0.1892543681582496, 0.06574637766643598, 0.03286461121245521, 0.6223124217546917, 0.48666930315350876, 0.17200815643270417, 0.27042696199957883, 0.16010429726024444, 0.25291734909108765, 0.22778758435893687, 0.6055190518965303, 0.41989528411161425, 0.2865861541738164, 0.17344095530188786, 0.4163761941495938, 0.24610426408478792, 0.029106329843254564, 0.5849270471051293, 0.09607886499379148, 0.4890296174547498, 0.11193395874659995, 0.3667485749721523, 0.29672938182784603, 0.13696827462710404, 0.03986507081677082, 0.41542023534722683, 0.1642424989032959, 0.041559354155004224, 0.1266666793707928, 0.5259198205822933, 0.42123490919744344, 0.6147437654518444, 0.42849246998341506, 0.04874684240881699, 0.16870816563337898, 0.35179373534084035, 0.4552463954734379, 0.1543174595222413, 0.4641274821418986, 0.1106599594415556, 0.40441066041397966, 0.05916303638108533, 0.24194101851814365, 0.5755848065786346, 0.23631147082452741, 0.04679471849088612, 0.33132995382553565, 0.6031606095022326, 0.16900214819844117, 0.9322526967181247, 0.1065938389205352, 0.0540586741766943, 0.14920224829950646, 0.03054451782098533, 0.13595064656866984, 0.15908339514281045, 0.09402391562754642, 0.27219479721363327, 0.10477531970828624, 0.6046547135519548, 0.04412971358840656, 0.0821245873848182, 0.24953715645213048, 0.24311299470472425, 0.679537413518331, 0.02875041056121841, 0.2874129658970298, 0.17131102264191878, 0.07042427222914205, 0.1577516063520068, 0.39934634677258996, 0.42249259173992826, 0.24940231538328683, 0.46827469198568006, 0.040988937643475554, 0.034828704291737345, 0.26663563965858417, 0.22421743312747255, 0.10716094829621758, 0.7421831263598226, 0.4644511163280224, 0.1591307416719686, 0.21502194578256428, 0.12883185373794437, 0.15520095945599266, 0.04280666734842442, 0.06928764484923078, 0.3578757504587543, 0.0760792945579073, 0.06637805380770656, 0.5755848065786346, 0.4326356954473739, 0.16985579355455038, 0.47152805642545803, 0.11644579282256762, 0.11790522998710073, 0.5438286352264949, 0.41561805514360906, 0.050606352251634235, 0.21836830194439782, 0.22298545275517268, 0.1504846162366139, 0.16819644397314482, 0.47796113776613436, 0.14100197907825862, 0.7878397890034206, 0.12176963827920351, 0.09814942480303201, 0.23162396036129984, 0.04400104962869911, 0.061588508633294015, 0.2774601068082493, 0.40816383821078206, 0.14036214651023216, 0.11837607594274324, 0.0703155477214753, 0.17002415827487982, 0.24611532014486182, 0.06874641727313702, 0.30975746960573625, 0.07004288447243323, 0.6453829176356538, 0.3880412370469972, 0.10205495289732236, 0.12171087020281346, 0.38550692709735157, 0.4398162761337091, 0.5769741243450848, 0.48842976274850136, 0.3866799681687785, 0.17129518728202664, 0.5711206597512044, 0.4456070955069118, 0.4585850027539752, 0.25462747480751524, 0.34771016550763867, 0.35548618548401445, 0.07878090041588082, 0.3008706318705062, 0.08117751180329491, 0.055511805197920094, 0.1600174453683395, 0.35597309965685686, 0.5473978930443646, 0.3321771897262046, 0.14643302530661162, 0.7653011157176768, 0.24188431843396252, 0.16704799028757666, 0.41136103198090634, 0.5749869949413896, 0.709238838470871, 0.09340318303147321, 0.602429869503323, 0.04154705947390969, 0.7519582179986716, 0.15993940416551844, 0.04372375151311325, 0.4076899811241429, 0.4644511163280224, 0.3133137248525114, 0.24628490675063597, 0.06972977174174444, 0.15949948541388637, 0.2241543425141257, 0.1729876202034616, 0.07290025122558275, 0.1220000714032804, 0.36493953208423235, 0.09420126302076737, 0.026726938234992392, 0.7199273032686843, 0.4606762448039463, 0.04906818437448113, 0.19446415942665518, 0.14876853598344464, 0.3247816953453747, 0.023320858692869595, 0.7310618090422621, 0.48944479260603346, 0.20357574295749958, 0.0840537250624015, 0.5368744051465595, 0.21101467800102214, 0.46682279298460017, 0.3749869638443927, 0.46592999202179275, 0.10188412989688433, 0.15751976448865512], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"citric.acid\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"citric.acid\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}, \"All_residual.sugar\": {\"data\": [{\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Reference<br>residual.sugar=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [1.3, 6.3, 2.6, 6.0, 1.2, 2.3, 2.2, 1.1, 2.7, 3.5, 0.9, 1.5, 5.7, 17.85, 4.55, 6.5, 1.0, 3.7, 1.7, 11.8, 8.2, 4.5, 1.5, 2.1, 7.2, 1.9, 1.2, 13.0, 4.6, 1.2, 1.2, 2.1, 1.9, 1.8, 2.0, 13.9, 10.7, 2.0, 4.3, 1.4, 1.1, 1.3, 1.8, 1.2, 11.0, 8.8, 2.5, 8.3, 2.4, 3.5, 16.4, 14.4, 1.4, 5.5, 1.1, 13.3, 2.5, 0.8, 1.2, 6.0, 2.2, 5.0, 2.7, 1.6, 2.6, 2.6, 2.4, 8.1, 7.4, 8.55, 1.5, 6.1, 5.9, 8.3, 5.7, 8.9, 3.6, 1.1, 2.1, 8.6, 2.3, 5.0, 1.1, 10.6, 7.7, 1.1, 1.2, 2.6, 4.2, 2.2, 1.5, 4.9, 1.8, 1.5, 6.2, 7.8, 13.7, 3.2, 1.3, 1.4, 1.1, 13.1, 2.2, 2.3, 1.2, 2.4, 7.7, 4.5, 1.2, 1.9, 1.2, 31.6, 1.2, 2.2, 3.9, 1.4, 2.0, 1.6, 16.5, 2.1, 12.8, 1.5, 10.5, 12.2, 2.2, 1.7, 2.1, 12.1, 1.5, 2.0, 4.0, 1.9, 14.75, 2.5, 4.5, 5.7, 2.6, 2.4, 2.8, 2.7, 0.9, 5.8, 8.6, 4.7, 2.2, 1.4, 6.4, 1.4, 1.7, 14.4, 14.7, 1.4, 1.6, 13.4, 14.9, 5.8, 1.0, 1.8, 8.8, 1.5, 11.4, 2.0, 1.4, 2.9, 6.6, 11.9, 9.9, 5.1, 11.2, 1.4, 2.0, 2.0, 1.6, 11.1, 3.0, 7.6, 1.7, 6.0, 4.8, 2.4, 6.1, 1.2, 1.7, 2.1, 7.0, 1.2, 1.7, 1.5, 3.6, 1.1, 1.8, 2.2, 8.3, 8.0, 2.3, 1.6, 1.3, 1.3, 2.0, 1.1, 2.0, 4.9, 6.5, 1.8, 2.3, 1.9, 5.1, 7.1, 13.9, 10.1, 0.9, 1.4, 3.6, 3.6, 4.2, 1.3, 5.35, 5.9, 6.5, 3.0, 1.1, 18.15, 1.6, 1.6, 2.1, 5.7, 14.4, 14.55, 1.3, 6.2, 4.8, 1.5, 2.9, 12.2, 4.5, 10.2, 1.8, 8.9, 2.8, 7.8, 8.1, 14.2, 1.1, 14.4, 1.8, 6.8, 1.3, 17.4, 6.5, 3.7, 14.6, 12.8, 2.1, 1.6, 1.9, 5.9, 3.6, 4.4, 1.8, 1.7, 12.2, 1.2, 2.6, 4.2, 1.4, 1.7, 4.6, 4.6, 2.0, 1.5, 1.7, 2.1, 7.4, 7.3, 2.2, 13.5, 10.2, 2.0, 2.2, 1.4, 7.0, 3.8, 1.6, 3.9, 1.6, 1.6, 18.4, 10.2, 2.5, 2.3, 1.5, 2.7, 2.1, 4.8, 10.8, 6.9, 1.8, 1.3, 1.2, 4.7, 2.4, 7.4, 5.7, 6.8, 1.5, 2.1, 9.25, 1.0, 18.95, 1.4, 1.8, 15.4, 2.4, 2.0, 1.2, 2.6, 1.5, 1.9, 2.1, 1.5, 1.7, 2.8, 6.3, 3.2, 1.6, 2.1, 10.7, 2.0, 8.2, 5.0, 8.3, 1.3, 3.6, 10.7, 1.9, 19.25, 4.7, 2.5, 15.55, 8.5, 12.4, 6.0, 1.3, 1.4, 2.0, 1.0, 12.2, 2.3, 1.5, 13.1, 10.4, 1.7, 10.2, 1.1, 13.0, 1.5, 2.2, 3.5, 4.0, 3.5, 14.1, 3.4, 1.9, 2.6, 2.2, 11.8, 1.2, 1.4, 2.2, 12.5, 5.4, 1.1, 1.4, 6.2, 4.4, 9.2, 1.8, 2.8, 1.6, 2.5, 11.0, 8.2, 2.9, 11.0, 7.3, 2.6, 15.4, 0.9, 6.9, 3.1, 4.25, 17.8, 4.8, 5.7, 8.6, 3.6, 1.9, 26.05, 4.5, 3.2, 1.9, 1.9, 2.5, 14.6, 7.25, 12.2, 4.7, 1.1, 1.6, 7.7, 1.6, 7.2, 1.2, 1.6, 1.3, 2.3, 6.3, 16.5, 3.3, 1.4, 6.2, 6.3, 7.7, 14.7, 9.8, 1.2, 1.0, 1.4, 5.3, 4.6, 8.65, 2.0, 4.9, 1.2, 1.0, 2.8, 4.2, 3.7, 4.1, 2.7, 2.9, 1.2, 1.2, 9.1, 6.3, 6.9, 13.6, 1.4, 2.1, 1.4, 5.0, 1.5, 1.55, 1.5, 10.4, 4.2, 6.7, 2.3, 9.9, 11.0, 3.2, 1.9, 3.3, 19.1, 1.2, 2.2, 4.9, 1.1, 9.3, 2.6, 1.9, 11.2, 8.0, 13.4, 5.1, 1.95, 4.7, 8.9, 4.8, 1.4, 2.2, 18.0, 17.3, 7.2, 4.1, 8.9, 1.7, 14.9, 1.1, 1.5, 14.6, 2.3, 1.1, 14.2, 1.2, 1.5, 9.6, 5.7, 2.7, 1.4, 12.7, 9.1, 10.5, 14.3, 6.5, 8.1, 1.1, 4.7, 1.0, 4.4, 1.6, 3.6, 7.4, 12.8, 0.8, 1.5, 2.2, 12.2, 1.6, 3.8, 2.8, 1.4, 8.2, 1.0, 1.9, 0.9, 12.15, 2.0, 4.3, 3.5, 5.6, 2.4, 4.2, 15.55, 2.3, 4.0, 8.7, 13.6, 5.4, 1.5, 6.4, 3.1, 15.15, 5.2, 4.8, 1.4, 2.4, 5.9, 2.7, 6.8, 1.1, 11.2, 3.3, 7.5, 2.8, 2.1, 1.1, 1.6, 9.5, 1.9, 1.4, 9.7, 1.3, 14.0, 1.8, 1.6, 3.5, 7.3, 1.1, 7.6, 1.1, 1.9, 1.6, 4.8, 1.5, 1.5, 17.55, 2.2, 15.6, 1.6, 1.6, 4.8, 7.4, 2.1, 12.8, 2.4, 2.7, 7.0, 1.1, 1.8, 1.9, 1.7, 7.9, 3.1, 18.6, 3.0, 6.9, 1.8, 7.4, 8.8, 1.2, 1.8, 14.9, 1.7, 2.8, 15.9, 4.2, 15.5, 1.7, 13.9, 9.65, 3.3, 7.5, 2.1, 2.5, 2.3, 3.3, 3.8, 2.0, 2.2, 10.9, 1.2, 1.6, 2.2, 10.4, 1.9, 12.7, 2.5, 8.1, 1.3, 9.6, 9.2, 14.5, 13.55, 10.5, 1.3, 1.6, 8.1, 1.0, 1.8, 1.1, 2.7, 3.5, 5.1, 1.3], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Current<br>residual.sugar=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [3.5, 14.3, 1.2, 2.2, 2.3, 1.2, 1.2, 8.0, 2.1, 1.6, 2.7, 1.3, 1.2, 9.65, 4.3, 1.2, 1.4, 2.8, 2.1, 3.2, 14.2, 14.5, 0.9, 1.1, 7.2, 1.2, 9.1, 3.95, 3.6, 4.7, 1.8, 6.2, 15.0, 6.4, 1.5, 1.2, 2.6, 7.9, 3.95, 1.9, 7.5, 2.5, 14.0, 13.0, 2.0, 2.3, 16.85, 1.9, 10.3, 1.7, 2.0, 3.9, 9.3, 1.0, 7.0, 14.1, 8.2, 1.8, 11.4, 1.7, 2.3, 20.3, 5.5, 9.7, 7.1, 2.1, 8.1, 6.7, 1.8, 1.3, 14.4, 2.4, 11.0, 7.4, 13.2, 12.3, 19.95, 1.7, 1.7, 1.9, 1.5, 1.0, 2.4, 2.1, 9.7, 3.1, 1.5, 14.5, 6.6, 1.6, 12.7, 7.4, 3.6, 1.4, 1.6, 6.5, 1.4, 4.6, 1.8, 2.1, 7.1, 9.9, 2.0, 2.1, 14.4, 10.9, 2.0, 9.0, 2.5, 2.8, 13.0, 31.6, 8.2, 1.7, 5.0, 2.2, 2.7, 1.4, 12.2, 3.2, 11.8, 1.5, 2.8, 1.4, 2.1, 2.1, 1.9, 4.7, 2.6, 1.8, 5.1, 1.8, 1.7, 17.5, 1.4, 17.1, 1.6, 2.5, 5.2, 1.6, 4.4, 3.2, 2.8, 8.5, 13.1, 1.2, 13.8, 5.6, 6.2, 1.1, 10.3, 1.0, 11.7, 16.2, 1.6, 2.8, 1.5, 2.0, 1.3, 14.2, 1.6, 2.0, 6.1, 8.2, 2.5, 1.2, 4.6, 2.2, 2.4, 1.1, 1.4, 1.1, 15.2, 4.7, 7.5, 4.2, 1.6, 7.8, 3.5, 2.4, 5.2, 10.8, 1.3, 3.4, 9.0, 1.8, 2.1, 4.8, 20.7, 2.2, 7.4, 17.3, 2.2, 2.3, 4.7, 4.9, 3.7, 1.6, 13.8, 8.2, 5.7, 1.7, 4.4, 5.9, 8.7, 2.1, 4.3, 6.55, 1.6, 12.9, 5.4, 2.2, 1.7, 2.9, 2.2, 7.6, 1.3, 3.3, 6.3, 1.8, 5.3, 7.3, 2.4, 7.1, 13.7, 10.2, 3.0, 5.3, 2.4, 1.5, 4.1, 6.9, 8.0, 7.1, 2.1, 11.8, 3.3, 1.4, 9.1, 1.2, 5.5, 7.9, 11.1, 1.8, 1.9, 2.3, 13.9, 14.5, 1.2, 2.7, 1.6, 12.0, 14.1, 2.7, 12.85, 14.8, 1.6, 1.1, 2.1, 2.7, 2.1, 7.2, 1.2, 5.4, 4.6, 2.0, 2.6, 12.6, 7.4, 10.2, 8.6, 4.2, 2.5, 2.6, 8.8, 1.8, 1.3, 7.2, 1.1, 2.2, 1.8, 1.7, 6.2, 10.8, 7.75, 2.7, 6.6, 1.0, 7.1, 1.5, 3.0, 2.4, 13.3, 2.1, 2.8, 7.75, 15.8, 5.0, 20.8, 6.4, 2.4, 1.4, 4.1, 6.0, 13.2, 2.1, 1.5, 5.4, 1.8, 2.6, 16.8, 5.0, 4.4, 13.0, 1.1, 1.2, 11.6, 1.3, 3.5, 2.9, 5.7, 15.5, 4.8, 15.55, 5.1, 2.7, 3.8, 1.8, 14.2, 5.3, 1.9, 12.5, 2.6, 10.4, 1.2, 4.1, 14.2, 12.5, 8.3, 2.0, 3.8, 10.7, 8.2, 2.1, 1.9, 9.8, 6.5, 0.9, 2.7, 2.6, 13.0, 1.4, 13.4, 16.2, 10.2, 4.9, 2.0, 7.0, 12.7, 2.4, 6.2, 8.6, 2.6, 15.55, 1.4, 7.3, 16.0, 7.0, 16.8, 3.2, 1.2, 6.2, 1.2, 1.0, 4.6, 5.5, 1.1, 10.8, 2.2, 10.2, 11.75, 6.0, 7.4, 7.4, 1.9, 2.1, 1.6, 1.2, 2.4, 5.1, 7.4, 19.95, 3.8, 16.1, 5.4, 2.6, 18.95, 2.3, 2.0, 1.5, 2.1, 4.4, 1.8, 17.5, 2.3, 12.8, 13.3, 1.4, 14.7, 4.7, 1.4, 2.5, 1.1, 1.5, 10.3, 3.0, 6.8, 2.4, 7.1, 7.0, 1.2, 1.8, 2.65, 2.4, 2.1, 2.8, 7.4, 11.5, 1.6, 1.3, 2.6, 1.2, 1.7, 1.4, 1.9, 1.9, 4.3, 13.2, 1.9, 12.8, 12.8, 1.7, 8.6, 5.7, 3.2, 2.0, 1.6, 2.4, 2.0, 2.5, 14.7, 1.8, 1.4, 1.5, 17.55, 1.8, 13.55, 1.0, 12.0, 3.6, 3.85, 4.0, 1.2, 15.4, 6.5, 1.4, 9.1, 1.1, 3.0, 2.5, 6.6, 8.1, 2.4, 15.5, 1.7, 11.3, 5.7, 1.4, 1.4, 2.0, 6.3, 4.7, 2.5, 1.8, 7.4, 9.3, 10.55, 2.9, 1.7, 2.2, 1.5, 14.75, 2.4, 2.4, 3.5, 1.8, 1.5, 2.8, 1.2, 2.0, 1.3, 10.5, 12.8, 1.2, 1.9, 16.0, 7.7, 2.3, 2.9, 1.6, 2.1, 1.1, 1.6, 3.7, 8.0, 1.9, 8.8, 6.7, 7.3, 2.5, 3.7, 2.6, 1.3, 8.3, 1.3, 11.2, 5.2, 4.7, 9.2, 12.7, 2.5, 7.4, 13.2, 1.8, 2.1, 5.25, 3.65, 15.75, 1.9, 13.65, 4.9, 9.15, 1.9, 2.5, 0.9, 14.0, 2.6, 2.8, 1.8, 12.8, 17.5, 8.25, 1.9, 1.6, 1.5, 6.9, 2.4, 1.3, 1.2, 6.7, 14.8, 12.7, 13.7, 2.0, 1.3, 1.6, 9.25, 12.9, 1.0, 4.7, 1.7, 10.8, 1.1, 19.95, 1.1, 1.2, 9.7, 6.7, 1.6, 2.3, 5.3, 13.6, 11.4, 1.6, 1.4, 2.6, 2.4, 10.6, 4.6, 2.2, 1.7, 2.0, 1.5, 5.0, 2.0, 2.6, 4.6, 12.7, 5.7, 6.3, 6.7, 8.2, 7.1, 2.0, 0.8, 2.0, 1.9, 1.3, 1.7, 1.1, 1.1, 9.85, 1.2, 1.1, 2.1, 9.5, 1.7, 8.0, 13.65, 7.9, 4.4, 9.55, 1.1, 7.9, 1.8, 2.2, 1.1, 5.9, 2.4, 6.0, 2.0, 2.9, 1.4, 2.1, 5.2, 5.8, 1.8, 2.0, 2.3, 15.1, 2.3, 16.8, 13.8, 1.5, 12.2, 8.2, 4.3, 8.9], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Reference<br>residual.sugar=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [10.4, 5.1, 1.1, 2.0, 2.6, 3.9, 6.9, 1.9, 8.9, 14.8, 4.5, 1.4, 13.5, 1.4, 2.7, 5.6, 2.4, 1.5, 18.15, 1.7, 1.4, 8.6, 3.1, 5.0, 1.9, 2.3, 6.4, 2.5, 13.0, 1.3, 2.5, 1.2, 9.1, 5.4, 13.5, 2.0, 1.6, 11.8, 3.4, 8.1, 13.1, 3.0, 1.3, 1.2, 1.8, 17.8, 1.1, 1.4, 7.0, 2.1, 2.4, 16.0, 4.8, 2.2, 11.8, 13.0, 7.1, 1.7, 1.4, 3.0, 11.0, 12.0, 3.75, 12.1, 2.1, 1.1, 8.9, 2.2, 2.0, 1.0, 8.4, 6.4, 10.8, 0.9, 1.8, 1.5, 13.0, 1.8, 8.1, 4.3, 2.3, 9.1, 7.5, 1.9, 2.0, 2.3, 9.5, 1.4, 12.5, 3.5, 6.4, 9.2, 2.2, 10.8, 19.8, 8.1, 14.5, 3.2, 7.1, 15.3, 13.3, 2.3, 2.7, 18.35, 1.8, 1.7, 14.5, 1.0, 6.4, 9.2, 1.8, 1.1, 1.6, 4.6, 1.8, 11.5, 11.0, 1.4, 2.8, 1.9, 16.05, 2.1, 9.2, 11.95, 13.1, 12.1, 4.8, 2.3, 1.9, 7.8, 1.4, 3.4, 6.5, 8.0, 1.6, 6.1, 8.8, 16.2, 1.2, 2.1, 17.8, 10.0, 0.9, 15.0, 1.4, 1.1, 1.7, 16.05, 2.0, 2.6, 2.0, 2.3, 1.1, 2.9, 1.1, 2.2, 3.3, 12.1, 1.2, 1.1, 3.2, 2.2, 4.5, 3.3, 1.8, 6.4, 7.5, 16.2, 10.4, 8.1, 7.8, 1.0, 7.2, 13.9, 2.7, 2.8, 2.0, 2.2, 2.4, 3.5, 1.5, 1.8, 2.3, 1.4, 13.2, 7.9, 8.6, 3.85, 10.0, 8.3, 4.5, 1.0, 10.7, 0.8, 7.6, 1.9, 8.95, 1.35, 15.6, 1.9, 5.0, 13.8, 13.8, 2.3, 2.4, 7.3, 1.4, 2.3, 1.7, 0.8, 4.8, 1.4, 6.7, 10.0, 15.6, 12.8, 13.7, 1.0, 12.1, 9.85, 1.4, 0.9, 14.8, 2.2, 1.8, 8.3, 2.7, 15.2, 5.7, 2.5, 5.7, 1.3, 6.3, 18.8, 1.4, 6.55, 19.35, 10.4, 2.6, 11.9, 2.5, 6.9, 14.9, 4.5, 0.9, 1.8, 2.5, 1.9, 6.2, 1.3, 2.5, 6.5, 9.1, 2.1, 1.3, 15.3, 6.1, 1.1, 3.2, 2.3, 1.6, 4.8, 12.6, 1.0, 1.7, 11.2, 1.3, 1.3, 2.3, 7.8, 17.8, 13.0, 2.1, 12.3, 6.5, 12.1, 1.9, 11.8, 10.5, 1.4, 2.3, 1.8, 1.3, 1.6, 6.9, 7.7, 1.3, 12.9, 1.2, 8.6, 1.3, 2.2, 2.0, 1.1, 2.6, 2.0, 5.0, 12.9, 12.1, 3.0, 2.1, 1.6, 2.4, 7.6, 3.2, 0.6, 18.35, 1.4, 2.2, 10.7, 4.0, 7.6, 1.8, 8.3, 2.3, 1.2, 16.45, 2.7, 11.5, 2.4, 2.2, 11.6, 2.0, 1.8, 8.0, 11.2, 7.5, 7.0, 2.1, 8.3, 22.0, 2.4, 1.6, 15.4, 1.0, 2.4, 14.9, 2.5, 0.8, 9.7, 1.5, 1.6, 6.1, 2.2, 15.8, 2.0, 7.4, 9.4, 1.3, 16.7, 10.5, 1.7, 13.1, 2.3, 2.0], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Current<br>residual.sugar=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [2.5, 4.7, 7.0, 2.3, 19.45, 22.0, 13.15, 1.6, 1.7, 2.3, 4.3, 1.2, 6.4, 7.2, 14.3, 18.1, 7.6, 2.7, 4.9, 1.1, 1.4, 17.2, 4.9, 11.8, 1.6, 1.7, 2.1, 14.8, 0.7, 0.8, 11.95, 1.1, 2.5, 2.3, 1.0, 1.7, 2.3, 1.5, 4.9, 1.4, 4.1, 2.0, 11.2, 15.2, 1.4, 1.7, 3.4, 2.2, 19.3, 6.1, 7.0, 18.35, 6.9, 2.4, 2.6, 1.8, 2.0, 4.2, 10.5, 15.4, 4.2, 8.3, 7.7, 2.9, 10.7, 2.0, 1.4, 1.9, 3.0, 1.6, 2.1, 2.5, 1.3, 1.6, 7.7, 1.2, 18.75, 1.7, 1.0, 1.9, 9.3, 1.6, 12.6, 2.0, 1.7, 1.7, 4.8, 13.7, 1.2, 6.1, 7.1, 1.9, 2.0, 14.3, 1.9, 2.1, 11.7, 3.9, 9.7, 8.1, 2.5, 6.5, 18.1, 1.8, 1.5, 2.1, 1.9, 1.4, 5.1, 13.7, 1.6, 14.5, 1.9, 1.3, 1.2, 10.7, 12.3, 4.9, 8.3, 2.1, 14.95, 1.8, 1.7, 1.6, 2.0, 7.0, 1.2, 11.1, 2.0, 5.1, 1.4, 15.6, 14.3, 1.0, 2.0, 11.0, 1.8, 3.0, 10.4, 6.6, 6.7, 1.7, 1.2, 5.1, 2.3, 12.1, 2.0, 1.6, 1.9, 9.5, 0.8, 13.3, 5.5, 7.7, 1.5, 1.4, 12.1, 8.2, 10.0, 12.6, 2.0, 15.6, 1.4, 13.5, 4.4, 7.8, 1.1, 1.6, 5.6, 8.6, 16.05, 10.4, 1.9, 1.8, 1.9, 1.4, 1.0, 11.6, 10.3, 15.8, 1.5, 5.1, 2.7, 1.1, 15.1, 1.4, 8.1, 17.8, 1.3, 7.9, 2.3, 3.75, 7.8, 1.4, 10.8, 2.0, 1.2, 6.4, 14.5, 11.8, 1.8, 13.2, 14.9, 15.4, 1.25, 15.7, 6.9, 2.2, 12.9, 10.2, 7.3, 5.0, 2.1, 1.1, 6.8, 2.7, 11.1, 9.7, 1.4, 1.6, 11.2, 8.0, 9.2, 6.8, 1.6, 10.4, 2.0, 3.9, 1.2, 1.0, 17.9, 1.6, 17.1, 10.7, 1.9, 8.8, 1.0, 1.4, 14.3, 2.0, 7.7, 2.3, 2.0, 9.6, 0.9, 5.9, 1.5, 5.4, 13.7, 6.1, 1.6, 16.0, 10.7, 10.6, 2.5, 16.3, 9.6, 4.6, 8.9, 2.5, 2.4, 1.6, 11.9, 11.9, 2.6, 1.3, 6.0, 1.6, 1.9, 8.9, 1.5, 2.6, 17.85, 6.4, 2.0, 1.8, 15.6, 2.7, 2.4, 11.2, 2.6, 17.75, 1.15, 1.3, 3.8, 1.2, 0.9, 4.5, 1.35, 2.5, 7.7, 7.0, 8.5, 2.7, 5.2, 2.2, 0.9, 7.8, 15.8, 2.3, 1.8, 2.6, 7.0, 11.9, 12.1, 1.0, 3.1, 10.1, 15.4, 8.1, 1.6, 2.0, 1.3, 17.8, 2.0, 13.6, 1.7, 8.1, 1.3, 2.8, 2.55, 1.7, 17.8, 5.6, 3.45, 10.1, 17.9, 1.4, 8.0, 1.3, 2.5, 11.4, 1.2, 1.6, 2.2, 1.3, 0.8, 1.3, 17.1, 5.2, 8.1, 2.4, 2.0, 2.0, 2.1, 1.3, 8.2, 2.5, 17.1, 1.3, 2.7, 2.0], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Reference\", \"x\": 0.245, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Current\", \"x\": 0.755, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"barmode\": \"overlay\", \"legend\": {\"title\": {\"text\": \"target\"}, \"tracegroupgap\": 0}, \"margin\": {\"t\": 60}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.49], \"title\": {\"text\": \"residual.sugar\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.51, 1.0], \"matches\": \"x\", \"title\": {\"text\": \"residual.sugar\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"count\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}}}, \"residual.sugar_good\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (ref)\", \"type\": \"scatter\", \"x\": [1.3, 6.3, 2.6, 6.0, 1.2, 2.3, 2.2, 1.1, 2.7, 3.5, 0.9, 1.5, 5.7, 17.85, 4.55, 6.5, 1.0, 3.7, 1.7, 11.8, 8.2, 4.5, 1.5, 2.1, 7.2, 1.9, 1.2, 13.0, 4.6, 1.2, 1.2, 2.1, 1.9, 1.8, 2.0, 13.9, 10.7, 2.0, 4.3, 1.4, 1.1, 1.3, 1.8, 1.2, 11.0, 8.8, 2.5, 8.3, 2.4, 3.5, 16.4, 14.4, 1.4, 5.5, 1.1, 13.3, 2.5, 0.8, 1.2, 6.0, 2.2, 5.0, 2.7, 1.6, 2.6, 2.6, 2.4, 8.1, 7.4, 8.55, 1.5, 6.1, 5.9, 8.3, 5.7, 8.9, 3.6, 1.1, 2.1, 8.6, 2.3, 5.0, 1.1, 10.6, 7.7, 1.1, 1.2, 2.6, 4.2, 2.2, 1.5, 4.9, 1.8, 1.5, 6.2, 7.8, 13.7, 3.2, 1.3, 1.4, 1.1, 13.1, 2.2, 2.3, 1.2, 2.4, 7.7, 4.5, 1.2, 1.9, 1.2, 31.6, 1.2, 2.2, 3.9, 1.4, 2.0, 1.6, 16.5, 2.1, 12.8, 1.5, 10.5, 12.2, 2.2, 1.7, 2.1, 12.1, 1.5, 2.0, 4.0, 1.9, 14.75, 2.5, 4.5, 5.7, 2.6, 2.4, 2.8, 2.7, 0.9, 5.8, 8.6, 4.7, 2.2, 1.4, 6.4, 1.4, 1.7, 14.4, 14.7, 1.4, 1.6, 13.4, 14.9, 5.8, 1.0, 1.8, 8.8, 1.5, 11.4, 2.0, 1.4, 2.9, 6.6, 11.9, 9.9, 5.1, 11.2, 1.4, 2.0, 2.0, 1.6, 11.1, 3.0, 7.6, 1.7, 6.0, 4.8, 2.4, 6.1, 1.2, 1.7, 2.1, 7.0, 1.2, 1.7, 1.5, 3.6, 1.1, 1.8, 2.2, 8.3, 8.0, 2.3, 1.6, 1.3, 1.3, 2.0, 1.1, 2.0, 4.9, 6.5, 1.8, 2.3, 1.9, 5.1, 7.1, 13.9, 10.1, 0.9, 1.4, 3.6, 3.6, 4.2, 1.3, 5.35, 5.9, 6.5, 3.0, 1.1, 18.15, 1.6, 1.6, 2.1, 5.7, 14.4, 14.55, 1.3, 6.2, 4.8, 1.5, 2.9, 12.2, 4.5, 10.2, 1.8, 8.9, 2.8, 7.8, 8.1, 14.2, 1.1, 14.4, 1.8, 6.8, 1.3, 17.4, 6.5, 3.7, 14.6, 12.8, 2.1, 1.6, 1.9, 5.9, 3.6, 4.4, 1.8, 1.7, 12.2, 1.2, 2.6, 4.2, 1.4, 1.7, 4.6, 4.6, 2.0, 1.5, 1.7, 2.1, 7.4, 7.3, 2.2, 13.5, 10.2, 2.0, 2.2, 1.4, 7.0, 3.8, 1.6, 3.9, 1.6, 1.6, 18.4, 10.2, 2.5, 2.3, 1.5, 2.7, 2.1, 4.8, 10.8, 6.9, 1.8, 1.3, 1.2, 4.7, 2.4, 7.4, 5.7, 6.8, 1.5, 2.1, 9.25, 1.0, 18.95, 1.4, 1.8, 15.4, 2.4, 2.0, 1.2, 2.6, 1.5, 1.9, 2.1, 1.5, 1.7, 2.8, 6.3, 3.2, 1.6, 2.1, 10.7, 2.0, 8.2, 5.0, 8.3, 1.3, 3.6, 10.7, 1.9, 19.25, 4.7, 2.5, 15.55, 8.5, 12.4, 6.0, 1.3, 1.4, 2.0, 1.0, 12.2, 2.3, 1.5, 13.1, 10.4, 1.7, 10.2, 1.1, 13.0, 1.5, 2.2, 3.5, 4.0, 3.5, 14.1, 3.4, 1.9, 2.6, 2.2, 11.8, 1.2, 1.4, 2.2, 12.5, 5.4, 1.1, 1.4, 6.2, 4.4, 9.2, 1.8, 2.8, 1.6, 2.5, 11.0, 8.2, 2.9, 11.0, 7.3, 2.6, 15.4, 0.9, 6.9, 3.1, 4.25, 17.8, 4.8, 5.7, 8.6, 3.6, 1.9, 26.05, 4.5, 3.2, 1.9, 1.9, 2.5, 14.6, 7.25, 12.2, 4.7, 1.1, 1.6, 7.7, 1.6, 7.2, 1.2, 1.6, 1.3, 2.3, 6.3, 16.5, 3.3, 1.4, 6.2, 6.3, 7.7, 14.7, 9.8, 1.2, 1.0, 1.4, 5.3, 4.6, 8.65, 2.0, 4.9, 1.2, 1.0, 2.8, 4.2, 3.7, 4.1, 2.7, 2.9, 1.2, 1.2, 9.1, 6.3, 6.9, 13.6, 1.4, 2.1, 1.4, 5.0, 1.5, 1.55, 1.5, 10.4, 4.2, 6.7, 2.3, 9.9, 11.0, 3.2, 1.9, 3.3, 19.1, 1.2, 2.2, 4.9, 1.1, 9.3, 2.6, 1.9, 11.2, 8.0, 13.4, 5.1, 1.95, 4.7, 8.9, 4.8, 1.4, 2.2, 18.0, 17.3, 7.2, 4.1, 8.9, 1.7, 14.9, 1.1, 1.5, 14.6, 2.3, 1.1, 14.2, 1.2, 1.5, 9.6, 5.7, 2.7, 1.4, 12.7, 9.1, 10.5, 14.3, 6.5, 8.1, 1.1, 4.7, 1.0, 4.4, 1.6, 3.6, 7.4, 12.8, 0.8, 1.5, 2.2, 12.2, 1.6, 3.8, 2.8, 1.4, 8.2, 1.0, 1.9, 0.9, 12.15, 2.0, 4.3, 3.5, 5.6, 2.4, 4.2, 15.55, 2.3, 4.0, 8.7, 13.6, 5.4, 1.5, 6.4, 3.1, 15.15, 5.2, 4.8, 1.4, 2.4, 5.9, 2.7, 6.8, 1.1, 11.2, 3.3, 7.5, 2.8, 2.1, 1.1, 1.6, 9.5, 1.9, 1.4, 9.7, 1.3, 14.0, 1.8, 1.6, 3.5, 7.3, 1.1, 7.6, 1.1, 1.9, 1.6, 4.8, 1.5, 1.5, 17.55, 2.2, 15.6, 1.6, 1.6, 4.8, 7.4, 2.1, 12.8, 2.4, 2.7, 7.0, 1.1, 1.8, 1.9, 1.7, 7.9, 3.1, 18.6, 3.0, 6.9, 1.8, 7.4, 8.8, 1.2, 1.8, 14.9, 1.7, 2.8, 15.9, 4.2, 15.5, 1.7, 13.9, 9.65, 3.3, 7.5, 2.1, 2.5, 2.3, 3.3, 3.8, 2.0, 2.2, 10.9, 1.2, 1.6, 2.2, 10.4, 1.9, 12.7, 2.5, 8.1, 1.3, 9.6, 9.2, 14.5, 13.55, 10.5, 1.3, 1.6, 8.1, 1.0, 1.8, 1.1, 2.7, 3.5, 5.1, 1.3], \"xaxis\": \"x\", \"y\": [0.8156061324462894, 0.42491310922683634, 0.8867827646463432, 0.8014995238430205, 0.30499958310650876, 0.5817355832705369, 0.959171062334887, 0.7854416128369749, 0.9085690698200813, 0.8998600376511439, 0.6341165000693628, 0.412102187638673, 0.7643629411050379, 0.4710001938005606, 0.40182653035141874, 0.40438056362905367, 0.8870480016118494, 0.3650667978415713, 0.9064321709292111, 0.9327245345966092, 0.6458420185168736, 0.8821841129047617, 0.6704018506542557, 0.7655671181822064, 0.8616986618932058, 0.48774537944210006, 0.9637355036179479, 0.6794204065079696, 0.6044835155949141, 0.7867954023600708, 0.9137982268836646, 0.5867502063434873, 0.8048584290077971, 0.9718511071053526, 0.9627192884041744, 0.7978623718349598, 0.6091120966723917, 0.8943338178728011, 0.8853376735027229, 0.9045563504021151, 0.9264844632598176, 0.6342457655367447, 0.9414033426130164, 0.5636516403732365, 0.5172967922101196, 0.4836896337264441, 0.35199620689495453, 0.788779954566273, 0.9696552399248426, 0.772496554239754, 0.8132656157621138, 0.4539090261140653, 0.9333708926412786, 0.679765045723866, 0.48457442622955804, 0.4248820606938153, 0.6737819616086004, 0.8780741425819777, 0.38340602447337646, 0.90634085684919, 0.5574014604752268, 0.6804147683859246, 0.9077110088845216, 0.7718472635729894, 0.4717552048891654, 0.22222808308441652, 0.8616549355667619, 0.705749071892896, 0.4699129352300819, 0.9680524782819758, 0.8891353183282249, 0.9466602521798594, 0.8553382520847058, 0.7430243903066251, 0.6616131862201935, 0.6919609500216202, 0.96565744679506, 0.913108907487878, 0.5395521774612226, 0.9026238558501023, 0.6550941529376255, 0.9757876320152292, 0.8833495792027257, 0.6666029765862381, 0.8504582120840628, 0.9320215595878566, 0.7639947574915884, 0.6085229656221847, 0.9557131606798471, 0.46184432615952054, 0.5642658412077981, 0.8815615400732472, 0.7189203536918151, 0.9301020530176726, 0.7341394174346678, 0.7759189559372703, 0.8448078654733812, 0.9012666081120407, 0.8926028620066223, 0.5287492720273277, 0.6874206920638863, 0.37408584674942635, 0.8348370105186077, 0.8697567261320243, 0.9175759024810304, 0.44644098895981, 0.8874384748400057, 0.7787567487441118, 0.9416122482572158, 0.3265229243180111, 0.9308095750950773, 0.42267134533232753, 0.43068181214270274, 0.8727308285810839, 0.7201611177732586, 0.8430904589044517, 0.8140617541555761, 0.9456747441572588, 0.6672663325862807, 0.8756470416862959, 0.518871521713375, 0.7040615347784164, 0.4957960231649875, 0.6250130361556073, 0.27413726132188326, 0.5193133578087885, 0.37656641690434584, 0.5808048103476511, 0.7917827117482167, 0.36569143480873245, 0.7232542293832885, 0.9785934574433302, 0.5715075300165849, 0.8182555969893297, 0.5448461144048058, 0.9491291995847589, 0.4833587957991669, 0.3189279754564957, 0.9184825510014271, 0.5524830505676419, 0.9600429304649183, 0.7818180966165994, 0.7962710274484252, 0.7569429870375118, 0.46184432615952054, 0.7641514270390748, 0.9486763575522457, 0.8086368705092697, 0.6784536879503494, 0.6877019790624462, 0.6082670858563528, 0.6053794617794684, 0.6319330693089359, 0.4982105707488519, 0.6787928880949093, 0.9231980717613485, 0.8831230955067948, 0.6845485656817341, 0.8799204262605215, 0.9164563829924386, 0.7819268199067826, 0.23469888428232324, 0.9492377841603665, 0.8826092272015389, 0.6360541596480074, 0.5184081252698399, 0.6400126753125241, 0.542646305979658, 0.4479501208302092, 0.7783171875827786, 0.7867712153112567, 0.5236605417423803, 0.6959846197179591, 0.7925023358445066, 0.6683189355892497, 0.18737025221649042, 0.42506327048176057, 0.7272596040941706, 0.7314191754306454, 0.4827891324637794, 0.6649341228620356, 0.9038332731164471, 0.9588917860646077, 0.8945194928389463, 0.49833043835950624, 0.7997712594855277, 0.8577935987172323, 0.7622736922026153, 0.8039391974899521, 0.7396811504731934, 0.8115340233127679, 0.801728888664367, 0.738451208106372, 0.5859674792922007, 0.1865203674848816, 0.8773430435604171, 0.36888329310067386, 0.8651817982269884, 0.9067615420962557, 0.8594983988587351, 0.7437750884018276, 0.9145224932934428, 0.9135679891815164, 0.8001832456898428, 0.6860977766129374, 0.9377826008632761, 0.9300369611912853, 0.6997062971069969, 0.5693182102579236, 0.3404656140239559, 0.7160591142088384, 0.7953146078011, 0.8869803873277935, 0.7639982823097876, 0.8681285227071118, 0.576868797021353, 0.93035102563313, 0.8375600281828176, 0.8279918435672958, 0.9266689436294401, 0.7559862346636359, 0.5099889666930224, 0.6914445842613687, 0.9651950326885705, 0.87851968214492, 0.8499702807396289, 0.4685752957996948, 0.7241546992314323, 0.7848147251007912, 0.7341394174346678, 0.7008877443692281, 0.340588975625529, 0.5013021766499856, 0.8321174529331695, 0.8818378666553491, 0.9176909075187759, 0.8634678749265305, 0.7436082905772717, 0.9343776659412377, 0.7668809937296346, 0.6243383802582345, 0.5332560471205093, 0.6907315465649003, 0.16626803588025432, 0.1668542888532837, 0.7408943843163458, 0.5221312328975666, 0.7457559475413279, 0.46389636934606376, 0.9292627865919654, 0.5268311186840582, 0.4244151934213653, 0.643310536612302, 0.8577438313980266, 0.7816208399762355, 0.8553382520847058, 0.7010035672814305, 0.5242572272016158, 0.9187320011579697, 0.8703498177621264, 0.6713045345576062, 0.9137982268836646, 0.8614414457916845, 0.9445662266054761, 0.8808216590199034, 0.7386378115490353, 0.8873009977622293, 0.9157094897337859, 0.6606038558129893, 0.9296803968514485, 0.8864322240790464, 0.5146720135715994, 0.8720710714485208, 0.9415427660945741, 0.9138701141498735, 0.6527559092576063, 0.8751970040938668, 0.9249766460056568, 0.801728888664367, 0.6575848465963361, 0.6934824043184128, 0.8619113960143526, 0.9419078024651042, 0.9591721389341828, 0.8397407150753159, 0.9084383840076588, 0.4963969309336195, 0.7359588175524252, 0.3531961907069324, 0.9279819479140234, 0.7752976919572294, 0.8665226278427577, 0.9515211055933231, 0.7314191754306454, 0.890886918514299, 0.3235491032739525, 0.3719939405423586, 0.6323804178173072, 0.8398006965792015, 0.8239469134189235, 0.8592101816891015, 0.7615002907198236, 0.8688259750909261, 0.8718104001390852, 0.5838074755684882, 0.8756470416862959, 0.901850575196968, 0.9451930143658351, 0.6253812669856891, 0.5890764576710766, 0.4921052500998711, 0.4862070578416567, 0.9170647663398394, 0.7035583451969506, 0.8476385889092957, 0.5603058978573646, 0.5810606890504925, 0.9088604673919816, 0.8903252600075929, 0.944267921154058, 0.9435968591480925, 0.938237366988842, 0.9357286047893738, 0.7961386682142712, 0.7840233885688647, 0.2513590507613302, 0.7389284097502917, 0.9053472250810051, 0.44438282424164377, 0.862281110352348, 0.8021059248496223, 0.9152740930046814, 0.643737358401971, 0.8540304955499701, 0.8613418170006786, 0.6911084183178322, 0.8848367871057808, 0.8387883096682573, 0.5942651630821018, 0.65691393717736, 0.6369979527510315, 0.8280658524313272, 0.9640736168216585, 0.6546311715671466, 0.5599819536107853, 0.48348053317652906, 0.7668016587569692, 0.03620763244300767, 0.7364400865449663, 0.37408584674942635, 0.8767503774172, 0.8743962287172513, 0.8751970040938668, 0.8833495792027257, 0.7091886355621774, 0.87006937054451, 0.7904001815220257, 0.8761418339280951, 0.8306834851111597, 0.7531715889012326, 0.38181207472529843, 0.6490458991820136, 0.9138057013338913, 0.9046222904886461, 0.17956061692355052, 0.7506163079023257, 0.8963285795381793, 0.8848361664653354, 0.9283037217377402, 0.45996158699034445, 0.7290858434196763, 0.8319094967702583, 0.6578018675312727, 0.18727567457681707, 0.8673410249845035, 0.9453298670648187, 0.9446538464906173, 0.19605573045952288, 0.6723831041639817, 0.3438281302059518, 0.37858973820495484, 0.6953170483296187, 0.21463507152544156, 0.26963792069965237, 0.3280912492037974, 0.8399932187801539, 0.420387898633768, 0.36522500752858966, 0.5810560693343539, 0.9306346767722963, 0.7167716539092029, 0.656736106921484, 0.5549139996760648, 0.6909161521388689, 0.591904263202073, 0.884703171197362, 0.866402281883595, 0.7582770814524421, 0.8990773411030794, 0.1818065866116437, 0.6222165686186035, 0.17261914235374884, 0.8156064679757086, 0.4851213943917703, 0.8871292211128762, 0.8398494053952754, 0.703270618172154, 0.6305543892506115, 0.7494149477175548, 0.1532408287022325, 0.6159732902773407, 0.738220551127759, 0.8354520044441791, 0.8536870432671441, 0.5751476712690671, 0.9077719201719568, 0.7878515691455199, 0.6672663325862807, 0.45293736875445273, 0.17058553029544155, 0.747933377844996, 0.8400163125056676, 0.4516778718827729, 0.6082670858563528, 0.8401843469141149, 0.7636885291754726, 0.789170795337903, 0.8128612802083497, 0.7522530659814418, 0.8086757686066508, 0.8356255123032285, 0.9241779635105248, 0.9674588597049086, 0.9368885694202199, 0.4990764491242286, 0.876561204324957, 0.554264192243629, 0.5967716244634195, 0.9060244606340249, 0.8401608718856799, 0.7329750583133859, 0.8021769878309102, 0.9316817655017511, 0.45488322534173153, 0.798578398438993, 0.7425236774748816, 0.5742682328784404, 0.4937681935814938, 0.8972164286692267, 0.8914273370768748, 0.9377613518261881, 0.8862258850530264, 0.8591757581361523, 0.7410678096850266, 0.6822336012657398, 0.9201658505843877, 0.6982578893131915, 0.5746709232170782, 0.7626532952948841, 0.7137703530889916, 0.7520971196461234, 0.4473853625959922, 0.7957460056304991, 0.4833174871501707, 0.8758467705785958, 0.4689303842787964, 0.6133612564737879, 0.8568681391705205, 0.6835133967314007, 0.9732070839986944, 0.21435716257549006, 0.5761668962420043, 0.4055433603128916, 0.3743394998756179, 0.9118635774953143, 0.964551884718591, 0.9306459334511011, 0.8424802355113449, 0.7739144871152517, 0.6872688771534424, 0.8590561833388345, 0.6714384475466295, 0.6408669500407106, 0.5203550269219845, 0.2856853969697174, 0.857760555506807, 0.9307094503226838, 0.6787928880949093, 0.8308635255795866, 0.29271374211533296, 0.6769315553524353, 0.23831547366416572, 0.5895099457120908, 0.8994675076574448, 0.8893400405584444, 0.8456825404777587, 0.5399612081435882, 0.6188649121485582, 0.9281492942813848, 0.7611740601422801, 0.46550237374781617, 0.8896861436466836, 0.9038901015569306, 0.5044440900554997, 0.9215480939667524, 0.6930273792518707, 0.8723244804196287, 0.5624338775604165, 0.9226297661236537, 0.8469231754225917, 0.9430557295321259, 0.9097116306258912, 0.5988707702267543, 0.3813853072548755, 0.8843832309478876, 0.9006952500629406, 0.918975987201669, 0.18997930334445084, 0.8923106748541326, 0.8461388699436441, 0.5973439234355874, 0.9544642924744549, 0.91770416680597, 0.9177239854204658, 0.17584552180125673, 0.9240099144459667, 0.48524948024905407, 0.8889685222180134, 0.5785503824403398, 0.7511953459672914, 0.6887596776945688, 0.6717539058356753, 0.7168761391602206, 0.7134478068952186, 0.834626350903405, 0.5715867980362679, 0.6588392688727011, 0.9488572786900573, 0.8920529250761863, 0.8891353183282249, 0.707981940789761, 0.926348680038428, 0.631489487929038, 0.7443856388661001, 0.9260754381930228, 0.9544642924744549, 0.8497401318990601, 0.5604010177433062, 0.8036334301115304, 0.7898153537185114, 0.8491431337122072, 0.6570881560807702, 0.8389599143569951, 0.7944137576415592, 0.8132668978866627, 0.44714680104169846, 0.7978021044641371, 0.41921696608658454, 0.38876183891604754, 0.9248463736054193, 0.4277915265084825, 0.6345107008491314, 0.8008942533173764, 0.5087430598332189, 0.9414938992689892, 0.6922115882765215, 0.8296175750175913, 0.8593339228153332, 0.8975141534758351, 0.5977126281557783, 0.9279478536756302, 0.6485770817571253, 0.8905823996589662, 0.9332072841984264, 0.9432461110830079, 0.9410120781436498, 0.6339696776630096, 0.7120962557761497, 0.5841709037351369, 0.5928970840420333, 0.9006589732900512, 0.936371533648048, 0.6907852379101131, 0.7675780198071424, 0.9444587893431046, 0.4702336163336472, 0.8925536722101626, 0.8158978708906081, 0.822780392485108, 0.8037335327290217, 0.8382351003285965, 0.8941557358589171, 0.4796498334522667, 0.926348680038428, 0.6842118015950474, 0.6463580983468415, 0.8292048071278182, 0.5834426687867836, 0.8419845362148763, 0.2431563391580561, 0.7763142135369961, 0.9390550746437164, 0.7774903237071782, 0.8141232663130791, 0.9444089886680379, 0.430401459478284, 0.9192677156927759, 0.8427595869840984, 0.87120858451521, 0.5693182102579236, 0.820012080301976, 0.58719119911586, 0.42769376643096113, 0.3542595869275313, 0.89579938191327, 0.8743523014696554, 0.7820497043505815, 0.5279069501129625, 0.8869579700149332, 0.45488774279476296, 0.8514781135508903, 0.8278297091497892, 0.663749097381813, 0.5132851713944618, 0.4906566565015208, 0.6415219885510332, 0.6991293681294938, 0.8150539074042624, 0.5800669536763935, 0.9583771200922359, 0.7366090055976814, 0.5747817696023392, 0.5315376696882942, 0.8074446941396305, 0.9038901015569306, 0.9087015650331977, 0.6697291810323083, 0.5800669536763935, 0.8807270543114014, 0.5135845984304893, 0.9352791850238339, 0.36120709973337456, 0.6206709330576408, 0.906286252315459, 0.7937202818717513], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [10.4, 5.1, 1.1, 2.0, 2.6, 3.9, 6.9, 1.9, 8.9, 14.8, 4.5, 1.4, 13.5, 1.4, 2.7, 5.6, 2.4, 1.5, 18.15, 1.7, 1.4, 8.6, 3.1, 5.0, 1.9, 2.3, 6.4, 2.5, 13.0, 1.3, 2.5, 1.2, 9.1, 5.4, 13.5, 2.0, 1.6, 11.8, 3.4, 8.1, 13.1, 3.0, 1.3, 1.2, 1.8, 17.8, 1.1, 1.4, 7.0, 2.1, 2.4, 16.0, 4.8, 2.2, 11.8, 13.0, 7.1, 1.7, 1.4, 3.0, 11.0, 12.0, 3.75, 12.1, 2.1, 1.1, 8.9, 2.2, 2.0, 1.0, 8.4, 6.4, 10.8, 0.9, 1.8, 1.5, 13.0, 1.8, 8.1, 4.3, 2.3, 9.1, 7.5, 1.9, 2.0, 2.3, 9.5, 1.4, 12.5, 3.5, 6.4, 9.2, 2.2, 10.8, 19.8, 8.1, 14.5, 3.2, 7.1, 15.3, 13.3, 2.3, 2.7, 18.35, 1.8, 1.7, 14.5, 1.0, 6.4, 9.2, 1.8, 1.1, 1.6, 4.6, 1.8, 11.5, 11.0, 1.4, 2.8, 1.9, 16.05, 2.1, 9.2, 11.95, 13.1, 12.1, 4.8, 2.3, 1.9, 7.8, 1.4, 3.4, 6.5, 8.0, 1.6, 6.1, 8.8, 16.2, 1.2, 2.1, 17.8, 10.0, 0.9, 15.0, 1.4, 1.1, 1.7, 16.05, 2.0, 2.6, 2.0, 2.3, 1.1, 2.9, 1.1, 2.2, 3.3, 12.1, 1.2, 1.1, 3.2, 2.2, 4.5, 3.3, 1.8, 6.4, 7.5, 16.2, 10.4, 8.1, 7.8, 1.0, 7.2, 13.9, 2.7, 2.8, 2.0, 2.2, 2.4, 3.5, 1.5, 1.8, 2.3, 1.4, 13.2, 7.9, 8.6, 3.85, 10.0, 8.3, 4.5, 1.0, 10.7, 0.8, 7.6, 1.9, 8.95, 1.35, 15.6, 1.9, 5.0, 13.8, 13.8, 2.3, 2.4, 7.3, 1.4, 2.3, 1.7, 0.8, 4.8, 1.4, 6.7, 10.0, 15.6, 12.8, 13.7, 1.0, 12.1, 9.85, 1.4, 0.9, 14.8, 2.2, 1.8, 8.3, 2.7, 15.2, 5.7, 2.5, 5.7, 1.3, 6.3, 18.8, 1.4, 6.55, 19.35, 10.4, 2.6, 11.9, 2.5, 6.9, 14.9, 4.5, 0.9, 1.8, 2.5, 1.9, 6.2, 1.3, 2.5, 6.5, 9.1, 2.1, 1.3, 15.3, 6.1, 1.1, 3.2, 2.3, 1.6, 4.8, 12.6, 1.0, 1.7, 11.2, 1.3, 1.3, 2.3, 7.8, 17.8, 13.0, 2.1, 12.3, 6.5, 12.1, 1.9, 11.8, 10.5, 1.4, 2.3, 1.8, 1.3, 1.6, 6.9, 7.7, 1.3, 12.9, 1.2, 8.6, 1.3, 2.2, 2.0, 1.1, 2.6, 2.0, 5.0, 12.9, 12.1, 3.0, 2.1, 1.6, 2.4, 7.6, 3.2, 0.6, 18.35, 1.4, 2.2, 10.7, 4.0, 7.6, 1.8, 8.3, 2.3, 1.2, 16.45, 2.7, 11.5, 2.4, 2.2, 11.6, 2.0, 1.8, 8.0, 11.2, 7.5, 7.0, 2.1, 8.3, 22.0, 2.4, 1.6, 15.4, 1.0, 2.4, 14.9, 2.5, 0.8, 9.7, 1.5, 1.6, 6.1, 2.2, 15.8, 2.0, 7.4, 9.4, 1.3, 16.7, 10.5, 1.7, 13.1, 2.3, 2.0], \"xaxis\": \"x\", \"y\": [0.2802292104526322, 0.9455194119275858, 0.4978743212349556, 0.5289145624519528, 0.28439238707197784, 0.2033309570226689, 0.27345747478543325, 0.8322873304845451, 0.389055896812549, 0.3675472469853882, 0.5781933746273124, 0.7401955299744071, 0.44969671697605845, 0.4367887814338696, 0.31593955341667695, 0.3775624358859999, 0.19282181046294666, 0.048451763306065584, 0.6005928650583868, 0.032225376113695775, 0.427412413738938, 0.23973251442015217, 0.13890126550157303, 0.8613925272127, 0.329663916828638, 0.19359965390713213, 0.6827271716759634, 0.1960905505555538, 0.08135735686643118, 0.39737240301928484, 0.13902987396822816, 0.6514166433739288, 0.6994753721471061, 0.7140886736258081, 0.5021795028970708, 0.48743245558712556, 0.5731139673640956, 0.8820820642542792, 0.559972149724866, 0.5061565591493914, 0.5066810377847554, 0.833805652807593, 0.6979972163580744, 0.3177574231538272, 0.13068190592986567, 0.758876109553896, 0.5681062961269688, 0.715544821914063, 0.762062625203523, 0.4464438677531786, 0.20995974230910305, 0.5262622410710028, 0.39442669669188163, 0.2537324982988368, 0.6775437642744659, 0.23876321589577687, 0.6369158982934647, 0.38960060362966165, 0.6034323722874255, 0.7769991715799629, 0.15199748354041337, 0.5641412449951732, 0.7590466800561823, 0.5969347905931296, 0.1048362779837843, 0.7217824369593382, 0.2662339163773806, 0.16472378978351135, 0.37760124376932414, 0.7071736299639594, 0.3436862995931572, 0.8384434752264291, 0.3635333644877426, 0.7813188949129265, 0.7279369976219869, 0.5641098847382463, 0.3863964747623771, 0.9209913370067284, 0.1477144681640183, 0.8809374658555192, 0.6533168894759348, 0.8873477284758582, 0.3697306267878623, 0.28319023347825867, 0.5203701741750857, 0.5523747693308857, 0.6387521731780509, 0.3881380695009739, 0.8487896327149285, 0.4636606453307818, 0.8384434752264291, 0.558266603669778, 0.21657231888677728, 0.3635333644877426, 0.5512671313974766, 0.5051039398599867, 0.5827915753039158, 0.49441682850108926, 0.47309171914705017, 0.6262595591688196, 0.5508242483721094, 0.47332791509789995, 0.7117569366896692, 0.3933786516273859, 0.16465066549244003, 0.7490394132223248, 0.769261050002088, 0.7431932405995126, 0.3141000916210982, 0.723735045552473, 0.6484132891031948, 0.688519894019609, 0.40496704226994307, 0.5803736122960511, 0.6327801522745691, 0.45115706990411364, 0.37268733756108086, 0.9009693101135351, 0.06496389958099598, 0.44431713201158524, 0.39960831974332744, 0.8662156944598043, 0.31018081106061823, 0.5339551117365043, 0.33311273919547707, 0.400132762133902, 0.8528754522806217, 0.14419347879543085, 0.11672350429510901, 0.44556702529145975, 0.6160120899414699, 0.13766892845409207, 0.5517204028384314, 0.5232178919035022, 0.35483403305733974, 0.4900213704561591, 0.8854578072659228, 0.43084122675663034, 0.7601186327653665, 0.14072030431570776, 0.6186690618327106, 0.5245054232921349, 0.7326259458716644, 0.5690781983520095, 0.4018508815425063, 0.24877469563805235, 0.7952501197393639, 0.8766221356386195, 0.303451532996695, 0.5357745481647883, 0.7096524147827454, 0.20877177283968149, 0.8635610141758273, 0.46736762313881036, 0.6061151992073851, 0.113015272873705, 0.40446014603085867, 0.6332606063976143, 0.648705381890928, 0.42186952587750404, 0.8047913565308571, 0.3017058309841093, 0.38406990132164637, 0.33494193042999065, 0.19929939967121216, 0.8624919783238055, 0.528785836409086, 0.43084122675663034, 0.47042159929499583, 0.5061565591493914, 0.5759491569657543, 0.8468794444363914, 0.20342296359496542, 0.5170831534483544, 0.3666753044655067, 0.6131723001375537, 0.4410646109528086, 0.6903416342484309, 0.3866428492574258, 0.4636606453307818, 0.4525459302795702, 0.03199256040434073, 0.7029629492254846, 0.2433141614541866, 0.548755973819273, 0.3775060302547258, 0.06593060991448157, 0.8745624549148976, 0.22931948662359403, 0.27267688907931714, 0.589328430619086, 0.8007160756317941, 0.5525637789187225, 0.5008522318356121, 0.4556212410144909, 0.17391722008742402, 0.43574637053357784, 0.3237440077649342, 0.6071692164257629, 0.6925152430641841, 0.592675381607996, 0.43854150134957587, 0.43854150134957587, 0.42437112972565305, 0.8061118855433299, 0.35195592295594336, 0.7605370065149419, 0.38898578429124253, 0.67510953655807, 0.872979709380305, 0.710510994258769, 0.720290290780972, 0.4820787970895852, 0.42019280799979697, 0.4304380754474639, 0.25285023254778977, 0.3238056884730761, 0.39471961640683584, 0.09510031985475974, 0.367046376808582, 0.21500793651835448, 0.8705359023101334, 0.6100742529031461, 0.6226449432624995, 0.7279369976219869, 0.3643494054700089, 0.09992017521484964, 0.41475515148757036, 0.6462260464983366, 0.14102909592513518, 0.48949585696458414, 0.5239520436918008, 0.6084413884537807, 0.5655473856702703, 0.9517420512476797, 0.7489379515982664, 0.4647937384849751, 0.7915321263825208, 0.44112279258530757, 0.5734340256727429, 0.6604471727860799, 0.4845203185458914, 0.6968730453869196, 0.5315374962198609, 0.8685951485887234, 0.6242442748350044, 0.2912097196987059, 0.7725938221565348, 0.2067629769731588, 0.30221725334927335, 0.13129342562285412, 0.6467789443522378, 0.6994753721471061, 0.11825382206919556, 0.41022417118631593, 0.4882665226122541, 0.7732287086973071, 0.25374762405010176, 0.49441682850108926, 0.3723877205427743, 0.652330313245635, 0.43667799883041203, 0.5964718913578133, 0.55172276504346, 0.24113559934961917, 0.8243980268882987, 0.7263843594269437, 0.43535214809021755, 0.8721122798612579, 0.18723914490145582, 0.6486906676970999, 0.11576704656818047, 0.4328241622975616, 0.491481212420291, 0.5264345378086769, 0.33856526784971647, 0.2967410926251248, 0.581398831228375, 0.5973776665460488, 0.6195406102170065, 0.37782717658841725, 0.323061133240968, 0.17420808473594895, 0.19634770547538957, 0.46492234760650425, 0.49613167963272686, 0.5812209036149294, 0.6057291775435286, 0.63414717387345, 0.5702687187355167, 0.8604975146328253, 0.6309022132706124, 0.48732991249542923, 0.6887148870948692, 0.41581945293096145, 0.5706760596351739, 0.4831274653996314, 0.06684727567316755, 0.49090643211649887, 0.15191610726090596, 0.2711405311223577, 0.7653618545702112, 0.09266565137124261, 0.4554350627407873, 0.19698919164573708, 0.6930185080649685, 0.5227537922811563, 0.50434568709929, 0.7082092780767422, 0.46058046365566996, 0.6735723234187477, 0.4285936050615775, 0.323061133240968, 0.5168500865319015, 0.6161307914674419, 0.23456444218973552, 0.3192004782541023, 0.21968945907811915, 0.5028183230931117, 0.43371621376298963, 0.6744209213341115, 0.5940260419772637, 0.13783310426722128, 0.5136444387530009, 0.5508647999875032, 0.4955911012838212, 0.9814394195009358, 0.8260225289794664, 0.17965956338109995, 0.46844896472597397, 0.6048119589659149, 0.3289160319090978, 0.2454606394453749, 0.7497022835596558, 0.683485355417811, 0.20995974230910305, 0.23504578258460665, 0.37175956099497537, 0.4875530438829156, 0.24982584224249993, 0.6282829625348888, 0.4520795162158371, 0.8200372413039435, 0.12832513643528837, 0.5299630655130737, 0.29552777318700446, 0.24021937552346023, 0.5429028773737552, 0.6311869746243346, 0.4145977043912777, 0.39329840463575844, 0.39070335653410526, 0.4286990948130573, 0.846836560604146, 0.6880850122626078], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (curr)\", \"type\": \"scatter\", \"x\": [3.5, 14.3, 1.2, 2.2, 2.3, 1.2, 1.2, 8.0, 2.1, 1.6, 2.7, 1.3, 1.2, 9.65, 4.3, 1.2, 1.4, 2.8, 2.1, 3.2, 14.2, 14.5, 0.9, 1.1, 7.2, 1.2, 9.1, 3.95, 3.6, 4.7, 1.8, 6.2, 15.0, 6.4, 1.5, 1.2, 2.6, 7.9, 3.95, 1.9, 7.5, 2.5, 14.0, 13.0, 2.0, 2.3, 16.85, 1.9, 10.3, 1.7, 2.0, 3.9, 9.3, 1.0, 7.0, 14.1, 8.2, 1.8, 11.4, 1.7, 2.3, 20.3, 5.5, 9.7, 7.1, 2.1, 8.1, 6.7, 1.8, 1.3, 14.4, 2.4, 11.0, 7.4, 13.2, 12.3, 19.95, 1.7, 1.7, 1.9, 1.5, 1.0, 2.4, 2.1, 9.7, 3.1, 1.5, 14.5, 6.6, 1.6, 12.7, 7.4, 3.6, 1.4, 1.6, 6.5, 1.4, 4.6, 1.8, 2.1, 7.1, 9.9, 2.0, 2.1, 14.4, 10.9, 2.0, 9.0, 2.5, 2.8, 13.0, 31.6, 8.2, 1.7, 5.0, 2.2, 2.7, 1.4, 12.2, 3.2, 11.8, 1.5, 2.8, 1.4, 2.1, 2.1, 1.9, 4.7, 2.6, 1.8, 5.1, 1.8, 1.7, 17.5, 1.4, 17.1, 1.6, 2.5, 5.2, 1.6, 4.4, 3.2, 2.8, 8.5, 13.1, 1.2, 13.8, 5.6, 6.2, 1.1, 10.3, 1.0, 11.7, 16.2, 1.6, 2.8, 1.5, 2.0, 1.3, 14.2, 1.6, 2.0, 6.1, 8.2, 2.5, 1.2, 4.6, 2.2, 2.4, 1.1, 1.4, 1.1, 15.2, 4.7, 7.5, 4.2, 1.6, 7.8, 3.5, 2.4, 5.2, 10.8, 1.3, 3.4, 9.0, 1.8, 2.1, 4.8, 20.7, 2.2, 7.4, 17.3, 2.2, 2.3, 4.7, 4.9, 3.7, 1.6, 13.8, 8.2, 5.7, 1.7, 4.4, 5.9, 8.7, 2.1, 4.3, 6.55, 1.6, 12.9, 5.4, 2.2, 1.7, 2.9, 2.2, 7.6, 1.3, 3.3, 6.3, 1.8, 5.3, 7.3, 2.4, 7.1, 13.7, 10.2, 3.0, 5.3, 2.4, 1.5, 4.1, 6.9, 8.0, 7.1, 2.1, 11.8, 3.3, 1.4, 9.1, 1.2, 5.5, 7.9, 11.1, 1.8, 1.9, 2.3, 13.9, 14.5, 1.2, 2.7, 1.6, 12.0, 14.1, 2.7, 12.85, 14.8, 1.6, 1.1, 2.1, 2.7, 2.1, 7.2, 1.2, 5.4, 4.6, 2.0, 2.6, 12.6, 7.4, 10.2, 8.6, 4.2, 2.5, 2.6, 8.8, 1.8, 1.3, 7.2, 1.1, 2.2, 1.8, 1.7, 6.2, 10.8, 7.75, 2.7, 6.6, 1.0, 7.1, 1.5, 3.0, 2.4, 13.3, 2.1, 2.8, 7.75, 15.8, 5.0, 20.8, 6.4, 2.4, 1.4, 4.1, 6.0, 13.2, 2.1, 1.5, 5.4, 1.8, 2.6, 16.8, 5.0, 4.4, 13.0, 1.1, 1.2, 11.6, 1.3, 3.5, 2.9, 5.7, 15.5, 4.8, 15.55, 5.1, 2.7, 3.8, 1.8, 14.2, 5.3, 1.9, 12.5, 2.6, 10.4, 1.2, 4.1, 14.2, 12.5, 8.3, 2.0, 3.8, 10.7, 8.2, 2.1, 1.9, 9.8, 6.5, 0.9, 2.7, 2.6, 13.0, 1.4, 13.4, 16.2, 10.2, 4.9, 2.0, 7.0, 12.7, 2.4, 6.2, 8.6, 2.6, 15.55, 1.4, 7.3, 16.0, 7.0, 16.8, 3.2, 1.2, 6.2, 1.2, 1.0, 4.6, 5.5, 1.1, 10.8, 2.2, 10.2, 11.75, 6.0, 7.4, 7.4, 1.9, 2.1, 1.6, 1.2, 2.4, 5.1, 7.4, 19.95, 3.8, 16.1, 5.4, 2.6, 18.95, 2.3, 2.0, 1.5, 2.1, 4.4, 1.8, 17.5, 2.3, 12.8, 13.3, 1.4, 14.7, 4.7, 1.4, 2.5, 1.1, 1.5, 10.3, 3.0, 6.8, 2.4, 7.1, 7.0, 1.2, 1.8, 2.65, 2.4, 2.1, 2.8, 7.4, 11.5, 1.6, 1.3, 2.6, 1.2, 1.7, 1.4, 1.9, 1.9, 4.3, 13.2, 1.9, 12.8, 12.8, 1.7, 8.6, 5.7, 3.2, 2.0, 1.6, 2.4, 2.0, 2.5, 14.7, 1.8, 1.4, 1.5, 17.55, 1.8, 13.55, 1.0, 12.0, 3.6, 3.85, 4.0, 1.2, 15.4, 6.5, 1.4, 9.1, 1.1, 3.0, 2.5, 6.6, 8.1, 2.4, 15.5, 1.7, 11.3, 5.7, 1.4, 1.4, 2.0, 6.3, 4.7, 2.5, 1.8, 7.4, 9.3, 10.55, 2.9, 1.7, 2.2, 1.5, 14.75, 2.4, 2.4, 3.5, 1.8, 1.5, 2.8, 1.2, 2.0, 1.3, 10.5, 12.8, 1.2, 1.9, 16.0, 7.7, 2.3, 2.9, 1.6, 2.1, 1.1, 1.6, 3.7, 8.0, 1.9, 8.8, 6.7, 7.3, 2.5, 3.7, 2.6, 1.3, 8.3, 1.3, 11.2, 5.2, 4.7, 9.2, 12.7, 2.5, 7.4, 13.2, 1.8, 2.1, 5.25, 3.65, 15.75, 1.9, 13.65, 4.9, 9.15, 1.9, 2.5, 0.9, 14.0, 2.6, 2.8, 1.8, 12.8, 17.5, 8.25, 1.9, 1.6, 1.5, 6.9, 2.4, 1.3, 1.2, 6.7, 14.8, 12.7, 13.7, 2.0, 1.3, 1.6, 9.25, 12.9, 1.0, 4.7, 1.7, 10.8, 1.1, 19.95, 1.1, 1.2, 9.7, 6.7, 1.6, 2.3, 5.3, 13.6, 11.4, 1.6, 1.4, 2.6, 2.4, 10.6, 4.6, 2.2, 1.7, 2.0, 1.5, 5.0, 2.0, 2.6, 4.6, 12.7, 5.7, 6.3, 6.7, 8.2, 7.1, 2.0, 0.8, 2.0, 1.9, 1.3, 1.7, 1.1, 1.1, 9.85, 1.2, 1.1, 2.1, 9.5, 1.7, 8.0, 13.65, 7.9, 4.4, 9.55, 1.1, 7.9, 1.8, 2.2, 1.1, 5.9, 2.4, 6.0, 2.0, 2.9, 1.4, 2.1, 5.2, 5.8, 1.8, 2.0, 2.3, 15.1, 2.3, 16.8, 13.8, 1.5, 12.2, 8.2, 4.3, 8.9], \"xaxis\": \"x2\", \"y\": [0.33396714643252134, 0.5044440900554997, 0.8874896900044845, 0.4686759077780351, 0.23831547366416572, 0.571181601185031, 0.7785327680196316, 0.7290551099174598, 0.9581131370131553, 0.6801000322064107, 0.413367674560271, 0.6667140739211237, 0.9108229754863395, 0.9275086157065797, 0.9186958597750785, 0.7191871442695774, 0.8184457509658746, 0.8597940676688322, 0.7947045908306632, 0.8244149680645384, 0.42771531534877594, 0.5315376696882942, 0.7136291946100958, 0.5510697799054304, 0.6393262665313312, 0.9016582766249417, 0.8560880110261746, 0.8947361144883382, 0.9102326114023062, 0.840723585394272, 0.9264645566705582, 0.5105903360131552, 0.752648770317166, 0.5855954083225455, 0.8989214048388485, 0.5190750352404293, 0.9560713253502463, 0.7273157243430202, 0.9279672131348602, 0.640103147954212, 0.9158977434209615, 0.9035955072010529, 0.7140955379655831, 0.233508355491505, 0.7280578325574358, 0.8810827811902006, 0.3966129217085586, 0.15541760955422754, 0.5851621750323275, 0.9046111951917862, 0.4177213302712193, 0.7993763114768937, 0.6978409661933959, 0.6473373667551029, 0.770784382977056, 0.6500641275496193, 0.548949563093737, 0.9803199442553986, 0.6150775052067382, 0.391333092160729, 0.6966682278280982, 0.9426748402861506, 0.9170092977635526, 0.844625652038695, 0.5621782696252592, 0.8935808323282117, 0.6792214086077275, 0.6719996755401956, 0.5252591274442797, 0.7277045758687855, 0.4685752957996948, 0.8616549355667619, 0.347491516391863, 0.8224130863808733, 0.5340790568488665, 0.6711667658766297, 0.5277539611022016, 0.7226430813715845, 0.8140972745487615, 0.3280236940194876, 0.9543080196225542, 0.7752655593026647, 0.9223925066666061, 0.8588031784191832, 0.6345107008491314, 0.9393010047953068, 0.7897067132703484, 0.8608062836413887, 0.8367885032124018, 0.38555642305179116, 0.8611944449682004, 0.9172341012895443, 0.9206892306522243, 0.9500505925695213, 0.537798347971205, 0.9173482789702866, 0.44454351342386716, 0.8909704850569525, 0.7351932580165473, 0.6818328744935735, 0.7981559962965634, 0.7626532952948841, 0.807353254900461, 0.964411205143099, 0.4685752957996948, 0.6986526320119215, 0.1956969407137045, 0.9233481403380283, 0.8218375601976645, 0.8536269727611236, 0.5637680470866036, 0.42267134533232753, 0.93003590801509, 0.9364808605729722, 0.8816060831574614, 0.9663102962713933, 0.8345570787709832, 0.4997893986747249, 0.7921603237806832, 0.5586815647381762, 0.8622246464681924, 0.9828719612298703, 0.909295720392338, 0.9476267884443668, 0.5395521774612226, 0.901360886913609, 0.39410444510430487, 0.9262213132200262, 0.6627387433216217, 0.9629433821448677, 0.9614311452267452, 0.9802968012486629, 0.933760787013923, 0.34432718187202205, 0.63596173557573, 0.624364378916488, 0.7417789548241253, 0.7300918276682445, 0.6968315453320488, 0.7840233885688647, 0.8958841271622066, 0.5417426694559925, 0.7102579146160282, 0.6004345411549624, 0.515920701757342, 0.7587882454650442, 0.5029588531082266, 0.6887596776945688, 0.8642849605932809, 0.6469572639767995, 0.8103639651534781, 0.939764354405301, 0.694136577696587, 0.6593725303534554, 0.9646797005081557, 0.7979900311745153, 0.792123904710467, 0.8869579700149332, 0.7351250317969437, 0.5332560471205093, 0.9406873315653421, 0.39362685027924615, 0.9466602521798594, 0.8394325033041952, 0.6633442657978572, 0.8126408700417265, 0.7332457619716184, 0.08024070404520958, 0.8667774471450977, 0.6466814331404849, 0.912366876100516, 0.656670904734599, 0.8701678467707724, 0.8875925797813499, 0.9658725076002231, 0.7668332861852056, 0.8604440887473094, 0.934384507524058, 0.9605946056867319, 0.951253157591183, 0.5749289095213865, 0.6279243005170476, 0.7937202818717513, 0.7665301650725991, 0.700127941221274, 0.8531107444728586, 0.7947045908306632, 0.8870566665876504, 0.5476228787844645, 0.8410401833568673, 0.8736671065238262, 0.6519898659949606, 0.936943112068646, 0.9077719201719568, 0.8071889556778997, 0.8815615400732472, 0.8935313268029127, 0.8782891297971865, 0.5029588531082266, 0.5797201450332624, 0.9416775458320723, 0.5958140198486584, 0.2485157288688957, 0.932021424688801, 0.8531502837407814, 0.6344194678828672, 0.632587077283238, 0.9121448358615357, 0.5776545535910985, 0.9052765174806566, 0.8580390107418799, 0.8998644401112552, 0.6784536879503494, 0.9458342431661766, 0.21387363850783603, 0.9530348339880965, 0.7307391114165022, 0.7187682731289255, 0.6905635603269331, 0.9569274903702625, 0.9287384091375525, 0.3856984054091925, 0.504413920551941, 0.5389739198483336, 0.5921068831639978, 0.10702848140489757, 0.8772993497727819, 0.6361944011057532, 0.8952999713010865, 0.7069578609115064, 0.10632960186243966, 0.6465592619811017, 0.9116333268133815, 0.9210441535829985, 0.9483358221641291, 0.5800224234700003, 0.896951343689222, 0.8958659323404018, 0.8896861436466836, 0.7763142135369961, 0.778627444633172, 0.9274605647284293, 0.9167924025380936, 0.6422094408272838, 0.6363725079258666, 0.8694129796739031, 0.5693182102579236, 0.5315376696882942, 0.6814536952243052, 0.30089534057709466, 0.6689448970920832, 0.6419522618821227, 0.6500641275496193, 0.8221968069187356, 0.9285763346020383, 0.8495153837633861, 0.7135666997345446, 0.8850789772017983, 0.9128367188568884, 0.8709442503982084, 0.44714680104169846, 0.7147831401969469, 0.6814536952243052, 0.5823319261018008, 0.7718122970862826, 0.8925058444773368, 0.9249991097277733, 0.7849066379312727, 0.5120166815330335, 0.7863291630268572, 0.8171821177205619, 0.8878235148823457, 0.9813953955585096, 0.5009899161211654, 0.6787020040856314, 0.2747106808400709, 0.6998114428322438, 0.7191783799678735, 0.7566715075843347, 0.7741630673610131, 0.692871858980435, 0.8706970297938403, 0.9226518689226377, 0.619213859232465, 0.9620625840847012, 0.8161066853745392, 0.7984578805051198, 0.8987836568806694, 0.27900511725120763, 0.747868261422589, 0.8013372150606806, 0.4430395412241901, 0.8082746512504794, 0.9248395818955686, 0.8132668978866627, 0.7926355964369082, 0.7243101498981422, 0.8251498778038484, 0.865753667016409, 0.8784859927081519, 0.9613966942665844, 0.8380103992838959, 0.9376908870460701, 0.8505645904112248, 0.5317253080143199, 0.8756470416862959, 0.8823120896825394, 0.8920529250761863, 0.9565288857220365, 0.92576324319171, 0.8397457208604353, 0.8008835764985612, 0.7620555647282774, 0.6333567796033132, 0.8986985644274655, 0.8289197139212982, 0.38568054861828666, 0.4358764146033148, 0.7013568331933456, 0.5524769805317635, 0.8654015550049637, 0.9625385348003681, 0.4997035751430624, 0.5940434106189647, 0.29640429037896177, 0.9370396801623051, 0.7496358493500708, 0.8521916566704996, 0.7519935213994349, 0.8956127660014477, 0.7563308848917781, 0.5425355780301907, 0.1652985164032473, 0.5777375433929663, 0.5926841497777402, 0.5247451599628447, 0.6215406511606532, 0.646742228322253, 0.5236567091352762, 0.8105889943537302, 0.7614647275399787, 0.7272264480694343, 0.44438282424164377, 0.8051848688934031, 0.253979247575754, 0.8737269176380216, 0.7884186533408385, 0.5226162157005312, 0.7776146375974927, 0.8021344726910251, 0.6794204065079696, 0.8398669626756513, 0.3743394998756179, 0.6593725303534554, 0.41008410759983227, 0.8726624594592295, 0.31336232876890546, 0.6187135046228962, 0.9208146539756937, 0.8948907807194619, 0.9475948217130945, 0.7098971478357265, 0.41970311630379203, 0.5524505095188592, 0.6689295490636696, 0.39534528644804523, 0.6686700461744643, 0.6608417181144597, 0.6289006219381473, 0.8112353209803558, 0.9675531845963172, 0.3468688843876404, 0.8171815196180959, 0.9315945487332388, 0.7612383340144859, 0.43979370974717685, 0.9452166580978265, 0.810349906376065, 0.4979189466877109, 0.9054024939516333, 0.7506263221664519, 0.8595966107872783, 0.9041757536760852, 0.5120166815330335, 0.9246344940597735, 0.622364539475366, 0.7975959936185795, 0.9376528402833735, 0.8270495791839716, 0.7463426393970082, 0.8508295060861325, 0.5277539611022016, 0.7926521549058593, 0.8343380415579561, 0.7973631232158779, 0.5423298306356671, 0.6253812669856891, 0.9342151247863544, 0.9064095870896521, 0.8428584418618921, 0.5680191878381406, 0.8230633503438987, 0.857993972512287, 0.8312116035859974, 0.8886868130574391, 0.5695902702544526, 0.8750573328895943, 0.47134086624147714, 0.6082670858563528, 0.8571520978358925, 0.7006810412396262, 0.6001343818465046, 0.8680196363335714, 0.7833148206731655, 0.835330250744176, 0.6883000602161935, 0.4297997702781997, 0.7132181587745201, 0.941909753873568, 0.9298379484442667, 0.8950633078112005, 0.9652574497835966, 0.8593048115498744, 0.23022113319019433, 0.5548683876071567, 0.8789570823277312, 0.7176343272433334, 0.7135972690872326, 0.900955402304434, 0.89110615578316, 0.8021344726910251, 0.36734125225010755, 0.9233813125795639, 0.9269988231022361, 0.6021478506882372, 0.27064660283581765, 0.7595966254948197, 0.5317253080143199, 0.9626288904553877, 0.518871521713375, 0.4244151934213653, 0.8784852709235653, 0.667697582798242, 0.6791650855490978, 0.8659372985570389, 0.5217980090164113, 0.9757802673562255, 0.20769640873195563, 0.6900575067285889, 0.15051833553221247, 0.8476988333501053, 0.12043274000614122, 0.6546311715671466, 0.412102187638673, 0.6339696776630096, 0.6925917751558638, 0.8074446941396305, 0.8417042066658985, 0.4702054036006336, 0.8107456318417504, 0.934253622333564, 0.9671353887875448, 0.3776875782453083, 0.5133306968464912, 0.8279918435672958, 0.7295730380004212, 0.8398957027397556, 0.7470826509089123, 0.7722124156410631, 0.3944809481034696, 0.5801047158883857, 0.7134138458261836, 0.8265590446981121, 0.5836238058504062, 0.7538957359152121, 0.9708936701567454, 0.41507295289487073, 0.9039211350062085, 0.5109703825452502, 0.8880660412534, 0.6332514250278477, 0.703270618172154, 0.863031725372896, 0.9601349291832292, 0.5845797646527732, 0.8357575010967041, 0.9584406458449958, 0.8733333206292072, 0.4740801794177068, 0.5787650908025566, 0.38525623454815555, 0.5715075300165849, 0.951253157591183, 0.831291834366621, 0.6482062646591596, 0.5447536045265621, 0.8456825404777587, 0.5358725178581014, 0.8893400405584444, 0.5955893395860203, 0.9408369636189147, 0.7580589814818564, 0.4244151934213653, 0.7636885291754726, 0.9532052815091139, 0.6686700461744643, 0.39683939049776734, 0.8309978518015588, 0.06774730328187532, 0.8934061610794648, 0.9459413258233057, 0.8507977517004935, 0.9694554821790147, 0.8640493534313302, 0.8409166048571896, 0.9059760843724536, 0.7278052027863667, 0.8952246802917138, 0.39534528644804523, 0.9558702864115934, 0.9178754126151818, 0.7504628435478695, 0.7568870052952757, 0.32046258648166903, 0.9712495894387816, 0.7125870341029702, 0.8286889773580812, 0.929575727770858, 0.8422483936479932, 0.60065365322741, 0.5775074082600717, 0.7505976846167132, 0.5317253080143199, 0.9590110623565244, 0.9651712957082627, 0.7333643603414158, 0.7757825668725274, 0.8928390517037824, 0.2578168736401774, 0.5355488836719776, 0.8408692583280314, 0.7849780542174357, 0.8711681462620556, 0.8447990405440073, 0.9571933326515756, 0.9307123551507692, 0.6421242495412457, 0.9239207054420927, 0.9336219461922934, 0.4244151934213653, 0.5673643045526261, 0.8301442064454496, 0.528471943574542, 0.8835542071774324, 0.8820947700128993, 0.4561713647735051, 0.584381944856391, 0.9493936477483658, 0.7816316980556022, 0.7770145472448273, 0.8495153837633861, 0.8318035560268552, 0.5220388622338656, 0.8589980209217414, 0.21216021099657945, 0.8782303617207965, 0.901850575196968, 0.7683760396387002, 0.9559989503713009, 0.938411491366706, 0.7225398931917507, 0.5918361617892179, 0.8596378534897678, 0.8816239240572568, 0.9296844522785247, 0.8299758417251202, 0.7538846798551382, 0.931253582726863, 0.6902425303942638, 0.9299571155275668, 0.35461708236434614, 0.6119587629530028, 0.8979450471026776, 0.8782891297971865, 0.6144930729026484, 0.5601837238662909, 0.4230258756549153, 0.5115702372514986, 0.6133200318312215, 0.8287048127179734, 0.42887934024879554, 0.5543929044930882, 0.5414149972460248, 0.7453725251924848, 0.6522898344923613, 0.6445138145159856, 0.9212190995841192, 0.6991293681294938, 0.9188224881967051, 0.9444881948020799, 0.8399825546316605, 0.6440269003431431, 0.45260210695563535, 0.6678228102737954, 0.8535669746933884, 0.23469888428232324, 0.7581156815660375, 0.8329520097124233, 0.5886389680190937, 0.4250130050586104, 0.290761161529129, 0.9065968169685268, 0.39757013049667705, 0.9584529405260903, 0.24804178200132845, 0.8400605958344816, 0.9562762484868867, 0.5923100188758571, 0.5355488836719776, 0.6866862751474886, 0.753715093249364, 0.9302702282582556, 0.8405005145861136, 0.7758456574858743, 0.8270123797965384, 0.9270997487744173, 0.8779999285967196, 0.6350604679157676, 0.9057987369792326, 0.9732730617650076, 0.28007269673131574, 0.5393237551960537, 0.9509318156255189, 0.8055358405733448, 0.8512314640165554, 0.6752183046546253, 0.9766791413071304, 0.26893819095773785, 0.5105552073939665, 0.7964242570425004, 0.9159462749375985, 0.46312559485344046, 0.7889853219989779, 0.5331772070153998, 0.6250130361556073, 0.5340700079782073, 0.8981158701031157, 0.8424802355113449], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [2.5, 4.7, 7.0, 2.3, 19.45, 22.0, 13.15, 1.6, 1.7, 2.3, 4.3, 1.2, 6.4, 7.2, 14.3, 18.1, 7.6, 2.7, 4.9, 1.1, 1.4, 17.2, 4.9, 11.8, 1.6, 1.7, 2.1, 14.8, 0.7, 0.8, 11.95, 1.1, 2.5, 2.3, 1.0, 1.7, 2.3, 1.5, 4.9, 1.4, 4.1, 2.0, 11.2, 15.2, 1.4, 1.7, 3.4, 2.2, 19.3, 6.1, 7.0, 18.35, 6.9, 2.4, 2.6, 1.8, 2.0, 4.2, 10.5, 15.4, 4.2, 8.3, 7.7, 2.9, 10.7, 2.0, 1.4, 1.9, 3.0, 1.6, 2.1, 2.5, 1.3, 1.6, 7.7, 1.2, 18.75, 1.7, 1.0, 1.9, 9.3, 1.6, 12.6, 2.0, 1.7, 1.7, 4.8, 13.7, 1.2, 6.1, 7.1, 1.9, 2.0, 14.3, 1.9, 2.1, 11.7, 3.9, 9.7, 8.1, 2.5, 6.5, 18.1, 1.8, 1.5, 2.1, 1.9, 1.4, 5.1, 13.7, 1.6, 14.5, 1.9, 1.3, 1.2, 10.7, 12.3, 4.9, 8.3, 2.1, 14.95, 1.8, 1.7, 1.6, 2.0, 7.0, 1.2, 11.1, 2.0, 5.1, 1.4, 15.6, 14.3, 1.0, 2.0, 11.0, 1.8, 3.0, 10.4, 6.6, 6.7, 1.7, 1.2, 5.1, 2.3, 12.1, 2.0, 1.6, 1.9, 9.5, 0.8, 13.3, 5.5, 7.7, 1.5, 1.4, 12.1, 8.2, 10.0, 12.6, 2.0, 15.6, 1.4, 13.5, 4.4, 7.8, 1.1, 1.6, 5.6, 8.6, 16.05, 10.4, 1.9, 1.8, 1.9, 1.4, 1.0, 11.6, 10.3, 15.8, 1.5, 5.1, 2.7, 1.1, 15.1, 1.4, 8.1, 17.8, 1.3, 7.9, 2.3, 3.75, 7.8, 1.4, 10.8, 2.0, 1.2, 6.4, 14.5, 11.8, 1.8, 13.2, 14.9, 15.4, 1.25, 15.7, 6.9, 2.2, 12.9, 10.2, 7.3, 5.0, 2.1, 1.1, 6.8, 2.7, 11.1, 9.7, 1.4, 1.6, 11.2, 8.0, 9.2, 6.8, 1.6, 10.4, 2.0, 3.9, 1.2, 1.0, 17.9, 1.6, 17.1, 10.7, 1.9, 8.8, 1.0, 1.4, 14.3, 2.0, 7.7, 2.3, 2.0, 9.6, 0.9, 5.9, 1.5, 5.4, 13.7, 6.1, 1.6, 16.0, 10.7, 10.6, 2.5, 16.3, 9.6, 4.6, 8.9, 2.5, 2.4, 1.6, 11.9, 11.9, 2.6, 1.3, 6.0, 1.6, 1.9, 8.9, 1.5, 2.6, 17.85, 6.4, 2.0, 1.8, 15.6, 2.7, 2.4, 11.2, 2.6, 17.75, 1.15, 1.3, 3.8, 1.2, 0.9, 4.5, 1.35, 2.5, 7.7, 7.0, 8.5, 2.7, 5.2, 2.2, 0.9, 7.8, 15.8, 2.3, 1.8, 2.6, 7.0, 11.9, 12.1, 1.0, 3.1, 10.1, 15.4, 8.1, 1.6, 2.0, 1.3, 17.8, 2.0, 13.6, 1.7, 8.1, 1.3, 2.8, 2.55, 1.7, 17.8, 5.6, 3.45, 10.1, 17.9, 1.4, 8.0, 1.3, 2.5, 11.4, 1.2, 1.6, 2.2, 1.3, 0.8, 1.3, 17.1, 5.2, 8.1, 2.4, 2.0, 2.0, 2.1, 1.3, 8.2, 2.5, 17.1, 1.3, 2.7, 2.0], \"xaxis\": \"x2\", \"y\": [0.8142007211296887, 0.07257977436397642, 0.7430932382113554, 0.8214862427787604, 0.5698848321031316, 0.6048119589659149, 0.6466669219762841, 0.14510080060429495, 0.2250304680670007, 0.28492472637839966, 0.42061632734231896, 0.8281252124183194, 0.49622399336621903, 0.3482895521074759, 0.4678833354511545, 0.5708968386647719, 0.37048677721847617, 0.553632248395139, 0.8702137350251022, 0.42186952587750404, 0.8696774950675754, 0.5410576963494411, 0.3971326977900686, 0.3275001196198921, 0.9448289227093116, 0.7109941475090589, 0.41925580570138304, 0.3675472469853882, 0.6721911818800557, 0.5562207270314473, 0.5262426608517637, 0.3244609607385458, 0.15056615442564347, 0.15676979724311627, 0.6037730696030339, 0.6342511279653397, 0.021947035536558718, 0.32429164429335744, 0.5678746850743716, 0.3571680467137555, 0.7755534309390314, 0.3240287891037917, 0.699424662214302, 0.5151532452376618, 0.7564675819717819, 0.38343591026479057, 0.19811005648518398, 0.3168419703358067, 0.5315947262677626, 0.9269044449273315, 0.8260225289794664, 0.451791899378283, 0.830516920403184, 0.47128602930186, 0.19027823806377472, 0.5181346713949518, 0.29552777318700446, 0.45414400334446664, 0.39329840463575844, 0.42327932510626076, 0.45838907164509224, 0.2233864252642039, 0.3628419195926303, 0.6709353200988277, 0.46058046365566996, 0.25551237833043455, 0.7234147543269824, 0.1481282262733752, 0.314935793994079, 0.20050531530561894, 0.37453315488553635, 0.701015529968035, 0.6343341418527783, 0.1739320900588749, 0.734996253073231, 0.8172229478314255, 0.3598554146739685, 0.7121055211356295, 0.2620604909731644, 0.3421138035730516, 0.6951268813066005, 0.35208221297891723, 0.452099210446082, 0.18907620085798427, 0.5444201651108793, 0.6484058972837882, 0.3258186925596978, 0.5963383680780668, 0.6202666247822538, 0.576738593946626, 0.5054992484109841, 0.2972245631729925, 0.6844333356791464, 0.42629475072919953, 0.4405153833121037, 0.01207867704715336, 0.7609288944606691, 0.23951123982998349, 0.09310514674080905, 0.5084920166510624, 0.33067609257366243, 0.36481899584296196, 0.5708968386647719, 0.3194802059637459, 0.14207297841267416, 0.5776897120055972, 0.2026163425795633, 0.37909000048748537, 0.38206764842015895, 0.41324683104354176, 0.17826143731067332, 0.42339414872454434, 0.39148091864802853, 0.3511350413575442, 0.8053393751847749, 0.5937005322868365, 0.6849942580153355, 0.38930033076762494, 0.5168500865319015, 0.5699073288866824, 0.5376087249833421, 0.8185832461647057, 0.25950508036415604, 0.20394483716883388, 0.3303044530853749, 0.2528102968078532, 0.8477719856767125, 0.5217124250004609, 0.3303044530853749, 0.5382885532339231, 0.9625763866028243, 0.6536174904341296, 0.42629475072919953, 0.6458781618432388, 0.46574001023909845, 0.37268733756108086, 0.8180085473348132, 0.35493594975273335, 0.2423640089427935, 0.3636330633241046, 0.6421622311157122, 0.5444201651108793, 0.7396308412796291, 0.9036153464846048, 0.21101569987323432, 0.6004024464464508, 0.7595861882737439, 0.486549602332862, 0.2379839758891197, 0.5147825233229498, 0.2065932277190248, 0.4342628292980428, 0.5940848250235929, 0.4857193175270624, 0.5332610244722983, 0.5402196969638672, 0.8578846895389459, 0.5290225674595067, 0.6074669506688956, 0.1847839155105034, 0.3581391437324269, 0.4304380754474639, 0.8410120374942113, 0.5810086483513661, 0.19026233744636453, 0.7223494520380469, 0.8589928738613049, 0.8374625942163022, 0.781203852328267, 0.73983195178881, 0.41156537259256004, 0.7482873396984137, 0.44431713201158524, 0.7113673874393347, 0.49869552495399233, 0.7627102864663872, 0.37193390769028617, 0.37187810520956766, 0.3773291605703562, 0.8719651627687759, 0.6218762459828849, 0.3781393537983126, 0.553632248395139, 0.47624084907999176, 0.774399353278846, 0.5840424935194366, 0.5601025471409736, 0.6186690618327106, 0.620611700356168, 0.5755798886129706, 0.15047650536569443, 0.5530049338021776, 0.6597439619439023, 0.8300222117931148, 0.3490158529243493, 0.4410646109528086, 0.5067909967309752, 0.5851482063434866, 0.7149827463187939, 0.4849259975950144, 0.2094210588097294, 0.33399024531412796, 0.4083143545243069, 0.7497022835596558, 0.7817929239213606, 0.7637421953724776, 0.3825655414920891, 0.6611482494098961, 0.19022241257108333, 0.44972084577511023, 0.5476732603321269, 0.4831274653996314, 0.5077048340566679, 0.7289504589448288, 0.4379810490617926, 0.8017221455714771, 0.6434673631716396, 0.5059779734745421, 0.6065367192264559, 0.650368705032214, 0.34567471266024347, 0.39561589000187136, 0.3427787545601037, 0.4676404271158623, 0.5332283386400669, 0.4519108142444285, 0.40662831629925006, 0.42305576187259053, 0.22032895172816622, 0.5278715769330472, 0.43679486629948455, 0.743933429392776, 0.5269515041023835, 0.5008800654866953, 0.214168174561682, 0.44879088851457377, 0.683485355417811, 0.807753104897186, 0.42629475072919953, 0.8502951424821861, 0.17421175568219957, 0.25491371883486935, 0.7595861882737439, 0.6571724132942184, 0.7813188949129265, 0.5626906653340306, 0.8674288259883418, 0.6600514650598344, 0.4827749661719035, 0.5456147119159479, 0.39827550056677263, 0.27323823737433794, 0.695896529362927, 0.5048820477254727, 0.5422349097465021, 0.5610936746718964, 0.6571724132942184, 0.3088751107498249, 0.45428761266464013, 0.6604471727860799, 0.43371621376298963, 0.6171893197168647, 0.8100511550343341, 0.8100511550343341, 0.605832578461134, 0.5526475584669951, 0.4275055171336787, 0.8734720021260204, 0.8508295378350301, 0.5807723706867254, 0.8272749548927728, 0.2670652478909882, 0.7020144194675465, 0.4615566916191992, 0.7055847950248242, 0.43389869234556755, 0.6071692164257629, 0.3496825637352313, 0.23676491619791426, 0.7057755976874825, 0.15539001443149586, 0.6187538615870153, 0.8735882828904331, 0.30049486749739024, 0.23191705420611952, 0.8913917397916864, 0.4977157214618499, 0.16961113509580228, 0.8485494795219795, 0.4760032757956232, 0.5053843099270294, 0.2676015269871764, 0.3627664421236291, 0.15146266807038725, 0.7898179638281774, 0.6145296307645981, 0.3790380236797623, 0.3003532640340299, 0.6086112016774773, 0.39906793889171593, 0.8185832461647057, 0.6715802865662828, 0.8260225289794664, 0.6056902064850618, 0.400132762133902, 0.39471961640683584, 0.6449859309106076, 0.5637152910565628, 0.39949420960438964, 0.5490401551410112, 0.4398875418860128, 0.30916577334906253, 0.7093303227687476, 0.4562508424819209, 0.40444044759428516, 0.5773483646962835, 0.447777692034652, 0.4961542215384683, 0.32474312180562226, 0.21192693199409943, 0.9056903490933487, 0.5013816399998683, 0.758876109553896, 0.6364928148646596, 0.2952804752502578, 0.4748951900520853, 0.43679486629948455, 0.5479962315186364, 0.4728142838839701, 0.6343341418527783, 0.12248807650217919, 0.5052525886146573, 0.8281252124183194, 0.8930081609652758, 0.36283726088930296, 0.8098196742550625, 0.656477404357746, 0.193885049884708, 0.5269515041023835, 0.49858469647139786, 0.32780472036158087, 0.24927512797396847, 0.6148718578314069, 0.10691527318901187, 0.136775438340409, 0.8489192718114075, 0.2600203086082801, 0.8142007211296887, 0.5269515041023835, 0.7966615933629455, 0.5633234794197017, 0.767479452333631], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"residual.sugar\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"residual.sugar\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}, \"residual.sugar_bad\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (ref)\", \"type\": \"scatter\", \"x\": [10.4, 5.1, 1.1, 2.0, 2.6, 3.9, 6.9, 1.9, 8.9, 14.8, 4.5, 1.4, 13.5, 1.4, 2.7, 5.6, 2.4, 1.5, 18.15, 1.7, 1.4, 8.6, 3.1, 5.0, 1.9, 2.3, 6.4, 2.5, 13.0, 1.3, 2.5, 1.2, 9.1, 5.4, 13.5, 2.0, 1.6, 11.8, 3.4, 8.1, 13.1, 3.0, 1.3, 1.2, 1.8, 17.8, 1.1, 1.4, 7.0, 2.1, 2.4, 16.0, 4.8, 2.2, 11.8, 13.0, 7.1, 1.7, 1.4, 3.0, 11.0, 12.0, 3.75, 12.1, 2.1, 1.1, 8.9, 2.2, 2.0, 1.0, 8.4, 6.4, 10.8, 0.9, 1.8, 1.5, 13.0, 1.8, 8.1, 4.3, 2.3, 9.1, 7.5, 1.9, 2.0, 2.3, 9.5, 1.4, 12.5, 3.5, 6.4, 9.2, 2.2, 10.8, 19.8, 8.1, 14.5, 3.2, 7.1, 15.3, 13.3, 2.3, 2.7, 18.35, 1.8, 1.7, 14.5, 1.0, 6.4, 9.2, 1.8, 1.1, 1.6, 4.6, 1.8, 11.5, 11.0, 1.4, 2.8, 1.9, 16.05, 2.1, 9.2, 11.95, 13.1, 12.1, 4.8, 2.3, 1.9, 7.8, 1.4, 3.4, 6.5, 8.0, 1.6, 6.1, 8.8, 16.2, 1.2, 2.1, 17.8, 10.0, 0.9, 15.0, 1.4, 1.1, 1.7, 16.05, 2.0, 2.6, 2.0, 2.3, 1.1, 2.9, 1.1, 2.2, 3.3, 12.1, 1.2, 1.1, 3.2, 2.2, 4.5, 3.3, 1.8, 6.4, 7.5, 16.2, 10.4, 8.1, 7.8, 1.0, 7.2, 13.9, 2.7, 2.8, 2.0, 2.2, 2.4, 3.5, 1.5, 1.8, 2.3, 1.4, 13.2, 7.9, 8.6, 3.85, 10.0, 8.3, 4.5, 1.0, 10.7, 0.8, 7.6, 1.9, 8.95, 1.35, 15.6, 1.9, 5.0, 13.8, 13.8, 2.3, 2.4, 7.3, 1.4, 2.3, 1.7, 0.8, 4.8, 1.4, 6.7, 10.0, 15.6, 12.8, 13.7, 1.0, 12.1, 9.85, 1.4, 0.9, 14.8, 2.2, 1.8, 8.3, 2.7, 15.2, 5.7, 2.5, 5.7, 1.3, 6.3, 18.8, 1.4, 6.55, 19.35, 10.4, 2.6, 11.9, 2.5, 6.9, 14.9, 4.5, 0.9, 1.8, 2.5, 1.9, 6.2, 1.3, 2.5, 6.5, 9.1, 2.1, 1.3, 15.3, 6.1, 1.1, 3.2, 2.3, 1.6, 4.8, 12.6, 1.0, 1.7, 11.2, 1.3, 1.3, 2.3, 7.8, 17.8, 13.0, 2.1, 12.3, 6.5, 12.1, 1.9, 11.8, 10.5, 1.4, 2.3, 1.8, 1.3, 1.6, 6.9, 7.7, 1.3, 12.9, 1.2, 8.6, 1.3, 2.2, 2.0, 1.1, 2.6, 2.0, 5.0, 12.9, 12.1, 3.0, 2.1, 1.6, 2.4, 7.6, 3.2, 0.6, 18.35, 1.4, 2.2, 10.7, 4.0, 7.6, 1.8, 8.3, 2.3, 1.2, 16.45, 2.7, 11.5, 2.4, 2.2, 11.6, 2.0, 1.8, 8.0, 11.2, 7.5, 7.0, 2.1, 8.3, 22.0, 2.4, 1.6, 15.4, 1.0, 2.4, 14.9, 2.5, 0.8, 9.7, 1.5, 1.6, 6.1, 2.2, 15.8, 2.0, 7.4, 9.4, 1.3, 16.7, 10.5, 1.7, 13.1, 2.3, 2.0], \"xaxis\": \"x\", \"y\": [0.7197707895473677, 0.05448058807241418, 0.5021256787650443, 0.4710854375480472, 0.7156076129280222, 0.7966690429773311, 0.7265425252145667, 0.16771266951545494, 0.610944103187451, 0.6324527530146118, 0.42180662537268765, 0.2598044700255929, 0.5503032830239416, 0.5632112185661304, 0.6840604465833231, 0.6224375641140001, 0.8071781895370533, 0.9515482366939344, 0.3994071349416132, 0.9677746238863042, 0.572587586261062, 0.7602674855798478, 0.861098734498427, 0.1386074727873, 0.6703360831713621, 0.8064003460928679, 0.3172728283240366, 0.8039094494444462, 0.9186426431335688, 0.6026275969807151, 0.8609701260317718, 0.3485833566260712, 0.3005246278528939, 0.2859113263741919, 0.4978204971029292, 0.5125675444128744, 0.4268860326359044, 0.11791793574572085, 0.440027850275134, 0.4938434408506086, 0.4933189622152446, 0.166194347192407, 0.30200278364192557, 0.6822425768461728, 0.8693180940701344, 0.24112389044610405, 0.43189370387303117, 0.284455178085937, 0.23793737479647703, 0.5535561322468214, 0.7900402576908969, 0.47373775892899717, 0.6055733033081183, 0.7462675017011632, 0.32245623572553406, 0.7612367841042231, 0.36308410170653527, 0.6103993963703384, 0.3965676277125745, 0.2230008284200371, 0.8480025164595866, 0.43585875500482685, 0.24095331994381775, 0.4030652094068704, 0.8951637220162157, 0.2782175630406618, 0.7337660836226194, 0.8352762102164887, 0.6223987562306759, 0.2928263700360406, 0.6563137004068428, 0.16155652477357085, 0.6364666355122575, 0.2186811050870735, 0.27206300237801306, 0.4358901152617537, 0.6136035252376228, 0.07900866299327158, 0.8522855318359817, 0.11906253414448076, 0.3466831105240652, 0.11265227152414181, 0.6302693732121377, 0.7168097665217413, 0.4796298258249143, 0.4476252306691143, 0.3612478268219491, 0.611861930499026, 0.15121036728507153, 0.5363393546692182, 0.16155652477357085, 0.441733396330222, 0.7834276811132227, 0.6364666355122575, 0.44873286860252337, 0.4948960601400133, 0.4172084246960842, 0.5055831714989107, 0.5269082808529498, 0.3737404408311804, 0.4491757516278906, 0.5266720849021, 0.2882430633103308, 0.6066213483726142, 0.83534933450756, 0.2509605867776752, 0.230738949997912, 0.25680675940048736, 0.6858999083789018, 0.27626495444752697, 0.35158671089680515, 0.311480105980391, 0.5950329577300569, 0.4196263877039489, 0.3672198477254309, 0.5488429300958864, 0.6273126624389191, 0.0990306898864649, 0.935036100419004, 0.5556828679884147, 0.6003916802566726, 0.1337843055401957, 0.6898191889393818, 0.46604488826349566, 0.6668872608045229, 0.5998672378660981, 0.14712454771937833, 0.8558065212045691, 0.883276495704891, 0.5544329747085402, 0.38398791005853006, 0.8623310715459079, 0.4482795971615686, 0.4767821080964978, 0.6451659669426603, 0.5099786295438409, 0.11454219273407718, 0.5691587732433696, 0.2398813672346335, 0.8592796956842923, 0.38133093816728936, 0.4754945767078651, 0.2673740541283356, 0.43092180164799054, 0.5981491184574936, 0.7512253043619477, 0.20474988026063612, 0.12337786436138054, 0.6965484670033051, 0.4642254518352117, 0.29034758521725457, 0.7912282271603185, 0.1364389858241727, 0.5326323768611896, 0.3938848007926149, 0.886984727126295, 0.5955398539691413, 0.3667393936023857, 0.35129461810907203, 0.578130474122496, 0.1952086434691429, 0.6982941690158907, 0.6159300986783536, 0.6650580695700093, 0.8007006003287879, 0.13750802167619447, 0.47121416359091395, 0.5691587732433696, 0.5295784007050042, 0.4938434408506086, 0.4240508430342457, 0.1531205555636086, 0.7965770364050346, 0.4829168465516456, 0.6333246955344933, 0.38682769986244625, 0.5589353890471914, 0.30965836575156913, 0.6133571507425741, 0.5363393546692182, 0.5474540697204298, 0.9680074395956593, 0.29703705077451537, 0.7566858385458134, 0.451244026180727, 0.6224939697452743, 0.9340693900855184, 0.1254375450851024, 0.770680513376406, 0.7273231109206828, 0.410671569380914, 0.19928392436820586, 0.44743622108127745, 0.4991477681643879, 0.5443787589855091, 0.826082779912576, 0.5642536294664222, 0.6762559922350657, 0.39283078357423706, 0.3074847569358159, 0.40732461839200396, 0.5614584986504241, 0.5614584986504241, 0.575628870274347, 0.1938881144566701, 0.6480440770440566, 0.23946299348505806, 0.6110142157087575, 0.32489046344192996, 0.127020290619695, 0.28948900574123104, 0.27970970921902805, 0.5179212029104148, 0.579807192000203, 0.5695619245525361, 0.7471497674522103, 0.6761943115269239, 0.6052803835931642, 0.9048996801452402, 0.632953623191418, 0.7849920634816455, 0.12946409768986655, 0.3899257470968539, 0.37735505673750047, 0.27206300237801306, 0.6356505945299911, 0.9000798247851504, 0.5852448485124296, 0.3537739535016634, 0.8589709040748648, 0.5105041430354158, 0.4760479563081992, 0.3915586115462193, 0.4344526143297297, 0.04825794875232026, 0.25106204840173363, 0.5352062615150248, 0.2084678736174792, 0.5588772074146924, 0.42656597432725707, 0.3395528272139201, 0.5154796814541086, 0.30312695461308037, 0.4684625037801391, 0.13140485141127656, 0.37575572516499556, 0.7087902803012941, 0.22740617784346517, 0.7932370230268412, 0.6977827466507267, 0.8687065743771458, 0.3532210556477622, 0.3005246278528939, 0.8817461779308045, 0.5897758288136841, 0.5117334773877459, 0.2267712913026929, 0.7462523759498982, 0.5055831714989107, 0.6276122794572256, 0.34766968675436505, 0.563322001169588, 0.4035281086421867, 0.44827723495654004, 0.7588644006503809, 0.17560197311170134, 0.2736156405730563, 0.5646478519097824, 0.12788772013874206, 0.8127608550985441, 0.35130933230290007, 0.8842329534318195, 0.5671758377024384, 0.508518787579709, 0.4735654621913231, 0.6614347321502836, 0.7032589073748752, 0.418601168771625, 0.40262233345395115, 0.38045938978299354, 0.6221728234115828, 0.6769388667590319, 0.825791915264051, 0.8036522945246104, 0.5350776523934957, 0.5038683203672731, 0.4187790963850706, 0.3942708224564714, 0.36585282612655, 0.42973128126448334, 0.1395024853671747, 0.36909778672938764, 0.5126700875045708, 0.31128511290513083, 0.5841805470690385, 0.42932394036482613, 0.5168725346003686, 0.9331527243268325, 0.5090935678835011, 0.848083892739094, 0.7288594688776423, 0.23463814542978878, 0.9073343486287574, 0.5445649372592127, 0.8030108083542629, 0.30698149193503155, 0.47724620771884374, 0.49565431290071005, 0.29179072192325783, 0.53941953634433, 0.32642767658125227, 0.5714063949384225, 0.6769388667590319, 0.48314991346809855, 0.3838692085325581, 0.7654355578102645, 0.6807995217458978, 0.7803105409218809, 0.4971816769068883, 0.5662837862370104, 0.32557907866588853, 0.4059739580227363, 0.8621668957327787, 0.4863555612469991, 0.44913520001249685, 0.5044088987161788, 0.018560580499064172, 0.17397747102053363, 0.8203404366189, 0.531551035274026, 0.3951880410340851, 0.6710839680909022, 0.7545393605546251, 0.25029771644034415, 0.31651464458218903, 0.7900402576908969, 0.7649542174153934, 0.6282404390050247, 0.5124469561170844, 0.7501741577575001, 0.3717170374651112, 0.5479204837841629, 0.1799627586960565, 0.8716748635647116, 0.4700369344869263, 0.7044722268129955, 0.7597806244765397, 0.4570971226262448, 0.3688130253756654, 0.5854022956087224, 0.6067015953642416, 0.6092966434658947, 0.5713009051869427, 0.15316343939585397, 0.31191498773739224], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [1.3, 6.3, 2.6, 6.0, 1.2, 2.3, 2.2, 1.1, 2.7, 3.5, 0.9, 1.5, 5.7, 17.85, 4.55, 6.5, 1.0, 3.7, 1.7, 11.8, 8.2, 4.5, 1.5, 2.1, 7.2, 1.9, 1.2, 13.0, 4.6, 1.2, 1.2, 2.1, 1.9, 1.8, 2.0, 13.9, 10.7, 2.0, 4.3, 1.4, 1.1, 1.3, 1.8, 1.2, 11.0, 8.8, 2.5, 8.3, 2.4, 3.5, 16.4, 14.4, 1.4, 5.5, 1.1, 13.3, 2.5, 0.8, 1.2, 6.0, 2.2, 5.0, 2.7, 1.6, 2.6, 2.6, 2.4, 8.1, 7.4, 8.55, 1.5, 6.1, 5.9, 8.3, 5.7, 8.9, 3.6, 1.1, 2.1, 8.6, 2.3, 5.0, 1.1, 10.6, 7.7, 1.1, 1.2, 2.6, 4.2, 2.2, 1.5, 4.9, 1.8, 1.5, 6.2, 7.8, 13.7, 3.2, 1.3, 1.4, 1.1, 13.1, 2.2, 2.3, 1.2, 2.4, 7.7, 4.5, 1.2, 1.9, 1.2, 31.6, 1.2, 2.2, 3.9, 1.4, 2.0, 1.6, 16.5, 2.1, 12.8, 1.5, 10.5, 12.2, 2.2, 1.7, 2.1, 12.1, 1.5, 2.0, 4.0, 1.9, 14.75, 2.5, 4.5, 5.7, 2.6, 2.4, 2.8, 2.7, 0.9, 5.8, 8.6, 4.7, 2.2, 1.4, 6.4, 1.4, 1.7, 14.4, 14.7, 1.4, 1.6, 13.4, 14.9, 5.8, 1.0, 1.8, 8.8, 1.5, 11.4, 2.0, 1.4, 2.9, 6.6, 11.9, 9.9, 5.1, 11.2, 1.4, 2.0, 2.0, 1.6, 11.1, 3.0, 7.6, 1.7, 6.0, 4.8, 2.4, 6.1, 1.2, 1.7, 2.1, 7.0, 1.2, 1.7, 1.5, 3.6, 1.1, 1.8, 2.2, 8.3, 8.0, 2.3, 1.6, 1.3, 1.3, 2.0, 1.1, 2.0, 4.9, 6.5, 1.8, 2.3, 1.9, 5.1, 7.1, 13.9, 10.1, 0.9, 1.4, 3.6, 3.6, 4.2, 1.3, 5.35, 5.9, 6.5, 3.0, 1.1, 18.15, 1.6, 1.6, 2.1, 5.7, 14.4, 14.55, 1.3, 6.2, 4.8, 1.5, 2.9, 12.2, 4.5, 10.2, 1.8, 8.9, 2.8, 7.8, 8.1, 14.2, 1.1, 14.4, 1.8, 6.8, 1.3, 17.4, 6.5, 3.7, 14.6, 12.8, 2.1, 1.6, 1.9, 5.9, 3.6, 4.4, 1.8, 1.7, 12.2, 1.2, 2.6, 4.2, 1.4, 1.7, 4.6, 4.6, 2.0, 1.5, 1.7, 2.1, 7.4, 7.3, 2.2, 13.5, 10.2, 2.0, 2.2, 1.4, 7.0, 3.8, 1.6, 3.9, 1.6, 1.6, 18.4, 10.2, 2.5, 2.3, 1.5, 2.7, 2.1, 4.8, 10.8, 6.9, 1.8, 1.3, 1.2, 4.7, 2.4, 7.4, 5.7, 6.8, 1.5, 2.1, 9.25, 1.0, 18.95, 1.4, 1.8, 15.4, 2.4, 2.0, 1.2, 2.6, 1.5, 1.9, 2.1, 1.5, 1.7, 2.8, 6.3, 3.2, 1.6, 2.1, 10.7, 2.0, 8.2, 5.0, 8.3, 1.3, 3.6, 10.7, 1.9, 19.25, 4.7, 2.5, 15.55, 8.5, 12.4, 6.0, 1.3, 1.4, 2.0, 1.0, 12.2, 2.3, 1.5, 13.1, 10.4, 1.7, 10.2, 1.1, 13.0, 1.5, 2.2, 3.5, 4.0, 3.5, 14.1, 3.4, 1.9, 2.6, 2.2, 11.8, 1.2, 1.4, 2.2, 12.5, 5.4, 1.1, 1.4, 6.2, 4.4, 9.2, 1.8, 2.8, 1.6, 2.5, 11.0, 8.2, 2.9, 11.0, 7.3, 2.6, 15.4, 0.9, 6.9, 3.1, 4.25, 17.8, 4.8, 5.7, 8.6, 3.6, 1.9, 26.05, 4.5, 3.2, 1.9, 1.9, 2.5, 14.6, 7.25, 12.2, 4.7, 1.1, 1.6, 7.7, 1.6, 7.2, 1.2, 1.6, 1.3, 2.3, 6.3, 16.5, 3.3, 1.4, 6.2, 6.3, 7.7, 14.7, 9.8, 1.2, 1.0, 1.4, 5.3, 4.6, 8.65, 2.0, 4.9, 1.2, 1.0, 2.8, 4.2, 3.7, 4.1, 2.7, 2.9, 1.2, 1.2, 9.1, 6.3, 6.9, 13.6, 1.4, 2.1, 1.4, 5.0, 1.5, 1.55, 1.5, 10.4, 4.2, 6.7, 2.3, 9.9, 11.0, 3.2, 1.9, 3.3, 19.1, 1.2, 2.2, 4.9, 1.1, 9.3, 2.6, 1.9, 11.2, 8.0, 13.4, 5.1, 1.95, 4.7, 8.9, 4.8, 1.4, 2.2, 18.0, 17.3, 7.2, 4.1, 8.9, 1.7, 14.9, 1.1, 1.5, 14.6, 2.3, 1.1, 14.2, 1.2, 1.5, 9.6, 5.7, 2.7, 1.4, 12.7, 9.1, 10.5, 14.3, 6.5, 8.1, 1.1, 4.7, 1.0, 4.4, 1.6, 3.6, 7.4, 12.8, 0.8, 1.5, 2.2, 12.2, 1.6, 3.8, 2.8, 1.4, 8.2, 1.0, 1.9, 0.9, 12.15, 2.0, 4.3, 3.5, 5.6, 2.4, 4.2, 15.55, 2.3, 4.0, 8.7, 13.6, 5.4, 1.5, 6.4, 3.1, 15.15, 5.2, 4.8, 1.4, 2.4, 5.9, 2.7, 6.8, 1.1, 11.2, 3.3, 7.5, 2.8, 2.1, 1.1, 1.6, 9.5, 1.9, 1.4, 9.7, 1.3, 14.0, 1.8, 1.6, 3.5, 7.3, 1.1, 7.6, 1.1, 1.9, 1.6, 4.8, 1.5, 1.5, 17.55, 2.2, 15.6, 1.6, 1.6, 4.8, 7.4, 2.1, 12.8, 2.4, 2.7, 7.0, 1.1, 1.8, 1.9, 1.7, 7.9, 3.1, 18.6, 3.0, 6.9, 1.8, 7.4, 8.8, 1.2, 1.8, 14.9, 1.7, 2.8, 15.9, 4.2, 15.5, 1.7, 13.9, 9.65, 3.3, 7.5, 2.1, 2.5, 2.3, 3.3, 3.8, 2.0, 2.2, 10.9, 1.2, 1.6, 2.2, 10.4, 1.9, 12.7, 2.5, 8.1, 1.3, 9.6, 9.2, 14.5, 13.55, 10.5, 1.3, 1.6, 8.1, 1.0, 1.8, 1.1, 2.7, 3.5, 5.1, 1.3], \"xaxis\": \"x\", \"y\": [0.18439386755371057, 0.5750868907731637, 0.1132172353536568, 0.19850047615697952, 0.6950004168934912, 0.41826441672946313, 0.040828937665112974, 0.2145583871630251, 0.09143093017991866, 0.10013996234885614, 0.3658834999306372, 0.587897812361327, 0.23563705889496211, 0.5289998061994394, 0.5981734696485812, 0.5956194363709464, 0.11295199838815062, 0.6349332021584286, 0.09356782907078887, 0.0672754654033908, 0.3541579814831264, 0.11781588709523827, 0.3295981493457443, 0.23443288181779365, 0.13830133810679424, 0.5122546205578999, 0.03626449638205209, 0.32057959349203036, 0.3955164844050859, 0.21320459763992916, 0.08620177311633537, 0.4132497936565127, 0.19514157099220286, 0.028148892894647393, 0.03728071159582558, 0.20213762816504022, 0.39088790332760825, 0.10566618212719892, 0.11466232649727714, 0.09544364959788487, 0.07351553674018241, 0.3657542344632553, 0.05859665738698361, 0.43634835962676355, 0.4827032077898804, 0.516310366273556, 0.6480037931050455, 0.21122004543372697, 0.030344760075157406, 0.22750344576024595, 0.18673438423788624, 0.5460909738859347, 0.0666291073587214, 0.320234954276134, 0.515425573770442, 0.5751179393061847, 0.3262180383913996, 0.12192585741802231, 0.6165939755266235, 0.09365914315081003, 0.44259853952477324, 0.31958523161407537, 0.09228899111547839, 0.22815273642701062, 0.5282447951108347, 0.7777719169155834, 0.13834506443323813, 0.29425092810710396, 0.5300870647699181, 0.031947521718024174, 0.1108646816717751, 0.053339747820140615, 0.14466174791529418, 0.25697560969337485, 0.3383868137798065, 0.30803904997837983, 0.03434255320493995, 0.08689109251212201, 0.46044782253877736, 0.0973761441498977, 0.3449058470623745, 0.024212367984770777, 0.11665042079727428, 0.3333970234137619, 0.1495417879159372, 0.0679784404121434, 0.2360052425084116, 0.39147703437781534, 0.04428683932015287, 0.5381556738404795, 0.4357341587922019, 0.11843845992675284, 0.28107964630818494, 0.06989794698232743, 0.2658605825653322, 0.22408104406272966, 0.15519213452661884, 0.09873339188795927, 0.10739713799337769, 0.4712507279726723, 0.31257930793611366, 0.6259141532505736, 0.1651629894813923, 0.13024327386797574, 0.08242409751896962, 0.55355901104019, 0.11256152515999429, 0.22124325125588817, 0.05838775174278421, 0.6734770756819889, 0.06919042490492266, 0.5773286546676725, 0.5693181878572973, 0.12726917141891614, 0.27983888222674136, 0.15690954109554833, 0.18593824584442387, 0.05432525584274117, 0.33273366741371935, 0.12435295831370408, 0.48112847828662497, 0.2959384652215836, 0.5042039768350125, 0.3749869638443927, 0.7258627386781167, 0.4806866421912115, 0.6234335830956541, 0.4191951896523489, 0.20821728825178332, 0.6343085651912675, 0.27674577061671146, 0.02140654255666985, 0.42849246998341506, 0.1817444030106703, 0.4551538855951942, 0.05087080041524106, 0.516641204200833, 0.6810720245435042, 0.08151744899857294, 0.4475169494323581, 0.03995706953508171, 0.2181819033834006, 0.20372897255157485, 0.24305701296248816, 0.5381556738404795, 0.2358485729609252, 0.051323642447754336, 0.1913631294907303, 0.32154631204965056, 0.31229802093755377, 0.3917329141436472, 0.39462053822053156, 0.3680669306910641, 0.5017894292511481, 0.32120711190509066, 0.0768019282386515, 0.1168769044932052, 0.31545143431826594, 0.12007957373947853, 0.08354361700756141, 0.2180731800932174, 0.7653011157176768, 0.05076221583963347, 0.11739077279846111, 0.3639458403519926, 0.4815918747301601, 0.35998732468747585, 0.457353694020342, 0.5520498791697908, 0.22168281241722143, 0.2132287846887433, 0.4763394582576197, 0.3040153802820409, 0.20749766415549342, 0.3316810644107503, 0.8126297477835096, 0.5749367295182395, 0.27274039590582944, 0.2685808245693546, 0.5172108675362206, 0.33506587713796443, 0.09616672688355288, 0.041108213935392324, 0.10548050716105373, 0.5016695616404938, 0.20022874051447226, 0.14220640128276774, 0.23772630779738468, 0.19606080251004787, 0.2603188495268066, 0.18846597668723208, 0.19827111133563302, 0.261548791893628, 0.4140325207077993, 0.8134796325151183, 0.12265695643958285, 0.6311167068993262, 0.13481820177301163, 0.0932384579037443, 0.14050160114126486, 0.2562249115981724, 0.08547750670655718, 0.08643201081848362, 0.19981675431015722, 0.31390222338706264, 0.06221739913672386, 0.06996303880871468, 0.30029370289300306, 0.4306817897420764, 0.6595343859760441, 0.2839408857911616, 0.20468539219890003, 0.1130196126722065, 0.2360017176902124, 0.13187147729288817, 0.42313120297864704, 0.06964897436687001, 0.1624399718171824, 0.17200815643270417, 0.07333105637055992, 0.2440137653363641, 0.4900110333069776, 0.3085554157386313, 0.03480496731142946, 0.12148031785507996, 0.15002971926037112, 0.5314247042003052, 0.2758453007685677, 0.2151852748992088, 0.2658605825653322, 0.29911225563077193, 0.6594110243744711, 0.49869782335001445, 0.16788254706683048, 0.11816213334465087, 0.08230909248122409, 0.13653212507346946, 0.25639170942272826, 0.06562233405876228, 0.23311900627036541, 0.3756616197417655, 0.46674395287949066, 0.3092684534350997, 0.8337319641197457, 0.8331457111467163, 0.2591056156836542, 0.4778687671024334, 0.2542440524586721, 0.5361036306539362, 0.07073721340803463, 0.4731688813159418, 0.5755848065786346, 0.356689463387698, 0.14225616860197343, 0.21837916002376445, 0.14466174791529418, 0.29899643271856946, 0.4757427727983842, 0.08126799884203029, 0.1296501822378736, 0.3286954654423938, 0.08620177311633537, 0.13855855420831553, 0.05543377339452393, 0.11917834098009661, 0.2613621884509647, 0.11269900223777074, 0.08429051026621415, 0.3393961441870107, 0.07031960314855146, 0.11356777592095357, 0.4853279864284006, 0.1279289285514792, 0.0584572339054259, 0.08612988585012649, 0.3472440907423937, 0.1248029959061332, 0.07502335399434323, 0.19827111133563302, 0.3424151534036639, 0.3065175956815872, 0.13808860398564737, 0.058092197534895806, 0.04082786106581715, 0.1602592849246841, 0.09156161599234125, 0.5036030690663805, 0.2640411824475748, 0.6468038092930676, 0.07201805208597656, 0.22470230804277058, 0.1334773721572423, 0.04847889440667685, 0.2685808245693546, 0.10911308148570098, 0.6764508967260475, 0.6280060594576413, 0.36761958218269275, 0.16019930342079847, 0.17605308658107655, 0.14078981831089854, 0.2384997092801764, 0.13117402490907393, 0.12818959986091483, 0.4161925244315118, 0.12435295831370408, 0.09814942480303201, 0.05480698563416486, 0.3746187330143109, 0.41092354232892336, 0.507894749900129, 0.5137929421583434, 0.08293523366016065, 0.2964416548030494, 0.15236141109070434, 0.4396941021426354, 0.41893931094950754, 0.09113953260801844, 0.10967473999240707, 0.055732078845942, 0.05640314085190745, 0.06176263301115803, 0.06427139521062619, 0.20386133178572885, 0.21597661143113533, 0.7486409492386699, 0.2610715902497083, 0.09465277491899493, 0.5556171757583562, 0.137718889647652, 0.1978940751503777, 0.08472590699531857, 0.356262641598029, 0.14596950445002987, 0.13865818299932142, 0.3088915816821678, 0.11516321289421916, 0.16121169033174265, 0.40573483691789825, 0.34308606282264, 0.36300204724896845, 0.17193414756867276, 0.035926383178341514, 0.34536882843285344, 0.4400180463892147, 0.5165194668234709, 0.23319834124303085, 0.9637923675569924, 0.2635599134550337, 0.6259141532505736, 0.12324962258280003, 0.1256037712827487, 0.1248029959061332, 0.11665042079727428, 0.29081136443782263, 0.12993062945549005, 0.20959981847797426, 0.12385816607190492, 0.16931651488884025, 0.2468284110987674, 0.6181879252747016, 0.3509541008179864, 0.08619429866610873, 0.09537770951135394, 0.8204393830764495, 0.2493836920976743, 0.10367142046182065, 0.11516383353466464, 0.07169627826225977, 0.5400384130096556, 0.2709141565803237, 0.16809050322974173, 0.3421981324687273, 0.812724325423183, 0.1326589750154965, 0.054670132935181304, 0.055346153509382656, 0.8039442695404772, 0.3276168958360183, 0.6561718697940482, 0.6214102617950452, 0.3046829516703813, 0.7853649284745584, 0.7303620793003476, 0.6719087507962026, 0.16000678121984613, 0.579612101366232, 0.6347749924714103, 0.41894393066564606, 0.06936532322770372, 0.28322834609079706, 0.343263893078516, 0.4450860003239352, 0.3090838478611311, 0.408095736797927, 0.11529682880263803, 0.13359771811640497, 0.2417229185475579, 0.10092265889692065, 0.8181934133883563, 0.3777834313813965, 0.8273808576462511, 0.18439353202429143, 0.5148786056082297, 0.11287077888712382, 0.16015059460472458, 0.29672938182784603, 0.36944561074938853, 0.2505850522824452, 0.8467591712977676, 0.3840267097226593, 0.261779448872241, 0.1645479955558209, 0.14631295673285594, 0.4248523287309329, 0.09222807982804315, 0.2121484308544801, 0.33273366741371935, 0.5470626312455473, 0.8294144697045585, 0.25206662215500397, 0.15998368749433245, 0.548322128117227, 0.3917329141436472, 0.15981565308588508, 0.23631147082452741, 0.21082920466209698, 0.1871387197916503, 0.24774693401855818, 0.1913242313933492, 0.16437448769677154, 0.07582203648947516, 0.032541140295091364, 0.06311143057978008, 0.5009235508757715, 0.12343879567504301, 0.445735807756371, 0.40322837553658053, 0.09397553936597514, 0.1598391281143201, 0.26702494168661406, 0.19782301216908982, 0.06831823449824892, 0.5451167746582685, 0.20142160156100697, 0.25747632252511843, 0.4257317671215596, 0.5062318064185062, 0.10278357133077332, 0.10857266292312517, 0.06223864817381186, 0.11377411494697365, 0.14082424186384768, 0.2589321903149734, 0.31776639873426016, 0.07983414941561229, 0.30174211068680845, 0.42532907678292176, 0.23734670470511587, 0.2862296469110084, 0.24790288035387664, 0.5526146374040077, 0.20425399436950087, 0.5166825128498294, 0.12415322942140417, 0.5310696157212036, 0.3866387435262121, 0.14313186082947948, 0.31648660326859934, 0.026792916001305622, 0.7856428374245099, 0.42383310375799566, 0.5944566396871084, 0.6256605001243821, 0.08813642250468567, 0.03544811528140901, 0.06935406654889886, 0.15751976448865512, 0.22608551288474832, 0.3127311228465576, 0.1409438166611655, 0.3285615524533705, 0.3591330499592894, 0.47964497307801546, 0.7143146030302826, 0.14223944449319303, 0.06929054967731618, 0.32120711190509066, 0.16913647442041335, 0.707286257884667, 0.3230684446475647, 0.7616845263358343, 0.4104900542879092, 0.10053249234255524, 0.1106599594415556, 0.1543174595222413, 0.46003879185641183, 0.3811350878514418, 0.07185070571861518, 0.23882593985771994, 0.5344976262521839, 0.11031385635331636, 0.09610989844306939, 0.4955559099445003, 0.07845190603324759, 0.30697262074812925, 0.12767551958037127, 0.4375661224395835, 0.07737023387634634, 0.15307682457740834, 0.05694427046787409, 0.09028836937410878, 0.4011292297732457, 0.6186146927451245, 0.11561676905211238, 0.0993047499370594, 0.08102401279833105, 0.8100206966555492, 0.10768932514586738, 0.15386113005635593, 0.4026560765644126, 0.045535707525545144, 0.08229583319403, 0.08227601457953415, 0.8241544781987433, 0.0759900855540333, 0.5147505197509459, 0.11103147778198663, 0.42144961755966015, 0.24880465403270857, 0.3112403223054312, 0.3282460941643247, 0.28312386083977936, 0.2865521931047814, 0.16537364909659502, 0.4284132019637321, 0.34116073112729894, 0.051142721309942685, 0.10794707492381372, 0.1108646816717751, 0.29201805921023904, 0.07365131996157204, 0.36851051207096197, 0.2556143611338999, 0.07392456180697715, 0.045535707525545144, 0.15025986810093994, 0.4395989822566938, 0.19636656988846957, 0.21018464628148859, 0.15085686628779282, 0.3429118439192298, 0.16104008564300487, 0.2055862423584408, 0.18673310211333727, 0.5528531989583015, 0.20219789553586287, 0.5807830339134155, 0.6112381610839525, 0.07515362639458067, 0.5722084734915175, 0.3654892991508686, 0.1991057466826236, 0.4912569401667811, 0.05850610073101081, 0.3077884117234785, 0.17038242498240874, 0.14066607718466684, 0.10248584652416493, 0.4022873718442217, 0.07205214632436985, 0.35142291824287475, 0.10941760034103376, 0.06679271580157364, 0.05675388891699207, 0.058987921856350156, 0.3660303223369904, 0.28790374422385034, 0.4158290962648631, 0.40710291595796666, 0.09934102670994882, 0.06362846635195196, 0.30921476208988685, 0.23242198019285765, 0.055541210656895434, 0.5297663836663529, 0.10744632778983743, 0.18410212910939194, 0.17721960751489196, 0.1962664672709783, 0.1617648996714035, 0.10584426414108294, 0.5203501665477333, 0.07365131996157204, 0.31578819840495265, 0.35364190165315845, 0.1707951928721818, 0.41655733121321636, 0.15801546378512366, 0.7568436608419439, 0.22368578646300386, 0.0609449253562836, 0.2225096762928218, 0.18587673368692093, 0.05559101133196209, 0.569598540521716, 0.08073228430722412, 0.15724041301590164, 0.12879141548479, 0.4306817897420764, 0.17998791969802397, 0.41280880088413996, 0.5723062335690389, 0.6457404130724687, 0.10420061808672998, 0.12564769853034463, 0.21795029564941848, 0.4720930498870375, 0.11304202998506685, 0.545112257205237, 0.14852188644910969, 0.17217029085021085, 0.336250902618187, 0.48671482860553816, 0.5093433434984792, 0.35847801144896685, 0.3008706318705062, 0.18494609259573758, 0.4199330463236065, 0.04162287990776414, 0.2633909944023186, 0.4252182303976608, 0.4684623303117058, 0.1925553058603695, 0.09610989844306939, 0.09129843496680234, 0.3302708189676917, 0.4199330463236065, 0.11927294568859859, 0.4864154015695107, 0.06472081497616611, 0.6387929002666255, 0.37932906694235924, 0.093713747684541, 0.20627971812824875], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (curr)\", \"type\": \"scatter\", \"x\": [2.5, 4.7, 7.0, 2.3, 19.45, 22.0, 13.15, 1.6, 1.7, 2.3, 4.3, 1.2, 6.4, 7.2, 14.3, 18.1, 7.6, 2.7, 4.9, 1.1, 1.4, 17.2, 4.9, 11.8, 1.6, 1.7, 2.1, 14.8, 0.7, 0.8, 11.95, 1.1, 2.5, 2.3, 1.0, 1.7, 2.3, 1.5, 4.9, 1.4, 4.1, 2.0, 11.2, 15.2, 1.4, 1.7, 3.4, 2.2, 19.3, 6.1, 7.0, 18.35, 6.9, 2.4, 2.6, 1.8, 2.0, 4.2, 10.5, 15.4, 4.2, 8.3, 7.7, 2.9, 10.7, 2.0, 1.4, 1.9, 3.0, 1.6, 2.1, 2.5, 1.3, 1.6, 7.7, 1.2, 18.75, 1.7, 1.0, 1.9, 9.3, 1.6, 12.6, 2.0, 1.7, 1.7, 4.8, 13.7, 1.2, 6.1, 7.1, 1.9, 2.0, 14.3, 1.9, 2.1, 11.7, 3.9, 9.7, 8.1, 2.5, 6.5, 18.1, 1.8, 1.5, 2.1, 1.9, 1.4, 5.1, 13.7, 1.6, 14.5, 1.9, 1.3, 1.2, 10.7, 12.3, 4.9, 8.3, 2.1, 14.95, 1.8, 1.7, 1.6, 2.0, 7.0, 1.2, 11.1, 2.0, 5.1, 1.4, 15.6, 14.3, 1.0, 2.0, 11.0, 1.8, 3.0, 10.4, 6.6, 6.7, 1.7, 1.2, 5.1, 2.3, 12.1, 2.0, 1.6, 1.9, 9.5, 0.8, 13.3, 5.5, 7.7, 1.5, 1.4, 12.1, 8.2, 10.0, 12.6, 2.0, 15.6, 1.4, 13.5, 4.4, 7.8, 1.1, 1.6, 5.6, 8.6, 16.05, 10.4, 1.9, 1.8, 1.9, 1.4, 1.0, 11.6, 10.3, 15.8, 1.5, 5.1, 2.7, 1.1, 15.1, 1.4, 8.1, 17.8, 1.3, 7.9, 2.3, 3.75, 7.8, 1.4, 10.8, 2.0, 1.2, 6.4, 14.5, 11.8, 1.8, 13.2, 14.9, 15.4, 1.25, 15.7, 6.9, 2.2, 12.9, 10.2, 7.3, 5.0, 2.1, 1.1, 6.8, 2.7, 11.1, 9.7, 1.4, 1.6, 11.2, 8.0, 9.2, 6.8, 1.6, 10.4, 2.0, 3.9, 1.2, 1.0, 17.9, 1.6, 17.1, 10.7, 1.9, 8.8, 1.0, 1.4, 14.3, 2.0, 7.7, 2.3, 2.0, 9.6, 0.9, 5.9, 1.5, 5.4, 13.7, 6.1, 1.6, 16.0, 10.7, 10.6, 2.5, 16.3, 9.6, 4.6, 8.9, 2.5, 2.4, 1.6, 11.9, 11.9, 2.6, 1.3, 6.0, 1.6, 1.9, 8.9, 1.5, 2.6, 17.85, 6.4, 2.0, 1.8, 15.6, 2.7, 2.4, 11.2, 2.6, 17.75, 1.15, 1.3, 3.8, 1.2, 0.9, 4.5, 1.35, 2.5, 7.7, 7.0, 8.5, 2.7, 5.2, 2.2, 0.9, 7.8, 15.8, 2.3, 1.8, 2.6, 7.0, 11.9, 12.1, 1.0, 3.1, 10.1, 15.4, 8.1, 1.6, 2.0, 1.3, 17.8, 2.0, 13.6, 1.7, 8.1, 1.3, 2.8, 2.55, 1.7, 17.8, 5.6, 3.45, 10.1, 17.9, 1.4, 8.0, 1.3, 2.5, 11.4, 1.2, 1.6, 2.2, 1.3, 0.8, 1.3, 17.1, 5.2, 8.1, 2.4, 2.0, 2.0, 2.1, 1.3, 8.2, 2.5, 17.1, 1.3, 2.7, 2.0], \"xaxis\": \"x2\", \"y\": [0.18579927887031134, 0.9274202256360236, 0.2569067617886446, 0.17851375722123963, 0.43011516789686843, 0.3951880410340851, 0.35333307802371594, 0.854899199395705, 0.7749695319329993, 0.7150752736216004, 0.5793836726576811, 0.17187478758168062, 0.503776006633781, 0.6517104478925241, 0.5321166645488455, 0.4291031613352281, 0.6295132227815239, 0.446367751604861, 0.12978626497489776, 0.578130474122496, 0.1303225049324246, 0.4589423036505589, 0.6028673022099313, 0.6724998803801079, 0.055171077290688375, 0.28900585249094113, 0.5807441942986169, 0.6324527530146118, 0.32780881811994433, 0.4437792729685527, 0.47375733914823626, 0.6755390392614542, 0.8494338455743565, 0.8432302027568838, 0.3962269303969661, 0.36574887203466033, 0.9780529644634413, 0.6757083557066426, 0.43212531492562845, 0.6428319532862445, 0.2244465690609686, 0.6759712108962084, 0.300575337785698, 0.4848467547623382, 0.24353241802821812, 0.6165640897352094, 0.801889943514816, 0.6831580296641933, 0.4684052737322374, 0.07309555507266852, 0.17397747102053363, 0.548208100621717, 0.16948307959681597, 0.5287139706981401, 0.8097217619362252, 0.48186532860504816, 0.7044722268129955, 0.5458559966555334, 0.6067015953642416, 0.5767206748937392, 0.5416109283549078, 0.7766135747357961, 0.6371580804073698, 0.3290646799011723, 0.53941953634433, 0.7444876216695655, 0.27658524567301757, 0.8518717737266248, 0.685064206005921, 0.7994946846943811, 0.6254668451144636, 0.29898447003196504, 0.36566585814722175, 0.8260679099411251, 0.265003746926769, 0.18277705216857454, 0.6401445853260315, 0.2878944788643705, 0.7379395090268356, 0.6578861964269485, 0.3048731186933995, 0.6479177870210828, 0.5479007895539181, 0.8109237991420157, 0.4555798348891207, 0.35159410271621183, 0.6741813074403022, 0.40366163192193316, 0.3797333752177462, 0.42326140605337403, 0.49450075158901585, 0.7027754368270075, 0.31556666432085356, 0.5737052492708005, 0.5594846166878963, 0.9879213229528466, 0.23907110553933086, 0.7604887601700165, 0.906894853259191, 0.49150798334893764, 0.6693239074263375, 0.635181004157038, 0.4291031613352281, 0.6805197940362542, 0.8579270215873258, 0.42231028799440284, 0.7973836574204367, 0.6209099995125147, 0.617932351579841, 0.5867531689564582, 0.8217385626893267, 0.5766058512754557, 0.6085190813519714, 0.6488649586424557, 0.19466062481522506, 0.4062994677131635, 0.31500574198466447, 0.6106996692323751, 0.48314991346809855, 0.4300926711133176, 0.4623912750166579, 0.18141675383529432, 0.7404949196358439, 0.7960551628311661, 0.6696955469146251, 0.7471897031921468, 0.15222801432328747, 0.4782875749995391, 0.6696955469146251, 0.4617114467660769, 0.0374236133971757, 0.34638250956587036, 0.5737052492708005, 0.35412183815676124, 0.5342599897609015, 0.6273126624389191, 0.1819914526651868, 0.6450640502472667, 0.7576359910572065, 0.6363669366758954, 0.35783776888428775, 0.4555798348891207, 0.2603691587203709, 0.09638465351539516, 0.7889843001267657, 0.3995975535535492, 0.2404138117262561, 0.5134503976671381, 0.7620160241108803, 0.4852174766770502, 0.7934067722809752, 0.5657371707019572, 0.40591517497640706, 0.5142806824729376, 0.4667389755277017, 0.4597803030361328, 0.14211531046105408, 0.4709774325404933, 0.39253304933110444, 0.8152160844894966, 0.6418608562675732, 0.5695619245525361, 0.15898796250578873, 0.4189913516486339, 0.8097376625536354, 0.2776505479619531, 0.14100712613869515, 0.1625374057836978, 0.21879614767173305, 0.26016804821119, 0.5884346274074399, 0.25171266030158634, 0.5556828679884147, 0.2886326125606653, 0.5013044750460076, 0.23728971353361283, 0.6280660923097139, 0.6281218947904323, 0.6226708394296439, 0.1280348372312241, 0.37812375401711507, 0.6218606462016874, 0.446367751604861, 0.5237591509200082, 0.22560064672115399, 0.4159575064805634, 0.43989745285902637, 0.38133093816728936, 0.379388299643832, 0.4244201113870294, 0.8495234946343055, 0.44699506619782237, 0.3402560380560977, 0.16997778820688525, 0.6509841470756508, 0.5589353890471914, 0.49320900326902484, 0.41485179365651337, 0.2850172536812061, 0.5150740024049856, 0.7905789411902706, 0.6660097546858721, 0.5916856454756931, 0.25029771644034415, 0.21820707607863943, 0.23625780462752244, 0.6174344585079109, 0.33885175059010386, 0.8097775874289167, 0.5502791542248897, 0.45232673966787307, 0.5168725346003686, 0.4922951659433321, 0.2710495410551712, 0.5620189509382074, 0.19827785442852286, 0.35653263682836045, 0.4940220265254579, 0.3934632807735441, 0.349631294967786, 0.6543252873397565, 0.6043841099981286, 0.6572212454398962, 0.5323595728841377, 0.4667716613599331, 0.5480891857555714, 0.5933716837007499, 0.5769442381274095, 0.7796710482718338, 0.4721284230669528, 0.5632051337005155, 0.25606657060722404, 0.47304849589761655, 0.4991199345133047, 0.785831825438318, 0.5512091114854263, 0.31651464458218903, 0.192246895102814, 0.5737052492708005, 0.14970485751781393, 0.8257882443178004, 0.7450862811651306, 0.2404138117262561, 0.3428275867057816, 0.2186811050870735, 0.43730933466596944, 0.1325711740116582, 0.33994853494016564, 0.5172250338280965, 0.4543852880840521, 0.6017244994332274, 0.7267617626256621, 0.304103470637073, 0.49511795227452726, 0.4577650902534979, 0.4389063253281036, 0.3428275867057816, 0.6911248892501751, 0.5457123873353599, 0.3395528272139201, 0.5662837862370104, 0.38281068028313525, 0.1899488449656659, 0.1899488449656659, 0.39416742153886597, 0.4473524415330049, 0.5724944828663213, 0.12652799787397961, 0.14917046216496987, 0.4192276293132746, 0.1727250451072272, 0.7329347521090118, 0.2979855805324535, 0.5384433083808008, 0.2944152049751758, 0.5661013076544325, 0.39283078357423706, 0.6503174362647687, 0.7632350838020857, 0.29422440231251745, 0.8446099855685041, 0.3812461384129847, 0.1264117171095669, 0.6995051325026098, 0.7680829457938805, 0.1086082602083136, 0.50228427853815, 0.8303888649041977, 0.15145052047802054, 0.5239967242043768, 0.49461569007297057, 0.7323984730128237, 0.6372335578763709, 0.8485373319296128, 0.21018203617182263, 0.3854703692354019, 0.6209619763202376, 0.6996467359659702, 0.3913887983225227, 0.600932061108284, 0.18141675383529432, 0.32841971343371723, 0.17397747102053363, 0.3943097935149382, 0.5998672378660981, 0.6052803835931642, 0.35501406908939237, 0.4362847089434372, 0.6005057903956104, 0.45095984485898877, 0.5601124581139871, 0.6908342266509375, 0.29066967723125237, 0.5437491575180791, 0.5955595524057149, 0.4226516353037165, 0.552222307965348, 0.5038457784615318, 0.6752568781943777, 0.7880730680059006, 0.09430965090665133, 0.4986183600001317, 0.24112389044610405, 0.3635071851353404, 0.7047195247497422, 0.5251048099479148, 0.5632051337005155, 0.4520037684813636, 0.5271857161160298, 0.36566585814722175, 0.8775119234978208, 0.49474741138534273, 0.17187478758168062, 0.1069918390347242, 0.6371627391106971, 0.19018032574493748, 0.34352259564225396, 0.806114950115292, 0.47304849589761655, 0.5014153035286022, 0.6721952796384192, 0.7507248720260316, 0.38512814216859315, 0.8930847268109882, 0.863224561659591, 0.15108072818859253, 0.7399796913917198, 0.18579927887031134, 0.47304849589761655, 0.2033384066370545, 0.43667652058029827, 0.23252054766636898], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [3.5, 14.3, 1.2, 2.2, 2.3, 1.2, 1.2, 8.0, 2.1, 1.6, 2.7, 1.3, 1.2, 9.65, 4.3, 1.2, 1.4, 2.8, 2.1, 3.2, 14.2, 14.5, 0.9, 1.1, 7.2, 1.2, 9.1, 3.95, 3.6, 4.7, 1.8, 6.2, 15.0, 6.4, 1.5, 1.2, 2.6, 7.9, 3.95, 1.9, 7.5, 2.5, 14.0, 13.0, 2.0, 2.3, 16.85, 1.9, 10.3, 1.7, 2.0, 3.9, 9.3, 1.0, 7.0, 14.1, 8.2, 1.8, 11.4, 1.7, 2.3, 20.3, 5.5, 9.7, 7.1, 2.1, 8.1, 6.7, 1.8, 1.3, 14.4, 2.4, 11.0, 7.4, 13.2, 12.3, 19.95, 1.7, 1.7, 1.9, 1.5, 1.0, 2.4, 2.1, 9.7, 3.1, 1.5, 14.5, 6.6, 1.6, 12.7, 7.4, 3.6, 1.4, 1.6, 6.5, 1.4, 4.6, 1.8, 2.1, 7.1, 9.9, 2.0, 2.1, 14.4, 10.9, 2.0, 9.0, 2.5, 2.8, 13.0, 31.6, 8.2, 1.7, 5.0, 2.2, 2.7, 1.4, 12.2, 3.2, 11.8, 1.5, 2.8, 1.4, 2.1, 2.1, 1.9, 4.7, 2.6, 1.8, 5.1, 1.8, 1.7, 17.5, 1.4, 17.1, 1.6, 2.5, 5.2, 1.6, 4.4, 3.2, 2.8, 8.5, 13.1, 1.2, 13.8, 5.6, 6.2, 1.1, 10.3, 1.0, 11.7, 16.2, 1.6, 2.8, 1.5, 2.0, 1.3, 14.2, 1.6, 2.0, 6.1, 8.2, 2.5, 1.2, 4.6, 2.2, 2.4, 1.1, 1.4, 1.1, 15.2, 4.7, 7.5, 4.2, 1.6, 7.8, 3.5, 2.4, 5.2, 10.8, 1.3, 3.4, 9.0, 1.8, 2.1, 4.8, 20.7, 2.2, 7.4, 17.3, 2.2, 2.3, 4.7, 4.9, 3.7, 1.6, 13.8, 8.2, 5.7, 1.7, 4.4, 5.9, 8.7, 2.1, 4.3, 6.55, 1.6, 12.9, 5.4, 2.2, 1.7, 2.9, 2.2, 7.6, 1.3, 3.3, 6.3, 1.8, 5.3, 7.3, 2.4, 7.1, 13.7, 10.2, 3.0, 5.3, 2.4, 1.5, 4.1, 6.9, 8.0, 7.1, 2.1, 11.8, 3.3, 1.4, 9.1, 1.2, 5.5, 7.9, 11.1, 1.8, 1.9, 2.3, 13.9, 14.5, 1.2, 2.7, 1.6, 12.0, 14.1, 2.7, 12.85, 14.8, 1.6, 1.1, 2.1, 2.7, 2.1, 7.2, 1.2, 5.4, 4.6, 2.0, 2.6, 12.6, 7.4, 10.2, 8.6, 4.2, 2.5, 2.6, 8.8, 1.8, 1.3, 7.2, 1.1, 2.2, 1.8, 1.7, 6.2, 10.8, 7.75, 2.7, 6.6, 1.0, 7.1, 1.5, 3.0, 2.4, 13.3, 2.1, 2.8, 7.75, 15.8, 5.0, 20.8, 6.4, 2.4, 1.4, 4.1, 6.0, 13.2, 2.1, 1.5, 5.4, 1.8, 2.6, 16.8, 5.0, 4.4, 13.0, 1.1, 1.2, 11.6, 1.3, 3.5, 2.9, 5.7, 15.5, 4.8, 15.55, 5.1, 2.7, 3.8, 1.8, 14.2, 5.3, 1.9, 12.5, 2.6, 10.4, 1.2, 4.1, 14.2, 12.5, 8.3, 2.0, 3.8, 10.7, 8.2, 2.1, 1.9, 9.8, 6.5, 0.9, 2.7, 2.6, 13.0, 1.4, 13.4, 16.2, 10.2, 4.9, 2.0, 7.0, 12.7, 2.4, 6.2, 8.6, 2.6, 15.55, 1.4, 7.3, 16.0, 7.0, 16.8, 3.2, 1.2, 6.2, 1.2, 1.0, 4.6, 5.5, 1.1, 10.8, 2.2, 10.2, 11.75, 6.0, 7.4, 7.4, 1.9, 2.1, 1.6, 1.2, 2.4, 5.1, 7.4, 19.95, 3.8, 16.1, 5.4, 2.6, 18.95, 2.3, 2.0, 1.5, 2.1, 4.4, 1.8, 17.5, 2.3, 12.8, 13.3, 1.4, 14.7, 4.7, 1.4, 2.5, 1.1, 1.5, 10.3, 3.0, 6.8, 2.4, 7.1, 7.0, 1.2, 1.8, 2.65, 2.4, 2.1, 2.8, 7.4, 11.5, 1.6, 1.3, 2.6, 1.2, 1.7, 1.4, 1.9, 1.9, 4.3, 13.2, 1.9, 12.8, 12.8, 1.7, 8.6, 5.7, 3.2, 2.0, 1.6, 2.4, 2.0, 2.5, 14.7, 1.8, 1.4, 1.5, 17.55, 1.8, 13.55, 1.0, 12.0, 3.6, 3.85, 4.0, 1.2, 15.4, 6.5, 1.4, 9.1, 1.1, 3.0, 2.5, 6.6, 8.1, 2.4, 15.5, 1.7, 11.3, 5.7, 1.4, 1.4, 2.0, 6.3, 4.7, 2.5, 1.8, 7.4, 9.3, 10.55, 2.9, 1.7, 2.2, 1.5, 14.75, 2.4, 2.4, 3.5, 1.8, 1.5, 2.8, 1.2, 2.0, 1.3, 10.5, 12.8, 1.2, 1.9, 16.0, 7.7, 2.3, 2.9, 1.6, 2.1, 1.1, 1.6, 3.7, 8.0, 1.9, 8.8, 6.7, 7.3, 2.5, 3.7, 2.6, 1.3, 8.3, 1.3, 11.2, 5.2, 4.7, 9.2, 12.7, 2.5, 7.4, 13.2, 1.8, 2.1, 5.25, 3.65, 15.75, 1.9, 13.65, 4.9, 9.15, 1.9, 2.5, 0.9, 14.0, 2.6, 2.8, 1.8, 12.8, 17.5, 8.25, 1.9, 1.6, 1.5, 6.9, 2.4, 1.3, 1.2, 6.7, 14.8, 12.7, 13.7, 2.0, 1.3, 1.6, 9.25, 12.9, 1.0, 4.7, 1.7, 10.8, 1.1, 19.95, 1.1, 1.2, 9.7, 6.7, 1.6, 2.3, 5.3, 13.6, 11.4, 1.6, 1.4, 2.6, 2.4, 10.6, 4.6, 2.2, 1.7, 2.0, 1.5, 5.0, 2.0, 2.6, 4.6, 12.7, 5.7, 6.3, 6.7, 8.2, 7.1, 2.0, 0.8, 2.0, 1.9, 1.3, 1.7, 1.1, 1.1, 9.85, 1.2, 1.1, 2.1, 9.5, 1.7, 8.0, 13.65, 7.9, 4.4, 9.55, 1.1, 7.9, 1.8, 2.2, 1.1, 5.9, 2.4, 6.0, 2.0, 2.9, 1.4, 2.1, 5.2, 5.8, 1.8, 2.0, 2.3, 15.1, 2.3, 16.8, 13.8, 1.5, 12.2, 8.2, 4.3, 8.9], \"xaxis\": \"x2\", \"y\": [0.6660328535674787, 0.4955559099445003, 0.11251030999551548, 0.5313240922219649, 0.7616845263358343, 0.42881839881496897, 0.22146723198036844, 0.2709448900825402, 0.04188686298684474, 0.3198999677935893, 0.586632325439729, 0.3332859260788763, 0.0891770245136605, 0.07249138429342028, 0.0813041402249215, 0.2808128557304226, 0.18155424903412543, 0.14020593233116785, 0.20529540916933675, 0.1755850319354616, 0.5722846846512241, 0.4684623303117058, 0.2863708053899042, 0.4489302200945696, 0.3606737334686688, 0.09834172337505831, 0.1439119889738254, 0.10526388551166177, 0.08976738859769384, 0.15927641460572795, 0.07353544332944184, 0.4894096639868448, 0.24735122968283396, 0.41440459167745447, 0.10107859516115147, 0.4809249647595707, 0.043928674649753696, 0.27268427565697984, 0.07203278686513981, 0.35989685204578803, 0.08410225657903847, 0.09640449279894714, 0.2859044620344169, 0.766491644508495, 0.27194216744256416, 0.11891721880979944, 0.6033870782914414, 0.8445823904457724, 0.4148378249676725, 0.09538880480821377, 0.5822786697287807, 0.2006236885231063, 0.30215903380660414, 0.3526626332448971, 0.22921561702294402, 0.3499358724503807, 0.451050436906263, 0.01968005574460141, 0.3849224947932618, 0.608666907839271, 0.30333177217190177, 0.05732515971384944, 0.08299070223644744, 0.155374347961305, 0.4378217303747408, 0.10641916767178827, 0.3207785913922725, 0.3280003244598044, 0.4747408725557203, 0.27229542413121455, 0.5314247042003052, 0.13834506443323813, 0.652508483608137, 0.1775869136191267, 0.4659209431511335, 0.3288332341233703, 0.47224603889779837, 0.2773569186284155, 0.18590272545123854, 0.6719763059805124, 0.04569198037744582, 0.22473444069733528, 0.0776074933333939, 0.1411968215808168, 0.3654892991508686, 0.06069899520469324, 0.21029328672965164, 0.13919371635861133, 0.16321149678759816, 0.6144435769482088, 0.1388055550317996, 0.0827658987104557, 0.0793107693477757, 0.04994940743047871, 0.46220165202879504, 0.08265172102971341, 0.5554564865761329, 0.10902951494304747, 0.26480674198345266, 0.31816712550642645, 0.20184400370343658, 0.23734670470511587, 0.19264674509953905, 0.03558879485690103, 0.5314247042003052, 0.3013473679880785, 0.8043030592862955, 0.07665185966197174, 0.17816243980233548, 0.14637302723887635, 0.43623195291339645, 0.5773286546676725, 0.06996409198491005, 0.0635191394270278, 0.11839391684253864, 0.03368970372860669, 0.16544292122901683, 0.5002106013252752, 0.20783967621931676, 0.4413184352618238, 0.1377753535318076, 0.017128038770129694, 0.09070427960766203, 0.05237321155563324, 0.46044782253877736, 0.09863911308639095, 0.6058955548956951, 0.07377868677997379, 0.33726125667837825, 0.03705661785513226, 0.03856885477325478, 0.01970319875133708, 0.06623921298607705, 0.655672818127978, 0.36403826442427, 0.375635621083512, 0.25822104517587474, 0.26990817233175546, 0.30316845466795117, 0.21597661143113533, 0.10411587283779344, 0.4582573305440075, 0.28974208538397184, 0.3995654588450376, 0.48407929824265805, 0.2412117545349558, 0.49704114689177337, 0.3112403223054312, 0.13571503940671914, 0.35304273602320047, 0.18963603484652192, 0.06023564559469896, 0.305863422303413, 0.34062746964654456, 0.03532029949184434, 0.20200996882548472, 0.207876095289533, 0.11304202998506685, 0.26487496820305634, 0.46674395287949066, 0.05931266843465788, 0.6063731497207538, 0.053339747820140615, 0.16056749669580483, 0.3366557342021428, 0.18735912995827353, 0.2667542380283816, 0.9197592959547904, 0.13322255285490225, 0.3533185668595151, 0.08763312389948397, 0.343329095265401, 0.1298321532292276, 0.11240742021865013, 0.03412749239977686, 0.23316671381479437, 0.13955591125269062, 0.065615492475942, 0.03940539431326806, 0.04874684240881699, 0.42507109047861347, 0.3720756994829524, 0.20627971812824875, 0.23346983492740092, 0.299872058778726, 0.14688925552714138, 0.20529540916933675, 0.11294333341234963, 0.4523771212155355, 0.15895981664313275, 0.12633289347617382, 0.34801013400503944, 0.063056887931354, 0.09222807982804315, 0.19281104432210028, 0.11843845992675284, 0.1064686731970873, 0.12171087020281346, 0.49704114689177337, 0.4202798549667376, 0.058322454167927695, 0.40418598015134155, 0.7514842711311043, 0.067978575311199, 0.1468497162592186, 0.3655805321171328, 0.36741292271676196, 0.08785516413846428, 0.4223454464089015, 0.09472348251934337, 0.14196098925812006, 0.10013555988874479, 0.32154631204965056, 0.05416575683382341, 0.786126361492164, 0.04696516601190348, 0.26926088858349784, 0.28123172687107445, 0.3094364396730669, 0.04307250962973752, 0.07126159086244754, 0.6143015945908075, 0.495586079448059, 0.46102608015166635, 0.40789311683600216, 0.8929715185951024, 0.1227006502272181, 0.3638055988942468, 0.10470002869891348, 0.29304213908849364, 0.8936703981375603, 0.3534407380188983, 0.0883666731866185, 0.07895584641700149, 0.05166417783587085, 0.4199775765299997, 0.10304865631077798, 0.1041340676595982, 0.11031385635331636, 0.22368578646300386, 0.22137255536682798, 0.0725394352715707, 0.08320759746190642, 0.3577905591727162, 0.36362749207413336, 0.13058702032609693, 0.4306817897420764, 0.4684623303117058, 0.3185463047756948, 0.6991046594229053, 0.33105510290791684, 0.35804773811787727, 0.3499358724503807, 0.17780319308126435, 0.07142366539796174, 0.1504846162366139, 0.28643330026545544, 0.11492102279820171, 0.08716328114311156, 0.12905574960179156, 0.5528531989583015, 0.2852168598030531, 0.3185463047756948, 0.41766807389819915, 0.22818770291371737, 0.10749415552266317, 0.07500089027222667, 0.2150933620687273, 0.4879833184669665, 0.21367083697314282, 0.18281788227943807, 0.11217648511765432, 0.01860460444149037, 0.4990100838788346, 0.3212979959143686, 0.7252893191599291, 0.30018855716775616, 0.2808216200321265, 0.24332849241566534, 0.22583693263898685, 0.307128141019565, 0.12930297020615966, 0.07734813107736227, 0.38078614076753503, 0.037937415915298756, 0.18389331462546077, 0.2015421194948802, 0.10121634311933059, 0.7209948827487924, 0.252131738577411, 0.19866278493931944, 0.5569604587758099, 0.19172534874952063, 0.07516041810443141, 0.18673310211333727, 0.20736440356309183, 0.27568985010185776, 0.1748501221961516, 0.134246332983591, 0.12151400729184814, 0.03860330573341564, 0.16198960071610413, 0.062309112953929935, 0.14943540958877521, 0.46827469198568006, 0.12435295831370408, 0.11768791031746062, 0.10794707492381372, 0.04347111427796346, 0.07423675680829, 0.1602542791395647, 0.19911642350143877, 0.2379444352717226, 0.36664322039668684, 0.10130143557253446, 0.17108028607870185, 0.6143194513817134, 0.5641235853966853, 0.29864316680665437, 0.44752301946823647, 0.13459844499503626, 0.037461465199631894, 0.5002964248569376, 0.4059565893810353, 0.7035957096210382, 0.0629603198376949, 0.25036415064992923, 0.14780834332950044, 0.24800647860056513, 0.10438723399855232, 0.24366911510822187, 0.4574644219698093, 0.8347014835967527, 0.42226245660703365, 0.4073158502222598, 0.47525484003715535, 0.37845934883934684, 0.35325777167774697, 0.4763432908647238, 0.18941100564626978, 0.23853527246002126, 0.27277355193056574, 0.5556171757583562, 0.19481513110659687, 0.7460207524242459, 0.12627308236197843, 0.2115813466591615, 0.4773837842994688, 0.22238536240250728, 0.1978655273089749, 0.32057959349203036, 0.1601330373243487, 0.6256605001243821, 0.34062746964654456, 0.5899158924001677, 0.1273375405407705, 0.6866376712310945, 0.3812864953771038, 0.07918534602430627, 0.10510921928053807, 0.052405178286905496, 0.29010285216427345, 0.5802968836962079, 0.4475494904811408, 0.33107045093633036, 0.6046547135519548, 0.33132995382553565, 0.3391582818855403, 0.37109937806185267, 0.18876467901964422, 0.03244681540368277, 0.6531311156123596, 0.18281848038190407, 0.06840545126676123, 0.23876166598551407, 0.5602062902528231, 0.05478334190217349, 0.18965009362393503, 0.502081053312289, 0.0945975060483667, 0.24937367783354814, 0.14040338921272166, 0.09582424632391484, 0.4879833184669665, 0.07536550594022651, 0.37763546052463404, 0.20240400638142053, 0.06234715971662652, 0.1729504208160284, 0.2536573606029918, 0.1491704939138675, 0.47224603889779837, 0.20734784509414073, 0.1656619584420439, 0.20263687678412212, 0.4576701693643329, 0.3746187330143109, 0.06578487521364562, 0.09359041291034786, 0.15714155813810793, 0.43198081216185935, 0.17693664965610134, 0.14200602748771296, 0.16878839641400256, 0.11131318694256087, 0.43040972974554736, 0.12494266711040569, 0.5286591337585229, 0.3917329141436472, 0.14284790216410748, 0.29931895876037384, 0.3998656181534954, 0.13198036366642862, 0.2166851793268345, 0.164669749255824, 0.3116999397838065, 0.5702002297218003, 0.2867818412254799, 0.05809024612643199, 0.0701620515557333, 0.10493669218879953, 0.03474255021640338, 0.14069518845012563, 0.7697788668098057, 0.44513161239284327, 0.12104291767226882, 0.2823656727566666, 0.28640273091276736, 0.09904459769556595, 0.10889384421684001, 0.1978655273089749, 0.6326587477498924, 0.0766186874204361, 0.07300117689776386, 0.3978521493117628, 0.7293533971641823, 0.24040337450518035, 0.46827469198568006, 0.03737110954461231, 0.48112847828662497, 0.5755848065786346, 0.12151472907643468, 0.332302417201758, 0.3208349144509022, 0.13406270144296106, 0.47820199098358873, 0.024219732643774528, 0.7923035912680444, 0.3099424932714111, 0.8494816644677875, 0.15230116664989468, 0.8795672599938588, 0.34536882843285344, 0.587897812361327, 0.3660303223369904, 0.3074082248441362, 0.1925553058603695, 0.1582957933341015, 0.5297945963993664, 0.1892543681582496, 0.06574637766643598, 0.03286461121245521, 0.6223124217546917, 0.48666930315350876, 0.17200815643270417, 0.27042696199957883, 0.16010429726024444, 0.25291734909108765, 0.22778758435893687, 0.6055190518965303, 0.41989528411161425, 0.2865861541738164, 0.17344095530188786, 0.4163761941495938, 0.24610426408478792, 0.029106329843254564, 0.5849270471051293, 0.09607886499379148, 0.4890296174547498, 0.11193395874659995, 0.3667485749721523, 0.29672938182784603, 0.13696827462710404, 0.03986507081677082, 0.41542023534722683, 0.1642424989032959, 0.041559354155004224, 0.1266666793707928, 0.5259198205822933, 0.42123490919744344, 0.6147437654518444, 0.42849246998341506, 0.04874684240881699, 0.16870816563337898, 0.35179373534084035, 0.4552463954734379, 0.1543174595222413, 0.4641274821418986, 0.1106599594415556, 0.40441066041397966, 0.05916303638108533, 0.24194101851814365, 0.5755848065786346, 0.23631147082452741, 0.04679471849088612, 0.33132995382553565, 0.6031606095022326, 0.16900214819844117, 0.9322526967181247, 0.1065938389205352, 0.0540586741766943, 0.14920224829950646, 0.03054451782098533, 0.13595064656866984, 0.15908339514281045, 0.09402391562754642, 0.27219479721363327, 0.10477531970828624, 0.6046547135519548, 0.04412971358840656, 0.0821245873848182, 0.24953715645213048, 0.24311299470472425, 0.679537413518331, 0.02875041056121841, 0.2874129658970298, 0.17131102264191878, 0.07042427222914205, 0.1577516063520068, 0.39934634677258996, 0.42249259173992826, 0.24940231538328683, 0.46827469198568006, 0.040988937643475554, 0.034828704291737345, 0.26663563965858417, 0.22421743312747255, 0.10716094829621758, 0.7421831263598226, 0.4644511163280224, 0.1591307416719686, 0.21502194578256428, 0.12883185373794437, 0.15520095945599266, 0.04280666734842442, 0.06928764484923078, 0.3578757504587543, 0.0760792945579073, 0.06637805380770656, 0.5755848065786346, 0.4326356954473739, 0.16985579355455038, 0.47152805642545803, 0.11644579282256762, 0.11790522998710073, 0.5438286352264949, 0.41561805514360906, 0.050606352251634235, 0.21836830194439782, 0.22298545275517268, 0.1504846162366139, 0.16819644397314482, 0.47796113776613436, 0.14100197907825862, 0.7878397890034206, 0.12176963827920351, 0.09814942480303201, 0.23162396036129984, 0.04400104962869911, 0.061588508633294015, 0.2774601068082493, 0.40816383821078206, 0.14036214651023216, 0.11837607594274324, 0.0703155477214753, 0.17002415827487982, 0.24611532014486182, 0.06874641727313702, 0.30975746960573625, 0.07004288447243323, 0.6453829176356538, 0.3880412370469972, 0.10205495289732236, 0.12171087020281346, 0.38550692709735157, 0.4398162761337091, 0.5769741243450848, 0.48842976274850136, 0.3866799681687785, 0.17129518728202664, 0.5711206597512044, 0.4456070955069118, 0.4585850027539752, 0.25462747480751524, 0.34771016550763867, 0.35548618548401445, 0.07878090041588082, 0.3008706318705062, 0.08117751180329491, 0.055511805197920094, 0.1600174453683395, 0.35597309965685686, 0.5473978930443646, 0.3321771897262046, 0.14643302530661162, 0.7653011157176768, 0.24188431843396252, 0.16704799028757666, 0.41136103198090634, 0.5749869949413896, 0.709238838470871, 0.09340318303147321, 0.602429869503323, 0.04154705947390969, 0.7519582179986716, 0.15993940416551844, 0.04372375151311325, 0.4076899811241429, 0.4644511163280224, 0.3133137248525114, 0.24628490675063597, 0.06972977174174444, 0.15949948541388637, 0.2241543425141257, 0.1729876202034616, 0.07290025122558275, 0.1220000714032804, 0.36493953208423235, 0.09420126302076737, 0.026726938234992392, 0.7199273032686843, 0.4606762448039463, 0.04906818437448113, 0.19446415942665518, 0.14876853598344464, 0.3247816953453747, 0.023320858692869595, 0.7310618090422621, 0.48944479260603346, 0.20357574295749958, 0.0840537250624015, 0.5368744051465595, 0.21101467800102214, 0.46682279298460017, 0.3749869638443927, 0.46592999202179275, 0.10188412989688433, 0.15751976448865512], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"residual.sugar\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"residual.sugar\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}, \"All_chlorides\": {\"data\": [{\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Reference<br>chlorides=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [0.037, 0.054, 0.051, 0.039, 0.046, 0.086, 0.033, 0.032, 0.032, 0.071, 0.037, 0.069, 0.044, 0.049, 0.053, 0.061, 0.036, 0.033, 0.035, 0.038, 0.034, 0.051, 0.034, 0.039, 0.048, 0.029, 0.033, 0.05, 0.029, 0.063, 0.062, 0.032, 0.045, 0.029, 0.05, 0.038, 0.03, 0.032, 0.02, 0.033, 0.05, 0.046, 0.035, 0.043, 0.058, 0.08, 0.029, 0.074, 0.033, 0.058, 0.044, 0.039, 0.042, 0.037, 0.076, 0.03, 0.02, 0.04, 0.034, 0.064, 0.035, 0.044, 0.042, 0.088, 0.085, 0.012, 0.047, 0.069, 0.02, 0.039, 0.032, 0.047, 0.05, 0.061, 0.05, 0.078, 0.034, 0.073, 0.038, 0.047, 0.032, 0.033, 0.035, 0.034, 0.035, 0.044, 0.086, 0.04, 0.084, 0.037, 0.035, 0.04, 0.044, 0.046, 0.031, 0.035, 0.035, 0.04, 0.046, 0.042, 0.05, 0.091, 0.05, 0.037, 0.048, 0.053, 0.048, 0.036, 0.064, 0.05, 0.053, 0.024, 0.054, 0.043, 0.021, 0.042, 0.052, 0.04, 0.074, 0.062, 0.052, 0.043, 0.053, 0.078, 0.084, 0.074, 0.045, 0.031, 0.084, 0.034, 0.036, 0.042, 0.08, 0.062, 0.035, 0.092, 0.062, 0.038, 0.092, 0.049, 0.041, 0.046, 0.04, 0.084, 0.044, 0.036, 0.031, 0.077, 0.051, 0.051, 0.073, 0.036, 0.046, 0.051, 0.038, 0.043, 0.042, 0.027, 0.039, 0.036, 0.083, 0.044, 0.077, 0.033, 0.043, 0.041, 0.035, 0.036, 0.036, 0.071, 0.082, 0.039, 0.033, 0.087, 0.044, 0.076, 0.05, 0.037, 0.08, 0.046, 0.044, 0.054, 0.031, 0.045, 0.047, 0.037, 0.068, 0.04, 0.044, 0.026, 0.087, 0.032, 0.036, 0.082, 0.028, 0.06, 0.048, 0.019, 0.026, 0.056, 0.034, 0.041, 0.072, 0.043, 0.057, 0.062, 0.042, 0.057, 0.053, 0.057, 0.024, 0.04, 0.035, 0.031, 0.045, 0.029, 0.038, 0.029, 0.095, 0.039, 0.042, 0.044, 0.032, 0.074, 0.025, 0.067, 0.047, 0.047, 0.046, 0.041, 0.049, 0.072, 0.042, 0.051, 0.037, 0.034, 0.046, 0.028, 0.036, 0.024, 0.058, 0.048, 0.047, 0.043, 0.064, 0.039, 0.029, 0.044, 0.053, 0.075, 0.081, 0.047, 0.046, 0.038, 0.062, 0.05, 0.063, 0.041, 0.047, 0.036, 0.032, 0.028, 0.08, 0.063, 0.038, 0.042, 0.045, 0.041, 0.039, 0.021, 0.06, 0.039, 0.068, 0.087, 0.042, 0.037, 0.028, 0.026, 0.024, 0.084, 0.051, 0.054, 0.048, 0.038, 0.029, 0.093, 0.037, 0.048, 0.056, 0.074, 0.041, 0.046, 0.04, 0.069, 0.044, 0.039, 0.049, 0.033, 0.074, 0.034, 0.038, 0.073, 0.05, 0.056, 0.038, 0.043, 0.082, 0.049, 0.033, 0.042, 0.029, 0.014, 0.035, 0.03, 0.034, 0.066, 0.042, 0.055, 0.058, 0.026, 0.045, 0.071, 0.056, 0.035, 0.043, 0.03, 0.068, 0.039, 0.047, 0.051, 0.022, 0.035, 0.041, 0.058, 0.04, 0.048, 0.065, 0.02, 0.05, 0.046, 0.048, 0.039, 0.033, 0.047, 0.037, 0.081, 0.037, 0.03, 0.053, 0.049, 0.067, 0.066, 0.08, 0.048, 0.048, 0.041, 0.079, 0.046, 0.043, 0.043, 0.041, 0.042, 0.032, 0.027, 0.033, 0.095, 0.057, 0.08, 0.071, 0.024, 0.096, 0.052, 0.045, 0.031, 0.048, 0.041, 0.026, 0.032, 0.047, 0.034, 0.035, 0.045, 0.067, 0.052, 0.031, 0.032, 0.066, 0.068, 0.079, 0.044, 0.043, 0.028, 0.041, 0.031, 0.033, 0.063, 0.045, 0.039, 0.041, 0.052, 0.034, 0.046, 0.045, 0.034, 0.04, 0.054, 0.06, 0.05, 0.029, 0.047, 0.051, 0.055, 0.031, 0.057, 0.064, 0.036, 0.042, 0.033, 0.027, 0.03, 0.026, 0.052, 0.024, 0.075, 0.035, 0.094, 0.038, 0.047, 0.028, 0.029, 0.042, 0.052, 0.045, 0.06, 0.066, 0.037, 0.035, 0.036, 0.026, 0.036, 0.045, 0.066, 0.036, 0.079, 0.047, 0.035, 0.066, 0.078, 0.07, 0.045, 0.034, 0.072, 0.036, 0.026, 0.05, 0.052, 0.079, 0.058, 0.051, 0.044, 0.026, 0.038, 0.036, 0.048, 0.056, 0.045, 0.095, 0.054, 0.047, 0.039, 0.061, 0.036, 0.031, 0.051, 0.029, 0.063, 0.048, 0.076, 0.058, 0.039, 0.059, 0.041, 0.057, 0.043, 0.044, 0.042, 0.049, 0.036, 0.031, 0.058, 0.027, 0.048, 0.027, 0.034, 0.027, 0.055, 0.039, 0.025, 0.053, 0.042, 0.034, 0.024, 0.033, 0.048, 0.028, 0.034, 0.054, 0.033, 0.028, 0.036, 0.097, 0.019, 0.039, 0.054, 0.045, 0.036, 0.087, 0.098, 0.044, 0.043, 0.037, 0.087, 0.047, 0.041, 0.054, 0.039, 0.048, 0.041, 0.04, 0.051, 0.029, 0.033, 0.053, 0.042, 0.051, 0.022, 0.031, 0.044, 0.049, 0.034, 0.078, 0.045, 0.089, 0.056, 0.036, 0.035, 0.031, 0.048, 0.044, 0.037, 0.038, 0.043, 0.034, 0.045, 0.039, 0.047, 0.028, 0.019, 0.039, 0.022, 0.05, 0.025, 0.072, 0.046, 0.032, 0.03, 0.034, 0.064, 0.045, 0.076, 0.036, 0.041, 0.041, 0.032, 0.031, 0.047, 0.041, 0.039, 0.036, 0.038, 0.065, 0.037, 0.054, 0.055, 0.046, 0.047, 0.041, 0.08, 0.046, 0.037, 0.064, 0.031, 0.057, 0.041, 0.092, 0.04, 0.084, 0.039, 0.06, 0.04, 0.047, 0.062, 0.045, 0.035, 0.062, 0.031, 0.051, 0.04, 0.028, 0.046, 0.031, 0.044, 0.045, 0.053, 0.031, 0.033, 0.063, 0.046, 0.043, 0.083, 0.023, 0.039, 0.038, 0.036], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Current<br>chlorides=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [0.068, 0.058, 0.045, 0.044, 0.076, 0.041, 0.037, 0.036, 0.033, 0.036, 0.039, 0.033, 0.026, 0.03, 0.04, 0.07, 0.032, 0.078, 0.028, 0.056, 0.045, 0.05, 0.04, 0.04, 0.031, 0.044, 0.038, 0.035, 0.029, 0.032, 0.059, 0.053, 0.034, 0.034, 0.035, 0.05, 0.047, 0.096, 0.036, 0.026, 0.034, 0.043, 0.08, 0.065, 0.054, 0.079, 0.039, 0.036, 0.073, 0.034, 0.031, 0.042, 0.039, 0.053, 0.044, 0.05, 0.039, 0.054, 0.037, 0.029, 0.036, 0.036, 0.042, 0.061, 0.037, 0.05, 0.055, 0.067, 0.012, 0.04, 0.038, 0.046, 0.048, 0.074, 0.041, 0.059, 0.042, 0.037, 0.065, 0.03, 0.035, 0.08, 0.048, 0.036, 0.049, 0.046, 0.039, 0.037, 0.035, 0.047, 0.037, 0.091, 0.035, 0.071, 0.071, 0.027, 0.047, 0.072, 0.034, 0.067, 0.051, 0.072, 0.023, 0.038, 0.025, 0.033, 0.053, 0.026, 0.024, 0.055, 0.043, 0.057, 0.04, 0.083, 0.03, 0.03, 0.067, 0.029, 0.073, 0.074, 0.088, 0.029, 0.073, 0.04, 0.019, 0.075, 0.043, 0.045, 0.05, 0.049, 0.062, 0.094, 0.06, 0.034, 0.046, 0.071, 0.095, 0.036, 0.046, 0.036, 0.048, 0.087, 0.032, 0.043, 0.039, 0.031, 0.051, 0.043, 0.029, 0.038, 0.058, 0.062, 0.047, 0.058, 0.032, 0.078, 0.032, 0.034, 0.08, 0.034, 0.032, 0.084, 0.065, 0.022, 0.04, 0.046, 0.055, 0.027, 0.04, 0.048, 0.031, 0.035, 0.078, 0.037, 0.042, 0.036, 0.093, 0.039, 0.077, 0.078, 0.042, 0.045, 0.081, 0.015, 0.051, 0.028, 0.045, 0.037, 0.035, 0.041, 0.027, 0.048, 0.042, 0.038, 0.038, 0.047, 0.017, 0.036, 0.038, 0.036, 0.074, 0.046, 0.044, 0.046, 0.037, 0.077, 0.029, 0.071, 0.025, 0.046, 0.041, 0.022, 0.047, 0.04, 0.044, 0.086, 0.045, 0.049, 0.071, 0.031, 0.054, 0.072, 0.04, 0.074, 0.05, 0.028, 0.028, 0.072, 0.055, 0.034, 0.047, 0.036, 0.055, 0.043, 0.031, 0.032, 0.057, 0.077, 0.068, 0.057, 0.045, 0.06, 0.077, 0.053, 0.056, 0.053, 0.038, 0.042, 0.053, 0.035, 0.031, 0.033, 0.049, 0.078, 0.04, 0.06, 0.042, 0.08, 0.031, 0.044, 0.032, 0.044, 0.055, 0.044, 0.04, 0.037, 0.087, 0.043, 0.078, 0.032, 0.047, 0.035, 0.062, 0.034, 0.028, 0.033, 0.032, 0.077, 0.021, 0.031, 0.044, 0.056, 0.078, 0.05, 0.062, 0.034, 0.031, 0.052, 0.04, 0.031, 0.034, 0.029, 0.043, 0.041, 0.034, 0.067, 0.074, 0.033, 0.054, 0.034, 0.043, 0.04, 0.027, 0.071, 0.053, 0.035, 0.045, 0.032, 0.035, 0.044, 0.057, 0.033, 0.036, 0.06, 0.058, 0.032, 0.044, 0.038, 0.038, 0.08, 0.035, 0.093, 0.043, 0.054, 0.041, 0.046, 0.085, 0.021, 0.036, 0.055, 0.079, 0.076, 0.039, 0.028, 0.051, 0.088, 0.033, 0.033, 0.047, 0.044, 0.043, 0.049, 0.031, 0.083, 0.04, 0.043, 0.07, 0.025, 0.034, 0.084, 0.037, 0.076, 0.046, 0.044, 0.063, 0.037, 0.049, 0.024, 0.046, 0.039, 0.041, 0.036, 0.028, 0.064, 0.038, 0.03, 0.022, 0.045, 0.044, 0.036, 0.054, 0.05, 0.026, 0.043, 0.036, 0.032, 0.074, 0.027, 0.053, 0.048, 0.077, 0.038, 0.065, 0.029, 0.027, 0.036, 0.027, 0.022, 0.042, 0.042, 0.056, 0.039, 0.027, 0.051, 0.035, 0.076, 0.048, 0.033, 0.057, 0.092, 0.036, 0.085, 0.027, 0.023, 0.04, 0.041, 0.085, 0.084, 0.039, 0.043, 0.036, 0.021, 0.045, 0.033, 0.046, 0.037, 0.029, 0.065, 0.081, 0.044, 0.067, 0.028, 0.062, 0.053, 0.054, 0.053, 0.031, 0.082, 0.048, 0.059, 0.075, 0.077, 0.045, 0.097, 0.041, 0.069, 0.05, 0.031, 0.053, 0.037, 0.066, 0.061, 0.042, 0.036, 0.052, 0.073, 0.029, 0.047, 0.031, 0.037, 0.036, 0.045, 0.035, 0.075, 0.05, 0.057, 0.026, 0.034, 0.034, 0.042, 0.039, 0.031, 0.097, 0.075, 0.052, 0.03, 0.037, 0.035, 0.075, 0.078, 0.067, 0.042, 0.078, 0.076, 0.049, 0.041, 0.089, 0.059, 0.073, 0.036, 0.044, 0.053, 0.031, 0.034, 0.044, 0.043, 0.034, 0.076, 0.035, 0.07, 0.046, 0.037, 0.048, 0.043, 0.03, 0.084, 0.097, 0.046, 0.063, 0.03, 0.033, 0.053, 0.041, 0.061, 0.024, 0.035, 0.034, 0.047, 0.091, 0.052, 0.067, 0.021, 0.053, 0.035, 0.048, 0.046, 0.051, 0.066, 0.046, 0.025, 0.031, 0.021, 0.053, 0.041, 0.02, 0.05, 0.067, 0.031, 0.041, 0.086, 0.036, 0.029, 0.022, 0.053, 0.038, 0.056, 0.086, 0.057, 0.026, 0.034, 0.033, 0.032, 0.03, 0.06, 0.039, 0.047, 0.032, 0.028, 0.043, 0.04, 0.032, 0.046, 0.042, 0.05, 0.035, 0.027, 0.058, 0.049, 0.083, 0.032, 0.044, 0.038, 0.084, 0.051, 0.047, 0.045, 0.079, 0.031, 0.04, 0.035, 0.039, 0.055, 0.032, 0.045, 0.026, 0.034, 0.083, 0.071, 0.037, 0.033, 0.045, 0.046, 0.055, 0.048, 0.034, 0.083, 0.03, 0.03, 0.05, 0.048, 0.036, 0.029, 0.036, 0.027, 0.057, 0.046, 0.035, 0.046, 0.045, 0.075, 0.033, 0.082, 0.085, 0.043, 0.049, 0.032, 0.055, 0.079, 0.034, 0.03, 0.051, 0.048, 0.047, 0.038, 0.053, 0.055, 0.069, 0.048], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Reference<br>chlorides=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [0.05, 0.044, 0.031, 0.09, 0.091, 0.086, 0.043, 0.09, 0.053, 0.054, 0.068, 0.041, 0.039, 0.05, 0.052, 0.08, 0.05, 0.081, 0.049, 0.048, 0.086, 0.028, 0.067, 0.092, 0.041, 0.088, 0.044, 0.054, 0.068, 0.04, 0.039, 0.039, 0.06, 0.059, 0.039, 0.045, 0.07, 0.045, 0.047, 0.055, 0.059, 0.051, 0.032, 0.047, 0.076, 0.077, 0.061, 0.089, 0.053, 0.045, 0.048, 0.08, 0.05, 0.055, 0.067, 0.05, 0.097, 0.047, 0.043, 0.077, 0.076, 0.024, 0.045, 0.08, 0.051, 0.041, 0.044, 0.033, 0.039, 0.062, 0.098, 0.026, 0.05, 0.037, 0.049, 0.082, 0.068, 0.041, 0.047, 0.044, 0.044, 0.08, 0.044, 0.085, 0.051, 0.066, 0.044, 0.055, 0.058, 0.048, 0.056, 0.056, 0.082, 0.034, 0.054, 0.069, 0.042, 0.038, 0.045, 0.044, 0.066, 0.027, 0.069, 0.029, 0.082, 0.096, 0.047, 0.047, 0.08, 0.049, 0.047, 0.048, 0.049, 0.038, 0.05, 0.056, 0.041, 0.064, 0.092, 0.04, 0.037, 0.047, 0.045, 0.063, 0.026, 0.055, 0.05, 0.08, 0.034, 0.039, 0.037, 0.04, 0.041, 0.051, 0.093, 0.04, 0.084, 0.073, 0.052, 0.087, 0.04, 0.079, 0.06, 0.084, 0.044, 0.036, 0.03, 0.035, 0.087, 0.07, 0.052, 0.078, 0.034, 0.05, 0.055, 0.045, 0.046, 0.053, 0.07, 0.043, 0.068, 0.08, 0.042, 0.074, 0.044, 0.05, 0.082, 0.053, 0.056, 0.047, 0.044, 0.052, 0.031, 0.037, 0.044, 0.096, 0.039, 0.047, 0.032, 0.049, 0.084, 0.055, 0.061, 0.049, 0.09, 0.046, 0.059, 0.046, 0.05, 0.046, 0.083, 0.049, 0.027, 0.05, 0.047, 0.054, 0.056, 0.063, 0.044, 0.045, 0.03, 0.034, 0.084, 0.04, 0.039, 0.049, 0.044, 0.052, 0.043, 0.057, 0.046, 0.075, 0.034, 0.04, 0.057, 0.085, 0.04, 0.026, 0.07, 0.02, 0.051, 0.043, 0.066, 0.053, 0.04, 0.09, 0.085, 0.043, 0.052, 0.07, 0.042, 0.039, 0.092, 0.056, 0.047, 0.067, 0.039, 0.058, 0.091, 0.052, 0.052, 0.051, 0.062, 0.05, 0.046, 0.044, 0.049, 0.071, 0.073, 0.058, 0.058, 0.044, 0.048, 0.04, 0.091, 0.041, 0.06, 0.04, 0.081, 0.041, 0.07, 0.069, 0.046, 0.039, 0.054, 0.026, 0.048, 0.031, 0.05, 0.047, 0.029, 0.083, 0.053, 0.056, 0.046, 0.081, 0.041, 0.047, 0.081, 0.05, 0.087, 0.042, 0.05, 0.08, 0.098, 0.031, 0.081, 0.05, 0.048, 0.063, 0.084, 0.04, 0.048, 0.047, 0.08, 0.047, 0.048, 0.096, 0.046, 0.077, 0.042, 0.048, 0.08, 0.049, 0.052, 0.038, 0.077, 0.048, 0.073, 0.037, 0.054, 0.051, 0.052, 0.037, 0.079, 0.035, 0.074, 0.095, 0.046, 0.046, 0.046, 0.04, 0.07, 0.042, 0.049, 0.047], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Current<br>chlorides=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [0.088, 0.06, 0.036, 0.04, 0.043, 0.048, 0.032, 0.078, 0.078, 0.063, 0.054, 0.036, 0.039, 0.048, 0.054, 0.046, 0.052, 0.098, 0.032, 0.03, 0.036, 0.036, 0.035, 0.065, 0.04, 0.035, 0.083, 0.054, 0.028, 0.044, 0.04, 0.077, 0.081, 0.072, 0.054, 0.045, 0.078, 0.079, 0.055, 0.066, 0.026, 0.073, 0.069, 0.047, 0.048, 0.048, 0.076, 0.051, 0.025, 0.046, 0.084, 0.034, 0.094, 0.084, 0.077, 0.074, 0.095, 0.04, 0.043, 0.095, 0.037, 0.048, 0.098, 0.098, 0.06, 0.076, 0.072, 0.046, 0.036, 0.088, 0.031, 0.04, 0.052, 0.029, 0.044, 0.074, 0.062, 0.078, 0.045, 0.084, 0.04, 0.028, 0.037, 0.044, 0.041, 0.071, 0.05, 0.043, 0.091, 0.045, 0.08, 0.035, 0.062, 0.04, 0.092, 0.027, 0.046, 0.073, 0.047, 0.062, 0.057, 0.051, 0.045, 0.069, 0.059, 0.078, 0.053, 0.038, 0.029, 0.051, 0.05, 0.044, 0.028, 0.051, 0.082, 0.076, 0.088, 0.036, 0.034, 0.076, 0.047, 0.016, 0.054, 0.045, 0.036, 0.082, 0.047, 0.053, 0.077, 0.086, 0.041, 0.036, 0.04, 0.031, 0.036, 0.071, 0.049, 0.057, 0.066, 0.079, 0.057, 0.034, 0.048, 0.07, 0.045, 0.076, 0.057, 0.035, 0.046, 0.052, 0.089, 0.063, 0.039, 0.038, 0.086, 0.031, 0.036, 0.036, 0.046, 0.052, 0.058, 0.062, 0.049, 0.042, 0.073, 0.033, 0.048, 0.044, 0.047, 0.042, 0.033, 0.041, 0.098, 0.048, 0.06, 0.032, 0.034, 0.046, 0.053, 0.078, 0.05, 0.038, 0.039, 0.041, 0.08, 0.051, 0.043, 0.051, 0.094, 0.05, 0.051, 0.06, 0.052, 0.023, 0.045, 0.046, 0.077, 0.042, 0.041, 0.052, 0.053, 0.064, 0.046, 0.048, 0.017, 0.063, 0.036, 0.046, 0.043, 0.053, 0.046, 0.045, 0.055, 0.037, 0.088, 0.059, 0.042, 0.068, 0.066, 0.043, 0.05, 0.037, 0.09, 0.056, 0.038, 0.039, 0.045, 0.045, 0.096, 0.094, 0.057, 0.054, 0.041, 0.041, 0.06, 0.045, 0.042, 0.048, 0.08, 0.065, 0.029, 0.045, 0.038, 0.054, 0.061, 0.044, 0.046, 0.046, 0.053, 0.053, 0.044, 0.044, 0.036, 0.055, 0.053, 0.092, 0.037, 0.057, 0.044, 0.042, 0.049, 0.082, 0.089, 0.071, 0.081, 0.044, 0.023, 0.044, 0.032, 0.045, 0.053, 0.052, 0.081, 0.056, 0.044, 0.055, 0.077, 0.05, 0.064, 0.032, 0.046, 0.057, 0.095, 0.028, 0.093, 0.046, 0.043, 0.056, 0.03, 0.09, 0.05, 0.059, 0.054, 0.079, 0.084, 0.046, 0.046, 0.059, 0.05, 0.073, 0.052, 0.042, 0.042, 0.085, 0.066, 0.059, 0.043, 0.088, 0.053, 0.066, 0.075, 0.038, 0.036, 0.079, 0.051, 0.036, 0.033, 0.071, 0.036, 0.037, 0.058, 0.05, 0.043, 0.046, 0.078, 0.076, 0.08, 0.036, 0.05, 0.088, 0.05, 0.036, 0.053, 0.031], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Reference\", \"x\": 0.245, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Current\", \"x\": 0.755, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"barmode\": \"overlay\", \"legend\": {\"title\": {\"text\": \"target\"}, \"tracegroupgap\": 0}, \"margin\": {\"t\": 60}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.49], \"title\": {\"text\": \"chlorides\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.51, 1.0], \"matches\": \"x\", \"title\": {\"text\": \"chlorides\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"count\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}}}, \"chlorides_good\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (ref)\", \"type\": \"scatter\", \"x\": [0.037, 0.054, 0.051, 0.039, 0.046, 0.086, 0.033, 0.032, 0.032, 0.071, 0.037, 0.069, 0.044, 0.049, 0.053, 0.061, 0.036, 0.1, 0.033, 0.035, 0.038, 0.034, 0.051, 0.034, 0.039, 0.048, 0.029, 0.033, 0.05, 0.029, 0.063, 0.062, 0.032, 0.045, 0.029, 0.05, 0.038, 0.03, 0.032, 0.02, 0.033, 0.05, 0.046, 0.035, 0.043, 0.058, 0.08, 0.029, 0.074, 0.033, 0.058, 0.044, 0.039, 0.042, 0.037, 0.076, 0.03, 0.02, 0.04, 0.034, 0.064, 0.035, 0.044, 0.042, 0.088, 0.085, 0.012, 0.047, 0.069, 0.02, 0.039, 0.032, 0.047, 0.05, 0.061, 0.05, 0.078, 0.034, 0.073, 0.038, 0.047, 0.032, 0.033, 0.035, 0.034, 0.035, 0.044, 0.086, 0.04, 0.084, 0.037, 0.035, 0.04, 0.044, 0.046, 0.031, 0.035, 0.035, 0.04, 0.046, 0.042, 0.05, 0.091, 0.05, 0.037, 0.048, 0.053, 0.048, 0.036, 0.064, 0.05, 0.053, 0.024, 0.054, 0.043, 0.021, 0.042, 0.052, 0.04, 0.074, 0.062, 0.052, 0.043, 0.053, 0.078, 0.084, 0.074, 0.045, 0.031, 0.084, 0.034, 0.036, 0.042, 0.08, 0.062, 0.035, 0.092, 0.062, 0.038, 0.092, 0.049, 0.041, 0.046, 0.04, 0.084, 0.044, 0.036, 0.031, 0.077, 0.051, 0.051, 0.073, 0.036, 0.046, 0.051, 0.038, 0.043, 0.042, 0.027, 0.039, 0.036, 0.083, 0.044, 0.077, 0.033, 0.043, 0.041, 0.035, 0.036, 0.036, 0.071, 0.082, 0.039, 0.033, 0.087, 0.044, 0.076, 0.05, 0.037, 0.08, 0.046, 0.044, 0.054, 0.031, 0.045, 0.047, 0.037, 0.068, 0.04, 0.044, 0.026, 0.087, 0.032, 0.036, 0.082, 0.028, 0.06, 0.048, 0.019, 0.026, 0.056, 0.034, 0.041, 0.072, 0.043, 0.057, 0.062, 0.042, 0.057, 0.053, 0.057, 0.024, 0.04, 0.035, 0.031, 0.045, 0.029, 0.038, 0.029, 0.095, 0.039, 0.042, 0.044, 0.032, 0.074, 0.025, 0.067, 0.047, 0.047, 0.046, 0.041, 0.049, 0.072, 0.042, 0.051, 0.037, 0.034, 0.046, 0.028, 0.036, 0.024, 0.058, 0.154, 0.048, 0.114, 0.047, 0.043, 0.064, 0.039, 0.029, 0.044, 0.053, 0.171, 0.075, 0.081, 0.047, 0.046, 0.184, 0.038, 0.062, 0.05, 0.063, 0.041, 0.047, 0.036, 0.032, 0.028, 0.08, 0.063, 0.038, 0.042, 0.045, 0.041, 0.039, 0.021, 0.06, 0.039, 0.068, 0.087, 0.194, 0.042, 0.037, 0.028, 0.026, 0.024, 0.084, 0.051, 0.054, 0.114, 0.048, 0.038, 0.029, 0.093, 0.037, 0.048, 0.056, 0.074, 0.041, 0.046, 0.04, 0.069, 0.044, 0.039, 0.049, 0.033, 0.074, 0.034, 0.104, 0.038, 0.145, 0.073, 0.05, 0.056, 0.038, 0.043, 0.082, 0.049, 0.033, 0.042, 0.029, 0.014, 0.144, 0.035, 0.03, 0.034, 0.066, 0.042, 0.1, 0.055, 0.058, 0.026, 0.045, 0.071, 0.056, 0.035, 0.043, 0.03, 0.068, 0.039, 0.047, 0.051, 0.022, 0.035, 0.041, 0.058, 0.04, 0.048, 0.065, 0.02, 0.05, 0.046, 0.048, 0.039, 0.033, 0.047, 0.037, 0.081, 0.037, 0.104, 0.03, 0.053, 0.049, 0.067, 0.066, 0.08, 0.048, 0.048, 0.041, 0.079, 0.046, 0.043, 0.043, 0.041, 0.042, 0.032, 0.027, 0.033, 0.095, 0.057, 0.08, 0.071, 0.024, 0.096, 0.052, 0.045, 0.031, 0.214, 0.048, 0.041, 0.026, 0.032, 0.047, 0.034, 0.035, 0.045, 0.067, 0.052, 0.031, 0.032, 0.066, 0.068, 0.079, 0.044, 0.043, 0.028, 0.041, 0.031, 0.033, 0.063, 0.045, 0.039, 0.041, 0.052, 0.034, 0.046, 0.045, 0.034, 0.04, 0.054, 0.06, 0.05, 0.029, 0.047, 0.051, 0.055, 0.031, 0.057, 0.064, 0.036, 0.042, 0.033, 0.027, 0.03, 0.026, 0.052, 0.024, 0.075, 0.103, 0.035, 0.094, 0.038, 0.047, 0.028, 0.029, 0.042, 0.052, 0.045, 0.06, 0.066, 0.037, 0.035, 0.036, 0.026, 0.036, 0.045, 0.066, 0.036, 0.079, 0.047, 0.035, 0.066, 0.078, 0.07, 0.045, 0.034, 0.072, 0.036, 0.026, 0.05, 0.052, 0.079, 0.058, 0.051, 0.044, 0.026, 0.038, 0.036, 0.048, 0.056, 0.045, 0.095, 0.054, 0.047, 0.039, 0.061, 0.036, 0.031, 0.051, 0.029, 0.063, 0.048, 0.076, 0.058, 0.039, 0.059, 0.041, 0.057, 0.043, 0.044, 0.042, 0.049, 0.036, 0.031, 0.058, 0.027, 0.048, 0.027, 0.034, 0.027, 0.055, 0.039, 0.025, 0.053, 0.042, 0.034, 0.024, 0.033, 0.048, 0.028, 0.034, 0.054, 0.033, 0.028, 0.036, 0.097, 0.019, 0.039, 0.054, 0.045, 0.036, 0.087, 0.098, 0.044, 0.043, 0.037, 0.087, 0.047, 0.041, 0.054, 0.039, 0.048, 0.041, 0.04, 0.051, 0.029, 0.033, 0.104, 0.053, 0.042, 0.051, 0.022, 0.031, 0.044, 0.049, 0.034, 0.078, 0.045, 0.089, 0.056, 0.036, 0.18, 0.035, 0.031, 0.048, 0.044, 0.037, 0.038, 0.043, 0.034, 0.045, 0.039, 0.047, 0.028, 0.019, 0.039, 0.022, 0.05, 0.025, 0.072, 0.046, 0.032, 0.03, 0.034, 0.064, 0.045, 0.076, 0.036, 0.041, 0.041, 0.032, 0.11, 0.031, 0.047, 0.041, 0.039, 0.036, 0.038, 0.065, 0.037, 0.054, 0.055, 0.046, 0.047, 0.041, 0.08, 0.046, 0.037, 0.064, 0.031, 0.057, 0.041, 0.092, 0.04, 0.084, 0.039, 0.06, 0.04, 0.047, 0.062, 0.148, 0.045, 0.035, 0.062, 0.119, 0.031, 0.051, 0.04, 0.028, 0.046, 0.031, 0.119, 0.044, 0.045, 0.053, 0.031, 0.033, 0.063, 0.046, 0.043, 0.083, 0.023, 0.107, 0.039, 0.038, 0.036], \"xaxis\": \"x\", \"y\": [0.8156061324462894, 0.42491310922683634, 0.8867827646463432, 0.8014995238430205, 0.30499958310650876, 0.5817355832705369, 0.959171062334887, 0.7854416128369749, 0.9085690698200813, 0.8998600376511439, 0.6341165000693628, 0.412102187638673, 0.7643629411050379, 0.4710001938005606, 0.40182653035141874, 0.40438056362905367, 0.8870480016118494, 0.3650667978415713, 0.9064321709292111, 0.9327245345966092, 0.6458420185168736, 0.8821841129047617, 0.6704018506542557, 0.7655671181822064, 0.8616986618932058, 0.48774537944210006, 0.9637355036179479, 0.6794204065079696, 0.6044835155949141, 0.7867954023600708, 0.9137982268836646, 0.5867502063434873, 0.8048584290077971, 0.9718511071053526, 0.9627192884041744, 0.7978623718349598, 0.6091120966723917, 0.8943338178728011, 0.8853376735027229, 0.9045563504021151, 0.9264844632598176, 0.6342457655367447, 0.9414033426130164, 0.5636516403732365, 0.5172967922101196, 0.4836896337264441, 0.35199620689495453, 0.788779954566273, 0.9696552399248426, 0.772496554239754, 0.8132656157621138, 0.4539090261140653, 0.9333708926412786, 0.679765045723866, 0.48457442622955804, 0.4248820606938153, 0.6737819616086004, 0.8780741425819777, 0.38340602447337646, 0.90634085684919, 0.5574014604752268, 0.6804147683859246, 0.9077110088845216, 0.7718472635729894, 0.4717552048891654, 0.22222808308441652, 0.8616549355667619, 0.705749071892896, 0.4699129352300819, 0.9680524782819758, 0.8891353183282249, 0.9466602521798594, 0.8553382520847058, 0.7430243903066251, 0.6616131862201935, 0.6919609500216202, 0.96565744679506, 0.913108907487878, 0.5395521774612226, 0.9026238558501023, 0.6550941529376255, 0.9757876320152292, 0.8833495792027257, 0.6666029765862381, 0.8504582120840628, 0.9320215595878566, 0.7639947574915884, 0.6085229656221847, 0.9557131606798471, 0.46184432615952054, 0.5642658412077981, 0.8815615400732472, 0.7189203536918151, 0.9301020530176726, 0.7341394174346678, 0.7759189559372703, 0.8448078654733812, 0.9012666081120407, 0.8926028620066223, 0.5287492720273277, 0.6874206920638863, 0.37408584674942635, 0.8348370105186077, 0.8697567261320243, 0.9175759024810304, 0.44644098895981, 0.8874384748400057, 0.7787567487441118, 0.9416122482572158, 0.3265229243180111, 0.9308095750950773, 0.42267134533232753, 0.43068181214270274, 0.8727308285810839, 0.7201611177732586, 0.8430904589044517, 0.8140617541555761, 0.9456747441572588, 0.6672663325862807, 0.8756470416862959, 0.518871521713375, 0.7040615347784164, 0.4957960231649875, 0.6250130361556073, 0.27413726132188326, 0.5193133578087885, 0.37656641690434584, 0.5808048103476511, 0.7917827117482167, 0.36569143480873245, 0.7232542293832885, 0.9785934574433302, 0.5715075300165849, 0.8182555969893297, 0.5448461144048058, 0.9491291995847589, 0.4833587957991669, 0.3189279754564957, 0.9184825510014271, 0.5524830505676419, 0.9600429304649183, 0.7818180966165994, 0.7962710274484252, 0.7569429870375118, 0.46184432615952054, 0.7641514270390748, 0.9486763575522457, 0.8086368705092697, 0.6784536879503494, 0.6877019790624462, 0.6082670858563528, 0.6053794617794684, 0.6319330693089359, 0.4982105707488519, 0.6787928880949093, 0.9231980717613485, 0.8831230955067948, 0.6845485656817341, 0.8799204262605215, 0.9164563829924386, 0.7819268199067826, 0.23469888428232324, 0.9492377841603665, 0.8826092272015389, 0.6360541596480074, 0.5184081252698399, 0.6400126753125241, 0.542646305979658, 0.4479501208302092, 0.7783171875827786, 0.7867712153112567, 0.5236605417423803, 0.6959846197179591, 0.7925023358445066, 0.6683189355892497, 0.18737025221649042, 0.42506327048176057, 0.7272596040941706, 0.7314191754306454, 0.4827891324637794, 0.6649341228620356, 0.9038332731164471, 0.9588917860646077, 0.8945194928389463, 0.49833043835950624, 0.7997712594855277, 0.8577935987172323, 0.7622736922026153, 0.8039391974899521, 0.7396811504731934, 0.8115340233127679, 0.801728888664367, 0.738451208106372, 0.5859674792922007, 0.1865203674848816, 0.8773430435604171, 0.36888329310067386, 0.8651817982269884, 0.9067615420962557, 0.8594983988587351, 0.7437750884018276, 0.9145224932934428, 0.9135679891815164, 0.8001832456898428, 0.6860977766129374, 0.9377826008632761, 0.9300369611912853, 0.6997062971069969, 0.5693182102579236, 0.3404656140239559, 0.7160591142088384, 0.7953146078011, 0.8869803873277935, 0.7639982823097876, 0.8681285227071118, 0.576868797021353, 0.93035102563313, 0.8375600281828176, 0.8279918435672958, 0.9266689436294401, 0.7559862346636359, 0.5099889666930224, 0.6914445842613687, 0.9651950326885705, 0.87851968214492, 0.8499702807396289, 0.4685752957996948, 0.7241546992314323, 0.7848147251007912, 0.7341394174346678, 0.7008877443692281, 0.340588975625529, 0.5013021766499856, 0.8321174529331695, 0.8818378666553491, 0.9176909075187759, 0.8634678749265305, 0.7436082905772717, 0.9343776659412377, 0.7668809937296346, 0.6243383802582345, 0.5332560471205093, 0.6907315465649003, 0.16626803588025432, 0.1668542888532837, 0.7408943843163458, 0.5221312328975666, 0.7457559475413279, 0.46389636934606376, 0.9292627865919654, 0.5268311186840582, 0.4244151934213653, 0.643310536612302, 0.8577438313980266, 0.7816208399762355, 0.8553382520847058, 0.7010035672814305, 0.5242572272016158, 0.9187320011579697, 0.8703498177621264, 0.6713045345576062, 0.9137982268836646, 0.8614414457916845, 0.9445662266054761, 0.8808216590199034, 0.7386378115490353, 0.8873009977622293, 0.9157094897337859, 0.6606038558129893, 0.9296803968514485, 0.8864322240790464, 0.5146720135715994, 0.8720710714485208, 0.9415427660945741, 0.9138701141498735, 0.6527559092576063, 0.8751970040938668, 0.9249766460056568, 0.801728888664367, 0.6575848465963361, 0.6934824043184128, 0.8619113960143526, 0.9419078024651042, 0.9591721389341828, 0.8397407150753159, 0.9084383840076588, 0.4963969309336195, 0.7359588175524252, 0.3531961907069324, 0.9279819479140234, 0.7752976919572294, 0.8665226278427577, 0.9515211055933231, 0.7314191754306454, 0.890886918514299, 0.3235491032739525, 0.3719939405423586, 0.6323804178173072, 0.8398006965792015, 0.8239469134189235, 0.8592101816891015, 0.7615002907198236, 0.8688259750909261, 0.8718104001390852, 0.5838074755684882, 0.8756470416862959, 0.901850575196968, 0.9451930143658351, 0.6253812669856891, 0.5890764576710766, 0.4921052500998711, 0.4862070578416567, 0.9170647663398394, 0.7035583451969506, 0.8476385889092957, 0.5603058978573646, 0.5810606890504925, 0.9088604673919816, 0.8903252600075929, 0.944267921154058, 0.9435968591480925, 0.938237366988842, 0.9357286047893738, 0.7961386682142712, 0.7840233885688647, 0.2513590507613302, 0.7389284097502917, 0.9053472250810051, 0.44438282424164377, 0.862281110352348, 0.8021059248496223, 0.9152740930046814, 0.643737358401971, 0.8540304955499701, 0.8613418170006786, 0.6911084183178322, 0.8848367871057808, 0.8387883096682573, 0.5942651630821018, 0.65691393717736, 0.6369979527510315, 0.8280658524313272, 0.9640736168216585, 0.6546311715671466, 0.5599819536107853, 0.48348053317652906, 0.7668016587569692, 0.03620763244300767, 0.7364400865449663, 0.37408584674942635, 0.8767503774172, 0.8743962287172513, 0.8751970040938668, 0.8833495792027257, 0.7091886355621774, 0.87006937054451, 0.7904001815220257, 0.8761418339280951, 0.8306834851111597, 0.7531715889012326, 0.38181207472529843, 0.6490458991820136, 0.9138057013338913, 0.9046222904886461, 0.17956061692355052, 0.7506163079023257, 0.8963285795381793, 0.8848361664653354, 0.9283037217377402, 0.45996158699034445, 0.7290858434196763, 0.8319094967702583, 0.6578018675312727, 0.18727567457681707, 0.8673410249845035, 0.9453298670648187, 0.9446538464906173, 0.19605573045952288, 0.6723831041639817, 0.3438281302059518, 0.37858973820495484, 0.6953170483296187, 0.21463507152544156, 0.26963792069965237, 0.3280912492037974, 0.8399932187801539, 0.420387898633768, 0.36522500752858966, 0.5810560693343539, 0.9306346767722963, 0.7167716539092029, 0.656736106921484, 0.5549139996760648, 0.6909161521388689, 0.591904263202073, 0.884703171197362, 0.866402281883595, 0.7582770814524421, 0.8990773411030794, 0.1818065866116437, 0.6222165686186035, 0.17261914235374884, 0.8156064679757086, 0.4851213943917703, 0.8871292211128762, 0.8398494053952754, 0.703270618172154, 0.6305543892506115, 0.7494149477175548, 0.1532408287022325, 0.6159732902773407, 0.738220551127759, 0.8354520044441791, 0.8536870432671441, 0.5751476712690671, 0.9077719201719568, 0.7878515691455199, 0.6672663325862807, 0.45293736875445273, 0.17058553029544155, 0.747933377844996, 0.8400163125056676, 0.4516778718827729, 0.6082670858563528, 0.8401843469141149, 0.7636885291754726, 0.789170795337903, 0.8128612802083497, 0.7522530659814418, 0.8086757686066508, 0.8356255123032285, 0.9241779635105248, 0.9674588597049086, 0.9368885694202199, 0.4990764491242286, 0.876561204324957, 0.554264192243629, 0.5967716244634195, 0.9060244606340249, 0.8401608718856799, 0.7329750583133859, 0.8021769878309102, 0.9316817655017511, 0.45488322534173153, 0.798578398438993, 0.7425236774748816, 0.5742682328784404, 0.4937681935814938, 0.8972164286692267, 0.8914273370768748, 0.9377613518261881, 0.8862258850530264, 0.8591757581361523, 0.7410678096850266, 0.6822336012657398, 0.9201658505843877, 0.6982578893131915, 0.5746709232170782, 0.7626532952948841, 0.7137703530889916, 0.7520971196461234, 0.4473853625959922, 0.7957460056304991, 0.4833174871501707, 0.8758467705785958, 0.4689303842787964, 0.6133612564737879, 0.8568681391705205, 0.6835133967314007, 0.9732070839986944, 0.21435716257549006, 0.5761668962420043, 0.4055433603128916, 0.3743394998756179, 0.9118635774953143, 0.964551884718591, 0.9306459334511011, 0.8424802355113449, 0.7739144871152517, 0.6872688771534424, 0.8590561833388345, 0.6714384475466295, 0.6408669500407106, 0.5203550269219845, 0.2856853969697174, 0.857760555506807, 0.9307094503226838, 0.6787928880949093, 0.8308635255795866, 0.29271374211533296, 0.6769315553524353, 0.23831547366416572, 0.5895099457120908, 0.8994675076574448, 0.8893400405584444, 0.8456825404777587, 0.5399612081435882, 0.6188649121485582, 0.9281492942813848, 0.7611740601422801, 0.46550237374781617, 0.8896861436466836, 0.9038901015569306, 0.5044440900554997, 0.9215480939667524, 0.6930273792518707, 0.8723244804196287, 0.5624338775604165, 0.9226297661236537, 0.8469231754225917, 0.9430557295321259, 0.9097116306258912, 0.5988707702267543, 0.3813853072548755, 0.8843832309478876, 0.9006952500629406, 0.918975987201669, 0.18997930334445084, 0.8923106748541326, 0.8461388699436441, 0.5973439234355874, 0.9544642924744549, 0.91770416680597, 0.9177239854204658, 0.17584552180125673, 0.9240099144459667, 0.48524948024905407, 0.8889685222180134, 0.5785503824403398, 0.7511953459672914, 0.6887596776945688, 0.6717539058356753, 0.7168761391602206, 0.7134478068952186, 0.834626350903405, 0.5715867980362679, 0.6588392688727011, 0.9488572786900573, 0.8920529250761863, 0.8891353183282249, 0.707981940789761, 0.926348680038428, 0.631489487929038, 0.7443856388661001, 0.9260754381930228, 0.9544642924744549, 0.8497401318990601, 0.5604010177433062, 0.8036334301115304, 0.7898153537185114, 0.8491431337122072, 0.6570881560807702, 0.8389599143569951, 0.7944137576415592, 0.8132668978866627, 0.44714680104169846, 0.7978021044641371, 0.41921696608658454, 0.38876183891604754, 0.9248463736054193, 0.4277915265084825, 0.6345107008491314, 0.8008942533173764, 0.5087430598332189, 0.9414938992689892, 0.6922115882765215, 0.8296175750175913, 0.8593339228153332, 0.8975141534758351, 0.5977126281557783, 0.9279478536756302, 0.6485770817571253, 0.8905823996589662, 0.9332072841984264, 0.9432461110830079, 0.9410120781436498, 0.6339696776630096, 0.7120962557761497, 0.5841709037351369, 0.5928970840420333, 0.9006589732900512, 0.936371533648048, 0.6907852379101131, 0.7675780198071424, 0.9444587893431046, 0.4702336163336472, 0.8925536722101626, 0.8158978708906081, 0.822780392485108, 0.8037335327290217, 0.8382351003285965, 0.8941557358589171, 0.4796498334522667, 0.926348680038428, 0.6842118015950474, 0.6463580983468415, 0.8292048071278182, 0.5834426687867836, 0.8419845362148763, 0.2431563391580561, 0.7763142135369961, 0.9390550746437164, 0.7774903237071782, 0.8141232663130791, 0.9444089886680379, 0.430401459478284, 0.9192677156927759, 0.8427595869840984, 0.87120858451521, 0.5693182102579236, 0.820012080301976, 0.58719119911586, 0.42769376643096113, 0.3542595869275313, 0.89579938191327, 0.8743523014696554, 0.7820497043505815, 0.5279069501129625, 0.8869579700149332, 0.45488774279476296, 0.8514781135508903, 0.8278297091497892, 0.663749097381813, 0.5132851713944618, 0.4906566565015208, 0.6415219885510332, 0.6991293681294938, 0.8150539074042624, 0.5800669536763935, 0.9583771200922359, 0.7366090055976814, 0.5747817696023392, 0.5315376696882942, 0.8074446941396305, 0.9038901015569306, 0.9087015650331977, 0.6697291810323083, 0.5800669536763935, 0.8807270543114014, 0.5135845984304893, 0.9352791850238339, 0.36120709973337456, 0.6206709330576408, 0.906286252315459, 0.7937202818717513], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [0.05, 0.044, 0.031, 0.09, 0.091, 0.086, 0.043, 0.09, 0.053, 0.054, 0.068, 0.041, 0.039, 0.05, 0.052, 0.117, 0.08, 0.172, 0.05, 0.081, 0.049, 0.048, 0.086, 0.028, 0.067, 0.092, 0.041, 0.088, 0.044, 0.054, 0.068, 0.04, 0.039, 0.039, 0.06, 0.059, 0.039, 0.045, 0.07, 0.045, 0.112, 0.104, 0.047, 0.055, 0.107, 0.059, 0.051, 0.032, 0.047, 0.076, 0.077, 0.061, 0.138, 0.089, 0.053, 0.239, 0.045, 0.048, 0.142, 0.08, 0.05, 0.055, 0.067, 0.05, 0.097, 0.047, 0.043, 0.077, 0.076, 0.024, 0.045, 0.08, 0.051, 0.041, 0.044, 0.033, 0.039, 0.062, 0.098, 0.026, 0.05, 0.037, 0.049, 0.082, 0.068, 0.112, 0.041, 0.047, 0.044, 0.044, 0.08, 0.044, 0.085, 0.051, 0.066, 0.044, 0.055, 0.058, 0.048, 0.056, 0.056, 0.082, 0.034, 0.054, 0.069, 0.467, 0.042, 0.038, 0.045, 0.044, 0.066, 0.027, 0.069, 0.029, 0.082, 0.096, 0.047, 0.047, 0.08, 0.049, 0.047, 0.048, 0.049, 0.038, 0.05, 0.056, 0.041, 0.064, 0.092, 0.04, 0.037, 0.105, 0.209, 0.047, 0.045, 0.063, 0.026, 0.055, 0.05, 0.08, 0.034, 0.039, 0.037, 0.04, 0.041, 0.051, 0.093, 0.04, 0.084, 0.073, 0.052, 0.087, 0.04, 0.079, 0.06, 0.084, 0.105, 0.044, 0.036, 0.03, 0.035, 0.087, 0.07, 0.052, 0.078, 0.034, 0.05, 0.055, 0.108, 0.045, 0.046, 0.053, 0.07, 0.043, 0.1, 0.068, 0.08, 0.042, 0.074, 0.044, 0.05, 0.082, 0.053, 0.056, 0.047, 0.044, 0.052, 0.031, 0.037, 0.044, 0.096, 0.039, 0.047, 0.032, 0.049, 0.084, 0.055, 0.061, 0.049, 0.09, 0.046, 0.205, 0.205, 0.059, 0.046, 0.05, 0.046, 0.083, 0.049, 0.027, 0.05, 0.047, 0.054, 0.056, 0.063, 0.044, 0.045, 0.03, 0.301, 0.034, 0.084, 0.04, 0.039, 0.049, 0.044, 0.052, 0.043, 0.057, 0.046, 0.075, 0.034, 0.04, 0.057, 0.085, 0.04, 0.026, 0.07, 0.02, 0.051, 0.043, 0.099, 0.066, 0.053, 0.24, 0.04, 0.09, 0.085, 0.043, 0.052, 0.07, 0.104, 0.042, 0.039, 0.092, 0.056, 0.047, 0.067, 0.039, 0.058, 0.091, 0.052, 0.052, 0.051, 0.062, 0.05, 0.046, 0.044, 0.049, 0.071, 0.073, 0.058, 0.29, 0.058, 0.044, 0.048, 0.04, 0.091, 0.041, 0.06, 0.04, 0.103, 0.081, 0.041, 0.07, 0.069, 0.046, 0.039, 0.054, 0.026, 0.048, 0.031, 0.05, 0.047, 0.029, 0.083, 0.111, 0.053, 0.056, 0.046, 0.081, 0.041, 0.047, 0.081, 0.05, 0.087, 0.042, 0.05, 0.08, 0.152, 0.098, 0.186, 0.031, 0.081, 0.05, 0.099, 0.048, 0.063, 0.084, 0.04, 0.114, 0.114, 0.048, 0.047, 0.08, 0.047, 0.048, 0.096, 0.046, 0.077, 0.042, 0.048, 0.08, 0.049, 0.052, 0.038, 0.077, 0.048, 0.073, 0.037, 0.054, 0.051, 0.052, 0.037, 0.079, 0.035, 0.074, 0.095, 0.046, 0.046, 0.046, 0.04, 0.07, 0.042, 0.049, 0.047], \"xaxis\": \"x\", \"y\": [0.2802292104526322, 0.9455194119275858, 0.4978743212349556, 0.5289145624519528, 0.28439238707197784, 0.2033309570226689, 0.27345747478543325, 0.8322873304845451, 0.389055896812549, 0.3675472469853882, 0.5781933746273124, 0.7401955299744071, 0.44969671697605845, 0.4367887814338696, 0.31593955341667695, 0.3775624358859999, 0.19282181046294666, 0.048451763306065584, 0.6005928650583868, 0.032225376113695775, 0.427412413738938, 0.23973251442015217, 0.13890126550157303, 0.8613925272127, 0.329663916828638, 0.19359965390713213, 0.6827271716759634, 0.1960905505555538, 0.08135735686643118, 0.39737240301928484, 0.13902987396822816, 0.6514166433739288, 0.6994753721471061, 0.7140886736258081, 0.5021795028970708, 0.48743245558712556, 0.5731139673640956, 0.8820820642542792, 0.559972149724866, 0.5061565591493914, 0.5066810377847554, 0.833805652807593, 0.6979972163580744, 0.3177574231538272, 0.13068190592986567, 0.758876109553896, 0.5681062961269688, 0.715544821914063, 0.762062625203523, 0.4464438677531786, 0.20995974230910305, 0.5262622410710028, 0.39442669669188163, 0.2537324982988368, 0.6775437642744659, 0.23876321589577687, 0.6369158982934647, 0.38960060362966165, 0.6034323722874255, 0.7769991715799629, 0.15199748354041337, 0.5641412449951732, 0.7590466800561823, 0.5969347905931296, 0.1048362779837843, 0.7217824369593382, 0.2662339163773806, 0.16472378978351135, 0.37760124376932414, 0.7071736299639594, 0.3436862995931572, 0.8384434752264291, 0.3635333644877426, 0.7813188949129265, 0.7279369976219869, 0.5641098847382463, 0.3863964747623771, 0.9209913370067284, 0.1477144681640183, 0.8809374658555192, 0.6533168894759348, 0.8873477284758582, 0.3697306267878623, 0.28319023347825867, 0.5203701741750857, 0.5523747693308857, 0.6387521731780509, 0.3881380695009739, 0.8487896327149285, 0.4636606453307818, 0.8384434752264291, 0.558266603669778, 0.21657231888677728, 0.3635333644877426, 0.5512671313974766, 0.5051039398599867, 0.5827915753039158, 0.49441682850108926, 0.47309171914705017, 0.6262595591688196, 0.5508242483721094, 0.47332791509789995, 0.7117569366896692, 0.3933786516273859, 0.16465066549244003, 0.7490394132223248, 0.769261050002088, 0.7431932405995126, 0.3141000916210982, 0.723735045552473, 0.6484132891031948, 0.688519894019609, 0.40496704226994307, 0.5803736122960511, 0.6327801522745691, 0.45115706990411364, 0.37268733756108086, 0.9009693101135351, 0.06496389958099598, 0.44431713201158524, 0.39960831974332744, 0.8662156944598043, 0.31018081106061823, 0.5339551117365043, 0.33311273919547707, 0.400132762133902, 0.8528754522806217, 0.14419347879543085, 0.11672350429510901, 0.44556702529145975, 0.6160120899414699, 0.13766892845409207, 0.5517204028384314, 0.5232178919035022, 0.35483403305733974, 0.4900213704561591, 0.8854578072659228, 0.43084122675663034, 0.7601186327653665, 0.14072030431570776, 0.6186690618327106, 0.5245054232921349, 0.7326259458716644, 0.5690781983520095, 0.4018508815425063, 0.24877469563805235, 0.7952501197393639, 0.8766221356386195, 0.303451532996695, 0.5357745481647883, 0.7096524147827454, 0.20877177283968149, 0.8635610141758273, 0.46736762313881036, 0.6061151992073851, 0.113015272873705, 0.40446014603085867, 0.6332606063976143, 0.648705381890928, 0.42186952587750404, 0.8047913565308571, 0.3017058309841093, 0.38406990132164637, 0.33494193042999065, 0.19929939967121216, 0.8624919783238055, 0.528785836409086, 0.43084122675663034, 0.47042159929499583, 0.5061565591493914, 0.5759491569657543, 0.8468794444363914, 0.20342296359496542, 0.5170831534483544, 0.3666753044655067, 0.6131723001375537, 0.4410646109528086, 0.6903416342484309, 0.3866428492574258, 0.4636606453307818, 0.4525459302795702, 0.03199256040434073, 0.7029629492254846, 0.2433141614541866, 0.548755973819273, 0.3775060302547258, 0.06593060991448157, 0.8745624549148976, 0.22931948662359403, 0.27267688907931714, 0.589328430619086, 0.8007160756317941, 0.5525637789187225, 0.5008522318356121, 0.4556212410144909, 0.17391722008742402, 0.43574637053357784, 0.3237440077649342, 0.6071692164257629, 0.6925152430641841, 0.592675381607996, 0.43854150134957587, 0.43854150134957587, 0.42437112972565305, 0.8061118855433299, 0.35195592295594336, 0.7605370065149419, 0.38898578429124253, 0.67510953655807, 0.872979709380305, 0.710510994258769, 0.720290290780972, 0.4820787970895852, 0.42019280799979697, 0.4304380754474639, 0.25285023254778977, 0.3238056884730761, 0.39471961640683584, 0.09510031985475974, 0.367046376808582, 0.21500793651835448, 0.8705359023101334, 0.6100742529031461, 0.6226449432624995, 0.7279369976219869, 0.3643494054700089, 0.09992017521484964, 0.41475515148757036, 0.6462260464983366, 0.14102909592513518, 0.48949585696458414, 0.5239520436918008, 0.6084413884537807, 0.5655473856702703, 0.9517420512476797, 0.7489379515982664, 0.4647937384849751, 0.7915321263825208, 0.44112279258530757, 0.5734340256727429, 0.6604471727860799, 0.4845203185458914, 0.6968730453869196, 0.5315374962198609, 0.8685951485887234, 0.6242442748350044, 0.2912097196987059, 0.7725938221565348, 0.2067629769731588, 0.30221725334927335, 0.13129342562285412, 0.6467789443522378, 0.6994753721471061, 0.11825382206919556, 0.41022417118631593, 0.4882665226122541, 0.7732287086973071, 0.25374762405010176, 0.49441682850108926, 0.3723877205427743, 0.652330313245635, 0.43667799883041203, 0.5964718913578133, 0.55172276504346, 0.24113559934961917, 0.8243980268882987, 0.7263843594269437, 0.43535214809021755, 0.8721122798612579, 0.18723914490145582, 0.6486906676970999, 0.11576704656818047, 0.4328241622975616, 0.491481212420291, 0.5264345378086769, 0.33856526784971647, 0.2967410926251248, 0.581398831228375, 0.5973776665460488, 0.6195406102170065, 0.37782717658841725, 0.323061133240968, 0.17420808473594895, 0.19634770547538957, 0.46492234760650425, 0.49613167963272686, 0.5812209036149294, 0.6057291775435286, 0.63414717387345, 0.5702687187355167, 0.8604975146328253, 0.6309022132706124, 0.48732991249542923, 0.6887148870948692, 0.41581945293096145, 0.5706760596351739, 0.4831274653996314, 0.06684727567316755, 0.49090643211649887, 0.15191610726090596, 0.2711405311223577, 0.7653618545702112, 0.09266565137124261, 0.4554350627407873, 0.19698919164573708, 0.6930185080649685, 0.5227537922811563, 0.50434568709929, 0.7082092780767422, 0.46058046365566996, 0.6735723234187477, 0.4285936050615775, 0.323061133240968, 0.5168500865319015, 0.6161307914674419, 0.23456444218973552, 0.3192004782541023, 0.21968945907811915, 0.5028183230931117, 0.43371621376298963, 0.6744209213341115, 0.5940260419772637, 0.13783310426722128, 0.5136444387530009, 0.5508647999875032, 0.4955911012838212, 0.9814394195009358, 0.8260225289794664, 0.17965956338109995, 0.46844896472597397, 0.6048119589659149, 0.3289160319090978, 0.2454606394453749, 0.7497022835596558, 0.683485355417811, 0.20995974230910305, 0.23504578258460665, 0.37175956099497537, 0.4875530438829156, 0.24982584224249993, 0.6282829625348888, 0.4520795162158371, 0.8200372413039435, 0.12832513643528837, 0.5299630655130737, 0.29552777318700446, 0.24021937552346023, 0.5429028773737552, 0.6311869746243346, 0.4145977043912777, 0.39329840463575844, 0.39070335653410526, 0.4286990948130573, 0.846836560604146, 0.6880850122626078], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (curr)\", \"type\": \"scatter\", \"x\": [0.068, 0.058, 0.045, 0.044, 0.076, 0.041, 0.037, 0.036, 0.033, 0.036, 0.102, 0.039, 0.033, 0.026, 0.03, 0.04, 0.07, 0.032, 0.078, 0.028, 0.056, 0.045, 0.05, 0.04, 0.04, 0.031, 0.044, 0.038, 0.035, 0.029, 0.032, 0.059, 0.053, 0.034, 0.034, 0.122, 0.035, 0.05, 0.047, 0.096, 0.036, 0.026, 0.034, 0.043, 0.08, 0.065, 0.054, 0.079, 0.039, 0.036, 0.073, 0.034, 0.031, 0.042, 0.039, 0.053, 0.044, 0.05, 0.039, 0.414, 0.054, 0.037, 0.029, 0.036, 0.036, 0.042, 0.061, 0.037, 0.05, 0.055, 0.067, 0.012, 0.04, 0.038, 0.046, 0.048, 0.074, 0.041, 0.059, 0.171, 0.042, 0.037, 0.065, 0.03, 0.035, 0.194, 0.08, 0.048, 0.036, 0.049, 0.046, 0.039, 0.037, 0.035, 0.047, 0.037, 0.091, 0.035, 0.071, 0.071, 0.027, 0.047, 0.072, 0.034, 0.067, 0.051, 0.072, 0.023, 0.038, 0.025, 0.033, 0.053, 0.026, 0.024, 0.055, 0.23, 0.043, 0.057, 0.04, 0.083, 0.03, 0.03, 0.067, 0.029, 0.073, 0.074, 0.088, 0.029, 0.073, 0.04, 0.019, 0.075, 0.043, 0.045, 0.05, 0.049, 0.062, 0.094, 0.06, 0.034, 0.046, 0.071, 0.095, 0.036, 0.046, 0.036, 0.048, 0.087, 0.032, 0.043, 0.039, 0.031, 0.051, 0.043, 0.029, 0.038, 0.058, 0.062, 0.047, 0.058, 0.032, 0.078, 0.032, 0.034, 0.08, 0.034, 0.032, 0.084, 0.065, 0.137, 0.022, 0.04, 0.046, 0.055, 0.027, 0.04, 0.048, 0.031, 0.035, 0.078, 0.037, 0.042, 0.036, 0.093, 0.039, 0.077, 0.078, 0.042, 0.045, 0.081, 0.015, 0.051, 0.028, 0.045, 0.037, 0.035, 0.041, 0.027, 0.048, 0.042, 0.038, 0.038, 0.047, 0.017, 0.036, 0.038, 0.036, 0.074, 0.046, 0.044, 0.046, 0.037, 0.077, 0.029, 0.071, 0.025, 0.046, 0.041, 0.022, 0.047, 0.04, 0.044, 0.086, 0.045, 0.049, 0.071, 0.031, 0.054, 0.072, 0.04, 0.074, 0.05, 0.028, 0.028, 0.072, 0.055, 0.034, 0.047, 0.036, 0.055, 0.043, 0.031, 0.032, 0.057, 0.077, 0.068, 0.057, 0.045, 0.06, 0.077, 0.053, 0.056, 0.053, 0.038, 0.042, 0.053, 0.035, 0.031, 0.033, 0.049, 0.078, 0.04, 0.06, 0.042, 0.08, 0.031, 0.044, 0.032, 0.044, 0.055, 0.044, 0.04, 0.037, 0.087, 0.043, 0.078, 0.032, 0.047, 0.035, 0.062, 0.413, 0.034, 0.028, 0.033, 0.032, 0.077, 0.021, 0.031, 0.044, 0.056, 0.078, 0.214, 0.05, 0.062, 0.034, 0.031, 0.052, 0.04, 0.031, 0.034, 0.029, 0.043, 0.041, 0.034, 0.067, 0.074, 0.033, 0.054, 0.034, 0.043, 0.04, 0.027, 0.071, 0.053, 0.035, 0.045, 0.032, 0.035, 0.044, 0.057, 0.033, 0.036, 0.06, 0.058, 0.11, 0.032, 0.044, 0.132, 0.038, 0.038, 0.08, 0.035, 0.093, 0.043, 0.176, 0.054, 0.041, 0.046, 0.255, 0.085, 0.021, 0.036, 0.055, 0.079, 0.076, 0.039, 0.028, 0.051, 0.088, 0.033, 0.033, 0.047, 0.044, 0.043, 0.049, 0.031, 0.083, 0.04, 0.043, 0.07, 0.025, 0.034, 0.084, 0.037, 0.076, 0.046, 0.044, 0.063, 0.037, 0.049, 0.024, 0.046, 0.039, 0.041, 0.118, 0.117, 0.036, 0.028, 0.064, 0.038, 0.03, 0.022, 0.045, 0.044, 0.036, 0.054, 0.05, 0.026, 0.043, 0.036, 0.032, 0.074, 0.027, 0.053, 0.048, 0.077, 0.038, 0.065, 0.029, 0.027, 0.036, 0.027, 0.022, 0.042, 0.042, 0.056, 0.039, 0.027, 0.051, 0.035, 0.076, 0.048, 0.033, 0.152, 0.057, 0.092, 0.036, 0.085, 0.027, 0.023, 0.04, 0.041, 0.085, 0.243, 0.084, 0.039, 0.043, 0.036, 0.021, 0.045, 0.033, 0.046, 0.037, 0.029, 0.065, 0.081, 0.044, 0.067, 0.028, 0.062, 0.053, 0.054, 0.053, 0.123, 0.031, 0.082, 0.048, 0.059, 0.075, 0.077, 0.045, 0.097, 0.041, 0.069, 0.05, 0.031, 0.053, 0.037, 0.066, 0.061, 0.042, 0.036, 0.052, 0.073, 0.029, 0.047, 0.031, 0.037, 0.036, 0.105, 0.045, 0.035, 0.075, 0.05, 0.057, 0.026, 0.118, 0.034, 0.034, 0.042, 0.039, 0.031, 0.097, 0.075, 0.052, 0.03, 0.037, 0.035, 0.075, 0.078, 0.067, 0.042, 0.078, 0.076, 0.049, 0.118, 0.041, 0.089, 0.059, 0.073, 0.036, 0.044, 0.053, 0.031, 0.034, 0.044, 0.043, 0.034, 0.076, 0.035, 0.07, 0.046, 0.037, 0.048, 0.043, 0.03, 0.084, 0.097, 0.046, 0.063, 0.03, 0.332, 0.033, 0.053, 0.041, 0.061, 0.024, 0.035, 0.034, 0.047, 0.091, 0.052, 0.067, 0.021, 0.216, 0.053, 0.121, 0.035, 0.114, 0.048, 0.046, 0.051, 0.066, 0.046, 0.025, 0.031, 0.119, 0.109, 0.021, 0.053, 0.041, 0.02, 0.05, 0.067, 0.031, 0.041, 0.086, 0.036, 0.029, 0.022, 0.053, 0.038, 0.056, 0.086, 0.057, 0.026, 0.034, 0.033, 0.032, 0.03, 0.06, 0.039, 0.047, 0.032, 0.028, 0.043, 0.04, 0.032, 0.046, 0.042, 0.117, 0.05, 0.035, 0.027, 0.058, 0.049, 0.083, 0.032, 0.044, 0.038, 0.084, 0.051, 0.047, 0.045, 0.12, 0.079, 0.031, 0.04, 0.035, 0.039, 0.055, 0.032, 0.045, 0.026, 0.034, 0.083, 0.071, 0.037, 0.033, 0.045, 0.046, 0.055, 0.048, 0.034, 0.083, 0.03, 0.03, 0.05, 0.048, 0.036, 0.029, 0.036, 0.027, 0.057, 0.046, 0.035, 0.046, 0.045, 0.075, 0.033, 0.082, 0.085, 0.043, 0.049, 0.032, 0.055, 0.16, 0.079, 0.034, 0.03, 0.051, 0.048, 0.047, 0.038, 0.053, 0.055, 0.069, 0.048], \"xaxis\": \"x2\", \"y\": [0.33396714643252134, 0.5044440900554997, 0.8874896900044845, 0.4686759077780351, 0.23831547366416572, 0.571181601185031, 0.7785327680196316, 0.7290551099174598, 0.9581131370131553, 0.6801000322064107, 0.413367674560271, 0.6667140739211237, 0.9108229754863395, 0.9275086157065797, 0.9186958597750785, 0.7191871442695774, 0.8184457509658746, 0.8597940676688322, 0.7947045908306632, 0.8244149680645384, 0.42771531534877594, 0.5315376696882942, 0.7136291946100958, 0.5510697799054304, 0.6393262665313312, 0.9016582766249417, 0.8560880110261746, 0.8947361144883382, 0.9102326114023062, 0.840723585394272, 0.9264645566705582, 0.5105903360131552, 0.752648770317166, 0.5855954083225455, 0.8989214048388485, 0.5190750352404293, 0.9560713253502463, 0.7273157243430202, 0.9279672131348602, 0.640103147954212, 0.9158977434209615, 0.9035955072010529, 0.7140955379655831, 0.233508355491505, 0.7280578325574358, 0.8810827811902006, 0.3966129217085586, 0.15541760955422754, 0.5851621750323275, 0.9046111951917862, 0.4177213302712193, 0.7993763114768937, 0.6978409661933959, 0.6473373667551029, 0.770784382977056, 0.6500641275496193, 0.548949563093737, 0.9803199442553986, 0.6150775052067382, 0.391333092160729, 0.6966682278280982, 0.9426748402861506, 0.9170092977635526, 0.844625652038695, 0.5621782696252592, 0.8935808323282117, 0.6792214086077275, 0.6719996755401956, 0.5252591274442797, 0.7277045758687855, 0.4685752957996948, 0.8616549355667619, 0.347491516391863, 0.8224130863808733, 0.5340790568488665, 0.6711667658766297, 0.5277539611022016, 0.7226430813715845, 0.8140972745487615, 0.3280236940194876, 0.9543080196225542, 0.7752655593026647, 0.9223925066666061, 0.8588031784191832, 0.6345107008491314, 0.9393010047953068, 0.7897067132703484, 0.8608062836413887, 0.8367885032124018, 0.38555642305179116, 0.8611944449682004, 0.9172341012895443, 0.9206892306522243, 0.9500505925695213, 0.537798347971205, 0.9173482789702866, 0.44454351342386716, 0.8909704850569525, 0.7351932580165473, 0.6818328744935735, 0.7981559962965634, 0.7626532952948841, 0.807353254900461, 0.964411205143099, 0.4685752957996948, 0.6986526320119215, 0.1956969407137045, 0.9233481403380283, 0.8218375601976645, 0.8536269727611236, 0.5637680470866036, 0.42267134533232753, 0.93003590801509, 0.9364808605729722, 0.8816060831574614, 0.9663102962713933, 0.8345570787709832, 0.4997893986747249, 0.7921603237806832, 0.5586815647381762, 0.8622246464681924, 0.9828719612298703, 0.909295720392338, 0.9476267884443668, 0.5395521774612226, 0.901360886913609, 0.39410444510430487, 0.9262213132200262, 0.6627387433216217, 0.9629433821448677, 0.9614311452267452, 0.9802968012486629, 0.933760787013923, 0.34432718187202205, 0.63596173557573, 0.624364378916488, 0.7417789548241253, 0.7300918276682445, 0.6968315453320488, 0.7840233885688647, 0.8958841271622066, 0.5417426694559925, 0.7102579146160282, 0.6004345411549624, 0.515920701757342, 0.7587882454650442, 0.5029588531082266, 0.6887596776945688, 0.8642849605932809, 0.6469572639767995, 0.8103639651534781, 0.939764354405301, 0.694136577696587, 0.6593725303534554, 0.9646797005081557, 0.7979900311745153, 0.792123904710467, 0.8869579700149332, 0.7351250317969437, 0.5332560471205093, 0.9406873315653421, 0.39362685027924615, 0.9466602521798594, 0.8394325033041952, 0.6633442657978572, 0.8126408700417265, 0.7332457619716184, 0.08024070404520958, 0.8667774471450977, 0.6466814331404849, 0.912366876100516, 0.656670904734599, 0.8701678467707724, 0.8875925797813499, 0.9658725076002231, 0.7668332861852056, 0.8604440887473094, 0.934384507524058, 0.9605946056867319, 0.951253157591183, 0.5749289095213865, 0.6279243005170476, 0.7937202818717513, 0.7665301650725991, 0.700127941221274, 0.8531107444728586, 0.7947045908306632, 0.8870566665876504, 0.5476228787844645, 0.8410401833568673, 0.8736671065238262, 0.6519898659949606, 0.936943112068646, 0.9077719201719568, 0.8071889556778997, 0.8815615400732472, 0.8935313268029127, 0.8782891297971865, 0.5029588531082266, 0.5797201450332624, 0.9416775458320723, 0.5958140198486584, 0.2485157288688957, 0.932021424688801, 0.8531502837407814, 0.6344194678828672, 0.632587077283238, 0.9121448358615357, 0.5776545535910985, 0.9052765174806566, 0.8580390107418799, 0.8998644401112552, 0.6784536879503494, 0.9458342431661766, 0.21387363850783603, 0.9530348339880965, 0.7307391114165022, 0.7187682731289255, 0.6905635603269331, 0.9569274903702625, 0.9287384091375525, 0.3856984054091925, 0.504413920551941, 0.5389739198483336, 0.5921068831639978, 0.10702848140489757, 0.8772993497727819, 0.6361944011057532, 0.8952999713010865, 0.7069578609115064, 0.10632960186243966, 0.6465592619811017, 0.9116333268133815, 0.9210441535829985, 0.9483358221641291, 0.5800224234700003, 0.896951343689222, 0.8958659323404018, 0.8896861436466836, 0.7763142135369961, 0.778627444633172, 0.9274605647284293, 0.9167924025380936, 0.6422094408272838, 0.6363725079258666, 0.8694129796739031, 0.5693182102579236, 0.5315376696882942, 0.6814536952243052, 0.30089534057709466, 0.6689448970920832, 0.6419522618821227, 0.6500641275496193, 0.8221968069187356, 0.9285763346020383, 0.8495153837633861, 0.7135666997345446, 0.8850789772017983, 0.9128367188568884, 0.8709442503982084, 0.44714680104169846, 0.7147831401969469, 0.6814536952243052, 0.5823319261018008, 0.7718122970862826, 0.8925058444773368, 0.9249991097277733, 0.7849066379312727, 0.5120166815330335, 0.7863291630268572, 0.8171821177205619, 0.8878235148823457, 0.9813953955585096, 0.5009899161211654, 0.6787020040856314, 0.2747106808400709, 0.6998114428322438, 0.7191783799678735, 0.7566715075843347, 0.7741630673610131, 0.692871858980435, 0.8706970297938403, 0.9226518689226377, 0.619213859232465, 0.9620625840847012, 0.8161066853745392, 0.7984578805051198, 0.8987836568806694, 0.27900511725120763, 0.747868261422589, 0.8013372150606806, 0.4430395412241901, 0.8082746512504794, 0.9248395818955686, 0.8132668978866627, 0.7926355964369082, 0.7243101498981422, 0.8251498778038484, 0.865753667016409, 0.8784859927081519, 0.9613966942665844, 0.8380103992838959, 0.9376908870460701, 0.8505645904112248, 0.5317253080143199, 0.8756470416862959, 0.8823120896825394, 0.8920529250761863, 0.9565288857220365, 0.92576324319171, 0.8397457208604353, 0.8008835764985612, 0.7620555647282774, 0.6333567796033132, 0.8986985644274655, 0.8289197139212982, 0.38568054861828666, 0.4358764146033148, 0.7013568331933456, 0.5524769805317635, 0.8654015550049637, 0.9625385348003681, 0.4997035751430624, 0.5940434106189647, 0.29640429037896177, 0.9370396801623051, 0.7496358493500708, 0.8521916566704996, 0.7519935213994349, 0.8956127660014477, 0.7563308848917781, 0.5425355780301907, 0.1652985164032473, 0.5777375433929663, 0.5926841497777402, 0.5247451599628447, 0.6215406511606532, 0.646742228322253, 0.5236567091352762, 0.8105889943537302, 0.7614647275399787, 0.7272264480694343, 0.44438282424164377, 0.8051848688934031, 0.253979247575754, 0.8737269176380216, 0.7884186533408385, 0.5226162157005312, 0.7776146375974927, 0.8021344726910251, 0.6794204065079696, 0.8398669626756513, 0.3743394998756179, 0.6593725303534554, 0.41008410759983227, 0.8726624594592295, 0.31336232876890546, 0.6187135046228962, 0.9208146539756937, 0.8948907807194619, 0.9475948217130945, 0.7098971478357265, 0.41970311630379203, 0.5524505095188592, 0.6689295490636696, 0.39534528644804523, 0.6686700461744643, 0.6608417181144597, 0.6289006219381473, 0.8112353209803558, 0.9675531845963172, 0.3468688843876404, 0.8171815196180959, 0.9315945487332388, 0.7612383340144859, 0.43979370974717685, 0.9452166580978265, 0.810349906376065, 0.4979189466877109, 0.9054024939516333, 0.7506263221664519, 0.8595966107872783, 0.9041757536760852, 0.5120166815330335, 0.9246344940597735, 0.622364539475366, 0.7975959936185795, 0.9376528402833735, 0.8270495791839716, 0.7463426393970082, 0.8508295060861325, 0.5277539611022016, 0.7926521549058593, 0.8343380415579561, 0.7973631232158779, 0.5423298306356671, 0.6253812669856891, 0.9342151247863544, 0.9064095870896521, 0.8428584418618921, 0.5680191878381406, 0.8230633503438987, 0.857993972512287, 0.8312116035859974, 0.8886868130574391, 0.5695902702544526, 0.8750573328895943, 0.47134086624147714, 0.6082670858563528, 0.8571520978358925, 0.7006810412396262, 0.6001343818465046, 0.8680196363335714, 0.7833148206731655, 0.835330250744176, 0.6883000602161935, 0.4297997702781997, 0.7132181587745201, 0.941909753873568, 0.9298379484442667, 0.8950633078112005, 0.9652574497835966, 0.8593048115498744, 0.23022113319019433, 0.5548683876071567, 0.8789570823277312, 0.7176343272433334, 0.7135972690872326, 0.900955402304434, 0.89110615578316, 0.8021344726910251, 0.36734125225010755, 0.9233813125795639, 0.9269988231022361, 0.6021478506882372, 0.27064660283581765, 0.7595966254948197, 0.5317253080143199, 0.9626288904553877, 0.518871521713375, 0.4244151934213653, 0.8784852709235653, 0.667697582798242, 0.6791650855490978, 0.8659372985570389, 0.5217980090164113, 0.9757802673562255, 0.20769640873195563, 0.6900575067285889, 0.15051833553221247, 0.8476988333501053, 0.12043274000614122, 0.6546311715671466, 0.412102187638673, 0.6339696776630096, 0.6925917751558638, 0.8074446941396305, 0.8417042066658985, 0.4702054036006336, 0.8107456318417504, 0.934253622333564, 0.9671353887875448, 0.3776875782453083, 0.5133306968464912, 0.8279918435672958, 0.7295730380004212, 0.8398957027397556, 0.7470826509089123, 0.7722124156410631, 0.3944809481034696, 0.5801047158883857, 0.7134138458261836, 0.8265590446981121, 0.5836238058504062, 0.7538957359152121, 0.9708936701567454, 0.41507295289487073, 0.9039211350062085, 0.5109703825452502, 0.8880660412534, 0.6332514250278477, 0.703270618172154, 0.863031725372896, 0.9601349291832292, 0.5845797646527732, 0.8357575010967041, 0.9584406458449958, 0.8733333206292072, 0.4740801794177068, 0.5787650908025566, 0.38525623454815555, 0.5715075300165849, 0.951253157591183, 0.831291834366621, 0.6482062646591596, 0.5447536045265621, 0.8456825404777587, 0.5358725178581014, 0.8893400405584444, 0.5955893395860203, 0.9408369636189147, 0.7580589814818564, 0.4244151934213653, 0.7636885291754726, 0.9532052815091139, 0.6686700461744643, 0.39683939049776734, 0.8309978518015588, 0.06774730328187532, 0.8934061610794648, 0.9459413258233057, 0.8507977517004935, 0.9694554821790147, 0.8640493534313302, 0.8409166048571896, 0.9059760843724536, 0.7278052027863667, 0.8952246802917138, 0.39534528644804523, 0.9558702864115934, 0.9178754126151818, 0.7504628435478695, 0.7568870052952757, 0.32046258648166903, 0.9712495894387816, 0.7125870341029702, 0.8286889773580812, 0.929575727770858, 0.8422483936479932, 0.60065365322741, 0.5775074082600717, 0.7505976846167132, 0.5317253080143199, 0.9590110623565244, 0.9651712957082627, 0.7333643603414158, 0.7757825668725274, 0.8928390517037824, 0.2578168736401774, 0.5355488836719776, 0.8408692583280314, 0.7849780542174357, 0.8711681462620556, 0.8447990405440073, 0.9571933326515756, 0.9307123551507692, 0.6421242495412457, 0.9239207054420927, 0.9336219461922934, 0.4244151934213653, 0.5673643045526261, 0.8301442064454496, 0.528471943574542, 0.8835542071774324, 0.8820947700128993, 0.4561713647735051, 0.584381944856391, 0.9493936477483658, 0.7816316980556022, 0.7770145472448273, 0.8495153837633861, 0.8318035560268552, 0.5220388622338656, 0.8589980209217414, 0.21216021099657945, 0.8782303617207965, 0.901850575196968, 0.7683760396387002, 0.9559989503713009, 0.938411491366706, 0.7225398931917507, 0.5918361617892179, 0.8596378534897678, 0.8816239240572568, 0.9296844522785247, 0.8299758417251202, 0.7538846798551382, 0.931253582726863, 0.6902425303942638, 0.9299571155275668, 0.35461708236434614, 0.6119587629530028, 0.8979450471026776, 0.8782891297971865, 0.6144930729026484, 0.5601837238662909, 0.4230258756549153, 0.5115702372514986, 0.6133200318312215, 0.8287048127179734, 0.42887934024879554, 0.5543929044930882, 0.5414149972460248, 0.7453725251924848, 0.6522898344923613, 0.6445138145159856, 0.9212190995841192, 0.6991293681294938, 0.9188224881967051, 0.9444881948020799, 0.8399825546316605, 0.6440269003431431, 0.45260210695563535, 0.6678228102737954, 0.8535669746933884, 0.23469888428232324, 0.7581156815660375, 0.8329520097124233, 0.5886389680190937, 0.4250130050586104, 0.290761161529129, 0.9065968169685268, 0.39757013049667705, 0.9584529405260903, 0.24804178200132845, 0.8400605958344816, 0.9562762484868867, 0.5923100188758571, 0.5355488836719776, 0.6866862751474886, 0.753715093249364, 0.9302702282582556, 0.8405005145861136, 0.7758456574858743, 0.8270123797965384, 0.9270997487744173, 0.8779999285967196, 0.6350604679157676, 0.9057987369792326, 0.9732730617650076, 0.28007269673131574, 0.5393237551960537, 0.9509318156255189, 0.8055358405733448, 0.8512314640165554, 0.6752183046546253, 0.9766791413071304, 0.26893819095773785, 0.5105552073939665, 0.7964242570425004, 0.9159462749375985, 0.46312559485344046, 0.7889853219989779, 0.5331772070153998, 0.6250130361556073, 0.5340700079782073, 0.8981158701031157, 0.8424802355113449], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [0.088, 0.06, 0.036, 0.04, 0.043, 0.048, 0.032, 0.078, 0.078, 0.063, 0.054, 0.036, 0.039, 0.048, 0.054, 0.046, 0.052, 0.098, 0.032, 0.03, 0.036, 0.036, 0.035, 0.065, 0.04, 0.035, 0.083, 0.054, 0.028, 0.044, 0.04, 0.077, 0.081, 0.072, 0.054, 0.045, 0.078, 0.079, 0.055, 0.066, 0.026, 0.073, 0.069, 0.047, 0.048, 0.048, 0.076, 0.118, 0.051, 0.025, 0.046, 0.084, 0.034, 0.094, 0.084, 0.077, 0.074, 0.095, 0.04, 0.043, 0.095, 0.037, 0.048, 0.098, 0.098, 0.06, 0.414, 0.076, 0.102, 0.072, 0.115, 0.046, 0.036, 0.088, 0.031, 0.04, 0.052, 0.029, 0.044, 0.074, 0.062, 0.078, 0.045, 0.084, 0.04, 0.028, 0.037, 0.044, 0.041, 0.071, 0.05, 0.043, 0.091, 0.045, 0.08, 0.137, 0.035, 0.17, 0.062, 0.04, 0.092, 0.027, 0.046, 0.073, 0.047, 0.062, 0.146, 0.057, 0.051, 0.045, 0.069, 0.059, 0.078, 0.053, 0.038, 0.029, 0.051, 0.158, 0.05, 0.105, 0.044, 0.028, 0.051, 0.082, 0.076, 0.088, 0.036, 0.034, 0.076, 0.047, 0.016, 0.054, 0.045, 0.036, 0.082, 0.047, 0.053, 0.077, 0.086, 0.041, 0.036, 0.04, 0.031, 0.036, 0.071, 0.049, 0.057, 0.066, 0.079, 0.057, 0.034, 0.048, 0.07, 0.045, 0.076, 0.057, 0.035, 0.046, 0.052, 0.211, 0.089, 0.063, 0.039, 0.038, 0.086, 0.031, 0.036, 0.036, 0.046, 0.052, 0.058, 0.062, 0.049, 0.042, 0.073, 0.033, 0.048, 0.044, 0.047, 0.042, 0.033, 0.041, 0.098, 0.048, 0.06, 0.032, 0.212, 0.034, 0.046, 0.053, 0.078, 0.05, 0.038, 0.039, 0.041, 0.08, 0.051, 0.043, 0.051, 0.094, 0.05, 0.051, 0.06, 0.052, 0.023, 0.045, 0.046, 0.077, 0.042, 0.041, 0.052, 0.053, 0.064, 0.046, 0.048, 0.017, 0.063, 0.036, 0.174, 0.046, 0.043, 0.053, 0.046, 0.045, 0.055, 0.037, 0.088, 0.059, 0.042, 0.068, 0.066, 0.043, 0.05, 0.037, 0.09, 0.056, 0.038, 0.039, 0.045, 0.045, 0.096, 0.094, 0.057, 0.054, 0.041, 0.041, 0.06, 0.045, 0.042, 0.048, 0.08, 0.065, 0.029, 0.045, 0.142, 0.038, 0.054, 0.061, 0.105, 0.099, 0.114, 0.044, 0.046, 0.046, 0.053, 0.053, 0.044, 0.044, 0.036, 0.055, 0.053, 0.092, 0.037, 0.057, 0.044, 0.042, 0.049, 0.082, 0.089, 0.071, 0.081, 0.044, 0.023, 0.044, 0.176, 0.032, 0.045, 0.053, 0.052, 0.081, 0.056, 0.044, 0.055, 0.077, 0.05, 0.064, 0.032, 0.046, 0.057, 0.095, 0.028, 0.093, 0.046, 0.043, 0.056, 0.03, 0.09, 0.05, 0.059, 0.054, 0.079, 0.084, 0.046, 0.046, 0.059, 0.05, 0.073, 0.052, 0.042, 0.042, 0.085, 0.066, 0.059, 0.043, 0.088, 0.053, 0.066, 0.075, 0.038, 0.036, 0.079, 0.051, 0.036, 0.033, 0.071, 0.036, 0.037, 0.058, 0.05, 0.043, 0.046, 0.078, 0.076, 0.08, 0.2, 0.036, 0.05, 0.088, 0.05, 0.036, 0.053, 0.031], \"xaxis\": \"x2\", \"y\": [0.8142007211296887, 0.07257977436397642, 0.7430932382113554, 0.8214862427787604, 0.5698848321031316, 0.6048119589659149, 0.6466669219762841, 0.14510080060429495, 0.2250304680670007, 0.28492472637839966, 0.42061632734231896, 0.8281252124183194, 0.49622399336621903, 0.3482895521074759, 0.4678833354511545, 0.5708968386647719, 0.37048677721847617, 0.553632248395139, 0.8702137350251022, 0.42186952587750404, 0.8696774950675754, 0.5410576963494411, 0.3971326977900686, 0.3275001196198921, 0.9448289227093116, 0.7109941475090589, 0.41925580570138304, 0.3675472469853882, 0.6721911818800557, 0.5562207270314473, 0.5262426608517637, 0.3244609607385458, 0.15056615442564347, 0.15676979724311627, 0.6037730696030339, 0.6342511279653397, 0.021947035536558718, 0.32429164429335744, 0.5678746850743716, 0.3571680467137555, 0.7755534309390314, 0.3240287891037917, 0.699424662214302, 0.5151532452376618, 0.7564675819717819, 0.38343591026479057, 0.19811005648518398, 0.3168419703358067, 0.5315947262677626, 0.9269044449273315, 0.8260225289794664, 0.451791899378283, 0.830516920403184, 0.47128602930186, 0.19027823806377472, 0.5181346713949518, 0.29552777318700446, 0.45414400334446664, 0.39329840463575844, 0.42327932510626076, 0.45838907164509224, 0.2233864252642039, 0.3628419195926303, 0.6709353200988277, 0.46058046365566996, 0.25551237833043455, 0.7234147543269824, 0.1481282262733752, 0.314935793994079, 0.20050531530561894, 0.37453315488553635, 0.701015529968035, 0.6343341418527783, 0.1739320900588749, 0.734996253073231, 0.8172229478314255, 0.3598554146739685, 0.7121055211356295, 0.2620604909731644, 0.3421138035730516, 0.6951268813066005, 0.35208221297891723, 0.452099210446082, 0.18907620085798427, 0.5444201651108793, 0.6484058972837882, 0.3258186925596978, 0.5963383680780668, 0.6202666247822538, 0.576738593946626, 0.5054992484109841, 0.2972245631729925, 0.6844333356791464, 0.42629475072919953, 0.4405153833121037, 0.01207867704715336, 0.7609288944606691, 0.23951123982998349, 0.09310514674080905, 0.5084920166510624, 0.33067609257366243, 0.36481899584296196, 0.5708968386647719, 0.3194802059637459, 0.14207297841267416, 0.5776897120055972, 0.2026163425795633, 0.37909000048748537, 0.38206764842015895, 0.41324683104354176, 0.17826143731067332, 0.42339414872454434, 0.39148091864802853, 0.3511350413575442, 0.8053393751847749, 0.5937005322868365, 0.6849942580153355, 0.38930033076762494, 0.5168500865319015, 0.5699073288866824, 0.5376087249833421, 0.8185832461647057, 0.25950508036415604, 0.20394483716883388, 0.3303044530853749, 0.2528102968078532, 0.8477719856767125, 0.5217124250004609, 0.3303044530853749, 0.5382885532339231, 0.9625763866028243, 0.6536174904341296, 0.42629475072919953, 0.6458781618432388, 0.46574001023909845, 0.37268733756108086, 0.8180085473348132, 0.35493594975273335, 0.2423640089427935, 0.3636330633241046, 0.6421622311157122, 0.5444201651108793, 0.7396308412796291, 0.9036153464846048, 0.21101569987323432, 0.6004024464464508, 0.7595861882737439, 0.486549602332862, 0.2379839758891197, 0.5147825233229498, 0.2065932277190248, 0.4342628292980428, 0.5940848250235929, 0.4857193175270624, 0.5332610244722983, 0.5402196969638672, 0.8578846895389459, 0.5290225674595067, 0.6074669506688956, 0.1847839155105034, 0.3581391437324269, 0.4304380754474639, 0.8410120374942113, 0.5810086483513661, 0.19026233744636453, 0.7223494520380469, 0.8589928738613049, 0.8374625942163022, 0.781203852328267, 0.73983195178881, 0.41156537259256004, 0.7482873396984137, 0.44431713201158524, 0.7113673874393347, 0.49869552495399233, 0.7627102864663872, 0.37193390769028617, 0.37187810520956766, 0.3773291605703562, 0.8719651627687759, 0.6218762459828849, 0.3781393537983126, 0.553632248395139, 0.47624084907999176, 0.774399353278846, 0.5840424935194366, 0.5601025471409736, 0.6186690618327106, 0.620611700356168, 0.5755798886129706, 0.15047650536569443, 0.5530049338021776, 0.6597439619439023, 0.8300222117931148, 0.3490158529243493, 0.4410646109528086, 0.5067909967309752, 0.5851482063434866, 0.7149827463187939, 0.4849259975950144, 0.2094210588097294, 0.33399024531412796, 0.4083143545243069, 0.7497022835596558, 0.7817929239213606, 0.7637421953724776, 0.3825655414920891, 0.6611482494098961, 0.19022241257108333, 0.44972084577511023, 0.5476732603321269, 0.4831274653996314, 0.5077048340566679, 0.7289504589448288, 0.4379810490617926, 0.8017221455714771, 0.6434673631716396, 0.5059779734745421, 0.6065367192264559, 0.650368705032214, 0.34567471266024347, 0.39561589000187136, 0.3427787545601037, 0.4676404271158623, 0.5332283386400669, 0.4519108142444285, 0.40662831629925006, 0.42305576187259053, 0.22032895172816622, 0.5278715769330472, 0.43679486629948455, 0.743933429392776, 0.5269515041023835, 0.5008800654866953, 0.214168174561682, 0.44879088851457377, 0.683485355417811, 0.807753104897186, 0.42629475072919953, 0.8502951424821861, 0.17421175568219957, 0.25491371883486935, 0.7595861882737439, 0.6571724132942184, 0.7813188949129265, 0.5626906653340306, 0.8674288259883418, 0.6600514650598344, 0.4827749661719035, 0.5456147119159479, 0.39827550056677263, 0.27323823737433794, 0.695896529362927, 0.5048820477254727, 0.5422349097465021, 0.5610936746718964, 0.6571724132942184, 0.3088751107498249, 0.45428761266464013, 0.6604471727860799, 0.43371621376298963, 0.6171893197168647, 0.8100511550343341, 0.8100511550343341, 0.605832578461134, 0.5526475584669951, 0.4275055171336787, 0.8734720021260204, 0.8508295378350301, 0.5807723706867254, 0.8272749548927728, 0.2670652478909882, 0.7020144194675465, 0.4615566916191992, 0.7055847950248242, 0.43389869234556755, 0.6071692164257629, 0.3496825637352313, 0.23676491619791426, 0.7057755976874825, 0.15539001443149586, 0.6187538615870153, 0.8735882828904331, 0.30049486749739024, 0.23191705420611952, 0.8913917397916864, 0.4977157214618499, 0.16961113509580228, 0.8485494795219795, 0.4760032757956232, 0.5053843099270294, 0.2676015269871764, 0.3627664421236291, 0.15146266807038725, 0.7898179638281774, 0.6145296307645981, 0.3790380236797623, 0.3003532640340299, 0.6086112016774773, 0.39906793889171593, 0.8185832461647057, 0.6715802865662828, 0.8260225289794664, 0.6056902064850618, 0.400132762133902, 0.39471961640683584, 0.6449859309106076, 0.5637152910565628, 0.39949420960438964, 0.5490401551410112, 0.4398875418860128, 0.30916577334906253, 0.7093303227687476, 0.4562508424819209, 0.40444044759428516, 0.5773483646962835, 0.447777692034652, 0.4961542215384683, 0.32474312180562226, 0.21192693199409943, 0.9056903490933487, 0.5013816399998683, 0.758876109553896, 0.6364928148646596, 0.2952804752502578, 0.4748951900520853, 0.43679486629948455, 0.5479962315186364, 0.4728142838839701, 0.6343341418527783, 0.12248807650217919, 0.5052525886146573, 0.8281252124183194, 0.8930081609652758, 0.36283726088930296, 0.8098196742550625, 0.656477404357746, 0.193885049884708, 0.5269515041023835, 0.49858469647139786, 0.32780472036158087, 0.24927512797396847, 0.6148718578314069, 0.10691527318901187, 0.136775438340409, 0.8489192718114075, 0.2600203086082801, 0.8142007211296887, 0.5269515041023835, 0.7966615933629455, 0.5633234794197017, 0.767479452333631], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"chlorides\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"chlorides\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}, \"chlorides_bad\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (ref)\", \"type\": \"scatter\", \"x\": [0.05, 0.044, 0.031, 0.09, 0.091, 0.086, 0.043, 0.09, 0.053, 0.054, 0.068, 0.041, 0.039, 0.05, 0.052, 0.117, 0.08, 0.172, 0.05, 0.081, 0.049, 0.048, 0.086, 0.028, 0.067, 0.092, 0.041, 0.088, 0.044, 0.054, 0.068, 0.04, 0.039, 0.039, 0.06, 0.059, 0.039, 0.045, 0.07, 0.045, 0.112, 0.104, 0.047, 0.055, 0.107, 0.059, 0.051, 0.032, 0.047, 0.076, 0.077, 0.061, 0.138, 0.089, 0.053, 0.239, 0.045, 0.048, 0.142, 0.08, 0.05, 0.055, 0.067, 0.05, 0.097, 0.047, 0.043, 0.077, 0.076, 0.024, 0.045, 0.08, 0.051, 0.041, 0.044, 0.033, 0.039, 0.062, 0.098, 0.026, 0.05, 0.037, 0.049, 0.082, 0.068, 0.112, 0.041, 0.047, 0.044, 0.044, 0.08, 0.044, 0.085, 0.051, 0.066, 0.044, 0.055, 0.058, 0.048, 0.056, 0.056, 0.082, 0.034, 0.054, 0.069, 0.467, 0.042, 0.038, 0.045, 0.044, 0.066, 0.027, 0.069, 0.029, 0.082, 0.096, 0.047, 0.047, 0.08, 0.049, 0.047, 0.048, 0.049, 0.038, 0.05, 0.056, 0.041, 0.064, 0.092, 0.04, 0.037, 0.105, 0.209, 0.047, 0.045, 0.063, 0.026, 0.055, 0.05, 0.08, 0.034, 0.039, 0.037, 0.04, 0.041, 0.051, 0.093, 0.04, 0.084, 0.073, 0.052, 0.087, 0.04, 0.079, 0.06, 0.084, 0.105, 0.044, 0.036, 0.03, 0.035, 0.087, 0.07, 0.052, 0.078, 0.034, 0.05, 0.055, 0.108, 0.045, 0.046, 0.053, 0.07, 0.043, 0.1, 0.068, 0.08, 0.042, 0.074, 0.044, 0.05, 0.082, 0.053, 0.056, 0.047, 0.044, 0.052, 0.031, 0.037, 0.044, 0.096, 0.039, 0.047, 0.032, 0.049, 0.084, 0.055, 0.061, 0.049, 0.09, 0.046, 0.205, 0.205, 0.059, 0.046, 0.05, 0.046, 0.083, 0.049, 0.027, 0.05, 0.047, 0.054, 0.056, 0.063, 0.044, 0.045, 0.03, 0.301, 0.034, 0.084, 0.04, 0.039, 0.049, 0.044, 0.052, 0.043, 0.057, 0.046, 0.075, 0.034, 0.04, 0.057, 0.085, 0.04, 0.026, 0.07, 0.02, 0.051, 0.043, 0.099, 0.066, 0.053, 0.24, 0.04, 0.09, 0.085, 0.043, 0.052, 0.07, 0.104, 0.042, 0.039, 0.092, 0.056, 0.047, 0.067, 0.039, 0.058, 0.091, 0.052, 0.052, 0.051, 0.062, 0.05, 0.046, 0.044, 0.049, 0.071, 0.073, 0.058, 0.29, 0.058, 0.044, 0.048, 0.04, 0.091, 0.041, 0.06, 0.04, 0.103, 0.081, 0.041, 0.07, 0.069, 0.046, 0.039, 0.054, 0.026, 0.048, 0.031, 0.05, 0.047, 0.029, 0.083, 0.111, 0.053, 0.056, 0.046, 0.081, 0.041, 0.047, 0.081, 0.05, 0.087, 0.042, 0.05, 0.08, 0.152, 0.098, 0.186, 0.031, 0.081, 0.05, 0.099, 0.048, 0.063, 0.084, 0.04, 0.114, 0.114, 0.048, 0.047, 0.08, 0.047, 0.048, 0.096, 0.046, 0.077, 0.042, 0.048, 0.08, 0.049, 0.052, 0.038, 0.077, 0.048, 0.073, 0.037, 0.054, 0.051, 0.052, 0.037, 0.079, 0.035, 0.074, 0.095, 0.046, 0.046, 0.046, 0.04, 0.07, 0.042, 0.049, 0.047], \"xaxis\": \"x\", \"y\": [0.7197707895473677, 0.05448058807241418, 0.5021256787650443, 0.4710854375480472, 0.7156076129280222, 0.7966690429773311, 0.7265425252145667, 0.16771266951545494, 0.610944103187451, 0.6324527530146118, 0.42180662537268765, 0.2598044700255929, 0.5503032830239416, 0.5632112185661304, 0.6840604465833231, 0.6224375641140001, 0.8071781895370533, 0.9515482366939344, 0.3994071349416132, 0.9677746238863042, 0.572587586261062, 0.7602674855798478, 0.861098734498427, 0.1386074727873, 0.6703360831713621, 0.8064003460928679, 0.3172728283240366, 0.8039094494444462, 0.9186426431335688, 0.6026275969807151, 0.8609701260317718, 0.3485833566260712, 0.3005246278528939, 0.2859113263741919, 0.4978204971029292, 0.5125675444128744, 0.4268860326359044, 0.11791793574572085, 0.440027850275134, 0.4938434408506086, 0.4933189622152446, 0.166194347192407, 0.30200278364192557, 0.6822425768461728, 0.8693180940701344, 0.24112389044610405, 0.43189370387303117, 0.284455178085937, 0.23793737479647703, 0.5535561322468214, 0.7900402576908969, 0.47373775892899717, 0.6055733033081183, 0.7462675017011632, 0.32245623572553406, 0.7612367841042231, 0.36308410170653527, 0.6103993963703384, 0.3965676277125745, 0.2230008284200371, 0.8480025164595866, 0.43585875500482685, 0.24095331994381775, 0.4030652094068704, 0.8951637220162157, 0.2782175630406618, 0.7337660836226194, 0.8352762102164887, 0.6223987562306759, 0.2928263700360406, 0.6563137004068428, 0.16155652477357085, 0.6364666355122575, 0.2186811050870735, 0.27206300237801306, 0.4358901152617537, 0.6136035252376228, 0.07900866299327158, 0.8522855318359817, 0.11906253414448076, 0.3466831105240652, 0.11265227152414181, 0.6302693732121377, 0.7168097665217413, 0.4796298258249143, 0.4476252306691143, 0.3612478268219491, 0.611861930499026, 0.15121036728507153, 0.5363393546692182, 0.16155652477357085, 0.441733396330222, 0.7834276811132227, 0.6364666355122575, 0.44873286860252337, 0.4948960601400133, 0.4172084246960842, 0.5055831714989107, 0.5269082808529498, 0.3737404408311804, 0.4491757516278906, 0.5266720849021, 0.2882430633103308, 0.6066213483726142, 0.83534933450756, 0.2509605867776752, 0.230738949997912, 0.25680675940048736, 0.6858999083789018, 0.27626495444752697, 0.35158671089680515, 0.311480105980391, 0.5950329577300569, 0.4196263877039489, 0.3672198477254309, 0.5488429300958864, 0.6273126624389191, 0.0990306898864649, 0.935036100419004, 0.5556828679884147, 0.6003916802566726, 0.1337843055401957, 0.6898191889393818, 0.46604488826349566, 0.6668872608045229, 0.5998672378660981, 0.14712454771937833, 0.8558065212045691, 0.883276495704891, 0.5544329747085402, 0.38398791005853006, 0.8623310715459079, 0.4482795971615686, 0.4767821080964978, 0.6451659669426603, 0.5099786295438409, 0.11454219273407718, 0.5691587732433696, 0.2398813672346335, 0.8592796956842923, 0.38133093816728936, 0.4754945767078651, 0.2673740541283356, 0.43092180164799054, 0.5981491184574936, 0.7512253043619477, 0.20474988026063612, 0.12337786436138054, 0.6965484670033051, 0.4642254518352117, 0.29034758521725457, 0.7912282271603185, 0.1364389858241727, 0.5326323768611896, 0.3938848007926149, 0.886984727126295, 0.5955398539691413, 0.3667393936023857, 0.35129461810907203, 0.578130474122496, 0.1952086434691429, 0.6982941690158907, 0.6159300986783536, 0.6650580695700093, 0.8007006003287879, 0.13750802167619447, 0.47121416359091395, 0.5691587732433696, 0.5295784007050042, 0.4938434408506086, 0.4240508430342457, 0.1531205555636086, 0.7965770364050346, 0.4829168465516456, 0.6333246955344933, 0.38682769986244625, 0.5589353890471914, 0.30965836575156913, 0.6133571507425741, 0.5363393546692182, 0.5474540697204298, 0.9680074395956593, 0.29703705077451537, 0.7566858385458134, 0.451244026180727, 0.6224939697452743, 0.9340693900855184, 0.1254375450851024, 0.770680513376406, 0.7273231109206828, 0.410671569380914, 0.19928392436820586, 0.44743622108127745, 0.4991477681643879, 0.5443787589855091, 0.826082779912576, 0.5642536294664222, 0.6762559922350657, 0.39283078357423706, 0.3074847569358159, 0.40732461839200396, 0.5614584986504241, 0.5614584986504241, 0.575628870274347, 0.1938881144566701, 0.6480440770440566, 0.23946299348505806, 0.6110142157087575, 0.32489046344192996, 0.127020290619695, 0.28948900574123104, 0.27970970921902805, 0.5179212029104148, 0.579807192000203, 0.5695619245525361, 0.7471497674522103, 0.6761943115269239, 0.6052803835931642, 0.9048996801452402, 0.632953623191418, 0.7849920634816455, 0.12946409768986655, 0.3899257470968539, 0.37735505673750047, 0.27206300237801306, 0.6356505945299911, 0.9000798247851504, 0.5852448485124296, 0.3537739535016634, 0.8589709040748648, 0.5105041430354158, 0.4760479563081992, 0.3915586115462193, 0.4344526143297297, 0.04825794875232026, 0.25106204840173363, 0.5352062615150248, 0.2084678736174792, 0.5588772074146924, 0.42656597432725707, 0.3395528272139201, 0.5154796814541086, 0.30312695461308037, 0.4684625037801391, 0.13140485141127656, 0.37575572516499556, 0.7087902803012941, 0.22740617784346517, 0.7932370230268412, 0.6977827466507267, 0.8687065743771458, 0.3532210556477622, 0.3005246278528939, 0.8817461779308045, 0.5897758288136841, 0.5117334773877459, 0.2267712913026929, 0.7462523759498982, 0.5055831714989107, 0.6276122794572256, 0.34766968675436505, 0.563322001169588, 0.4035281086421867, 0.44827723495654004, 0.7588644006503809, 0.17560197311170134, 0.2736156405730563, 0.5646478519097824, 0.12788772013874206, 0.8127608550985441, 0.35130933230290007, 0.8842329534318195, 0.5671758377024384, 0.508518787579709, 0.4735654621913231, 0.6614347321502836, 0.7032589073748752, 0.418601168771625, 0.40262233345395115, 0.38045938978299354, 0.6221728234115828, 0.6769388667590319, 0.825791915264051, 0.8036522945246104, 0.5350776523934957, 0.5038683203672731, 0.4187790963850706, 0.3942708224564714, 0.36585282612655, 0.42973128126448334, 0.1395024853671747, 0.36909778672938764, 0.5126700875045708, 0.31128511290513083, 0.5841805470690385, 0.42932394036482613, 0.5168725346003686, 0.9331527243268325, 0.5090935678835011, 0.848083892739094, 0.7288594688776423, 0.23463814542978878, 0.9073343486287574, 0.5445649372592127, 0.8030108083542629, 0.30698149193503155, 0.47724620771884374, 0.49565431290071005, 0.29179072192325783, 0.53941953634433, 0.32642767658125227, 0.5714063949384225, 0.6769388667590319, 0.48314991346809855, 0.3838692085325581, 0.7654355578102645, 0.6807995217458978, 0.7803105409218809, 0.4971816769068883, 0.5662837862370104, 0.32557907866588853, 0.4059739580227363, 0.8621668957327787, 0.4863555612469991, 0.44913520001249685, 0.5044088987161788, 0.018560580499064172, 0.17397747102053363, 0.8203404366189, 0.531551035274026, 0.3951880410340851, 0.6710839680909022, 0.7545393605546251, 0.25029771644034415, 0.31651464458218903, 0.7900402576908969, 0.7649542174153934, 0.6282404390050247, 0.5124469561170844, 0.7501741577575001, 0.3717170374651112, 0.5479204837841629, 0.1799627586960565, 0.8716748635647116, 0.4700369344869263, 0.7044722268129955, 0.7597806244765397, 0.4570971226262448, 0.3688130253756654, 0.5854022956087224, 0.6067015953642416, 0.6092966434658947, 0.5713009051869427, 0.15316343939585397, 0.31191498773739224], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [0.037, 0.054, 0.051, 0.039, 0.046, 0.086, 0.033, 0.032, 0.032, 0.071, 0.037, 0.069, 0.044, 0.049, 0.053, 0.061, 0.036, 0.1, 0.033, 0.035, 0.038, 0.034, 0.051, 0.034, 0.039, 0.048, 0.029, 0.033, 0.05, 0.029, 0.063, 0.062, 0.032, 0.045, 0.029, 0.05, 0.038, 0.03, 0.032, 0.02, 0.033, 0.05, 0.046, 0.035, 0.043, 0.058, 0.08, 0.029, 0.074, 0.033, 0.058, 0.044, 0.039, 0.042, 0.037, 0.076, 0.03, 0.02, 0.04, 0.034, 0.064, 0.035, 0.044, 0.042, 0.088, 0.085, 0.012, 0.047, 0.069, 0.02, 0.039, 0.032, 0.047, 0.05, 0.061, 0.05, 0.078, 0.034, 0.073, 0.038, 0.047, 0.032, 0.033, 0.035, 0.034, 0.035, 0.044, 0.086, 0.04, 0.084, 0.037, 0.035, 0.04, 0.044, 0.046, 0.031, 0.035, 0.035, 0.04, 0.046, 0.042, 0.05, 0.091, 0.05, 0.037, 0.048, 0.053, 0.048, 0.036, 0.064, 0.05, 0.053, 0.024, 0.054, 0.043, 0.021, 0.042, 0.052, 0.04, 0.074, 0.062, 0.052, 0.043, 0.053, 0.078, 0.084, 0.074, 0.045, 0.031, 0.084, 0.034, 0.036, 0.042, 0.08, 0.062, 0.035, 0.092, 0.062, 0.038, 0.092, 0.049, 0.041, 0.046, 0.04, 0.084, 0.044, 0.036, 0.031, 0.077, 0.051, 0.051, 0.073, 0.036, 0.046, 0.051, 0.038, 0.043, 0.042, 0.027, 0.039, 0.036, 0.083, 0.044, 0.077, 0.033, 0.043, 0.041, 0.035, 0.036, 0.036, 0.071, 0.082, 0.039, 0.033, 0.087, 0.044, 0.076, 0.05, 0.037, 0.08, 0.046, 0.044, 0.054, 0.031, 0.045, 0.047, 0.037, 0.068, 0.04, 0.044, 0.026, 0.087, 0.032, 0.036, 0.082, 0.028, 0.06, 0.048, 0.019, 0.026, 0.056, 0.034, 0.041, 0.072, 0.043, 0.057, 0.062, 0.042, 0.057, 0.053, 0.057, 0.024, 0.04, 0.035, 0.031, 0.045, 0.029, 0.038, 0.029, 0.095, 0.039, 0.042, 0.044, 0.032, 0.074, 0.025, 0.067, 0.047, 0.047, 0.046, 0.041, 0.049, 0.072, 0.042, 0.051, 0.037, 0.034, 0.046, 0.028, 0.036, 0.024, 0.058, 0.154, 0.048, 0.114, 0.047, 0.043, 0.064, 0.039, 0.029, 0.044, 0.053, 0.171, 0.075, 0.081, 0.047, 0.046, 0.184, 0.038, 0.062, 0.05, 0.063, 0.041, 0.047, 0.036, 0.032, 0.028, 0.08, 0.063, 0.038, 0.042, 0.045, 0.041, 0.039, 0.021, 0.06, 0.039, 0.068, 0.087, 0.194, 0.042, 0.037, 0.028, 0.026, 0.024, 0.084, 0.051, 0.054, 0.114, 0.048, 0.038, 0.029, 0.093, 0.037, 0.048, 0.056, 0.074, 0.041, 0.046, 0.04, 0.069, 0.044, 0.039, 0.049, 0.033, 0.074, 0.034, 0.104, 0.038, 0.145, 0.073, 0.05, 0.056, 0.038, 0.043, 0.082, 0.049, 0.033, 0.042, 0.029, 0.014, 0.144, 0.035, 0.03, 0.034, 0.066, 0.042, 0.1, 0.055, 0.058, 0.026, 0.045, 0.071, 0.056, 0.035, 0.043, 0.03, 0.068, 0.039, 0.047, 0.051, 0.022, 0.035, 0.041, 0.058, 0.04, 0.048, 0.065, 0.02, 0.05, 0.046, 0.048, 0.039, 0.033, 0.047, 0.037, 0.081, 0.037, 0.104, 0.03, 0.053, 0.049, 0.067, 0.066, 0.08, 0.048, 0.048, 0.041, 0.079, 0.046, 0.043, 0.043, 0.041, 0.042, 0.032, 0.027, 0.033, 0.095, 0.057, 0.08, 0.071, 0.024, 0.096, 0.052, 0.045, 0.031, 0.214, 0.048, 0.041, 0.026, 0.032, 0.047, 0.034, 0.035, 0.045, 0.067, 0.052, 0.031, 0.032, 0.066, 0.068, 0.079, 0.044, 0.043, 0.028, 0.041, 0.031, 0.033, 0.063, 0.045, 0.039, 0.041, 0.052, 0.034, 0.046, 0.045, 0.034, 0.04, 0.054, 0.06, 0.05, 0.029, 0.047, 0.051, 0.055, 0.031, 0.057, 0.064, 0.036, 0.042, 0.033, 0.027, 0.03, 0.026, 0.052, 0.024, 0.075, 0.103, 0.035, 0.094, 0.038, 0.047, 0.028, 0.029, 0.042, 0.052, 0.045, 0.06, 0.066, 0.037, 0.035, 0.036, 0.026, 0.036, 0.045, 0.066, 0.036, 0.079, 0.047, 0.035, 0.066, 0.078, 0.07, 0.045, 0.034, 0.072, 0.036, 0.026, 0.05, 0.052, 0.079, 0.058, 0.051, 0.044, 0.026, 0.038, 0.036, 0.048, 0.056, 0.045, 0.095, 0.054, 0.047, 0.039, 0.061, 0.036, 0.031, 0.051, 0.029, 0.063, 0.048, 0.076, 0.058, 0.039, 0.059, 0.041, 0.057, 0.043, 0.044, 0.042, 0.049, 0.036, 0.031, 0.058, 0.027, 0.048, 0.027, 0.034, 0.027, 0.055, 0.039, 0.025, 0.053, 0.042, 0.034, 0.024, 0.033, 0.048, 0.028, 0.034, 0.054, 0.033, 0.028, 0.036, 0.097, 0.019, 0.039, 0.054, 0.045, 0.036, 0.087, 0.098, 0.044, 0.043, 0.037, 0.087, 0.047, 0.041, 0.054, 0.039, 0.048, 0.041, 0.04, 0.051, 0.029, 0.033, 0.104, 0.053, 0.042, 0.051, 0.022, 0.031, 0.044, 0.049, 0.034, 0.078, 0.045, 0.089, 0.056, 0.036, 0.18, 0.035, 0.031, 0.048, 0.044, 0.037, 0.038, 0.043, 0.034, 0.045, 0.039, 0.047, 0.028, 0.019, 0.039, 0.022, 0.05, 0.025, 0.072, 0.046, 0.032, 0.03, 0.034, 0.064, 0.045, 0.076, 0.036, 0.041, 0.041, 0.032, 0.11, 0.031, 0.047, 0.041, 0.039, 0.036, 0.038, 0.065, 0.037, 0.054, 0.055, 0.046, 0.047, 0.041, 0.08, 0.046, 0.037, 0.064, 0.031, 0.057, 0.041, 0.092, 0.04, 0.084, 0.039, 0.06, 0.04, 0.047, 0.062, 0.148, 0.045, 0.035, 0.062, 0.119, 0.031, 0.051, 0.04, 0.028, 0.046, 0.031, 0.119, 0.044, 0.045, 0.053, 0.031, 0.033, 0.063, 0.046, 0.043, 0.083, 0.023, 0.107, 0.039, 0.038, 0.036], \"xaxis\": \"x\", \"y\": [0.18439386755371057, 0.5750868907731637, 0.1132172353536568, 0.19850047615697952, 0.6950004168934912, 0.41826441672946313, 0.040828937665112974, 0.2145583871630251, 0.09143093017991866, 0.10013996234885614, 0.3658834999306372, 0.587897812361327, 0.23563705889496211, 0.5289998061994394, 0.5981734696485812, 0.5956194363709464, 0.11295199838815062, 0.6349332021584286, 0.09356782907078887, 0.0672754654033908, 0.3541579814831264, 0.11781588709523827, 0.3295981493457443, 0.23443288181779365, 0.13830133810679424, 0.5122546205578999, 0.03626449638205209, 0.32057959349203036, 0.3955164844050859, 0.21320459763992916, 0.08620177311633537, 0.4132497936565127, 0.19514157099220286, 0.028148892894647393, 0.03728071159582558, 0.20213762816504022, 0.39088790332760825, 0.10566618212719892, 0.11466232649727714, 0.09544364959788487, 0.07351553674018241, 0.3657542344632553, 0.05859665738698361, 0.43634835962676355, 0.4827032077898804, 0.516310366273556, 0.6480037931050455, 0.21122004543372697, 0.030344760075157406, 0.22750344576024595, 0.18673438423788624, 0.5460909738859347, 0.0666291073587214, 0.320234954276134, 0.515425573770442, 0.5751179393061847, 0.3262180383913996, 0.12192585741802231, 0.6165939755266235, 0.09365914315081003, 0.44259853952477324, 0.31958523161407537, 0.09228899111547839, 0.22815273642701062, 0.5282447951108347, 0.7777719169155834, 0.13834506443323813, 0.29425092810710396, 0.5300870647699181, 0.031947521718024174, 0.1108646816717751, 0.053339747820140615, 0.14466174791529418, 0.25697560969337485, 0.3383868137798065, 0.30803904997837983, 0.03434255320493995, 0.08689109251212201, 0.46044782253877736, 0.0973761441498977, 0.3449058470623745, 0.024212367984770777, 0.11665042079727428, 0.3333970234137619, 0.1495417879159372, 0.0679784404121434, 0.2360052425084116, 0.39147703437781534, 0.04428683932015287, 0.5381556738404795, 0.4357341587922019, 0.11843845992675284, 0.28107964630818494, 0.06989794698232743, 0.2658605825653322, 0.22408104406272966, 0.15519213452661884, 0.09873339188795927, 0.10739713799337769, 0.4712507279726723, 0.31257930793611366, 0.6259141532505736, 0.1651629894813923, 0.13024327386797574, 0.08242409751896962, 0.55355901104019, 0.11256152515999429, 0.22124325125588817, 0.05838775174278421, 0.6734770756819889, 0.06919042490492266, 0.5773286546676725, 0.5693181878572973, 0.12726917141891614, 0.27983888222674136, 0.15690954109554833, 0.18593824584442387, 0.05432525584274117, 0.33273366741371935, 0.12435295831370408, 0.48112847828662497, 0.2959384652215836, 0.5042039768350125, 0.3749869638443927, 0.7258627386781167, 0.4806866421912115, 0.6234335830956541, 0.4191951896523489, 0.20821728825178332, 0.6343085651912675, 0.27674577061671146, 0.02140654255666985, 0.42849246998341506, 0.1817444030106703, 0.4551538855951942, 0.05087080041524106, 0.516641204200833, 0.6810720245435042, 0.08151744899857294, 0.4475169494323581, 0.03995706953508171, 0.2181819033834006, 0.20372897255157485, 0.24305701296248816, 0.5381556738404795, 0.2358485729609252, 0.051323642447754336, 0.1913631294907303, 0.32154631204965056, 0.31229802093755377, 0.3917329141436472, 0.39462053822053156, 0.3680669306910641, 0.5017894292511481, 0.32120711190509066, 0.0768019282386515, 0.1168769044932052, 0.31545143431826594, 0.12007957373947853, 0.08354361700756141, 0.2180731800932174, 0.7653011157176768, 0.05076221583963347, 0.11739077279846111, 0.3639458403519926, 0.4815918747301601, 0.35998732468747585, 0.457353694020342, 0.5520498791697908, 0.22168281241722143, 0.2132287846887433, 0.4763394582576197, 0.3040153802820409, 0.20749766415549342, 0.3316810644107503, 0.8126297477835096, 0.5749367295182395, 0.27274039590582944, 0.2685808245693546, 0.5172108675362206, 0.33506587713796443, 0.09616672688355288, 0.041108213935392324, 0.10548050716105373, 0.5016695616404938, 0.20022874051447226, 0.14220640128276774, 0.23772630779738468, 0.19606080251004787, 0.2603188495268066, 0.18846597668723208, 0.19827111133563302, 0.261548791893628, 0.4140325207077993, 0.8134796325151183, 0.12265695643958285, 0.6311167068993262, 0.13481820177301163, 0.0932384579037443, 0.14050160114126486, 0.2562249115981724, 0.08547750670655718, 0.08643201081848362, 0.19981675431015722, 0.31390222338706264, 0.06221739913672386, 0.06996303880871468, 0.30029370289300306, 0.4306817897420764, 0.6595343859760441, 0.2839408857911616, 0.20468539219890003, 0.1130196126722065, 0.2360017176902124, 0.13187147729288817, 0.42313120297864704, 0.06964897436687001, 0.1624399718171824, 0.17200815643270417, 0.07333105637055992, 0.2440137653363641, 0.4900110333069776, 0.3085554157386313, 0.03480496731142946, 0.12148031785507996, 0.15002971926037112, 0.5314247042003052, 0.2758453007685677, 0.2151852748992088, 0.2658605825653322, 0.29911225563077193, 0.6594110243744711, 0.49869782335001445, 0.16788254706683048, 0.11816213334465087, 0.08230909248122409, 0.13653212507346946, 0.25639170942272826, 0.06562233405876228, 0.23311900627036541, 0.3756616197417655, 0.46674395287949066, 0.3092684534350997, 0.8337319641197457, 0.8331457111467163, 0.2591056156836542, 0.4778687671024334, 0.2542440524586721, 0.5361036306539362, 0.07073721340803463, 0.4731688813159418, 0.5755848065786346, 0.356689463387698, 0.14225616860197343, 0.21837916002376445, 0.14466174791529418, 0.29899643271856946, 0.4757427727983842, 0.08126799884203029, 0.1296501822378736, 0.3286954654423938, 0.08620177311633537, 0.13855855420831553, 0.05543377339452393, 0.11917834098009661, 0.2613621884509647, 0.11269900223777074, 0.08429051026621415, 0.3393961441870107, 0.07031960314855146, 0.11356777592095357, 0.4853279864284006, 0.1279289285514792, 0.0584572339054259, 0.08612988585012649, 0.3472440907423937, 0.1248029959061332, 0.07502335399434323, 0.19827111133563302, 0.3424151534036639, 0.3065175956815872, 0.13808860398564737, 0.058092197534895806, 0.04082786106581715, 0.1602592849246841, 0.09156161599234125, 0.5036030690663805, 0.2640411824475748, 0.6468038092930676, 0.07201805208597656, 0.22470230804277058, 0.1334773721572423, 0.04847889440667685, 0.2685808245693546, 0.10911308148570098, 0.6764508967260475, 0.6280060594576413, 0.36761958218269275, 0.16019930342079847, 0.17605308658107655, 0.14078981831089854, 0.2384997092801764, 0.13117402490907393, 0.12818959986091483, 0.4161925244315118, 0.12435295831370408, 0.09814942480303201, 0.05480698563416486, 0.3746187330143109, 0.41092354232892336, 0.507894749900129, 0.5137929421583434, 0.08293523366016065, 0.2964416548030494, 0.15236141109070434, 0.4396941021426354, 0.41893931094950754, 0.09113953260801844, 0.10967473999240707, 0.055732078845942, 0.05640314085190745, 0.06176263301115803, 0.06427139521062619, 0.20386133178572885, 0.21597661143113533, 0.7486409492386699, 0.2610715902497083, 0.09465277491899493, 0.5556171757583562, 0.137718889647652, 0.1978940751503777, 0.08472590699531857, 0.356262641598029, 0.14596950445002987, 0.13865818299932142, 0.3088915816821678, 0.11516321289421916, 0.16121169033174265, 0.40573483691789825, 0.34308606282264, 0.36300204724896845, 0.17193414756867276, 0.035926383178341514, 0.34536882843285344, 0.4400180463892147, 0.5165194668234709, 0.23319834124303085, 0.9637923675569924, 0.2635599134550337, 0.6259141532505736, 0.12324962258280003, 0.1256037712827487, 0.1248029959061332, 0.11665042079727428, 0.29081136443782263, 0.12993062945549005, 0.20959981847797426, 0.12385816607190492, 0.16931651488884025, 0.2468284110987674, 0.6181879252747016, 0.3509541008179864, 0.08619429866610873, 0.09537770951135394, 0.8204393830764495, 0.2493836920976743, 0.10367142046182065, 0.11516383353466464, 0.07169627826225977, 0.5400384130096556, 0.2709141565803237, 0.16809050322974173, 0.3421981324687273, 0.812724325423183, 0.1326589750154965, 0.054670132935181304, 0.055346153509382656, 0.8039442695404772, 0.3276168958360183, 0.6561718697940482, 0.6214102617950452, 0.3046829516703813, 0.7853649284745584, 0.7303620793003476, 0.6719087507962026, 0.16000678121984613, 0.579612101366232, 0.6347749924714103, 0.41894393066564606, 0.06936532322770372, 0.28322834609079706, 0.343263893078516, 0.4450860003239352, 0.3090838478611311, 0.408095736797927, 0.11529682880263803, 0.13359771811640497, 0.2417229185475579, 0.10092265889692065, 0.8181934133883563, 0.3777834313813965, 0.8273808576462511, 0.18439353202429143, 0.5148786056082297, 0.11287077888712382, 0.16015059460472458, 0.29672938182784603, 0.36944561074938853, 0.2505850522824452, 0.8467591712977676, 0.3840267097226593, 0.261779448872241, 0.1645479955558209, 0.14631295673285594, 0.4248523287309329, 0.09222807982804315, 0.2121484308544801, 0.33273366741371935, 0.5470626312455473, 0.8294144697045585, 0.25206662215500397, 0.15998368749433245, 0.548322128117227, 0.3917329141436472, 0.15981565308588508, 0.23631147082452741, 0.21082920466209698, 0.1871387197916503, 0.24774693401855818, 0.1913242313933492, 0.16437448769677154, 0.07582203648947516, 0.032541140295091364, 0.06311143057978008, 0.5009235508757715, 0.12343879567504301, 0.445735807756371, 0.40322837553658053, 0.09397553936597514, 0.1598391281143201, 0.26702494168661406, 0.19782301216908982, 0.06831823449824892, 0.5451167746582685, 0.20142160156100697, 0.25747632252511843, 0.4257317671215596, 0.5062318064185062, 0.10278357133077332, 0.10857266292312517, 0.06223864817381186, 0.11377411494697365, 0.14082424186384768, 0.2589321903149734, 0.31776639873426016, 0.07983414941561229, 0.30174211068680845, 0.42532907678292176, 0.23734670470511587, 0.2862296469110084, 0.24790288035387664, 0.5526146374040077, 0.20425399436950087, 0.5166825128498294, 0.12415322942140417, 0.5310696157212036, 0.3866387435262121, 0.14313186082947948, 0.31648660326859934, 0.026792916001305622, 0.7856428374245099, 0.42383310375799566, 0.5944566396871084, 0.6256605001243821, 0.08813642250468567, 0.03544811528140901, 0.06935406654889886, 0.15751976448865512, 0.22608551288474832, 0.3127311228465576, 0.1409438166611655, 0.3285615524533705, 0.3591330499592894, 0.47964497307801546, 0.7143146030302826, 0.14223944449319303, 0.06929054967731618, 0.32120711190509066, 0.16913647442041335, 0.707286257884667, 0.3230684446475647, 0.7616845263358343, 0.4104900542879092, 0.10053249234255524, 0.1106599594415556, 0.1543174595222413, 0.46003879185641183, 0.3811350878514418, 0.07185070571861518, 0.23882593985771994, 0.5344976262521839, 0.11031385635331636, 0.09610989844306939, 0.4955559099445003, 0.07845190603324759, 0.30697262074812925, 0.12767551958037127, 0.4375661224395835, 0.07737023387634634, 0.15307682457740834, 0.05694427046787409, 0.09028836937410878, 0.4011292297732457, 0.6186146927451245, 0.11561676905211238, 0.0993047499370594, 0.08102401279833105, 0.8100206966555492, 0.10768932514586738, 0.15386113005635593, 0.4026560765644126, 0.045535707525545144, 0.08229583319403, 0.08227601457953415, 0.8241544781987433, 0.0759900855540333, 0.5147505197509459, 0.11103147778198663, 0.42144961755966015, 0.24880465403270857, 0.3112403223054312, 0.3282460941643247, 0.28312386083977936, 0.2865521931047814, 0.16537364909659502, 0.4284132019637321, 0.34116073112729894, 0.051142721309942685, 0.10794707492381372, 0.1108646816717751, 0.29201805921023904, 0.07365131996157204, 0.36851051207096197, 0.2556143611338999, 0.07392456180697715, 0.045535707525545144, 0.15025986810093994, 0.4395989822566938, 0.19636656988846957, 0.21018464628148859, 0.15085686628779282, 0.3429118439192298, 0.16104008564300487, 0.2055862423584408, 0.18673310211333727, 0.5528531989583015, 0.20219789553586287, 0.5807830339134155, 0.6112381610839525, 0.07515362639458067, 0.5722084734915175, 0.3654892991508686, 0.1991057466826236, 0.4912569401667811, 0.05850610073101081, 0.3077884117234785, 0.17038242498240874, 0.14066607718466684, 0.10248584652416493, 0.4022873718442217, 0.07205214632436985, 0.35142291824287475, 0.10941760034103376, 0.06679271580157364, 0.05675388891699207, 0.058987921856350156, 0.3660303223369904, 0.28790374422385034, 0.4158290962648631, 0.40710291595796666, 0.09934102670994882, 0.06362846635195196, 0.30921476208988685, 0.23242198019285765, 0.055541210656895434, 0.5297663836663529, 0.10744632778983743, 0.18410212910939194, 0.17721960751489196, 0.1962664672709783, 0.1617648996714035, 0.10584426414108294, 0.5203501665477333, 0.07365131996157204, 0.31578819840495265, 0.35364190165315845, 0.1707951928721818, 0.41655733121321636, 0.15801546378512366, 0.7568436608419439, 0.22368578646300386, 0.0609449253562836, 0.2225096762928218, 0.18587673368692093, 0.05559101133196209, 0.569598540521716, 0.08073228430722412, 0.15724041301590164, 0.12879141548479, 0.4306817897420764, 0.17998791969802397, 0.41280880088413996, 0.5723062335690389, 0.6457404130724687, 0.10420061808672998, 0.12564769853034463, 0.21795029564941848, 0.4720930498870375, 0.11304202998506685, 0.545112257205237, 0.14852188644910969, 0.17217029085021085, 0.336250902618187, 0.48671482860553816, 0.5093433434984792, 0.35847801144896685, 0.3008706318705062, 0.18494609259573758, 0.4199330463236065, 0.04162287990776414, 0.2633909944023186, 0.4252182303976608, 0.4684623303117058, 0.1925553058603695, 0.09610989844306939, 0.09129843496680234, 0.3302708189676917, 0.4199330463236065, 0.11927294568859859, 0.4864154015695107, 0.06472081497616611, 0.6387929002666255, 0.37932906694235924, 0.093713747684541, 0.20627971812824875], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (curr)\", \"type\": \"scatter\", \"x\": [0.088, 0.06, 0.036, 0.04, 0.043, 0.048, 0.032, 0.078, 0.078, 0.063, 0.054, 0.036, 0.039, 0.048, 0.054, 0.046, 0.052, 0.098, 0.032, 0.03, 0.036, 0.036, 0.035, 0.065, 0.04, 0.035, 0.083, 0.054, 0.028, 0.044, 0.04, 0.077, 0.081, 0.072, 0.054, 0.045, 0.078, 0.079, 0.055, 0.066, 0.026, 0.073, 0.069, 0.047, 0.048, 0.048, 0.076, 0.118, 0.051, 0.025, 0.046, 0.084, 0.034, 0.094, 0.084, 0.077, 0.074, 0.095, 0.04, 0.043, 0.095, 0.037, 0.048, 0.098, 0.098, 0.06, 0.414, 0.076, 0.102, 0.072, 0.115, 0.046, 0.036, 0.088, 0.031, 0.04, 0.052, 0.029, 0.044, 0.074, 0.062, 0.078, 0.045, 0.084, 0.04, 0.028, 0.037, 0.044, 0.041, 0.071, 0.05, 0.043, 0.091, 0.045, 0.08, 0.137, 0.035, 0.17, 0.062, 0.04, 0.092, 0.027, 0.046, 0.073, 0.047, 0.062, 0.146, 0.057, 0.051, 0.045, 0.069, 0.059, 0.078, 0.053, 0.038, 0.029, 0.051, 0.158, 0.05, 0.105, 0.044, 0.028, 0.051, 0.082, 0.076, 0.088, 0.036, 0.034, 0.076, 0.047, 0.016, 0.054, 0.045, 0.036, 0.082, 0.047, 0.053, 0.077, 0.086, 0.041, 0.036, 0.04, 0.031, 0.036, 0.071, 0.049, 0.057, 0.066, 0.079, 0.057, 0.034, 0.048, 0.07, 0.045, 0.076, 0.057, 0.035, 0.046, 0.052, 0.211, 0.089, 0.063, 0.039, 0.038, 0.086, 0.031, 0.036, 0.036, 0.046, 0.052, 0.058, 0.062, 0.049, 0.042, 0.073, 0.033, 0.048, 0.044, 0.047, 0.042, 0.033, 0.041, 0.098, 0.048, 0.06, 0.032, 0.212, 0.034, 0.046, 0.053, 0.078, 0.05, 0.038, 0.039, 0.041, 0.08, 0.051, 0.043, 0.051, 0.094, 0.05, 0.051, 0.06, 0.052, 0.023, 0.045, 0.046, 0.077, 0.042, 0.041, 0.052, 0.053, 0.064, 0.046, 0.048, 0.017, 0.063, 0.036, 0.174, 0.046, 0.043, 0.053, 0.046, 0.045, 0.055, 0.037, 0.088, 0.059, 0.042, 0.068, 0.066, 0.043, 0.05, 0.037, 0.09, 0.056, 0.038, 0.039, 0.045, 0.045, 0.096, 0.094, 0.057, 0.054, 0.041, 0.041, 0.06, 0.045, 0.042, 0.048, 0.08, 0.065, 0.029, 0.045, 0.142, 0.038, 0.054, 0.061, 0.105, 0.099, 0.114, 0.044, 0.046, 0.046, 0.053, 0.053, 0.044, 0.044, 0.036, 0.055, 0.053, 0.092, 0.037, 0.057, 0.044, 0.042, 0.049, 0.082, 0.089, 0.071, 0.081, 0.044, 0.023, 0.044, 0.176, 0.032, 0.045, 0.053, 0.052, 0.081, 0.056, 0.044, 0.055, 0.077, 0.05, 0.064, 0.032, 0.046, 0.057, 0.095, 0.028, 0.093, 0.046, 0.043, 0.056, 0.03, 0.09, 0.05, 0.059, 0.054, 0.079, 0.084, 0.046, 0.046, 0.059, 0.05, 0.073, 0.052, 0.042, 0.042, 0.085, 0.066, 0.059, 0.043, 0.088, 0.053, 0.066, 0.075, 0.038, 0.036, 0.079, 0.051, 0.036, 0.033, 0.071, 0.036, 0.037, 0.058, 0.05, 0.043, 0.046, 0.078, 0.076, 0.08, 0.2, 0.036, 0.05, 0.088, 0.05, 0.036, 0.053, 0.031], \"xaxis\": \"x2\", \"y\": [0.18579927887031134, 0.9274202256360236, 0.2569067617886446, 0.17851375722123963, 0.43011516789686843, 0.3951880410340851, 0.35333307802371594, 0.854899199395705, 0.7749695319329993, 0.7150752736216004, 0.5793836726576811, 0.17187478758168062, 0.503776006633781, 0.6517104478925241, 0.5321166645488455, 0.4291031613352281, 0.6295132227815239, 0.446367751604861, 0.12978626497489776, 0.578130474122496, 0.1303225049324246, 0.4589423036505589, 0.6028673022099313, 0.6724998803801079, 0.055171077290688375, 0.28900585249094113, 0.5807441942986169, 0.6324527530146118, 0.32780881811994433, 0.4437792729685527, 0.47375733914823626, 0.6755390392614542, 0.8494338455743565, 0.8432302027568838, 0.3962269303969661, 0.36574887203466033, 0.9780529644634413, 0.6757083557066426, 0.43212531492562845, 0.6428319532862445, 0.2244465690609686, 0.6759712108962084, 0.300575337785698, 0.4848467547623382, 0.24353241802821812, 0.6165640897352094, 0.801889943514816, 0.6831580296641933, 0.4684052737322374, 0.07309555507266852, 0.17397747102053363, 0.548208100621717, 0.16948307959681597, 0.5287139706981401, 0.8097217619362252, 0.48186532860504816, 0.7044722268129955, 0.5458559966555334, 0.6067015953642416, 0.5767206748937392, 0.5416109283549078, 0.7766135747357961, 0.6371580804073698, 0.3290646799011723, 0.53941953634433, 0.7444876216695655, 0.27658524567301757, 0.8518717737266248, 0.685064206005921, 0.7994946846943811, 0.6254668451144636, 0.29898447003196504, 0.36566585814722175, 0.8260679099411251, 0.265003746926769, 0.18277705216857454, 0.6401445853260315, 0.2878944788643705, 0.7379395090268356, 0.6578861964269485, 0.3048731186933995, 0.6479177870210828, 0.5479007895539181, 0.8109237991420157, 0.4555798348891207, 0.35159410271621183, 0.6741813074403022, 0.40366163192193316, 0.3797333752177462, 0.42326140605337403, 0.49450075158901585, 0.7027754368270075, 0.31556666432085356, 0.5737052492708005, 0.5594846166878963, 0.9879213229528466, 0.23907110553933086, 0.7604887601700165, 0.906894853259191, 0.49150798334893764, 0.6693239074263375, 0.635181004157038, 0.4291031613352281, 0.6805197940362542, 0.8579270215873258, 0.42231028799440284, 0.7973836574204367, 0.6209099995125147, 0.617932351579841, 0.5867531689564582, 0.8217385626893267, 0.5766058512754557, 0.6085190813519714, 0.6488649586424557, 0.19466062481522506, 0.4062994677131635, 0.31500574198466447, 0.6106996692323751, 0.48314991346809855, 0.4300926711133176, 0.4623912750166579, 0.18141675383529432, 0.7404949196358439, 0.7960551628311661, 0.6696955469146251, 0.7471897031921468, 0.15222801432328747, 0.4782875749995391, 0.6696955469146251, 0.4617114467660769, 0.0374236133971757, 0.34638250956587036, 0.5737052492708005, 0.35412183815676124, 0.5342599897609015, 0.6273126624389191, 0.1819914526651868, 0.6450640502472667, 0.7576359910572065, 0.6363669366758954, 0.35783776888428775, 0.4555798348891207, 0.2603691587203709, 0.09638465351539516, 0.7889843001267657, 0.3995975535535492, 0.2404138117262561, 0.5134503976671381, 0.7620160241108803, 0.4852174766770502, 0.7934067722809752, 0.5657371707019572, 0.40591517497640706, 0.5142806824729376, 0.4667389755277017, 0.4597803030361328, 0.14211531046105408, 0.4709774325404933, 0.39253304933110444, 0.8152160844894966, 0.6418608562675732, 0.5695619245525361, 0.15898796250578873, 0.4189913516486339, 0.8097376625536354, 0.2776505479619531, 0.14100712613869515, 0.1625374057836978, 0.21879614767173305, 0.26016804821119, 0.5884346274074399, 0.25171266030158634, 0.5556828679884147, 0.2886326125606653, 0.5013044750460076, 0.23728971353361283, 0.6280660923097139, 0.6281218947904323, 0.6226708394296439, 0.1280348372312241, 0.37812375401711507, 0.6218606462016874, 0.446367751604861, 0.5237591509200082, 0.22560064672115399, 0.4159575064805634, 0.43989745285902637, 0.38133093816728936, 0.379388299643832, 0.4244201113870294, 0.8495234946343055, 0.44699506619782237, 0.3402560380560977, 0.16997778820688525, 0.6509841470756508, 0.5589353890471914, 0.49320900326902484, 0.41485179365651337, 0.2850172536812061, 0.5150740024049856, 0.7905789411902706, 0.6660097546858721, 0.5916856454756931, 0.25029771644034415, 0.21820707607863943, 0.23625780462752244, 0.6174344585079109, 0.33885175059010386, 0.8097775874289167, 0.5502791542248897, 0.45232673966787307, 0.5168725346003686, 0.4922951659433321, 0.2710495410551712, 0.5620189509382074, 0.19827785442852286, 0.35653263682836045, 0.4940220265254579, 0.3934632807735441, 0.349631294967786, 0.6543252873397565, 0.6043841099981286, 0.6572212454398962, 0.5323595728841377, 0.4667716613599331, 0.5480891857555714, 0.5933716837007499, 0.5769442381274095, 0.7796710482718338, 0.4721284230669528, 0.5632051337005155, 0.25606657060722404, 0.47304849589761655, 0.4991199345133047, 0.785831825438318, 0.5512091114854263, 0.31651464458218903, 0.192246895102814, 0.5737052492708005, 0.14970485751781393, 0.8257882443178004, 0.7450862811651306, 0.2404138117262561, 0.3428275867057816, 0.2186811050870735, 0.43730933466596944, 0.1325711740116582, 0.33994853494016564, 0.5172250338280965, 0.4543852880840521, 0.6017244994332274, 0.7267617626256621, 0.304103470637073, 0.49511795227452726, 0.4577650902534979, 0.4389063253281036, 0.3428275867057816, 0.6911248892501751, 0.5457123873353599, 0.3395528272139201, 0.5662837862370104, 0.38281068028313525, 0.1899488449656659, 0.1899488449656659, 0.39416742153886597, 0.4473524415330049, 0.5724944828663213, 0.12652799787397961, 0.14917046216496987, 0.4192276293132746, 0.1727250451072272, 0.7329347521090118, 0.2979855805324535, 0.5384433083808008, 0.2944152049751758, 0.5661013076544325, 0.39283078357423706, 0.6503174362647687, 0.7632350838020857, 0.29422440231251745, 0.8446099855685041, 0.3812461384129847, 0.1264117171095669, 0.6995051325026098, 0.7680829457938805, 0.1086082602083136, 0.50228427853815, 0.8303888649041977, 0.15145052047802054, 0.5239967242043768, 0.49461569007297057, 0.7323984730128237, 0.6372335578763709, 0.8485373319296128, 0.21018203617182263, 0.3854703692354019, 0.6209619763202376, 0.6996467359659702, 0.3913887983225227, 0.600932061108284, 0.18141675383529432, 0.32841971343371723, 0.17397747102053363, 0.3943097935149382, 0.5998672378660981, 0.6052803835931642, 0.35501406908939237, 0.4362847089434372, 0.6005057903956104, 0.45095984485898877, 0.5601124581139871, 0.6908342266509375, 0.29066967723125237, 0.5437491575180791, 0.5955595524057149, 0.4226516353037165, 0.552222307965348, 0.5038457784615318, 0.6752568781943777, 0.7880730680059006, 0.09430965090665133, 0.4986183600001317, 0.24112389044610405, 0.3635071851353404, 0.7047195247497422, 0.5251048099479148, 0.5632051337005155, 0.4520037684813636, 0.5271857161160298, 0.36566585814722175, 0.8775119234978208, 0.49474741138534273, 0.17187478758168062, 0.1069918390347242, 0.6371627391106971, 0.19018032574493748, 0.34352259564225396, 0.806114950115292, 0.47304849589761655, 0.5014153035286022, 0.6721952796384192, 0.7507248720260316, 0.38512814216859315, 0.8930847268109882, 0.863224561659591, 0.15108072818859253, 0.7399796913917198, 0.18579927887031134, 0.47304849589761655, 0.2033384066370545, 0.43667652058029827, 0.23252054766636898], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [0.068, 0.058, 0.045, 0.044, 0.076, 0.041, 0.037, 0.036, 0.033, 0.036, 0.102, 0.039, 0.033, 0.026, 0.03, 0.04, 0.07, 0.032, 0.078, 0.028, 0.056, 0.045, 0.05, 0.04, 0.04, 0.031, 0.044, 0.038, 0.035, 0.029, 0.032, 0.059, 0.053, 0.034, 0.034, 0.122, 0.035, 0.05, 0.047, 0.096, 0.036, 0.026, 0.034, 0.043, 0.08, 0.065, 0.054, 0.079, 0.039, 0.036, 0.073, 0.034, 0.031, 0.042, 0.039, 0.053, 0.044, 0.05, 0.039, 0.414, 0.054, 0.037, 0.029, 0.036, 0.036, 0.042, 0.061, 0.037, 0.05, 0.055, 0.067, 0.012, 0.04, 0.038, 0.046, 0.048, 0.074, 0.041, 0.059, 0.171, 0.042, 0.037, 0.065, 0.03, 0.035, 0.194, 0.08, 0.048, 0.036, 0.049, 0.046, 0.039, 0.037, 0.035, 0.047, 0.037, 0.091, 0.035, 0.071, 0.071, 0.027, 0.047, 0.072, 0.034, 0.067, 0.051, 0.072, 0.023, 0.038, 0.025, 0.033, 0.053, 0.026, 0.024, 0.055, 0.23, 0.043, 0.057, 0.04, 0.083, 0.03, 0.03, 0.067, 0.029, 0.073, 0.074, 0.088, 0.029, 0.073, 0.04, 0.019, 0.075, 0.043, 0.045, 0.05, 0.049, 0.062, 0.094, 0.06, 0.034, 0.046, 0.071, 0.095, 0.036, 0.046, 0.036, 0.048, 0.087, 0.032, 0.043, 0.039, 0.031, 0.051, 0.043, 0.029, 0.038, 0.058, 0.062, 0.047, 0.058, 0.032, 0.078, 0.032, 0.034, 0.08, 0.034, 0.032, 0.084, 0.065, 0.137, 0.022, 0.04, 0.046, 0.055, 0.027, 0.04, 0.048, 0.031, 0.035, 0.078, 0.037, 0.042, 0.036, 0.093, 0.039, 0.077, 0.078, 0.042, 0.045, 0.081, 0.015, 0.051, 0.028, 0.045, 0.037, 0.035, 0.041, 0.027, 0.048, 0.042, 0.038, 0.038, 0.047, 0.017, 0.036, 0.038, 0.036, 0.074, 0.046, 0.044, 0.046, 0.037, 0.077, 0.029, 0.071, 0.025, 0.046, 0.041, 0.022, 0.047, 0.04, 0.044, 0.086, 0.045, 0.049, 0.071, 0.031, 0.054, 0.072, 0.04, 0.074, 0.05, 0.028, 0.028, 0.072, 0.055, 0.034, 0.047, 0.036, 0.055, 0.043, 0.031, 0.032, 0.057, 0.077, 0.068, 0.057, 0.045, 0.06, 0.077, 0.053, 0.056, 0.053, 0.038, 0.042, 0.053, 0.035, 0.031, 0.033, 0.049, 0.078, 0.04, 0.06, 0.042, 0.08, 0.031, 0.044, 0.032, 0.044, 0.055, 0.044, 0.04, 0.037, 0.087, 0.043, 0.078, 0.032, 0.047, 0.035, 0.062, 0.413, 0.034, 0.028, 0.033, 0.032, 0.077, 0.021, 0.031, 0.044, 0.056, 0.078, 0.214, 0.05, 0.062, 0.034, 0.031, 0.052, 0.04, 0.031, 0.034, 0.029, 0.043, 0.041, 0.034, 0.067, 0.074, 0.033, 0.054, 0.034, 0.043, 0.04, 0.027, 0.071, 0.053, 0.035, 0.045, 0.032, 0.035, 0.044, 0.057, 0.033, 0.036, 0.06, 0.058, 0.11, 0.032, 0.044, 0.132, 0.038, 0.038, 0.08, 0.035, 0.093, 0.043, 0.176, 0.054, 0.041, 0.046, 0.255, 0.085, 0.021, 0.036, 0.055, 0.079, 0.076, 0.039, 0.028, 0.051, 0.088, 0.033, 0.033, 0.047, 0.044, 0.043, 0.049, 0.031, 0.083, 0.04, 0.043, 0.07, 0.025, 0.034, 0.084, 0.037, 0.076, 0.046, 0.044, 0.063, 0.037, 0.049, 0.024, 0.046, 0.039, 0.041, 0.118, 0.117, 0.036, 0.028, 0.064, 0.038, 0.03, 0.022, 0.045, 0.044, 0.036, 0.054, 0.05, 0.026, 0.043, 0.036, 0.032, 0.074, 0.027, 0.053, 0.048, 0.077, 0.038, 0.065, 0.029, 0.027, 0.036, 0.027, 0.022, 0.042, 0.042, 0.056, 0.039, 0.027, 0.051, 0.035, 0.076, 0.048, 0.033, 0.152, 0.057, 0.092, 0.036, 0.085, 0.027, 0.023, 0.04, 0.041, 0.085, 0.243, 0.084, 0.039, 0.043, 0.036, 0.021, 0.045, 0.033, 0.046, 0.037, 0.029, 0.065, 0.081, 0.044, 0.067, 0.028, 0.062, 0.053, 0.054, 0.053, 0.123, 0.031, 0.082, 0.048, 0.059, 0.075, 0.077, 0.045, 0.097, 0.041, 0.069, 0.05, 0.031, 0.053, 0.037, 0.066, 0.061, 0.042, 0.036, 0.052, 0.073, 0.029, 0.047, 0.031, 0.037, 0.036, 0.105, 0.045, 0.035, 0.075, 0.05, 0.057, 0.026, 0.118, 0.034, 0.034, 0.042, 0.039, 0.031, 0.097, 0.075, 0.052, 0.03, 0.037, 0.035, 0.075, 0.078, 0.067, 0.042, 0.078, 0.076, 0.049, 0.118, 0.041, 0.089, 0.059, 0.073, 0.036, 0.044, 0.053, 0.031, 0.034, 0.044, 0.043, 0.034, 0.076, 0.035, 0.07, 0.046, 0.037, 0.048, 0.043, 0.03, 0.084, 0.097, 0.046, 0.063, 0.03, 0.332, 0.033, 0.053, 0.041, 0.061, 0.024, 0.035, 0.034, 0.047, 0.091, 0.052, 0.067, 0.021, 0.216, 0.053, 0.121, 0.035, 0.114, 0.048, 0.046, 0.051, 0.066, 0.046, 0.025, 0.031, 0.119, 0.109, 0.021, 0.053, 0.041, 0.02, 0.05, 0.067, 0.031, 0.041, 0.086, 0.036, 0.029, 0.022, 0.053, 0.038, 0.056, 0.086, 0.057, 0.026, 0.034, 0.033, 0.032, 0.03, 0.06, 0.039, 0.047, 0.032, 0.028, 0.043, 0.04, 0.032, 0.046, 0.042, 0.117, 0.05, 0.035, 0.027, 0.058, 0.049, 0.083, 0.032, 0.044, 0.038, 0.084, 0.051, 0.047, 0.045, 0.12, 0.079, 0.031, 0.04, 0.035, 0.039, 0.055, 0.032, 0.045, 0.026, 0.034, 0.083, 0.071, 0.037, 0.033, 0.045, 0.046, 0.055, 0.048, 0.034, 0.083, 0.03, 0.03, 0.05, 0.048, 0.036, 0.029, 0.036, 0.027, 0.057, 0.046, 0.035, 0.046, 0.045, 0.075, 0.033, 0.082, 0.085, 0.043, 0.049, 0.032, 0.055, 0.16, 0.079, 0.034, 0.03, 0.051, 0.048, 0.047, 0.038, 0.053, 0.055, 0.069, 0.048], \"xaxis\": \"x2\", \"y\": [0.6660328535674787, 0.4955559099445003, 0.11251030999551548, 0.5313240922219649, 0.7616845263358343, 0.42881839881496897, 0.22146723198036844, 0.2709448900825402, 0.04188686298684474, 0.3198999677935893, 0.586632325439729, 0.3332859260788763, 0.0891770245136605, 0.07249138429342028, 0.0813041402249215, 0.2808128557304226, 0.18155424903412543, 0.14020593233116785, 0.20529540916933675, 0.1755850319354616, 0.5722846846512241, 0.4684623303117058, 0.2863708053899042, 0.4489302200945696, 0.3606737334686688, 0.09834172337505831, 0.1439119889738254, 0.10526388551166177, 0.08976738859769384, 0.15927641460572795, 0.07353544332944184, 0.4894096639868448, 0.24735122968283396, 0.41440459167745447, 0.10107859516115147, 0.4809249647595707, 0.043928674649753696, 0.27268427565697984, 0.07203278686513981, 0.35989685204578803, 0.08410225657903847, 0.09640449279894714, 0.2859044620344169, 0.766491644508495, 0.27194216744256416, 0.11891721880979944, 0.6033870782914414, 0.8445823904457724, 0.4148378249676725, 0.09538880480821377, 0.5822786697287807, 0.2006236885231063, 0.30215903380660414, 0.3526626332448971, 0.22921561702294402, 0.3499358724503807, 0.451050436906263, 0.01968005574460141, 0.3849224947932618, 0.608666907839271, 0.30333177217190177, 0.05732515971384944, 0.08299070223644744, 0.155374347961305, 0.4378217303747408, 0.10641916767178827, 0.3207785913922725, 0.3280003244598044, 0.4747408725557203, 0.27229542413121455, 0.5314247042003052, 0.13834506443323813, 0.652508483608137, 0.1775869136191267, 0.4659209431511335, 0.3288332341233703, 0.47224603889779837, 0.2773569186284155, 0.18590272545123854, 0.6719763059805124, 0.04569198037744582, 0.22473444069733528, 0.0776074933333939, 0.1411968215808168, 0.3654892991508686, 0.06069899520469324, 0.21029328672965164, 0.13919371635861133, 0.16321149678759816, 0.6144435769482088, 0.1388055550317996, 0.0827658987104557, 0.0793107693477757, 0.04994940743047871, 0.46220165202879504, 0.08265172102971341, 0.5554564865761329, 0.10902951494304747, 0.26480674198345266, 0.31816712550642645, 0.20184400370343658, 0.23734670470511587, 0.19264674509953905, 0.03558879485690103, 0.5314247042003052, 0.3013473679880785, 0.8043030592862955, 0.07665185966197174, 0.17816243980233548, 0.14637302723887635, 0.43623195291339645, 0.5773286546676725, 0.06996409198491005, 0.0635191394270278, 0.11839391684253864, 0.03368970372860669, 0.16544292122901683, 0.5002106013252752, 0.20783967621931676, 0.4413184352618238, 0.1377753535318076, 0.017128038770129694, 0.09070427960766203, 0.05237321155563324, 0.46044782253877736, 0.09863911308639095, 0.6058955548956951, 0.07377868677997379, 0.33726125667837825, 0.03705661785513226, 0.03856885477325478, 0.01970319875133708, 0.06623921298607705, 0.655672818127978, 0.36403826442427, 0.375635621083512, 0.25822104517587474, 0.26990817233175546, 0.30316845466795117, 0.21597661143113533, 0.10411587283779344, 0.4582573305440075, 0.28974208538397184, 0.3995654588450376, 0.48407929824265805, 0.2412117545349558, 0.49704114689177337, 0.3112403223054312, 0.13571503940671914, 0.35304273602320047, 0.18963603484652192, 0.06023564559469896, 0.305863422303413, 0.34062746964654456, 0.03532029949184434, 0.20200996882548472, 0.207876095289533, 0.11304202998506685, 0.26487496820305634, 0.46674395287949066, 0.05931266843465788, 0.6063731497207538, 0.053339747820140615, 0.16056749669580483, 0.3366557342021428, 0.18735912995827353, 0.2667542380283816, 0.9197592959547904, 0.13322255285490225, 0.3533185668595151, 0.08763312389948397, 0.343329095265401, 0.1298321532292276, 0.11240742021865013, 0.03412749239977686, 0.23316671381479437, 0.13955591125269062, 0.065615492475942, 0.03940539431326806, 0.04874684240881699, 0.42507109047861347, 0.3720756994829524, 0.20627971812824875, 0.23346983492740092, 0.299872058778726, 0.14688925552714138, 0.20529540916933675, 0.11294333341234963, 0.4523771212155355, 0.15895981664313275, 0.12633289347617382, 0.34801013400503944, 0.063056887931354, 0.09222807982804315, 0.19281104432210028, 0.11843845992675284, 0.1064686731970873, 0.12171087020281346, 0.49704114689177337, 0.4202798549667376, 0.058322454167927695, 0.40418598015134155, 0.7514842711311043, 0.067978575311199, 0.1468497162592186, 0.3655805321171328, 0.36741292271676196, 0.08785516413846428, 0.4223454464089015, 0.09472348251934337, 0.14196098925812006, 0.10013555988874479, 0.32154631204965056, 0.05416575683382341, 0.786126361492164, 0.04696516601190348, 0.26926088858349784, 0.28123172687107445, 0.3094364396730669, 0.04307250962973752, 0.07126159086244754, 0.6143015945908075, 0.495586079448059, 0.46102608015166635, 0.40789311683600216, 0.8929715185951024, 0.1227006502272181, 0.3638055988942468, 0.10470002869891348, 0.29304213908849364, 0.8936703981375603, 0.3534407380188983, 0.0883666731866185, 0.07895584641700149, 0.05166417783587085, 0.4199775765299997, 0.10304865631077798, 0.1041340676595982, 0.11031385635331636, 0.22368578646300386, 0.22137255536682798, 0.0725394352715707, 0.08320759746190642, 0.3577905591727162, 0.36362749207413336, 0.13058702032609693, 0.4306817897420764, 0.4684623303117058, 0.3185463047756948, 0.6991046594229053, 0.33105510290791684, 0.35804773811787727, 0.3499358724503807, 0.17780319308126435, 0.07142366539796174, 0.1504846162366139, 0.28643330026545544, 0.11492102279820171, 0.08716328114311156, 0.12905574960179156, 0.5528531989583015, 0.2852168598030531, 0.3185463047756948, 0.41766807389819915, 0.22818770291371737, 0.10749415552266317, 0.07500089027222667, 0.2150933620687273, 0.4879833184669665, 0.21367083697314282, 0.18281788227943807, 0.11217648511765432, 0.01860460444149037, 0.4990100838788346, 0.3212979959143686, 0.7252893191599291, 0.30018855716775616, 0.2808216200321265, 0.24332849241566534, 0.22583693263898685, 0.307128141019565, 0.12930297020615966, 0.07734813107736227, 0.38078614076753503, 0.037937415915298756, 0.18389331462546077, 0.2015421194948802, 0.10121634311933059, 0.7209948827487924, 0.252131738577411, 0.19866278493931944, 0.5569604587758099, 0.19172534874952063, 0.07516041810443141, 0.18673310211333727, 0.20736440356309183, 0.27568985010185776, 0.1748501221961516, 0.134246332983591, 0.12151400729184814, 0.03860330573341564, 0.16198960071610413, 0.062309112953929935, 0.14943540958877521, 0.46827469198568006, 0.12435295831370408, 0.11768791031746062, 0.10794707492381372, 0.04347111427796346, 0.07423675680829, 0.1602542791395647, 0.19911642350143877, 0.2379444352717226, 0.36664322039668684, 0.10130143557253446, 0.17108028607870185, 0.6143194513817134, 0.5641235853966853, 0.29864316680665437, 0.44752301946823647, 0.13459844499503626, 0.037461465199631894, 0.5002964248569376, 0.4059565893810353, 0.7035957096210382, 0.0629603198376949, 0.25036415064992923, 0.14780834332950044, 0.24800647860056513, 0.10438723399855232, 0.24366911510822187, 0.4574644219698093, 0.8347014835967527, 0.42226245660703365, 0.4073158502222598, 0.47525484003715535, 0.37845934883934684, 0.35325777167774697, 0.4763432908647238, 0.18941100564626978, 0.23853527246002126, 0.27277355193056574, 0.5556171757583562, 0.19481513110659687, 0.7460207524242459, 0.12627308236197843, 0.2115813466591615, 0.4773837842994688, 0.22238536240250728, 0.1978655273089749, 0.32057959349203036, 0.1601330373243487, 0.6256605001243821, 0.34062746964654456, 0.5899158924001677, 0.1273375405407705, 0.6866376712310945, 0.3812864953771038, 0.07918534602430627, 0.10510921928053807, 0.052405178286905496, 0.29010285216427345, 0.5802968836962079, 0.4475494904811408, 0.33107045093633036, 0.6046547135519548, 0.33132995382553565, 0.3391582818855403, 0.37109937806185267, 0.18876467901964422, 0.03244681540368277, 0.6531311156123596, 0.18281848038190407, 0.06840545126676123, 0.23876166598551407, 0.5602062902528231, 0.05478334190217349, 0.18965009362393503, 0.502081053312289, 0.0945975060483667, 0.24937367783354814, 0.14040338921272166, 0.09582424632391484, 0.4879833184669665, 0.07536550594022651, 0.37763546052463404, 0.20240400638142053, 0.06234715971662652, 0.1729504208160284, 0.2536573606029918, 0.1491704939138675, 0.47224603889779837, 0.20734784509414073, 0.1656619584420439, 0.20263687678412212, 0.4576701693643329, 0.3746187330143109, 0.06578487521364562, 0.09359041291034786, 0.15714155813810793, 0.43198081216185935, 0.17693664965610134, 0.14200602748771296, 0.16878839641400256, 0.11131318694256087, 0.43040972974554736, 0.12494266711040569, 0.5286591337585229, 0.3917329141436472, 0.14284790216410748, 0.29931895876037384, 0.3998656181534954, 0.13198036366642862, 0.2166851793268345, 0.164669749255824, 0.3116999397838065, 0.5702002297218003, 0.2867818412254799, 0.05809024612643199, 0.0701620515557333, 0.10493669218879953, 0.03474255021640338, 0.14069518845012563, 0.7697788668098057, 0.44513161239284327, 0.12104291767226882, 0.2823656727566666, 0.28640273091276736, 0.09904459769556595, 0.10889384421684001, 0.1978655273089749, 0.6326587477498924, 0.0766186874204361, 0.07300117689776386, 0.3978521493117628, 0.7293533971641823, 0.24040337450518035, 0.46827469198568006, 0.03737110954461231, 0.48112847828662497, 0.5755848065786346, 0.12151472907643468, 0.332302417201758, 0.3208349144509022, 0.13406270144296106, 0.47820199098358873, 0.024219732643774528, 0.7923035912680444, 0.3099424932714111, 0.8494816644677875, 0.15230116664989468, 0.8795672599938588, 0.34536882843285344, 0.587897812361327, 0.3660303223369904, 0.3074082248441362, 0.1925553058603695, 0.1582957933341015, 0.5297945963993664, 0.1892543681582496, 0.06574637766643598, 0.03286461121245521, 0.6223124217546917, 0.48666930315350876, 0.17200815643270417, 0.27042696199957883, 0.16010429726024444, 0.25291734909108765, 0.22778758435893687, 0.6055190518965303, 0.41989528411161425, 0.2865861541738164, 0.17344095530188786, 0.4163761941495938, 0.24610426408478792, 0.029106329843254564, 0.5849270471051293, 0.09607886499379148, 0.4890296174547498, 0.11193395874659995, 0.3667485749721523, 0.29672938182784603, 0.13696827462710404, 0.03986507081677082, 0.41542023534722683, 0.1642424989032959, 0.041559354155004224, 0.1266666793707928, 0.5259198205822933, 0.42123490919744344, 0.6147437654518444, 0.42849246998341506, 0.04874684240881699, 0.16870816563337898, 0.35179373534084035, 0.4552463954734379, 0.1543174595222413, 0.4641274821418986, 0.1106599594415556, 0.40441066041397966, 0.05916303638108533, 0.24194101851814365, 0.5755848065786346, 0.23631147082452741, 0.04679471849088612, 0.33132995382553565, 0.6031606095022326, 0.16900214819844117, 0.9322526967181247, 0.1065938389205352, 0.0540586741766943, 0.14920224829950646, 0.03054451782098533, 0.13595064656866984, 0.15908339514281045, 0.09402391562754642, 0.27219479721363327, 0.10477531970828624, 0.6046547135519548, 0.04412971358840656, 0.0821245873848182, 0.24953715645213048, 0.24311299470472425, 0.679537413518331, 0.02875041056121841, 0.2874129658970298, 0.17131102264191878, 0.07042427222914205, 0.1577516063520068, 0.39934634677258996, 0.42249259173992826, 0.24940231538328683, 0.46827469198568006, 0.040988937643475554, 0.034828704291737345, 0.26663563965858417, 0.22421743312747255, 0.10716094829621758, 0.7421831263598226, 0.4644511163280224, 0.1591307416719686, 0.21502194578256428, 0.12883185373794437, 0.15520095945599266, 0.04280666734842442, 0.06928764484923078, 0.3578757504587543, 0.0760792945579073, 0.06637805380770656, 0.5755848065786346, 0.4326356954473739, 0.16985579355455038, 0.47152805642545803, 0.11644579282256762, 0.11790522998710073, 0.5438286352264949, 0.41561805514360906, 0.050606352251634235, 0.21836830194439782, 0.22298545275517268, 0.1504846162366139, 0.16819644397314482, 0.47796113776613436, 0.14100197907825862, 0.7878397890034206, 0.12176963827920351, 0.09814942480303201, 0.23162396036129984, 0.04400104962869911, 0.061588508633294015, 0.2774601068082493, 0.40816383821078206, 0.14036214651023216, 0.11837607594274324, 0.0703155477214753, 0.17002415827487982, 0.24611532014486182, 0.06874641727313702, 0.30975746960573625, 0.07004288447243323, 0.6453829176356538, 0.3880412370469972, 0.10205495289732236, 0.12171087020281346, 0.38550692709735157, 0.4398162761337091, 0.5769741243450848, 0.48842976274850136, 0.3866799681687785, 0.17129518728202664, 0.5711206597512044, 0.4456070955069118, 0.4585850027539752, 0.25462747480751524, 0.34771016550763867, 0.35548618548401445, 0.07878090041588082, 0.3008706318705062, 0.08117751180329491, 0.055511805197920094, 0.1600174453683395, 0.35597309965685686, 0.5473978930443646, 0.3321771897262046, 0.14643302530661162, 0.7653011157176768, 0.24188431843396252, 0.16704799028757666, 0.41136103198090634, 0.5749869949413896, 0.709238838470871, 0.09340318303147321, 0.602429869503323, 0.04154705947390969, 0.7519582179986716, 0.15993940416551844, 0.04372375151311325, 0.4076899811241429, 0.4644511163280224, 0.3133137248525114, 0.24628490675063597, 0.06972977174174444, 0.15949948541388637, 0.2241543425141257, 0.1729876202034616, 0.07290025122558275, 0.1220000714032804, 0.36493953208423235, 0.09420126302076737, 0.026726938234992392, 0.7199273032686843, 0.4606762448039463, 0.04906818437448113, 0.19446415942665518, 0.14876853598344464, 0.3247816953453747, 0.023320858692869595, 0.7310618090422621, 0.48944479260603346, 0.20357574295749958, 0.0840537250624015, 0.5368744051465595, 0.21101467800102214, 0.46682279298460017, 0.3749869638443927, 0.46592999202179275, 0.10188412989688433, 0.15751976448865512], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"chlorides\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"chlorides\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}, \"All_free.sulfur.dioxide\": {\"data\": [{\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Reference<br>free.sulfur.dioxide=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [39.0, 34.0, 26.0, 25.0, 34.0, 20.0, 39.0, 33.0, 24.0, 26.0, 73.0, 4.0, 56.0, 41.5, 41.0, 23.0, 26.0, 6.0, 17.0, 21.0, 72.0, 27.0, 46.0, 30.0, 32.0, 40.0, 25.0, 37.0, 33.0, 29.0, 35.0, 31.0, 30.0, 96.0, 21.0, 44.0, 59.0, 38.0, 19.0, 12.0, 38.0, 18.0, 23.0, 18.0, 41.0, 24.0, 12.0, 24.0, 6.0, 27.0, 45.0, 54.0, 30.0, 44.0, 33.0, 50.0, 12.0, 22.0, 10.0, 50.0, 14.0, 20.0, 42.0, 47.0, 10.0, 6.0, 36.0, 13.0, 28.0, 20.0, 24.0, 19.0, 29.0, 37.5, 12.0, 24.0, 15.0, 26.0, 25.0, 37.0, 60.0, 36.0, 20.0, 28.0, 27.0, 31.0, 12.0, 21.0, 21.0, 7.0, 12.0, 36.0, 39.0, 48.0, 39.0, 24.0, 53.0, 16.0, 28.0, 28.0, 7.0, 35.0, 10.0, 4.0, 11.0, 41.0, 20.0, 27.0, 36.0, 29.0, 41.0, 35.0, 20.0, 19.0, 52.0, 22.0, 12.0, 23.0, 60.0, 24.0, 19.0, 34.0, 49.0, 46.0, 33.0, 13.0, 9.0, 38.0, 38.0, 6.0, 17.0, 33.0, 44.5, 24.0, 20.0, 54.0, 13.0, 15.0, 28.0, 14.0, 36.0, 53.0, 47.0, 43.0, 7.0, 22.0, 17.0, 12.0, 18.0, 34.0, 29.0, 23.0, 28.0, 57.0, 33.0, 42.0, 45.0, 8.0, 23.0, 37.0, 31.0, 17.0, 22.0, 21.0, 25.0, 37.0, 63.0, 29.0, 44.0, 43.0, 7.0, 24.0, 38.0, 30.0, 21.0, 34.0, 17.0, 26.0, 45.0, 16.0, 29.0, 35.0, 7.0, 50.0, 30.0, 33.0, 24.0, 7.0, 50.0, 25.0, 35.0, 3.0, 35.0, 19.0, 24.0, 32.0, 36.0, 59.0, 23.5, 23.0, 20.0, 18.0, 28.0, 38.0, 61.0, 43.0, 8.0, 22.0, 45.0, 29.0, 15.0, 29.0, 29.0, 36.0, 20.0, 16.0, 43.0, 39.0, 53.0, 13.0, 25.0, 41.0, 12.0, 35.0, 17.0, 29.0, 35.0, 47.0, 33.0, 39.0, 40.0, 39.0, 26.0, 52.0, 14.0, 17.0, 43.0, 51.0, 45.0, 49.0, 47.0, 49.0, 46.0, 29.0, 15.0, 47.0, 47.0, 29.0, 43.0, 30.0, 45.0, 48.5, 27.0, 9.0, 17.0, 29.0, 19.0, 35.0, 44.0, 3.0, 57.0, 35.0, 24.0, 51.0, 42.0, 30.0, 17.0, 6.0, 29.0, 18.0, 14.0, 19.0, 7.0, 39.0, 31.0, 50.0, 29.0, 10.0, 3.0, 23.0, 38.0, 49.0, 12.0, 36.0, 26.0, 19.0, 28.0, 78.0, 14.0, 24.0, 16.0, 64.0, 6.0, 45.0, 55.0, 44.0, 16.0, 62.0, 9.0, 27.0, 19.0, 21.0, 24.0, 22.0, 16.0, 24.0, 73.0, 20.0, 42.0, 26.0, 31.0, 38.0, 14.0, 20.0, 21.0, 6.0, 48.0, 41.0, 35.0, 37.0, 45.0, 12.0, 33.0, 49.0, 29.0, 8.0, 26.0, 20.0, 49.0, 27.0, 27.0, 26.0, 6.0, 66.0, 30.0, 38.0, 25.0, 34.0, 28.0, 52.0, 86.0, 14.0, 40.0, 40.0, 18.0, 32.0, 36.0, 7.0, 33.0, 35.0, 59.0, 60.0, 29.0, 20.0, 69.0, 35.0, 32.0, 37.0, 4.0, 31.0, 37.0, 47.0, 25.0, 22.0, 17.0, 28.0, 19.0, 51.0, 11.0, 48.0, 41.0, 17.0, 15.0, 15.0, 19.0, 37.0, 45.0, 17.0, 45.0, 26.0, 13.0, 53.0, 14.0, 53.0, 61.0, 24.0, 55.0, 23.0, 29.0, 29.0, 43.0, 42.0, 36.0, 8.0, 37.0, 18.0, 10.0, 27.0, 58.0, 21.0, 24.0, 8.0, 16.0, 47.0, 14.0, 43.0, 34.0, 17.0, 36.0, 16.0, 29.0, 42.0, 39.0, 15.0, 25.0, 40.0, 45.0, 60.0, 18.0, 15.0, 21.0, 41.0, 60.0, 29.0, 74.0, 40.0, 24.0, 34.0, 27.0, 56.0, 42.0, 14.0, 29.0, 31.0, 35.0, 31.0, 12.0, 32.0, 26.0, 16.0, 19.0, 25.0, 28.0, 20.0, 7.0, 23.0, 66.0, 33.0, 6.0, 36.0, 42.0, 38.0, 15.0, 29.0, 44.0, 7.0, 88.0, 24.0, 26.0, 46.0, 6.0, 29.0, 10.0, 50.0, 53.0, 31.0, 30.0, 63.0, 35.0, 13.0, 17.0, 68.0, 16.0, 35.0, 17.0, 73.0, 17.0, 32.0, 39.0, 21.0, 19.0, 56.0, 37.0, 38.0, 20.0, 8.0, 44.0, 33.0, 24.0, 17.0, 73.0, 23.0, 30.0, 47.0, 7.0, 35.0, 50.0, 47.0, 34.0, 34.0, 59.0, 45.0, 53.0, 55.0, 47.0, 45.0, 46.0, 35.0, 31.0, 17.0, 27.0, 22.0, 32.0, 57.0, 32.0, 12.0, 19.0, 54.0, 24.0, 26.0, 16.0, 30.0, 29.0, 48.0, 14.0, 4.0, 21.0, 30.0, 33.0, 23.0, 10.0, 5.0, 52.0, 20.0, 18.0, 27.0, 52.0, 30.0, 53.0, 24.0, 44.0, 37.0, 38.0, 36.0, 54.0, 30.0, 6.0, 22.0, 28.0, 40.0, 48.0, 41.0, 18.0, 12.0, 33.0, 8.0, 20.0, 14.0, 44.0, 38.0, 36.0, 26.0, 20.0, 24.0, 18.0, 23.0, 23.0, 9.0, 24.0, 61.0, 24.0, 27.0, 13.0, 39.0, 36.0, 11.0, 33.0, 33.0, 44.0, 27.0, 36.0, 34.0, 33.0, 40.0, 24.0, 14.0, 34.0, 38.0, 15.0, 18.0, 20.0, 31.0, 58.0, 37.0, 38.0, 17.0, 23.0, 3.0, 25.0, 42.0, 18.0, 14.0, 54.0, 31.0, 6.0, 26.0, 69.0, 56.0, 48.0, 45.0, 36.0, 24.0, 70.0, 5.0, 34.0, 19.0, 10.0, 37.0, 15.0, 10.0, 53.0, 35.0, 13.0, 14.0, 47.0, 52.0, 38.0, 24.0, 68.0, 22.0, 56.0, 53.0, 39.0, 20.0, 53.0, 12.0, 16.0, 68.0, 46.0, 33.0, 42.0, 17.0, 55.0, 31.0, 40.0], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Current<br>free.sulfur.dioxide=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [18.0, 55.0, 24.0, 15.0, 23.0, 27.0, 37.0, 21.0, 32.0, 57.0, 13.0, 29.0, 36.0, 26.0, 31.0, 29.0, 32.0, 11.0, 1.0, 42.0, 53.0, 39.0, 12.0, 45.0, 46.0, 32.0, 35.0, 61.0, 22.0, 34.0, 26.0, 23.0, 59.0, 26.0, 37.0, 45.0, 32.0, 60.0, 16.0, 10.0, 39.0, 31.0, 37.0, 46.0, 11.0, 34.0, 23.0, 18.0, 73.0, 38.0, 6.0, 22.0, 35.0, 14.0, 37.0, 43.0, 37.0, 27.0, 46.0, 18.0, 34.0, 45.0, 30.0, 15.0, 28.0, 31.0, 49.0, 32.0, 38.0, 50.0, 35.0, 36.0, 31.0, 28.0, 26.0, 54.0, 32.0, 53.0, 20.0, 6.0, 23.0, 66.0, 34.0, 22.0, 26.0, 14.0, 41.0, 20.0, 49.0, 14.0, 60.0, 46.0, 18.0, 28.0, 30.0, 26.0, 6.0, 51.0, 6.0, 16.0, 25.0, 26.0, 13.0, 49.0, 35.0, 37.0, 15.0, 20.0, 34.0, 37.0, 32.0, 35.0, 35.0, 13.0, 28.0, 19.0, 46.0, 33.0, 29.0, 21.0, 23.0, 74.0, 8.0, 23.0, 25.0, 5.0, 23.0, 21.0, 10.0, 29.0, 22.0, 18.0, 24.0, 48.0, 20.0, 62.0, 5.0, 24.0, 14.0, 29.0, 57.0, 27.0, 17.0, 46.0, 55.0, 23.0, 55.0, 10.0, 24.0, 20.0, 41.0, 33.0, 24.0, 14.0, 39.0, 10.0, 31.0, 15.0, 23.0, 49.0, 12.0, 10.0, 19.0, 50.0, 8.0, 15.0, 32.0, 13.0, 24.0, 52.0, 38.0, 20.0, 6.0, 3.0, 12.0, 41.0, 46.0, 54.0, 38.0, 17.0, 29.0, 33.0, 40.0, 54.0, 54.0, 26.0, 1.0, 24.0, 45.0, 22.0, 47.0, 17.0, 36.0, 40.0, 39.0, 36.0, 26.0, 18.0, 55.0, 21.0, 26.0, 29.0, 38.5, 21.0, 41.0, 18.0, 24.0, 38.0, 32.0, 79.5, 34.0, 24.0, 18.0, 37.0, 12.0, 35.0, 24.0, 25.0, 23.0, 34.0, 34.0, 56.0, 3.0, 62.0, 56.0, 28.0, 26.0, 44.0, 32.0, 32.0, 16.0, 30.0, 22.0, 31.0, 15.0, 51.0, 29.0, 30.0, 45.0, 18.0, 21.0, 23.0, 21.0, 29.0, 28.0, 13.0, 45.0, 39.0, 26.0, 6.0, 47.0, 68.0, 43.0, 26.0, 36.0, 44.0, 21.0, 13.0, 34.0, 25.0, 8.0, 47.0, 26.0, 67.0, 34.0, 27.0, 29.0, 54.0, 56.0, 58.0, 45.0, 37.0, 10.0, 13.0, 41.0, 12.0, 35.0, 17.0, 40.0, 39.0, 9.0, 25.0, 37.0, 26.0, 30.0, 11.0, 29.0, 22.0, 34.0, 45.0, 19.0, 5.0, 47.0, 26.0, 33.0, 33.0, 25.0, 40.0, 40.0, 28.0, 52.0, 25.0, 95.0, 42.0, 53.0, 24.0, 35.0, 53.0, 62.0, 34.0, 48.0, 15.0, 11.0, 31.0, 26.0, 69.0, 34.0, 11.0, 29.0, 52.0, 39.0, 31.0, 27.0, 50.0, 11.0, 49.0, 30.0, 17.0, 51.0, 20.0, 15.0, 18.0, 11.0, 63.0, 36.0, 23.0, 57.0, 80.0, 28.0, 6.0, 40.0, 27.0, 49.0, 39.0, 15.0, 29.0, 27.0, 7.0, 15.0, 25.0, 37.0, 30.0, 35.0, 14.0, 57.0, 20.0, 8.0, 18.0, 70.5, 13.0, 29.0, 25.0, 32.0, 61.0, 12.0, 53.0, 41.0, 50.0, 58.0, 68.0, 29.0, 29.0, 38.0, 22.0, 10.0, 9.0, 31.0, 17.0, 18.0, 13.0, 34.0, 22.0, 34.0, 56.0, 41.0, 24.0, 35.0, 31.0, 6.0, 43.0, 53.0, 32.0, 21.0, 71.0, 36.0, 11.0, 42.0, 7.0, 27.0, 37.0, 33.0, 37.0, 28.0, 21.0, 19.0, 44.0, 49.0, 23.0, 29.0, 17.0, 8.0, 16.0, 28.0, 9.0, 64.0, 29.0, 64.0, 5.0, 37.0, 19.0, 18.0, 38.0, 9.0, 5.5, 5.0, 50.0, 29.0, 27.0, 24.0, 35.0, 25.0, 20.0, 20.0, 29.0, 8.0, 14.0, 49.0, 53.0, 23.0, 19.0, 48.5, 5.0, 65.0, 27.0, 20.0, 6.0, 26.0, 19.0, 22.0, 15.0, 50.0, 22.0, 40.0, 4.0, 33.0, 49.0, 20.0, 24.0, 57.0, 9.0, 105.0, 44.0, 34.0, 56.0, 53.0, 23.0, 46.0, 14.0, 35.0, 22.0, 42.0, 60.0, 15.0, 25.0, 31.0, 11.0, 61.0, 19.0, 18.0, 63.0, 37.0, 34.0, 33.0, 10.0, 49.0, 26.0, 4.0, 15.0, 6.0, 26.0, 17.0, 44.5, 17.0, 11.0, 10.0, 6.0, 35.0, 15.0, 7.0, 25.0, 42.0, 33.0, 48.5, 40.0, 10.0, 41.0, 57.0, 25.0, 26.0, 31.0, 51.0, 25.0, 31.0, 14.0, 46.0, 41.0, 26.0, 6.0, 53.0, 11.0, 54.0, 8.0, 25.0, 32.0, 81.0, 46.0, 36.0, 36.0, 42.0, 60.5, 15.0, 45.0, 53.0, 41.0, 5.0, 33.0, 6.0, 16.0, 3.0, 52.0, 50.0, 25.0, 6.0, 40.0, 11.0, 16.0, 34.0, 7.0, 17.0, 48.5, 51.0, 14.0, 29.0, 6.0, 21.0, 62.0, 24.0, 19.0, 10.0, 44.0, 44.0, 33.0, 33.0, 8.0, 25.0, 26.0, 73.0, 31.0, 14.0, 56.0, 34.0, 37.0, 67.0, 42.0, 42.0, 30.0, 29.0, 26.0, 50.0, 16.0, 57.0, 40.0, 49.0, 18.0, 38.0, 17.0, 6.0, 56.0, 25.0, 15.0, 18.0, 29.0, 17.0, 10.0, 3.0, 27.0, 26.0, 38.0, 32.0, 47.0, 43.0, 29.0, 60.0, 40.0, 48.0, 17.0, 5.0, 27.0, 36.0, 14.0, 30.0, 41.0, 36.0, 55.0, 17.0, 15.0, 31.0, 29.0, 52.0, 23.0, 14.0, 35.0, 32.0, 21.0, 31.0, 10.0, 34.0, 52.0, 6.0, 59.0, 8.0, 17.0, 31.0, 12.0, 36.0, 25.0, 34.0, 16.0, 22.0, 34.0, 20.0, 50.0, 44.0, 38.0, 46.0, 52.0, 20.0, 32.0], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Reference<br>free.sulfur.dioxide=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [76.0, 19.0, 15.0, 32.0, 18.0, 17.0, 34.0, 9.0, 36.0, 28.0, 20.0, 15.0, 46.0, 8.0, 30.0, 61.0, 24.0, 7.0, 23.0, 3.0, 50.0, 47.0, 5.0, 34.0, 40.0, 15.0, 28.0, 22.0, 44.0, 27.0, 7.0, 25.0, 26.0, 60.0, 52.0, 10.0, 24.0, 58.0, 4.0, 54.0, 14.0, 10.0, 21.0, 24.0, 20.0, 23.0, 25.0, 39.0, 18.0, 22.0, 6.0, 26.0, 41.0, 5.0, 55.0, 42.0, 41.0, 39.0, 5.0, 29.0, 50.0, 47.0, 8.0, 55.0, 23.0, 36.0, 31.0, 32.0, 15.0, 13.0, 52.0, 3.0, 77.0, 20.0, 21.0, 55.0, 64.0, 7.0, 30.0, 15.0, 23.0, 16.0, 65.0, 9.0, 28.0, 11.0, 38.0, 5.0, 26.0, 17.0, 3.0, 55.0, 14.0, 77.0, 53.0, 53.0, 27.0, 39.0, 49.0, 31.0, 68.0, 23.0, 23.0, 44.0, 26.0, 18.0, 37.0, 6.0, 12.0, 25.0, 18.0, 16.0, 3.0, 22.0, 27.0, 18.0, 66.0, 20.0, 21.0, 12.0, 26.0, 13.0, 29.0, 22.0, 52.0, 68.0, 110.0, 9.0, 8.0, 48.0, 5.0, 11.0, 62.0, 61.0, 36.0, 47.0, 13.0, 36.0, 36.0, 33.0, 16.0, 74.0, 3.0, 21.0, 40.0, 61.0, 40.0, 56.0, 25.0, 22.0, 23.0, 17.0, 38.0, 7.0, 36.0, 10.0, 33.0, 53.0, 15.0, 10.0, 14.0, 5.0, 26.0, 34.0, 7.0, 8.0, 44.0, 36.0, 43.0, 54.0, 52.0, 13.0, 35.0, 22.0, 18.0, 6.0, 7.0, 21.0, 15.0, 17.0, 56.0, 3.0, 36.0, 14.0, 64.0, 48.0, 34.0, 5.0, 38.0, 45.0, 16.0, 19.0, 57.0, 8.0, 35.0, 6.0, 20.0, 30.5, 67.0, 44.0, 48.0, 48.0, 48.0, 15.0, 27.0, 37.0, 51.0, 11.0, 5.0, 3.0, 33.0, 48.0, 29.0, 36.0, 27.0, 26.0, 44.0, 9.0, 24.0, 5.0, 8.0, 52.0, 62.0, 29.0, 21.0, 44.0, 27.0, 40.0, 21.0, 3.0, 18.0, 16.0, 17.0, 19.0, 35.0, 33.0, 67.0, 7.0, 40.5, 66.0, 20.0, 43.0, 55.0, 61.0, 52.0, 20.0, 38.0, 70.0, 13.0, 9.0, 35.0, 32.0, 26.0, 10.0, 34.0, 54.0, 20.0, 6.0, 39.0, 6.0, 46.0, 49.0, 59.0, 21.0, 28.0, 53.0, 38.0, 25.0, 23.0, 29.0, 128.0, 22.0, 14.0, 24.0, 61.0, 61.0, 34.0, 66.0, 15.0, 11.0, 6.0, 14.0, 12.0, 16.0, 9.0, 51.0, 21.0, 57.0, 17.0, 54.0, 8.0, 17.0, 146.5, 6.0, 16.0, 7.0, 29.0, 58.0, 60.0, 15.0, 17.0, 22.0, 26.0, 53.0, 18.0, 11.0, 33.0, 11.0, 6.0, 13.0, 64.0, 49.0, 14.0, 52.0, 47.0, 22.0, 52.5, 24.0, 58.0, 9.0, 7.0, 62.0, 15.0, 4.0, 57.0, 32.0, 22.0, 58.0, 12.0, 61.0, 48.0, 23.0, 10.0, 81.0, 23.0, 6.0, 59.0, 5.0, 30.0, 67.0, 18.0, 48.0, 31.0, 12.0, 46.0, 13.0, 28.0, 47.0, 9.0, 50.0, 21.0, 10.0, 29.0, 17.0, 16.0], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Current<br>free.sulfur.dioxide=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [39.0, 33.0, 45.0, 5.0, 36.0, 48.0, 25.0, 4.0, 10.0, 6.0, 22.0, 32.0, 39.0, 52.0, 30.0, 32.0, 35.0, 12.0, 9.0, 10.0, 15.0, 49.0, 31.0, 65.0, 31.0, 23.0, 35.0, 28.0, 11.0, 19.0, 51.0, 48.0, 12.0, 11.0, 24.0, 57.0, 35.0, 11.0, 27.0, 27.0, 19.0, 34.0, 44.0, 40.0, 10.0, 39.0, 16.0, 9.0, 36.0, 10.0, 58.0, 33.0, 26.0, 5.0, 9.0, 23.0, 13.0, 10.0, 21.0, 57.0, 10.0, 33.0, 45.0, 10.0, 13.0, 4.0, 16.0, 11.0, 8.0, 17.0, 6.0, 47.0, 69.0, 16.0, 36.0, 31.0, 45.0, 5.0, 13.0, 32.0, 40.0, 10.0, 45.0, 15.0, 34.0, 10.0, 37.0, 66.0, 81.0, 17.0, 67.0, 15.0, 6.0, 45.0, 40.0, 5.0, 40.0, 51.0, 26.0, 67.0, 20.0, 20.0, 32.0, 13.0, 11.0, 4.0, 27.0, 15.0, 16.0, 44.0, 15.0, 6.0, 18.0, 24.0, 12.0, 19.5, 35.0, 47.0, 52.0, 16.0, 22.0, 39.0, 25.0, 21.0, 12.0, 27.0, 7.0, 15.0, 12.0, 46.0, 6.0, 62.0, 45.0, 14.0, 31.0, 66.0, 6.0, 5.0, 17.0, 9.0, 6.0, 34.0, 38.0, 7.0, 21.0, 31.0, 21.0, 5.0, 42.0, 54.0, 46.0, 46.0, 29.0, 53.0, 24.0, 17.0, 54.0, 52.0, 36.0, 37.0, 15.0, 27.0, 24.0, 44.0, 6.0, 23.0, 23.0, 15.0, 30.0, 41.0, 16.0, 23.0, 12.0, 62.0, 46.0, 40.0, 8.0, 57.0, 54.0, 55.0, 14.0, 64.0, 12.0, 19.0, 42.0, 31.0, 60.0, 16.0, 27.0, 45.0, 16.0, 14.0, 67.0, 12.0, 70.0, 7.0, 20.0, 34.0, 48.0, 23.0, 5.0, 54.0, 37.0, 81.0, 3.0, 68.0, 50.0, 3.0, 26.0, 58.0, 30.0, 29.0, 18.0, 31.0, 61.0, 22.0, 66.0, 46.0, 36.0, 15.0, 40.0, 54.0, 22.0, 61.0, 47.0, 18.0, 16.0, 28.0, 18.0, 32.0, 36.0, 24.0, 44.0, 34.0, 16.0, 35.0, 23.0, 40.0, 45.0, 31.0, 28.0, 5.0, 21.0, 64.0, 20.0, 34.0, 18.0, 26.0, 59.0, 20.0, 15.0, 61.0, 14.0, 51.0, 8.0, 43.0, 64.0, 50.5, 22.0, 20.0, 9.0, 17.0, 54.0, 54.0, 11.0, 28.0, 11.0, 12.0, 4.0, 52.0, 20.0, 12.0, 52.0, 25.0, 18.0, 8.0, 67.0, 16.0, 17.0, 44.0, 45.0, 48.0, 30.0, 72.0, 52.0, 63.0, 16.0, 17.0, 6.0, 34.0, 45.0, 33.0, 45.0, 15.0, 30.0, 12.0, 25.0, 35.0, 39.0, 5.0, 39.0, 15.0, 58.0, 64.0, 68.0, 9.0, 5.0, 21.0, 32.0, 47.0, 24.0, 21.0, 7.0, 39.0, 19.0, 56.0, 40.0, 48.0, 26.0, 26.0, 10.0, 3.0, 23.0, 43.0, 4.0, 37.0, 36.0, 3.0, 54.0, 69.0, 5.0, 32.0, 32.0, 59.0, 7.0, 33.0, 43.0, 25.0, 44.0, 18.0, 51.0, 26.0, 29.0, 11.0, 5.0, 7.0, 15.0, 39.0, 44.0, 24.0, 16.0, 13.0], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Reference\", \"x\": 0.245, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Current\", \"x\": 0.755, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"barmode\": \"overlay\", \"legend\": {\"title\": {\"text\": \"target\"}, \"tracegroupgap\": 0}, \"margin\": {\"t\": 60}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.49], \"title\": {\"text\": \"free.sulfur.dioxide\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.51, 1.0], \"matches\": \"x\", \"title\": {\"text\": \"free.sulfur.dioxide\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"count\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}}}, \"free.sulfur.dioxide_good\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (ref)\", \"type\": \"scatter\", \"x\": [39.0, 34.0, 26.0, 25.0, 34.0, 20.0, 39.0, 33.0, 24.0, 26.0, 73.0, 4.0, 56.0, 41.5, 41.0, 23.0, 26.0, 6.0, 17.0, 21.0, 72.0, 27.0, 46.0, 30.0, 32.0, 40.0, 25.0, 37.0, 33.0, 29.0, 35.0, 31.0, 30.0, 96.0, 21.0, 44.0, 59.0, 38.0, 19.0, 12.0, 38.0, 18.0, 23.0, 18.0, 41.0, 24.0, 12.0, 24.0, 6.0, 27.0, 45.0, 54.0, 30.0, 44.0, 33.0, 50.0, 12.0, 22.0, 10.0, 50.0, 14.0, 20.0, 42.0, 47.0, 10.0, 6.0, 36.0, 13.0, 28.0, 20.0, 24.0, 19.0, 29.0, 37.5, 12.0, 24.0, 15.0, 26.0, 25.0, 37.0, 60.0, 36.0, 20.0, 28.0, 27.0, 31.0, 12.0, 21.0, 21.0, 7.0, 12.0, 36.0, 39.0, 48.0, 39.0, 24.0, 53.0, 16.0, 28.0, 28.0, 7.0, 35.0, 10.0, 4.0, 11.0, 41.0, 20.0, 27.0, 36.0, 29.0, 41.0, 35.0, 20.0, 19.0, 52.0, 22.0, 12.0, 23.0, 60.0, 24.0, 19.0, 34.0, 49.0, 46.0, 33.0, 13.0, 9.0, 38.0, 38.0, 6.0, 17.0, 33.0, 44.5, 24.0, 20.0, 54.0, 13.0, 15.0, 28.0, 14.0, 36.0, 53.0, 47.0, 43.0, 7.0, 22.0, 17.0, 12.0, 18.0, 34.0, 29.0, 23.0, 28.0, 57.0, 33.0, 42.0, 45.0, 8.0, 23.0, 37.0, 31.0, 17.0, 22.0, 21.0, 25.0, 37.0, 63.0, 29.0, 44.0, 43.0, 7.0, 24.0, 38.0, 30.0, 21.0, 34.0, 17.0, 26.0, 45.0, 16.0, 29.0, 35.0, 7.0, 50.0, 30.0, 33.0, 24.0, 7.0, 50.0, 25.0, 35.0, 3.0, 35.0, 19.0, 24.0, 32.0, 36.0, 59.0, 23.5, 23.0, 20.0, 18.0, 28.0, 38.0, 61.0, 43.0, 8.0, 22.0, 45.0, 29.0, 15.0, 29.0, 29.0, 36.0, 20.0, 16.0, 43.0, 39.0, 53.0, 13.0, 25.0, 41.0, 12.0, 35.0, 17.0, 29.0, 35.0, 47.0, 33.0, 39.0, 40.0, 39.0, 26.0, 52.0, 14.0, 17.0, 43.0, 51.0, 45.0, 49.0, 47.0, 49.0, 46.0, 29.0, 15.0, 47.0, 47.0, 29.0, 43.0, 30.0, 45.0, 48.5, 27.0, 9.0, 17.0, 29.0, 19.0, 35.0, 44.0, 3.0, 57.0, 35.0, 24.0, 51.0, 42.0, 30.0, 17.0, 6.0, 29.0, 18.0, 14.0, 19.0, 7.0, 39.0, 31.0, 50.0, 29.0, 10.0, 3.0, 23.0, 38.0, 49.0, 12.0, 36.0, 26.0, 19.0, 28.0, 78.0, 14.0, 24.0, 16.0, 64.0, 6.0, 45.0, 55.0, 44.0, 16.0, 62.0, 9.0, 27.0, 19.0, 21.0, 24.0, 22.0, 16.0, 24.0, 73.0, 20.0, 42.0, 26.0, 31.0, 38.0, 14.0, 20.0, 21.0, 6.0, 48.0, 41.0, 35.0, 37.0, 45.0, 12.0, 33.0, 49.0, 29.0, 8.0, 26.0, 20.0, 49.0, 27.0, 27.0, 26.0, 6.0, 66.0, 30.0, 38.0, 25.0, 34.0, 28.0, 52.0, 86.0, 14.0, 40.0, 40.0, 18.0, 32.0, 36.0, 7.0, 33.0, 35.0, 59.0, 60.0, 29.0, 20.0, 69.0, 35.0, 32.0, 37.0, 4.0, 31.0, 37.0, 47.0, 25.0, 22.0, 17.0, 28.0, 19.0, 51.0, 11.0, 48.0, 41.0, 17.0, 15.0, 15.0, 19.0, 37.0, 45.0, 17.0, 45.0, 26.0, 13.0, 53.0, 14.0, 53.0, 61.0, 24.0, 55.0, 23.0, 29.0, 29.0, 43.0, 42.0, 36.0, 8.0, 37.0, 18.0, 10.0, 27.0, 58.0, 21.0, 24.0, 8.0, 16.0, 47.0, 14.0, 43.0, 34.0, 17.0, 36.0, 16.0, 29.0, 42.0, 39.0, 15.0, 25.0, 40.0, 45.0, 60.0, 18.0, 15.0, 21.0, 41.0, 60.0, 29.0, 74.0, 40.0, 24.0, 34.0, 27.0, 56.0, 42.0, 14.0, 29.0, 31.0, 35.0, 31.0, 12.0, 32.0, 26.0, 16.0, 19.0, 25.0, 28.0, 20.0, 7.0, 23.0, 66.0, 33.0, 6.0, 36.0, 42.0, 38.0, 15.0, 29.0, 44.0, 7.0, 88.0, 24.0, 26.0, 46.0, 6.0, 29.0, 10.0, 50.0, 53.0, 31.0, 30.0, 63.0, 35.0, 13.0, 17.0, 68.0, 16.0, 35.0, 17.0, 73.0, 17.0, 32.0, 39.0, 21.0, 19.0, 56.0, 37.0, 38.0, 20.0, 8.0, 44.0, 33.0, 24.0, 17.0, 73.0, 23.0, 30.0, 47.0, 7.0, 35.0, 50.0, 47.0, 34.0, 34.0, 59.0, 45.0, 53.0, 55.0, 47.0, 45.0, 46.0, 35.0, 31.0, 17.0, 27.0, 22.0, 32.0, 57.0, 32.0, 12.0, 19.0, 54.0, 24.0, 26.0, 16.0, 30.0, 29.0, 48.0, 14.0, 4.0, 21.0, 30.0, 33.0, 23.0, 10.0, 5.0, 52.0, 20.0, 18.0, 27.0, 52.0, 30.0, 53.0, 24.0, 44.0, 37.0, 38.0, 36.0, 54.0, 30.0, 6.0, 22.0, 28.0, 40.0, 48.0, 41.0, 18.0, 12.0, 33.0, 8.0, 20.0, 14.0, 44.0, 38.0, 36.0, 26.0, 20.0, 24.0, 18.0, 23.0, 23.0, 9.0, 24.0, 61.0, 24.0, 27.0, 13.0, 39.0, 36.0, 11.0, 33.0, 33.0, 44.0, 27.0, 36.0, 34.0, 33.0, 40.0, 24.0, 14.0, 34.0, 38.0, 15.0, 18.0, 20.0, 31.0, 58.0, 37.0, 38.0, 17.0, 23.0, 3.0, 25.0, 42.0, 18.0, 14.0, 54.0, 31.0, 6.0, 26.0, 69.0, 56.0, 48.0, 45.0, 36.0, 24.0, 70.0, 5.0, 34.0, 19.0, 10.0, 37.0, 15.0, 10.0, 53.0, 35.0, 13.0, 14.0, 47.0, 52.0, 38.0, 24.0, 68.0, 22.0, 56.0, 53.0, 39.0, 20.0, 53.0, 12.0, 16.0, 68.0, 46.0, 33.0, 42.0, 17.0, 55.0, 31.0, 40.0], \"xaxis\": \"x\", \"y\": [0.8156061324462894, 0.42491310922683634, 0.8867827646463432, 0.8014995238430205, 0.30499958310650876, 0.5817355832705369, 0.959171062334887, 0.7854416128369749, 0.9085690698200813, 0.8998600376511439, 0.6341165000693628, 0.412102187638673, 0.7643629411050379, 0.4710001938005606, 0.40182653035141874, 0.40438056362905367, 0.8870480016118494, 0.3650667978415713, 0.9064321709292111, 0.9327245345966092, 0.6458420185168736, 0.8821841129047617, 0.6704018506542557, 0.7655671181822064, 0.8616986618932058, 0.48774537944210006, 0.9637355036179479, 0.6794204065079696, 0.6044835155949141, 0.7867954023600708, 0.9137982268836646, 0.5867502063434873, 0.8048584290077971, 0.9718511071053526, 0.9627192884041744, 0.7978623718349598, 0.6091120966723917, 0.8943338178728011, 0.8853376735027229, 0.9045563504021151, 0.9264844632598176, 0.6342457655367447, 0.9414033426130164, 0.5636516403732365, 0.5172967922101196, 0.4836896337264441, 0.35199620689495453, 0.788779954566273, 0.9696552399248426, 0.772496554239754, 0.8132656157621138, 0.4539090261140653, 0.9333708926412786, 0.679765045723866, 0.48457442622955804, 0.4248820606938153, 0.6737819616086004, 0.8780741425819777, 0.38340602447337646, 0.90634085684919, 0.5574014604752268, 0.6804147683859246, 0.9077110088845216, 0.7718472635729894, 0.4717552048891654, 0.22222808308441652, 0.8616549355667619, 0.705749071892896, 0.4699129352300819, 0.9680524782819758, 0.8891353183282249, 0.9466602521798594, 0.8553382520847058, 0.7430243903066251, 0.6616131862201935, 0.6919609500216202, 0.96565744679506, 0.913108907487878, 0.5395521774612226, 0.9026238558501023, 0.6550941529376255, 0.9757876320152292, 0.8833495792027257, 0.6666029765862381, 0.8504582120840628, 0.9320215595878566, 0.7639947574915884, 0.6085229656221847, 0.9557131606798471, 0.46184432615952054, 0.5642658412077981, 0.8815615400732472, 0.7189203536918151, 0.9301020530176726, 0.7341394174346678, 0.7759189559372703, 0.8448078654733812, 0.9012666081120407, 0.8926028620066223, 0.5287492720273277, 0.6874206920638863, 0.37408584674942635, 0.8348370105186077, 0.8697567261320243, 0.9175759024810304, 0.44644098895981, 0.8874384748400057, 0.7787567487441118, 0.9416122482572158, 0.3265229243180111, 0.9308095750950773, 0.42267134533232753, 0.43068181214270274, 0.8727308285810839, 0.7201611177732586, 0.8430904589044517, 0.8140617541555761, 0.9456747441572588, 0.6672663325862807, 0.8756470416862959, 0.518871521713375, 0.7040615347784164, 0.4957960231649875, 0.6250130361556073, 0.27413726132188326, 0.5193133578087885, 0.37656641690434584, 0.5808048103476511, 0.7917827117482167, 0.36569143480873245, 0.7232542293832885, 0.9785934574433302, 0.5715075300165849, 0.8182555969893297, 0.5448461144048058, 0.9491291995847589, 0.4833587957991669, 0.3189279754564957, 0.9184825510014271, 0.5524830505676419, 0.9600429304649183, 0.7818180966165994, 0.7962710274484252, 0.7569429870375118, 0.46184432615952054, 0.7641514270390748, 0.9486763575522457, 0.8086368705092697, 0.6784536879503494, 0.6877019790624462, 0.6082670858563528, 0.6053794617794684, 0.6319330693089359, 0.4982105707488519, 0.6787928880949093, 0.9231980717613485, 0.8831230955067948, 0.6845485656817341, 0.8799204262605215, 0.9164563829924386, 0.7819268199067826, 0.23469888428232324, 0.9492377841603665, 0.8826092272015389, 0.6360541596480074, 0.5184081252698399, 0.6400126753125241, 0.542646305979658, 0.4479501208302092, 0.7783171875827786, 0.7867712153112567, 0.5236605417423803, 0.6959846197179591, 0.7925023358445066, 0.6683189355892497, 0.18737025221649042, 0.42506327048176057, 0.7272596040941706, 0.7314191754306454, 0.4827891324637794, 0.6649341228620356, 0.9038332731164471, 0.9588917860646077, 0.8945194928389463, 0.49833043835950624, 0.7997712594855277, 0.8577935987172323, 0.7622736922026153, 0.8039391974899521, 0.7396811504731934, 0.8115340233127679, 0.801728888664367, 0.738451208106372, 0.5859674792922007, 0.1865203674848816, 0.8773430435604171, 0.36888329310067386, 0.8651817982269884, 0.9067615420962557, 0.8594983988587351, 0.7437750884018276, 0.9145224932934428, 0.9135679891815164, 0.8001832456898428, 0.6860977766129374, 0.9377826008632761, 0.9300369611912853, 0.6997062971069969, 0.5693182102579236, 0.3404656140239559, 0.7160591142088384, 0.7953146078011, 0.8869803873277935, 0.7639982823097876, 0.8681285227071118, 0.576868797021353, 0.93035102563313, 0.8375600281828176, 0.8279918435672958, 0.9266689436294401, 0.7559862346636359, 0.5099889666930224, 0.6914445842613687, 0.9651950326885705, 0.87851968214492, 0.8499702807396289, 0.4685752957996948, 0.7241546992314323, 0.7848147251007912, 0.7341394174346678, 0.7008877443692281, 0.340588975625529, 0.5013021766499856, 0.8321174529331695, 0.8818378666553491, 0.9176909075187759, 0.8634678749265305, 0.7436082905772717, 0.9343776659412377, 0.7668809937296346, 0.6243383802582345, 0.5332560471205093, 0.6907315465649003, 0.16626803588025432, 0.1668542888532837, 0.7408943843163458, 0.5221312328975666, 0.7457559475413279, 0.46389636934606376, 0.9292627865919654, 0.5268311186840582, 0.4244151934213653, 0.643310536612302, 0.8577438313980266, 0.7816208399762355, 0.8553382520847058, 0.7010035672814305, 0.5242572272016158, 0.9187320011579697, 0.8703498177621264, 0.6713045345576062, 0.9137982268836646, 0.8614414457916845, 0.9445662266054761, 0.8808216590199034, 0.7386378115490353, 0.8873009977622293, 0.9157094897337859, 0.6606038558129893, 0.9296803968514485, 0.8864322240790464, 0.5146720135715994, 0.8720710714485208, 0.9415427660945741, 0.9138701141498735, 0.6527559092576063, 0.8751970040938668, 0.9249766460056568, 0.801728888664367, 0.6575848465963361, 0.6934824043184128, 0.8619113960143526, 0.9419078024651042, 0.9591721389341828, 0.8397407150753159, 0.9084383840076588, 0.4963969309336195, 0.7359588175524252, 0.3531961907069324, 0.9279819479140234, 0.7752976919572294, 0.8665226278427577, 0.9515211055933231, 0.7314191754306454, 0.890886918514299, 0.3235491032739525, 0.3719939405423586, 0.6323804178173072, 0.8398006965792015, 0.8239469134189235, 0.8592101816891015, 0.7615002907198236, 0.8688259750909261, 0.8718104001390852, 0.5838074755684882, 0.8756470416862959, 0.901850575196968, 0.9451930143658351, 0.6253812669856891, 0.5890764576710766, 0.4921052500998711, 0.4862070578416567, 0.9170647663398394, 0.7035583451969506, 0.8476385889092957, 0.5603058978573646, 0.5810606890504925, 0.9088604673919816, 0.8903252600075929, 0.944267921154058, 0.9435968591480925, 0.938237366988842, 0.9357286047893738, 0.7961386682142712, 0.7840233885688647, 0.2513590507613302, 0.7389284097502917, 0.9053472250810051, 0.44438282424164377, 0.862281110352348, 0.8021059248496223, 0.9152740930046814, 0.643737358401971, 0.8540304955499701, 0.8613418170006786, 0.6911084183178322, 0.8848367871057808, 0.8387883096682573, 0.5942651630821018, 0.65691393717736, 0.6369979527510315, 0.8280658524313272, 0.9640736168216585, 0.6546311715671466, 0.5599819536107853, 0.48348053317652906, 0.7668016587569692, 0.03620763244300767, 0.7364400865449663, 0.37408584674942635, 0.8767503774172, 0.8743962287172513, 0.8751970040938668, 0.8833495792027257, 0.7091886355621774, 0.87006937054451, 0.7904001815220257, 0.8761418339280951, 0.8306834851111597, 0.7531715889012326, 0.38181207472529843, 0.6490458991820136, 0.9138057013338913, 0.9046222904886461, 0.17956061692355052, 0.7506163079023257, 0.8963285795381793, 0.8848361664653354, 0.9283037217377402, 0.45996158699034445, 0.7290858434196763, 0.8319094967702583, 0.6578018675312727, 0.18727567457681707, 0.8673410249845035, 0.9453298670648187, 0.9446538464906173, 0.19605573045952288, 0.6723831041639817, 0.3438281302059518, 0.37858973820495484, 0.6953170483296187, 0.21463507152544156, 0.26963792069965237, 0.3280912492037974, 0.8399932187801539, 0.420387898633768, 0.36522500752858966, 0.5810560693343539, 0.9306346767722963, 0.7167716539092029, 0.656736106921484, 0.5549139996760648, 0.6909161521388689, 0.591904263202073, 0.884703171197362, 0.866402281883595, 0.7582770814524421, 0.8990773411030794, 0.1818065866116437, 0.6222165686186035, 0.17261914235374884, 0.8156064679757086, 0.4851213943917703, 0.8871292211128762, 0.8398494053952754, 0.703270618172154, 0.6305543892506115, 0.7494149477175548, 0.1532408287022325, 0.6159732902773407, 0.738220551127759, 0.8354520044441791, 0.8536870432671441, 0.5751476712690671, 0.9077719201719568, 0.7878515691455199, 0.6672663325862807, 0.45293736875445273, 0.17058553029544155, 0.747933377844996, 0.8400163125056676, 0.4516778718827729, 0.6082670858563528, 0.8401843469141149, 0.7636885291754726, 0.789170795337903, 0.8128612802083497, 0.7522530659814418, 0.8086757686066508, 0.8356255123032285, 0.9241779635105248, 0.9674588597049086, 0.9368885694202199, 0.4990764491242286, 0.876561204324957, 0.554264192243629, 0.5967716244634195, 0.9060244606340249, 0.8401608718856799, 0.7329750583133859, 0.8021769878309102, 0.9316817655017511, 0.45488322534173153, 0.798578398438993, 0.7425236774748816, 0.5742682328784404, 0.4937681935814938, 0.8972164286692267, 0.8914273370768748, 0.9377613518261881, 0.8862258850530264, 0.8591757581361523, 0.7410678096850266, 0.6822336012657398, 0.9201658505843877, 0.6982578893131915, 0.5746709232170782, 0.7626532952948841, 0.7137703530889916, 0.7520971196461234, 0.4473853625959922, 0.7957460056304991, 0.4833174871501707, 0.8758467705785958, 0.4689303842787964, 0.6133612564737879, 0.8568681391705205, 0.6835133967314007, 0.9732070839986944, 0.21435716257549006, 0.5761668962420043, 0.4055433603128916, 0.3743394998756179, 0.9118635774953143, 0.964551884718591, 0.9306459334511011, 0.8424802355113449, 0.7739144871152517, 0.6872688771534424, 0.8590561833388345, 0.6714384475466295, 0.6408669500407106, 0.5203550269219845, 0.2856853969697174, 0.857760555506807, 0.9307094503226838, 0.6787928880949093, 0.8308635255795866, 0.29271374211533296, 0.6769315553524353, 0.23831547366416572, 0.5895099457120908, 0.8994675076574448, 0.8893400405584444, 0.8456825404777587, 0.5399612081435882, 0.6188649121485582, 0.9281492942813848, 0.7611740601422801, 0.46550237374781617, 0.8896861436466836, 0.9038901015569306, 0.5044440900554997, 0.9215480939667524, 0.6930273792518707, 0.8723244804196287, 0.5624338775604165, 0.9226297661236537, 0.8469231754225917, 0.9430557295321259, 0.9097116306258912, 0.5988707702267543, 0.3813853072548755, 0.8843832309478876, 0.9006952500629406, 0.918975987201669, 0.18997930334445084, 0.8923106748541326, 0.8461388699436441, 0.5973439234355874, 0.9544642924744549, 0.91770416680597, 0.9177239854204658, 0.17584552180125673, 0.9240099144459667, 0.48524948024905407, 0.8889685222180134, 0.5785503824403398, 0.7511953459672914, 0.6887596776945688, 0.6717539058356753, 0.7168761391602206, 0.7134478068952186, 0.834626350903405, 0.5715867980362679, 0.6588392688727011, 0.9488572786900573, 0.8920529250761863, 0.8891353183282249, 0.707981940789761, 0.926348680038428, 0.631489487929038, 0.7443856388661001, 0.9260754381930228, 0.9544642924744549, 0.8497401318990601, 0.5604010177433062, 0.8036334301115304, 0.7898153537185114, 0.8491431337122072, 0.6570881560807702, 0.8389599143569951, 0.7944137576415592, 0.8132668978866627, 0.44714680104169846, 0.7978021044641371, 0.41921696608658454, 0.38876183891604754, 0.9248463736054193, 0.4277915265084825, 0.6345107008491314, 0.8008942533173764, 0.5087430598332189, 0.9414938992689892, 0.6922115882765215, 0.8296175750175913, 0.8593339228153332, 0.8975141534758351, 0.5977126281557783, 0.9279478536756302, 0.6485770817571253, 0.8905823996589662, 0.9332072841984264, 0.9432461110830079, 0.9410120781436498, 0.6339696776630096, 0.7120962557761497, 0.5841709037351369, 0.5928970840420333, 0.9006589732900512, 0.936371533648048, 0.6907852379101131, 0.7675780198071424, 0.9444587893431046, 0.4702336163336472, 0.8925536722101626, 0.8158978708906081, 0.822780392485108, 0.8037335327290217, 0.8382351003285965, 0.8941557358589171, 0.4796498334522667, 0.926348680038428, 0.6842118015950474, 0.6463580983468415, 0.8292048071278182, 0.5834426687867836, 0.8419845362148763, 0.2431563391580561, 0.7763142135369961, 0.9390550746437164, 0.7774903237071782, 0.8141232663130791, 0.9444089886680379, 0.430401459478284, 0.9192677156927759, 0.8427595869840984, 0.87120858451521, 0.5693182102579236, 0.820012080301976, 0.58719119911586, 0.42769376643096113, 0.3542595869275313, 0.89579938191327, 0.8743523014696554, 0.7820497043505815, 0.5279069501129625, 0.8869579700149332, 0.45488774279476296, 0.8514781135508903, 0.8278297091497892, 0.663749097381813, 0.5132851713944618, 0.4906566565015208, 0.6415219885510332, 0.6991293681294938, 0.8150539074042624, 0.5800669536763935, 0.9583771200922359, 0.7366090055976814, 0.5747817696023392, 0.5315376696882942, 0.8074446941396305, 0.9038901015569306, 0.9087015650331977, 0.6697291810323083, 0.5800669536763935, 0.8807270543114014, 0.5135845984304893, 0.9352791850238339, 0.36120709973337456, 0.6206709330576408, 0.906286252315459, 0.7937202818717513], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [76.0, 19.0, 15.0, 32.0, 18.0, 17.0, 34.0, 9.0, 36.0, 28.0, 20.0, 15.0, 46.0, 8.0, 30.0, 61.0, 24.0, 7.0, 23.0, 3.0, 50.0, 47.0, 5.0, 34.0, 40.0, 15.0, 28.0, 22.0, 44.0, 27.0, 7.0, 25.0, 26.0, 60.0, 52.0, 10.0, 24.0, 58.0, 4.0, 54.0, 14.0, 10.0, 21.0, 24.0, 20.0, 23.0, 25.0, 39.0, 18.0, 22.0, 6.0, 26.0, 41.0, 5.0, 55.0, 42.0, 41.0, 39.0, 5.0, 29.0, 50.0, 47.0, 8.0, 55.0, 23.0, 36.0, 31.0, 32.0, 15.0, 13.0, 52.0, 3.0, 77.0, 20.0, 21.0, 55.0, 64.0, 7.0, 30.0, 15.0, 23.0, 16.0, 65.0, 9.0, 28.0, 11.0, 38.0, 5.0, 26.0, 17.0, 3.0, 55.0, 14.0, 77.0, 53.0, 53.0, 27.0, 39.0, 49.0, 31.0, 68.0, 23.0, 23.0, 44.0, 26.0, 18.0, 37.0, 6.0, 12.0, 25.0, 18.0, 16.0, 3.0, 22.0, 27.0, 18.0, 66.0, 20.0, 21.0, 12.0, 26.0, 13.0, 29.0, 22.0, 52.0, 68.0, 110.0, 9.0, 8.0, 48.0, 5.0, 11.0, 62.0, 61.0, 36.0, 47.0, 13.0, 36.0, 36.0, 33.0, 16.0, 74.0, 3.0, 21.0, 40.0, 61.0, 40.0, 56.0, 25.0, 22.0, 23.0, 17.0, 38.0, 7.0, 36.0, 10.0, 33.0, 53.0, 15.0, 10.0, 14.0, 5.0, 26.0, 34.0, 7.0, 8.0, 44.0, 36.0, 43.0, 54.0, 52.0, 13.0, 35.0, 22.0, 18.0, 6.0, 7.0, 21.0, 15.0, 17.0, 56.0, 3.0, 36.0, 14.0, 64.0, 48.0, 34.0, 5.0, 38.0, 45.0, 16.0, 19.0, 57.0, 8.0, 35.0, 6.0, 20.0, 30.5, 67.0, 44.0, 48.0, 48.0, 48.0, 15.0, 27.0, 37.0, 51.0, 11.0, 5.0, 3.0, 33.0, 48.0, 29.0, 36.0, 27.0, 26.0, 44.0, 9.0, 24.0, 5.0, 8.0, 52.0, 62.0, 29.0, 21.0, 44.0, 27.0, 40.0, 21.0, 3.0, 18.0, 16.0, 17.0, 19.0, 35.0, 33.0, 67.0, 7.0, 40.5, 66.0, 20.0, 43.0, 55.0, 61.0, 52.0, 20.0, 38.0, 70.0, 13.0, 9.0, 35.0, 32.0, 26.0, 10.0, 34.0, 54.0, 20.0, 6.0, 39.0, 6.0, 46.0, 49.0, 59.0, 21.0, 28.0, 53.0, 38.0, 25.0, 23.0, 29.0, 128.0, 22.0, 14.0, 24.0, 61.0, 61.0, 34.0, 66.0, 15.0, 11.0, 6.0, 14.0, 12.0, 16.0, 9.0, 51.0, 21.0, 57.0, 17.0, 54.0, 8.0, 17.0, 146.5, 6.0, 16.0, 7.0, 29.0, 58.0, 60.0, 15.0, 17.0, 22.0, 26.0, 53.0, 18.0, 11.0, 33.0, 11.0, 6.0, 13.0, 64.0, 49.0, 14.0, 52.0, 47.0, 22.0, 52.5, 24.0, 58.0, 9.0, 7.0, 62.0, 15.0, 4.0, 57.0, 32.0, 22.0, 58.0, 12.0, 61.0, 48.0, 23.0, 10.0, 81.0, 23.0, 6.0, 59.0, 5.0, 30.0, 67.0, 18.0, 48.0, 31.0, 12.0, 46.0, 13.0, 28.0, 47.0, 9.0, 50.0, 21.0, 10.0, 29.0, 17.0, 16.0], \"xaxis\": \"x\", \"y\": [0.2802292104526322, 0.9455194119275858, 0.4978743212349556, 0.5289145624519528, 0.28439238707197784, 0.2033309570226689, 0.27345747478543325, 0.8322873304845451, 0.389055896812549, 0.3675472469853882, 0.5781933746273124, 0.7401955299744071, 0.44969671697605845, 0.4367887814338696, 0.31593955341667695, 0.3775624358859999, 0.19282181046294666, 0.048451763306065584, 0.6005928650583868, 0.032225376113695775, 0.427412413738938, 0.23973251442015217, 0.13890126550157303, 0.8613925272127, 0.329663916828638, 0.19359965390713213, 0.6827271716759634, 0.1960905505555538, 0.08135735686643118, 0.39737240301928484, 0.13902987396822816, 0.6514166433739288, 0.6994753721471061, 0.7140886736258081, 0.5021795028970708, 0.48743245558712556, 0.5731139673640956, 0.8820820642542792, 0.559972149724866, 0.5061565591493914, 0.5066810377847554, 0.833805652807593, 0.6979972163580744, 0.3177574231538272, 0.13068190592986567, 0.758876109553896, 0.5681062961269688, 0.715544821914063, 0.762062625203523, 0.4464438677531786, 0.20995974230910305, 0.5262622410710028, 0.39442669669188163, 0.2537324982988368, 0.6775437642744659, 0.23876321589577687, 0.6369158982934647, 0.38960060362966165, 0.6034323722874255, 0.7769991715799629, 0.15199748354041337, 0.5641412449951732, 0.7590466800561823, 0.5969347905931296, 0.1048362779837843, 0.7217824369593382, 0.2662339163773806, 0.16472378978351135, 0.37760124376932414, 0.7071736299639594, 0.3436862995931572, 0.8384434752264291, 0.3635333644877426, 0.7813188949129265, 0.7279369976219869, 0.5641098847382463, 0.3863964747623771, 0.9209913370067284, 0.1477144681640183, 0.8809374658555192, 0.6533168894759348, 0.8873477284758582, 0.3697306267878623, 0.28319023347825867, 0.5203701741750857, 0.5523747693308857, 0.6387521731780509, 0.3881380695009739, 0.8487896327149285, 0.4636606453307818, 0.8384434752264291, 0.558266603669778, 0.21657231888677728, 0.3635333644877426, 0.5512671313974766, 0.5051039398599867, 0.5827915753039158, 0.49441682850108926, 0.47309171914705017, 0.6262595591688196, 0.5508242483721094, 0.47332791509789995, 0.7117569366896692, 0.3933786516273859, 0.16465066549244003, 0.7490394132223248, 0.769261050002088, 0.7431932405995126, 0.3141000916210982, 0.723735045552473, 0.6484132891031948, 0.688519894019609, 0.40496704226994307, 0.5803736122960511, 0.6327801522745691, 0.45115706990411364, 0.37268733756108086, 0.9009693101135351, 0.06496389958099598, 0.44431713201158524, 0.39960831974332744, 0.8662156944598043, 0.31018081106061823, 0.5339551117365043, 0.33311273919547707, 0.400132762133902, 0.8528754522806217, 0.14419347879543085, 0.11672350429510901, 0.44556702529145975, 0.6160120899414699, 0.13766892845409207, 0.5517204028384314, 0.5232178919035022, 0.35483403305733974, 0.4900213704561591, 0.8854578072659228, 0.43084122675663034, 0.7601186327653665, 0.14072030431570776, 0.6186690618327106, 0.5245054232921349, 0.7326259458716644, 0.5690781983520095, 0.4018508815425063, 0.24877469563805235, 0.7952501197393639, 0.8766221356386195, 0.303451532996695, 0.5357745481647883, 0.7096524147827454, 0.20877177283968149, 0.8635610141758273, 0.46736762313881036, 0.6061151992073851, 0.113015272873705, 0.40446014603085867, 0.6332606063976143, 0.648705381890928, 0.42186952587750404, 0.8047913565308571, 0.3017058309841093, 0.38406990132164637, 0.33494193042999065, 0.19929939967121216, 0.8624919783238055, 0.528785836409086, 0.43084122675663034, 0.47042159929499583, 0.5061565591493914, 0.5759491569657543, 0.8468794444363914, 0.20342296359496542, 0.5170831534483544, 0.3666753044655067, 0.6131723001375537, 0.4410646109528086, 0.6903416342484309, 0.3866428492574258, 0.4636606453307818, 0.4525459302795702, 0.03199256040434073, 0.7029629492254846, 0.2433141614541866, 0.548755973819273, 0.3775060302547258, 0.06593060991448157, 0.8745624549148976, 0.22931948662359403, 0.27267688907931714, 0.589328430619086, 0.8007160756317941, 0.5525637789187225, 0.5008522318356121, 0.4556212410144909, 0.17391722008742402, 0.43574637053357784, 0.3237440077649342, 0.6071692164257629, 0.6925152430641841, 0.592675381607996, 0.43854150134957587, 0.43854150134957587, 0.42437112972565305, 0.8061118855433299, 0.35195592295594336, 0.7605370065149419, 0.38898578429124253, 0.67510953655807, 0.872979709380305, 0.710510994258769, 0.720290290780972, 0.4820787970895852, 0.42019280799979697, 0.4304380754474639, 0.25285023254778977, 0.3238056884730761, 0.39471961640683584, 0.09510031985475974, 0.367046376808582, 0.21500793651835448, 0.8705359023101334, 0.6100742529031461, 0.6226449432624995, 0.7279369976219869, 0.3643494054700089, 0.09992017521484964, 0.41475515148757036, 0.6462260464983366, 0.14102909592513518, 0.48949585696458414, 0.5239520436918008, 0.6084413884537807, 0.5655473856702703, 0.9517420512476797, 0.7489379515982664, 0.4647937384849751, 0.7915321263825208, 0.44112279258530757, 0.5734340256727429, 0.6604471727860799, 0.4845203185458914, 0.6968730453869196, 0.5315374962198609, 0.8685951485887234, 0.6242442748350044, 0.2912097196987059, 0.7725938221565348, 0.2067629769731588, 0.30221725334927335, 0.13129342562285412, 0.6467789443522378, 0.6994753721471061, 0.11825382206919556, 0.41022417118631593, 0.4882665226122541, 0.7732287086973071, 0.25374762405010176, 0.49441682850108926, 0.3723877205427743, 0.652330313245635, 0.43667799883041203, 0.5964718913578133, 0.55172276504346, 0.24113559934961917, 0.8243980268882987, 0.7263843594269437, 0.43535214809021755, 0.8721122798612579, 0.18723914490145582, 0.6486906676970999, 0.11576704656818047, 0.4328241622975616, 0.491481212420291, 0.5264345378086769, 0.33856526784971647, 0.2967410926251248, 0.581398831228375, 0.5973776665460488, 0.6195406102170065, 0.37782717658841725, 0.323061133240968, 0.17420808473594895, 0.19634770547538957, 0.46492234760650425, 0.49613167963272686, 0.5812209036149294, 0.6057291775435286, 0.63414717387345, 0.5702687187355167, 0.8604975146328253, 0.6309022132706124, 0.48732991249542923, 0.6887148870948692, 0.41581945293096145, 0.5706760596351739, 0.4831274653996314, 0.06684727567316755, 0.49090643211649887, 0.15191610726090596, 0.2711405311223577, 0.7653618545702112, 0.09266565137124261, 0.4554350627407873, 0.19698919164573708, 0.6930185080649685, 0.5227537922811563, 0.50434568709929, 0.7082092780767422, 0.46058046365566996, 0.6735723234187477, 0.4285936050615775, 0.323061133240968, 0.5168500865319015, 0.6161307914674419, 0.23456444218973552, 0.3192004782541023, 0.21968945907811915, 0.5028183230931117, 0.43371621376298963, 0.6744209213341115, 0.5940260419772637, 0.13783310426722128, 0.5136444387530009, 0.5508647999875032, 0.4955911012838212, 0.9814394195009358, 0.8260225289794664, 0.17965956338109995, 0.46844896472597397, 0.6048119589659149, 0.3289160319090978, 0.2454606394453749, 0.7497022835596558, 0.683485355417811, 0.20995974230910305, 0.23504578258460665, 0.37175956099497537, 0.4875530438829156, 0.24982584224249993, 0.6282829625348888, 0.4520795162158371, 0.8200372413039435, 0.12832513643528837, 0.5299630655130737, 0.29552777318700446, 0.24021937552346023, 0.5429028773737552, 0.6311869746243346, 0.4145977043912777, 0.39329840463575844, 0.39070335653410526, 0.4286990948130573, 0.846836560604146, 0.6880850122626078], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (curr)\", \"type\": \"scatter\", \"x\": [18.0, 55.0, 24.0, 15.0, 23.0, 27.0, 37.0, 21.0, 32.0, 57.0, 13.0, 29.0, 36.0, 26.0, 31.0, 29.0, 32.0, 11.0, 1.0, 42.0, 53.0, 39.0, 12.0, 45.0, 46.0, 32.0, 35.0, 61.0, 22.0, 34.0, 26.0, 23.0, 59.0, 26.0, 37.0, 45.0, 32.0, 60.0, 16.0, 10.0, 39.0, 31.0, 37.0, 46.0, 11.0, 34.0, 23.0, 18.0, 73.0, 38.0, 6.0, 22.0, 35.0, 14.0, 37.0, 43.0, 37.0, 27.0, 46.0, 18.0, 34.0, 45.0, 30.0, 15.0, 28.0, 31.0, 49.0, 32.0, 38.0, 50.0, 35.0, 36.0, 31.0, 28.0, 26.0, 54.0, 32.0, 53.0, 20.0, 6.0, 23.0, 66.0, 34.0, 22.0, 26.0, 14.0, 41.0, 20.0, 49.0, 14.0, 60.0, 46.0, 18.0, 28.0, 30.0, 26.0, 6.0, 51.0, 6.0, 16.0, 25.0, 26.0, 13.0, 49.0, 35.0, 37.0, 15.0, 20.0, 34.0, 37.0, 32.0, 35.0, 35.0, 13.0, 28.0, 19.0, 46.0, 33.0, 29.0, 21.0, 23.0, 74.0, 8.0, 23.0, 25.0, 5.0, 23.0, 21.0, 10.0, 29.0, 22.0, 18.0, 24.0, 48.0, 20.0, 62.0, 5.0, 24.0, 14.0, 29.0, 57.0, 27.0, 17.0, 46.0, 55.0, 23.0, 55.0, 10.0, 24.0, 20.0, 41.0, 33.0, 24.0, 14.0, 39.0, 10.0, 31.0, 15.0, 23.0, 49.0, 12.0, 10.0, 19.0, 50.0, 8.0, 15.0, 32.0, 13.0, 24.0, 52.0, 38.0, 20.0, 6.0, 3.0, 12.0, 41.0, 46.0, 54.0, 38.0, 17.0, 29.0, 33.0, 40.0, 54.0, 54.0, 26.0, 1.0, 24.0, 45.0, 22.0, 47.0, 17.0, 36.0, 40.0, 39.0, 36.0, 26.0, 18.0, 55.0, 21.0, 26.0, 29.0, 38.5, 21.0, 41.0, 18.0, 24.0, 38.0, 32.0, 79.5, 34.0, 24.0, 18.0, 37.0, 12.0, 35.0, 24.0, 25.0, 23.0, 34.0, 34.0, 56.0, 3.0, 62.0, 56.0, 28.0, 26.0, 44.0, 32.0, 32.0, 16.0, 30.0, 22.0, 31.0, 15.0, 51.0, 29.0, 30.0, 45.0, 18.0, 21.0, 23.0, 21.0, 29.0, 28.0, 13.0, 45.0, 39.0, 26.0, 6.0, 47.0, 68.0, 43.0, 26.0, 36.0, 44.0, 21.0, 13.0, 34.0, 25.0, 8.0, 47.0, 26.0, 67.0, 34.0, 27.0, 29.0, 54.0, 56.0, 58.0, 45.0, 37.0, 10.0, 13.0, 41.0, 12.0, 35.0, 17.0, 40.0, 39.0, 9.0, 25.0, 37.0, 26.0, 30.0, 11.0, 29.0, 22.0, 34.0, 45.0, 19.0, 5.0, 47.0, 26.0, 33.0, 33.0, 25.0, 40.0, 40.0, 28.0, 52.0, 25.0, 95.0, 42.0, 53.0, 24.0, 35.0, 53.0, 62.0, 34.0, 48.0, 15.0, 11.0, 31.0, 26.0, 69.0, 34.0, 11.0, 29.0, 52.0, 39.0, 31.0, 27.0, 50.0, 11.0, 49.0, 30.0, 17.0, 51.0, 20.0, 15.0, 18.0, 11.0, 63.0, 36.0, 23.0, 57.0, 80.0, 28.0, 6.0, 40.0, 27.0, 49.0, 39.0, 15.0, 29.0, 27.0, 7.0, 15.0, 25.0, 37.0, 30.0, 35.0, 14.0, 57.0, 20.0, 8.0, 18.0, 70.5, 13.0, 29.0, 25.0, 32.0, 61.0, 12.0, 53.0, 41.0, 50.0, 58.0, 68.0, 29.0, 29.0, 38.0, 22.0, 10.0, 9.0, 31.0, 17.0, 18.0, 13.0, 34.0, 22.0, 34.0, 56.0, 41.0, 24.0, 35.0, 31.0, 6.0, 43.0, 53.0, 32.0, 21.0, 71.0, 36.0, 11.0, 42.0, 7.0, 27.0, 37.0, 33.0, 37.0, 28.0, 21.0, 19.0, 44.0, 49.0, 23.0, 29.0, 17.0, 8.0, 16.0, 28.0, 9.0, 64.0, 29.0, 64.0, 5.0, 37.0, 19.0, 18.0, 38.0, 9.0, 5.5, 5.0, 50.0, 29.0, 27.0, 24.0, 35.0, 25.0, 20.0, 20.0, 29.0, 8.0, 14.0, 49.0, 53.0, 23.0, 19.0, 48.5, 5.0, 65.0, 27.0, 20.0, 6.0, 26.0, 19.0, 22.0, 15.0, 50.0, 22.0, 40.0, 4.0, 33.0, 49.0, 20.0, 24.0, 57.0, 9.0, 105.0, 44.0, 34.0, 56.0, 53.0, 23.0, 46.0, 14.0, 35.0, 22.0, 42.0, 60.0, 15.0, 25.0, 31.0, 11.0, 61.0, 19.0, 18.0, 63.0, 37.0, 34.0, 33.0, 10.0, 49.0, 26.0, 4.0, 15.0, 6.0, 26.0, 17.0, 44.5, 17.0, 11.0, 10.0, 6.0, 35.0, 15.0, 7.0, 25.0, 42.0, 33.0, 48.5, 40.0, 10.0, 41.0, 57.0, 25.0, 26.0, 31.0, 51.0, 25.0, 31.0, 14.0, 46.0, 41.0, 26.0, 6.0, 53.0, 11.0, 54.0, 8.0, 25.0, 32.0, 81.0, 46.0, 36.0, 36.0, 42.0, 60.5, 15.0, 45.0, 53.0, 41.0, 5.0, 33.0, 6.0, 16.0, 3.0, 52.0, 50.0, 25.0, 6.0, 40.0, 11.0, 16.0, 34.0, 7.0, 17.0, 48.5, 51.0, 14.0, 29.0, 6.0, 21.0, 62.0, 24.0, 19.0, 10.0, 44.0, 44.0, 33.0, 33.0, 8.0, 25.0, 26.0, 73.0, 31.0, 14.0, 56.0, 34.0, 37.0, 67.0, 42.0, 42.0, 30.0, 29.0, 26.0, 50.0, 16.0, 57.0, 40.0, 49.0, 18.0, 38.0, 17.0, 6.0, 56.0, 25.0, 15.0, 18.0, 29.0, 17.0, 10.0, 3.0, 27.0, 26.0, 38.0, 32.0, 47.0, 43.0, 29.0, 60.0, 40.0, 48.0, 17.0, 5.0, 27.0, 36.0, 14.0, 30.0, 41.0, 36.0, 55.0, 17.0, 15.0, 31.0, 29.0, 52.0, 23.0, 14.0, 35.0, 32.0, 21.0, 31.0, 10.0, 34.0, 52.0, 6.0, 59.0, 8.0, 17.0, 31.0, 12.0, 36.0, 25.0, 34.0, 16.0, 22.0, 34.0, 20.0, 50.0, 44.0, 38.0, 46.0, 52.0, 20.0, 32.0], \"xaxis\": \"x2\", \"y\": [0.33396714643252134, 0.5044440900554997, 0.8874896900044845, 0.4686759077780351, 0.23831547366416572, 0.571181601185031, 0.7785327680196316, 0.7290551099174598, 0.9581131370131553, 0.6801000322064107, 0.413367674560271, 0.6667140739211237, 0.9108229754863395, 0.9275086157065797, 0.9186958597750785, 0.7191871442695774, 0.8184457509658746, 0.8597940676688322, 0.7947045908306632, 0.8244149680645384, 0.42771531534877594, 0.5315376696882942, 0.7136291946100958, 0.5510697799054304, 0.6393262665313312, 0.9016582766249417, 0.8560880110261746, 0.8947361144883382, 0.9102326114023062, 0.840723585394272, 0.9264645566705582, 0.5105903360131552, 0.752648770317166, 0.5855954083225455, 0.8989214048388485, 0.5190750352404293, 0.9560713253502463, 0.7273157243430202, 0.9279672131348602, 0.640103147954212, 0.9158977434209615, 0.9035955072010529, 0.7140955379655831, 0.233508355491505, 0.7280578325574358, 0.8810827811902006, 0.3966129217085586, 0.15541760955422754, 0.5851621750323275, 0.9046111951917862, 0.4177213302712193, 0.7993763114768937, 0.6978409661933959, 0.6473373667551029, 0.770784382977056, 0.6500641275496193, 0.548949563093737, 0.9803199442553986, 0.6150775052067382, 0.391333092160729, 0.6966682278280982, 0.9426748402861506, 0.9170092977635526, 0.844625652038695, 0.5621782696252592, 0.8935808323282117, 0.6792214086077275, 0.6719996755401956, 0.5252591274442797, 0.7277045758687855, 0.4685752957996948, 0.8616549355667619, 0.347491516391863, 0.8224130863808733, 0.5340790568488665, 0.6711667658766297, 0.5277539611022016, 0.7226430813715845, 0.8140972745487615, 0.3280236940194876, 0.9543080196225542, 0.7752655593026647, 0.9223925066666061, 0.8588031784191832, 0.6345107008491314, 0.9393010047953068, 0.7897067132703484, 0.8608062836413887, 0.8367885032124018, 0.38555642305179116, 0.8611944449682004, 0.9172341012895443, 0.9206892306522243, 0.9500505925695213, 0.537798347971205, 0.9173482789702866, 0.44454351342386716, 0.8909704850569525, 0.7351932580165473, 0.6818328744935735, 0.7981559962965634, 0.7626532952948841, 0.807353254900461, 0.964411205143099, 0.4685752957996948, 0.6986526320119215, 0.1956969407137045, 0.9233481403380283, 0.8218375601976645, 0.8536269727611236, 0.5637680470866036, 0.42267134533232753, 0.93003590801509, 0.9364808605729722, 0.8816060831574614, 0.9663102962713933, 0.8345570787709832, 0.4997893986747249, 0.7921603237806832, 0.5586815647381762, 0.8622246464681924, 0.9828719612298703, 0.909295720392338, 0.9476267884443668, 0.5395521774612226, 0.901360886913609, 0.39410444510430487, 0.9262213132200262, 0.6627387433216217, 0.9629433821448677, 0.9614311452267452, 0.9802968012486629, 0.933760787013923, 0.34432718187202205, 0.63596173557573, 0.624364378916488, 0.7417789548241253, 0.7300918276682445, 0.6968315453320488, 0.7840233885688647, 0.8958841271622066, 0.5417426694559925, 0.7102579146160282, 0.6004345411549624, 0.515920701757342, 0.7587882454650442, 0.5029588531082266, 0.6887596776945688, 0.8642849605932809, 0.6469572639767995, 0.8103639651534781, 0.939764354405301, 0.694136577696587, 0.6593725303534554, 0.9646797005081557, 0.7979900311745153, 0.792123904710467, 0.8869579700149332, 0.7351250317969437, 0.5332560471205093, 0.9406873315653421, 0.39362685027924615, 0.9466602521798594, 0.8394325033041952, 0.6633442657978572, 0.8126408700417265, 0.7332457619716184, 0.08024070404520958, 0.8667774471450977, 0.6466814331404849, 0.912366876100516, 0.656670904734599, 0.8701678467707724, 0.8875925797813499, 0.9658725076002231, 0.7668332861852056, 0.8604440887473094, 0.934384507524058, 0.9605946056867319, 0.951253157591183, 0.5749289095213865, 0.6279243005170476, 0.7937202818717513, 0.7665301650725991, 0.700127941221274, 0.8531107444728586, 0.7947045908306632, 0.8870566665876504, 0.5476228787844645, 0.8410401833568673, 0.8736671065238262, 0.6519898659949606, 0.936943112068646, 0.9077719201719568, 0.8071889556778997, 0.8815615400732472, 0.8935313268029127, 0.8782891297971865, 0.5029588531082266, 0.5797201450332624, 0.9416775458320723, 0.5958140198486584, 0.2485157288688957, 0.932021424688801, 0.8531502837407814, 0.6344194678828672, 0.632587077283238, 0.9121448358615357, 0.5776545535910985, 0.9052765174806566, 0.8580390107418799, 0.8998644401112552, 0.6784536879503494, 0.9458342431661766, 0.21387363850783603, 0.9530348339880965, 0.7307391114165022, 0.7187682731289255, 0.6905635603269331, 0.9569274903702625, 0.9287384091375525, 0.3856984054091925, 0.504413920551941, 0.5389739198483336, 0.5921068831639978, 0.10702848140489757, 0.8772993497727819, 0.6361944011057532, 0.8952999713010865, 0.7069578609115064, 0.10632960186243966, 0.6465592619811017, 0.9116333268133815, 0.9210441535829985, 0.9483358221641291, 0.5800224234700003, 0.896951343689222, 0.8958659323404018, 0.8896861436466836, 0.7763142135369961, 0.778627444633172, 0.9274605647284293, 0.9167924025380936, 0.6422094408272838, 0.6363725079258666, 0.8694129796739031, 0.5693182102579236, 0.5315376696882942, 0.6814536952243052, 0.30089534057709466, 0.6689448970920832, 0.6419522618821227, 0.6500641275496193, 0.8221968069187356, 0.9285763346020383, 0.8495153837633861, 0.7135666997345446, 0.8850789772017983, 0.9128367188568884, 0.8709442503982084, 0.44714680104169846, 0.7147831401969469, 0.6814536952243052, 0.5823319261018008, 0.7718122970862826, 0.8925058444773368, 0.9249991097277733, 0.7849066379312727, 0.5120166815330335, 0.7863291630268572, 0.8171821177205619, 0.8878235148823457, 0.9813953955585096, 0.5009899161211654, 0.6787020040856314, 0.2747106808400709, 0.6998114428322438, 0.7191783799678735, 0.7566715075843347, 0.7741630673610131, 0.692871858980435, 0.8706970297938403, 0.9226518689226377, 0.619213859232465, 0.9620625840847012, 0.8161066853745392, 0.7984578805051198, 0.8987836568806694, 0.27900511725120763, 0.747868261422589, 0.8013372150606806, 0.4430395412241901, 0.8082746512504794, 0.9248395818955686, 0.8132668978866627, 0.7926355964369082, 0.7243101498981422, 0.8251498778038484, 0.865753667016409, 0.8784859927081519, 0.9613966942665844, 0.8380103992838959, 0.9376908870460701, 0.8505645904112248, 0.5317253080143199, 0.8756470416862959, 0.8823120896825394, 0.8920529250761863, 0.9565288857220365, 0.92576324319171, 0.8397457208604353, 0.8008835764985612, 0.7620555647282774, 0.6333567796033132, 0.8986985644274655, 0.8289197139212982, 0.38568054861828666, 0.4358764146033148, 0.7013568331933456, 0.5524769805317635, 0.8654015550049637, 0.9625385348003681, 0.4997035751430624, 0.5940434106189647, 0.29640429037896177, 0.9370396801623051, 0.7496358493500708, 0.8521916566704996, 0.7519935213994349, 0.8956127660014477, 0.7563308848917781, 0.5425355780301907, 0.1652985164032473, 0.5777375433929663, 0.5926841497777402, 0.5247451599628447, 0.6215406511606532, 0.646742228322253, 0.5236567091352762, 0.8105889943537302, 0.7614647275399787, 0.7272264480694343, 0.44438282424164377, 0.8051848688934031, 0.253979247575754, 0.8737269176380216, 0.7884186533408385, 0.5226162157005312, 0.7776146375974927, 0.8021344726910251, 0.6794204065079696, 0.8398669626756513, 0.3743394998756179, 0.6593725303534554, 0.41008410759983227, 0.8726624594592295, 0.31336232876890546, 0.6187135046228962, 0.9208146539756937, 0.8948907807194619, 0.9475948217130945, 0.7098971478357265, 0.41970311630379203, 0.5524505095188592, 0.6689295490636696, 0.39534528644804523, 0.6686700461744643, 0.6608417181144597, 0.6289006219381473, 0.8112353209803558, 0.9675531845963172, 0.3468688843876404, 0.8171815196180959, 0.9315945487332388, 0.7612383340144859, 0.43979370974717685, 0.9452166580978265, 0.810349906376065, 0.4979189466877109, 0.9054024939516333, 0.7506263221664519, 0.8595966107872783, 0.9041757536760852, 0.5120166815330335, 0.9246344940597735, 0.622364539475366, 0.7975959936185795, 0.9376528402833735, 0.8270495791839716, 0.7463426393970082, 0.8508295060861325, 0.5277539611022016, 0.7926521549058593, 0.8343380415579561, 0.7973631232158779, 0.5423298306356671, 0.6253812669856891, 0.9342151247863544, 0.9064095870896521, 0.8428584418618921, 0.5680191878381406, 0.8230633503438987, 0.857993972512287, 0.8312116035859974, 0.8886868130574391, 0.5695902702544526, 0.8750573328895943, 0.47134086624147714, 0.6082670858563528, 0.8571520978358925, 0.7006810412396262, 0.6001343818465046, 0.8680196363335714, 0.7833148206731655, 0.835330250744176, 0.6883000602161935, 0.4297997702781997, 0.7132181587745201, 0.941909753873568, 0.9298379484442667, 0.8950633078112005, 0.9652574497835966, 0.8593048115498744, 0.23022113319019433, 0.5548683876071567, 0.8789570823277312, 0.7176343272433334, 0.7135972690872326, 0.900955402304434, 0.89110615578316, 0.8021344726910251, 0.36734125225010755, 0.9233813125795639, 0.9269988231022361, 0.6021478506882372, 0.27064660283581765, 0.7595966254948197, 0.5317253080143199, 0.9626288904553877, 0.518871521713375, 0.4244151934213653, 0.8784852709235653, 0.667697582798242, 0.6791650855490978, 0.8659372985570389, 0.5217980090164113, 0.9757802673562255, 0.20769640873195563, 0.6900575067285889, 0.15051833553221247, 0.8476988333501053, 0.12043274000614122, 0.6546311715671466, 0.412102187638673, 0.6339696776630096, 0.6925917751558638, 0.8074446941396305, 0.8417042066658985, 0.4702054036006336, 0.8107456318417504, 0.934253622333564, 0.9671353887875448, 0.3776875782453083, 0.5133306968464912, 0.8279918435672958, 0.7295730380004212, 0.8398957027397556, 0.7470826509089123, 0.7722124156410631, 0.3944809481034696, 0.5801047158883857, 0.7134138458261836, 0.8265590446981121, 0.5836238058504062, 0.7538957359152121, 0.9708936701567454, 0.41507295289487073, 0.9039211350062085, 0.5109703825452502, 0.8880660412534, 0.6332514250278477, 0.703270618172154, 0.863031725372896, 0.9601349291832292, 0.5845797646527732, 0.8357575010967041, 0.9584406458449958, 0.8733333206292072, 0.4740801794177068, 0.5787650908025566, 0.38525623454815555, 0.5715075300165849, 0.951253157591183, 0.831291834366621, 0.6482062646591596, 0.5447536045265621, 0.8456825404777587, 0.5358725178581014, 0.8893400405584444, 0.5955893395860203, 0.9408369636189147, 0.7580589814818564, 0.4244151934213653, 0.7636885291754726, 0.9532052815091139, 0.6686700461744643, 0.39683939049776734, 0.8309978518015588, 0.06774730328187532, 0.8934061610794648, 0.9459413258233057, 0.8507977517004935, 0.9694554821790147, 0.8640493534313302, 0.8409166048571896, 0.9059760843724536, 0.7278052027863667, 0.8952246802917138, 0.39534528644804523, 0.9558702864115934, 0.9178754126151818, 0.7504628435478695, 0.7568870052952757, 0.32046258648166903, 0.9712495894387816, 0.7125870341029702, 0.8286889773580812, 0.929575727770858, 0.8422483936479932, 0.60065365322741, 0.5775074082600717, 0.7505976846167132, 0.5317253080143199, 0.9590110623565244, 0.9651712957082627, 0.7333643603414158, 0.7757825668725274, 0.8928390517037824, 0.2578168736401774, 0.5355488836719776, 0.8408692583280314, 0.7849780542174357, 0.8711681462620556, 0.8447990405440073, 0.9571933326515756, 0.9307123551507692, 0.6421242495412457, 0.9239207054420927, 0.9336219461922934, 0.4244151934213653, 0.5673643045526261, 0.8301442064454496, 0.528471943574542, 0.8835542071774324, 0.8820947700128993, 0.4561713647735051, 0.584381944856391, 0.9493936477483658, 0.7816316980556022, 0.7770145472448273, 0.8495153837633861, 0.8318035560268552, 0.5220388622338656, 0.8589980209217414, 0.21216021099657945, 0.8782303617207965, 0.901850575196968, 0.7683760396387002, 0.9559989503713009, 0.938411491366706, 0.7225398931917507, 0.5918361617892179, 0.8596378534897678, 0.8816239240572568, 0.9296844522785247, 0.8299758417251202, 0.7538846798551382, 0.931253582726863, 0.6902425303942638, 0.9299571155275668, 0.35461708236434614, 0.6119587629530028, 0.8979450471026776, 0.8782891297971865, 0.6144930729026484, 0.5601837238662909, 0.4230258756549153, 0.5115702372514986, 0.6133200318312215, 0.8287048127179734, 0.42887934024879554, 0.5543929044930882, 0.5414149972460248, 0.7453725251924848, 0.6522898344923613, 0.6445138145159856, 0.9212190995841192, 0.6991293681294938, 0.9188224881967051, 0.9444881948020799, 0.8399825546316605, 0.6440269003431431, 0.45260210695563535, 0.6678228102737954, 0.8535669746933884, 0.23469888428232324, 0.7581156815660375, 0.8329520097124233, 0.5886389680190937, 0.4250130050586104, 0.290761161529129, 0.9065968169685268, 0.39757013049667705, 0.9584529405260903, 0.24804178200132845, 0.8400605958344816, 0.9562762484868867, 0.5923100188758571, 0.5355488836719776, 0.6866862751474886, 0.753715093249364, 0.9302702282582556, 0.8405005145861136, 0.7758456574858743, 0.8270123797965384, 0.9270997487744173, 0.8779999285967196, 0.6350604679157676, 0.9057987369792326, 0.9732730617650076, 0.28007269673131574, 0.5393237551960537, 0.9509318156255189, 0.8055358405733448, 0.8512314640165554, 0.6752183046546253, 0.9766791413071304, 0.26893819095773785, 0.5105552073939665, 0.7964242570425004, 0.9159462749375985, 0.46312559485344046, 0.7889853219989779, 0.5331772070153998, 0.6250130361556073, 0.5340700079782073, 0.8981158701031157, 0.8424802355113449], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [39.0, 33.0, 45.0, 5.0, 36.0, 48.0, 25.0, 4.0, 10.0, 6.0, 22.0, 32.0, 39.0, 52.0, 30.0, 32.0, 35.0, 12.0, 9.0, 10.0, 15.0, 49.0, 31.0, 65.0, 31.0, 23.0, 35.0, 28.0, 11.0, 19.0, 51.0, 48.0, 12.0, 11.0, 24.0, 57.0, 35.0, 11.0, 27.0, 27.0, 19.0, 34.0, 44.0, 40.0, 10.0, 39.0, 16.0, 9.0, 36.0, 10.0, 58.0, 33.0, 26.0, 5.0, 9.0, 23.0, 13.0, 10.0, 21.0, 57.0, 10.0, 33.0, 45.0, 10.0, 13.0, 4.0, 16.0, 11.0, 8.0, 17.0, 6.0, 47.0, 69.0, 16.0, 36.0, 31.0, 45.0, 5.0, 13.0, 32.0, 40.0, 10.0, 45.0, 15.0, 34.0, 10.0, 37.0, 66.0, 81.0, 17.0, 67.0, 15.0, 6.0, 45.0, 40.0, 5.0, 40.0, 51.0, 26.0, 67.0, 20.0, 20.0, 32.0, 13.0, 11.0, 4.0, 27.0, 15.0, 16.0, 44.0, 15.0, 6.0, 18.0, 24.0, 12.0, 19.5, 35.0, 47.0, 52.0, 16.0, 22.0, 39.0, 25.0, 21.0, 12.0, 27.0, 7.0, 15.0, 12.0, 46.0, 6.0, 62.0, 45.0, 14.0, 31.0, 66.0, 6.0, 5.0, 17.0, 9.0, 6.0, 34.0, 38.0, 7.0, 21.0, 31.0, 21.0, 5.0, 42.0, 54.0, 46.0, 46.0, 29.0, 53.0, 24.0, 17.0, 54.0, 52.0, 36.0, 37.0, 15.0, 27.0, 24.0, 44.0, 6.0, 23.0, 23.0, 15.0, 30.0, 41.0, 16.0, 23.0, 12.0, 62.0, 46.0, 40.0, 8.0, 57.0, 54.0, 55.0, 14.0, 64.0, 12.0, 19.0, 42.0, 31.0, 60.0, 16.0, 27.0, 45.0, 16.0, 14.0, 67.0, 12.0, 70.0, 7.0, 20.0, 34.0, 48.0, 23.0, 5.0, 54.0, 37.0, 81.0, 3.0, 68.0, 50.0, 3.0, 26.0, 58.0, 30.0, 29.0, 18.0, 31.0, 61.0, 22.0, 66.0, 46.0, 36.0, 15.0, 40.0, 54.0, 22.0, 61.0, 47.0, 18.0, 16.0, 28.0, 18.0, 32.0, 36.0, 24.0, 44.0, 34.0, 16.0, 35.0, 23.0, 40.0, 45.0, 31.0, 28.0, 5.0, 21.0, 64.0, 20.0, 34.0, 18.0, 26.0, 59.0, 20.0, 15.0, 61.0, 14.0, 51.0, 8.0, 43.0, 64.0, 50.5, 22.0, 20.0, 9.0, 17.0, 54.0, 54.0, 11.0, 28.0, 11.0, 12.0, 4.0, 52.0, 20.0, 12.0, 52.0, 25.0, 18.0, 8.0, 67.0, 16.0, 17.0, 44.0, 45.0, 48.0, 30.0, 72.0, 52.0, 63.0, 16.0, 17.0, 6.0, 34.0, 45.0, 33.0, 45.0, 15.0, 30.0, 12.0, 25.0, 35.0, 39.0, 5.0, 39.0, 15.0, 58.0, 64.0, 68.0, 9.0, 5.0, 21.0, 32.0, 47.0, 24.0, 21.0, 7.0, 39.0, 19.0, 56.0, 40.0, 48.0, 26.0, 26.0, 10.0, 3.0, 23.0, 43.0, 4.0, 37.0, 36.0, 3.0, 54.0, 69.0, 5.0, 32.0, 32.0, 59.0, 7.0, 33.0, 43.0, 25.0, 44.0, 18.0, 51.0, 26.0, 29.0, 11.0, 5.0, 7.0, 15.0, 39.0, 44.0, 24.0, 16.0, 13.0], \"xaxis\": \"x2\", \"y\": [0.8142007211296887, 0.07257977436397642, 0.7430932382113554, 0.8214862427787604, 0.5698848321031316, 0.6048119589659149, 0.6466669219762841, 0.14510080060429495, 0.2250304680670007, 0.28492472637839966, 0.42061632734231896, 0.8281252124183194, 0.49622399336621903, 0.3482895521074759, 0.4678833354511545, 0.5708968386647719, 0.37048677721847617, 0.553632248395139, 0.8702137350251022, 0.42186952587750404, 0.8696774950675754, 0.5410576963494411, 0.3971326977900686, 0.3275001196198921, 0.9448289227093116, 0.7109941475090589, 0.41925580570138304, 0.3675472469853882, 0.6721911818800557, 0.5562207270314473, 0.5262426608517637, 0.3244609607385458, 0.15056615442564347, 0.15676979724311627, 0.6037730696030339, 0.6342511279653397, 0.021947035536558718, 0.32429164429335744, 0.5678746850743716, 0.3571680467137555, 0.7755534309390314, 0.3240287891037917, 0.699424662214302, 0.5151532452376618, 0.7564675819717819, 0.38343591026479057, 0.19811005648518398, 0.3168419703358067, 0.5315947262677626, 0.9269044449273315, 0.8260225289794664, 0.451791899378283, 0.830516920403184, 0.47128602930186, 0.19027823806377472, 0.5181346713949518, 0.29552777318700446, 0.45414400334446664, 0.39329840463575844, 0.42327932510626076, 0.45838907164509224, 0.2233864252642039, 0.3628419195926303, 0.6709353200988277, 0.46058046365566996, 0.25551237833043455, 0.7234147543269824, 0.1481282262733752, 0.314935793994079, 0.20050531530561894, 0.37453315488553635, 0.701015529968035, 0.6343341418527783, 0.1739320900588749, 0.734996253073231, 0.8172229478314255, 0.3598554146739685, 0.7121055211356295, 0.2620604909731644, 0.3421138035730516, 0.6951268813066005, 0.35208221297891723, 0.452099210446082, 0.18907620085798427, 0.5444201651108793, 0.6484058972837882, 0.3258186925596978, 0.5963383680780668, 0.6202666247822538, 0.576738593946626, 0.5054992484109841, 0.2972245631729925, 0.6844333356791464, 0.42629475072919953, 0.4405153833121037, 0.01207867704715336, 0.7609288944606691, 0.23951123982998349, 0.09310514674080905, 0.5084920166510624, 0.33067609257366243, 0.36481899584296196, 0.5708968386647719, 0.3194802059637459, 0.14207297841267416, 0.5776897120055972, 0.2026163425795633, 0.37909000048748537, 0.38206764842015895, 0.41324683104354176, 0.17826143731067332, 0.42339414872454434, 0.39148091864802853, 0.3511350413575442, 0.8053393751847749, 0.5937005322868365, 0.6849942580153355, 0.38930033076762494, 0.5168500865319015, 0.5699073288866824, 0.5376087249833421, 0.8185832461647057, 0.25950508036415604, 0.20394483716883388, 0.3303044530853749, 0.2528102968078532, 0.8477719856767125, 0.5217124250004609, 0.3303044530853749, 0.5382885532339231, 0.9625763866028243, 0.6536174904341296, 0.42629475072919953, 0.6458781618432388, 0.46574001023909845, 0.37268733756108086, 0.8180085473348132, 0.35493594975273335, 0.2423640089427935, 0.3636330633241046, 0.6421622311157122, 0.5444201651108793, 0.7396308412796291, 0.9036153464846048, 0.21101569987323432, 0.6004024464464508, 0.7595861882737439, 0.486549602332862, 0.2379839758891197, 0.5147825233229498, 0.2065932277190248, 0.4342628292980428, 0.5940848250235929, 0.4857193175270624, 0.5332610244722983, 0.5402196969638672, 0.8578846895389459, 0.5290225674595067, 0.6074669506688956, 0.1847839155105034, 0.3581391437324269, 0.4304380754474639, 0.8410120374942113, 0.5810086483513661, 0.19026233744636453, 0.7223494520380469, 0.8589928738613049, 0.8374625942163022, 0.781203852328267, 0.73983195178881, 0.41156537259256004, 0.7482873396984137, 0.44431713201158524, 0.7113673874393347, 0.49869552495399233, 0.7627102864663872, 0.37193390769028617, 0.37187810520956766, 0.3773291605703562, 0.8719651627687759, 0.6218762459828849, 0.3781393537983126, 0.553632248395139, 0.47624084907999176, 0.774399353278846, 0.5840424935194366, 0.5601025471409736, 0.6186690618327106, 0.620611700356168, 0.5755798886129706, 0.15047650536569443, 0.5530049338021776, 0.6597439619439023, 0.8300222117931148, 0.3490158529243493, 0.4410646109528086, 0.5067909967309752, 0.5851482063434866, 0.7149827463187939, 0.4849259975950144, 0.2094210588097294, 0.33399024531412796, 0.4083143545243069, 0.7497022835596558, 0.7817929239213606, 0.7637421953724776, 0.3825655414920891, 0.6611482494098961, 0.19022241257108333, 0.44972084577511023, 0.5476732603321269, 0.4831274653996314, 0.5077048340566679, 0.7289504589448288, 0.4379810490617926, 0.8017221455714771, 0.6434673631716396, 0.5059779734745421, 0.6065367192264559, 0.650368705032214, 0.34567471266024347, 0.39561589000187136, 0.3427787545601037, 0.4676404271158623, 0.5332283386400669, 0.4519108142444285, 0.40662831629925006, 0.42305576187259053, 0.22032895172816622, 0.5278715769330472, 0.43679486629948455, 0.743933429392776, 0.5269515041023835, 0.5008800654866953, 0.214168174561682, 0.44879088851457377, 0.683485355417811, 0.807753104897186, 0.42629475072919953, 0.8502951424821861, 0.17421175568219957, 0.25491371883486935, 0.7595861882737439, 0.6571724132942184, 0.7813188949129265, 0.5626906653340306, 0.8674288259883418, 0.6600514650598344, 0.4827749661719035, 0.5456147119159479, 0.39827550056677263, 0.27323823737433794, 0.695896529362927, 0.5048820477254727, 0.5422349097465021, 0.5610936746718964, 0.6571724132942184, 0.3088751107498249, 0.45428761266464013, 0.6604471727860799, 0.43371621376298963, 0.6171893197168647, 0.8100511550343341, 0.8100511550343341, 0.605832578461134, 0.5526475584669951, 0.4275055171336787, 0.8734720021260204, 0.8508295378350301, 0.5807723706867254, 0.8272749548927728, 0.2670652478909882, 0.7020144194675465, 0.4615566916191992, 0.7055847950248242, 0.43389869234556755, 0.6071692164257629, 0.3496825637352313, 0.23676491619791426, 0.7057755976874825, 0.15539001443149586, 0.6187538615870153, 0.8735882828904331, 0.30049486749739024, 0.23191705420611952, 0.8913917397916864, 0.4977157214618499, 0.16961113509580228, 0.8485494795219795, 0.4760032757956232, 0.5053843099270294, 0.2676015269871764, 0.3627664421236291, 0.15146266807038725, 0.7898179638281774, 0.6145296307645981, 0.3790380236797623, 0.3003532640340299, 0.6086112016774773, 0.39906793889171593, 0.8185832461647057, 0.6715802865662828, 0.8260225289794664, 0.6056902064850618, 0.400132762133902, 0.39471961640683584, 0.6449859309106076, 0.5637152910565628, 0.39949420960438964, 0.5490401551410112, 0.4398875418860128, 0.30916577334906253, 0.7093303227687476, 0.4562508424819209, 0.40444044759428516, 0.5773483646962835, 0.447777692034652, 0.4961542215384683, 0.32474312180562226, 0.21192693199409943, 0.9056903490933487, 0.5013816399998683, 0.758876109553896, 0.6364928148646596, 0.2952804752502578, 0.4748951900520853, 0.43679486629948455, 0.5479962315186364, 0.4728142838839701, 0.6343341418527783, 0.12248807650217919, 0.5052525886146573, 0.8281252124183194, 0.8930081609652758, 0.36283726088930296, 0.8098196742550625, 0.656477404357746, 0.193885049884708, 0.5269515041023835, 0.49858469647139786, 0.32780472036158087, 0.24927512797396847, 0.6148718578314069, 0.10691527318901187, 0.136775438340409, 0.8489192718114075, 0.2600203086082801, 0.8142007211296887, 0.5269515041023835, 0.7966615933629455, 0.5633234794197017, 0.767479452333631], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"free.sulfur.dioxide\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"free.sulfur.dioxide\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}, \"free.sulfur.dioxide_bad\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (ref)\", \"type\": \"scatter\", \"x\": [76.0, 19.0, 15.0, 32.0, 18.0, 17.0, 34.0, 9.0, 36.0, 28.0, 20.0, 15.0, 46.0, 8.0, 30.0, 61.0, 24.0, 7.0, 23.0, 3.0, 50.0, 47.0, 5.0, 34.0, 40.0, 15.0, 28.0, 22.0, 44.0, 27.0, 7.0, 25.0, 26.0, 60.0, 52.0, 10.0, 24.0, 58.0, 4.0, 54.0, 14.0, 10.0, 21.0, 24.0, 20.0, 23.0, 25.0, 39.0, 18.0, 22.0, 6.0, 26.0, 41.0, 5.0, 55.0, 42.0, 41.0, 39.0, 5.0, 29.0, 50.0, 47.0, 8.0, 55.0, 23.0, 36.0, 31.0, 32.0, 15.0, 13.0, 52.0, 3.0, 77.0, 20.0, 21.0, 55.0, 64.0, 7.0, 30.0, 15.0, 23.0, 16.0, 65.0, 9.0, 28.0, 11.0, 38.0, 5.0, 26.0, 17.0, 3.0, 55.0, 14.0, 77.0, 53.0, 53.0, 27.0, 39.0, 49.0, 31.0, 68.0, 23.0, 23.0, 44.0, 26.0, 18.0, 37.0, 6.0, 12.0, 25.0, 18.0, 16.0, 3.0, 22.0, 27.0, 18.0, 66.0, 20.0, 21.0, 12.0, 26.0, 13.0, 29.0, 22.0, 52.0, 68.0, 110.0, 9.0, 8.0, 48.0, 5.0, 11.0, 62.0, 61.0, 36.0, 47.0, 13.0, 36.0, 36.0, 33.0, 16.0, 74.0, 3.0, 21.0, 40.0, 61.0, 40.0, 56.0, 25.0, 22.0, 23.0, 17.0, 38.0, 7.0, 36.0, 10.0, 33.0, 53.0, 15.0, 10.0, 14.0, 5.0, 26.0, 34.0, 7.0, 8.0, 44.0, 36.0, 43.0, 54.0, 52.0, 13.0, 35.0, 22.0, 18.0, 6.0, 7.0, 21.0, 15.0, 17.0, 56.0, 3.0, 36.0, 14.0, 64.0, 48.0, 34.0, 5.0, 38.0, 45.0, 16.0, 19.0, 57.0, 8.0, 35.0, 6.0, 20.0, 30.5, 67.0, 44.0, 48.0, 48.0, 48.0, 15.0, 27.0, 37.0, 51.0, 11.0, 5.0, 3.0, 33.0, 48.0, 29.0, 36.0, 27.0, 26.0, 44.0, 9.0, 24.0, 5.0, 8.0, 52.0, 62.0, 29.0, 21.0, 44.0, 27.0, 40.0, 21.0, 3.0, 18.0, 16.0, 17.0, 19.0, 35.0, 33.0, 67.0, 7.0, 40.5, 66.0, 20.0, 43.0, 55.0, 61.0, 52.0, 20.0, 38.0, 70.0, 13.0, 9.0, 35.0, 32.0, 26.0, 10.0, 34.0, 54.0, 20.0, 6.0, 39.0, 6.0, 46.0, 49.0, 59.0, 21.0, 28.0, 53.0, 38.0, 25.0, 23.0, 29.0, 128.0, 22.0, 14.0, 24.0, 61.0, 61.0, 34.0, 66.0, 15.0, 11.0, 6.0, 14.0, 12.0, 16.0, 9.0, 51.0, 21.0, 57.0, 17.0, 54.0, 8.0, 17.0, 146.5, 6.0, 16.0, 7.0, 29.0, 58.0, 60.0, 15.0, 17.0, 22.0, 26.0, 53.0, 18.0, 11.0, 33.0, 11.0, 6.0, 13.0, 64.0, 49.0, 14.0, 52.0, 47.0, 22.0, 52.5, 24.0, 58.0, 9.0, 7.0, 62.0, 15.0, 4.0, 57.0, 32.0, 22.0, 58.0, 12.0, 61.0, 48.0, 23.0, 10.0, 81.0, 23.0, 6.0, 59.0, 5.0, 30.0, 67.0, 18.0, 48.0, 31.0, 12.0, 46.0, 13.0, 28.0, 47.0, 9.0, 50.0, 21.0, 10.0, 29.0, 17.0, 16.0], \"xaxis\": \"x\", \"y\": [0.7197707895473677, 0.05448058807241418, 0.5021256787650443, 0.4710854375480472, 0.7156076129280222, 0.7966690429773311, 0.7265425252145667, 0.16771266951545494, 0.610944103187451, 0.6324527530146118, 0.42180662537268765, 0.2598044700255929, 0.5503032830239416, 0.5632112185661304, 0.6840604465833231, 0.6224375641140001, 0.8071781895370533, 0.9515482366939344, 0.3994071349416132, 0.9677746238863042, 0.572587586261062, 0.7602674855798478, 0.861098734498427, 0.1386074727873, 0.6703360831713621, 0.8064003460928679, 0.3172728283240366, 0.8039094494444462, 0.9186426431335688, 0.6026275969807151, 0.8609701260317718, 0.3485833566260712, 0.3005246278528939, 0.2859113263741919, 0.4978204971029292, 0.5125675444128744, 0.4268860326359044, 0.11791793574572085, 0.440027850275134, 0.4938434408506086, 0.4933189622152446, 0.166194347192407, 0.30200278364192557, 0.6822425768461728, 0.8693180940701344, 0.24112389044610405, 0.43189370387303117, 0.284455178085937, 0.23793737479647703, 0.5535561322468214, 0.7900402576908969, 0.47373775892899717, 0.6055733033081183, 0.7462675017011632, 0.32245623572553406, 0.7612367841042231, 0.36308410170653527, 0.6103993963703384, 0.3965676277125745, 0.2230008284200371, 0.8480025164595866, 0.43585875500482685, 0.24095331994381775, 0.4030652094068704, 0.8951637220162157, 0.2782175630406618, 0.7337660836226194, 0.8352762102164887, 0.6223987562306759, 0.2928263700360406, 0.6563137004068428, 0.16155652477357085, 0.6364666355122575, 0.2186811050870735, 0.27206300237801306, 0.4358901152617537, 0.6136035252376228, 0.07900866299327158, 0.8522855318359817, 0.11906253414448076, 0.3466831105240652, 0.11265227152414181, 0.6302693732121377, 0.7168097665217413, 0.4796298258249143, 0.4476252306691143, 0.3612478268219491, 0.611861930499026, 0.15121036728507153, 0.5363393546692182, 0.16155652477357085, 0.441733396330222, 0.7834276811132227, 0.6364666355122575, 0.44873286860252337, 0.4948960601400133, 0.4172084246960842, 0.5055831714989107, 0.5269082808529498, 0.3737404408311804, 0.4491757516278906, 0.5266720849021, 0.2882430633103308, 0.6066213483726142, 0.83534933450756, 0.2509605867776752, 0.230738949997912, 0.25680675940048736, 0.6858999083789018, 0.27626495444752697, 0.35158671089680515, 0.311480105980391, 0.5950329577300569, 0.4196263877039489, 0.3672198477254309, 0.5488429300958864, 0.6273126624389191, 0.0990306898864649, 0.935036100419004, 0.5556828679884147, 0.6003916802566726, 0.1337843055401957, 0.6898191889393818, 0.46604488826349566, 0.6668872608045229, 0.5998672378660981, 0.14712454771937833, 0.8558065212045691, 0.883276495704891, 0.5544329747085402, 0.38398791005853006, 0.8623310715459079, 0.4482795971615686, 0.4767821080964978, 0.6451659669426603, 0.5099786295438409, 0.11454219273407718, 0.5691587732433696, 0.2398813672346335, 0.8592796956842923, 0.38133093816728936, 0.4754945767078651, 0.2673740541283356, 0.43092180164799054, 0.5981491184574936, 0.7512253043619477, 0.20474988026063612, 0.12337786436138054, 0.6965484670033051, 0.4642254518352117, 0.29034758521725457, 0.7912282271603185, 0.1364389858241727, 0.5326323768611896, 0.3938848007926149, 0.886984727126295, 0.5955398539691413, 0.3667393936023857, 0.35129461810907203, 0.578130474122496, 0.1952086434691429, 0.6982941690158907, 0.6159300986783536, 0.6650580695700093, 0.8007006003287879, 0.13750802167619447, 0.47121416359091395, 0.5691587732433696, 0.5295784007050042, 0.4938434408506086, 0.4240508430342457, 0.1531205555636086, 0.7965770364050346, 0.4829168465516456, 0.6333246955344933, 0.38682769986244625, 0.5589353890471914, 0.30965836575156913, 0.6133571507425741, 0.5363393546692182, 0.5474540697204298, 0.9680074395956593, 0.29703705077451537, 0.7566858385458134, 0.451244026180727, 0.6224939697452743, 0.9340693900855184, 0.1254375450851024, 0.770680513376406, 0.7273231109206828, 0.410671569380914, 0.19928392436820586, 0.44743622108127745, 0.4991477681643879, 0.5443787589855091, 0.826082779912576, 0.5642536294664222, 0.6762559922350657, 0.39283078357423706, 0.3074847569358159, 0.40732461839200396, 0.5614584986504241, 0.5614584986504241, 0.575628870274347, 0.1938881144566701, 0.6480440770440566, 0.23946299348505806, 0.6110142157087575, 0.32489046344192996, 0.127020290619695, 0.28948900574123104, 0.27970970921902805, 0.5179212029104148, 0.579807192000203, 0.5695619245525361, 0.7471497674522103, 0.6761943115269239, 0.6052803835931642, 0.9048996801452402, 0.632953623191418, 0.7849920634816455, 0.12946409768986655, 0.3899257470968539, 0.37735505673750047, 0.27206300237801306, 0.6356505945299911, 0.9000798247851504, 0.5852448485124296, 0.3537739535016634, 0.8589709040748648, 0.5105041430354158, 0.4760479563081992, 0.3915586115462193, 0.4344526143297297, 0.04825794875232026, 0.25106204840173363, 0.5352062615150248, 0.2084678736174792, 0.5588772074146924, 0.42656597432725707, 0.3395528272139201, 0.5154796814541086, 0.30312695461308037, 0.4684625037801391, 0.13140485141127656, 0.37575572516499556, 0.7087902803012941, 0.22740617784346517, 0.7932370230268412, 0.6977827466507267, 0.8687065743771458, 0.3532210556477622, 0.3005246278528939, 0.8817461779308045, 0.5897758288136841, 0.5117334773877459, 0.2267712913026929, 0.7462523759498982, 0.5055831714989107, 0.6276122794572256, 0.34766968675436505, 0.563322001169588, 0.4035281086421867, 0.44827723495654004, 0.7588644006503809, 0.17560197311170134, 0.2736156405730563, 0.5646478519097824, 0.12788772013874206, 0.8127608550985441, 0.35130933230290007, 0.8842329534318195, 0.5671758377024384, 0.508518787579709, 0.4735654621913231, 0.6614347321502836, 0.7032589073748752, 0.418601168771625, 0.40262233345395115, 0.38045938978299354, 0.6221728234115828, 0.6769388667590319, 0.825791915264051, 0.8036522945246104, 0.5350776523934957, 0.5038683203672731, 0.4187790963850706, 0.3942708224564714, 0.36585282612655, 0.42973128126448334, 0.1395024853671747, 0.36909778672938764, 0.5126700875045708, 0.31128511290513083, 0.5841805470690385, 0.42932394036482613, 0.5168725346003686, 0.9331527243268325, 0.5090935678835011, 0.848083892739094, 0.7288594688776423, 0.23463814542978878, 0.9073343486287574, 0.5445649372592127, 0.8030108083542629, 0.30698149193503155, 0.47724620771884374, 0.49565431290071005, 0.29179072192325783, 0.53941953634433, 0.32642767658125227, 0.5714063949384225, 0.6769388667590319, 0.48314991346809855, 0.3838692085325581, 0.7654355578102645, 0.6807995217458978, 0.7803105409218809, 0.4971816769068883, 0.5662837862370104, 0.32557907866588853, 0.4059739580227363, 0.8621668957327787, 0.4863555612469991, 0.44913520001249685, 0.5044088987161788, 0.018560580499064172, 0.17397747102053363, 0.8203404366189, 0.531551035274026, 0.3951880410340851, 0.6710839680909022, 0.7545393605546251, 0.25029771644034415, 0.31651464458218903, 0.7900402576908969, 0.7649542174153934, 0.6282404390050247, 0.5124469561170844, 0.7501741577575001, 0.3717170374651112, 0.5479204837841629, 0.1799627586960565, 0.8716748635647116, 0.4700369344869263, 0.7044722268129955, 0.7597806244765397, 0.4570971226262448, 0.3688130253756654, 0.5854022956087224, 0.6067015953642416, 0.6092966434658947, 0.5713009051869427, 0.15316343939585397, 0.31191498773739224], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [39.0, 34.0, 26.0, 25.0, 34.0, 20.0, 39.0, 33.0, 24.0, 26.0, 73.0, 4.0, 56.0, 41.5, 41.0, 23.0, 26.0, 6.0, 17.0, 21.0, 72.0, 27.0, 46.0, 30.0, 32.0, 40.0, 25.0, 37.0, 33.0, 29.0, 35.0, 31.0, 30.0, 96.0, 21.0, 44.0, 59.0, 38.0, 19.0, 12.0, 38.0, 18.0, 23.0, 18.0, 41.0, 24.0, 12.0, 24.0, 6.0, 27.0, 45.0, 54.0, 30.0, 44.0, 33.0, 50.0, 12.0, 22.0, 10.0, 50.0, 14.0, 20.0, 42.0, 47.0, 10.0, 6.0, 36.0, 13.0, 28.0, 20.0, 24.0, 19.0, 29.0, 37.5, 12.0, 24.0, 15.0, 26.0, 25.0, 37.0, 60.0, 36.0, 20.0, 28.0, 27.0, 31.0, 12.0, 21.0, 21.0, 7.0, 12.0, 36.0, 39.0, 48.0, 39.0, 24.0, 53.0, 16.0, 28.0, 28.0, 7.0, 35.0, 10.0, 4.0, 11.0, 41.0, 20.0, 27.0, 36.0, 29.0, 41.0, 35.0, 20.0, 19.0, 52.0, 22.0, 12.0, 23.0, 60.0, 24.0, 19.0, 34.0, 49.0, 46.0, 33.0, 13.0, 9.0, 38.0, 38.0, 6.0, 17.0, 33.0, 44.5, 24.0, 20.0, 54.0, 13.0, 15.0, 28.0, 14.0, 36.0, 53.0, 47.0, 43.0, 7.0, 22.0, 17.0, 12.0, 18.0, 34.0, 29.0, 23.0, 28.0, 57.0, 33.0, 42.0, 45.0, 8.0, 23.0, 37.0, 31.0, 17.0, 22.0, 21.0, 25.0, 37.0, 63.0, 29.0, 44.0, 43.0, 7.0, 24.0, 38.0, 30.0, 21.0, 34.0, 17.0, 26.0, 45.0, 16.0, 29.0, 35.0, 7.0, 50.0, 30.0, 33.0, 24.0, 7.0, 50.0, 25.0, 35.0, 3.0, 35.0, 19.0, 24.0, 32.0, 36.0, 59.0, 23.5, 23.0, 20.0, 18.0, 28.0, 38.0, 61.0, 43.0, 8.0, 22.0, 45.0, 29.0, 15.0, 29.0, 29.0, 36.0, 20.0, 16.0, 43.0, 39.0, 53.0, 13.0, 25.0, 41.0, 12.0, 35.0, 17.0, 29.0, 35.0, 47.0, 33.0, 39.0, 40.0, 39.0, 26.0, 52.0, 14.0, 17.0, 43.0, 51.0, 45.0, 49.0, 47.0, 49.0, 46.0, 29.0, 15.0, 47.0, 47.0, 29.0, 43.0, 30.0, 45.0, 48.5, 27.0, 9.0, 17.0, 29.0, 19.0, 35.0, 44.0, 3.0, 57.0, 35.0, 24.0, 51.0, 42.0, 30.0, 17.0, 6.0, 29.0, 18.0, 14.0, 19.0, 7.0, 39.0, 31.0, 50.0, 29.0, 10.0, 3.0, 23.0, 38.0, 49.0, 12.0, 36.0, 26.0, 19.0, 28.0, 78.0, 14.0, 24.0, 16.0, 64.0, 6.0, 45.0, 55.0, 44.0, 16.0, 62.0, 9.0, 27.0, 19.0, 21.0, 24.0, 22.0, 16.0, 24.0, 73.0, 20.0, 42.0, 26.0, 31.0, 38.0, 14.0, 20.0, 21.0, 6.0, 48.0, 41.0, 35.0, 37.0, 45.0, 12.0, 33.0, 49.0, 29.0, 8.0, 26.0, 20.0, 49.0, 27.0, 27.0, 26.0, 6.0, 66.0, 30.0, 38.0, 25.0, 34.0, 28.0, 52.0, 86.0, 14.0, 40.0, 40.0, 18.0, 32.0, 36.0, 7.0, 33.0, 35.0, 59.0, 60.0, 29.0, 20.0, 69.0, 35.0, 32.0, 37.0, 4.0, 31.0, 37.0, 47.0, 25.0, 22.0, 17.0, 28.0, 19.0, 51.0, 11.0, 48.0, 41.0, 17.0, 15.0, 15.0, 19.0, 37.0, 45.0, 17.0, 45.0, 26.0, 13.0, 53.0, 14.0, 53.0, 61.0, 24.0, 55.0, 23.0, 29.0, 29.0, 43.0, 42.0, 36.0, 8.0, 37.0, 18.0, 10.0, 27.0, 58.0, 21.0, 24.0, 8.0, 16.0, 47.0, 14.0, 43.0, 34.0, 17.0, 36.0, 16.0, 29.0, 42.0, 39.0, 15.0, 25.0, 40.0, 45.0, 60.0, 18.0, 15.0, 21.0, 41.0, 60.0, 29.0, 74.0, 40.0, 24.0, 34.0, 27.0, 56.0, 42.0, 14.0, 29.0, 31.0, 35.0, 31.0, 12.0, 32.0, 26.0, 16.0, 19.0, 25.0, 28.0, 20.0, 7.0, 23.0, 66.0, 33.0, 6.0, 36.0, 42.0, 38.0, 15.0, 29.0, 44.0, 7.0, 88.0, 24.0, 26.0, 46.0, 6.0, 29.0, 10.0, 50.0, 53.0, 31.0, 30.0, 63.0, 35.0, 13.0, 17.0, 68.0, 16.0, 35.0, 17.0, 73.0, 17.0, 32.0, 39.0, 21.0, 19.0, 56.0, 37.0, 38.0, 20.0, 8.0, 44.0, 33.0, 24.0, 17.0, 73.0, 23.0, 30.0, 47.0, 7.0, 35.0, 50.0, 47.0, 34.0, 34.0, 59.0, 45.0, 53.0, 55.0, 47.0, 45.0, 46.0, 35.0, 31.0, 17.0, 27.0, 22.0, 32.0, 57.0, 32.0, 12.0, 19.0, 54.0, 24.0, 26.0, 16.0, 30.0, 29.0, 48.0, 14.0, 4.0, 21.0, 30.0, 33.0, 23.0, 10.0, 5.0, 52.0, 20.0, 18.0, 27.0, 52.0, 30.0, 53.0, 24.0, 44.0, 37.0, 38.0, 36.0, 54.0, 30.0, 6.0, 22.0, 28.0, 40.0, 48.0, 41.0, 18.0, 12.0, 33.0, 8.0, 20.0, 14.0, 44.0, 38.0, 36.0, 26.0, 20.0, 24.0, 18.0, 23.0, 23.0, 9.0, 24.0, 61.0, 24.0, 27.0, 13.0, 39.0, 36.0, 11.0, 33.0, 33.0, 44.0, 27.0, 36.0, 34.0, 33.0, 40.0, 24.0, 14.0, 34.0, 38.0, 15.0, 18.0, 20.0, 31.0, 58.0, 37.0, 38.0, 17.0, 23.0, 3.0, 25.0, 42.0, 18.0, 14.0, 54.0, 31.0, 6.0, 26.0, 69.0, 56.0, 48.0, 45.0, 36.0, 24.0, 70.0, 5.0, 34.0, 19.0, 10.0, 37.0, 15.0, 10.0, 53.0, 35.0, 13.0, 14.0, 47.0, 52.0, 38.0, 24.0, 68.0, 22.0, 56.0, 53.0, 39.0, 20.0, 53.0, 12.0, 16.0, 68.0, 46.0, 33.0, 42.0, 17.0, 55.0, 31.0, 40.0], \"xaxis\": \"x\", \"y\": [0.18439386755371057, 0.5750868907731637, 0.1132172353536568, 0.19850047615697952, 0.6950004168934912, 0.41826441672946313, 0.040828937665112974, 0.2145583871630251, 0.09143093017991866, 0.10013996234885614, 0.3658834999306372, 0.587897812361327, 0.23563705889496211, 0.5289998061994394, 0.5981734696485812, 0.5956194363709464, 0.11295199838815062, 0.6349332021584286, 0.09356782907078887, 0.0672754654033908, 0.3541579814831264, 0.11781588709523827, 0.3295981493457443, 0.23443288181779365, 0.13830133810679424, 0.5122546205578999, 0.03626449638205209, 0.32057959349203036, 0.3955164844050859, 0.21320459763992916, 0.08620177311633537, 0.4132497936565127, 0.19514157099220286, 0.028148892894647393, 0.03728071159582558, 0.20213762816504022, 0.39088790332760825, 0.10566618212719892, 0.11466232649727714, 0.09544364959788487, 0.07351553674018241, 0.3657542344632553, 0.05859665738698361, 0.43634835962676355, 0.4827032077898804, 0.516310366273556, 0.6480037931050455, 0.21122004543372697, 0.030344760075157406, 0.22750344576024595, 0.18673438423788624, 0.5460909738859347, 0.0666291073587214, 0.320234954276134, 0.515425573770442, 0.5751179393061847, 0.3262180383913996, 0.12192585741802231, 0.6165939755266235, 0.09365914315081003, 0.44259853952477324, 0.31958523161407537, 0.09228899111547839, 0.22815273642701062, 0.5282447951108347, 0.7777719169155834, 0.13834506443323813, 0.29425092810710396, 0.5300870647699181, 0.031947521718024174, 0.1108646816717751, 0.053339747820140615, 0.14466174791529418, 0.25697560969337485, 0.3383868137798065, 0.30803904997837983, 0.03434255320493995, 0.08689109251212201, 0.46044782253877736, 0.0973761441498977, 0.3449058470623745, 0.024212367984770777, 0.11665042079727428, 0.3333970234137619, 0.1495417879159372, 0.0679784404121434, 0.2360052425084116, 0.39147703437781534, 0.04428683932015287, 0.5381556738404795, 0.4357341587922019, 0.11843845992675284, 0.28107964630818494, 0.06989794698232743, 0.2658605825653322, 0.22408104406272966, 0.15519213452661884, 0.09873339188795927, 0.10739713799337769, 0.4712507279726723, 0.31257930793611366, 0.6259141532505736, 0.1651629894813923, 0.13024327386797574, 0.08242409751896962, 0.55355901104019, 0.11256152515999429, 0.22124325125588817, 0.05838775174278421, 0.6734770756819889, 0.06919042490492266, 0.5773286546676725, 0.5693181878572973, 0.12726917141891614, 0.27983888222674136, 0.15690954109554833, 0.18593824584442387, 0.05432525584274117, 0.33273366741371935, 0.12435295831370408, 0.48112847828662497, 0.2959384652215836, 0.5042039768350125, 0.3749869638443927, 0.7258627386781167, 0.4806866421912115, 0.6234335830956541, 0.4191951896523489, 0.20821728825178332, 0.6343085651912675, 0.27674577061671146, 0.02140654255666985, 0.42849246998341506, 0.1817444030106703, 0.4551538855951942, 0.05087080041524106, 0.516641204200833, 0.6810720245435042, 0.08151744899857294, 0.4475169494323581, 0.03995706953508171, 0.2181819033834006, 0.20372897255157485, 0.24305701296248816, 0.5381556738404795, 0.2358485729609252, 0.051323642447754336, 0.1913631294907303, 0.32154631204965056, 0.31229802093755377, 0.3917329141436472, 0.39462053822053156, 0.3680669306910641, 0.5017894292511481, 0.32120711190509066, 0.0768019282386515, 0.1168769044932052, 0.31545143431826594, 0.12007957373947853, 0.08354361700756141, 0.2180731800932174, 0.7653011157176768, 0.05076221583963347, 0.11739077279846111, 0.3639458403519926, 0.4815918747301601, 0.35998732468747585, 0.457353694020342, 0.5520498791697908, 0.22168281241722143, 0.2132287846887433, 0.4763394582576197, 0.3040153802820409, 0.20749766415549342, 0.3316810644107503, 0.8126297477835096, 0.5749367295182395, 0.27274039590582944, 0.2685808245693546, 0.5172108675362206, 0.33506587713796443, 0.09616672688355288, 0.041108213935392324, 0.10548050716105373, 0.5016695616404938, 0.20022874051447226, 0.14220640128276774, 0.23772630779738468, 0.19606080251004787, 0.2603188495268066, 0.18846597668723208, 0.19827111133563302, 0.261548791893628, 0.4140325207077993, 0.8134796325151183, 0.12265695643958285, 0.6311167068993262, 0.13481820177301163, 0.0932384579037443, 0.14050160114126486, 0.2562249115981724, 0.08547750670655718, 0.08643201081848362, 0.19981675431015722, 0.31390222338706264, 0.06221739913672386, 0.06996303880871468, 0.30029370289300306, 0.4306817897420764, 0.6595343859760441, 0.2839408857911616, 0.20468539219890003, 0.1130196126722065, 0.2360017176902124, 0.13187147729288817, 0.42313120297864704, 0.06964897436687001, 0.1624399718171824, 0.17200815643270417, 0.07333105637055992, 0.2440137653363641, 0.4900110333069776, 0.3085554157386313, 0.03480496731142946, 0.12148031785507996, 0.15002971926037112, 0.5314247042003052, 0.2758453007685677, 0.2151852748992088, 0.2658605825653322, 0.29911225563077193, 0.6594110243744711, 0.49869782335001445, 0.16788254706683048, 0.11816213334465087, 0.08230909248122409, 0.13653212507346946, 0.25639170942272826, 0.06562233405876228, 0.23311900627036541, 0.3756616197417655, 0.46674395287949066, 0.3092684534350997, 0.8337319641197457, 0.8331457111467163, 0.2591056156836542, 0.4778687671024334, 0.2542440524586721, 0.5361036306539362, 0.07073721340803463, 0.4731688813159418, 0.5755848065786346, 0.356689463387698, 0.14225616860197343, 0.21837916002376445, 0.14466174791529418, 0.29899643271856946, 0.4757427727983842, 0.08126799884203029, 0.1296501822378736, 0.3286954654423938, 0.08620177311633537, 0.13855855420831553, 0.05543377339452393, 0.11917834098009661, 0.2613621884509647, 0.11269900223777074, 0.08429051026621415, 0.3393961441870107, 0.07031960314855146, 0.11356777592095357, 0.4853279864284006, 0.1279289285514792, 0.0584572339054259, 0.08612988585012649, 0.3472440907423937, 0.1248029959061332, 0.07502335399434323, 0.19827111133563302, 0.3424151534036639, 0.3065175956815872, 0.13808860398564737, 0.058092197534895806, 0.04082786106581715, 0.1602592849246841, 0.09156161599234125, 0.5036030690663805, 0.2640411824475748, 0.6468038092930676, 0.07201805208597656, 0.22470230804277058, 0.1334773721572423, 0.04847889440667685, 0.2685808245693546, 0.10911308148570098, 0.6764508967260475, 0.6280060594576413, 0.36761958218269275, 0.16019930342079847, 0.17605308658107655, 0.14078981831089854, 0.2384997092801764, 0.13117402490907393, 0.12818959986091483, 0.4161925244315118, 0.12435295831370408, 0.09814942480303201, 0.05480698563416486, 0.3746187330143109, 0.41092354232892336, 0.507894749900129, 0.5137929421583434, 0.08293523366016065, 0.2964416548030494, 0.15236141109070434, 0.4396941021426354, 0.41893931094950754, 0.09113953260801844, 0.10967473999240707, 0.055732078845942, 0.05640314085190745, 0.06176263301115803, 0.06427139521062619, 0.20386133178572885, 0.21597661143113533, 0.7486409492386699, 0.2610715902497083, 0.09465277491899493, 0.5556171757583562, 0.137718889647652, 0.1978940751503777, 0.08472590699531857, 0.356262641598029, 0.14596950445002987, 0.13865818299932142, 0.3088915816821678, 0.11516321289421916, 0.16121169033174265, 0.40573483691789825, 0.34308606282264, 0.36300204724896845, 0.17193414756867276, 0.035926383178341514, 0.34536882843285344, 0.4400180463892147, 0.5165194668234709, 0.23319834124303085, 0.9637923675569924, 0.2635599134550337, 0.6259141532505736, 0.12324962258280003, 0.1256037712827487, 0.1248029959061332, 0.11665042079727428, 0.29081136443782263, 0.12993062945549005, 0.20959981847797426, 0.12385816607190492, 0.16931651488884025, 0.2468284110987674, 0.6181879252747016, 0.3509541008179864, 0.08619429866610873, 0.09537770951135394, 0.8204393830764495, 0.2493836920976743, 0.10367142046182065, 0.11516383353466464, 0.07169627826225977, 0.5400384130096556, 0.2709141565803237, 0.16809050322974173, 0.3421981324687273, 0.812724325423183, 0.1326589750154965, 0.054670132935181304, 0.055346153509382656, 0.8039442695404772, 0.3276168958360183, 0.6561718697940482, 0.6214102617950452, 0.3046829516703813, 0.7853649284745584, 0.7303620793003476, 0.6719087507962026, 0.16000678121984613, 0.579612101366232, 0.6347749924714103, 0.41894393066564606, 0.06936532322770372, 0.28322834609079706, 0.343263893078516, 0.4450860003239352, 0.3090838478611311, 0.408095736797927, 0.11529682880263803, 0.13359771811640497, 0.2417229185475579, 0.10092265889692065, 0.8181934133883563, 0.3777834313813965, 0.8273808576462511, 0.18439353202429143, 0.5148786056082297, 0.11287077888712382, 0.16015059460472458, 0.29672938182784603, 0.36944561074938853, 0.2505850522824452, 0.8467591712977676, 0.3840267097226593, 0.261779448872241, 0.1645479955558209, 0.14631295673285594, 0.4248523287309329, 0.09222807982804315, 0.2121484308544801, 0.33273366741371935, 0.5470626312455473, 0.8294144697045585, 0.25206662215500397, 0.15998368749433245, 0.548322128117227, 0.3917329141436472, 0.15981565308588508, 0.23631147082452741, 0.21082920466209698, 0.1871387197916503, 0.24774693401855818, 0.1913242313933492, 0.16437448769677154, 0.07582203648947516, 0.032541140295091364, 0.06311143057978008, 0.5009235508757715, 0.12343879567504301, 0.445735807756371, 0.40322837553658053, 0.09397553936597514, 0.1598391281143201, 0.26702494168661406, 0.19782301216908982, 0.06831823449824892, 0.5451167746582685, 0.20142160156100697, 0.25747632252511843, 0.4257317671215596, 0.5062318064185062, 0.10278357133077332, 0.10857266292312517, 0.06223864817381186, 0.11377411494697365, 0.14082424186384768, 0.2589321903149734, 0.31776639873426016, 0.07983414941561229, 0.30174211068680845, 0.42532907678292176, 0.23734670470511587, 0.2862296469110084, 0.24790288035387664, 0.5526146374040077, 0.20425399436950087, 0.5166825128498294, 0.12415322942140417, 0.5310696157212036, 0.3866387435262121, 0.14313186082947948, 0.31648660326859934, 0.026792916001305622, 0.7856428374245099, 0.42383310375799566, 0.5944566396871084, 0.6256605001243821, 0.08813642250468567, 0.03544811528140901, 0.06935406654889886, 0.15751976448865512, 0.22608551288474832, 0.3127311228465576, 0.1409438166611655, 0.3285615524533705, 0.3591330499592894, 0.47964497307801546, 0.7143146030302826, 0.14223944449319303, 0.06929054967731618, 0.32120711190509066, 0.16913647442041335, 0.707286257884667, 0.3230684446475647, 0.7616845263358343, 0.4104900542879092, 0.10053249234255524, 0.1106599594415556, 0.1543174595222413, 0.46003879185641183, 0.3811350878514418, 0.07185070571861518, 0.23882593985771994, 0.5344976262521839, 0.11031385635331636, 0.09610989844306939, 0.4955559099445003, 0.07845190603324759, 0.30697262074812925, 0.12767551958037127, 0.4375661224395835, 0.07737023387634634, 0.15307682457740834, 0.05694427046787409, 0.09028836937410878, 0.4011292297732457, 0.6186146927451245, 0.11561676905211238, 0.0993047499370594, 0.08102401279833105, 0.8100206966555492, 0.10768932514586738, 0.15386113005635593, 0.4026560765644126, 0.045535707525545144, 0.08229583319403, 0.08227601457953415, 0.8241544781987433, 0.0759900855540333, 0.5147505197509459, 0.11103147778198663, 0.42144961755966015, 0.24880465403270857, 0.3112403223054312, 0.3282460941643247, 0.28312386083977936, 0.2865521931047814, 0.16537364909659502, 0.4284132019637321, 0.34116073112729894, 0.051142721309942685, 0.10794707492381372, 0.1108646816717751, 0.29201805921023904, 0.07365131996157204, 0.36851051207096197, 0.2556143611338999, 0.07392456180697715, 0.045535707525545144, 0.15025986810093994, 0.4395989822566938, 0.19636656988846957, 0.21018464628148859, 0.15085686628779282, 0.3429118439192298, 0.16104008564300487, 0.2055862423584408, 0.18673310211333727, 0.5528531989583015, 0.20219789553586287, 0.5807830339134155, 0.6112381610839525, 0.07515362639458067, 0.5722084734915175, 0.3654892991508686, 0.1991057466826236, 0.4912569401667811, 0.05850610073101081, 0.3077884117234785, 0.17038242498240874, 0.14066607718466684, 0.10248584652416493, 0.4022873718442217, 0.07205214632436985, 0.35142291824287475, 0.10941760034103376, 0.06679271580157364, 0.05675388891699207, 0.058987921856350156, 0.3660303223369904, 0.28790374422385034, 0.4158290962648631, 0.40710291595796666, 0.09934102670994882, 0.06362846635195196, 0.30921476208988685, 0.23242198019285765, 0.055541210656895434, 0.5297663836663529, 0.10744632778983743, 0.18410212910939194, 0.17721960751489196, 0.1962664672709783, 0.1617648996714035, 0.10584426414108294, 0.5203501665477333, 0.07365131996157204, 0.31578819840495265, 0.35364190165315845, 0.1707951928721818, 0.41655733121321636, 0.15801546378512366, 0.7568436608419439, 0.22368578646300386, 0.0609449253562836, 0.2225096762928218, 0.18587673368692093, 0.05559101133196209, 0.569598540521716, 0.08073228430722412, 0.15724041301590164, 0.12879141548479, 0.4306817897420764, 0.17998791969802397, 0.41280880088413996, 0.5723062335690389, 0.6457404130724687, 0.10420061808672998, 0.12564769853034463, 0.21795029564941848, 0.4720930498870375, 0.11304202998506685, 0.545112257205237, 0.14852188644910969, 0.17217029085021085, 0.336250902618187, 0.48671482860553816, 0.5093433434984792, 0.35847801144896685, 0.3008706318705062, 0.18494609259573758, 0.4199330463236065, 0.04162287990776414, 0.2633909944023186, 0.4252182303976608, 0.4684623303117058, 0.1925553058603695, 0.09610989844306939, 0.09129843496680234, 0.3302708189676917, 0.4199330463236065, 0.11927294568859859, 0.4864154015695107, 0.06472081497616611, 0.6387929002666255, 0.37932906694235924, 0.093713747684541, 0.20627971812824875], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (curr)\", \"type\": \"scatter\", \"x\": [39.0, 33.0, 45.0, 5.0, 36.0, 48.0, 25.0, 4.0, 10.0, 6.0, 22.0, 32.0, 39.0, 52.0, 30.0, 32.0, 35.0, 12.0, 9.0, 10.0, 15.0, 49.0, 31.0, 65.0, 31.0, 23.0, 35.0, 28.0, 11.0, 19.0, 51.0, 48.0, 12.0, 11.0, 24.0, 57.0, 35.0, 11.0, 27.0, 27.0, 19.0, 34.0, 44.0, 40.0, 10.0, 39.0, 16.0, 9.0, 36.0, 10.0, 58.0, 33.0, 26.0, 5.0, 9.0, 23.0, 13.0, 10.0, 21.0, 57.0, 10.0, 33.0, 45.0, 10.0, 13.0, 4.0, 16.0, 11.0, 8.0, 17.0, 6.0, 47.0, 69.0, 16.0, 36.0, 31.0, 45.0, 5.0, 13.0, 32.0, 40.0, 10.0, 45.0, 15.0, 34.0, 10.0, 37.0, 66.0, 81.0, 17.0, 67.0, 15.0, 6.0, 45.0, 40.0, 5.0, 40.0, 51.0, 26.0, 67.0, 20.0, 20.0, 32.0, 13.0, 11.0, 4.0, 27.0, 15.0, 16.0, 44.0, 15.0, 6.0, 18.0, 24.0, 12.0, 19.5, 35.0, 47.0, 52.0, 16.0, 22.0, 39.0, 25.0, 21.0, 12.0, 27.0, 7.0, 15.0, 12.0, 46.0, 6.0, 62.0, 45.0, 14.0, 31.0, 66.0, 6.0, 5.0, 17.0, 9.0, 6.0, 34.0, 38.0, 7.0, 21.0, 31.0, 21.0, 5.0, 42.0, 54.0, 46.0, 46.0, 29.0, 53.0, 24.0, 17.0, 54.0, 52.0, 36.0, 37.0, 15.0, 27.0, 24.0, 44.0, 6.0, 23.0, 23.0, 15.0, 30.0, 41.0, 16.0, 23.0, 12.0, 62.0, 46.0, 40.0, 8.0, 57.0, 54.0, 55.0, 14.0, 64.0, 12.0, 19.0, 42.0, 31.0, 60.0, 16.0, 27.0, 45.0, 16.0, 14.0, 67.0, 12.0, 70.0, 7.0, 20.0, 34.0, 48.0, 23.0, 5.0, 54.0, 37.0, 81.0, 3.0, 68.0, 50.0, 3.0, 26.0, 58.0, 30.0, 29.0, 18.0, 31.0, 61.0, 22.0, 66.0, 46.0, 36.0, 15.0, 40.0, 54.0, 22.0, 61.0, 47.0, 18.0, 16.0, 28.0, 18.0, 32.0, 36.0, 24.0, 44.0, 34.0, 16.0, 35.0, 23.0, 40.0, 45.0, 31.0, 28.0, 5.0, 21.0, 64.0, 20.0, 34.0, 18.0, 26.0, 59.0, 20.0, 15.0, 61.0, 14.0, 51.0, 8.0, 43.0, 64.0, 50.5, 22.0, 20.0, 9.0, 17.0, 54.0, 54.0, 11.0, 28.0, 11.0, 12.0, 4.0, 52.0, 20.0, 12.0, 52.0, 25.0, 18.0, 8.0, 67.0, 16.0, 17.0, 44.0, 45.0, 48.0, 30.0, 72.0, 52.0, 63.0, 16.0, 17.0, 6.0, 34.0, 45.0, 33.0, 45.0, 15.0, 30.0, 12.0, 25.0, 35.0, 39.0, 5.0, 39.0, 15.0, 58.0, 64.0, 68.0, 9.0, 5.0, 21.0, 32.0, 47.0, 24.0, 21.0, 7.0, 39.0, 19.0, 56.0, 40.0, 48.0, 26.0, 26.0, 10.0, 3.0, 23.0, 43.0, 4.0, 37.0, 36.0, 3.0, 54.0, 69.0, 5.0, 32.0, 32.0, 59.0, 7.0, 33.0, 43.0, 25.0, 44.0, 18.0, 51.0, 26.0, 29.0, 11.0, 5.0, 7.0, 15.0, 39.0, 44.0, 24.0, 16.0, 13.0], \"xaxis\": \"x2\", \"y\": [0.18579927887031134, 0.9274202256360236, 0.2569067617886446, 0.17851375722123963, 0.43011516789686843, 0.3951880410340851, 0.35333307802371594, 0.854899199395705, 0.7749695319329993, 0.7150752736216004, 0.5793836726576811, 0.17187478758168062, 0.503776006633781, 0.6517104478925241, 0.5321166645488455, 0.4291031613352281, 0.6295132227815239, 0.446367751604861, 0.12978626497489776, 0.578130474122496, 0.1303225049324246, 0.4589423036505589, 0.6028673022099313, 0.6724998803801079, 0.055171077290688375, 0.28900585249094113, 0.5807441942986169, 0.6324527530146118, 0.32780881811994433, 0.4437792729685527, 0.47375733914823626, 0.6755390392614542, 0.8494338455743565, 0.8432302027568838, 0.3962269303969661, 0.36574887203466033, 0.9780529644634413, 0.6757083557066426, 0.43212531492562845, 0.6428319532862445, 0.2244465690609686, 0.6759712108962084, 0.300575337785698, 0.4848467547623382, 0.24353241802821812, 0.6165640897352094, 0.801889943514816, 0.6831580296641933, 0.4684052737322374, 0.07309555507266852, 0.17397747102053363, 0.548208100621717, 0.16948307959681597, 0.5287139706981401, 0.8097217619362252, 0.48186532860504816, 0.7044722268129955, 0.5458559966555334, 0.6067015953642416, 0.5767206748937392, 0.5416109283549078, 0.7766135747357961, 0.6371580804073698, 0.3290646799011723, 0.53941953634433, 0.7444876216695655, 0.27658524567301757, 0.8518717737266248, 0.685064206005921, 0.7994946846943811, 0.6254668451144636, 0.29898447003196504, 0.36566585814722175, 0.8260679099411251, 0.265003746926769, 0.18277705216857454, 0.6401445853260315, 0.2878944788643705, 0.7379395090268356, 0.6578861964269485, 0.3048731186933995, 0.6479177870210828, 0.5479007895539181, 0.8109237991420157, 0.4555798348891207, 0.35159410271621183, 0.6741813074403022, 0.40366163192193316, 0.3797333752177462, 0.42326140605337403, 0.49450075158901585, 0.7027754368270075, 0.31556666432085356, 0.5737052492708005, 0.5594846166878963, 0.9879213229528466, 0.23907110553933086, 0.7604887601700165, 0.906894853259191, 0.49150798334893764, 0.6693239074263375, 0.635181004157038, 0.4291031613352281, 0.6805197940362542, 0.8579270215873258, 0.42231028799440284, 0.7973836574204367, 0.6209099995125147, 0.617932351579841, 0.5867531689564582, 0.8217385626893267, 0.5766058512754557, 0.6085190813519714, 0.6488649586424557, 0.19466062481522506, 0.4062994677131635, 0.31500574198466447, 0.6106996692323751, 0.48314991346809855, 0.4300926711133176, 0.4623912750166579, 0.18141675383529432, 0.7404949196358439, 0.7960551628311661, 0.6696955469146251, 0.7471897031921468, 0.15222801432328747, 0.4782875749995391, 0.6696955469146251, 0.4617114467660769, 0.0374236133971757, 0.34638250956587036, 0.5737052492708005, 0.35412183815676124, 0.5342599897609015, 0.6273126624389191, 0.1819914526651868, 0.6450640502472667, 0.7576359910572065, 0.6363669366758954, 0.35783776888428775, 0.4555798348891207, 0.2603691587203709, 0.09638465351539516, 0.7889843001267657, 0.3995975535535492, 0.2404138117262561, 0.5134503976671381, 0.7620160241108803, 0.4852174766770502, 0.7934067722809752, 0.5657371707019572, 0.40591517497640706, 0.5142806824729376, 0.4667389755277017, 0.4597803030361328, 0.14211531046105408, 0.4709774325404933, 0.39253304933110444, 0.8152160844894966, 0.6418608562675732, 0.5695619245525361, 0.15898796250578873, 0.4189913516486339, 0.8097376625536354, 0.2776505479619531, 0.14100712613869515, 0.1625374057836978, 0.21879614767173305, 0.26016804821119, 0.5884346274074399, 0.25171266030158634, 0.5556828679884147, 0.2886326125606653, 0.5013044750460076, 0.23728971353361283, 0.6280660923097139, 0.6281218947904323, 0.6226708394296439, 0.1280348372312241, 0.37812375401711507, 0.6218606462016874, 0.446367751604861, 0.5237591509200082, 0.22560064672115399, 0.4159575064805634, 0.43989745285902637, 0.38133093816728936, 0.379388299643832, 0.4244201113870294, 0.8495234946343055, 0.44699506619782237, 0.3402560380560977, 0.16997778820688525, 0.6509841470756508, 0.5589353890471914, 0.49320900326902484, 0.41485179365651337, 0.2850172536812061, 0.5150740024049856, 0.7905789411902706, 0.6660097546858721, 0.5916856454756931, 0.25029771644034415, 0.21820707607863943, 0.23625780462752244, 0.6174344585079109, 0.33885175059010386, 0.8097775874289167, 0.5502791542248897, 0.45232673966787307, 0.5168725346003686, 0.4922951659433321, 0.2710495410551712, 0.5620189509382074, 0.19827785442852286, 0.35653263682836045, 0.4940220265254579, 0.3934632807735441, 0.349631294967786, 0.6543252873397565, 0.6043841099981286, 0.6572212454398962, 0.5323595728841377, 0.4667716613599331, 0.5480891857555714, 0.5933716837007499, 0.5769442381274095, 0.7796710482718338, 0.4721284230669528, 0.5632051337005155, 0.25606657060722404, 0.47304849589761655, 0.4991199345133047, 0.785831825438318, 0.5512091114854263, 0.31651464458218903, 0.192246895102814, 0.5737052492708005, 0.14970485751781393, 0.8257882443178004, 0.7450862811651306, 0.2404138117262561, 0.3428275867057816, 0.2186811050870735, 0.43730933466596944, 0.1325711740116582, 0.33994853494016564, 0.5172250338280965, 0.4543852880840521, 0.6017244994332274, 0.7267617626256621, 0.304103470637073, 0.49511795227452726, 0.4577650902534979, 0.4389063253281036, 0.3428275867057816, 0.6911248892501751, 0.5457123873353599, 0.3395528272139201, 0.5662837862370104, 0.38281068028313525, 0.1899488449656659, 0.1899488449656659, 0.39416742153886597, 0.4473524415330049, 0.5724944828663213, 0.12652799787397961, 0.14917046216496987, 0.4192276293132746, 0.1727250451072272, 0.7329347521090118, 0.2979855805324535, 0.5384433083808008, 0.2944152049751758, 0.5661013076544325, 0.39283078357423706, 0.6503174362647687, 0.7632350838020857, 0.29422440231251745, 0.8446099855685041, 0.3812461384129847, 0.1264117171095669, 0.6995051325026098, 0.7680829457938805, 0.1086082602083136, 0.50228427853815, 0.8303888649041977, 0.15145052047802054, 0.5239967242043768, 0.49461569007297057, 0.7323984730128237, 0.6372335578763709, 0.8485373319296128, 0.21018203617182263, 0.3854703692354019, 0.6209619763202376, 0.6996467359659702, 0.3913887983225227, 0.600932061108284, 0.18141675383529432, 0.32841971343371723, 0.17397747102053363, 0.3943097935149382, 0.5998672378660981, 0.6052803835931642, 0.35501406908939237, 0.4362847089434372, 0.6005057903956104, 0.45095984485898877, 0.5601124581139871, 0.6908342266509375, 0.29066967723125237, 0.5437491575180791, 0.5955595524057149, 0.4226516353037165, 0.552222307965348, 0.5038457784615318, 0.6752568781943777, 0.7880730680059006, 0.09430965090665133, 0.4986183600001317, 0.24112389044610405, 0.3635071851353404, 0.7047195247497422, 0.5251048099479148, 0.5632051337005155, 0.4520037684813636, 0.5271857161160298, 0.36566585814722175, 0.8775119234978208, 0.49474741138534273, 0.17187478758168062, 0.1069918390347242, 0.6371627391106971, 0.19018032574493748, 0.34352259564225396, 0.806114950115292, 0.47304849589761655, 0.5014153035286022, 0.6721952796384192, 0.7507248720260316, 0.38512814216859315, 0.8930847268109882, 0.863224561659591, 0.15108072818859253, 0.7399796913917198, 0.18579927887031134, 0.47304849589761655, 0.2033384066370545, 0.43667652058029827, 0.23252054766636898], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [18.0, 55.0, 24.0, 15.0, 23.0, 27.0, 37.0, 21.0, 32.0, 57.0, 13.0, 29.0, 36.0, 26.0, 31.0, 29.0, 32.0, 11.0, 1.0, 42.0, 53.0, 39.0, 12.0, 45.0, 46.0, 32.0, 35.0, 61.0, 22.0, 34.0, 26.0, 23.0, 59.0, 26.0, 37.0, 45.0, 32.0, 60.0, 16.0, 10.0, 39.0, 31.0, 37.0, 46.0, 11.0, 34.0, 23.0, 18.0, 73.0, 38.0, 6.0, 22.0, 35.0, 14.0, 37.0, 43.0, 37.0, 27.0, 46.0, 18.0, 34.0, 45.0, 30.0, 15.0, 28.0, 31.0, 49.0, 32.0, 38.0, 50.0, 35.0, 36.0, 31.0, 28.0, 26.0, 54.0, 32.0, 53.0, 20.0, 6.0, 23.0, 66.0, 34.0, 22.0, 26.0, 14.0, 41.0, 20.0, 49.0, 14.0, 60.0, 46.0, 18.0, 28.0, 30.0, 26.0, 6.0, 51.0, 6.0, 16.0, 25.0, 26.0, 13.0, 49.0, 35.0, 37.0, 15.0, 20.0, 34.0, 37.0, 32.0, 35.0, 35.0, 13.0, 28.0, 19.0, 46.0, 33.0, 29.0, 21.0, 23.0, 74.0, 8.0, 23.0, 25.0, 5.0, 23.0, 21.0, 10.0, 29.0, 22.0, 18.0, 24.0, 48.0, 20.0, 62.0, 5.0, 24.0, 14.0, 29.0, 57.0, 27.0, 17.0, 46.0, 55.0, 23.0, 55.0, 10.0, 24.0, 20.0, 41.0, 33.0, 24.0, 14.0, 39.0, 10.0, 31.0, 15.0, 23.0, 49.0, 12.0, 10.0, 19.0, 50.0, 8.0, 15.0, 32.0, 13.0, 24.0, 52.0, 38.0, 20.0, 6.0, 3.0, 12.0, 41.0, 46.0, 54.0, 38.0, 17.0, 29.0, 33.0, 40.0, 54.0, 54.0, 26.0, 1.0, 24.0, 45.0, 22.0, 47.0, 17.0, 36.0, 40.0, 39.0, 36.0, 26.0, 18.0, 55.0, 21.0, 26.0, 29.0, 38.5, 21.0, 41.0, 18.0, 24.0, 38.0, 32.0, 79.5, 34.0, 24.0, 18.0, 37.0, 12.0, 35.0, 24.0, 25.0, 23.0, 34.0, 34.0, 56.0, 3.0, 62.0, 56.0, 28.0, 26.0, 44.0, 32.0, 32.0, 16.0, 30.0, 22.0, 31.0, 15.0, 51.0, 29.0, 30.0, 45.0, 18.0, 21.0, 23.0, 21.0, 29.0, 28.0, 13.0, 45.0, 39.0, 26.0, 6.0, 47.0, 68.0, 43.0, 26.0, 36.0, 44.0, 21.0, 13.0, 34.0, 25.0, 8.0, 47.0, 26.0, 67.0, 34.0, 27.0, 29.0, 54.0, 56.0, 58.0, 45.0, 37.0, 10.0, 13.0, 41.0, 12.0, 35.0, 17.0, 40.0, 39.0, 9.0, 25.0, 37.0, 26.0, 30.0, 11.0, 29.0, 22.0, 34.0, 45.0, 19.0, 5.0, 47.0, 26.0, 33.0, 33.0, 25.0, 40.0, 40.0, 28.0, 52.0, 25.0, 95.0, 42.0, 53.0, 24.0, 35.0, 53.0, 62.0, 34.0, 48.0, 15.0, 11.0, 31.0, 26.0, 69.0, 34.0, 11.0, 29.0, 52.0, 39.0, 31.0, 27.0, 50.0, 11.0, 49.0, 30.0, 17.0, 51.0, 20.0, 15.0, 18.0, 11.0, 63.0, 36.0, 23.0, 57.0, 80.0, 28.0, 6.0, 40.0, 27.0, 49.0, 39.0, 15.0, 29.0, 27.0, 7.0, 15.0, 25.0, 37.0, 30.0, 35.0, 14.0, 57.0, 20.0, 8.0, 18.0, 70.5, 13.0, 29.0, 25.0, 32.0, 61.0, 12.0, 53.0, 41.0, 50.0, 58.0, 68.0, 29.0, 29.0, 38.0, 22.0, 10.0, 9.0, 31.0, 17.0, 18.0, 13.0, 34.0, 22.0, 34.0, 56.0, 41.0, 24.0, 35.0, 31.0, 6.0, 43.0, 53.0, 32.0, 21.0, 71.0, 36.0, 11.0, 42.0, 7.0, 27.0, 37.0, 33.0, 37.0, 28.0, 21.0, 19.0, 44.0, 49.0, 23.0, 29.0, 17.0, 8.0, 16.0, 28.0, 9.0, 64.0, 29.0, 64.0, 5.0, 37.0, 19.0, 18.0, 38.0, 9.0, 5.5, 5.0, 50.0, 29.0, 27.0, 24.0, 35.0, 25.0, 20.0, 20.0, 29.0, 8.0, 14.0, 49.0, 53.0, 23.0, 19.0, 48.5, 5.0, 65.0, 27.0, 20.0, 6.0, 26.0, 19.0, 22.0, 15.0, 50.0, 22.0, 40.0, 4.0, 33.0, 49.0, 20.0, 24.0, 57.0, 9.0, 105.0, 44.0, 34.0, 56.0, 53.0, 23.0, 46.0, 14.0, 35.0, 22.0, 42.0, 60.0, 15.0, 25.0, 31.0, 11.0, 61.0, 19.0, 18.0, 63.0, 37.0, 34.0, 33.0, 10.0, 49.0, 26.0, 4.0, 15.0, 6.0, 26.0, 17.0, 44.5, 17.0, 11.0, 10.0, 6.0, 35.0, 15.0, 7.0, 25.0, 42.0, 33.0, 48.5, 40.0, 10.0, 41.0, 57.0, 25.0, 26.0, 31.0, 51.0, 25.0, 31.0, 14.0, 46.0, 41.0, 26.0, 6.0, 53.0, 11.0, 54.0, 8.0, 25.0, 32.0, 81.0, 46.0, 36.0, 36.0, 42.0, 60.5, 15.0, 45.0, 53.0, 41.0, 5.0, 33.0, 6.0, 16.0, 3.0, 52.0, 50.0, 25.0, 6.0, 40.0, 11.0, 16.0, 34.0, 7.0, 17.0, 48.5, 51.0, 14.0, 29.0, 6.0, 21.0, 62.0, 24.0, 19.0, 10.0, 44.0, 44.0, 33.0, 33.0, 8.0, 25.0, 26.0, 73.0, 31.0, 14.0, 56.0, 34.0, 37.0, 67.0, 42.0, 42.0, 30.0, 29.0, 26.0, 50.0, 16.0, 57.0, 40.0, 49.0, 18.0, 38.0, 17.0, 6.0, 56.0, 25.0, 15.0, 18.0, 29.0, 17.0, 10.0, 3.0, 27.0, 26.0, 38.0, 32.0, 47.0, 43.0, 29.0, 60.0, 40.0, 48.0, 17.0, 5.0, 27.0, 36.0, 14.0, 30.0, 41.0, 36.0, 55.0, 17.0, 15.0, 31.0, 29.0, 52.0, 23.0, 14.0, 35.0, 32.0, 21.0, 31.0, 10.0, 34.0, 52.0, 6.0, 59.0, 8.0, 17.0, 31.0, 12.0, 36.0, 25.0, 34.0, 16.0, 22.0, 34.0, 20.0, 50.0, 44.0, 38.0, 46.0, 52.0, 20.0, 32.0], \"xaxis\": \"x2\", \"y\": [0.6660328535674787, 0.4955559099445003, 0.11251030999551548, 0.5313240922219649, 0.7616845263358343, 0.42881839881496897, 0.22146723198036844, 0.2709448900825402, 0.04188686298684474, 0.3198999677935893, 0.586632325439729, 0.3332859260788763, 0.0891770245136605, 0.07249138429342028, 0.0813041402249215, 0.2808128557304226, 0.18155424903412543, 0.14020593233116785, 0.20529540916933675, 0.1755850319354616, 0.5722846846512241, 0.4684623303117058, 0.2863708053899042, 0.4489302200945696, 0.3606737334686688, 0.09834172337505831, 0.1439119889738254, 0.10526388551166177, 0.08976738859769384, 0.15927641460572795, 0.07353544332944184, 0.4894096639868448, 0.24735122968283396, 0.41440459167745447, 0.10107859516115147, 0.4809249647595707, 0.043928674649753696, 0.27268427565697984, 0.07203278686513981, 0.35989685204578803, 0.08410225657903847, 0.09640449279894714, 0.2859044620344169, 0.766491644508495, 0.27194216744256416, 0.11891721880979944, 0.6033870782914414, 0.8445823904457724, 0.4148378249676725, 0.09538880480821377, 0.5822786697287807, 0.2006236885231063, 0.30215903380660414, 0.3526626332448971, 0.22921561702294402, 0.3499358724503807, 0.451050436906263, 0.01968005574460141, 0.3849224947932618, 0.608666907839271, 0.30333177217190177, 0.05732515971384944, 0.08299070223644744, 0.155374347961305, 0.4378217303747408, 0.10641916767178827, 0.3207785913922725, 0.3280003244598044, 0.4747408725557203, 0.27229542413121455, 0.5314247042003052, 0.13834506443323813, 0.652508483608137, 0.1775869136191267, 0.4659209431511335, 0.3288332341233703, 0.47224603889779837, 0.2773569186284155, 0.18590272545123854, 0.6719763059805124, 0.04569198037744582, 0.22473444069733528, 0.0776074933333939, 0.1411968215808168, 0.3654892991508686, 0.06069899520469324, 0.21029328672965164, 0.13919371635861133, 0.16321149678759816, 0.6144435769482088, 0.1388055550317996, 0.0827658987104557, 0.0793107693477757, 0.04994940743047871, 0.46220165202879504, 0.08265172102971341, 0.5554564865761329, 0.10902951494304747, 0.26480674198345266, 0.31816712550642645, 0.20184400370343658, 0.23734670470511587, 0.19264674509953905, 0.03558879485690103, 0.5314247042003052, 0.3013473679880785, 0.8043030592862955, 0.07665185966197174, 0.17816243980233548, 0.14637302723887635, 0.43623195291339645, 0.5773286546676725, 0.06996409198491005, 0.0635191394270278, 0.11839391684253864, 0.03368970372860669, 0.16544292122901683, 0.5002106013252752, 0.20783967621931676, 0.4413184352618238, 0.1377753535318076, 0.017128038770129694, 0.09070427960766203, 0.05237321155563324, 0.46044782253877736, 0.09863911308639095, 0.6058955548956951, 0.07377868677997379, 0.33726125667837825, 0.03705661785513226, 0.03856885477325478, 0.01970319875133708, 0.06623921298607705, 0.655672818127978, 0.36403826442427, 0.375635621083512, 0.25822104517587474, 0.26990817233175546, 0.30316845466795117, 0.21597661143113533, 0.10411587283779344, 0.4582573305440075, 0.28974208538397184, 0.3995654588450376, 0.48407929824265805, 0.2412117545349558, 0.49704114689177337, 0.3112403223054312, 0.13571503940671914, 0.35304273602320047, 0.18963603484652192, 0.06023564559469896, 0.305863422303413, 0.34062746964654456, 0.03532029949184434, 0.20200996882548472, 0.207876095289533, 0.11304202998506685, 0.26487496820305634, 0.46674395287949066, 0.05931266843465788, 0.6063731497207538, 0.053339747820140615, 0.16056749669580483, 0.3366557342021428, 0.18735912995827353, 0.2667542380283816, 0.9197592959547904, 0.13322255285490225, 0.3533185668595151, 0.08763312389948397, 0.343329095265401, 0.1298321532292276, 0.11240742021865013, 0.03412749239977686, 0.23316671381479437, 0.13955591125269062, 0.065615492475942, 0.03940539431326806, 0.04874684240881699, 0.42507109047861347, 0.3720756994829524, 0.20627971812824875, 0.23346983492740092, 0.299872058778726, 0.14688925552714138, 0.20529540916933675, 0.11294333341234963, 0.4523771212155355, 0.15895981664313275, 0.12633289347617382, 0.34801013400503944, 0.063056887931354, 0.09222807982804315, 0.19281104432210028, 0.11843845992675284, 0.1064686731970873, 0.12171087020281346, 0.49704114689177337, 0.4202798549667376, 0.058322454167927695, 0.40418598015134155, 0.7514842711311043, 0.067978575311199, 0.1468497162592186, 0.3655805321171328, 0.36741292271676196, 0.08785516413846428, 0.4223454464089015, 0.09472348251934337, 0.14196098925812006, 0.10013555988874479, 0.32154631204965056, 0.05416575683382341, 0.786126361492164, 0.04696516601190348, 0.26926088858349784, 0.28123172687107445, 0.3094364396730669, 0.04307250962973752, 0.07126159086244754, 0.6143015945908075, 0.495586079448059, 0.46102608015166635, 0.40789311683600216, 0.8929715185951024, 0.1227006502272181, 0.3638055988942468, 0.10470002869891348, 0.29304213908849364, 0.8936703981375603, 0.3534407380188983, 0.0883666731866185, 0.07895584641700149, 0.05166417783587085, 0.4199775765299997, 0.10304865631077798, 0.1041340676595982, 0.11031385635331636, 0.22368578646300386, 0.22137255536682798, 0.0725394352715707, 0.08320759746190642, 0.3577905591727162, 0.36362749207413336, 0.13058702032609693, 0.4306817897420764, 0.4684623303117058, 0.3185463047756948, 0.6991046594229053, 0.33105510290791684, 0.35804773811787727, 0.3499358724503807, 0.17780319308126435, 0.07142366539796174, 0.1504846162366139, 0.28643330026545544, 0.11492102279820171, 0.08716328114311156, 0.12905574960179156, 0.5528531989583015, 0.2852168598030531, 0.3185463047756948, 0.41766807389819915, 0.22818770291371737, 0.10749415552266317, 0.07500089027222667, 0.2150933620687273, 0.4879833184669665, 0.21367083697314282, 0.18281788227943807, 0.11217648511765432, 0.01860460444149037, 0.4990100838788346, 0.3212979959143686, 0.7252893191599291, 0.30018855716775616, 0.2808216200321265, 0.24332849241566534, 0.22583693263898685, 0.307128141019565, 0.12930297020615966, 0.07734813107736227, 0.38078614076753503, 0.037937415915298756, 0.18389331462546077, 0.2015421194948802, 0.10121634311933059, 0.7209948827487924, 0.252131738577411, 0.19866278493931944, 0.5569604587758099, 0.19172534874952063, 0.07516041810443141, 0.18673310211333727, 0.20736440356309183, 0.27568985010185776, 0.1748501221961516, 0.134246332983591, 0.12151400729184814, 0.03860330573341564, 0.16198960071610413, 0.062309112953929935, 0.14943540958877521, 0.46827469198568006, 0.12435295831370408, 0.11768791031746062, 0.10794707492381372, 0.04347111427796346, 0.07423675680829, 0.1602542791395647, 0.19911642350143877, 0.2379444352717226, 0.36664322039668684, 0.10130143557253446, 0.17108028607870185, 0.6143194513817134, 0.5641235853966853, 0.29864316680665437, 0.44752301946823647, 0.13459844499503626, 0.037461465199631894, 0.5002964248569376, 0.4059565893810353, 0.7035957096210382, 0.0629603198376949, 0.25036415064992923, 0.14780834332950044, 0.24800647860056513, 0.10438723399855232, 0.24366911510822187, 0.4574644219698093, 0.8347014835967527, 0.42226245660703365, 0.4073158502222598, 0.47525484003715535, 0.37845934883934684, 0.35325777167774697, 0.4763432908647238, 0.18941100564626978, 0.23853527246002126, 0.27277355193056574, 0.5556171757583562, 0.19481513110659687, 0.7460207524242459, 0.12627308236197843, 0.2115813466591615, 0.4773837842994688, 0.22238536240250728, 0.1978655273089749, 0.32057959349203036, 0.1601330373243487, 0.6256605001243821, 0.34062746964654456, 0.5899158924001677, 0.1273375405407705, 0.6866376712310945, 0.3812864953771038, 0.07918534602430627, 0.10510921928053807, 0.052405178286905496, 0.29010285216427345, 0.5802968836962079, 0.4475494904811408, 0.33107045093633036, 0.6046547135519548, 0.33132995382553565, 0.3391582818855403, 0.37109937806185267, 0.18876467901964422, 0.03244681540368277, 0.6531311156123596, 0.18281848038190407, 0.06840545126676123, 0.23876166598551407, 0.5602062902528231, 0.05478334190217349, 0.18965009362393503, 0.502081053312289, 0.0945975060483667, 0.24937367783354814, 0.14040338921272166, 0.09582424632391484, 0.4879833184669665, 0.07536550594022651, 0.37763546052463404, 0.20240400638142053, 0.06234715971662652, 0.1729504208160284, 0.2536573606029918, 0.1491704939138675, 0.47224603889779837, 0.20734784509414073, 0.1656619584420439, 0.20263687678412212, 0.4576701693643329, 0.3746187330143109, 0.06578487521364562, 0.09359041291034786, 0.15714155813810793, 0.43198081216185935, 0.17693664965610134, 0.14200602748771296, 0.16878839641400256, 0.11131318694256087, 0.43040972974554736, 0.12494266711040569, 0.5286591337585229, 0.3917329141436472, 0.14284790216410748, 0.29931895876037384, 0.3998656181534954, 0.13198036366642862, 0.2166851793268345, 0.164669749255824, 0.3116999397838065, 0.5702002297218003, 0.2867818412254799, 0.05809024612643199, 0.0701620515557333, 0.10493669218879953, 0.03474255021640338, 0.14069518845012563, 0.7697788668098057, 0.44513161239284327, 0.12104291767226882, 0.2823656727566666, 0.28640273091276736, 0.09904459769556595, 0.10889384421684001, 0.1978655273089749, 0.6326587477498924, 0.0766186874204361, 0.07300117689776386, 0.3978521493117628, 0.7293533971641823, 0.24040337450518035, 0.46827469198568006, 0.03737110954461231, 0.48112847828662497, 0.5755848065786346, 0.12151472907643468, 0.332302417201758, 0.3208349144509022, 0.13406270144296106, 0.47820199098358873, 0.024219732643774528, 0.7923035912680444, 0.3099424932714111, 0.8494816644677875, 0.15230116664989468, 0.8795672599938588, 0.34536882843285344, 0.587897812361327, 0.3660303223369904, 0.3074082248441362, 0.1925553058603695, 0.1582957933341015, 0.5297945963993664, 0.1892543681582496, 0.06574637766643598, 0.03286461121245521, 0.6223124217546917, 0.48666930315350876, 0.17200815643270417, 0.27042696199957883, 0.16010429726024444, 0.25291734909108765, 0.22778758435893687, 0.6055190518965303, 0.41989528411161425, 0.2865861541738164, 0.17344095530188786, 0.4163761941495938, 0.24610426408478792, 0.029106329843254564, 0.5849270471051293, 0.09607886499379148, 0.4890296174547498, 0.11193395874659995, 0.3667485749721523, 0.29672938182784603, 0.13696827462710404, 0.03986507081677082, 0.41542023534722683, 0.1642424989032959, 0.041559354155004224, 0.1266666793707928, 0.5259198205822933, 0.42123490919744344, 0.6147437654518444, 0.42849246998341506, 0.04874684240881699, 0.16870816563337898, 0.35179373534084035, 0.4552463954734379, 0.1543174595222413, 0.4641274821418986, 0.1106599594415556, 0.40441066041397966, 0.05916303638108533, 0.24194101851814365, 0.5755848065786346, 0.23631147082452741, 0.04679471849088612, 0.33132995382553565, 0.6031606095022326, 0.16900214819844117, 0.9322526967181247, 0.1065938389205352, 0.0540586741766943, 0.14920224829950646, 0.03054451782098533, 0.13595064656866984, 0.15908339514281045, 0.09402391562754642, 0.27219479721363327, 0.10477531970828624, 0.6046547135519548, 0.04412971358840656, 0.0821245873848182, 0.24953715645213048, 0.24311299470472425, 0.679537413518331, 0.02875041056121841, 0.2874129658970298, 0.17131102264191878, 0.07042427222914205, 0.1577516063520068, 0.39934634677258996, 0.42249259173992826, 0.24940231538328683, 0.46827469198568006, 0.040988937643475554, 0.034828704291737345, 0.26663563965858417, 0.22421743312747255, 0.10716094829621758, 0.7421831263598226, 0.4644511163280224, 0.1591307416719686, 0.21502194578256428, 0.12883185373794437, 0.15520095945599266, 0.04280666734842442, 0.06928764484923078, 0.3578757504587543, 0.0760792945579073, 0.06637805380770656, 0.5755848065786346, 0.4326356954473739, 0.16985579355455038, 0.47152805642545803, 0.11644579282256762, 0.11790522998710073, 0.5438286352264949, 0.41561805514360906, 0.050606352251634235, 0.21836830194439782, 0.22298545275517268, 0.1504846162366139, 0.16819644397314482, 0.47796113776613436, 0.14100197907825862, 0.7878397890034206, 0.12176963827920351, 0.09814942480303201, 0.23162396036129984, 0.04400104962869911, 0.061588508633294015, 0.2774601068082493, 0.40816383821078206, 0.14036214651023216, 0.11837607594274324, 0.0703155477214753, 0.17002415827487982, 0.24611532014486182, 0.06874641727313702, 0.30975746960573625, 0.07004288447243323, 0.6453829176356538, 0.3880412370469972, 0.10205495289732236, 0.12171087020281346, 0.38550692709735157, 0.4398162761337091, 0.5769741243450848, 0.48842976274850136, 0.3866799681687785, 0.17129518728202664, 0.5711206597512044, 0.4456070955069118, 0.4585850027539752, 0.25462747480751524, 0.34771016550763867, 0.35548618548401445, 0.07878090041588082, 0.3008706318705062, 0.08117751180329491, 0.055511805197920094, 0.1600174453683395, 0.35597309965685686, 0.5473978930443646, 0.3321771897262046, 0.14643302530661162, 0.7653011157176768, 0.24188431843396252, 0.16704799028757666, 0.41136103198090634, 0.5749869949413896, 0.709238838470871, 0.09340318303147321, 0.602429869503323, 0.04154705947390969, 0.7519582179986716, 0.15993940416551844, 0.04372375151311325, 0.4076899811241429, 0.4644511163280224, 0.3133137248525114, 0.24628490675063597, 0.06972977174174444, 0.15949948541388637, 0.2241543425141257, 0.1729876202034616, 0.07290025122558275, 0.1220000714032804, 0.36493953208423235, 0.09420126302076737, 0.026726938234992392, 0.7199273032686843, 0.4606762448039463, 0.04906818437448113, 0.19446415942665518, 0.14876853598344464, 0.3247816953453747, 0.023320858692869595, 0.7310618090422621, 0.48944479260603346, 0.20357574295749958, 0.0840537250624015, 0.5368744051465595, 0.21101467800102214, 0.46682279298460017, 0.3749869638443927, 0.46592999202179275, 0.10188412989688433, 0.15751976448865512], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"free.sulfur.dioxide\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"free.sulfur.dioxide\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}, \"All_total.sulfur.dioxide\": {\"data\": [{\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Reference<br>total.sulfur.dioxide=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [123.0, 231.0, 126.0, 107.0, 175.0, 65.0, 107.0, 115.0, 121.0, 69.0, 180.0, 9.0, 158.0, 195.0, 211.0, 150.0, 101.0, 43.0, 74.0, 93.0, 202.0, 95.0, 142.0, 177.0, 84.0, 170.0, 93.0, 158.0, 131.0, 75.0, 92.0, 54.0, 92.0, 170.0, 63.0, 130.0, 186.0, 142.0, 99.0, 66.0, 67.0, 148.0, 60.0, 97.0, 211.0, 110.0, 57.0, 142.0, 18.0, 135.0, 110.0, 177.0, 104.0, 189.0, 156.0, 163.0, 73.0, 98.0, 104.0, 127.0, 19.0, 128.0, 144.0, 140.0, 41.0, 24.0, 100.0, 114.0, 160.0, 86.0, 125.0, 86.0, 101.0, 289.0, 94.0, 90.0, 37.0, 83.0, 60.0, 125.0, 189.0, 93.0, 57.0, 124.0, 98.0, 93.0, 143.0, 50.0, 93.0, 17.0, 119.0, 109.0, 148.0, 143.0, 151.0, 116.0, 134.0, 117.0, 85.0, 157.0, 47.0, 200.0, 41.0, 8.0, 95.0, 200.0, 103.0, 133.0, 86.0, 38.0, 103.0, 176.0, 166.0, 49.0, 158.0, 121.0, 110.0, 72.0, 171.0, 44.0, 171.0, 134.0, 228.0, 140.0, 89.0, 31.0, 25.0, 127.0, 147.0, 23.0, 127.0, 106.0, 129.5, 71.0, 115.0, 155.0, 52.0, 23.0, 109.0, 44.0, 109.0, 155.0, 159.0, 161.0, 17.0, 113.0, 85.0, 77.0, 34.0, 109.0, 149.0, 42.0, 143.0, 206.0, 118.0, 111.0, 100.0, 167.0, 112.0, 122.0, 115.0, 91.0, 68.0, 45.0, 137.0, 213.0, 192.0, 142.0, 161.0, 119.0, 20.0, 58.0, 123.0, 97.0, 43.0, 144.0, 31.0, 134.0, 138.0, 33.0, 134.0, 126.0, 15.0, 163.0, 136.0, 127.0, 118.0, 15.0, 194.0, 96.0, 128.0, 11.0, 164.0, 164.0, 94.0, 118.0, 126.0, 113.0, 72.0, 58.0, 124.0, 122.0, 111.0, 46.0, 181.0, 74.0, 22.0, 124.0, 155.0, 146.0, 73.0, 101.0, 121.0, 133.0, 80.0, 128.0, 106.0, 128.0, 160.0, 75.0, 78.0, 158.0, 87.0, 110.0, 25.0, 111.0, 189.0, 156.0, 106.0, 151.0, 186.0, 184.0, 52.0, 139.0, 92.0, 112.0, 150.0, 169.0, 107.0, 128.0, 202.0, 192.0, 114.0, 228.0, 64.0, 193.0, 155.0, 140.0, 167.0, 88.0, 163.0, 229.0, 66.0, 28.0, 29.0, 101.0, 143.0, 168.0, 152.0, 9.0, 146.0, 92.0, 99.0, 144.0, 109.0, 130.0, 114.0, 20.0, 44.0, 96.0, 61.0, 48.0, 81.0, 104.0, 119.0, 156.0, 115.0, 24.0, 11.0, 90.0, 161.0, 146.0, 90.0, 105.0, 93.0, 27.0, 182.0, 186.0, 46.0, 87.0, 84.0, 158.0, 12.0, 138.0, 149.0, 201.0, 34.0, 138.0, 71.0, 103.0, 40.0, 113.0, 98.0, 93.0, 98.0, 44.0, 142.0, 54.0, 155.0, 124.0, 70.0, 174.0, 28.0, 249.5, 90.0, 21.0, 153.0, 142.0, 100.0, 81.0, 104.0, 65.0, 170.0, 164.0, 118.0, 25.0, 81.0, 27.0, 188.0, 151.0, 107.0, 100.0, 19.0, 171.0, 96.0, 167.0, 76.0, 102.0, 159.0, 242.0, 213.0, 49.0, 78.0, 141.0, 22.0, 148.0, 125.0, 37.0, 96.0, 200.0, 143.0, 173.0, 115.0, 57.0, 160.0, 107.0, 79.0, 155.0, 23.0, 135.0, 194.0, 172.0, 57.0, 48.0, 88.0, 112.0, 125.0, 117.0, 31.0, 179.0, 149.0, 67.0, 102.0, 93.0, 78.0, 122.0, 142.0, 43.0, 98.0, 86.0, 50.0, 209.0, 63.0, 247.0, 206.0, 98.0, 95.0, 170.0, 163.0, 93.0, 132.0, 111.0, 158.0, 97.0, 221.0, 42.0, 87.0, 122.0, 178.0, 114.0, 42.0, 62.0, 70.0, 168.0, 78.0, 127.0, 134.0, 171.0, 87.0, 169.0, 140.0, 168.0, 141.0, 78.0, 102.0, 118.0, 152.0, 171.0, 143.0, 168.0, 138.0, 131.0, 206.0, 149.0, 134.0, 114.0, 111.0, 166.0, 165.0, 178.0, 186.0, 79.0, 98.0, 68.0, 146.0, 111.0, 16.0, 54.0, 155.0, 47.0, 102.0, 111.0, 89.0, 125.0, 109.0, 118.0, 231.0, 154.0, 24.0, 83.0, 126.0, 124.0, 70.0, 108.0, 174.0, 38.0, 223.0, 37.0, 101.0, 116.0, 22.0, 66.0, 37.0, 208.0, 138.0, 92.0, 134.0, 143.0, 154.0, 27.0, 42.0, 215.0, 131.0, 169.0, 113.0, 166.0, 105.0, 111.0, 113.0, 98.0, 42.0, 183.0, 118.0, 172.0, 134.0, 117.0, 109.0, 118.0, 88.0, 120.0, 223.0, 94.0, 93.0, 129.0, 11.0, 125.0, 185.0, 197.0, 108.0, 101.0, 195.0, 140.0, 140.0, 194.0, 126.0, 176.0, 113.0, 156.0, 90.0, 135.0, 98.0, 100.0, 211.0, 184.0, 111.0, 76.0, 111.0, 245.0, 102.0, 109.0, 89.0, 114.0, 142.0, 114.0, 38.0, 28.0, 158.0, 121.0, 126.0, 92.0, 47.0, 16.0, 158.0, 142.0, 102.0, 61.0, 242.0, 137.0, 143.0, 125.0, 172.0, 144.0, 216.0, 157.0, 128.0, 114.0, 13.0, 118.0, 83.0, 143.0, 116.0, 167.0, 91.0, 76.0, 125.0, 15.0, 73.0, 37.0, 213.0, 110.0, 160.0, 143.0, 68.0, 113.0, 88.0, 124.0, 112.0, 63.0, 110.0, 204.0, 78.0, 151.0, 168.0, 114.0, 110.0, 82.0, 154.0, 134.0, 229.0, 154.0, 109.0, 101.0, 123.0, 54.0, 126.0, 39.0, 128.0, 118.0, 65.0, 130.0, 136.0, 114.0, 215.0, 144.0, 128.0, 117.0, 89.0, 16.0, 95.0, 215.0, 150.0, 114.0, 162.0, 110.0, 17.0, 164.0, 144.0, 115.5, 134.0, 155.0, 119.0, 70.0, 230.0, 13.0, 137.0, 72.0, 69.0, 136.0, 28.0, 103.0, 154.0, 158.0, 33.0, 56.0, 194.0, 195.0, 140.0, 84.0, 170.0, 87.0, 178.0, 186.0, 193.0, 113.0, 140.0, 72.0, 37.0, 170.0, 110.0, 75.0, 104.0, 34.0, 152.0, 99.0, 117.0], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Current<br>total.sulfur.dioxide=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [101.0, 194.0, 126.0, 68.0, 94.0, 99.0, 97.0, 124.0, 95.0, 163.0, 32.0, 191.0, 111.0, 119.0, 127.0, 118.0, 38.0, 61.0, 28.0, 162.0, 212.5, 193.0, 74.0, 147.0, 179.0, 99.0, 127.0, 134.0, 93.0, 148.0, 74.0, 136.0, 178.0, 99.0, 121.0, 129.0, 76.0, 150.0, 81.0, 31.0, 124.0, 85.0, 156.0, 238.0, 27.0, 45.0, 135.0, 86.0, 212.0, 195.0, 18.0, 122.0, 137.0, 59.0, 175.0, 145.0, 181.0, 63.0, 165.0, 64.0, 64.0, 150.0, 105.0, 85.0, 100.0, 127.0, 144.0, 155.0, 89.0, 153.0, 189.0, 100.0, 117.0, 114.0, 113.0, 145.0, 174.0, 161.0, 38.0, 25.0, 87.0, 144.0, 60.0, 162.0, 143.0, 26.0, 55.0, 96.0, 172.0, 132.0, 143.0, 108.0, 115.0, 107.0, 117.0, 97.0, 28.0, 294.0, 10.0, 24.0, 126.0, 101.0, 22.0, 121.0, 189.0, 131.0, 105.0, 109.0, 117.0, 107.0, 75.0, 176.0, 112.0, 76.0, 138.0, 35.0, 153.0, 152.0, 136.0, 59.0, 158.0, 121.0, 44.0, 81.0, 60.0, 16.0, 53.0, 94.0, 26.0, 84.0, 82.0, 38.0, 98.0, 253.0, 74.0, 213.0, 12.0, 60.0, 169.0, 118.0, 166.0, 58.0, 35.0, 153.0, 204.0, 99.0, 190.0, 47.0, 134.0, 116.0, 98.0, 93.0, 94.0, 103.0, 116.0, 164.0, 47.0, 28.0, 92.0, 192.0, 65.0, 28.0, 86.0, 199.0, 20.0, 80.0, 148.0, 29.0, 48.0, 123.0, 100.0, 107.0, 41.0, 9.0, 88.0, 213.0, 129.0, 216.0, 111.0, 43.0, 131.0, 124.0, 117.0, 80.0, 141.0, 35.0, 28.0, 72.0, 170.0, 36.0, 124.0, 149.0, 92.0, 118.0, 133.0, 109.0, 76.0, 89.0, 190.0, 133.0, 98.0, 129.0, 245.0, 84.0, 191.0, 130.0, 99.0, 76.0, 134.0, 183.0, 116.0, 125.0, 34.0, 94.0, 35.0, 124.0, 90.0, 143.0, 174.0, 105.0, 125.0, 244.0, 15.0, 209.0, 189.0, 212.0, 118.0, 161.0, 59.0, 172.0, 65.0, 97.0, 84.0, 104.0, 33.0, 170.0, 99.0, 90.0, 140.0, 150.0, 114.0, 118.0, 132.0, 104.0, 54.0, 19.0, 155.0, 193.0, 111.0, 31.0, 150.0, 143.0, 145.0, 107.0, 105.0, 95.0, 126.0, 73.0, 111.0, 153.0, 15.0, 168.0, 111.0, 181.0, 172.0, 139.0, 110.0, 136.0, 189.0, 135.0, 104.0, 117.0, 51.0, 49.0, 113.0, 39.0, 148.0, 109.0, 102.0, 51.0, 26.0, 122.0, 104.0, 120.0, 114.0, 19.0, 132.0, 73.0, 145.0, 135.0, 47.0, 12.0, 132.0, 87.0, 125.0, 139.0, 94.0, 143.0, 139.0, 97.0, 119.0, 109.0, 163.0, 134.0, 178.0, 44.0, 95.0, 143.0, 180.0, 90.0, 129.0, 72.0, 32.0, 123.0, 81.0, 152.0, 214.0, 126.0, 117.0, 173.0, 204.0, 134.0, 156.0, 134.0, 65.0, 151.0, 114.0, 44.0, 164.0, 125.0, 28.0, 156.0, 28.0, 201.0, 106.0, 116.0, 182.0, 225.0, 142.0, 39.0, 142.0, 98.0, 188.0, 55.0, 27.0, 113.0, 87.0, 140.0, 33.0, 85.0, 158.0, 95.0, 169.0, 103.0, 191.0, 151.0, 28.0, 113.0, 163.0, 26.0, 95.0, 135.0, 55.0, 171.0, 21.0, 206.0, 113.0, 168.0, 173.0, 161.0, 97.0, 227.0, 107.0, 81.0, 17.0, 17.0, 96.0, 118.0, 38.0, 111.0, 118.0, 125.0, 143.0, 189.0, 98.0, 166.0, 135.0, 68.0, 12.0, 131.0, 172.0, 174.0, 128.0, 194.0, 108.0, 35.0, 155.0, 26.0, 87.0, 93.0, 187.0, 150.0, 158.0, 114.0, 120.0, 169.0, 130.0, 109.0, 149.0, 80.0, 23.0, 125.0, 81.0, 55.0, 185.0, 53.0, 245.0, 17.0, 122.0, 130.0, 75.0, 90.0, 34.0, 48.0, 15.0, 118.0, 151.0, 150.0, 85.0, 140.0, 85.0, 155.0, 84.0, 109.0, 17.0, 38.0, 172.0, 178.0, 93.0, 171.0, 229.0, 27.0, 146.0, 104.0, 89.0, 15.0, 60.0, 112.0, 47.0, 48.0, 136.0, 89.0, 141.0, 9.0, 154.0, 159.0, 113.0, 88.0, 158.0, 29.0, 179.0, 92.0, 181.0, 173.0, 160.0, 107.0, 151.0, 79.0, 132.0, 37.0, 170.0, 163.0, 50.0, 135.0, 98.0, 77.0, 172.0, 102.0, 135.0, 123.0, 143.0, 134.0, 85.0, 21.0, 182.0, 132.0, 28.0, 101.0, 25.0, 44.0, 100.0, 129.5, 43.0, 47.0, 40.0, 14.0, 125.0, 46.0, 11.0, 49.0, 118.0, 139.0, 229.0, 114.0, 53.0, 113.0, 200.0, 133.0, 88.0, 128.0, 70.0, 80.0, 113.0, 73.0, 152.0, 104.0, 45.0, 19.0, 206.0, 41.0, 173.0, 14.0, 97.0, 180.0, 147.0, 149.0, 135.0, 116.0, 150.0, 164.5, 21.0, 128.0, 178.0, 101.0, 16.0, 180.0, 14.0, 132.0, 10.0, 189.0, 156.0, 166.0, 10.0, 153.0, 49.0, 99.0, 68.0, 16.0, 80.0, 229.0, 225.0, 104.0, 122.0, 10.0, 57.0, 150.0, 69.0, 76.0, 102.0, 129.0, 95.0, 116.0, 168.0, 19.0, 173.0, 189.0, 142.0, 177.0, 71.0, 140.0, 110.0, 184.0, 152.0, 164.0, 105.0, 117.0, 124.0, 91.0, 181.0, 85.0, 181.0, 168.0, 128.0, 89.0, 167.0, 155.0, 20.0, 212.0, 78.0, 25.0, 35.0, 130.0, 129.0, 122.0, 7.0, 69.0, 120.0, 140.0, 83.0, 136.0, 157.0, 169.0, 221.0, 190.0, 113.0, 91.0, 13.0, 104.0, 136.0, 167.0, 99.0, 103.0, 159.0, 108.0, 91.0, 136.0, 103.0, 213.0, 189.0, 169.0, 107.0, 91.0, 112.0, 82.0, 114.0, 72.0, 84.0, 159.0, 17.0, 128.0, 16.0, 43.0, 87.0, 136.0, 140.0, 144.0, 74.0, 86.0, 145.0, 153.0, 127.0, 228.0, 112.0, 157.0, 140.0, 192.0, 114.0, 111.0], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Reference<br>total.sulfur.dioxide=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [192.0, 65.0, 151.0, 44.0, 77.0, 45.0, 149.0, 23.0, 148.0, 174.0, 110.0, 164.0, 165.0, 163.0, 79.0, 183.0, 144.0, 19.0, 139.0, 12.0, 187.0, 206.0, 12.0, 120.0, 63.0, 54.0, 120.0, 91.0, 214.0, 183.0, 20.0, 106.0, 159.0, 196.0, 192.0, 112.0, 147.0, 130.0, 10.0, 180.0, 94.0, 22.0, 100.0, 84.0, 84.0, 124.0, 105.0, 149.0, 87.0, 53.0, 33.0, 141.0, 168.0, 14.0, 173.0, 220.0, 169.0, 177.0, 69.0, 55.0, 245.0, 179.0, 16.0, 164.0, 113.0, 131.0, 172.0, 133.0, 36.0, 91.0, 183.0, 8.0, 194.0, 117.0, 115.0, 144.0, 233.0, 20.0, 92.0, 87.0, 106.0, 76.0, 243.0, 23.0, 138.0, 38.0, 201.0, 26.0, 72.0, 63.0, 8.0, 152.0, 111.0, 194.0, 195.0, 202.0, 159.0, 133.0, 179.0, 117.0, 195.0, 71.0, 111.0, 197.0, 120.0, 69.0, 115.0, 72.0, 115.0, 150.0, 47.0, 63.0, 15.0, 104.0, 51.0, 92.0, 178.0, 77.0, 84.0, 86.0, 166.0, 49.0, 150.0, 111.0, 204.0, 210.0, 198.0, 42.0, 86.0, 184.0, 33.0, 86.0, 156.0, 189.0, 139.0, 164.0, 60.0, 176.0, 140.0, 141.0, 116.0, 227.0, 75.0, 116.0, 177.0, 197.0, 161.0, 142.0, 48.0, 84.0, 156.0, 26.0, 143.0, 22.0, 104.0, 31.0, 98.0, 165.0, 73.0, 131.0, 101.0, 28.0, 49.0, 113.0, 12.0, 84.0, 179.0, 176.0, 187.0, 180.0, 171.0, 99.0, 121.0, 171.0, 95.0, 16.0, 35.0, 177.0, 55.0, 63.0, 189.0, 12.0, 114.0, 171.0, 179.0, 197.0, 187.0, 34.0, 157.0, 227.0, 115.0, 75.0, 206.0, 50.0, 200.0, 12.0, 151.0, 218.0, 210.0, 130.0, 198.0, 82.0, 82.0, 31.0, 132.0, 157.0, 131.0, 61.0, 13.0, 21.0, 87.0, 148.0, 160.0, 225.0, 173.0, 158.0, 192.0, 131.0, 220.0, 110.0, 24.0, 103.0, 204.0, 111.0, 115.0, 168.0, 93.0, 234.0, 87.0, 13.0, 117.0, 160.0, 103.0, 111.0, 106.0, 143.0, 207.0, 57.0, 210.0, 230.0, 38.0, 162.0, 136.0, 174.0, 103.0, 47.0, 142.0, 154.0, 164.0, 30.0, 155.0, 160.0, 159.0, 19.0, 176.0, 171.0, 90.0, 62.0, 133.0, 18.0, 169.0, 142.0, 173.0, 122.0, 178.0, 149.0, 128.0, 155.0, 58.0, 79.0, 212.0, 193.0, 167.0, 205.0, 186.0, 248.0, 124.0, 188.0, 82.0, 64.0, 14.0, 31.0, 188.0, 61.0, 117.0, 174.0, 123.0, 170.0, 73.0, 198.0, 97.0, 119.0, 307.5, 51.0, 68.0, 60.0, 106.0, 252.0, 177.0, 115.0, 78.0, 102.0, 96.0, 189.0, 72.0, 71.0, 184.0, 23.0, 18.0, 91.0, 150.0, 170.0, 31.0, 196.0, 133.0, 184.0, 282.0, 125.0, 223.0, 37.0, 20.0, 210.0, 60.0, 11.0, 168.0, 136.0, 71.0, 176.0, 65.0, 195.0, 167.0, 78.0, 164.0, 198.0, 131.0, 33.0, 240.0, 27.0, 95.0, 234.0, 87.0, 185.0, 120.0, 48.0, 188.0, 38.0, 195.0, 188.0, 62.0, 184.0, 145.0, 35.0, 197.0, 99.0, 104.0], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Current<br>total.sulfur.dioxide=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [106.0, 196.0, 164.0, 47.0, 156.0, 167.0, 131.0, 14.0, 21.0, 25.0, 111.0, 85.0, 191.0, 207.0, 181.0, 133.0, 143.0, 42.0, 125.0, 131.0, 115.0, 219.0, 185.0, 225.0, 101.0, 110.0, 72.0, 174.0, 66.0, 163.0, 159.0, 166.0, 24.0, 73.0, 164.0, 135.0, 152.0, 39.0, 127.0, 128.0, 101.0, 44.0, 150.0, 171.0, 67.0, 177.0, 112.0, 38.0, 174.0, 40.0, 176.0, 139.0, 91.0, 33.0, 26.0, 49.0, 38.0, 23.0, 145.0, 201.0, 23.0, 216.0, 186.0, 26.0, 91.0, 11.0, 45.0, 34.0, 23.0, 42.0, 16.0, 182.0, 168.0, 23.0, 135.0, 111.0, 255.0, 61.0, 98.0, 84.0, 126.0, 21.0, 187.0, 143.0, 169.0, 59.0, 171.0, 184.0, 174.0, 102.0, 210.0, 134.0, 16.0, 213.0, 54.0, 9.0, 131.0, 148.0, 142.0, 216.0, 88.0, 167.0, 133.0, 38.0, 200.0, 9.0, 90.0, 26.0, 119.0, 197.0, 59.0, 148.0, 30.0, 189.0, 53.0, 166.0, 146.0, 144.0, 196.0, 44.0, 179.0, 132.0, 161.0, 102.0, 20.0, 94.0, 89.0, 123.0, 20.0, 201.0, 55.0, 227.0, 213.0, 56.0, 68.0, 178.0, 121.0, 13.0, 94.0, 126.0, 117.0, 169.0, 95.0, 77.0, 68.0, 149.0, 138.0, 12.0, 140.0, 166.0, 114.0, 212.0, 129.0, 176.0, 145.0, 117.0, 135.0, 183.0, 131.0, 213.0, 55.0, 173.0, 128.0, 116.0, 29.0, 90.0, 56.0, 92.0, 140.0, 150.0, 165.0, 114.0, 86.0, 178.0, 102.0, 107.0, 119.0, 220.0, 219.0, 158.0, 122.0, 157.0, 42.0, 84.0, 162.0, 161.0, 150.0, 116.0, 142.0, 149.0, 86.0, 102.0, 196.0, 83.0, 189.0, 35.0, 89.0, 142.0, 156.0, 97.0, 11.0, 201.0, 162.0, 198.0, 89.0, 183.0, 173.0, 15.0, 138.0, 160.0, 146.0, 106.0, 34.0, 106.0, 222.0, 80.0, 169.0, 172.0, 99.0, 60.0, 142.0, 202.0, 126.0, 216.0, 154.0, 119.0, 43.0, 199.0, 167.0, 143.0, 161.0, 129.0, 138.0, 145.0, 63.0, 167.0, 131.0, 129.0, 213.0, 101.0, 210.0, 31.0, 138.0, 162.0, 117.0, 190.0, 75.0, 105.0, 169.0, 70.0, 42.0, 186.0, 111.0, 153.0, 111.0, 133.0, 162.0, 238.5, 155.0, 38.0, 37.0, 101.0, 168.0, 168.0, 71.0, 186.0, 77.0, 113.0, 117.0, 164.0, 98.0, 28.0, 187.0, 148.0, 107.0, 108.0, 210.0, 72.0, 82.0, 136.0, 87.0, 161.0, 105.0, 197.0, 145.0, 148.0, 109.0, 126.0, 48.0, 66.0, 191.0, 147.0, 151.0, 85.0, 137.0, 31.0, 98.0, 192.0, 167.0, 22.0, 132.0, 47.0, 176.0, 226.0, 210.0, 131.0, 21.0, 105.0, 177.0, 181.0, 58.0, 191.0, 69.0, 145.0, 175.0, 162.0, 157.0, 197.0, 138.0, 80.0, 25.0, 20.0, 124.0, 164.0, 14.0, 151.0, 161.0, 6.0, 200.0, 168.0, 10.0, 166.0, 85.0, 148.0, 28.0, 85.0, 127.0, 133.0, 138.0, 104.0, 180.0, 121.0, 61.0, 63.0, 16.0, 49.0, 122.0, 106.0, 138.0, 112.0, 92.0, 128.0], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Reference\", \"x\": 0.245, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Current\", \"x\": 0.755, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"barmode\": \"overlay\", \"legend\": {\"title\": {\"text\": \"target\"}, \"tracegroupgap\": 0}, \"margin\": {\"t\": 60}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.49], \"title\": {\"text\": \"total.sulfur.dioxide\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.51, 1.0], \"matches\": \"x\", \"title\": {\"text\": \"total.sulfur.dioxide\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"count\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}}}, \"total.sulfur.dioxide_good\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (ref)\", \"type\": \"scatter\", \"x\": [123.0, 231.0, 126.0, 107.0, 175.0, 65.0, 107.0, 115.0, 121.0, 69.0, 180.0, 9.0, 158.0, 195.0, 211.0, 150.0, 101.0, 43.0, 74.0, 93.0, 202.0, 95.0, 142.0, 177.0, 84.0, 170.0, 93.0, 158.0, 131.0, 75.0, 92.0, 54.0, 92.0, 170.0, 63.0, 130.0, 186.0, 142.0, 99.0, 66.0, 67.0, 148.0, 60.0, 97.0, 211.0, 110.0, 57.0, 142.0, 18.0, 135.0, 110.0, 177.0, 104.0, 189.0, 156.0, 163.0, 73.0, 98.0, 104.0, 127.0, 19.0, 128.0, 144.0, 140.0, 41.0, 24.0, 100.0, 114.0, 160.0, 86.0, 125.0, 86.0, 101.0, 289.0, 94.0, 90.0, 37.0, 83.0, 60.0, 125.0, 189.0, 93.0, 57.0, 124.0, 98.0, 93.0, 143.0, 50.0, 93.0, 17.0, 119.0, 109.0, 148.0, 143.0, 151.0, 116.0, 134.0, 117.0, 85.0, 157.0, 47.0, 200.0, 41.0, 8.0, 95.0, 200.0, 103.0, 133.0, 86.0, 38.0, 103.0, 176.0, 166.0, 49.0, 158.0, 121.0, 110.0, 72.0, 171.0, 44.0, 171.0, 134.0, 228.0, 140.0, 89.0, 31.0, 25.0, 127.0, 147.0, 23.0, 127.0, 106.0, 129.5, 71.0, 115.0, 155.0, 52.0, 23.0, 109.0, 44.0, 109.0, 155.0, 159.0, 161.0, 17.0, 113.0, 85.0, 77.0, 34.0, 109.0, 149.0, 42.0, 143.0, 206.0, 118.0, 111.0, 100.0, 167.0, 112.0, 122.0, 115.0, 91.0, 68.0, 45.0, 137.0, 213.0, 192.0, 142.0, 161.0, 119.0, 20.0, 58.0, 123.0, 97.0, 43.0, 144.0, 31.0, 134.0, 138.0, 33.0, 134.0, 126.0, 15.0, 163.0, 136.0, 127.0, 118.0, 15.0, 194.0, 96.0, 128.0, 11.0, 164.0, 164.0, 94.0, 118.0, 126.0, 113.0, 72.0, 58.0, 124.0, 122.0, 111.0, 46.0, 181.0, 74.0, 22.0, 124.0, 155.0, 146.0, 73.0, 101.0, 121.0, 133.0, 80.0, 128.0, 106.0, 128.0, 160.0, 75.0, 78.0, 158.0, 87.0, 110.0, 25.0, 111.0, 189.0, 156.0, 106.0, 151.0, 186.0, 184.0, 52.0, 139.0, 92.0, 112.0, 150.0, 169.0, 107.0, 128.0, 202.0, 192.0, 114.0, 228.0, 64.0, 193.0, 155.0, 140.0, 167.0, 88.0, 163.0, 229.0, 66.0, 28.0, 29.0, 101.0, 143.0, 168.0, 152.0, 9.0, 146.0, 92.0, 99.0, 144.0, 109.0, 130.0, 114.0, 20.0, 44.0, 96.0, 61.0, 48.0, 81.0, 104.0, 119.0, 156.0, 115.0, 24.0, 11.0, 90.0, 161.0, 146.0, 90.0, 105.0, 93.0, 27.0, 182.0, 186.0, 46.0, 87.0, 84.0, 158.0, 12.0, 138.0, 149.0, 201.0, 34.0, 138.0, 71.0, 103.0, 40.0, 113.0, 98.0, 93.0, 98.0, 44.0, 142.0, 54.0, 155.0, 124.0, 70.0, 174.0, 28.0, 249.5, 90.0, 21.0, 153.0, 142.0, 100.0, 81.0, 104.0, 65.0, 170.0, 164.0, 118.0, 25.0, 81.0, 27.0, 188.0, 151.0, 107.0, 100.0, 19.0, 171.0, 96.0, 167.0, 76.0, 102.0, 159.0, 242.0, 213.0, 49.0, 78.0, 141.0, 22.0, 148.0, 125.0, 37.0, 96.0, 200.0, 143.0, 173.0, 115.0, 57.0, 160.0, 107.0, 79.0, 155.0, 23.0, 135.0, 194.0, 172.0, 57.0, 48.0, 88.0, 112.0, 125.0, 117.0, 31.0, 179.0, 149.0, 67.0, 102.0, 93.0, 78.0, 122.0, 142.0, 43.0, 98.0, 86.0, 50.0, 209.0, 63.0, 247.0, 206.0, 98.0, 95.0, 170.0, 163.0, 93.0, 132.0, 111.0, 158.0, 97.0, 221.0, 42.0, 87.0, 122.0, 178.0, 114.0, 42.0, 62.0, 70.0, 168.0, 78.0, 127.0, 134.0, 171.0, 87.0, 169.0, 140.0, 168.0, 141.0, 78.0, 102.0, 118.0, 152.0, 171.0, 143.0, 168.0, 138.0, 131.0, 206.0, 149.0, 134.0, 114.0, 111.0, 166.0, 165.0, 178.0, 186.0, 79.0, 98.0, 68.0, 146.0, 111.0, 16.0, 54.0, 155.0, 47.0, 102.0, 111.0, 89.0, 125.0, 109.0, 118.0, 231.0, 154.0, 24.0, 83.0, 126.0, 124.0, 70.0, 108.0, 174.0, 38.0, 223.0, 37.0, 101.0, 116.0, 22.0, 66.0, 37.0, 208.0, 138.0, 92.0, 134.0, 143.0, 154.0, 27.0, 42.0, 215.0, 131.0, 169.0, 113.0, 166.0, 105.0, 111.0, 113.0, 98.0, 42.0, 183.0, 118.0, 172.0, 134.0, 117.0, 109.0, 118.0, 88.0, 120.0, 223.0, 94.0, 93.0, 129.0, 11.0, 125.0, 185.0, 197.0, 108.0, 101.0, 195.0, 140.0, 140.0, 194.0, 126.0, 176.0, 113.0, 156.0, 90.0, 135.0, 98.0, 100.0, 211.0, 184.0, 111.0, 76.0, 111.0, 245.0, 102.0, 109.0, 89.0, 114.0, 142.0, 114.0, 38.0, 28.0, 158.0, 121.0, 126.0, 92.0, 47.0, 16.0, 158.0, 142.0, 102.0, 61.0, 242.0, 137.0, 143.0, 125.0, 172.0, 144.0, 216.0, 157.0, 128.0, 114.0, 13.0, 118.0, 83.0, 143.0, 116.0, 167.0, 91.0, 76.0, 125.0, 15.0, 73.0, 37.0, 213.0, 110.0, 160.0, 143.0, 68.0, 113.0, 88.0, 124.0, 112.0, 63.0, 110.0, 204.0, 78.0, 151.0, 168.0, 114.0, 110.0, 82.0, 154.0, 134.0, 229.0, 154.0, 109.0, 101.0, 123.0, 54.0, 126.0, 39.0, 128.0, 118.0, 65.0, 130.0, 136.0, 114.0, 215.0, 144.0, 128.0, 117.0, 89.0, 16.0, 95.0, 215.0, 150.0, 114.0, 162.0, 110.0, 17.0, 164.0, 144.0, 115.5, 134.0, 155.0, 119.0, 70.0, 230.0, 13.0, 137.0, 72.0, 69.0, 136.0, 28.0, 103.0, 154.0, 158.0, 33.0, 56.0, 194.0, 195.0, 140.0, 84.0, 170.0, 87.0, 178.0, 186.0, 193.0, 113.0, 140.0, 72.0, 37.0, 170.0, 110.0, 75.0, 104.0, 34.0, 152.0, 99.0, 117.0], \"xaxis\": \"x\", \"y\": [0.8156061324462894, 0.42491310922683634, 0.8867827646463432, 0.8014995238430205, 0.30499958310650876, 0.5817355832705369, 0.959171062334887, 0.7854416128369749, 0.9085690698200813, 0.8998600376511439, 0.6341165000693628, 0.412102187638673, 0.7643629411050379, 0.4710001938005606, 0.40182653035141874, 0.40438056362905367, 0.8870480016118494, 0.3650667978415713, 0.9064321709292111, 0.9327245345966092, 0.6458420185168736, 0.8821841129047617, 0.6704018506542557, 0.7655671181822064, 0.8616986618932058, 0.48774537944210006, 0.9637355036179479, 0.6794204065079696, 0.6044835155949141, 0.7867954023600708, 0.9137982268836646, 0.5867502063434873, 0.8048584290077971, 0.9718511071053526, 0.9627192884041744, 0.7978623718349598, 0.6091120966723917, 0.8943338178728011, 0.8853376735027229, 0.9045563504021151, 0.9264844632598176, 0.6342457655367447, 0.9414033426130164, 0.5636516403732365, 0.5172967922101196, 0.4836896337264441, 0.35199620689495453, 0.788779954566273, 0.9696552399248426, 0.772496554239754, 0.8132656157621138, 0.4539090261140653, 0.9333708926412786, 0.679765045723866, 0.48457442622955804, 0.4248820606938153, 0.6737819616086004, 0.8780741425819777, 0.38340602447337646, 0.90634085684919, 0.5574014604752268, 0.6804147683859246, 0.9077110088845216, 0.7718472635729894, 0.4717552048891654, 0.22222808308441652, 0.8616549355667619, 0.705749071892896, 0.4699129352300819, 0.9680524782819758, 0.8891353183282249, 0.9466602521798594, 0.8553382520847058, 0.7430243903066251, 0.6616131862201935, 0.6919609500216202, 0.96565744679506, 0.913108907487878, 0.5395521774612226, 0.9026238558501023, 0.6550941529376255, 0.9757876320152292, 0.8833495792027257, 0.6666029765862381, 0.8504582120840628, 0.9320215595878566, 0.7639947574915884, 0.6085229656221847, 0.9557131606798471, 0.46184432615952054, 0.5642658412077981, 0.8815615400732472, 0.7189203536918151, 0.9301020530176726, 0.7341394174346678, 0.7759189559372703, 0.8448078654733812, 0.9012666081120407, 0.8926028620066223, 0.5287492720273277, 0.6874206920638863, 0.37408584674942635, 0.8348370105186077, 0.8697567261320243, 0.9175759024810304, 0.44644098895981, 0.8874384748400057, 0.7787567487441118, 0.9416122482572158, 0.3265229243180111, 0.9308095750950773, 0.42267134533232753, 0.43068181214270274, 0.8727308285810839, 0.7201611177732586, 0.8430904589044517, 0.8140617541555761, 0.9456747441572588, 0.6672663325862807, 0.8756470416862959, 0.518871521713375, 0.7040615347784164, 0.4957960231649875, 0.6250130361556073, 0.27413726132188326, 0.5193133578087885, 0.37656641690434584, 0.5808048103476511, 0.7917827117482167, 0.36569143480873245, 0.7232542293832885, 0.9785934574433302, 0.5715075300165849, 0.8182555969893297, 0.5448461144048058, 0.9491291995847589, 0.4833587957991669, 0.3189279754564957, 0.9184825510014271, 0.5524830505676419, 0.9600429304649183, 0.7818180966165994, 0.7962710274484252, 0.7569429870375118, 0.46184432615952054, 0.7641514270390748, 0.9486763575522457, 0.8086368705092697, 0.6784536879503494, 0.6877019790624462, 0.6082670858563528, 0.6053794617794684, 0.6319330693089359, 0.4982105707488519, 0.6787928880949093, 0.9231980717613485, 0.8831230955067948, 0.6845485656817341, 0.8799204262605215, 0.9164563829924386, 0.7819268199067826, 0.23469888428232324, 0.9492377841603665, 0.8826092272015389, 0.6360541596480074, 0.5184081252698399, 0.6400126753125241, 0.542646305979658, 0.4479501208302092, 0.7783171875827786, 0.7867712153112567, 0.5236605417423803, 0.6959846197179591, 0.7925023358445066, 0.6683189355892497, 0.18737025221649042, 0.42506327048176057, 0.7272596040941706, 0.7314191754306454, 0.4827891324637794, 0.6649341228620356, 0.9038332731164471, 0.9588917860646077, 0.8945194928389463, 0.49833043835950624, 0.7997712594855277, 0.8577935987172323, 0.7622736922026153, 0.8039391974899521, 0.7396811504731934, 0.8115340233127679, 0.801728888664367, 0.738451208106372, 0.5859674792922007, 0.1865203674848816, 0.8773430435604171, 0.36888329310067386, 0.8651817982269884, 0.9067615420962557, 0.8594983988587351, 0.7437750884018276, 0.9145224932934428, 0.9135679891815164, 0.8001832456898428, 0.6860977766129374, 0.9377826008632761, 0.9300369611912853, 0.6997062971069969, 0.5693182102579236, 0.3404656140239559, 0.7160591142088384, 0.7953146078011, 0.8869803873277935, 0.7639982823097876, 0.8681285227071118, 0.576868797021353, 0.93035102563313, 0.8375600281828176, 0.8279918435672958, 0.9266689436294401, 0.7559862346636359, 0.5099889666930224, 0.6914445842613687, 0.9651950326885705, 0.87851968214492, 0.8499702807396289, 0.4685752957996948, 0.7241546992314323, 0.7848147251007912, 0.7341394174346678, 0.7008877443692281, 0.340588975625529, 0.5013021766499856, 0.8321174529331695, 0.8818378666553491, 0.9176909075187759, 0.8634678749265305, 0.7436082905772717, 0.9343776659412377, 0.7668809937296346, 0.6243383802582345, 0.5332560471205093, 0.6907315465649003, 0.16626803588025432, 0.1668542888532837, 0.7408943843163458, 0.5221312328975666, 0.7457559475413279, 0.46389636934606376, 0.9292627865919654, 0.5268311186840582, 0.4244151934213653, 0.643310536612302, 0.8577438313980266, 0.7816208399762355, 0.8553382520847058, 0.7010035672814305, 0.5242572272016158, 0.9187320011579697, 0.8703498177621264, 0.6713045345576062, 0.9137982268836646, 0.8614414457916845, 0.9445662266054761, 0.8808216590199034, 0.7386378115490353, 0.8873009977622293, 0.9157094897337859, 0.6606038558129893, 0.9296803968514485, 0.8864322240790464, 0.5146720135715994, 0.8720710714485208, 0.9415427660945741, 0.9138701141498735, 0.6527559092576063, 0.8751970040938668, 0.9249766460056568, 0.801728888664367, 0.6575848465963361, 0.6934824043184128, 0.8619113960143526, 0.9419078024651042, 0.9591721389341828, 0.8397407150753159, 0.9084383840076588, 0.4963969309336195, 0.7359588175524252, 0.3531961907069324, 0.9279819479140234, 0.7752976919572294, 0.8665226278427577, 0.9515211055933231, 0.7314191754306454, 0.890886918514299, 0.3235491032739525, 0.3719939405423586, 0.6323804178173072, 0.8398006965792015, 0.8239469134189235, 0.8592101816891015, 0.7615002907198236, 0.8688259750909261, 0.8718104001390852, 0.5838074755684882, 0.8756470416862959, 0.901850575196968, 0.9451930143658351, 0.6253812669856891, 0.5890764576710766, 0.4921052500998711, 0.4862070578416567, 0.9170647663398394, 0.7035583451969506, 0.8476385889092957, 0.5603058978573646, 0.5810606890504925, 0.9088604673919816, 0.8903252600075929, 0.944267921154058, 0.9435968591480925, 0.938237366988842, 0.9357286047893738, 0.7961386682142712, 0.7840233885688647, 0.2513590507613302, 0.7389284097502917, 0.9053472250810051, 0.44438282424164377, 0.862281110352348, 0.8021059248496223, 0.9152740930046814, 0.643737358401971, 0.8540304955499701, 0.8613418170006786, 0.6911084183178322, 0.8848367871057808, 0.8387883096682573, 0.5942651630821018, 0.65691393717736, 0.6369979527510315, 0.8280658524313272, 0.9640736168216585, 0.6546311715671466, 0.5599819536107853, 0.48348053317652906, 0.7668016587569692, 0.03620763244300767, 0.7364400865449663, 0.37408584674942635, 0.8767503774172, 0.8743962287172513, 0.8751970040938668, 0.8833495792027257, 0.7091886355621774, 0.87006937054451, 0.7904001815220257, 0.8761418339280951, 0.8306834851111597, 0.7531715889012326, 0.38181207472529843, 0.6490458991820136, 0.9138057013338913, 0.9046222904886461, 0.17956061692355052, 0.7506163079023257, 0.8963285795381793, 0.8848361664653354, 0.9283037217377402, 0.45996158699034445, 0.7290858434196763, 0.8319094967702583, 0.6578018675312727, 0.18727567457681707, 0.8673410249845035, 0.9453298670648187, 0.9446538464906173, 0.19605573045952288, 0.6723831041639817, 0.3438281302059518, 0.37858973820495484, 0.6953170483296187, 0.21463507152544156, 0.26963792069965237, 0.3280912492037974, 0.8399932187801539, 0.420387898633768, 0.36522500752858966, 0.5810560693343539, 0.9306346767722963, 0.7167716539092029, 0.656736106921484, 0.5549139996760648, 0.6909161521388689, 0.591904263202073, 0.884703171197362, 0.866402281883595, 0.7582770814524421, 0.8990773411030794, 0.1818065866116437, 0.6222165686186035, 0.17261914235374884, 0.8156064679757086, 0.4851213943917703, 0.8871292211128762, 0.8398494053952754, 0.703270618172154, 0.6305543892506115, 0.7494149477175548, 0.1532408287022325, 0.6159732902773407, 0.738220551127759, 0.8354520044441791, 0.8536870432671441, 0.5751476712690671, 0.9077719201719568, 0.7878515691455199, 0.6672663325862807, 0.45293736875445273, 0.17058553029544155, 0.747933377844996, 0.8400163125056676, 0.4516778718827729, 0.6082670858563528, 0.8401843469141149, 0.7636885291754726, 0.789170795337903, 0.8128612802083497, 0.7522530659814418, 0.8086757686066508, 0.8356255123032285, 0.9241779635105248, 0.9674588597049086, 0.9368885694202199, 0.4990764491242286, 0.876561204324957, 0.554264192243629, 0.5967716244634195, 0.9060244606340249, 0.8401608718856799, 0.7329750583133859, 0.8021769878309102, 0.9316817655017511, 0.45488322534173153, 0.798578398438993, 0.7425236774748816, 0.5742682328784404, 0.4937681935814938, 0.8972164286692267, 0.8914273370768748, 0.9377613518261881, 0.8862258850530264, 0.8591757581361523, 0.7410678096850266, 0.6822336012657398, 0.9201658505843877, 0.6982578893131915, 0.5746709232170782, 0.7626532952948841, 0.7137703530889916, 0.7520971196461234, 0.4473853625959922, 0.7957460056304991, 0.4833174871501707, 0.8758467705785958, 0.4689303842787964, 0.6133612564737879, 0.8568681391705205, 0.6835133967314007, 0.9732070839986944, 0.21435716257549006, 0.5761668962420043, 0.4055433603128916, 0.3743394998756179, 0.9118635774953143, 0.964551884718591, 0.9306459334511011, 0.8424802355113449, 0.7739144871152517, 0.6872688771534424, 0.8590561833388345, 0.6714384475466295, 0.6408669500407106, 0.5203550269219845, 0.2856853969697174, 0.857760555506807, 0.9307094503226838, 0.6787928880949093, 0.8308635255795866, 0.29271374211533296, 0.6769315553524353, 0.23831547366416572, 0.5895099457120908, 0.8994675076574448, 0.8893400405584444, 0.8456825404777587, 0.5399612081435882, 0.6188649121485582, 0.9281492942813848, 0.7611740601422801, 0.46550237374781617, 0.8896861436466836, 0.9038901015569306, 0.5044440900554997, 0.9215480939667524, 0.6930273792518707, 0.8723244804196287, 0.5624338775604165, 0.9226297661236537, 0.8469231754225917, 0.9430557295321259, 0.9097116306258912, 0.5988707702267543, 0.3813853072548755, 0.8843832309478876, 0.9006952500629406, 0.918975987201669, 0.18997930334445084, 0.8923106748541326, 0.8461388699436441, 0.5973439234355874, 0.9544642924744549, 0.91770416680597, 0.9177239854204658, 0.17584552180125673, 0.9240099144459667, 0.48524948024905407, 0.8889685222180134, 0.5785503824403398, 0.7511953459672914, 0.6887596776945688, 0.6717539058356753, 0.7168761391602206, 0.7134478068952186, 0.834626350903405, 0.5715867980362679, 0.6588392688727011, 0.9488572786900573, 0.8920529250761863, 0.8891353183282249, 0.707981940789761, 0.926348680038428, 0.631489487929038, 0.7443856388661001, 0.9260754381930228, 0.9544642924744549, 0.8497401318990601, 0.5604010177433062, 0.8036334301115304, 0.7898153537185114, 0.8491431337122072, 0.6570881560807702, 0.8389599143569951, 0.7944137576415592, 0.8132668978866627, 0.44714680104169846, 0.7978021044641371, 0.41921696608658454, 0.38876183891604754, 0.9248463736054193, 0.4277915265084825, 0.6345107008491314, 0.8008942533173764, 0.5087430598332189, 0.9414938992689892, 0.6922115882765215, 0.8296175750175913, 0.8593339228153332, 0.8975141534758351, 0.5977126281557783, 0.9279478536756302, 0.6485770817571253, 0.8905823996589662, 0.9332072841984264, 0.9432461110830079, 0.9410120781436498, 0.6339696776630096, 0.7120962557761497, 0.5841709037351369, 0.5928970840420333, 0.9006589732900512, 0.936371533648048, 0.6907852379101131, 0.7675780198071424, 0.9444587893431046, 0.4702336163336472, 0.8925536722101626, 0.8158978708906081, 0.822780392485108, 0.8037335327290217, 0.8382351003285965, 0.8941557358589171, 0.4796498334522667, 0.926348680038428, 0.6842118015950474, 0.6463580983468415, 0.8292048071278182, 0.5834426687867836, 0.8419845362148763, 0.2431563391580561, 0.7763142135369961, 0.9390550746437164, 0.7774903237071782, 0.8141232663130791, 0.9444089886680379, 0.430401459478284, 0.9192677156927759, 0.8427595869840984, 0.87120858451521, 0.5693182102579236, 0.820012080301976, 0.58719119911586, 0.42769376643096113, 0.3542595869275313, 0.89579938191327, 0.8743523014696554, 0.7820497043505815, 0.5279069501129625, 0.8869579700149332, 0.45488774279476296, 0.8514781135508903, 0.8278297091497892, 0.663749097381813, 0.5132851713944618, 0.4906566565015208, 0.6415219885510332, 0.6991293681294938, 0.8150539074042624, 0.5800669536763935, 0.9583771200922359, 0.7366090055976814, 0.5747817696023392, 0.5315376696882942, 0.8074446941396305, 0.9038901015569306, 0.9087015650331977, 0.6697291810323083, 0.5800669536763935, 0.8807270543114014, 0.5135845984304893, 0.9352791850238339, 0.36120709973337456, 0.6206709330576408, 0.906286252315459, 0.7937202818717513], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [192.0, 65.0, 151.0, 44.0, 77.0, 45.0, 149.0, 23.0, 148.0, 174.0, 110.0, 164.0, 165.0, 163.0, 79.0, 183.0, 144.0, 19.0, 139.0, 12.0, 187.0, 206.0, 12.0, 120.0, 63.0, 54.0, 120.0, 91.0, 214.0, 183.0, 20.0, 106.0, 159.0, 196.0, 192.0, 112.0, 147.0, 130.0, 10.0, 180.0, 94.0, 22.0, 100.0, 84.0, 84.0, 124.0, 105.0, 149.0, 87.0, 53.0, 33.0, 141.0, 168.0, 14.0, 173.0, 220.0, 169.0, 177.0, 69.0, 55.0, 245.0, 179.0, 16.0, 164.0, 113.0, 131.0, 172.0, 133.0, 36.0, 91.0, 183.0, 8.0, 194.0, 117.0, 115.0, 144.0, 233.0, 20.0, 92.0, 87.0, 106.0, 76.0, 243.0, 23.0, 138.0, 38.0, 201.0, 26.0, 72.0, 63.0, 8.0, 152.0, 111.0, 194.0, 195.0, 202.0, 159.0, 133.0, 179.0, 117.0, 195.0, 71.0, 111.0, 197.0, 120.0, 69.0, 115.0, 72.0, 115.0, 150.0, 47.0, 63.0, 15.0, 104.0, 51.0, 92.0, 178.0, 77.0, 84.0, 86.0, 166.0, 49.0, 150.0, 111.0, 204.0, 210.0, 198.0, 42.0, 86.0, 184.0, 33.0, 86.0, 156.0, 189.0, 139.0, 164.0, 60.0, 176.0, 140.0, 141.0, 116.0, 227.0, 75.0, 116.0, 177.0, 197.0, 161.0, 142.0, 48.0, 84.0, 156.0, 26.0, 143.0, 22.0, 104.0, 31.0, 98.0, 165.0, 73.0, 131.0, 101.0, 28.0, 49.0, 113.0, 12.0, 84.0, 179.0, 176.0, 187.0, 180.0, 171.0, 99.0, 121.0, 171.0, 95.0, 16.0, 35.0, 177.0, 55.0, 63.0, 189.0, 12.0, 114.0, 171.0, 179.0, 197.0, 187.0, 34.0, 157.0, 227.0, 115.0, 75.0, 206.0, 50.0, 200.0, 12.0, 151.0, 218.0, 210.0, 130.0, 198.0, 82.0, 82.0, 31.0, 132.0, 157.0, 131.0, 61.0, 13.0, 21.0, 87.0, 148.0, 160.0, 225.0, 173.0, 158.0, 192.0, 131.0, 220.0, 110.0, 24.0, 103.0, 204.0, 111.0, 115.0, 168.0, 93.0, 234.0, 87.0, 13.0, 117.0, 160.0, 103.0, 111.0, 106.0, 143.0, 207.0, 57.0, 210.0, 230.0, 38.0, 162.0, 136.0, 174.0, 103.0, 47.0, 142.0, 154.0, 164.0, 30.0, 155.0, 160.0, 159.0, 19.0, 176.0, 171.0, 90.0, 62.0, 133.0, 18.0, 169.0, 142.0, 173.0, 122.0, 178.0, 149.0, 128.0, 155.0, 58.0, 79.0, 212.0, 193.0, 167.0, 205.0, 186.0, 248.0, 124.0, 188.0, 82.0, 64.0, 14.0, 31.0, 188.0, 61.0, 117.0, 174.0, 123.0, 170.0, 73.0, 198.0, 97.0, 119.0, 307.5, 51.0, 68.0, 60.0, 106.0, 252.0, 177.0, 115.0, 78.0, 102.0, 96.0, 189.0, 72.0, 71.0, 184.0, 23.0, 18.0, 91.0, 150.0, 170.0, 31.0, 196.0, 133.0, 184.0, 282.0, 125.0, 223.0, 37.0, 20.0, 210.0, 60.0, 11.0, 168.0, 136.0, 71.0, 176.0, 65.0, 195.0, 167.0, 78.0, 164.0, 198.0, 131.0, 33.0, 240.0, 27.0, 95.0, 234.0, 87.0, 185.0, 120.0, 48.0, 188.0, 38.0, 195.0, 188.0, 62.0, 184.0, 145.0, 35.0, 197.0, 99.0, 104.0], \"xaxis\": \"x\", \"y\": [0.2802292104526322, 0.9455194119275858, 0.4978743212349556, 0.5289145624519528, 0.28439238707197784, 0.2033309570226689, 0.27345747478543325, 0.8322873304845451, 0.389055896812549, 0.3675472469853882, 0.5781933746273124, 0.7401955299744071, 0.44969671697605845, 0.4367887814338696, 0.31593955341667695, 0.3775624358859999, 0.19282181046294666, 0.048451763306065584, 0.6005928650583868, 0.032225376113695775, 0.427412413738938, 0.23973251442015217, 0.13890126550157303, 0.8613925272127, 0.329663916828638, 0.19359965390713213, 0.6827271716759634, 0.1960905505555538, 0.08135735686643118, 0.39737240301928484, 0.13902987396822816, 0.6514166433739288, 0.6994753721471061, 0.7140886736258081, 0.5021795028970708, 0.48743245558712556, 0.5731139673640956, 0.8820820642542792, 0.559972149724866, 0.5061565591493914, 0.5066810377847554, 0.833805652807593, 0.6979972163580744, 0.3177574231538272, 0.13068190592986567, 0.758876109553896, 0.5681062961269688, 0.715544821914063, 0.762062625203523, 0.4464438677531786, 0.20995974230910305, 0.5262622410710028, 0.39442669669188163, 0.2537324982988368, 0.6775437642744659, 0.23876321589577687, 0.6369158982934647, 0.38960060362966165, 0.6034323722874255, 0.7769991715799629, 0.15199748354041337, 0.5641412449951732, 0.7590466800561823, 0.5969347905931296, 0.1048362779837843, 0.7217824369593382, 0.2662339163773806, 0.16472378978351135, 0.37760124376932414, 0.7071736299639594, 0.3436862995931572, 0.8384434752264291, 0.3635333644877426, 0.7813188949129265, 0.7279369976219869, 0.5641098847382463, 0.3863964747623771, 0.9209913370067284, 0.1477144681640183, 0.8809374658555192, 0.6533168894759348, 0.8873477284758582, 0.3697306267878623, 0.28319023347825867, 0.5203701741750857, 0.5523747693308857, 0.6387521731780509, 0.3881380695009739, 0.8487896327149285, 0.4636606453307818, 0.8384434752264291, 0.558266603669778, 0.21657231888677728, 0.3635333644877426, 0.5512671313974766, 0.5051039398599867, 0.5827915753039158, 0.49441682850108926, 0.47309171914705017, 0.6262595591688196, 0.5508242483721094, 0.47332791509789995, 0.7117569366896692, 0.3933786516273859, 0.16465066549244003, 0.7490394132223248, 0.769261050002088, 0.7431932405995126, 0.3141000916210982, 0.723735045552473, 0.6484132891031948, 0.688519894019609, 0.40496704226994307, 0.5803736122960511, 0.6327801522745691, 0.45115706990411364, 0.37268733756108086, 0.9009693101135351, 0.06496389958099598, 0.44431713201158524, 0.39960831974332744, 0.8662156944598043, 0.31018081106061823, 0.5339551117365043, 0.33311273919547707, 0.400132762133902, 0.8528754522806217, 0.14419347879543085, 0.11672350429510901, 0.44556702529145975, 0.6160120899414699, 0.13766892845409207, 0.5517204028384314, 0.5232178919035022, 0.35483403305733974, 0.4900213704561591, 0.8854578072659228, 0.43084122675663034, 0.7601186327653665, 0.14072030431570776, 0.6186690618327106, 0.5245054232921349, 0.7326259458716644, 0.5690781983520095, 0.4018508815425063, 0.24877469563805235, 0.7952501197393639, 0.8766221356386195, 0.303451532996695, 0.5357745481647883, 0.7096524147827454, 0.20877177283968149, 0.8635610141758273, 0.46736762313881036, 0.6061151992073851, 0.113015272873705, 0.40446014603085867, 0.6332606063976143, 0.648705381890928, 0.42186952587750404, 0.8047913565308571, 0.3017058309841093, 0.38406990132164637, 0.33494193042999065, 0.19929939967121216, 0.8624919783238055, 0.528785836409086, 0.43084122675663034, 0.47042159929499583, 0.5061565591493914, 0.5759491569657543, 0.8468794444363914, 0.20342296359496542, 0.5170831534483544, 0.3666753044655067, 0.6131723001375537, 0.4410646109528086, 0.6903416342484309, 0.3866428492574258, 0.4636606453307818, 0.4525459302795702, 0.03199256040434073, 0.7029629492254846, 0.2433141614541866, 0.548755973819273, 0.3775060302547258, 0.06593060991448157, 0.8745624549148976, 0.22931948662359403, 0.27267688907931714, 0.589328430619086, 0.8007160756317941, 0.5525637789187225, 0.5008522318356121, 0.4556212410144909, 0.17391722008742402, 0.43574637053357784, 0.3237440077649342, 0.6071692164257629, 0.6925152430641841, 0.592675381607996, 0.43854150134957587, 0.43854150134957587, 0.42437112972565305, 0.8061118855433299, 0.35195592295594336, 0.7605370065149419, 0.38898578429124253, 0.67510953655807, 0.872979709380305, 0.710510994258769, 0.720290290780972, 0.4820787970895852, 0.42019280799979697, 0.4304380754474639, 0.25285023254778977, 0.3238056884730761, 0.39471961640683584, 0.09510031985475974, 0.367046376808582, 0.21500793651835448, 0.8705359023101334, 0.6100742529031461, 0.6226449432624995, 0.7279369976219869, 0.3643494054700089, 0.09992017521484964, 0.41475515148757036, 0.6462260464983366, 0.14102909592513518, 0.48949585696458414, 0.5239520436918008, 0.6084413884537807, 0.5655473856702703, 0.9517420512476797, 0.7489379515982664, 0.4647937384849751, 0.7915321263825208, 0.44112279258530757, 0.5734340256727429, 0.6604471727860799, 0.4845203185458914, 0.6968730453869196, 0.5315374962198609, 0.8685951485887234, 0.6242442748350044, 0.2912097196987059, 0.7725938221565348, 0.2067629769731588, 0.30221725334927335, 0.13129342562285412, 0.6467789443522378, 0.6994753721471061, 0.11825382206919556, 0.41022417118631593, 0.4882665226122541, 0.7732287086973071, 0.25374762405010176, 0.49441682850108926, 0.3723877205427743, 0.652330313245635, 0.43667799883041203, 0.5964718913578133, 0.55172276504346, 0.24113559934961917, 0.8243980268882987, 0.7263843594269437, 0.43535214809021755, 0.8721122798612579, 0.18723914490145582, 0.6486906676970999, 0.11576704656818047, 0.4328241622975616, 0.491481212420291, 0.5264345378086769, 0.33856526784971647, 0.2967410926251248, 0.581398831228375, 0.5973776665460488, 0.6195406102170065, 0.37782717658841725, 0.323061133240968, 0.17420808473594895, 0.19634770547538957, 0.46492234760650425, 0.49613167963272686, 0.5812209036149294, 0.6057291775435286, 0.63414717387345, 0.5702687187355167, 0.8604975146328253, 0.6309022132706124, 0.48732991249542923, 0.6887148870948692, 0.41581945293096145, 0.5706760596351739, 0.4831274653996314, 0.06684727567316755, 0.49090643211649887, 0.15191610726090596, 0.2711405311223577, 0.7653618545702112, 0.09266565137124261, 0.4554350627407873, 0.19698919164573708, 0.6930185080649685, 0.5227537922811563, 0.50434568709929, 0.7082092780767422, 0.46058046365566996, 0.6735723234187477, 0.4285936050615775, 0.323061133240968, 0.5168500865319015, 0.6161307914674419, 0.23456444218973552, 0.3192004782541023, 0.21968945907811915, 0.5028183230931117, 0.43371621376298963, 0.6744209213341115, 0.5940260419772637, 0.13783310426722128, 0.5136444387530009, 0.5508647999875032, 0.4955911012838212, 0.9814394195009358, 0.8260225289794664, 0.17965956338109995, 0.46844896472597397, 0.6048119589659149, 0.3289160319090978, 0.2454606394453749, 0.7497022835596558, 0.683485355417811, 0.20995974230910305, 0.23504578258460665, 0.37175956099497537, 0.4875530438829156, 0.24982584224249993, 0.6282829625348888, 0.4520795162158371, 0.8200372413039435, 0.12832513643528837, 0.5299630655130737, 0.29552777318700446, 0.24021937552346023, 0.5429028773737552, 0.6311869746243346, 0.4145977043912777, 0.39329840463575844, 0.39070335653410526, 0.4286990948130573, 0.846836560604146, 0.6880850122626078], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (curr)\", \"type\": \"scatter\", \"x\": [101.0, 194.0, 126.0, 68.0, 94.0, 99.0, 97.0, 124.0, 95.0, 163.0, 32.0, 191.0, 111.0, 119.0, 127.0, 118.0, 38.0, 61.0, 28.0, 162.0, 212.5, 193.0, 74.0, 147.0, 179.0, 99.0, 127.0, 134.0, 93.0, 148.0, 74.0, 136.0, 178.0, 99.0, 121.0, 129.0, 76.0, 150.0, 81.0, 31.0, 124.0, 85.0, 156.0, 238.0, 27.0, 45.0, 135.0, 86.0, 212.0, 195.0, 18.0, 122.0, 137.0, 59.0, 175.0, 145.0, 181.0, 63.0, 165.0, 64.0, 64.0, 150.0, 105.0, 85.0, 100.0, 127.0, 144.0, 155.0, 89.0, 153.0, 189.0, 100.0, 117.0, 114.0, 113.0, 145.0, 174.0, 161.0, 38.0, 25.0, 87.0, 144.0, 60.0, 162.0, 143.0, 26.0, 55.0, 96.0, 172.0, 132.0, 143.0, 108.0, 115.0, 107.0, 117.0, 97.0, 28.0, 294.0, 10.0, 24.0, 126.0, 101.0, 22.0, 121.0, 189.0, 131.0, 105.0, 109.0, 117.0, 107.0, 75.0, 176.0, 112.0, 76.0, 138.0, 35.0, 153.0, 152.0, 136.0, 59.0, 158.0, 121.0, 44.0, 81.0, 60.0, 16.0, 53.0, 94.0, 26.0, 84.0, 82.0, 38.0, 98.0, 253.0, 74.0, 213.0, 12.0, 60.0, 169.0, 118.0, 166.0, 58.0, 35.0, 153.0, 204.0, 99.0, 190.0, 47.0, 134.0, 116.0, 98.0, 93.0, 94.0, 103.0, 116.0, 164.0, 47.0, 28.0, 92.0, 192.0, 65.0, 28.0, 86.0, 199.0, 20.0, 80.0, 148.0, 29.0, 48.0, 123.0, 100.0, 107.0, 41.0, 9.0, 88.0, 213.0, 129.0, 216.0, 111.0, 43.0, 131.0, 124.0, 117.0, 80.0, 141.0, 35.0, 28.0, 72.0, 170.0, 36.0, 124.0, 149.0, 92.0, 118.0, 133.0, 109.0, 76.0, 89.0, 190.0, 133.0, 98.0, 129.0, 245.0, 84.0, 191.0, 130.0, 99.0, 76.0, 134.0, 183.0, 116.0, 125.0, 34.0, 94.0, 35.0, 124.0, 90.0, 143.0, 174.0, 105.0, 125.0, 244.0, 15.0, 209.0, 189.0, 212.0, 118.0, 161.0, 59.0, 172.0, 65.0, 97.0, 84.0, 104.0, 33.0, 170.0, 99.0, 90.0, 140.0, 150.0, 114.0, 118.0, 132.0, 104.0, 54.0, 19.0, 155.0, 193.0, 111.0, 31.0, 150.0, 143.0, 145.0, 107.0, 105.0, 95.0, 126.0, 73.0, 111.0, 153.0, 15.0, 168.0, 111.0, 181.0, 172.0, 139.0, 110.0, 136.0, 189.0, 135.0, 104.0, 117.0, 51.0, 49.0, 113.0, 39.0, 148.0, 109.0, 102.0, 51.0, 26.0, 122.0, 104.0, 120.0, 114.0, 19.0, 132.0, 73.0, 145.0, 135.0, 47.0, 12.0, 132.0, 87.0, 125.0, 139.0, 94.0, 143.0, 139.0, 97.0, 119.0, 109.0, 163.0, 134.0, 178.0, 44.0, 95.0, 143.0, 180.0, 90.0, 129.0, 72.0, 32.0, 123.0, 81.0, 152.0, 214.0, 126.0, 117.0, 173.0, 204.0, 134.0, 156.0, 134.0, 65.0, 151.0, 114.0, 44.0, 164.0, 125.0, 28.0, 156.0, 28.0, 201.0, 106.0, 116.0, 182.0, 225.0, 142.0, 39.0, 142.0, 98.0, 188.0, 55.0, 27.0, 113.0, 87.0, 140.0, 33.0, 85.0, 158.0, 95.0, 169.0, 103.0, 191.0, 151.0, 28.0, 113.0, 163.0, 26.0, 95.0, 135.0, 55.0, 171.0, 21.0, 206.0, 113.0, 168.0, 173.0, 161.0, 97.0, 227.0, 107.0, 81.0, 17.0, 17.0, 96.0, 118.0, 38.0, 111.0, 118.0, 125.0, 143.0, 189.0, 98.0, 166.0, 135.0, 68.0, 12.0, 131.0, 172.0, 174.0, 128.0, 194.0, 108.0, 35.0, 155.0, 26.0, 87.0, 93.0, 187.0, 150.0, 158.0, 114.0, 120.0, 169.0, 130.0, 109.0, 149.0, 80.0, 23.0, 125.0, 81.0, 55.0, 185.0, 53.0, 245.0, 17.0, 122.0, 130.0, 75.0, 90.0, 34.0, 48.0, 15.0, 118.0, 151.0, 150.0, 85.0, 140.0, 85.0, 155.0, 84.0, 109.0, 17.0, 38.0, 172.0, 178.0, 93.0, 171.0, 229.0, 27.0, 146.0, 104.0, 89.0, 15.0, 60.0, 112.0, 47.0, 48.0, 136.0, 89.0, 141.0, 9.0, 154.0, 159.0, 113.0, 88.0, 158.0, 29.0, 179.0, 92.0, 181.0, 173.0, 160.0, 107.0, 151.0, 79.0, 132.0, 37.0, 170.0, 163.0, 50.0, 135.0, 98.0, 77.0, 172.0, 102.0, 135.0, 123.0, 143.0, 134.0, 85.0, 21.0, 182.0, 132.0, 28.0, 101.0, 25.0, 44.0, 100.0, 129.5, 43.0, 47.0, 40.0, 14.0, 125.0, 46.0, 11.0, 49.0, 118.0, 139.0, 229.0, 114.0, 53.0, 113.0, 200.0, 133.0, 88.0, 128.0, 70.0, 80.0, 113.0, 73.0, 152.0, 104.0, 45.0, 19.0, 206.0, 41.0, 173.0, 14.0, 97.0, 180.0, 147.0, 149.0, 135.0, 116.0, 150.0, 164.5, 21.0, 128.0, 178.0, 101.0, 16.0, 180.0, 14.0, 132.0, 10.0, 189.0, 156.0, 166.0, 10.0, 153.0, 49.0, 99.0, 68.0, 16.0, 80.0, 229.0, 225.0, 104.0, 122.0, 10.0, 57.0, 150.0, 69.0, 76.0, 102.0, 129.0, 95.0, 116.0, 168.0, 19.0, 173.0, 189.0, 142.0, 177.0, 71.0, 140.0, 110.0, 184.0, 152.0, 164.0, 105.0, 117.0, 124.0, 91.0, 181.0, 85.0, 181.0, 168.0, 128.0, 89.0, 167.0, 155.0, 20.0, 212.0, 78.0, 25.0, 35.0, 130.0, 129.0, 122.0, 7.0, 69.0, 120.0, 140.0, 83.0, 136.0, 157.0, 169.0, 221.0, 190.0, 113.0, 91.0, 13.0, 104.0, 136.0, 167.0, 99.0, 103.0, 159.0, 108.0, 91.0, 136.0, 103.0, 213.0, 189.0, 169.0, 107.0, 91.0, 112.0, 82.0, 114.0, 72.0, 84.0, 159.0, 17.0, 128.0, 16.0, 43.0, 87.0, 136.0, 140.0, 144.0, 74.0, 86.0, 145.0, 153.0, 127.0, 228.0, 112.0, 157.0, 140.0, 192.0, 114.0, 111.0], \"xaxis\": \"x2\", \"y\": [0.33396714643252134, 0.5044440900554997, 0.8874896900044845, 0.4686759077780351, 0.23831547366416572, 0.571181601185031, 0.7785327680196316, 0.7290551099174598, 0.9581131370131553, 0.6801000322064107, 0.413367674560271, 0.6667140739211237, 0.9108229754863395, 0.9275086157065797, 0.9186958597750785, 0.7191871442695774, 0.8184457509658746, 0.8597940676688322, 0.7947045908306632, 0.8244149680645384, 0.42771531534877594, 0.5315376696882942, 0.7136291946100958, 0.5510697799054304, 0.6393262665313312, 0.9016582766249417, 0.8560880110261746, 0.8947361144883382, 0.9102326114023062, 0.840723585394272, 0.9264645566705582, 0.5105903360131552, 0.752648770317166, 0.5855954083225455, 0.8989214048388485, 0.5190750352404293, 0.9560713253502463, 0.7273157243430202, 0.9279672131348602, 0.640103147954212, 0.9158977434209615, 0.9035955072010529, 0.7140955379655831, 0.233508355491505, 0.7280578325574358, 0.8810827811902006, 0.3966129217085586, 0.15541760955422754, 0.5851621750323275, 0.9046111951917862, 0.4177213302712193, 0.7993763114768937, 0.6978409661933959, 0.6473373667551029, 0.770784382977056, 0.6500641275496193, 0.548949563093737, 0.9803199442553986, 0.6150775052067382, 0.391333092160729, 0.6966682278280982, 0.9426748402861506, 0.9170092977635526, 0.844625652038695, 0.5621782696252592, 0.8935808323282117, 0.6792214086077275, 0.6719996755401956, 0.5252591274442797, 0.7277045758687855, 0.4685752957996948, 0.8616549355667619, 0.347491516391863, 0.8224130863808733, 0.5340790568488665, 0.6711667658766297, 0.5277539611022016, 0.7226430813715845, 0.8140972745487615, 0.3280236940194876, 0.9543080196225542, 0.7752655593026647, 0.9223925066666061, 0.8588031784191832, 0.6345107008491314, 0.9393010047953068, 0.7897067132703484, 0.8608062836413887, 0.8367885032124018, 0.38555642305179116, 0.8611944449682004, 0.9172341012895443, 0.9206892306522243, 0.9500505925695213, 0.537798347971205, 0.9173482789702866, 0.44454351342386716, 0.8909704850569525, 0.7351932580165473, 0.6818328744935735, 0.7981559962965634, 0.7626532952948841, 0.807353254900461, 0.964411205143099, 0.4685752957996948, 0.6986526320119215, 0.1956969407137045, 0.9233481403380283, 0.8218375601976645, 0.8536269727611236, 0.5637680470866036, 0.42267134533232753, 0.93003590801509, 0.9364808605729722, 0.8816060831574614, 0.9663102962713933, 0.8345570787709832, 0.4997893986747249, 0.7921603237806832, 0.5586815647381762, 0.8622246464681924, 0.9828719612298703, 0.909295720392338, 0.9476267884443668, 0.5395521774612226, 0.901360886913609, 0.39410444510430487, 0.9262213132200262, 0.6627387433216217, 0.9629433821448677, 0.9614311452267452, 0.9802968012486629, 0.933760787013923, 0.34432718187202205, 0.63596173557573, 0.624364378916488, 0.7417789548241253, 0.7300918276682445, 0.6968315453320488, 0.7840233885688647, 0.8958841271622066, 0.5417426694559925, 0.7102579146160282, 0.6004345411549624, 0.515920701757342, 0.7587882454650442, 0.5029588531082266, 0.6887596776945688, 0.8642849605932809, 0.6469572639767995, 0.8103639651534781, 0.939764354405301, 0.694136577696587, 0.6593725303534554, 0.9646797005081557, 0.7979900311745153, 0.792123904710467, 0.8869579700149332, 0.7351250317969437, 0.5332560471205093, 0.9406873315653421, 0.39362685027924615, 0.9466602521798594, 0.8394325033041952, 0.6633442657978572, 0.8126408700417265, 0.7332457619716184, 0.08024070404520958, 0.8667774471450977, 0.6466814331404849, 0.912366876100516, 0.656670904734599, 0.8701678467707724, 0.8875925797813499, 0.9658725076002231, 0.7668332861852056, 0.8604440887473094, 0.934384507524058, 0.9605946056867319, 0.951253157591183, 0.5749289095213865, 0.6279243005170476, 0.7937202818717513, 0.7665301650725991, 0.700127941221274, 0.8531107444728586, 0.7947045908306632, 0.8870566665876504, 0.5476228787844645, 0.8410401833568673, 0.8736671065238262, 0.6519898659949606, 0.936943112068646, 0.9077719201719568, 0.8071889556778997, 0.8815615400732472, 0.8935313268029127, 0.8782891297971865, 0.5029588531082266, 0.5797201450332624, 0.9416775458320723, 0.5958140198486584, 0.2485157288688957, 0.932021424688801, 0.8531502837407814, 0.6344194678828672, 0.632587077283238, 0.9121448358615357, 0.5776545535910985, 0.9052765174806566, 0.8580390107418799, 0.8998644401112552, 0.6784536879503494, 0.9458342431661766, 0.21387363850783603, 0.9530348339880965, 0.7307391114165022, 0.7187682731289255, 0.6905635603269331, 0.9569274903702625, 0.9287384091375525, 0.3856984054091925, 0.504413920551941, 0.5389739198483336, 0.5921068831639978, 0.10702848140489757, 0.8772993497727819, 0.6361944011057532, 0.8952999713010865, 0.7069578609115064, 0.10632960186243966, 0.6465592619811017, 0.9116333268133815, 0.9210441535829985, 0.9483358221641291, 0.5800224234700003, 0.896951343689222, 0.8958659323404018, 0.8896861436466836, 0.7763142135369961, 0.778627444633172, 0.9274605647284293, 0.9167924025380936, 0.6422094408272838, 0.6363725079258666, 0.8694129796739031, 0.5693182102579236, 0.5315376696882942, 0.6814536952243052, 0.30089534057709466, 0.6689448970920832, 0.6419522618821227, 0.6500641275496193, 0.8221968069187356, 0.9285763346020383, 0.8495153837633861, 0.7135666997345446, 0.8850789772017983, 0.9128367188568884, 0.8709442503982084, 0.44714680104169846, 0.7147831401969469, 0.6814536952243052, 0.5823319261018008, 0.7718122970862826, 0.8925058444773368, 0.9249991097277733, 0.7849066379312727, 0.5120166815330335, 0.7863291630268572, 0.8171821177205619, 0.8878235148823457, 0.9813953955585096, 0.5009899161211654, 0.6787020040856314, 0.2747106808400709, 0.6998114428322438, 0.7191783799678735, 0.7566715075843347, 0.7741630673610131, 0.692871858980435, 0.8706970297938403, 0.9226518689226377, 0.619213859232465, 0.9620625840847012, 0.8161066853745392, 0.7984578805051198, 0.8987836568806694, 0.27900511725120763, 0.747868261422589, 0.8013372150606806, 0.4430395412241901, 0.8082746512504794, 0.9248395818955686, 0.8132668978866627, 0.7926355964369082, 0.7243101498981422, 0.8251498778038484, 0.865753667016409, 0.8784859927081519, 0.9613966942665844, 0.8380103992838959, 0.9376908870460701, 0.8505645904112248, 0.5317253080143199, 0.8756470416862959, 0.8823120896825394, 0.8920529250761863, 0.9565288857220365, 0.92576324319171, 0.8397457208604353, 0.8008835764985612, 0.7620555647282774, 0.6333567796033132, 0.8986985644274655, 0.8289197139212982, 0.38568054861828666, 0.4358764146033148, 0.7013568331933456, 0.5524769805317635, 0.8654015550049637, 0.9625385348003681, 0.4997035751430624, 0.5940434106189647, 0.29640429037896177, 0.9370396801623051, 0.7496358493500708, 0.8521916566704996, 0.7519935213994349, 0.8956127660014477, 0.7563308848917781, 0.5425355780301907, 0.1652985164032473, 0.5777375433929663, 0.5926841497777402, 0.5247451599628447, 0.6215406511606532, 0.646742228322253, 0.5236567091352762, 0.8105889943537302, 0.7614647275399787, 0.7272264480694343, 0.44438282424164377, 0.8051848688934031, 0.253979247575754, 0.8737269176380216, 0.7884186533408385, 0.5226162157005312, 0.7776146375974927, 0.8021344726910251, 0.6794204065079696, 0.8398669626756513, 0.3743394998756179, 0.6593725303534554, 0.41008410759983227, 0.8726624594592295, 0.31336232876890546, 0.6187135046228962, 0.9208146539756937, 0.8948907807194619, 0.9475948217130945, 0.7098971478357265, 0.41970311630379203, 0.5524505095188592, 0.6689295490636696, 0.39534528644804523, 0.6686700461744643, 0.6608417181144597, 0.6289006219381473, 0.8112353209803558, 0.9675531845963172, 0.3468688843876404, 0.8171815196180959, 0.9315945487332388, 0.7612383340144859, 0.43979370974717685, 0.9452166580978265, 0.810349906376065, 0.4979189466877109, 0.9054024939516333, 0.7506263221664519, 0.8595966107872783, 0.9041757536760852, 0.5120166815330335, 0.9246344940597735, 0.622364539475366, 0.7975959936185795, 0.9376528402833735, 0.8270495791839716, 0.7463426393970082, 0.8508295060861325, 0.5277539611022016, 0.7926521549058593, 0.8343380415579561, 0.7973631232158779, 0.5423298306356671, 0.6253812669856891, 0.9342151247863544, 0.9064095870896521, 0.8428584418618921, 0.5680191878381406, 0.8230633503438987, 0.857993972512287, 0.8312116035859974, 0.8886868130574391, 0.5695902702544526, 0.8750573328895943, 0.47134086624147714, 0.6082670858563528, 0.8571520978358925, 0.7006810412396262, 0.6001343818465046, 0.8680196363335714, 0.7833148206731655, 0.835330250744176, 0.6883000602161935, 0.4297997702781997, 0.7132181587745201, 0.941909753873568, 0.9298379484442667, 0.8950633078112005, 0.9652574497835966, 0.8593048115498744, 0.23022113319019433, 0.5548683876071567, 0.8789570823277312, 0.7176343272433334, 0.7135972690872326, 0.900955402304434, 0.89110615578316, 0.8021344726910251, 0.36734125225010755, 0.9233813125795639, 0.9269988231022361, 0.6021478506882372, 0.27064660283581765, 0.7595966254948197, 0.5317253080143199, 0.9626288904553877, 0.518871521713375, 0.4244151934213653, 0.8784852709235653, 0.667697582798242, 0.6791650855490978, 0.8659372985570389, 0.5217980090164113, 0.9757802673562255, 0.20769640873195563, 0.6900575067285889, 0.15051833553221247, 0.8476988333501053, 0.12043274000614122, 0.6546311715671466, 0.412102187638673, 0.6339696776630096, 0.6925917751558638, 0.8074446941396305, 0.8417042066658985, 0.4702054036006336, 0.8107456318417504, 0.934253622333564, 0.9671353887875448, 0.3776875782453083, 0.5133306968464912, 0.8279918435672958, 0.7295730380004212, 0.8398957027397556, 0.7470826509089123, 0.7722124156410631, 0.3944809481034696, 0.5801047158883857, 0.7134138458261836, 0.8265590446981121, 0.5836238058504062, 0.7538957359152121, 0.9708936701567454, 0.41507295289487073, 0.9039211350062085, 0.5109703825452502, 0.8880660412534, 0.6332514250278477, 0.703270618172154, 0.863031725372896, 0.9601349291832292, 0.5845797646527732, 0.8357575010967041, 0.9584406458449958, 0.8733333206292072, 0.4740801794177068, 0.5787650908025566, 0.38525623454815555, 0.5715075300165849, 0.951253157591183, 0.831291834366621, 0.6482062646591596, 0.5447536045265621, 0.8456825404777587, 0.5358725178581014, 0.8893400405584444, 0.5955893395860203, 0.9408369636189147, 0.7580589814818564, 0.4244151934213653, 0.7636885291754726, 0.9532052815091139, 0.6686700461744643, 0.39683939049776734, 0.8309978518015588, 0.06774730328187532, 0.8934061610794648, 0.9459413258233057, 0.8507977517004935, 0.9694554821790147, 0.8640493534313302, 0.8409166048571896, 0.9059760843724536, 0.7278052027863667, 0.8952246802917138, 0.39534528644804523, 0.9558702864115934, 0.9178754126151818, 0.7504628435478695, 0.7568870052952757, 0.32046258648166903, 0.9712495894387816, 0.7125870341029702, 0.8286889773580812, 0.929575727770858, 0.8422483936479932, 0.60065365322741, 0.5775074082600717, 0.7505976846167132, 0.5317253080143199, 0.9590110623565244, 0.9651712957082627, 0.7333643603414158, 0.7757825668725274, 0.8928390517037824, 0.2578168736401774, 0.5355488836719776, 0.8408692583280314, 0.7849780542174357, 0.8711681462620556, 0.8447990405440073, 0.9571933326515756, 0.9307123551507692, 0.6421242495412457, 0.9239207054420927, 0.9336219461922934, 0.4244151934213653, 0.5673643045526261, 0.8301442064454496, 0.528471943574542, 0.8835542071774324, 0.8820947700128993, 0.4561713647735051, 0.584381944856391, 0.9493936477483658, 0.7816316980556022, 0.7770145472448273, 0.8495153837633861, 0.8318035560268552, 0.5220388622338656, 0.8589980209217414, 0.21216021099657945, 0.8782303617207965, 0.901850575196968, 0.7683760396387002, 0.9559989503713009, 0.938411491366706, 0.7225398931917507, 0.5918361617892179, 0.8596378534897678, 0.8816239240572568, 0.9296844522785247, 0.8299758417251202, 0.7538846798551382, 0.931253582726863, 0.6902425303942638, 0.9299571155275668, 0.35461708236434614, 0.6119587629530028, 0.8979450471026776, 0.8782891297971865, 0.6144930729026484, 0.5601837238662909, 0.4230258756549153, 0.5115702372514986, 0.6133200318312215, 0.8287048127179734, 0.42887934024879554, 0.5543929044930882, 0.5414149972460248, 0.7453725251924848, 0.6522898344923613, 0.6445138145159856, 0.9212190995841192, 0.6991293681294938, 0.9188224881967051, 0.9444881948020799, 0.8399825546316605, 0.6440269003431431, 0.45260210695563535, 0.6678228102737954, 0.8535669746933884, 0.23469888428232324, 0.7581156815660375, 0.8329520097124233, 0.5886389680190937, 0.4250130050586104, 0.290761161529129, 0.9065968169685268, 0.39757013049667705, 0.9584529405260903, 0.24804178200132845, 0.8400605958344816, 0.9562762484868867, 0.5923100188758571, 0.5355488836719776, 0.6866862751474886, 0.753715093249364, 0.9302702282582556, 0.8405005145861136, 0.7758456574858743, 0.8270123797965384, 0.9270997487744173, 0.8779999285967196, 0.6350604679157676, 0.9057987369792326, 0.9732730617650076, 0.28007269673131574, 0.5393237551960537, 0.9509318156255189, 0.8055358405733448, 0.8512314640165554, 0.6752183046546253, 0.9766791413071304, 0.26893819095773785, 0.5105552073939665, 0.7964242570425004, 0.9159462749375985, 0.46312559485344046, 0.7889853219989779, 0.5331772070153998, 0.6250130361556073, 0.5340700079782073, 0.8981158701031157, 0.8424802355113449], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [106.0, 196.0, 164.0, 47.0, 156.0, 167.0, 131.0, 14.0, 21.0, 25.0, 111.0, 85.0, 191.0, 207.0, 181.0, 133.0, 143.0, 42.0, 125.0, 131.0, 115.0, 219.0, 185.0, 225.0, 101.0, 110.0, 72.0, 174.0, 66.0, 163.0, 159.0, 166.0, 24.0, 73.0, 164.0, 135.0, 152.0, 39.0, 127.0, 128.0, 101.0, 44.0, 150.0, 171.0, 67.0, 177.0, 112.0, 38.0, 174.0, 40.0, 176.0, 139.0, 91.0, 33.0, 26.0, 49.0, 38.0, 23.0, 145.0, 201.0, 23.0, 216.0, 186.0, 26.0, 91.0, 11.0, 45.0, 34.0, 23.0, 42.0, 16.0, 182.0, 168.0, 23.0, 135.0, 111.0, 255.0, 61.0, 98.0, 84.0, 126.0, 21.0, 187.0, 143.0, 169.0, 59.0, 171.0, 184.0, 174.0, 102.0, 210.0, 134.0, 16.0, 213.0, 54.0, 9.0, 131.0, 148.0, 142.0, 216.0, 88.0, 167.0, 133.0, 38.0, 200.0, 9.0, 90.0, 26.0, 119.0, 197.0, 59.0, 148.0, 30.0, 189.0, 53.0, 166.0, 146.0, 144.0, 196.0, 44.0, 179.0, 132.0, 161.0, 102.0, 20.0, 94.0, 89.0, 123.0, 20.0, 201.0, 55.0, 227.0, 213.0, 56.0, 68.0, 178.0, 121.0, 13.0, 94.0, 126.0, 117.0, 169.0, 95.0, 77.0, 68.0, 149.0, 138.0, 12.0, 140.0, 166.0, 114.0, 212.0, 129.0, 176.0, 145.0, 117.0, 135.0, 183.0, 131.0, 213.0, 55.0, 173.0, 128.0, 116.0, 29.0, 90.0, 56.0, 92.0, 140.0, 150.0, 165.0, 114.0, 86.0, 178.0, 102.0, 107.0, 119.0, 220.0, 219.0, 158.0, 122.0, 157.0, 42.0, 84.0, 162.0, 161.0, 150.0, 116.0, 142.0, 149.0, 86.0, 102.0, 196.0, 83.0, 189.0, 35.0, 89.0, 142.0, 156.0, 97.0, 11.0, 201.0, 162.0, 198.0, 89.0, 183.0, 173.0, 15.0, 138.0, 160.0, 146.0, 106.0, 34.0, 106.0, 222.0, 80.0, 169.0, 172.0, 99.0, 60.0, 142.0, 202.0, 126.0, 216.0, 154.0, 119.0, 43.0, 199.0, 167.0, 143.0, 161.0, 129.0, 138.0, 145.0, 63.0, 167.0, 131.0, 129.0, 213.0, 101.0, 210.0, 31.0, 138.0, 162.0, 117.0, 190.0, 75.0, 105.0, 169.0, 70.0, 42.0, 186.0, 111.0, 153.0, 111.0, 133.0, 162.0, 238.5, 155.0, 38.0, 37.0, 101.0, 168.0, 168.0, 71.0, 186.0, 77.0, 113.0, 117.0, 164.0, 98.0, 28.0, 187.0, 148.0, 107.0, 108.0, 210.0, 72.0, 82.0, 136.0, 87.0, 161.0, 105.0, 197.0, 145.0, 148.0, 109.0, 126.0, 48.0, 66.0, 191.0, 147.0, 151.0, 85.0, 137.0, 31.0, 98.0, 192.0, 167.0, 22.0, 132.0, 47.0, 176.0, 226.0, 210.0, 131.0, 21.0, 105.0, 177.0, 181.0, 58.0, 191.0, 69.0, 145.0, 175.0, 162.0, 157.0, 197.0, 138.0, 80.0, 25.0, 20.0, 124.0, 164.0, 14.0, 151.0, 161.0, 6.0, 200.0, 168.0, 10.0, 166.0, 85.0, 148.0, 28.0, 85.0, 127.0, 133.0, 138.0, 104.0, 180.0, 121.0, 61.0, 63.0, 16.0, 49.0, 122.0, 106.0, 138.0, 112.0, 92.0, 128.0], \"xaxis\": \"x2\", \"y\": [0.8142007211296887, 0.07257977436397642, 0.7430932382113554, 0.8214862427787604, 0.5698848321031316, 0.6048119589659149, 0.6466669219762841, 0.14510080060429495, 0.2250304680670007, 0.28492472637839966, 0.42061632734231896, 0.8281252124183194, 0.49622399336621903, 0.3482895521074759, 0.4678833354511545, 0.5708968386647719, 0.37048677721847617, 0.553632248395139, 0.8702137350251022, 0.42186952587750404, 0.8696774950675754, 0.5410576963494411, 0.3971326977900686, 0.3275001196198921, 0.9448289227093116, 0.7109941475090589, 0.41925580570138304, 0.3675472469853882, 0.6721911818800557, 0.5562207270314473, 0.5262426608517637, 0.3244609607385458, 0.15056615442564347, 0.15676979724311627, 0.6037730696030339, 0.6342511279653397, 0.021947035536558718, 0.32429164429335744, 0.5678746850743716, 0.3571680467137555, 0.7755534309390314, 0.3240287891037917, 0.699424662214302, 0.5151532452376618, 0.7564675819717819, 0.38343591026479057, 0.19811005648518398, 0.3168419703358067, 0.5315947262677626, 0.9269044449273315, 0.8260225289794664, 0.451791899378283, 0.830516920403184, 0.47128602930186, 0.19027823806377472, 0.5181346713949518, 0.29552777318700446, 0.45414400334446664, 0.39329840463575844, 0.42327932510626076, 0.45838907164509224, 0.2233864252642039, 0.3628419195926303, 0.6709353200988277, 0.46058046365566996, 0.25551237833043455, 0.7234147543269824, 0.1481282262733752, 0.314935793994079, 0.20050531530561894, 0.37453315488553635, 0.701015529968035, 0.6343341418527783, 0.1739320900588749, 0.734996253073231, 0.8172229478314255, 0.3598554146739685, 0.7121055211356295, 0.2620604909731644, 0.3421138035730516, 0.6951268813066005, 0.35208221297891723, 0.452099210446082, 0.18907620085798427, 0.5444201651108793, 0.6484058972837882, 0.3258186925596978, 0.5963383680780668, 0.6202666247822538, 0.576738593946626, 0.5054992484109841, 0.2972245631729925, 0.6844333356791464, 0.42629475072919953, 0.4405153833121037, 0.01207867704715336, 0.7609288944606691, 0.23951123982998349, 0.09310514674080905, 0.5084920166510624, 0.33067609257366243, 0.36481899584296196, 0.5708968386647719, 0.3194802059637459, 0.14207297841267416, 0.5776897120055972, 0.2026163425795633, 0.37909000048748537, 0.38206764842015895, 0.41324683104354176, 0.17826143731067332, 0.42339414872454434, 0.39148091864802853, 0.3511350413575442, 0.8053393751847749, 0.5937005322868365, 0.6849942580153355, 0.38930033076762494, 0.5168500865319015, 0.5699073288866824, 0.5376087249833421, 0.8185832461647057, 0.25950508036415604, 0.20394483716883388, 0.3303044530853749, 0.2528102968078532, 0.8477719856767125, 0.5217124250004609, 0.3303044530853749, 0.5382885532339231, 0.9625763866028243, 0.6536174904341296, 0.42629475072919953, 0.6458781618432388, 0.46574001023909845, 0.37268733756108086, 0.8180085473348132, 0.35493594975273335, 0.2423640089427935, 0.3636330633241046, 0.6421622311157122, 0.5444201651108793, 0.7396308412796291, 0.9036153464846048, 0.21101569987323432, 0.6004024464464508, 0.7595861882737439, 0.486549602332862, 0.2379839758891197, 0.5147825233229498, 0.2065932277190248, 0.4342628292980428, 0.5940848250235929, 0.4857193175270624, 0.5332610244722983, 0.5402196969638672, 0.8578846895389459, 0.5290225674595067, 0.6074669506688956, 0.1847839155105034, 0.3581391437324269, 0.4304380754474639, 0.8410120374942113, 0.5810086483513661, 0.19026233744636453, 0.7223494520380469, 0.8589928738613049, 0.8374625942163022, 0.781203852328267, 0.73983195178881, 0.41156537259256004, 0.7482873396984137, 0.44431713201158524, 0.7113673874393347, 0.49869552495399233, 0.7627102864663872, 0.37193390769028617, 0.37187810520956766, 0.3773291605703562, 0.8719651627687759, 0.6218762459828849, 0.3781393537983126, 0.553632248395139, 0.47624084907999176, 0.774399353278846, 0.5840424935194366, 0.5601025471409736, 0.6186690618327106, 0.620611700356168, 0.5755798886129706, 0.15047650536569443, 0.5530049338021776, 0.6597439619439023, 0.8300222117931148, 0.3490158529243493, 0.4410646109528086, 0.5067909967309752, 0.5851482063434866, 0.7149827463187939, 0.4849259975950144, 0.2094210588097294, 0.33399024531412796, 0.4083143545243069, 0.7497022835596558, 0.7817929239213606, 0.7637421953724776, 0.3825655414920891, 0.6611482494098961, 0.19022241257108333, 0.44972084577511023, 0.5476732603321269, 0.4831274653996314, 0.5077048340566679, 0.7289504589448288, 0.4379810490617926, 0.8017221455714771, 0.6434673631716396, 0.5059779734745421, 0.6065367192264559, 0.650368705032214, 0.34567471266024347, 0.39561589000187136, 0.3427787545601037, 0.4676404271158623, 0.5332283386400669, 0.4519108142444285, 0.40662831629925006, 0.42305576187259053, 0.22032895172816622, 0.5278715769330472, 0.43679486629948455, 0.743933429392776, 0.5269515041023835, 0.5008800654866953, 0.214168174561682, 0.44879088851457377, 0.683485355417811, 0.807753104897186, 0.42629475072919953, 0.8502951424821861, 0.17421175568219957, 0.25491371883486935, 0.7595861882737439, 0.6571724132942184, 0.7813188949129265, 0.5626906653340306, 0.8674288259883418, 0.6600514650598344, 0.4827749661719035, 0.5456147119159479, 0.39827550056677263, 0.27323823737433794, 0.695896529362927, 0.5048820477254727, 0.5422349097465021, 0.5610936746718964, 0.6571724132942184, 0.3088751107498249, 0.45428761266464013, 0.6604471727860799, 0.43371621376298963, 0.6171893197168647, 0.8100511550343341, 0.8100511550343341, 0.605832578461134, 0.5526475584669951, 0.4275055171336787, 0.8734720021260204, 0.8508295378350301, 0.5807723706867254, 0.8272749548927728, 0.2670652478909882, 0.7020144194675465, 0.4615566916191992, 0.7055847950248242, 0.43389869234556755, 0.6071692164257629, 0.3496825637352313, 0.23676491619791426, 0.7057755976874825, 0.15539001443149586, 0.6187538615870153, 0.8735882828904331, 0.30049486749739024, 0.23191705420611952, 0.8913917397916864, 0.4977157214618499, 0.16961113509580228, 0.8485494795219795, 0.4760032757956232, 0.5053843099270294, 0.2676015269871764, 0.3627664421236291, 0.15146266807038725, 0.7898179638281774, 0.6145296307645981, 0.3790380236797623, 0.3003532640340299, 0.6086112016774773, 0.39906793889171593, 0.8185832461647057, 0.6715802865662828, 0.8260225289794664, 0.6056902064850618, 0.400132762133902, 0.39471961640683584, 0.6449859309106076, 0.5637152910565628, 0.39949420960438964, 0.5490401551410112, 0.4398875418860128, 0.30916577334906253, 0.7093303227687476, 0.4562508424819209, 0.40444044759428516, 0.5773483646962835, 0.447777692034652, 0.4961542215384683, 0.32474312180562226, 0.21192693199409943, 0.9056903490933487, 0.5013816399998683, 0.758876109553896, 0.6364928148646596, 0.2952804752502578, 0.4748951900520853, 0.43679486629948455, 0.5479962315186364, 0.4728142838839701, 0.6343341418527783, 0.12248807650217919, 0.5052525886146573, 0.8281252124183194, 0.8930081609652758, 0.36283726088930296, 0.8098196742550625, 0.656477404357746, 0.193885049884708, 0.5269515041023835, 0.49858469647139786, 0.32780472036158087, 0.24927512797396847, 0.6148718578314069, 0.10691527318901187, 0.136775438340409, 0.8489192718114075, 0.2600203086082801, 0.8142007211296887, 0.5269515041023835, 0.7966615933629455, 0.5633234794197017, 0.767479452333631], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"total.sulfur.dioxide\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"total.sulfur.dioxide\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}, \"total.sulfur.dioxide_bad\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (ref)\", \"type\": \"scatter\", \"x\": [192.0, 65.0, 151.0, 44.0, 77.0, 45.0, 149.0, 23.0, 148.0, 174.0, 110.0, 164.0, 165.0, 163.0, 79.0, 183.0, 144.0, 19.0, 139.0, 12.0, 187.0, 206.0, 12.0, 120.0, 63.0, 54.0, 120.0, 91.0, 214.0, 183.0, 20.0, 106.0, 159.0, 196.0, 192.0, 112.0, 147.0, 130.0, 10.0, 180.0, 94.0, 22.0, 100.0, 84.0, 84.0, 124.0, 105.0, 149.0, 87.0, 53.0, 33.0, 141.0, 168.0, 14.0, 173.0, 220.0, 169.0, 177.0, 69.0, 55.0, 245.0, 179.0, 16.0, 164.0, 113.0, 131.0, 172.0, 133.0, 36.0, 91.0, 183.0, 8.0, 194.0, 117.0, 115.0, 144.0, 233.0, 20.0, 92.0, 87.0, 106.0, 76.0, 243.0, 23.0, 138.0, 38.0, 201.0, 26.0, 72.0, 63.0, 8.0, 152.0, 111.0, 194.0, 195.0, 202.0, 159.0, 133.0, 179.0, 117.0, 195.0, 71.0, 111.0, 197.0, 120.0, 69.0, 115.0, 72.0, 115.0, 150.0, 47.0, 63.0, 15.0, 104.0, 51.0, 92.0, 178.0, 77.0, 84.0, 86.0, 166.0, 49.0, 150.0, 111.0, 204.0, 210.0, 198.0, 42.0, 86.0, 184.0, 33.0, 86.0, 156.0, 189.0, 139.0, 164.0, 60.0, 176.0, 140.0, 141.0, 116.0, 227.0, 75.0, 116.0, 177.0, 197.0, 161.0, 142.0, 48.0, 84.0, 156.0, 26.0, 143.0, 22.0, 104.0, 31.0, 98.0, 165.0, 73.0, 131.0, 101.0, 28.0, 49.0, 113.0, 12.0, 84.0, 179.0, 176.0, 187.0, 180.0, 171.0, 99.0, 121.0, 171.0, 95.0, 16.0, 35.0, 177.0, 55.0, 63.0, 189.0, 12.0, 114.0, 171.0, 179.0, 197.0, 187.0, 34.0, 157.0, 227.0, 115.0, 75.0, 206.0, 50.0, 200.0, 12.0, 151.0, 218.0, 210.0, 130.0, 198.0, 82.0, 82.0, 31.0, 132.0, 157.0, 131.0, 61.0, 13.0, 21.0, 87.0, 148.0, 160.0, 225.0, 173.0, 158.0, 192.0, 131.0, 220.0, 110.0, 24.0, 103.0, 204.0, 111.0, 115.0, 168.0, 93.0, 234.0, 87.0, 13.0, 117.0, 160.0, 103.0, 111.0, 106.0, 143.0, 207.0, 57.0, 210.0, 230.0, 38.0, 162.0, 136.0, 174.0, 103.0, 47.0, 142.0, 154.0, 164.0, 30.0, 155.0, 160.0, 159.0, 19.0, 176.0, 171.0, 90.0, 62.0, 133.0, 18.0, 169.0, 142.0, 173.0, 122.0, 178.0, 149.0, 128.0, 155.0, 58.0, 79.0, 212.0, 193.0, 167.0, 205.0, 186.0, 248.0, 124.0, 188.0, 82.0, 64.0, 14.0, 31.0, 188.0, 61.0, 117.0, 174.0, 123.0, 170.0, 73.0, 198.0, 97.0, 119.0, 307.5, 51.0, 68.0, 60.0, 106.0, 252.0, 177.0, 115.0, 78.0, 102.0, 96.0, 189.0, 72.0, 71.0, 184.0, 23.0, 18.0, 91.0, 150.0, 170.0, 31.0, 196.0, 133.0, 184.0, 282.0, 125.0, 223.0, 37.0, 20.0, 210.0, 60.0, 11.0, 168.0, 136.0, 71.0, 176.0, 65.0, 195.0, 167.0, 78.0, 164.0, 198.0, 131.0, 33.0, 240.0, 27.0, 95.0, 234.0, 87.0, 185.0, 120.0, 48.0, 188.0, 38.0, 195.0, 188.0, 62.0, 184.0, 145.0, 35.0, 197.0, 99.0, 104.0], \"xaxis\": \"x\", \"y\": [0.7197707895473677, 0.05448058807241418, 0.5021256787650443, 0.4710854375480472, 0.7156076129280222, 0.7966690429773311, 0.7265425252145667, 0.16771266951545494, 0.610944103187451, 0.6324527530146118, 0.42180662537268765, 0.2598044700255929, 0.5503032830239416, 0.5632112185661304, 0.6840604465833231, 0.6224375641140001, 0.8071781895370533, 0.9515482366939344, 0.3994071349416132, 0.9677746238863042, 0.572587586261062, 0.7602674855798478, 0.861098734498427, 0.1386074727873, 0.6703360831713621, 0.8064003460928679, 0.3172728283240366, 0.8039094494444462, 0.9186426431335688, 0.6026275969807151, 0.8609701260317718, 0.3485833566260712, 0.3005246278528939, 0.2859113263741919, 0.4978204971029292, 0.5125675444128744, 0.4268860326359044, 0.11791793574572085, 0.440027850275134, 0.4938434408506086, 0.4933189622152446, 0.166194347192407, 0.30200278364192557, 0.6822425768461728, 0.8693180940701344, 0.24112389044610405, 0.43189370387303117, 0.284455178085937, 0.23793737479647703, 0.5535561322468214, 0.7900402576908969, 0.47373775892899717, 0.6055733033081183, 0.7462675017011632, 0.32245623572553406, 0.7612367841042231, 0.36308410170653527, 0.6103993963703384, 0.3965676277125745, 0.2230008284200371, 0.8480025164595866, 0.43585875500482685, 0.24095331994381775, 0.4030652094068704, 0.8951637220162157, 0.2782175630406618, 0.7337660836226194, 0.8352762102164887, 0.6223987562306759, 0.2928263700360406, 0.6563137004068428, 0.16155652477357085, 0.6364666355122575, 0.2186811050870735, 0.27206300237801306, 0.4358901152617537, 0.6136035252376228, 0.07900866299327158, 0.8522855318359817, 0.11906253414448076, 0.3466831105240652, 0.11265227152414181, 0.6302693732121377, 0.7168097665217413, 0.4796298258249143, 0.4476252306691143, 0.3612478268219491, 0.611861930499026, 0.15121036728507153, 0.5363393546692182, 0.16155652477357085, 0.441733396330222, 0.7834276811132227, 0.6364666355122575, 0.44873286860252337, 0.4948960601400133, 0.4172084246960842, 0.5055831714989107, 0.5269082808529498, 0.3737404408311804, 0.4491757516278906, 0.5266720849021, 0.2882430633103308, 0.6066213483726142, 0.83534933450756, 0.2509605867776752, 0.230738949997912, 0.25680675940048736, 0.6858999083789018, 0.27626495444752697, 0.35158671089680515, 0.311480105980391, 0.5950329577300569, 0.4196263877039489, 0.3672198477254309, 0.5488429300958864, 0.6273126624389191, 0.0990306898864649, 0.935036100419004, 0.5556828679884147, 0.6003916802566726, 0.1337843055401957, 0.6898191889393818, 0.46604488826349566, 0.6668872608045229, 0.5998672378660981, 0.14712454771937833, 0.8558065212045691, 0.883276495704891, 0.5544329747085402, 0.38398791005853006, 0.8623310715459079, 0.4482795971615686, 0.4767821080964978, 0.6451659669426603, 0.5099786295438409, 0.11454219273407718, 0.5691587732433696, 0.2398813672346335, 0.8592796956842923, 0.38133093816728936, 0.4754945767078651, 0.2673740541283356, 0.43092180164799054, 0.5981491184574936, 0.7512253043619477, 0.20474988026063612, 0.12337786436138054, 0.6965484670033051, 0.4642254518352117, 0.29034758521725457, 0.7912282271603185, 0.1364389858241727, 0.5326323768611896, 0.3938848007926149, 0.886984727126295, 0.5955398539691413, 0.3667393936023857, 0.35129461810907203, 0.578130474122496, 0.1952086434691429, 0.6982941690158907, 0.6159300986783536, 0.6650580695700093, 0.8007006003287879, 0.13750802167619447, 0.47121416359091395, 0.5691587732433696, 0.5295784007050042, 0.4938434408506086, 0.4240508430342457, 0.1531205555636086, 0.7965770364050346, 0.4829168465516456, 0.6333246955344933, 0.38682769986244625, 0.5589353890471914, 0.30965836575156913, 0.6133571507425741, 0.5363393546692182, 0.5474540697204298, 0.9680074395956593, 0.29703705077451537, 0.7566858385458134, 0.451244026180727, 0.6224939697452743, 0.9340693900855184, 0.1254375450851024, 0.770680513376406, 0.7273231109206828, 0.410671569380914, 0.19928392436820586, 0.44743622108127745, 0.4991477681643879, 0.5443787589855091, 0.826082779912576, 0.5642536294664222, 0.6762559922350657, 0.39283078357423706, 0.3074847569358159, 0.40732461839200396, 0.5614584986504241, 0.5614584986504241, 0.575628870274347, 0.1938881144566701, 0.6480440770440566, 0.23946299348505806, 0.6110142157087575, 0.32489046344192996, 0.127020290619695, 0.28948900574123104, 0.27970970921902805, 0.5179212029104148, 0.579807192000203, 0.5695619245525361, 0.7471497674522103, 0.6761943115269239, 0.6052803835931642, 0.9048996801452402, 0.632953623191418, 0.7849920634816455, 0.12946409768986655, 0.3899257470968539, 0.37735505673750047, 0.27206300237801306, 0.6356505945299911, 0.9000798247851504, 0.5852448485124296, 0.3537739535016634, 0.8589709040748648, 0.5105041430354158, 0.4760479563081992, 0.3915586115462193, 0.4344526143297297, 0.04825794875232026, 0.25106204840173363, 0.5352062615150248, 0.2084678736174792, 0.5588772074146924, 0.42656597432725707, 0.3395528272139201, 0.5154796814541086, 0.30312695461308037, 0.4684625037801391, 0.13140485141127656, 0.37575572516499556, 0.7087902803012941, 0.22740617784346517, 0.7932370230268412, 0.6977827466507267, 0.8687065743771458, 0.3532210556477622, 0.3005246278528939, 0.8817461779308045, 0.5897758288136841, 0.5117334773877459, 0.2267712913026929, 0.7462523759498982, 0.5055831714989107, 0.6276122794572256, 0.34766968675436505, 0.563322001169588, 0.4035281086421867, 0.44827723495654004, 0.7588644006503809, 0.17560197311170134, 0.2736156405730563, 0.5646478519097824, 0.12788772013874206, 0.8127608550985441, 0.35130933230290007, 0.8842329534318195, 0.5671758377024384, 0.508518787579709, 0.4735654621913231, 0.6614347321502836, 0.7032589073748752, 0.418601168771625, 0.40262233345395115, 0.38045938978299354, 0.6221728234115828, 0.6769388667590319, 0.825791915264051, 0.8036522945246104, 0.5350776523934957, 0.5038683203672731, 0.4187790963850706, 0.3942708224564714, 0.36585282612655, 0.42973128126448334, 0.1395024853671747, 0.36909778672938764, 0.5126700875045708, 0.31128511290513083, 0.5841805470690385, 0.42932394036482613, 0.5168725346003686, 0.9331527243268325, 0.5090935678835011, 0.848083892739094, 0.7288594688776423, 0.23463814542978878, 0.9073343486287574, 0.5445649372592127, 0.8030108083542629, 0.30698149193503155, 0.47724620771884374, 0.49565431290071005, 0.29179072192325783, 0.53941953634433, 0.32642767658125227, 0.5714063949384225, 0.6769388667590319, 0.48314991346809855, 0.3838692085325581, 0.7654355578102645, 0.6807995217458978, 0.7803105409218809, 0.4971816769068883, 0.5662837862370104, 0.32557907866588853, 0.4059739580227363, 0.8621668957327787, 0.4863555612469991, 0.44913520001249685, 0.5044088987161788, 0.018560580499064172, 0.17397747102053363, 0.8203404366189, 0.531551035274026, 0.3951880410340851, 0.6710839680909022, 0.7545393605546251, 0.25029771644034415, 0.31651464458218903, 0.7900402576908969, 0.7649542174153934, 0.6282404390050247, 0.5124469561170844, 0.7501741577575001, 0.3717170374651112, 0.5479204837841629, 0.1799627586960565, 0.8716748635647116, 0.4700369344869263, 0.7044722268129955, 0.7597806244765397, 0.4570971226262448, 0.3688130253756654, 0.5854022956087224, 0.6067015953642416, 0.6092966434658947, 0.5713009051869427, 0.15316343939585397, 0.31191498773739224], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [123.0, 231.0, 126.0, 107.0, 175.0, 65.0, 107.0, 115.0, 121.0, 69.0, 180.0, 9.0, 158.0, 195.0, 211.0, 150.0, 101.0, 43.0, 74.0, 93.0, 202.0, 95.0, 142.0, 177.0, 84.0, 170.0, 93.0, 158.0, 131.0, 75.0, 92.0, 54.0, 92.0, 170.0, 63.0, 130.0, 186.0, 142.0, 99.0, 66.0, 67.0, 148.0, 60.0, 97.0, 211.0, 110.0, 57.0, 142.0, 18.0, 135.0, 110.0, 177.0, 104.0, 189.0, 156.0, 163.0, 73.0, 98.0, 104.0, 127.0, 19.0, 128.0, 144.0, 140.0, 41.0, 24.0, 100.0, 114.0, 160.0, 86.0, 125.0, 86.0, 101.0, 289.0, 94.0, 90.0, 37.0, 83.0, 60.0, 125.0, 189.0, 93.0, 57.0, 124.0, 98.0, 93.0, 143.0, 50.0, 93.0, 17.0, 119.0, 109.0, 148.0, 143.0, 151.0, 116.0, 134.0, 117.0, 85.0, 157.0, 47.0, 200.0, 41.0, 8.0, 95.0, 200.0, 103.0, 133.0, 86.0, 38.0, 103.0, 176.0, 166.0, 49.0, 158.0, 121.0, 110.0, 72.0, 171.0, 44.0, 171.0, 134.0, 228.0, 140.0, 89.0, 31.0, 25.0, 127.0, 147.0, 23.0, 127.0, 106.0, 129.5, 71.0, 115.0, 155.0, 52.0, 23.0, 109.0, 44.0, 109.0, 155.0, 159.0, 161.0, 17.0, 113.0, 85.0, 77.0, 34.0, 109.0, 149.0, 42.0, 143.0, 206.0, 118.0, 111.0, 100.0, 167.0, 112.0, 122.0, 115.0, 91.0, 68.0, 45.0, 137.0, 213.0, 192.0, 142.0, 161.0, 119.0, 20.0, 58.0, 123.0, 97.0, 43.0, 144.0, 31.0, 134.0, 138.0, 33.0, 134.0, 126.0, 15.0, 163.0, 136.0, 127.0, 118.0, 15.0, 194.0, 96.0, 128.0, 11.0, 164.0, 164.0, 94.0, 118.0, 126.0, 113.0, 72.0, 58.0, 124.0, 122.0, 111.0, 46.0, 181.0, 74.0, 22.0, 124.0, 155.0, 146.0, 73.0, 101.0, 121.0, 133.0, 80.0, 128.0, 106.0, 128.0, 160.0, 75.0, 78.0, 158.0, 87.0, 110.0, 25.0, 111.0, 189.0, 156.0, 106.0, 151.0, 186.0, 184.0, 52.0, 139.0, 92.0, 112.0, 150.0, 169.0, 107.0, 128.0, 202.0, 192.0, 114.0, 228.0, 64.0, 193.0, 155.0, 140.0, 167.0, 88.0, 163.0, 229.0, 66.0, 28.0, 29.0, 101.0, 143.0, 168.0, 152.0, 9.0, 146.0, 92.0, 99.0, 144.0, 109.0, 130.0, 114.0, 20.0, 44.0, 96.0, 61.0, 48.0, 81.0, 104.0, 119.0, 156.0, 115.0, 24.0, 11.0, 90.0, 161.0, 146.0, 90.0, 105.0, 93.0, 27.0, 182.0, 186.0, 46.0, 87.0, 84.0, 158.0, 12.0, 138.0, 149.0, 201.0, 34.0, 138.0, 71.0, 103.0, 40.0, 113.0, 98.0, 93.0, 98.0, 44.0, 142.0, 54.0, 155.0, 124.0, 70.0, 174.0, 28.0, 249.5, 90.0, 21.0, 153.0, 142.0, 100.0, 81.0, 104.0, 65.0, 170.0, 164.0, 118.0, 25.0, 81.0, 27.0, 188.0, 151.0, 107.0, 100.0, 19.0, 171.0, 96.0, 167.0, 76.0, 102.0, 159.0, 242.0, 213.0, 49.0, 78.0, 141.0, 22.0, 148.0, 125.0, 37.0, 96.0, 200.0, 143.0, 173.0, 115.0, 57.0, 160.0, 107.0, 79.0, 155.0, 23.0, 135.0, 194.0, 172.0, 57.0, 48.0, 88.0, 112.0, 125.0, 117.0, 31.0, 179.0, 149.0, 67.0, 102.0, 93.0, 78.0, 122.0, 142.0, 43.0, 98.0, 86.0, 50.0, 209.0, 63.0, 247.0, 206.0, 98.0, 95.0, 170.0, 163.0, 93.0, 132.0, 111.0, 158.0, 97.0, 221.0, 42.0, 87.0, 122.0, 178.0, 114.0, 42.0, 62.0, 70.0, 168.0, 78.0, 127.0, 134.0, 171.0, 87.0, 169.0, 140.0, 168.0, 141.0, 78.0, 102.0, 118.0, 152.0, 171.0, 143.0, 168.0, 138.0, 131.0, 206.0, 149.0, 134.0, 114.0, 111.0, 166.0, 165.0, 178.0, 186.0, 79.0, 98.0, 68.0, 146.0, 111.0, 16.0, 54.0, 155.0, 47.0, 102.0, 111.0, 89.0, 125.0, 109.0, 118.0, 231.0, 154.0, 24.0, 83.0, 126.0, 124.0, 70.0, 108.0, 174.0, 38.0, 223.0, 37.0, 101.0, 116.0, 22.0, 66.0, 37.0, 208.0, 138.0, 92.0, 134.0, 143.0, 154.0, 27.0, 42.0, 215.0, 131.0, 169.0, 113.0, 166.0, 105.0, 111.0, 113.0, 98.0, 42.0, 183.0, 118.0, 172.0, 134.0, 117.0, 109.0, 118.0, 88.0, 120.0, 223.0, 94.0, 93.0, 129.0, 11.0, 125.0, 185.0, 197.0, 108.0, 101.0, 195.0, 140.0, 140.0, 194.0, 126.0, 176.0, 113.0, 156.0, 90.0, 135.0, 98.0, 100.0, 211.0, 184.0, 111.0, 76.0, 111.0, 245.0, 102.0, 109.0, 89.0, 114.0, 142.0, 114.0, 38.0, 28.0, 158.0, 121.0, 126.0, 92.0, 47.0, 16.0, 158.0, 142.0, 102.0, 61.0, 242.0, 137.0, 143.0, 125.0, 172.0, 144.0, 216.0, 157.0, 128.0, 114.0, 13.0, 118.0, 83.0, 143.0, 116.0, 167.0, 91.0, 76.0, 125.0, 15.0, 73.0, 37.0, 213.0, 110.0, 160.0, 143.0, 68.0, 113.0, 88.0, 124.0, 112.0, 63.0, 110.0, 204.0, 78.0, 151.0, 168.0, 114.0, 110.0, 82.0, 154.0, 134.0, 229.0, 154.0, 109.0, 101.0, 123.0, 54.0, 126.0, 39.0, 128.0, 118.0, 65.0, 130.0, 136.0, 114.0, 215.0, 144.0, 128.0, 117.0, 89.0, 16.0, 95.0, 215.0, 150.0, 114.0, 162.0, 110.0, 17.0, 164.0, 144.0, 115.5, 134.0, 155.0, 119.0, 70.0, 230.0, 13.0, 137.0, 72.0, 69.0, 136.0, 28.0, 103.0, 154.0, 158.0, 33.0, 56.0, 194.0, 195.0, 140.0, 84.0, 170.0, 87.0, 178.0, 186.0, 193.0, 113.0, 140.0, 72.0, 37.0, 170.0, 110.0, 75.0, 104.0, 34.0, 152.0, 99.0, 117.0], \"xaxis\": \"x\", \"y\": [0.18439386755371057, 0.5750868907731637, 0.1132172353536568, 0.19850047615697952, 0.6950004168934912, 0.41826441672946313, 0.040828937665112974, 0.2145583871630251, 0.09143093017991866, 0.10013996234885614, 0.3658834999306372, 0.587897812361327, 0.23563705889496211, 0.5289998061994394, 0.5981734696485812, 0.5956194363709464, 0.11295199838815062, 0.6349332021584286, 0.09356782907078887, 0.0672754654033908, 0.3541579814831264, 0.11781588709523827, 0.3295981493457443, 0.23443288181779365, 0.13830133810679424, 0.5122546205578999, 0.03626449638205209, 0.32057959349203036, 0.3955164844050859, 0.21320459763992916, 0.08620177311633537, 0.4132497936565127, 0.19514157099220286, 0.028148892894647393, 0.03728071159582558, 0.20213762816504022, 0.39088790332760825, 0.10566618212719892, 0.11466232649727714, 0.09544364959788487, 0.07351553674018241, 0.3657542344632553, 0.05859665738698361, 0.43634835962676355, 0.4827032077898804, 0.516310366273556, 0.6480037931050455, 0.21122004543372697, 0.030344760075157406, 0.22750344576024595, 0.18673438423788624, 0.5460909738859347, 0.0666291073587214, 0.320234954276134, 0.515425573770442, 0.5751179393061847, 0.3262180383913996, 0.12192585741802231, 0.6165939755266235, 0.09365914315081003, 0.44259853952477324, 0.31958523161407537, 0.09228899111547839, 0.22815273642701062, 0.5282447951108347, 0.7777719169155834, 0.13834506443323813, 0.29425092810710396, 0.5300870647699181, 0.031947521718024174, 0.1108646816717751, 0.053339747820140615, 0.14466174791529418, 0.25697560969337485, 0.3383868137798065, 0.30803904997837983, 0.03434255320493995, 0.08689109251212201, 0.46044782253877736, 0.0973761441498977, 0.3449058470623745, 0.024212367984770777, 0.11665042079727428, 0.3333970234137619, 0.1495417879159372, 0.0679784404121434, 0.2360052425084116, 0.39147703437781534, 0.04428683932015287, 0.5381556738404795, 0.4357341587922019, 0.11843845992675284, 0.28107964630818494, 0.06989794698232743, 0.2658605825653322, 0.22408104406272966, 0.15519213452661884, 0.09873339188795927, 0.10739713799337769, 0.4712507279726723, 0.31257930793611366, 0.6259141532505736, 0.1651629894813923, 0.13024327386797574, 0.08242409751896962, 0.55355901104019, 0.11256152515999429, 0.22124325125588817, 0.05838775174278421, 0.6734770756819889, 0.06919042490492266, 0.5773286546676725, 0.5693181878572973, 0.12726917141891614, 0.27983888222674136, 0.15690954109554833, 0.18593824584442387, 0.05432525584274117, 0.33273366741371935, 0.12435295831370408, 0.48112847828662497, 0.2959384652215836, 0.5042039768350125, 0.3749869638443927, 0.7258627386781167, 0.4806866421912115, 0.6234335830956541, 0.4191951896523489, 0.20821728825178332, 0.6343085651912675, 0.27674577061671146, 0.02140654255666985, 0.42849246998341506, 0.1817444030106703, 0.4551538855951942, 0.05087080041524106, 0.516641204200833, 0.6810720245435042, 0.08151744899857294, 0.4475169494323581, 0.03995706953508171, 0.2181819033834006, 0.20372897255157485, 0.24305701296248816, 0.5381556738404795, 0.2358485729609252, 0.051323642447754336, 0.1913631294907303, 0.32154631204965056, 0.31229802093755377, 0.3917329141436472, 0.39462053822053156, 0.3680669306910641, 0.5017894292511481, 0.32120711190509066, 0.0768019282386515, 0.1168769044932052, 0.31545143431826594, 0.12007957373947853, 0.08354361700756141, 0.2180731800932174, 0.7653011157176768, 0.05076221583963347, 0.11739077279846111, 0.3639458403519926, 0.4815918747301601, 0.35998732468747585, 0.457353694020342, 0.5520498791697908, 0.22168281241722143, 0.2132287846887433, 0.4763394582576197, 0.3040153802820409, 0.20749766415549342, 0.3316810644107503, 0.8126297477835096, 0.5749367295182395, 0.27274039590582944, 0.2685808245693546, 0.5172108675362206, 0.33506587713796443, 0.09616672688355288, 0.041108213935392324, 0.10548050716105373, 0.5016695616404938, 0.20022874051447226, 0.14220640128276774, 0.23772630779738468, 0.19606080251004787, 0.2603188495268066, 0.18846597668723208, 0.19827111133563302, 0.261548791893628, 0.4140325207077993, 0.8134796325151183, 0.12265695643958285, 0.6311167068993262, 0.13481820177301163, 0.0932384579037443, 0.14050160114126486, 0.2562249115981724, 0.08547750670655718, 0.08643201081848362, 0.19981675431015722, 0.31390222338706264, 0.06221739913672386, 0.06996303880871468, 0.30029370289300306, 0.4306817897420764, 0.6595343859760441, 0.2839408857911616, 0.20468539219890003, 0.1130196126722065, 0.2360017176902124, 0.13187147729288817, 0.42313120297864704, 0.06964897436687001, 0.1624399718171824, 0.17200815643270417, 0.07333105637055992, 0.2440137653363641, 0.4900110333069776, 0.3085554157386313, 0.03480496731142946, 0.12148031785507996, 0.15002971926037112, 0.5314247042003052, 0.2758453007685677, 0.2151852748992088, 0.2658605825653322, 0.29911225563077193, 0.6594110243744711, 0.49869782335001445, 0.16788254706683048, 0.11816213334465087, 0.08230909248122409, 0.13653212507346946, 0.25639170942272826, 0.06562233405876228, 0.23311900627036541, 0.3756616197417655, 0.46674395287949066, 0.3092684534350997, 0.8337319641197457, 0.8331457111467163, 0.2591056156836542, 0.4778687671024334, 0.2542440524586721, 0.5361036306539362, 0.07073721340803463, 0.4731688813159418, 0.5755848065786346, 0.356689463387698, 0.14225616860197343, 0.21837916002376445, 0.14466174791529418, 0.29899643271856946, 0.4757427727983842, 0.08126799884203029, 0.1296501822378736, 0.3286954654423938, 0.08620177311633537, 0.13855855420831553, 0.05543377339452393, 0.11917834098009661, 0.2613621884509647, 0.11269900223777074, 0.08429051026621415, 0.3393961441870107, 0.07031960314855146, 0.11356777592095357, 0.4853279864284006, 0.1279289285514792, 0.0584572339054259, 0.08612988585012649, 0.3472440907423937, 0.1248029959061332, 0.07502335399434323, 0.19827111133563302, 0.3424151534036639, 0.3065175956815872, 0.13808860398564737, 0.058092197534895806, 0.04082786106581715, 0.1602592849246841, 0.09156161599234125, 0.5036030690663805, 0.2640411824475748, 0.6468038092930676, 0.07201805208597656, 0.22470230804277058, 0.1334773721572423, 0.04847889440667685, 0.2685808245693546, 0.10911308148570098, 0.6764508967260475, 0.6280060594576413, 0.36761958218269275, 0.16019930342079847, 0.17605308658107655, 0.14078981831089854, 0.2384997092801764, 0.13117402490907393, 0.12818959986091483, 0.4161925244315118, 0.12435295831370408, 0.09814942480303201, 0.05480698563416486, 0.3746187330143109, 0.41092354232892336, 0.507894749900129, 0.5137929421583434, 0.08293523366016065, 0.2964416548030494, 0.15236141109070434, 0.4396941021426354, 0.41893931094950754, 0.09113953260801844, 0.10967473999240707, 0.055732078845942, 0.05640314085190745, 0.06176263301115803, 0.06427139521062619, 0.20386133178572885, 0.21597661143113533, 0.7486409492386699, 0.2610715902497083, 0.09465277491899493, 0.5556171757583562, 0.137718889647652, 0.1978940751503777, 0.08472590699531857, 0.356262641598029, 0.14596950445002987, 0.13865818299932142, 0.3088915816821678, 0.11516321289421916, 0.16121169033174265, 0.40573483691789825, 0.34308606282264, 0.36300204724896845, 0.17193414756867276, 0.035926383178341514, 0.34536882843285344, 0.4400180463892147, 0.5165194668234709, 0.23319834124303085, 0.9637923675569924, 0.2635599134550337, 0.6259141532505736, 0.12324962258280003, 0.1256037712827487, 0.1248029959061332, 0.11665042079727428, 0.29081136443782263, 0.12993062945549005, 0.20959981847797426, 0.12385816607190492, 0.16931651488884025, 0.2468284110987674, 0.6181879252747016, 0.3509541008179864, 0.08619429866610873, 0.09537770951135394, 0.8204393830764495, 0.2493836920976743, 0.10367142046182065, 0.11516383353466464, 0.07169627826225977, 0.5400384130096556, 0.2709141565803237, 0.16809050322974173, 0.3421981324687273, 0.812724325423183, 0.1326589750154965, 0.054670132935181304, 0.055346153509382656, 0.8039442695404772, 0.3276168958360183, 0.6561718697940482, 0.6214102617950452, 0.3046829516703813, 0.7853649284745584, 0.7303620793003476, 0.6719087507962026, 0.16000678121984613, 0.579612101366232, 0.6347749924714103, 0.41894393066564606, 0.06936532322770372, 0.28322834609079706, 0.343263893078516, 0.4450860003239352, 0.3090838478611311, 0.408095736797927, 0.11529682880263803, 0.13359771811640497, 0.2417229185475579, 0.10092265889692065, 0.8181934133883563, 0.3777834313813965, 0.8273808576462511, 0.18439353202429143, 0.5148786056082297, 0.11287077888712382, 0.16015059460472458, 0.29672938182784603, 0.36944561074938853, 0.2505850522824452, 0.8467591712977676, 0.3840267097226593, 0.261779448872241, 0.1645479955558209, 0.14631295673285594, 0.4248523287309329, 0.09222807982804315, 0.2121484308544801, 0.33273366741371935, 0.5470626312455473, 0.8294144697045585, 0.25206662215500397, 0.15998368749433245, 0.548322128117227, 0.3917329141436472, 0.15981565308588508, 0.23631147082452741, 0.21082920466209698, 0.1871387197916503, 0.24774693401855818, 0.1913242313933492, 0.16437448769677154, 0.07582203648947516, 0.032541140295091364, 0.06311143057978008, 0.5009235508757715, 0.12343879567504301, 0.445735807756371, 0.40322837553658053, 0.09397553936597514, 0.1598391281143201, 0.26702494168661406, 0.19782301216908982, 0.06831823449824892, 0.5451167746582685, 0.20142160156100697, 0.25747632252511843, 0.4257317671215596, 0.5062318064185062, 0.10278357133077332, 0.10857266292312517, 0.06223864817381186, 0.11377411494697365, 0.14082424186384768, 0.2589321903149734, 0.31776639873426016, 0.07983414941561229, 0.30174211068680845, 0.42532907678292176, 0.23734670470511587, 0.2862296469110084, 0.24790288035387664, 0.5526146374040077, 0.20425399436950087, 0.5166825128498294, 0.12415322942140417, 0.5310696157212036, 0.3866387435262121, 0.14313186082947948, 0.31648660326859934, 0.026792916001305622, 0.7856428374245099, 0.42383310375799566, 0.5944566396871084, 0.6256605001243821, 0.08813642250468567, 0.03544811528140901, 0.06935406654889886, 0.15751976448865512, 0.22608551288474832, 0.3127311228465576, 0.1409438166611655, 0.3285615524533705, 0.3591330499592894, 0.47964497307801546, 0.7143146030302826, 0.14223944449319303, 0.06929054967731618, 0.32120711190509066, 0.16913647442041335, 0.707286257884667, 0.3230684446475647, 0.7616845263358343, 0.4104900542879092, 0.10053249234255524, 0.1106599594415556, 0.1543174595222413, 0.46003879185641183, 0.3811350878514418, 0.07185070571861518, 0.23882593985771994, 0.5344976262521839, 0.11031385635331636, 0.09610989844306939, 0.4955559099445003, 0.07845190603324759, 0.30697262074812925, 0.12767551958037127, 0.4375661224395835, 0.07737023387634634, 0.15307682457740834, 0.05694427046787409, 0.09028836937410878, 0.4011292297732457, 0.6186146927451245, 0.11561676905211238, 0.0993047499370594, 0.08102401279833105, 0.8100206966555492, 0.10768932514586738, 0.15386113005635593, 0.4026560765644126, 0.045535707525545144, 0.08229583319403, 0.08227601457953415, 0.8241544781987433, 0.0759900855540333, 0.5147505197509459, 0.11103147778198663, 0.42144961755966015, 0.24880465403270857, 0.3112403223054312, 0.3282460941643247, 0.28312386083977936, 0.2865521931047814, 0.16537364909659502, 0.4284132019637321, 0.34116073112729894, 0.051142721309942685, 0.10794707492381372, 0.1108646816717751, 0.29201805921023904, 0.07365131996157204, 0.36851051207096197, 0.2556143611338999, 0.07392456180697715, 0.045535707525545144, 0.15025986810093994, 0.4395989822566938, 0.19636656988846957, 0.21018464628148859, 0.15085686628779282, 0.3429118439192298, 0.16104008564300487, 0.2055862423584408, 0.18673310211333727, 0.5528531989583015, 0.20219789553586287, 0.5807830339134155, 0.6112381610839525, 0.07515362639458067, 0.5722084734915175, 0.3654892991508686, 0.1991057466826236, 0.4912569401667811, 0.05850610073101081, 0.3077884117234785, 0.17038242498240874, 0.14066607718466684, 0.10248584652416493, 0.4022873718442217, 0.07205214632436985, 0.35142291824287475, 0.10941760034103376, 0.06679271580157364, 0.05675388891699207, 0.058987921856350156, 0.3660303223369904, 0.28790374422385034, 0.4158290962648631, 0.40710291595796666, 0.09934102670994882, 0.06362846635195196, 0.30921476208988685, 0.23242198019285765, 0.055541210656895434, 0.5297663836663529, 0.10744632778983743, 0.18410212910939194, 0.17721960751489196, 0.1962664672709783, 0.1617648996714035, 0.10584426414108294, 0.5203501665477333, 0.07365131996157204, 0.31578819840495265, 0.35364190165315845, 0.1707951928721818, 0.41655733121321636, 0.15801546378512366, 0.7568436608419439, 0.22368578646300386, 0.0609449253562836, 0.2225096762928218, 0.18587673368692093, 0.05559101133196209, 0.569598540521716, 0.08073228430722412, 0.15724041301590164, 0.12879141548479, 0.4306817897420764, 0.17998791969802397, 0.41280880088413996, 0.5723062335690389, 0.6457404130724687, 0.10420061808672998, 0.12564769853034463, 0.21795029564941848, 0.4720930498870375, 0.11304202998506685, 0.545112257205237, 0.14852188644910969, 0.17217029085021085, 0.336250902618187, 0.48671482860553816, 0.5093433434984792, 0.35847801144896685, 0.3008706318705062, 0.18494609259573758, 0.4199330463236065, 0.04162287990776414, 0.2633909944023186, 0.4252182303976608, 0.4684623303117058, 0.1925553058603695, 0.09610989844306939, 0.09129843496680234, 0.3302708189676917, 0.4199330463236065, 0.11927294568859859, 0.4864154015695107, 0.06472081497616611, 0.6387929002666255, 0.37932906694235924, 0.093713747684541, 0.20627971812824875], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (curr)\", \"type\": \"scatter\", \"x\": [106.0, 196.0, 164.0, 47.0, 156.0, 167.0, 131.0, 14.0, 21.0, 25.0, 111.0, 85.0, 191.0, 207.0, 181.0, 133.0, 143.0, 42.0, 125.0, 131.0, 115.0, 219.0, 185.0, 225.0, 101.0, 110.0, 72.0, 174.0, 66.0, 163.0, 159.0, 166.0, 24.0, 73.0, 164.0, 135.0, 152.0, 39.0, 127.0, 128.0, 101.0, 44.0, 150.0, 171.0, 67.0, 177.0, 112.0, 38.0, 174.0, 40.0, 176.0, 139.0, 91.0, 33.0, 26.0, 49.0, 38.0, 23.0, 145.0, 201.0, 23.0, 216.0, 186.0, 26.0, 91.0, 11.0, 45.0, 34.0, 23.0, 42.0, 16.0, 182.0, 168.0, 23.0, 135.0, 111.0, 255.0, 61.0, 98.0, 84.0, 126.0, 21.0, 187.0, 143.0, 169.0, 59.0, 171.0, 184.0, 174.0, 102.0, 210.0, 134.0, 16.0, 213.0, 54.0, 9.0, 131.0, 148.0, 142.0, 216.0, 88.0, 167.0, 133.0, 38.0, 200.0, 9.0, 90.0, 26.0, 119.0, 197.0, 59.0, 148.0, 30.0, 189.0, 53.0, 166.0, 146.0, 144.0, 196.0, 44.0, 179.0, 132.0, 161.0, 102.0, 20.0, 94.0, 89.0, 123.0, 20.0, 201.0, 55.0, 227.0, 213.0, 56.0, 68.0, 178.0, 121.0, 13.0, 94.0, 126.0, 117.0, 169.0, 95.0, 77.0, 68.0, 149.0, 138.0, 12.0, 140.0, 166.0, 114.0, 212.0, 129.0, 176.0, 145.0, 117.0, 135.0, 183.0, 131.0, 213.0, 55.0, 173.0, 128.0, 116.0, 29.0, 90.0, 56.0, 92.0, 140.0, 150.0, 165.0, 114.0, 86.0, 178.0, 102.0, 107.0, 119.0, 220.0, 219.0, 158.0, 122.0, 157.0, 42.0, 84.0, 162.0, 161.0, 150.0, 116.0, 142.0, 149.0, 86.0, 102.0, 196.0, 83.0, 189.0, 35.0, 89.0, 142.0, 156.0, 97.0, 11.0, 201.0, 162.0, 198.0, 89.0, 183.0, 173.0, 15.0, 138.0, 160.0, 146.0, 106.0, 34.0, 106.0, 222.0, 80.0, 169.0, 172.0, 99.0, 60.0, 142.0, 202.0, 126.0, 216.0, 154.0, 119.0, 43.0, 199.0, 167.0, 143.0, 161.0, 129.0, 138.0, 145.0, 63.0, 167.0, 131.0, 129.0, 213.0, 101.0, 210.0, 31.0, 138.0, 162.0, 117.0, 190.0, 75.0, 105.0, 169.0, 70.0, 42.0, 186.0, 111.0, 153.0, 111.0, 133.0, 162.0, 238.5, 155.0, 38.0, 37.0, 101.0, 168.0, 168.0, 71.0, 186.0, 77.0, 113.0, 117.0, 164.0, 98.0, 28.0, 187.0, 148.0, 107.0, 108.0, 210.0, 72.0, 82.0, 136.0, 87.0, 161.0, 105.0, 197.0, 145.0, 148.0, 109.0, 126.0, 48.0, 66.0, 191.0, 147.0, 151.0, 85.0, 137.0, 31.0, 98.0, 192.0, 167.0, 22.0, 132.0, 47.0, 176.0, 226.0, 210.0, 131.0, 21.0, 105.0, 177.0, 181.0, 58.0, 191.0, 69.0, 145.0, 175.0, 162.0, 157.0, 197.0, 138.0, 80.0, 25.0, 20.0, 124.0, 164.0, 14.0, 151.0, 161.0, 6.0, 200.0, 168.0, 10.0, 166.0, 85.0, 148.0, 28.0, 85.0, 127.0, 133.0, 138.0, 104.0, 180.0, 121.0, 61.0, 63.0, 16.0, 49.0, 122.0, 106.0, 138.0, 112.0, 92.0, 128.0], \"xaxis\": \"x2\", \"y\": [0.18579927887031134, 0.9274202256360236, 0.2569067617886446, 0.17851375722123963, 0.43011516789686843, 0.3951880410340851, 0.35333307802371594, 0.854899199395705, 0.7749695319329993, 0.7150752736216004, 0.5793836726576811, 0.17187478758168062, 0.503776006633781, 0.6517104478925241, 0.5321166645488455, 0.4291031613352281, 0.6295132227815239, 0.446367751604861, 0.12978626497489776, 0.578130474122496, 0.1303225049324246, 0.4589423036505589, 0.6028673022099313, 0.6724998803801079, 0.055171077290688375, 0.28900585249094113, 0.5807441942986169, 0.6324527530146118, 0.32780881811994433, 0.4437792729685527, 0.47375733914823626, 0.6755390392614542, 0.8494338455743565, 0.8432302027568838, 0.3962269303969661, 0.36574887203466033, 0.9780529644634413, 0.6757083557066426, 0.43212531492562845, 0.6428319532862445, 0.2244465690609686, 0.6759712108962084, 0.300575337785698, 0.4848467547623382, 0.24353241802821812, 0.6165640897352094, 0.801889943514816, 0.6831580296641933, 0.4684052737322374, 0.07309555507266852, 0.17397747102053363, 0.548208100621717, 0.16948307959681597, 0.5287139706981401, 0.8097217619362252, 0.48186532860504816, 0.7044722268129955, 0.5458559966555334, 0.6067015953642416, 0.5767206748937392, 0.5416109283549078, 0.7766135747357961, 0.6371580804073698, 0.3290646799011723, 0.53941953634433, 0.7444876216695655, 0.27658524567301757, 0.8518717737266248, 0.685064206005921, 0.7994946846943811, 0.6254668451144636, 0.29898447003196504, 0.36566585814722175, 0.8260679099411251, 0.265003746926769, 0.18277705216857454, 0.6401445853260315, 0.2878944788643705, 0.7379395090268356, 0.6578861964269485, 0.3048731186933995, 0.6479177870210828, 0.5479007895539181, 0.8109237991420157, 0.4555798348891207, 0.35159410271621183, 0.6741813074403022, 0.40366163192193316, 0.3797333752177462, 0.42326140605337403, 0.49450075158901585, 0.7027754368270075, 0.31556666432085356, 0.5737052492708005, 0.5594846166878963, 0.9879213229528466, 0.23907110553933086, 0.7604887601700165, 0.906894853259191, 0.49150798334893764, 0.6693239074263375, 0.635181004157038, 0.4291031613352281, 0.6805197940362542, 0.8579270215873258, 0.42231028799440284, 0.7973836574204367, 0.6209099995125147, 0.617932351579841, 0.5867531689564582, 0.8217385626893267, 0.5766058512754557, 0.6085190813519714, 0.6488649586424557, 0.19466062481522506, 0.4062994677131635, 0.31500574198466447, 0.6106996692323751, 0.48314991346809855, 0.4300926711133176, 0.4623912750166579, 0.18141675383529432, 0.7404949196358439, 0.7960551628311661, 0.6696955469146251, 0.7471897031921468, 0.15222801432328747, 0.4782875749995391, 0.6696955469146251, 0.4617114467660769, 0.0374236133971757, 0.34638250956587036, 0.5737052492708005, 0.35412183815676124, 0.5342599897609015, 0.6273126624389191, 0.1819914526651868, 0.6450640502472667, 0.7576359910572065, 0.6363669366758954, 0.35783776888428775, 0.4555798348891207, 0.2603691587203709, 0.09638465351539516, 0.7889843001267657, 0.3995975535535492, 0.2404138117262561, 0.5134503976671381, 0.7620160241108803, 0.4852174766770502, 0.7934067722809752, 0.5657371707019572, 0.40591517497640706, 0.5142806824729376, 0.4667389755277017, 0.4597803030361328, 0.14211531046105408, 0.4709774325404933, 0.39253304933110444, 0.8152160844894966, 0.6418608562675732, 0.5695619245525361, 0.15898796250578873, 0.4189913516486339, 0.8097376625536354, 0.2776505479619531, 0.14100712613869515, 0.1625374057836978, 0.21879614767173305, 0.26016804821119, 0.5884346274074399, 0.25171266030158634, 0.5556828679884147, 0.2886326125606653, 0.5013044750460076, 0.23728971353361283, 0.6280660923097139, 0.6281218947904323, 0.6226708394296439, 0.1280348372312241, 0.37812375401711507, 0.6218606462016874, 0.446367751604861, 0.5237591509200082, 0.22560064672115399, 0.4159575064805634, 0.43989745285902637, 0.38133093816728936, 0.379388299643832, 0.4244201113870294, 0.8495234946343055, 0.44699506619782237, 0.3402560380560977, 0.16997778820688525, 0.6509841470756508, 0.5589353890471914, 0.49320900326902484, 0.41485179365651337, 0.2850172536812061, 0.5150740024049856, 0.7905789411902706, 0.6660097546858721, 0.5916856454756931, 0.25029771644034415, 0.21820707607863943, 0.23625780462752244, 0.6174344585079109, 0.33885175059010386, 0.8097775874289167, 0.5502791542248897, 0.45232673966787307, 0.5168725346003686, 0.4922951659433321, 0.2710495410551712, 0.5620189509382074, 0.19827785442852286, 0.35653263682836045, 0.4940220265254579, 0.3934632807735441, 0.349631294967786, 0.6543252873397565, 0.6043841099981286, 0.6572212454398962, 0.5323595728841377, 0.4667716613599331, 0.5480891857555714, 0.5933716837007499, 0.5769442381274095, 0.7796710482718338, 0.4721284230669528, 0.5632051337005155, 0.25606657060722404, 0.47304849589761655, 0.4991199345133047, 0.785831825438318, 0.5512091114854263, 0.31651464458218903, 0.192246895102814, 0.5737052492708005, 0.14970485751781393, 0.8257882443178004, 0.7450862811651306, 0.2404138117262561, 0.3428275867057816, 0.2186811050870735, 0.43730933466596944, 0.1325711740116582, 0.33994853494016564, 0.5172250338280965, 0.4543852880840521, 0.6017244994332274, 0.7267617626256621, 0.304103470637073, 0.49511795227452726, 0.4577650902534979, 0.4389063253281036, 0.3428275867057816, 0.6911248892501751, 0.5457123873353599, 0.3395528272139201, 0.5662837862370104, 0.38281068028313525, 0.1899488449656659, 0.1899488449656659, 0.39416742153886597, 0.4473524415330049, 0.5724944828663213, 0.12652799787397961, 0.14917046216496987, 0.4192276293132746, 0.1727250451072272, 0.7329347521090118, 0.2979855805324535, 0.5384433083808008, 0.2944152049751758, 0.5661013076544325, 0.39283078357423706, 0.6503174362647687, 0.7632350838020857, 0.29422440231251745, 0.8446099855685041, 0.3812461384129847, 0.1264117171095669, 0.6995051325026098, 0.7680829457938805, 0.1086082602083136, 0.50228427853815, 0.8303888649041977, 0.15145052047802054, 0.5239967242043768, 0.49461569007297057, 0.7323984730128237, 0.6372335578763709, 0.8485373319296128, 0.21018203617182263, 0.3854703692354019, 0.6209619763202376, 0.6996467359659702, 0.3913887983225227, 0.600932061108284, 0.18141675383529432, 0.32841971343371723, 0.17397747102053363, 0.3943097935149382, 0.5998672378660981, 0.6052803835931642, 0.35501406908939237, 0.4362847089434372, 0.6005057903956104, 0.45095984485898877, 0.5601124581139871, 0.6908342266509375, 0.29066967723125237, 0.5437491575180791, 0.5955595524057149, 0.4226516353037165, 0.552222307965348, 0.5038457784615318, 0.6752568781943777, 0.7880730680059006, 0.09430965090665133, 0.4986183600001317, 0.24112389044610405, 0.3635071851353404, 0.7047195247497422, 0.5251048099479148, 0.5632051337005155, 0.4520037684813636, 0.5271857161160298, 0.36566585814722175, 0.8775119234978208, 0.49474741138534273, 0.17187478758168062, 0.1069918390347242, 0.6371627391106971, 0.19018032574493748, 0.34352259564225396, 0.806114950115292, 0.47304849589761655, 0.5014153035286022, 0.6721952796384192, 0.7507248720260316, 0.38512814216859315, 0.8930847268109882, 0.863224561659591, 0.15108072818859253, 0.7399796913917198, 0.18579927887031134, 0.47304849589761655, 0.2033384066370545, 0.43667652058029827, 0.23252054766636898], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [101.0, 194.0, 126.0, 68.0, 94.0, 99.0, 97.0, 124.0, 95.0, 163.0, 32.0, 191.0, 111.0, 119.0, 127.0, 118.0, 38.0, 61.0, 28.0, 162.0, 212.5, 193.0, 74.0, 147.0, 179.0, 99.0, 127.0, 134.0, 93.0, 148.0, 74.0, 136.0, 178.0, 99.0, 121.0, 129.0, 76.0, 150.0, 81.0, 31.0, 124.0, 85.0, 156.0, 238.0, 27.0, 45.0, 135.0, 86.0, 212.0, 195.0, 18.0, 122.0, 137.0, 59.0, 175.0, 145.0, 181.0, 63.0, 165.0, 64.0, 64.0, 150.0, 105.0, 85.0, 100.0, 127.0, 144.0, 155.0, 89.0, 153.0, 189.0, 100.0, 117.0, 114.0, 113.0, 145.0, 174.0, 161.0, 38.0, 25.0, 87.0, 144.0, 60.0, 162.0, 143.0, 26.0, 55.0, 96.0, 172.0, 132.0, 143.0, 108.0, 115.0, 107.0, 117.0, 97.0, 28.0, 294.0, 10.0, 24.0, 126.0, 101.0, 22.0, 121.0, 189.0, 131.0, 105.0, 109.0, 117.0, 107.0, 75.0, 176.0, 112.0, 76.0, 138.0, 35.0, 153.0, 152.0, 136.0, 59.0, 158.0, 121.0, 44.0, 81.0, 60.0, 16.0, 53.0, 94.0, 26.0, 84.0, 82.0, 38.0, 98.0, 253.0, 74.0, 213.0, 12.0, 60.0, 169.0, 118.0, 166.0, 58.0, 35.0, 153.0, 204.0, 99.0, 190.0, 47.0, 134.0, 116.0, 98.0, 93.0, 94.0, 103.0, 116.0, 164.0, 47.0, 28.0, 92.0, 192.0, 65.0, 28.0, 86.0, 199.0, 20.0, 80.0, 148.0, 29.0, 48.0, 123.0, 100.0, 107.0, 41.0, 9.0, 88.0, 213.0, 129.0, 216.0, 111.0, 43.0, 131.0, 124.0, 117.0, 80.0, 141.0, 35.0, 28.0, 72.0, 170.0, 36.0, 124.0, 149.0, 92.0, 118.0, 133.0, 109.0, 76.0, 89.0, 190.0, 133.0, 98.0, 129.0, 245.0, 84.0, 191.0, 130.0, 99.0, 76.0, 134.0, 183.0, 116.0, 125.0, 34.0, 94.0, 35.0, 124.0, 90.0, 143.0, 174.0, 105.0, 125.0, 244.0, 15.0, 209.0, 189.0, 212.0, 118.0, 161.0, 59.0, 172.0, 65.0, 97.0, 84.0, 104.0, 33.0, 170.0, 99.0, 90.0, 140.0, 150.0, 114.0, 118.0, 132.0, 104.0, 54.0, 19.0, 155.0, 193.0, 111.0, 31.0, 150.0, 143.0, 145.0, 107.0, 105.0, 95.0, 126.0, 73.0, 111.0, 153.0, 15.0, 168.0, 111.0, 181.0, 172.0, 139.0, 110.0, 136.0, 189.0, 135.0, 104.0, 117.0, 51.0, 49.0, 113.0, 39.0, 148.0, 109.0, 102.0, 51.0, 26.0, 122.0, 104.0, 120.0, 114.0, 19.0, 132.0, 73.0, 145.0, 135.0, 47.0, 12.0, 132.0, 87.0, 125.0, 139.0, 94.0, 143.0, 139.0, 97.0, 119.0, 109.0, 163.0, 134.0, 178.0, 44.0, 95.0, 143.0, 180.0, 90.0, 129.0, 72.0, 32.0, 123.0, 81.0, 152.0, 214.0, 126.0, 117.0, 173.0, 204.0, 134.0, 156.0, 134.0, 65.0, 151.0, 114.0, 44.0, 164.0, 125.0, 28.0, 156.0, 28.0, 201.0, 106.0, 116.0, 182.0, 225.0, 142.0, 39.0, 142.0, 98.0, 188.0, 55.0, 27.0, 113.0, 87.0, 140.0, 33.0, 85.0, 158.0, 95.0, 169.0, 103.0, 191.0, 151.0, 28.0, 113.0, 163.0, 26.0, 95.0, 135.0, 55.0, 171.0, 21.0, 206.0, 113.0, 168.0, 173.0, 161.0, 97.0, 227.0, 107.0, 81.0, 17.0, 17.0, 96.0, 118.0, 38.0, 111.0, 118.0, 125.0, 143.0, 189.0, 98.0, 166.0, 135.0, 68.0, 12.0, 131.0, 172.0, 174.0, 128.0, 194.0, 108.0, 35.0, 155.0, 26.0, 87.0, 93.0, 187.0, 150.0, 158.0, 114.0, 120.0, 169.0, 130.0, 109.0, 149.0, 80.0, 23.0, 125.0, 81.0, 55.0, 185.0, 53.0, 245.0, 17.0, 122.0, 130.0, 75.0, 90.0, 34.0, 48.0, 15.0, 118.0, 151.0, 150.0, 85.0, 140.0, 85.0, 155.0, 84.0, 109.0, 17.0, 38.0, 172.0, 178.0, 93.0, 171.0, 229.0, 27.0, 146.0, 104.0, 89.0, 15.0, 60.0, 112.0, 47.0, 48.0, 136.0, 89.0, 141.0, 9.0, 154.0, 159.0, 113.0, 88.0, 158.0, 29.0, 179.0, 92.0, 181.0, 173.0, 160.0, 107.0, 151.0, 79.0, 132.0, 37.0, 170.0, 163.0, 50.0, 135.0, 98.0, 77.0, 172.0, 102.0, 135.0, 123.0, 143.0, 134.0, 85.0, 21.0, 182.0, 132.0, 28.0, 101.0, 25.0, 44.0, 100.0, 129.5, 43.0, 47.0, 40.0, 14.0, 125.0, 46.0, 11.0, 49.0, 118.0, 139.0, 229.0, 114.0, 53.0, 113.0, 200.0, 133.0, 88.0, 128.0, 70.0, 80.0, 113.0, 73.0, 152.0, 104.0, 45.0, 19.0, 206.0, 41.0, 173.0, 14.0, 97.0, 180.0, 147.0, 149.0, 135.0, 116.0, 150.0, 164.5, 21.0, 128.0, 178.0, 101.0, 16.0, 180.0, 14.0, 132.0, 10.0, 189.0, 156.0, 166.0, 10.0, 153.0, 49.0, 99.0, 68.0, 16.0, 80.0, 229.0, 225.0, 104.0, 122.0, 10.0, 57.0, 150.0, 69.0, 76.0, 102.0, 129.0, 95.0, 116.0, 168.0, 19.0, 173.0, 189.0, 142.0, 177.0, 71.0, 140.0, 110.0, 184.0, 152.0, 164.0, 105.0, 117.0, 124.0, 91.0, 181.0, 85.0, 181.0, 168.0, 128.0, 89.0, 167.0, 155.0, 20.0, 212.0, 78.0, 25.0, 35.0, 130.0, 129.0, 122.0, 7.0, 69.0, 120.0, 140.0, 83.0, 136.0, 157.0, 169.0, 221.0, 190.0, 113.0, 91.0, 13.0, 104.0, 136.0, 167.0, 99.0, 103.0, 159.0, 108.0, 91.0, 136.0, 103.0, 213.0, 189.0, 169.0, 107.0, 91.0, 112.0, 82.0, 114.0, 72.0, 84.0, 159.0, 17.0, 128.0, 16.0, 43.0, 87.0, 136.0, 140.0, 144.0, 74.0, 86.0, 145.0, 153.0, 127.0, 228.0, 112.0, 157.0, 140.0, 192.0, 114.0, 111.0], \"xaxis\": \"x2\", \"y\": [0.6660328535674787, 0.4955559099445003, 0.11251030999551548, 0.5313240922219649, 0.7616845263358343, 0.42881839881496897, 0.22146723198036844, 0.2709448900825402, 0.04188686298684474, 0.3198999677935893, 0.586632325439729, 0.3332859260788763, 0.0891770245136605, 0.07249138429342028, 0.0813041402249215, 0.2808128557304226, 0.18155424903412543, 0.14020593233116785, 0.20529540916933675, 0.1755850319354616, 0.5722846846512241, 0.4684623303117058, 0.2863708053899042, 0.4489302200945696, 0.3606737334686688, 0.09834172337505831, 0.1439119889738254, 0.10526388551166177, 0.08976738859769384, 0.15927641460572795, 0.07353544332944184, 0.4894096639868448, 0.24735122968283396, 0.41440459167745447, 0.10107859516115147, 0.4809249647595707, 0.043928674649753696, 0.27268427565697984, 0.07203278686513981, 0.35989685204578803, 0.08410225657903847, 0.09640449279894714, 0.2859044620344169, 0.766491644508495, 0.27194216744256416, 0.11891721880979944, 0.6033870782914414, 0.8445823904457724, 0.4148378249676725, 0.09538880480821377, 0.5822786697287807, 0.2006236885231063, 0.30215903380660414, 0.3526626332448971, 0.22921561702294402, 0.3499358724503807, 0.451050436906263, 0.01968005574460141, 0.3849224947932618, 0.608666907839271, 0.30333177217190177, 0.05732515971384944, 0.08299070223644744, 0.155374347961305, 0.4378217303747408, 0.10641916767178827, 0.3207785913922725, 0.3280003244598044, 0.4747408725557203, 0.27229542413121455, 0.5314247042003052, 0.13834506443323813, 0.652508483608137, 0.1775869136191267, 0.4659209431511335, 0.3288332341233703, 0.47224603889779837, 0.2773569186284155, 0.18590272545123854, 0.6719763059805124, 0.04569198037744582, 0.22473444069733528, 0.0776074933333939, 0.1411968215808168, 0.3654892991508686, 0.06069899520469324, 0.21029328672965164, 0.13919371635861133, 0.16321149678759816, 0.6144435769482088, 0.1388055550317996, 0.0827658987104557, 0.0793107693477757, 0.04994940743047871, 0.46220165202879504, 0.08265172102971341, 0.5554564865761329, 0.10902951494304747, 0.26480674198345266, 0.31816712550642645, 0.20184400370343658, 0.23734670470511587, 0.19264674509953905, 0.03558879485690103, 0.5314247042003052, 0.3013473679880785, 0.8043030592862955, 0.07665185966197174, 0.17816243980233548, 0.14637302723887635, 0.43623195291339645, 0.5773286546676725, 0.06996409198491005, 0.0635191394270278, 0.11839391684253864, 0.03368970372860669, 0.16544292122901683, 0.5002106013252752, 0.20783967621931676, 0.4413184352618238, 0.1377753535318076, 0.017128038770129694, 0.09070427960766203, 0.05237321155563324, 0.46044782253877736, 0.09863911308639095, 0.6058955548956951, 0.07377868677997379, 0.33726125667837825, 0.03705661785513226, 0.03856885477325478, 0.01970319875133708, 0.06623921298607705, 0.655672818127978, 0.36403826442427, 0.375635621083512, 0.25822104517587474, 0.26990817233175546, 0.30316845466795117, 0.21597661143113533, 0.10411587283779344, 0.4582573305440075, 0.28974208538397184, 0.3995654588450376, 0.48407929824265805, 0.2412117545349558, 0.49704114689177337, 0.3112403223054312, 0.13571503940671914, 0.35304273602320047, 0.18963603484652192, 0.06023564559469896, 0.305863422303413, 0.34062746964654456, 0.03532029949184434, 0.20200996882548472, 0.207876095289533, 0.11304202998506685, 0.26487496820305634, 0.46674395287949066, 0.05931266843465788, 0.6063731497207538, 0.053339747820140615, 0.16056749669580483, 0.3366557342021428, 0.18735912995827353, 0.2667542380283816, 0.9197592959547904, 0.13322255285490225, 0.3533185668595151, 0.08763312389948397, 0.343329095265401, 0.1298321532292276, 0.11240742021865013, 0.03412749239977686, 0.23316671381479437, 0.13955591125269062, 0.065615492475942, 0.03940539431326806, 0.04874684240881699, 0.42507109047861347, 0.3720756994829524, 0.20627971812824875, 0.23346983492740092, 0.299872058778726, 0.14688925552714138, 0.20529540916933675, 0.11294333341234963, 0.4523771212155355, 0.15895981664313275, 0.12633289347617382, 0.34801013400503944, 0.063056887931354, 0.09222807982804315, 0.19281104432210028, 0.11843845992675284, 0.1064686731970873, 0.12171087020281346, 0.49704114689177337, 0.4202798549667376, 0.058322454167927695, 0.40418598015134155, 0.7514842711311043, 0.067978575311199, 0.1468497162592186, 0.3655805321171328, 0.36741292271676196, 0.08785516413846428, 0.4223454464089015, 0.09472348251934337, 0.14196098925812006, 0.10013555988874479, 0.32154631204965056, 0.05416575683382341, 0.786126361492164, 0.04696516601190348, 0.26926088858349784, 0.28123172687107445, 0.3094364396730669, 0.04307250962973752, 0.07126159086244754, 0.6143015945908075, 0.495586079448059, 0.46102608015166635, 0.40789311683600216, 0.8929715185951024, 0.1227006502272181, 0.3638055988942468, 0.10470002869891348, 0.29304213908849364, 0.8936703981375603, 0.3534407380188983, 0.0883666731866185, 0.07895584641700149, 0.05166417783587085, 0.4199775765299997, 0.10304865631077798, 0.1041340676595982, 0.11031385635331636, 0.22368578646300386, 0.22137255536682798, 0.0725394352715707, 0.08320759746190642, 0.3577905591727162, 0.36362749207413336, 0.13058702032609693, 0.4306817897420764, 0.4684623303117058, 0.3185463047756948, 0.6991046594229053, 0.33105510290791684, 0.35804773811787727, 0.3499358724503807, 0.17780319308126435, 0.07142366539796174, 0.1504846162366139, 0.28643330026545544, 0.11492102279820171, 0.08716328114311156, 0.12905574960179156, 0.5528531989583015, 0.2852168598030531, 0.3185463047756948, 0.41766807389819915, 0.22818770291371737, 0.10749415552266317, 0.07500089027222667, 0.2150933620687273, 0.4879833184669665, 0.21367083697314282, 0.18281788227943807, 0.11217648511765432, 0.01860460444149037, 0.4990100838788346, 0.3212979959143686, 0.7252893191599291, 0.30018855716775616, 0.2808216200321265, 0.24332849241566534, 0.22583693263898685, 0.307128141019565, 0.12930297020615966, 0.07734813107736227, 0.38078614076753503, 0.037937415915298756, 0.18389331462546077, 0.2015421194948802, 0.10121634311933059, 0.7209948827487924, 0.252131738577411, 0.19866278493931944, 0.5569604587758099, 0.19172534874952063, 0.07516041810443141, 0.18673310211333727, 0.20736440356309183, 0.27568985010185776, 0.1748501221961516, 0.134246332983591, 0.12151400729184814, 0.03860330573341564, 0.16198960071610413, 0.062309112953929935, 0.14943540958877521, 0.46827469198568006, 0.12435295831370408, 0.11768791031746062, 0.10794707492381372, 0.04347111427796346, 0.07423675680829, 0.1602542791395647, 0.19911642350143877, 0.2379444352717226, 0.36664322039668684, 0.10130143557253446, 0.17108028607870185, 0.6143194513817134, 0.5641235853966853, 0.29864316680665437, 0.44752301946823647, 0.13459844499503626, 0.037461465199631894, 0.5002964248569376, 0.4059565893810353, 0.7035957096210382, 0.0629603198376949, 0.25036415064992923, 0.14780834332950044, 0.24800647860056513, 0.10438723399855232, 0.24366911510822187, 0.4574644219698093, 0.8347014835967527, 0.42226245660703365, 0.4073158502222598, 0.47525484003715535, 0.37845934883934684, 0.35325777167774697, 0.4763432908647238, 0.18941100564626978, 0.23853527246002126, 0.27277355193056574, 0.5556171757583562, 0.19481513110659687, 0.7460207524242459, 0.12627308236197843, 0.2115813466591615, 0.4773837842994688, 0.22238536240250728, 0.1978655273089749, 0.32057959349203036, 0.1601330373243487, 0.6256605001243821, 0.34062746964654456, 0.5899158924001677, 0.1273375405407705, 0.6866376712310945, 0.3812864953771038, 0.07918534602430627, 0.10510921928053807, 0.052405178286905496, 0.29010285216427345, 0.5802968836962079, 0.4475494904811408, 0.33107045093633036, 0.6046547135519548, 0.33132995382553565, 0.3391582818855403, 0.37109937806185267, 0.18876467901964422, 0.03244681540368277, 0.6531311156123596, 0.18281848038190407, 0.06840545126676123, 0.23876166598551407, 0.5602062902528231, 0.05478334190217349, 0.18965009362393503, 0.502081053312289, 0.0945975060483667, 0.24937367783354814, 0.14040338921272166, 0.09582424632391484, 0.4879833184669665, 0.07536550594022651, 0.37763546052463404, 0.20240400638142053, 0.06234715971662652, 0.1729504208160284, 0.2536573606029918, 0.1491704939138675, 0.47224603889779837, 0.20734784509414073, 0.1656619584420439, 0.20263687678412212, 0.4576701693643329, 0.3746187330143109, 0.06578487521364562, 0.09359041291034786, 0.15714155813810793, 0.43198081216185935, 0.17693664965610134, 0.14200602748771296, 0.16878839641400256, 0.11131318694256087, 0.43040972974554736, 0.12494266711040569, 0.5286591337585229, 0.3917329141436472, 0.14284790216410748, 0.29931895876037384, 0.3998656181534954, 0.13198036366642862, 0.2166851793268345, 0.164669749255824, 0.3116999397838065, 0.5702002297218003, 0.2867818412254799, 0.05809024612643199, 0.0701620515557333, 0.10493669218879953, 0.03474255021640338, 0.14069518845012563, 0.7697788668098057, 0.44513161239284327, 0.12104291767226882, 0.2823656727566666, 0.28640273091276736, 0.09904459769556595, 0.10889384421684001, 0.1978655273089749, 0.6326587477498924, 0.0766186874204361, 0.07300117689776386, 0.3978521493117628, 0.7293533971641823, 0.24040337450518035, 0.46827469198568006, 0.03737110954461231, 0.48112847828662497, 0.5755848065786346, 0.12151472907643468, 0.332302417201758, 0.3208349144509022, 0.13406270144296106, 0.47820199098358873, 0.024219732643774528, 0.7923035912680444, 0.3099424932714111, 0.8494816644677875, 0.15230116664989468, 0.8795672599938588, 0.34536882843285344, 0.587897812361327, 0.3660303223369904, 0.3074082248441362, 0.1925553058603695, 0.1582957933341015, 0.5297945963993664, 0.1892543681582496, 0.06574637766643598, 0.03286461121245521, 0.6223124217546917, 0.48666930315350876, 0.17200815643270417, 0.27042696199957883, 0.16010429726024444, 0.25291734909108765, 0.22778758435893687, 0.6055190518965303, 0.41989528411161425, 0.2865861541738164, 0.17344095530188786, 0.4163761941495938, 0.24610426408478792, 0.029106329843254564, 0.5849270471051293, 0.09607886499379148, 0.4890296174547498, 0.11193395874659995, 0.3667485749721523, 0.29672938182784603, 0.13696827462710404, 0.03986507081677082, 0.41542023534722683, 0.1642424989032959, 0.041559354155004224, 0.1266666793707928, 0.5259198205822933, 0.42123490919744344, 0.6147437654518444, 0.42849246998341506, 0.04874684240881699, 0.16870816563337898, 0.35179373534084035, 0.4552463954734379, 0.1543174595222413, 0.4641274821418986, 0.1106599594415556, 0.40441066041397966, 0.05916303638108533, 0.24194101851814365, 0.5755848065786346, 0.23631147082452741, 0.04679471849088612, 0.33132995382553565, 0.6031606095022326, 0.16900214819844117, 0.9322526967181247, 0.1065938389205352, 0.0540586741766943, 0.14920224829950646, 0.03054451782098533, 0.13595064656866984, 0.15908339514281045, 0.09402391562754642, 0.27219479721363327, 0.10477531970828624, 0.6046547135519548, 0.04412971358840656, 0.0821245873848182, 0.24953715645213048, 0.24311299470472425, 0.679537413518331, 0.02875041056121841, 0.2874129658970298, 0.17131102264191878, 0.07042427222914205, 0.1577516063520068, 0.39934634677258996, 0.42249259173992826, 0.24940231538328683, 0.46827469198568006, 0.040988937643475554, 0.034828704291737345, 0.26663563965858417, 0.22421743312747255, 0.10716094829621758, 0.7421831263598226, 0.4644511163280224, 0.1591307416719686, 0.21502194578256428, 0.12883185373794437, 0.15520095945599266, 0.04280666734842442, 0.06928764484923078, 0.3578757504587543, 0.0760792945579073, 0.06637805380770656, 0.5755848065786346, 0.4326356954473739, 0.16985579355455038, 0.47152805642545803, 0.11644579282256762, 0.11790522998710073, 0.5438286352264949, 0.41561805514360906, 0.050606352251634235, 0.21836830194439782, 0.22298545275517268, 0.1504846162366139, 0.16819644397314482, 0.47796113776613436, 0.14100197907825862, 0.7878397890034206, 0.12176963827920351, 0.09814942480303201, 0.23162396036129984, 0.04400104962869911, 0.061588508633294015, 0.2774601068082493, 0.40816383821078206, 0.14036214651023216, 0.11837607594274324, 0.0703155477214753, 0.17002415827487982, 0.24611532014486182, 0.06874641727313702, 0.30975746960573625, 0.07004288447243323, 0.6453829176356538, 0.3880412370469972, 0.10205495289732236, 0.12171087020281346, 0.38550692709735157, 0.4398162761337091, 0.5769741243450848, 0.48842976274850136, 0.3866799681687785, 0.17129518728202664, 0.5711206597512044, 0.4456070955069118, 0.4585850027539752, 0.25462747480751524, 0.34771016550763867, 0.35548618548401445, 0.07878090041588082, 0.3008706318705062, 0.08117751180329491, 0.055511805197920094, 0.1600174453683395, 0.35597309965685686, 0.5473978930443646, 0.3321771897262046, 0.14643302530661162, 0.7653011157176768, 0.24188431843396252, 0.16704799028757666, 0.41136103198090634, 0.5749869949413896, 0.709238838470871, 0.09340318303147321, 0.602429869503323, 0.04154705947390969, 0.7519582179986716, 0.15993940416551844, 0.04372375151311325, 0.4076899811241429, 0.4644511163280224, 0.3133137248525114, 0.24628490675063597, 0.06972977174174444, 0.15949948541388637, 0.2241543425141257, 0.1729876202034616, 0.07290025122558275, 0.1220000714032804, 0.36493953208423235, 0.09420126302076737, 0.026726938234992392, 0.7199273032686843, 0.4606762448039463, 0.04906818437448113, 0.19446415942665518, 0.14876853598344464, 0.3247816953453747, 0.023320858692869595, 0.7310618090422621, 0.48944479260603346, 0.20357574295749958, 0.0840537250624015, 0.5368744051465595, 0.21101467800102214, 0.46682279298460017, 0.3749869638443927, 0.46592999202179275, 0.10188412989688433, 0.15751976448865512], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"total.sulfur.dioxide\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"total.sulfur.dioxide\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}, \"All_density\": {\"data\": [{\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Reference<br>density=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [0.992, 0.9964, 0.99097, 0.99511, 0.9934, 0.99558, 0.98894, 0.9909, 0.9902, 0.98994, 0.9926, 0.99458, 0.9951, 1.0, 0.9955, 0.9954, 0.99, 1.0032, 0.99002, 0.99364, 0.99566, 0.99175, 0.9928, 0.99085, 0.9938, 0.9938, 0.98742, 0.9955, 0.9942, 0.9892, 0.9911, 0.99728, 0.9914, 0.99035, 0.99076, 0.99855, 0.9969, 0.98892, 0.99015, 0.99089, 0.98954, 0.9945, 0.9971, 0.99245, 0.99676, 0.9972, 0.9978, 0.992, 0.9962, 0.9906, 0.9978, 0.9991, 0.98998, 0.99304, 0.992, 0.9979, 0.99201, 0.98941, 0.992, 0.992, 0.99758, 0.99016, 0.991, 0.993, 1.001, 0.9984, 0.99064, 0.9941, 0.9954, 0.99146, 0.9918, 0.98934, 0.99278, 0.99316, 0.9965, 0.99556, 0.9973, 0.98928, 0.99638, 0.9916, 0.995, 0.99012, 0.99109, 0.997, 0.9935, 0.99096, 0.9918, 0.9982, 0.9896, 0.9984, 0.9919, 0.9918, 0.9942, 0.9912, 0.99471, 0.99241, 0.99567, 0.98959, 0.98984, 0.9946, 0.9934, 0.9986, 0.99638, 0.9951, 0.98914, 0.9938, 0.9925, 0.9946, 0.99058, 0.99472, 0.99002, 1.0103, 0.99208, 0.99666, 0.99202, 0.9889, 0.99034, 0.98974, 0.999, 0.99534, 0.99808, 0.9924, 0.9974, 0.998, 0.99678, 0.99538, 0.9958, 0.9974, 0.9931, 0.9983, 0.9934, 0.98746, 0.9998, 0.99624, 0.9966, 0.98976, 0.99834, 0.99627, 0.98968, 0.998, 0.99007, 0.9945, 0.99452, 0.9935, 0.9984, 0.9938, 0.99279, 0.9905, 0.9948, 0.9974, 0.99792, 0.998, 0.99256, 0.99775, 0.99835, 0.99189, 0.99033, 0.9908, 0.9931, 0.98972, 0.9949, 0.99616, 0.99014, 0.9974, 0.9938, 0.9962, 0.99642, 0.9942, 0.9977, 0.9894, 0.99566, 0.9964, 0.993, 0.99507, 0.9964, 0.9948, 0.9964, 0.9939, 0.99174, 0.99736, 0.99462, 0.99, 0.99458, 0.9895, 0.9949, 0.991, 0.98758, 0.9973, 0.9912, 0.9932, 0.99183, 0.99378, 0.9918, 0.99269, 0.99744, 0.9901, 0.99353, 0.99178, 0.99041, 0.99184, 0.9948, 0.9916, 0.9926, 0.99504, 0.99394, 0.99408, 0.9974, 0.9944, 0.99807, 0.9982, 0.9928, 0.9916, 0.99111, 0.99215, 0.99089, 0.9934, 0.99112, 0.9938, 0.99276, 0.98954, 0.9926, 0.9997, 0.9923, 0.9907, 0.99814, 0.9938, 0.9986, 0.99945, 0.993, 0.99471, 0.99235, 0.9928, 0.99379, 0.99522, 0.99224, 0.99324, 0.9922, 0.9954, 0.9908, 0.99397, 0.99558, 0.9979, 0.9931, 0.99955, 0.99588, 0.9938, 0.9937, 0.99776, 0.9953, 0.98994, 1.0003, 0.9986, 0.9982, 0.99672, 0.99674, 0.99278, 0.99022, 0.99396, 0.9912, 0.9948, 0.9973, 0.9911, 0.99153, 0.991, 0.99119, 0.9911, 0.991, 0.99652, 0.99489, 0.98942, 0.99144, 0.9949, 0.99254, 0.99252, 0.98919, 0.99784, 0.99469, 0.99523, 0.99378, 0.99212, 0.9941, 0.9911, 0.99008, 0.98963, 0.99116, 0.99545, 0.99946, 0.997, 0.9971, 0.99044, 0.9924, 0.9916, 0.99408, 0.99174, 0.9937, 0.9955, 0.9972, 0.9921, 0.99199, 0.994, 0.99387, 0.99462, 0.992, 0.9928, 0.994, 0.99534, 0.9945, 0.99057, 0.9999, 0.99274, 0.99685, 0.9983, 0.99362, 0.9923, 0.9925, 1.0002, 0.9942, 0.98912, 0.99094, 0.9892, 0.98914, 0.9908, 0.9918, 0.9927, 0.9917, 0.9972, 0.9954, 0.99546, 0.9974, 0.99198, 0.99308, 0.99066, 0.9986, 0.99464, 0.9917, 0.99954, 0.99202, 0.99414, 0.9982, 0.9952, 0.9962, 0.9934, 0.9891, 0.9941, 0.99573, 0.9936, 0.9967, 0.99685, 0.98918, 0.9986, 0.99518, 0.9932, 0.99469, 0.99109, 0.99705, 0.9917, 0.9964, 0.98987, 0.9996, 0.9904, 0.99886, 0.9924, 0.997, 0.99494, 0.99745, 0.99606, 0.98999, 0.9909, 0.99615, 0.9975, 0.9926, 0.9918, 0.9929, 0.9948, 0.99036, 0.99228, 0.98984, 0.99822, 0.99299, 0.9987, 1.0015, 0.99563, 0.9984, 0.9984, 0.9957, 0.99194, 1.00369, 0.993, 0.9952, 0.99035, 0.9916, 0.99896, 0.9945, 0.9927, 0.9954, 0.99549, 0.9922, 1.00295, 0.98956, 0.9973, 0.9961, 0.997, 0.99352, 0.9994, 0.99238, 0.99524, 0.9927, 0.9917, 0.9914, 0.9957, 0.99304, 0.99331, 0.99108, 0.992, 0.9923, 0.99064, 0.9921, 0.999, 0.99392, 0.9944, 0.99546, 0.99326, 0.995, 0.99792, 0.99534, 0.9908, 0.99158, 0.99136, 0.99122, 0.9928, 0.9931, 0.99063, 0.99024, 0.9898, 0.993, 0.98816, 0.9965, 0.99586, 0.9925, 0.9986, 0.9912, 0.9916, 0.99132, 0.996, 0.99358, 0.9938, 0.9977, 0.9934, 0.9978, 0.99074, 0.99048, 0.9898, 0.98994, 0.99342, 0.9966, 1.0004, 0.9948, 0.99514, 0.99596, 0.99602, 0.9986, 0.9971, 1.0003, 1.00051, 0.99084, 0.99566, 0.9927, 0.9912, 0.99581, 0.995, 0.9972, 0.99656, 0.9965, 0.99975, 0.99052, 0.989, 0.9916, 0.99455, 0.99393, 0.9924, 0.9946, 1.00038, 0.99906, 0.9958, 0.99475, 0.9935, 0.9906, 0.99835, 0.98883, 0.9932, 0.99863, 0.99686, 0.99322, 0.99678, 0.99331, 0.9925, 0.9978, 0.99392, 0.99105, 0.99384, 0.99596, 0.99216, 0.99321, 0.9979, 0.99124, 0.99472, 0.98946, 0.9945, 0.98926, 0.9925, 0.9898, 0.99066, 0.99587, 0.9984, 0.98942, 0.98876, 0.99045, 0.9975, 0.9913, 0.9906, 0.99416, 0.98794, 0.9925, 0.9911, 0.99675, 0.98931, 0.9983, 0.992, 0.99658, 0.99136, 0.9991, 0.9964, 0.992, 0.99658, 0.9923, 0.9965, 0.9952, 0.99461, 0.99287, 0.9918, 0.9944, 0.98944, 0.9976, 0.9953, 0.99074, 0.98794, 0.99643, 0.9954, 0.99114, 0.99374, 0.99218, 0.9948, 0.993, 0.9966, 0.99152, 0.99498, 0.9925, 0.99615, 0.99715, 0.99056, 0.9937, 0.9965, 0.9906, 0.9982, 0.99157, 0.9919, 0.99157, 0.9953, 0.9898, 0.99543, 0.9899, 0.9937, 0.99203, 0.99036, 0.99008, 0.9892, 0.99971, 0.992, 0.99785, 0.9927, 0.99044, 0.9912, 0.995, 0.995, 0.9942, 0.99522, 0.98856, 0.9939, 0.9927, 0.99095, 0.9972, 0.98946, 0.99542, 0.98944, 0.9985, 0.99411, 0.99266, 0.9962, 0.99268, 0.9971, 0.9917, 0.9925, 0.9968, 0.99142, 0.9964, 0.9979, 0.99214, 0.99737, 0.9917, 0.99807, 0.99334, 0.99798, 0.99558, 0.9972, 0.98946, 0.99543, 0.9934, 0.9938, 0.9947, 0.9969, 0.99752, 0.99082, 0.9983, 0.9962, 0.99692, 0.9928, 0.998, 0.9909, 0.99494, 0.98987, 0.99578, 0.997, 0.9986, 0.99544, 0.99321, 0.99072, 0.9985, 0.99494, 0.99118, 0.9968, 0.99112, 1.0004, 0.9907, 0.9921, 0.9934], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Current<br>density=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [0.9934, 0.9979, 0.99234, 0.9932, 0.99686, 0.9927, 0.9926, 0.99362, 0.989435, 0.99239, 1.0, 0.9908, 0.98918, 0.99168, 0.98904, 0.9932, 0.99438, 0.99189, 0.999, 0.9903, 0.999, 0.9986, 0.992, 0.9935, 0.99541, 0.9893, 0.99326, 0.99146, 0.99144, 0.99165, 0.98889, 0.9957, 0.9992, 0.99449, 0.98871, 0.9936, 0.9914, 0.99488, 0.98988, 0.995, 0.99123, 0.99014, 0.9958, 0.9986, 0.9974, 0.99417, 0.9998, 0.9968, 0.9969, 0.9908, 0.9972, 0.9917, 0.9946, 0.9922, 0.99376, 1.0006, 0.998, 0.9916, 0.99795, 0.99652, 0.99724, 0.99727, 0.99206, 0.99406, 0.99534, 0.98964, 0.9966, 0.9951, 0.99236, 0.9945, 0.9986, 0.99064, 0.99815, 0.99313, 0.9983, 0.99668, 0.99922, 0.99207, 0.9949, 0.9975, 0.98972, 0.9923, 0.99492, 0.9914, 0.9965, 0.99536, 0.99652, 0.99456, 0.9932, 0.994, 0.99526, 0.9934, 0.9904, 0.98836, 0.9931, 0.99148, 0.99704, 0.99018, 0.9968, 0.99376, 0.993, 0.99596, 0.99438, 0.98882, 0.9986, 0.99566, 0.996, 0.99262, 0.99132, 0.99159, 0.99551, 1.0103, 0.99144, 0.9893, 0.99171, 0.9934, 0.99238, 0.9934, 0.99552, 0.9989, 0.99322, 0.98976, 0.99384, 0.99, 0.99638, 0.99649, 0.9981, 0.991, 0.9984, 0.98961, 0.98961, 0.9933, 0.98918, 1.00014, 0.9931, 1.0006, 0.99667, 0.9979, 0.99252, 0.9917, 0.9943, 0.995, 0.9994, 0.99576, 0.99745, 0.9916, 0.9993, 0.9991, 0.993, 0.9927, 0.99564, 0.99094, 0.997, 0.9987, 0.98954, 0.9912, 0.99676, 0.9947, 0.99232, 0.9979, 0.9898, 0.9983, 0.98934, 0.99394, 0.9992, 0.9913, 0.99458, 0.9959, 0.99554, 0.9932, 0.99099, 0.9923, 0.99665, 0.99738, 0.9907, 0.9927, 0.991, 0.99154, 0.98872, 0.99444, 0.9943, 0.99646, 0.9934, 1.0002, 0.9956, 0.99314, 0.999, 0.9908, 1.001, 0.9949, 0.99278, 0.9984, 0.99076, 0.99064, 0.9931, 0.9918, 0.99173, 0.9893, 0.9993, 0.99612, 0.9914, 0.99312, 0.9937, 0.9929, 0.99294, 0.9928, 0.9947, 0.999, 0.993, 0.99742, 0.99224, 0.98986, 0.9948, 0.98998, 1.0006, 0.99162, 0.99232, 0.9914, 0.9922, 0.99, 0.9914, 0.9956, 0.9975, 0.99544, 0.9994, 0.9971, 0.99134, 0.9941, 0.99617, 0.99194, 0.99842, 0.9951, 0.994, 0.9922, 0.9956, 1.0004, 0.99031, 0.99164, 0.99216, 0.9917, 0.9938, 0.99176, 0.99313, 0.9959, 0.9956, 0.996, 0.99807, 0.9986, 0.9931, 0.9984, 0.9948, 0.9983, 1.0006, 0.9912, 0.99581, 0.99676, 0.9933, 0.99095, 0.98924, 0.99067, 0.99498, 0.9946, 0.9931, 0.99435, 0.9938, 0.99055, 0.9912, 0.99516, 0.9958, 0.9968, 0.99454, 0.99182, 0.98878, 0.9988, 0.9962, 0.9977, 0.9932, 0.99498, 0.99154, 0.99512, 0.9979, 0.99088, 0.99161, 0.99494, 0.99158, 0.9963, 0.99188, 0.99035, 0.9945, 0.9924, 1.0003, 0.9994, 0.99655, 0.98974, 0.99152, 0.99296, 0.99782, 0.99173, 0.9975, 0.9924, 0.98944, 0.9932, 0.99184, 0.9912, 0.9976, 0.99534, 0.98986, 0.99287, 0.991, 0.99047, 0.99691, 0.99165, 0.99646, 0.99708, 0.9902, 0.99178, 0.9963, 0.99232, 0.9938, 0.9934, 0.99176, 0.99408, 0.99572, 0.9998, 1.0026, 0.99, 0.992, 0.99734, 0.9975, 0.99204, 0.99492, 0.99666, 0.9994, 0.997, 0.99288, 0.994, 0.9996, 0.99685, 0.9958, 0.99346, 0.99215, 0.99521, 0.9974, 0.9956, 0.9967, 0.99406, 0.9936, 0.9926, 0.9982, 0.99086, 0.9955, 0.99158, 0.99975, 0.9987, 0.9966, 0.9926, 0.99815, 0.99366, 0.99706, 0.99358, 0.99071, 0.99582, 0.9988, 0.9986, 0.99551, 0.9956, 0.99862, 0.9957, 0.99882, 0.99324, 0.98823, 0.9952, 0.992, 0.99043, 1.0002, 0.99655, 0.98942, 0.99356, 0.99553, 0.99315, 0.9954, 0.9928, 0.99226, 0.9958, 0.99, 0.9948, 0.992, 0.9898, 0.99354, 0.99186, 0.99404, 0.99922, 0.992, 0.9988, 0.9939, 0.99557, 0.9999, 0.99531, 0.9903, 0.992, 0.9938, 0.991, 0.9907, 0.99784, 0.98952, 0.998, 0.9952, 0.99148, 0.99792, 0.99058, 0.9974, 0.99282, 0.9923, 0.9927, 0.99519, 0.9967, 0.9951, 0.99683, 0.99165, 0.99176, 0.99006, 0.99002, 0.99736, 0.99612, 0.9987, 0.9908, 0.9946, 0.99445, 0.98965, 0.9904, 0.99086, 0.9934, 0.99046, 0.9902, 0.99774, 0.9984, 0.996, 0.9976, 0.991, 0.99808, 0.9986, 0.9934, 0.9963, 0.9954, 0.98956, 0.9988, 0.99084, 0.99314, 0.99522, 0.99739, 0.99704, 0.9959, 0.9941, 0.99458, 0.99971, 0.9919, 0.99544, 0.99094, 0.9992, 0.99416, 0.99189, 0.98936, 0.99352, 0.9984, 0.99276, 0.9939, 0.9926, 0.993, 0.9928, 0.9966, 0.9944, 0.9952, 0.99467, 0.9984, 0.9943, 0.99381, 0.9946, 0.99121, 0.99174, 0.99052, 0.9944, 0.9927, 0.9962, 0.99552, 0.9958, 0.994, 0.99184, 0.98916, 0.99581, 0.99522, 0.9957, 0.9998, 0.99444, 0.99599, 0.9944, 0.9982, 0.9925, 0.9979, 0.99331, 0.9997, 0.99018, 0.99517, 0.9986, 0.9908, 0.98815, 0.99862, 0.99566, 0.9906, 0.9984, 0.9916, 0.99418, 0.992, 0.98779, 0.9915, 0.9934, 0.99, 0.99824, 0.9986, 0.9956, 0.99439, 0.9887, 0.9968, 0.9906, 0.9965, 0.9901, 0.99772, 0.9948, 0.991, 0.9947, 0.9984, 0.99572, 0.99388, 0.9976, 0.989315, 0.99358, 0.9926, 0.9978, 0.996, 0.99636, 0.99784, 0.99316, 0.99339, 0.99724, 0.9921, 0.98845, 0.99437, 0.99708, 0.99614, 0.98992, 0.9986, 0.9997, 0.99362, 0.9928, 0.99552, 0.99115, 0.99508, 0.99556, 0.98964, 0.9903, 0.99221, 0.99676, 0.9954, 0.99825, 0.99546, 0.9948, 0.991, 0.9945, 0.99479, 0.98912, 0.99042, 0.9963, 0.99787, 0.9916, 0.99742, 0.9893, 0.99158, 0.9954, 0.99172, 0.9925, 0.9906, 0.99459, 0.9976, 0.99456, 0.9893, 0.9931, 0.9927, 0.9963, 0.997, 0.9931, 0.99514, 0.9968, 0.99354, 0.9948, 0.99261, 0.99454, 0.9994, 0.99198, 0.998, 0.9928, 0.99068, 0.99384, 0.99275, 0.9952, 0.9932, 0.99165, 0.99616, 0.99659, 0.9924, 0.99316, 0.992, 0.9928, 0.99532, 0.9936, 0.98939, 0.99616, 0.99367, 0.98892, 0.99596, 0.99784, 0.99267, 0.99347, 0.9919, 0.99089, 0.99425, 0.99226, 0.989465, 0.9902, 0.995, 0.99565, 0.99192, 0.9964, 1.0014, 0.9898, 0.9922, 0.99166, 0.99576, 0.9884, 0.99764, 0.9951, 0.9953, 0.98964, 1.0001, 0.99837, 0.9934, 0.998, 0.99586, 0.99014, 0.99455], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Reference<br>density=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [0.9976, 0.991, 0.9936, 0.9949, 0.99922, 0.9976, 0.9944, 0.99648, 0.996, 0.99898, 0.99914, 0.9927, 0.9982, 0.99244, 0.9932, 0.99459, 0.99655, 0.994, 0.99904, 0.9964, 0.9927, 0.9964, 0.9958, 0.99242, 0.9979, 0.997, 0.99403, 0.9979, 0.99741, 0.99266, 0.9969, 0.9932, 0.9965, 0.9948, 0.9975, 0.9958, 0.9935, 0.99519, 0.9971, 0.9958, 0.99792, 0.99828, 0.9928, 0.9941, 0.99593, 0.99773, 0.9925, 0.99254, 0.99628, 0.9957, 0.9974, 0.99824, 0.9951, 1.0002, 0.99699, 0.9988, 0.9959, 0.99212, 0.9926, 1.0001, 0.9972, 0.998, 0.99334, 0.997, 0.99733, 0.992, 0.9964, 0.9956, 0.9973, 0.993, 0.9963, 0.99817, 0.9976, 0.99048, 0.99166, 0.99208, 0.99745, 0.9941, 0.99892, 0.99152, 0.99397, 0.9948, 0.9957, 0.99585, 0.99382, 0.99699, 0.995, 0.9932, 0.9941, 0.9937, 0.99817, 0.9961, 0.9964, 0.9976, 1.0, 0.99548, 0.998, 0.996, 0.99528, 0.9998, 0.9982, 0.9982, 0.99405, 1.0008, 0.99625, 0.9973, 0.99684, 0.9902, 0.9963, 0.99502, 0.9956, 0.9937, 0.9958, 0.9949, 0.99634, 0.99642, 0.9976, 0.99001, 0.9985, 0.9934, 0.9976, 0.99374, 0.9968, 0.99687, 0.998, 0.99718, 0.99437, 0.9963, 0.9959, 0.99579, 0.9939, 1.001, 0.99478, 0.99604, 0.99534, 0.9946, 0.9956, 0.9986, 0.99138, 0.9962, 0.9989, 0.99582, 0.9904, 0.99736, 0.99287, 0.9932, 0.9924, 0.99678, 0.9981, 0.9972, 0.9912, 0.99783, 0.9907, 0.99669, 0.99317, 0.99656, 1.001, 0.9969, 0.9938, 0.9905, 0.9928, 0.9988, 0.9981, 0.99429, 0.99587, 0.9942, 0.99504, 0.9986, 0.99738, 0.9958, 0.99537, 0.98956, 0.9981, 0.99873, 0.9966, 0.99682, 0.9961, 0.99166, 0.9968, 0.9937, 0.99308, 0.9964, 0.9924, 0.9946, 0.9982, 0.99512, 0.9994, 0.99098, 0.99642, 0.9966, 0.9937, 0.992, 0.9968, 0.99036, 0.99548, 0.99672, 0.9968, 0.99388, 0.99907, 0.99255, 0.9937, 1.00242, 1.00242, 0.9966, 0.99234, 0.99625, 0.99184, 0.9982, 0.9942, 0.9897, 0.994, 0.99168, 0.9952, 0.9977, 0.99872, 0.99772, 0.9981, 0.9904, 0.9993, 0.9958, 0.99578, 0.99026, 0.9982, 0.9941, 0.99166, 0.99627, 0.9932, 1.0005, 0.9934, 0.998, 0.9944, 0.9938, 0.9957, 1.00044, 0.99026, 0.99244, 1.00118, 0.994, 0.99314, 0.9972, 0.99818, 0.99561, 0.99839, 0.9948, 0.99026, 0.99734, 0.9978, 0.99273, 0.99602, 0.9978, 1.001, 0.9944, 0.9965, 0.9966, 0.99434, 0.9987, 0.99496, 0.9934, 0.996, 1.0004, 0.9926, 0.9946, 0.998, 0.99238, 0.9954, 0.99479, 0.99362, 0.99296, 0.99633, 0.9977, 1.00241, 0.9984, 0.994, 0.99611, 0.9948, 0.99794, 0.9956, 0.99794, 0.99588, 0.9922, 0.9978, 0.99689, 0.9953, 0.99572, 0.9942, 0.99582, 0.9959, 0.9972, 0.9921, 0.9955, 0.9918, 0.9962, 0.9924, 0.99076, 0.99782, 0.99709, 0.99458, 0.99806, 0.9983, 0.998, 0.99346, 0.9937, 0.99814, 0.9966, 1.0001, 0.9926, 0.99943, 0.9955, 0.9986, 0.99657, 0.9945, 0.99558, 0.99689, 0.9955, 0.9979, 0.9938, 1.00098, 0.9984, 0.9969, 0.99732, 0.99647, 0.9968, 0.9955, 0.9962, 0.9949, 0.99663, 0.9976, 0.99454, 0.9967, 0.99577, 1.001, 0.9987, 0.99516, 0.9986, 0.99164, 0.9974, 0.99902, 1.0001, 0.99032, 0.99848, 0.9928, 0.9934, 0.9939, 0.9976, 0.9982, 0.99748, 0.99773, 0.9964, 0.994, 0.99898, 0.9966, 0.99575, 0.998, 0.9937, 0.99517], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Current<br>density=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [0.9966, 0.99556, 0.9939, 0.99126, 0.9996, 1.001, 0.99565, 0.998, 0.99692, 0.9997, 0.9956, 0.9918, 0.99513, 0.99587, 0.99869, 1.0, 0.9959, 1.0004, 0.99253, 0.9905, 0.9918, 0.9996, 0.9946, 0.9978, 0.99009, 0.9926, 0.997, 0.99898, 0.99215, 0.9931, 0.99839, 0.9944, 0.99798, 0.9963, 0.9926, 0.99341, 0.998, 0.9968, 0.9953, 0.9934, 0.9918, 0.99494, 0.9968, 0.9982, 0.992, 0.99212, 0.9976, 0.99616, 0.99911, 0.99244, 0.99454, 1.0011, 0.9937, 0.99612, 0.9976, 0.9963, 0.99748, 1.00315, 0.9966, 0.99848, 1.00315, 0.9976, 0.9962, 1.0006, 0.99657, 0.99592, 0.99702, 0.9978, 0.9965, 0.9956, 0.99654, 0.99093, 0.99212, 0.99694, 0.9938, 0.99174, 1.0, 0.9918, 0.99345, 0.99717, 0.9966, 0.99576, 0.9972, 0.9968, 0.9938, 0.9923, 0.9967, 0.99976, 0.992, 0.9978, 0.9951, 0.9936, 0.998, 0.9991, 0.99683, 0.99476, 0.9958, 0.9986, 0.9972, 0.99596, 0.99918, 0.99479, 1.0, 0.9955, 0.9954, 0.99584, 0.9984, 0.99448, 0.99416, 0.9989, 0.9964, 0.9983, 0.99712, 0.99362, 0.9926, 0.99669, 0.99676, 0.99471, 0.9955, 0.9958, 0.9962, 0.99182, 0.9946, 0.996, 0.99546, 0.99915, 0.99111, 0.9997, 0.99546, 0.9938, 0.98876, 0.99734, 0.9991, 0.992, 0.99694, 0.9976, 0.993, 0.9976, 0.99681, 0.99494, 0.9938, 0.9938, 0.99239, 0.9939, 0.9992, 0.99677, 0.99176, 0.9958, 0.9964, 0.99568, 0.9932, 0.99942, 0.9973, 0.9958, 0.99344, 0.9928, 0.99481, 0.99584, 0.99696, 0.9988, 0.99745, 0.99872, 0.99212, 0.9982, 0.9974, 0.9944, 0.9904, 0.99264, 0.99299, 0.99534, 0.9997, 0.9966, 0.9934, 0.99204, 0.9964, 0.98918, 0.9923, 0.99775, 0.99742, 0.99642, 0.9941, 0.99688, 1.0004, 0.9927, 0.99705, 0.99154, 0.9958, 0.9989, 0.9936, 0.99545, 0.99743, 0.99524, 0.99555, 0.99173, 0.9976, 0.9961, 0.9936, 0.99382, 0.99947, 0.997, 0.9962, 0.9976, 0.9983, 0.9986, 0.98993, 0.99922, 0.9958, 0.9994, 0.9974, 0.9977, 0.998, 0.99458, 0.99552, 0.99194, 0.9953, 0.99084, 0.9973, 0.9966, 0.99288, 0.9928, 0.9975, 0.9961, 0.9982, 0.9952, 0.9934, 0.996, 0.998, 0.9961, 0.99366, 0.99138, 0.9991, 0.99305, 1.0001, 0.9981, 0.9965, 0.99628, 0.99164, 0.99193, 0.9991, 0.9931, 0.99771, 0.9993, 0.99176, 0.9962, 0.99048, 0.9944, 0.9936, 0.99469, 0.9986, 0.99362, 0.9978, 0.99884, 0.9958, 0.99779, 0.9927, 0.99924, 0.9962, 0.9958, 0.99692, 0.99818, 0.99732, 0.99471, 0.9978, 0.9978, 0.99402, 0.99211, 0.9956, 0.99176, 0.99032, 0.99488, 0.99069, 0.9994, 0.9998, 0.9955, 0.99514, 0.9929, 0.99907, 0.998, 0.9958, 0.9968, 0.9983, 0.9993, 0.99047, 0.99202, 0.9986, 0.99185, 0.99249, 0.9943, 0.9911, 0.99726, 0.99527, 0.9944, 0.99626, 0.99746, 0.99304, 0.9984, 0.99274, 0.9955, 0.99804, 0.9986, 0.99182, 0.9996, 0.99454, 0.997, 0.99718, 0.9904, 0.9986, 0.9962, 1.0004, 0.9954, 0.9965, 0.99516, 0.9944, 0.9998, 0.9944, 0.998, 0.9938, 0.99558, 0.9956, 0.9932, 0.997, 0.9954, 0.99773, 0.9953, 0.9994, 0.9963, 0.9991, 0.9969, 0.9956, 0.99212, 0.9967, 0.9968, 0.9918, 0.9914, 0.9964, 0.992, 0.99198, 0.99271, 1.0001, 0.9952, 0.9958, 0.9978, 0.9953, 0.99652, 0.9994, 0.99242, 0.9979, 0.9966, 1.0001, 0.9932, 0.99372, 0.9917], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Reference\", \"x\": 0.245, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Current\", \"x\": 0.755, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"barmode\": \"overlay\", \"legend\": {\"title\": {\"text\": \"target\"}, \"tracegroupgap\": 0}, \"margin\": {\"t\": 60}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.49], \"title\": {\"text\": \"density\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.51, 1.0], \"matches\": \"x\", \"title\": {\"text\": \"density\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"count\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}}}, \"density_good\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (ref)\", \"type\": \"scatter\", \"x\": [0.992, 0.9964, 0.99097, 0.99511, 0.9934, 0.99558, 0.98894, 0.9909, 0.9902, 0.98994, 0.9926, 0.99458, 0.9951, 1.0, 0.9955, 0.9954, 0.99, 1.0032, 0.99002, 0.99364, 0.99566, 0.99175, 0.9928, 0.99085, 0.9938, 0.9938, 0.98742, 0.9955, 0.9942, 0.9892, 0.9911, 0.99728, 0.9914, 0.99035, 0.99076, 0.99855, 0.9969, 0.98892, 0.99015, 0.99089, 0.98954, 0.9945, 0.9971, 0.99245, 0.99676, 0.9972, 0.9978, 0.992, 0.9962, 0.9906, 0.9978, 0.9991, 0.98998, 0.99304, 0.992, 0.9979, 0.99201, 0.98941, 0.992, 0.992, 0.99758, 0.99016, 0.991, 0.993, 1.001, 0.9984, 0.99064, 0.9941, 0.9954, 0.99146, 0.9918, 0.98934, 0.99278, 0.99316, 0.9965, 0.99556, 0.9973, 0.98928, 0.99638, 0.9916, 0.995, 0.99012, 0.99109, 0.997, 0.9935, 0.99096, 0.9918, 0.9982, 0.9896, 0.9984, 0.9919, 0.9918, 0.9942, 0.9912, 0.99471, 0.99241, 0.99567, 0.98959, 0.98984, 0.9946, 0.9934, 0.9986, 0.99638, 0.9951, 0.98914, 0.9938, 0.9925, 0.9946, 0.99058, 0.99472, 0.99002, 1.0103, 0.99208, 0.99666, 0.99202, 0.9889, 0.99034, 0.98974, 0.999, 0.99534, 0.99808, 0.9924, 0.9974, 0.998, 0.99678, 0.99538, 0.9958, 0.9974, 0.9931, 0.9983, 0.9934, 0.98746, 0.9998, 0.99624, 0.9966, 0.98976, 0.99834, 0.99627, 0.98968, 0.998, 0.99007, 0.9945, 0.99452, 0.9935, 0.9984, 0.9938, 0.99279, 0.9905, 0.9948, 0.9974, 0.99792, 0.998, 0.99256, 0.99775, 0.99835, 0.99189, 0.99033, 0.9908, 0.9931, 0.98972, 0.9949, 0.99616, 0.99014, 0.9974, 0.9938, 0.9962, 0.99642, 0.9942, 0.9977, 0.9894, 0.99566, 0.9964, 0.993, 0.99507, 0.9964, 0.9948, 0.9964, 0.9939, 0.99174, 0.99736, 0.99462, 0.99, 0.99458, 0.9895, 0.9949, 0.991, 0.98758, 0.9973, 0.9912, 0.9932, 0.99183, 0.99378, 0.9918, 0.99269, 0.99744, 0.9901, 0.99353, 0.99178, 0.99041, 0.99184, 0.9948, 0.9916, 0.9926, 0.99504, 0.99394, 0.99408, 0.9974, 0.9944, 0.99807, 0.9982, 0.9928, 0.9916, 0.99111, 0.99215, 0.99089, 0.9934, 0.99112, 0.9938, 0.99276, 0.98954, 0.9926, 0.9997, 0.9923, 0.9907, 0.99814, 0.9938, 0.9986, 0.99945, 0.993, 0.99471, 0.99235, 0.9928, 0.99379, 0.99522, 0.99224, 0.99324, 0.9922, 0.9954, 0.9908, 0.99397, 0.99558, 0.9979, 0.9931, 0.99955, 0.99588, 0.9938, 0.9937, 0.99776, 0.9953, 0.98994, 1.0003, 0.9986, 0.9982, 0.99672, 0.99674, 0.99278, 0.99022, 0.99396, 0.9912, 0.9948, 0.9973, 0.9911, 0.99153, 0.991, 0.99119, 0.9911, 0.991, 0.99652, 0.99489, 0.98942, 0.99144, 0.9949, 0.99254, 0.99252, 0.98919, 0.99784, 0.99469, 0.99523, 0.99378, 0.99212, 0.9941, 0.9911, 0.99008, 0.98963, 0.99116, 0.99545, 0.99946, 0.997, 0.9971, 0.99044, 0.9924, 0.9916, 0.99408, 0.99174, 0.9937, 0.9955, 0.9972, 0.9921, 0.99199, 0.994, 0.99387, 0.99462, 0.992, 0.9928, 0.994, 0.99534, 0.9945, 0.99057, 0.9999, 0.99274, 0.99685, 0.9983, 0.99362, 0.9923, 0.9925, 1.0002, 0.9942, 0.98912, 0.99094, 0.9892, 0.98914, 0.9908, 0.9918, 0.9927, 0.9917, 0.9972, 0.9954, 0.99546, 0.9974, 0.99198, 0.99308, 0.99066, 0.9986, 0.99464, 0.9917, 0.99954, 0.99202, 0.99414, 0.9982, 0.9952, 0.9962, 0.9934, 0.9891, 0.9941, 0.99573, 0.9936, 0.9967, 0.99685, 0.98918, 0.9986, 0.99518, 0.9932, 0.99469, 0.99109, 0.99705, 0.9917, 0.9964, 0.98987, 0.9996, 0.9904, 0.99886, 0.9924, 0.997, 0.99494, 0.99745, 0.99606, 0.98999, 0.9909, 0.99615, 0.9975, 0.9926, 0.9918, 0.9929, 0.9948, 0.99036, 0.99228, 0.98984, 0.99822, 0.99299, 0.9987, 1.0015, 0.99563, 0.9984, 0.9984, 0.9957, 0.99194, 1.00369, 0.993, 0.9952, 0.99035, 0.9916, 0.99896, 0.9945, 0.9927, 0.9954, 0.99549, 0.9922, 1.00295, 0.98956, 0.9973, 0.9961, 0.997, 0.99352, 0.9994, 0.99238, 0.99524, 0.9927, 0.9917, 0.9914, 0.9957, 0.99304, 0.99331, 0.99108, 0.992, 0.9923, 0.99064, 0.9921, 0.999, 0.99392, 0.9944, 0.99546, 0.99326, 0.995, 0.99792, 0.99534, 0.9908, 0.99158, 0.99136, 0.99122, 0.9928, 0.9931, 0.99063, 0.99024, 0.9898, 0.993, 0.98816, 0.9965, 0.99586, 0.9925, 0.9986, 0.9912, 0.9916, 0.99132, 0.996, 0.99358, 0.9938, 0.9977, 0.9934, 0.9978, 0.99074, 0.99048, 0.9898, 0.98994, 0.99342, 0.9966, 1.0004, 0.9948, 0.99514, 0.99596, 0.99602, 0.9986, 0.9971, 1.0003, 1.00051, 0.99084, 0.99566, 0.9927, 0.9912, 0.99581, 0.995, 0.9972, 0.99656, 0.9965, 0.99975, 0.99052, 0.989, 0.9916, 0.99455, 0.99393, 0.9924, 0.9946, 1.00038, 0.99906, 0.9958, 0.99475, 0.9935, 0.9906, 0.99835, 0.98883, 0.9932, 0.99863, 0.99686, 0.99322, 0.99678, 0.99331, 0.9925, 0.9978, 0.99392, 0.99105, 0.99384, 0.99596, 0.99216, 0.99321, 0.9979, 0.99124, 0.99472, 0.98946, 0.9945, 0.98926, 0.9925, 0.9898, 0.99066, 0.99587, 0.9984, 0.98942, 0.98876, 0.99045, 0.9975, 0.9913, 0.9906, 0.99416, 0.98794, 0.9925, 0.9911, 0.99675, 0.98931, 0.9983, 0.992, 0.99658, 0.99136, 0.9991, 0.9964, 0.992, 0.99658, 0.9923, 0.9965, 0.9952, 0.99461, 0.99287, 0.9918, 0.9944, 0.98944, 0.9976, 0.9953, 0.99074, 0.98794, 0.99643, 0.9954, 0.99114, 0.99374, 0.99218, 0.9948, 0.993, 0.9966, 0.99152, 0.99498, 0.9925, 0.99615, 0.99715, 0.99056, 0.9937, 0.9965, 0.9906, 0.9982, 0.99157, 0.9919, 0.99157, 0.9953, 0.9898, 0.99543, 0.9899, 0.9937, 0.99203, 0.99036, 0.99008, 0.9892, 0.99971, 0.992, 0.99785, 0.9927, 0.99044, 0.9912, 0.995, 0.995, 0.9942, 0.99522, 0.98856, 0.9939, 0.9927, 0.99095, 0.9972, 0.98946, 0.99542, 0.98944, 0.9985, 0.99411, 0.99266, 0.9962, 0.99268, 0.9971, 0.9917, 0.9925, 0.9968, 0.99142, 0.9964, 0.9979, 0.99214, 0.99737, 0.9917, 0.99807, 0.99334, 0.99798, 0.99558, 0.9972, 0.98946, 0.99543, 0.9934, 0.9938, 0.9947, 0.9969, 0.99752, 0.99082, 0.9983, 0.9962, 0.99692, 0.9928, 0.998, 0.9909, 0.99494, 0.98987, 0.99578, 0.997, 0.9986, 0.99544, 0.99321, 0.99072, 0.9985, 0.99494, 0.99118, 0.9968, 0.99112, 1.0004, 0.9907, 0.9921, 0.9934], \"xaxis\": \"x\", \"y\": [0.8156061324462894, 0.42491310922683634, 0.8867827646463432, 0.8014995238430205, 0.30499958310650876, 0.5817355832705369, 0.959171062334887, 0.7854416128369749, 0.9085690698200813, 0.8998600376511439, 0.6341165000693628, 0.412102187638673, 0.7643629411050379, 0.4710001938005606, 0.40182653035141874, 0.40438056362905367, 0.8870480016118494, 0.3650667978415713, 0.9064321709292111, 0.9327245345966092, 0.6458420185168736, 0.8821841129047617, 0.6704018506542557, 0.7655671181822064, 0.8616986618932058, 0.48774537944210006, 0.9637355036179479, 0.6794204065079696, 0.6044835155949141, 0.7867954023600708, 0.9137982268836646, 0.5867502063434873, 0.8048584290077971, 0.9718511071053526, 0.9627192884041744, 0.7978623718349598, 0.6091120966723917, 0.8943338178728011, 0.8853376735027229, 0.9045563504021151, 0.9264844632598176, 0.6342457655367447, 0.9414033426130164, 0.5636516403732365, 0.5172967922101196, 0.4836896337264441, 0.35199620689495453, 0.788779954566273, 0.9696552399248426, 0.772496554239754, 0.8132656157621138, 0.4539090261140653, 0.9333708926412786, 0.679765045723866, 0.48457442622955804, 0.4248820606938153, 0.6737819616086004, 0.8780741425819777, 0.38340602447337646, 0.90634085684919, 0.5574014604752268, 0.6804147683859246, 0.9077110088845216, 0.7718472635729894, 0.4717552048891654, 0.22222808308441652, 0.8616549355667619, 0.705749071892896, 0.4699129352300819, 0.9680524782819758, 0.8891353183282249, 0.9466602521798594, 0.8553382520847058, 0.7430243903066251, 0.6616131862201935, 0.6919609500216202, 0.96565744679506, 0.913108907487878, 0.5395521774612226, 0.9026238558501023, 0.6550941529376255, 0.9757876320152292, 0.8833495792027257, 0.6666029765862381, 0.8504582120840628, 0.9320215595878566, 0.7639947574915884, 0.6085229656221847, 0.9557131606798471, 0.46184432615952054, 0.5642658412077981, 0.8815615400732472, 0.7189203536918151, 0.9301020530176726, 0.7341394174346678, 0.7759189559372703, 0.8448078654733812, 0.9012666081120407, 0.8926028620066223, 0.5287492720273277, 0.6874206920638863, 0.37408584674942635, 0.8348370105186077, 0.8697567261320243, 0.9175759024810304, 0.44644098895981, 0.8874384748400057, 0.7787567487441118, 0.9416122482572158, 0.3265229243180111, 0.9308095750950773, 0.42267134533232753, 0.43068181214270274, 0.8727308285810839, 0.7201611177732586, 0.8430904589044517, 0.8140617541555761, 0.9456747441572588, 0.6672663325862807, 0.8756470416862959, 0.518871521713375, 0.7040615347784164, 0.4957960231649875, 0.6250130361556073, 0.27413726132188326, 0.5193133578087885, 0.37656641690434584, 0.5808048103476511, 0.7917827117482167, 0.36569143480873245, 0.7232542293832885, 0.9785934574433302, 0.5715075300165849, 0.8182555969893297, 0.5448461144048058, 0.9491291995847589, 0.4833587957991669, 0.3189279754564957, 0.9184825510014271, 0.5524830505676419, 0.9600429304649183, 0.7818180966165994, 0.7962710274484252, 0.7569429870375118, 0.46184432615952054, 0.7641514270390748, 0.9486763575522457, 0.8086368705092697, 0.6784536879503494, 0.6877019790624462, 0.6082670858563528, 0.6053794617794684, 0.6319330693089359, 0.4982105707488519, 0.6787928880949093, 0.9231980717613485, 0.8831230955067948, 0.6845485656817341, 0.8799204262605215, 0.9164563829924386, 0.7819268199067826, 0.23469888428232324, 0.9492377841603665, 0.8826092272015389, 0.6360541596480074, 0.5184081252698399, 0.6400126753125241, 0.542646305979658, 0.4479501208302092, 0.7783171875827786, 0.7867712153112567, 0.5236605417423803, 0.6959846197179591, 0.7925023358445066, 0.6683189355892497, 0.18737025221649042, 0.42506327048176057, 0.7272596040941706, 0.7314191754306454, 0.4827891324637794, 0.6649341228620356, 0.9038332731164471, 0.9588917860646077, 0.8945194928389463, 0.49833043835950624, 0.7997712594855277, 0.8577935987172323, 0.7622736922026153, 0.8039391974899521, 0.7396811504731934, 0.8115340233127679, 0.801728888664367, 0.738451208106372, 0.5859674792922007, 0.1865203674848816, 0.8773430435604171, 0.36888329310067386, 0.8651817982269884, 0.9067615420962557, 0.8594983988587351, 0.7437750884018276, 0.9145224932934428, 0.9135679891815164, 0.8001832456898428, 0.6860977766129374, 0.9377826008632761, 0.9300369611912853, 0.6997062971069969, 0.5693182102579236, 0.3404656140239559, 0.7160591142088384, 0.7953146078011, 0.8869803873277935, 0.7639982823097876, 0.8681285227071118, 0.576868797021353, 0.93035102563313, 0.8375600281828176, 0.8279918435672958, 0.9266689436294401, 0.7559862346636359, 0.5099889666930224, 0.6914445842613687, 0.9651950326885705, 0.87851968214492, 0.8499702807396289, 0.4685752957996948, 0.7241546992314323, 0.7848147251007912, 0.7341394174346678, 0.7008877443692281, 0.340588975625529, 0.5013021766499856, 0.8321174529331695, 0.8818378666553491, 0.9176909075187759, 0.8634678749265305, 0.7436082905772717, 0.9343776659412377, 0.7668809937296346, 0.6243383802582345, 0.5332560471205093, 0.6907315465649003, 0.16626803588025432, 0.1668542888532837, 0.7408943843163458, 0.5221312328975666, 0.7457559475413279, 0.46389636934606376, 0.9292627865919654, 0.5268311186840582, 0.4244151934213653, 0.643310536612302, 0.8577438313980266, 0.7816208399762355, 0.8553382520847058, 0.7010035672814305, 0.5242572272016158, 0.9187320011579697, 0.8703498177621264, 0.6713045345576062, 0.9137982268836646, 0.8614414457916845, 0.9445662266054761, 0.8808216590199034, 0.7386378115490353, 0.8873009977622293, 0.9157094897337859, 0.6606038558129893, 0.9296803968514485, 0.8864322240790464, 0.5146720135715994, 0.8720710714485208, 0.9415427660945741, 0.9138701141498735, 0.6527559092576063, 0.8751970040938668, 0.9249766460056568, 0.801728888664367, 0.6575848465963361, 0.6934824043184128, 0.8619113960143526, 0.9419078024651042, 0.9591721389341828, 0.8397407150753159, 0.9084383840076588, 0.4963969309336195, 0.7359588175524252, 0.3531961907069324, 0.9279819479140234, 0.7752976919572294, 0.8665226278427577, 0.9515211055933231, 0.7314191754306454, 0.890886918514299, 0.3235491032739525, 0.3719939405423586, 0.6323804178173072, 0.8398006965792015, 0.8239469134189235, 0.8592101816891015, 0.7615002907198236, 0.8688259750909261, 0.8718104001390852, 0.5838074755684882, 0.8756470416862959, 0.901850575196968, 0.9451930143658351, 0.6253812669856891, 0.5890764576710766, 0.4921052500998711, 0.4862070578416567, 0.9170647663398394, 0.7035583451969506, 0.8476385889092957, 0.5603058978573646, 0.5810606890504925, 0.9088604673919816, 0.8903252600075929, 0.944267921154058, 0.9435968591480925, 0.938237366988842, 0.9357286047893738, 0.7961386682142712, 0.7840233885688647, 0.2513590507613302, 0.7389284097502917, 0.9053472250810051, 0.44438282424164377, 0.862281110352348, 0.8021059248496223, 0.9152740930046814, 0.643737358401971, 0.8540304955499701, 0.8613418170006786, 0.6911084183178322, 0.8848367871057808, 0.8387883096682573, 0.5942651630821018, 0.65691393717736, 0.6369979527510315, 0.8280658524313272, 0.9640736168216585, 0.6546311715671466, 0.5599819536107853, 0.48348053317652906, 0.7668016587569692, 0.03620763244300767, 0.7364400865449663, 0.37408584674942635, 0.8767503774172, 0.8743962287172513, 0.8751970040938668, 0.8833495792027257, 0.7091886355621774, 0.87006937054451, 0.7904001815220257, 0.8761418339280951, 0.8306834851111597, 0.7531715889012326, 0.38181207472529843, 0.6490458991820136, 0.9138057013338913, 0.9046222904886461, 0.17956061692355052, 0.7506163079023257, 0.8963285795381793, 0.8848361664653354, 0.9283037217377402, 0.45996158699034445, 0.7290858434196763, 0.8319094967702583, 0.6578018675312727, 0.18727567457681707, 0.8673410249845035, 0.9453298670648187, 0.9446538464906173, 0.19605573045952288, 0.6723831041639817, 0.3438281302059518, 0.37858973820495484, 0.6953170483296187, 0.21463507152544156, 0.26963792069965237, 0.3280912492037974, 0.8399932187801539, 0.420387898633768, 0.36522500752858966, 0.5810560693343539, 0.9306346767722963, 0.7167716539092029, 0.656736106921484, 0.5549139996760648, 0.6909161521388689, 0.591904263202073, 0.884703171197362, 0.866402281883595, 0.7582770814524421, 0.8990773411030794, 0.1818065866116437, 0.6222165686186035, 0.17261914235374884, 0.8156064679757086, 0.4851213943917703, 0.8871292211128762, 0.8398494053952754, 0.703270618172154, 0.6305543892506115, 0.7494149477175548, 0.1532408287022325, 0.6159732902773407, 0.738220551127759, 0.8354520044441791, 0.8536870432671441, 0.5751476712690671, 0.9077719201719568, 0.7878515691455199, 0.6672663325862807, 0.45293736875445273, 0.17058553029544155, 0.747933377844996, 0.8400163125056676, 0.4516778718827729, 0.6082670858563528, 0.8401843469141149, 0.7636885291754726, 0.789170795337903, 0.8128612802083497, 0.7522530659814418, 0.8086757686066508, 0.8356255123032285, 0.9241779635105248, 0.9674588597049086, 0.9368885694202199, 0.4990764491242286, 0.876561204324957, 0.554264192243629, 0.5967716244634195, 0.9060244606340249, 0.8401608718856799, 0.7329750583133859, 0.8021769878309102, 0.9316817655017511, 0.45488322534173153, 0.798578398438993, 0.7425236774748816, 0.5742682328784404, 0.4937681935814938, 0.8972164286692267, 0.8914273370768748, 0.9377613518261881, 0.8862258850530264, 0.8591757581361523, 0.7410678096850266, 0.6822336012657398, 0.9201658505843877, 0.6982578893131915, 0.5746709232170782, 0.7626532952948841, 0.7137703530889916, 0.7520971196461234, 0.4473853625959922, 0.7957460056304991, 0.4833174871501707, 0.8758467705785958, 0.4689303842787964, 0.6133612564737879, 0.8568681391705205, 0.6835133967314007, 0.9732070839986944, 0.21435716257549006, 0.5761668962420043, 0.4055433603128916, 0.3743394998756179, 0.9118635774953143, 0.964551884718591, 0.9306459334511011, 0.8424802355113449, 0.7739144871152517, 0.6872688771534424, 0.8590561833388345, 0.6714384475466295, 0.6408669500407106, 0.5203550269219845, 0.2856853969697174, 0.857760555506807, 0.9307094503226838, 0.6787928880949093, 0.8308635255795866, 0.29271374211533296, 0.6769315553524353, 0.23831547366416572, 0.5895099457120908, 0.8994675076574448, 0.8893400405584444, 0.8456825404777587, 0.5399612081435882, 0.6188649121485582, 0.9281492942813848, 0.7611740601422801, 0.46550237374781617, 0.8896861436466836, 0.9038901015569306, 0.5044440900554997, 0.9215480939667524, 0.6930273792518707, 0.8723244804196287, 0.5624338775604165, 0.9226297661236537, 0.8469231754225917, 0.9430557295321259, 0.9097116306258912, 0.5988707702267543, 0.3813853072548755, 0.8843832309478876, 0.9006952500629406, 0.918975987201669, 0.18997930334445084, 0.8923106748541326, 0.8461388699436441, 0.5973439234355874, 0.9544642924744549, 0.91770416680597, 0.9177239854204658, 0.17584552180125673, 0.9240099144459667, 0.48524948024905407, 0.8889685222180134, 0.5785503824403398, 0.7511953459672914, 0.6887596776945688, 0.6717539058356753, 0.7168761391602206, 0.7134478068952186, 0.834626350903405, 0.5715867980362679, 0.6588392688727011, 0.9488572786900573, 0.8920529250761863, 0.8891353183282249, 0.707981940789761, 0.926348680038428, 0.631489487929038, 0.7443856388661001, 0.9260754381930228, 0.9544642924744549, 0.8497401318990601, 0.5604010177433062, 0.8036334301115304, 0.7898153537185114, 0.8491431337122072, 0.6570881560807702, 0.8389599143569951, 0.7944137576415592, 0.8132668978866627, 0.44714680104169846, 0.7978021044641371, 0.41921696608658454, 0.38876183891604754, 0.9248463736054193, 0.4277915265084825, 0.6345107008491314, 0.8008942533173764, 0.5087430598332189, 0.9414938992689892, 0.6922115882765215, 0.8296175750175913, 0.8593339228153332, 0.8975141534758351, 0.5977126281557783, 0.9279478536756302, 0.6485770817571253, 0.8905823996589662, 0.9332072841984264, 0.9432461110830079, 0.9410120781436498, 0.6339696776630096, 0.7120962557761497, 0.5841709037351369, 0.5928970840420333, 0.9006589732900512, 0.936371533648048, 0.6907852379101131, 0.7675780198071424, 0.9444587893431046, 0.4702336163336472, 0.8925536722101626, 0.8158978708906081, 0.822780392485108, 0.8037335327290217, 0.8382351003285965, 0.8941557358589171, 0.4796498334522667, 0.926348680038428, 0.6842118015950474, 0.6463580983468415, 0.8292048071278182, 0.5834426687867836, 0.8419845362148763, 0.2431563391580561, 0.7763142135369961, 0.9390550746437164, 0.7774903237071782, 0.8141232663130791, 0.9444089886680379, 0.430401459478284, 0.9192677156927759, 0.8427595869840984, 0.87120858451521, 0.5693182102579236, 0.820012080301976, 0.58719119911586, 0.42769376643096113, 0.3542595869275313, 0.89579938191327, 0.8743523014696554, 0.7820497043505815, 0.5279069501129625, 0.8869579700149332, 0.45488774279476296, 0.8514781135508903, 0.8278297091497892, 0.663749097381813, 0.5132851713944618, 0.4906566565015208, 0.6415219885510332, 0.6991293681294938, 0.8150539074042624, 0.5800669536763935, 0.9583771200922359, 0.7366090055976814, 0.5747817696023392, 0.5315376696882942, 0.8074446941396305, 0.9038901015569306, 0.9087015650331977, 0.6697291810323083, 0.5800669536763935, 0.8807270543114014, 0.5135845984304893, 0.9352791850238339, 0.36120709973337456, 0.6206709330576408, 0.906286252315459, 0.7937202818717513], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [0.9976, 0.991, 0.9936, 0.9949, 0.99922, 0.9976, 0.9944, 0.99648, 0.996, 0.99898, 0.99914, 0.9927, 0.9982, 0.99244, 0.9932, 0.99459, 0.99655, 0.994, 0.99904, 0.9964, 0.9927, 0.9964, 0.9958, 0.99242, 0.9979, 0.997, 0.99403, 0.9979, 0.99741, 0.99266, 0.9969, 0.9932, 0.9965, 0.9948, 0.9975, 0.9958, 0.9935, 0.99519, 0.9971, 0.9958, 0.99792, 0.99828, 0.9928, 0.9941, 0.99593, 0.99773, 0.9925, 0.99254, 0.99628, 0.9957, 0.9974, 0.99824, 0.9951, 1.0002, 0.99699, 0.9988, 0.9959, 0.99212, 0.9926, 1.0001, 0.9972, 0.998, 0.99334, 0.997, 0.99733, 0.992, 0.9964, 0.9956, 0.9973, 0.993, 0.9963, 0.99817, 0.9976, 0.99048, 0.99166, 0.99208, 0.99745, 0.9941, 0.99892, 0.99152, 0.99397, 0.9948, 0.9957, 0.99585, 0.99382, 0.99699, 0.995, 0.9932, 0.9941, 0.9937, 0.99817, 0.9961, 0.9964, 0.9976, 1.0, 0.99548, 0.998, 0.996, 0.99528, 0.9998, 0.9982, 0.9982, 0.99405, 1.0008, 0.99625, 0.9973, 0.99684, 0.9902, 0.9963, 0.99502, 0.9956, 0.9937, 0.9958, 0.9949, 0.99634, 0.99642, 0.9976, 0.99001, 0.9985, 0.9934, 0.9976, 0.99374, 0.9968, 0.99687, 0.998, 0.99718, 0.99437, 0.9963, 0.9959, 0.99579, 0.9939, 1.001, 0.99478, 0.99604, 0.99534, 0.9946, 0.9956, 0.9986, 0.99138, 0.9962, 0.9989, 0.99582, 0.9904, 0.99736, 0.99287, 0.9932, 0.9924, 0.99678, 0.9981, 0.9972, 0.9912, 0.99783, 0.9907, 0.99669, 0.99317, 0.99656, 1.001, 0.9969, 0.9938, 0.9905, 0.9928, 0.9988, 0.9981, 0.99429, 0.99587, 0.9942, 0.99504, 0.9986, 0.99738, 0.9958, 0.99537, 0.98956, 0.9981, 0.99873, 0.9966, 0.99682, 0.9961, 0.99166, 0.9968, 0.9937, 0.99308, 0.9964, 0.9924, 0.9946, 0.9982, 0.99512, 0.9994, 0.99098, 0.99642, 0.9966, 0.9937, 0.992, 0.9968, 0.99036, 0.99548, 0.99672, 0.9968, 0.99388, 0.99907, 0.99255, 0.9937, 1.00242, 1.00242, 0.9966, 0.99234, 0.99625, 0.99184, 0.9982, 0.9942, 0.9897, 0.994, 0.99168, 0.9952, 0.9977, 0.99872, 0.99772, 0.9981, 0.9904, 0.9993, 0.9958, 0.99578, 0.99026, 0.9982, 0.9941, 0.99166, 0.99627, 0.9932, 1.0005, 0.9934, 0.998, 0.9944, 0.9938, 0.9957, 1.00044, 0.99026, 0.99244, 1.00118, 0.994, 0.99314, 0.9972, 0.99818, 0.99561, 0.99839, 0.9948, 0.99026, 0.99734, 0.9978, 0.99273, 0.99602, 0.9978, 1.001, 0.9944, 0.9965, 0.9966, 0.99434, 0.9987, 0.99496, 0.9934, 0.996, 1.0004, 0.9926, 0.9946, 0.998, 0.99238, 0.9954, 0.99479, 0.99362, 0.99296, 0.99633, 0.9977, 1.00241, 0.9984, 0.994, 0.99611, 0.9948, 0.99794, 0.9956, 0.99794, 0.99588, 0.9922, 0.9978, 0.99689, 0.9953, 0.99572, 0.9942, 0.99582, 0.9959, 0.9972, 0.9921, 0.9955, 0.9918, 0.9962, 0.9924, 0.99076, 0.99782, 0.99709, 0.99458, 0.99806, 0.9983, 0.998, 0.99346, 0.9937, 0.99814, 0.9966, 1.0001, 0.9926, 0.99943, 0.9955, 0.9986, 0.99657, 0.9945, 0.99558, 0.99689, 0.9955, 0.9979, 0.9938, 1.00098, 0.9984, 0.9969, 0.99732, 0.99647, 0.9968, 0.9955, 0.9962, 0.9949, 0.99663, 0.9976, 0.99454, 0.9967, 0.99577, 1.001, 0.9987, 0.99516, 0.9986, 0.99164, 0.9974, 0.99902, 1.0001, 0.99032, 0.99848, 0.9928, 0.9934, 0.9939, 0.9976, 0.9982, 0.99748, 0.99773, 0.9964, 0.994, 0.99898, 0.9966, 0.99575, 0.998, 0.9937, 0.99517], \"xaxis\": \"x\", \"y\": [0.2802292104526322, 0.9455194119275858, 0.4978743212349556, 0.5289145624519528, 0.28439238707197784, 0.2033309570226689, 0.27345747478543325, 0.8322873304845451, 0.389055896812549, 0.3675472469853882, 0.5781933746273124, 0.7401955299744071, 0.44969671697605845, 0.4367887814338696, 0.31593955341667695, 0.3775624358859999, 0.19282181046294666, 0.048451763306065584, 0.6005928650583868, 0.032225376113695775, 0.427412413738938, 0.23973251442015217, 0.13890126550157303, 0.8613925272127, 0.329663916828638, 0.19359965390713213, 0.6827271716759634, 0.1960905505555538, 0.08135735686643118, 0.39737240301928484, 0.13902987396822816, 0.6514166433739288, 0.6994753721471061, 0.7140886736258081, 0.5021795028970708, 0.48743245558712556, 0.5731139673640956, 0.8820820642542792, 0.559972149724866, 0.5061565591493914, 0.5066810377847554, 0.833805652807593, 0.6979972163580744, 0.3177574231538272, 0.13068190592986567, 0.758876109553896, 0.5681062961269688, 0.715544821914063, 0.762062625203523, 0.4464438677531786, 0.20995974230910305, 0.5262622410710028, 0.39442669669188163, 0.2537324982988368, 0.6775437642744659, 0.23876321589577687, 0.6369158982934647, 0.38960060362966165, 0.6034323722874255, 0.7769991715799629, 0.15199748354041337, 0.5641412449951732, 0.7590466800561823, 0.5969347905931296, 0.1048362779837843, 0.7217824369593382, 0.2662339163773806, 0.16472378978351135, 0.37760124376932414, 0.7071736299639594, 0.3436862995931572, 0.8384434752264291, 0.3635333644877426, 0.7813188949129265, 0.7279369976219869, 0.5641098847382463, 0.3863964747623771, 0.9209913370067284, 0.1477144681640183, 0.8809374658555192, 0.6533168894759348, 0.8873477284758582, 0.3697306267878623, 0.28319023347825867, 0.5203701741750857, 0.5523747693308857, 0.6387521731780509, 0.3881380695009739, 0.8487896327149285, 0.4636606453307818, 0.8384434752264291, 0.558266603669778, 0.21657231888677728, 0.3635333644877426, 0.5512671313974766, 0.5051039398599867, 0.5827915753039158, 0.49441682850108926, 0.47309171914705017, 0.6262595591688196, 0.5508242483721094, 0.47332791509789995, 0.7117569366896692, 0.3933786516273859, 0.16465066549244003, 0.7490394132223248, 0.769261050002088, 0.7431932405995126, 0.3141000916210982, 0.723735045552473, 0.6484132891031948, 0.688519894019609, 0.40496704226994307, 0.5803736122960511, 0.6327801522745691, 0.45115706990411364, 0.37268733756108086, 0.9009693101135351, 0.06496389958099598, 0.44431713201158524, 0.39960831974332744, 0.8662156944598043, 0.31018081106061823, 0.5339551117365043, 0.33311273919547707, 0.400132762133902, 0.8528754522806217, 0.14419347879543085, 0.11672350429510901, 0.44556702529145975, 0.6160120899414699, 0.13766892845409207, 0.5517204028384314, 0.5232178919035022, 0.35483403305733974, 0.4900213704561591, 0.8854578072659228, 0.43084122675663034, 0.7601186327653665, 0.14072030431570776, 0.6186690618327106, 0.5245054232921349, 0.7326259458716644, 0.5690781983520095, 0.4018508815425063, 0.24877469563805235, 0.7952501197393639, 0.8766221356386195, 0.303451532996695, 0.5357745481647883, 0.7096524147827454, 0.20877177283968149, 0.8635610141758273, 0.46736762313881036, 0.6061151992073851, 0.113015272873705, 0.40446014603085867, 0.6332606063976143, 0.648705381890928, 0.42186952587750404, 0.8047913565308571, 0.3017058309841093, 0.38406990132164637, 0.33494193042999065, 0.19929939967121216, 0.8624919783238055, 0.528785836409086, 0.43084122675663034, 0.47042159929499583, 0.5061565591493914, 0.5759491569657543, 0.8468794444363914, 0.20342296359496542, 0.5170831534483544, 0.3666753044655067, 0.6131723001375537, 0.4410646109528086, 0.6903416342484309, 0.3866428492574258, 0.4636606453307818, 0.4525459302795702, 0.03199256040434073, 0.7029629492254846, 0.2433141614541866, 0.548755973819273, 0.3775060302547258, 0.06593060991448157, 0.8745624549148976, 0.22931948662359403, 0.27267688907931714, 0.589328430619086, 0.8007160756317941, 0.5525637789187225, 0.5008522318356121, 0.4556212410144909, 0.17391722008742402, 0.43574637053357784, 0.3237440077649342, 0.6071692164257629, 0.6925152430641841, 0.592675381607996, 0.43854150134957587, 0.43854150134957587, 0.42437112972565305, 0.8061118855433299, 0.35195592295594336, 0.7605370065149419, 0.38898578429124253, 0.67510953655807, 0.872979709380305, 0.710510994258769, 0.720290290780972, 0.4820787970895852, 0.42019280799979697, 0.4304380754474639, 0.25285023254778977, 0.3238056884730761, 0.39471961640683584, 0.09510031985475974, 0.367046376808582, 0.21500793651835448, 0.8705359023101334, 0.6100742529031461, 0.6226449432624995, 0.7279369976219869, 0.3643494054700089, 0.09992017521484964, 0.41475515148757036, 0.6462260464983366, 0.14102909592513518, 0.48949585696458414, 0.5239520436918008, 0.6084413884537807, 0.5655473856702703, 0.9517420512476797, 0.7489379515982664, 0.4647937384849751, 0.7915321263825208, 0.44112279258530757, 0.5734340256727429, 0.6604471727860799, 0.4845203185458914, 0.6968730453869196, 0.5315374962198609, 0.8685951485887234, 0.6242442748350044, 0.2912097196987059, 0.7725938221565348, 0.2067629769731588, 0.30221725334927335, 0.13129342562285412, 0.6467789443522378, 0.6994753721471061, 0.11825382206919556, 0.41022417118631593, 0.4882665226122541, 0.7732287086973071, 0.25374762405010176, 0.49441682850108926, 0.3723877205427743, 0.652330313245635, 0.43667799883041203, 0.5964718913578133, 0.55172276504346, 0.24113559934961917, 0.8243980268882987, 0.7263843594269437, 0.43535214809021755, 0.8721122798612579, 0.18723914490145582, 0.6486906676970999, 0.11576704656818047, 0.4328241622975616, 0.491481212420291, 0.5264345378086769, 0.33856526784971647, 0.2967410926251248, 0.581398831228375, 0.5973776665460488, 0.6195406102170065, 0.37782717658841725, 0.323061133240968, 0.17420808473594895, 0.19634770547538957, 0.46492234760650425, 0.49613167963272686, 0.5812209036149294, 0.6057291775435286, 0.63414717387345, 0.5702687187355167, 0.8604975146328253, 0.6309022132706124, 0.48732991249542923, 0.6887148870948692, 0.41581945293096145, 0.5706760596351739, 0.4831274653996314, 0.06684727567316755, 0.49090643211649887, 0.15191610726090596, 0.2711405311223577, 0.7653618545702112, 0.09266565137124261, 0.4554350627407873, 0.19698919164573708, 0.6930185080649685, 0.5227537922811563, 0.50434568709929, 0.7082092780767422, 0.46058046365566996, 0.6735723234187477, 0.4285936050615775, 0.323061133240968, 0.5168500865319015, 0.6161307914674419, 0.23456444218973552, 0.3192004782541023, 0.21968945907811915, 0.5028183230931117, 0.43371621376298963, 0.6744209213341115, 0.5940260419772637, 0.13783310426722128, 0.5136444387530009, 0.5508647999875032, 0.4955911012838212, 0.9814394195009358, 0.8260225289794664, 0.17965956338109995, 0.46844896472597397, 0.6048119589659149, 0.3289160319090978, 0.2454606394453749, 0.7497022835596558, 0.683485355417811, 0.20995974230910305, 0.23504578258460665, 0.37175956099497537, 0.4875530438829156, 0.24982584224249993, 0.6282829625348888, 0.4520795162158371, 0.8200372413039435, 0.12832513643528837, 0.5299630655130737, 0.29552777318700446, 0.24021937552346023, 0.5429028773737552, 0.6311869746243346, 0.4145977043912777, 0.39329840463575844, 0.39070335653410526, 0.4286990948130573, 0.846836560604146, 0.6880850122626078], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (curr)\", \"type\": \"scatter\", \"x\": [0.9934, 0.9979, 0.99234, 0.9932, 0.99686, 0.9927, 0.9926, 0.99362, 0.989435, 0.99239, 1.0, 0.9908, 0.98918, 0.99168, 0.98904, 0.9932, 0.99438, 0.99189, 0.999, 0.9903, 0.999, 0.9986, 0.992, 0.9935, 0.99541, 0.9893, 0.99326, 0.99146, 0.99144, 0.99165, 0.98889, 0.9957, 0.9992, 0.99449, 0.98871, 0.9936, 0.9914, 0.99488, 0.98988, 0.995, 0.99123, 0.99014, 0.9958, 0.9986, 0.9974, 0.99417, 0.9998, 0.9968, 0.9969, 0.9908, 0.9972, 0.9917, 0.9946, 0.9922, 0.99376, 1.0006, 0.998, 0.9916, 0.99795, 0.99652, 0.99724, 0.99727, 0.99206, 0.99406, 0.99534, 0.98964, 0.9966, 0.9951, 0.99236, 0.9945, 0.9986, 0.99064, 0.99815, 0.99313, 0.9983, 0.99668, 0.99922, 0.99207, 0.9949, 0.9975, 0.98972, 0.9923, 0.99492, 0.9914, 0.9965, 0.99536, 0.99652, 0.99456, 0.9932, 0.994, 0.99526, 0.9934, 0.9904, 0.98836, 0.9931, 0.99148, 0.99704, 0.99018, 0.9968, 0.99376, 0.993, 0.99596, 0.99438, 0.98882, 0.9986, 0.99566, 0.996, 0.99262, 0.99132, 0.99159, 0.99551, 1.0103, 0.99144, 0.9893, 0.99171, 0.9934, 0.99238, 0.9934, 0.99552, 0.9989, 0.99322, 0.98976, 0.99384, 0.99, 0.99638, 0.99649, 0.9981, 0.991, 0.9984, 0.98961, 0.98961, 0.9933, 0.98918, 1.00014, 0.9931, 1.0006, 0.99667, 0.9979, 0.99252, 0.9917, 0.9943, 0.995, 0.9994, 0.99576, 0.99745, 0.9916, 0.9993, 0.9991, 0.993, 0.9927, 0.99564, 0.99094, 0.997, 0.9987, 0.98954, 0.9912, 0.99676, 0.9947, 0.99232, 0.9979, 0.9898, 0.9983, 0.98934, 0.99394, 0.9992, 0.9913, 0.99458, 0.9959, 0.99554, 0.9932, 0.99099, 0.9923, 0.99665, 0.99738, 0.9907, 0.9927, 0.991, 0.99154, 0.98872, 0.99444, 0.9943, 0.99646, 0.9934, 1.0002, 0.9956, 0.99314, 0.999, 0.9908, 1.001, 0.9949, 0.99278, 0.9984, 0.99076, 0.99064, 0.9931, 0.9918, 0.99173, 0.9893, 0.9993, 0.99612, 0.9914, 0.99312, 0.9937, 0.9929, 0.99294, 0.9928, 0.9947, 0.999, 0.993, 0.99742, 0.99224, 0.98986, 0.9948, 0.98998, 1.0006, 0.99162, 0.99232, 0.9914, 0.9922, 0.99, 0.9914, 0.9956, 0.9975, 0.99544, 0.9994, 0.9971, 0.99134, 0.9941, 0.99617, 0.99194, 0.99842, 0.9951, 0.994, 0.9922, 0.9956, 1.0004, 0.99031, 0.99164, 0.99216, 0.9917, 0.9938, 0.99176, 0.99313, 0.9959, 0.9956, 0.996, 0.99807, 0.9986, 0.9931, 0.9984, 0.9948, 0.9983, 1.0006, 0.9912, 0.99581, 0.99676, 0.9933, 0.99095, 0.98924, 0.99067, 0.99498, 0.9946, 0.9931, 0.99435, 0.9938, 0.99055, 0.9912, 0.99516, 0.9958, 0.9968, 0.99454, 0.99182, 0.98878, 0.9988, 0.9962, 0.9977, 0.9932, 0.99498, 0.99154, 0.99512, 0.9979, 0.99088, 0.99161, 0.99494, 0.99158, 0.9963, 0.99188, 0.99035, 0.9945, 0.9924, 1.0003, 0.9994, 0.99655, 0.98974, 0.99152, 0.99296, 0.99782, 0.99173, 0.9975, 0.9924, 0.98944, 0.9932, 0.99184, 0.9912, 0.9976, 0.99534, 0.98986, 0.99287, 0.991, 0.99047, 0.99691, 0.99165, 0.99646, 0.99708, 0.9902, 0.99178, 0.9963, 0.99232, 0.9938, 0.9934, 0.99176, 0.99408, 0.99572, 0.9998, 1.0026, 0.99, 0.992, 0.99734, 0.9975, 0.99204, 0.99492, 0.99666, 0.9994, 0.997, 0.99288, 0.994, 0.9996, 0.99685, 0.9958, 0.99346, 0.99215, 0.99521, 0.9974, 0.9956, 0.9967, 0.99406, 0.9936, 0.9926, 0.9982, 0.99086, 0.9955, 0.99158, 0.99975, 0.9987, 0.9966, 0.9926, 0.99815, 0.99366, 0.99706, 0.99358, 0.99071, 0.99582, 0.9988, 0.9986, 0.99551, 0.9956, 0.99862, 0.9957, 0.99882, 0.99324, 0.98823, 0.9952, 0.992, 0.99043, 1.0002, 0.99655, 0.98942, 0.99356, 0.99553, 0.99315, 0.9954, 0.9928, 0.99226, 0.9958, 0.99, 0.9948, 0.992, 0.9898, 0.99354, 0.99186, 0.99404, 0.99922, 0.992, 0.9988, 0.9939, 0.99557, 0.9999, 0.99531, 0.9903, 0.992, 0.9938, 0.991, 0.9907, 0.99784, 0.98952, 0.998, 0.9952, 0.99148, 0.99792, 0.99058, 0.9974, 0.99282, 0.9923, 0.9927, 0.99519, 0.9967, 0.9951, 0.99683, 0.99165, 0.99176, 0.99006, 0.99002, 0.99736, 0.99612, 0.9987, 0.9908, 0.9946, 0.99445, 0.98965, 0.9904, 0.99086, 0.9934, 0.99046, 0.9902, 0.99774, 0.9984, 0.996, 0.9976, 0.991, 0.99808, 0.9986, 0.9934, 0.9963, 0.9954, 0.98956, 0.9988, 0.99084, 0.99314, 0.99522, 0.99739, 0.99704, 0.9959, 0.9941, 0.99458, 0.99971, 0.9919, 0.99544, 0.99094, 0.9992, 0.99416, 0.99189, 0.98936, 0.99352, 0.9984, 0.99276, 0.9939, 0.9926, 0.993, 0.9928, 0.9966, 0.9944, 0.9952, 0.99467, 0.9984, 0.9943, 0.99381, 0.9946, 0.99121, 0.99174, 0.99052, 0.9944, 0.9927, 0.9962, 0.99552, 0.9958, 0.994, 0.99184, 0.98916, 0.99581, 0.99522, 0.9957, 0.9998, 0.99444, 0.99599, 0.9944, 0.9982, 0.9925, 0.9979, 0.99331, 0.9997, 0.99018, 0.99517, 0.9986, 0.9908, 0.98815, 0.99862, 0.99566, 0.9906, 0.9984, 0.9916, 0.99418, 0.992, 0.98779, 0.9915, 0.9934, 0.99, 0.99824, 0.9986, 0.9956, 0.99439, 0.9887, 0.9968, 0.9906, 0.9965, 0.9901, 0.99772, 0.9948, 0.991, 0.9947, 0.9984, 0.99572, 0.99388, 0.9976, 0.989315, 0.99358, 0.9926, 0.9978, 0.996, 0.99636, 0.99784, 0.99316, 0.99339, 0.99724, 0.9921, 0.98845, 0.99437, 0.99708, 0.99614, 0.98992, 0.9986, 0.9997, 0.99362, 0.9928, 0.99552, 0.99115, 0.99508, 0.99556, 0.98964, 0.9903, 0.99221, 0.99676, 0.9954, 0.99825, 0.99546, 0.9948, 0.991, 0.9945, 0.99479, 0.98912, 0.99042, 0.9963, 0.99787, 0.9916, 0.99742, 0.9893, 0.99158, 0.9954, 0.99172, 0.9925, 0.9906, 0.99459, 0.9976, 0.99456, 0.9893, 0.9931, 0.9927, 0.9963, 0.997, 0.9931, 0.99514, 0.9968, 0.99354, 0.9948, 0.99261, 0.99454, 0.9994, 0.99198, 0.998, 0.9928, 0.99068, 0.99384, 0.99275, 0.9952, 0.9932, 0.99165, 0.99616, 0.99659, 0.9924, 0.99316, 0.992, 0.9928, 0.99532, 0.9936, 0.98939, 0.99616, 0.99367, 0.98892, 0.99596, 0.99784, 0.99267, 0.99347, 0.9919, 0.99089, 0.99425, 0.99226, 0.989465, 0.9902, 0.995, 0.99565, 0.99192, 0.9964, 1.0014, 0.9898, 0.9922, 0.99166, 0.99576, 0.9884, 0.99764, 0.9951, 0.9953, 0.98964, 1.0001, 0.99837, 0.9934, 0.998, 0.99586, 0.99014, 0.99455], \"xaxis\": \"x2\", \"y\": [0.33396714643252134, 0.5044440900554997, 0.8874896900044845, 0.4686759077780351, 0.23831547366416572, 0.571181601185031, 0.7785327680196316, 0.7290551099174598, 0.9581131370131553, 0.6801000322064107, 0.413367674560271, 0.6667140739211237, 0.9108229754863395, 0.9275086157065797, 0.9186958597750785, 0.7191871442695774, 0.8184457509658746, 0.8597940676688322, 0.7947045908306632, 0.8244149680645384, 0.42771531534877594, 0.5315376696882942, 0.7136291946100958, 0.5510697799054304, 0.6393262665313312, 0.9016582766249417, 0.8560880110261746, 0.8947361144883382, 0.9102326114023062, 0.840723585394272, 0.9264645566705582, 0.5105903360131552, 0.752648770317166, 0.5855954083225455, 0.8989214048388485, 0.5190750352404293, 0.9560713253502463, 0.7273157243430202, 0.9279672131348602, 0.640103147954212, 0.9158977434209615, 0.9035955072010529, 0.7140955379655831, 0.233508355491505, 0.7280578325574358, 0.8810827811902006, 0.3966129217085586, 0.15541760955422754, 0.5851621750323275, 0.9046111951917862, 0.4177213302712193, 0.7993763114768937, 0.6978409661933959, 0.6473373667551029, 0.770784382977056, 0.6500641275496193, 0.548949563093737, 0.9803199442553986, 0.6150775052067382, 0.391333092160729, 0.6966682278280982, 0.9426748402861506, 0.9170092977635526, 0.844625652038695, 0.5621782696252592, 0.8935808323282117, 0.6792214086077275, 0.6719996755401956, 0.5252591274442797, 0.7277045758687855, 0.4685752957996948, 0.8616549355667619, 0.347491516391863, 0.8224130863808733, 0.5340790568488665, 0.6711667658766297, 0.5277539611022016, 0.7226430813715845, 0.8140972745487615, 0.3280236940194876, 0.9543080196225542, 0.7752655593026647, 0.9223925066666061, 0.8588031784191832, 0.6345107008491314, 0.9393010047953068, 0.7897067132703484, 0.8608062836413887, 0.8367885032124018, 0.38555642305179116, 0.8611944449682004, 0.9172341012895443, 0.9206892306522243, 0.9500505925695213, 0.537798347971205, 0.9173482789702866, 0.44454351342386716, 0.8909704850569525, 0.7351932580165473, 0.6818328744935735, 0.7981559962965634, 0.7626532952948841, 0.807353254900461, 0.964411205143099, 0.4685752957996948, 0.6986526320119215, 0.1956969407137045, 0.9233481403380283, 0.8218375601976645, 0.8536269727611236, 0.5637680470866036, 0.42267134533232753, 0.93003590801509, 0.9364808605729722, 0.8816060831574614, 0.9663102962713933, 0.8345570787709832, 0.4997893986747249, 0.7921603237806832, 0.5586815647381762, 0.8622246464681924, 0.9828719612298703, 0.909295720392338, 0.9476267884443668, 0.5395521774612226, 0.901360886913609, 0.39410444510430487, 0.9262213132200262, 0.6627387433216217, 0.9629433821448677, 0.9614311452267452, 0.9802968012486629, 0.933760787013923, 0.34432718187202205, 0.63596173557573, 0.624364378916488, 0.7417789548241253, 0.7300918276682445, 0.6968315453320488, 0.7840233885688647, 0.8958841271622066, 0.5417426694559925, 0.7102579146160282, 0.6004345411549624, 0.515920701757342, 0.7587882454650442, 0.5029588531082266, 0.6887596776945688, 0.8642849605932809, 0.6469572639767995, 0.8103639651534781, 0.939764354405301, 0.694136577696587, 0.6593725303534554, 0.9646797005081557, 0.7979900311745153, 0.792123904710467, 0.8869579700149332, 0.7351250317969437, 0.5332560471205093, 0.9406873315653421, 0.39362685027924615, 0.9466602521798594, 0.8394325033041952, 0.6633442657978572, 0.8126408700417265, 0.7332457619716184, 0.08024070404520958, 0.8667774471450977, 0.6466814331404849, 0.912366876100516, 0.656670904734599, 0.8701678467707724, 0.8875925797813499, 0.9658725076002231, 0.7668332861852056, 0.8604440887473094, 0.934384507524058, 0.9605946056867319, 0.951253157591183, 0.5749289095213865, 0.6279243005170476, 0.7937202818717513, 0.7665301650725991, 0.700127941221274, 0.8531107444728586, 0.7947045908306632, 0.8870566665876504, 0.5476228787844645, 0.8410401833568673, 0.8736671065238262, 0.6519898659949606, 0.936943112068646, 0.9077719201719568, 0.8071889556778997, 0.8815615400732472, 0.8935313268029127, 0.8782891297971865, 0.5029588531082266, 0.5797201450332624, 0.9416775458320723, 0.5958140198486584, 0.2485157288688957, 0.932021424688801, 0.8531502837407814, 0.6344194678828672, 0.632587077283238, 0.9121448358615357, 0.5776545535910985, 0.9052765174806566, 0.8580390107418799, 0.8998644401112552, 0.6784536879503494, 0.9458342431661766, 0.21387363850783603, 0.9530348339880965, 0.7307391114165022, 0.7187682731289255, 0.6905635603269331, 0.9569274903702625, 0.9287384091375525, 0.3856984054091925, 0.504413920551941, 0.5389739198483336, 0.5921068831639978, 0.10702848140489757, 0.8772993497727819, 0.6361944011057532, 0.8952999713010865, 0.7069578609115064, 0.10632960186243966, 0.6465592619811017, 0.9116333268133815, 0.9210441535829985, 0.9483358221641291, 0.5800224234700003, 0.896951343689222, 0.8958659323404018, 0.8896861436466836, 0.7763142135369961, 0.778627444633172, 0.9274605647284293, 0.9167924025380936, 0.6422094408272838, 0.6363725079258666, 0.8694129796739031, 0.5693182102579236, 0.5315376696882942, 0.6814536952243052, 0.30089534057709466, 0.6689448970920832, 0.6419522618821227, 0.6500641275496193, 0.8221968069187356, 0.9285763346020383, 0.8495153837633861, 0.7135666997345446, 0.8850789772017983, 0.9128367188568884, 0.8709442503982084, 0.44714680104169846, 0.7147831401969469, 0.6814536952243052, 0.5823319261018008, 0.7718122970862826, 0.8925058444773368, 0.9249991097277733, 0.7849066379312727, 0.5120166815330335, 0.7863291630268572, 0.8171821177205619, 0.8878235148823457, 0.9813953955585096, 0.5009899161211654, 0.6787020040856314, 0.2747106808400709, 0.6998114428322438, 0.7191783799678735, 0.7566715075843347, 0.7741630673610131, 0.692871858980435, 0.8706970297938403, 0.9226518689226377, 0.619213859232465, 0.9620625840847012, 0.8161066853745392, 0.7984578805051198, 0.8987836568806694, 0.27900511725120763, 0.747868261422589, 0.8013372150606806, 0.4430395412241901, 0.8082746512504794, 0.9248395818955686, 0.8132668978866627, 0.7926355964369082, 0.7243101498981422, 0.8251498778038484, 0.865753667016409, 0.8784859927081519, 0.9613966942665844, 0.8380103992838959, 0.9376908870460701, 0.8505645904112248, 0.5317253080143199, 0.8756470416862959, 0.8823120896825394, 0.8920529250761863, 0.9565288857220365, 0.92576324319171, 0.8397457208604353, 0.8008835764985612, 0.7620555647282774, 0.6333567796033132, 0.8986985644274655, 0.8289197139212982, 0.38568054861828666, 0.4358764146033148, 0.7013568331933456, 0.5524769805317635, 0.8654015550049637, 0.9625385348003681, 0.4997035751430624, 0.5940434106189647, 0.29640429037896177, 0.9370396801623051, 0.7496358493500708, 0.8521916566704996, 0.7519935213994349, 0.8956127660014477, 0.7563308848917781, 0.5425355780301907, 0.1652985164032473, 0.5777375433929663, 0.5926841497777402, 0.5247451599628447, 0.6215406511606532, 0.646742228322253, 0.5236567091352762, 0.8105889943537302, 0.7614647275399787, 0.7272264480694343, 0.44438282424164377, 0.8051848688934031, 0.253979247575754, 0.8737269176380216, 0.7884186533408385, 0.5226162157005312, 0.7776146375974927, 0.8021344726910251, 0.6794204065079696, 0.8398669626756513, 0.3743394998756179, 0.6593725303534554, 0.41008410759983227, 0.8726624594592295, 0.31336232876890546, 0.6187135046228962, 0.9208146539756937, 0.8948907807194619, 0.9475948217130945, 0.7098971478357265, 0.41970311630379203, 0.5524505095188592, 0.6689295490636696, 0.39534528644804523, 0.6686700461744643, 0.6608417181144597, 0.6289006219381473, 0.8112353209803558, 0.9675531845963172, 0.3468688843876404, 0.8171815196180959, 0.9315945487332388, 0.7612383340144859, 0.43979370974717685, 0.9452166580978265, 0.810349906376065, 0.4979189466877109, 0.9054024939516333, 0.7506263221664519, 0.8595966107872783, 0.9041757536760852, 0.5120166815330335, 0.9246344940597735, 0.622364539475366, 0.7975959936185795, 0.9376528402833735, 0.8270495791839716, 0.7463426393970082, 0.8508295060861325, 0.5277539611022016, 0.7926521549058593, 0.8343380415579561, 0.7973631232158779, 0.5423298306356671, 0.6253812669856891, 0.9342151247863544, 0.9064095870896521, 0.8428584418618921, 0.5680191878381406, 0.8230633503438987, 0.857993972512287, 0.8312116035859974, 0.8886868130574391, 0.5695902702544526, 0.8750573328895943, 0.47134086624147714, 0.6082670858563528, 0.8571520978358925, 0.7006810412396262, 0.6001343818465046, 0.8680196363335714, 0.7833148206731655, 0.835330250744176, 0.6883000602161935, 0.4297997702781997, 0.7132181587745201, 0.941909753873568, 0.9298379484442667, 0.8950633078112005, 0.9652574497835966, 0.8593048115498744, 0.23022113319019433, 0.5548683876071567, 0.8789570823277312, 0.7176343272433334, 0.7135972690872326, 0.900955402304434, 0.89110615578316, 0.8021344726910251, 0.36734125225010755, 0.9233813125795639, 0.9269988231022361, 0.6021478506882372, 0.27064660283581765, 0.7595966254948197, 0.5317253080143199, 0.9626288904553877, 0.518871521713375, 0.4244151934213653, 0.8784852709235653, 0.667697582798242, 0.6791650855490978, 0.8659372985570389, 0.5217980090164113, 0.9757802673562255, 0.20769640873195563, 0.6900575067285889, 0.15051833553221247, 0.8476988333501053, 0.12043274000614122, 0.6546311715671466, 0.412102187638673, 0.6339696776630096, 0.6925917751558638, 0.8074446941396305, 0.8417042066658985, 0.4702054036006336, 0.8107456318417504, 0.934253622333564, 0.9671353887875448, 0.3776875782453083, 0.5133306968464912, 0.8279918435672958, 0.7295730380004212, 0.8398957027397556, 0.7470826509089123, 0.7722124156410631, 0.3944809481034696, 0.5801047158883857, 0.7134138458261836, 0.8265590446981121, 0.5836238058504062, 0.7538957359152121, 0.9708936701567454, 0.41507295289487073, 0.9039211350062085, 0.5109703825452502, 0.8880660412534, 0.6332514250278477, 0.703270618172154, 0.863031725372896, 0.9601349291832292, 0.5845797646527732, 0.8357575010967041, 0.9584406458449958, 0.8733333206292072, 0.4740801794177068, 0.5787650908025566, 0.38525623454815555, 0.5715075300165849, 0.951253157591183, 0.831291834366621, 0.6482062646591596, 0.5447536045265621, 0.8456825404777587, 0.5358725178581014, 0.8893400405584444, 0.5955893395860203, 0.9408369636189147, 0.7580589814818564, 0.4244151934213653, 0.7636885291754726, 0.9532052815091139, 0.6686700461744643, 0.39683939049776734, 0.8309978518015588, 0.06774730328187532, 0.8934061610794648, 0.9459413258233057, 0.8507977517004935, 0.9694554821790147, 0.8640493534313302, 0.8409166048571896, 0.9059760843724536, 0.7278052027863667, 0.8952246802917138, 0.39534528644804523, 0.9558702864115934, 0.9178754126151818, 0.7504628435478695, 0.7568870052952757, 0.32046258648166903, 0.9712495894387816, 0.7125870341029702, 0.8286889773580812, 0.929575727770858, 0.8422483936479932, 0.60065365322741, 0.5775074082600717, 0.7505976846167132, 0.5317253080143199, 0.9590110623565244, 0.9651712957082627, 0.7333643603414158, 0.7757825668725274, 0.8928390517037824, 0.2578168736401774, 0.5355488836719776, 0.8408692583280314, 0.7849780542174357, 0.8711681462620556, 0.8447990405440073, 0.9571933326515756, 0.9307123551507692, 0.6421242495412457, 0.9239207054420927, 0.9336219461922934, 0.4244151934213653, 0.5673643045526261, 0.8301442064454496, 0.528471943574542, 0.8835542071774324, 0.8820947700128993, 0.4561713647735051, 0.584381944856391, 0.9493936477483658, 0.7816316980556022, 0.7770145472448273, 0.8495153837633861, 0.8318035560268552, 0.5220388622338656, 0.8589980209217414, 0.21216021099657945, 0.8782303617207965, 0.901850575196968, 0.7683760396387002, 0.9559989503713009, 0.938411491366706, 0.7225398931917507, 0.5918361617892179, 0.8596378534897678, 0.8816239240572568, 0.9296844522785247, 0.8299758417251202, 0.7538846798551382, 0.931253582726863, 0.6902425303942638, 0.9299571155275668, 0.35461708236434614, 0.6119587629530028, 0.8979450471026776, 0.8782891297971865, 0.6144930729026484, 0.5601837238662909, 0.4230258756549153, 0.5115702372514986, 0.6133200318312215, 0.8287048127179734, 0.42887934024879554, 0.5543929044930882, 0.5414149972460248, 0.7453725251924848, 0.6522898344923613, 0.6445138145159856, 0.9212190995841192, 0.6991293681294938, 0.9188224881967051, 0.9444881948020799, 0.8399825546316605, 0.6440269003431431, 0.45260210695563535, 0.6678228102737954, 0.8535669746933884, 0.23469888428232324, 0.7581156815660375, 0.8329520097124233, 0.5886389680190937, 0.4250130050586104, 0.290761161529129, 0.9065968169685268, 0.39757013049667705, 0.9584529405260903, 0.24804178200132845, 0.8400605958344816, 0.9562762484868867, 0.5923100188758571, 0.5355488836719776, 0.6866862751474886, 0.753715093249364, 0.9302702282582556, 0.8405005145861136, 0.7758456574858743, 0.8270123797965384, 0.9270997487744173, 0.8779999285967196, 0.6350604679157676, 0.9057987369792326, 0.9732730617650076, 0.28007269673131574, 0.5393237551960537, 0.9509318156255189, 0.8055358405733448, 0.8512314640165554, 0.6752183046546253, 0.9766791413071304, 0.26893819095773785, 0.5105552073939665, 0.7964242570425004, 0.9159462749375985, 0.46312559485344046, 0.7889853219989779, 0.5331772070153998, 0.6250130361556073, 0.5340700079782073, 0.8981158701031157, 0.8424802355113449], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [0.9966, 0.99556, 0.9939, 0.99126, 0.9996, 1.001, 0.99565, 0.998, 0.99692, 0.9997, 0.9956, 0.9918, 0.99513, 0.99587, 0.99869, 1.0, 0.9959, 1.0004, 0.99253, 0.9905, 0.9918, 0.9996, 0.9946, 0.9978, 0.99009, 0.9926, 0.997, 0.99898, 0.99215, 0.9931, 0.99839, 0.9944, 0.99798, 0.9963, 0.9926, 0.99341, 0.998, 0.9968, 0.9953, 0.9934, 0.9918, 0.99494, 0.9968, 0.9982, 0.992, 0.99212, 0.9976, 0.99616, 0.99911, 0.99244, 0.99454, 1.0011, 0.9937, 0.99612, 0.9976, 0.9963, 0.99748, 1.00315, 0.9966, 0.99848, 1.00315, 0.9976, 0.9962, 1.0006, 0.99657, 0.99592, 0.99702, 0.9978, 0.9965, 0.9956, 0.99654, 0.99093, 0.99212, 0.99694, 0.9938, 0.99174, 1.0, 0.9918, 0.99345, 0.99717, 0.9966, 0.99576, 0.9972, 0.9968, 0.9938, 0.9923, 0.9967, 0.99976, 0.992, 0.9978, 0.9951, 0.9936, 0.998, 0.9991, 0.99683, 0.99476, 0.9958, 0.9986, 0.9972, 0.99596, 0.99918, 0.99479, 1.0, 0.9955, 0.9954, 0.99584, 0.9984, 0.99448, 0.99416, 0.9989, 0.9964, 0.9983, 0.99712, 0.99362, 0.9926, 0.99669, 0.99676, 0.99471, 0.9955, 0.9958, 0.9962, 0.99182, 0.9946, 0.996, 0.99546, 0.99915, 0.99111, 0.9997, 0.99546, 0.9938, 0.98876, 0.99734, 0.9991, 0.992, 0.99694, 0.9976, 0.993, 0.9976, 0.99681, 0.99494, 0.9938, 0.9938, 0.99239, 0.9939, 0.9992, 0.99677, 0.99176, 0.9958, 0.9964, 0.99568, 0.9932, 0.99942, 0.9973, 0.9958, 0.99344, 0.9928, 0.99481, 0.99584, 0.99696, 0.9988, 0.99745, 0.99872, 0.99212, 0.9982, 0.9974, 0.9944, 0.9904, 0.99264, 0.99299, 0.99534, 0.9997, 0.9966, 0.9934, 0.99204, 0.9964, 0.98918, 0.9923, 0.99775, 0.99742, 0.99642, 0.9941, 0.99688, 1.0004, 0.9927, 0.99705, 0.99154, 0.9958, 0.9989, 0.9936, 0.99545, 0.99743, 0.99524, 0.99555, 0.99173, 0.9976, 0.9961, 0.9936, 0.99382, 0.99947, 0.997, 0.9962, 0.9976, 0.9983, 0.9986, 0.98993, 0.99922, 0.9958, 0.9994, 0.9974, 0.9977, 0.998, 0.99458, 0.99552, 0.99194, 0.9953, 0.99084, 0.9973, 0.9966, 0.99288, 0.9928, 0.9975, 0.9961, 0.9982, 0.9952, 0.9934, 0.996, 0.998, 0.9961, 0.99366, 0.99138, 0.9991, 0.99305, 1.0001, 0.9981, 0.9965, 0.99628, 0.99164, 0.99193, 0.9991, 0.9931, 0.99771, 0.9993, 0.99176, 0.9962, 0.99048, 0.9944, 0.9936, 0.99469, 0.9986, 0.99362, 0.9978, 0.99884, 0.9958, 0.99779, 0.9927, 0.99924, 0.9962, 0.9958, 0.99692, 0.99818, 0.99732, 0.99471, 0.9978, 0.9978, 0.99402, 0.99211, 0.9956, 0.99176, 0.99032, 0.99488, 0.99069, 0.9994, 0.9998, 0.9955, 0.99514, 0.9929, 0.99907, 0.998, 0.9958, 0.9968, 0.9983, 0.9993, 0.99047, 0.99202, 0.9986, 0.99185, 0.99249, 0.9943, 0.9911, 0.99726, 0.99527, 0.9944, 0.99626, 0.99746, 0.99304, 0.9984, 0.99274, 0.9955, 0.99804, 0.9986, 0.99182, 0.9996, 0.99454, 0.997, 0.99718, 0.9904, 0.9986, 0.9962, 1.0004, 0.9954, 0.9965, 0.99516, 0.9944, 0.9998, 0.9944, 0.998, 0.9938, 0.99558, 0.9956, 0.9932, 0.997, 0.9954, 0.99773, 0.9953, 0.9994, 0.9963, 0.9991, 0.9969, 0.9956, 0.99212, 0.9967, 0.9968, 0.9918, 0.9914, 0.9964, 0.992, 0.99198, 0.99271, 1.0001, 0.9952, 0.9958, 0.9978, 0.9953, 0.99652, 0.9994, 0.99242, 0.9979, 0.9966, 1.0001, 0.9932, 0.99372, 0.9917], \"xaxis\": \"x2\", \"y\": [0.8142007211296887, 0.07257977436397642, 0.7430932382113554, 0.8214862427787604, 0.5698848321031316, 0.6048119589659149, 0.6466669219762841, 0.14510080060429495, 0.2250304680670007, 0.28492472637839966, 0.42061632734231896, 0.8281252124183194, 0.49622399336621903, 0.3482895521074759, 0.4678833354511545, 0.5708968386647719, 0.37048677721847617, 0.553632248395139, 0.8702137350251022, 0.42186952587750404, 0.8696774950675754, 0.5410576963494411, 0.3971326977900686, 0.3275001196198921, 0.9448289227093116, 0.7109941475090589, 0.41925580570138304, 0.3675472469853882, 0.6721911818800557, 0.5562207270314473, 0.5262426608517637, 0.3244609607385458, 0.15056615442564347, 0.15676979724311627, 0.6037730696030339, 0.6342511279653397, 0.021947035536558718, 0.32429164429335744, 0.5678746850743716, 0.3571680467137555, 0.7755534309390314, 0.3240287891037917, 0.699424662214302, 0.5151532452376618, 0.7564675819717819, 0.38343591026479057, 0.19811005648518398, 0.3168419703358067, 0.5315947262677626, 0.9269044449273315, 0.8260225289794664, 0.451791899378283, 0.830516920403184, 0.47128602930186, 0.19027823806377472, 0.5181346713949518, 0.29552777318700446, 0.45414400334446664, 0.39329840463575844, 0.42327932510626076, 0.45838907164509224, 0.2233864252642039, 0.3628419195926303, 0.6709353200988277, 0.46058046365566996, 0.25551237833043455, 0.7234147543269824, 0.1481282262733752, 0.314935793994079, 0.20050531530561894, 0.37453315488553635, 0.701015529968035, 0.6343341418527783, 0.1739320900588749, 0.734996253073231, 0.8172229478314255, 0.3598554146739685, 0.7121055211356295, 0.2620604909731644, 0.3421138035730516, 0.6951268813066005, 0.35208221297891723, 0.452099210446082, 0.18907620085798427, 0.5444201651108793, 0.6484058972837882, 0.3258186925596978, 0.5963383680780668, 0.6202666247822538, 0.576738593946626, 0.5054992484109841, 0.2972245631729925, 0.6844333356791464, 0.42629475072919953, 0.4405153833121037, 0.01207867704715336, 0.7609288944606691, 0.23951123982998349, 0.09310514674080905, 0.5084920166510624, 0.33067609257366243, 0.36481899584296196, 0.5708968386647719, 0.3194802059637459, 0.14207297841267416, 0.5776897120055972, 0.2026163425795633, 0.37909000048748537, 0.38206764842015895, 0.41324683104354176, 0.17826143731067332, 0.42339414872454434, 0.39148091864802853, 0.3511350413575442, 0.8053393751847749, 0.5937005322868365, 0.6849942580153355, 0.38930033076762494, 0.5168500865319015, 0.5699073288866824, 0.5376087249833421, 0.8185832461647057, 0.25950508036415604, 0.20394483716883388, 0.3303044530853749, 0.2528102968078532, 0.8477719856767125, 0.5217124250004609, 0.3303044530853749, 0.5382885532339231, 0.9625763866028243, 0.6536174904341296, 0.42629475072919953, 0.6458781618432388, 0.46574001023909845, 0.37268733756108086, 0.8180085473348132, 0.35493594975273335, 0.2423640089427935, 0.3636330633241046, 0.6421622311157122, 0.5444201651108793, 0.7396308412796291, 0.9036153464846048, 0.21101569987323432, 0.6004024464464508, 0.7595861882737439, 0.486549602332862, 0.2379839758891197, 0.5147825233229498, 0.2065932277190248, 0.4342628292980428, 0.5940848250235929, 0.4857193175270624, 0.5332610244722983, 0.5402196969638672, 0.8578846895389459, 0.5290225674595067, 0.6074669506688956, 0.1847839155105034, 0.3581391437324269, 0.4304380754474639, 0.8410120374942113, 0.5810086483513661, 0.19026233744636453, 0.7223494520380469, 0.8589928738613049, 0.8374625942163022, 0.781203852328267, 0.73983195178881, 0.41156537259256004, 0.7482873396984137, 0.44431713201158524, 0.7113673874393347, 0.49869552495399233, 0.7627102864663872, 0.37193390769028617, 0.37187810520956766, 0.3773291605703562, 0.8719651627687759, 0.6218762459828849, 0.3781393537983126, 0.553632248395139, 0.47624084907999176, 0.774399353278846, 0.5840424935194366, 0.5601025471409736, 0.6186690618327106, 0.620611700356168, 0.5755798886129706, 0.15047650536569443, 0.5530049338021776, 0.6597439619439023, 0.8300222117931148, 0.3490158529243493, 0.4410646109528086, 0.5067909967309752, 0.5851482063434866, 0.7149827463187939, 0.4849259975950144, 0.2094210588097294, 0.33399024531412796, 0.4083143545243069, 0.7497022835596558, 0.7817929239213606, 0.7637421953724776, 0.3825655414920891, 0.6611482494098961, 0.19022241257108333, 0.44972084577511023, 0.5476732603321269, 0.4831274653996314, 0.5077048340566679, 0.7289504589448288, 0.4379810490617926, 0.8017221455714771, 0.6434673631716396, 0.5059779734745421, 0.6065367192264559, 0.650368705032214, 0.34567471266024347, 0.39561589000187136, 0.3427787545601037, 0.4676404271158623, 0.5332283386400669, 0.4519108142444285, 0.40662831629925006, 0.42305576187259053, 0.22032895172816622, 0.5278715769330472, 0.43679486629948455, 0.743933429392776, 0.5269515041023835, 0.5008800654866953, 0.214168174561682, 0.44879088851457377, 0.683485355417811, 0.807753104897186, 0.42629475072919953, 0.8502951424821861, 0.17421175568219957, 0.25491371883486935, 0.7595861882737439, 0.6571724132942184, 0.7813188949129265, 0.5626906653340306, 0.8674288259883418, 0.6600514650598344, 0.4827749661719035, 0.5456147119159479, 0.39827550056677263, 0.27323823737433794, 0.695896529362927, 0.5048820477254727, 0.5422349097465021, 0.5610936746718964, 0.6571724132942184, 0.3088751107498249, 0.45428761266464013, 0.6604471727860799, 0.43371621376298963, 0.6171893197168647, 0.8100511550343341, 0.8100511550343341, 0.605832578461134, 0.5526475584669951, 0.4275055171336787, 0.8734720021260204, 0.8508295378350301, 0.5807723706867254, 0.8272749548927728, 0.2670652478909882, 0.7020144194675465, 0.4615566916191992, 0.7055847950248242, 0.43389869234556755, 0.6071692164257629, 0.3496825637352313, 0.23676491619791426, 0.7057755976874825, 0.15539001443149586, 0.6187538615870153, 0.8735882828904331, 0.30049486749739024, 0.23191705420611952, 0.8913917397916864, 0.4977157214618499, 0.16961113509580228, 0.8485494795219795, 0.4760032757956232, 0.5053843099270294, 0.2676015269871764, 0.3627664421236291, 0.15146266807038725, 0.7898179638281774, 0.6145296307645981, 0.3790380236797623, 0.3003532640340299, 0.6086112016774773, 0.39906793889171593, 0.8185832461647057, 0.6715802865662828, 0.8260225289794664, 0.6056902064850618, 0.400132762133902, 0.39471961640683584, 0.6449859309106076, 0.5637152910565628, 0.39949420960438964, 0.5490401551410112, 0.4398875418860128, 0.30916577334906253, 0.7093303227687476, 0.4562508424819209, 0.40444044759428516, 0.5773483646962835, 0.447777692034652, 0.4961542215384683, 0.32474312180562226, 0.21192693199409943, 0.9056903490933487, 0.5013816399998683, 0.758876109553896, 0.6364928148646596, 0.2952804752502578, 0.4748951900520853, 0.43679486629948455, 0.5479962315186364, 0.4728142838839701, 0.6343341418527783, 0.12248807650217919, 0.5052525886146573, 0.8281252124183194, 0.8930081609652758, 0.36283726088930296, 0.8098196742550625, 0.656477404357746, 0.193885049884708, 0.5269515041023835, 0.49858469647139786, 0.32780472036158087, 0.24927512797396847, 0.6148718578314069, 0.10691527318901187, 0.136775438340409, 0.8489192718114075, 0.2600203086082801, 0.8142007211296887, 0.5269515041023835, 0.7966615933629455, 0.5633234794197017, 0.767479452333631], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"density\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"density\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}, \"density_bad\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (ref)\", \"type\": \"scatter\", \"x\": [0.9976, 0.991, 0.9936, 0.9949, 0.99922, 0.9976, 0.9944, 0.99648, 0.996, 0.99898, 0.99914, 0.9927, 0.9982, 0.99244, 0.9932, 0.99459, 0.99655, 0.994, 0.99904, 0.9964, 0.9927, 0.9964, 0.9958, 0.99242, 0.9979, 0.997, 0.99403, 0.9979, 0.99741, 0.99266, 0.9969, 0.9932, 0.9965, 0.9948, 0.9975, 0.9958, 0.9935, 0.99519, 0.9971, 0.9958, 0.99792, 0.99828, 0.9928, 0.9941, 0.99593, 0.99773, 0.9925, 0.99254, 0.99628, 0.9957, 0.9974, 0.99824, 0.9951, 1.0002, 0.99699, 0.9988, 0.9959, 0.99212, 0.9926, 1.0001, 0.9972, 0.998, 0.99334, 0.997, 0.99733, 0.992, 0.9964, 0.9956, 0.9973, 0.993, 0.9963, 0.99817, 0.9976, 0.99048, 0.99166, 0.99208, 0.99745, 0.9941, 0.99892, 0.99152, 0.99397, 0.9948, 0.9957, 0.99585, 0.99382, 0.99699, 0.995, 0.9932, 0.9941, 0.9937, 0.99817, 0.9961, 0.9964, 0.9976, 1.0, 0.99548, 0.998, 0.996, 0.99528, 0.9998, 0.9982, 0.9982, 0.99405, 1.0008, 0.99625, 0.9973, 0.99684, 0.9902, 0.9963, 0.99502, 0.9956, 0.9937, 0.9958, 0.9949, 0.99634, 0.99642, 0.9976, 0.99001, 0.9985, 0.9934, 0.9976, 0.99374, 0.9968, 0.99687, 0.998, 0.99718, 0.99437, 0.9963, 0.9959, 0.99579, 0.9939, 1.001, 0.99478, 0.99604, 0.99534, 0.9946, 0.9956, 0.9986, 0.99138, 0.9962, 0.9989, 0.99582, 0.9904, 0.99736, 0.99287, 0.9932, 0.9924, 0.99678, 0.9981, 0.9972, 0.9912, 0.99783, 0.9907, 0.99669, 0.99317, 0.99656, 1.001, 0.9969, 0.9938, 0.9905, 0.9928, 0.9988, 0.9981, 0.99429, 0.99587, 0.9942, 0.99504, 0.9986, 0.99738, 0.9958, 0.99537, 0.98956, 0.9981, 0.99873, 0.9966, 0.99682, 0.9961, 0.99166, 0.9968, 0.9937, 0.99308, 0.9964, 0.9924, 0.9946, 0.9982, 0.99512, 0.9994, 0.99098, 0.99642, 0.9966, 0.9937, 0.992, 0.9968, 0.99036, 0.99548, 0.99672, 0.9968, 0.99388, 0.99907, 0.99255, 0.9937, 1.00242, 1.00242, 0.9966, 0.99234, 0.99625, 0.99184, 0.9982, 0.9942, 0.9897, 0.994, 0.99168, 0.9952, 0.9977, 0.99872, 0.99772, 0.9981, 0.9904, 0.9993, 0.9958, 0.99578, 0.99026, 0.9982, 0.9941, 0.99166, 0.99627, 0.9932, 1.0005, 0.9934, 0.998, 0.9944, 0.9938, 0.9957, 1.00044, 0.99026, 0.99244, 1.00118, 0.994, 0.99314, 0.9972, 0.99818, 0.99561, 0.99839, 0.9948, 0.99026, 0.99734, 0.9978, 0.99273, 0.99602, 0.9978, 1.001, 0.9944, 0.9965, 0.9966, 0.99434, 0.9987, 0.99496, 0.9934, 0.996, 1.0004, 0.9926, 0.9946, 0.998, 0.99238, 0.9954, 0.99479, 0.99362, 0.99296, 0.99633, 0.9977, 1.00241, 0.9984, 0.994, 0.99611, 0.9948, 0.99794, 0.9956, 0.99794, 0.99588, 0.9922, 0.9978, 0.99689, 0.9953, 0.99572, 0.9942, 0.99582, 0.9959, 0.9972, 0.9921, 0.9955, 0.9918, 0.9962, 0.9924, 0.99076, 0.99782, 0.99709, 0.99458, 0.99806, 0.9983, 0.998, 0.99346, 0.9937, 0.99814, 0.9966, 1.0001, 0.9926, 0.99943, 0.9955, 0.9986, 0.99657, 0.9945, 0.99558, 0.99689, 0.9955, 0.9979, 0.9938, 1.00098, 0.9984, 0.9969, 0.99732, 0.99647, 0.9968, 0.9955, 0.9962, 0.9949, 0.99663, 0.9976, 0.99454, 0.9967, 0.99577, 1.001, 0.9987, 0.99516, 0.9986, 0.99164, 0.9974, 0.99902, 1.0001, 0.99032, 0.99848, 0.9928, 0.9934, 0.9939, 0.9976, 0.9982, 0.99748, 0.99773, 0.9964, 0.994, 0.99898, 0.9966, 0.99575, 0.998, 0.9937, 0.99517], \"xaxis\": \"x\", \"y\": [0.7197707895473677, 0.05448058807241418, 0.5021256787650443, 0.4710854375480472, 0.7156076129280222, 0.7966690429773311, 0.7265425252145667, 0.16771266951545494, 0.610944103187451, 0.6324527530146118, 0.42180662537268765, 0.2598044700255929, 0.5503032830239416, 0.5632112185661304, 0.6840604465833231, 0.6224375641140001, 0.8071781895370533, 0.9515482366939344, 0.3994071349416132, 0.9677746238863042, 0.572587586261062, 0.7602674855798478, 0.861098734498427, 0.1386074727873, 0.6703360831713621, 0.8064003460928679, 0.3172728283240366, 0.8039094494444462, 0.9186426431335688, 0.6026275969807151, 0.8609701260317718, 0.3485833566260712, 0.3005246278528939, 0.2859113263741919, 0.4978204971029292, 0.5125675444128744, 0.4268860326359044, 0.11791793574572085, 0.440027850275134, 0.4938434408506086, 0.4933189622152446, 0.166194347192407, 0.30200278364192557, 0.6822425768461728, 0.8693180940701344, 0.24112389044610405, 0.43189370387303117, 0.284455178085937, 0.23793737479647703, 0.5535561322468214, 0.7900402576908969, 0.47373775892899717, 0.6055733033081183, 0.7462675017011632, 0.32245623572553406, 0.7612367841042231, 0.36308410170653527, 0.6103993963703384, 0.3965676277125745, 0.2230008284200371, 0.8480025164595866, 0.43585875500482685, 0.24095331994381775, 0.4030652094068704, 0.8951637220162157, 0.2782175630406618, 0.7337660836226194, 0.8352762102164887, 0.6223987562306759, 0.2928263700360406, 0.6563137004068428, 0.16155652477357085, 0.6364666355122575, 0.2186811050870735, 0.27206300237801306, 0.4358901152617537, 0.6136035252376228, 0.07900866299327158, 0.8522855318359817, 0.11906253414448076, 0.3466831105240652, 0.11265227152414181, 0.6302693732121377, 0.7168097665217413, 0.4796298258249143, 0.4476252306691143, 0.3612478268219491, 0.611861930499026, 0.15121036728507153, 0.5363393546692182, 0.16155652477357085, 0.441733396330222, 0.7834276811132227, 0.6364666355122575, 0.44873286860252337, 0.4948960601400133, 0.4172084246960842, 0.5055831714989107, 0.5269082808529498, 0.3737404408311804, 0.4491757516278906, 0.5266720849021, 0.2882430633103308, 0.6066213483726142, 0.83534933450756, 0.2509605867776752, 0.230738949997912, 0.25680675940048736, 0.6858999083789018, 0.27626495444752697, 0.35158671089680515, 0.311480105980391, 0.5950329577300569, 0.4196263877039489, 0.3672198477254309, 0.5488429300958864, 0.6273126624389191, 0.0990306898864649, 0.935036100419004, 0.5556828679884147, 0.6003916802566726, 0.1337843055401957, 0.6898191889393818, 0.46604488826349566, 0.6668872608045229, 0.5998672378660981, 0.14712454771937833, 0.8558065212045691, 0.883276495704891, 0.5544329747085402, 0.38398791005853006, 0.8623310715459079, 0.4482795971615686, 0.4767821080964978, 0.6451659669426603, 0.5099786295438409, 0.11454219273407718, 0.5691587732433696, 0.2398813672346335, 0.8592796956842923, 0.38133093816728936, 0.4754945767078651, 0.2673740541283356, 0.43092180164799054, 0.5981491184574936, 0.7512253043619477, 0.20474988026063612, 0.12337786436138054, 0.6965484670033051, 0.4642254518352117, 0.29034758521725457, 0.7912282271603185, 0.1364389858241727, 0.5326323768611896, 0.3938848007926149, 0.886984727126295, 0.5955398539691413, 0.3667393936023857, 0.35129461810907203, 0.578130474122496, 0.1952086434691429, 0.6982941690158907, 0.6159300986783536, 0.6650580695700093, 0.8007006003287879, 0.13750802167619447, 0.47121416359091395, 0.5691587732433696, 0.5295784007050042, 0.4938434408506086, 0.4240508430342457, 0.1531205555636086, 0.7965770364050346, 0.4829168465516456, 0.6333246955344933, 0.38682769986244625, 0.5589353890471914, 0.30965836575156913, 0.6133571507425741, 0.5363393546692182, 0.5474540697204298, 0.9680074395956593, 0.29703705077451537, 0.7566858385458134, 0.451244026180727, 0.6224939697452743, 0.9340693900855184, 0.1254375450851024, 0.770680513376406, 0.7273231109206828, 0.410671569380914, 0.19928392436820586, 0.44743622108127745, 0.4991477681643879, 0.5443787589855091, 0.826082779912576, 0.5642536294664222, 0.6762559922350657, 0.39283078357423706, 0.3074847569358159, 0.40732461839200396, 0.5614584986504241, 0.5614584986504241, 0.575628870274347, 0.1938881144566701, 0.6480440770440566, 0.23946299348505806, 0.6110142157087575, 0.32489046344192996, 0.127020290619695, 0.28948900574123104, 0.27970970921902805, 0.5179212029104148, 0.579807192000203, 0.5695619245525361, 0.7471497674522103, 0.6761943115269239, 0.6052803835931642, 0.9048996801452402, 0.632953623191418, 0.7849920634816455, 0.12946409768986655, 0.3899257470968539, 0.37735505673750047, 0.27206300237801306, 0.6356505945299911, 0.9000798247851504, 0.5852448485124296, 0.3537739535016634, 0.8589709040748648, 0.5105041430354158, 0.4760479563081992, 0.3915586115462193, 0.4344526143297297, 0.04825794875232026, 0.25106204840173363, 0.5352062615150248, 0.2084678736174792, 0.5588772074146924, 0.42656597432725707, 0.3395528272139201, 0.5154796814541086, 0.30312695461308037, 0.4684625037801391, 0.13140485141127656, 0.37575572516499556, 0.7087902803012941, 0.22740617784346517, 0.7932370230268412, 0.6977827466507267, 0.8687065743771458, 0.3532210556477622, 0.3005246278528939, 0.8817461779308045, 0.5897758288136841, 0.5117334773877459, 0.2267712913026929, 0.7462523759498982, 0.5055831714989107, 0.6276122794572256, 0.34766968675436505, 0.563322001169588, 0.4035281086421867, 0.44827723495654004, 0.7588644006503809, 0.17560197311170134, 0.2736156405730563, 0.5646478519097824, 0.12788772013874206, 0.8127608550985441, 0.35130933230290007, 0.8842329534318195, 0.5671758377024384, 0.508518787579709, 0.4735654621913231, 0.6614347321502836, 0.7032589073748752, 0.418601168771625, 0.40262233345395115, 0.38045938978299354, 0.6221728234115828, 0.6769388667590319, 0.825791915264051, 0.8036522945246104, 0.5350776523934957, 0.5038683203672731, 0.4187790963850706, 0.3942708224564714, 0.36585282612655, 0.42973128126448334, 0.1395024853671747, 0.36909778672938764, 0.5126700875045708, 0.31128511290513083, 0.5841805470690385, 0.42932394036482613, 0.5168725346003686, 0.9331527243268325, 0.5090935678835011, 0.848083892739094, 0.7288594688776423, 0.23463814542978878, 0.9073343486287574, 0.5445649372592127, 0.8030108083542629, 0.30698149193503155, 0.47724620771884374, 0.49565431290071005, 0.29179072192325783, 0.53941953634433, 0.32642767658125227, 0.5714063949384225, 0.6769388667590319, 0.48314991346809855, 0.3838692085325581, 0.7654355578102645, 0.6807995217458978, 0.7803105409218809, 0.4971816769068883, 0.5662837862370104, 0.32557907866588853, 0.4059739580227363, 0.8621668957327787, 0.4863555612469991, 0.44913520001249685, 0.5044088987161788, 0.018560580499064172, 0.17397747102053363, 0.8203404366189, 0.531551035274026, 0.3951880410340851, 0.6710839680909022, 0.7545393605546251, 0.25029771644034415, 0.31651464458218903, 0.7900402576908969, 0.7649542174153934, 0.6282404390050247, 0.5124469561170844, 0.7501741577575001, 0.3717170374651112, 0.5479204837841629, 0.1799627586960565, 0.8716748635647116, 0.4700369344869263, 0.7044722268129955, 0.7597806244765397, 0.4570971226262448, 0.3688130253756654, 0.5854022956087224, 0.6067015953642416, 0.6092966434658947, 0.5713009051869427, 0.15316343939585397, 0.31191498773739224], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [0.992, 0.9964, 0.99097, 0.99511, 0.9934, 0.99558, 0.98894, 0.9909, 0.9902, 0.98994, 0.9926, 0.99458, 0.9951, 1.0, 0.9955, 0.9954, 0.99, 1.0032, 0.99002, 0.99364, 0.99566, 0.99175, 0.9928, 0.99085, 0.9938, 0.9938, 0.98742, 0.9955, 0.9942, 0.9892, 0.9911, 0.99728, 0.9914, 0.99035, 0.99076, 0.99855, 0.9969, 0.98892, 0.99015, 0.99089, 0.98954, 0.9945, 0.9971, 0.99245, 0.99676, 0.9972, 0.9978, 0.992, 0.9962, 0.9906, 0.9978, 0.9991, 0.98998, 0.99304, 0.992, 0.9979, 0.99201, 0.98941, 0.992, 0.992, 0.99758, 0.99016, 0.991, 0.993, 1.001, 0.9984, 0.99064, 0.9941, 0.9954, 0.99146, 0.9918, 0.98934, 0.99278, 0.99316, 0.9965, 0.99556, 0.9973, 0.98928, 0.99638, 0.9916, 0.995, 0.99012, 0.99109, 0.997, 0.9935, 0.99096, 0.9918, 0.9982, 0.9896, 0.9984, 0.9919, 0.9918, 0.9942, 0.9912, 0.99471, 0.99241, 0.99567, 0.98959, 0.98984, 0.9946, 0.9934, 0.9986, 0.99638, 0.9951, 0.98914, 0.9938, 0.9925, 0.9946, 0.99058, 0.99472, 0.99002, 1.0103, 0.99208, 0.99666, 0.99202, 0.9889, 0.99034, 0.98974, 0.999, 0.99534, 0.99808, 0.9924, 0.9974, 0.998, 0.99678, 0.99538, 0.9958, 0.9974, 0.9931, 0.9983, 0.9934, 0.98746, 0.9998, 0.99624, 0.9966, 0.98976, 0.99834, 0.99627, 0.98968, 0.998, 0.99007, 0.9945, 0.99452, 0.9935, 0.9984, 0.9938, 0.99279, 0.9905, 0.9948, 0.9974, 0.99792, 0.998, 0.99256, 0.99775, 0.99835, 0.99189, 0.99033, 0.9908, 0.9931, 0.98972, 0.9949, 0.99616, 0.99014, 0.9974, 0.9938, 0.9962, 0.99642, 0.9942, 0.9977, 0.9894, 0.99566, 0.9964, 0.993, 0.99507, 0.9964, 0.9948, 0.9964, 0.9939, 0.99174, 0.99736, 0.99462, 0.99, 0.99458, 0.9895, 0.9949, 0.991, 0.98758, 0.9973, 0.9912, 0.9932, 0.99183, 0.99378, 0.9918, 0.99269, 0.99744, 0.9901, 0.99353, 0.99178, 0.99041, 0.99184, 0.9948, 0.9916, 0.9926, 0.99504, 0.99394, 0.99408, 0.9974, 0.9944, 0.99807, 0.9982, 0.9928, 0.9916, 0.99111, 0.99215, 0.99089, 0.9934, 0.99112, 0.9938, 0.99276, 0.98954, 0.9926, 0.9997, 0.9923, 0.9907, 0.99814, 0.9938, 0.9986, 0.99945, 0.993, 0.99471, 0.99235, 0.9928, 0.99379, 0.99522, 0.99224, 0.99324, 0.9922, 0.9954, 0.9908, 0.99397, 0.99558, 0.9979, 0.9931, 0.99955, 0.99588, 0.9938, 0.9937, 0.99776, 0.9953, 0.98994, 1.0003, 0.9986, 0.9982, 0.99672, 0.99674, 0.99278, 0.99022, 0.99396, 0.9912, 0.9948, 0.9973, 0.9911, 0.99153, 0.991, 0.99119, 0.9911, 0.991, 0.99652, 0.99489, 0.98942, 0.99144, 0.9949, 0.99254, 0.99252, 0.98919, 0.99784, 0.99469, 0.99523, 0.99378, 0.99212, 0.9941, 0.9911, 0.99008, 0.98963, 0.99116, 0.99545, 0.99946, 0.997, 0.9971, 0.99044, 0.9924, 0.9916, 0.99408, 0.99174, 0.9937, 0.9955, 0.9972, 0.9921, 0.99199, 0.994, 0.99387, 0.99462, 0.992, 0.9928, 0.994, 0.99534, 0.9945, 0.99057, 0.9999, 0.99274, 0.99685, 0.9983, 0.99362, 0.9923, 0.9925, 1.0002, 0.9942, 0.98912, 0.99094, 0.9892, 0.98914, 0.9908, 0.9918, 0.9927, 0.9917, 0.9972, 0.9954, 0.99546, 0.9974, 0.99198, 0.99308, 0.99066, 0.9986, 0.99464, 0.9917, 0.99954, 0.99202, 0.99414, 0.9982, 0.9952, 0.9962, 0.9934, 0.9891, 0.9941, 0.99573, 0.9936, 0.9967, 0.99685, 0.98918, 0.9986, 0.99518, 0.9932, 0.99469, 0.99109, 0.99705, 0.9917, 0.9964, 0.98987, 0.9996, 0.9904, 0.99886, 0.9924, 0.997, 0.99494, 0.99745, 0.99606, 0.98999, 0.9909, 0.99615, 0.9975, 0.9926, 0.9918, 0.9929, 0.9948, 0.99036, 0.99228, 0.98984, 0.99822, 0.99299, 0.9987, 1.0015, 0.99563, 0.9984, 0.9984, 0.9957, 0.99194, 1.00369, 0.993, 0.9952, 0.99035, 0.9916, 0.99896, 0.9945, 0.9927, 0.9954, 0.99549, 0.9922, 1.00295, 0.98956, 0.9973, 0.9961, 0.997, 0.99352, 0.9994, 0.99238, 0.99524, 0.9927, 0.9917, 0.9914, 0.9957, 0.99304, 0.99331, 0.99108, 0.992, 0.9923, 0.99064, 0.9921, 0.999, 0.99392, 0.9944, 0.99546, 0.99326, 0.995, 0.99792, 0.99534, 0.9908, 0.99158, 0.99136, 0.99122, 0.9928, 0.9931, 0.99063, 0.99024, 0.9898, 0.993, 0.98816, 0.9965, 0.99586, 0.9925, 0.9986, 0.9912, 0.9916, 0.99132, 0.996, 0.99358, 0.9938, 0.9977, 0.9934, 0.9978, 0.99074, 0.99048, 0.9898, 0.98994, 0.99342, 0.9966, 1.0004, 0.9948, 0.99514, 0.99596, 0.99602, 0.9986, 0.9971, 1.0003, 1.00051, 0.99084, 0.99566, 0.9927, 0.9912, 0.99581, 0.995, 0.9972, 0.99656, 0.9965, 0.99975, 0.99052, 0.989, 0.9916, 0.99455, 0.99393, 0.9924, 0.9946, 1.00038, 0.99906, 0.9958, 0.99475, 0.9935, 0.9906, 0.99835, 0.98883, 0.9932, 0.99863, 0.99686, 0.99322, 0.99678, 0.99331, 0.9925, 0.9978, 0.99392, 0.99105, 0.99384, 0.99596, 0.99216, 0.99321, 0.9979, 0.99124, 0.99472, 0.98946, 0.9945, 0.98926, 0.9925, 0.9898, 0.99066, 0.99587, 0.9984, 0.98942, 0.98876, 0.99045, 0.9975, 0.9913, 0.9906, 0.99416, 0.98794, 0.9925, 0.9911, 0.99675, 0.98931, 0.9983, 0.992, 0.99658, 0.99136, 0.9991, 0.9964, 0.992, 0.99658, 0.9923, 0.9965, 0.9952, 0.99461, 0.99287, 0.9918, 0.9944, 0.98944, 0.9976, 0.9953, 0.99074, 0.98794, 0.99643, 0.9954, 0.99114, 0.99374, 0.99218, 0.9948, 0.993, 0.9966, 0.99152, 0.99498, 0.9925, 0.99615, 0.99715, 0.99056, 0.9937, 0.9965, 0.9906, 0.9982, 0.99157, 0.9919, 0.99157, 0.9953, 0.9898, 0.99543, 0.9899, 0.9937, 0.99203, 0.99036, 0.99008, 0.9892, 0.99971, 0.992, 0.99785, 0.9927, 0.99044, 0.9912, 0.995, 0.995, 0.9942, 0.99522, 0.98856, 0.9939, 0.9927, 0.99095, 0.9972, 0.98946, 0.99542, 0.98944, 0.9985, 0.99411, 0.99266, 0.9962, 0.99268, 0.9971, 0.9917, 0.9925, 0.9968, 0.99142, 0.9964, 0.9979, 0.99214, 0.99737, 0.9917, 0.99807, 0.99334, 0.99798, 0.99558, 0.9972, 0.98946, 0.99543, 0.9934, 0.9938, 0.9947, 0.9969, 0.99752, 0.99082, 0.9983, 0.9962, 0.99692, 0.9928, 0.998, 0.9909, 0.99494, 0.98987, 0.99578, 0.997, 0.9986, 0.99544, 0.99321, 0.99072, 0.9985, 0.99494, 0.99118, 0.9968, 0.99112, 1.0004, 0.9907, 0.9921, 0.9934], \"xaxis\": \"x\", \"y\": [0.18439386755371057, 0.5750868907731637, 0.1132172353536568, 0.19850047615697952, 0.6950004168934912, 0.41826441672946313, 0.040828937665112974, 0.2145583871630251, 0.09143093017991866, 0.10013996234885614, 0.3658834999306372, 0.587897812361327, 0.23563705889496211, 0.5289998061994394, 0.5981734696485812, 0.5956194363709464, 0.11295199838815062, 0.6349332021584286, 0.09356782907078887, 0.0672754654033908, 0.3541579814831264, 0.11781588709523827, 0.3295981493457443, 0.23443288181779365, 0.13830133810679424, 0.5122546205578999, 0.03626449638205209, 0.32057959349203036, 0.3955164844050859, 0.21320459763992916, 0.08620177311633537, 0.4132497936565127, 0.19514157099220286, 0.028148892894647393, 0.03728071159582558, 0.20213762816504022, 0.39088790332760825, 0.10566618212719892, 0.11466232649727714, 0.09544364959788487, 0.07351553674018241, 0.3657542344632553, 0.05859665738698361, 0.43634835962676355, 0.4827032077898804, 0.516310366273556, 0.6480037931050455, 0.21122004543372697, 0.030344760075157406, 0.22750344576024595, 0.18673438423788624, 0.5460909738859347, 0.0666291073587214, 0.320234954276134, 0.515425573770442, 0.5751179393061847, 0.3262180383913996, 0.12192585741802231, 0.6165939755266235, 0.09365914315081003, 0.44259853952477324, 0.31958523161407537, 0.09228899111547839, 0.22815273642701062, 0.5282447951108347, 0.7777719169155834, 0.13834506443323813, 0.29425092810710396, 0.5300870647699181, 0.031947521718024174, 0.1108646816717751, 0.053339747820140615, 0.14466174791529418, 0.25697560969337485, 0.3383868137798065, 0.30803904997837983, 0.03434255320493995, 0.08689109251212201, 0.46044782253877736, 0.0973761441498977, 0.3449058470623745, 0.024212367984770777, 0.11665042079727428, 0.3333970234137619, 0.1495417879159372, 0.0679784404121434, 0.2360052425084116, 0.39147703437781534, 0.04428683932015287, 0.5381556738404795, 0.4357341587922019, 0.11843845992675284, 0.28107964630818494, 0.06989794698232743, 0.2658605825653322, 0.22408104406272966, 0.15519213452661884, 0.09873339188795927, 0.10739713799337769, 0.4712507279726723, 0.31257930793611366, 0.6259141532505736, 0.1651629894813923, 0.13024327386797574, 0.08242409751896962, 0.55355901104019, 0.11256152515999429, 0.22124325125588817, 0.05838775174278421, 0.6734770756819889, 0.06919042490492266, 0.5773286546676725, 0.5693181878572973, 0.12726917141891614, 0.27983888222674136, 0.15690954109554833, 0.18593824584442387, 0.05432525584274117, 0.33273366741371935, 0.12435295831370408, 0.48112847828662497, 0.2959384652215836, 0.5042039768350125, 0.3749869638443927, 0.7258627386781167, 0.4806866421912115, 0.6234335830956541, 0.4191951896523489, 0.20821728825178332, 0.6343085651912675, 0.27674577061671146, 0.02140654255666985, 0.42849246998341506, 0.1817444030106703, 0.4551538855951942, 0.05087080041524106, 0.516641204200833, 0.6810720245435042, 0.08151744899857294, 0.4475169494323581, 0.03995706953508171, 0.2181819033834006, 0.20372897255157485, 0.24305701296248816, 0.5381556738404795, 0.2358485729609252, 0.051323642447754336, 0.1913631294907303, 0.32154631204965056, 0.31229802093755377, 0.3917329141436472, 0.39462053822053156, 0.3680669306910641, 0.5017894292511481, 0.32120711190509066, 0.0768019282386515, 0.1168769044932052, 0.31545143431826594, 0.12007957373947853, 0.08354361700756141, 0.2180731800932174, 0.7653011157176768, 0.05076221583963347, 0.11739077279846111, 0.3639458403519926, 0.4815918747301601, 0.35998732468747585, 0.457353694020342, 0.5520498791697908, 0.22168281241722143, 0.2132287846887433, 0.4763394582576197, 0.3040153802820409, 0.20749766415549342, 0.3316810644107503, 0.8126297477835096, 0.5749367295182395, 0.27274039590582944, 0.2685808245693546, 0.5172108675362206, 0.33506587713796443, 0.09616672688355288, 0.041108213935392324, 0.10548050716105373, 0.5016695616404938, 0.20022874051447226, 0.14220640128276774, 0.23772630779738468, 0.19606080251004787, 0.2603188495268066, 0.18846597668723208, 0.19827111133563302, 0.261548791893628, 0.4140325207077993, 0.8134796325151183, 0.12265695643958285, 0.6311167068993262, 0.13481820177301163, 0.0932384579037443, 0.14050160114126486, 0.2562249115981724, 0.08547750670655718, 0.08643201081848362, 0.19981675431015722, 0.31390222338706264, 0.06221739913672386, 0.06996303880871468, 0.30029370289300306, 0.4306817897420764, 0.6595343859760441, 0.2839408857911616, 0.20468539219890003, 0.1130196126722065, 0.2360017176902124, 0.13187147729288817, 0.42313120297864704, 0.06964897436687001, 0.1624399718171824, 0.17200815643270417, 0.07333105637055992, 0.2440137653363641, 0.4900110333069776, 0.3085554157386313, 0.03480496731142946, 0.12148031785507996, 0.15002971926037112, 0.5314247042003052, 0.2758453007685677, 0.2151852748992088, 0.2658605825653322, 0.29911225563077193, 0.6594110243744711, 0.49869782335001445, 0.16788254706683048, 0.11816213334465087, 0.08230909248122409, 0.13653212507346946, 0.25639170942272826, 0.06562233405876228, 0.23311900627036541, 0.3756616197417655, 0.46674395287949066, 0.3092684534350997, 0.8337319641197457, 0.8331457111467163, 0.2591056156836542, 0.4778687671024334, 0.2542440524586721, 0.5361036306539362, 0.07073721340803463, 0.4731688813159418, 0.5755848065786346, 0.356689463387698, 0.14225616860197343, 0.21837916002376445, 0.14466174791529418, 0.29899643271856946, 0.4757427727983842, 0.08126799884203029, 0.1296501822378736, 0.3286954654423938, 0.08620177311633537, 0.13855855420831553, 0.05543377339452393, 0.11917834098009661, 0.2613621884509647, 0.11269900223777074, 0.08429051026621415, 0.3393961441870107, 0.07031960314855146, 0.11356777592095357, 0.4853279864284006, 0.1279289285514792, 0.0584572339054259, 0.08612988585012649, 0.3472440907423937, 0.1248029959061332, 0.07502335399434323, 0.19827111133563302, 0.3424151534036639, 0.3065175956815872, 0.13808860398564737, 0.058092197534895806, 0.04082786106581715, 0.1602592849246841, 0.09156161599234125, 0.5036030690663805, 0.2640411824475748, 0.6468038092930676, 0.07201805208597656, 0.22470230804277058, 0.1334773721572423, 0.04847889440667685, 0.2685808245693546, 0.10911308148570098, 0.6764508967260475, 0.6280060594576413, 0.36761958218269275, 0.16019930342079847, 0.17605308658107655, 0.14078981831089854, 0.2384997092801764, 0.13117402490907393, 0.12818959986091483, 0.4161925244315118, 0.12435295831370408, 0.09814942480303201, 0.05480698563416486, 0.3746187330143109, 0.41092354232892336, 0.507894749900129, 0.5137929421583434, 0.08293523366016065, 0.2964416548030494, 0.15236141109070434, 0.4396941021426354, 0.41893931094950754, 0.09113953260801844, 0.10967473999240707, 0.055732078845942, 0.05640314085190745, 0.06176263301115803, 0.06427139521062619, 0.20386133178572885, 0.21597661143113533, 0.7486409492386699, 0.2610715902497083, 0.09465277491899493, 0.5556171757583562, 0.137718889647652, 0.1978940751503777, 0.08472590699531857, 0.356262641598029, 0.14596950445002987, 0.13865818299932142, 0.3088915816821678, 0.11516321289421916, 0.16121169033174265, 0.40573483691789825, 0.34308606282264, 0.36300204724896845, 0.17193414756867276, 0.035926383178341514, 0.34536882843285344, 0.4400180463892147, 0.5165194668234709, 0.23319834124303085, 0.9637923675569924, 0.2635599134550337, 0.6259141532505736, 0.12324962258280003, 0.1256037712827487, 0.1248029959061332, 0.11665042079727428, 0.29081136443782263, 0.12993062945549005, 0.20959981847797426, 0.12385816607190492, 0.16931651488884025, 0.2468284110987674, 0.6181879252747016, 0.3509541008179864, 0.08619429866610873, 0.09537770951135394, 0.8204393830764495, 0.2493836920976743, 0.10367142046182065, 0.11516383353466464, 0.07169627826225977, 0.5400384130096556, 0.2709141565803237, 0.16809050322974173, 0.3421981324687273, 0.812724325423183, 0.1326589750154965, 0.054670132935181304, 0.055346153509382656, 0.8039442695404772, 0.3276168958360183, 0.6561718697940482, 0.6214102617950452, 0.3046829516703813, 0.7853649284745584, 0.7303620793003476, 0.6719087507962026, 0.16000678121984613, 0.579612101366232, 0.6347749924714103, 0.41894393066564606, 0.06936532322770372, 0.28322834609079706, 0.343263893078516, 0.4450860003239352, 0.3090838478611311, 0.408095736797927, 0.11529682880263803, 0.13359771811640497, 0.2417229185475579, 0.10092265889692065, 0.8181934133883563, 0.3777834313813965, 0.8273808576462511, 0.18439353202429143, 0.5148786056082297, 0.11287077888712382, 0.16015059460472458, 0.29672938182784603, 0.36944561074938853, 0.2505850522824452, 0.8467591712977676, 0.3840267097226593, 0.261779448872241, 0.1645479955558209, 0.14631295673285594, 0.4248523287309329, 0.09222807982804315, 0.2121484308544801, 0.33273366741371935, 0.5470626312455473, 0.8294144697045585, 0.25206662215500397, 0.15998368749433245, 0.548322128117227, 0.3917329141436472, 0.15981565308588508, 0.23631147082452741, 0.21082920466209698, 0.1871387197916503, 0.24774693401855818, 0.1913242313933492, 0.16437448769677154, 0.07582203648947516, 0.032541140295091364, 0.06311143057978008, 0.5009235508757715, 0.12343879567504301, 0.445735807756371, 0.40322837553658053, 0.09397553936597514, 0.1598391281143201, 0.26702494168661406, 0.19782301216908982, 0.06831823449824892, 0.5451167746582685, 0.20142160156100697, 0.25747632252511843, 0.4257317671215596, 0.5062318064185062, 0.10278357133077332, 0.10857266292312517, 0.06223864817381186, 0.11377411494697365, 0.14082424186384768, 0.2589321903149734, 0.31776639873426016, 0.07983414941561229, 0.30174211068680845, 0.42532907678292176, 0.23734670470511587, 0.2862296469110084, 0.24790288035387664, 0.5526146374040077, 0.20425399436950087, 0.5166825128498294, 0.12415322942140417, 0.5310696157212036, 0.3866387435262121, 0.14313186082947948, 0.31648660326859934, 0.026792916001305622, 0.7856428374245099, 0.42383310375799566, 0.5944566396871084, 0.6256605001243821, 0.08813642250468567, 0.03544811528140901, 0.06935406654889886, 0.15751976448865512, 0.22608551288474832, 0.3127311228465576, 0.1409438166611655, 0.3285615524533705, 0.3591330499592894, 0.47964497307801546, 0.7143146030302826, 0.14223944449319303, 0.06929054967731618, 0.32120711190509066, 0.16913647442041335, 0.707286257884667, 0.3230684446475647, 0.7616845263358343, 0.4104900542879092, 0.10053249234255524, 0.1106599594415556, 0.1543174595222413, 0.46003879185641183, 0.3811350878514418, 0.07185070571861518, 0.23882593985771994, 0.5344976262521839, 0.11031385635331636, 0.09610989844306939, 0.4955559099445003, 0.07845190603324759, 0.30697262074812925, 0.12767551958037127, 0.4375661224395835, 0.07737023387634634, 0.15307682457740834, 0.05694427046787409, 0.09028836937410878, 0.4011292297732457, 0.6186146927451245, 0.11561676905211238, 0.0993047499370594, 0.08102401279833105, 0.8100206966555492, 0.10768932514586738, 0.15386113005635593, 0.4026560765644126, 0.045535707525545144, 0.08229583319403, 0.08227601457953415, 0.8241544781987433, 0.0759900855540333, 0.5147505197509459, 0.11103147778198663, 0.42144961755966015, 0.24880465403270857, 0.3112403223054312, 0.3282460941643247, 0.28312386083977936, 0.2865521931047814, 0.16537364909659502, 0.4284132019637321, 0.34116073112729894, 0.051142721309942685, 0.10794707492381372, 0.1108646816717751, 0.29201805921023904, 0.07365131996157204, 0.36851051207096197, 0.2556143611338999, 0.07392456180697715, 0.045535707525545144, 0.15025986810093994, 0.4395989822566938, 0.19636656988846957, 0.21018464628148859, 0.15085686628779282, 0.3429118439192298, 0.16104008564300487, 0.2055862423584408, 0.18673310211333727, 0.5528531989583015, 0.20219789553586287, 0.5807830339134155, 0.6112381610839525, 0.07515362639458067, 0.5722084734915175, 0.3654892991508686, 0.1991057466826236, 0.4912569401667811, 0.05850610073101081, 0.3077884117234785, 0.17038242498240874, 0.14066607718466684, 0.10248584652416493, 0.4022873718442217, 0.07205214632436985, 0.35142291824287475, 0.10941760034103376, 0.06679271580157364, 0.05675388891699207, 0.058987921856350156, 0.3660303223369904, 0.28790374422385034, 0.4158290962648631, 0.40710291595796666, 0.09934102670994882, 0.06362846635195196, 0.30921476208988685, 0.23242198019285765, 0.055541210656895434, 0.5297663836663529, 0.10744632778983743, 0.18410212910939194, 0.17721960751489196, 0.1962664672709783, 0.1617648996714035, 0.10584426414108294, 0.5203501665477333, 0.07365131996157204, 0.31578819840495265, 0.35364190165315845, 0.1707951928721818, 0.41655733121321636, 0.15801546378512366, 0.7568436608419439, 0.22368578646300386, 0.0609449253562836, 0.2225096762928218, 0.18587673368692093, 0.05559101133196209, 0.569598540521716, 0.08073228430722412, 0.15724041301590164, 0.12879141548479, 0.4306817897420764, 0.17998791969802397, 0.41280880088413996, 0.5723062335690389, 0.6457404130724687, 0.10420061808672998, 0.12564769853034463, 0.21795029564941848, 0.4720930498870375, 0.11304202998506685, 0.545112257205237, 0.14852188644910969, 0.17217029085021085, 0.336250902618187, 0.48671482860553816, 0.5093433434984792, 0.35847801144896685, 0.3008706318705062, 0.18494609259573758, 0.4199330463236065, 0.04162287990776414, 0.2633909944023186, 0.4252182303976608, 0.4684623303117058, 0.1925553058603695, 0.09610989844306939, 0.09129843496680234, 0.3302708189676917, 0.4199330463236065, 0.11927294568859859, 0.4864154015695107, 0.06472081497616611, 0.6387929002666255, 0.37932906694235924, 0.093713747684541, 0.20627971812824875], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (curr)\", \"type\": \"scatter\", \"x\": [0.9966, 0.99556, 0.9939, 0.99126, 0.9996, 1.001, 0.99565, 0.998, 0.99692, 0.9997, 0.9956, 0.9918, 0.99513, 0.99587, 0.99869, 1.0, 0.9959, 1.0004, 0.99253, 0.9905, 0.9918, 0.9996, 0.9946, 0.9978, 0.99009, 0.9926, 0.997, 0.99898, 0.99215, 0.9931, 0.99839, 0.9944, 0.99798, 0.9963, 0.9926, 0.99341, 0.998, 0.9968, 0.9953, 0.9934, 0.9918, 0.99494, 0.9968, 0.9982, 0.992, 0.99212, 0.9976, 0.99616, 0.99911, 0.99244, 0.99454, 1.0011, 0.9937, 0.99612, 0.9976, 0.9963, 0.99748, 1.00315, 0.9966, 0.99848, 1.00315, 0.9976, 0.9962, 1.0006, 0.99657, 0.99592, 0.99702, 0.9978, 0.9965, 0.9956, 0.99654, 0.99093, 0.99212, 0.99694, 0.9938, 0.99174, 1.0, 0.9918, 0.99345, 0.99717, 0.9966, 0.99576, 0.9972, 0.9968, 0.9938, 0.9923, 0.9967, 0.99976, 0.992, 0.9978, 0.9951, 0.9936, 0.998, 0.9991, 0.99683, 0.99476, 0.9958, 0.9986, 0.9972, 0.99596, 0.99918, 0.99479, 1.0, 0.9955, 0.9954, 0.99584, 0.9984, 0.99448, 0.99416, 0.9989, 0.9964, 0.9983, 0.99712, 0.99362, 0.9926, 0.99669, 0.99676, 0.99471, 0.9955, 0.9958, 0.9962, 0.99182, 0.9946, 0.996, 0.99546, 0.99915, 0.99111, 0.9997, 0.99546, 0.9938, 0.98876, 0.99734, 0.9991, 0.992, 0.99694, 0.9976, 0.993, 0.9976, 0.99681, 0.99494, 0.9938, 0.9938, 0.99239, 0.9939, 0.9992, 0.99677, 0.99176, 0.9958, 0.9964, 0.99568, 0.9932, 0.99942, 0.9973, 0.9958, 0.99344, 0.9928, 0.99481, 0.99584, 0.99696, 0.9988, 0.99745, 0.99872, 0.99212, 0.9982, 0.9974, 0.9944, 0.9904, 0.99264, 0.99299, 0.99534, 0.9997, 0.9966, 0.9934, 0.99204, 0.9964, 0.98918, 0.9923, 0.99775, 0.99742, 0.99642, 0.9941, 0.99688, 1.0004, 0.9927, 0.99705, 0.99154, 0.9958, 0.9989, 0.9936, 0.99545, 0.99743, 0.99524, 0.99555, 0.99173, 0.9976, 0.9961, 0.9936, 0.99382, 0.99947, 0.997, 0.9962, 0.9976, 0.9983, 0.9986, 0.98993, 0.99922, 0.9958, 0.9994, 0.9974, 0.9977, 0.998, 0.99458, 0.99552, 0.99194, 0.9953, 0.99084, 0.9973, 0.9966, 0.99288, 0.9928, 0.9975, 0.9961, 0.9982, 0.9952, 0.9934, 0.996, 0.998, 0.9961, 0.99366, 0.99138, 0.9991, 0.99305, 1.0001, 0.9981, 0.9965, 0.99628, 0.99164, 0.99193, 0.9991, 0.9931, 0.99771, 0.9993, 0.99176, 0.9962, 0.99048, 0.9944, 0.9936, 0.99469, 0.9986, 0.99362, 0.9978, 0.99884, 0.9958, 0.99779, 0.9927, 0.99924, 0.9962, 0.9958, 0.99692, 0.99818, 0.99732, 0.99471, 0.9978, 0.9978, 0.99402, 0.99211, 0.9956, 0.99176, 0.99032, 0.99488, 0.99069, 0.9994, 0.9998, 0.9955, 0.99514, 0.9929, 0.99907, 0.998, 0.9958, 0.9968, 0.9983, 0.9993, 0.99047, 0.99202, 0.9986, 0.99185, 0.99249, 0.9943, 0.9911, 0.99726, 0.99527, 0.9944, 0.99626, 0.99746, 0.99304, 0.9984, 0.99274, 0.9955, 0.99804, 0.9986, 0.99182, 0.9996, 0.99454, 0.997, 0.99718, 0.9904, 0.9986, 0.9962, 1.0004, 0.9954, 0.9965, 0.99516, 0.9944, 0.9998, 0.9944, 0.998, 0.9938, 0.99558, 0.9956, 0.9932, 0.997, 0.9954, 0.99773, 0.9953, 0.9994, 0.9963, 0.9991, 0.9969, 0.9956, 0.99212, 0.9967, 0.9968, 0.9918, 0.9914, 0.9964, 0.992, 0.99198, 0.99271, 1.0001, 0.9952, 0.9958, 0.9978, 0.9953, 0.99652, 0.9994, 0.99242, 0.9979, 0.9966, 1.0001, 0.9932, 0.99372, 0.9917], \"xaxis\": \"x2\", \"y\": [0.18579927887031134, 0.9274202256360236, 0.2569067617886446, 0.17851375722123963, 0.43011516789686843, 0.3951880410340851, 0.35333307802371594, 0.854899199395705, 0.7749695319329993, 0.7150752736216004, 0.5793836726576811, 0.17187478758168062, 0.503776006633781, 0.6517104478925241, 0.5321166645488455, 0.4291031613352281, 0.6295132227815239, 0.446367751604861, 0.12978626497489776, 0.578130474122496, 0.1303225049324246, 0.4589423036505589, 0.6028673022099313, 0.6724998803801079, 0.055171077290688375, 0.28900585249094113, 0.5807441942986169, 0.6324527530146118, 0.32780881811994433, 0.4437792729685527, 0.47375733914823626, 0.6755390392614542, 0.8494338455743565, 0.8432302027568838, 0.3962269303969661, 0.36574887203466033, 0.9780529644634413, 0.6757083557066426, 0.43212531492562845, 0.6428319532862445, 0.2244465690609686, 0.6759712108962084, 0.300575337785698, 0.4848467547623382, 0.24353241802821812, 0.6165640897352094, 0.801889943514816, 0.6831580296641933, 0.4684052737322374, 0.07309555507266852, 0.17397747102053363, 0.548208100621717, 0.16948307959681597, 0.5287139706981401, 0.8097217619362252, 0.48186532860504816, 0.7044722268129955, 0.5458559966555334, 0.6067015953642416, 0.5767206748937392, 0.5416109283549078, 0.7766135747357961, 0.6371580804073698, 0.3290646799011723, 0.53941953634433, 0.7444876216695655, 0.27658524567301757, 0.8518717737266248, 0.685064206005921, 0.7994946846943811, 0.6254668451144636, 0.29898447003196504, 0.36566585814722175, 0.8260679099411251, 0.265003746926769, 0.18277705216857454, 0.6401445853260315, 0.2878944788643705, 0.7379395090268356, 0.6578861964269485, 0.3048731186933995, 0.6479177870210828, 0.5479007895539181, 0.8109237991420157, 0.4555798348891207, 0.35159410271621183, 0.6741813074403022, 0.40366163192193316, 0.3797333752177462, 0.42326140605337403, 0.49450075158901585, 0.7027754368270075, 0.31556666432085356, 0.5737052492708005, 0.5594846166878963, 0.9879213229528466, 0.23907110553933086, 0.7604887601700165, 0.906894853259191, 0.49150798334893764, 0.6693239074263375, 0.635181004157038, 0.4291031613352281, 0.6805197940362542, 0.8579270215873258, 0.42231028799440284, 0.7973836574204367, 0.6209099995125147, 0.617932351579841, 0.5867531689564582, 0.8217385626893267, 0.5766058512754557, 0.6085190813519714, 0.6488649586424557, 0.19466062481522506, 0.4062994677131635, 0.31500574198466447, 0.6106996692323751, 0.48314991346809855, 0.4300926711133176, 0.4623912750166579, 0.18141675383529432, 0.7404949196358439, 0.7960551628311661, 0.6696955469146251, 0.7471897031921468, 0.15222801432328747, 0.4782875749995391, 0.6696955469146251, 0.4617114467660769, 0.0374236133971757, 0.34638250956587036, 0.5737052492708005, 0.35412183815676124, 0.5342599897609015, 0.6273126624389191, 0.1819914526651868, 0.6450640502472667, 0.7576359910572065, 0.6363669366758954, 0.35783776888428775, 0.4555798348891207, 0.2603691587203709, 0.09638465351539516, 0.7889843001267657, 0.3995975535535492, 0.2404138117262561, 0.5134503976671381, 0.7620160241108803, 0.4852174766770502, 0.7934067722809752, 0.5657371707019572, 0.40591517497640706, 0.5142806824729376, 0.4667389755277017, 0.4597803030361328, 0.14211531046105408, 0.4709774325404933, 0.39253304933110444, 0.8152160844894966, 0.6418608562675732, 0.5695619245525361, 0.15898796250578873, 0.4189913516486339, 0.8097376625536354, 0.2776505479619531, 0.14100712613869515, 0.1625374057836978, 0.21879614767173305, 0.26016804821119, 0.5884346274074399, 0.25171266030158634, 0.5556828679884147, 0.2886326125606653, 0.5013044750460076, 0.23728971353361283, 0.6280660923097139, 0.6281218947904323, 0.6226708394296439, 0.1280348372312241, 0.37812375401711507, 0.6218606462016874, 0.446367751604861, 0.5237591509200082, 0.22560064672115399, 0.4159575064805634, 0.43989745285902637, 0.38133093816728936, 0.379388299643832, 0.4244201113870294, 0.8495234946343055, 0.44699506619782237, 0.3402560380560977, 0.16997778820688525, 0.6509841470756508, 0.5589353890471914, 0.49320900326902484, 0.41485179365651337, 0.2850172536812061, 0.5150740024049856, 0.7905789411902706, 0.6660097546858721, 0.5916856454756931, 0.25029771644034415, 0.21820707607863943, 0.23625780462752244, 0.6174344585079109, 0.33885175059010386, 0.8097775874289167, 0.5502791542248897, 0.45232673966787307, 0.5168725346003686, 0.4922951659433321, 0.2710495410551712, 0.5620189509382074, 0.19827785442852286, 0.35653263682836045, 0.4940220265254579, 0.3934632807735441, 0.349631294967786, 0.6543252873397565, 0.6043841099981286, 0.6572212454398962, 0.5323595728841377, 0.4667716613599331, 0.5480891857555714, 0.5933716837007499, 0.5769442381274095, 0.7796710482718338, 0.4721284230669528, 0.5632051337005155, 0.25606657060722404, 0.47304849589761655, 0.4991199345133047, 0.785831825438318, 0.5512091114854263, 0.31651464458218903, 0.192246895102814, 0.5737052492708005, 0.14970485751781393, 0.8257882443178004, 0.7450862811651306, 0.2404138117262561, 0.3428275867057816, 0.2186811050870735, 0.43730933466596944, 0.1325711740116582, 0.33994853494016564, 0.5172250338280965, 0.4543852880840521, 0.6017244994332274, 0.7267617626256621, 0.304103470637073, 0.49511795227452726, 0.4577650902534979, 0.4389063253281036, 0.3428275867057816, 0.6911248892501751, 0.5457123873353599, 0.3395528272139201, 0.5662837862370104, 0.38281068028313525, 0.1899488449656659, 0.1899488449656659, 0.39416742153886597, 0.4473524415330049, 0.5724944828663213, 0.12652799787397961, 0.14917046216496987, 0.4192276293132746, 0.1727250451072272, 0.7329347521090118, 0.2979855805324535, 0.5384433083808008, 0.2944152049751758, 0.5661013076544325, 0.39283078357423706, 0.6503174362647687, 0.7632350838020857, 0.29422440231251745, 0.8446099855685041, 0.3812461384129847, 0.1264117171095669, 0.6995051325026098, 0.7680829457938805, 0.1086082602083136, 0.50228427853815, 0.8303888649041977, 0.15145052047802054, 0.5239967242043768, 0.49461569007297057, 0.7323984730128237, 0.6372335578763709, 0.8485373319296128, 0.21018203617182263, 0.3854703692354019, 0.6209619763202376, 0.6996467359659702, 0.3913887983225227, 0.600932061108284, 0.18141675383529432, 0.32841971343371723, 0.17397747102053363, 0.3943097935149382, 0.5998672378660981, 0.6052803835931642, 0.35501406908939237, 0.4362847089434372, 0.6005057903956104, 0.45095984485898877, 0.5601124581139871, 0.6908342266509375, 0.29066967723125237, 0.5437491575180791, 0.5955595524057149, 0.4226516353037165, 0.552222307965348, 0.5038457784615318, 0.6752568781943777, 0.7880730680059006, 0.09430965090665133, 0.4986183600001317, 0.24112389044610405, 0.3635071851353404, 0.7047195247497422, 0.5251048099479148, 0.5632051337005155, 0.4520037684813636, 0.5271857161160298, 0.36566585814722175, 0.8775119234978208, 0.49474741138534273, 0.17187478758168062, 0.1069918390347242, 0.6371627391106971, 0.19018032574493748, 0.34352259564225396, 0.806114950115292, 0.47304849589761655, 0.5014153035286022, 0.6721952796384192, 0.7507248720260316, 0.38512814216859315, 0.8930847268109882, 0.863224561659591, 0.15108072818859253, 0.7399796913917198, 0.18579927887031134, 0.47304849589761655, 0.2033384066370545, 0.43667652058029827, 0.23252054766636898], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [0.9934, 0.9979, 0.99234, 0.9932, 0.99686, 0.9927, 0.9926, 0.99362, 0.989435, 0.99239, 1.0, 0.9908, 0.98918, 0.99168, 0.98904, 0.9932, 0.99438, 0.99189, 0.999, 0.9903, 0.999, 0.9986, 0.992, 0.9935, 0.99541, 0.9893, 0.99326, 0.99146, 0.99144, 0.99165, 0.98889, 0.9957, 0.9992, 0.99449, 0.98871, 0.9936, 0.9914, 0.99488, 0.98988, 0.995, 0.99123, 0.99014, 0.9958, 0.9986, 0.9974, 0.99417, 0.9998, 0.9968, 0.9969, 0.9908, 0.9972, 0.9917, 0.9946, 0.9922, 0.99376, 1.0006, 0.998, 0.9916, 0.99795, 0.99652, 0.99724, 0.99727, 0.99206, 0.99406, 0.99534, 0.98964, 0.9966, 0.9951, 0.99236, 0.9945, 0.9986, 0.99064, 0.99815, 0.99313, 0.9983, 0.99668, 0.99922, 0.99207, 0.9949, 0.9975, 0.98972, 0.9923, 0.99492, 0.9914, 0.9965, 0.99536, 0.99652, 0.99456, 0.9932, 0.994, 0.99526, 0.9934, 0.9904, 0.98836, 0.9931, 0.99148, 0.99704, 0.99018, 0.9968, 0.99376, 0.993, 0.99596, 0.99438, 0.98882, 0.9986, 0.99566, 0.996, 0.99262, 0.99132, 0.99159, 0.99551, 1.0103, 0.99144, 0.9893, 0.99171, 0.9934, 0.99238, 0.9934, 0.99552, 0.9989, 0.99322, 0.98976, 0.99384, 0.99, 0.99638, 0.99649, 0.9981, 0.991, 0.9984, 0.98961, 0.98961, 0.9933, 0.98918, 1.00014, 0.9931, 1.0006, 0.99667, 0.9979, 0.99252, 0.9917, 0.9943, 0.995, 0.9994, 0.99576, 0.99745, 0.9916, 0.9993, 0.9991, 0.993, 0.9927, 0.99564, 0.99094, 0.997, 0.9987, 0.98954, 0.9912, 0.99676, 0.9947, 0.99232, 0.9979, 0.9898, 0.9983, 0.98934, 0.99394, 0.9992, 0.9913, 0.99458, 0.9959, 0.99554, 0.9932, 0.99099, 0.9923, 0.99665, 0.99738, 0.9907, 0.9927, 0.991, 0.99154, 0.98872, 0.99444, 0.9943, 0.99646, 0.9934, 1.0002, 0.9956, 0.99314, 0.999, 0.9908, 1.001, 0.9949, 0.99278, 0.9984, 0.99076, 0.99064, 0.9931, 0.9918, 0.99173, 0.9893, 0.9993, 0.99612, 0.9914, 0.99312, 0.9937, 0.9929, 0.99294, 0.9928, 0.9947, 0.999, 0.993, 0.99742, 0.99224, 0.98986, 0.9948, 0.98998, 1.0006, 0.99162, 0.99232, 0.9914, 0.9922, 0.99, 0.9914, 0.9956, 0.9975, 0.99544, 0.9994, 0.9971, 0.99134, 0.9941, 0.99617, 0.99194, 0.99842, 0.9951, 0.994, 0.9922, 0.9956, 1.0004, 0.99031, 0.99164, 0.99216, 0.9917, 0.9938, 0.99176, 0.99313, 0.9959, 0.9956, 0.996, 0.99807, 0.9986, 0.9931, 0.9984, 0.9948, 0.9983, 1.0006, 0.9912, 0.99581, 0.99676, 0.9933, 0.99095, 0.98924, 0.99067, 0.99498, 0.9946, 0.9931, 0.99435, 0.9938, 0.99055, 0.9912, 0.99516, 0.9958, 0.9968, 0.99454, 0.99182, 0.98878, 0.9988, 0.9962, 0.9977, 0.9932, 0.99498, 0.99154, 0.99512, 0.9979, 0.99088, 0.99161, 0.99494, 0.99158, 0.9963, 0.99188, 0.99035, 0.9945, 0.9924, 1.0003, 0.9994, 0.99655, 0.98974, 0.99152, 0.99296, 0.99782, 0.99173, 0.9975, 0.9924, 0.98944, 0.9932, 0.99184, 0.9912, 0.9976, 0.99534, 0.98986, 0.99287, 0.991, 0.99047, 0.99691, 0.99165, 0.99646, 0.99708, 0.9902, 0.99178, 0.9963, 0.99232, 0.9938, 0.9934, 0.99176, 0.99408, 0.99572, 0.9998, 1.0026, 0.99, 0.992, 0.99734, 0.9975, 0.99204, 0.99492, 0.99666, 0.9994, 0.997, 0.99288, 0.994, 0.9996, 0.99685, 0.9958, 0.99346, 0.99215, 0.99521, 0.9974, 0.9956, 0.9967, 0.99406, 0.9936, 0.9926, 0.9982, 0.99086, 0.9955, 0.99158, 0.99975, 0.9987, 0.9966, 0.9926, 0.99815, 0.99366, 0.99706, 0.99358, 0.99071, 0.99582, 0.9988, 0.9986, 0.99551, 0.9956, 0.99862, 0.9957, 0.99882, 0.99324, 0.98823, 0.9952, 0.992, 0.99043, 1.0002, 0.99655, 0.98942, 0.99356, 0.99553, 0.99315, 0.9954, 0.9928, 0.99226, 0.9958, 0.99, 0.9948, 0.992, 0.9898, 0.99354, 0.99186, 0.99404, 0.99922, 0.992, 0.9988, 0.9939, 0.99557, 0.9999, 0.99531, 0.9903, 0.992, 0.9938, 0.991, 0.9907, 0.99784, 0.98952, 0.998, 0.9952, 0.99148, 0.99792, 0.99058, 0.9974, 0.99282, 0.9923, 0.9927, 0.99519, 0.9967, 0.9951, 0.99683, 0.99165, 0.99176, 0.99006, 0.99002, 0.99736, 0.99612, 0.9987, 0.9908, 0.9946, 0.99445, 0.98965, 0.9904, 0.99086, 0.9934, 0.99046, 0.9902, 0.99774, 0.9984, 0.996, 0.9976, 0.991, 0.99808, 0.9986, 0.9934, 0.9963, 0.9954, 0.98956, 0.9988, 0.99084, 0.99314, 0.99522, 0.99739, 0.99704, 0.9959, 0.9941, 0.99458, 0.99971, 0.9919, 0.99544, 0.99094, 0.9992, 0.99416, 0.99189, 0.98936, 0.99352, 0.9984, 0.99276, 0.9939, 0.9926, 0.993, 0.9928, 0.9966, 0.9944, 0.9952, 0.99467, 0.9984, 0.9943, 0.99381, 0.9946, 0.99121, 0.99174, 0.99052, 0.9944, 0.9927, 0.9962, 0.99552, 0.9958, 0.994, 0.99184, 0.98916, 0.99581, 0.99522, 0.9957, 0.9998, 0.99444, 0.99599, 0.9944, 0.9982, 0.9925, 0.9979, 0.99331, 0.9997, 0.99018, 0.99517, 0.9986, 0.9908, 0.98815, 0.99862, 0.99566, 0.9906, 0.9984, 0.9916, 0.99418, 0.992, 0.98779, 0.9915, 0.9934, 0.99, 0.99824, 0.9986, 0.9956, 0.99439, 0.9887, 0.9968, 0.9906, 0.9965, 0.9901, 0.99772, 0.9948, 0.991, 0.9947, 0.9984, 0.99572, 0.99388, 0.9976, 0.989315, 0.99358, 0.9926, 0.9978, 0.996, 0.99636, 0.99784, 0.99316, 0.99339, 0.99724, 0.9921, 0.98845, 0.99437, 0.99708, 0.99614, 0.98992, 0.9986, 0.9997, 0.99362, 0.9928, 0.99552, 0.99115, 0.99508, 0.99556, 0.98964, 0.9903, 0.99221, 0.99676, 0.9954, 0.99825, 0.99546, 0.9948, 0.991, 0.9945, 0.99479, 0.98912, 0.99042, 0.9963, 0.99787, 0.9916, 0.99742, 0.9893, 0.99158, 0.9954, 0.99172, 0.9925, 0.9906, 0.99459, 0.9976, 0.99456, 0.9893, 0.9931, 0.9927, 0.9963, 0.997, 0.9931, 0.99514, 0.9968, 0.99354, 0.9948, 0.99261, 0.99454, 0.9994, 0.99198, 0.998, 0.9928, 0.99068, 0.99384, 0.99275, 0.9952, 0.9932, 0.99165, 0.99616, 0.99659, 0.9924, 0.99316, 0.992, 0.9928, 0.99532, 0.9936, 0.98939, 0.99616, 0.99367, 0.98892, 0.99596, 0.99784, 0.99267, 0.99347, 0.9919, 0.99089, 0.99425, 0.99226, 0.989465, 0.9902, 0.995, 0.99565, 0.99192, 0.9964, 1.0014, 0.9898, 0.9922, 0.99166, 0.99576, 0.9884, 0.99764, 0.9951, 0.9953, 0.98964, 1.0001, 0.99837, 0.9934, 0.998, 0.99586, 0.99014, 0.99455], \"xaxis\": \"x2\", \"y\": [0.6660328535674787, 0.4955559099445003, 0.11251030999551548, 0.5313240922219649, 0.7616845263358343, 0.42881839881496897, 0.22146723198036844, 0.2709448900825402, 0.04188686298684474, 0.3198999677935893, 0.586632325439729, 0.3332859260788763, 0.0891770245136605, 0.07249138429342028, 0.0813041402249215, 0.2808128557304226, 0.18155424903412543, 0.14020593233116785, 0.20529540916933675, 0.1755850319354616, 0.5722846846512241, 0.4684623303117058, 0.2863708053899042, 0.4489302200945696, 0.3606737334686688, 0.09834172337505831, 0.1439119889738254, 0.10526388551166177, 0.08976738859769384, 0.15927641460572795, 0.07353544332944184, 0.4894096639868448, 0.24735122968283396, 0.41440459167745447, 0.10107859516115147, 0.4809249647595707, 0.043928674649753696, 0.27268427565697984, 0.07203278686513981, 0.35989685204578803, 0.08410225657903847, 0.09640449279894714, 0.2859044620344169, 0.766491644508495, 0.27194216744256416, 0.11891721880979944, 0.6033870782914414, 0.8445823904457724, 0.4148378249676725, 0.09538880480821377, 0.5822786697287807, 0.2006236885231063, 0.30215903380660414, 0.3526626332448971, 0.22921561702294402, 0.3499358724503807, 0.451050436906263, 0.01968005574460141, 0.3849224947932618, 0.608666907839271, 0.30333177217190177, 0.05732515971384944, 0.08299070223644744, 0.155374347961305, 0.4378217303747408, 0.10641916767178827, 0.3207785913922725, 0.3280003244598044, 0.4747408725557203, 0.27229542413121455, 0.5314247042003052, 0.13834506443323813, 0.652508483608137, 0.1775869136191267, 0.4659209431511335, 0.3288332341233703, 0.47224603889779837, 0.2773569186284155, 0.18590272545123854, 0.6719763059805124, 0.04569198037744582, 0.22473444069733528, 0.0776074933333939, 0.1411968215808168, 0.3654892991508686, 0.06069899520469324, 0.21029328672965164, 0.13919371635861133, 0.16321149678759816, 0.6144435769482088, 0.1388055550317996, 0.0827658987104557, 0.0793107693477757, 0.04994940743047871, 0.46220165202879504, 0.08265172102971341, 0.5554564865761329, 0.10902951494304747, 0.26480674198345266, 0.31816712550642645, 0.20184400370343658, 0.23734670470511587, 0.19264674509953905, 0.03558879485690103, 0.5314247042003052, 0.3013473679880785, 0.8043030592862955, 0.07665185966197174, 0.17816243980233548, 0.14637302723887635, 0.43623195291339645, 0.5773286546676725, 0.06996409198491005, 0.0635191394270278, 0.11839391684253864, 0.03368970372860669, 0.16544292122901683, 0.5002106013252752, 0.20783967621931676, 0.4413184352618238, 0.1377753535318076, 0.017128038770129694, 0.09070427960766203, 0.05237321155563324, 0.46044782253877736, 0.09863911308639095, 0.6058955548956951, 0.07377868677997379, 0.33726125667837825, 0.03705661785513226, 0.03856885477325478, 0.01970319875133708, 0.06623921298607705, 0.655672818127978, 0.36403826442427, 0.375635621083512, 0.25822104517587474, 0.26990817233175546, 0.30316845466795117, 0.21597661143113533, 0.10411587283779344, 0.4582573305440075, 0.28974208538397184, 0.3995654588450376, 0.48407929824265805, 0.2412117545349558, 0.49704114689177337, 0.3112403223054312, 0.13571503940671914, 0.35304273602320047, 0.18963603484652192, 0.06023564559469896, 0.305863422303413, 0.34062746964654456, 0.03532029949184434, 0.20200996882548472, 0.207876095289533, 0.11304202998506685, 0.26487496820305634, 0.46674395287949066, 0.05931266843465788, 0.6063731497207538, 0.053339747820140615, 0.16056749669580483, 0.3366557342021428, 0.18735912995827353, 0.2667542380283816, 0.9197592959547904, 0.13322255285490225, 0.3533185668595151, 0.08763312389948397, 0.343329095265401, 0.1298321532292276, 0.11240742021865013, 0.03412749239977686, 0.23316671381479437, 0.13955591125269062, 0.065615492475942, 0.03940539431326806, 0.04874684240881699, 0.42507109047861347, 0.3720756994829524, 0.20627971812824875, 0.23346983492740092, 0.299872058778726, 0.14688925552714138, 0.20529540916933675, 0.11294333341234963, 0.4523771212155355, 0.15895981664313275, 0.12633289347617382, 0.34801013400503944, 0.063056887931354, 0.09222807982804315, 0.19281104432210028, 0.11843845992675284, 0.1064686731970873, 0.12171087020281346, 0.49704114689177337, 0.4202798549667376, 0.058322454167927695, 0.40418598015134155, 0.7514842711311043, 0.067978575311199, 0.1468497162592186, 0.3655805321171328, 0.36741292271676196, 0.08785516413846428, 0.4223454464089015, 0.09472348251934337, 0.14196098925812006, 0.10013555988874479, 0.32154631204965056, 0.05416575683382341, 0.786126361492164, 0.04696516601190348, 0.26926088858349784, 0.28123172687107445, 0.3094364396730669, 0.04307250962973752, 0.07126159086244754, 0.6143015945908075, 0.495586079448059, 0.46102608015166635, 0.40789311683600216, 0.8929715185951024, 0.1227006502272181, 0.3638055988942468, 0.10470002869891348, 0.29304213908849364, 0.8936703981375603, 0.3534407380188983, 0.0883666731866185, 0.07895584641700149, 0.05166417783587085, 0.4199775765299997, 0.10304865631077798, 0.1041340676595982, 0.11031385635331636, 0.22368578646300386, 0.22137255536682798, 0.0725394352715707, 0.08320759746190642, 0.3577905591727162, 0.36362749207413336, 0.13058702032609693, 0.4306817897420764, 0.4684623303117058, 0.3185463047756948, 0.6991046594229053, 0.33105510290791684, 0.35804773811787727, 0.3499358724503807, 0.17780319308126435, 0.07142366539796174, 0.1504846162366139, 0.28643330026545544, 0.11492102279820171, 0.08716328114311156, 0.12905574960179156, 0.5528531989583015, 0.2852168598030531, 0.3185463047756948, 0.41766807389819915, 0.22818770291371737, 0.10749415552266317, 0.07500089027222667, 0.2150933620687273, 0.4879833184669665, 0.21367083697314282, 0.18281788227943807, 0.11217648511765432, 0.01860460444149037, 0.4990100838788346, 0.3212979959143686, 0.7252893191599291, 0.30018855716775616, 0.2808216200321265, 0.24332849241566534, 0.22583693263898685, 0.307128141019565, 0.12930297020615966, 0.07734813107736227, 0.38078614076753503, 0.037937415915298756, 0.18389331462546077, 0.2015421194948802, 0.10121634311933059, 0.7209948827487924, 0.252131738577411, 0.19866278493931944, 0.5569604587758099, 0.19172534874952063, 0.07516041810443141, 0.18673310211333727, 0.20736440356309183, 0.27568985010185776, 0.1748501221961516, 0.134246332983591, 0.12151400729184814, 0.03860330573341564, 0.16198960071610413, 0.062309112953929935, 0.14943540958877521, 0.46827469198568006, 0.12435295831370408, 0.11768791031746062, 0.10794707492381372, 0.04347111427796346, 0.07423675680829, 0.1602542791395647, 0.19911642350143877, 0.2379444352717226, 0.36664322039668684, 0.10130143557253446, 0.17108028607870185, 0.6143194513817134, 0.5641235853966853, 0.29864316680665437, 0.44752301946823647, 0.13459844499503626, 0.037461465199631894, 0.5002964248569376, 0.4059565893810353, 0.7035957096210382, 0.0629603198376949, 0.25036415064992923, 0.14780834332950044, 0.24800647860056513, 0.10438723399855232, 0.24366911510822187, 0.4574644219698093, 0.8347014835967527, 0.42226245660703365, 0.4073158502222598, 0.47525484003715535, 0.37845934883934684, 0.35325777167774697, 0.4763432908647238, 0.18941100564626978, 0.23853527246002126, 0.27277355193056574, 0.5556171757583562, 0.19481513110659687, 0.7460207524242459, 0.12627308236197843, 0.2115813466591615, 0.4773837842994688, 0.22238536240250728, 0.1978655273089749, 0.32057959349203036, 0.1601330373243487, 0.6256605001243821, 0.34062746964654456, 0.5899158924001677, 0.1273375405407705, 0.6866376712310945, 0.3812864953771038, 0.07918534602430627, 0.10510921928053807, 0.052405178286905496, 0.29010285216427345, 0.5802968836962079, 0.4475494904811408, 0.33107045093633036, 0.6046547135519548, 0.33132995382553565, 0.3391582818855403, 0.37109937806185267, 0.18876467901964422, 0.03244681540368277, 0.6531311156123596, 0.18281848038190407, 0.06840545126676123, 0.23876166598551407, 0.5602062902528231, 0.05478334190217349, 0.18965009362393503, 0.502081053312289, 0.0945975060483667, 0.24937367783354814, 0.14040338921272166, 0.09582424632391484, 0.4879833184669665, 0.07536550594022651, 0.37763546052463404, 0.20240400638142053, 0.06234715971662652, 0.1729504208160284, 0.2536573606029918, 0.1491704939138675, 0.47224603889779837, 0.20734784509414073, 0.1656619584420439, 0.20263687678412212, 0.4576701693643329, 0.3746187330143109, 0.06578487521364562, 0.09359041291034786, 0.15714155813810793, 0.43198081216185935, 0.17693664965610134, 0.14200602748771296, 0.16878839641400256, 0.11131318694256087, 0.43040972974554736, 0.12494266711040569, 0.5286591337585229, 0.3917329141436472, 0.14284790216410748, 0.29931895876037384, 0.3998656181534954, 0.13198036366642862, 0.2166851793268345, 0.164669749255824, 0.3116999397838065, 0.5702002297218003, 0.2867818412254799, 0.05809024612643199, 0.0701620515557333, 0.10493669218879953, 0.03474255021640338, 0.14069518845012563, 0.7697788668098057, 0.44513161239284327, 0.12104291767226882, 0.2823656727566666, 0.28640273091276736, 0.09904459769556595, 0.10889384421684001, 0.1978655273089749, 0.6326587477498924, 0.0766186874204361, 0.07300117689776386, 0.3978521493117628, 0.7293533971641823, 0.24040337450518035, 0.46827469198568006, 0.03737110954461231, 0.48112847828662497, 0.5755848065786346, 0.12151472907643468, 0.332302417201758, 0.3208349144509022, 0.13406270144296106, 0.47820199098358873, 0.024219732643774528, 0.7923035912680444, 0.3099424932714111, 0.8494816644677875, 0.15230116664989468, 0.8795672599938588, 0.34536882843285344, 0.587897812361327, 0.3660303223369904, 0.3074082248441362, 0.1925553058603695, 0.1582957933341015, 0.5297945963993664, 0.1892543681582496, 0.06574637766643598, 0.03286461121245521, 0.6223124217546917, 0.48666930315350876, 0.17200815643270417, 0.27042696199957883, 0.16010429726024444, 0.25291734909108765, 0.22778758435893687, 0.6055190518965303, 0.41989528411161425, 0.2865861541738164, 0.17344095530188786, 0.4163761941495938, 0.24610426408478792, 0.029106329843254564, 0.5849270471051293, 0.09607886499379148, 0.4890296174547498, 0.11193395874659995, 0.3667485749721523, 0.29672938182784603, 0.13696827462710404, 0.03986507081677082, 0.41542023534722683, 0.1642424989032959, 0.041559354155004224, 0.1266666793707928, 0.5259198205822933, 0.42123490919744344, 0.6147437654518444, 0.42849246998341506, 0.04874684240881699, 0.16870816563337898, 0.35179373534084035, 0.4552463954734379, 0.1543174595222413, 0.4641274821418986, 0.1106599594415556, 0.40441066041397966, 0.05916303638108533, 0.24194101851814365, 0.5755848065786346, 0.23631147082452741, 0.04679471849088612, 0.33132995382553565, 0.6031606095022326, 0.16900214819844117, 0.9322526967181247, 0.1065938389205352, 0.0540586741766943, 0.14920224829950646, 0.03054451782098533, 0.13595064656866984, 0.15908339514281045, 0.09402391562754642, 0.27219479721363327, 0.10477531970828624, 0.6046547135519548, 0.04412971358840656, 0.0821245873848182, 0.24953715645213048, 0.24311299470472425, 0.679537413518331, 0.02875041056121841, 0.2874129658970298, 0.17131102264191878, 0.07042427222914205, 0.1577516063520068, 0.39934634677258996, 0.42249259173992826, 0.24940231538328683, 0.46827469198568006, 0.040988937643475554, 0.034828704291737345, 0.26663563965858417, 0.22421743312747255, 0.10716094829621758, 0.7421831263598226, 0.4644511163280224, 0.1591307416719686, 0.21502194578256428, 0.12883185373794437, 0.15520095945599266, 0.04280666734842442, 0.06928764484923078, 0.3578757504587543, 0.0760792945579073, 0.06637805380770656, 0.5755848065786346, 0.4326356954473739, 0.16985579355455038, 0.47152805642545803, 0.11644579282256762, 0.11790522998710073, 0.5438286352264949, 0.41561805514360906, 0.050606352251634235, 0.21836830194439782, 0.22298545275517268, 0.1504846162366139, 0.16819644397314482, 0.47796113776613436, 0.14100197907825862, 0.7878397890034206, 0.12176963827920351, 0.09814942480303201, 0.23162396036129984, 0.04400104962869911, 0.061588508633294015, 0.2774601068082493, 0.40816383821078206, 0.14036214651023216, 0.11837607594274324, 0.0703155477214753, 0.17002415827487982, 0.24611532014486182, 0.06874641727313702, 0.30975746960573625, 0.07004288447243323, 0.6453829176356538, 0.3880412370469972, 0.10205495289732236, 0.12171087020281346, 0.38550692709735157, 0.4398162761337091, 0.5769741243450848, 0.48842976274850136, 0.3866799681687785, 0.17129518728202664, 0.5711206597512044, 0.4456070955069118, 0.4585850027539752, 0.25462747480751524, 0.34771016550763867, 0.35548618548401445, 0.07878090041588082, 0.3008706318705062, 0.08117751180329491, 0.055511805197920094, 0.1600174453683395, 0.35597309965685686, 0.5473978930443646, 0.3321771897262046, 0.14643302530661162, 0.7653011157176768, 0.24188431843396252, 0.16704799028757666, 0.41136103198090634, 0.5749869949413896, 0.709238838470871, 0.09340318303147321, 0.602429869503323, 0.04154705947390969, 0.7519582179986716, 0.15993940416551844, 0.04372375151311325, 0.4076899811241429, 0.4644511163280224, 0.3133137248525114, 0.24628490675063597, 0.06972977174174444, 0.15949948541388637, 0.2241543425141257, 0.1729876202034616, 0.07290025122558275, 0.1220000714032804, 0.36493953208423235, 0.09420126302076737, 0.026726938234992392, 0.7199273032686843, 0.4606762448039463, 0.04906818437448113, 0.19446415942665518, 0.14876853598344464, 0.3247816953453747, 0.023320858692869595, 0.7310618090422621, 0.48944479260603346, 0.20357574295749958, 0.0840537250624015, 0.5368744051465595, 0.21101467800102214, 0.46682279298460017, 0.3749869638443927, 0.46592999202179275, 0.10188412989688433, 0.15751976448865512], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"density\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"density\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}, \"All_pH\": {\"data\": [{\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Reference<br>pH=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [3.17, 3.36, 3.32, 3.59, 3.37, 3.4, 3.22, 3.36, 3.14, 3.1, 3.06, 3.16, 3.52, 3.06, 3.37, 3.14, 3.09, 2.95, 3.34, 3.18, 3.12, 3.21, 3.23, 3.25, 2.94, 3.64, 3.31, 3.14, 3.28, 3.33, 3.38, 3.3, 3.1, 3.38, 3.13, 3.11, 3.12, 3.4, 3.26, 3.25, 3.14, 3.46, 3.41, 3.12, 3.11, 3.4, 3.3, 3.22, 3.2, 3.0, 3.15, 3.17, 3.32, 3.19, 3.15, 3.03, 3.22, 3.26, 3.05, 3.51, 3.25, 3.46, 3.31, 3.32, 3.17, 3.31, 3.26, 3.12, 3.13, 3.19, 3.17, 3.04, 3.15, 3.01, 3.48, 3.29, 3.35, 3.25, 3.29, 3.0, 3.65, 3.27, 3.02, 3.2, 3.18, 3.07, 3.2, 3.37, 3.18, 3.08, 3.32, 3.19, 3.16, 3.54, 3.6, 3.39, 3.17, 3.26, 2.87, 3.33, 3.47, 3.04, 3.18, 3.4, 2.96, 3.5, 3.27, 3.24, 3.1, 3.3, 3.0, 3.15, 3.05, 3.4, 3.35, 3.15, 3.02, 3.1, 3.16, 3.4, 3.0, 2.99, 3.04, 3.06, 3.26, 3.36, 3.33, 3.04, 3.35, 3.61, 3.19, 3.21, 3.36, 3.27, 3.38, 3.27, 3.22, 3.54, 3.23, 3.12, 2.89, 3.52, 3.08, 3.2, 3.08, 3.22, 3.1, 3.25, 3.39, 3.2, 2.96, 2.92, 3.3, 3.17, 3.04, 3.18, 3.4, 3.11, 2.98, 3.2, 3.35, 3.26, 3.15, 3.49, 3.3, 3.09, 3.12, 3.36, 3.06, 3.36, 3.14, 3.34, 3.38, 3.03, 3.32, 3.26, 3.33, 3.08, 3.23, 3.58, 3.48, 3.13, 3.32, 3.39, 3.18, 3.34, 3.15, 3.22, 3.31, 3.54, 3.37, 3.71, 3.53, 3.26, 3.55, 3.0, 3.13, 3.1, 3.16, 2.9, 3.32, 3.36, 3.41, 3.38, 3.45, 3.23, 3.22, 3.14, 2.94, 3.4, 3.07, 3.24, 3.28, 3.23, 3.12, 3.36, 2.93, 3.21, 3.03, 3.1, 3.39, 3.28, 3.08, 3.02, 3.38, 3.2, 3.07, 3.34, 3.22, 3.6, 3.22, 3.18, 3.51, 3.03, 3.36, 3.66, 3.42, 3.14, 3.27, 3.21, 3.13, 2.98, 2.95, 3.26, 3.22, 3.23, 3.42, 3.2, 3.15, 3.25, 3.21, 3.14, 3.17, 3.24, 3.12, 3.15, 3.15, 2.93, 3.32, 3.14, 3.16, 3.38, 3.18, 3.01, 3.31, 3.28, 3.23, 3.28, 3.38, 3.56, 3.22, 3.49, 3.04, 2.91, 3.55, 3.39, 3.11, 3.27, 3.71, 3.17, 3.26, 3.06, 3.57, 3.26, 3.15, 3.28, 3.13, 3.14, 3.24, 2.94, 3.34, 3.12, 3.26, 3.23, 3.09, 3.19, 3.47, 3.21, 3.7, 3.37, 3.38, 3.38, 3.54, 3.15, 3.14, 3.4, 3.05, 3.19, 2.97, 3.09, 3.42, 3.03, 3.62, 3.37, 3.16, 3.16, 3.12, 3.29, 3.03, 3.2, 3.4, 2.95, 3.24, 3.53, 3.3, 3.47, 2.86, 3.15, 3.52, 3.22, 3.36, 2.98, 3.12, 3.25, 3.15, 2.93, 2.88, 3.27, 3.48, 3.22, 3.16, 3.01, 3.23, 3.34, 3.21, 3.13, 2.92, 3.32, 3.29, 3.04, 3.2, 3.24, 3.11, 3.02, 3.16, 3.46, 3.3, 3.18, 3.28, 3.14, 3.2, 3.14, 3.18, 3.3, 3.53, 2.87, 3.32, 3.28, 3.33, 3.1, 3.33, 3.23, 3.26, 2.89, 3.11, 3.06, 3.35, 3.33, 3.29, 3.38, 3.16, 3.12, 3.17, 3.44, 3.09, 3.0, 3.18, 3.22, 3.44, 3.14, 3.26, 3.1, 3.12, 3.27, 3.25, 3.39, 3.3, 3.06, 3.45, 3.22, 3.42, 3.52, 3.46, 3.34, 2.94, 3.23, 3.21, 3.12, 3.27, 3.11, 3.35, 3.22, 3.44, 3.38, 3.24, 3.16, 3.29, 3.16, 3.12, 3.06, 3.2, 3.08, 3.2, 2.96, 3.16, 3.42, 3.09, 3.11, 3.12, 3.29, 3.14, 3.27, 3.09, 3.33, 3.45, 3.48, 3.45, 3.51, 3.25, 3.12, 3.17, 3.13, 3.14, 3.12, 2.96, 3.23, 3.08, 3.24, 3.15, 3.33, 3.12, 3.29, 3.37, 3.27, 3.11, 3.22, 3.28, 3.4, 3.34, 3.12, 3.17, 3.45, 3.32, 3.05, 3.38, 3.32, 3.2, 3.27, 3.21, 3.32, 3.31, 3.19, 3.28, 3.12, 3.18, 3.12, 3.26, 3.25, 3.11, 3.15, 3.57, 2.98, 3.08, 3.49, 3.18, 3.06, 3.07, 3.04, 3.18, 3.21, 3.16, 3.21, 3.03, 3.28, 3.29, 3.11, 3.39, 3.24, 3.36, 3.54, 3.26, 2.98, 3.34, 3.09, 2.96, 3.11, 3.35, 3.13, 3.24, 3.23, 3.09, 2.99, 3.31, 3.09, 3.11, 2.94, 3.1, 3.26, 3.29, 3.26, 2.96, 3.08, 3.01, 3.41, 3.37, 3.2, 3.0, 3.09, 3.18, 3.18, 3.38, 3.41, 3.35, 3.11, 3.49, 3.36, 3.22, 3.02, 3.1, 3.17, 3.29, 3.22, 2.96, 3.18, 3.17, 3.08, 3.22, 3.36, 3.38, 3.43, 3.04, 3.12, 3.42, 3.06, 3.03, 3.35, 3.32, 3.34, 3.08, 3.05, 3.11, 3.08, 3.36, 3.44, 3.68, 2.93, 3.05, 3.13, 3.36, 3.1, 3.36, 3.2, 3.17, 3.08, 3.22, 3.3, 2.94, 3.21, 3.03, 3.05, 2.97, 3.36, 3.49, 3.54, 3.26, 3.34, 3.2, 3.25, 3.61, 3.05, 2.93, 3.12, 3.19, 3.22, 3.37, 3.36, 3.25, 3.42, 3.25, 3.02, 3.23, 3.32, 3.28, 3.2, 3.15, 3.14, 3.13, 3.16, 3.42, 2.94, 2.99, 3.21, 3.14, 3.37, 3.22, 3.39, 3.54, 2.95, 3.23, 2.87, 3.52, 3.02, 3.27, 3.21, 3.07, 3.23, 3.3, 3.14, 3.15, 3.08, 3.15, 3.09, 3.1, 3.2, 3.34, 3.05, 3.22, 3.15, 3.04, 3.4, 3.28, 3.28, 3.44, 3.24, 3.27], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Current<br>pH=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [3.03, 3.09, 3.09, 3.17, 3.21, 3.19, 3.19, 3.06, 2.96, 3.38, 3.28, 3.13, 3.16, 3.18, 3.46, 3.14, 3.32, 3.06, 3.41, 3.01, 3.14, 3.1, 3.13, 3.32, 3.14, 3.07, 2.97, 3.3, 3.08, 3.36, 2.96, 3.3, 3.37, 3.23, 2.96, 3.09, 3.21, 2.86, 3.23, 3.46, 2.99, 3.13, 3.14, 3.06, 3.21, 3.46, 3.16, 3.59, 2.93, 3.35, 3.29, 3.29, 3.16, 2.96, 3.32, 3.28, 2.87, 3.68, 3.41, 2.9, 3.41, 3.04, 3.2, 2.99, 3.08, 3.32, 3.4, 3.39, 3.3, 3.29, 3.07, 3.26, 3.27, 3.38, 3.25, 3.16, 3.19, 3.13, 3.29, 3.27, 3.11, 3.11, 3.34, 2.99, 3.08, 3.22, 3.47, 3.06, 3.2, 3.3, 3.26, 3.03, 3.42, 3.0, 3.17, 3.16, 3.07, 3.03, 3.2, 3.56, 3.02, 3.34, 3.4, 2.98, 3.07, 2.93, 3.27, 3.34, 3.36, 3.31, 3.15, 3.15, 3.0, 3.21, 3.27, 3.37, 3.75, 3.22, 3.05, 3.37, 3.41, 3.24, 3.21, 3.26, 3.29, 3.27, 3.43, 3.29, 3.34, 2.91, 3.05, 3.38, 3.14, 3.02, 3.32, 3.01, 3.2, 3.31, 3.27, 3.3, 3.13, 3.61, 3.1, 3.2, 3.16, 3.18, 3.07, 3.38, 2.99, 3.0, 3.19, 3.06, 3.19, 3.06, 3.21, 3.09, 3.26, 3.23, 3.2, 2.98, 3.25, 3.45, 3.04, 3.39, 3.07, 2.95, 3.15, 3.22, 3.34, 3.03, 3.42, 2.94, 3.17, 3.38, 3.38, 3.28, 3.3, 3.03, 3.18, 3.31, 3.38, 3.22, 3.27, 3.3, 3.22, 3.32, 3.41, 3.29, 3.0, 3.41, 2.99, 3.0, 3.27, 3.16, 3.41, 3.19, 2.9, 3.51, 3.07, 3.43, 2.93, 3.45, 3.25, 3.14, 2.96, 3.36, 3.18, 3.17, 3.42, 3.24, 3.24, 3.36, 3.39, 3.25, 3.1, 3.15, 3.2, 3.31, 3.54, 3.13, 3.24, 3.36, 3.42, 3.2, 3.24, 2.96, 3.38, 3.12, 3.33, 3.27, 3.53, 3.26, 3.11, 3.35, 3.22, 3.34, 3.1, 3.27, 2.98, 3.23, 3.3, 3.05, 2.95, 3.81, 3.37, 3.1, 2.94, 3.1, 3.51, 3.19, 3.29, 2.99, 3.28, 3.32, 3.05, 3.2, 3.26, 3.17, 2.97, 3.44, 3.35, 3.29, 3.51, 3.31, 3.23, 3.28, 3.31, 2.91, 3.22, 3.14, 3.2, 3.24, 3.04, 3.18, 3.42, 3.5, 3.45, 3.42, 3.47, 3.52, 3.06, 2.97, 3.28, 3.25, 3.12, 3.23, 3.15, 3.24, 3.34, 3.2, 3.26, 3.19, 3.34, 3.1, 3.03, 3.22, 3.07, 3.33, 3.2, 3.23, 3.03, 3.11, 2.92, 3.38, 3.01, 3.4, 3.36, 3.1, 3.09, 2.88, 3.23, 3.26, 3.56, 3.09, 3.31, 3.76, 3.1, 3.14, 3.14, 3.02, 3.17, 3.19, 3.49, 3.42, 3.32, 3.16, 3.11, 3.28, 3.12, 3.36, 3.35, 2.88, 3.36, 3.11, 2.96, 2.99, 3.29, 3.18, 3.12, 3.33, 3.17, 3.34, 3.52, 3.39, 3.32, 3.11, 3.4, 3.45, 3.42, 3.05, 3.14, 3.22, 3.12, 3.06, 3.08, 3.36, 3.28, 3.17, 3.15, 3.4, 3.03, 3.33, 3.34, 2.94, 3.21, 3.24, 3.22, 3.54, 3.25, 3.1, 3.2, 3.29, 3.21, 3.03, 3.07, 3.35, 3.16, 3.18, 3.3, 3.44, 3.07, 3.13, 3.06, 3.22, 3.19, 3.48, 2.94, 3.33, 3.3, 3.24, 3.24, 3.19, 3.55, 3.18, 3.32, 3.36, 2.97, 3.17, 3.3, 3.3, 3.4, 3.3, 3.2, 2.85, 3.32, 3.42, 3.33, 3.3, 2.96, 3.12, 3.26, 3.49, 3.0, 3.12, 3.12, 3.37, 3.06, 3.17, 3.15, 3.14, 3.31, 3.27, 3.24, 3.4, 2.98, 3.06, 3.15, 3.0, 3.41, 3.16, 3.05, 3.8, 3.09, 3.15, 3.32, 3.43, 3.37, 3.01, 3.34, 3.0, 3.14, 3.57, 3.11, 3.04, 3.06, 2.94, 3.7, 3.18, 3.39, 3.2, 3.14, 3.34, 3.34, 3.16, 2.94, 3.41, 3.2, 3.29, 3.6, 3.28, 3.04, 3.2, 3.3, 3.06, 3.03, 3.52, 3.16, 3.5, 3.25, 3.46, 3.36, 3.05, 3.58, 2.9, 3.15, 3.13, 3.24, 3.23, 3.32, 3.44, 3.19, 3.21, 3.39, 3.41, 3.35, 2.99, 3.07, 3.04, 3.09, 3.42, 3.27, 3.36, 3.31, 3.27, 3.14, 3.3, 3.11, 3.11, 3.29, 3.1, 3.04, 3.06, 3.14, 3.42, 3.32, 3.22, 3.17, 3.34, 3.08, 3.1, 3.34, 3.25, 3.12, 3.06, 3.12, 3.29, 3.38, 3.27, 3.24, 3.52, 3.36, 3.21, 3.59, 3.25, 3.22, 2.99, 3.16, 3.31, 3.21, 3.06, 3.38, 3.16, 3.01, 3.19, 3.15, 3.13, 3.05, 3.0, 3.35, 3.0, 3.38, 3.24, 3.33, 3.38, 3.29, 3.26, 3.23, 3.31, 3.15, 3.14, 3.16, 2.99, 3.42, 3.23, 3.44, 3.23, 3.4, 3.18, 3.46, 3.36, 3.2, 3.04, 2.9, 3.35, 3.26, 3.08, 3.05, 3.12, 3.31, 3.16, 3.72, 3.47, 3.54, 3.29, 2.99, 3.49, 3.47, 3.13, 3.2, 3.19, 3.24, 3.07, 3.03, 3.51, 3.16, 3.22, 3.29, 3.22, 3.11, 3.44, 3.44, 3.3, 3.2, 2.94, 3.22, 3.12, 3.4, 3.3, 3.19, 3.27, 3.15, 3.28, 3.09, 3.04, 3.24, 3.26, 3.15, 3.23, 3.44, 3.34, 3.24, 2.98, 3.19, 3.0, 3.29, 3.1, 3.35, 3.28, 3.0, 3.26, 3.24, 2.98, 3.15, 3.26, 3.27, 3.11, 3.04, 2.93, 3.22, 3.19, 3.38, 3.06, 3.26, 3.25, 3.35, 3.24, 3.19, 3.34, 3.06, 3.13, 3.13, 3.03, 2.97, 3.41, 3.06, 3.11, 3.22, 3.25], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Reference<br>pH=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [3.16, 3.03, 3.03, 3.45, 3.15, 3.46, 3.34, 3.36, 3.16, 3.18, 3.3, 3.25, 3.02, 3.24, 3.32, 3.24, 3.3, 3.5, 3.06, 3.53, 3.19, 3.26, 3.54, 2.94, 3.6, 3.26, 3.27, 3.29, 3.1, 3.3, 3.48, 3.01, 3.66, 3.19, 3.0, 3.15, 2.96, 3.2, 3.04, 3.08, 3.02, 3.39, 3.27, 3.15, 3.19, 3.3, 3.32, 3.4, 3.23, 3.32, 3.09, 3.08, 3.2, 3.19, 3.11, 2.96, 3.17, 3.28, 3.14, 3.26, 3.19, 3.58, 3.43, 3.34, 3.13, 3.26, 3.22, 3.27, 3.61, 2.79, 3.09, 3.27, 3.05, 3.21, 3.1, 3.16, 3.08, 3.28, 3.2, 3.11, 2.98, 3.05, 3.12, 3.39, 3.11, 3.24, 3.14, 3.26, 3.17, 3.01, 3.27, 3.31, 3.15, 3.05, 2.96, 3.18, 2.98, 3.14, 3.15, 3.27, 3.01, 3.52, 3.35, 3.22, 3.29, 3.08, 3.16, 3.37, 3.27, 3.22, 3.37, 3.37, 3.41, 3.34, 3.49, 3.11, 3.16, 3.32, 3.06, 3.15, 3.09, 3.41, 3.22, 3.11, 3.1, 3.05, 3.29, 3.1, 3.23, 3.16, 2.89, 3.43, 3.1, 3.22, 3.11, 3.17, 3.13, 3.26, 3.09, 3.25, 3.07, 3.18, 3.28, 3.14, 3.14, 3.02, 3.44, 3.11, 3.14, 3.32, 3.13, 3.45, 2.92, 3.46, 2.99, 3.25, 3.2, 3.25, 3.46, 2.97, 3.15, 3.14, 3.05, 3.16, 3.34, 3.18, 3.18, 3.26, 2.96, 3.08, 3.12, 3.22, 3.37, 2.99, 3.22, 3.24, 3.33, 3.2, 3.46, 3.01, 3.24, 3.54, 3.28, 3.13, 3.1, 3.21, 3.12, 3.01, 3.28, 3.12, 3.02, 3.01, 3.08, 3.14, 3.16, 3.34, 3.08, 3.16, 3.06, 3.07, 3.3, 3.16, 3.16, 3.15, 3.63, 3.09, 3.22, 3.21, 3.72, 3.09, 3.14, 3.5, 3.04, 3.06, 3.18, 3.24, 3.11, 2.97, 2.94, 2.87, 2.88, 3.5, 3.06, 2.96, 3.1, 3.11, 3.34, 3.02, 3.22, 3.49, 3.33, 2.94, 3.5, 3.1, 3.16, 2.92, 3.39, 3.39, 3.15, 3.02, 3.24, 3.11, 3.03, 3.12, 3.5, 3.15, 3.22, 3.18, 3.24, 3.24, 3.41, 3.14, 3.66, 3.39, 3.1, 3.09, 3.17, 3.41, 3.14, 3.16, 3.05, 3.14, 3.39, 3.0, 3.16, 3.21, 3.77, 3.74, 3.42, 3.29, 3.44, 3.08, 3.21, 3.11, 3.19, 3.31, 3.44, 3.0, 3.13, 3.29, 3.34, 3.59, 3.17, 3.29, 3.15, 3.16, 2.9, 3.28, 3.08, 3.25, 3.06, 3.12, 3.24, 3.51, 3.3, 2.94, 3.13, 3.29, 3.08, 3.23, 3.68, 3.28, 3.36, 3.25, 3.31, 3.08, 3.12, 3.34, 3.04, 3.03, 3.06, 3.22, 3.59, 3.18, 3.38, 3.09, 3.1, 3.31, 3.22, 3.66, 3.32, 3.19, 3.36, 3.28, 3.15, 3.14, 2.98, 3.19, 3.29, 3.22, 2.93, 3.38, 3.35, 3.2, 3.25, 3.09, 3.13, 3.05, 3.1, 3.23, 3.3, 3.21, 3.24, 3.18, 3.24, 3.48, 3.53, 3.14, 3.38, 3.08, 3.04, 3.34, 3.06, 3.63, 3.09], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Current<br>pH=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [3.36, 3.22, 3.03, 3.07, 2.93, 2.93, 3.23, 3.29, 3.29, 3.03, 3.12, 3.16, 3.14, 3.12, 3.14, 3.27, 3.14, 3.16, 3.32, 2.97, 3.27, 2.96, 3.15, 3.12, 3.15, 3.07, 3.44, 3.18, 3.3, 3.46, 2.98, 3.3, 3.38, 3.2, 3.42, 3.32, 3.25, 3.42, 3.29, 3.26, 3.01, 3.1, 3.0, 3.22, 3.08, 3.28, 3.27, 3.15, 3.14, 2.79, 3.19, 3.17, 2.99, 3.37, 3.39, 3.28, 3.48, 2.92, 3.04, 3.08, 2.92, 3.31, 3.23, 3.48, 3.03, 3.53, 3.03, 3.51, 3.45, 3.37, 3.38, 3.21, 3.47, 3.32, 3.19, 3.18, 3.04, 3.07, 3.14, 3.39, 3.21, 3.15, 3.33, 3.2, 3.05, 2.97, 3.47, 3.22, 3.14, 3.35, 3.23, 3.08, 3.28, 3.18, 3.4, 3.5, 3.14, 3.17, 3.37, 3.24, 3.15, 3.08, 3.27, 3.34, 3.19, 3.35, 3.16, 3.36, 3.15, 3.18, 3.3, 2.94, 3.4, 3.29, 2.8, 3.13, 3.1, 3.17, 3.18, 3.13, 3.37, 3.34, 3.36, 3.39, 3.29, 3.38, 3.26, 2.93, 3.29, 3.08, 3.16, 3.25, 3.18, 2.96, 3.45, 3.16, 3.23, 3.29, 3.13, 2.94, 3.12, 3.05, 2.83, 3.16, 3.46, 3.22, 3.05, 3.34, 3.23, 3.23, 3.19, 3.47, 3.42, 3.17, 3.1, 3.16, 3.21, 3.2, 3.08, 2.99, 3.31, 3.18, 2.97, 3.04, 3.38, 3.13, 3.19, 3.37, 3.22, 3.06, 3.38, 3.23, 3.15, 3.15, 3.27, 3.26, 3.0, 3.07, 3.04, 3.24, 3.2, 3.42, 3.16, 3.21, 3.24, 2.95, 3.1, 3.07, 3.09, 3.23, 3.53, 3.28, 3.1, 3.18, 3.08, 3.33, 3.06, 3.14, 3.35, 3.09, 3.48, 3.25, 3.13, 3.2, 2.95, 3.25, 3.19, 3.2, 3.28, 3.06, 3.17, 3.13, 3.33, 3.0, 3.19, 3.03, 2.89, 3.08, 2.92, 3.19, 3.14, 3.22, 3.38, 3.09, 3.08, 3.38, 3.48, 3.54, 3.24, 3.24, 3.14, 3.12, 3.3, 3.09, 3.19, 3.04, 3.25, 3.45, 3.18, 3.42, 3.56, 3.67, 3.05, 3.4, 3.21, 3.16, 3.54, 3.32, 3.1, 3.19, 3.31, 3.13, 2.85, 3.16, 3.0, 3.26, 3.4, 3.32, 3.01, 3.24, 3.66, 3.37, 3.58, 3.58, 2.89, 3.31, 3.21, 3.3, 3.4, 3.1, 3.15, 3.51, 2.99, 3.16, 3.1, 3.08, 3.06, 3.55, 3.35, 2.98, 3.48, 3.34, 3.11, 3.56, 3.16, 3.32, 2.95, 3.24, 3.15, 3.15, 3.16, 3.33, 3.2, 3.51, 3.26, 3.26, 3.16, 3.1, 3.14, 3.37, 3.34, 3.05, 3.19, 3.02, 3.05, 2.97, 3.17, 3.13, 3.27, 3.12, 3.34, 3.49, 3.14, 3.32, 3.22, 3.03, 3.1, 3.19, 3.77, 3.36, 3.18, 3.34, 3.3, 3.27, 3.44, 3.07, 3.14, 3.13, 3.18, 3.47, 3.39, 3.31, 3.16, 3.44, 3.28, 3.17, 3.24, 3.17, 3.3, 3.24, 3.13, 3.23, 3.34, 3.29, 3.16, 2.99, 3.39, 3.36, 3.3, 3.14, 3.18, 3.19], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Reference\", \"x\": 0.245, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Current\", \"x\": 0.755, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"barmode\": \"overlay\", \"legend\": {\"title\": {\"text\": \"target\"}, \"tracegroupgap\": 0}, \"margin\": {\"t\": 60}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.49], \"title\": {\"text\": \"pH\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.51, 1.0], \"matches\": \"x\", \"title\": {\"text\": \"pH\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"count\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}}}, \"pH_good\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (ref)\", \"type\": \"scatter\", \"x\": [3.17, 3.36, 3.32, 3.59, 3.37, 3.4, 3.22, 3.36, 3.14, 3.1, 3.06, 3.16, 3.52, 3.06, 3.37, 3.14, 3.09, 2.95, 3.34, 3.18, 3.12, 3.21, 3.23, 3.25, 2.94, 3.64, 3.31, 3.14, 3.28, 3.33, 3.38, 3.3, 3.1, 3.38, 3.13, 3.11, 3.12, 3.4, 3.26, 3.25, 3.14, 3.46, 3.41, 3.12, 3.11, 3.4, 3.3, 3.22, 3.2, 3.0, 3.15, 3.17, 3.32, 3.19, 3.15, 3.03, 3.22, 3.26, 3.05, 3.51, 3.25, 3.46, 3.31, 3.32, 3.17, 3.31, 3.26, 3.12, 3.13, 3.19, 3.17, 3.04, 3.15, 3.01, 3.48, 3.29, 3.35, 3.25, 3.29, 3.0, 3.65, 3.27, 3.02, 3.2, 3.18, 3.07, 3.2, 3.37, 3.18, 3.08, 3.32, 3.19, 3.16, 3.54, 3.6, 3.39, 3.17, 3.26, 2.87, 3.33, 3.47, 3.04, 3.18, 3.4, 2.96, 3.5, 3.27, 3.24, 3.1, 3.3, 3.0, 3.15, 3.05, 3.4, 3.35, 3.15, 3.02, 3.1, 3.16, 3.4, 3.0, 2.99, 3.04, 3.06, 3.26, 3.36, 3.33, 3.04, 3.35, 3.61, 3.19, 3.21, 3.36, 3.27, 3.38, 3.27, 3.22, 3.54, 3.23, 3.12, 2.89, 3.52, 3.08, 3.2, 3.08, 3.22, 3.1, 3.25, 3.39, 3.2, 2.96, 2.92, 3.3, 3.17, 3.04, 3.18, 3.4, 3.11, 2.98, 3.2, 3.35, 3.26, 3.15, 3.49, 3.3, 3.09, 3.12, 3.36, 3.06, 3.36, 3.14, 3.34, 3.38, 3.03, 3.32, 3.26, 3.33, 3.08, 3.23, 3.58, 3.48, 3.13, 3.32, 3.39, 3.18, 3.34, 3.15, 3.22, 3.31, 3.54, 3.37, 3.71, 3.53, 3.26, 3.55, 3.0, 3.13, 3.1, 3.16, 2.9, 3.32, 3.36, 3.41, 3.38, 3.45, 3.23, 3.22, 3.14, 2.94, 3.4, 3.07, 3.24, 3.28, 3.23, 3.12, 3.36, 2.93, 3.21, 3.03, 3.1, 3.39, 3.28, 3.08, 3.02, 3.38, 3.2, 3.07, 3.34, 3.22, 3.6, 3.22, 3.18, 3.51, 3.03, 3.36, 3.66, 3.42, 3.14, 3.27, 3.21, 3.13, 2.98, 2.95, 3.26, 3.22, 3.23, 3.42, 3.2, 3.15, 3.25, 3.21, 3.14, 3.17, 3.24, 3.12, 3.15, 3.15, 2.93, 3.32, 3.14, 3.16, 3.38, 3.18, 3.01, 3.31, 3.28, 3.23, 3.28, 3.38, 3.56, 3.22, 3.49, 3.04, 2.91, 3.55, 3.39, 3.11, 3.27, 3.71, 3.17, 3.26, 3.06, 3.57, 3.26, 3.15, 3.28, 3.13, 3.14, 3.24, 2.94, 3.34, 3.12, 3.26, 3.23, 3.09, 3.19, 3.47, 3.21, 3.7, 3.37, 3.38, 3.38, 3.54, 3.15, 3.14, 3.4, 3.05, 3.19, 2.97, 3.09, 3.42, 3.03, 3.62, 3.37, 3.16, 3.16, 3.12, 3.29, 3.03, 3.2, 3.4, 2.95, 3.24, 3.53, 3.3, 3.47, 2.86, 3.15, 3.52, 3.22, 3.36, 2.98, 3.12, 3.25, 3.15, 2.93, 2.88, 3.27, 3.48, 3.22, 3.16, 3.01, 3.23, 3.34, 3.21, 3.13, 2.92, 3.32, 3.29, 3.04, 3.2, 3.24, 3.11, 3.02, 3.16, 3.46, 3.3, 3.18, 3.28, 3.14, 3.2, 3.14, 3.18, 3.3, 3.53, 2.87, 3.32, 3.28, 3.33, 3.1, 3.33, 3.23, 3.26, 2.89, 3.11, 3.06, 3.35, 3.33, 3.29, 3.38, 3.16, 3.12, 3.17, 3.44, 3.09, 3.0, 3.18, 3.22, 3.44, 3.14, 3.26, 3.1, 3.12, 3.27, 3.25, 3.39, 3.3, 3.06, 3.45, 3.22, 3.42, 3.52, 3.46, 3.34, 2.94, 3.23, 3.21, 3.12, 3.27, 3.11, 3.35, 3.22, 3.44, 3.38, 3.24, 3.16, 3.29, 3.16, 3.12, 3.06, 3.2, 3.08, 3.2, 2.96, 3.16, 3.42, 3.09, 3.11, 3.12, 3.29, 3.14, 3.27, 3.09, 3.33, 3.45, 3.48, 3.45, 3.51, 3.25, 3.12, 3.17, 3.13, 3.14, 3.12, 2.96, 3.23, 3.08, 3.24, 3.15, 3.33, 3.12, 3.29, 3.37, 3.27, 3.11, 3.22, 3.28, 3.4, 3.34, 3.12, 3.17, 3.45, 3.32, 3.05, 3.38, 3.32, 3.2, 3.27, 3.21, 3.32, 3.31, 3.19, 3.28, 3.12, 3.18, 3.12, 3.26, 3.25, 3.11, 3.15, 3.57, 2.98, 3.08, 3.49, 3.18, 3.06, 3.07, 3.04, 3.18, 3.21, 3.16, 3.21, 3.03, 3.28, 3.29, 3.11, 3.39, 3.24, 3.36, 3.54, 3.26, 2.98, 3.34, 3.09, 2.96, 3.11, 3.35, 3.13, 3.24, 3.23, 3.09, 2.99, 3.31, 3.09, 3.11, 2.94, 3.1, 3.26, 3.29, 3.26, 2.96, 3.08, 3.01, 3.41, 3.37, 3.2, 3.0, 3.09, 3.18, 3.18, 3.38, 3.41, 3.35, 3.11, 3.49, 3.36, 3.22, 3.02, 3.1, 3.17, 3.29, 3.22, 2.96, 3.18, 3.17, 3.08, 3.22, 3.36, 3.38, 3.43, 3.04, 3.12, 3.42, 3.06, 3.03, 3.35, 3.32, 3.34, 3.08, 3.05, 3.11, 3.08, 3.36, 3.44, 3.68, 2.93, 3.05, 3.13, 3.36, 3.1, 3.36, 3.2, 3.17, 3.08, 3.22, 3.3, 2.94, 3.21, 3.03, 3.05, 2.97, 3.36, 3.49, 3.54, 3.26, 3.34, 3.2, 3.25, 3.61, 3.05, 2.93, 3.12, 3.19, 3.22, 3.37, 3.36, 3.25, 3.42, 3.25, 3.02, 3.23, 3.32, 3.28, 3.2, 3.15, 3.14, 3.13, 3.16, 3.42, 2.94, 2.99, 3.21, 3.14, 3.37, 3.22, 3.39, 3.54, 2.95, 3.23, 2.87, 3.52, 3.02, 3.27, 3.21, 3.07, 3.23, 3.3, 3.14, 3.15, 3.08, 3.15, 3.09, 3.1, 3.2, 3.34, 3.05, 3.22, 3.15, 3.04, 3.4, 3.28, 3.28, 3.44, 3.24, 3.27], \"xaxis\": \"x\", \"y\": [0.8156061324462894, 0.42491310922683634, 0.8867827646463432, 0.8014995238430205, 0.30499958310650876, 0.5817355832705369, 0.959171062334887, 0.7854416128369749, 0.9085690698200813, 0.8998600376511439, 0.6341165000693628, 0.412102187638673, 0.7643629411050379, 0.4710001938005606, 0.40182653035141874, 0.40438056362905367, 0.8870480016118494, 0.3650667978415713, 0.9064321709292111, 0.9327245345966092, 0.6458420185168736, 0.8821841129047617, 0.6704018506542557, 0.7655671181822064, 0.8616986618932058, 0.48774537944210006, 0.9637355036179479, 0.6794204065079696, 0.6044835155949141, 0.7867954023600708, 0.9137982268836646, 0.5867502063434873, 0.8048584290077971, 0.9718511071053526, 0.9627192884041744, 0.7978623718349598, 0.6091120966723917, 0.8943338178728011, 0.8853376735027229, 0.9045563504021151, 0.9264844632598176, 0.6342457655367447, 0.9414033426130164, 0.5636516403732365, 0.5172967922101196, 0.4836896337264441, 0.35199620689495453, 0.788779954566273, 0.9696552399248426, 0.772496554239754, 0.8132656157621138, 0.4539090261140653, 0.9333708926412786, 0.679765045723866, 0.48457442622955804, 0.4248820606938153, 0.6737819616086004, 0.8780741425819777, 0.38340602447337646, 0.90634085684919, 0.5574014604752268, 0.6804147683859246, 0.9077110088845216, 0.7718472635729894, 0.4717552048891654, 0.22222808308441652, 0.8616549355667619, 0.705749071892896, 0.4699129352300819, 0.9680524782819758, 0.8891353183282249, 0.9466602521798594, 0.8553382520847058, 0.7430243903066251, 0.6616131862201935, 0.6919609500216202, 0.96565744679506, 0.913108907487878, 0.5395521774612226, 0.9026238558501023, 0.6550941529376255, 0.9757876320152292, 0.8833495792027257, 0.6666029765862381, 0.8504582120840628, 0.9320215595878566, 0.7639947574915884, 0.6085229656221847, 0.9557131606798471, 0.46184432615952054, 0.5642658412077981, 0.8815615400732472, 0.7189203536918151, 0.9301020530176726, 0.7341394174346678, 0.7759189559372703, 0.8448078654733812, 0.9012666081120407, 0.8926028620066223, 0.5287492720273277, 0.6874206920638863, 0.37408584674942635, 0.8348370105186077, 0.8697567261320243, 0.9175759024810304, 0.44644098895981, 0.8874384748400057, 0.7787567487441118, 0.9416122482572158, 0.3265229243180111, 0.9308095750950773, 0.42267134533232753, 0.43068181214270274, 0.8727308285810839, 0.7201611177732586, 0.8430904589044517, 0.8140617541555761, 0.9456747441572588, 0.6672663325862807, 0.8756470416862959, 0.518871521713375, 0.7040615347784164, 0.4957960231649875, 0.6250130361556073, 0.27413726132188326, 0.5193133578087885, 0.37656641690434584, 0.5808048103476511, 0.7917827117482167, 0.36569143480873245, 0.7232542293832885, 0.9785934574433302, 0.5715075300165849, 0.8182555969893297, 0.5448461144048058, 0.9491291995847589, 0.4833587957991669, 0.3189279754564957, 0.9184825510014271, 0.5524830505676419, 0.9600429304649183, 0.7818180966165994, 0.7962710274484252, 0.7569429870375118, 0.46184432615952054, 0.7641514270390748, 0.9486763575522457, 0.8086368705092697, 0.6784536879503494, 0.6877019790624462, 0.6082670858563528, 0.6053794617794684, 0.6319330693089359, 0.4982105707488519, 0.6787928880949093, 0.9231980717613485, 0.8831230955067948, 0.6845485656817341, 0.8799204262605215, 0.9164563829924386, 0.7819268199067826, 0.23469888428232324, 0.9492377841603665, 0.8826092272015389, 0.6360541596480074, 0.5184081252698399, 0.6400126753125241, 0.542646305979658, 0.4479501208302092, 0.7783171875827786, 0.7867712153112567, 0.5236605417423803, 0.6959846197179591, 0.7925023358445066, 0.6683189355892497, 0.18737025221649042, 0.42506327048176057, 0.7272596040941706, 0.7314191754306454, 0.4827891324637794, 0.6649341228620356, 0.9038332731164471, 0.9588917860646077, 0.8945194928389463, 0.49833043835950624, 0.7997712594855277, 0.8577935987172323, 0.7622736922026153, 0.8039391974899521, 0.7396811504731934, 0.8115340233127679, 0.801728888664367, 0.738451208106372, 0.5859674792922007, 0.1865203674848816, 0.8773430435604171, 0.36888329310067386, 0.8651817982269884, 0.9067615420962557, 0.8594983988587351, 0.7437750884018276, 0.9145224932934428, 0.9135679891815164, 0.8001832456898428, 0.6860977766129374, 0.9377826008632761, 0.9300369611912853, 0.6997062971069969, 0.5693182102579236, 0.3404656140239559, 0.7160591142088384, 0.7953146078011, 0.8869803873277935, 0.7639982823097876, 0.8681285227071118, 0.576868797021353, 0.93035102563313, 0.8375600281828176, 0.8279918435672958, 0.9266689436294401, 0.7559862346636359, 0.5099889666930224, 0.6914445842613687, 0.9651950326885705, 0.87851968214492, 0.8499702807396289, 0.4685752957996948, 0.7241546992314323, 0.7848147251007912, 0.7341394174346678, 0.7008877443692281, 0.340588975625529, 0.5013021766499856, 0.8321174529331695, 0.8818378666553491, 0.9176909075187759, 0.8634678749265305, 0.7436082905772717, 0.9343776659412377, 0.7668809937296346, 0.6243383802582345, 0.5332560471205093, 0.6907315465649003, 0.16626803588025432, 0.1668542888532837, 0.7408943843163458, 0.5221312328975666, 0.7457559475413279, 0.46389636934606376, 0.9292627865919654, 0.5268311186840582, 0.4244151934213653, 0.643310536612302, 0.8577438313980266, 0.7816208399762355, 0.8553382520847058, 0.7010035672814305, 0.5242572272016158, 0.9187320011579697, 0.8703498177621264, 0.6713045345576062, 0.9137982268836646, 0.8614414457916845, 0.9445662266054761, 0.8808216590199034, 0.7386378115490353, 0.8873009977622293, 0.9157094897337859, 0.6606038558129893, 0.9296803968514485, 0.8864322240790464, 0.5146720135715994, 0.8720710714485208, 0.9415427660945741, 0.9138701141498735, 0.6527559092576063, 0.8751970040938668, 0.9249766460056568, 0.801728888664367, 0.6575848465963361, 0.6934824043184128, 0.8619113960143526, 0.9419078024651042, 0.9591721389341828, 0.8397407150753159, 0.9084383840076588, 0.4963969309336195, 0.7359588175524252, 0.3531961907069324, 0.9279819479140234, 0.7752976919572294, 0.8665226278427577, 0.9515211055933231, 0.7314191754306454, 0.890886918514299, 0.3235491032739525, 0.3719939405423586, 0.6323804178173072, 0.8398006965792015, 0.8239469134189235, 0.8592101816891015, 0.7615002907198236, 0.8688259750909261, 0.8718104001390852, 0.5838074755684882, 0.8756470416862959, 0.901850575196968, 0.9451930143658351, 0.6253812669856891, 0.5890764576710766, 0.4921052500998711, 0.4862070578416567, 0.9170647663398394, 0.7035583451969506, 0.8476385889092957, 0.5603058978573646, 0.5810606890504925, 0.9088604673919816, 0.8903252600075929, 0.944267921154058, 0.9435968591480925, 0.938237366988842, 0.9357286047893738, 0.7961386682142712, 0.7840233885688647, 0.2513590507613302, 0.7389284097502917, 0.9053472250810051, 0.44438282424164377, 0.862281110352348, 0.8021059248496223, 0.9152740930046814, 0.643737358401971, 0.8540304955499701, 0.8613418170006786, 0.6911084183178322, 0.8848367871057808, 0.8387883096682573, 0.5942651630821018, 0.65691393717736, 0.6369979527510315, 0.8280658524313272, 0.9640736168216585, 0.6546311715671466, 0.5599819536107853, 0.48348053317652906, 0.7668016587569692, 0.03620763244300767, 0.7364400865449663, 0.37408584674942635, 0.8767503774172, 0.8743962287172513, 0.8751970040938668, 0.8833495792027257, 0.7091886355621774, 0.87006937054451, 0.7904001815220257, 0.8761418339280951, 0.8306834851111597, 0.7531715889012326, 0.38181207472529843, 0.6490458991820136, 0.9138057013338913, 0.9046222904886461, 0.17956061692355052, 0.7506163079023257, 0.8963285795381793, 0.8848361664653354, 0.9283037217377402, 0.45996158699034445, 0.7290858434196763, 0.8319094967702583, 0.6578018675312727, 0.18727567457681707, 0.8673410249845035, 0.9453298670648187, 0.9446538464906173, 0.19605573045952288, 0.6723831041639817, 0.3438281302059518, 0.37858973820495484, 0.6953170483296187, 0.21463507152544156, 0.26963792069965237, 0.3280912492037974, 0.8399932187801539, 0.420387898633768, 0.36522500752858966, 0.5810560693343539, 0.9306346767722963, 0.7167716539092029, 0.656736106921484, 0.5549139996760648, 0.6909161521388689, 0.591904263202073, 0.884703171197362, 0.866402281883595, 0.7582770814524421, 0.8990773411030794, 0.1818065866116437, 0.6222165686186035, 0.17261914235374884, 0.8156064679757086, 0.4851213943917703, 0.8871292211128762, 0.8398494053952754, 0.703270618172154, 0.6305543892506115, 0.7494149477175548, 0.1532408287022325, 0.6159732902773407, 0.738220551127759, 0.8354520044441791, 0.8536870432671441, 0.5751476712690671, 0.9077719201719568, 0.7878515691455199, 0.6672663325862807, 0.45293736875445273, 0.17058553029544155, 0.747933377844996, 0.8400163125056676, 0.4516778718827729, 0.6082670858563528, 0.8401843469141149, 0.7636885291754726, 0.789170795337903, 0.8128612802083497, 0.7522530659814418, 0.8086757686066508, 0.8356255123032285, 0.9241779635105248, 0.9674588597049086, 0.9368885694202199, 0.4990764491242286, 0.876561204324957, 0.554264192243629, 0.5967716244634195, 0.9060244606340249, 0.8401608718856799, 0.7329750583133859, 0.8021769878309102, 0.9316817655017511, 0.45488322534173153, 0.798578398438993, 0.7425236774748816, 0.5742682328784404, 0.4937681935814938, 0.8972164286692267, 0.8914273370768748, 0.9377613518261881, 0.8862258850530264, 0.8591757581361523, 0.7410678096850266, 0.6822336012657398, 0.9201658505843877, 0.6982578893131915, 0.5746709232170782, 0.7626532952948841, 0.7137703530889916, 0.7520971196461234, 0.4473853625959922, 0.7957460056304991, 0.4833174871501707, 0.8758467705785958, 0.4689303842787964, 0.6133612564737879, 0.8568681391705205, 0.6835133967314007, 0.9732070839986944, 0.21435716257549006, 0.5761668962420043, 0.4055433603128916, 0.3743394998756179, 0.9118635774953143, 0.964551884718591, 0.9306459334511011, 0.8424802355113449, 0.7739144871152517, 0.6872688771534424, 0.8590561833388345, 0.6714384475466295, 0.6408669500407106, 0.5203550269219845, 0.2856853969697174, 0.857760555506807, 0.9307094503226838, 0.6787928880949093, 0.8308635255795866, 0.29271374211533296, 0.6769315553524353, 0.23831547366416572, 0.5895099457120908, 0.8994675076574448, 0.8893400405584444, 0.8456825404777587, 0.5399612081435882, 0.6188649121485582, 0.9281492942813848, 0.7611740601422801, 0.46550237374781617, 0.8896861436466836, 0.9038901015569306, 0.5044440900554997, 0.9215480939667524, 0.6930273792518707, 0.8723244804196287, 0.5624338775604165, 0.9226297661236537, 0.8469231754225917, 0.9430557295321259, 0.9097116306258912, 0.5988707702267543, 0.3813853072548755, 0.8843832309478876, 0.9006952500629406, 0.918975987201669, 0.18997930334445084, 0.8923106748541326, 0.8461388699436441, 0.5973439234355874, 0.9544642924744549, 0.91770416680597, 0.9177239854204658, 0.17584552180125673, 0.9240099144459667, 0.48524948024905407, 0.8889685222180134, 0.5785503824403398, 0.7511953459672914, 0.6887596776945688, 0.6717539058356753, 0.7168761391602206, 0.7134478068952186, 0.834626350903405, 0.5715867980362679, 0.6588392688727011, 0.9488572786900573, 0.8920529250761863, 0.8891353183282249, 0.707981940789761, 0.926348680038428, 0.631489487929038, 0.7443856388661001, 0.9260754381930228, 0.9544642924744549, 0.8497401318990601, 0.5604010177433062, 0.8036334301115304, 0.7898153537185114, 0.8491431337122072, 0.6570881560807702, 0.8389599143569951, 0.7944137576415592, 0.8132668978866627, 0.44714680104169846, 0.7978021044641371, 0.41921696608658454, 0.38876183891604754, 0.9248463736054193, 0.4277915265084825, 0.6345107008491314, 0.8008942533173764, 0.5087430598332189, 0.9414938992689892, 0.6922115882765215, 0.8296175750175913, 0.8593339228153332, 0.8975141534758351, 0.5977126281557783, 0.9279478536756302, 0.6485770817571253, 0.8905823996589662, 0.9332072841984264, 0.9432461110830079, 0.9410120781436498, 0.6339696776630096, 0.7120962557761497, 0.5841709037351369, 0.5928970840420333, 0.9006589732900512, 0.936371533648048, 0.6907852379101131, 0.7675780198071424, 0.9444587893431046, 0.4702336163336472, 0.8925536722101626, 0.8158978708906081, 0.822780392485108, 0.8037335327290217, 0.8382351003285965, 0.8941557358589171, 0.4796498334522667, 0.926348680038428, 0.6842118015950474, 0.6463580983468415, 0.8292048071278182, 0.5834426687867836, 0.8419845362148763, 0.2431563391580561, 0.7763142135369961, 0.9390550746437164, 0.7774903237071782, 0.8141232663130791, 0.9444089886680379, 0.430401459478284, 0.9192677156927759, 0.8427595869840984, 0.87120858451521, 0.5693182102579236, 0.820012080301976, 0.58719119911586, 0.42769376643096113, 0.3542595869275313, 0.89579938191327, 0.8743523014696554, 0.7820497043505815, 0.5279069501129625, 0.8869579700149332, 0.45488774279476296, 0.8514781135508903, 0.8278297091497892, 0.663749097381813, 0.5132851713944618, 0.4906566565015208, 0.6415219885510332, 0.6991293681294938, 0.8150539074042624, 0.5800669536763935, 0.9583771200922359, 0.7366090055976814, 0.5747817696023392, 0.5315376696882942, 0.8074446941396305, 0.9038901015569306, 0.9087015650331977, 0.6697291810323083, 0.5800669536763935, 0.8807270543114014, 0.5135845984304893, 0.9352791850238339, 0.36120709973337456, 0.6206709330576408, 0.906286252315459, 0.7937202818717513], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [3.16, 3.03, 3.03, 3.45, 3.15, 3.46, 3.34, 3.36, 3.16, 3.18, 3.3, 3.25, 3.02, 3.24, 3.32, 3.24, 3.3, 3.5, 3.06, 3.53, 3.19, 3.26, 3.54, 2.94, 3.6, 3.26, 3.27, 3.29, 3.1, 3.3, 3.48, 3.01, 3.66, 3.19, 3.0, 3.15, 2.96, 3.2, 3.04, 3.08, 3.02, 3.39, 3.27, 3.15, 3.19, 3.3, 3.32, 3.4, 3.23, 3.32, 3.09, 3.08, 3.2, 3.19, 3.11, 2.96, 3.17, 3.28, 3.14, 3.26, 3.19, 3.58, 3.43, 3.34, 3.13, 3.26, 3.22, 3.27, 3.61, 2.79, 3.09, 3.27, 3.05, 3.21, 3.1, 3.16, 3.08, 3.28, 3.2, 3.11, 2.98, 3.05, 3.12, 3.39, 3.11, 3.24, 3.14, 3.26, 3.17, 3.01, 3.27, 3.31, 3.15, 3.05, 2.96, 3.18, 2.98, 3.14, 3.15, 3.27, 3.01, 3.52, 3.35, 3.22, 3.29, 3.08, 3.16, 3.37, 3.27, 3.22, 3.37, 3.37, 3.41, 3.34, 3.49, 3.11, 3.16, 3.32, 3.06, 3.15, 3.09, 3.41, 3.22, 3.11, 3.1, 3.05, 3.29, 3.1, 3.23, 3.16, 2.89, 3.43, 3.1, 3.22, 3.11, 3.17, 3.13, 3.26, 3.09, 3.25, 3.07, 3.18, 3.28, 3.14, 3.14, 3.02, 3.44, 3.11, 3.14, 3.32, 3.13, 3.45, 2.92, 3.46, 2.99, 3.25, 3.2, 3.25, 3.46, 2.97, 3.15, 3.14, 3.05, 3.16, 3.34, 3.18, 3.18, 3.26, 2.96, 3.08, 3.12, 3.22, 3.37, 2.99, 3.22, 3.24, 3.33, 3.2, 3.46, 3.01, 3.24, 3.54, 3.28, 3.13, 3.1, 3.21, 3.12, 3.01, 3.28, 3.12, 3.02, 3.01, 3.08, 3.14, 3.16, 3.34, 3.08, 3.16, 3.06, 3.07, 3.3, 3.16, 3.16, 3.15, 3.63, 3.09, 3.22, 3.21, 3.72, 3.09, 3.14, 3.5, 3.04, 3.06, 3.18, 3.24, 3.11, 2.97, 2.94, 2.87, 2.88, 3.5, 3.06, 2.96, 3.1, 3.11, 3.34, 3.02, 3.22, 3.49, 3.33, 2.94, 3.5, 3.1, 3.16, 2.92, 3.39, 3.39, 3.15, 3.02, 3.24, 3.11, 3.03, 3.12, 3.5, 3.15, 3.22, 3.18, 3.24, 3.24, 3.41, 3.14, 3.66, 3.39, 3.1, 3.09, 3.17, 3.41, 3.14, 3.16, 3.05, 3.14, 3.39, 3.0, 3.16, 3.21, 3.77, 3.74, 3.42, 3.29, 3.44, 3.08, 3.21, 3.11, 3.19, 3.31, 3.44, 3.0, 3.13, 3.29, 3.34, 3.59, 3.17, 3.29, 3.15, 3.16, 2.9, 3.28, 3.08, 3.25, 3.06, 3.12, 3.24, 3.51, 3.3, 2.94, 3.13, 3.29, 3.08, 3.23, 3.68, 3.28, 3.36, 3.25, 3.31, 3.08, 3.12, 3.34, 3.04, 3.03, 3.06, 3.22, 3.59, 3.18, 3.38, 3.09, 3.1, 3.31, 3.22, 3.66, 3.32, 3.19, 3.36, 3.28, 3.15, 3.14, 2.98, 3.19, 3.29, 3.22, 2.93, 3.38, 3.35, 3.2, 3.25, 3.09, 3.13, 3.05, 3.1, 3.23, 3.3, 3.21, 3.24, 3.18, 3.24, 3.48, 3.53, 3.14, 3.38, 3.08, 3.04, 3.34, 3.06, 3.63, 3.09], \"xaxis\": \"x\", \"y\": [0.2802292104526322, 0.9455194119275858, 0.4978743212349556, 0.5289145624519528, 0.28439238707197784, 0.2033309570226689, 0.27345747478543325, 0.8322873304845451, 0.389055896812549, 0.3675472469853882, 0.5781933746273124, 0.7401955299744071, 0.44969671697605845, 0.4367887814338696, 0.31593955341667695, 0.3775624358859999, 0.19282181046294666, 0.048451763306065584, 0.6005928650583868, 0.032225376113695775, 0.427412413738938, 0.23973251442015217, 0.13890126550157303, 0.8613925272127, 0.329663916828638, 0.19359965390713213, 0.6827271716759634, 0.1960905505555538, 0.08135735686643118, 0.39737240301928484, 0.13902987396822816, 0.6514166433739288, 0.6994753721471061, 0.7140886736258081, 0.5021795028970708, 0.48743245558712556, 0.5731139673640956, 0.8820820642542792, 0.559972149724866, 0.5061565591493914, 0.5066810377847554, 0.833805652807593, 0.6979972163580744, 0.3177574231538272, 0.13068190592986567, 0.758876109553896, 0.5681062961269688, 0.715544821914063, 0.762062625203523, 0.4464438677531786, 0.20995974230910305, 0.5262622410710028, 0.39442669669188163, 0.2537324982988368, 0.6775437642744659, 0.23876321589577687, 0.6369158982934647, 0.38960060362966165, 0.6034323722874255, 0.7769991715799629, 0.15199748354041337, 0.5641412449951732, 0.7590466800561823, 0.5969347905931296, 0.1048362779837843, 0.7217824369593382, 0.2662339163773806, 0.16472378978351135, 0.37760124376932414, 0.7071736299639594, 0.3436862995931572, 0.8384434752264291, 0.3635333644877426, 0.7813188949129265, 0.7279369976219869, 0.5641098847382463, 0.3863964747623771, 0.9209913370067284, 0.1477144681640183, 0.8809374658555192, 0.6533168894759348, 0.8873477284758582, 0.3697306267878623, 0.28319023347825867, 0.5203701741750857, 0.5523747693308857, 0.6387521731780509, 0.3881380695009739, 0.8487896327149285, 0.4636606453307818, 0.8384434752264291, 0.558266603669778, 0.21657231888677728, 0.3635333644877426, 0.5512671313974766, 0.5051039398599867, 0.5827915753039158, 0.49441682850108926, 0.47309171914705017, 0.6262595591688196, 0.5508242483721094, 0.47332791509789995, 0.7117569366896692, 0.3933786516273859, 0.16465066549244003, 0.7490394132223248, 0.769261050002088, 0.7431932405995126, 0.3141000916210982, 0.723735045552473, 0.6484132891031948, 0.688519894019609, 0.40496704226994307, 0.5803736122960511, 0.6327801522745691, 0.45115706990411364, 0.37268733756108086, 0.9009693101135351, 0.06496389958099598, 0.44431713201158524, 0.39960831974332744, 0.8662156944598043, 0.31018081106061823, 0.5339551117365043, 0.33311273919547707, 0.400132762133902, 0.8528754522806217, 0.14419347879543085, 0.11672350429510901, 0.44556702529145975, 0.6160120899414699, 0.13766892845409207, 0.5517204028384314, 0.5232178919035022, 0.35483403305733974, 0.4900213704561591, 0.8854578072659228, 0.43084122675663034, 0.7601186327653665, 0.14072030431570776, 0.6186690618327106, 0.5245054232921349, 0.7326259458716644, 0.5690781983520095, 0.4018508815425063, 0.24877469563805235, 0.7952501197393639, 0.8766221356386195, 0.303451532996695, 0.5357745481647883, 0.7096524147827454, 0.20877177283968149, 0.8635610141758273, 0.46736762313881036, 0.6061151992073851, 0.113015272873705, 0.40446014603085867, 0.6332606063976143, 0.648705381890928, 0.42186952587750404, 0.8047913565308571, 0.3017058309841093, 0.38406990132164637, 0.33494193042999065, 0.19929939967121216, 0.8624919783238055, 0.528785836409086, 0.43084122675663034, 0.47042159929499583, 0.5061565591493914, 0.5759491569657543, 0.8468794444363914, 0.20342296359496542, 0.5170831534483544, 0.3666753044655067, 0.6131723001375537, 0.4410646109528086, 0.6903416342484309, 0.3866428492574258, 0.4636606453307818, 0.4525459302795702, 0.03199256040434073, 0.7029629492254846, 0.2433141614541866, 0.548755973819273, 0.3775060302547258, 0.06593060991448157, 0.8745624549148976, 0.22931948662359403, 0.27267688907931714, 0.589328430619086, 0.8007160756317941, 0.5525637789187225, 0.5008522318356121, 0.4556212410144909, 0.17391722008742402, 0.43574637053357784, 0.3237440077649342, 0.6071692164257629, 0.6925152430641841, 0.592675381607996, 0.43854150134957587, 0.43854150134957587, 0.42437112972565305, 0.8061118855433299, 0.35195592295594336, 0.7605370065149419, 0.38898578429124253, 0.67510953655807, 0.872979709380305, 0.710510994258769, 0.720290290780972, 0.4820787970895852, 0.42019280799979697, 0.4304380754474639, 0.25285023254778977, 0.3238056884730761, 0.39471961640683584, 0.09510031985475974, 0.367046376808582, 0.21500793651835448, 0.8705359023101334, 0.6100742529031461, 0.6226449432624995, 0.7279369976219869, 0.3643494054700089, 0.09992017521484964, 0.41475515148757036, 0.6462260464983366, 0.14102909592513518, 0.48949585696458414, 0.5239520436918008, 0.6084413884537807, 0.5655473856702703, 0.9517420512476797, 0.7489379515982664, 0.4647937384849751, 0.7915321263825208, 0.44112279258530757, 0.5734340256727429, 0.6604471727860799, 0.4845203185458914, 0.6968730453869196, 0.5315374962198609, 0.8685951485887234, 0.6242442748350044, 0.2912097196987059, 0.7725938221565348, 0.2067629769731588, 0.30221725334927335, 0.13129342562285412, 0.6467789443522378, 0.6994753721471061, 0.11825382206919556, 0.41022417118631593, 0.4882665226122541, 0.7732287086973071, 0.25374762405010176, 0.49441682850108926, 0.3723877205427743, 0.652330313245635, 0.43667799883041203, 0.5964718913578133, 0.55172276504346, 0.24113559934961917, 0.8243980268882987, 0.7263843594269437, 0.43535214809021755, 0.8721122798612579, 0.18723914490145582, 0.6486906676970999, 0.11576704656818047, 0.4328241622975616, 0.491481212420291, 0.5264345378086769, 0.33856526784971647, 0.2967410926251248, 0.581398831228375, 0.5973776665460488, 0.6195406102170065, 0.37782717658841725, 0.323061133240968, 0.17420808473594895, 0.19634770547538957, 0.46492234760650425, 0.49613167963272686, 0.5812209036149294, 0.6057291775435286, 0.63414717387345, 0.5702687187355167, 0.8604975146328253, 0.6309022132706124, 0.48732991249542923, 0.6887148870948692, 0.41581945293096145, 0.5706760596351739, 0.4831274653996314, 0.06684727567316755, 0.49090643211649887, 0.15191610726090596, 0.2711405311223577, 0.7653618545702112, 0.09266565137124261, 0.4554350627407873, 0.19698919164573708, 0.6930185080649685, 0.5227537922811563, 0.50434568709929, 0.7082092780767422, 0.46058046365566996, 0.6735723234187477, 0.4285936050615775, 0.323061133240968, 0.5168500865319015, 0.6161307914674419, 0.23456444218973552, 0.3192004782541023, 0.21968945907811915, 0.5028183230931117, 0.43371621376298963, 0.6744209213341115, 0.5940260419772637, 0.13783310426722128, 0.5136444387530009, 0.5508647999875032, 0.4955911012838212, 0.9814394195009358, 0.8260225289794664, 0.17965956338109995, 0.46844896472597397, 0.6048119589659149, 0.3289160319090978, 0.2454606394453749, 0.7497022835596558, 0.683485355417811, 0.20995974230910305, 0.23504578258460665, 0.37175956099497537, 0.4875530438829156, 0.24982584224249993, 0.6282829625348888, 0.4520795162158371, 0.8200372413039435, 0.12832513643528837, 0.5299630655130737, 0.29552777318700446, 0.24021937552346023, 0.5429028773737552, 0.6311869746243346, 0.4145977043912777, 0.39329840463575844, 0.39070335653410526, 0.4286990948130573, 0.846836560604146, 0.6880850122626078], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (curr)\", \"type\": \"scatter\", \"x\": [3.03, 3.09, 3.09, 3.17, 3.21, 3.19, 3.19, 3.06, 2.96, 3.38, 3.28, 3.13, 3.16, 3.18, 3.46, 3.14, 3.32, 3.06, 3.41, 3.01, 3.14, 3.1, 3.13, 3.32, 3.14, 3.07, 2.97, 3.3, 3.08, 3.36, 2.96, 3.3, 3.37, 3.23, 2.96, 3.09, 3.21, 2.86, 3.23, 3.46, 2.99, 3.13, 3.14, 3.06, 3.21, 3.46, 3.16, 3.59, 2.93, 3.35, 3.29, 3.29, 3.16, 2.96, 3.32, 3.28, 2.87, 3.68, 3.41, 2.9, 3.41, 3.04, 3.2, 2.99, 3.08, 3.32, 3.4, 3.39, 3.3, 3.29, 3.07, 3.26, 3.27, 3.38, 3.25, 3.16, 3.19, 3.13, 3.29, 3.27, 3.11, 3.11, 3.34, 2.99, 3.08, 3.22, 3.47, 3.06, 3.2, 3.3, 3.26, 3.03, 3.42, 3.0, 3.17, 3.16, 3.07, 3.03, 3.2, 3.56, 3.02, 3.34, 3.4, 2.98, 3.07, 2.93, 3.27, 3.34, 3.36, 3.31, 3.15, 3.15, 3.0, 3.21, 3.27, 3.37, 3.75, 3.22, 3.05, 3.37, 3.41, 3.24, 3.21, 3.26, 3.29, 3.27, 3.43, 3.29, 3.34, 2.91, 3.05, 3.38, 3.14, 3.02, 3.32, 3.01, 3.2, 3.31, 3.27, 3.3, 3.13, 3.61, 3.1, 3.2, 3.16, 3.18, 3.07, 3.38, 2.99, 3.0, 3.19, 3.06, 3.19, 3.06, 3.21, 3.09, 3.26, 3.23, 3.2, 2.98, 3.25, 3.45, 3.04, 3.39, 3.07, 2.95, 3.15, 3.22, 3.34, 3.03, 3.42, 2.94, 3.17, 3.38, 3.38, 3.28, 3.3, 3.03, 3.18, 3.31, 3.38, 3.22, 3.27, 3.3, 3.22, 3.32, 3.41, 3.29, 3.0, 3.41, 2.99, 3.0, 3.27, 3.16, 3.41, 3.19, 2.9, 3.51, 3.07, 3.43, 2.93, 3.45, 3.25, 3.14, 2.96, 3.36, 3.18, 3.17, 3.42, 3.24, 3.24, 3.36, 3.39, 3.25, 3.1, 3.15, 3.2, 3.31, 3.54, 3.13, 3.24, 3.36, 3.42, 3.2, 3.24, 2.96, 3.38, 3.12, 3.33, 3.27, 3.53, 3.26, 3.11, 3.35, 3.22, 3.34, 3.1, 3.27, 2.98, 3.23, 3.3, 3.05, 2.95, 3.81, 3.37, 3.1, 2.94, 3.1, 3.51, 3.19, 3.29, 2.99, 3.28, 3.32, 3.05, 3.2, 3.26, 3.17, 2.97, 3.44, 3.35, 3.29, 3.51, 3.31, 3.23, 3.28, 3.31, 2.91, 3.22, 3.14, 3.2, 3.24, 3.04, 3.18, 3.42, 3.5, 3.45, 3.42, 3.47, 3.52, 3.06, 2.97, 3.28, 3.25, 3.12, 3.23, 3.15, 3.24, 3.34, 3.2, 3.26, 3.19, 3.34, 3.1, 3.03, 3.22, 3.07, 3.33, 3.2, 3.23, 3.03, 3.11, 2.92, 3.38, 3.01, 3.4, 3.36, 3.1, 3.09, 2.88, 3.23, 3.26, 3.56, 3.09, 3.31, 3.76, 3.1, 3.14, 3.14, 3.02, 3.17, 3.19, 3.49, 3.42, 3.32, 3.16, 3.11, 3.28, 3.12, 3.36, 3.35, 2.88, 3.36, 3.11, 2.96, 2.99, 3.29, 3.18, 3.12, 3.33, 3.17, 3.34, 3.52, 3.39, 3.32, 3.11, 3.4, 3.45, 3.42, 3.05, 3.14, 3.22, 3.12, 3.06, 3.08, 3.36, 3.28, 3.17, 3.15, 3.4, 3.03, 3.33, 3.34, 2.94, 3.21, 3.24, 3.22, 3.54, 3.25, 3.1, 3.2, 3.29, 3.21, 3.03, 3.07, 3.35, 3.16, 3.18, 3.3, 3.44, 3.07, 3.13, 3.06, 3.22, 3.19, 3.48, 2.94, 3.33, 3.3, 3.24, 3.24, 3.19, 3.55, 3.18, 3.32, 3.36, 2.97, 3.17, 3.3, 3.3, 3.4, 3.3, 3.2, 2.85, 3.32, 3.42, 3.33, 3.3, 2.96, 3.12, 3.26, 3.49, 3.0, 3.12, 3.12, 3.37, 3.06, 3.17, 3.15, 3.14, 3.31, 3.27, 3.24, 3.4, 2.98, 3.06, 3.15, 3.0, 3.41, 3.16, 3.05, 3.8, 3.09, 3.15, 3.32, 3.43, 3.37, 3.01, 3.34, 3.0, 3.14, 3.57, 3.11, 3.04, 3.06, 2.94, 3.7, 3.18, 3.39, 3.2, 3.14, 3.34, 3.34, 3.16, 2.94, 3.41, 3.2, 3.29, 3.6, 3.28, 3.04, 3.2, 3.3, 3.06, 3.03, 3.52, 3.16, 3.5, 3.25, 3.46, 3.36, 3.05, 3.58, 2.9, 3.15, 3.13, 3.24, 3.23, 3.32, 3.44, 3.19, 3.21, 3.39, 3.41, 3.35, 2.99, 3.07, 3.04, 3.09, 3.42, 3.27, 3.36, 3.31, 3.27, 3.14, 3.3, 3.11, 3.11, 3.29, 3.1, 3.04, 3.06, 3.14, 3.42, 3.32, 3.22, 3.17, 3.34, 3.08, 3.1, 3.34, 3.25, 3.12, 3.06, 3.12, 3.29, 3.38, 3.27, 3.24, 3.52, 3.36, 3.21, 3.59, 3.25, 3.22, 2.99, 3.16, 3.31, 3.21, 3.06, 3.38, 3.16, 3.01, 3.19, 3.15, 3.13, 3.05, 3.0, 3.35, 3.0, 3.38, 3.24, 3.33, 3.38, 3.29, 3.26, 3.23, 3.31, 3.15, 3.14, 3.16, 2.99, 3.42, 3.23, 3.44, 3.23, 3.4, 3.18, 3.46, 3.36, 3.2, 3.04, 2.9, 3.35, 3.26, 3.08, 3.05, 3.12, 3.31, 3.16, 3.72, 3.47, 3.54, 3.29, 2.99, 3.49, 3.47, 3.13, 3.2, 3.19, 3.24, 3.07, 3.03, 3.51, 3.16, 3.22, 3.29, 3.22, 3.11, 3.44, 3.44, 3.3, 3.2, 2.94, 3.22, 3.12, 3.4, 3.3, 3.19, 3.27, 3.15, 3.28, 3.09, 3.04, 3.24, 3.26, 3.15, 3.23, 3.44, 3.34, 3.24, 2.98, 3.19, 3.0, 3.29, 3.1, 3.35, 3.28, 3.0, 3.26, 3.24, 2.98, 3.15, 3.26, 3.27, 3.11, 3.04, 2.93, 3.22, 3.19, 3.38, 3.06, 3.26, 3.25, 3.35, 3.24, 3.19, 3.34, 3.06, 3.13, 3.13, 3.03, 2.97, 3.41, 3.06, 3.11, 3.22, 3.25], \"xaxis\": \"x2\", \"y\": [0.33396714643252134, 0.5044440900554997, 0.8874896900044845, 0.4686759077780351, 0.23831547366416572, 0.571181601185031, 0.7785327680196316, 0.7290551099174598, 0.9581131370131553, 0.6801000322064107, 0.413367674560271, 0.6667140739211237, 0.9108229754863395, 0.9275086157065797, 0.9186958597750785, 0.7191871442695774, 0.8184457509658746, 0.8597940676688322, 0.7947045908306632, 0.8244149680645384, 0.42771531534877594, 0.5315376696882942, 0.7136291946100958, 0.5510697799054304, 0.6393262665313312, 0.9016582766249417, 0.8560880110261746, 0.8947361144883382, 0.9102326114023062, 0.840723585394272, 0.9264645566705582, 0.5105903360131552, 0.752648770317166, 0.5855954083225455, 0.8989214048388485, 0.5190750352404293, 0.9560713253502463, 0.7273157243430202, 0.9279672131348602, 0.640103147954212, 0.9158977434209615, 0.9035955072010529, 0.7140955379655831, 0.233508355491505, 0.7280578325574358, 0.8810827811902006, 0.3966129217085586, 0.15541760955422754, 0.5851621750323275, 0.9046111951917862, 0.4177213302712193, 0.7993763114768937, 0.6978409661933959, 0.6473373667551029, 0.770784382977056, 0.6500641275496193, 0.548949563093737, 0.9803199442553986, 0.6150775052067382, 0.391333092160729, 0.6966682278280982, 0.9426748402861506, 0.9170092977635526, 0.844625652038695, 0.5621782696252592, 0.8935808323282117, 0.6792214086077275, 0.6719996755401956, 0.5252591274442797, 0.7277045758687855, 0.4685752957996948, 0.8616549355667619, 0.347491516391863, 0.8224130863808733, 0.5340790568488665, 0.6711667658766297, 0.5277539611022016, 0.7226430813715845, 0.8140972745487615, 0.3280236940194876, 0.9543080196225542, 0.7752655593026647, 0.9223925066666061, 0.8588031784191832, 0.6345107008491314, 0.9393010047953068, 0.7897067132703484, 0.8608062836413887, 0.8367885032124018, 0.38555642305179116, 0.8611944449682004, 0.9172341012895443, 0.9206892306522243, 0.9500505925695213, 0.537798347971205, 0.9173482789702866, 0.44454351342386716, 0.8909704850569525, 0.7351932580165473, 0.6818328744935735, 0.7981559962965634, 0.7626532952948841, 0.807353254900461, 0.964411205143099, 0.4685752957996948, 0.6986526320119215, 0.1956969407137045, 0.9233481403380283, 0.8218375601976645, 0.8536269727611236, 0.5637680470866036, 0.42267134533232753, 0.93003590801509, 0.9364808605729722, 0.8816060831574614, 0.9663102962713933, 0.8345570787709832, 0.4997893986747249, 0.7921603237806832, 0.5586815647381762, 0.8622246464681924, 0.9828719612298703, 0.909295720392338, 0.9476267884443668, 0.5395521774612226, 0.901360886913609, 0.39410444510430487, 0.9262213132200262, 0.6627387433216217, 0.9629433821448677, 0.9614311452267452, 0.9802968012486629, 0.933760787013923, 0.34432718187202205, 0.63596173557573, 0.624364378916488, 0.7417789548241253, 0.7300918276682445, 0.6968315453320488, 0.7840233885688647, 0.8958841271622066, 0.5417426694559925, 0.7102579146160282, 0.6004345411549624, 0.515920701757342, 0.7587882454650442, 0.5029588531082266, 0.6887596776945688, 0.8642849605932809, 0.6469572639767995, 0.8103639651534781, 0.939764354405301, 0.694136577696587, 0.6593725303534554, 0.9646797005081557, 0.7979900311745153, 0.792123904710467, 0.8869579700149332, 0.7351250317969437, 0.5332560471205093, 0.9406873315653421, 0.39362685027924615, 0.9466602521798594, 0.8394325033041952, 0.6633442657978572, 0.8126408700417265, 0.7332457619716184, 0.08024070404520958, 0.8667774471450977, 0.6466814331404849, 0.912366876100516, 0.656670904734599, 0.8701678467707724, 0.8875925797813499, 0.9658725076002231, 0.7668332861852056, 0.8604440887473094, 0.934384507524058, 0.9605946056867319, 0.951253157591183, 0.5749289095213865, 0.6279243005170476, 0.7937202818717513, 0.7665301650725991, 0.700127941221274, 0.8531107444728586, 0.7947045908306632, 0.8870566665876504, 0.5476228787844645, 0.8410401833568673, 0.8736671065238262, 0.6519898659949606, 0.936943112068646, 0.9077719201719568, 0.8071889556778997, 0.8815615400732472, 0.8935313268029127, 0.8782891297971865, 0.5029588531082266, 0.5797201450332624, 0.9416775458320723, 0.5958140198486584, 0.2485157288688957, 0.932021424688801, 0.8531502837407814, 0.6344194678828672, 0.632587077283238, 0.9121448358615357, 0.5776545535910985, 0.9052765174806566, 0.8580390107418799, 0.8998644401112552, 0.6784536879503494, 0.9458342431661766, 0.21387363850783603, 0.9530348339880965, 0.7307391114165022, 0.7187682731289255, 0.6905635603269331, 0.9569274903702625, 0.9287384091375525, 0.3856984054091925, 0.504413920551941, 0.5389739198483336, 0.5921068831639978, 0.10702848140489757, 0.8772993497727819, 0.6361944011057532, 0.8952999713010865, 0.7069578609115064, 0.10632960186243966, 0.6465592619811017, 0.9116333268133815, 0.9210441535829985, 0.9483358221641291, 0.5800224234700003, 0.896951343689222, 0.8958659323404018, 0.8896861436466836, 0.7763142135369961, 0.778627444633172, 0.9274605647284293, 0.9167924025380936, 0.6422094408272838, 0.6363725079258666, 0.8694129796739031, 0.5693182102579236, 0.5315376696882942, 0.6814536952243052, 0.30089534057709466, 0.6689448970920832, 0.6419522618821227, 0.6500641275496193, 0.8221968069187356, 0.9285763346020383, 0.8495153837633861, 0.7135666997345446, 0.8850789772017983, 0.9128367188568884, 0.8709442503982084, 0.44714680104169846, 0.7147831401969469, 0.6814536952243052, 0.5823319261018008, 0.7718122970862826, 0.8925058444773368, 0.9249991097277733, 0.7849066379312727, 0.5120166815330335, 0.7863291630268572, 0.8171821177205619, 0.8878235148823457, 0.9813953955585096, 0.5009899161211654, 0.6787020040856314, 0.2747106808400709, 0.6998114428322438, 0.7191783799678735, 0.7566715075843347, 0.7741630673610131, 0.692871858980435, 0.8706970297938403, 0.9226518689226377, 0.619213859232465, 0.9620625840847012, 0.8161066853745392, 0.7984578805051198, 0.8987836568806694, 0.27900511725120763, 0.747868261422589, 0.8013372150606806, 0.4430395412241901, 0.8082746512504794, 0.9248395818955686, 0.8132668978866627, 0.7926355964369082, 0.7243101498981422, 0.8251498778038484, 0.865753667016409, 0.8784859927081519, 0.9613966942665844, 0.8380103992838959, 0.9376908870460701, 0.8505645904112248, 0.5317253080143199, 0.8756470416862959, 0.8823120896825394, 0.8920529250761863, 0.9565288857220365, 0.92576324319171, 0.8397457208604353, 0.8008835764985612, 0.7620555647282774, 0.6333567796033132, 0.8986985644274655, 0.8289197139212982, 0.38568054861828666, 0.4358764146033148, 0.7013568331933456, 0.5524769805317635, 0.8654015550049637, 0.9625385348003681, 0.4997035751430624, 0.5940434106189647, 0.29640429037896177, 0.9370396801623051, 0.7496358493500708, 0.8521916566704996, 0.7519935213994349, 0.8956127660014477, 0.7563308848917781, 0.5425355780301907, 0.1652985164032473, 0.5777375433929663, 0.5926841497777402, 0.5247451599628447, 0.6215406511606532, 0.646742228322253, 0.5236567091352762, 0.8105889943537302, 0.7614647275399787, 0.7272264480694343, 0.44438282424164377, 0.8051848688934031, 0.253979247575754, 0.8737269176380216, 0.7884186533408385, 0.5226162157005312, 0.7776146375974927, 0.8021344726910251, 0.6794204065079696, 0.8398669626756513, 0.3743394998756179, 0.6593725303534554, 0.41008410759983227, 0.8726624594592295, 0.31336232876890546, 0.6187135046228962, 0.9208146539756937, 0.8948907807194619, 0.9475948217130945, 0.7098971478357265, 0.41970311630379203, 0.5524505095188592, 0.6689295490636696, 0.39534528644804523, 0.6686700461744643, 0.6608417181144597, 0.6289006219381473, 0.8112353209803558, 0.9675531845963172, 0.3468688843876404, 0.8171815196180959, 0.9315945487332388, 0.7612383340144859, 0.43979370974717685, 0.9452166580978265, 0.810349906376065, 0.4979189466877109, 0.9054024939516333, 0.7506263221664519, 0.8595966107872783, 0.9041757536760852, 0.5120166815330335, 0.9246344940597735, 0.622364539475366, 0.7975959936185795, 0.9376528402833735, 0.8270495791839716, 0.7463426393970082, 0.8508295060861325, 0.5277539611022016, 0.7926521549058593, 0.8343380415579561, 0.7973631232158779, 0.5423298306356671, 0.6253812669856891, 0.9342151247863544, 0.9064095870896521, 0.8428584418618921, 0.5680191878381406, 0.8230633503438987, 0.857993972512287, 0.8312116035859974, 0.8886868130574391, 0.5695902702544526, 0.8750573328895943, 0.47134086624147714, 0.6082670858563528, 0.8571520978358925, 0.7006810412396262, 0.6001343818465046, 0.8680196363335714, 0.7833148206731655, 0.835330250744176, 0.6883000602161935, 0.4297997702781997, 0.7132181587745201, 0.941909753873568, 0.9298379484442667, 0.8950633078112005, 0.9652574497835966, 0.8593048115498744, 0.23022113319019433, 0.5548683876071567, 0.8789570823277312, 0.7176343272433334, 0.7135972690872326, 0.900955402304434, 0.89110615578316, 0.8021344726910251, 0.36734125225010755, 0.9233813125795639, 0.9269988231022361, 0.6021478506882372, 0.27064660283581765, 0.7595966254948197, 0.5317253080143199, 0.9626288904553877, 0.518871521713375, 0.4244151934213653, 0.8784852709235653, 0.667697582798242, 0.6791650855490978, 0.8659372985570389, 0.5217980090164113, 0.9757802673562255, 0.20769640873195563, 0.6900575067285889, 0.15051833553221247, 0.8476988333501053, 0.12043274000614122, 0.6546311715671466, 0.412102187638673, 0.6339696776630096, 0.6925917751558638, 0.8074446941396305, 0.8417042066658985, 0.4702054036006336, 0.8107456318417504, 0.934253622333564, 0.9671353887875448, 0.3776875782453083, 0.5133306968464912, 0.8279918435672958, 0.7295730380004212, 0.8398957027397556, 0.7470826509089123, 0.7722124156410631, 0.3944809481034696, 0.5801047158883857, 0.7134138458261836, 0.8265590446981121, 0.5836238058504062, 0.7538957359152121, 0.9708936701567454, 0.41507295289487073, 0.9039211350062085, 0.5109703825452502, 0.8880660412534, 0.6332514250278477, 0.703270618172154, 0.863031725372896, 0.9601349291832292, 0.5845797646527732, 0.8357575010967041, 0.9584406458449958, 0.8733333206292072, 0.4740801794177068, 0.5787650908025566, 0.38525623454815555, 0.5715075300165849, 0.951253157591183, 0.831291834366621, 0.6482062646591596, 0.5447536045265621, 0.8456825404777587, 0.5358725178581014, 0.8893400405584444, 0.5955893395860203, 0.9408369636189147, 0.7580589814818564, 0.4244151934213653, 0.7636885291754726, 0.9532052815091139, 0.6686700461744643, 0.39683939049776734, 0.8309978518015588, 0.06774730328187532, 0.8934061610794648, 0.9459413258233057, 0.8507977517004935, 0.9694554821790147, 0.8640493534313302, 0.8409166048571896, 0.9059760843724536, 0.7278052027863667, 0.8952246802917138, 0.39534528644804523, 0.9558702864115934, 0.9178754126151818, 0.7504628435478695, 0.7568870052952757, 0.32046258648166903, 0.9712495894387816, 0.7125870341029702, 0.8286889773580812, 0.929575727770858, 0.8422483936479932, 0.60065365322741, 0.5775074082600717, 0.7505976846167132, 0.5317253080143199, 0.9590110623565244, 0.9651712957082627, 0.7333643603414158, 0.7757825668725274, 0.8928390517037824, 0.2578168736401774, 0.5355488836719776, 0.8408692583280314, 0.7849780542174357, 0.8711681462620556, 0.8447990405440073, 0.9571933326515756, 0.9307123551507692, 0.6421242495412457, 0.9239207054420927, 0.9336219461922934, 0.4244151934213653, 0.5673643045526261, 0.8301442064454496, 0.528471943574542, 0.8835542071774324, 0.8820947700128993, 0.4561713647735051, 0.584381944856391, 0.9493936477483658, 0.7816316980556022, 0.7770145472448273, 0.8495153837633861, 0.8318035560268552, 0.5220388622338656, 0.8589980209217414, 0.21216021099657945, 0.8782303617207965, 0.901850575196968, 0.7683760396387002, 0.9559989503713009, 0.938411491366706, 0.7225398931917507, 0.5918361617892179, 0.8596378534897678, 0.8816239240572568, 0.9296844522785247, 0.8299758417251202, 0.7538846798551382, 0.931253582726863, 0.6902425303942638, 0.9299571155275668, 0.35461708236434614, 0.6119587629530028, 0.8979450471026776, 0.8782891297971865, 0.6144930729026484, 0.5601837238662909, 0.4230258756549153, 0.5115702372514986, 0.6133200318312215, 0.8287048127179734, 0.42887934024879554, 0.5543929044930882, 0.5414149972460248, 0.7453725251924848, 0.6522898344923613, 0.6445138145159856, 0.9212190995841192, 0.6991293681294938, 0.9188224881967051, 0.9444881948020799, 0.8399825546316605, 0.6440269003431431, 0.45260210695563535, 0.6678228102737954, 0.8535669746933884, 0.23469888428232324, 0.7581156815660375, 0.8329520097124233, 0.5886389680190937, 0.4250130050586104, 0.290761161529129, 0.9065968169685268, 0.39757013049667705, 0.9584529405260903, 0.24804178200132845, 0.8400605958344816, 0.9562762484868867, 0.5923100188758571, 0.5355488836719776, 0.6866862751474886, 0.753715093249364, 0.9302702282582556, 0.8405005145861136, 0.7758456574858743, 0.8270123797965384, 0.9270997487744173, 0.8779999285967196, 0.6350604679157676, 0.9057987369792326, 0.9732730617650076, 0.28007269673131574, 0.5393237551960537, 0.9509318156255189, 0.8055358405733448, 0.8512314640165554, 0.6752183046546253, 0.9766791413071304, 0.26893819095773785, 0.5105552073939665, 0.7964242570425004, 0.9159462749375985, 0.46312559485344046, 0.7889853219989779, 0.5331772070153998, 0.6250130361556073, 0.5340700079782073, 0.8981158701031157, 0.8424802355113449], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [3.36, 3.22, 3.03, 3.07, 2.93, 2.93, 3.23, 3.29, 3.29, 3.03, 3.12, 3.16, 3.14, 3.12, 3.14, 3.27, 3.14, 3.16, 3.32, 2.97, 3.27, 2.96, 3.15, 3.12, 3.15, 3.07, 3.44, 3.18, 3.3, 3.46, 2.98, 3.3, 3.38, 3.2, 3.42, 3.32, 3.25, 3.42, 3.29, 3.26, 3.01, 3.1, 3.0, 3.22, 3.08, 3.28, 3.27, 3.15, 3.14, 2.79, 3.19, 3.17, 2.99, 3.37, 3.39, 3.28, 3.48, 2.92, 3.04, 3.08, 2.92, 3.31, 3.23, 3.48, 3.03, 3.53, 3.03, 3.51, 3.45, 3.37, 3.38, 3.21, 3.47, 3.32, 3.19, 3.18, 3.04, 3.07, 3.14, 3.39, 3.21, 3.15, 3.33, 3.2, 3.05, 2.97, 3.47, 3.22, 3.14, 3.35, 3.23, 3.08, 3.28, 3.18, 3.4, 3.5, 3.14, 3.17, 3.37, 3.24, 3.15, 3.08, 3.27, 3.34, 3.19, 3.35, 3.16, 3.36, 3.15, 3.18, 3.3, 2.94, 3.4, 3.29, 2.8, 3.13, 3.1, 3.17, 3.18, 3.13, 3.37, 3.34, 3.36, 3.39, 3.29, 3.38, 3.26, 2.93, 3.29, 3.08, 3.16, 3.25, 3.18, 2.96, 3.45, 3.16, 3.23, 3.29, 3.13, 2.94, 3.12, 3.05, 2.83, 3.16, 3.46, 3.22, 3.05, 3.34, 3.23, 3.23, 3.19, 3.47, 3.42, 3.17, 3.1, 3.16, 3.21, 3.2, 3.08, 2.99, 3.31, 3.18, 2.97, 3.04, 3.38, 3.13, 3.19, 3.37, 3.22, 3.06, 3.38, 3.23, 3.15, 3.15, 3.27, 3.26, 3.0, 3.07, 3.04, 3.24, 3.2, 3.42, 3.16, 3.21, 3.24, 2.95, 3.1, 3.07, 3.09, 3.23, 3.53, 3.28, 3.1, 3.18, 3.08, 3.33, 3.06, 3.14, 3.35, 3.09, 3.48, 3.25, 3.13, 3.2, 2.95, 3.25, 3.19, 3.2, 3.28, 3.06, 3.17, 3.13, 3.33, 3.0, 3.19, 3.03, 2.89, 3.08, 2.92, 3.19, 3.14, 3.22, 3.38, 3.09, 3.08, 3.38, 3.48, 3.54, 3.24, 3.24, 3.14, 3.12, 3.3, 3.09, 3.19, 3.04, 3.25, 3.45, 3.18, 3.42, 3.56, 3.67, 3.05, 3.4, 3.21, 3.16, 3.54, 3.32, 3.1, 3.19, 3.31, 3.13, 2.85, 3.16, 3.0, 3.26, 3.4, 3.32, 3.01, 3.24, 3.66, 3.37, 3.58, 3.58, 2.89, 3.31, 3.21, 3.3, 3.4, 3.1, 3.15, 3.51, 2.99, 3.16, 3.1, 3.08, 3.06, 3.55, 3.35, 2.98, 3.48, 3.34, 3.11, 3.56, 3.16, 3.32, 2.95, 3.24, 3.15, 3.15, 3.16, 3.33, 3.2, 3.51, 3.26, 3.26, 3.16, 3.1, 3.14, 3.37, 3.34, 3.05, 3.19, 3.02, 3.05, 2.97, 3.17, 3.13, 3.27, 3.12, 3.34, 3.49, 3.14, 3.32, 3.22, 3.03, 3.1, 3.19, 3.77, 3.36, 3.18, 3.34, 3.3, 3.27, 3.44, 3.07, 3.14, 3.13, 3.18, 3.47, 3.39, 3.31, 3.16, 3.44, 3.28, 3.17, 3.24, 3.17, 3.3, 3.24, 3.13, 3.23, 3.34, 3.29, 3.16, 2.99, 3.39, 3.36, 3.3, 3.14, 3.18, 3.19], \"xaxis\": \"x2\", \"y\": [0.8142007211296887, 0.07257977436397642, 0.7430932382113554, 0.8214862427787604, 0.5698848321031316, 0.6048119589659149, 0.6466669219762841, 0.14510080060429495, 0.2250304680670007, 0.28492472637839966, 0.42061632734231896, 0.8281252124183194, 0.49622399336621903, 0.3482895521074759, 0.4678833354511545, 0.5708968386647719, 0.37048677721847617, 0.553632248395139, 0.8702137350251022, 0.42186952587750404, 0.8696774950675754, 0.5410576963494411, 0.3971326977900686, 0.3275001196198921, 0.9448289227093116, 0.7109941475090589, 0.41925580570138304, 0.3675472469853882, 0.6721911818800557, 0.5562207270314473, 0.5262426608517637, 0.3244609607385458, 0.15056615442564347, 0.15676979724311627, 0.6037730696030339, 0.6342511279653397, 0.021947035536558718, 0.32429164429335744, 0.5678746850743716, 0.3571680467137555, 0.7755534309390314, 0.3240287891037917, 0.699424662214302, 0.5151532452376618, 0.7564675819717819, 0.38343591026479057, 0.19811005648518398, 0.3168419703358067, 0.5315947262677626, 0.9269044449273315, 0.8260225289794664, 0.451791899378283, 0.830516920403184, 0.47128602930186, 0.19027823806377472, 0.5181346713949518, 0.29552777318700446, 0.45414400334446664, 0.39329840463575844, 0.42327932510626076, 0.45838907164509224, 0.2233864252642039, 0.3628419195926303, 0.6709353200988277, 0.46058046365566996, 0.25551237833043455, 0.7234147543269824, 0.1481282262733752, 0.314935793994079, 0.20050531530561894, 0.37453315488553635, 0.701015529968035, 0.6343341418527783, 0.1739320900588749, 0.734996253073231, 0.8172229478314255, 0.3598554146739685, 0.7121055211356295, 0.2620604909731644, 0.3421138035730516, 0.6951268813066005, 0.35208221297891723, 0.452099210446082, 0.18907620085798427, 0.5444201651108793, 0.6484058972837882, 0.3258186925596978, 0.5963383680780668, 0.6202666247822538, 0.576738593946626, 0.5054992484109841, 0.2972245631729925, 0.6844333356791464, 0.42629475072919953, 0.4405153833121037, 0.01207867704715336, 0.7609288944606691, 0.23951123982998349, 0.09310514674080905, 0.5084920166510624, 0.33067609257366243, 0.36481899584296196, 0.5708968386647719, 0.3194802059637459, 0.14207297841267416, 0.5776897120055972, 0.2026163425795633, 0.37909000048748537, 0.38206764842015895, 0.41324683104354176, 0.17826143731067332, 0.42339414872454434, 0.39148091864802853, 0.3511350413575442, 0.8053393751847749, 0.5937005322868365, 0.6849942580153355, 0.38930033076762494, 0.5168500865319015, 0.5699073288866824, 0.5376087249833421, 0.8185832461647057, 0.25950508036415604, 0.20394483716883388, 0.3303044530853749, 0.2528102968078532, 0.8477719856767125, 0.5217124250004609, 0.3303044530853749, 0.5382885532339231, 0.9625763866028243, 0.6536174904341296, 0.42629475072919953, 0.6458781618432388, 0.46574001023909845, 0.37268733756108086, 0.8180085473348132, 0.35493594975273335, 0.2423640089427935, 0.3636330633241046, 0.6421622311157122, 0.5444201651108793, 0.7396308412796291, 0.9036153464846048, 0.21101569987323432, 0.6004024464464508, 0.7595861882737439, 0.486549602332862, 0.2379839758891197, 0.5147825233229498, 0.2065932277190248, 0.4342628292980428, 0.5940848250235929, 0.4857193175270624, 0.5332610244722983, 0.5402196969638672, 0.8578846895389459, 0.5290225674595067, 0.6074669506688956, 0.1847839155105034, 0.3581391437324269, 0.4304380754474639, 0.8410120374942113, 0.5810086483513661, 0.19026233744636453, 0.7223494520380469, 0.8589928738613049, 0.8374625942163022, 0.781203852328267, 0.73983195178881, 0.41156537259256004, 0.7482873396984137, 0.44431713201158524, 0.7113673874393347, 0.49869552495399233, 0.7627102864663872, 0.37193390769028617, 0.37187810520956766, 0.3773291605703562, 0.8719651627687759, 0.6218762459828849, 0.3781393537983126, 0.553632248395139, 0.47624084907999176, 0.774399353278846, 0.5840424935194366, 0.5601025471409736, 0.6186690618327106, 0.620611700356168, 0.5755798886129706, 0.15047650536569443, 0.5530049338021776, 0.6597439619439023, 0.8300222117931148, 0.3490158529243493, 0.4410646109528086, 0.5067909967309752, 0.5851482063434866, 0.7149827463187939, 0.4849259975950144, 0.2094210588097294, 0.33399024531412796, 0.4083143545243069, 0.7497022835596558, 0.7817929239213606, 0.7637421953724776, 0.3825655414920891, 0.6611482494098961, 0.19022241257108333, 0.44972084577511023, 0.5476732603321269, 0.4831274653996314, 0.5077048340566679, 0.7289504589448288, 0.4379810490617926, 0.8017221455714771, 0.6434673631716396, 0.5059779734745421, 0.6065367192264559, 0.650368705032214, 0.34567471266024347, 0.39561589000187136, 0.3427787545601037, 0.4676404271158623, 0.5332283386400669, 0.4519108142444285, 0.40662831629925006, 0.42305576187259053, 0.22032895172816622, 0.5278715769330472, 0.43679486629948455, 0.743933429392776, 0.5269515041023835, 0.5008800654866953, 0.214168174561682, 0.44879088851457377, 0.683485355417811, 0.807753104897186, 0.42629475072919953, 0.8502951424821861, 0.17421175568219957, 0.25491371883486935, 0.7595861882737439, 0.6571724132942184, 0.7813188949129265, 0.5626906653340306, 0.8674288259883418, 0.6600514650598344, 0.4827749661719035, 0.5456147119159479, 0.39827550056677263, 0.27323823737433794, 0.695896529362927, 0.5048820477254727, 0.5422349097465021, 0.5610936746718964, 0.6571724132942184, 0.3088751107498249, 0.45428761266464013, 0.6604471727860799, 0.43371621376298963, 0.6171893197168647, 0.8100511550343341, 0.8100511550343341, 0.605832578461134, 0.5526475584669951, 0.4275055171336787, 0.8734720021260204, 0.8508295378350301, 0.5807723706867254, 0.8272749548927728, 0.2670652478909882, 0.7020144194675465, 0.4615566916191992, 0.7055847950248242, 0.43389869234556755, 0.6071692164257629, 0.3496825637352313, 0.23676491619791426, 0.7057755976874825, 0.15539001443149586, 0.6187538615870153, 0.8735882828904331, 0.30049486749739024, 0.23191705420611952, 0.8913917397916864, 0.4977157214618499, 0.16961113509580228, 0.8485494795219795, 0.4760032757956232, 0.5053843099270294, 0.2676015269871764, 0.3627664421236291, 0.15146266807038725, 0.7898179638281774, 0.6145296307645981, 0.3790380236797623, 0.3003532640340299, 0.6086112016774773, 0.39906793889171593, 0.8185832461647057, 0.6715802865662828, 0.8260225289794664, 0.6056902064850618, 0.400132762133902, 0.39471961640683584, 0.6449859309106076, 0.5637152910565628, 0.39949420960438964, 0.5490401551410112, 0.4398875418860128, 0.30916577334906253, 0.7093303227687476, 0.4562508424819209, 0.40444044759428516, 0.5773483646962835, 0.447777692034652, 0.4961542215384683, 0.32474312180562226, 0.21192693199409943, 0.9056903490933487, 0.5013816399998683, 0.758876109553896, 0.6364928148646596, 0.2952804752502578, 0.4748951900520853, 0.43679486629948455, 0.5479962315186364, 0.4728142838839701, 0.6343341418527783, 0.12248807650217919, 0.5052525886146573, 0.8281252124183194, 0.8930081609652758, 0.36283726088930296, 0.8098196742550625, 0.656477404357746, 0.193885049884708, 0.5269515041023835, 0.49858469647139786, 0.32780472036158087, 0.24927512797396847, 0.6148718578314069, 0.10691527318901187, 0.136775438340409, 0.8489192718114075, 0.2600203086082801, 0.8142007211296887, 0.5269515041023835, 0.7966615933629455, 0.5633234794197017, 0.767479452333631], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"pH\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"pH\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}, \"pH_bad\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (ref)\", \"type\": \"scatter\", \"x\": [3.16, 3.03, 3.03, 3.45, 3.15, 3.46, 3.34, 3.36, 3.16, 3.18, 3.3, 3.25, 3.02, 3.24, 3.32, 3.24, 3.3, 3.5, 3.06, 3.53, 3.19, 3.26, 3.54, 2.94, 3.6, 3.26, 3.27, 3.29, 3.1, 3.3, 3.48, 3.01, 3.66, 3.19, 3.0, 3.15, 2.96, 3.2, 3.04, 3.08, 3.02, 3.39, 3.27, 3.15, 3.19, 3.3, 3.32, 3.4, 3.23, 3.32, 3.09, 3.08, 3.2, 3.19, 3.11, 2.96, 3.17, 3.28, 3.14, 3.26, 3.19, 3.58, 3.43, 3.34, 3.13, 3.26, 3.22, 3.27, 3.61, 2.79, 3.09, 3.27, 3.05, 3.21, 3.1, 3.16, 3.08, 3.28, 3.2, 3.11, 2.98, 3.05, 3.12, 3.39, 3.11, 3.24, 3.14, 3.26, 3.17, 3.01, 3.27, 3.31, 3.15, 3.05, 2.96, 3.18, 2.98, 3.14, 3.15, 3.27, 3.01, 3.52, 3.35, 3.22, 3.29, 3.08, 3.16, 3.37, 3.27, 3.22, 3.37, 3.37, 3.41, 3.34, 3.49, 3.11, 3.16, 3.32, 3.06, 3.15, 3.09, 3.41, 3.22, 3.11, 3.1, 3.05, 3.29, 3.1, 3.23, 3.16, 2.89, 3.43, 3.1, 3.22, 3.11, 3.17, 3.13, 3.26, 3.09, 3.25, 3.07, 3.18, 3.28, 3.14, 3.14, 3.02, 3.44, 3.11, 3.14, 3.32, 3.13, 3.45, 2.92, 3.46, 2.99, 3.25, 3.2, 3.25, 3.46, 2.97, 3.15, 3.14, 3.05, 3.16, 3.34, 3.18, 3.18, 3.26, 2.96, 3.08, 3.12, 3.22, 3.37, 2.99, 3.22, 3.24, 3.33, 3.2, 3.46, 3.01, 3.24, 3.54, 3.28, 3.13, 3.1, 3.21, 3.12, 3.01, 3.28, 3.12, 3.02, 3.01, 3.08, 3.14, 3.16, 3.34, 3.08, 3.16, 3.06, 3.07, 3.3, 3.16, 3.16, 3.15, 3.63, 3.09, 3.22, 3.21, 3.72, 3.09, 3.14, 3.5, 3.04, 3.06, 3.18, 3.24, 3.11, 2.97, 2.94, 2.87, 2.88, 3.5, 3.06, 2.96, 3.1, 3.11, 3.34, 3.02, 3.22, 3.49, 3.33, 2.94, 3.5, 3.1, 3.16, 2.92, 3.39, 3.39, 3.15, 3.02, 3.24, 3.11, 3.03, 3.12, 3.5, 3.15, 3.22, 3.18, 3.24, 3.24, 3.41, 3.14, 3.66, 3.39, 3.1, 3.09, 3.17, 3.41, 3.14, 3.16, 3.05, 3.14, 3.39, 3.0, 3.16, 3.21, 3.77, 3.74, 3.42, 3.29, 3.44, 3.08, 3.21, 3.11, 3.19, 3.31, 3.44, 3.0, 3.13, 3.29, 3.34, 3.59, 3.17, 3.29, 3.15, 3.16, 2.9, 3.28, 3.08, 3.25, 3.06, 3.12, 3.24, 3.51, 3.3, 2.94, 3.13, 3.29, 3.08, 3.23, 3.68, 3.28, 3.36, 3.25, 3.31, 3.08, 3.12, 3.34, 3.04, 3.03, 3.06, 3.22, 3.59, 3.18, 3.38, 3.09, 3.1, 3.31, 3.22, 3.66, 3.32, 3.19, 3.36, 3.28, 3.15, 3.14, 2.98, 3.19, 3.29, 3.22, 2.93, 3.38, 3.35, 3.2, 3.25, 3.09, 3.13, 3.05, 3.1, 3.23, 3.3, 3.21, 3.24, 3.18, 3.24, 3.48, 3.53, 3.14, 3.38, 3.08, 3.04, 3.34, 3.06, 3.63, 3.09], \"xaxis\": \"x\", \"y\": [0.7197707895473677, 0.05448058807241418, 0.5021256787650443, 0.4710854375480472, 0.7156076129280222, 0.7966690429773311, 0.7265425252145667, 0.16771266951545494, 0.610944103187451, 0.6324527530146118, 0.42180662537268765, 0.2598044700255929, 0.5503032830239416, 0.5632112185661304, 0.6840604465833231, 0.6224375641140001, 0.8071781895370533, 0.9515482366939344, 0.3994071349416132, 0.9677746238863042, 0.572587586261062, 0.7602674855798478, 0.861098734498427, 0.1386074727873, 0.6703360831713621, 0.8064003460928679, 0.3172728283240366, 0.8039094494444462, 0.9186426431335688, 0.6026275969807151, 0.8609701260317718, 0.3485833566260712, 0.3005246278528939, 0.2859113263741919, 0.4978204971029292, 0.5125675444128744, 0.4268860326359044, 0.11791793574572085, 0.440027850275134, 0.4938434408506086, 0.4933189622152446, 0.166194347192407, 0.30200278364192557, 0.6822425768461728, 0.8693180940701344, 0.24112389044610405, 0.43189370387303117, 0.284455178085937, 0.23793737479647703, 0.5535561322468214, 0.7900402576908969, 0.47373775892899717, 0.6055733033081183, 0.7462675017011632, 0.32245623572553406, 0.7612367841042231, 0.36308410170653527, 0.6103993963703384, 0.3965676277125745, 0.2230008284200371, 0.8480025164595866, 0.43585875500482685, 0.24095331994381775, 0.4030652094068704, 0.8951637220162157, 0.2782175630406618, 0.7337660836226194, 0.8352762102164887, 0.6223987562306759, 0.2928263700360406, 0.6563137004068428, 0.16155652477357085, 0.6364666355122575, 0.2186811050870735, 0.27206300237801306, 0.4358901152617537, 0.6136035252376228, 0.07900866299327158, 0.8522855318359817, 0.11906253414448076, 0.3466831105240652, 0.11265227152414181, 0.6302693732121377, 0.7168097665217413, 0.4796298258249143, 0.4476252306691143, 0.3612478268219491, 0.611861930499026, 0.15121036728507153, 0.5363393546692182, 0.16155652477357085, 0.441733396330222, 0.7834276811132227, 0.6364666355122575, 0.44873286860252337, 0.4948960601400133, 0.4172084246960842, 0.5055831714989107, 0.5269082808529498, 0.3737404408311804, 0.4491757516278906, 0.5266720849021, 0.2882430633103308, 0.6066213483726142, 0.83534933450756, 0.2509605867776752, 0.230738949997912, 0.25680675940048736, 0.6858999083789018, 0.27626495444752697, 0.35158671089680515, 0.311480105980391, 0.5950329577300569, 0.4196263877039489, 0.3672198477254309, 0.5488429300958864, 0.6273126624389191, 0.0990306898864649, 0.935036100419004, 0.5556828679884147, 0.6003916802566726, 0.1337843055401957, 0.6898191889393818, 0.46604488826349566, 0.6668872608045229, 0.5998672378660981, 0.14712454771937833, 0.8558065212045691, 0.883276495704891, 0.5544329747085402, 0.38398791005853006, 0.8623310715459079, 0.4482795971615686, 0.4767821080964978, 0.6451659669426603, 0.5099786295438409, 0.11454219273407718, 0.5691587732433696, 0.2398813672346335, 0.8592796956842923, 0.38133093816728936, 0.4754945767078651, 0.2673740541283356, 0.43092180164799054, 0.5981491184574936, 0.7512253043619477, 0.20474988026063612, 0.12337786436138054, 0.6965484670033051, 0.4642254518352117, 0.29034758521725457, 0.7912282271603185, 0.1364389858241727, 0.5326323768611896, 0.3938848007926149, 0.886984727126295, 0.5955398539691413, 0.3667393936023857, 0.35129461810907203, 0.578130474122496, 0.1952086434691429, 0.6982941690158907, 0.6159300986783536, 0.6650580695700093, 0.8007006003287879, 0.13750802167619447, 0.47121416359091395, 0.5691587732433696, 0.5295784007050042, 0.4938434408506086, 0.4240508430342457, 0.1531205555636086, 0.7965770364050346, 0.4829168465516456, 0.6333246955344933, 0.38682769986244625, 0.5589353890471914, 0.30965836575156913, 0.6133571507425741, 0.5363393546692182, 0.5474540697204298, 0.9680074395956593, 0.29703705077451537, 0.7566858385458134, 0.451244026180727, 0.6224939697452743, 0.9340693900855184, 0.1254375450851024, 0.770680513376406, 0.7273231109206828, 0.410671569380914, 0.19928392436820586, 0.44743622108127745, 0.4991477681643879, 0.5443787589855091, 0.826082779912576, 0.5642536294664222, 0.6762559922350657, 0.39283078357423706, 0.3074847569358159, 0.40732461839200396, 0.5614584986504241, 0.5614584986504241, 0.575628870274347, 0.1938881144566701, 0.6480440770440566, 0.23946299348505806, 0.6110142157087575, 0.32489046344192996, 0.127020290619695, 0.28948900574123104, 0.27970970921902805, 0.5179212029104148, 0.579807192000203, 0.5695619245525361, 0.7471497674522103, 0.6761943115269239, 0.6052803835931642, 0.9048996801452402, 0.632953623191418, 0.7849920634816455, 0.12946409768986655, 0.3899257470968539, 0.37735505673750047, 0.27206300237801306, 0.6356505945299911, 0.9000798247851504, 0.5852448485124296, 0.3537739535016634, 0.8589709040748648, 0.5105041430354158, 0.4760479563081992, 0.3915586115462193, 0.4344526143297297, 0.04825794875232026, 0.25106204840173363, 0.5352062615150248, 0.2084678736174792, 0.5588772074146924, 0.42656597432725707, 0.3395528272139201, 0.5154796814541086, 0.30312695461308037, 0.4684625037801391, 0.13140485141127656, 0.37575572516499556, 0.7087902803012941, 0.22740617784346517, 0.7932370230268412, 0.6977827466507267, 0.8687065743771458, 0.3532210556477622, 0.3005246278528939, 0.8817461779308045, 0.5897758288136841, 0.5117334773877459, 0.2267712913026929, 0.7462523759498982, 0.5055831714989107, 0.6276122794572256, 0.34766968675436505, 0.563322001169588, 0.4035281086421867, 0.44827723495654004, 0.7588644006503809, 0.17560197311170134, 0.2736156405730563, 0.5646478519097824, 0.12788772013874206, 0.8127608550985441, 0.35130933230290007, 0.8842329534318195, 0.5671758377024384, 0.508518787579709, 0.4735654621913231, 0.6614347321502836, 0.7032589073748752, 0.418601168771625, 0.40262233345395115, 0.38045938978299354, 0.6221728234115828, 0.6769388667590319, 0.825791915264051, 0.8036522945246104, 0.5350776523934957, 0.5038683203672731, 0.4187790963850706, 0.3942708224564714, 0.36585282612655, 0.42973128126448334, 0.1395024853671747, 0.36909778672938764, 0.5126700875045708, 0.31128511290513083, 0.5841805470690385, 0.42932394036482613, 0.5168725346003686, 0.9331527243268325, 0.5090935678835011, 0.848083892739094, 0.7288594688776423, 0.23463814542978878, 0.9073343486287574, 0.5445649372592127, 0.8030108083542629, 0.30698149193503155, 0.47724620771884374, 0.49565431290071005, 0.29179072192325783, 0.53941953634433, 0.32642767658125227, 0.5714063949384225, 0.6769388667590319, 0.48314991346809855, 0.3838692085325581, 0.7654355578102645, 0.6807995217458978, 0.7803105409218809, 0.4971816769068883, 0.5662837862370104, 0.32557907866588853, 0.4059739580227363, 0.8621668957327787, 0.4863555612469991, 0.44913520001249685, 0.5044088987161788, 0.018560580499064172, 0.17397747102053363, 0.8203404366189, 0.531551035274026, 0.3951880410340851, 0.6710839680909022, 0.7545393605546251, 0.25029771644034415, 0.31651464458218903, 0.7900402576908969, 0.7649542174153934, 0.6282404390050247, 0.5124469561170844, 0.7501741577575001, 0.3717170374651112, 0.5479204837841629, 0.1799627586960565, 0.8716748635647116, 0.4700369344869263, 0.7044722268129955, 0.7597806244765397, 0.4570971226262448, 0.3688130253756654, 0.5854022956087224, 0.6067015953642416, 0.6092966434658947, 0.5713009051869427, 0.15316343939585397, 0.31191498773739224], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [3.17, 3.36, 3.32, 3.59, 3.37, 3.4, 3.22, 3.36, 3.14, 3.1, 3.06, 3.16, 3.52, 3.06, 3.37, 3.14, 3.09, 2.95, 3.34, 3.18, 3.12, 3.21, 3.23, 3.25, 2.94, 3.64, 3.31, 3.14, 3.28, 3.33, 3.38, 3.3, 3.1, 3.38, 3.13, 3.11, 3.12, 3.4, 3.26, 3.25, 3.14, 3.46, 3.41, 3.12, 3.11, 3.4, 3.3, 3.22, 3.2, 3.0, 3.15, 3.17, 3.32, 3.19, 3.15, 3.03, 3.22, 3.26, 3.05, 3.51, 3.25, 3.46, 3.31, 3.32, 3.17, 3.31, 3.26, 3.12, 3.13, 3.19, 3.17, 3.04, 3.15, 3.01, 3.48, 3.29, 3.35, 3.25, 3.29, 3.0, 3.65, 3.27, 3.02, 3.2, 3.18, 3.07, 3.2, 3.37, 3.18, 3.08, 3.32, 3.19, 3.16, 3.54, 3.6, 3.39, 3.17, 3.26, 2.87, 3.33, 3.47, 3.04, 3.18, 3.4, 2.96, 3.5, 3.27, 3.24, 3.1, 3.3, 3.0, 3.15, 3.05, 3.4, 3.35, 3.15, 3.02, 3.1, 3.16, 3.4, 3.0, 2.99, 3.04, 3.06, 3.26, 3.36, 3.33, 3.04, 3.35, 3.61, 3.19, 3.21, 3.36, 3.27, 3.38, 3.27, 3.22, 3.54, 3.23, 3.12, 2.89, 3.52, 3.08, 3.2, 3.08, 3.22, 3.1, 3.25, 3.39, 3.2, 2.96, 2.92, 3.3, 3.17, 3.04, 3.18, 3.4, 3.11, 2.98, 3.2, 3.35, 3.26, 3.15, 3.49, 3.3, 3.09, 3.12, 3.36, 3.06, 3.36, 3.14, 3.34, 3.38, 3.03, 3.32, 3.26, 3.33, 3.08, 3.23, 3.58, 3.48, 3.13, 3.32, 3.39, 3.18, 3.34, 3.15, 3.22, 3.31, 3.54, 3.37, 3.71, 3.53, 3.26, 3.55, 3.0, 3.13, 3.1, 3.16, 2.9, 3.32, 3.36, 3.41, 3.38, 3.45, 3.23, 3.22, 3.14, 2.94, 3.4, 3.07, 3.24, 3.28, 3.23, 3.12, 3.36, 2.93, 3.21, 3.03, 3.1, 3.39, 3.28, 3.08, 3.02, 3.38, 3.2, 3.07, 3.34, 3.22, 3.6, 3.22, 3.18, 3.51, 3.03, 3.36, 3.66, 3.42, 3.14, 3.27, 3.21, 3.13, 2.98, 2.95, 3.26, 3.22, 3.23, 3.42, 3.2, 3.15, 3.25, 3.21, 3.14, 3.17, 3.24, 3.12, 3.15, 3.15, 2.93, 3.32, 3.14, 3.16, 3.38, 3.18, 3.01, 3.31, 3.28, 3.23, 3.28, 3.38, 3.56, 3.22, 3.49, 3.04, 2.91, 3.55, 3.39, 3.11, 3.27, 3.71, 3.17, 3.26, 3.06, 3.57, 3.26, 3.15, 3.28, 3.13, 3.14, 3.24, 2.94, 3.34, 3.12, 3.26, 3.23, 3.09, 3.19, 3.47, 3.21, 3.7, 3.37, 3.38, 3.38, 3.54, 3.15, 3.14, 3.4, 3.05, 3.19, 2.97, 3.09, 3.42, 3.03, 3.62, 3.37, 3.16, 3.16, 3.12, 3.29, 3.03, 3.2, 3.4, 2.95, 3.24, 3.53, 3.3, 3.47, 2.86, 3.15, 3.52, 3.22, 3.36, 2.98, 3.12, 3.25, 3.15, 2.93, 2.88, 3.27, 3.48, 3.22, 3.16, 3.01, 3.23, 3.34, 3.21, 3.13, 2.92, 3.32, 3.29, 3.04, 3.2, 3.24, 3.11, 3.02, 3.16, 3.46, 3.3, 3.18, 3.28, 3.14, 3.2, 3.14, 3.18, 3.3, 3.53, 2.87, 3.32, 3.28, 3.33, 3.1, 3.33, 3.23, 3.26, 2.89, 3.11, 3.06, 3.35, 3.33, 3.29, 3.38, 3.16, 3.12, 3.17, 3.44, 3.09, 3.0, 3.18, 3.22, 3.44, 3.14, 3.26, 3.1, 3.12, 3.27, 3.25, 3.39, 3.3, 3.06, 3.45, 3.22, 3.42, 3.52, 3.46, 3.34, 2.94, 3.23, 3.21, 3.12, 3.27, 3.11, 3.35, 3.22, 3.44, 3.38, 3.24, 3.16, 3.29, 3.16, 3.12, 3.06, 3.2, 3.08, 3.2, 2.96, 3.16, 3.42, 3.09, 3.11, 3.12, 3.29, 3.14, 3.27, 3.09, 3.33, 3.45, 3.48, 3.45, 3.51, 3.25, 3.12, 3.17, 3.13, 3.14, 3.12, 2.96, 3.23, 3.08, 3.24, 3.15, 3.33, 3.12, 3.29, 3.37, 3.27, 3.11, 3.22, 3.28, 3.4, 3.34, 3.12, 3.17, 3.45, 3.32, 3.05, 3.38, 3.32, 3.2, 3.27, 3.21, 3.32, 3.31, 3.19, 3.28, 3.12, 3.18, 3.12, 3.26, 3.25, 3.11, 3.15, 3.57, 2.98, 3.08, 3.49, 3.18, 3.06, 3.07, 3.04, 3.18, 3.21, 3.16, 3.21, 3.03, 3.28, 3.29, 3.11, 3.39, 3.24, 3.36, 3.54, 3.26, 2.98, 3.34, 3.09, 2.96, 3.11, 3.35, 3.13, 3.24, 3.23, 3.09, 2.99, 3.31, 3.09, 3.11, 2.94, 3.1, 3.26, 3.29, 3.26, 2.96, 3.08, 3.01, 3.41, 3.37, 3.2, 3.0, 3.09, 3.18, 3.18, 3.38, 3.41, 3.35, 3.11, 3.49, 3.36, 3.22, 3.02, 3.1, 3.17, 3.29, 3.22, 2.96, 3.18, 3.17, 3.08, 3.22, 3.36, 3.38, 3.43, 3.04, 3.12, 3.42, 3.06, 3.03, 3.35, 3.32, 3.34, 3.08, 3.05, 3.11, 3.08, 3.36, 3.44, 3.68, 2.93, 3.05, 3.13, 3.36, 3.1, 3.36, 3.2, 3.17, 3.08, 3.22, 3.3, 2.94, 3.21, 3.03, 3.05, 2.97, 3.36, 3.49, 3.54, 3.26, 3.34, 3.2, 3.25, 3.61, 3.05, 2.93, 3.12, 3.19, 3.22, 3.37, 3.36, 3.25, 3.42, 3.25, 3.02, 3.23, 3.32, 3.28, 3.2, 3.15, 3.14, 3.13, 3.16, 3.42, 2.94, 2.99, 3.21, 3.14, 3.37, 3.22, 3.39, 3.54, 2.95, 3.23, 2.87, 3.52, 3.02, 3.27, 3.21, 3.07, 3.23, 3.3, 3.14, 3.15, 3.08, 3.15, 3.09, 3.1, 3.2, 3.34, 3.05, 3.22, 3.15, 3.04, 3.4, 3.28, 3.28, 3.44, 3.24, 3.27], \"xaxis\": \"x\", \"y\": [0.18439386755371057, 0.5750868907731637, 0.1132172353536568, 0.19850047615697952, 0.6950004168934912, 0.41826441672946313, 0.040828937665112974, 0.2145583871630251, 0.09143093017991866, 0.10013996234885614, 0.3658834999306372, 0.587897812361327, 0.23563705889496211, 0.5289998061994394, 0.5981734696485812, 0.5956194363709464, 0.11295199838815062, 0.6349332021584286, 0.09356782907078887, 0.0672754654033908, 0.3541579814831264, 0.11781588709523827, 0.3295981493457443, 0.23443288181779365, 0.13830133810679424, 0.5122546205578999, 0.03626449638205209, 0.32057959349203036, 0.3955164844050859, 0.21320459763992916, 0.08620177311633537, 0.4132497936565127, 0.19514157099220286, 0.028148892894647393, 0.03728071159582558, 0.20213762816504022, 0.39088790332760825, 0.10566618212719892, 0.11466232649727714, 0.09544364959788487, 0.07351553674018241, 0.3657542344632553, 0.05859665738698361, 0.43634835962676355, 0.4827032077898804, 0.516310366273556, 0.6480037931050455, 0.21122004543372697, 0.030344760075157406, 0.22750344576024595, 0.18673438423788624, 0.5460909738859347, 0.0666291073587214, 0.320234954276134, 0.515425573770442, 0.5751179393061847, 0.3262180383913996, 0.12192585741802231, 0.6165939755266235, 0.09365914315081003, 0.44259853952477324, 0.31958523161407537, 0.09228899111547839, 0.22815273642701062, 0.5282447951108347, 0.7777719169155834, 0.13834506443323813, 0.29425092810710396, 0.5300870647699181, 0.031947521718024174, 0.1108646816717751, 0.053339747820140615, 0.14466174791529418, 0.25697560969337485, 0.3383868137798065, 0.30803904997837983, 0.03434255320493995, 0.08689109251212201, 0.46044782253877736, 0.0973761441498977, 0.3449058470623745, 0.024212367984770777, 0.11665042079727428, 0.3333970234137619, 0.1495417879159372, 0.0679784404121434, 0.2360052425084116, 0.39147703437781534, 0.04428683932015287, 0.5381556738404795, 0.4357341587922019, 0.11843845992675284, 0.28107964630818494, 0.06989794698232743, 0.2658605825653322, 0.22408104406272966, 0.15519213452661884, 0.09873339188795927, 0.10739713799337769, 0.4712507279726723, 0.31257930793611366, 0.6259141532505736, 0.1651629894813923, 0.13024327386797574, 0.08242409751896962, 0.55355901104019, 0.11256152515999429, 0.22124325125588817, 0.05838775174278421, 0.6734770756819889, 0.06919042490492266, 0.5773286546676725, 0.5693181878572973, 0.12726917141891614, 0.27983888222674136, 0.15690954109554833, 0.18593824584442387, 0.05432525584274117, 0.33273366741371935, 0.12435295831370408, 0.48112847828662497, 0.2959384652215836, 0.5042039768350125, 0.3749869638443927, 0.7258627386781167, 0.4806866421912115, 0.6234335830956541, 0.4191951896523489, 0.20821728825178332, 0.6343085651912675, 0.27674577061671146, 0.02140654255666985, 0.42849246998341506, 0.1817444030106703, 0.4551538855951942, 0.05087080041524106, 0.516641204200833, 0.6810720245435042, 0.08151744899857294, 0.4475169494323581, 0.03995706953508171, 0.2181819033834006, 0.20372897255157485, 0.24305701296248816, 0.5381556738404795, 0.2358485729609252, 0.051323642447754336, 0.1913631294907303, 0.32154631204965056, 0.31229802093755377, 0.3917329141436472, 0.39462053822053156, 0.3680669306910641, 0.5017894292511481, 0.32120711190509066, 0.0768019282386515, 0.1168769044932052, 0.31545143431826594, 0.12007957373947853, 0.08354361700756141, 0.2180731800932174, 0.7653011157176768, 0.05076221583963347, 0.11739077279846111, 0.3639458403519926, 0.4815918747301601, 0.35998732468747585, 0.457353694020342, 0.5520498791697908, 0.22168281241722143, 0.2132287846887433, 0.4763394582576197, 0.3040153802820409, 0.20749766415549342, 0.3316810644107503, 0.8126297477835096, 0.5749367295182395, 0.27274039590582944, 0.2685808245693546, 0.5172108675362206, 0.33506587713796443, 0.09616672688355288, 0.041108213935392324, 0.10548050716105373, 0.5016695616404938, 0.20022874051447226, 0.14220640128276774, 0.23772630779738468, 0.19606080251004787, 0.2603188495268066, 0.18846597668723208, 0.19827111133563302, 0.261548791893628, 0.4140325207077993, 0.8134796325151183, 0.12265695643958285, 0.6311167068993262, 0.13481820177301163, 0.0932384579037443, 0.14050160114126486, 0.2562249115981724, 0.08547750670655718, 0.08643201081848362, 0.19981675431015722, 0.31390222338706264, 0.06221739913672386, 0.06996303880871468, 0.30029370289300306, 0.4306817897420764, 0.6595343859760441, 0.2839408857911616, 0.20468539219890003, 0.1130196126722065, 0.2360017176902124, 0.13187147729288817, 0.42313120297864704, 0.06964897436687001, 0.1624399718171824, 0.17200815643270417, 0.07333105637055992, 0.2440137653363641, 0.4900110333069776, 0.3085554157386313, 0.03480496731142946, 0.12148031785507996, 0.15002971926037112, 0.5314247042003052, 0.2758453007685677, 0.2151852748992088, 0.2658605825653322, 0.29911225563077193, 0.6594110243744711, 0.49869782335001445, 0.16788254706683048, 0.11816213334465087, 0.08230909248122409, 0.13653212507346946, 0.25639170942272826, 0.06562233405876228, 0.23311900627036541, 0.3756616197417655, 0.46674395287949066, 0.3092684534350997, 0.8337319641197457, 0.8331457111467163, 0.2591056156836542, 0.4778687671024334, 0.2542440524586721, 0.5361036306539362, 0.07073721340803463, 0.4731688813159418, 0.5755848065786346, 0.356689463387698, 0.14225616860197343, 0.21837916002376445, 0.14466174791529418, 0.29899643271856946, 0.4757427727983842, 0.08126799884203029, 0.1296501822378736, 0.3286954654423938, 0.08620177311633537, 0.13855855420831553, 0.05543377339452393, 0.11917834098009661, 0.2613621884509647, 0.11269900223777074, 0.08429051026621415, 0.3393961441870107, 0.07031960314855146, 0.11356777592095357, 0.4853279864284006, 0.1279289285514792, 0.0584572339054259, 0.08612988585012649, 0.3472440907423937, 0.1248029959061332, 0.07502335399434323, 0.19827111133563302, 0.3424151534036639, 0.3065175956815872, 0.13808860398564737, 0.058092197534895806, 0.04082786106581715, 0.1602592849246841, 0.09156161599234125, 0.5036030690663805, 0.2640411824475748, 0.6468038092930676, 0.07201805208597656, 0.22470230804277058, 0.1334773721572423, 0.04847889440667685, 0.2685808245693546, 0.10911308148570098, 0.6764508967260475, 0.6280060594576413, 0.36761958218269275, 0.16019930342079847, 0.17605308658107655, 0.14078981831089854, 0.2384997092801764, 0.13117402490907393, 0.12818959986091483, 0.4161925244315118, 0.12435295831370408, 0.09814942480303201, 0.05480698563416486, 0.3746187330143109, 0.41092354232892336, 0.507894749900129, 0.5137929421583434, 0.08293523366016065, 0.2964416548030494, 0.15236141109070434, 0.4396941021426354, 0.41893931094950754, 0.09113953260801844, 0.10967473999240707, 0.055732078845942, 0.05640314085190745, 0.06176263301115803, 0.06427139521062619, 0.20386133178572885, 0.21597661143113533, 0.7486409492386699, 0.2610715902497083, 0.09465277491899493, 0.5556171757583562, 0.137718889647652, 0.1978940751503777, 0.08472590699531857, 0.356262641598029, 0.14596950445002987, 0.13865818299932142, 0.3088915816821678, 0.11516321289421916, 0.16121169033174265, 0.40573483691789825, 0.34308606282264, 0.36300204724896845, 0.17193414756867276, 0.035926383178341514, 0.34536882843285344, 0.4400180463892147, 0.5165194668234709, 0.23319834124303085, 0.9637923675569924, 0.2635599134550337, 0.6259141532505736, 0.12324962258280003, 0.1256037712827487, 0.1248029959061332, 0.11665042079727428, 0.29081136443782263, 0.12993062945549005, 0.20959981847797426, 0.12385816607190492, 0.16931651488884025, 0.2468284110987674, 0.6181879252747016, 0.3509541008179864, 0.08619429866610873, 0.09537770951135394, 0.8204393830764495, 0.2493836920976743, 0.10367142046182065, 0.11516383353466464, 0.07169627826225977, 0.5400384130096556, 0.2709141565803237, 0.16809050322974173, 0.3421981324687273, 0.812724325423183, 0.1326589750154965, 0.054670132935181304, 0.055346153509382656, 0.8039442695404772, 0.3276168958360183, 0.6561718697940482, 0.6214102617950452, 0.3046829516703813, 0.7853649284745584, 0.7303620793003476, 0.6719087507962026, 0.16000678121984613, 0.579612101366232, 0.6347749924714103, 0.41894393066564606, 0.06936532322770372, 0.28322834609079706, 0.343263893078516, 0.4450860003239352, 0.3090838478611311, 0.408095736797927, 0.11529682880263803, 0.13359771811640497, 0.2417229185475579, 0.10092265889692065, 0.8181934133883563, 0.3777834313813965, 0.8273808576462511, 0.18439353202429143, 0.5148786056082297, 0.11287077888712382, 0.16015059460472458, 0.29672938182784603, 0.36944561074938853, 0.2505850522824452, 0.8467591712977676, 0.3840267097226593, 0.261779448872241, 0.1645479955558209, 0.14631295673285594, 0.4248523287309329, 0.09222807982804315, 0.2121484308544801, 0.33273366741371935, 0.5470626312455473, 0.8294144697045585, 0.25206662215500397, 0.15998368749433245, 0.548322128117227, 0.3917329141436472, 0.15981565308588508, 0.23631147082452741, 0.21082920466209698, 0.1871387197916503, 0.24774693401855818, 0.1913242313933492, 0.16437448769677154, 0.07582203648947516, 0.032541140295091364, 0.06311143057978008, 0.5009235508757715, 0.12343879567504301, 0.445735807756371, 0.40322837553658053, 0.09397553936597514, 0.1598391281143201, 0.26702494168661406, 0.19782301216908982, 0.06831823449824892, 0.5451167746582685, 0.20142160156100697, 0.25747632252511843, 0.4257317671215596, 0.5062318064185062, 0.10278357133077332, 0.10857266292312517, 0.06223864817381186, 0.11377411494697365, 0.14082424186384768, 0.2589321903149734, 0.31776639873426016, 0.07983414941561229, 0.30174211068680845, 0.42532907678292176, 0.23734670470511587, 0.2862296469110084, 0.24790288035387664, 0.5526146374040077, 0.20425399436950087, 0.5166825128498294, 0.12415322942140417, 0.5310696157212036, 0.3866387435262121, 0.14313186082947948, 0.31648660326859934, 0.026792916001305622, 0.7856428374245099, 0.42383310375799566, 0.5944566396871084, 0.6256605001243821, 0.08813642250468567, 0.03544811528140901, 0.06935406654889886, 0.15751976448865512, 0.22608551288474832, 0.3127311228465576, 0.1409438166611655, 0.3285615524533705, 0.3591330499592894, 0.47964497307801546, 0.7143146030302826, 0.14223944449319303, 0.06929054967731618, 0.32120711190509066, 0.16913647442041335, 0.707286257884667, 0.3230684446475647, 0.7616845263358343, 0.4104900542879092, 0.10053249234255524, 0.1106599594415556, 0.1543174595222413, 0.46003879185641183, 0.3811350878514418, 0.07185070571861518, 0.23882593985771994, 0.5344976262521839, 0.11031385635331636, 0.09610989844306939, 0.4955559099445003, 0.07845190603324759, 0.30697262074812925, 0.12767551958037127, 0.4375661224395835, 0.07737023387634634, 0.15307682457740834, 0.05694427046787409, 0.09028836937410878, 0.4011292297732457, 0.6186146927451245, 0.11561676905211238, 0.0993047499370594, 0.08102401279833105, 0.8100206966555492, 0.10768932514586738, 0.15386113005635593, 0.4026560765644126, 0.045535707525545144, 0.08229583319403, 0.08227601457953415, 0.8241544781987433, 0.0759900855540333, 0.5147505197509459, 0.11103147778198663, 0.42144961755966015, 0.24880465403270857, 0.3112403223054312, 0.3282460941643247, 0.28312386083977936, 0.2865521931047814, 0.16537364909659502, 0.4284132019637321, 0.34116073112729894, 0.051142721309942685, 0.10794707492381372, 0.1108646816717751, 0.29201805921023904, 0.07365131996157204, 0.36851051207096197, 0.2556143611338999, 0.07392456180697715, 0.045535707525545144, 0.15025986810093994, 0.4395989822566938, 0.19636656988846957, 0.21018464628148859, 0.15085686628779282, 0.3429118439192298, 0.16104008564300487, 0.2055862423584408, 0.18673310211333727, 0.5528531989583015, 0.20219789553586287, 0.5807830339134155, 0.6112381610839525, 0.07515362639458067, 0.5722084734915175, 0.3654892991508686, 0.1991057466826236, 0.4912569401667811, 0.05850610073101081, 0.3077884117234785, 0.17038242498240874, 0.14066607718466684, 0.10248584652416493, 0.4022873718442217, 0.07205214632436985, 0.35142291824287475, 0.10941760034103376, 0.06679271580157364, 0.05675388891699207, 0.058987921856350156, 0.3660303223369904, 0.28790374422385034, 0.4158290962648631, 0.40710291595796666, 0.09934102670994882, 0.06362846635195196, 0.30921476208988685, 0.23242198019285765, 0.055541210656895434, 0.5297663836663529, 0.10744632778983743, 0.18410212910939194, 0.17721960751489196, 0.1962664672709783, 0.1617648996714035, 0.10584426414108294, 0.5203501665477333, 0.07365131996157204, 0.31578819840495265, 0.35364190165315845, 0.1707951928721818, 0.41655733121321636, 0.15801546378512366, 0.7568436608419439, 0.22368578646300386, 0.0609449253562836, 0.2225096762928218, 0.18587673368692093, 0.05559101133196209, 0.569598540521716, 0.08073228430722412, 0.15724041301590164, 0.12879141548479, 0.4306817897420764, 0.17998791969802397, 0.41280880088413996, 0.5723062335690389, 0.6457404130724687, 0.10420061808672998, 0.12564769853034463, 0.21795029564941848, 0.4720930498870375, 0.11304202998506685, 0.545112257205237, 0.14852188644910969, 0.17217029085021085, 0.336250902618187, 0.48671482860553816, 0.5093433434984792, 0.35847801144896685, 0.3008706318705062, 0.18494609259573758, 0.4199330463236065, 0.04162287990776414, 0.2633909944023186, 0.4252182303976608, 0.4684623303117058, 0.1925553058603695, 0.09610989844306939, 0.09129843496680234, 0.3302708189676917, 0.4199330463236065, 0.11927294568859859, 0.4864154015695107, 0.06472081497616611, 0.6387929002666255, 0.37932906694235924, 0.093713747684541, 0.20627971812824875], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (curr)\", \"type\": \"scatter\", \"x\": [3.36, 3.22, 3.03, 3.07, 2.93, 2.93, 3.23, 3.29, 3.29, 3.03, 3.12, 3.16, 3.14, 3.12, 3.14, 3.27, 3.14, 3.16, 3.32, 2.97, 3.27, 2.96, 3.15, 3.12, 3.15, 3.07, 3.44, 3.18, 3.3, 3.46, 2.98, 3.3, 3.38, 3.2, 3.42, 3.32, 3.25, 3.42, 3.29, 3.26, 3.01, 3.1, 3.0, 3.22, 3.08, 3.28, 3.27, 3.15, 3.14, 2.79, 3.19, 3.17, 2.99, 3.37, 3.39, 3.28, 3.48, 2.92, 3.04, 3.08, 2.92, 3.31, 3.23, 3.48, 3.03, 3.53, 3.03, 3.51, 3.45, 3.37, 3.38, 3.21, 3.47, 3.32, 3.19, 3.18, 3.04, 3.07, 3.14, 3.39, 3.21, 3.15, 3.33, 3.2, 3.05, 2.97, 3.47, 3.22, 3.14, 3.35, 3.23, 3.08, 3.28, 3.18, 3.4, 3.5, 3.14, 3.17, 3.37, 3.24, 3.15, 3.08, 3.27, 3.34, 3.19, 3.35, 3.16, 3.36, 3.15, 3.18, 3.3, 2.94, 3.4, 3.29, 2.8, 3.13, 3.1, 3.17, 3.18, 3.13, 3.37, 3.34, 3.36, 3.39, 3.29, 3.38, 3.26, 2.93, 3.29, 3.08, 3.16, 3.25, 3.18, 2.96, 3.45, 3.16, 3.23, 3.29, 3.13, 2.94, 3.12, 3.05, 2.83, 3.16, 3.46, 3.22, 3.05, 3.34, 3.23, 3.23, 3.19, 3.47, 3.42, 3.17, 3.1, 3.16, 3.21, 3.2, 3.08, 2.99, 3.31, 3.18, 2.97, 3.04, 3.38, 3.13, 3.19, 3.37, 3.22, 3.06, 3.38, 3.23, 3.15, 3.15, 3.27, 3.26, 3.0, 3.07, 3.04, 3.24, 3.2, 3.42, 3.16, 3.21, 3.24, 2.95, 3.1, 3.07, 3.09, 3.23, 3.53, 3.28, 3.1, 3.18, 3.08, 3.33, 3.06, 3.14, 3.35, 3.09, 3.48, 3.25, 3.13, 3.2, 2.95, 3.25, 3.19, 3.2, 3.28, 3.06, 3.17, 3.13, 3.33, 3.0, 3.19, 3.03, 2.89, 3.08, 2.92, 3.19, 3.14, 3.22, 3.38, 3.09, 3.08, 3.38, 3.48, 3.54, 3.24, 3.24, 3.14, 3.12, 3.3, 3.09, 3.19, 3.04, 3.25, 3.45, 3.18, 3.42, 3.56, 3.67, 3.05, 3.4, 3.21, 3.16, 3.54, 3.32, 3.1, 3.19, 3.31, 3.13, 2.85, 3.16, 3.0, 3.26, 3.4, 3.32, 3.01, 3.24, 3.66, 3.37, 3.58, 3.58, 2.89, 3.31, 3.21, 3.3, 3.4, 3.1, 3.15, 3.51, 2.99, 3.16, 3.1, 3.08, 3.06, 3.55, 3.35, 2.98, 3.48, 3.34, 3.11, 3.56, 3.16, 3.32, 2.95, 3.24, 3.15, 3.15, 3.16, 3.33, 3.2, 3.51, 3.26, 3.26, 3.16, 3.1, 3.14, 3.37, 3.34, 3.05, 3.19, 3.02, 3.05, 2.97, 3.17, 3.13, 3.27, 3.12, 3.34, 3.49, 3.14, 3.32, 3.22, 3.03, 3.1, 3.19, 3.77, 3.36, 3.18, 3.34, 3.3, 3.27, 3.44, 3.07, 3.14, 3.13, 3.18, 3.47, 3.39, 3.31, 3.16, 3.44, 3.28, 3.17, 3.24, 3.17, 3.3, 3.24, 3.13, 3.23, 3.34, 3.29, 3.16, 2.99, 3.39, 3.36, 3.3, 3.14, 3.18, 3.19], \"xaxis\": \"x2\", \"y\": [0.18579927887031134, 0.9274202256360236, 0.2569067617886446, 0.17851375722123963, 0.43011516789686843, 0.3951880410340851, 0.35333307802371594, 0.854899199395705, 0.7749695319329993, 0.7150752736216004, 0.5793836726576811, 0.17187478758168062, 0.503776006633781, 0.6517104478925241, 0.5321166645488455, 0.4291031613352281, 0.6295132227815239, 0.446367751604861, 0.12978626497489776, 0.578130474122496, 0.1303225049324246, 0.4589423036505589, 0.6028673022099313, 0.6724998803801079, 0.055171077290688375, 0.28900585249094113, 0.5807441942986169, 0.6324527530146118, 0.32780881811994433, 0.4437792729685527, 0.47375733914823626, 0.6755390392614542, 0.8494338455743565, 0.8432302027568838, 0.3962269303969661, 0.36574887203466033, 0.9780529644634413, 0.6757083557066426, 0.43212531492562845, 0.6428319532862445, 0.2244465690609686, 0.6759712108962084, 0.300575337785698, 0.4848467547623382, 0.24353241802821812, 0.6165640897352094, 0.801889943514816, 0.6831580296641933, 0.4684052737322374, 0.07309555507266852, 0.17397747102053363, 0.548208100621717, 0.16948307959681597, 0.5287139706981401, 0.8097217619362252, 0.48186532860504816, 0.7044722268129955, 0.5458559966555334, 0.6067015953642416, 0.5767206748937392, 0.5416109283549078, 0.7766135747357961, 0.6371580804073698, 0.3290646799011723, 0.53941953634433, 0.7444876216695655, 0.27658524567301757, 0.8518717737266248, 0.685064206005921, 0.7994946846943811, 0.6254668451144636, 0.29898447003196504, 0.36566585814722175, 0.8260679099411251, 0.265003746926769, 0.18277705216857454, 0.6401445853260315, 0.2878944788643705, 0.7379395090268356, 0.6578861964269485, 0.3048731186933995, 0.6479177870210828, 0.5479007895539181, 0.8109237991420157, 0.4555798348891207, 0.35159410271621183, 0.6741813074403022, 0.40366163192193316, 0.3797333752177462, 0.42326140605337403, 0.49450075158901585, 0.7027754368270075, 0.31556666432085356, 0.5737052492708005, 0.5594846166878963, 0.9879213229528466, 0.23907110553933086, 0.7604887601700165, 0.906894853259191, 0.49150798334893764, 0.6693239074263375, 0.635181004157038, 0.4291031613352281, 0.6805197940362542, 0.8579270215873258, 0.42231028799440284, 0.7973836574204367, 0.6209099995125147, 0.617932351579841, 0.5867531689564582, 0.8217385626893267, 0.5766058512754557, 0.6085190813519714, 0.6488649586424557, 0.19466062481522506, 0.4062994677131635, 0.31500574198466447, 0.6106996692323751, 0.48314991346809855, 0.4300926711133176, 0.4623912750166579, 0.18141675383529432, 0.7404949196358439, 0.7960551628311661, 0.6696955469146251, 0.7471897031921468, 0.15222801432328747, 0.4782875749995391, 0.6696955469146251, 0.4617114467660769, 0.0374236133971757, 0.34638250956587036, 0.5737052492708005, 0.35412183815676124, 0.5342599897609015, 0.6273126624389191, 0.1819914526651868, 0.6450640502472667, 0.7576359910572065, 0.6363669366758954, 0.35783776888428775, 0.4555798348891207, 0.2603691587203709, 0.09638465351539516, 0.7889843001267657, 0.3995975535535492, 0.2404138117262561, 0.5134503976671381, 0.7620160241108803, 0.4852174766770502, 0.7934067722809752, 0.5657371707019572, 0.40591517497640706, 0.5142806824729376, 0.4667389755277017, 0.4597803030361328, 0.14211531046105408, 0.4709774325404933, 0.39253304933110444, 0.8152160844894966, 0.6418608562675732, 0.5695619245525361, 0.15898796250578873, 0.4189913516486339, 0.8097376625536354, 0.2776505479619531, 0.14100712613869515, 0.1625374057836978, 0.21879614767173305, 0.26016804821119, 0.5884346274074399, 0.25171266030158634, 0.5556828679884147, 0.2886326125606653, 0.5013044750460076, 0.23728971353361283, 0.6280660923097139, 0.6281218947904323, 0.6226708394296439, 0.1280348372312241, 0.37812375401711507, 0.6218606462016874, 0.446367751604861, 0.5237591509200082, 0.22560064672115399, 0.4159575064805634, 0.43989745285902637, 0.38133093816728936, 0.379388299643832, 0.4244201113870294, 0.8495234946343055, 0.44699506619782237, 0.3402560380560977, 0.16997778820688525, 0.6509841470756508, 0.5589353890471914, 0.49320900326902484, 0.41485179365651337, 0.2850172536812061, 0.5150740024049856, 0.7905789411902706, 0.6660097546858721, 0.5916856454756931, 0.25029771644034415, 0.21820707607863943, 0.23625780462752244, 0.6174344585079109, 0.33885175059010386, 0.8097775874289167, 0.5502791542248897, 0.45232673966787307, 0.5168725346003686, 0.4922951659433321, 0.2710495410551712, 0.5620189509382074, 0.19827785442852286, 0.35653263682836045, 0.4940220265254579, 0.3934632807735441, 0.349631294967786, 0.6543252873397565, 0.6043841099981286, 0.6572212454398962, 0.5323595728841377, 0.4667716613599331, 0.5480891857555714, 0.5933716837007499, 0.5769442381274095, 0.7796710482718338, 0.4721284230669528, 0.5632051337005155, 0.25606657060722404, 0.47304849589761655, 0.4991199345133047, 0.785831825438318, 0.5512091114854263, 0.31651464458218903, 0.192246895102814, 0.5737052492708005, 0.14970485751781393, 0.8257882443178004, 0.7450862811651306, 0.2404138117262561, 0.3428275867057816, 0.2186811050870735, 0.43730933466596944, 0.1325711740116582, 0.33994853494016564, 0.5172250338280965, 0.4543852880840521, 0.6017244994332274, 0.7267617626256621, 0.304103470637073, 0.49511795227452726, 0.4577650902534979, 0.4389063253281036, 0.3428275867057816, 0.6911248892501751, 0.5457123873353599, 0.3395528272139201, 0.5662837862370104, 0.38281068028313525, 0.1899488449656659, 0.1899488449656659, 0.39416742153886597, 0.4473524415330049, 0.5724944828663213, 0.12652799787397961, 0.14917046216496987, 0.4192276293132746, 0.1727250451072272, 0.7329347521090118, 0.2979855805324535, 0.5384433083808008, 0.2944152049751758, 0.5661013076544325, 0.39283078357423706, 0.6503174362647687, 0.7632350838020857, 0.29422440231251745, 0.8446099855685041, 0.3812461384129847, 0.1264117171095669, 0.6995051325026098, 0.7680829457938805, 0.1086082602083136, 0.50228427853815, 0.8303888649041977, 0.15145052047802054, 0.5239967242043768, 0.49461569007297057, 0.7323984730128237, 0.6372335578763709, 0.8485373319296128, 0.21018203617182263, 0.3854703692354019, 0.6209619763202376, 0.6996467359659702, 0.3913887983225227, 0.600932061108284, 0.18141675383529432, 0.32841971343371723, 0.17397747102053363, 0.3943097935149382, 0.5998672378660981, 0.6052803835931642, 0.35501406908939237, 0.4362847089434372, 0.6005057903956104, 0.45095984485898877, 0.5601124581139871, 0.6908342266509375, 0.29066967723125237, 0.5437491575180791, 0.5955595524057149, 0.4226516353037165, 0.552222307965348, 0.5038457784615318, 0.6752568781943777, 0.7880730680059006, 0.09430965090665133, 0.4986183600001317, 0.24112389044610405, 0.3635071851353404, 0.7047195247497422, 0.5251048099479148, 0.5632051337005155, 0.4520037684813636, 0.5271857161160298, 0.36566585814722175, 0.8775119234978208, 0.49474741138534273, 0.17187478758168062, 0.1069918390347242, 0.6371627391106971, 0.19018032574493748, 0.34352259564225396, 0.806114950115292, 0.47304849589761655, 0.5014153035286022, 0.6721952796384192, 0.7507248720260316, 0.38512814216859315, 0.8930847268109882, 0.863224561659591, 0.15108072818859253, 0.7399796913917198, 0.18579927887031134, 0.47304849589761655, 0.2033384066370545, 0.43667652058029827, 0.23252054766636898], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [3.03, 3.09, 3.09, 3.17, 3.21, 3.19, 3.19, 3.06, 2.96, 3.38, 3.28, 3.13, 3.16, 3.18, 3.46, 3.14, 3.32, 3.06, 3.41, 3.01, 3.14, 3.1, 3.13, 3.32, 3.14, 3.07, 2.97, 3.3, 3.08, 3.36, 2.96, 3.3, 3.37, 3.23, 2.96, 3.09, 3.21, 2.86, 3.23, 3.46, 2.99, 3.13, 3.14, 3.06, 3.21, 3.46, 3.16, 3.59, 2.93, 3.35, 3.29, 3.29, 3.16, 2.96, 3.32, 3.28, 2.87, 3.68, 3.41, 2.9, 3.41, 3.04, 3.2, 2.99, 3.08, 3.32, 3.4, 3.39, 3.3, 3.29, 3.07, 3.26, 3.27, 3.38, 3.25, 3.16, 3.19, 3.13, 3.29, 3.27, 3.11, 3.11, 3.34, 2.99, 3.08, 3.22, 3.47, 3.06, 3.2, 3.3, 3.26, 3.03, 3.42, 3.0, 3.17, 3.16, 3.07, 3.03, 3.2, 3.56, 3.02, 3.34, 3.4, 2.98, 3.07, 2.93, 3.27, 3.34, 3.36, 3.31, 3.15, 3.15, 3.0, 3.21, 3.27, 3.37, 3.75, 3.22, 3.05, 3.37, 3.41, 3.24, 3.21, 3.26, 3.29, 3.27, 3.43, 3.29, 3.34, 2.91, 3.05, 3.38, 3.14, 3.02, 3.32, 3.01, 3.2, 3.31, 3.27, 3.3, 3.13, 3.61, 3.1, 3.2, 3.16, 3.18, 3.07, 3.38, 2.99, 3.0, 3.19, 3.06, 3.19, 3.06, 3.21, 3.09, 3.26, 3.23, 3.2, 2.98, 3.25, 3.45, 3.04, 3.39, 3.07, 2.95, 3.15, 3.22, 3.34, 3.03, 3.42, 2.94, 3.17, 3.38, 3.38, 3.28, 3.3, 3.03, 3.18, 3.31, 3.38, 3.22, 3.27, 3.3, 3.22, 3.32, 3.41, 3.29, 3.0, 3.41, 2.99, 3.0, 3.27, 3.16, 3.41, 3.19, 2.9, 3.51, 3.07, 3.43, 2.93, 3.45, 3.25, 3.14, 2.96, 3.36, 3.18, 3.17, 3.42, 3.24, 3.24, 3.36, 3.39, 3.25, 3.1, 3.15, 3.2, 3.31, 3.54, 3.13, 3.24, 3.36, 3.42, 3.2, 3.24, 2.96, 3.38, 3.12, 3.33, 3.27, 3.53, 3.26, 3.11, 3.35, 3.22, 3.34, 3.1, 3.27, 2.98, 3.23, 3.3, 3.05, 2.95, 3.81, 3.37, 3.1, 2.94, 3.1, 3.51, 3.19, 3.29, 2.99, 3.28, 3.32, 3.05, 3.2, 3.26, 3.17, 2.97, 3.44, 3.35, 3.29, 3.51, 3.31, 3.23, 3.28, 3.31, 2.91, 3.22, 3.14, 3.2, 3.24, 3.04, 3.18, 3.42, 3.5, 3.45, 3.42, 3.47, 3.52, 3.06, 2.97, 3.28, 3.25, 3.12, 3.23, 3.15, 3.24, 3.34, 3.2, 3.26, 3.19, 3.34, 3.1, 3.03, 3.22, 3.07, 3.33, 3.2, 3.23, 3.03, 3.11, 2.92, 3.38, 3.01, 3.4, 3.36, 3.1, 3.09, 2.88, 3.23, 3.26, 3.56, 3.09, 3.31, 3.76, 3.1, 3.14, 3.14, 3.02, 3.17, 3.19, 3.49, 3.42, 3.32, 3.16, 3.11, 3.28, 3.12, 3.36, 3.35, 2.88, 3.36, 3.11, 2.96, 2.99, 3.29, 3.18, 3.12, 3.33, 3.17, 3.34, 3.52, 3.39, 3.32, 3.11, 3.4, 3.45, 3.42, 3.05, 3.14, 3.22, 3.12, 3.06, 3.08, 3.36, 3.28, 3.17, 3.15, 3.4, 3.03, 3.33, 3.34, 2.94, 3.21, 3.24, 3.22, 3.54, 3.25, 3.1, 3.2, 3.29, 3.21, 3.03, 3.07, 3.35, 3.16, 3.18, 3.3, 3.44, 3.07, 3.13, 3.06, 3.22, 3.19, 3.48, 2.94, 3.33, 3.3, 3.24, 3.24, 3.19, 3.55, 3.18, 3.32, 3.36, 2.97, 3.17, 3.3, 3.3, 3.4, 3.3, 3.2, 2.85, 3.32, 3.42, 3.33, 3.3, 2.96, 3.12, 3.26, 3.49, 3.0, 3.12, 3.12, 3.37, 3.06, 3.17, 3.15, 3.14, 3.31, 3.27, 3.24, 3.4, 2.98, 3.06, 3.15, 3.0, 3.41, 3.16, 3.05, 3.8, 3.09, 3.15, 3.32, 3.43, 3.37, 3.01, 3.34, 3.0, 3.14, 3.57, 3.11, 3.04, 3.06, 2.94, 3.7, 3.18, 3.39, 3.2, 3.14, 3.34, 3.34, 3.16, 2.94, 3.41, 3.2, 3.29, 3.6, 3.28, 3.04, 3.2, 3.3, 3.06, 3.03, 3.52, 3.16, 3.5, 3.25, 3.46, 3.36, 3.05, 3.58, 2.9, 3.15, 3.13, 3.24, 3.23, 3.32, 3.44, 3.19, 3.21, 3.39, 3.41, 3.35, 2.99, 3.07, 3.04, 3.09, 3.42, 3.27, 3.36, 3.31, 3.27, 3.14, 3.3, 3.11, 3.11, 3.29, 3.1, 3.04, 3.06, 3.14, 3.42, 3.32, 3.22, 3.17, 3.34, 3.08, 3.1, 3.34, 3.25, 3.12, 3.06, 3.12, 3.29, 3.38, 3.27, 3.24, 3.52, 3.36, 3.21, 3.59, 3.25, 3.22, 2.99, 3.16, 3.31, 3.21, 3.06, 3.38, 3.16, 3.01, 3.19, 3.15, 3.13, 3.05, 3.0, 3.35, 3.0, 3.38, 3.24, 3.33, 3.38, 3.29, 3.26, 3.23, 3.31, 3.15, 3.14, 3.16, 2.99, 3.42, 3.23, 3.44, 3.23, 3.4, 3.18, 3.46, 3.36, 3.2, 3.04, 2.9, 3.35, 3.26, 3.08, 3.05, 3.12, 3.31, 3.16, 3.72, 3.47, 3.54, 3.29, 2.99, 3.49, 3.47, 3.13, 3.2, 3.19, 3.24, 3.07, 3.03, 3.51, 3.16, 3.22, 3.29, 3.22, 3.11, 3.44, 3.44, 3.3, 3.2, 2.94, 3.22, 3.12, 3.4, 3.3, 3.19, 3.27, 3.15, 3.28, 3.09, 3.04, 3.24, 3.26, 3.15, 3.23, 3.44, 3.34, 3.24, 2.98, 3.19, 3.0, 3.29, 3.1, 3.35, 3.28, 3.0, 3.26, 3.24, 2.98, 3.15, 3.26, 3.27, 3.11, 3.04, 2.93, 3.22, 3.19, 3.38, 3.06, 3.26, 3.25, 3.35, 3.24, 3.19, 3.34, 3.06, 3.13, 3.13, 3.03, 2.97, 3.41, 3.06, 3.11, 3.22, 3.25], \"xaxis\": \"x2\", \"y\": [0.6660328535674787, 0.4955559099445003, 0.11251030999551548, 0.5313240922219649, 0.7616845263358343, 0.42881839881496897, 0.22146723198036844, 0.2709448900825402, 0.04188686298684474, 0.3198999677935893, 0.586632325439729, 0.3332859260788763, 0.0891770245136605, 0.07249138429342028, 0.0813041402249215, 0.2808128557304226, 0.18155424903412543, 0.14020593233116785, 0.20529540916933675, 0.1755850319354616, 0.5722846846512241, 0.4684623303117058, 0.2863708053899042, 0.4489302200945696, 0.3606737334686688, 0.09834172337505831, 0.1439119889738254, 0.10526388551166177, 0.08976738859769384, 0.15927641460572795, 0.07353544332944184, 0.4894096639868448, 0.24735122968283396, 0.41440459167745447, 0.10107859516115147, 0.4809249647595707, 0.043928674649753696, 0.27268427565697984, 0.07203278686513981, 0.35989685204578803, 0.08410225657903847, 0.09640449279894714, 0.2859044620344169, 0.766491644508495, 0.27194216744256416, 0.11891721880979944, 0.6033870782914414, 0.8445823904457724, 0.4148378249676725, 0.09538880480821377, 0.5822786697287807, 0.2006236885231063, 0.30215903380660414, 0.3526626332448971, 0.22921561702294402, 0.3499358724503807, 0.451050436906263, 0.01968005574460141, 0.3849224947932618, 0.608666907839271, 0.30333177217190177, 0.05732515971384944, 0.08299070223644744, 0.155374347961305, 0.4378217303747408, 0.10641916767178827, 0.3207785913922725, 0.3280003244598044, 0.4747408725557203, 0.27229542413121455, 0.5314247042003052, 0.13834506443323813, 0.652508483608137, 0.1775869136191267, 0.4659209431511335, 0.3288332341233703, 0.47224603889779837, 0.2773569186284155, 0.18590272545123854, 0.6719763059805124, 0.04569198037744582, 0.22473444069733528, 0.0776074933333939, 0.1411968215808168, 0.3654892991508686, 0.06069899520469324, 0.21029328672965164, 0.13919371635861133, 0.16321149678759816, 0.6144435769482088, 0.1388055550317996, 0.0827658987104557, 0.0793107693477757, 0.04994940743047871, 0.46220165202879504, 0.08265172102971341, 0.5554564865761329, 0.10902951494304747, 0.26480674198345266, 0.31816712550642645, 0.20184400370343658, 0.23734670470511587, 0.19264674509953905, 0.03558879485690103, 0.5314247042003052, 0.3013473679880785, 0.8043030592862955, 0.07665185966197174, 0.17816243980233548, 0.14637302723887635, 0.43623195291339645, 0.5773286546676725, 0.06996409198491005, 0.0635191394270278, 0.11839391684253864, 0.03368970372860669, 0.16544292122901683, 0.5002106013252752, 0.20783967621931676, 0.4413184352618238, 0.1377753535318076, 0.017128038770129694, 0.09070427960766203, 0.05237321155563324, 0.46044782253877736, 0.09863911308639095, 0.6058955548956951, 0.07377868677997379, 0.33726125667837825, 0.03705661785513226, 0.03856885477325478, 0.01970319875133708, 0.06623921298607705, 0.655672818127978, 0.36403826442427, 0.375635621083512, 0.25822104517587474, 0.26990817233175546, 0.30316845466795117, 0.21597661143113533, 0.10411587283779344, 0.4582573305440075, 0.28974208538397184, 0.3995654588450376, 0.48407929824265805, 0.2412117545349558, 0.49704114689177337, 0.3112403223054312, 0.13571503940671914, 0.35304273602320047, 0.18963603484652192, 0.06023564559469896, 0.305863422303413, 0.34062746964654456, 0.03532029949184434, 0.20200996882548472, 0.207876095289533, 0.11304202998506685, 0.26487496820305634, 0.46674395287949066, 0.05931266843465788, 0.6063731497207538, 0.053339747820140615, 0.16056749669580483, 0.3366557342021428, 0.18735912995827353, 0.2667542380283816, 0.9197592959547904, 0.13322255285490225, 0.3533185668595151, 0.08763312389948397, 0.343329095265401, 0.1298321532292276, 0.11240742021865013, 0.03412749239977686, 0.23316671381479437, 0.13955591125269062, 0.065615492475942, 0.03940539431326806, 0.04874684240881699, 0.42507109047861347, 0.3720756994829524, 0.20627971812824875, 0.23346983492740092, 0.299872058778726, 0.14688925552714138, 0.20529540916933675, 0.11294333341234963, 0.4523771212155355, 0.15895981664313275, 0.12633289347617382, 0.34801013400503944, 0.063056887931354, 0.09222807982804315, 0.19281104432210028, 0.11843845992675284, 0.1064686731970873, 0.12171087020281346, 0.49704114689177337, 0.4202798549667376, 0.058322454167927695, 0.40418598015134155, 0.7514842711311043, 0.067978575311199, 0.1468497162592186, 0.3655805321171328, 0.36741292271676196, 0.08785516413846428, 0.4223454464089015, 0.09472348251934337, 0.14196098925812006, 0.10013555988874479, 0.32154631204965056, 0.05416575683382341, 0.786126361492164, 0.04696516601190348, 0.26926088858349784, 0.28123172687107445, 0.3094364396730669, 0.04307250962973752, 0.07126159086244754, 0.6143015945908075, 0.495586079448059, 0.46102608015166635, 0.40789311683600216, 0.8929715185951024, 0.1227006502272181, 0.3638055988942468, 0.10470002869891348, 0.29304213908849364, 0.8936703981375603, 0.3534407380188983, 0.0883666731866185, 0.07895584641700149, 0.05166417783587085, 0.4199775765299997, 0.10304865631077798, 0.1041340676595982, 0.11031385635331636, 0.22368578646300386, 0.22137255536682798, 0.0725394352715707, 0.08320759746190642, 0.3577905591727162, 0.36362749207413336, 0.13058702032609693, 0.4306817897420764, 0.4684623303117058, 0.3185463047756948, 0.6991046594229053, 0.33105510290791684, 0.35804773811787727, 0.3499358724503807, 0.17780319308126435, 0.07142366539796174, 0.1504846162366139, 0.28643330026545544, 0.11492102279820171, 0.08716328114311156, 0.12905574960179156, 0.5528531989583015, 0.2852168598030531, 0.3185463047756948, 0.41766807389819915, 0.22818770291371737, 0.10749415552266317, 0.07500089027222667, 0.2150933620687273, 0.4879833184669665, 0.21367083697314282, 0.18281788227943807, 0.11217648511765432, 0.01860460444149037, 0.4990100838788346, 0.3212979959143686, 0.7252893191599291, 0.30018855716775616, 0.2808216200321265, 0.24332849241566534, 0.22583693263898685, 0.307128141019565, 0.12930297020615966, 0.07734813107736227, 0.38078614076753503, 0.037937415915298756, 0.18389331462546077, 0.2015421194948802, 0.10121634311933059, 0.7209948827487924, 0.252131738577411, 0.19866278493931944, 0.5569604587758099, 0.19172534874952063, 0.07516041810443141, 0.18673310211333727, 0.20736440356309183, 0.27568985010185776, 0.1748501221961516, 0.134246332983591, 0.12151400729184814, 0.03860330573341564, 0.16198960071610413, 0.062309112953929935, 0.14943540958877521, 0.46827469198568006, 0.12435295831370408, 0.11768791031746062, 0.10794707492381372, 0.04347111427796346, 0.07423675680829, 0.1602542791395647, 0.19911642350143877, 0.2379444352717226, 0.36664322039668684, 0.10130143557253446, 0.17108028607870185, 0.6143194513817134, 0.5641235853966853, 0.29864316680665437, 0.44752301946823647, 0.13459844499503626, 0.037461465199631894, 0.5002964248569376, 0.4059565893810353, 0.7035957096210382, 0.0629603198376949, 0.25036415064992923, 0.14780834332950044, 0.24800647860056513, 0.10438723399855232, 0.24366911510822187, 0.4574644219698093, 0.8347014835967527, 0.42226245660703365, 0.4073158502222598, 0.47525484003715535, 0.37845934883934684, 0.35325777167774697, 0.4763432908647238, 0.18941100564626978, 0.23853527246002126, 0.27277355193056574, 0.5556171757583562, 0.19481513110659687, 0.7460207524242459, 0.12627308236197843, 0.2115813466591615, 0.4773837842994688, 0.22238536240250728, 0.1978655273089749, 0.32057959349203036, 0.1601330373243487, 0.6256605001243821, 0.34062746964654456, 0.5899158924001677, 0.1273375405407705, 0.6866376712310945, 0.3812864953771038, 0.07918534602430627, 0.10510921928053807, 0.052405178286905496, 0.29010285216427345, 0.5802968836962079, 0.4475494904811408, 0.33107045093633036, 0.6046547135519548, 0.33132995382553565, 0.3391582818855403, 0.37109937806185267, 0.18876467901964422, 0.03244681540368277, 0.6531311156123596, 0.18281848038190407, 0.06840545126676123, 0.23876166598551407, 0.5602062902528231, 0.05478334190217349, 0.18965009362393503, 0.502081053312289, 0.0945975060483667, 0.24937367783354814, 0.14040338921272166, 0.09582424632391484, 0.4879833184669665, 0.07536550594022651, 0.37763546052463404, 0.20240400638142053, 0.06234715971662652, 0.1729504208160284, 0.2536573606029918, 0.1491704939138675, 0.47224603889779837, 0.20734784509414073, 0.1656619584420439, 0.20263687678412212, 0.4576701693643329, 0.3746187330143109, 0.06578487521364562, 0.09359041291034786, 0.15714155813810793, 0.43198081216185935, 0.17693664965610134, 0.14200602748771296, 0.16878839641400256, 0.11131318694256087, 0.43040972974554736, 0.12494266711040569, 0.5286591337585229, 0.3917329141436472, 0.14284790216410748, 0.29931895876037384, 0.3998656181534954, 0.13198036366642862, 0.2166851793268345, 0.164669749255824, 0.3116999397838065, 0.5702002297218003, 0.2867818412254799, 0.05809024612643199, 0.0701620515557333, 0.10493669218879953, 0.03474255021640338, 0.14069518845012563, 0.7697788668098057, 0.44513161239284327, 0.12104291767226882, 0.2823656727566666, 0.28640273091276736, 0.09904459769556595, 0.10889384421684001, 0.1978655273089749, 0.6326587477498924, 0.0766186874204361, 0.07300117689776386, 0.3978521493117628, 0.7293533971641823, 0.24040337450518035, 0.46827469198568006, 0.03737110954461231, 0.48112847828662497, 0.5755848065786346, 0.12151472907643468, 0.332302417201758, 0.3208349144509022, 0.13406270144296106, 0.47820199098358873, 0.024219732643774528, 0.7923035912680444, 0.3099424932714111, 0.8494816644677875, 0.15230116664989468, 0.8795672599938588, 0.34536882843285344, 0.587897812361327, 0.3660303223369904, 0.3074082248441362, 0.1925553058603695, 0.1582957933341015, 0.5297945963993664, 0.1892543681582496, 0.06574637766643598, 0.03286461121245521, 0.6223124217546917, 0.48666930315350876, 0.17200815643270417, 0.27042696199957883, 0.16010429726024444, 0.25291734909108765, 0.22778758435893687, 0.6055190518965303, 0.41989528411161425, 0.2865861541738164, 0.17344095530188786, 0.4163761941495938, 0.24610426408478792, 0.029106329843254564, 0.5849270471051293, 0.09607886499379148, 0.4890296174547498, 0.11193395874659995, 0.3667485749721523, 0.29672938182784603, 0.13696827462710404, 0.03986507081677082, 0.41542023534722683, 0.1642424989032959, 0.041559354155004224, 0.1266666793707928, 0.5259198205822933, 0.42123490919744344, 0.6147437654518444, 0.42849246998341506, 0.04874684240881699, 0.16870816563337898, 0.35179373534084035, 0.4552463954734379, 0.1543174595222413, 0.4641274821418986, 0.1106599594415556, 0.40441066041397966, 0.05916303638108533, 0.24194101851814365, 0.5755848065786346, 0.23631147082452741, 0.04679471849088612, 0.33132995382553565, 0.6031606095022326, 0.16900214819844117, 0.9322526967181247, 0.1065938389205352, 0.0540586741766943, 0.14920224829950646, 0.03054451782098533, 0.13595064656866984, 0.15908339514281045, 0.09402391562754642, 0.27219479721363327, 0.10477531970828624, 0.6046547135519548, 0.04412971358840656, 0.0821245873848182, 0.24953715645213048, 0.24311299470472425, 0.679537413518331, 0.02875041056121841, 0.2874129658970298, 0.17131102264191878, 0.07042427222914205, 0.1577516063520068, 0.39934634677258996, 0.42249259173992826, 0.24940231538328683, 0.46827469198568006, 0.040988937643475554, 0.034828704291737345, 0.26663563965858417, 0.22421743312747255, 0.10716094829621758, 0.7421831263598226, 0.4644511163280224, 0.1591307416719686, 0.21502194578256428, 0.12883185373794437, 0.15520095945599266, 0.04280666734842442, 0.06928764484923078, 0.3578757504587543, 0.0760792945579073, 0.06637805380770656, 0.5755848065786346, 0.4326356954473739, 0.16985579355455038, 0.47152805642545803, 0.11644579282256762, 0.11790522998710073, 0.5438286352264949, 0.41561805514360906, 0.050606352251634235, 0.21836830194439782, 0.22298545275517268, 0.1504846162366139, 0.16819644397314482, 0.47796113776613436, 0.14100197907825862, 0.7878397890034206, 0.12176963827920351, 0.09814942480303201, 0.23162396036129984, 0.04400104962869911, 0.061588508633294015, 0.2774601068082493, 0.40816383821078206, 0.14036214651023216, 0.11837607594274324, 0.0703155477214753, 0.17002415827487982, 0.24611532014486182, 0.06874641727313702, 0.30975746960573625, 0.07004288447243323, 0.6453829176356538, 0.3880412370469972, 0.10205495289732236, 0.12171087020281346, 0.38550692709735157, 0.4398162761337091, 0.5769741243450848, 0.48842976274850136, 0.3866799681687785, 0.17129518728202664, 0.5711206597512044, 0.4456070955069118, 0.4585850027539752, 0.25462747480751524, 0.34771016550763867, 0.35548618548401445, 0.07878090041588082, 0.3008706318705062, 0.08117751180329491, 0.055511805197920094, 0.1600174453683395, 0.35597309965685686, 0.5473978930443646, 0.3321771897262046, 0.14643302530661162, 0.7653011157176768, 0.24188431843396252, 0.16704799028757666, 0.41136103198090634, 0.5749869949413896, 0.709238838470871, 0.09340318303147321, 0.602429869503323, 0.04154705947390969, 0.7519582179986716, 0.15993940416551844, 0.04372375151311325, 0.4076899811241429, 0.4644511163280224, 0.3133137248525114, 0.24628490675063597, 0.06972977174174444, 0.15949948541388637, 0.2241543425141257, 0.1729876202034616, 0.07290025122558275, 0.1220000714032804, 0.36493953208423235, 0.09420126302076737, 0.026726938234992392, 0.7199273032686843, 0.4606762448039463, 0.04906818437448113, 0.19446415942665518, 0.14876853598344464, 0.3247816953453747, 0.023320858692869595, 0.7310618090422621, 0.48944479260603346, 0.20357574295749958, 0.0840537250624015, 0.5368744051465595, 0.21101467800102214, 0.46682279298460017, 0.3749869638443927, 0.46592999202179275, 0.10188412989688433, 0.15751976448865512], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"pH\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"pH\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}, \"All_sulphates\": {\"data\": [{\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Reference<br>sulphates=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [0.42, 0.54, 0.53, 0.49, 0.54, 0.54, 0.53, 0.5, 0.38, 0.38, 0.34, 0.54, 0.37, 0.44, 0.67, 0.45, 0.37, 0.68, 0.48, 0.34, 0.56, 0.59, 0.42, 0.4, 0.32, 0.54, 0.4, 0.35, 0.4, 0.39, 0.42, 0.65, 0.39, 0.9, 0.63, 0.48, 0.55, 0.41, 0.53, 0.75, 0.38, 0.44, 0.71, 0.41, 0.49, 0.4, 0.47, 0.45, 1.13, 0.37, 0.37, 0.58, 0.41, 0.47, 0.54, 0.38, 0.48, 0.32, 0.29, 0.58, 0.57, 0.48, 0.41, 0.51, 0.68, 0.59, 0.39, 0.35, 0.46, 0.22, 0.64, 0.26, 0.4, 0.51, 0.69, 0.46, 0.86, 0.33, 0.75, 0.32, 0.72, 0.36, 0.51, 0.46, 0.41, 0.72, 0.48, 0.91, 0.48, 0.67, 0.51, 0.58, 0.67, 0.52, 0.44, 0.4, 0.38, 0.42, 0.48, 0.62, 0.4, 0.46, 0.69, 0.64, 0.36, 0.5, 0.45, 0.42, 0.76, 0.56, 0.45, 0.38, 0.54, 0.76, 0.44, 0.53, 0.54, 0.5, 0.59, 0.85, 0.52, 0.61, 0.41, 0.53, 0.46, 0.54, 0.56, 0.53, 0.56, 0.96, 0.39, 0.83, 0.41, 0.85, 0.5, 0.34, 0.64, 0.6, 0.47, 0.74, 0.44, 0.46, 0.52, 0.59, 0.67, 0.62, 0.78, 0.36, 0.6, 0.35, 0.39, 0.68, 0.54, 0.43, 0.54, 0.53, 0.41, 0.41, 0.41, 0.43, 0.48, 0.58, 0.5, 0.96, 0.69, 0.5, 0.49, 0.33, 0.41, 0.33, 0.79, 0.59, 0.51, 0.39, 0.57, 0.38, 0.56, 0.54, 0.43, 0.69, 0.57, 0.48, 0.8, 0.43, 0.47, 0.5, 0.39, 0.64, 0.52, 0.51, 0.48, 0.63, 0.51, 0.46, 0.53, 0.38, 0.46, 0.55, 0.47, 0.5, 0.49, 0.71, 0.58, 0.89, 0.63, 0.81, 0.94, 0.41, 0.41, 0.46, 0.38, 0.54, 0.48, 0.46, 0.39, 0.6, 0.43, 0.48, 0.38, 0.63, 0.54, 0.39, 0.46, 0.6, 0.72, 0.49, 0.53, 0.78, 0.55, 0.44, 0.54, 0.41, 0.6, 0.56, 0.58, 0.48, 0.69, 0.57, 0.43, 0.4, 0.46, 0.48, 0.43, 0.54, 0.59, 0.39, 0.5, 0.49, 0.44, 0.42, 0.69, 0.49, 0.76, 0.83, 0.65, 0.4, 0.34, 0.45, 0.44, 0.57, 0.37, 0.42, 0.5, 0.76, 0.62, 0.41, 0.43, 0.57, 0.83, 0.48, 0.54, 0.49, 0.47, 0.57, 0.49, 0.46, 0.45, 0.85, 0.63, 0.46, 0.37, 0.37, 0.52, 0.58, 0.49, 0.73, 0.62, 0.46, 0.66, 0.35, 0.58, 0.59, 0.62, 0.43, 0.59, 0.4, 0.7, 0.42, 0.68, 0.58, 0.66, 0.58, 0.61, 0.42, 0.42, 0.85, 0.37, 0.64, 0.47, 0.56, 0.59, 0.42, 0.67, 0.79, 0.42, 0.67, 0.58, 0.42, 0.63, 0.46, 0.56, 0.64, 0.66, 0.79, 0.5, 0.67, 0.36, 0.69, 0.58, 0.49, 0.37, 0.44, 0.82, 0.61, 0.54, 0.52, 0.54, 0.78, 0.64, 0.53, 0.51, 0.33, 0.64, 0.72, 0.68, 0.41, 0.54, 0.55, 0.38, 0.46, 0.4, 0.66, 0.45, 0.51, 0.5, 0.5, 0.72, 0.37, 0.97, 0.38, 0.63, 0.43, 1.36, 0.84, 0.58, 0.49, 0.54, 0.38, 0.86, 0.52, 0.42, 0.53, 0.53, 0.34, 0.62, 0.34, 0.5, 0.6, 0.44, 0.62, 0.69, 0.46, 0.62, 0.55, 0.4, 0.54, 0.77, 0.77, 0.6, 0.45, 0.47, 0.45, 0.45, 0.41, 0.54, 0.66, 0.49, 0.42, 0.31, 0.54, 0.57, 0.58, 0.65, 0.67, 0.37, 0.53, 0.38, 0.53, 0.67, 0.37, 0.61, 0.49, 0.69, 0.44, 0.33, 0.48, 0.46, 0.59, 0.51, 0.4, 0.55, 0.49, 0.39, 0.39, 0.4, 0.4, 0.32, 0.42, 0.46, 0.47, 0.38, 0.63, 0.58, 0.44, 0.44, 0.34, 0.68, 0.66, 0.79, 1.02, 0.35, 0.41, 0.61, 0.36, 0.59, 0.46, 0.59, 0.56, 0.9, 0.42, 0.38, 0.42, 0.4, 0.51, 0.57, 0.6, 0.35, 0.61, 0.5, 0.38, 0.66, 0.59, 0.91, 0.5, 0.35, 0.68, 0.42, 0.48, 0.5, 0.9, 0.54, 0.6, 0.44, 0.47, 0.67, 0.25, 0.68, 0.54, 0.52, 0.46, 0.57, 0.61, 0.46, 0.64, 0.45, 0.38, 0.46, 0.54, 0.39, 0.56, 0.71, 0.58, 0.38, 0.72, 0.52, 0.49, 0.38, 0.5, 0.53, 0.6, 0.54, 0.31, 0.46, 0.44, 0.37, 0.52, 0.43, 0.45, 0.36, 0.44, 0.46, 0.47, 0.59, 0.46, 0.5, 0.39, 0.62, 0.54, 0.59, 0.57, 0.45, 0.43, 0.34, 0.51, 0.58, 0.36, 0.73, 0.72, 0.42, 0.38, 0.77, 0.6, 0.44, 0.54, 0.42, 0.67, 0.53, 0.96, 0.54, 0.64, 0.55, 0.39, 0.6, 0.48, 0.44, 0.43, 0.65, 0.36, 0.51, 0.59, 0.67, 0.43, 0.64, 0.84, 0.49, 0.62, 0.4, 0.56, 0.61, 0.54, 0.54, 0.49, 0.51, 0.53, 0.73, 0.33, 0.37, 0.59, 0.4, 0.55, 0.47, 0.53, 1.06, 0.49, 0.65, 0.4, 0.43, 0.47, 0.59, 0.45, 0.43, 0.6, 0.42, 0.93, 0.38, 0.53, 0.53, 0.52, 0.61, 0.62, 1.95, 0.35, 0.48, 0.39, 0.57, 0.68, 0.49, 0.92, 0.49, 0.58, 0.47, 0.9, 0.5, 0.53, 0.92, 0.5, 0.74, 0.41, 0.49, 0.41, 0.34, 0.69, 0.55, 0.77, 0.38, 0.72, 0.59, 0.4, 0.73, 1.36, 0.77, 0.58, 0.66, 0.6, 0.58, 0.5, 0.79, 0.36, 0.5, 0.62, 0.44, 0.56, 0.5, 0.56, 0.46, 0.53, 0.78, 0.5, 0.65, 0.58, 0.53, 0.98, 0.44, 0.46, 0.95], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Current<br>sulphates=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [0.38, 0.44, 0.87, 0.39, 0.58, 0.33, 0.7, 0.38, 0.61, 0.59, 0.56, 0.52, 0.37, 0.53, 0.36, 0.41, 0.58, 0.44, 0.87, 0.33, 0.46, 0.5, 0.38, 0.58, 0.6, 0.33, 0.3, 0.54, 0.6, 0.49, 0.35, 0.49, 0.82, 0.41, 0.34, 0.31, 0.76, 0.49, 0.53, 0.53, 0.32, 0.5, 0.38, 0.41, 0.8, 0.74, 0.38, 0.57, 0.49, 0.72, 0.61, 0.67, 0.36, 0.25, 0.49, 0.75, 0.68, 0.79, 0.44, 1.33, 0.68, 0.38, 0.47, 0.36, 0.36, 0.42, 0.58, 0.62, 0.5, 0.8, 0.53, 0.39, 0.29, 0.51, 0.37, 0.42, 0.44, 0.45, 0.47, 0.61, 0.46, 0.52, 0.85, 0.68, 0.49, 0.78, 0.73, 0.3, 0.27, 0.49, 0.35, 0.33, 0.5, 0.4, 0.48, 0.58, 0.65, 0.43, 0.72, 0.77, 0.34, 0.5, 0.84, 0.43, 0.53, 0.62, 0.54, 0.35, 0.59, 0.63, 0.5, 0.38, 0.37, 0.51, 0.5, 0.93, 0.76, 0.56, 0.65, 0.71, 0.64, 0.99, 0.56, 0.42, 0.75, 0.74, 0.74, 0.62, 0.75, 0.57, 0.36, 0.88, 0.44, 0.56, 0.44, 0.51, 0.67, 0.7, 0.57, 0.5, 0.62, 0.49, 0.61, 0.48, 0.41, 0.6, 0.58, 0.77, 0.39, 0.47, 0.38, 0.68, 0.44, 0.36, 0.68, 0.53, 0.82, 0.73, 0.45, 0.48, 0.4, 0.78, 0.26, 0.49, 0.82, 0.36, 0.45, 0.55, 0.86, 0.39, 0.57, 0.32, 0.39, 0.66, 0.45, 0.49, 0.43, 0.42, 0.47, 0.77, 0.44, 0.41, 0.95, 0.76, 0.43, 0.82, 0.87, 0.37, 0.45, 0.75, 0.39, 0.43, 0.59, 0.48, 0.46, 0.58, 0.57, 0.38, 0.58, 0.64, 0.59, 0.56, 0.57, 0.4, 0.56, 0.63, 0.53, 0.85, 0.51, 0.78, 0.41, 0.33, 0.6, 0.6, 0.56, 0.65, 0.47, 0.44, 0.5, 0.49, 0.4, 0.55, 0.6, 0.53, 0.66, 0.58, 0.68, 0.48, 0.77, 0.48, 0.72, 0.44, 0.66, 0.47, 0.66, 0.82, 0.4, 0.54, 0.31, 0.47, 0.53, 0.46, 0.39, 0.57, 0.64, 0.87, 0.41, 0.5, 0.47, 0.7, 0.76, 0.3, 0.75, 0.41, 0.55, 0.35, 0.45, 0.58, 0.48, 0.73, 0.62, 0.57, 0.47, 0.35, 0.39, 0.48, 0.51, 0.43, 0.48, 0.43, 0.37, 0.43, 0.58, 0.65, 0.4, 0.7, 0.57, 0.44, 0.56, 0.76, 1.06, 0.51, 0.51, 0.49, 0.64, 0.63, 0.36, 0.52, 0.57, 0.43, 1.11, 0.63, 0.42, 0.47, 0.49, 0.46, 0.45, 0.42, 0.33, 0.44, 0.33, 0.75, 0.59, 0.38, 0.48, 0.85, 0.56, 0.54, 0.75, 0.47, 0.38, 0.6, 0.63, 0.5, 0.52, 0.63, 0.51, 0.5, 0.51, 0.48, 0.64, 0.44, 0.59, 0.36, 0.64, 0.39, 0.4, 0.77, 0.48, 0.73, 0.81, 0.36, 0.86, 0.53, 0.43, 0.38, 0.75, 0.41, 0.43, 0.46, 0.39, 0.52, 0.58, 0.84, 0.54, 0.45, 0.42, 0.5, 0.9, 0.34, 0.35, 0.52, 0.47, 0.36, 0.4, 0.82, 0.6, 0.38, 0.82, 0.72, 0.32, 0.59, 0.75, 0.35, 0.75, 0.43, 0.46, 0.5, 0.57, 0.69, 0.46, 0.53, 0.54, 0.54, 0.56, 0.49, 0.48, 0.37, 0.65, 0.46, 0.5, 0.55, 0.55, 0.48, 0.43, 0.62, 0.46, 0.44, 0.65, 0.44, 0.58, 0.44, 0.49, 0.64, 0.42, 0.62, 0.47, 0.53, 0.59, 0.45, 0.41, 0.31, 0.64, 0.5, 0.41, 0.42, 0.46, 0.36, 0.39, 0.36, 0.7, 0.49, 0.68, 0.46, 0.5, 0.7, 0.36, 0.65, 0.6, 0.49, 0.56, 0.98, 0.77, 0.6, 0.7, 0.59, 0.6, 0.33, 0.61, 0.4, 0.34, 0.41, 0.53, 0.51, 0.71, 0.65, 0.74, 0.48, 0.7, 0.52, 0.49, 0.84, 0.32, 0.54, 0.33, 0.66, 0.75, 0.4, 0.78, 0.47, 0.37, 0.54, 0.72, 0.54, 0.43, 0.53, 0.56, 0.55, 0.43, 0.49, 0.59, 0.5, 0.42, 0.41, 0.38, 0.65, 0.27, 0.54, 0.4, 0.57, 0.45, 0.3, 0.67, 0.43, 0.41, 0.55, 0.43, 0.6, 0.35, 0.42, 0.65, 0.38, 0.77, 0.76, 0.52, 0.32, 0.32, 0.37, 0.43, 0.68, 0.57, 0.41, 0.77, 0.81, 0.36, 0.75, 0.49, 0.92, 0.52, 0.76, 0.64, 0.5, 0.49, 0.4, 0.5, 0.46, 0.44, 0.59, 0.57, 0.5, 0.82, 0.4, 0.4, 0.45, 0.32, 0.62, 0.64, 0.82, 0.43, 0.8, 0.3, 0.9, 0.38, 0.51, 0.95, 0.59, 0.72, 0.62, 0.36, 0.45, 0.6, 0.37, 0.48, 0.31, 0.81, 0.45, 0.74, 0.37, 0.6, 0.6, 0.55, 0.56, 0.87, 0.51, 0.33, 0.38, 0.72, 0.79, 0.46, 0.49, 0.66, 0.44, 0.52, 0.58, 0.55, 0.37, 0.53, 0.41, 0.42, 0.39, 0.35, 0.65, 0.44, 0.6, 0.51, 0.74, 0.37, 0.39, 0.38, 0.42, 0.69, 0.58, 0.59, 0.5, 0.39, 0.68, 0.48, 0.32, 0.42, 0.56, 0.43, 0.52, 0.34, 0.38, 0.53, 0.64, 0.6, 0.59, 0.38, 0.65, 0.63, 0.5, 0.54, 0.63, 0.58, 0.75, 0.73, 0.79, 0.46, 0.31, 0.52, 0.44, 0.45, 0.39, 0.68, 0.58, 0.75, 0.57, 0.51, 0.68, 0.36, 0.56, 0.43, 0.52, 0.56, 0.44, 0.37, 0.57, 0.6, 0.47, 0.46, 0.37, 0.45, 0.36, 0.55, 0.48, 0.39, 0.35, 0.63, 0.71, 0.59, 0.8, 0.37, 0.46, 0.47, 0.54, 0.33, 0.64, 0.52, 0.51, 0.52, 0.52, 0.66, 0.55, 0.53, 0.52, 0.59, 0.54], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Reference<br>sulphates=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [0.42, 0.41, 0.41, 0.58, 0.51, 0.54, 0.57, 0.67, 0.5, 0.49, 1.17, 0.63, 0.4, 0.42, 0.43, 0.43, 0.6, 0.48, 0.5, 0.49, 0.45, 0.36, 0.6, 0.47, 0.81, 0.65, 0.5, 0.62, 0.5, 0.43, 0.56, 0.55, 0.55, 0.78, 0.44, 0.46, 0.36, 0.35, 0.63, 0.42, 0.48, 0.68, 0.46, 0.43, 0.5, 0.5, 0.47, 0.52, 0.64, 0.62, 0.57, 0.5, 0.38, 0.44, 0.6, 0.51, 0.43, 0.57, 0.52, 0.88, 0.57, 0.47, 0.52, 0.39, 0.48, 0.45, 0.6, 0.45, 0.64, 0.37, 0.32, 0.58, 0.46, 0.5, 0.38, 0.42, 0.38, 0.7, 0.58, 0.48, 0.5, 0.54, 0.47, 0.43, 0.62, 0.56, 0.44, 0.32, 0.29, 0.39, 0.58, 0.38, 0.66, 0.46, 0.44, 0.48, 0.4, 0.58, 0.48, 0.5, 0.47, 0.65, 0.64, 0.55, 0.53, 1.31, 0.43, 0.34, 0.57, 0.44, 0.62, 0.4, 0.56, 0.44, 0.64, 0.49, 0.5, 0.62, 0.57, 0.38, 0.46, 0.6, 0.51, 0.29, 0.49, 0.5, 0.67, 0.55, 0.59, 0.5, 0.28, 0.64, 0.4, 0.49, 0.49, 0.42, 0.35, 0.54, 0.45, 0.51, 0.53, 0.5, 0.34, 0.5, 0.48, 0.4, 0.66, 0.38, 0.56, 0.7, 0.52, 0.53, 0.42, 0.61, 0.39, 0.5, 0.95, 0.39, 0.39, 0.28, 0.36, 0.6, 0.57, 0.48, 0.39, 0.46, 0.48, 0.54, 0.57, 0.42, 0.51, 0.39, 0.49, 0.8, 0.67, 0.53, 0.47, 0.57, 0.59, 0.39, 0.49, 0.48, 0.5, 0.47, 0.46, 0.36, 0.59, 0.36, 0.52, 0.47, 0.44, 0.56, 0.6, 0.4, 0.54, 0.49, 0.54, 0.53, 0.68, 0.41, 0.71, 0.75, 0.75, 0.57, 0.73, 0.43, 0.39, 0.5, 0.58, 0.31, 0.42, 0.49, 0.44, 0.43, 0.56, 0.47, 0.53, 0.29, 0.48, 0.29, 0.47, 0.39, 0.6, 0.44, 0.38, 0.52, 0.38, 0.66, 0.51, 0.52, 0.43, 0.43, 0.44, 0.51, 0.66, 0.35, 0.53, 0.37, 0.61, 0.63, 0.71, 0.53, 0.52, 0.48, 0.39, 0.57, 0.55, 0.52, 0.39, 0.6, 0.67, 0.47, 0.55, 0.47, 0.51, 0.51, 0.79, 0.32, 0.58, 0.49, 0.41, 0.62, 0.38, 0.4, 0.43, 0.34, 0.6, 0.43, 0.97, 0.54, 0.43, 0.67, 0.55, 0.58, 0.45, 0.58, 0.48, 0.54, 0.38, 0.52, 0.52, 0.66, 0.49, 0.6, 0.35, 0.52, 0.64, 0.39, 0.39, 0.41, 0.62, 0.69, 0.37, 0.48, 0.48, 0.98, 0.52, 0.49, 0.46, 0.59, 0.73, 0.44, 0.53, 0.49, 0.53, 0.38, 0.61, 0.56, 1.05, 0.47, 0.4, 0.48, 0.66, 0.48, 0.99, 0.43, 0.51, 0.61, 0.56, 0.65, 0.63, 0.5, 0.44, 0.59, 0.46, 0.4, 0.84, 0.7, 0.51, 0.46, 0.5, 0.62, 0.51, 0.69, 0.45, 0.57, 0.45, 0.64, 0.4, 0.5, 0.46, 0.5, 0.51, 0.51, 0.51, 0.65, 0.71, 0.48, 0.47, 0.56, 0.35, 0.57, 0.64, 0.63, 0.66], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Current<br>sulphates=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [0.78, 0.48, 0.33, 0.45, 0.47, 0.5, 0.51, 0.54, 0.67, 0.57, 0.49, 0.5, 0.52, 0.37, 0.57, 0.48, 0.38, 0.61, 0.81, 0.28, 0.72, 0.46, 0.49, 0.51, 0.66, 0.38, 0.52, 0.49, 0.4, 0.53, 0.44, 0.54, 0.46, 0.45, 0.51, 0.44, 0.48, 0.58, 0.41, 0.55, 0.38, 0.43, 0.81, 0.45, 0.41, 0.57, 0.61, 0.53, 0.5, 0.52, 0.7, 0.39, 0.34, 0.58, 0.49, 0.67, 0.65, 0.74, 0.35, 0.54, 0.74, 0.64, 0.47, 0.91, 0.47, 0.64, 1.34, 0.56, 0.56, 0.48, 0.69, 0.4, 0.46, 0.47, 0.37, 0.53, 0.52, 0.43, 0.46, 0.61, 0.39, 0.49, 0.42, 0.55, 0.37, 0.48, 0.44, 0.75, 0.42, 0.8, 0.34, 0.38, 0.7, 0.63, 0.73, 0.4, 0.34, 0.93, 0.46, 0.5, 0.43, 0.43, 0.48, 0.52, 0.46, 0.54, 0.7, 0.45, 0.41, 0.64, 0.46, 0.44, 0.75, 0.54, 0.46, 0.48, 0.67, 0.49, 0.48, 0.52, 0.37, 0.46, 0.6, 0.48, 0.54, 0.77, 0.48, 0.55, 0.54, 0.65, 0.4, 0.56, 0.63, 0.33, 0.48, 0.5, 0.7, 0.55, 0.4, 0.51, 0.42, 0.37, 0.31, 0.52, 0.63, 0.49, 0.52, 0.56, 0.54, 0.42, 0.34, 0.59, 0.72, 0.38, 0.52, 0.35, 0.4, 0.51, 0.46, 0.56, 0.57, 0.56, 0.68, 0.48, 0.5, 0.5, 0.38, 0.49, 0.38, 0.46, 0.6, 0.49, 0.38, 0.42, 0.58, 0.35, 0.31, 0.53, 0.45, 0.37, 0.39, 0.44, 0.61, 0.38, 0.52, 0.42, 0.4, 0.53, 0.59, 0.52, 0.57, 0.58, 0.5, 0.65, 0.49, 0.47, 0.46, 0.48, 0.78, 0.44, 0.52, 0.46, 0.45, 0.69, 0.3, 0.76, 0.46, 0.78, 0.33, 0.45, 0.61, 0.52, 0.64, 0.35, 0.47, 0.37, 0.57, 0.4, 0.5, 0.39, 0.46, 0.43, 0.47, 0.46, 0.45, 0.45, 0.64, 0.59, 0.39, 0.4, 0.51, 0.7, 0.37, 0.32, 0.82, 0.47, 0.45, 0.59, 0.63, 0.55, 0.72, 0.8, 0.52, 0.41, 0.5, 0.72, 0.88, 0.45, 0.52, 0.42, 0.64, 0.45, 0.42, 0.44, 0.44, 0.41, 0.41, 0.6, 0.58, 0.71, 0.65, 0.53, 0.68, 0.68, 0.49, 0.45, 0.56, 0.73, 0.44, 0.48, 0.5, 0.72, 0.41, 0.45, 0.53, 0.55, 0.68, 0.6, 0.54, 0.88, 0.53, 0.48, 0.38, 0.43, 0.88, 0.44, 0.39, 0.46, 0.28, 0.58, 0.5, 0.58, 0.52, 0.54, 0.58, 0.65, 0.42, 0.37, 0.51, 0.58, 0.46, 0.61, 0.7, 0.63, 0.5, 0.29, 0.53, 0.35, 0.58, 0.49, 0.58, 0.63, 0.62, 0.39, 0.56, 0.44, 0.46, 0.48, 0.64, 0.38, 0.61, 0.58, 0.5, 0.76, 0.52, 0.4, 0.51, 0.63, 0.48, 0.46, 0.56, 0.45, 0.5, 0.53, 0.55, 0.51, 0.51, 0.39, 0.37, 0.45, 0.45, 0.58, 0.6, 0.48, 0.63, 0.73, 0.49, 0.78, 0.37, 0.76, 0.56, 0.49], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Reference\", \"x\": 0.245, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Current\", \"x\": 0.755, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"barmode\": \"overlay\", \"legend\": {\"title\": {\"text\": \"target\"}, \"tracegroupgap\": 0}, \"margin\": {\"t\": 60}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.49], \"title\": {\"text\": \"sulphates\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.51, 1.0], \"matches\": \"x\", \"title\": {\"text\": \"sulphates\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"count\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}}}, \"sulphates_good\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (ref)\", \"type\": \"scatter\", \"x\": [0.42, 0.54, 0.53, 0.49, 0.54, 0.54, 0.53, 0.5, 0.38, 0.38, 0.34, 0.54, 0.37, 0.44, 0.67, 0.45, 0.37, 0.68, 0.48, 0.34, 0.56, 0.59, 0.42, 0.4, 0.32, 0.54, 0.4, 0.35, 0.4, 0.39, 0.42, 0.65, 0.39, 0.9, 0.63, 0.48, 0.55, 0.41, 0.53, 0.75, 0.38, 0.44, 0.71, 0.41, 0.49, 0.4, 0.47, 0.45, 1.13, 0.37, 0.37, 0.58, 0.41, 0.47, 0.54, 0.38, 0.48, 0.32, 0.29, 0.58, 0.57, 0.48, 0.41, 0.51, 0.68, 0.59, 0.39, 0.35, 0.46, 0.22, 0.64, 0.26, 0.4, 0.51, 0.69, 0.46, 0.86, 0.33, 0.75, 0.32, 0.72, 0.36, 0.51, 0.46, 0.41, 0.72, 0.48, 0.91, 0.48, 0.67, 0.51, 0.58, 0.67, 0.52, 0.44, 0.4, 0.38, 0.42, 0.48, 0.62, 0.4, 0.46, 0.69, 0.64, 0.36, 0.5, 0.45, 0.42, 0.76, 0.56, 0.45, 0.38, 0.54, 0.76, 0.44, 0.53, 0.54, 0.5, 0.59, 0.85, 0.52, 0.61, 0.41, 0.53, 0.46, 0.54, 0.56, 0.53, 0.56, 0.96, 0.39, 0.83, 0.41, 0.85, 0.5, 0.34, 0.64, 0.6, 0.47, 0.74, 0.44, 0.46, 0.52, 0.59, 0.67, 0.62, 0.78, 0.36, 0.6, 0.35, 0.39, 0.68, 0.54, 0.43, 0.54, 0.53, 0.41, 0.41, 0.41, 0.43, 0.48, 0.58, 0.5, 0.96, 0.69, 0.5, 0.49, 0.33, 0.41, 0.33, 0.79, 0.59, 0.51, 0.39, 0.57, 0.38, 0.56, 0.54, 0.43, 0.69, 0.57, 0.48, 0.8, 0.43, 0.47, 0.5, 0.39, 0.64, 0.52, 0.51, 0.48, 0.63, 0.51, 0.46, 0.53, 0.38, 0.46, 0.55, 0.47, 0.5, 0.49, 0.71, 0.58, 0.89, 0.63, 0.81, 0.94, 0.41, 0.41, 0.46, 0.38, 0.54, 0.48, 0.46, 0.39, 0.6, 0.43, 0.48, 0.38, 0.63, 0.54, 0.39, 0.46, 0.6, 0.72, 0.49, 0.53, 0.78, 0.55, 0.44, 0.54, 0.41, 0.6, 0.56, 0.58, 0.48, 0.69, 0.57, 0.43, 0.4, 0.46, 0.48, 0.43, 0.54, 0.59, 0.39, 0.5, 0.49, 0.44, 0.42, 0.69, 0.49, 0.76, 0.83, 0.65, 0.4, 0.34, 0.45, 0.44, 0.57, 0.37, 0.42, 0.5, 0.76, 0.62, 0.41, 0.43, 0.57, 0.83, 0.48, 0.54, 0.49, 0.47, 0.57, 0.49, 0.46, 0.45, 0.85, 0.63, 0.46, 0.37, 0.37, 0.52, 0.58, 0.49, 0.73, 0.62, 0.46, 0.66, 0.35, 0.58, 0.59, 0.62, 0.43, 0.59, 0.4, 0.7, 0.42, 0.68, 0.58, 0.66, 0.58, 0.61, 0.42, 0.42, 0.85, 0.37, 0.64, 0.47, 0.56, 0.59, 0.42, 0.67, 0.79, 0.42, 0.67, 0.58, 0.42, 0.63, 0.46, 0.56, 0.64, 0.66, 0.79, 0.5, 0.67, 0.36, 0.69, 0.58, 0.49, 0.37, 0.44, 0.82, 0.61, 0.54, 0.52, 0.54, 0.78, 0.64, 0.53, 0.51, 0.33, 0.64, 0.72, 0.68, 0.41, 0.54, 0.55, 0.38, 0.46, 0.4, 0.66, 0.45, 0.51, 0.5, 0.5, 0.72, 0.37, 0.97, 0.38, 0.63, 0.43, 1.36, 0.84, 0.58, 0.49, 0.54, 0.38, 0.86, 0.52, 0.42, 0.53, 0.53, 0.34, 0.62, 0.34, 0.5, 0.6, 0.44, 0.62, 0.69, 0.46, 0.62, 0.55, 0.4, 0.54, 0.77, 0.77, 0.6, 0.45, 0.47, 0.45, 0.45, 0.41, 0.54, 0.66, 0.49, 0.42, 0.31, 0.54, 0.57, 0.58, 0.65, 0.67, 0.37, 0.53, 0.38, 0.53, 0.67, 0.37, 0.61, 0.49, 0.69, 0.44, 0.33, 0.48, 0.46, 0.59, 0.51, 0.4, 0.55, 0.49, 0.39, 0.39, 0.4, 0.4, 0.32, 0.42, 0.46, 0.47, 0.38, 0.63, 0.58, 0.44, 0.44, 0.34, 0.68, 0.66, 0.79, 1.02, 0.35, 0.41, 0.61, 0.36, 0.59, 0.46, 0.59, 0.56, 0.9, 0.42, 0.38, 0.42, 0.4, 0.51, 0.57, 0.6, 0.35, 0.61, 0.5, 0.38, 0.66, 0.59, 0.91, 0.5, 0.35, 0.68, 0.42, 0.48, 0.5, 0.9, 0.54, 0.6, 0.44, 0.47, 0.67, 0.25, 0.68, 0.54, 0.52, 0.46, 0.57, 0.61, 0.46, 0.64, 0.45, 0.38, 0.46, 0.54, 0.39, 0.56, 0.71, 0.58, 0.38, 0.72, 0.52, 0.49, 0.38, 0.5, 0.53, 0.6, 0.54, 0.31, 0.46, 0.44, 0.37, 0.52, 0.43, 0.45, 0.36, 0.44, 0.46, 0.47, 0.59, 0.46, 0.5, 0.39, 0.62, 0.54, 0.59, 0.57, 0.45, 0.43, 0.34, 0.51, 0.58, 0.36, 0.73, 0.72, 0.42, 0.38, 0.77, 0.6, 0.44, 0.54, 0.42, 0.67, 0.53, 0.96, 0.54, 0.64, 0.55, 0.39, 0.6, 0.48, 0.44, 0.43, 0.65, 0.36, 0.51, 0.59, 0.67, 0.43, 0.64, 0.84, 0.49, 0.62, 0.4, 0.56, 0.61, 0.54, 0.54, 0.49, 0.51, 0.53, 0.73, 0.33, 0.37, 0.59, 0.4, 0.55, 0.47, 0.53, 1.06, 0.49, 0.65, 0.4, 0.43, 0.47, 0.59, 0.45, 0.43, 0.6, 0.42, 0.93, 0.38, 0.53, 0.53, 0.52, 0.61, 0.62, 1.95, 0.35, 0.48, 0.39, 0.57, 0.68, 0.49, 0.92, 0.49, 0.58, 0.47, 0.9, 0.5, 0.53, 0.92, 0.5, 0.74, 0.41, 0.49, 0.41, 0.34, 0.69, 0.55, 0.77, 0.38, 0.72, 0.59, 0.4, 0.73, 1.36, 0.77, 0.58, 0.66, 0.6, 0.58, 0.5, 0.79, 0.36, 0.5, 0.62, 0.44, 0.56, 0.5, 0.56, 0.46, 0.53, 0.78, 0.5, 0.65, 0.58, 0.53, 0.98, 0.44, 0.46, 0.95], \"xaxis\": \"x\", \"y\": [0.8156061324462894, 0.42491310922683634, 0.8867827646463432, 0.8014995238430205, 0.30499958310650876, 0.5817355832705369, 0.959171062334887, 0.7854416128369749, 0.9085690698200813, 0.8998600376511439, 0.6341165000693628, 0.412102187638673, 0.7643629411050379, 0.4710001938005606, 0.40182653035141874, 0.40438056362905367, 0.8870480016118494, 0.3650667978415713, 0.9064321709292111, 0.9327245345966092, 0.6458420185168736, 0.8821841129047617, 0.6704018506542557, 0.7655671181822064, 0.8616986618932058, 0.48774537944210006, 0.9637355036179479, 0.6794204065079696, 0.6044835155949141, 0.7867954023600708, 0.9137982268836646, 0.5867502063434873, 0.8048584290077971, 0.9718511071053526, 0.9627192884041744, 0.7978623718349598, 0.6091120966723917, 0.8943338178728011, 0.8853376735027229, 0.9045563504021151, 0.9264844632598176, 0.6342457655367447, 0.9414033426130164, 0.5636516403732365, 0.5172967922101196, 0.4836896337264441, 0.35199620689495453, 0.788779954566273, 0.9696552399248426, 0.772496554239754, 0.8132656157621138, 0.4539090261140653, 0.9333708926412786, 0.679765045723866, 0.48457442622955804, 0.4248820606938153, 0.6737819616086004, 0.8780741425819777, 0.38340602447337646, 0.90634085684919, 0.5574014604752268, 0.6804147683859246, 0.9077110088845216, 0.7718472635729894, 0.4717552048891654, 0.22222808308441652, 0.8616549355667619, 0.705749071892896, 0.4699129352300819, 0.9680524782819758, 0.8891353183282249, 0.9466602521798594, 0.8553382520847058, 0.7430243903066251, 0.6616131862201935, 0.6919609500216202, 0.96565744679506, 0.913108907487878, 0.5395521774612226, 0.9026238558501023, 0.6550941529376255, 0.9757876320152292, 0.8833495792027257, 0.6666029765862381, 0.8504582120840628, 0.9320215595878566, 0.7639947574915884, 0.6085229656221847, 0.9557131606798471, 0.46184432615952054, 0.5642658412077981, 0.8815615400732472, 0.7189203536918151, 0.9301020530176726, 0.7341394174346678, 0.7759189559372703, 0.8448078654733812, 0.9012666081120407, 0.8926028620066223, 0.5287492720273277, 0.6874206920638863, 0.37408584674942635, 0.8348370105186077, 0.8697567261320243, 0.9175759024810304, 0.44644098895981, 0.8874384748400057, 0.7787567487441118, 0.9416122482572158, 0.3265229243180111, 0.9308095750950773, 0.42267134533232753, 0.43068181214270274, 0.8727308285810839, 0.7201611177732586, 0.8430904589044517, 0.8140617541555761, 0.9456747441572588, 0.6672663325862807, 0.8756470416862959, 0.518871521713375, 0.7040615347784164, 0.4957960231649875, 0.6250130361556073, 0.27413726132188326, 0.5193133578087885, 0.37656641690434584, 0.5808048103476511, 0.7917827117482167, 0.36569143480873245, 0.7232542293832885, 0.9785934574433302, 0.5715075300165849, 0.8182555969893297, 0.5448461144048058, 0.9491291995847589, 0.4833587957991669, 0.3189279754564957, 0.9184825510014271, 0.5524830505676419, 0.9600429304649183, 0.7818180966165994, 0.7962710274484252, 0.7569429870375118, 0.46184432615952054, 0.7641514270390748, 0.9486763575522457, 0.8086368705092697, 0.6784536879503494, 0.6877019790624462, 0.6082670858563528, 0.6053794617794684, 0.6319330693089359, 0.4982105707488519, 0.6787928880949093, 0.9231980717613485, 0.8831230955067948, 0.6845485656817341, 0.8799204262605215, 0.9164563829924386, 0.7819268199067826, 0.23469888428232324, 0.9492377841603665, 0.8826092272015389, 0.6360541596480074, 0.5184081252698399, 0.6400126753125241, 0.542646305979658, 0.4479501208302092, 0.7783171875827786, 0.7867712153112567, 0.5236605417423803, 0.6959846197179591, 0.7925023358445066, 0.6683189355892497, 0.18737025221649042, 0.42506327048176057, 0.7272596040941706, 0.7314191754306454, 0.4827891324637794, 0.6649341228620356, 0.9038332731164471, 0.9588917860646077, 0.8945194928389463, 0.49833043835950624, 0.7997712594855277, 0.8577935987172323, 0.7622736922026153, 0.8039391974899521, 0.7396811504731934, 0.8115340233127679, 0.801728888664367, 0.738451208106372, 0.5859674792922007, 0.1865203674848816, 0.8773430435604171, 0.36888329310067386, 0.8651817982269884, 0.9067615420962557, 0.8594983988587351, 0.7437750884018276, 0.9145224932934428, 0.9135679891815164, 0.8001832456898428, 0.6860977766129374, 0.9377826008632761, 0.9300369611912853, 0.6997062971069969, 0.5693182102579236, 0.3404656140239559, 0.7160591142088384, 0.7953146078011, 0.8869803873277935, 0.7639982823097876, 0.8681285227071118, 0.576868797021353, 0.93035102563313, 0.8375600281828176, 0.8279918435672958, 0.9266689436294401, 0.7559862346636359, 0.5099889666930224, 0.6914445842613687, 0.9651950326885705, 0.87851968214492, 0.8499702807396289, 0.4685752957996948, 0.7241546992314323, 0.7848147251007912, 0.7341394174346678, 0.7008877443692281, 0.340588975625529, 0.5013021766499856, 0.8321174529331695, 0.8818378666553491, 0.9176909075187759, 0.8634678749265305, 0.7436082905772717, 0.9343776659412377, 0.7668809937296346, 0.6243383802582345, 0.5332560471205093, 0.6907315465649003, 0.16626803588025432, 0.1668542888532837, 0.7408943843163458, 0.5221312328975666, 0.7457559475413279, 0.46389636934606376, 0.9292627865919654, 0.5268311186840582, 0.4244151934213653, 0.643310536612302, 0.8577438313980266, 0.7816208399762355, 0.8553382520847058, 0.7010035672814305, 0.5242572272016158, 0.9187320011579697, 0.8703498177621264, 0.6713045345576062, 0.9137982268836646, 0.8614414457916845, 0.9445662266054761, 0.8808216590199034, 0.7386378115490353, 0.8873009977622293, 0.9157094897337859, 0.6606038558129893, 0.9296803968514485, 0.8864322240790464, 0.5146720135715994, 0.8720710714485208, 0.9415427660945741, 0.9138701141498735, 0.6527559092576063, 0.8751970040938668, 0.9249766460056568, 0.801728888664367, 0.6575848465963361, 0.6934824043184128, 0.8619113960143526, 0.9419078024651042, 0.9591721389341828, 0.8397407150753159, 0.9084383840076588, 0.4963969309336195, 0.7359588175524252, 0.3531961907069324, 0.9279819479140234, 0.7752976919572294, 0.8665226278427577, 0.9515211055933231, 0.7314191754306454, 0.890886918514299, 0.3235491032739525, 0.3719939405423586, 0.6323804178173072, 0.8398006965792015, 0.8239469134189235, 0.8592101816891015, 0.7615002907198236, 0.8688259750909261, 0.8718104001390852, 0.5838074755684882, 0.8756470416862959, 0.901850575196968, 0.9451930143658351, 0.6253812669856891, 0.5890764576710766, 0.4921052500998711, 0.4862070578416567, 0.9170647663398394, 0.7035583451969506, 0.8476385889092957, 0.5603058978573646, 0.5810606890504925, 0.9088604673919816, 0.8903252600075929, 0.944267921154058, 0.9435968591480925, 0.938237366988842, 0.9357286047893738, 0.7961386682142712, 0.7840233885688647, 0.2513590507613302, 0.7389284097502917, 0.9053472250810051, 0.44438282424164377, 0.862281110352348, 0.8021059248496223, 0.9152740930046814, 0.643737358401971, 0.8540304955499701, 0.8613418170006786, 0.6911084183178322, 0.8848367871057808, 0.8387883096682573, 0.5942651630821018, 0.65691393717736, 0.6369979527510315, 0.8280658524313272, 0.9640736168216585, 0.6546311715671466, 0.5599819536107853, 0.48348053317652906, 0.7668016587569692, 0.03620763244300767, 0.7364400865449663, 0.37408584674942635, 0.8767503774172, 0.8743962287172513, 0.8751970040938668, 0.8833495792027257, 0.7091886355621774, 0.87006937054451, 0.7904001815220257, 0.8761418339280951, 0.8306834851111597, 0.7531715889012326, 0.38181207472529843, 0.6490458991820136, 0.9138057013338913, 0.9046222904886461, 0.17956061692355052, 0.7506163079023257, 0.8963285795381793, 0.8848361664653354, 0.9283037217377402, 0.45996158699034445, 0.7290858434196763, 0.8319094967702583, 0.6578018675312727, 0.18727567457681707, 0.8673410249845035, 0.9453298670648187, 0.9446538464906173, 0.19605573045952288, 0.6723831041639817, 0.3438281302059518, 0.37858973820495484, 0.6953170483296187, 0.21463507152544156, 0.26963792069965237, 0.3280912492037974, 0.8399932187801539, 0.420387898633768, 0.36522500752858966, 0.5810560693343539, 0.9306346767722963, 0.7167716539092029, 0.656736106921484, 0.5549139996760648, 0.6909161521388689, 0.591904263202073, 0.884703171197362, 0.866402281883595, 0.7582770814524421, 0.8990773411030794, 0.1818065866116437, 0.6222165686186035, 0.17261914235374884, 0.8156064679757086, 0.4851213943917703, 0.8871292211128762, 0.8398494053952754, 0.703270618172154, 0.6305543892506115, 0.7494149477175548, 0.1532408287022325, 0.6159732902773407, 0.738220551127759, 0.8354520044441791, 0.8536870432671441, 0.5751476712690671, 0.9077719201719568, 0.7878515691455199, 0.6672663325862807, 0.45293736875445273, 0.17058553029544155, 0.747933377844996, 0.8400163125056676, 0.4516778718827729, 0.6082670858563528, 0.8401843469141149, 0.7636885291754726, 0.789170795337903, 0.8128612802083497, 0.7522530659814418, 0.8086757686066508, 0.8356255123032285, 0.9241779635105248, 0.9674588597049086, 0.9368885694202199, 0.4990764491242286, 0.876561204324957, 0.554264192243629, 0.5967716244634195, 0.9060244606340249, 0.8401608718856799, 0.7329750583133859, 0.8021769878309102, 0.9316817655017511, 0.45488322534173153, 0.798578398438993, 0.7425236774748816, 0.5742682328784404, 0.4937681935814938, 0.8972164286692267, 0.8914273370768748, 0.9377613518261881, 0.8862258850530264, 0.8591757581361523, 0.7410678096850266, 0.6822336012657398, 0.9201658505843877, 0.6982578893131915, 0.5746709232170782, 0.7626532952948841, 0.7137703530889916, 0.7520971196461234, 0.4473853625959922, 0.7957460056304991, 0.4833174871501707, 0.8758467705785958, 0.4689303842787964, 0.6133612564737879, 0.8568681391705205, 0.6835133967314007, 0.9732070839986944, 0.21435716257549006, 0.5761668962420043, 0.4055433603128916, 0.3743394998756179, 0.9118635774953143, 0.964551884718591, 0.9306459334511011, 0.8424802355113449, 0.7739144871152517, 0.6872688771534424, 0.8590561833388345, 0.6714384475466295, 0.6408669500407106, 0.5203550269219845, 0.2856853969697174, 0.857760555506807, 0.9307094503226838, 0.6787928880949093, 0.8308635255795866, 0.29271374211533296, 0.6769315553524353, 0.23831547366416572, 0.5895099457120908, 0.8994675076574448, 0.8893400405584444, 0.8456825404777587, 0.5399612081435882, 0.6188649121485582, 0.9281492942813848, 0.7611740601422801, 0.46550237374781617, 0.8896861436466836, 0.9038901015569306, 0.5044440900554997, 0.9215480939667524, 0.6930273792518707, 0.8723244804196287, 0.5624338775604165, 0.9226297661236537, 0.8469231754225917, 0.9430557295321259, 0.9097116306258912, 0.5988707702267543, 0.3813853072548755, 0.8843832309478876, 0.9006952500629406, 0.918975987201669, 0.18997930334445084, 0.8923106748541326, 0.8461388699436441, 0.5973439234355874, 0.9544642924744549, 0.91770416680597, 0.9177239854204658, 0.17584552180125673, 0.9240099144459667, 0.48524948024905407, 0.8889685222180134, 0.5785503824403398, 0.7511953459672914, 0.6887596776945688, 0.6717539058356753, 0.7168761391602206, 0.7134478068952186, 0.834626350903405, 0.5715867980362679, 0.6588392688727011, 0.9488572786900573, 0.8920529250761863, 0.8891353183282249, 0.707981940789761, 0.926348680038428, 0.631489487929038, 0.7443856388661001, 0.9260754381930228, 0.9544642924744549, 0.8497401318990601, 0.5604010177433062, 0.8036334301115304, 0.7898153537185114, 0.8491431337122072, 0.6570881560807702, 0.8389599143569951, 0.7944137576415592, 0.8132668978866627, 0.44714680104169846, 0.7978021044641371, 0.41921696608658454, 0.38876183891604754, 0.9248463736054193, 0.4277915265084825, 0.6345107008491314, 0.8008942533173764, 0.5087430598332189, 0.9414938992689892, 0.6922115882765215, 0.8296175750175913, 0.8593339228153332, 0.8975141534758351, 0.5977126281557783, 0.9279478536756302, 0.6485770817571253, 0.8905823996589662, 0.9332072841984264, 0.9432461110830079, 0.9410120781436498, 0.6339696776630096, 0.7120962557761497, 0.5841709037351369, 0.5928970840420333, 0.9006589732900512, 0.936371533648048, 0.6907852379101131, 0.7675780198071424, 0.9444587893431046, 0.4702336163336472, 0.8925536722101626, 0.8158978708906081, 0.822780392485108, 0.8037335327290217, 0.8382351003285965, 0.8941557358589171, 0.4796498334522667, 0.926348680038428, 0.6842118015950474, 0.6463580983468415, 0.8292048071278182, 0.5834426687867836, 0.8419845362148763, 0.2431563391580561, 0.7763142135369961, 0.9390550746437164, 0.7774903237071782, 0.8141232663130791, 0.9444089886680379, 0.430401459478284, 0.9192677156927759, 0.8427595869840984, 0.87120858451521, 0.5693182102579236, 0.820012080301976, 0.58719119911586, 0.42769376643096113, 0.3542595869275313, 0.89579938191327, 0.8743523014696554, 0.7820497043505815, 0.5279069501129625, 0.8869579700149332, 0.45488774279476296, 0.8514781135508903, 0.8278297091497892, 0.663749097381813, 0.5132851713944618, 0.4906566565015208, 0.6415219885510332, 0.6991293681294938, 0.8150539074042624, 0.5800669536763935, 0.9583771200922359, 0.7366090055976814, 0.5747817696023392, 0.5315376696882942, 0.8074446941396305, 0.9038901015569306, 0.9087015650331977, 0.6697291810323083, 0.5800669536763935, 0.8807270543114014, 0.5135845984304893, 0.9352791850238339, 0.36120709973337456, 0.6206709330576408, 0.906286252315459, 0.7937202818717513], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [0.42, 0.41, 0.41, 0.58, 0.51, 0.54, 0.57, 0.67, 0.5, 0.49, 1.17, 0.63, 0.4, 0.42, 0.43, 0.43, 0.6, 0.48, 0.5, 0.49, 0.45, 0.36, 0.6, 0.47, 0.81, 0.65, 0.5, 0.62, 0.5, 0.43, 0.56, 0.55, 0.55, 0.78, 0.44, 0.46, 0.36, 0.35, 0.63, 0.42, 0.48, 0.68, 0.46, 0.43, 0.5, 0.5, 0.47, 0.52, 0.64, 0.62, 0.57, 0.5, 0.38, 0.44, 0.6, 0.51, 0.43, 0.57, 0.52, 0.88, 0.57, 0.47, 0.52, 0.39, 0.48, 0.45, 0.6, 0.45, 0.64, 0.37, 0.32, 0.58, 0.46, 0.5, 0.38, 0.42, 0.38, 0.7, 0.58, 0.48, 0.5, 0.54, 0.47, 0.43, 0.62, 0.56, 0.44, 0.32, 0.29, 0.39, 0.58, 0.38, 0.66, 0.46, 0.44, 0.48, 0.4, 0.58, 0.48, 0.5, 0.47, 0.65, 0.64, 0.55, 0.53, 1.31, 0.43, 0.34, 0.57, 0.44, 0.62, 0.4, 0.56, 0.44, 0.64, 0.49, 0.5, 0.62, 0.57, 0.38, 0.46, 0.6, 0.51, 0.29, 0.49, 0.5, 0.67, 0.55, 0.59, 0.5, 0.28, 0.64, 0.4, 0.49, 0.49, 0.42, 0.35, 0.54, 0.45, 0.51, 0.53, 0.5, 0.34, 0.5, 0.48, 0.4, 0.66, 0.38, 0.56, 0.7, 0.52, 0.53, 0.42, 0.61, 0.39, 0.5, 0.95, 0.39, 0.39, 0.28, 0.36, 0.6, 0.57, 0.48, 0.39, 0.46, 0.48, 0.54, 0.57, 0.42, 0.51, 0.39, 0.49, 0.8, 0.67, 0.53, 0.47, 0.57, 0.59, 0.39, 0.49, 0.48, 0.5, 0.47, 0.46, 0.36, 0.59, 0.36, 0.52, 0.47, 0.44, 0.56, 0.6, 0.4, 0.54, 0.49, 0.54, 0.53, 0.68, 0.41, 0.71, 0.75, 0.75, 0.57, 0.73, 0.43, 0.39, 0.5, 0.58, 0.31, 0.42, 0.49, 0.44, 0.43, 0.56, 0.47, 0.53, 0.29, 0.48, 0.29, 0.47, 0.39, 0.6, 0.44, 0.38, 0.52, 0.38, 0.66, 0.51, 0.52, 0.43, 0.43, 0.44, 0.51, 0.66, 0.35, 0.53, 0.37, 0.61, 0.63, 0.71, 0.53, 0.52, 0.48, 0.39, 0.57, 0.55, 0.52, 0.39, 0.6, 0.67, 0.47, 0.55, 0.47, 0.51, 0.51, 0.79, 0.32, 0.58, 0.49, 0.41, 0.62, 0.38, 0.4, 0.43, 0.34, 0.6, 0.43, 0.97, 0.54, 0.43, 0.67, 0.55, 0.58, 0.45, 0.58, 0.48, 0.54, 0.38, 0.52, 0.52, 0.66, 0.49, 0.6, 0.35, 0.52, 0.64, 0.39, 0.39, 0.41, 0.62, 0.69, 0.37, 0.48, 0.48, 0.98, 0.52, 0.49, 0.46, 0.59, 0.73, 0.44, 0.53, 0.49, 0.53, 0.38, 0.61, 0.56, 1.05, 0.47, 0.4, 0.48, 0.66, 0.48, 0.99, 0.43, 0.51, 0.61, 0.56, 0.65, 0.63, 0.5, 0.44, 0.59, 0.46, 0.4, 0.84, 0.7, 0.51, 0.46, 0.5, 0.62, 0.51, 0.69, 0.45, 0.57, 0.45, 0.64, 0.4, 0.5, 0.46, 0.5, 0.51, 0.51, 0.51, 0.65, 0.71, 0.48, 0.47, 0.56, 0.35, 0.57, 0.64, 0.63, 0.66], \"xaxis\": \"x\", \"y\": [0.2802292104526322, 0.9455194119275858, 0.4978743212349556, 0.5289145624519528, 0.28439238707197784, 0.2033309570226689, 0.27345747478543325, 0.8322873304845451, 0.389055896812549, 0.3675472469853882, 0.5781933746273124, 0.7401955299744071, 0.44969671697605845, 0.4367887814338696, 0.31593955341667695, 0.3775624358859999, 0.19282181046294666, 0.048451763306065584, 0.6005928650583868, 0.032225376113695775, 0.427412413738938, 0.23973251442015217, 0.13890126550157303, 0.8613925272127, 0.329663916828638, 0.19359965390713213, 0.6827271716759634, 0.1960905505555538, 0.08135735686643118, 0.39737240301928484, 0.13902987396822816, 0.6514166433739288, 0.6994753721471061, 0.7140886736258081, 0.5021795028970708, 0.48743245558712556, 0.5731139673640956, 0.8820820642542792, 0.559972149724866, 0.5061565591493914, 0.5066810377847554, 0.833805652807593, 0.6979972163580744, 0.3177574231538272, 0.13068190592986567, 0.758876109553896, 0.5681062961269688, 0.715544821914063, 0.762062625203523, 0.4464438677531786, 0.20995974230910305, 0.5262622410710028, 0.39442669669188163, 0.2537324982988368, 0.6775437642744659, 0.23876321589577687, 0.6369158982934647, 0.38960060362966165, 0.6034323722874255, 0.7769991715799629, 0.15199748354041337, 0.5641412449951732, 0.7590466800561823, 0.5969347905931296, 0.1048362779837843, 0.7217824369593382, 0.2662339163773806, 0.16472378978351135, 0.37760124376932414, 0.7071736299639594, 0.3436862995931572, 0.8384434752264291, 0.3635333644877426, 0.7813188949129265, 0.7279369976219869, 0.5641098847382463, 0.3863964747623771, 0.9209913370067284, 0.1477144681640183, 0.8809374658555192, 0.6533168894759348, 0.8873477284758582, 0.3697306267878623, 0.28319023347825867, 0.5203701741750857, 0.5523747693308857, 0.6387521731780509, 0.3881380695009739, 0.8487896327149285, 0.4636606453307818, 0.8384434752264291, 0.558266603669778, 0.21657231888677728, 0.3635333644877426, 0.5512671313974766, 0.5051039398599867, 0.5827915753039158, 0.49441682850108926, 0.47309171914705017, 0.6262595591688196, 0.5508242483721094, 0.47332791509789995, 0.7117569366896692, 0.3933786516273859, 0.16465066549244003, 0.7490394132223248, 0.769261050002088, 0.7431932405995126, 0.3141000916210982, 0.723735045552473, 0.6484132891031948, 0.688519894019609, 0.40496704226994307, 0.5803736122960511, 0.6327801522745691, 0.45115706990411364, 0.37268733756108086, 0.9009693101135351, 0.06496389958099598, 0.44431713201158524, 0.39960831974332744, 0.8662156944598043, 0.31018081106061823, 0.5339551117365043, 0.33311273919547707, 0.400132762133902, 0.8528754522806217, 0.14419347879543085, 0.11672350429510901, 0.44556702529145975, 0.6160120899414699, 0.13766892845409207, 0.5517204028384314, 0.5232178919035022, 0.35483403305733974, 0.4900213704561591, 0.8854578072659228, 0.43084122675663034, 0.7601186327653665, 0.14072030431570776, 0.6186690618327106, 0.5245054232921349, 0.7326259458716644, 0.5690781983520095, 0.4018508815425063, 0.24877469563805235, 0.7952501197393639, 0.8766221356386195, 0.303451532996695, 0.5357745481647883, 0.7096524147827454, 0.20877177283968149, 0.8635610141758273, 0.46736762313881036, 0.6061151992073851, 0.113015272873705, 0.40446014603085867, 0.6332606063976143, 0.648705381890928, 0.42186952587750404, 0.8047913565308571, 0.3017058309841093, 0.38406990132164637, 0.33494193042999065, 0.19929939967121216, 0.8624919783238055, 0.528785836409086, 0.43084122675663034, 0.47042159929499583, 0.5061565591493914, 0.5759491569657543, 0.8468794444363914, 0.20342296359496542, 0.5170831534483544, 0.3666753044655067, 0.6131723001375537, 0.4410646109528086, 0.6903416342484309, 0.3866428492574258, 0.4636606453307818, 0.4525459302795702, 0.03199256040434073, 0.7029629492254846, 0.2433141614541866, 0.548755973819273, 0.3775060302547258, 0.06593060991448157, 0.8745624549148976, 0.22931948662359403, 0.27267688907931714, 0.589328430619086, 0.8007160756317941, 0.5525637789187225, 0.5008522318356121, 0.4556212410144909, 0.17391722008742402, 0.43574637053357784, 0.3237440077649342, 0.6071692164257629, 0.6925152430641841, 0.592675381607996, 0.43854150134957587, 0.43854150134957587, 0.42437112972565305, 0.8061118855433299, 0.35195592295594336, 0.7605370065149419, 0.38898578429124253, 0.67510953655807, 0.872979709380305, 0.710510994258769, 0.720290290780972, 0.4820787970895852, 0.42019280799979697, 0.4304380754474639, 0.25285023254778977, 0.3238056884730761, 0.39471961640683584, 0.09510031985475974, 0.367046376808582, 0.21500793651835448, 0.8705359023101334, 0.6100742529031461, 0.6226449432624995, 0.7279369976219869, 0.3643494054700089, 0.09992017521484964, 0.41475515148757036, 0.6462260464983366, 0.14102909592513518, 0.48949585696458414, 0.5239520436918008, 0.6084413884537807, 0.5655473856702703, 0.9517420512476797, 0.7489379515982664, 0.4647937384849751, 0.7915321263825208, 0.44112279258530757, 0.5734340256727429, 0.6604471727860799, 0.4845203185458914, 0.6968730453869196, 0.5315374962198609, 0.8685951485887234, 0.6242442748350044, 0.2912097196987059, 0.7725938221565348, 0.2067629769731588, 0.30221725334927335, 0.13129342562285412, 0.6467789443522378, 0.6994753721471061, 0.11825382206919556, 0.41022417118631593, 0.4882665226122541, 0.7732287086973071, 0.25374762405010176, 0.49441682850108926, 0.3723877205427743, 0.652330313245635, 0.43667799883041203, 0.5964718913578133, 0.55172276504346, 0.24113559934961917, 0.8243980268882987, 0.7263843594269437, 0.43535214809021755, 0.8721122798612579, 0.18723914490145582, 0.6486906676970999, 0.11576704656818047, 0.4328241622975616, 0.491481212420291, 0.5264345378086769, 0.33856526784971647, 0.2967410926251248, 0.581398831228375, 0.5973776665460488, 0.6195406102170065, 0.37782717658841725, 0.323061133240968, 0.17420808473594895, 0.19634770547538957, 0.46492234760650425, 0.49613167963272686, 0.5812209036149294, 0.6057291775435286, 0.63414717387345, 0.5702687187355167, 0.8604975146328253, 0.6309022132706124, 0.48732991249542923, 0.6887148870948692, 0.41581945293096145, 0.5706760596351739, 0.4831274653996314, 0.06684727567316755, 0.49090643211649887, 0.15191610726090596, 0.2711405311223577, 0.7653618545702112, 0.09266565137124261, 0.4554350627407873, 0.19698919164573708, 0.6930185080649685, 0.5227537922811563, 0.50434568709929, 0.7082092780767422, 0.46058046365566996, 0.6735723234187477, 0.4285936050615775, 0.323061133240968, 0.5168500865319015, 0.6161307914674419, 0.23456444218973552, 0.3192004782541023, 0.21968945907811915, 0.5028183230931117, 0.43371621376298963, 0.6744209213341115, 0.5940260419772637, 0.13783310426722128, 0.5136444387530009, 0.5508647999875032, 0.4955911012838212, 0.9814394195009358, 0.8260225289794664, 0.17965956338109995, 0.46844896472597397, 0.6048119589659149, 0.3289160319090978, 0.2454606394453749, 0.7497022835596558, 0.683485355417811, 0.20995974230910305, 0.23504578258460665, 0.37175956099497537, 0.4875530438829156, 0.24982584224249993, 0.6282829625348888, 0.4520795162158371, 0.8200372413039435, 0.12832513643528837, 0.5299630655130737, 0.29552777318700446, 0.24021937552346023, 0.5429028773737552, 0.6311869746243346, 0.4145977043912777, 0.39329840463575844, 0.39070335653410526, 0.4286990948130573, 0.846836560604146, 0.6880850122626078], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (curr)\", \"type\": \"scatter\", \"x\": [0.38, 0.44, 0.87, 0.39, 0.58, 0.33, 0.7, 0.38, 0.61, 0.59, 0.56, 0.52, 0.37, 0.53, 0.36, 0.41, 0.58, 0.44, 0.87, 0.33, 0.46, 0.5, 0.38, 0.58, 0.6, 0.33, 0.3, 0.54, 0.6, 0.49, 0.35, 0.49, 0.82, 0.41, 0.34, 0.31, 0.76, 0.49, 0.53, 0.53, 0.32, 0.5, 0.38, 0.41, 0.8, 0.74, 0.38, 0.57, 0.49, 0.72, 0.61, 0.67, 0.36, 0.25, 0.49, 0.75, 0.68, 0.79, 0.44, 1.33, 0.68, 0.38, 0.47, 0.36, 0.36, 0.42, 0.58, 0.62, 0.5, 0.8, 0.53, 0.39, 0.29, 0.51, 0.37, 0.42, 0.44, 0.45, 0.47, 0.61, 0.46, 0.52, 0.85, 0.68, 0.49, 0.78, 0.73, 0.3, 0.27, 0.49, 0.35, 0.33, 0.5, 0.4, 0.48, 0.58, 0.65, 0.43, 0.72, 0.77, 0.34, 0.5, 0.84, 0.43, 0.53, 0.62, 0.54, 0.35, 0.59, 0.63, 0.5, 0.38, 0.37, 0.51, 0.5, 0.93, 0.76, 0.56, 0.65, 0.71, 0.64, 0.99, 0.56, 0.42, 0.75, 0.74, 0.74, 0.62, 0.75, 0.57, 0.36, 0.88, 0.44, 0.56, 0.44, 0.51, 0.67, 0.7, 0.57, 0.5, 0.62, 0.49, 0.61, 0.48, 0.41, 0.6, 0.58, 0.77, 0.39, 0.47, 0.38, 0.68, 0.44, 0.36, 0.68, 0.53, 0.82, 0.73, 0.45, 0.48, 0.4, 0.78, 0.26, 0.49, 0.82, 0.36, 0.45, 0.55, 0.86, 0.39, 0.57, 0.32, 0.39, 0.66, 0.45, 0.49, 0.43, 0.42, 0.47, 0.77, 0.44, 0.41, 0.95, 0.76, 0.43, 0.82, 0.87, 0.37, 0.45, 0.75, 0.39, 0.43, 0.59, 0.48, 0.46, 0.58, 0.57, 0.38, 0.58, 0.64, 0.59, 0.56, 0.57, 0.4, 0.56, 0.63, 0.53, 0.85, 0.51, 0.78, 0.41, 0.33, 0.6, 0.6, 0.56, 0.65, 0.47, 0.44, 0.5, 0.49, 0.4, 0.55, 0.6, 0.53, 0.66, 0.58, 0.68, 0.48, 0.77, 0.48, 0.72, 0.44, 0.66, 0.47, 0.66, 0.82, 0.4, 0.54, 0.31, 0.47, 0.53, 0.46, 0.39, 0.57, 0.64, 0.87, 0.41, 0.5, 0.47, 0.7, 0.76, 0.3, 0.75, 0.41, 0.55, 0.35, 0.45, 0.58, 0.48, 0.73, 0.62, 0.57, 0.47, 0.35, 0.39, 0.48, 0.51, 0.43, 0.48, 0.43, 0.37, 0.43, 0.58, 0.65, 0.4, 0.7, 0.57, 0.44, 0.56, 0.76, 1.06, 0.51, 0.51, 0.49, 0.64, 0.63, 0.36, 0.52, 0.57, 0.43, 1.11, 0.63, 0.42, 0.47, 0.49, 0.46, 0.45, 0.42, 0.33, 0.44, 0.33, 0.75, 0.59, 0.38, 0.48, 0.85, 0.56, 0.54, 0.75, 0.47, 0.38, 0.6, 0.63, 0.5, 0.52, 0.63, 0.51, 0.5, 0.51, 0.48, 0.64, 0.44, 0.59, 0.36, 0.64, 0.39, 0.4, 0.77, 0.48, 0.73, 0.81, 0.36, 0.86, 0.53, 0.43, 0.38, 0.75, 0.41, 0.43, 0.46, 0.39, 0.52, 0.58, 0.84, 0.54, 0.45, 0.42, 0.5, 0.9, 0.34, 0.35, 0.52, 0.47, 0.36, 0.4, 0.82, 0.6, 0.38, 0.82, 0.72, 0.32, 0.59, 0.75, 0.35, 0.75, 0.43, 0.46, 0.5, 0.57, 0.69, 0.46, 0.53, 0.54, 0.54, 0.56, 0.49, 0.48, 0.37, 0.65, 0.46, 0.5, 0.55, 0.55, 0.48, 0.43, 0.62, 0.46, 0.44, 0.65, 0.44, 0.58, 0.44, 0.49, 0.64, 0.42, 0.62, 0.47, 0.53, 0.59, 0.45, 0.41, 0.31, 0.64, 0.5, 0.41, 0.42, 0.46, 0.36, 0.39, 0.36, 0.7, 0.49, 0.68, 0.46, 0.5, 0.7, 0.36, 0.65, 0.6, 0.49, 0.56, 0.98, 0.77, 0.6, 0.7, 0.59, 0.6, 0.33, 0.61, 0.4, 0.34, 0.41, 0.53, 0.51, 0.71, 0.65, 0.74, 0.48, 0.7, 0.52, 0.49, 0.84, 0.32, 0.54, 0.33, 0.66, 0.75, 0.4, 0.78, 0.47, 0.37, 0.54, 0.72, 0.54, 0.43, 0.53, 0.56, 0.55, 0.43, 0.49, 0.59, 0.5, 0.42, 0.41, 0.38, 0.65, 0.27, 0.54, 0.4, 0.57, 0.45, 0.3, 0.67, 0.43, 0.41, 0.55, 0.43, 0.6, 0.35, 0.42, 0.65, 0.38, 0.77, 0.76, 0.52, 0.32, 0.32, 0.37, 0.43, 0.68, 0.57, 0.41, 0.77, 0.81, 0.36, 0.75, 0.49, 0.92, 0.52, 0.76, 0.64, 0.5, 0.49, 0.4, 0.5, 0.46, 0.44, 0.59, 0.57, 0.5, 0.82, 0.4, 0.4, 0.45, 0.32, 0.62, 0.64, 0.82, 0.43, 0.8, 0.3, 0.9, 0.38, 0.51, 0.95, 0.59, 0.72, 0.62, 0.36, 0.45, 0.6, 0.37, 0.48, 0.31, 0.81, 0.45, 0.74, 0.37, 0.6, 0.6, 0.55, 0.56, 0.87, 0.51, 0.33, 0.38, 0.72, 0.79, 0.46, 0.49, 0.66, 0.44, 0.52, 0.58, 0.55, 0.37, 0.53, 0.41, 0.42, 0.39, 0.35, 0.65, 0.44, 0.6, 0.51, 0.74, 0.37, 0.39, 0.38, 0.42, 0.69, 0.58, 0.59, 0.5, 0.39, 0.68, 0.48, 0.32, 0.42, 0.56, 0.43, 0.52, 0.34, 0.38, 0.53, 0.64, 0.6, 0.59, 0.38, 0.65, 0.63, 0.5, 0.54, 0.63, 0.58, 0.75, 0.73, 0.79, 0.46, 0.31, 0.52, 0.44, 0.45, 0.39, 0.68, 0.58, 0.75, 0.57, 0.51, 0.68, 0.36, 0.56, 0.43, 0.52, 0.56, 0.44, 0.37, 0.57, 0.6, 0.47, 0.46, 0.37, 0.45, 0.36, 0.55, 0.48, 0.39, 0.35, 0.63, 0.71, 0.59, 0.8, 0.37, 0.46, 0.47, 0.54, 0.33, 0.64, 0.52, 0.51, 0.52, 0.52, 0.66, 0.55, 0.53, 0.52, 0.59, 0.54], \"xaxis\": \"x2\", \"y\": [0.33396714643252134, 0.5044440900554997, 0.8874896900044845, 0.4686759077780351, 0.23831547366416572, 0.571181601185031, 0.7785327680196316, 0.7290551099174598, 0.9581131370131553, 0.6801000322064107, 0.413367674560271, 0.6667140739211237, 0.9108229754863395, 0.9275086157065797, 0.9186958597750785, 0.7191871442695774, 0.8184457509658746, 0.8597940676688322, 0.7947045908306632, 0.8244149680645384, 0.42771531534877594, 0.5315376696882942, 0.7136291946100958, 0.5510697799054304, 0.6393262665313312, 0.9016582766249417, 0.8560880110261746, 0.8947361144883382, 0.9102326114023062, 0.840723585394272, 0.9264645566705582, 0.5105903360131552, 0.752648770317166, 0.5855954083225455, 0.8989214048388485, 0.5190750352404293, 0.9560713253502463, 0.7273157243430202, 0.9279672131348602, 0.640103147954212, 0.9158977434209615, 0.9035955072010529, 0.7140955379655831, 0.233508355491505, 0.7280578325574358, 0.8810827811902006, 0.3966129217085586, 0.15541760955422754, 0.5851621750323275, 0.9046111951917862, 0.4177213302712193, 0.7993763114768937, 0.6978409661933959, 0.6473373667551029, 0.770784382977056, 0.6500641275496193, 0.548949563093737, 0.9803199442553986, 0.6150775052067382, 0.391333092160729, 0.6966682278280982, 0.9426748402861506, 0.9170092977635526, 0.844625652038695, 0.5621782696252592, 0.8935808323282117, 0.6792214086077275, 0.6719996755401956, 0.5252591274442797, 0.7277045758687855, 0.4685752957996948, 0.8616549355667619, 0.347491516391863, 0.8224130863808733, 0.5340790568488665, 0.6711667658766297, 0.5277539611022016, 0.7226430813715845, 0.8140972745487615, 0.3280236940194876, 0.9543080196225542, 0.7752655593026647, 0.9223925066666061, 0.8588031784191832, 0.6345107008491314, 0.9393010047953068, 0.7897067132703484, 0.8608062836413887, 0.8367885032124018, 0.38555642305179116, 0.8611944449682004, 0.9172341012895443, 0.9206892306522243, 0.9500505925695213, 0.537798347971205, 0.9173482789702866, 0.44454351342386716, 0.8909704850569525, 0.7351932580165473, 0.6818328744935735, 0.7981559962965634, 0.7626532952948841, 0.807353254900461, 0.964411205143099, 0.4685752957996948, 0.6986526320119215, 0.1956969407137045, 0.9233481403380283, 0.8218375601976645, 0.8536269727611236, 0.5637680470866036, 0.42267134533232753, 0.93003590801509, 0.9364808605729722, 0.8816060831574614, 0.9663102962713933, 0.8345570787709832, 0.4997893986747249, 0.7921603237806832, 0.5586815647381762, 0.8622246464681924, 0.9828719612298703, 0.909295720392338, 0.9476267884443668, 0.5395521774612226, 0.901360886913609, 0.39410444510430487, 0.9262213132200262, 0.6627387433216217, 0.9629433821448677, 0.9614311452267452, 0.9802968012486629, 0.933760787013923, 0.34432718187202205, 0.63596173557573, 0.624364378916488, 0.7417789548241253, 0.7300918276682445, 0.6968315453320488, 0.7840233885688647, 0.8958841271622066, 0.5417426694559925, 0.7102579146160282, 0.6004345411549624, 0.515920701757342, 0.7587882454650442, 0.5029588531082266, 0.6887596776945688, 0.8642849605932809, 0.6469572639767995, 0.8103639651534781, 0.939764354405301, 0.694136577696587, 0.6593725303534554, 0.9646797005081557, 0.7979900311745153, 0.792123904710467, 0.8869579700149332, 0.7351250317969437, 0.5332560471205093, 0.9406873315653421, 0.39362685027924615, 0.9466602521798594, 0.8394325033041952, 0.6633442657978572, 0.8126408700417265, 0.7332457619716184, 0.08024070404520958, 0.8667774471450977, 0.6466814331404849, 0.912366876100516, 0.656670904734599, 0.8701678467707724, 0.8875925797813499, 0.9658725076002231, 0.7668332861852056, 0.8604440887473094, 0.934384507524058, 0.9605946056867319, 0.951253157591183, 0.5749289095213865, 0.6279243005170476, 0.7937202818717513, 0.7665301650725991, 0.700127941221274, 0.8531107444728586, 0.7947045908306632, 0.8870566665876504, 0.5476228787844645, 0.8410401833568673, 0.8736671065238262, 0.6519898659949606, 0.936943112068646, 0.9077719201719568, 0.8071889556778997, 0.8815615400732472, 0.8935313268029127, 0.8782891297971865, 0.5029588531082266, 0.5797201450332624, 0.9416775458320723, 0.5958140198486584, 0.2485157288688957, 0.932021424688801, 0.8531502837407814, 0.6344194678828672, 0.632587077283238, 0.9121448358615357, 0.5776545535910985, 0.9052765174806566, 0.8580390107418799, 0.8998644401112552, 0.6784536879503494, 0.9458342431661766, 0.21387363850783603, 0.9530348339880965, 0.7307391114165022, 0.7187682731289255, 0.6905635603269331, 0.9569274903702625, 0.9287384091375525, 0.3856984054091925, 0.504413920551941, 0.5389739198483336, 0.5921068831639978, 0.10702848140489757, 0.8772993497727819, 0.6361944011057532, 0.8952999713010865, 0.7069578609115064, 0.10632960186243966, 0.6465592619811017, 0.9116333268133815, 0.9210441535829985, 0.9483358221641291, 0.5800224234700003, 0.896951343689222, 0.8958659323404018, 0.8896861436466836, 0.7763142135369961, 0.778627444633172, 0.9274605647284293, 0.9167924025380936, 0.6422094408272838, 0.6363725079258666, 0.8694129796739031, 0.5693182102579236, 0.5315376696882942, 0.6814536952243052, 0.30089534057709466, 0.6689448970920832, 0.6419522618821227, 0.6500641275496193, 0.8221968069187356, 0.9285763346020383, 0.8495153837633861, 0.7135666997345446, 0.8850789772017983, 0.9128367188568884, 0.8709442503982084, 0.44714680104169846, 0.7147831401969469, 0.6814536952243052, 0.5823319261018008, 0.7718122970862826, 0.8925058444773368, 0.9249991097277733, 0.7849066379312727, 0.5120166815330335, 0.7863291630268572, 0.8171821177205619, 0.8878235148823457, 0.9813953955585096, 0.5009899161211654, 0.6787020040856314, 0.2747106808400709, 0.6998114428322438, 0.7191783799678735, 0.7566715075843347, 0.7741630673610131, 0.692871858980435, 0.8706970297938403, 0.9226518689226377, 0.619213859232465, 0.9620625840847012, 0.8161066853745392, 0.7984578805051198, 0.8987836568806694, 0.27900511725120763, 0.747868261422589, 0.8013372150606806, 0.4430395412241901, 0.8082746512504794, 0.9248395818955686, 0.8132668978866627, 0.7926355964369082, 0.7243101498981422, 0.8251498778038484, 0.865753667016409, 0.8784859927081519, 0.9613966942665844, 0.8380103992838959, 0.9376908870460701, 0.8505645904112248, 0.5317253080143199, 0.8756470416862959, 0.8823120896825394, 0.8920529250761863, 0.9565288857220365, 0.92576324319171, 0.8397457208604353, 0.8008835764985612, 0.7620555647282774, 0.6333567796033132, 0.8986985644274655, 0.8289197139212982, 0.38568054861828666, 0.4358764146033148, 0.7013568331933456, 0.5524769805317635, 0.8654015550049637, 0.9625385348003681, 0.4997035751430624, 0.5940434106189647, 0.29640429037896177, 0.9370396801623051, 0.7496358493500708, 0.8521916566704996, 0.7519935213994349, 0.8956127660014477, 0.7563308848917781, 0.5425355780301907, 0.1652985164032473, 0.5777375433929663, 0.5926841497777402, 0.5247451599628447, 0.6215406511606532, 0.646742228322253, 0.5236567091352762, 0.8105889943537302, 0.7614647275399787, 0.7272264480694343, 0.44438282424164377, 0.8051848688934031, 0.253979247575754, 0.8737269176380216, 0.7884186533408385, 0.5226162157005312, 0.7776146375974927, 0.8021344726910251, 0.6794204065079696, 0.8398669626756513, 0.3743394998756179, 0.6593725303534554, 0.41008410759983227, 0.8726624594592295, 0.31336232876890546, 0.6187135046228962, 0.9208146539756937, 0.8948907807194619, 0.9475948217130945, 0.7098971478357265, 0.41970311630379203, 0.5524505095188592, 0.6689295490636696, 0.39534528644804523, 0.6686700461744643, 0.6608417181144597, 0.6289006219381473, 0.8112353209803558, 0.9675531845963172, 0.3468688843876404, 0.8171815196180959, 0.9315945487332388, 0.7612383340144859, 0.43979370974717685, 0.9452166580978265, 0.810349906376065, 0.4979189466877109, 0.9054024939516333, 0.7506263221664519, 0.8595966107872783, 0.9041757536760852, 0.5120166815330335, 0.9246344940597735, 0.622364539475366, 0.7975959936185795, 0.9376528402833735, 0.8270495791839716, 0.7463426393970082, 0.8508295060861325, 0.5277539611022016, 0.7926521549058593, 0.8343380415579561, 0.7973631232158779, 0.5423298306356671, 0.6253812669856891, 0.9342151247863544, 0.9064095870896521, 0.8428584418618921, 0.5680191878381406, 0.8230633503438987, 0.857993972512287, 0.8312116035859974, 0.8886868130574391, 0.5695902702544526, 0.8750573328895943, 0.47134086624147714, 0.6082670858563528, 0.8571520978358925, 0.7006810412396262, 0.6001343818465046, 0.8680196363335714, 0.7833148206731655, 0.835330250744176, 0.6883000602161935, 0.4297997702781997, 0.7132181587745201, 0.941909753873568, 0.9298379484442667, 0.8950633078112005, 0.9652574497835966, 0.8593048115498744, 0.23022113319019433, 0.5548683876071567, 0.8789570823277312, 0.7176343272433334, 0.7135972690872326, 0.900955402304434, 0.89110615578316, 0.8021344726910251, 0.36734125225010755, 0.9233813125795639, 0.9269988231022361, 0.6021478506882372, 0.27064660283581765, 0.7595966254948197, 0.5317253080143199, 0.9626288904553877, 0.518871521713375, 0.4244151934213653, 0.8784852709235653, 0.667697582798242, 0.6791650855490978, 0.8659372985570389, 0.5217980090164113, 0.9757802673562255, 0.20769640873195563, 0.6900575067285889, 0.15051833553221247, 0.8476988333501053, 0.12043274000614122, 0.6546311715671466, 0.412102187638673, 0.6339696776630096, 0.6925917751558638, 0.8074446941396305, 0.8417042066658985, 0.4702054036006336, 0.8107456318417504, 0.934253622333564, 0.9671353887875448, 0.3776875782453083, 0.5133306968464912, 0.8279918435672958, 0.7295730380004212, 0.8398957027397556, 0.7470826509089123, 0.7722124156410631, 0.3944809481034696, 0.5801047158883857, 0.7134138458261836, 0.8265590446981121, 0.5836238058504062, 0.7538957359152121, 0.9708936701567454, 0.41507295289487073, 0.9039211350062085, 0.5109703825452502, 0.8880660412534, 0.6332514250278477, 0.703270618172154, 0.863031725372896, 0.9601349291832292, 0.5845797646527732, 0.8357575010967041, 0.9584406458449958, 0.8733333206292072, 0.4740801794177068, 0.5787650908025566, 0.38525623454815555, 0.5715075300165849, 0.951253157591183, 0.831291834366621, 0.6482062646591596, 0.5447536045265621, 0.8456825404777587, 0.5358725178581014, 0.8893400405584444, 0.5955893395860203, 0.9408369636189147, 0.7580589814818564, 0.4244151934213653, 0.7636885291754726, 0.9532052815091139, 0.6686700461744643, 0.39683939049776734, 0.8309978518015588, 0.06774730328187532, 0.8934061610794648, 0.9459413258233057, 0.8507977517004935, 0.9694554821790147, 0.8640493534313302, 0.8409166048571896, 0.9059760843724536, 0.7278052027863667, 0.8952246802917138, 0.39534528644804523, 0.9558702864115934, 0.9178754126151818, 0.7504628435478695, 0.7568870052952757, 0.32046258648166903, 0.9712495894387816, 0.7125870341029702, 0.8286889773580812, 0.929575727770858, 0.8422483936479932, 0.60065365322741, 0.5775074082600717, 0.7505976846167132, 0.5317253080143199, 0.9590110623565244, 0.9651712957082627, 0.7333643603414158, 0.7757825668725274, 0.8928390517037824, 0.2578168736401774, 0.5355488836719776, 0.8408692583280314, 0.7849780542174357, 0.8711681462620556, 0.8447990405440073, 0.9571933326515756, 0.9307123551507692, 0.6421242495412457, 0.9239207054420927, 0.9336219461922934, 0.4244151934213653, 0.5673643045526261, 0.8301442064454496, 0.528471943574542, 0.8835542071774324, 0.8820947700128993, 0.4561713647735051, 0.584381944856391, 0.9493936477483658, 0.7816316980556022, 0.7770145472448273, 0.8495153837633861, 0.8318035560268552, 0.5220388622338656, 0.8589980209217414, 0.21216021099657945, 0.8782303617207965, 0.901850575196968, 0.7683760396387002, 0.9559989503713009, 0.938411491366706, 0.7225398931917507, 0.5918361617892179, 0.8596378534897678, 0.8816239240572568, 0.9296844522785247, 0.8299758417251202, 0.7538846798551382, 0.931253582726863, 0.6902425303942638, 0.9299571155275668, 0.35461708236434614, 0.6119587629530028, 0.8979450471026776, 0.8782891297971865, 0.6144930729026484, 0.5601837238662909, 0.4230258756549153, 0.5115702372514986, 0.6133200318312215, 0.8287048127179734, 0.42887934024879554, 0.5543929044930882, 0.5414149972460248, 0.7453725251924848, 0.6522898344923613, 0.6445138145159856, 0.9212190995841192, 0.6991293681294938, 0.9188224881967051, 0.9444881948020799, 0.8399825546316605, 0.6440269003431431, 0.45260210695563535, 0.6678228102737954, 0.8535669746933884, 0.23469888428232324, 0.7581156815660375, 0.8329520097124233, 0.5886389680190937, 0.4250130050586104, 0.290761161529129, 0.9065968169685268, 0.39757013049667705, 0.9584529405260903, 0.24804178200132845, 0.8400605958344816, 0.9562762484868867, 0.5923100188758571, 0.5355488836719776, 0.6866862751474886, 0.753715093249364, 0.9302702282582556, 0.8405005145861136, 0.7758456574858743, 0.8270123797965384, 0.9270997487744173, 0.8779999285967196, 0.6350604679157676, 0.9057987369792326, 0.9732730617650076, 0.28007269673131574, 0.5393237551960537, 0.9509318156255189, 0.8055358405733448, 0.8512314640165554, 0.6752183046546253, 0.9766791413071304, 0.26893819095773785, 0.5105552073939665, 0.7964242570425004, 0.9159462749375985, 0.46312559485344046, 0.7889853219989779, 0.5331772070153998, 0.6250130361556073, 0.5340700079782073, 0.8981158701031157, 0.8424802355113449], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [0.78, 0.48, 0.33, 0.45, 0.47, 0.5, 0.51, 0.54, 0.67, 0.57, 0.49, 0.5, 0.52, 0.37, 0.57, 0.48, 0.38, 0.61, 0.81, 0.28, 0.72, 0.46, 0.49, 0.51, 0.66, 0.38, 0.52, 0.49, 0.4, 0.53, 0.44, 0.54, 0.46, 0.45, 0.51, 0.44, 0.48, 0.58, 0.41, 0.55, 0.38, 0.43, 0.81, 0.45, 0.41, 0.57, 0.61, 0.53, 0.5, 0.52, 0.7, 0.39, 0.34, 0.58, 0.49, 0.67, 0.65, 0.74, 0.35, 0.54, 0.74, 0.64, 0.47, 0.91, 0.47, 0.64, 1.34, 0.56, 0.56, 0.48, 0.69, 0.4, 0.46, 0.47, 0.37, 0.53, 0.52, 0.43, 0.46, 0.61, 0.39, 0.49, 0.42, 0.55, 0.37, 0.48, 0.44, 0.75, 0.42, 0.8, 0.34, 0.38, 0.7, 0.63, 0.73, 0.4, 0.34, 0.93, 0.46, 0.5, 0.43, 0.43, 0.48, 0.52, 0.46, 0.54, 0.7, 0.45, 0.41, 0.64, 0.46, 0.44, 0.75, 0.54, 0.46, 0.48, 0.67, 0.49, 0.48, 0.52, 0.37, 0.46, 0.6, 0.48, 0.54, 0.77, 0.48, 0.55, 0.54, 0.65, 0.4, 0.56, 0.63, 0.33, 0.48, 0.5, 0.7, 0.55, 0.4, 0.51, 0.42, 0.37, 0.31, 0.52, 0.63, 0.49, 0.52, 0.56, 0.54, 0.42, 0.34, 0.59, 0.72, 0.38, 0.52, 0.35, 0.4, 0.51, 0.46, 0.56, 0.57, 0.56, 0.68, 0.48, 0.5, 0.5, 0.38, 0.49, 0.38, 0.46, 0.6, 0.49, 0.38, 0.42, 0.58, 0.35, 0.31, 0.53, 0.45, 0.37, 0.39, 0.44, 0.61, 0.38, 0.52, 0.42, 0.4, 0.53, 0.59, 0.52, 0.57, 0.58, 0.5, 0.65, 0.49, 0.47, 0.46, 0.48, 0.78, 0.44, 0.52, 0.46, 0.45, 0.69, 0.3, 0.76, 0.46, 0.78, 0.33, 0.45, 0.61, 0.52, 0.64, 0.35, 0.47, 0.37, 0.57, 0.4, 0.5, 0.39, 0.46, 0.43, 0.47, 0.46, 0.45, 0.45, 0.64, 0.59, 0.39, 0.4, 0.51, 0.7, 0.37, 0.32, 0.82, 0.47, 0.45, 0.59, 0.63, 0.55, 0.72, 0.8, 0.52, 0.41, 0.5, 0.72, 0.88, 0.45, 0.52, 0.42, 0.64, 0.45, 0.42, 0.44, 0.44, 0.41, 0.41, 0.6, 0.58, 0.71, 0.65, 0.53, 0.68, 0.68, 0.49, 0.45, 0.56, 0.73, 0.44, 0.48, 0.5, 0.72, 0.41, 0.45, 0.53, 0.55, 0.68, 0.6, 0.54, 0.88, 0.53, 0.48, 0.38, 0.43, 0.88, 0.44, 0.39, 0.46, 0.28, 0.58, 0.5, 0.58, 0.52, 0.54, 0.58, 0.65, 0.42, 0.37, 0.51, 0.58, 0.46, 0.61, 0.7, 0.63, 0.5, 0.29, 0.53, 0.35, 0.58, 0.49, 0.58, 0.63, 0.62, 0.39, 0.56, 0.44, 0.46, 0.48, 0.64, 0.38, 0.61, 0.58, 0.5, 0.76, 0.52, 0.4, 0.51, 0.63, 0.48, 0.46, 0.56, 0.45, 0.5, 0.53, 0.55, 0.51, 0.51, 0.39, 0.37, 0.45, 0.45, 0.58, 0.6, 0.48, 0.63, 0.73, 0.49, 0.78, 0.37, 0.76, 0.56, 0.49], \"xaxis\": \"x2\", \"y\": [0.8142007211296887, 0.07257977436397642, 0.7430932382113554, 0.8214862427787604, 0.5698848321031316, 0.6048119589659149, 0.6466669219762841, 0.14510080060429495, 0.2250304680670007, 0.28492472637839966, 0.42061632734231896, 0.8281252124183194, 0.49622399336621903, 0.3482895521074759, 0.4678833354511545, 0.5708968386647719, 0.37048677721847617, 0.553632248395139, 0.8702137350251022, 0.42186952587750404, 0.8696774950675754, 0.5410576963494411, 0.3971326977900686, 0.3275001196198921, 0.9448289227093116, 0.7109941475090589, 0.41925580570138304, 0.3675472469853882, 0.6721911818800557, 0.5562207270314473, 0.5262426608517637, 0.3244609607385458, 0.15056615442564347, 0.15676979724311627, 0.6037730696030339, 0.6342511279653397, 0.021947035536558718, 0.32429164429335744, 0.5678746850743716, 0.3571680467137555, 0.7755534309390314, 0.3240287891037917, 0.699424662214302, 0.5151532452376618, 0.7564675819717819, 0.38343591026479057, 0.19811005648518398, 0.3168419703358067, 0.5315947262677626, 0.9269044449273315, 0.8260225289794664, 0.451791899378283, 0.830516920403184, 0.47128602930186, 0.19027823806377472, 0.5181346713949518, 0.29552777318700446, 0.45414400334446664, 0.39329840463575844, 0.42327932510626076, 0.45838907164509224, 0.2233864252642039, 0.3628419195926303, 0.6709353200988277, 0.46058046365566996, 0.25551237833043455, 0.7234147543269824, 0.1481282262733752, 0.314935793994079, 0.20050531530561894, 0.37453315488553635, 0.701015529968035, 0.6343341418527783, 0.1739320900588749, 0.734996253073231, 0.8172229478314255, 0.3598554146739685, 0.7121055211356295, 0.2620604909731644, 0.3421138035730516, 0.6951268813066005, 0.35208221297891723, 0.452099210446082, 0.18907620085798427, 0.5444201651108793, 0.6484058972837882, 0.3258186925596978, 0.5963383680780668, 0.6202666247822538, 0.576738593946626, 0.5054992484109841, 0.2972245631729925, 0.6844333356791464, 0.42629475072919953, 0.4405153833121037, 0.01207867704715336, 0.7609288944606691, 0.23951123982998349, 0.09310514674080905, 0.5084920166510624, 0.33067609257366243, 0.36481899584296196, 0.5708968386647719, 0.3194802059637459, 0.14207297841267416, 0.5776897120055972, 0.2026163425795633, 0.37909000048748537, 0.38206764842015895, 0.41324683104354176, 0.17826143731067332, 0.42339414872454434, 0.39148091864802853, 0.3511350413575442, 0.8053393751847749, 0.5937005322868365, 0.6849942580153355, 0.38930033076762494, 0.5168500865319015, 0.5699073288866824, 0.5376087249833421, 0.8185832461647057, 0.25950508036415604, 0.20394483716883388, 0.3303044530853749, 0.2528102968078532, 0.8477719856767125, 0.5217124250004609, 0.3303044530853749, 0.5382885532339231, 0.9625763866028243, 0.6536174904341296, 0.42629475072919953, 0.6458781618432388, 0.46574001023909845, 0.37268733756108086, 0.8180085473348132, 0.35493594975273335, 0.2423640089427935, 0.3636330633241046, 0.6421622311157122, 0.5444201651108793, 0.7396308412796291, 0.9036153464846048, 0.21101569987323432, 0.6004024464464508, 0.7595861882737439, 0.486549602332862, 0.2379839758891197, 0.5147825233229498, 0.2065932277190248, 0.4342628292980428, 0.5940848250235929, 0.4857193175270624, 0.5332610244722983, 0.5402196969638672, 0.8578846895389459, 0.5290225674595067, 0.6074669506688956, 0.1847839155105034, 0.3581391437324269, 0.4304380754474639, 0.8410120374942113, 0.5810086483513661, 0.19026233744636453, 0.7223494520380469, 0.8589928738613049, 0.8374625942163022, 0.781203852328267, 0.73983195178881, 0.41156537259256004, 0.7482873396984137, 0.44431713201158524, 0.7113673874393347, 0.49869552495399233, 0.7627102864663872, 0.37193390769028617, 0.37187810520956766, 0.3773291605703562, 0.8719651627687759, 0.6218762459828849, 0.3781393537983126, 0.553632248395139, 0.47624084907999176, 0.774399353278846, 0.5840424935194366, 0.5601025471409736, 0.6186690618327106, 0.620611700356168, 0.5755798886129706, 0.15047650536569443, 0.5530049338021776, 0.6597439619439023, 0.8300222117931148, 0.3490158529243493, 0.4410646109528086, 0.5067909967309752, 0.5851482063434866, 0.7149827463187939, 0.4849259975950144, 0.2094210588097294, 0.33399024531412796, 0.4083143545243069, 0.7497022835596558, 0.7817929239213606, 0.7637421953724776, 0.3825655414920891, 0.6611482494098961, 0.19022241257108333, 0.44972084577511023, 0.5476732603321269, 0.4831274653996314, 0.5077048340566679, 0.7289504589448288, 0.4379810490617926, 0.8017221455714771, 0.6434673631716396, 0.5059779734745421, 0.6065367192264559, 0.650368705032214, 0.34567471266024347, 0.39561589000187136, 0.3427787545601037, 0.4676404271158623, 0.5332283386400669, 0.4519108142444285, 0.40662831629925006, 0.42305576187259053, 0.22032895172816622, 0.5278715769330472, 0.43679486629948455, 0.743933429392776, 0.5269515041023835, 0.5008800654866953, 0.214168174561682, 0.44879088851457377, 0.683485355417811, 0.807753104897186, 0.42629475072919953, 0.8502951424821861, 0.17421175568219957, 0.25491371883486935, 0.7595861882737439, 0.6571724132942184, 0.7813188949129265, 0.5626906653340306, 0.8674288259883418, 0.6600514650598344, 0.4827749661719035, 0.5456147119159479, 0.39827550056677263, 0.27323823737433794, 0.695896529362927, 0.5048820477254727, 0.5422349097465021, 0.5610936746718964, 0.6571724132942184, 0.3088751107498249, 0.45428761266464013, 0.6604471727860799, 0.43371621376298963, 0.6171893197168647, 0.8100511550343341, 0.8100511550343341, 0.605832578461134, 0.5526475584669951, 0.4275055171336787, 0.8734720021260204, 0.8508295378350301, 0.5807723706867254, 0.8272749548927728, 0.2670652478909882, 0.7020144194675465, 0.4615566916191992, 0.7055847950248242, 0.43389869234556755, 0.6071692164257629, 0.3496825637352313, 0.23676491619791426, 0.7057755976874825, 0.15539001443149586, 0.6187538615870153, 0.8735882828904331, 0.30049486749739024, 0.23191705420611952, 0.8913917397916864, 0.4977157214618499, 0.16961113509580228, 0.8485494795219795, 0.4760032757956232, 0.5053843099270294, 0.2676015269871764, 0.3627664421236291, 0.15146266807038725, 0.7898179638281774, 0.6145296307645981, 0.3790380236797623, 0.3003532640340299, 0.6086112016774773, 0.39906793889171593, 0.8185832461647057, 0.6715802865662828, 0.8260225289794664, 0.6056902064850618, 0.400132762133902, 0.39471961640683584, 0.6449859309106076, 0.5637152910565628, 0.39949420960438964, 0.5490401551410112, 0.4398875418860128, 0.30916577334906253, 0.7093303227687476, 0.4562508424819209, 0.40444044759428516, 0.5773483646962835, 0.447777692034652, 0.4961542215384683, 0.32474312180562226, 0.21192693199409943, 0.9056903490933487, 0.5013816399998683, 0.758876109553896, 0.6364928148646596, 0.2952804752502578, 0.4748951900520853, 0.43679486629948455, 0.5479962315186364, 0.4728142838839701, 0.6343341418527783, 0.12248807650217919, 0.5052525886146573, 0.8281252124183194, 0.8930081609652758, 0.36283726088930296, 0.8098196742550625, 0.656477404357746, 0.193885049884708, 0.5269515041023835, 0.49858469647139786, 0.32780472036158087, 0.24927512797396847, 0.6148718578314069, 0.10691527318901187, 0.136775438340409, 0.8489192718114075, 0.2600203086082801, 0.8142007211296887, 0.5269515041023835, 0.7966615933629455, 0.5633234794197017, 0.767479452333631], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"sulphates\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"sulphates\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}, \"sulphates_bad\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (ref)\", \"type\": \"scatter\", \"x\": [0.42, 0.41, 0.41, 0.58, 0.51, 0.54, 0.57, 0.67, 0.5, 0.49, 1.17, 0.63, 0.4, 0.42, 0.43, 0.43, 0.6, 0.48, 0.5, 0.49, 0.45, 0.36, 0.6, 0.47, 0.81, 0.65, 0.5, 0.62, 0.5, 0.43, 0.56, 0.55, 0.55, 0.78, 0.44, 0.46, 0.36, 0.35, 0.63, 0.42, 0.48, 0.68, 0.46, 0.43, 0.5, 0.5, 0.47, 0.52, 0.64, 0.62, 0.57, 0.5, 0.38, 0.44, 0.6, 0.51, 0.43, 0.57, 0.52, 0.88, 0.57, 0.47, 0.52, 0.39, 0.48, 0.45, 0.6, 0.45, 0.64, 0.37, 0.32, 0.58, 0.46, 0.5, 0.38, 0.42, 0.38, 0.7, 0.58, 0.48, 0.5, 0.54, 0.47, 0.43, 0.62, 0.56, 0.44, 0.32, 0.29, 0.39, 0.58, 0.38, 0.66, 0.46, 0.44, 0.48, 0.4, 0.58, 0.48, 0.5, 0.47, 0.65, 0.64, 0.55, 0.53, 1.31, 0.43, 0.34, 0.57, 0.44, 0.62, 0.4, 0.56, 0.44, 0.64, 0.49, 0.5, 0.62, 0.57, 0.38, 0.46, 0.6, 0.51, 0.29, 0.49, 0.5, 0.67, 0.55, 0.59, 0.5, 0.28, 0.64, 0.4, 0.49, 0.49, 0.42, 0.35, 0.54, 0.45, 0.51, 0.53, 0.5, 0.34, 0.5, 0.48, 0.4, 0.66, 0.38, 0.56, 0.7, 0.52, 0.53, 0.42, 0.61, 0.39, 0.5, 0.95, 0.39, 0.39, 0.28, 0.36, 0.6, 0.57, 0.48, 0.39, 0.46, 0.48, 0.54, 0.57, 0.42, 0.51, 0.39, 0.49, 0.8, 0.67, 0.53, 0.47, 0.57, 0.59, 0.39, 0.49, 0.48, 0.5, 0.47, 0.46, 0.36, 0.59, 0.36, 0.52, 0.47, 0.44, 0.56, 0.6, 0.4, 0.54, 0.49, 0.54, 0.53, 0.68, 0.41, 0.71, 0.75, 0.75, 0.57, 0.73, 0.43, 0.39, 0.5, 0.58, 0.31, 0.42, 0.49, 0.44, 0.43, 0.56, 0.47, 0.53, 0.29, 0.48, 0.29, 0.47, 0.39, 0.6, 0.44, 0.38, 0.52, 0.38, 0.66, 0.51, 0.52, 0.43, 0.43, 0.44, 0.51, 0.66, 0.35, 0.53, 0.37, 0.61, 0.63, 0.71, 0.53, 0.52, 0.48, 0.39, 0.57, 0.55, 0.52, 0.39, 0.6, 0.67, 0.47, 0.55, 0.47, 0.51, 0.51, 0.79, 0.32, 0.58, 0.49, 0.41, 0.62, 0.38, 0.4, 0.43, 0.34, 0.6, 0.43, 0.97, 0.54, 0.43, 0.67, 0.55, 0.58, 0.45, 0.58, 0.48, 0.54, 0.38, 0.52, 0.52, 0.66, 0.49, 0.6, 0.35, 0.52, 0.64, 0.39, 0.39, 0.41, 0.62, 0.69, 0.37, 0.48, 0.48, 0.98, 0.52, 0.49, 0.46, 0.59, 0.73, 0.44, 0.53, 0.49, 0.53, 0.38, 0.61, 0.56, 1.05, 0.47, 0.4, 0.48, 0.66, 0.48, 0.99, 0.43, 0.51, 0.61, 0.56, 0.65, 0.63, 0.5, 0.44, 0.59, 0.46, 0.4, 0.84, 0.7, 0.51, 0.46, 0.5, 0.62, 0.51, 0.69, 0.45, 0.57, 0.45, 0.64, 0.4, 0.5, 0.46, 0.5, 0.51, 0.51, 0.51, 0.65, 0.71, 0.48, 0.47, 0.56, 0.35, 0.57, 0.64, 0.63, 0.66], \"xaxis\": \"x\", \"y\": [0.7197707895473677, 0.05448058807241418, 0.5021256787650443, 0.4710854375480472, 0.7156076129280222, 0.7966690429773311, 0.7265425252145667, 0.16771266951545494, 0.610944103187451, 0.6324527530146118, 0.42180662537268765, 0.2598044700255929, 0.5503032830239416, 0.5632112185661304, 0.6840604465833231, 0.6224375641140001, 0.8071781895370533, 0.9515482366939344, 0.3994071349416132, 0.9677746238863042, 0.572587586261062, 0.7602674855798478, 0.861098734498427, 0.1386074727873, 0.6703360831713621, 0.8064003460928679, 0.3172728283240366, 0.8039094494444462, 0.9186426431335688, 0.6026275969807151, 0.8609701260317718, 0.3485833566260712, 0.3005246278528939, 0.2859113263741919, 0.4978204971029292, 0.5125675444128744, 0.4268860326359044, 0.11791793574572085, 0.440027850275134, 0.4938434408506086, 0.4933189622152446, 0.166194347192407, 0.30200278364192557, 0.6822425768461728, 0.8693180940701344, 0.24112389044610405, 0.43189370387303117, 0.284455178085937, 0.23793737479647703, 0.5535561322468214, 0.7900402576908969, 0.47373775892899717, 0.6055733033081183, 0.7462675017011632, 0.32245623572553406, 0.7612367841042231, 0.36308410170653527, 0.6103993963703384, 0.3965676277125745, 0.2230008284200371, 0.8480025164595866, 0.43585875500482685, 0.24095331994381775, 0.4030652094068704, 0.8951637220162157, 0.2782175630406618, 0.7337660836226194, 0.8352762102164887, 0.6223987562306759, 0.2928263700360406, 0.6563137004068428, 0.16155652477357085, 0.6364666355122575, 0.2186811050870735, 0.27206300237801306, 0.4358901152617537, 0.6136035252376228, 0.07900866299327158, 0.8522855318359817, 0.11906253414448076, 0.3466831105240652, 0.11265227152414181, 0.6302693732121377, 0.7168097665217413, 0.4796298258249143, 0.4476252306691143, 0.3612478268219491, 0.611861930499026, 0.15121036728507153, 0.5363393546692182, 0.16155652477357085, 0.441733396330222, 0.7834276811132227, 0.6364666355122575, 0.44873286860252337, 0.4948960601400133, 0.4172084246960842, 0.5055831714989107, 0.5269082808529498, 0.3737404408311804, 0.4491757516278906, 0.5266720849021, 0.2882430633103308, 0.6066213483726142, 0.83534933450756, 0.2509605867776752, 0.230738949997912, 0.25680675940048736, 0.6858999083789018, 0.27626495444752697, 0.35158671089680515, 0.311480105980391, 0.5950329577300569, 0.4196263877039489, 0.3672198477254309, 0.5488429300958864, 0.6273126624389191, 0.0990306898864649, 0.935036100419004, 0.5556828679884147, 0.6003916802566726, 0.1337843055401957, 0.6898191889393818, 0.46604488826349566, 0.6668872608045229, 0.5998672378660981, 0.14712454771937833, 0.8558065212045691, 0.883276495704891, 0.5544329747085402, 0.38398791005853006, 0.8623310715459079, 0.4482795971615686, 0.4767821080964978, 0.6451659669426603, 0.5099786295438409, 0.11454219273407718, 0.5691587732433696, 0.2398813672346335, 0.8592796956842923, 0.38133093816728936, 0.4754945767078651, 0.2673740541283356, 0.43092180164799054, 0.5981491184574936, 0.7512253043619477, 0.20474988026063612, 0.12337786436138054, 0.6965484670033051, 0.4642254518352117, 0.29034758521725457, 0.7912282271603185, 0.1364389858241727, 0.5326323768611896, 0.3938848007926149, 0.886984727126295, 0.5955398539691413, 0.3667393936023857, 0.35129461810907203, 0.578130474122496, 0.1952086434691429, 0.6982941690158907, 0.6159300986783536, 0.6650580695700093, 0.8007006003287879, 0.13750802167619447, 0.47121416359091395, 0.5691587732433696, 0.5295784007050042, 0.4938434408506086, 0.4240508430342457, 0.1531205555636086, 0.7965770364050346, 0.4829168465516456, 0.6333246955344933, 0.38682769986244625, 0.5589353890471914, 0.30965836575156913, 0.6133571507425741, 0.5363393546692182, 0.5474540697204298, 0.9680074395956593, 0.29703705077451537, 0.7566858385458134, 0.451244026180727, 0.6224939697452743, 0.9340693900855184, 0.1254375450851024, 0.770680513376406, 0.7273231109206828, 0.410671569380914, 0.19928392436820586, 0.44743622108127745, 0.4991477681643879, 0.5443787589855091, 0.826082779912576, 0.5642536294664222, 0.6762559922350657, 0.39283078357423706, 0.3074847569358159, 0.40732461839200396, 0.5614584986504241, 0.5614584986504241, 0.575628870274347, 0.1938881144566701, 0.6480440770440566, 0.23946299348505806, 0.6110142157087575, 0.32489046344192996, 0.127020290619695, 0.28948900574123104, 0.27970970921902805, 0.5179212029104148, 0.579807192000203, 0.5695619245525361, 0.7471497674522103, 0.6761943115269239, 0.6052803835931642, 0.9048996801452402, 0.632953623191418, 0.7849920634816455, 0.12946409768986655, 0.3899257470968539, 0.37735505673750047, 0.27206300237801306, 0.6356505945299911, 0.9000798247851504, 0.5852448485124296, 0.3537739535016634, 0.8589709040748648, 0.5105041430354158, 0.4760479563081992, 0.3915586115462193, 0.4344526143297297, 0.04825794875232026, 0.25106204840173363, 0.5352062615150248, 0.2084678736174792, 0.5588772074146924, 0.42656597432725707, 0.3395528272139201, 0.5154796814541086, 0.30312695461308037, 0.4684625037801391, 0.13140485141127656, 0.37575572516499556, 0.7087902803012941, 0.22740617784346517, 0.7932370230268412, 0.6977827466507267, 0.8687065743771458, 0.3532210556477622, 0.3005246278528939, 0.8817461779308045, 0.5897758288136841, 0.5117334773877459, 0.2267712913026929, 0.7462523759498982, 0.5055831714989107, 0.6276122794572256, 0.34766968675436505, 0.563322001169588, 0.4035281086421867, 0.44827723495654004, 0.7588644006503809, 0.17560197311170134, 0.2736156405730563, 0.5646478519097824, 0.12788772013874206, 0.8127608550985441, 0.35130933230290007, 0.8842329534318195, 0.5671758377024384, 0.508518787579709, 0.4735654621913231, 0.6614347321502836, 0.7032589073748752, 0.418601168771625, 0.40262233345395115, 0.38045938978299354, 0.6221728234115828, 0.6769388667590319, 0.825791915264051, 0.8036522945246104, 0.5350776523934957, 0.5038683203672731, 0.4187790963850706, 0.3942708224564714, 0.36585282612655, 0.42973128126448334, 0.1395024853671747, 0.36909778672938764, 0.5126700875045708, 0.31128511290513083, 0.5841805470690385, 0.42932394036482613, 0.5168725346003686, 0.9331527243268325, 0.5090935678835011, 0.848083892739094, 0.7288594688776423, 0.23463814542978878, 0.9073343486287574, 0.5445649372592127, 0.8030108083542629, 0.30698149193503155, 0.47724620771884374, 0.49565431290071005, 0.29179072192325783, 0.53941953634433, 0.32642767658125227, 0.5714063949384225, 0.6769388667590319, 0.48314991346809855, 0.3838692085325581, 0.7654355578102645, 0.6807995217458978, 0.7803105409218809, 0.4971816769068883, 0.5662837862370104, 0.32557907866588853, 0.4059739580227363, 0.8621668957327787, 0.4863555612469991, 0.44913520001249685, 0.5044088987161788, 0.018560580499064172, 0.17397747102053363, 0.8203404366189, 0.531551035274026, 0.3951880410340851, 0.6710839680909022, 0.7545393605546251, 0.25029771644034415, 0.31651464458218903, 0.7900402576908969, 0.7649542174153934, 0.6282404390050247, 0.5124469561170844, 0.7501741577575001, 0.3717170374651112, 0.5479204837841629, 0.1799627586960565, 0.8716748635647116, 0.4700369344869263, 0.7044722268129955, 0.7597806244765397, 0.4570971226262448, 0.3688130253756654, 0.5854022956087224, 0.6067015953642416, 0.6092966434658947, 0.5713009051869427, 0.15316343939585397, 0.31191498773739224], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [0.42, 0.54, 0.53, 0.49, 0.54, 0.54, 0.53, 0.5, 0.38, 0.38, 0.34, 0.54, 0.37, 0.44, 0.67, 0.45, 0.37, 0.68, 0.48, 0.34, 0.56, 0.59, 0.42, 0.4, 0.32, 0.54, 0.4, 0.35, 0.4, 0.39, 0.42, 0.65, 0.39, 0.9, 0.63, 0.48, 0.55, 0.41, 0.53, 0.75, 0.38, 0.44, 0.71, 0.41, 0.49, 0.4, 0.47, 0.45, 1.13, 0.37, 0.37, 0.58, 0.41, 0.47, 0.54, 0.38, 0.48, 0.32, 0.29, 0.58, 0.57, 0.48, 0.41, 0.51, 0.68, 0.59, 0.39, 0.35, 0.46, 0.22, 0.64, 0.26, 0.4, 0.51, 0.69, 0.46, 0.86, 0.33, 0.75, 0.32, 0.72, 0.36, 0.51, 0.46, 0.41, 0.72, 0.48, 0.91, 0.48, 0.67, 0.51, 0.58, 0.67, 0.52, 0.44, 0.4, 0.38, 0.42, 0.48, 0.62, 0.4, 0.46, 0.69, 0.64, 0.36, 0.5, 0.45, 0.42, 0.76, 0.56, 0.45, 0.38, 0.54, 0.76, 0.44, 0.53, 0.54, 0.5, 0.59, 0.85, 0.52, 0.61, 0.41, 0.53, 0.46, 0.54, 0.56, 0.53, 0.56, 0.96, 0.39, 0.83, 0.41, 0.85, 0.5, 0.34, 0.64, 0.6, 0.47, 0.74, 0.44, 0.46, 0.52, 0.59, 0.67, 0.62, 0.78, 0.36, 0.6, 0.35, 0.39, 0.68, 0.54, 0.43, 0.54, 0.53, 0.41, 0.41, 0.41, 0.43, 0.48, 0.58, 0.5, 0.96, 0.69, 0.5, 0.49, 0.33, 0.41, 0.33, 0.79, 0.59, 0.51, 0.39, 0.57, 0.38, 0.56, 0.54, 0.43, 0.69, 0.57, 0.48, 0.8, 0.43, 0.47, 0.5, 0.39, 0.64, 0.52, 0.51, 0.48, 0.63, 0.51, 0.46, 0.53, 0.38, 0.46, 0.55, 0.47, 0.5, 0.49, 0.71, 0.58, 0.89, 0.63, 0.81, 0.94, 0.41, 0.41, 0.46, 0.38, 0.54, 0.48, 0.46, 0.39, 0.6, 0.43, 0.48, 0.38, 0.63, 0.54, 0.39, 0.46, 0.6, 0.72, 0.49, 0.53, 0.78, 0.55, 0.44, 0.54, 0.41, 0.6, 0.56, 0.58, 0.48, 0.69, 0.57, 0.43, 0.4, 0.46, 0.48, 0.43, 0.54, 0.59, 0.39, 0.5, 0.49, 0.44, 0.42, 0.69, 0.49, 0.76, 0.83, 0.65, 0.4, 0.34, 0.45, 0.44, 0.57, 0.37, 0.42, 0.5, 0.76, 0.62, 0.41, 0.43, 0.57, 0.83, 0.48, 0.54, 0.49, 0.47, 0.57, 0.49, 0.46, 0.45, 0.85, 0.63, 0.46, 0.37, 0.37, 0.52, 0.58, 0.49, 0.73, 0.62, 0.46, 0.66, 0.35, 0.58, 0.59, 0.62, 0.43, 0.59, 0.4, 0.7, 0.42, 0.68, 0.58, 0.66, 0.58, 0.61, 0.42, 0.42, 0.85, 0.37, 0.64, 0.47, 0.56, 0.59, 0.42, 0.67, 0.79, 0.42, 0.67, 0.58, 0.42, 0.63, 0.46, 0.56, 0.64, 0.66, 0.79, 0.5, 0.67, 0.36, 0.69, 0.58, 0.49, 0.37, 0.44, 0.82, 0.61, 0.54, 0.52, 0.54, 0.78, 0.64, 0.53, 0.51, 0.33, 0.64, 0.72, 0.68, 0.41, 0.54, 0.55, 0.38, 0.46, 0.4, 0.66, 0.45, 0.51, 0.5, 0.5, 0.72, 0.37, 0.97, 0.38, 0.63, 0.43, 1.36, 0.84, 0.58, 0.49, 0.54, 0.38, 0.86, 0.52, 0.42, 0.53, 0.53, 0.34, 0.62, 0.34, 0.5, 0.6, 0.44, 0.62, 0.69, 0.46, 0.62, 0.55, 0.4, 0.54, 0.77, 0.77, 0.6, 0.45, 0.47, 0.45, 0.45, 0.41, 0.54, 0.66, 0.49, 0.42, 0.31, 0.54, 0.57, 0.58, 0.65, 0.67, 0.37, 0.53, 0.38, 0.53, 0.67, 0.37, 0.61, 0.49, 0.69, 0.44, 0.33, 0.48, 0.46, 0.59, 0.51, 0.4, 0.55, 0.49, 0.39, 0.39, 0.4, 0.4, 0.32, 0.42, 0.46, 0.47, 0.38, 0.63, 0.58, 0.44, 0.44, 0.34, 0.68, 0.66, 0.79, 1.02, 0.35, 0.41, 0.61, 0.36, 0.59, 0.46, 0.59, 0.56, 0.9, 0.42, 0.38, 0.42, 0.4, 0.51, 0.57, 0.6, 0.35, 0.61, 0.5, 0.38, 0.66, 0.59, 0.91, 0.5, 0.35, 0.68, 0.42, 0.48, 0.5, 0.9, 0.54, 0.6, 0.44, 0.47, 0.67, 0.25, 0.68, 0.54, 0.52, 0.46, 0.57, 0.61, 0.46, 0.64, 0.45, 0.38, 0.46, 0.54, 0.39, 0.56, 0.71, 0.58, 0.38, 0.72, 0.52, 0.49, 0.38, 0.5, 0.53, 0.6, 0.54, 0.31, 0.46, 0.44, 0.37, 0.52, 0.43, 0.45, 0.36, 0.44, 0.46, 0.47, 0.59, 0.46, 0.5, 0.39, 0.62, 0.54, 0.59, 0.57, 0.45, 0.43, 0.34, 0.51, 0.58, 0.36, 0.73, 0.72, 0.42, 0.38, 0.77, 0.6, 0.44, 0.54, 0.42, 0.67, 0.53, 0.96, 0.54, 0.64, 0.55, 0.39, 0.6, 0.48, 0.44, 0.43, 0.65, 0.36, 0.51, 0.59, 0.67, 0.43, 0.64, 0.84, 0.49, 0.62, 0.4, 0.56, 0.61, 0.54, 0.54, 0.49, 0.51, 0.53, 0.73, 0.33, 0.37, 0.59, 0.4, 0.55, 0.47, 0.53, 1.06, 0.49, 0.65, 0.4, 0.43, 0.47, 0.59, 0.45, 0.43, 0.6, 0.42, 0.93, 0.38, 0.53, 0.53, 0.52, 0.61, 0.62, 1.95, 0.35, 0.48, 0.39, 0.57, 0.68, 0.49, 0.92, 0.49, 0.58, 0.47, 0.9, 0.5, 0.53, 0.92, 0.5, 0.74, 0.41, 0.49, 0.41, 0.34, 0.69, 0.55, 0.77, 0.38, 0.72, 0.59, 0.4, 0.73, 1.36, 0.77, 0.58, 0.66, 0.6, 0.58, 0.5, 0.79, 0.36, 0.5, 0.62, 0.44, 0.56, 0.5, 0.56, 0.46, 0.53, 0.78, 0.5, 0.65, 0.58, 0.53, 0.98, 0.44, 0.46, 0.95], \"xaxis\": \"x\", \"y\": [0.18439386755371057, 0.5750868907731637, 0.1132172353536568, 0.19850047615697952, 0.6950004168934912, 0.41826441672946313, 0.040828937665112974, 0.2145583871630251, 0.09143093017991866, 0.10013996234885614, 0.3658834999306372, 0.587897812361327, 0.23563705889496211, 0.5289998061994394, 0.5981734696485812, 0.5956194363709464, 0.11295199838815062, 0.6349332021584286, 0.09356782907078887, 0.0672754654033908, 0.3541579814831264, 0.11781588709523827, 0.3295981493457443, 0.23443288181779365, 0.13830133810679424, 0.5122546205578999, 0.03626449638205209, 0.32057959349203036, 0.3955164844050859, 0.21320459763992916, 0.08620177311633537, 0.4132497936565127, 0.19514157099220286, 0.028148892894647393, 0.03728071159582558, 0.20213762816504022, 0.39088790332760825, 0.10566618212719892, 0.11466232649727714, 0.09544364959788487, 0.07351553674018241, 0.3657542344632553, 0.05859665738698361, 0.43634835962676355, 0.4827032077898804, 0.516310366273556, 0.6480037931050455, 0.21122004543372697, 0.030344760075157406, 0.22750344576024595, 0.18673438423788624, 0.5460909738859347, 0.0666291073587214, 0.320234954276134, 0.515425573770442, 0.5751179393061847, 0.3262180383913996, 0.12192585741802231, 0.6165939755266235, 0.09365914315081003, 0.44259853952477324, 0.31958523161407537, 0.09228899111547839, 0.22815273642701062, 0.5282447951108347, 0.7777719169155834, 0.13834506443323813, 0.29425092810710396, 0.5300870647699181, 0.031947521718024174, 0.1108646816717751, 0.053339747820140615, 0.14466174791529418, 0.25697560969337485, 0.3383868137798065, 0.30803904997837983, 0.03434255320493995, 0.08689109251212201, 0.46044782253877736, 0.0973761441498977, 0.3449058470623745, 0.024212367984770777, 0.11665042079727428, 0.3333970234137619, 0.1495417879159372, 0.0679784404121434, 0.2360052425084116, 0.39147703437781534, 0.04428683932015287, 0.5381556738404795, 0.4357341587922019, 0.11843845992675284, 0.28107964630818494, 0.06989794698232743, 0.2658605825653322, 0.22408104406272966, 0.15519213452661884, 0.09873339188795927, 0.10739713799337769, 0.4712507279726723, 0.31257930793611366, 0.6259141532505736, 0.1651629894813923, 0.13024327386797574, 0.08242409751896962, 0.55355901104019, 0.11256152515999429, 0.22124325125588817, 0.05838775174278421, 0.6734770756819889, 0.06919042490492266, 0.5773286546676725, 0.5693181878572973, 0.12726917141891614, 0.27983888222674136, 0.15690954109554833, 0.18593824584442387, 0.05432525584274117, 0.33273366741371935, 0.12435295831370408, 0.48112847828662497, 0.2959384652215836, 0.5042039768350125, 0.3749869638443927, 0.7258627386781167, 0.4806866421912115, 0.6234335830956541, 0.4191951896523489, 0.20821728825178332, 0.6343085651912675, 0.27674577061671146, 0.02140654255666985, 0.42849246998341506, 0.1817444030106703, 0.4551538855951942, 0.05087080041524106, 0.516641204200833, 0.6810720245435042, 0.08151744899857294, 0.4475169494323581, 0.03995706953508171, 0.2181819033834006, 0.20372897255157485, 0.24305701296248816, 0.5381556738404795, 0.2358485729609252, 0.051323642447754336, 0.1913631294907303, 0.32154631204965056, 0.31229802093755377, 0.3917329141436472, 0.39462053822053156, 0.3680669306910641, 0.5017894292511481, 0.32120711190509066, 0.0768019282386515, 0.1168769044932052, 0.31545143431826594, 0.12007957373947853, 0.08354361700756141, 0.2180731800932174, 0.7653011157176768, 0.05076221583963347, 0.11739077279846111, 0.3639458403519926, 0.4815918747301601, 0.35998732468747585, 0.457353694020342, 0.5520498791697908, 0.22168281241722143, 0.2132287846887433, 0.4763394582576197, 0.3040153802820409, 0.20749766415549342, 0.3316810644107503, 0.8126297477835096, 0.5749367295182395, 0.27274039590582944, 0.2685808245693546, 0.5172108675362206, 0.33506587713796443, 0.09616672688355288, 0.041108213935392324, 0.10548050716105373, 0.5016695616404938, 0.20022874051447226, 0.14220640128276774, 0.23772630779738468, 0.19606080251004787, 0.2603188495268066, 0.18846597668723208, 0.19827111133563302, 0.261548791893628, 0.4140325207077993, 0.8134796325151183, 0.12265695643958285, 0.6311167068993262, 0.13481820177301163, 0.0932384579037443, 0.14050160114126486, 0.2562249115981724, 0.08547750670655718, 0.08643201081848362, 0.19981675431015722, 0.31390222338706264, 0.06221739913672386, 0.06996303880871468, 0.30029370289300306, 0.4306817897420764, 0.6595343859760441, 0.2839408857911616, 0.20468539219890003, 0.1130196126722065, 0.2360017176902124, 0.13187147729288817, 0.42313120297864704, 0.06964897436687001, 0.1624399718171824, 0.17200815643270417, 0.07333105637055992, 0.2440137653363641, 0.4900110333069776, 0.3085554157386313, 0.03480496731142946, 0.12148031785507996, 0.15002971926037112, 0.5314247042003052, 0.2758453007685677, 0.2151852748992088, 0.2658605825653322, 0.29911225563077193, 0.6594110243744711, 0.49869782335001445, 0.16788254706683048, 0.11816213334465087, 0.08230909248122409, 0.13653212507346946, 0.25639170942272826, 0.06562233405876228, 0.23311900627036541, 0.3756616197417655, 0.46674395287949066, 0.3092684534350997, 0.8337319641197457, 0.8331457111467163, 0.2591056156836542, 0.4778687671024334, 0.2542440524586721, 0.5361036306539362, 0.07073721340803463, 0.4731688813159418, 0.5755848065786346, 0.356689463387698, 0.14225616860197343, 0.21837916002376445, 0.14466174791529418, 0.29899643271856946, 0.4757427727983842, 0.08126799884203029, 0.1296501822378736, 0.3286954654423938, 0.08620177311633537, 0.13855855420831553, 0.05543377339452393, 0.11917834098009661, 0.2613621884509647, 0.11269900223777074, 0.08429051026621415, 0.3393961441870107, 0.07031960314855146, 0.11356777592095357, 0.4853279864284006, 0.1279289285514792, 0.0584572339054259, 0.08612988585012649, 0.3472440907423937, 0.1248029959061332, 0.07502335399434323, 0.19827111133563302, 0.3424151534036639, 0.3065175956815872, 0.13808860398564737, 0.058092197534895806, 0.04082786106581715, 0.1602592849246841, 0.09156161599234125, 0.5036030690663805, 0.2640411824475748, 0.6468038092930676, 0.07201805208597656, 0.22470230804277058, 0.1334773721572423, 0.04847889440667685, 0.2685808245693546, 0.10911308148570098, 0.6764508967260475, 0.6280060594576413, 0.36761958218269275, 0.16019930342079847, 0.17605308658107655, 0.14078981831089854, 0.2384997092801764, 0.13117402490907393, 0.12818959986091483, 0.4161925244315118, 0.12435295831370408, 0.09814942480303201, 0.05480698563416486, 0.3746187330143109, 0.41092354232892336, 0.507894749900129, 0.5137929421583434, 0.08293523366016065, 0.2964416548030494, 0.15236141109070434, 0.4396941021426354, 0.41893931094950754, 0.09113953260801844, 0.10967473999240707, 0.055732078845942, 0.05640314085190745, 0.06176263301115803, 0.06427139521062619, 0.20386133178572885, 0.21597661143113533, 0.7486409492386699, 0.2610715902497083, 0.09465277491899493, 0.5556171757583562, 0.137718889647652, 0.1978940751503777, 0.08472590699531857, 0.356262641598029, 0.14596950445002987, 0.13865818299932142, 0.3088915816821678, 0.11516321289421916, 0.16121169033174265, 0.40573483691789825, 0.34308606282264, 0.36300204724896845, 0.17193414756867276, 0.035926383178341514, 0.34536882843285344, 0.4400180463892147, 0.5165194668234709, 0.23319834124303085, 0.9637923675569924, 0.2635599134550337, 0.6259141532505736, 0.12324962258280003, 0.1256037712827487, 0.1248029959061332, 0.11665042079727428, 0.29081136443782263, 0.12993062945549005, 0.20959981847797426, 0.12385816607190492, 0.16931651488884025, 0.2468284110987674, 0.6181879252747016, 0.3509541008179864, 0.08619429866610873, 0.09537770951135394, 0.8204393830764495, 0.2493836920976743, 0.10367142046182065, 0.11516383353466464, 0.07169627826225977, 0.5400384130096556, 0.2709141565803237, 0.16809050322974173, 0.3421981324687273, 0.812724325423183, 0.1326589750154965, 0.054670132935181304, 0.055346153509382656, 0.8039442695404772, 0.3276168958360183, 0.6561718697940482, 0.6214102617950452, 0.3046829516703813, 0.7853649284745584, 0.7303620793003476, 0.6719087507962026, 0.16000678121984613, 0.579612101366232, 0.6347749924714103, 0.41894393066564606, 0.06936532322770372, 0.28322834609079706, 0.343263893078516, 0.4450860003239352, 0.3090838478611311, 0.408095736797927, 0.11529682880263803, 0.13359771811640497, 0.2417229185475579, 0.10092265889692065, 0.8181934133883563, 0.3777834313813965, 0.8273808576462511, 0.18439353202429143, 0.5148786056082297, 0.11287077888712382, 0.16015059460472458, 0.29672938182784603, 0.36944561074938853, 0.2505850522824452, 0.8467591712977676, 0.3840267097226593, 0.261779448872241, 0.1645479955558209, 0.14631295673285594, 0.4248523287309329, 0.09222807982804315, 0.2121484308544801, 0.33273366741371935, 0.5470626312455473, 0.8294144697045585, 0.25206662215500397, 0.15998368749433245, 0.548322128117227, 0.3917329141436472, 0.15981565308588508, 0.23631147082452741, 0.21082920466209698, 0.1871387197916503, 0.24774693401855818, 0.1913242313933492, 0.16437448769677154, 0.07582203648947516, 0.032541140295091364, 0.06311143057978008, 0.5009235508757715, 0.12343879567504301, 0.445735807756371, 0.40322837553658053, 0.09397553936597514, 0.1598391281143201, 0.26702494168661406, 0.19782301216908982, 0.06831823449824892, 0.5451167746582685, 0.20142160156100697, 0.25747632252511843, 0.4257317671215596, 0.5062318064185062, 0.10278357133077332, 0.10857266292312517, 0.06223864817381186, 0.11377411494697365, 0.14082424186384768, 0.2589321903149734, 0.31776639873426016, 0.07983414941561229, 0.30174211068680845, 0.42532907678292176, 0.23734670470511587, 0.2862296469110084, 0.24790288035387664, 0.5526146374040077, 0.20425399436950087, 0.5166825128498294, 0.12415322942140417, 0.5310696157212036, 0.3866387435262121, 0.14313186082947948, 0.31648660326859934, 0.026792916001305622, 0.7856428374245099, 0.42383310375799566, 0.5944566396871084, 0.6256605001243821, 0.08813642250468567, 0.03544811528140901, 0.06935406654889886, 0.15751976448865512, 0.22608551288474832, 0.3127311228465576, 0.1409438166611655, 0.3285615524533705, 0.3591330499592894, 0.47964497307801546, 0.7143146030302826, 0.14223944449319303, 0.06929054967731618, 0.32120711190509066, 0.16913647442041335, 0.707286257884667, 0.3230684446475647, 0.7616845263358343, 0.4104900542879092, 0.10053249234255524, 0.1106599594415556, 0.1543174595222413, 0.46003879185641183, 0.3811350878514418, 0.07185070571861518, 0.23882593985771994, 0.5344976262521839, 0.11031385635331636, 0.09610989844306939, 0.4955559099445003, 0.07845190603324759, 0.30697262074812925, 0.12767551958037127, 0.4375661224395835, 0.07737023387634634, 0.15307682457740834, 0.05694427046787409, 0.09028836937410878, 0.4011292297732457, 0.6186146927451245, 0.11561676905211238, 0.0993047499370594, 0.08102401279833105, 0.8100206966555492, 0.10768932514586738, 0.15386113005635593, 0.4026560765644126, 0.045535707525545144, 0.08229583319403, 0.08227601457953415, 0.8241544781987433, 0.0759900855540333, 0.5147505197509459, 0.11103147778198663, 0.42144961755966015, 0.24880465403270857, 0.3112403223054312, 0.3282460941643247, 0.28312386083977936, 0.2865521931047814, 0.16537364909659502, 0.4284132019637321, 0.34116073112729894, 0.051142721309942685, 0.10794707492381372, 0.1108646816717751, 0.29201805921023904, 0.07365131996157204, 0.36851051207096197, 0.2556143611338999, 0.07392456180697715, 0.045535707525545144, 0.15025986810093994, 0.4395989822566938, 0.19636656988846957, 0.21018464628148859, 0.15085686628779282, 0.3429118439192298, 0.16104008564300487, 0.2055862423584408, 0.18673310211333727, 0.5528531989583015, 0.20219789553586287, 0.5807830339134155, 0.6112381610839525, 0.07515362639458067, 0.5722084734915175, 0.3654892991508686, 0.1991057466826236, 0.4912569401667811, 0.05850610073101081, 0.3077884117234785, 0.17038242498240874, 0.14066607718466684, 0.10248584652416493, 0.4022873718442217, 0.07205214632436985, 0.35142291824287475, 0.10941760034103376, 0.06679271580157364, 0.05675388891699207, 0.058987921856350156, 0.3660303223369904, 0.28790374422385034, 0.4158290962648631, 0.40710291595796666, 0.09934102670994882, 0.06362846635195196, 0.30921476208988685, 0.23242198019285765, 0.055541210656895434, 0.5297663836663529, 0.10744632778983743, 0.18410212910939194, 0.17721960751489196, 0.1962664672709783, 0.1617648996714035, 0.10584426414108294, 0.5203501665477333, 0.07365131996157204, 0.31578819840495265, 0.35364190165315845, 0.1707951928721818, 0.41655733121321636, 0.15801546378512366, 0.7568436608419439, 0.22368578646300386, 0.0609449253562836, 0.2225096762928218, 0.18587673368692093, 0.05559101133196209, 0.569598540521716, 0.08073228430722412, 0.15724041301590164, 0.12879141548479, 0.4306817897420764, 0.17998791969802397, 0.41280880088413996, 0.5723062335690389, 0.6457404130724687, 0.10420061808672998, 0.12564769853034463, 0.21795029564941848, 0.4720930498870375, 0.11304202998506685, 0.545112257205237, 0.14852188644910969, 0.17217029085021085, 0.336250902618187, 0.48671482860553816, 0.5093433434984792, 0.35847801144896685, 0.3008706318705062, 0.18494609259573758, 0.4199330463236065, 0.04162287990776414, 0.2633909944023186, 0.4252182303976608, 0.4684623303117058, 0.1925553058603695, 0.09610989844306939, 0.09129843496680234, 0.3302708189676917, 0.4199330463236065, 0.11927294568859859, 0.4864154015695107, 0.06472081497616611, 0.6387929002666255, 0.37932906694235924, 0.093713747684541, 0.20627971812824875], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (curr)\", \"type\": \"scatter\", \"x\": [0.78, 0.48, 0.33, 0.45, 0.47, 0.5, 0.51, 0.54, 0.67, 0.57, 0.49, 0.5, 0.52, 0.37, 0.57, 0.48, 0.38, 0.61, 0.81, 0.28, 0.72, 0.46, 0.49, 0.51, 0.66, 0.38, 0.52, 0.49, 0.4, 0.53, 0.44, 0.54, 0.46, 0.45, 0.51, 0.44, 0.48, 0.58, 0.41, 0.55, 0.38, 0.43, 0.81, 0.45, 0.41, 0.57, 0.61, 0.53, 0.5, 0.52, 0.7, 0.39, 0.34, 0.58, 0.49, 0.67, 0.65, 0.74, 0.35, 0.54, 0.74, 0.64, 0.47, 0.91, 0.47, 0.64, 1.34, 0.56, 0.56, 0.48, 0.69, 0.4, 0.46, 0.47, 0.37, 0.53, 0.52, 0.43, 0.46, 0.61, 0.39, 0.49, 0.42, 0.55, 0.37, 0.48, 0.44, 0.75, 0.42, 0.8, 0.34, 0.38, 0.7, 0.63, 0.73, 0.4, 0.34, 0.93, 0.46, 0.5, 0.43, 0.43, 0.48, 0.52, 0.46, 0.54, 0.7, 0.45, 0.41, 0.64, 0.46, 0.44, 0.75, 0.54, 0.46, 0.48, 0.67, 0.49, 0.48, 0.52, 0.37, 0.46, 0.6, 0.48, 0.54, 0.77, 0.48, 0.55, 0.54, 0.65, 0.4, 0.56, 0.63, 0.33, 0.48, 0.5, 0.7, 0.55, 0.4, 0.51, 0.42, 0.37, 0.31, 0.52, 0.63, 0.49, 0.52, 0.56, 0.54, 0.42, 0.34, 0.59, 0.72, 0.38, 0.52, 0.35, 0.4, 0.51, 0.46, 0.56, 0.57, 0.56, 0.68, 0.48, 0.5, 0.5, 0.38, 0.49, 0.38, 0.46, 0.6, 0.49, 0.38, 0.42, 0.58, 0.35, 0.31, 0.53, 0.45, 0.37, 0.39, 0.44, 0.61, 0.38, 0.52, 0.42, 0.4, 0.53, 0.59, 0.52, 0.57, 0.58, 0.5, 0.65, 0.49, 0.47, 0.46, 0.48, 0.78, 0.44, 0.52, 0.46, 0.45, 0.69, 0.3, 0.76, 0.46, 0.78, 0.33, 0.45, 0.61, 0.52, 0.64, 0.35, 0.47, 0.37, 0.57, 0.4, 0.5, 0.39, 0.46, 0.43, 0.47, 0.46, 0.45, 0.45, 0.64, 0.59, 0.39, 0.4, 0.51, 0.7, 0.37, 0.32, 0.82, 0.47, 0.45, 0.59, 0.63, 0.55, 0.72, 0.8, 0.52, 0.41, 0.5, 0.72, 0.88, 0.45, 0.52, 0.42, 0.64, 0.45, 0.42, 0.44, 0.44, 0.41, 0.41, 0.6, 0.58, 0.71, 0.65, 0.53, 0.68, 0.68, 0.49, 0.45, 0.56, 0.73, 0.44, 0.48, 0.5, 0.72, 0.41, 0.45, 0.53, 0.55, 0.68, 0.6, 0.54, 0.88, 0.53, 0.48, 0.38, 0.43, 0.88, 0.44, 0.39, 0.46, 0.28, 0.58, 0.5, 0.58, 0.52, 0.54, 0.58, 0.65, 0.42, 0.37, 0.51, 0.58, 0.46, 0.61, 0.7, 0.63, 0.5, 0.29, 0.53, 0.35, 0.58, 0.49, 0.58, 0.63, 0.62, 0.39, 0.56, 0.44, 0.46, 0.48, 0.64, 0.38, 0.61, 0.58, 0.5, 0.76, 0.52, 0.4, 0.51, 0.63, 0.48, 0.46, 0.56, 0.45, 0.5, 0.53, 0.55, 0.51, 0.51, 0.39, 0.37, 0.45, 0.45, 0.58, 0.6, 0.48, 0.63, 0.73, 0.49, 0.78, 0.37, 0.76, 0.56, 0.49], \"xaxis\": \"x2\", \"y\": [0.18579927887031134, 0.9274202256360236, 0.2569067617886446, 0.17851375722123963, 0.43011516789686843, 0.3951880410340851, 0.35333307802371594, 0.854899199395705, 0.7749695319329993, 0.7150752736216004, 0.5793836726576811, 0.17187478758168062, 0.503776006633781, 0.6517104478925241, 0.5321166645488455, 0.4291031613352281, 0.6295132227815239, 0.446367751604861, 0.12978626497489776, 0.578130474122496, 0.1303225049324246, 0.4589423036505589, 0.6028673022099313, 0.6724998803801079, 0.055171077290688375, 0.28900585249094113, 0.5807441942986169, 0.6324527530146118, 0.32780881811994433, 0.4437792729685527, 0.47375733914823626, 0.6755390392614542, 0.8494338455743565, 0.8432302027568838, 0.3962269303969661, 0.36574887203466033, 0.9780529644634413, 0.6757083557066426, 0.43212531492562845, 0.6428319532862445, 0.2244465690609686, 0.6759712108962084, 0.300575337785698, 0.4848467547623382, 0.24353241802821812, 0.6165640897352094, 0.801889943514816, 0.6831580296641933, 0.4684052737322374, 0.07309555507266852, 0.17397747102053363, 0.548208100621717, 0.16948307959681597, 0.5287139706981401, 0.8097217619362252, 0.48186532860504816, 0.7044722268129955, 0.5458559966555334, 0.6067015953642416, 0.5767206748937392, 0.5416109283549078, 0.7766135747357961, 0.6371580804073698, 0.3290646799011723, 0.53941953634433, 0.7444876216695655, 0.27658524567301757, 0.8518717737266248, 0.685064206005921, 0.7994946846943811, 0.6254668451144636, 0.29898447003196504, 0.36566585814722175, 0.8260679099411251, 0.265003746926769, 0.18277705216857454, 0.6401445853260315, 0.2878944788643705, 0.7379395090268356, 0.6578861964269485, 0.3048731186933995, 0.6479177870210828, 0.5479007895539181, 0.8109237991420157, 0.4555798348891207, 0.35159410271621183, 0.6741813074403022, 0.40366163192193316, 0.3797333752177462, 0.42326140605337403, 0.49450075158901585, 0.7027754368270075, 0.31556666432085356, 0.5737052492708005, 0.5594846166878963, 0.9879213229528466, 0.23907110553933086, 0.7604887601700165, 0.906894853259191, 0.49150798334893764, 0.6693239074263375, 0.635181004157038, 0.4291031613352281, 0.6805197940362542, 0.8579270215873258, 0.42231028799440284, 0.7973836574204367, 0.6209099995125147, 0.617932351579841, 0.5867531689564582, 0.8217385626893267, 0.5766058512754557, 0.6085190813519714, 0.6488649586424557, 0.19466062481522506, 0.4062994677131635, 0.31500574198466447, 0.6106996692323751, 0.48314991346809855, 0.4300926711133176, 0.4623912750166579, 0.18141675383529432, 0.7404949196358439, 0.7960551628311661, 0.6696955469146251, 0.7471897031921468, 0.15222801432328747, 0.4782875749995391, 0.6696955469146251, 0.4617114467660769, 0.0374236133971757, 0.34638250956587036, 0.5737052492708005, 0.35412183815676124, 0.5342599897609015, 0.6273126624389191, 0.1819914526651868, 0.6450640502472667, 0.7576359910572065, 0.6363669366758954, 0.35783776888428775, 0.4555798348891207, 0.2603691587203709, 0.09638465351539516, 0.7889843001267657, 0.3995975535535492, 0.2404138117262561, 0.5134503976671381, 0.7620160241108803, 0.4852174766770502, 0.7934067722809752, 0.5657371707019572, 0.40591517497640706, 0.5142806824729376, 0.4667389755277017, 0.4597803030361328, 0.14211531046105408, 0.4709774325404933, 0.39253304933110444, 0.8152160844894966, 0.6418608562675732, 0.5695619245525361, 0.15898796250578873, 0.4189913516486339, 0.8097376625536354, 0.2776505479619531, 0.14100712613869515, 0.1625374057836978, 0.21879614767173305, 0.26016804821119, 0.5884346274074399, 0.25171266030158634, 0.5556828679884147, 0.2886326125606653, 0.5013044750460076, 0.23728971353361283, 0.6280660923097139, 0.6281218947904323, 0.6226708394296439, 0.1280348372312241, 0.37812375401711507, 0.6218606462016874, 0.446367751604861, 0.5237591509200082, 0.22560064672115399, 0.4159575064805634, 0.43989745285902637, 0.38133093816728936, 0.379388299643832, 0.4244201113870294, 0.8495234946343055, 0.44699506619782237, 0.3402560380560977, 0.16997778820688525, 0.6509841470756508, 0.5589353890471914, 0.49320900326902484, 0.41485179365651337, 0.2850172536812061, 0.5150740024049856, 0.7905789411902706, 0.6660097546858721, 0.5916856454756931, 0.25029771644034415, 0.21820707607863943, 0.23625780462752244, 0.6174344585079109, 0.33885175059010386, 0.8097775874289167, 0.5502791542248897, 0.45232673966787307, 0.5168725346003686, 0.4922951659433321, 0.2710495410551712, 0.5620189509382074, 0.19827785442852286, 0.35653263682836045, 0.4940220265254579, 0.3934632807735441, 0.349631294967786, 0.6543252873397565, 0.6043841099981286, 0.6572212454398962, 0.5323595728841377, 0.4667716613599331, 0.5480891857555714, 0.5933716837007499, 0.5769442381274095, 0.7796710482718338, 0.4721284230669528, 0.5632051337005155, 0.25606657060722404, 0.47304849589761655, 0.4991199345133047, 0.785831825438318, 0.5512091114854263, 0.31651464458218903, 0.192246895102814, 0.5737052492708005, 0.14970485751781393, 0.8257882443178004, 0.7450862811651306, 0.2404138117262561, 0.3428275867057816, 0.2186811050870735, 0.43730933466596944, 0.1325711740116582, 0.33994853494016564, 0.5172250338280965, 0.4543852880840521, 0.6017244994332274, 0.7267617626256621, 0.304103470637073, 0.49511795227452726, 0.4577650902534979, 0.4389063253281036, 0.3428275867057816, 0.6911248892501751, 0.5457123873353599, 0.3395528272139201, 0.5662837862370104, 0.38281068028313525, 0.1899488449656659, 0.1899488449656659, 0.39416742153886597, 0.4473524415330049, 0.5724944828663213, 0.12652799787397961, 0.14917046216496987, 0.4192276293132746, 0.1727250451072272, 0.7329347521090118, 0.2979855805324535, 0.5384433083808008, 0.2944152049751758, 0.5661013076544325, 0.39283078357423706, 0.6503174362647687, 0.7632350838020857, 0.29422440231251745, 0.8446099855685041, 0.3812461384129847, 0.1264117171095669, 0.6995051325026098, 0.7680829457938805, 0.1086082602083136, 0.50228427853815, 0.8303888649041977, 0.15145052047802054, 0.5239967242043768, 0.49461569007297057, 0.7323984730128237, 0.6372335578763709, 0.8485373319296128, 0.21018203617182263, 0.3854703692354019, 0.6209619763202376, 0.6996467359659702, 0.3913887983225227, 0.600932061108284, 0.18141675383529432, 0.32841971343371723, 0.17397747102053363, 0.3943097935149382, 0.5998672378660981, 0.6052803835931642, 0.35501406908939237, 0.4362847089434372, 0.6005057903956104, 0.45095984485898877, 0.5601124581139871, 0.6908342266509375, 0.29066967723125237, 0.5437491575180791, 0.5955595524057149, 0.4226516353037165, 0.552222307965348, 0.5038457784615318, 0.6752568781943777, 0.7880730680059006, 0.09430965090665133, 0.4986183600001317, 0.24112389044610405, 0.3635071851353404, 0.7047195247497422, 0.5251048099479148, 0.5632051337005155, 0.4520037684813636, 0.5271857161160298, 0.36566585814722175, 0.8775119234978208, 0.49474741138534273, 0.17187478758168062, 0.1069918390347242, 0.6371627391106971, 0.19018032574493748, 0.34352259564225396, 0.806114950115292, 0.47304849589761655, 0.5014153035286022, 0.6721952796384192, 0.7507248720260316, 0.38512814216859315, 0.8930847268109882, 0.863224561659591, 0.15108072818859253, 0.7399796913917198, 0.18579927887031134, 0.47304849589761655, 0.2033384066370545, 0.43667652058029827, 0.23252054766636898], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [0.38, 0.44, 0.87, 0.39, 0.58, 0.33, 0.7, 0.38, 0.61, 0.59, 0.56, 0.52, 0.37, 0.53, 0.36, 0.41, 0.58, 0.44, 0.87, 0.33, 0.46, 0.5, 0.38, 0.58, 0.6, 0.33, 0.3, 0.54, 0.6, 0.49, 0.35, 0.49, 0.82, 0.41, 0.34, 0.31, 0.76, 0.49, 0.53, 0.53, 0.32, 0.5, 0.38, 0.41, 0.8, 0.74, 0.38, 0.57, 0.49, 0.72, 0.61, 0.67, 0.36, 0.25, 0.49, 0.75, 0.68, 0.79, 0.44, 1.33, 0.68, 0.38, 0.47, 0.36, 0.36, 0.42, 0.58, 0.62, 0.5, 0.8, 0.53, 0.39, 0.29, 0.51, 0.37, 0.42, 0.44, 0.45, 0.47, 0.61, 0.46, 0.52, 0.85, 0.68, 0.49, 0.78, 0.73, 0.3, 0.27, 0.49, 0.35, 0.33, 0.5, 0.4, 0.48, 0.58, 0.65, 0.43, 0.72, 0.77, 0.34, 0.5, 0.84, 0.43, 0.53, 0.62, 0.54, 0.35, 0.59, 0.63, 0.5, 0.38, 0.37, 0.51, 0.5, 0.93, 0.76, 0.56, 0.65, 0.71, 0.64, 0.99, 0.56, 0.42, 0.75, 0.74, 0.74, 0.62, 0.75, 0.57, 0.36, 0.88, 0.44, 0.56, 0.44, 0.51, 0.67, 0.7, 0.57, 0.5, 0.62, 0.49, 0.61, 0.48, 0.41, 0.6, 0.58, 0.77, 0.39, 0.47, 0.38, 0.68, 0.44, 0.36, 0.68, 0.53, 0.82, 0.73, 0.45, 0.48, 0.4, 0.78, 0.26, 0.49, 0.82, 0.36, 0.45, 0.55, 0.86, 0.39, 0.57, 0.32, 0.39, 0.66, 0.45, 0.49, 0.43, 0.42, 0.47, 0.77, 0.44, 0.41, 0.95, 0.76, 0.43, 0.82, 0.87, 0.37, 0.45, 0.75, 0.39, 0.43, 0.59, 0.48, 0.46, 0.58, 0.57, 0.38, 0.58, 0.64, 0.59, 0.56, 0.57, 0.4, 0.56, 0.63, 0.53, 0.85, 0.51, 0.78, 0.41, 0.33, 0.6, 0.6, 0.56, 0.65, 0.47, 0.44, 0.5, 0.49, 0.4, 0.55, 0.6, 0.53, 0.66, 0.58, 0.68, 0.48, 0.77, 0.48, 0.72, 0.44, 0.66, 0.47, 0.66, 0.82, 0.4, 0.54, 0.31, 0.47, 0.53, 0.46, 0.39, 0.57, 0.64, 0.87, 0.41, 0.5, 0.47, 0.7, 0.76, 0.3, 0.75, 0.41, 0.55, 0.35, 0.45, 0.58, 0.48, 0.73, 0.62, 0.57, 0.47, 0.35, 0.39, 0.48, 0.51, 0.43, 0.48, 0.43, 0.37, 0.43, 0.58, 0.65, 0.4, 0.7, 0.57, 0.44, 0.56, 0.76, 1.06, 0.51, 0.51, 0.49, 0.64, 0.63, 0.36, 0.52, 0.57, 0.43, 1.11, 0.63, 0.42, 0.47, 0.49, 0.46, 0.45, 0.42, 0.33, 0.44, 0.33, 0.75, 0.59, 0.38, 0.48, 0.85, 0.56, 0.54, 0.75, 0.47, 0.38, 0.6, 0.63, 0.5, 0.52, 0.63, 0.51, 0.5, 0.51, 0.48, 0.64, 0.44, 0.59, 0.36, 0.64, 0.39, 0.4, 0.77, 0.48, 0.73, 0.81, 0.36, 0.86, 0.53, 0.43, 0.38, 0.75, 0.41, 0.43, 0.46, 0.39, 0.52, 0.58, 0.84, 0.54, 0.45, 0.42, 0.5, 0.9, 0.34, 0.35, 0.52, 0.47, 0.36, 0.4, 0.82, 0.6, 0.38, 0.82, 0.72, 0.32, 0.59, 0.75, 0.35, 0.75, 0.43, 0.46, 0.5, 0.57, 0.69, 0.46, 0.53, 0.54, 0.54, 0.56, 0.49, 0.48, 0.37, 0.65, 0.46, 0.5, 0.55, 0.55, 0.48, 0.43, 0.62, 0.46, 0.44, 0.65, 0.44, 0.58, 0.44, 0.49, 0.64, 0.42, 0.62, 0.47, 0.53, 0.59, 0.45, 0.41, 0.31, 0.64, 0.5, 0.41, 0.42, 0.46, 0.36, 0.39, 0.36, 0.7, 0.49, 0.68, 0.46, 0.5, 0.7, 0.36, 0.65, 0.6, 0.49, 0.56, 0.98, 0.77, 0.6, 0.7, 0.59, 0.6, 0.33, 0.61, 0.4, 0.34, 0.41, 0.53, 0.51, 0.71, 0.65, 0.74, 0.48, 0.7, 0.52, 0.49, 0.84, 0.32, 0.54, 0.33, 0.66, 0.75, 0.4, 0.78, 0.47, 0.37, 0.54, 0.72, 0.54, 0.43, 0.53, 0.56, 0.55, 0.43, 0.49, 0.59, 0.5, 0.42, 0.41, 0.38, 0.65, 0.27, 0.54, 0.4, 0.57, 0.45, 0.3, 0.67, 0.43, 0.41, 0.55, 0.43, 0.6, 0.35, 0.42, 0.65, 0.38, 0.77, 0.76, 0.52, 0.32, 0.32, 0.37, 0.43, 0.68, 0.57, 0.41, 0.77, 0.81, 0.36, 0.75, 0.49, 0.92, 0.52, 0.76, 0.64, 0.5, 0.49, 0.4, 0.5, 0.46, 0.44, 0.59, 0.57, 0.5, 0.82, 0.4, 0.4, 0.45, 0.32, 0.62, 0.64, 0.82, 0.43, 0.8, 0.3, 0.9, 0.38, 0.51, 0.95, 0.59, 0.72, 0.62, 0.36, 0.45, 0.6, 0.37, 0.48, 0.31, 0.81, 0.45, 0.74, 0.37, 0.6, 0.6, 0.55, 0.56, 0.87, 0.51, 0.33, 0.38, 0.72, 0.79, 0.46, 0.49, 0.66, 0.44, 0.52, 0.58, 0.55, 0.37, 0.53, 0.41, 0.42, 0.39, 0.35, 0.65, 0.44, 0.6, 0.51, 0.74, 0.37, 0.39, 0.38, 0.42, 0.69, 0.58, 0.59, 0.5, 0.39, 0.68, 0.48, 0.32, 0.42, 0.56, 0.43, 0.52, 0.34, 0.38, 0.53, 0.64, 0.6, 0.59, 0.38, 0.65, 0.63, 0.5, 0.54, 0.63, 0.58, 0.75, 0.73, 0.79, 0.46, 0.31, 0.52, 0.44, 0.45, 0.39, 0.68, 0.58, 0.75, 0.57, 0.51, 0.68, 0.36, 0.56, 0.43, 0.52, 0.56, 0.44, 0.37, 0.57, 0.6, 0.47, 0.46, 0.37, 0.45, 0.36, 0.55, 0.48, 0.39, 0.35, 0.63, 0.71, 0.59, 0.8, 0.37, 0.46, 0.47, 0.54, 0.33, 0.64, 0.52, 0.51, 0.52, 0.52, 0.66, 0.55, 0.53, 0.52, 0.59, 0.54], \"xaxis\": \"x2\", \"y\": [0.6660328535674787, 0.4955559099445003, 0.11251030999551548, 0.5313240922219649, 0.7616845263358343, 0.42881839881496897, 0.22146723198036844, 0.2709448900825402, 0.04188686298684474, 0.3198999677935893, 0.586632325439729, 0.3332859260788763, 0.0891770245136605, 0.07249138429342028, 0.0813041402249215, 0.2808128557304226, 0.18155424903412543, 0.14020593233116785, 0.20529540916933675, 0.1755850319354616, 0.5722846846512241, 0.4684623303117058, 0.2863708053899042, 0.4489302200945696, 0.3606737334686688, 0.09834172337505831, 0.1439119889738254, 0.10526388551166177, 0.08976738859769384, 0.15927641460572795, 0.07353544332944184, 0.4894096639868448, 0.24735122968283396, 0.41440459167745447, 0.10107859516115147, 0.4809249647595707, 0.043928674649753696, 0.27268427565697984, 0.07203278686513981, 0.35989685204578803, 0.08410225657903847, 0.09640449279894714, 0.2859044620344169, 0.766491644508495, 0.27194216744256416, 0.11891721880979944, 0.6033870782914414, 0.8445823904457724, 0.4148378249676725, 0.09538880480821377, 0.5822786697287807, 0.2006236885231063, 0.30215903380660414, 0.3526626332448971, 0.22921561702294402, 0.3499358724503807, 0.451050436906263, 0.01968005574460141, 0.3849224947932618, 0.608666907839271, 0.30333177217190177, 0.05732515971384944, 0.08299070223644744, 0.155374347961305, 0.4378217303747408, 0.10641916767178827, 0.3207785913922725, 0.3280003244598044, 0.4747408725557203, 0.27229542413121455, 0.5314247042003052, 0.13834506443323813, 0.652508483608137, 0.1775869136191267, 0.4659209431511335, 0.3288332341233703, 0.47224603889779837, 0.2773569186284155, 0.18590272545123854, 0.6719763059805124, 0.04569198037744582, 0.22473444069733528, 0.0776074933333939, 0.1411968215808168, 0.3654892991508686, 0.06069899520469324, 0.21029328672965164, 0.13919371635861133, 0.16321149678759816, 0.6144435769482088, 0.1388055550317996, 0.0827658987104557, 0.0793107693477757, 0.04994940743047871, 0.46220165202879504, 0.08265172102971341, 0.5554564865761329, 0.10902951494304747, 0.26480674198345266, 0.31816712550642645, 0.20184400370343658, 0.23734670470511587, 0.19264674509953905, 0.03558879485690103, 0.5314247042003052, 0.3013473679880785, 0.8043030592862955, 0.07665185966197174, 0.17816243980233548, 0.14637302723887635, 0.43623195291339645, 0.5773286546676725, 0.06996409198491005, 0.0635191394270278, 0.11839391684253864, 0.03368970372860669, 0.16544292122901683, 0.5002106013252752, 0.20783967621931676, 0.4413184352618238, 0.1377753535318076, 0.017128038770129694, 0.09070427960766203, 0.05237321155563324, 0.46044782253877736, 0.09863911308639095, 0.6058955548956951, 0.07377868677997379, 0.33726125667837825, 0.03705661785513226, 0.03856885477325478, 0.01970319875133708, 0.06623921298607705, 0.655672818127978, 0.36403826442427, 0.375635621083512, 0.25822104517587474, 0.26990817233175546, 0.30316845466795117, 0.21597661143113533, 0.10411587283779344, 0.4582573305440075, 0.28974208538397184, 0.3995654588450376, 0.48407929824265805, 0.2412117545349558, 0.49704114689177337, 0.3112403223054312, 0.13571503940671914, 0.35304273602320047, 0.18963603484652192, 0.06023564559469896, 0.305863422303413, 0.34062746964654456, 0.03532029949184434, 0.20200996882548472, 0.207876095289533, 0.11304202998506685, 0.26487496820305634, 0.46674395287949066, 0.05931266843465788, 0.6063731497207538, 0.053339747820140615, 0.16056749669580483, 0.3366557342021428, 0.18735912995827353, 0.2667542380283816, 0.9197592959547904, 0.13322255285490225, 0.3533185668595151, 0.08763312389948397, 0.343329095265401, 0.1298321532292276, 0.11240742021865013, 0.03412749239977686, 0.23316671381479437, 0.13955591125269062, 0.065615492475942, 0.03940539431326806, 0.04874684240881699, 0.42507109047861347, 0.3720756994829524, 0.20627971812824875, 0.23346983492740092, 0.299872058778726, 0.14688925552714138, 0.20529540916933675, 0.11294333341234963, 0.4523771212155355, 0.15895981664313275, 0.12633289347617382, 0.34801013400503944, 0.063056887931354, 0.09222807982804315, 0.19281104432210028, 0.11843845992675284, 0.1064686731970873, 0.12171087020281346, 0.49704114689177337, 0.4202798549667376, 0.058322454167927695, 0.40418598015134155, 0.7514842711311043, 0.067978575311199, 0.1468497162592186, 0.3655805321171328, 0.36741292271676196, 0.08785516413846428, 0.4223454464089015, 0.09472348251934337, 0.14196098925812006, 0.10013555988874479, 0.32154631204965056, 0.05416575683382341, 0.786126361492164, 0.04696516601190348, 0.26926088858349784, 0.28123172687107445, 0.3094364396730669, 0.04307250962973752, 0.07126159086244754, 0.6143015945908075, 0.495586079448059, 0.46102608015166635, 0.40789311683600216, 0.8929715185951024, 0.1227006502272181, 0.3638055988942468, 0.10470002869891348, 0.29304213908849364, 0.8936703981375603, 0.3534407380188983, 0.0883666731866185, 0.07895584641700149, 0.05166417783587085, 0.4199775765299997, 0.10304865631077798, 0.1041340676595982, 0.11031385635331636, 0.22368578646300386, 0.22137255536682798, 0.0725394352715707, 0.08320759746190642, 0.3577905591727162, 0.36362749207413336, 0.13058702032609693, 0.4306817897420764, 0.4684623303117058, 0.3185463047756948, 0.6991046594229053, 0.33105510290791684, 0.35804773811787727, 0.3499358724503807, 0.17780319308126435, 0.07142366539796174, 0.1504846162366139, 0.28643330026545544, 0.11492102279820171, 0.08716328114311156, 0.12905574960179156, 0.5528531989583015, 0.2852168598030531, 0.3185463047756948, 0.41766807389819915, 0.22818770291371737, 0.10749415552266317, 0.07500089027222667, 0.2150933620687273, 0.4879833184669665, 0.21367083697314282, 0.18281788227943807, 0.11217648511765432, 0.01860460444149037, 0.4990100838788346, 0.3212979959143686, 0.7252893191599291, 0.30018855716775616, 0.2808216200321265, 0.24332849241566534, 0.22583693263898685, 0.307128141019565, 0.12930297020615966, 0.07734813107736227, 0.38078614076753503, 0.037937415915298756, 0.18389331462546077, 0.2015421194948802, 0.10121634311933059, 0.7209948827487924, 0.252131738577411, 0.19866278493931944, 0.5569604587758099, 0.19172534874952063, 0.07516041810443141, 0.18673310211333727, 0.20736440356309183, 0.27568985010185776, 0.1748501221961516, 0.134246332983591, 0.12151400729184814, 0.03860330573341564, 0.16198960071610413, 0.062309112953929935, 0.14943540958877521, 0.46827469198568006, 0.12435295831370408, 0.11768791031746062, 0.10794707492381372, 0.04347111427796346, 0.07423675680829, 0.1602542791395647, 0.19911642350143877, 0.2379444352717226, 0.36664322039668684, 0.10130143557253446, 0.17108028607870185, 0.6143194513817134, 0.5641235853966853, 0.29864316680665437, 0.44752301946823647, 0.13459844499503626, 0.037461465199631894, 0.5002964248569376, 0.4059565893810353, 0.7035957096210382, 0.0629603198376949, 0.25036415064992923, 0.14780834332950044, 0.24800647860056513, 0.10438723399855232, 0.24366911510822187, 0.4574644219698093, 0.8347014835967527, 0.42226245660703365, 0.4073158502222598, 0.47525484003715535, 0.37845934883934684, 0.35325777167774697, 0.4763432908647238, 0.18941100564626978, 0.23853527246002126, 0.27277355193056574, 0.5556171757583562, 0.19481513110659687, 0.7460207524242459, 0.12627308236197843, 0.2115813466591615, 0.4773837842994688, 0.22238536240250728, 0.1978655273089749, 0.32057959349203036, 0.1601330373243487, 0.6256605001243821, 0.34062746964654456, 0.5899158924001677, 0.1273375405407705, 0.6866376712310945, 0.3812864953771038, 0.07918534602430627, 0.10510921928053807, 0.052405178286905496, 0.29010285216427345, 0.5802968836962079, 0.4475494904811408, 0.33107045093633036, 0.6046547135519548, 0.33132995382553565, 0.3391582818855403, 0.37109937806185267, 0.18876467901964422, 0.03244681540368277, 0.6531311156123596, 0.18281848038190407, 0.06840545126676123, 0.23876166598551407, 0.5602062902528231, 0.05478334190217349, 0.18965009362393503, 0.502081053312289, 0.0945975060483667, 0.24937367783354814, 0.14040338921272166, 0.09582424632391484, 0.4879833184669665, 0.07536550594022651, 0.37763546052463404, 0.20240400638142053, 0.06234715971662652, 0.1729504208160284, 0.2536573606029918, 0.1491704939138675, 0.47224603889779837, 0.20734784509414073, 0.1656619584420439, 0.20263687678412212, 0.4576701693643329, 0.3746187330143109, 0.06578487521364562, 0.09359041291034786, 0.15714155813810793, 0.43198081216185935, 0.17693664965610134, 0.14200602748771296, 0.16878839641400256, 0.11131318694256087, 0.43040972974554736, 0.12494266711040569, 0.5286591337585229, 0.3917329141436472, 0.14284790216410748, 0.29931895876037384, 0.3998656181534954, 0.13198036366642862, 0.2166851793268345, 0.164669749255824, 0.3116999397838065, 0.5702002297218003, 0.2867818412254799, 0.05809024612643199, 0.0701620515557333, 0.10493669218879953, 0.03474255021640338, 0.14069518845012563, 0.7697788668098057, 0.44513161239284327, 0.12104291767226882, 0.2823656727566666, 0.28640273091276736, 0.09904459769556595, 0.10889384421684001, 0.1978655273089749, 0.6326587477498924, 0.0766186874204361, 0.07300117689776386, 0.3978521493117628, 0.7293533971641823, 0.24040337450518035, 0.46827469198568006, 0.03737110954461231, 0.48112847828662497, 0.5755848065786346, 0.12151472907643468, 0.332302417201758, 0.3208349144509022, 0.13406270144296106, 0.47820199098358873, 0.024219732643774528, 0.7923035912680444, 0.3099424932714111, 0.8494816644677875, 0.15230116664989468, 0.8795672599938588, 0.34536882843285344, 0.587897812361327, 0.3660303223369904, 0.3074082248441362, 0.1925553058603695, 0.1582957933341015, 0.5297945963993664, 0.1892543681582496, 0.06574637766643598, 0.03286461121245521, 0.6223124217546917, 0.48666930315350876, 0.17200815643270417, 0.27042696199957883, 0.16010429726024444, 0.25291734909108765, 0.22778758435893687, 0.6055190518965303, 0.41989528411161425, 0.2865861541738164, 0.17344095530188786, 0.4163761941495938, 0.24610426408478792, 0.029106329843254564, 0.5849270471051293, 0.09607886499379148, 0.4890296174547498, 0.11193395874659995, 0.3667485749721523, 0.29672938182784603, 0.13696827462710404, 0.03986507081677082, 0.41542023534722683, 0.1642424989032959, 0.041559354155004224, 0.1266666793707928, 0.5259198205822933, 0.42123490919744344, 0.6147437654518444, 0.42849246998341506, 0.04874684240881699, 0.16870816563337898, 0.35179373534084035, 0.4552463954734379, 0.1543174595222413, 0.4641274821418986, 0.1106599594415556, 0.40441066041397966, 0.05916303638108533, 0.24194101851814365, 0.5755848065786346, 0.23631147082452741, 0.04679471849088612, 0.33132995382553565, 0.6031606095022326, 0.16900214819844117, 0.9322526967181247, 0.1065938389205352, 0.0540586741766943, 0.14920224829950646, 0.03054451782098533, 0.13595064656866984, 0.15908339514281045, 0.09402391562754642, 0.27219479721363327, 0.10477531970828624, 0.6046547135519548, 0.04412971358840656, 0.0821245873848182, 0.24953715645213048, 0.24311299470472425, 0.679537413518331, 0.02875041056121841, 0.2874129658970298, 0.17131102264191878, 0.07042427222914205, 0.1577516063520068, 0.39934634677258996, 0.42249259173992826, 0.24940231538328683, 0.46827469198568006, 0.040988937643475554, 0.034828704291737345, 0.26663563965858417, 0.22421743312747255, 0.10716094829621758, 0.7421831263598226, 0.4644511163280224, 0.1591307416719686, 0.21502194578256428, 0.12883185373794437, 0.15520095945599266, 0.04280666734842442, 0.06928764484923078, 0.3578757504587543, 0.0760792945579073, 0.06637805380770656, 0.5755848065786346, 0.4326356954473739, 0.16985579355455038, 0.47152805642545803, 0.11644579282256762, 0.11790522998710073, 0.5438286352264949, 0.41561805514360906, 0.050606352251634235, 0.21836830194439782, 0.22298545275517268, 0.1504846162366139, 0.16819644397314482, 0.47796113776613436, 0.14100197907825862, 0.7878397890034206, 0.12176963827920351, 0.09814942480303201, 0.23162396036129984, 0.04400104962869911, 0.061588508633294015, 0.2774601068082493, 0.40816383821078206, 0.14036214651023216, 0.11837607594274324, 0.0703155477214753, 0.17002415827487982, 0.24611532014486182, 0.06874641727313702, 0.30975746960573625, 0.07004288447243323, 0.6453829176356538, 0.3880412370469972, 0.10205495289732236, 0.12171087020281346, 0.38550692709735157, 0.4398162761337091, 0.5769741243450848, 0.48842976274850136, 0.3866799681687785, 0.17129518728202664, 0.5711206597512044, 0.4456070955069118, 0.4585850027539752, 0.25462747480751524, 0.34771016550763867, 0.35548618548401445, 0.07878090041588082, 0.3008706318705062, 0.08117751180329491, 0.055511805197920094, 0.1600174453683395, 0.35597309965685686, 0.5473978930443646, 0.3321771897262046, 0.14643302530661162, 0.7653011157176768, 0.24188431843396252, 0.16704799028757666, 0.41136103198090634, 0.5749869949413896, 0.709238838470871, 0.09340318303147321, 0.602429869503323, 0.04154705947390969, 0.7519582179986716, 0.15993940416551844, 0.04372375151311325, 0.4076899811241429, 0.4644511163280224, 0.3133137248525114, 0.24628490675063597, 0.06972977174174444, 0.15949948541388637, 0.2241543425141257, 0.1729876202034616, 0.07290025122558275, 0.1220000714032804, 0.36493953208423235, 0.09420126302076737, 0.026726938234992392, 0.7199273032686843, 0.4606762448039463, 0.04906818437448113, 0.19446415942665518, 0.14876853598344464, 0.3247816953453747, 0.023320858692869595, 0.7310618090422621, 0.48944479260603346, 0.20357574295749958, 0.0840537250624015, 0.5368744051465595, 0.21101467800102214, 0.46682279298460017, 0.3749869638443927, 0.46592999202179275, 0.10188412989688433, 0.15751976448865512], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"sulphates\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"sulphates\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}, \"All_alcohol\": {\"data\": [{\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Reference<br>alcohol=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [11.2, 10.0, 12.7, 10.5, 9.4, 10.1, 13.5, 10.4, 12.4, 11.5, 10.0, 9.8, 10.5, 9.1, 9.5, 9.6, 11.7, 11.2, 12.3, 11.9, 10.0, 12.3, 10.1, 11.9, 11.5, 10.0, 13.6, 11.3, 9.6, 12.8, 12.2, 10.0, 10.9, 11.8, 12.5, 10.0, 9.5, 12.9, 12.8, 11.3, 11.5, 10.2, 12.1, 9.7, 10.0, 8.8, 9.0, 12.3, 12.0, 12.0, 9.7, 8.9, 12.4, 10.3, 11.1, 8.6, 10.8, 11.8, 10.8, 12.5, 10.4, 12.8, 12.2, 10.2, 9.8, 9.2, 11.7, 10.5, 9.8, 13.4, 12.2, 13.4, 11.0, 12.3, 10.7, 9.8, 12.8, 12.3, 10.9, 12.4, 10.1, 13.5, 11.0, 10.4, 12.2, 11.3, 11.3, 9.9, 13.4, 9.3, 10.4, 12.2, 10.2, 12.4, 10.6, 11.3, 10.6, 12.6, 11.2, 9.4, 10.2, 8.9, 11.9, 11.0, 12.5, 9.7, 12.2, 10.6, 11.4, 10.75, 12.4, 8.8, 9.8, 10.9, 10.7, 12.7, 11.4, 11.5, 9.1, 11.0, 9.0, 9.8, 10.4, 8.9, 9.6, 10.5, 9.5, 8.9, 11.0, 9.9, 10.6, 14.0, 9.1, 11.0, 9.9, 12.9, 10.0, 11.0, 13.4, 10.0, 12.7, 10.5, 10.5, 10.6, 9.3, 10.6, 11.7, 10.9, 10.6, 9.2, 9.0, 10.5, 10.3, 9.5, 9.0, 11.9, 11.4, 12.1, 11.4, 12.0, 10.5, 9.8, 11.7, 12.1, 10.4, 9.6, 10.2, 10.1, 8.9, 12.1, 11.1, 9.4, 9.7, 10.5, 10.5, 10.1, 10.0, 9.8, 11.2, 10.8, 10.7, 12.1, 11.9, 12.7, 9.6, 11.0, 13.55, 10.1, 11.6, 10.3, 11.2, 12.8, 12.5, 12.2, 9.7, 12.1, 8.7, 11.0, 11.8, 10.5, 10.7, 12.5, 12.2, 11.8, 10.6, 12.0, 10.9, 10.8, 8.8, 9.5, 10.4, 10.8, 12.1, 10.8, 11.5, 10.0, 11.5, 10.8, 10.9, 12.8, 10.2, 8.7, 10.5, 12.9, 10.6, 10.8, 9.1, 9.1, 10.8, 10.6, 11.0, 9.9, 11.5, 10.4, 11.9, 12.2, 11.0, 9.8, 11.8, 10.7, 10.8, 9.0, 9.2, 8.8, 9.5, 11.4, 10.1, 10.1, 9.3, 12.3, 8.6, 9.1, 10.8, 11.2, 11.2, 11.0, 12.0, 9.4, 12.6, 11.5, 9.0, 12.2, 10.9, 12.3, 11.6, 11.2, 13.2, 12.5, 10.3, 13.0, 10.8, 11.4, 11.4, 11.0, 13.0, 9.9, 10.9, 11.7, 12.8, 10.5, 11.2, 11.6, 12.2, 12.75, 11.9, 11.9, 9.3, 10.0, 9.6, 12.0, 10.1, 12.0, 12.4, 11.2, 10.9666666666667, 9.1, 9.9, 10.0, 10.9, 10.7, 12.6, 10.5, 12.3, 11.0, 9.7, 11.0, 11.4, 11.5, 9.0, 10.1, 9.5, 9.0, 12.4, 11.3, 11.0, 9.7, 9.4, 12.8, 10.9, 12.2, 12.6, 11.4, 12.6, 11.7, 11.0, 9.5, 9.7, 11.2, 9.7, 12.2, 11.0, 12.4, 9.3, 10.4, 10.8, 9.1, 10.5, 12.8, 9.6, 10.5, 9.9, 11.1, 12.1, 9.5, 9.9, 10.0, 9.4, 9.0, 12.4, 8.9, 10.8, 11.2, 10.9, 11.0, 9.6, 11.4, 11.0, 12.4, 10.1, 12.2, 9.4, 10.4, 10.3, 11.5, 9.8, 9.7, 12.6, 11.2, 12.0, 9.0, 10.8, 10.3, 10.4, 10.1, 12.9, 12.5, 12.7, 10.4, 9.9, 9.5, 9.2, 10.8, 9.1, 9.3, 9.0, 10.9, 9.0, 9.5, 10.5, 12.2, 11.2666666666667, 8.9, 9.9, 11.0, 10.4, 11.0, 11.8, 10.6, 12.6, 9.4, 11.5, 9.3, 12.5, 8.8, 11.5, 10.4, 10.6, 11.3, 10.8, 8.7, 10.4, 11.1, 11.3, 11.2, 10.5, 11.9, 11.6, 9.1, 10.8, 9.4, 10.5, 10.8, 9.6, 9.0, 10.2, 11.0, 11.2, 11.4333333333333, 12.2, 12.0, 12.4, 12.4, 12.8, 11.6333333333333, 10.0, 13.1, 11.5, 11.3, 12.3, 10.6, 11.0, 10.7, 11.8, 10.1, 10.2, 10.4, 9.6, 9.5, 11.0, 10.9, 12.6, 12.4, 11.9, 10.2, 9.7, 13.0, 10.2, 10.9, 9.9, 9.1, 11.2, 9.5, 11.0, 9.2, 11.5, 11.0666666666667, 10.4, 11.0, 10.4, 13.4, 9.6, 9.4, 8.7, 8.8, 12.4, 12.9, 12.4, 11.0, 10.2, 10.0, 11.7, 8.5, 8.8, 9.7, 9.0, 12.0, 12.5, 9.0, 11.7, 9.2, 9.4, 9.5, 9.2, 10.3, 11.5, 11.4, 9.6, 10.1, 12.8, 10.5, 10.5, 12.0, 11.7, 9.0, 12.5, 10.1, 11.4, 9.9, 12.3, 12.2, 12.3, 12.1, 10.4, 9.0, 12.1, 12.3, 11.9, 9.3, 11.6, 12.7, 9.5, 13.2, 13.0, 11.5, 9.0, 12.0, 9.3, 11.6, 9.3, 11.2, 10.5, 10.1, 10.7, 10.1, 11.4, 10.7, 10.5, 12.1, 11.0, 12.2, 10.5, 12.8, 10.0, 10.6, 12.2, 13.2, 11.6, 9.4, 12.0, 11.0, 10.0, 11.3, 10.8, 9.7, 10.4, 10.4, 10.8, 9.2, 9.3, 11.4, 9.4, 9.8, 11.2, 9.8, 13.6, 11.0, 11.3666666666667, 10.5, 12.5, 10.1, 12.1, 10.1, 11.5, 12.7, 12.0, 12.9, 9.0, 10.6, 10.5, 10.5, 11.9, 12.5, 10.1, 10.7, 12.2, 10.8, 13.2, 10.8, 10.3, 11.2, 9.9, 12.5, 9.5, 12.8, 10.2, 10.1, 11.1, 10.5, 11.1, 9.2, 11.2, 11.7, 10.2, 11.0, 11.7, 8.8, 10.8, 9.7, 11.5, 8.8, 10.9333333333333, 10.5, 9.8, 10.7, 12.7, 11.8, 10.1, 9.4, 11.3, 10.2, 10.4, 11.3, 10.0, 10.9, 9.6, 10.9, 9.6, 11.7, 9.53333333333333, 12.3, 10.2, 9.5, 9.2, 11.0, 11.7, 11.3, 10.0, 9.53333333333333, 10.8, 9.5, 11.8, 9.9, 12.0, 11.8, 9.5], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=good<br>dataset=Current<br>alcohol=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"good\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"good\", \"offsetgroup\": \"good\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [9.0, 9.0, 10.9, 9.4, 9.5, 9.8, 10.1, 10.8, 12.0, 10.5, 10.0, 11.0, 12.4, 12.2, 12.8, 10.6, 11.4, 11.5, 10.3, 12.4, 8.9, 9.2, 10.5, 9.6, 10.1, 12.2, 11.0, 11.3, 12.5, 12.3, 13.0, 10.1, 9.5, 9.2, 12.1, 8.7, 11.3333333333333, 9.3, 13.4, 11.8, 12.4, 11.3, 11.8, 8.7, 9.4, 12.7, 9.0, 9.3, 9.5, 12.5, 9.2, 12.8, 10.4, 10.5, 11.4, 8.8, 9.5, 14.0, 9.8, 9.1, 10.4, 12.3, 11.8, 11.2, 9.3, 12.5, 11.0, 10.7, 10.55, 9.6, 9.1, 11.7, 9.2, 11.0, 9.7, 9.3, 9.3, 10.2, 10.8, 9.4, 12.2, 10.2, 11.4, 11.9, 9.8, 12.0, 10.9, 11.5, 11.5, 9.5, 10.8, 11.9, 12.6, 13.2, 10.1, 12.6, 10.0333333333333, 13.1, 10.2, 11.1, 11.1, 9.9, 11.2, 13.2, 9.1, 9.5, 9.4, 12.6, 11.6, 11.3, 10.7, 8.8, 12.3, 12.6, 12.4, 12.4, 11.3, 9.5, 10.4, 11.5, 11.8, 12.1, 12.0, 12.2, 10.9, 12.3, 9.2, 12.3, 10.2, 12.0, 12.5, 13.6, 12.5, 9.1, 9.8, 9.3, 10.5, 10.8, 11.6, 11.0, 11.2, 12.7, 10.8, 9.4, 9.6, 10.5, 9.4, 10.5, 10.9, 10.2, 9.8, 11.2, 9.5, 9.2, 12.5, 12.0, 10.6, 11.3, 10.0, 9.0, 12.7, 9.5, 13.4, 11.7, 10.3, 11.4, 11.5, 9.9, 11.0, 9.2, 11.4, 10.2, 10.9, 11.6, 14.0, 11.8, 11.4, 13.1, 13.6, 12.5, 11.0, 9.2, 9.5, 10.7, 9.4, 11.6, 10.3, 12.6, 8.8, 11.1, 11.0, 9.4, 11.9, 11.9, 10.8, 12.2, 10.5, 12.5, 9.4, 9.8, 12.5, 10.4, 9.6, 11.9, 11.0, 10.6, 9.7, 12.0, 10.1, 10.2, 11.4, 12.8, 10.6, 12.4, 9.0, 12.8, 10.0, 11.3, 11.6, 12.8, 12.2, 10.0, 10.8, 9.5, 9.0, 9.2, 11.2, 10.3, 12.0, 11.2, 9.25, 10.1, 10.8, 12.1, 12.8, 8.9, 12.3, 11.2, 12.0, 11.2, 10.7, 13.3, 13.0, 10.3, 10.4, 11.4, 8.8, 9.2, 10.7, 10.1, 9.6, 9.2, 8.8, 11.6, 10.7, 9.8, 10.2, 11.0, 12.2, 12.2, 10.4, 10.6, 10.7, 10.2, 11.1, 12.5, 12.7, 10.6, 9.3, 9.9, 9.9, 11.3, 12.6, 11.0, 9.3, 9.9, 10.7, 10.4, 10.6, 11.2, 9.1, 11.9, 11.8, 10.0, 12.8, 11.6, 11.45, 11.3, 9.7, 10.2, 11.0, 9.5, 10.1, 12.8, 10.4, 11.0, 9.2, 12.2, 11.0, 11.8, 12.9, 10.3, 11.3, 12.3, 9.0, 11.0, 12.0, 11.0, 12.6, 11.2, 10.5, 11.5, 11.6, 9.3, 11.4, 11.0, 9.8, 9.8, 10.1, 9.5, 12.5, 13.0, 10.3, 9.1, 10.4, 12.7, 11.0, 11.5, 9.6, 12.6, 10.6, 9.0, 9.4, 9.5, 9.2, 9.4, 9.1, 10.0, 10.2, 11.9, 10.8, 10.2, 9.7, 11.4, 9.5, 10.9, 11.4, 10.5, 10.0, 11.7, 11.3, 11.5, 8.8, 9.2, 9.3, 12.0, 10.0, 10.2, 10.4, 12.5, 12.9, 10.3, 8.7, 8.8, 10.2, 9.2, 8.9, 10.3, 9.4, 10.2, 13.05, 10.1, 10.8, 11.4, 11.7, 10.8, 12.0, 11.2, 9.6, 12.4, 9.4, 11.5, 12.2, 9.3, 11.9, 10.5, 11.0, 11.65, 11.4, 11.3, 11.0, 9.3, 11.2, 10.2, 10.2, 10.8, 9.0, 12.5, 12.6, 10.8, 10.6, 11.5, 11.4, 9.5, 12.7, 9.8, 11.0, 10.5, 9.0, 12.5, 9.6, 10.0, 10.4, 9.8, 10.6, 10.3, 9.3, 10.6, 12.6, 12.8, 11.3, 11.9, 12.1, 10.3, 9.2, 11.2, 10.2, 10.6, 12.4, 12.0, 11.7, 10.2, 11.4, 12.8, 10.5, 9.0, 10.8, 9.0, 12.0, 9.0, 9.1, 12.5, 9.8, 9.4, 12.0, 9.2, 14.0, 9.2, 10.0, 9.7, 10.6, 9.2, 9.5, 9.8, 9.0, 11.0, 11.0, 10.65, 9.0, 11.3, 11.3, 13.3, 9.4, 8.7, 10.9, 10.4, 12.7, 10.3, 11.0, 10.6, 10.4, 10.3, 12.5, 8.7, 10.3, 12.8, 9.5, 11.3, 10.2, 11.4, 10.0, 10.6, 11.4, 11.9, 9.6, 11.0, 12.7, 12.5, 9.7, 10.8, 10.1, 9.1, 12.5, 11.0, 9.8, 9.8, 11.4, 10.0, 11.5, 10.3, 11.75, 10.3, 9.1, 11.0, 13.5, 8.9, 9.4, 12.0, 10.1, 12.3, 12.9, 11.3, 14.2, 11.4, 11.5, 12.6, 10.1, 11.7, 9.2, 12.4, 13.0, 10.5, 11.0, 9.2, 11.6, 9.3, 10.7, 12.6, 11.5, 9.1, 11.3, 10.0, 9.0, 13.0, 12.5, 11.6, 11.5, 12.1, 9.7, 9.5, 11.2, 11.3333333333333, 10.9, 11.4, 13.1, 11.5, 10.9, 11.8, 12.3, 9.1, 9.5, 11.4, 10.5, 11.1, 11.0, 10.0, 10.1, 12.3, 11.9, 11.0, 9.8, 10.4, 8.7, 11.4, 9.1, 12.1, 11.4, 11.2, 13.0, 12.5, 10.5, 10.3, 11.1, 12.0, 12.4, 11.0, 11.0, 12.3, 11.0, 12.4, 9.5, 9.6, 10.5, 12.5, 10.0, 10.0, 10.2, 9.5, 10.2, 11.1, 10.0, 10.4, 10.0, 10.0, 11.2, 10.4, 12.5, 9.6, 11.5, 12.7, 10.8, 12.2, 9.4, 11.2, 10.5, 9.8, 10.5, 10.6, 10.4, 9.9, 9.6, 10.5, 9.1, 11.9, 9.8, 12.1, 12.9, 10.4, 9.5, 12.2, 10.4, 12.4, 11.0, 10.0, 10.8, 12.15, 11.45, 10.2, 11.8, 12.1, 9.8, 10.0, 12.7, 11.6, 12.3, 10.2, 13.4, 9.5, 11.0, 12.0, 12.8, 9.2, 8.8, 9.9, 8.9, 9.5, 13.4, 11.0], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Reference<br>alcohol=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [8.7, 12.6, 10.6, 10.5, 9.4, 9.5, 9.7, 10.4, 9.3, 9.7, 10.2, 11.0, 8.7, 10.7, 9.3, 9.5, 9.5, 9.8, 9.2, 10.9, 9.5, 9.1, 11.2, 11.2, 9.9, 9.8, 9.9, 10.1, 9.1, 10.1, 9.6, 10.4, 10.8, 10.0, 9.1, 10.1, 10.0, 10.8, 9.6, 9.2, 9.2, 10.6, 9.5, 8.9, 9.5, 10.1, 9.1, 10.5, 10.6, 9.3, 9.4, 9.1, 9.3, 9.6, 9.8, 9.2, 10.6, 10.6, 10.1, 11.0, 9.3, 10.0, 12.6, 9.4, 9.2, 10.4, 9.2, 9.9, 9.8, 10.1, 8.8, 11.0, 8.7, 11.4, 10.2, 10.0, 8.9, 11.1, 9.2, 12.0, 10.0, 11.1, 9.0, 9.05, 9.8, 10.9, 10.1, 10.0, 11.6, 9.2, 11.0, 9.4, 9.8, 8.7, 9.1, 9.5, 9.1, 9.5, 9.2, 9.6, 9.2, 9.7, 10.2, 9.0, 9.3, 9.3, 10.3, 11.4, 9.0, 10.5, 10.4, 9.9, 9.2, 9.0, 10.4, 9.6, 8.7, 11.4, 10.1, 9.4, 8.9, 12.8, 9.1, 9.7, 8.8, 9.5, 10.6, 9.4, 9.5, 9.4, 9.6, 11.3, 9.4, 9.2, 9.3, 10.0, 11.05, 9.1, 11.2, 9.9, 9.2, 9.4, 11.4, 9.2, 9.9, 9.0, 11.0, 10.6, 9.7, 9.6, 11.1, 9.5, 11.4, 10.2, 9.2, 9.8, 9.2, 9.5, 9.9, 10.8, 11.5, 10.2, 9.6, 8.4, 9.5, 11.5, 9.53333333333333, 9.1, 9.4, 9.2, 9.6, 11.5, 9.4, 9.3, 9.4, 10.3, 9.5, 11.4, 10.2, 9.2, 9.6, 10.9, 10.2, 9.7, 9.0, 9.4, 10.2, 11.8, 9.4, 9.0, 9.6, 10.7, 9.4, 11.0, 9.4, 9.7, 9.3, 9.5, 9.5, 9.7, 10.3, 8.8, 8.8, 11.0, 11.3, 9.0, 10.5, 9.5, 11.4, 10.8, 9.9, 10.4, 9.6, 10.0, 9.0, 9.0, 9.4, 10.8, 9.2, 10.0, 9.7, 11.2, 9.5, 10.0, 10.2, 9.2, 9.2, 9.0, 10.2, 9.2, 10.1, 10.5, 9.6, 8.7, 12.0, 11.1, 9.1, 10.6, 10.0, 9.3, 10.8, 9.5, 9.0, 9.4, 11.2, 10.5, 9.4, 10.5, 8.8, 9.3, 11.2, 10.7, 10.8, 9.6, 9.5, 9.1, 9.7, 10.4, 9.5, 9.5, 10.5, 9.2, 9.9, 9.5, 9.0, 10.8, 10.6, 10.0, 10.6, 9.2, 8.9, 9.0, 9.9, 9.9, 9.6, 9.7, 10.5, 9.3, 9.9, 10.5, 10.0, 9.8, 9.5, 9.3, 10.2, 9.5, 9.5, 9.4, 10.8, 10.2, 11.1, 10.3, 11.0, 11.2, 9.4, 10.2, 9.0, 8.7, 8.9, 9.5, 11.4, 10.7, 10.0, 8.6, 9.7, 10.6, 9.3, 9.3, 9.4, 9.3, 9.3, 9.5, 9.8, 9.5, 9.8, 9.3, 9.3, 9.4, 9.5, 9.8, 10.5, 9.5, 10.9, 9.5, 9.6, 9.5, 14.9, 10.4, 9.2, 9.4, 8.7, 9.5, 9.7, 9.4, 9.8, 9.4, 8.9, 9.5, 10.9, 9.0, 9.6, 9.4, 10.8, 9.6, 9.2, 9.8, 9.2, 10.0, 10.1, 9.4, 9.4, 10.0, 9.7, 13.0, 10.0], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"histnorm\": \"\", \"hovertemplate\": \"target=bad<br>dataset=Current<br>alcohol=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"bad\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"bad\", \"offsetgroup\": \"bad\", \"orientation\": \"v\", \"showlegend\": false, \"type\": \"histogram\", \"x\": [11.0, 8.9, 11.0, 10.1, 8.9, 8.7, 10.7, 9.7, 10.0, 9.9, 9.2, 10.5, 9.8, 9.2, 9.1, 8.8, 9.0, 10.3, 12.0, 10.8, 11.7, 9.7, 9.7, 8.9, 12.0, 10.9, 9.4, 9.7, 9.8, 10.2, 8.7, 8.7, 9.6, 9.3, 10.5, 9.5, 9.4, 9.6, 9.4, 9.3, 12.4, 9.3, 9.2, 9.3, 11.4, 10.5666666666667, 9.4, 9.8, 9.0, 10.9, 10.4, 8.8, 11.5, 11.0, 9.7, 9.3, 9.8, 11.1, 9.4, 9.4, 11.1, 9.7, 9.0, 9.7, 9.3, 10.9, 9.2, 9.4, 10.7, 9.0, 9.5, 11.3, 10.4666666666667, 9.4, 10.5, 11.1, 8.9, 10.4, 9.2, 9.0, 9.6, 9.9, 9.5, 9.5, 10.1, 10.4, 9.0, 8.9, 9.8, 10.5, 9.5, 9.5, 9.7, 9.2, 9.7, 10.9, 10.8, 9.2, 8.9, 9.2, 9.4, 10.6, 8.8, 9.3, 9.4, 10.5, 9.4, 9.5, 9.2, 9.1, 9.4, 9.1, 9.8, 9.9, 10.6, 10.6, 9.4, 9.4, 9.5, 11.0, 10.2, 11.4, 10.6, 9.5, 10.1, 9.4, 11.0, 9.7, 10.1, 10.5, 13.4, 10.4, 9.2, 10.5, 9.4, 8.7, 11.4, 10.4, 9.4, 8.8, 10.7, 10.1, 10.3, 11.7, 9.5, 10.3, 10.9, 9.2, 9.5, 10.0, 9.2, 10.0, 10.5, 9.5, 10.1, 10.5, 10.7, 9.4, 9.6, 9.3, 10.4, 9.0, 10.4, 9.2, 9.0, 10.4, 11.3, 10.9, 11.0, 10.3, 9.2, 10.5, 9.4, 10.2, 9.5, 12.4, 10.1, 9.3, 8.8, 10.6, 10.3, 8.0, 10.3, 9.8, 10.5, 10.5, 9.3, 9.2, 10.2, 9.3, 9.7, 9.7, 10.1, 11.1, 8.6, 9.5, 9.1, 9.8, 9.1, 9.6, 9.5, 9.0, 9.0, 9.4, 11.4, 9.4, 9.0, 9.6, 9.0, 8.6, 10.2, 9.0, 9.7, 10.5, 9.3, 11.5, 9.0, 10.2, 9.3, 9.8, 8.7, 9.3, 9.3, 9.4, 9.1, 10.0, 9.1, 10.3, 10.6, 10.1, 8.8, 10.4, 8.8, 9.7, 9.6, 9.4, 9.8, 10.9, 9.2, 11.4, 9.2, 9.7, 10.9, 9.4, 11.4, 10.0, 10.7, 9.3, 9.4, 10.0, 9.0, 8.6, 10.6, 8.8, 9.9, 8.8, 9.4, 9.5, 9.5, 10.8, 9.8, 10.0, 10.1, 10.1, 9.5, 10.8, 9.7, 11.4, 12.2, 9.6, 11.4, 10.0, 9.3, 9.6, 10.2, 9.0, 9.5, 9.5, 10.1, 9.2, 10.0, 9.5, 11.4, 10.9, 9.2, 11.2, 10.1, 9.1, 11.4, 9.8, 9.5, 9.7, 9.2, 9.5, 11.1, 10.2, 9.5, 9.0, 9.2, 10.3, 11.4, 10.6, 10.4, 9.3, 9.5, 10.8, 10.5, 9.5, 9.0, 9.4, 9.4, 9.6, 10.2, 8.7, 9.9, 8.8, 9.8, 9.5, 9.5, 9.3, 11.8, 9.4, 10.1, 9.5, 11.5, 9.4, 8.8, 10.4, 9.5, 10.4666666666667, 9.8, 9.5, 10.5, 11.4, 9.7, 10.4, 9.3, 10.2, 8.8, 10.7, 8.9, 9.2, 10.4, 9.8, 8.4, 10.3, 9.3, 11.0, 8.8, 10.0, 9.3, 11.4], \"xaxis\": \"x2\", \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Reference\", \"x\": 0.245, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {}, \"showarrow\": false, \"text\": \"dataset=Current\", \"x\": 0.755, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"barmode\": \"overlay\", \"legend\": {\"title\": {\"text\": \"target\"}, \"tracegroupgap\": 0}, \"margin\": {\"t\": 60}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.49], \"title\": {\"text\": \"alcohol\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.51, 1.0], \"matches\": \"x\", \"title\": {\"text\": \"alcohol\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"count\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"matches\": \"y\", \"showticklabels\": false}}}, \"alcohol_good\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (ref)\", \"type\": \"scatter\", \"x\": [11.2, 10.0, 12.7, 10.5, 9.4, 10.1, 13.5, 10.4, 12.4, 11.5, 10.0, 9.8, 10.5, 9.1, 9.5, 9.6, 11.7, 11.2, 12.3, 11.9, 10.0, 12.3, 10.1, 11.9, 11.5, 10.0, 13.6, 11.3, 9.6, 12.8, 12.2, 10.0, 10.9, 11.8, 12.5, 10.0, 9.5, 12.9, 12.8, 11.3, 11.5, 10.2, 12.1, 9.7, 10.0, 8.8, 9.0, 12.3, 12.0, 12.0, 9.7, 8.9, 12.4, 10.3, 11.1, 8.6, 10.8, 11.8, 10.8, 12.5, 10.4, 12.8, 12.2, 10.2, 9.8, 9.2, 11.7, 10.5, 9.8, 13.4, 12.2, 13.4, 11.0, 12.3, 10.7, 9.8, 12.8, 12.3, 10.9, 12.4, 10.1, 13.5, 11.0, 10.4, 12.2, 11.3, 11.3, 9.9, 13.4, 9.3, 10.4, 12.2, 10.2, 12.4, 10.6, 11.3, 10.6, 12.6, 11.2, 9.4, 10.2, 8.9, 11.9, 11.0, 12.5, 9.7, 12.2, 10.6, 11.4, 10.75, 12.4, 8.8, 9.8, 10.9, 10.7, 12.7, 11.4, 11.5, 9.1, 11.0, 9.0, 9.8, 10.4, 8.9, 9.6, 10.5, 9.5, 8.9, 11.0, 9.9, 10.6, 14.0, 9.1, 11.0, 9.9, 12.9, 10.0, 11.0, 13.4, 10.0, 12.7, 10.5, 10.5, 10.6, 9.3, 10.6, 11.7, 10.9, 10.6, 9.2, 9.0, 10.5, 10.3, 9.5, 9.0, 11.9, 11.4, 12.1, 11.4, 12.0, 10.5, 9.8, 11.7, 12.1, 10.4, 9.6, 10.2, 10.1, 8.9, 12.1, 11.1, 9.4, 9.7, 10.5, 10.5, 10.1, 10.0, 9.8, 11.2, 10.8, 10.7, 12.1, 11.9, 12.7, 9.6, 11.0, 13.55, 10.1, 11.6, 10.3, 11.2, 12.8, 12.5, 12.2, 9.7, 12.1, 8.7, 11.0, 11.8, 10.5, 10.7, 12.5, 12.2, 11.8, 10.6, 12.0, 10.9, 10.8, 8.8, 9.5, 10.4, 10.8, 12.1, 10.8, 11.5, 10.0, 11.5, 10.8, 10.9, 12.8, 10.2, 8.7, 10.5, 12.9, 10.6, 10.8, 9.1, 9.1, 10.8, 10.6, 11.0, 9.9, 11.5, 10.4, 11.9, 12.2, 11.0, 9.8, 11.8, 10.7, 10.8, 9.0, 9.2, 8.8, 9.5, 11.4, 10.1, 10.1, 9.3, 12.3, 8.6, 9.1, 10.8, 11.2, 11.2, 11.0, 12.0, 9.4, 12.6, 11.5, 9.0, 12.2, 10.9, 12.3, 11.6, 11.2, 13.2, 12.5, 10.3, 13.0, 10.8, 11.4, 11.4, 11.0, 13.0, 9.9, 10.9, 11.7, 12.8, 10.5, 11.2, 11.6, 12.2, 12.75, 11.9, 11.9, 9.3, 10.0, 9.6, 12.0, 10.1, 12.0, 12.4, 11.2, 10.9666666666667, 9.1, 9.9, 10.0, 10.9, 10.7, 12.6, 10.5, 12.3, 11.0, 9.7, 11.0, 11.4, 11.5, 9.0, 10.1, 9.5, 9.0, 12.4, 11.3, 11.0, 9.7, 9.4, 12.8, 10.9, 12.2, 12.6, 11.4, 12.6, 11.7, 11.0, 9.5, 9.7, 11.2, 9.7, 12.2, 11.0, 12.4, 9.3, 10.4, 10.8, 9.1, 10.5, 12.8, 9.6, 10.5, 9.9, 11.1, 12.1, 9.5, 9.9, 10.0, 9.4, 9.0, 12.4, 8.9, 10.8, 11.2, 10.9, 11.0, 9.6, 11.4, 11.0, 12.4, 10.1, 12.2, 9.4, 10.4, 10.3, 11.5, 9.8, 9.7, 12.6, 11.2, 12.0, 9.0, 10.8, 10.3, 10.4, 10.1, 12.9, 12.5, 12.7, 10.4, 9.9, 9.5, 9.2, 10.8, 9.1, 9.3, 9.0, 10.9, 9.0, 9.5, 10.5, 12.2, 11.2666666666667, 8.9, 9.9, 11.0, 10.4, 11.0, 11.8, 10.6, 12.6, 9.4, 11.5, 9.3, 12.5, 8.8, 11.5, 10.4, 10.6, 11.3, 10.8, 8.7, 10.4, 11.1, 11.3, 11.2, 10.5, 11.9, 11.6, 9.1, 10.8, 9.4, 10.5, 10.8, 9.6, 9.0, 10.2, 11.0, 11.2, 11.4333333333333, 12.2, 12.0, 12.4, 12.4, 12.8, 11.6333333333333, 10.0, 13.1, 11.5, 11.3, 12.3, 10.6, 11.0, 10.7, 11.8, 10.1, 10.2, 10.4, 9.6, 9.5, 11.0, 10.9, 12.6, 12.4, 11.9, 10.2, 9.7, 13.0, 10.2, 10.9, 9.9, 9.1, 11.2, 9.5, 11.0, 9.2, 11.5, 11.0666666666667, 10.4, 11.0, 10.4, 13.4, 9.6, 9.4, 8.7, 8.8, 12.4, 12.9, 12.4, 11.0, 10.2, 10.0, 11.7, 8.5, 8.8, 9.7, 9.0, 12.0, 12.5, 9.0, 11.7, 9.2, 9.4, 9.5, 9.2, 10.3, 11.5, 11.4, 9.6, 10.1, 12.8, 10.5, 10.5, 12.0, 11.7, 9.0, 12.5, 10.1, 11.4, 9.9, 12.3, 12.2, 12.3, 12.1, 10.4, 9.0, 12.1, 12.3, 11.9, 9.3, 11.6, 12.7, 9.5, 13.2, 13.0, 11.5, 9.0, 12.0, 9.3, 11.6, 9.3, 11.2, 10.5, 10.1, 10.7, 10.1, 11.4, 10.7, 10.5, 12.1, 11.0, 12.2, 10.5, 12.8, 10.0, 10.6, 12.2, 13.2, 11.6, 9.4, 12.0, 11.0, 10.0, 11.3, 10.8, 9.7, 10.4, 10.4, 10.8, 9.2, 9.3, 11.4, 9.4, 9.8, 11.2, 9.8, 13.6, 11.0, 11.3666666666667, 10.5, 12.5, 10.1, 12.1, 10.1, 11.5, 12.7, 12.0, 12.9, 9.0, 10.6, 10.5, 10.5, 11.9, 12.5, 10.1, 10.7, 12.2, 10.8, 13.2, 10.8, 10.3, 11.2, 9.9, 12.5, 9.5, 12.8, 10.2, 10.1, 11.1, 10.5, 11.1, 9.2, 11.2, 11.7, 10.2, 11.0, 11.7, 8.8, 10.8, 9.7, 11.5, 8.8, 10.9333333333333, 10.5, 9.8, 10.7, 12.7, 11.8, 10.1, 9.4, 11.3, 10.2, 10.4, 11.3, 10.0, 10.9, 9.6, 10.9, 9.6, 11.7, 9.53333333333333, 12.3, 10.2, 9.5, 9.2, 11.0, 11.7, 11.3, 10.0, 9.53333333333333, 10.8, 9.5, 11.8, 9.9, 12.0, 11.8, 9.5], \"xaxis\": \"x\", \"y\": [0.8156061324462894, 0.42491310922683634, 0.8867827646463432, 0.8014995238430205, 0.30499958310650876, 0.5817355832705369, 0.959171062334887, 0.7854416128369749, 0.9085690698200813, 0.8998600376511439, 0.6341165000693628, 0.412102187638673, 0.7643629411050379, 0.4710001938005606, 0.40182653035141874, 0.40438056362905367, 0.8870480016118494, 0.3650667978415713, 0.9064321709292111, 0.9327245345966092, 0.6458420185168736, 0.8821841129047617, 0.6704018506542557, 0.7655671181822064, 0.8616986618932058, 0.48774537944210006, 0.9637355036179479, 0.6794204065079696, 0.6044835155949141, 0.7867954023600708, 0.9137982268836646, 0.5867502063434873, 0.8048584290077971, 0.9718511071053526, 0.9627192884041744, 0.7978623718349598, 0.6091120966723917, 0.8943338178728011, 0.8853376735027229, 0.9045563504021151, 0.9264844632598176, 0.6342457655367447, 0.9414033426130164, 0.5636516403732365, 0.5172967922101196, 0.4836896337264441, 0.35199620689495453, 0.788779954566273, 0.9696552399248426, 0.772496554239754, 0.8132656157621138, 0.4539090261140653, 0.9333708926412786, 0.679765045723866, 0.48457442622955804, 0.4248820606938153, 0.6737819616086004, 0.8780741425819777, 0.38340602447337646, 0.90634085684919, 0.5574014604752268, 0.6804147683859246, 0.9077110088845216, 0.7718472635729894, 0.4717552048891654, 0.22222808308441652, 0.8616549355667619, 0.705749071892896, 0.4699129352300819, 0.9680524782819758, 0.8891353183282249, 0.9466602521798594, 0.8553382520847058, 0.7430243903066251, 0.6616131862201935, 0.6919609500216202, 0.96565744679506, 0.913108907487878, 0.5395521774612226, 0.9026238558501023, 0.6550941529376255, 0.9757876320152292, 0.8833495792027257, 0.6666029765862381, 0.8504582120840628, 0.9320215595878566, 0.7639947574915884, 0.6085229656221847, 0.9557131606798471, 0.46184432615952054, 0.5642658412077981, 0.8815615400732472, 0.7189203536918151, 0.9301020530176726, 0.7341394174346678, 0.7759189559372703, 0.8448078654733812, 0.9012666081120407, 0.8926028620066223, 0.5287492720273277, 0.6874206920638863, 0.37408584674942635, 0.8348370105186077, 0.8697567261320243, 0.9175759024810304, 0.44644098895981, 0.8874384748400057, 0.7787567487441118, 0.9416122482572158, 0.3265229243180111, 0.9308095750950773, 0.42267134533232753, 0.43068181214270274, 0.8727308285810839, 0.7201611177732586, 0.8430904589044517, 0.8140617541555761, 0.9456747441572588, 0.6672663325862807, 0.8756470416862959, 0.518871521713375, 0.7040615347784164, 0.4957960231649875, 0.6250130361556073, 0.27413726132188326, 0.5193133578087885, 0.37656641690434584, 0.5808048103476511, 0.7917827117482167, 0.36569143480873245, 0.7232542293832885, 0.9785934574433302, 0.5715075300165849, 0.8182555969893297, 0.5448461144048058, 0.9491291995847589, 0.4833587957991669, 0.3189279754564957, 0.9184825510014271, 0.5524830505676419, 0.9600429304649183, 0.7818180966165994, 0.7962710274484252, 0.7569429870375118, 0.46184432615952054, 0.7641514270390748, 0.9486763575522457, 0.8086368705092697, 0.6784536879503494, 0.6877019790624462, 0.6082670858563528, 0.6053794617794684, 0.6319330693089359, 0.4982105707488519, 0.6787928880949093, 0.9231980717613485, 0.8831230955067948, 0.6845485656817341, 0.8799204262605215, 0.9164563829924386, 0.7819268199067826, 0.23469888428232324, 0.9492377841603665, 0.8826092272015389, 0.6360541596480074, 0.5184081252698399, 0.6400126753125241, 0.542646305979658, 0.4479501208302092, 0.7783171875827786, 0.7867712153112567, 0.5236605417423803, 0.6959846197179591, 0.7925023358445066, 0.6683189355892497, 0.18737025221649042, 0.42506327048176057, 0.7272596040941706, 0.7314191754306454, 0.4827891324637794, 0.6649341228620356, 0.9038332731164471, 0.9588917860646077, 0.8945194928389463, 0.49833043835950624, 0.7997712594855277, 0.8577935987172323, 0.7622736922026153, 0.8039391974899521, 0.7396811504731934, 0.8115340233127679, 0.801728888664367, 0.738451208106372, 0.5859674792922007, 0.1865203674848816, 0.8773430435604171, 0.36888329310067386, 0.8651817982269884, 0.9067615420962557, 0.8594983988587351, 0.7437750884018276, 0.9145224932934428, 0.9135679891815164, 0.8001832456898428, 0.6860977766129374, 0.9377826008632761, 0.9300369611912853, 0.6997062971069969, 0.5693182102579236, 0.3404656140239559, 0.7160591142088384, 0.7953146078011, 0.8869803873277935, 0.7639982823097876, 0.8681285227071118, 0.576868797021353, 0.93035102563313, 0.8375600281828176, 0.8279918435672958, 0.9266689436294401, 0.7559862346636359, 0.5099889666930224, 0.6914445842613687, 0.9651950326885705, 0.87851968214492, 0.8499702807396289, 0.4685752957996948, 0.7241546992314323, 0.7848147251007912, 0.7341394174346678, 0.7008877443692281, 0.340588975625529, 0.5013021766499856, 0.8321174529331695, 0.8818378666553491, 0.9176909075187759, 0.8634678749265305, 0.7436082905772717, 0.9343776659412377, 0.7668809937296346, 0.6243383802582345, 0.5332560471205093, 0.6907315465649003, 0.16626803588025432, 0.1668542888532837, 0.7408943843163458, 0.5221312328975666, 0.7457559475413279, 0.46389636934606376, 0.9292627865919654, 0.5268311186840582, 0.4244151934213653, 0.643310536612302, 0.8577438313980266, 0.7816208399762355, 0.8553382520847058, 0.7010035672814305, 0.5242572272016158, 0.9187320011579697, 0.8703498177621264, 0.6713045345576062, 0.9137982268836646, 0.8614414457916845, 0.9445662266054761, 0.8808216590199034, 0.7386378115490353, 0.8873009977622293, 0.9157094897337859, 0.6606038558129893, 0.9296803968514485, 0.8864322240790464, 0.5146720135715994, 0.8720710714485208, 0.9415427660945741, 0.9138701141498735, 0.6527559092576063, 0.8751970040938668, 0.9249766460056568, 0.801728888664367, 0.6575848465963361, 0.6934824043184128, 0.8619113960143526, 0.9419078024651042, 0.9591721389341828, 0.8397407150753159, 0.9084383840076588, 0.4963969309336195, 0.7359588175524252, 0.3531961907069324, 0.9279819479140234, 0.7752976919572294, 0.8665226278427577, 0.9515211055933231, 0.7314191754306454, 0.890886918514299, 0.3235491032739525, 0.3719939405423586, 0.6323804178173072, 0.8398006965792015, 0.8239469134189235, 0.8592101816891015, 0.7615002907198236, 0.8688259750909261, 0.8718104001390852, 0.5838074755684882, 0.8756470416862959, 0.901850575196968, 0.9451930143658351, 0.6253812669856891, 0.5890764576710766, 0.4921052500998711, 0.4862070578416567, 0.9170647663398394, 0.7035583451969506, 0.8476385889092957, 0.5603058978573646, 0.5810606890504925, 0.9088604673919816, 0.8903252600075929, 0.944267921154058, 0.9435968591480925, 0.938237366988842, 0.9357286047893738, 0.7961386682142712, 0.7840233885688647, 0.2513590507613302, 0.7389284097502917, 0.9053472250810051, 0.44438282424164377, 0.862281110352348, 0.8021059248496223, 0.9152740930046814, 0.643737358401971, 0.8540304955499701, 0.8613418170006786, 0.6911084183178322, 0.8848367871057808, 0.8387883096682573, 0.5942651630821018, 0.65691393717736, 0.6369979527510315, 0.8280658524313272, 0.9640736168216585, 0.6546311715671466, 0.5599819536107853, 0.48348053317652906, 0.7668016587569692, 0.03620763244300767, 0.7364400865449663, 0.37408584674942635, 0.8767503774172, 0.8743962287172513, 0.8751970040938668, 0.8833495792027257, 0.7091886355621774, 0.87006937054451, 0.7904001815220257, 0.8761418339280951, 0.8306834851111597, 0.7531715889012326, 0.38181207472529843, 0.6490458991820136, 0.9138057013338913, 0.9046222904886461, 0.17956061692355052, 0.7506163079023257, 0.8963285795381793, 0.8848361664653354, 0.9283037217377402, 0.45996158699034445, 0.7290858434196763, 0.8319094967702583, 0.6578018675312727, 0.18727567457681707, 0.8673410249845035, 0.9453298670648187, 0.9446538464906173, 0.19605573045952288, 0.6723831041639817, 0.3438281302059518, 0.37858973820495484, 0.6953170483296187, 0.21463507152544156, 0.26963792069965237, 0.3280912492037974, 0.8399932187801539, 0.420387898633768, 0.36522500752858966, 0.5810560693343539, 0.9306346767722963, 0.7167716539092029, 0.656736106921484, 0.5549139996760648, 0.6909161521388689, 0.591904263202073, 0.884703171197362, 0.866402281883595, 0.7582770814524421, 0.8990773411030794, 0.1818065866116437, 0.6222165686186035, 0.17261914235374884, 0.8156064679757086, 0.4851213943917703, 0.8871292211128762, 0.8398494053952754, 0.703270618172154, 0.6305543892506115, 0.7494149477175548, 0.1532408287022325, 0.6159732902773407, 0.738220551127759, 0.8354520044441791, 0.8536870432671441, 0.5751476712690671, 0.9077719201719568, 0.7878515691455199, 0.6672663325862807, 0.45293736875445273, 0.17058553029544155, 0.747933377844996, 0.8400163125056676, 0.4516778718827729, 0.6082670858563528, 0.8401843469141149, 0.7636885291754726, 0.789170795337903, 0.8128612802083497, 0.7522530659814418, 0.8086757686066508, 0.8356255123032285, 0.9241779635105248, 0.9674588597049086, 0.9368885694202199, 0.4990764491242286, 0.876561204324957, 0.554264192243629, 0.5967716244634195, 0.9060244606340249, 0.8401608718856799, 0.7329750583133859, 0.8021769878309102, 0.9316817655017511, 0.45488322534173153, 0.798578398438993, 0.7425236774748816, 0.5742682328784404, 0.4937681935814938, 0.8972164286692267, 0.8914273370768748, 0.9377613518261881, 0.8862258850530264, 0.8591757581361523, 0.7410678096850266, 0.6822336012657398, 0.9201658505843877, 0.6982578893131915, 0.5746709232170782, 0.7626532952948841, 0.7137703530889916, 0.7520971196461234, 0.4473853625959922, 0.7957460056304991, 0.4833174871501707, 0.8758467705785958, 0.4689303842787964, 0.6133612564737879, 0.8568681391705205, 0.6835133967314007, 0.9732070839986944, 0.21435716257549006, 0.5761668962420043, 0.4055433603128916, 0.3743394998756179, 0.9118635774953143, 0.964551884718591, 0.9306459334511011, 0.8424802355113449, 0.7739144871152517, 0.6872688771534424, 0.8590561833388345, 0.6714384475466295, 0.6408669500407106, 0.5203550269219845, 0.2856853969697174, 0.857760555506807, 0.9307094503226838, 0.6787928880949093, 0.8308635255795866, 0.29271374211533296, 0.6769315553524353, 0.23831547366416572, 0.5895099457120908, 0.8994675076574448, 0.8893400405584444, 0.8456825404777587, 0.5399612081435882, 0.6188649121485582, 0.9281492942813848, 0.7611740601422801, 0.46550237374781617, 0.8896861436466836, 0.9038901015569306, 0.5044440900554997, 0.9215480939667524, 0.6930273792518707, 0.8723244804196287, 0.5624338775604165, 0.9226297661236537, 0.8469231754225917, 0.9430557295321259, 0.9097116306258912, 0.5988707702267543, 0.3813853072548755, 0.8843832309478876, 0.9006952500629406, 0.918975987201669, 0.18997930334445084, 0.8923106748541326, 0.8461388699436441, 0.5973439234355874, 0.9544642924744549, 0.91770416680597, 0.9177239854204658, 0.17584552180125673, 0.9240099144459667, 0.48524948024905407, 0.8889685222180134, 0.5785503824403398, 0.7511953459672914, 0.6887596776945688, 0.6717539058356753, 0.7168761391602206, 0.7134478068952186, 0.834626350903405, 0.5715867980362679, 0.6588392688727011, 0.9488572786900573, 0.8920529250761863, 0.8891353183282249, 0.707981940789761, 0.926348680038428, 0.631489487929038, 0.7443856388661001, 0.9260754381930228, 0.9544642924744549, 0.8497401318990601, 0.5604010177433062, 0.8036334301115304, 0.7898153537185114, 0.8491431337122072, 0.6570881560807702, 0.8389599143569951, 0.7944137576415592, 0.8132668978866627, 0.44714680104169846, 0.7978021044641371, 0.41921696608658454, 0.38876183891604754, 0.9248463736054193, 0.4277915265084825, 0.6345107008491314, 0.8008942533173764, 0.5087430598332189, 0.9414938992689892, 0.6922115882765215, 0.8296175750175913, 0.8593339228153332, 0.8975141534758351, 0.5977126281557783, 0.9279478536756302, 0.6485770817571253, 0.8905823996589662, 0.9332072841984264, 0.9432461110830079, 0.9410120781436498, 0.6339696776630096, 0.7120962557761497, 0.5841709037351369, 0.5928970840420333, 0.9006589732900512, 0.936371533648048, 0.6907852379101131, 0.7675780198071424, 0.9444587893431046, 0.4702336163336472, 0.8925536722101626, 0.8158978708906081, 0.822780392485108, 0.8037335327290217, 0.8382351003285965, 0.8941557358589171, 0.4796498334522667, 0.926348680038428, 0.6842118015950474, 0.6463580983468415, 0.8292048071278182, 0.5834426687867836, 0.8419845362148763, 0.2431563391580561, 0.7763142135369961, 0.9390550746437164, 0.7774903237071782, 0.8141232663130791, 0.9444089886680379, 0.430401459478284, 0.9192677156927759, 0.8427595869840984, 0.87120858451521, 0.5693182102579236, 0.820012080301976, 0.58719119911586, 0.42769376643096113, 0.3542595869275313, 0.89579938191327, 0.8743523014696554, 0.7820497043505815, 0.5279069501129625, 0.8869579700149332, 0.45488774279476296, 0.8514781135508903, 0.8278297091497892, 0.663749097381813, 0.5132851713944618, 0.4906566565015208, 0.6415219885510332, 0.6991293681294938, 0.8150539074042624, 0.5800669536763935, 0.9583771200922359, 0.7366090055976814, 0.5747817696023392, 0.5315376696882942, 0.8074446941396305, 0.9038901015569306, 0.9087015650331977, 0.6697291810323083, 0.5800669536763935, 0.8807270543114014, 0.5135845984304893, 0.9352791850238339, 0.36120709973337456, 0.6206709330576408, 0.906286252315459, 0.7937202818717513], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [8.7, 12.6, 10.6, 10.5, 9.4, 9.5, 9.7, 10.4, 9.3, 9.7, 10.2, 11.0, 8.7, 10.7, 9.3, 9.5, 9.5, 9.8, 9.2, 10.9, 9.5, 9.1, 11.2, 11.2, 9.9, 9.8, 9.9, 10.1, 9.1, 10.1, 9.6, 10.4, 10.8, 10.0, 9.1, 10.1, 10.0, 10.8, 9.6, 9.2, 9.2, 10.6, 9.5, 8.9, 9.5, 10.1, 9.1, 10.5, 10.6, 9.3, 9.4, 9.1, 9.3, 9.6, 9.8, 9.2, 10.6, 10.6, 10.1, 11.0, 9.3, 10.0, 12.6, 9.4, 9.2, 10.4, 9.2, 9.9, 9.8, 10.1, 8.8, 11.0, 8.7, 11.4, 10.2, 10.0, 8.9, 11.1, 9.2, 12.0, 10.0, 11.1, 9.0, 9.05, 9.8, 10.9, 10.1, 10.0, 11.6, 9.2, 11.0, 9.4, 9.8, 8.7, 9.1, 9.5, 9.1, 9.5, 9.2, 9.6, 9.2, 9.7, 10.2, 9.0, 9.3, 9.3, 10.3, 11.4, 9.0, 10.5, 10.4, 9.9, 9.2, 9.0, 10.4, 9.6, 8.7, 11.4, 10.1, 9.4, 8.9, 12.8, 9.1, 9.7, 8.8, 9.5, 10.6, 9.4, 9.5, 9.4, 9.6, 11.3, 9.4, 9.2, 9.3, 10.0, 11.05, 9.1, 11.2, 9.9, 9.2, 9.4, 11.4, 9.2, 9.9, 9.0, 11.0, 10.6, 9.7, 9.6, 11.1, 9.5, 11.4, 10.2, 9.2, 9.8, 9.2, 9.5, 9.9, 10.8, 11.5, 10.2, 9.6, 8.4, 9.5, 11.5, 9.53333333333333, 9.1, 9.4, 9.2, 9.6, 11.5, 9.4, 9.3, 9.4, 10.3, 9.5, 11.4, 10.2, 9.2, 9.6, 10.9, 10.2, 9.7, 9.0, 9.4, 10.2, 11.8, 9.4, 9.0, 9.6, 10.7, 9.4, 11.0, 9.4, 9.7, 9.3, 9.5, 9.5, 9.7, 10.3, 8.8, 8.8, 11.0, 11.3, 9.0, 10.5, 9.5, 11.4, 10.8, 9.9, 10.4, 9.6, 10.0, 9.0, 9.0, 9.4, 10.8, 9.2, 10.0, 9.7, 11.2, 9.5, 10.0, 10.2, 9.2, 9.2, 9.0, 10.2, 9.2, 10.1, 10.5, 9.6, 8.7, 12.0, 11.1, 9.1, 10.6, 10.0, 9.3, 10.8, 9.5, 9.0, 9.4, 11.2, 10.5, 9.4, 10.5, 8.8, 9.3, 11.2, 10.7, 10.8, 9.6, 9.5, 9.1, 9.7, 10.4, 9.5, 9.5, 10.5, 9.2, 9.9, 9.5, 9.0, 10.8, 10.6, 10.0, 10.6, 9.2, 8.9, 9.0, 9.9, 9.9, 9.6, 9.7, 10.5, 9.3, 9.9, 10.5, 10.0, 9.8, 9.5, 9.3, 10.2, 9.5, 9.5, 9.4, 10.8, 10.2, 11.1, 10.3, 11.0, 11.2, 9.4, 10.2, 9.0, 8.7, 8.9, 9.5, 11.4, 10.7, 10.0, 8.6, 9.7, 10.6, 9.3, 9.3, 9.4, 9.3, 9.3, 9.5, 9.8, 9.5, 9.8, 9.3, 9.3, 9.4, 9.5, 9.8, 10.5, 9.5, 10.9, 9.5, 9.6, 9.5, 14.9, 10.4, 9.2, 9.4, 8.7, 9.5, 9.7, 9.4, 9.8, 9.4, 8.9, 9.5, 10.9, 9.0, 9.6, 9.4, 10.8, 9.6, 9.2, 9.8, 9.2, 10.0, 10.1, 9.4, 9.4, 10.0, 9.7, 13.0, 10.0], \"xaxis\": \"x\", \"y\": [0.2802292104526322, 0.9455194119275858, 0.4978743212349556, 0.5289145624519528, 0.28439238707197784, 0.2033309570226689, 0.27345747478543325, 0.8322873304845451, 0.389055896812549, 0.3675472469853882, 0.5781933746273124, 0.7401955299744071, 0.44969671697605845, 0.4367887814338696, 0.31593955341667695, 0.3775624358859999, 0.19282181046294666, 0.048451763306065584, 0.6005928650583868, 0.032225376113695775, 0.427412413738938, 0.23973251442015217, 0.13890126550157303, 0.8613925272127, 0.329663916828638, 0.19359965390713213, 0.6827271716759634, 0.1960905505555538, 0.08135735686643118, 0.39737240301928484, 0.13902987396822816, 0.6514166433739288, 0.6994753721471061, 0.7140886736258081, 0.5021795028970708, 0.48743245558712556, 0.5731139673640956, 0.8820820642542792, 0.559972149724866, 0.5061565591493914, 0.5066810377847554, 0.833805652807593, 0.6979972163580744, 0.3177574231538272, 0.13068190592986567, 0.758876109553896, 0.5681062961269688, 0.715544821914063, 0.762062625203523, 0.4464438677531786, 0.20995974230910305, 0.5262622410710028, 0.39442669669188163, 0.2537324982988368, 0.6775437642744659, 0.23876321589577687, 0.6369158982934647, 0.38960060362966165, 0.6034323722874255, 0.7769991715799629, 0.15199748354041337, 0.5641412449951732, 0.7590466800561823, 0.5969347905931296, 0.1048362779837843, 0.7217824369593382, 0.2662339163773806, 0.16472378978351135, 0.37760124376932414, 0.7071736299639594, 0.3436862995931572, 0.8384434752264291, 0.3635333644877426, 0.7813188949129265, 0.7279369976219869, 0.5641098847382463, 0.3863964747623771, 0.9209913370067284, 0.1477144681640183, 0.8809374658555192, 0.6533168894759348, 0.8873477284758582, 0.3697306267878623, 0.28319023347825867, 0.5203701741750857, 0.5523747693308857, 0.6387521731780509, 0.3881380695009739, 0.8487896327149285, 0.4636606453307818, 0.8384434752264291, 0.558266603669778, 0.21657231888677728, 0.3635333644877426, 0.5512671313974766, 0.5051039398599867, 0.5827915753039158, 0.49441682850108926, 0.47309171914705017, 0.6262595591688196, 0.5508242483721094, 0.47332791509789995, 0.7117569366896692, 0.3933786516273859, 0.16465066549244003, 0.7490394132223248, 0.769261050002088, 0.7431932405995126, 0.3141000916210982, 0.723735045552473, 0.6484132891031948, 0.688519894019609, 0.40496704226994307, 0.5803736122960511, 0.6327801522745691, 0.45115706990411364, 0.37268733756108086, 0.9009693101135351, 0.06496389958099598, 0.44431713201158524, 0.39960831974332744, 0.8662156944598043, 0.31018081106061823, 0.5339551117365043, 0.33311273919547707, 0.400132762133902, 0.8528754522806217, 0.14419347879543085, 0.11672350429510901, 0.44556702529145975, 0.6160120899414699, 0.13766892845409207, 0.5517204028384314, 0.5232178919035022, 0.35483403305733974, 0.4900213704561591, 0.8854578072659228, 0.43084122675663034, 0.7601186327653665, 0.14072030431570776, 0.6186690618327106, 0.5245054232921349, 0.7326259458716644, 0.5690781983520095, 0.4018508815425063, 0.24877469563805235, 0.7952501197393639, 0.8766221356386195, 0.303451532996695, 0.5357745481647883, 0.7096524147827454, 0.20877177283968149, 0.8635610141758273, 0.46736762313881036, 0.6061151992073851, 0.113015272873705, 0.40446014603085867, 0.6332606063976143, 0.648705381890928, 0.42186952587750404, 0.8047913565308571, 0.3017058309841093, 0.38406990132164637, 0.33494193042999065, 0.19929939967121216, 0.8624919783238055, 0.528785836409086, 0.43084122675663034, 0.47042159929499583, 0.5061565591493914, 0.5759491569657543, 0.8468794444363914, 0.20342296359496542, 0.5170831534483544, 0.3666753044655067, 0.6131723001375537, 0.4410646109528086, 0.6903416342484309, 0.3866428492574258, 0.4636606453307818, 0.4525459302795702, 0.03199256040434073, 0.7029629492254846, 0.2433141614541866, 0.548755973819273, 0.3775060302547258, 0.06593060991448157, 0.8745624549148976, 0.22931948662359403, 0.27267688907931714, 0.589328430619086, 0.8007160756317941, 0.5525637789187225, 0.5008522318356121, 0.4556212410144909, 0.17391722008742402, 0.43574637053357784, 0.3237440077649342, 0.6071692164257629, 0.6925152430641841, 0.592675381607996, 0.43854150134957587, 0.43854150134957587, 0.42437112972565305, 0.8061118855433299, 0.35195592295594336, 0.7605370065149419, 0.38898578429124253, 0.67510953655807, 0.872979709380305, 0.710510994258769, 0.720290290780972, 0.4820787970895852, 0.42019280799979697, 0.4304380754474639, 0.25285023254778977, 0.3238056884730761, 0.39471961640683584, 0.09510031985475974, 0.367046376808582, 0.21500793651835448, 0.8705359023101334, 0.6100742529031461, 0.6226449432624995, 0.7279369976219869, 0.3643494054700089, 0.09992017521484964, 0.41475515148757036, 0.6462260464983366, 0.14102909592513518, 0.48949585696458414, 0.5239520436918008, 0.6084413884537807, 0.5655473856702703, 0.9517420512476797, 0.7489379515982664, 0.4647937384849751, 0.7915321263825208, 0.44112279258530757, 0.5734340256727429, 0.6604471727860799, 0.4845203185458914, 0.6968730453869196, 0.5315374962198609, 0.8685951485887234, 0.6242442748350044, 0.2912097196987059, 0.7725938221565348, 0.2067629769731588, 0.30221725334927335, 0.13129342562285412, 0.6467789443522378, 0.6994753721471061, 0.11825382206919556, 0.41022417118631593, 0.4882665226122541, 0.7732287086973071, 0.25374762405010176, 0.49441682850108926, 0.3723877205427743, 0.652330313245635, 0.43667799883041203, 0.5964718913578133, 0.55172276504346, 0.24113559934961917, 0.8243980268882987, 0.7263843594269437, 0.43535214809021755, 0.8721122798612579, 0.18723914490145582, 0.6486906676970999, 0.11576704656818047, 0.4328241622975616, 0.491481212420291, 0.5264345378086769, 0.33856526784971647, 0.2967410926251248, 0.581398831228375, 0.5973776665460488, 0.6195406102170065, 0.37782717658841725, 0.323061133240968, 0.17420808473594895, 0.19634770547538957, 0.46492234760650425, 0.49613167963272686, 0.5812209036149294, 0.6057291775435286, 0.63414717387345, 0.5702687187355167, 0.8604975146328253, 0.6309022132706124, 0.48732991249542923, 0.6887148870948692, 0.41581945293096145, 0.5706760596351739, 0.4831274653996314, 0.06684727567316755, 0.49090643211649887, 0.15191610726090596, 0.2711405311223577, 0.7653618545702112, 0.09266565137124261, 0.4554350627407873, 0.19698919164573708, 0.6930185080649685, 0.5227537922811563, 0.50434568709929, 0.7082092780767422, 0.46058046365566996, 0.6735723234187477, 0.4285936050615775, 0.323061133240968, 0.5168500865319015, 0.6161307914674419, 0.23456444218973552, 0.3192004782541023, 0.21968945907811915, 0.5028183230931117, 0.43371621376298963, 0.6744209213341115, 0.5940260419772637, 0.13783310426722128, 0.5136444387530009, 0.5508647999875032, 0.4955911012838212, 0.9814394195009358, 0.8260225289794664, 0.17965956338109995, 0.46844896472597397, 0.6048119589659149, 0.3289160319090978, 0.2454606394453749, 0.7497022835596558, 0.683485355417811, 0.20995974230910305, 0.23504578258460665, 0.37175956099497537, 0.4875530438829156, 0.24982584224249993, 0.6282829625348888, 0.4520795162158371, 0.8200372413039435, 0.12832513643528837, 0.5299630655130737, 0.29552777318700446, 0.24021937552346023, 0.5429028773737552, 0.6311869746243346, 0.4145977043912777, 0.39329840463575844, 0.39070335653410526, 0.4286990948130573, 0.846836560604146, 0.6880850122626078], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"good (curr)\", \"type\": \"scatter\", \"x\": [9.0, 9.0, 10.9, 9.4, 9.5, 9.8, 10.1, 10.8, 12.0, 10.5, 10.0, 11.0, 12.4, 12.2, 12.8, 10.6, 11.4, 11.5, 10.3, 12.4, 8.9, 9.2, 10.5, 9.6, 10.1, 12.2, 11.0, 11.3, 12.5, 12.3, 13.0, 10.1, 9.5, 9.2, 12.1, 8.7, 11.3333333333333, 9.3, 13.4, 11.8, 12.4, 11.3, 11.8, 8.7, 9.4, 12.7, 9.0, 9.3, 9.5, 12.5, 9.2, 12.8, 10.4, 10.5, 11.4, 8.8, 9.5, 14.0, 9.8, 9.1, 10.4, 12.3, 11.8, 11.2, 9.3, 12.5, 11.0, 10.7, 10.55, 9.6, 9.1, 11.7, 9.2, 11.0, 9.7, 9.3, 9.3, 10.2, 10.8, 9.4, 12.2, 10.2, 11.4, 11.9, 9.8, 12.0, 10.9, 11.5, 11.5, 9.5, 10.8, 11.9, 12.6, 13.2, 10.1, 12.6, 10.0333333333333, 13.1, 10.2, 11.1, 11.1, 9.9, 11.2, 13.2, 9.1, 9.5, 9.4, 12.6, 11.6, 11.3, 10.7, 8.8, 12.3, 12.6, 12.4, 12.4, 11.3, 9.5, 10.4, 11.5, 11.8, 12.1, 12.0, 12.2, 10.9, 12.3, 9.2, 12.3, 10.2, 12.0, 12.5, 13.6, 12.5, 9.1, 9.8, 9.3, 10.5, 10.8, 11.6, 11.0, 11.2, 12.7, 10.8, 9.4, 9.6, 10.5, 9.4, 10.5, 10.9, 10.2, 9.8, 11.2, 9.5, 9.2, 12.5, 12.0, 10.6, 11.3, 10.0, 9.0, 12.7, 9.5, 13.4, 11.7, 10.3, 11.4, 11.5, 9.9, 11.0, 9.2, 11.4, 10.2, 10.9, 11.6, 14.0, 11.8, 11.4, 13.1, 13.6, 12.5, 11.0, 9.2, 9.5, 10.7, 9.4, 11.6, 10.3, 12.6, 8.8, 11.1, 11.0, 9.4, 11.9, 11.9, 10.8, 12.2, 10.5, 12.5, 9.4, 9.8, 12.5, 10.4, 9.6, 11.9, 11.0, 10.6, 9.7, 12.0, 10.1, 10.2, 11.4, 12.8, 10.6, 12.4, 9.0, 12.8, 10.0, 11.3, 11.6, 12.8, 12.2, 10.0, 10.8, 9.5, 9.0, 9.2, 11.2, 10.3, 12.0, 11.2, 9.25, 10.1, 10.8, 12.1, 12.8, 8.9, 12.3, 11.2, 12.0, 11.2, 10.7, 13.3, 13.0, 10.3, 10.4, 11.4, 8.8, 9.2, 10.7, 10.1, 9.6, 9.2, 8.8, 11.6, 10.7, 9.8, 10.2, 11.0, 12.2, 12.2, 10.4, 10.6, 10.7, 10.2, 11.1, 12.5, 12.7, 10.6, 9.3, 9.9, 9.9, 11.3, 12.6, 11.0, 9.3, 9.9, 10.7, 10.4, 10.6, 11.2, 9.1, 11.9, 11.8, 10.0, 12.8, 11.6, 11.45, 11.3, 9.7, 10.2, 11.0, 9.5, 10.1, 12.8, 10.4, 11.0, 9.2, 12.2, 11.0, 11.8, 12.9, 10.3, 11.3, 12.3, 9.0, 11.0, 12.0, 11.0, 12.6, 11.2, 10.5, 11.5, 11.6, 9.3, 11.4, 11.0, 9.8, 9.8, 10.1, 9.5, 12.5, 13.0, 10.3, 9.1, 10.4, 12.7, 11.0, 11.5, 9.6, 12.6, 10.6, 9.0, 9.4, 9.5, 9.2, 9.4, 9.1, 10.0, 10.2, 11.9, 10.8, 10.2, 9.7, 11.4, 9.5, 10.9, 11.4, 10.5, 10.0, 11.7, 11.3, 11.5, 8.8, 9.2, 9.3, 12.0, 10.0, 10.2, 10.4, 12.5, 12.9, 10.3, 8.7, 8.8, 10.2, 9.2, 8.9, 10.3, 9.4, 10.2, 13.05, 10.1, 10.8, 11.4, 11.7, 10.8, 12.0, 11.2, 9.6, 12.4, 9.4, 11.5, 12.2, 9.3, 11.9, 10.5, 11.0, 11.65, 11.4, 11.3, 11.0, 9.3, 11.2, 10.2, 10.2, 10.8, 9.0, 12.5, 12.6, 10.8, 10.6, 11.5, 11.4, 9.5, 12.7, 9.8, 11.0, 10.5, 9.0, 12.5, 9.6, 10.0, 10.4, 9.8, 10.6, 10.3, 9.3, 10.6, 12.6, 12.8, 11.3, 11.9, 12.1, 10.3, 9.2, 11.2, 10.2, 10.6, 12.4, 12.0, 11.7, 10.2, 11.4, 12.8, 10.5, 9.0, 10.8, 9.0, 12.0, 9.0, 9.1, 12.5, 9.8, 9.4, 12.0, 9.2, 14.0, 9.2, 10.0, 9.7, 10.6, 9.2, 9.5, 9.8, 9.0, 11.0, 11.0, 10.65, 9.0, 11.3, 11.3, 13.3, 9.4, 8.7, 10.9, 10.4, 12.7, 10.3, 11.0, 10.6, 10.4, 10.3, 12.5, 8.7, 10.3, 12.8, 9.5, 11.3, 10.2, 11.4, 10.0, 10.6, 11.4, 11.9, 9.6, 11.0, 12.7, 12.5, 9.7, 10.8, 10.1, 9.1, 12.5, 11.0, 9.8, 9.8, 11.4, 10.0, 11.5, 10.3, 11.75, 10.3, 9.1, 11.0, 13.5, 8.9, 9.4, 12.0, 10.1, 12.3, 12.9, 11.3, 14.2, 11.4, 11.5, 12.6, 10.1, 11.7, 9.2, 12.4, 13.0, 10.5, 11.0, 9.2, 11.6, 9.3, 10.7, 12.6, 11.5, 9.1, 11.3, 10.0, 9.0, 13.0, 12.5, 11.6, 11.5, 12.1, 9.7, 9.5, 11.2, 11.3333333333333, 10.9, 11.4, 13.1, 11.5, 10.9, 11.8, 12.3, 9.1, 9.5, 11.4, 10.5, 11.1, 11.0, 10.0, 10.1, 12.3, 11.9, 11.0, 9.8, 10.4, 8.7, 11.4, 9.1, 12.1, 11.4, 11.2, 13.0, 12.5, 10.5, 10.3, 11.1, 12.0, 12.4, 11.0, 11.0, 12.3, 11.0, 12.4, 9.5, 9.6, 10.5, 12.5, 10.0, 10.0, 10.2, 9.5, 10.2, 11.1, 10.0, 10.4, 10.0, 10.0, 11.2, 10.4, 12.5, 9.6, 11.5, 12.7, 10.8, 12.2, 9.4, 11.2, 10.5, 9.8, 10.5, 10.6, 10.4, 9.9, 9.6, 10.5, 9.1, 11.9, 9.8, 12.1, 12.9, 10.4, 9.5, 12.2, 10.4, 12.4, 11.0, 10.0, 10.8, 12.15, 11.45, 10.2, 11.8, 12.1, 9.8, 10.0, 12.7, 11.6, 12.3, 10.2, 13.4, 9.5, 11.0, 12.0, 12.8, 9.2, 8.8, 9.9, 8.9, 9.5, 13.4, 11.0], \"xaxis\": \"x2\", \"y\": [0.33396714643252134, 0.5044440900554997, 0.8874896900044845, 0.4686759077780351, 0.23831547366416572, 0.571181601185031, 0.7785327680196316, 0.7290551099174598, 0.9581131370131553, 0.6801000322064107, 0.413367674560271, 0.6667140739211237, 0.9108229754863395, 0.9275086157065797, 0.9186958597750785, 0.7191871442695774, 0.8184457509658746, 0.8597940676688322, 0.7947045908306632, 0.8244149680645384, 0.42771531534877594, 0.5315376696882942, 0.7136291946100958, 0.5510697799054304, 0.6393262665313312, 0.9016582766249417, 0.8560880110261746, 0.8947361144883382, 0.9102326114023062, 0.840723585394272, 0.9264645566705582, 0.5105903360131552, 0.752648770317166, 0.5855954083225455, 0.8989214048388485, 0.5190750352404293, 0.9560713253502463, 0.7273157243430202, 0.9279672131348602, 0.640103147954212, 0.9158977434209615, 0.9035955072010529, 0.7140955379655831, 0.233508355491505, 0.7280578325574358, 0.8810827811902006, 0.3966129217085586, 0.15541760955422754, 0.5851621750323275, 0.9046111951917862, 0.4177213302712193, 0.7993763114768937, 0.6978409661933959, 0.6473373667551029, 0.770784382977056, 0.6500641275496193, 0.548949563093737, 0.9803199442553986, 0.6150775052067382, 0.391333092160729, 0.6966682278280982, 0.9426748402861506, 0.9170092977635526, 0.844625652038695, 0.5621782696252592, 0.8935808323282117, 0.6792214086077275, 0.6719996755401956, 0.5252591274442797, 0.7277045758687855, 0.4685752957996948, 0.8616549355667619, 0.347491516391863, 0.8224130863808733, 0.5340790568488665, 0.6711667658766297, 0.5277539611022016, 0.7226430813715845, 0.8140972745487615, 0.3280236940194876, 0.9543080196225542, 0.7752655593026647, 0.9223925066666061, 0.8588031784191832, 0.6345107008491314, 0.9393010047953068, 0.7897067132703484, 0.8608062836413887, 0.8367885032124018, 0.38555642305179116, 0.8611944449682004, 0.9172341012895443, 0.9206892306522243, 0.9500505925695213, 0.537798347971205, 0.9173482789702866, 0.44454351342386716, 0.8909704850569525, 0.7351932580165473, 0.6818328744935735, 0.7981559962965634, 0.7626532952948841, 0.807353254900461, 0.964411205143099, 0.4685752957996948, 0.6986526320119215, 0.1956969407137045, 0.9233481403380283, 0.8218375601976645, 0.8536269727611236, 0.5637680470866036, 0.42267134533232753, 0.93003590801509, 0.9364808605729722, 0.8816060831574614, 0.9663102962713933, 0.8345570787709832, 0.4997893986747249, 0.7921603237806832, 0.5586815647381762, 0.8622246464681924, 0.9828719612298703, 0.909295720392338, 0.9476267884443668, 0.5395521774612226, 0.901360886913609, 0.39410444510430487, 0.9262213132200262, 0.6627387433216217, 0.9629433821448677, 0.9614311452267452, 0.9802968012486629, 0.933760787013923, 0.34432718187202205, 0.63596173557573, 0.624364378916488, 0.7417789548241253, 0.7300918276682445, 0.6968315453320488, 0.7840233885688647, 0.8958841271622066, 0.5417426694559925, 0.7102579146160282, 0.6004345411549624, 0.515920701757342, 0.7587882454650442, 0.5029588531082266, 0.6887596776945688, 0.8642849605932809, 0.6469572639767995, 0.8103639651534781, 0.939764354405301, 0.694136577696587, 0.6593725303534554, 0.9646797005081557, 0.7979900311745153, 0.792123904710467, 0.8869579700149332, 0.7351250317969437, 0.5332560471205093, 0.9406873315653421, 0.39362685027924615, 0.9466602521798594, 0.8394325033041952, 0.6633442657978572, 0.8126408700417265, 0.7332457619716184, 0.08024070404520958, 0.8667774471450977, 0.6466814331404849, 0.912366876100516, 0.656670904734599, 0.8701678467707724, 0.8875925797813499, 0.9658725076002231, 0.7668332861852056, 0.8604440887473094, 0.934384507524058, 0.9605946056867319, 0.951253157591183, 0.5749289095213865, 0.6279243005170476, 0.7937202818717513, 0.7665301650725991, 0.700127941221274, 0.8531107444728586, 0.7947045908306632, 0.8870566665876504, 0.5476228787844645, 0.8410401833568673, 0.8736671065238262, 0.6519898659949606, 0.936943112068646, 0.9077719201719568, 0.8071889556778997, 0.8815615400732472, 0.8935313268029127, 0.8782891297971865, 0.5029588531082266, 0.5797201450332624, 0.9416775458320723, 0.5958140198486584, 0.2485157288688957, 0.932021424688801, 0.8531502837407814, 0.6344194678828672, 0.632587077283238, 0.9121448358615357, 0.5776545535910985, 0.9052765174806566, 0.8580390107418799, 0.8998644401112552, 0.6784536879503494, 0.9458342431661766, 0.21387363850783603, 0.9530348339880965, 0.7307391114165022, 0.7187682731289255, 0.6905635603269331, 0.9569274903702625, 0.9287384091375525, 0.3856984054091925, 0.504413920551941, 0.5389739198483336, 0.5921068831639978, 0.10702848140489757, 0.8772993497727819, 0.6361944011057532, 0.8952999713010865, 0.7069578609115064, 0.10632960186243966, 0.6465592619811017, 0.9116333268133815, 0.9210441535829985, 0.9483358221641291, 0.5800224234700003, 0.896951343689222, 0.8958659323404018, 0.8896861436466836, 0.7763142135369961, 0.778627444633172, 0.9274605647284293, 0.9167924025380936, 0.6422094408272838, 0.6363725079258666, 0.8694129796739031, 0.5693182102579236, 0.5315376696882942, 0.6814536952243052, 0.30089534057709466, 0.6689448970920832, 0.6419522618821227, 0.6500641275496193, 0.8221968069187356, 0.9285763346020383, 0.8495153837633861, 0.7135666997345446, 0.8850789772017983, 0.9128367188568884, 0.8709442503982084, 0.44714680104169846, 0.7147831401969469, 0.6814536952243052, 0.5823319261018008, 0.7718122970862826, 0.8925058444773368, 0.9249991097277733, 0.7849066379312727, 0.5120166815330335, 0.7863291630268572, 0.8171821177205619, 0.8878235148823457, 0.9813953955585096, 0.5009899161211654, 0.6787020040856314, 0.2747106808400709, 0.6998114428322438, 0.7191783799678735, 0.7566715075843347, 0.7741630673610131, 0.692871858980435, 0.8706970297938403, 0.9226518689226377, 0.619213859232465, 0.9620625840847012, 0.8161066853745392, 0.7984578805051198, 0.8987836568806694, 0.27900511725120763, 0.747868261422589, 0.8013372150606806, 0.4430395412241901, 0.8082746512504794, 0.9248395818955686, 0.8132668978866627, 0.7926355964369082, 0.7243101498981422, 0.8251498778038484, 0.865753667016409, 0.8784859927081519, 0.9613966942665844, 0.8380103992838959, 0.9376908870460701, 0.8505645904112248, 0.5317253080143199, 0.8756470416862959, 0.8823120896825394, 0.8920529250761863, 0.9565288857220365, 0.92576324319171, 0.8397457208604353, 0.8008835764985612, 0.7620555647282774, 0.6333567796033132, 0.8986985644274655, 0.8289197139212982, 0.38568054861828666, 0.4358764146033148, 0.7013568331933456, 0.5524769805317635, 0.8654015550049637, 0.9625385348003681, 0.4997035751430624, 0.5940434106189647, 0.29640429037896177, 0.9370396801623051, 0.7496358493500708, 0.8521916566704996, 0.7519935213994349, 0.8956127660014477, 0.7563308848917781, 0.5425355780301907, 0.1652985164032473, 0.5777375433929663, 0.5926841497777402, 0.5247451599628447, 0.6215406511606532, 0.646742228322253, 0.5236567091352762, 0.8105889943537302, 0.7614647275399787, 0.7272264480694343, 0.44438282424164377, 0.8051848688934031, 0.253979247575754, 0.8737269176380216, 0.7884186533408385, 0.5226162157005312, 0.7776146375974927, 0.8021344726910251, 0.6794204065079696, 0.8398669626756513, 0.3743394998756179, 0.6593725303534554, 0.41008410759983227, 0.8726624594592295, 0.31336232876890546, 0.6187135046228962, 0.9208146539756937, 0.8948907807194619, 0.9475948217130945, 0.7098971478357265, 0.41970311630379203, 0.5524505095188592, 0.6689295490636696, 0.39534528644804523, 0.6686700461744643, 0.6608417181144597, 0.6289006219381473, 0.8112353209803558, 0.9675531845963172, 0.3468688843876404, 0.8171815196180959, 0.9315945487332388, 0.7612383340144859, 0.43979370974717685, 0.9452166580978265, 0.810349906376065, 0.4979189466877109, 0.9054024939516333, 0.7506263221664519, 0.8595966107872783, 0.9041757536760852, 0.5120166815330335, 0.9246344940597735, 0.622364539475366, 0.7975959936185795, 0.9376528402833735, 0.8270495791839716, 0.7463426393970082, 0.8508295060861325, 0.5277539611022016, 0.7926521549058593, 0.8343380415579561, 0.7973631232158779, 0.5423298306356671, 0.6253812669856891, 0.9342151247863544, 0.9064095870896521, 0.8428584418618921, 0.5680191878381406, 0.8230633503438987, 0.857993972512287, 0.8312116035859974, 0.8886868130574391, 0.5695902702544526, 0.8750573328895943, 0.47134086624147714, 0.6082670858563528, 0.8571520978358925, 0.7006810412396262, 0.6001343818465046, 0.8680196363335714, 0.7833148206731655, 0.835330250744176, 0.6883000602161935, 0.4297997702781997, 0.7132181587745201, 0.941909753873568, 0.9298379484442667, 0.8950633078112005, 0.9652574497835966, 0.8593048115498744, 0.23022113319019433, 0.5548683876071567, 0.8789570823277312, 0.7176343272433334, 0.7135972690872326, 0.900955402304434, 0.89110615578316, 0.8021344726910251, 0.36734125225010755, 0.9233813125795639, 0.9269988231022361, 0.6021478506882372, 0.27064660283581765, 0.7595966254948197, 0.5317253080143199, 0.9626288904553877, 0.518871521713375, 0.4244151934213653, 0.8784852709235653, 0.667697582798242, 0.6791650855490978, 0.8659372985570389, 0.5217980090164113, 0.9757802673562255, 0.20769640873195563, 0.6900575067285889, 0.15051833553221247, 0.8476988333501053, 0.12043274000614122, 0.6546311715671466, 0.412102187638673, 0.6339696776630096, 0.6925917751558638, 0.8074446941396305, 0.8417042066658985, 0.4702054036006336, 0.8107456318417504, 0.934253622333564, 0.9671353887875448, 0.3776875782453083, 0.5133306968464912, 0.8279918435672958, 0.7295730380004212, 0.8398957027397556, 0.7470826509089123, 0.7722124156410631, 0.3944809481034696, 0.5801047158883857, 0.7134138458261836, 0.8265590446981121, 0.5836238058504062, 0.7538957359152121, 0.9708936701567454, 0.41507295289487073, 0.9039211350062085, 0.5109703825452502, 0.8880660412534, 0.6332514250278477, 0.703270618172154, 0.863031725372896, 0.9601349291832292, 0.5845797646527732, 0.8357575010967041, 0.9584406458449958, 0.8733333206292072, 0.4740801794177068, 0.5787650908025566, 0.38525623454815555, 0.5715075300165849, 0.951253157591183, 0.831291834366621, 0.6482062646591596, 0.5447536045265621, 0.8456825404777587, 0.5358725178581014, 0.8893400405584444, 0.5955893395860203, 0.9408369636189147, 0.7580589814818564, 0.4244151934213653, 0.7636885291754726, 0.9532052815091139, 0.6686700461744643, 0.39683939049776734, 0.8309978518015588, 0.06774730328187532, 0.8934061610794648, 0.9459413258233057, 0.8507977517004935, 0.9694554821790147, 0.8640493534313302, 0.8409166048571896, 0.9059760843724536, 0.7278052027863667, 0.8952246802917138, 0.39534528644804523, 0.9558702864115934, 0.9178754126151818, 0.7504628435478695, 0.7568870052952757, 0.32046258648166903, 0.9712495894387816, 0.7125870341029702, 0.8286889773580812, 0.929575727770858, 0.8422483936479932, 0.60065365322741, 0.5775074082600717, 0.7505976846167132, 0.5317253080143199, 0.9590110623565244, 0.9651712957082627, 0.7333643603414158, 0.7757825668725274, 0.8928390517037824, 0.2578168736401774, 0.5355488836719776, 0.8408692583280314, 0.7849780542174357, 0.8711681462620556, 0.8447990405440073, 0.9571933326515756, 0.9307123551507692, 0.6421242495412457, 0.9239207054420927, 0.9336219461922934, 0.4244151934213653, 0.5673643045526261, 0.8301442064454496, 0.528471943574542, 0.8835542071774324, 0.8820947700128993, 0.4561713647735051, 0.584381944856391, 0.9493936477483658, 0.7816316980556022, 0.7770145472448273, 0.8495153837633861, 0.8318035560268552, 0.5220388622338656, 0.8589980209217414, 0.21216021099657945, 0.8782303617207965, 0.901850575196968, 0.7683760396387002, 0.9559989503713009, 0.938411491366706, 0.7225398931917507, 0.5918361617892179, 0.8596378534897678, 0.8816239240572568, 0.9296844522785247, 0.8299758417251202, 0.7538846798551382, 0.931253582726863, 0.6902425303942638, 0.9299571155275668, 0.35461708236434614, 0.6119587629530028, 0.8979450471026776, 0.8782891297971865, 0.6144930729026484, 0.5601837238662909, 0.4230258756549153, 0.5115702372514986, 0.6133200318312215, 0.8287048127179734, 0.42887934024879554, 0.5543929044930882, 0.5414149972460248, 0.7453725251924848, 0.6522898344923613, 0.6445138145159856, 0.9212190995841192, 0.6991293681294938, 0.9188224881967051, 0.9444881948020799, 0.8399825546316605, 0.6440269003431431, 0.45260210695563535, 0.6678228102737954, 0.8535669746933884, 0.23469888428232324, 0.7581156815660375, 0.8329520097124233, 0.5886389680190937, 0.4250130050586104, 0.290761161529129, 0.9065968169685268, 0.39757013049667705, 0.9584529405260903, 0.24804178200132845, 0.8400605958344816, 0.9562762484868867, 0.5923100188758571, 0.5355488836719776, 0.6866862751474886, 0.753715093249364, 0.9302702282582556, 0.8405005145861136, 0.7758456574858743, 0.8270123797965384, 0.9270997487744173, 0.8779999285967196, 0.6350604679157676, 0.9057987369792326, 0.9732730617650076, 0.28007269673131574, 0.5393237551960537, 0.9509318156255189, 0.8055358405733448, 0.8512314640165554, 0.6752183046546253, 0.9766791413071304, 0.26893819095773785, 0.5105552073939665, 0.7964242570425004, 0.9159462749375985, 0.46312559485344046, 0.7889853219989779, 0.5331772070153998, 0.6250130361556073, 0.5340700079782073, 0.8981158701031157, 0.8424802355113449], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [11.0, 8.9, 11.0, 10.1, 8.9, 8.7, 10.7, 9.7, 10.0, 9.9, 9.2, 10.5, 9.8, 9.2, 9.1, 8.8, 9.0, 10.3, 12.0, 10.8, 11.7, 9.7, 9.7, 8.9, 12.0, 10.9, 9.4, 9.7, 9.8, 10.2, 8.7, 8.7, 9.6, 9.3, 10.5, 9.5, 9.4, 9.6, 9.4, 9.3, 12.4, 9.3, 9.2, 9.3, 11.4, 10.5666666666667, 9.4, 9.8, 9.0, 10.9, 10.4, 8.8, 11.5, 11.0, 9.7, 9.3, 9.8, 11.1, 9.4, 9.4, 11.1, 9.7, 9.0, 9.7, 9.3, 10.9, 9.2, 9.4, 10.7, 9.0, 9.5, 11.3, 10.4666666666667, 9.4, 10.5, 11.1, 8.9, 10.4, 9.2, 9.0, 9.6, 9.9, 9.5, 9.5, 10.1, 10.4, 9.0, 8.9, 9.8, 10.5, 9.5, 9.5, 9.7, 9.2, 9.7, 10.9, 10.8, 9.2, 8.9, 9.2, 9.4, 10.6, 8.8, 9.3, 9.4, 10.5, 9.4, 9.5, 9.2, 9.1, 9.4, 9.1, 9.8, 9.9, 10.6, 10.6, 9.4, 9.4, 9.5, 11.0, 10.2, 11.4, 10.6, 9.5, 10.1, 9.4, 11.0, 9.7, 10.1, 10.5, 13.4, 10.4, 9.2, 10.5, 9.4, 8.7, 11.4, 10.4, 9.4, 8.8, 10.7, 10.1, 10.3, 11.7, 9.5, 10.3, 10.9, 9.2, 9.5, 10.0, 9.2, 10.0, 10.5, 9.5, 10.1, 10.5, 10.7, 9.4, 9.6, 9.3, 10.4, 9.0, 10.4, 9.2, 9.0, 10.4, 11.3, 10.9, 11.0, 10.3, 9.2, 10.5, 9.4, 10.2, 9.5, 12.4, 10.1, 9.3, 8.8, 10.6, 10.3, 8.0, 10.3, 9.8, 10.5, 10.5, 9.3, 9.2, 10.2, 9.3, 9.7, 9.7, 10.1, 11.1, 8.6, 9.5, 9.1, 9.8, 9.1, 9.6, 9.5, 9.0, 9.0, 9.4, 11.4, 9.4, 9.0, 9.6, 9.0, 8.6, 10.2, 9.0, 9.7, 10.5, 9.3, 11.5, 9.0, 10.2, 9.3, 9.8, 8.7, 9.3, 9.3, 9.4, 9.1, 10.0, 9.1, 10.3, 10.6, 10.1, 8.8, 10.4, 8.8, 9.7, 9.6, 9.4, 9.8, 10.9, 9.2, 11.4, 9.2, 9.7, 10.9, 9.4, 11.4, 10.0, 10.7, 9.3, 9.4, 10.0, 9.0, 8.6, 10.6, 8.8, 9.9, 8.8, 9.4, 9.5, 9.5, 10.8, 9.8, 10.0, 10.1, 10.1, 9.5, 10.8, 9.7, 11.4, 12.2, 9.6, 11.4, 10.0, 9.3, 9.6, 10.2, 9.0, 9.5, 9.5, 10.1, 9.2, 10.0, 9.5, 11.4, 10.9, 9.2, 11.2, 10.1, 9.1, 11.4, 9.8, 9.5, 9.7, 9.2, 9.5, 11.1, 10.2, 9.5, 9.0, 9.2, 10.3, 11.4, 10.6, 10.4, 9.3, 9.5, 10.8, 10.5, 9.5, 9.0, 9.4, 9.4, 9.6, 10.2, 8.7, 9.9, 8.8, 9.8, 9.5, 9.5, 9.3, 11.8, 9.4, 10.1, 9.5, 11.5, 9.4, 8.8, 10.4, 9.5, 10.4666666666667, 9.8, 9.5, 10.5, 11.4, 9.7, 10.4, 9.3, 10.2, 8.8, 10.7, 8.9, 9.2, 10.4, 9.8, 8.4, 10.3, 9.3, 11.0, 8.8, 10.0, 9.3, 11.4], \"xaxis\": \"x2\", \"y\": [0.8142007211296887, 0.07257977436397642, 0.7430932382113554, 0.8214862427787604, 0.5698848321031316, 0.6048119589659149, 0.6466669219762841, 0.14510080060429495, 0.2250304680670007, 0.28492472637839966, 0.42061632734231896, 0.8281252124183194, 0.49622399336621903, 0.3482895521074759, 0.4678833354511545, 0.5708968386647719, 0.37048677721847617, 0.553632248395139, 0.8702137350251022, 0.42186952587750404, 0.8696774950675754, 0.5410576963494411, 0.3971326977900686, 0.3275001196198921, 0.9448289227093116, 0.7109941475090589, 0.41925580570138304, 0.3675472469853882, 0.6721911818800557, 0.5562207270314473, 0.5262426608517637, 0.3244609607385458, 0.15056615442564347, 0.15676979724311627, 0.6037730696030339, 0.6342511279653397, 0.021947035536558718, 0.32429164429335744, 0.5678746850743716, 0.3571680467137555, 0.7755534309390314, 0.3240287891037917, 0.699424662214302, 0.5151532452376618, 0.7564675819717819, 0.38343591026479057, 0.19811005648518398, 0.3168419703358067, 0.5315947262677626, 0.9269044449273315, 0.8260225289794664, 0.451791899378283, 0.830516920403184, 0.47128602930186, 0.19027823806377472, 0.5181346713949518, 0.29552777318700446, 0.45414400334446664, 0.39329840463575844, 0.42327932510626076, 0.45838907164509224, 0.2233864252642039, 0.3628419195926303, 0.6709353200988277, 0.46058046365566996, 0.25551237833043455, 0.7234147543269824, 0.1481282262733752, 0.314935793994079, 0.20050531530561894, 0.37453315488553635, 0.701015529968035, 0.6343341418527783, 0.1739320900588749, 0.734996253073231, 0.8172229478314255, 0.3598554146739685, 0.7121055211356295, 0.2620604909731644, 0.3421138035730516, 0.6951268813066005, 0.35208221297891723, 0.452099210446082, 0.18907620085798427, 0.5444201651108793, 0.6484058972837882, 0.3258186925596978, 0.5963383680780668, 0.6202666247822538, 0.576738593946626, 0.5054992484109841, 0.2972245631729925, 0.6844333356791464, 0.42629475072919953, 0.4405153833121037, 0.01207867704715336, 0.7609288944606691, 0.23951123982998349, 0.09310514674080905, 0.5084920166510624, 0.33067609257366243, 0.36481899584296196, 0.5708968386647719, 0.3194802059637459, 0.14207297841267416, 0.5776897120055972, 0.2026163425795633, 0.37909000048748537, 0.38206764842015895, 0.41324683104354176, 0.17826143731067332, 0.42339414872454434, 0.39148091864802853, 0.3511350413575442, 0.8053393751847749, 0.5937005322868365, 0.6849942580153355, 0.38930033076762494, 0.5168500865319015, 0.5699073288866824, 0.5376087249833421, 0.8185832461647057, 0.25950508036415604, 0.20394483716883388, 0.3303044530853749, 0.2528102968078532, 0.8477719856767125, 0.5217124250004609, 0.3303044530853749, 0.5382885532339231, 0.9625763866028243, 0.6536174904341296, 0.42629475072919953, 0.6458781618432388, 0.46574001023909845, 0.37268733756108086, 0.8180085473348132, 0.35493594975273335, 0.2423640089427935, 0.3636330633241046, 0.6421622311157122, 0.5444201651108793, 0.7396308412796291, 0.9036153464846048, 0.21101569987323432, 0.6004024464464508, 0.7595861882737439, 0.486549602332862, 0.2379839758891197, 0.5147825233229498, 0.2065932277190248, 0.4342628292980428, 0.5940848250235929, 0.4857193175270624, 0.5332610244722983, 0.5402196969638672, 0.8578846895389459, 0.5290225674595067, 0.6074669506688956, 0.1847839155105034, 0.3581391437324269, 0.4304380754474639, 0.8410120374942113, 0.5810086483513661, 0.19026233744636453, 0.7223494520380469, 0.8589928738613049, 0.8374625942163022, 0.781203852328267, 0.73983195178881, 0.41156537259256004, 0.7482873396984137, 0.44431713201158524, 0.7113673874393347, 0.49869552495399233, 0.7627102864663872, 0.37193390769028617, 0.37187810520956766, 0.3773291605703562, 0.8719651627687759, 0.6218762459828849, 0.3781393537983126, 0.553632248395139, 0.47624084907999176, 0.774399353278846, 0.5840424935194366, 0.5601025471409736, 0.6186690618327106, 0.620611700356168, 0.5755798886129706, 0.15047650536569443, 0.5530049338021776, 0.6597439619439023, 0.8300222117931148, 0.3490158529243493, 0.4410646109528086, 0.5067909967309752, 0.5851482063434866, 0.7149827463187939, 0.4849259975950144, 0.2094210588097294, 0.33399024531412796, 0.4083143545243069, 0.7497022835596558, 0.7817929239213606, 0.7637421953724776, 0.3825655414920891, 0.6611482494098961, 0.19022241257108333, 0.44972084577511023, 0.5476732603321269, 0.4831274653996314, 0.5077048340566679, 0.7289504589448288, 0.4379810490617926, 0.8017221455714771, 0.6434673631716396, 0.5059779734745421, 0.6065367192264559, 0.650368705032214, 0.34567471266024347, 0.39561589000187136, 0.3427787545601037, 0.4676404271158623, 0.5332283386400669, 0.4519108142444285, 0.40662831629925006, 0.42305576187259053, 0.22032895172816622, 0.5278715769330472, 0.43679486629948455, 0.743933429392776, 0.5269515041023835, 0.5008800654866953, 0.214168174561682, 0.44879088851457377, 0.683485355417811, 0.807753104897186, 0.42629475072919953, 0.8502951424821861, 0.17421175568219957, 0.25491371883486935, 0.7595861882737439, 0.6571724132942184, 0.7813188949129265, 0.5626906653340306, 0.8674288259883418, 0.6600514650598344, 0.4827749661719035, 0.5456147119159479, 0.39827550056677263, 0.27323823737433794, 0.695896529362927, 0.5048820477254727, 0.5422349097465021, 0.5610936746718964, 0.6571724132942184, 0.3088751107498249, 0.45428761266464013, 0.6604471727860799, 0.43371621376298963, 0.6171893197168647, 0.8100511550343341, 0.8100511550343341, 0.605832578461134, 0.5526475584669951, 0.4275055171336787, 0.8734720021260204, 0.8508295378350301, 0.5807723706867254, 0.8272749548927728, 0.2670652478909882, 0.7020144194675465, 0.4615566916191992, 0.7055847950248242, 0.43389869234556755, 0.6071692164257629, 0.3496825637352313, 0.23676491619791426, 0.7057755976874825, 0.15539001443149586, 0.6187538615870153, 0.8735882828904331, 0.30049486749739024, 0.23191705420611952, 0.8913917397916864, 0.4977157214618499, 0.16961113509580228, 0.8485494795219795, 0.4760032757956232, 0.5053843099270294, 0.2676015269871764, 0.3627664421236291, 0.15146266807038725, 0.7898179638281774, 0.6145296307645981, 0.3790380236797623, 0.3003532640340299, 0.6086112016774773, 0.39906793889171593, 0.8185832461647057, 0.6715802865662828, 0.8260225289794664, 0.6056902064850618, 0.400132762133902, 0.39471961640683584, 0.6449859309106076, 0.5637152910565628, 0.39949420960438964, 0.5490401551410112, 0.4398875418860128, 0.30916577334906253, 0.7093303227687476, 0.4562508424819209, 0.40444044759428516, 0.5773483646962835, 0.447777692034652, 0.4961542215384683, 0.32474312180562226, 0.21192693199409943, 0.9056903490933487, 0.5013816399998683, 0.758876109553896, 0.6364928148646596, 0.2952804752502578, 0.4748951900520853, 0.43679486629948455, 0.5479962315186364, 0.4728142838839701, 0.6343341418527783, 0.12248807650217919, 0.5052525886146573, 0.8281252124183194, 0.8930081609652758, 0.36283726088930296, 0.8098196742550625, 0.656477404357746, 0.193885049884708, 0.5269515041023835, 0.49858469647139786, 0.32780472036158087, 0.24927512797396847, 0.6148718578314069, 0.10691527318901187, 0.136775438340409, 0.8489192718114075, 0.2600203086082801, 0.8142007211296887, 0.5269515041023835, 0.7966615933629455, 0.5633234794197017, 0.767479452333631], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"alcohol\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"alcohol\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}, \"alcohol_bad\": {\"data\": [{\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (ref)\", \"type\": \"scatter\", \"x\": [8.7, 12.6, 10.6, 10.5, 9.4, 9.5, 9.7, 10.4, 9.3, 9.7, 10.2, 11.0, 8.7, 10.7, 9.3, 9.5, 9.5, 9.8, 9.2, 10.9, 9.5, 9.1, 11.2, 11.2, 9.9, 9.8, 9.9, 10.1, 9.1, 10.1, 9.6, 10.4, 10.8, 10.0, 9.1, 10.1, 10.0, 10.8, 9.6, 9.2, 9.2, 10.6, 9.5, 8.9, 9.5, 10.1, 9.1, 10.5, 10.6, 9.3, 9.4, 9.1, 9.3, 9.6, 9.8, 9.2, 10.6, 10.6, 10.1, 11.0, 9.3, 10.0, 12.6, 9.4, 9.2, 10.4, 9.2, 9.9, 9.8, 10.1, 8.8, 11.0, 8.7, 11.4, 10.2, 10.0, 8.9, 11.1, 9.2, 12.0, 10.0, 11.1, 9.0, 9.05, 9.8, 10.9, 10.1, 10.0, 11.6, 9.2, 11.0, 9.4, 9.8, 8.7, 9.1, 9.5, 9.1, 9.5, 9.2, 9.6, 9.2, 9.7, 10.2, 9.0, 9.3, 9.3, 10.3, 11.4, 9.0, 10.5, 10.4, 9.9, 9.2, 9.0, 10.4, 9.6, 8.7, 11.4, 10.1, 9.4, 8.9, 12.8, 9.1, 9.7, 8.8, 9.5, 10.6, 9.4, 9.5, 9.4, 9.6, 11.3, 9.4, 9.2, 9.3, 10.0, 11.05, 9.1, 11.2, 9.9, 9.2, 9.4, 11.4, 9.2, 9.9, 9.0, 11.0, 10.6, 9.7, 9.6, 11.1, 9.5, 11.4, 10.2, 9.2, 9.8, 9.2, 9.5, 9.9, 10.8, 11.5, 10.2, 9.6, 8.4, 9.5, 11.5, 9.53333333333333, 9.1, 9.4, 9.2, 9.6, 11.5, 9.4, 9.3, 9.4, 10.3, 9.5, 11.4, 10.2, 9.2, 9.6, 10.9, 10.2, 9.7, 9.0, 9.4, 10.2, 11.8, 9.4, 9.0, 9.6, 10.7, 9.4, 11.0, 9.4, 9.7, 9.3, 9.5, 9.5, 9.7, 10.3, 8.8, 8.8, 11.0, 11.3, 9.0, 10.5, 9.5, 11.4, 10.8, 9.9, 10.4, 9.6, 10.0, 9.0, 9.0, 9.4, 10.8, 9.2, 10.0, 9.7, 11.2, 9.5, 10.0, 10.2, 9.2, 9.2, 9.0, 10.2, 9.2, 10.1, 10.5, 9.6, 8.7, 12.0, 11.1, 9.1, 10.6, 10.0, 9.3, 10.8, 9.5, 9.0, 9.4, 11.2, 10.5, 9.4, 10.5, 8.8, 9.3, 11.2, 10.7, 10.8, 9.6, 9.5, 9.1, 9.7, 10.4, 9.5, 9.5, 10.5, 9.2, 9.9, 9.5, 9.0, 10.8, 10.6, 10.0, 10.6, 9.2, 8.9, 9.0, 9.9, 9.9, 9.6, 9.7, 10.5, 9.3, 9.9, 10.5, 10.0, 9.8, 9.5, 9.3, 10.2, 9.5, 9.5, 9.4, 10.8, 10.2, 11.1, 10.3, 11.0, 11.2, 9.4, 10.2, 9.0, 8.7, 8.9, 9.5, 11.4, 10.7, 10.0, 8.6, 9.7, 10.6, 9.3, 9.3, 9.4, 9.3, 9.3, 9.5, 9.8, 9.5, 9.8, 9.3, 9.3, 9.4, 9.5, 9.8, 10.5, 9.5, 10.9, 9.5, 9.6, 9.5, 14.9, 10.4, 9.2, 9.4, 8.7, 9.5, 9.7, 9.4, 9.8, 9.4, 8.9, 9.5, 10.9, 9.0, 9.6, 9.4, 10.8, 9.6, 9.2, 9.8, 9.2, 10.0, 10.1, 9.4, 9.4, 10.0, 9.7, 13.0, 10.0], \"xaxis\": \"x\", \"y\": [0.7197707895473677, 0.05448058807241418, 0.5021256787650443, 0.4710854375480472, 0.7156076129280222, 0.7966690429773311, 0.7265425252145667, 0.16771266951545494, 0.610944103187451, 0.6324527530146118, 0.42180662537268765, 0.2598044700255929, 0.5503032830239416, 0.5632112185661304, 0.6840604465833231, 0.6224375641140001, 0.8071781895370533, 0.9515482366939344, 0.3994071349416132, 0.9677746238863042, 0.572587586261062, 0.7602674855798478, 0.861098734498427, 0.1386074727873, 0.6703360831713621, 0.8064003460928679, 0.3172728283240366, 0.8039094494444462, 0.9186426431335688, 0.6026275969807151, 0.8609701260317718, 0.3485833566260712, 0.3005246278528939, 0.2859113263741919, 0.4978204971029292, 0.5125675444128744, 0.4268860326359044, 0.11791793574572085, 0.440027850275134, 0.4938434408506086, 0.4933189622152446, 0.166194347192407, 0.30200278364192557, 0.6822425768461728, 0.8693180940701344, 0.24112389044610405, 0.43189370387303117, 0.284455178085937, 0.23793737479647703, 0.5535561322468214, 0.7900402576908969, 0.47373775892899717, 0.6055733033081183, 0.7462675017011632, 0.32245623572553406, 0.7612367841042231, 0.36308410170653527, 0.6103993963703384, 0.3965676277125745, 0.2230008284200371, 0.8480025164595866, 0.43585875500482685, 0.24095331994381775, 0.4030652094068704, 0.8951637220162157, 0.2782175630406618, 0.7337660836226194, 0.8352762102164887, 0.6223987562306759, 0.2928263700360406, 0.6563137004068428, 0.16155652477357085, 0.6364666355122575, 0.2186811050870735, 0.27206300237801306, 0.4358901152617537, 0.6136035252376228, 0.07900866299327158, 0.8522855318359817, 0.11906253414448076, 0.3466831105240652, 0.11265227152414181, 0.6302693732121377, 0.7168097665217413, 0.4796298258249143, 0.4476252306691143, 0.3612478268219491, 0.611861930499026, 0.15121036728507153, 0.5363393546692182, 0.16155652477357085, 0.441733396330222, 0.7834276811132227, 0.6364666355122575, 0.44873286860252337, 0.4948960601400133, 0.4172084246960842, 0.5055831714989107, 0.5269082808529498, 0.3737404408311804, 0.4491757516278906, 0.5266720849021, 0.2882430633103308, 0.6066213483726142, 0.83534933450756, 0.2509605867776752, 0.230738949997912, 0.25680675940048736, 0.6858999083789018, 0.27626495444752697, 0.35158671089680515, 0.311480105980391, 0.5950329577300569, 0.4196263877039489, 0.3672198477254309, 0.5488429300958864, 0.6273126624389191, 0.0990306898864649, 0.935036100419004, 0.5556828679884147, 0.6003916802566726, 0.1337843055401957, 0.6898191889393818, 0.46604488826349566, 0.6668872608045229, 0.5998672378660981, 0.14712454771937833, 0.8558065212045691, 0.883276495704891, 0.5544329747085402, 0.38398791005853006, 0.8623310715459079, 0.4482795971615686, 0.4767821080964978, 0.6451659669426603, 0.5099786295438409, 0.11454219273407718, 0.5691587732433696, 0.2398813672346335, 0.8592796956842923, 0.38133093816728936, 0.4754945767078651, 0.2673740541283356, 0.43092180164799054, 0.5981491184574936, 0.7512253043619477, 0.20474988026063612, 0.12337786436138054, 0.6965484670033051, 0.4642254518352117, 0.29034758521725457, 0.7912282271603185, 0.1364389858241727, 0.5326323768611896, 0.3938848007926149, 0.886984727126295, 0.5955398539691413, 0.3667393936023857, 0.35129461810907203, 0.578130474122496, 0.1952086434691429, 0.6982941690158907, 0.6159300986783536, 0.6650580695700093, 0.8007006003287879, 0.13750802167619447, 0.47121416359091395, 0.5691587732433696, 0.5295784007050042, 0.4938434408506086, 0.4240508430342457, 0.1531205555636086, 0.7965770364050346, 0.4829168465516456, 0.6333246955344933, 0.38682769986244625, 0.5589353890471914, 0.30965836575156913, 0.6133571507425741, 0.5363393546692182, 0.5474540697204298, 0.9680074395956593, 0.29703705077451537, 0.7566858385458134, 0.451244026180727, 0.6224939697452743, 0.9340693900855184, 0.1254375450851024, 0.770680513376406, 0.7273231109206828, 0.410671569380914, 0.19928392436820586, 0.44743622108127745, 0.4991477681643879, 0.5443787589855091, 0.826082779912576, 0.5642536294664222, 0.6762559922350657, 0.39283078357423706, 0.3074847569358159, 0.40732461839200396, 0.5614584986504241, 0.5614584986504241, 0.575628870274347, 0.1938881144566701, 0.6480440770440566, 0.23946299348505806, 0.6110142157087575, 0.32489046344192996, 0.127020290619695, 0.28948900574123104, 0.27970970921902805, 0.5179212029104148, 0.579807192000203, 0.5695619245525361, 0.7471497674522103, 0.6761943115269239, 0.6052803835931642, 0.9048996801452402, 0.632953623191418, 0.7849920634816455, 0.12946409768986655, 0.3899257470968539, 0.37735505673750047, 0.27206300237801306, 0.6356505945299911, 0.9000798247851504, 0.5852448485124296, 0.3537739535016634, 0.8589709040748648, 0.5105041430354158, 0.4760479563081992, 0.3915586115462193, 0.4344526143297297, 0.04825794875232026, 0.25106204840173363, 0.5352062615150248, 0.2084678736174792, 0.5588772074146924, 0.42656597432725707, 0.3395528272139201, 0.5154796814541086, 0.30312695461308037, 0.4684625037801391, 0.13140485141127656, 0.37575572516499556, 0.7087902803012941, 0.22740617784346517, 0.7932370230268412, 0.6977827466507267, 0.8687065743771458, 0.3532210556477622, 0.3005246278528939, 0.8817461779308045, 0.5897758288136841, 0.5117334773877459, 0.2267712913026929, 0.7462523759498982, 0.5055831714989107, 0.6276122794572256, 0.34766968675436505, 0.563322001169588, 0.4035281086421867, 0.44827723495654004, 0.7588644006503809, 0.17560197311170134, 0.2736156405730563, 0.5646478519097824, 0.12788772013874206, 0.8127608550985441, 0.35130933230290007, 0.8842329534318195, 0.5671758377024384, 0.508518787579709, 0.4735654621913231, 0.6614347321502836, 0.7032589073748752, 0.418601168771625, 0.40262233345395115, 0.38045938978299354, 0.6221728234115828, 0.6769388667590319, 0.825791915264051, 0.8036522945246104, 0.5350776523934957, 0.5038683203672731, 0.4187790963850706, 0.3942708224564714, 0.36585282612655, 0.42973128126448334, 0.1395024853671747, 0.36909778672938764, 0.5126700875045708, 0.31128511290513083, 0.5841805470690385, 0.42932394036482613, 0.5168725346003686, 0.9331527243268325, 0.5090935678835011, 0.848083892739094, 0.7288594688776423, 0.23463814542978878, 0.9073343486287574, 0.5445649372592127, 0.8030108083542629, 0.30698149193503155, 0.47724620771884374, 0.49565431290071005, 0.29179072192325783, 0.53941953634433, 0.32642767658125227, 0.5714063949384225, 0.6769388667590319, 0.48314991346809855, 0.3838692085325581, 0.7654355578102645, 0.6807995217458978, 0.7803105409218809, 0.4971816769068883, 0.5662837862370104, 0.32557907866588853, 0.4059739580227363, 0.8621668957327787, 0.4863555612469991, 0.44913520001249685, 0.5044088987161788, 0.018560580499064172, 0.17397747102053363, 0.8203404366189, 0.531551035274026, 0.3951880410340851, 0.6710839680909022, 0.7545393605546251, 0.25029771644034415, 0.31651464458218903, 0.7900402576908969, 0.7649542174153934, 0.6282404390050247, 0.5124469561170844, 0.7501741577575001, 0.3717170374651112, 0.5479204837841629, 0.1799627586960565, 0.8716748635647116, 0.4700369344869263, 0.7044722268129955, 0.7597806244765397, 0.4570971226262448, 0.3688130253756654, 0.5854022956087224, 0.6067015953642416, 0.6092966434658947, 0.5713009051869427, 0.15316343939585397, 0.31191498773739224], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (ref)\", \"type\": \"scatter\", \"x\": [11.2, 10.0, 12.7, 10.5, 9.4, 10.1, 13.5, 10.4, 12.4, 11.5, 10.0, 9.8, 10.5, 9.1, 9.5, 9.6, 11.7, 11.2, 12.3, 11.9, 10.0, 12.3, 10.1, 11.9, 11.5, 10.0, 13.6, 11.3, 9.6, 12.8, 12.2, 10.0, 10.9, 11.8, 12.5, 10.0, 9.5, 12.9, 12.8, 11.3, 11.5, 10.2, 12.1, 9.7, 10.0, 8.8, 9.0, 12.3, 12.0, 12.0, 9.7, 8.9, 12.4, 10.3, 11.1, 8.6, 10.8, 11.8, 10.8, 12.5, 10.4, 12.8, 12.2, 10.2, 9.8, 9.2, 11.7, 10.5, 9.8, 13.4, 12.2, 13.4, 11.0, 12.3, 10.7, 9.8, 12.8, 12.3, 10.9, 12.4, 10.1, 13.5, 11.0, 10.4, 12.2, 11.3, 11.3, 9.9, 13.4, 9.3, 10.4, 12.2, 10.2, 12.4, 10.6, 11.3, 10.6, 12.6, 11.2, 9.4, 10.2, 8.9, 11.9, 11.0, 12.5, 9.7, 12.2, 10.6, 11.4, 10.75, 12.4, 8.8, 9.8, 10.9, 10.7, 12.7, 11.4, 11.5, 9.1, 11.0, 9.0, 9.8, 10.4, 8.9, 9.6, 10.5, 9.5, 8.9, 11.0, 9.9, 10.6, 14.0, 9.1, 11.0, 9.9, 12.9, 10.0, 11.0, 13.4, 10.0, 12.7, 10.5, 10.5, 10.6, 9.3, 10.6, 11.7, 10.9, 10.6, 9.2, 9.0, 10.5, 10.3, 9.5, 9.0, 11.9, 11.4, 12.1, 11.4, 12.0, 10.5, 9.8, 11.7, 12.1, 10.4, 9.6, 10.2, 10.1, 8.9, 12.1, 11.1, 9.4, 9.7, 10.5, 10.5, 10.1, 10.0, 9.8, 11.2, 10.8, 10.7, 12.1, 11.9, 12.7, 9.6, 11.0, 13.55, 10.1, 11.6, 10.3, 11.2, 12.8, 12.5, 12.2, 9.7, 12.1, 8.7, 11.0, 11.8, 10.5, 10.7, 12.5, 12.2, 11.8, 10.6, 12.0, 10.9, 10.8, 8.8, 9.5, 10.4, 10.8, 12.1, 10.8, 11.5, 10.0, 11.5, 10.8, 10.9, 12.8, 10.2, 8.7, 10.5, 12.9, 10.6, 10.8, 9.1, 9.1, 10.8, 10.6, 11.0, 9.9, 11.5, 10.4, 11.9, 12.2, 11.0, 9.8, 11.8, 10.7, 10.8, 9.0, 9.2, 8.8, 9.5, 11.4, 10.1, 10.1, 9.3, 12.3, 8.6, 9.1, 10.8, 11.2, 11.2, 11.0, 12.0, 9.4, 12.6, 11.5, 9.0, 12.2, 10.9, 12.3, 11.6, 11.2, 13.2, 12.5, 10.3, 13.0, 10.8, 11.4, 11.4, 11.0, 13.0, 9.9, 10.9, 11.7, 12.8, 10.5, 11.2, 11.6, 12.2, 12.75, 11.9, 11.9, 9.3, 10.0, 9.6, 12.0, 10.1, 12.0, 12.4, 11.2, 10.9666666666667, 9.1, 9.9, 10.0, 10.9, 10.7, 12.6, 10.5, 12.3, 11.0, 9.7, 11.0, 11.4, 11.5, 9.0, 10.1, 9.5, 9.0, 12.4, 11.3, 11.0, 9.7, 9.4, 12.8, 10.9, 12.2, 12.6, 11.4, 12.6, 11.7, 11.0, 9.5, 9.7, 11.2, 9.7, 12.2, 11.0, 12.4, 9.3, 10.4, 10.8, 9.1, 10.5, 12.8, 9.6, 10.5, 9.9, 11.1, 12.1, 9.5, 9.9, 10.0, 9.4, 9.0, 12.4, 8.9, 10.8, 11.2, 10.9, 11.0, 9.6, 11.4, 11.0, 12.4, 10.1, 12.2, 9.4, 10.4, 10.3, 11.5, 9.8, 9.7, 12.6, 11.2, 12.0, 9.0, 10.8, 10.3, 10.4, 10.1, 12.9, 12.5, 12.7, 10.4, 9.9, 9.5, 9.2, 10.8, 9.1, 9.3, 9.0, 10.9, 9.0, 9.5, 10.5, 12.2, 11.2666666666667, 8.9, 9.9, 11.0, 10.4, 11.0, 11.8, 10.6, 12.6, 9.4, 11.5, 9.3, 12.5, 8.8, 11.5, 10.4, 10.6, 11.3, 10.8, 8.7, 10.4, 11.1, 11.3, 11.2, 10.5, 11.9, 11.6, 9.1, 10.8, 9.4, 10.5, 10.8, 9.6, 9.0, 10.2, 11.0, 11.2, 11.4333333333333, 12.2, 12.0, 12.4, 12.4, 12.8, 11.6333333333333, 10.0, 13.1, 11.5, 11.3, 12.3, 10.6, 11.0, 10.7, 11.8, 10.1, 10.2, 10.4, 9.6, 9.5, 11.0, 10.9, 12.6, 12.4, 11.9, 10.2, 9.7, 13.0, 10.2, 10.9, 9.9, 9.1, 11.2, 9.5, 11.0, 9.2, 11.5, 11.0666666666667, 10.4, 11.0, 10.4, 13.4, 9.6, 9.4, 8.7, 8.8, 12.4, 12.9, 12.4, 11.0, 10.2, 10.0, 11.7, 8.5, 8.8, 9.7, 9.0, 12.0, 12.5, 9.0, 11.7, 9.2, 9.4, 9.5, 9.2, 10.3, 11.5, 11.4, 9.6, 10.1, 12.8, 10.5, 10.5, 12.0, 11.7, 9.0, 12.5, 10.1, 11.4, 9.9, 12.3, 12.2, 12.3, 12.1, 10.4, 9.0, 12.1, 12.3, 11.9, 9.3, 11.6, 12.7, 9.5, 13.2, 13.0, 11.5, 9.0, 12.0, 9.3, 11.6, 9.3, 11.2, 10.5, 10.1, 10.7, 10.1, 11.4, 10.7, 10.5, 12.1, 11.0, 12.2, 10.5, 12.8, 10.0, 10.6, 12.2, 13.2, 11.6, 9.4, 12.0, 11.0, 10.0, 11.3, 10.8, 9.7, 10.4, 10.4, 10.8, 9.2, 9.3, 11.4, 9.4, 9.8, 11.2, 9.8, 13.6, 11.0, 11.3666666666667, 10.5, 12.5, 10.1, 12.1, 10.1, 11.5, 12.7, 12.0, 12.9, 9.0, 10.6, 10.5, 10.5, 11.9, 12.5, 10.1, 10.7, 12.2, 10.8, 13.2, 10.8, 10.3, 11.2, 9.9, 12.5, 9.5, 12.8, 10.2, 10.1, 11.1, 10.5, 11.1, 9.2, 11.2, 11.7, 10.2, 11.0, 11.7, 8.8, 10.8, 9.7, 11.5, 8.8, 10.9333333333333, 10.5, 9.8, 10.7, 12.7, 11.8, 10.1, 9.4, 11.3, 10.2, 10.4, 11.3, 10.0, 10.9, 9.6, 10.9, 9.6, 11.7, 9.53333333333333, 12.3, 10.2, 9.5, 9.2, 11.0, 11.7, 11.3, 10.0, 9.53333333333333, 10.8, 9.5, 11.8, 9.9, 12.0, 11.8, 9.5], \"xaxis\": \"x\", \"y\": [0.18439386755371057, 0.5750868907731637, 0.1132172353536568, 0.19850047615697952, 0.6950004168934912, 0.41826441672946313, 0.040828937665112974, 0.2145583871630251, 0.09143093017991866, 0.10013996234885614, 0.3658834999306372, 0.587897812361327, 0.23563705889496211, 0.5289998061994394, 0.5981734696485812, 0.5956194363709464, 0.11295199838815062, 0.6349332021584286, 0.09356782907078887, 0.0672754654033908, 0.3541579814831264, 0.11781588709523827, 0.3295981493457443, 0.23443288181779365, 0.13830133810679424, 0.5122546205578999, 0.03626449638205209, 0.32057959349203036, 0.3955164844050859, 0.21320459763992916, 0.08620177311633537, 0.4132497936565127, 0.19514157099220286, 0.028148892894647393, 0.03728071159582558, 0.20213762816504022, 0.39088790332760825, 0.10566618212719892, 0.11466232649727714, 0.09544364959788487, 0.07351553674018241, 0.3657542344632553, 0.05859665738698361, 0.43634835962676355, 0.4827032077898804, 0.516310366273556, 0.6480037931050455, 0.21122004543372697, 0.030344760075157406, 0.22750344576024595, 0.18673438423788624, 0.5460909738859347, 0.0666291073587214, 0.320234954276134, 0.515425573770442, 0.5751179393061847, 0.3262180383913996, 0.12192585741802231, 0.6165939755266235, 0.09365914315081003, 0.44259853952477324, 0.31958523161407537, 0.09228899111547839, 0.22815273642701062, 0.5282447951108347, 0.7777719169155834, 0.13834506443323813, 0.29425092810710396, 0.5300870647699181, 0.031947521718024174, 0.1108646816717751, 0.053339747820140615, 0.14466174791529418, 0.25697560969337485, 0.3383868137798065, 0.30803904997837983, 0.03434255320493995, 0.08689109251212201, 0.46044782253877736, 0.0973761441498977, 0.3449058470623745, 0.024212367984770777, 0.11665042079727428, 0.3333970234137619, 0.1495417879159372, 0.0679784404121434, 0.2360052425084116, 0.39147703437781534, 0.04428683932015287, 0.5381556738404795, 0.4357341587922019, 0.11843845992675284, 0.28107964630818494, 0.06989794698232743, 0.2658605825653322, 0.22408104406272966, 0.15519213452661884, 0.09873339188795927, 0.10739713799337769, 0.4712507279726723, 0.31257930793611366, 0.6259141532505736, 0.1651629894813923, 0.13024327386797574, 0.08242409751896962, 0.55355901104019, 0.11256152515999429, 0.22124325125588817, 0.05838775174278421, 0.6734770756819889, 0.06919042490492266, 0.5773286546676725, 0.5693181878572973, 0.12726917141891614, 0.27983888222674136, 0.15690954109554833, 0.18593824584442387, 0.05432525584274117, 0.33273366741371935, 0.12435295831370408, 0.48112847828662497, 0.2959384652215836, 0.5042039768350125, 0.3749869638443927, 0.7258627386781167, 0.4806866421912115, 0.6234335830956541, 0.4191951896523489, 0.20821728825178332, 0.6343085651912675, 0.27674577061671146, 0.02140654255666985, 0.42849246998341506, 0.1817444030106703, 0.4551538855951942, 0.05087080041524106, 0.516641204200833, 0.6810720245435042, 0.08151744899857294, 0.4475169494323581, 0.03995706953508171, 0.2181819033834006, 0.20372897255157485, 0.24305701296248816, 0.5381556738404795, 0.2358485729609252, 0.051323642447754336, 0.1913631294907303, 0.32154631204965056, 0.31229802093755377, 0.3917329141436472, 0.39462053822053156, 0.3680669306910641, 0.5017894292511481, 0.32120711190509066, 0.0768019282386515, 0.1168769044932052, 0.31545143431826594, 0.12007957373947853, 0.08354361700756141, 0.2180731800932174, 0.7653011157176768, 0.05076221583963347, 0.11739077279846111, 0.3639458403519926, 0.4815918747301601, 0.35998732468747585, 0.457353694020342, 0.5520498791697908, 0.22168281241722143, 0.2132287846887433, 0.4763394582576197, 0.3040153802820409, 0.20749766415549342, 0.3316810644107503, 0.8126297477835096, 0.5749367295182395, 0.27274039590582944, 0.2685808245693546, 0.5172108675362206, 0.33506587713796443, 0.09616672688355288, 0.041108213935392324, 0.10548050716105373, 0.5016695616404938, 0.20022874051447226, 0.14220640128276774, 0.23772630779738468, 0.19606080251004787, 0.2603188495268066, 0.18846597668723208, 0.19827111133563302, 0.261548791893628, 0.4140325207077993, 0.8134796325151183, 0.12265695643958285, 0.6311167068993262, 0.13481820177301163, 0.0932384579037443, 0.14050160114126486, 0.2562249115981724, 0.08547750670655718, 0.08643201081848362, 0.19981675431015722, 0.31390222338706264, 0.06221739913672386, 0.06996303880871468, 0.30029370289300306, 0.4306817897420764, 0.6595343859760441, 0.2839408857911616, 0.20468539219890003, 0.1130196126722065, 0.2360017176902124, 0.13187147729288817, 0.42313120297864704, 0.06964897436687001, 0.1624399718171824, 0.17200815643270417, 0.07333105637055992, 0.2440137653363641, 0.4900110333069776, 0.3085554157386313, 0.03480496731142946, 0.12148031785507996, 0.15002971926037112, 0.5314247042003052, 0.2758453007685677, 0.2151852748992088, 0.2658605825653322, 0.29911225563077193, 0.6594110243744711, 0.49869782335001445, 0.16788254706683048, 0.11816213334465087, 0.08230909248122409, 0.13653212507346946, 0.25639170942272826, 0.06562233405876228, 0.23311900627036541, 0.3756616197417655, 0.46674395287949066, 0.3092684534350997, 0.8337319641197457, 0.8331457111467163, 0.2591056156836542, 0.4778687671024334, 0.2542440524586721, 0.5361036306539362, 0.07073721340803463, 0.4731688813159418, 0.5755848065786346, 0.356689463387698, 0.14225616860197343, 0.21837916002376445, 0.14466174791529418, 0.29899643271856946, 0.4757427727983842, 0.08126799884203029, 0.1296501822378736, 0.3286954654423938, 0.08620177311633537, 0.13855855420831553, 0.05543377339452393, 0.11917834098009661, 0.2613621884509647, 0.11269900223777074, 0.08429051026621415, 0.3393961441870107, 0.07031960314855146, 0.11356777592095357, 0.4853279864284006, 0.1279289285514792, 0.0584572339054259, 0.08612988585012649, 0.3472440907423937, 0.1248029959061332, 0.07502335399434323, 0.19827111133563302, 0.3424151534036639, 0.3065175956815872, 0.13808860398564737, 0.058092197534895806, 0.04082786106581715, 0.1602592849246841, 0.09156161599234125, 0.5036030690663805, 0.2640411824475748, 0.6468038092930676, 0.07201805208597656, 0.22470230804277058, 0.1334773721572423, 0.04847889440667685, 0.2685808245693546, 0.10911308148570098, 0.6764508967260475, 0.6280060594576413, 0.36761958218269275, 0.16019930342079847, 0.17605308658107655, 0.14078981831089854, 0.2384997092801764, 0.13117402490907393, 0.12818959986091483, 0.4161925244315118, 0.12435295831370408, 0.09814942480303201, 0.05480698563416486, 0.3746187330143109, 0.41092354232892336, 0.507894749900129, 0.5137929421583434, 0.08293523366016065, 0.2964416548030494, 0.15236141109070434, 0.4396941021426354, 0.41893931094950754, 0.09113953260801844, 0.10967473999240707, 0.055732078845942, 0.05640314085190745, 0.06176263301115803, 0.06427139521062619, 0.20386133178572885, 0.21597661143113533, 0.7486409492386699, 0.2610715902497083, 0.09465277491899493, 0.5556171757583562, 0.137718889647652, 0.1978940751503777, 0.08472590699531857, 0.356262641598029, 0.14596950445002987, 0.13865818299932142, 0.3088915816821678, 0.11516321289421916, 0.16121169033174265, 0.40573483691789825, 0.34308606282264, 0.36300204724896845, 0.17193414756867276, 0.035926383178341514, 0.34536882843285344, 0.4400180463892147, 0.5165194668234709, 0.23319834124303085, 0.9637923675569924, 0.2635599134550337, 0.6259141532505736, 0.12324962258280003, 0.1256037712827487, 0.1248029959061332, 0.11665042079727428, 0.29081136443782263, 0.12993062945549005, 0.20959981847797426, 0.12385816607190492, 0.16931651488884025, 0.2468284110987674, 0.6181879252747016, 0.3509541008179864, 0.08619429866610873, 0.09537770951135394, 0.8204393830764495, 0.2493836920976743, 0.10367142046182065, 0.11516383353466464, 0.07169627826225977, 0.5400384130096556, 0.2709141565803237, 0.16809050322974173, 0.3421981324687273, 0.812724325423183, 0.1326589750154965, 0.054670132935181304, 0.055346153509382656, 0.8039442695404772, 0.3276168958360183, 0.6561718697940482, 0.6214102617950452, 0.3046829516703813, 0.7853649284745584, 0.7303620793003476, 0.6719087507962026, 0.16000678121984613, 0.579612101366232, 0.6347749924714103, 0.41894393066564606, 0.06936532322770372, 0.28322834609079706, 0.343263893078516, 0.4450860003239352, 0.3090838478611311, 0.408095736797927, 0.11529682880263803, 0.13359771811640497, 0.2417229185475579, 0.10092265889692065, 0.8181934133883563, 0.3777834313813965, 0.8273808576462511, 0.18439353202429143, 0.5148786056082297, 0.11287077888712382, 0.16015059460472458, 0.29672938182784603, 0.36944561074938853, 0.2505850522824452, 0.8467591712977676, 0.3840267097226593, 0.261779448872241, 0.1645479955558209, 0.14631295673285594, 0.4248523287309329, 0.09222807982804315, 0.2121484308544801, 0.33273366741371935, 0.5470626312455473, 0.8294144697045585, 0.25206662215500397, 0.15998368749433245, 0.548322128117227, 0.3917329141436472, 0.15981565308588508, 0.23631147082452741, 0.21082920466209698, 0.1871387197916503, 0.24774693401855818, 0.1913242313933492, 0.16437448769677154, 0.07582203648947516, 0.032541140295091364, 0.06311143057978008, 0.5009235508757715, 0.12343879567504301, 0.445735807756371, 0.40322837553658053, 0.09397553936597514, 0.1598391281143201, 0.26702494168661406, 0.19782301216908982, 0.06831823449824892, 0.5451167746582685, 0.20142160156100697, 0.25747632252511843, 0.4257317671215596, 0.5062318064185062, 0.10278357133077332, 0.10857266292312517, 0.06223864817381186, 0.11377411494697365, 0.14082424186384768, 0.2589321903149734, 0.31776639873426016, 0.07983414941561229, 0.30174211068680845, 0.42532907678292176, 0.23734670470511587, 0.2862296469110084, 0.24790288035387664, 0.5526146374040077, 0.20425399436950087, 0.5166825128498294, 0.12415322942140417, 0.5310696157212036, 0.3866387435262121, 0.14313186082947948, 0.31648660326859934, 0.026792916001305622, 0.7856428374245099, 0.42383310375799566, 0.5944566396871084, 0.6256605001243821, 0.08813642250468567, 0.03544811528140901, 0.06935406654889886, 0.15751976448865512, 0.22608551288474832, 0.3127311228465576, 0.1409438166611655, 0.3285615524533705, 0.3591330499592894, 0.47964497307801546, 0.7143146030302826, 0.14223944449319303, 0.06929054967731618, 0.32120711190509066, 0.16913647442041335, 0.707286257884667, 0.3230684446475647, 0.7616845263358343, 0.4104900542879092, 0.10053249234255524, 0.1106599594415556, 0.1543174595222413, 0.46003879185641183, 0.3811350878514418, 0.07185070571861518, 0.23882593985771994, 0.5344976262521839, 0.11031385635331636, 0.09610989844306939, 0.4955559099445003, 0.07845190603324759, 0.30697262074812925, 0.12767551958037127, 0.4375661224395835, 0.07737023387634634, 0.15307682457740834, 0.05694427046787409, 0.09028836937410878, 0.4011292297732457, 0.6186146927451245, 0.11561676905211238, 0.0993047499370594, 0.08102401279833105, 0.8100206966555492, 0.10768932514586738, 0.15386113005635593, 0.4026560765644126, 0.045535707525545144, 0.08229583319403, 0.08227601457953415, 0.8241544781987433, 0.0759900855540333, 0.5147505197509459, 0.11103147778198663, 0.42144961755966015, 0.24880465403270857, 0.3112403223054312, 0.3282460941643247, 0.28312386083977936, 0.2865521931047814, 0.16537364909659502, 0.4284132019637321, 0.34116073112729894, 0.051142721309942685, 0.10794707492381372, 0.1108646816717751, 0.29201805921023904, 0.07365131996157204, 0.36851051207096197, 0.2556143611338999, 0.07392456180697715, 0.045535707525545144, 0.15025986810093994, 0.4395989822566938, 0.19636656988846957, 0.21018464628148859, 0.15085686628779282, 0.3429118439192298, 0.16104008564300487, 0.2055862423584408, 0.18673310211333727, 0.5528531989583015, 0.20219789553586287, 0.5807830339134155, 0.6112381610839525, 0.07515362639458067, 0.5722084734915175, 0.3654892991508686, 0.1991057466826236, 0.4912569401667811, 0.05850610073101081, 0.3077884117234785, 0.17038242498240874, 0.14066607718466684, 0.10248584652416493, 0.4022873718442217, 0.07205214632436985, 0.35142291824287475, 0.10941760034103376, 0.06679271580157364, 0.05675388891699207, 0.058987921856350156, 0.3660303223369904, 0.28790374422385034, 0.4158290962648631, 0.40710291595796666, 0.09934102670994882, 0.06362846635195196, 0.30921476208988685, 0.23242198019285765, 0.055541210656895434, 0.5297663836663529, 0.10744632778983743, 0.18410212910939194, 0.17721960751489196, 0.1962664672709783, 0.1617648996714035, 0.10584426414108294, 0.5203501665477333, 0.07365131996157204, 0.31578819840495265, 0.35364190165315845, 0.1707951928721818, 0.41655733121321636, 0.15801546378512366, 0.7568436608419439, 0.22368578646300386, 0.0609449253562836, 0.2225096762928218, 0.18587673368692093, 0.05559101133196209, 0.569598540521716, 0.08073228430722412, 0.15724041301590164, 0.12879141548479, 0.4306817897420764, 0.17998791969802397, 0.41280880088413996, 0.5723062335690389, 0.6457404130724687, 0.10420061808672998, 0.12564769853034463, 0.21795029564941848, 0.4720930498870375, 0.11304202998506685, 0.545112257205237, 0.14852188644910969, 0.17217029085021085, 0.336250902618187, 0.48671482860553816, 0.5093433434984792, 0.35847801144896685, 0.3008706318705062, 0.18494609259573758, 0.4199330463236065, 0.04162287990776414, 0.2633909944023186, 0.4252182303976608, 0.4684623303117058, 0.1925553058603695, 0.09610989844306939, 0.09129843496680234, 0.3302708189676917, 0.4199330463236065, 0.11927294568859859, 0.4864154015695107, 0.06472081497616611, 0.6387929002666255, 0.37932906694235924, 0.093713747684541, 0.20627971812824875], \"yaxis\": \"y\"}, {\"marker\": {\"color\": \"#ed0400\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"bad (curr)\", \"type\": \"scatter\", \"x\": [11.0, 8.9, 11.0, 10.1, 8.9, 8.7, 10.7, 9.7, 10.0, 9.9, 9.2, 10.5, 9.8, 9.2, 9.1, 8.8, 9.0, 10.3, 12.0, 10.8, 11.7, 9.7, 9.7, 8.9, 12.0, 10.9, 9.4, 9.7, 9.8, 10.2, 8.7, 8.7, 9.6, 9.3, 10.5, 9.5, 9.4, 9.6, 9.4, 9.3, 12.4, 9.3, 9.2, 9.3, 11.4, 10.5666666666667, 9.4, 9.8, 9.0, 10.9, 10.4, 8.8, 11.5, 11.0, 9.7, 9.3, 9.8, 11.1, 9.4, 9.4, 11.1, 9.7, 9.0, 9.7, 9.3, 10.9, 9.2, 9.4, 10.7, 9.0, 9.5, 11.3, 10.4666666666667, 9.4, 10.5, 11.1, 8.9, 10.4, 9.2, 9.0, 9.6, 9.9, 9.5, 9.5, 10.1, 10.4, 9.0, 8.9, 9.8, 10.5, 9.5, 9.5, 9.7, 9.2, 9.7, 10.9, 10.8, 9.2, 8.9, 9.2, 9.4, 10.6, 8.8, 9.3, 9.4, 10.5, 9.4, 9.5, 9.2, 9.1, 9.4, 9.1, 9.8, 9.9, 10.6, 10.6, 9.4, 9.4, 9.5, 11.0, 10.2, 11.4, 10.6, 9.5, 10.1, 9.4, 11.0, 9.7, 10.1, 10.5, 13.4, 10.4, 9.2, 10.5, 9.4, 8.7, 11.4, 10.4, 9.4, 8.8, 10.7, 10.1, 10.3, 11.7, 9.5, 10.3, 10.9, 9.2, 9.5, 10.0, 9.2, 10.0, 10.5, 9.5, 10.1, 10.5, 10.7, 9.4, 9.6, 9.3, 10.4, 9.0, 10.4, 9.2, 9.0, 10.4, 11.3, 10.9, 11.0, 10.3, 9.2, 10.5, 9.4, 10.2, 9.5, 12.4, 10.1, 9.3, 8.8, 10.6, 10.3, 8.0, 10.3, 9.8, 10.5, 10.5, 9.3, 9.2, 10.2, 9.3, 9.7, 9.7, 10.1, 11.1, 8.6, 9.5, 9.1, 9.8, 9.1, 9.6, 9.5, 9.0, 9.0, 9.4, 11.4, 9.4, 9.0, 9.6, 9.0, 8.6, 10.2, 9.0, 9.7, 10.5, 9.3, 11.5, 9.0, 10.2, 9.3, 9.8, 8.7, 9.3, 9.3, 9.4, 9.1, 10.0, 9.1, 10.3, 10.6, 10.1, 8.8, 10.4, 8.8, 9.7, 9.6, 9.4, 9.8, 10.9, 9.2, 11.4, 9.2, 9.7, 10.9, 9.4, 11.4, 10.0, 10.7, 9.3, 9.4, 10.0, 9.0, 8.6, 10.6, 8.8, 9.9, 8.8, 9.4, 9.5, 9.5, 10.8, 9.8, 10.0, 10.1, 10.1, 9.5, 10.8, 9.7, 11.4, 12.2, 9.6, 11.4, 10.0, 9.3, 9.6, 10.2, 9.0, 9.5, 9.5, 10.1, 9.2, 10.0, 9.5, 11.4, 10.9, 9.2, 11.2, 10.1, 9.1, 11.4, 9.8, 9.5, 9.7, 9.2, 9.5, 11.1, 10.2, 9.5, 9.0, 9.2, 10.3, 11.4, 10.6, 10.4, 9.3, 9.5, 10.8, 10.5, 9.5, 9.0, 9.4, 9.4, 9.6, 10.2, 8.7, 9.9, 8.8, 9.8, 9.5, 9.5, 9.3, 11.8, 9.4, 10.1, 9.5, 11.5, 9.4, 8.8, 10.4, 9.5, 10.4666666666667, 9.8, 9.5, 10.5, 11.4, 9.7, 10.4, 9.3, 10.2, 8.8, 10.7, 8.9, 9.2, 10.4, 9.8, 8.4, 10.3, 9.3, 11.0, 8.8, 10.0, 9.3, 11.4], \"xaxis\": \"x2\", \"y\": [0.18579927887031134, 0.9274202256360236, 0.2569067617886446, 0.17851375722123963, 0.43011516789686843, 0.3951880410340851, 0.35333307802371594, 0.854899199395705, 0.7749695319329993, 0.7150752736216004, 0.5793836726576811, 0.17187478758168062, 0.503776006633781, 0.6517104478925241, 0.5321166645488455, 0.4291031613352281, 0.6295132227815239, 0.446367751604861, 0.12978626497489776, 0.578130474122496, 0.1303225049324246, 0.4589423036505589, 0.6028673022099313, 0.6724998803801079, 0.055171077290688375, 0.28900585249094113, 0.5807441942986169, 0.6324527530146118, 0.32780881811994433, 0.4437792729685527, 0.47375733914823626, 0.6755390392614542, 0.8494338455743565, 0.8432302027568838, 0.3962269303969661, 0.36574887203466033, 0.9780529644634413, 0.6757083557066426, 0.43212531492562845, 0.6428319532862445, 0.2244465690609686, 0.6759712108962084, 0.300575337785698, 0.4848467547623382, 0.24353241802821812, 0.6165640897352094, 0.801889943514816, 0.6831580296641933, 0.4684052737322374, 0.07309555507266852, 0.17397747102053363, 0.548208100621717, 0.16948307959681597, 0.5287139706981401, 0.8097217619362252, 0.48186532860504816, 0.7044722268129955, 0.5458559966555334, 0.6067015953642416, 0.5767206748937392, 0.5416109283549078, 0.7766135747357961, 0.6371580804073698, 0.3290646799011723, 0.53941953634433, 0.7444876216695655, 0.27658524567301757, 0.8518717737266248, 0.685064206005921, 0.7994946846943811, 0.6254668451144636, 0.29898447003196504, 0.36566585814722175, 0.8260679099411251, 0.265003746926769, 0.18277705216857454, 0.6401445853260315, 0.2878944788643705, 0.7379395090268356, 0.6578861964269485, 0.3048731186933995, 0.6479177870210828, 0.5479007895539181, 0.8109237991420157, 0.4555798348891207, 0.35159410271621183, 0.6741813074403022, 0.40366163192193316, 0.3797333752177462, 0.42326140605337403, 0.49450075158901585, 0.7027754368270075, 0.31556666432085356, 0.5737052492708005, 0.5594846166878963, 0.9879213229528466, 0.23907110553933086, 0.7604887601700165, 0.906894853259191, 0.49150798334893764, 0.6693239074263375, 0.635181004157038, 0.4291031613352281, 0.6805197940362542, 0.8579270215873258, 0.42231028799440284, 0.7973836574204367, 0.6209099995125147, 0.617932351579841, 0.5867531689564582, 0.8217385626893267, 0.5766058512754557, 0.6085190813519714, 0.6488649586424557, 0.19466062481522506, 0.4062994677131635, 0.31500574198466447, 0.6106996692323751, 0.48314991346809855, 0.4300926711133176, 0.4623912750166579, 0.18141675383529432, 0.7404949196358439, 0.7960551628311661, 0.6696955469146251, 0.7471897031921468, 0.15222801432328747, 0.4782875749995391, 0.6696955469146251, 0.4617114467660769, 0.0374236133971757, 0.34638250956587036, 0.5737052492708005, 0.35412183815676124, 0.5342599897609015, 0.6273126624389191, 0.1819914526651868, 0.6450640502472667, 0.7576359910572065, 0.6363669366758954, 0.35783776888428775, 0.4555798348891207, 0.2603691587203709, 0.09638465351539516, 0.7889843001267657, 0.3995975535535492, 0.2404138117262561, 0.5134503976671381, 0.7620160241108803, 0.4852174766770502, 0.7934067722809752, 0.5657371707019572, 0.40591517497640706, 0.5142806824729376, 0.4667389755277017, 0.4597803030361328, 0.14211531046105408, 0.4709774325404933, 0.39253304933110444, 0.8152160844894966, 0.6418608562675732, 0.5695619245525361, 0.15898796250578873, 0.4189913516486339, 0.8097376625536354, 0.2776505479619531, 0.14100712613869515, 0.1625374057836978, 0.21879614767173305, 0.26016804821119, 0.5884346274074399, 0.25171266030158634, 0.5556828679884147, 0.2886326125606653, 0.5013044750460076, 0.23728971353361283, 0.6280660923097139, 0.6281218947904323, 0.6226708394296439, 0.1280348372312241, 0.37812375401711507, 0.6218606462016874, 0.446367751604861, 0.5237591509200082, 0.22560064672115399, 0.4159575064805634, 0.43989745285902637, 0.38133093816728936, 0.379388299643832, 0.4244201113870294, 0.8495234946343055, 0.44699506619782237, 0.3402560380560977, 0.16997778820688525, 0.6509841470756508, 0.5589353890471914, 0.49320900326902484, 0.41485179365651337, 0.2850172536812061, 0.5150740024049856, 0.7905789411902706, 0.6660097546858721, 0.5916856454756931, 0.25029771644034415, 0.21820707607863943, 0.23625780462752244, 0.6174344585079109, 0.33885175059010386, 0.8097775874289167, 0.5502791542248897, 0.45232673966787307, 0.5168725346003686, 0.4922951659433321, 0.2710495410551712, 0.5620189509382074, 0.19827785442852286, 0.35653263682836045, 0.4940220265254579, 0.3934632807735441, 0.349631294967786, 0.6543252873397565, 0.6043841099981286, 0.6572212454398962, 0.5323595728841377, 0.4667716613599331, 0.5480891857555714, 0.5933716837007499, 0.5769442381274095, 0.7796710482718338, 0.4721284230669528, 0.5632051337005155, 0.25606657060722404, 0.47304849589761655, 0.4991199345133047, 0.785831825438318, 0.5512091114854263, 0.31651464458218903, 0.192246895102814, 0.5737052492708005, 0.14970485751781393, 0.8257882443178004, 0.7450862811651306, 0.2404138117262561, 0.3428275867057816, 0.2186811050870735, 0.43730933466596944, 0.1325711740116582, 0.33994853494016564, 0.5172250338280965, 0.4543852880840521, 0.6017244994332274, 0.7267617626256621, 0.304103470637073, 0.49511795227452726, 0.4577650902534979, 0.4389063253281036, 0.3428275867057816, 0.6911248892501751, 0.5457123873353599, 0.3395528272139201, 0.5662837862370104, 0.38281068028313525, 0.1899488449656659, 0.1899488449656659, 0.39416742153886597, 0.4473524415330049, 0.5724944828663213, 0.12652799787397961, 0.14917046216496987, 0.4192276293132746, 0.1727250451072272, 0.7329347521090118, 0.2979855805324535, 0.5384433083808008, 0.2944152049751758, 0.5661013076544325, 0.39283078357423706, 0.6503174362647687, 0.7632350838020857, 0.29422440231251745, 0.8446099855685041, 0.3812461384129847, 0.1264117171095669, 0.6995051325026098, 0.7680829457938805, 0.1086082602083136, 0.50228427853815, 0.8303888649041977, 0.15145052047802054, 0.5239967242043768, 0.49461569007297057, 0.7323984730128237, 0.6372335578763709, 0.8485373319296128, 0.21018203617182263, 0.3854703692354019, 0.6209619763202376, 0.6996467359659702, 0.3913887983225227, 0.600932061108284, 0.18141675383529432, 0.32841971343371723, 0.17397747102053363, 0.3943097935149382, 0.5998672378660981, 0.6052803835931642, 0.35501406908939237, 0.4362847089434372, 0.6005057903956104, 0.45095984485898877, 0.5601124581139871, 0.6908342266509375, 0.29066967723125237, 0.5437491575180791, 0.5955595524057149, 0.4226516353037165, 0.552222307965348, 0.5038457784615318, 0.6752568781943777, 0.7880730680059006, 0.09430965090665133, 0.4986183600001317, 0.24112389044610405, 0.3635071851353404, 0.7047195247497422, 0.5251048099479148, 0.5632051337005155, 0.4520037684813636, 0.5271857161160298, 0.36566585814722175, 0.8775119234978208, 0.49474741138534273, 0.17187478758168062, 0.1069918390347242, 0.6371627391106971, 0.19018032574493748, 0.34352259564225396, 0.806114950115292, 0.47304849589761655, 0.5014153035286022, 0.6721952796384192, 0.7507248720260316, 0.38512814216859315, 0.8930847268109882, 0.863224561659591, 0.15108072818859253, 0.7399796913917198, 0.18579927887031134, 0.47304849589761655, 0.2033384066370545, 0.43667652058029827, 0.23252054766636898], \"yaxis\": \"y2\"}, {\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"other (curr)\", \"type\": \"scatter\", \"x\": [9.0, 9.0, 10.9, 9.4, 9.5, 9.8, 10.1, 10.8, 12.0, 10.5, 10.0, 11.0, 12.4, 12.2, 12.8, 10.6, 11.4, 11.5, 10.3, 12.4, 8.9, 9.2, 10.5, 9.6, 10.1, 12.2, 11.0, 11.3, 12.5, 12.3, 13.0, 10.1, 9.5, 9.2, 12.1, 8.7, 11.3333333333333, 9.3, 13.4, 11.8, 12.4, 11.3, 11.8, 8.7, 9.4, 12.7, 9.0, 9.3, 9.5, 12.5, 9.2, 12.8, 10.4, 10.5, 11.4, 8.8, 9.5, 14.0, 9.8, 9.1, 10.4, 12.3, 11.8, 11.2, 9.3, 12.5, 11.0, 10.7, 10.55, 9.6, 9.1, 11.7, 9.2, 11.0, 9.7, 9.3, 9.3, 10.2, 10.8, 9.4, 12.2, 10.2, 11.4, 11.9, 9.8, 12.0, 10.9, 11.5, 11.5, 9.5, 10.8, 11.9, 12.6, 13.2, 10.1, 12.6, 10.0333333333333, 13.1, 10.2, 11.1, 11.1, 9.9, 11.2, 13.2, 9.1, 9.5, 9.4, 12.6, 11.6, 11.3, 10.7, 8.8, 12.3, 12.6, 12.4, 12.4, 11.3, 9.5, 10.4, 11.5, 11.8, 12.1, 12.0, 12.2, 10.9, 12.3, 9.2, 12.3, 10.2, 12.0, 12.5, 13.6, 12.5, 9.1, 9.8, 9.3, 10.5, 10.8, 11.6, 11.0, 11.2, 12.7, 10.8, 9.4, 9.6, 10.5, 9.4, 10.5, 10.9, 10.2, 9.8, 11.2, 9.5, 9.2, 12.5, 12.0, 10.6, 11.3, 10.0, 9.0, 12.7, 9.5, 13.4, 11.7, 10.3, 11.4, 11.5, 9.9, 11.0, 9.2, 11.4, 10.2, 10.9, 11.6, 14.0, 11.8, 11.4, 13.1, 13.6, 12.5, 11.0, 9.2, 9.5, 10.7, 9.4, 11.6, 10.3, 12.6, 8.8, 11.1, 11.0, 9.4, 11.9, 11.9, 10.8, 12.2, 10.5, 12.5, 9.4, 9.8, 12.5, 10.4, 9.6, 11.9, 11.0, 10.6, 9.7, 12.0, 10.1, 10.2, 11.4, 12.8, 10.6, 12.4, 9.0, 12.8, 10.0, 11.3, 11.6, 12.8, 12.2, 10.0, 10.8, 9.5, 9.0, 9.2, 11.2, 10.3, 12.0, 11.2, 9.25, 10.1, 10.8, 12.1, 12.8, 8.9, 12.3, 11.2, 12.0, 11.2, 10.7, 13.3, 13.0, 10.3, 10.4, 11.4, 8.8, 9.2, 10.7, 10.1, 9.6, 9.2, 8.8, 11.6, 10.7, 9.8, 10.2, 11.0, 12.2, 12.2, 10.4, 10.6, 10.7, 10.2, 11.1, 12.5, 12.7, 10.6, 9.3, 9.9, 9.9, 11.3, 12.6, 11.0, 9.3, 9.9, 10.7, 10.4, 10.6, 11.2, 9.1, 11.9, 11.8, 10.0, 12.8, 11.6, 11.45, 11.3, 9.7, 10.2, 11.0, 9.5, 10.1, 12.8, 10.4, 11.0, 9.2, 12.2, 11.0, 11.8, 12.9, 10.3, 11.3, 12.3, 9.0, 11.0, 12.0, 11.0, 12.6, 11.2, 10.5, 11.5, 11.6, 9.3, 11.4, 11.0, 9.8, 9.8, 10.1, 9.5, 12.5, 13.0, 10.3, 9.1, 10.4, 12.7, 11.0, 11.5, 9.6, 12.6, 10.6, 9.0, 9.4, 9.5, 9.2, 9.4, 9.1, 10.0, 10.2, 11.9, 10.8, 10.2, 9.7, 11.4, 9.5, 10.9, 11.4, 10.5, 10.0, 11.7, 11.3, 11.5, 8.8, 9.2, 9.3, 12.0, 10.0, 10.2, 10.4, 12.5, 12.9, 10.3, 8.7, 8.8, 10.2, 9.2, 8.9, 10.3, 9.4, 10.2, 13.05, 10.1, 10.8, 11.4, 11.7, 10.8, 12.0, 11.2, 9.6, 12.4, 9.4, 11.5, 12.2, 9.3, 11.9, 10.5, 11.0, 11.65, 11.4, 11.3, 11.0, 9.3, 11.2, 10.2, 10.2, 10.8, 9.0, 12.5, 12.6, 10.8, 10.6, 11.5, 11.4, 9.5, 12.7, 9.8, 11.0, 10.5, 9.0, 12.5, 9.6, 10.0, 10.4, 9.8, 10.6, 10.3, 9.3, 10.6, 12.6, 12.8, 11.3, 11.9, 12.1, 10.3, 9.2, 11.2, 10.2, 10.6, 12.4, 12.0, 11.7, 10.2, 11.4, 12.8, 10.5, 9.0, 10.8, 9.0, 12.0, 9.0, 9.1, 12.5, 9.8, 9.4, 12.0, 9.2, 14.0, 9.2, 10.0, 9.7, 10.6, 9.2, 9.5, 9.8, 9.0, 11.0, 11.0, 10.65, 9.0, 11.3, 11.3, 13.3, 9.4, 8.7, 10.9, 10.4, 12.7, 10.3, 11.0, 10.6, 10.4, 10.3, 12.5, 8.7, 10.3, 12.8, 9.5, 11.3, 10.2, 11.4, 10.0, 10.6, 11.4, 11.9, 9.6, 11.0, 12.7, 12.5, 9.7, 10.8, 10.1, 9.1, 12.5, 11.0, 9.8, 9.8, 11.4, 10.0, 11.5, 10.3, 11.75, 10.3, 9.1, 11.0, 13.5, 8.9, 9.4, 12.0, 10.1, 12.3, 12.9, 11.3, 14.2, 11.4, 11.5, 12.6, 10.1, 11.7, 9.2, 12.4, 13.0, 10.5, 11.0, 9.2, 11.6, 9.3, 10.7, 12.6, 11.5, 9.1, 11.3, 10.0, 9.0, 13.0, 12.5, 11.6, 11.5, 12.1, 9.7, 9.5, 11.2, 11.3333333333333, 10.9, 11.4, 13.1, 11.5, 10.9, 11.8, 12.3, 9.1, 9.5, 11.4, 10.5, 11.1, 11.0, 10.0, 10.1, 12.3, 11.9, 11.0, 9.8, 10.4, 8.7, 11.4, 9.1, 12.1, 11.4, 11.2, 13.0, 12.5, 10.5, 10.3, 11.1, 12.0, 12.4, 11.0, 11.0, 12.3, 11.0, 12.4, 9.5, 9.6, 10.5, 12.5, 10.0, 10.0, 10.2, 9.5, 10.2, 11.1, 10.0, 10.4, 10.0, 10.0, 11.2, 10.4, 12.5, 9.6, 11.5, 12.7, 10.8, 12.2, 9.4, 11.2, 10.5, 9.8, 10.5, 10.6, 10.4, 9.9, 9.6, 10.5, 9.1, 11.9, 9.8, 12.1, 12.9, 10.4, 9.5, 12.2, 10.4, 12.4, 11.0, 10.0, 10.8, 12.15, 11.45, 10.2, 11.8, 12.1, 9.8, 10.0, 12.7, 11.6, 12.3, 10.2, 13.4, 9.5, 11.0, 12.0, 12.8, 9.2, 8.8, 9.9, 8.9, 9.5, 13.4, 11.0], \"xaxis\": \"x2\", \"y\": [0.6660328535674787, 0.4955559099445003, 0.11251030999551548, 0.5313240922219649, 0.7616845263358343, 0.42881839881496897, 0.22146723198036844, 0.2709448900825402, 0.04188686298684474, 0.3198999677935893, 0.586632325439729, 0.3332859260788763, 0.0891770245136605, 0.07249138429342028, 0.0813041402249215, 0.2808128557304226, 0.18155424903412543, 0.14020593233116785, 0.20529540916933675, 0.1755850319354616, 0.5722846846512241, 0.4684623303117058, 0.2863708053899042, 0.4489302200945696, 0.3606737334686688, 0.09834172337505831, 0.1439119889738254, 0.10526388551166177, 0.08976738859769384, 0.15927641460572795, 0.07353544332944184, 0.4894096639868448, 0.24735122968283396, 0.41440459167745447, 0.10107859516115147, 0.4809249647595707, 0.043928674649753696, 0.27268427565697984, 0.07203278686513981, 0.35989685204578803, 0.08410225657903847, 0.09640449279894714, 0.2859044620344169, 0.766491644508495, 0.27194216744256416, 0.11891721880979944, 0.6033870782914414, 0.8445823904457724, 0.4148378249676725, 0.09538880480821377, 0.5822786697287807, 0.2006236885231063, 0.30215903380660414, 0.3526626332448971, 0.22921561702294402, 0.3499358724503807, 0.451050436906263, 0.01968005574460141, 0.3849224947932618, 0.608666907839271, 0.30333177217190177, 0.05732515971384944, 0.08299070223644744, 0.155374347961305, 0.4378217303747408, 0.10641916767178827, 0.3207785913922725, 0.3280003244598044, 0.4747408725557203, 0.27229542413121455, 0.5314247042003052, 0.13834506443323813, 0.652508483608137, 0.1775869136191267, 0.4659209431511335, 0.3288332341233703, 0.47224603889779837, 0.2773569186284155, 0.18590272545123854, 0.6719763059805124, 0.04569198037744582, 0.22473444069733528, 0.0776074933333939, 0.1411968215808168, 0.3654892991508686, 0.06069899520469324, 0.21029328672965164, 0.13919371635861133, 0.16321149678759816, 0.6144435769482088, 0.1388055550317996, 0.0827658987104557, 0.0793107693477757, 0.04994940743047871, 0.46220165202879504, 0.08265172102971341, 0.5554564865761329, 0.10902951494304747, 0.26480674198345266, 0.31816712550642645, 0.20184400370343658, 0.23734670470511587, 0.19264674509953905, 0.03558879485690103, 0.5314247042003052, 0.3013473679880785, 0.8043030592862955, 0.07665185966197174, 0.17816243980233548, 0.14637302723887635, 0.43623195291339645, 0.5773286546676725, 0.06996409198491005, 0.0635191394270278, 0.11839391684253864, 0.03368970372860669, 0.16544292122901683, 0.5002106013252752, 0.20783967621931676, 0.4413184352618238, 0.1377753535318076, 0.017128038770129694, 0.09070427960766203, 0.05237321155563324, 0.46044782253877736, 0.09863911308639095, 0.6058955548956951, 0.07377868677997379, 0.33726125667837825, 0.03705661785513226, 0.03856885477325478, 0.01970319875133708, 0.06623921298607705, 0.655672818127978, 0.36403826442427, 0.375635621083512, 0.25822104517587474, 0.26990817233175546, 0.30316845466795117, 0.21597661143113533, 0.10411587283779344, 0.4582573305440075, 0.28974208538397184, 0.3995654588450376, 0.48407929824265805, 0.2412117545349558, 0.49704114689177337, 0.3112403223054312, 0.13571503940671914, 0.35304273602320047, 0.18963603484652192, 0.06023564559469896, 0.305863422303413, 0.34062746964654456, 0.03532029949184434, 0.20200996882548472, 0.207876095289533, 0.11304202998506685, 0.26487496820305634, 0.46674395287949066, 0.05931266843465788, 0.6063731497207538, 0.053339747820140615, 0.16056749669580483, 0.3366557342021428, 0.18735912995827353, 0.2667542380283816, 0.9197592959547904, 0.13322255285490225, 0.3533185668595151, 0.08763312389948397, 0.343329095265401, 0.1298321532292276, 0.11240742021865013, 0.03412749239977686, 0.23316671381479437, 0.13955591125269062, 0.065615492475942, 0.03940539431326806, 0.04874684240881699, 0.42507109047861347, 0.3720756994829524, 0.20627971812824875, 0.23346983492740092, 0.299872058778726, 0.14688925552714138, 0.20529540916933675, 0.11294333341234963, 0.4523771212155355, 0.15895981664313275, 0.12633289347617382, 0.34801013400503944, 0.063056887931354, 0.09222807982804315, 0.19281104432210028, 0.11843845992675284, 0.1064686731970873, 0.12171087020281346, 0.49704114689177337, 0.4202798549667376, 0.058322454167927695, 0.40418598015134155, 0.7514842711311043, 0.067978575311199, 0.1468497162592186, 0.3655805321171328, 0.36741292271676196, 0.08785516413846428, 0.4223454464089015, 0.09472348251934337, 0.14196098925812006, 0.10013555988874479, 0.32154631204965056, 0.05416575683382341, 0.786126361492164, 0.04696516601190348, 0.26926088858349784, 0.28123172687107445, 0.3094364396730669, 0.04307250962973752, 0.07126159086244754, 0.6143015945908075, 0.495586079448059, 0.46102608015166635, 0.40789311683600216, 0.8929715185951024, 0.1227006502272181, 0.3638055988942468, 0.10470002869891348, 0.29304213908849364, 0.8936703981375603, 0.3534407380188983, 0.0883666731866185, 0.07895584641700149, 0.05166417783587085, 0.4199775765299997, 0.10304865631077798, 0.1041340676595982, 0.11031385635331636, 0.22368578646300386, 0.22137255536682798, 0.0725394352715707, 0.08320759746190642, 0.3577905591727162, 0.36362749207413336, 0.13058702032609693, 0.4306817897420764, 0.4684623303117058, 0.3185463047756948, 0.6991046594229053, 0.33105510290791684, 0.35804773811787727, 0.3499358724503807, 0.17780319308126435, 0.07142366539796174, 0.1504846162366139, 0.28643330026545544, 0.11492102279820171, 0.08716328114311156, 0.12905574960179156, 0.5528531989583015, 0.2852168598030531, 0.3185463047756948, 0.41766807389819915, 0.22818770291371737, 0.10749415552266317, 0.07500089027222667, 0.2150933620687273, 0.4879833184669665, 0.21367083697314282, 0.18281788227943807, 0.11217648511765432, 0.01860460444149037, 0.4990100838788346, 0.3212979959143686, 0.7252893191599291, 0.30018855716775616, 0.2808216200321265, 0.24332849241566534, 0.22583693263898685, 0.307128141019565, 0.12930297020615966, 0.07734813107736227, 0.38078614076753503, 0.037937415915298756, 0.18389331462546077, 0.2015421194948802, 0.10121634311933059, 0.7209948827487924, 0.252131738577411, 0.19866278493931944, 0.5569604587758099, 0.19172534874952063, 0.07516041810443141, 0.18673310211333727, 0.20736440356309183, 0.27568985010185776, 0.1748501221961516, 0.134246332983591, 0.12151400729184814, 0.03860330573341564, 0.16198960071610413, 0.062309112953929935, 0.14943540958877521, 0.46827469198568006, 0.12435295831370408, 0.11768791031746062, 0.10794707492381372, 0.04347111427796346, 0.07423675680829, 0.1602542791395647, 0.19911642350143877, 0.2379444352717226, 0.36664322039668684, 0.10130143557253446, 0.17108028607870185, 0.6143194513817134, 0.5641235853966853, 0.29864316680665437, 0.44752301946823647, 0.13459844499503626, 0.037461465199631894, 0.5002964248569376, 0.4059565893810353, 0.7035957096210382, 0.0629603198376949, 0.25036415064992923, 0.14780834332950044, 0.24800647860056513, 0.10438723399855232, 0.24366911510822187, 0.4574644219698093, 0.8347014835967527, 0.42226245660703365, 0.4073158502222598, 0.47525484003715535, 0.37845934883934684, 0.35325777167774697, 0.4763432908647238, 0.18941100564626978, 0.23853527246002126, 0.27277355193056574, 0.5556171757583562, 0.19481513110659687, 0.7460207524242459, 0.12627308236197843, 0.2115813466591615, 0.4773837842994688, 0.22238536240250728, 0.1978655273089749, 0.32057959349203036, 0.1601330373243487, 0.6256605001243821, 0.34062746964654456, 0.5899158924001677, 0.1273375405407705, 0.6866376712310945, 0.3812864953771038, 0.07918534602430627, 0.10510921928053807, 0.052405178286905496, 0.29010285216427345, 0.5802968836962079, 0.4475494904811408, 0.33107045093633036, 0.6046547135519548, 0.33132995382553565, 0.3391582818855403, 0.37109937806185267, 0.18876467901964422, 0.03244681540368277, 0.6531311156123596, 0.18281848038190407, 0.06840545126676123, 0.23876166598551407, 0.5602062902528231, 0.05478334190217349, 0.18965009362393503, 0.502081053312289, 0.0945975060483667, 0.24937367783354814, 0.14040338921272166, 0.09582424632391484, 0.4879833184669665, 0.07536550594022651, 0.37763546052463404, 0.20240400638142053, 0.06234715971662652, 0.1729504208160284, 0.2536573606029918, 0.1491704939138675, 0.47224603889779837, 0.20734784509414073, 0.1656619584420439, 0.20263687678412212, 0.4576701693643329, 0.3746187330143109, 0.06578487521364562, 0.09359041291034786, 0.15714155813810793, 0.43198081216185935, 0.17693664965610134, 0.14200602748771296, 0.16878839641400256, 0.11131318694256087, 0.43040972974554736, 0.12494266711040569, 0.5286591337585229, 0.3917329141436472, 0.14284790216410748, 0.29931895876037384, 0.3998656181534954, 0.13198036366642862, 0.2166851793268345, 0.164669749255824, 0.3116999397838065, 0.5702002297218003, 0.2867818412254799, 0.05809024612643199, 0.0701620515557333, 0.10493669218879953, 0.03474255021640338, 0.14069518845012563, 0.7697788668098057, 0.44513161239284327, 0.12104291767226882, 0.2823656727566666, 0.28640273091276736, 0.09904459769556595, 0.10889384421684001, 0.1978655273089749, 0.6326587477498924, 0.0766186874204361, 0.07300117689776386, 0.3978521493117628, 0.7293533971641823, 0.24040337450518035, 0.46827469198568006, 0.03737110954461231, 0.48112847828662497, 0.5755848065786346, 0.12151472907643468, 0.332302417201758, 0.3208349144509022, 0.13406270144296106, 0.47820199098358873, 0.024219732643774528, 0.7923035912680444, 0.3099424932714111, 0.8494816644677875, 0.15230116664989468, 0.8795672599938588, 0.34536882843285344, 0.587897812361327, 0.3660303223369904, 0.3074082248441362, 0.1925553058603695, 0.1582957933341015, 0.5297945963993664, 0.1892543681582496, 0.06574637766643598, 0.03286461121245521, 0.6223124217546917, 0.48666930315350876, 0.17200815643270417, 0.27042696199957883, 0.16010429726024444, 0.25291734909108765, 0.22778758435893687, 0.6055190518965303, 0.41989528411161425, 0.2865861541738164, 0.17344095530188786, 0.4163761941495938, 0.24610426408478792, 0.029106329843254564, 0.5849270471051293, 0.09607886499379148, 0.4890296174547498, 0.11193395874659995, 0.3667485749721523, 0.29672938182784603, 0.13696827462710404, 0.03986507081677082, 0.41542023534722683, 0.1642424989032959, 0.041559354155004224, 0.1266666793707928, 0.5259198205822933, 0.42123490919744344, 0.6147437654518444, 0.42849246998341506, 0.04874684240881699, 0.16870816563337898, 0.35179373534084035, 0.4552463954734379, 0.1543174595222413, 0.4641274821418986, 0.1106599594415556, 0.40441066041397966, 0.05916303638108533, 0.24194101851814365, 0.5755848065786346, 0.23631147082452741, 0.04679471849088612, 0.33132995382553565, 0.6031606095022326, 0.16900214819844117, 0.9322526967181247, 0.1065938389205352, 0.0540586741766943, 0.14920224829950646, 0.03054451782098533, 0.13595064656866984, 0.15908339514281045, 0.09402391562754642, 0.27219479721363327, 0.10477531970828624, 0.6046547135519548, 0.04412971358840656, 0.0821245873848182, 0.24953715645213048, 0.24311299470472425, 0.679537413518331, 0.02875041056121841, 0.2874129658970298, 0.17131102264191878, 0.07042427222914205, 0.1577516063520068, 0.39934634677258996, 0.42249259173992826, 0.24940231538328683, 0.46827469198568006, 0.040988937643475554, 0.034828704291737345, 0.26663563965858417, 0.22421743312747255, 0.10716094829621758, 0.7421831263598226, 0.4644511163280224, 0.1591307416719686, 0.21502194578256428, 0.12883185373794437, 0.15520095945599266, 0.04280666734842442, 0.06928764484923078, 0.3578757504587543, 0.0760792945579073, 0.06637805380770656, 0.5755848065786346, 0.4326356954473739, 0.16985579355455038, 0.47152805642545803, 0.11644579282256762, 0.11790522998710073, 0.5438286352264949, 0.41561805514360906, 0.050606352251634235, 0.21836830194439782, 0.22298545275517268, 0.1504846162366139, 0.16819644397314482, 0.47796113776613436, 0.14100197907825862, 0.7878397890034206, 0.12176963827920351, 0.09814942480303201, 0.23162396036129984, 0.04400104962869911, 0.061588508633294015, 0.2774601068082493, 0.40816383821078206, 0.14036214651023216, 0.11837607594274324, 0.0703155477214753, 0.17002415827487982, 0.24611532014486182, 0.06874641727313702, 0.30975746960573625, 0.07004288447243323, 0.6453829176356538, 0.3880412370469972, 0.10205495289732236, 0.12171087020281346, 0.38550692709735157, 0.4398162761337091, 0.5769741243450848, 0.48842976274850136, 0.3866799681687785, 0.17129518728202664, 0.5711206597512044, 0.4456070955069118, 0.4585850027539752, 0.25462747480751524, 0.34771016550763867, 0.35548618548401445, 0.07878090041588082, 0.3008706318705062, 0.08117751180329491, 0.055511805197920094, 0.1600174453683395, 0.35597309965685686, 0.5473978930443646, 0.3321771897262046, 0.14643302530661162, 0.7653011157176768, 0.24188431843396252, 0.16704799028757666, 0.41136103198090634, 0.5749869949413896, 0.709238838470871, 0.09340318303147321, 0.602429869503323, 0.04154705947390969, 0.7519582179986716, 0.15993940416551844, 0.04372375151311325, 0.4076899811241429, 0.4644511163280224, 0.3133137248525114, 0.24628490675063597, 0.06972977174174444, 0.15949948541388637, 0.2241543425141257, 0.1729876202034616, 0.07290025122558275, 0.1220000714032804, 0.36493953208423235, 0.09420126302076737, 0.026726938234992392, 0.7199273032686843, 0.4606762448039463, 0.04906818437448113, 0.19446415942665518, 0.14876853598344464, 0.3247816953453747, 0.023320858692869595, 0.7310618090422621, 0.48944479260603346, 0.20357574295749958, 0.0840537250624015, 0.5368744051465595, 0.21101467800102214, 0.46682279298460017, 0.3749869638443927, 0.46592999202179275, 0.10188412989688433, 0.15751976448865512], \"yaxis\": \"y2\"}], \"layout\": {\"annotations\": [{\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Reference\", \"x\": 0.225, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}, {\"font\": {\"size\": 16}, \"showarrow\": false, \"text\": \"Current\", \"x\": 0.775, \"xanchor\": \"center\", \"xref\": \"paper\", \"y\": 1.0, \"yanchor\": \"bottom\", \"yref\": \"paper\"}], \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 0.45], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"alcohol\"}}, \"xaxis2\": {\"anchor\": \"y2\", \"domain\": [0.55, 1.0], \"showgrid\": true, \"title\": {\"text\": \"alcohol\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"range\": [-0.1, 1.1], \"showgrid\": true, \"showticklabels\": true, \"title\": {\"text\": \"Probability\"}}, \"yaxis2\": {\"anchor\": \"x2\", \"domain\": [0.0, 1.0], \"showgrid\": true, \"title\": {\"text\": \"Probability\"}}}}};\n",
400         "</script>\n",
401         "<script>\n",
402         "function domReady(fn) {\n",
403         "  // If we're early to the party\n",
404         "  document.addEventListener(\"DOMContentLoaded\", fn);\n",
405         "  // If late; I mean on time.\n",
406         "  if (document.readyState === \"interactive\" || document.readyState === \"complete\" ) {\n",
407         "    fn();\n",
408         "  }\n",
409         "}\n",
410         "\n",
411         "domReady(function () {\n",
412         "    requirejs([\"evidently\"], function(ev) {\n",
413         "        drawDashboard(evidently_dashboard_cf026d3015f94e9a8797581f20ae8f6c,\n",
414         "        new Map(Object.entries(additional_graphs_evidently_dashboard_cf026d3015f94e9a8797581f20ae8f6c)),\n",
415         "        \"root_evidently_dashboard_cf026d3015f94e9a8797581f20ae8f6c\");\n",
416         "    },\n",
417         "    function(err) {\n",
418         "        $(\"#root_evidently_dashboard_cf026d3015f94e9a8797581f20ae8f6c\").innerHTML = \"Failed to load\";\n",
419         "    })\n",
420         "});\n",
421         "</script>\n",
422         "<div class=\"reset-this-parent\" id=\"root_evidently_dashboard_cf026d3015f94e9a8797581f20ae8f6c\">Loading...</div>\n",
423         "\n"
424        ],
425        "text/plain": [
426         "<IPython.core.display.HTML object>"
427        ]
428       },
429       "execution_count": 186,
430       "metadata": {},
431       "output_type": "execute_result"
432      }
433     ],
434     "source": [
435      "wine_model_performance_dashboard = Dashboard(tabs=[ProbClassificationPerformanceTab(verbose_level=1)],\n",
436      "                                             options=[m_options])\n",
437      "wine_model_performance_dashboard.calculate(merged_train_data.sample(1000, random_state=0), \n",
438      "                                           merged_test_data.sample(1000, random_state=0), \n",
439      "                                              column_mapping = wine_column_mapping)\n",
440      "wine_model_performance_dashboard.show()"
441     ]
442    },
443    {
444     "cell_type": "code",
445     "execution_count": 202,
446     "id": "19c2cec9",
447     "metadata": {},
448     "outputs": [],
449     "source": "from evidently.legacy.dashboard.tabs import DataDriftTab"
450    },
451    {
452     "cell_type": "code",
453     "execution_count": 203,
454     "id": "661a996a",
455     "metadata": {},
456     "outputs": [
457      {
458       "data": {
459        "text/html": [
460         "\n",
461         "<link rel=\"stylesheet\" href=\"https://fonts.googleapis.com/icon?family=Material+Icons\"/>\n",
462         "<style>\n",
463         ".reset-this-parent {\n",
464         "  all: initial;\n",
465         "}\n",
466         ".reset-this-parent h5 {\n",
467         "  all: initial;\n",
468         "  font: initial;\n",
469         "}\n",
470         "</style>\n",
471         "<script>\n",
472         "    var evidently_dashboard_3966efb347484c23af70237a11fa6d90 = {\"name\": \"evidently_dashboard_3966efb347484c23af70237a11fa6d90\", \"widgets\": [{\"type\": \"big_table\", \"title\": \"Drift is detected for 0.00% of features (0 out of 11). Dataset Drift is NOT detected.\", \"size\": 2, \"details\": \"\", \"alertsPosition\": \"row\", \"alertStats\": {}, \"params\": {\"rowsPerPage\": 10, \"columns\": [{\"title\": \"Feature\", \"field\": \"f1\"}, {\"title\": \"Type\", \"field\": \"f6\"}, {\"title\": \"Reference Distribution\", \"field\": \"f3\", \"type\": \"histogram\", \"options\": {\"xField\": \"x\", \"yField\": \"y\"}}, {\"title\": \"Current Distribution\", \"field\": \"f4\", \"type\": \"histogram\", \"options\": {\"xField\": \"x\", \"yField\": \"y\"}}, {\"title\": \"Data drift\", \"field\": \"f2\"}, {\"title\": \"P-Value for Similarity Test\", \"field\": \"f5\", \"sort\": \"asc\"}], \"data\": [{\"details\": {\"parts\": [{\"title\": \"Data drift\", \"id\": \"fixed.acidity_drift\", \"type\": \"widget\"}, {\"title\": \"Data distribution\", \"id\": \"fixed.acidity_distr\"}], \"insights\": []}, \"f1\": \"fixed.acidity\", \"f6\": \"num\", \"f3\": {\"x\": [4.4, 5.550000000000001, 6.7, 7.85, 9.0, 10.15, 11.3, 12.45, 13.6, 14.75, 15.9], \"y\": [0.030434782608695643, 0.2947826086956523, 0.36347826086956536, 0.09826086956521736, 0.05043478260869563, 0.018260869565217386, 0.008695652173913054, 0.0026086956521739124, 0.0008695652173913041, 0.0017391304347826081]}, \"f4\": {\"x\": [4.2, 5.34, 6.48, 7.62, 8.76, 9.899999999999999, 11.04, 12.18, 13.32, 14.46, 15.6], \"y\": [0.021052631578947375, 0.19649122807017533, 0.43508771929824575, 0.1342105263157895, 0.04736842105263163, 0.021929824561403497, 0.0131578947368421, 0.005263157894736839, 0.0008771929824561398, 0.0017543859649122827]}, \"f2\": \"Not Detected\", \"f5\": 0.240682}, {\"details\": {\"parts\": [{\"title\": \"Data drift\", \"id\": \"volatile.acidity_drift\", \"type\": \"widget\"}, {\"title\": \"Data distribution\", \"id\": \"volatile.acidity_distr\"}], \"insights\": []}, \"f1\": \"volatile.acidity\", \"f6\": \"num\", \"f3\": {\"x\": [0.08, 0.20500000000000002, 0.33, 0.455, 0.58, 0.705, 0.83, 0.955, 1.08, 1.205, 1.33], \"y\": [1.488, 3.408, 1.68, 0.5600000000000003, 0.584, 0.152, 0.072, 0.02399999999999998, 0.016, 0.016]}, \"f4\": {\"x\": [0.08, 0.22999999999999998, 0.38, 0.5299999999999999, 0.6799999999999999, 0.83, 0.9799999999999999, 1.1300000000000001, 1.28, 1.43, 1.58], \"y\": [1.7400000000000004, 3.093333333333333, 1.0600000000000007, 0.5533333333333332, 0.15333333333333332, 0.04000000000000002, 0.01999999999999997, 0.0, 0.0, 0.006666666666666661]}, \"f2\": \"Not Detected\", \"f5\": 0.954219}, {\"details\": {\"parts\": [{\"title\": \"Data drift\", \"id\": \"citric.acid_drift\", \"type\": \"widget\"}, {\"title\": \"Data distribution\", \"id\": \"citric.acid_distr\"}], \"insights\": []}, \"f1\": \"citric.acid\", \"f6\": \"num\", \"f3\": {\"x\": [0.0, 0.1, 0.2, 0.30000000000000004, 0.4, 0.5, 0.6000000000000001, 0.7000000000000001, 0.8, 0.9, 1.0], \"y\": [0.69, 0.59, 3.4899999999999984, 2.8400000000000003, 1.6400000000000003, 0.4399999999999996, 0.21000000000000005, 0.09000000000000001, 0.0, 0.010000000000000002]}, \"f4\": {\"x\": [0.0, 0.123, 0.246, 0.369, 0.492, 0.615, 0.738, 0.861, 0.984, 1.107, 1.23], \"y\": [0.6991869918699187, 1.2682926829268293, 3.5691056910569103, 1.991869918699187, 0.34959349593495936, 0.13821138211382114, 0.08130081300813008, 0.008130081300813009, 0.016260162601626018, 0.008130081300813009]}, \"f2\": \"Not Detected\", \"f5\": 0.794664}, {\"details\": {\"parts\": [{\"title\": \"Data drift\", \"id\": \"residual.sugar_drift\", \"type\": \"widget\"}, {\"title\": \"Data distribution\", \"id\": \"residual.sugar_distr\"}], \"insights\": []}, \"f1\": \"residual.sugar\", \"f6\": \"num\", \"f3\": {\"x\": [0.6, 3.7, 6.8, 9.9, 13.0, 16.1, 19.200000000000003, 22.3, 25.400000000000002, 28.500000000000004, 31.6], \"y\": [0.17483870967741935, 0.04612903225806452, 0.04032258064516128, 0.027096774193548393, 0.024193548387096763, 0.008064516129032254, 0.0012903225806451622, 0.0, 0.00032258064516129016, 0.00032258064516129054]}, \"f4\": {\"x\": [0.7, 3.79, 6.880000000000001, 9.97, 13.06, 16.150000000000002, 19.240000000000002, 22.330000000000002, 25.42, 28.51, 31.6], \"y\": [0.16957928802588998, 0.04530744336569578, 0.040776699029126215, 0.029449838187702266, 0.02588996763754044, 0.009385113268608414, 0.002912621359223301, 0.0, 0.0, 0.0003236245954692557]}, \"f2\": \"Not Detected\", \"f5\": 0.685497}, {\"details\": {\"parts\": [{\"title\": \"Data drift\", \"id\": \"chlorides_drift\", \"type\": \"widget\"}, {\"title\": \"Data distribution\", \"id\": \"chlorides_distr\"}], \"insights\": []}, \"f1\": \"chlorides\", \"f6\": \"num\", \"f3\": {\"x\": [0.012, 0.057499999999999996, 0.103, 0.14850000000000002, 0.194, 0.2395, 0.28500000000000003, 0.3305, 0.376, 0.4215, 0.467], \"y\": [15.626373626373626, 5.362637362637362, 0.615384615384615, 0.1538461538461539, 0.1318681318681319, 0.021978021978021955, 0.04395604395604397, 0.0, 0.0, 0.021978021978021955]}, \"f4\": {\"x\": [0.012, 0.052199999999999996, 0.0924, 0.1326, 0.1728, 0.21300000000000002, 0.2532, 0.2934, 0.3336, 0.3738, 0.414], \"y\": [15.348258706467663, 7.835820895522388, 1.0696517412935322, 0.2238805970149253, 0.17412935323383077, 0.09950248756218916, 0.024875621890547255, 0.024875621890547255, 0.0, 0.07462686567164187]}, \"f2\": \"Not Detected\", \"f5\": 0.263472}, {\"details\": {\"parts\": [{\"title\": \"Data drift\", \"id\": \"free.sulfur.dioxide_drift\", \"type\": \"widget\"}, {\"title\": \"Data distribution\", \"id\": \"free.sulfur.dioxide_distr\"}], \"insights\": []}, \"f1\": \"free.sulfur.dioxide\", \"f6\": \"num\", \"f3\": {\"x\": [3.0, 17.35, 31.7, 46.05, 60.4, 74.75, 89.1, 103.45, 117.8, 132.15, 146.5], \"y\": [0.01749128919860627, 0.021811846689895473, 0.017003484320557493, 0.009477351916376305, 0.00313588850174216, 0.0004878048780487807, 6.968641114982574e-05, 6.968641114982581e-05, 6.968641114982574e-05, 6.968641114982581e-05]}, \"f4\": {\"x\": [1.0, 11.4, 21.8, 32.2, 42.6, 53.0, 63.400000000000006, 73.8, 84.2, 94.60000000000001, 105.0], \"y\": [0.013557692307692307, 0.019134615384615382, 0.023461538461538457, 0.01682692307692308, 0.011826923076923079, 0.007596153846153842, 0.002980769230769233, 0.0005769230769230767, 0.0, 0.00019230769230769247]}, \"f2\": \"Not Detected\", \"f5\": 0.993703}, {\"details\": {\"parts\": [{\"title\": \"Data drift\", \"id\": \"total.sulfur.dioxide_drift\", \"type\": \"widget\"}, {\"title\": \"Data distribution\", \"id\": \"total.sulfur.dioxide_distr\"}], \"insights\": []}, \"f1\": \"total.sulfur.dioxide\", \"f6\": \"num\", \"f3\": {\"x\": [8.0, 37.95, 67.9, 97.85, 127.8, 157.75, 187.7, 217.65, 247.6, 277.55, 307.5], \"y\": [0.00350584307178631, 0.0032053422370617694, 0.0050083472454090176, 0.007312186978297161, 0.005642737896494157, 0.004908180300500837, 0.0026711185308848067, 0.0009348914858096831, 0.00010016694490818024, 0.00010016694490818035]}, \"f4\": {\"x\": [6.0, 34.8, 63.6, 92.4, 121.2, 150.0, 178.8, 207.6, 236.4, 265.2, 294.0], \"y\": [0.0038541666666666668, 0.003333333333333333, 0.004201388888888888, 0.0067013888888888895, 0.006666666666666667, 0.005590277777777776, 0.0028125000000000016, 0.0012847222222222216, 0.00024305555555555568, 3.472222222222221e-05]}, \"f2\": \"Not Detected\", \"f5\": 0.794664}, {\"details\": {\"parts\": [{\"title\": \"Data drift\", \"id\": \"density_drift\", \"type\": \"widget\"}, {\"title\": \"Data distribution\", \"id\": \"density_distr\"}], \"insights\": []}, \"f1\": \"density\", \"f6\": \"num\", \"f3\": {\"x\": [0.98742, 0.9897079999999999, 0.991996, 0.994284, 0.996572, 0.99886, 1.001148, 1.003436, 1.005724, 1.008012, 1.0103], \"y\": [19.66783216783254, 78.23426573426342, 104.89510489510688, 107.0804195804164, 99.65034965035153, 23.601398601399048, 3.059440559440469, 0.4370629370629241, 0.0, 0.4370629370629241]}, \"f4\": {\"x\": [0.98779, 0.990041, 0.992292, 0.994543, 0.996794, 0.999045, 1.001296, 1.003547, 1.005798, 1.008049, 1.0103], \"y\": [27.099067081297164, 83.96268325188794, 96.40159928920467, 111.95024433585058, 89.29364726788081, 33.31852509995553, 1.7769880053309617, 0.0, 0.0, 0.4442470013327404]}, \"f2\": \"Not Detected\", \"f5\": 0.57289}, {\"details\": {\"parts\": [{\"title\": \"Data drift\", \"id\": \"pH_drift\", \"type\": \"widget\"}, {\"title\": \"Data distribution\", \"id\": \"pH_distr\"}], \"insights\": []}, \"f1\": \"pH\", \"f6\": \"num\", \"f3\": {\"x\": [2.79, 2.888, 2.986, 3.084, 3.182, 3.2800000000000002, 3.378, 3.476, 3.574, 3.672, 3.77], \"y\": [0.08163265306122461, 0.5612244897959167, 1.346938775510206, 2.6632653061224527, 2.3469387755101967, 1.500000000000002, 0.9285714285714298, 0.4897959183673476, 0.2040816326530606, 0.08163265306122461]}, \"f4\": {\"x\": [2.79, 2.892, 2.994, 3.096, 3.198, 3.3, 3.402, 3.504, 3.606, 3.708, 3.81], \"y\": [0.1078431372549021, 0.7156862745098017, 1.4215686274509822, 2.333333333333336, 2.176470588235297, 1.8823529411764648, 0.7450980392156872, 0.31372549019607887, 0.0490196078431371, 0.05882352941176478]}, \"f2\": \"Not Detected\", \"f5\": 0.722825}, {\"details\": {\"parts\": [{\"title\": \"Data drift\", \"id\": \"sulphates_drift\", \"type\": \"widget\"}, {\"title\": \"Data distribution\", \"id\": \"sulphates_distr\"}], \"insights\": []}, \"f1\": \"sulphates\", \"f6\": \"num\", \"f3\": {\"x\": [0.22, 0.393, 0.566, 0.7389999999999999, 0.9119999999999999, 1.085, 1.2579999999999998, 1.4309999999999998, 1.6039999999999999, 1.777, 1.95], \"y\": [0.8439306358381502, 3.0173410404624286, 1.4913294797687868, 0.2947976878612716, 0.09826589595375719, 0.01156069364161851, 0.01734104046242774, 0.0, 0.0, 0.005780346820809247]}, \"f4\": {\"x\": [0.25, 0.359, 0.468, 0.5770000000000001, 0.686, 0.795, 0.9040000000000001, 1.0130000000000001, 1.122, 1.231, 1.34], \"y\": [0.6238532110091743, 2.724770642201834, 2.8440366972477054, 1.6238532110091746, 0.8807339449541286, 0.36697247706421987, 0.07339449541284405, 0.018348623853211014, 0.0, 0.018348623853211014]}, \"f2\": \"Not Detected\", \"f5\": 0.240682}, {\"details\": {\"parts\": [{\"title\": \"Data drift\", \"id\": \"alcohol_drift\", \"type\": \"widget\"}, {\"title\": \"Data distribution\", \"id\": \"alcohol_distr\"}], \"insights\": []}, \"f1\": \"alcohol\", \"f6\": \"num\", \"f3\": {\"x\": [8.4, 9.05, 9.700000000000001, 10.350000000000001, 11.0, 11.65, 12.3, 12.95, 13.600000000000001, 14.25, 14.9], \"y\": [0.12153846153846147, 0.3876923076923075, 0.24769230769230757, 0.2615384615384621, 0.2323076923076922, 0.1307692307692307, 0.12307692307692335, 0.030769230769230667, 0.001538461538461542, 0.0015384615384615376]}, \"f4\": {\"x\": [8.0, 8.62, 9.24, 9.86, 10.48, 11.1, 11.719999999999999, 12.34, 12.959999999999999, 13.579999999999998, 14.2], \"y\": [0.008064516129032268, 0.2338709677419351, 0.35645161290322624, 0.26774193548387054, 0.25645161290322616, 0.20645161290322608, 0.12258064516129012, 0.11935483870967757, 0.03225806451612907, 0.009677419354838694]}, \"f2\": \"Not Detected\", \"f5\": 0.969001}]}, \"insights\": [], \"additionalGraphs\": [{\"id\": \"fixed.acidity_distr\", \"params\": {\"data\": [{\"histnorm\": \"probability\", \"marker\": {\"color\": \"#4d4d4d\"}, \"name\": \"Reference\", \"nbinsx\": 10, \"opacity\": 0.6, \"type\": \"histogram\", \"x\": [7.0, 7.3, 7.5, 6.3, 6.3, 7.0, 6.5, 5.6, 6.9, 5.8, 8.1, 7.2, 7.7, 6.2, 7.2, 7.3, 9.1, 6.8, 6.2, 6.6, 9.2, 7.3, 15.6, 5.2, 7.1, 6.2, 5.3, 8.5, 8.0, 6.9, 7.7, 7.5, 6.3, 7.3, 9.0, 6.0, 7.0, 5.3, 7.8, 7.1, 6.2, 6.9, 7.3, 6.3, 7.3, 7.3, 5.1, 6.4, 7.8, 7.2, 5.7, 6.6, 8.2, 5.8, 6.1, 7.2, 7.7, 7.7, 5.9, 7.4, 6.7, 6.5, 6.0, 7.2, 7.7, 7.5, 7.4, 8.8, 7.0, 7.8, 8.1, 6.8, 5.9, 8.2, 6.2, 9.4, 6.8, 9.7, 7.5, 7.0, 6.6, 6.2, 7.0, 6.0, 7.8, 5.8, 6.3, 7.1, 14.2, 6.8, 7.4, 5.9, 6.0, 9.1, 7.6, 5.9, 8.5, 11.1, 6.3, 10.2, 5.9, 6.6, 7.1, 6.9, 6.6, 8.2, 5.7, 12.6, 8.3, 7.1, 6.7, 7.4, 7.1, 7.0, 5.7, 5.3, 6.7, 6.7, 8.2, 6.6, 7.0, 6.2, 9.9, 6.4, 6.3, 7.9, 6.6, 7.4, 12.3, 7.0, 7.9, 6.5, 8.2, 6.9, 5.7, 7.4, 7.6, 6.3, 8.0, 8.3, 9.1, 8.0, 7.8, 7.3, 6.5, 8.6, 6.9, 10.8, 6.4, 7.7, 8.8, 6.5, 11.5, 6.3, 6.5, 6.7, 6.6, 6.1, 6.0, 8.5, 5.0, 5.8, 6.7, 7.7, 6.3, 5.9, 6.6, 6.7, 7.3, 8.3, 7.3, 8.5, 9.9, 7.5, 7.2, 7.4, 8.6, 6.4, 5.2, 7.4, 7.9, 6.7, 6.7, 8.0, 7.0, 7.9, 6.9, 6.4, 6.6, 7.4, 6.2, 5.6, 6.7, 7.9, 5.9, 7.5, 6.0, 7.7, 7.1, 7.2, 6.8, 8.2, 6.9, 6.3, 6.1, 6.9, 9.2, 7.8, 8.1, 7.5, 6.8, 6.7, 7.7, 9.2, 6.9, 6.1, 7.3, 7.0, 5.0, 6.5, 7.3, 7.1, 7.0, 8.2, 7.7, 5.0, 10.1, 8.6, 6.6, 7.1, 9.5, 8.0, 5.9, 6.8, 5.8, 6.9, 10.8, 8.4, 7.4, 7.4, 7.2, 5.8, 6.7, 7.4, 7.3, 7.0, 12.0, 6.7, 6.2, 6.6, 6.6, 6.4, 6.4, 5.9, 9.2, 6.4, 7.8, 7.4, 7.7, 6.1, 7.2, 5.9, 7.5, 6.4, 7.9, 7.6, 6.1, 7.2, 7.1, 6.3, 7.1, 7.6, 7.8, 5.2, 7.8, 7.8, 5.9, 10.2, 5.6, 6.2, 6.5, 7.8, 7.4, 6.2, 8.5, 7.2, 7.6, 6.4, 7.8, 6.0, 6.2, 6.2, 5.5, 7.1, 7.4, 6.0, 6.8, 7.9, 6.1, 6.7, 6.2, 5.6, 5.5, 7.2, 11.1, 5.2, 5.9, 10.6, 6.4, 7.1, 6.6, 5.6, 5.0, 5.8, 7.0, 7.1, 7.8, 6.1, 6.3, 8.4, 6.7, 6.8, 8.5, 7.7, 6.4, 6.9, 7.1, 8.4, 7.1, 6.7, 8.2, 8.2, 8.1, 7.3, 7.0, 8.0, 6.8, 8.7, 8.2, 6.5, 6.5, 7.7, 7.1, 10.3, 6.0, 6.9, 6.6, 6.6, 7.0, 7.5, 6.6, 10.1, 6.6, 6.6, 7.0, 8.3, 6.4, 7.1, 6.6, 7.0, 7.1, 7.1, 9.4, 7.1, 7.7, 6.1, 8.3, 6.0, 6.6, 6.3, 6.4, 7.8, 7.9, 6.9, 6.7, 4.8, 6.4, 6.8, 6.6, 6.3, 7.1, 8.9, 6.5, 5.8, 6.4, 7.2, 7.2, 6.4, 7.0, 7.0, 7.3, 5.7, 7.7, 6.5, 6.3, 5.8, 8.0, 6.2, 6.4, 7.4, 9.4, 7.5, 7.2, 7.1, 10.8, 10.1, 7.6, 10.7, 6.7, 6.4, 6.5, 6.6, 7.3, 6.9, 9.8, 8.1, 7.4, 6.3, 11.6, 5.9, 6.1, 7.2, 6.4, 8.3, 9.6, 12.5, 7.2, 7.0, 6.2, 7.3, 9.1, 6.5, 5.2, 6.2, 6.0, 7.2, 6.4, 6.7, 6.0, 5.5, 6.7, 6.7, 9.1, 7.3, 5.6, 6.5, 7.1, 7.8, 6.4, 7.2, 6.6, 7.6, 5.1, 5.8, 8.0, 10.8, 6.2, 7.8, 6.9, 7.7, 7.3, 5.1, 5.6, 7.3, 8.2, 7.8, 7.9, 8.3, 6.2, 7.1, 6.0, 6.1, 7.3, 7.1, 7.0, 7.3, 6.7, 5.7, 7.0, 6.0, 6.8, 6.6, 5.9, 8.1, 5.8, 5.7, 6.0, 8.4, 7.2, 8.9, 7.5, 8.5, 5.9, 7.1, 9.8, 7.5, 7.2, 6.6, 6.6, 7.2, 7.3, 6.5, 7.3, 5.9, 6.1, 7.7, 7.1, 13.4, 6.4, 8.3, 6.0, 6.4, 5.9, 5.8, 6.0, 6.3, 6.1, 7.5, 6.8, 6.3, 7.5, 7.3, 7.0, 7.4, 8.8, 7.4, 6.4, 5.1, 6.7, 8.1, 11.4, 5.6, 7.4, 6.1, 6.8, 5.6, 6.9, 7.0, 9.9, 9.9, 7.2, 6.2, 6.8, 6.5, 8.8, 5.1, 6.5, 10.0, 7.2, 5.9, 8.1, 7.1, 7.2, 8.2, 5.8, 7.3, 6.8, 6.1, 7.7, 6.7, 9.9, 8.3, 6.8, 6.3, 8.4, 6.2, 11.5, 6.9, 7.4, 6.2, 5.6, 8.9, 7.2, 7.2, 6.6, 5.9, 7.5, 5.1, 6.2, 6.2, 6.7, 9.8, 9.2, 7.2, 5.8, 6.6, 6.6, 5.6, 7.7, 9.2, 6.6, 7.1, 6.4, 7.0, 8.0, 5.9, 8.6, 7.4, 9.0, 10.0, 9.8, 10.0, 7.5, 8.3, 6.5, 5.5, 6.9, 7.5, 10.2, 6.1, 7.5, 8.6, 7.7, 6.4, 6.8, 6.1, 6.0, 6.7, 6.3, 7.4, 7.0, 6.0, 7.7, 6.8, 5.0, 5.3, 8.5, 8.0, 5.9, 7.4, 6.7, 6.1, 7.0, 7.3, 7.4, 5.7, 6.8, 7.4, 6.4, 6.1, 9.6, 7.0, 7.2, 6.8, 7.5, 6.5, 6.6, 6.4, 5.7, 6.6, 7.1, 7.0, 6.1, 6.3, 7.1, 7.7, 5.7, 7.5, 7.5, 6.9, 5.9, 7.0, 6.1, 5.8, 6.6, 8.0, 7.4, 6.7, 6.8, 10.8, 7.0, 8.0, 7.7, 6.7, 6.6, 6.4, 6.4, 5.6, 11.3, 9.3, 5.5, 6.9, 6.8, 4.4, 6.6, 9.1, 8.3, 6.3, 6.9, 9.8, 11.1, 7.6, 6.4, 5.8, 6.8, 7.3, 7.6, 7.9, 7.2, 7.4, 7.5, 6.9, 6.3, 7.2, 6.7, 6.7, 10.5, 5.9, 6.8, 6.1, 9.2, 5.8, 7.3, 7.4, 12.0, 6.4, 7.1, 6.4, 6.2, 12.3, 11.1, 7.6, 7.1, 11.5, 8.0, 6.4, 7.3, 6.5, 6.2, 6.7, 7.3, 8.9, 8.3, 6.2, 6.5, 8.7, 5.7, 6.9, 6.5, 7.0, 6.4, 6.7, 9.3, 6.4, 7.5, 7.3, 6.2, 5.8, 6.5, 6.6, 6.3, 5.6, 6.1, 6.6, 7.5, 6.5, 7.7, 7.5, 6.8, 6.6, 5.7, 7.8, 6.3, 6.0, 7.3, 7.9, 7.0, 6.2, 6.7, 6.5, 7.3, 8.6, 6.9, 6.5, 7.3, 7.4, 6.9, 7.0, 7.0, 5.3, 7.2, 7.9, 6.7, 5.1, 6.7, 6.5, 6.4, 6.9, 7.7, 7.8, 7.1, 7.5, 6.5, 6.3, 6.6, 6.7, 5.9, 6.6, 9.9, 6.7, 6.8, 8.4, 6.0, 8.1, 6.4, 8.9, 6.5, 7.2, 7.1, 8.6, 8.0, 6.2, 6.5, 8.9, 6.8, 6.9, 6.3, 7.2, 5.8, 9.5, 6.0, 5.9, 6.8, 7.9, 6.8, 7.1, 9.2, 6.8, 6.7, 7.0, 6.8, 6.0, 7.9, 7.9, 6.5, 7.5, 6.0, 10.1, 7.0, 6.8, 6.3, 7.2, 9.4, 7.7, 7.1, 6.6, 5.3, 8.2, 6.4, 6.8, 8.6, 7.2, 9.9, 7.0, 5.8, 6.3, 7.8, 7.7, 6.6, 6.7, 9.2, 7.6, 5.6, 6.4, 5.6, 5.1, 7.7, 7.4, 7.1, 8.6, 6.1, 9.0, 8.0, 6.2, 7.6, 7.2, 7.1, 6.5, 6.3, 7.2, 6.5, 9.4, 8.7, 6.1, 6.4, 6.3, 7.9, 7.8, 7.5, 10.6, 7.0, 6.4, 5.9, 6.4, 6.1, 6.0, 7.0, 6.9, 6.4, 6.4, 5.4, 6.8, 6.0, 8.2, 6.8, 8.6, 7.5, 6.7, 6.3, 9.4, 6.0, 5.0, 9.0, 7.2, 6.8, 5.6, 6.5, 8.0, 5.6, 7.4, 7.8, 7.4, 7.1, 6.4, 7.0, 6.2, 9.4, 6.0, 5.9, 7.7, 7.1, 7.6, 6.3, 6.6, 7.1, 7.3, 6.4, 10.5, 15.9, 8.1, 8.1, 6.4, 6.2, 8.8, 6.1, 7.0, 8.1, 7.2, 6.4, 9.2, 6.6, 6.9, 6.8, 9.7, 8.8, 9.1, 6.5, 6.9, 5.5, 7.8, 9.9, 7.8, 7.3, 10.8, 6.0, 7.3, 6.7, 6.7, 6.1, 6.6, 6.8, 6.3, 7.15, 7.0, 9.1, 8.0, 7.4, 6.5, 5.3, 6.6, 7.1, 10.8, 6.6, 7.0, 7.2, 7.4, 7.5, 6.2, 10.7, 8.0, 7.0, 7.0, 5.9, 6.8, 7.6, 8.0, 8.4, 6.9, 5.6, 9.2]}, {\"histnorm\": \"probability\", \"marker\": {\"color\": \"#ed0400\"}, \"name\": \"Current\", \"nbinsx\": 10, \"opacity\": 0.6, \"type\": \"histogram\", \"x\": [6.4, 7.3, 7.2, 6.8, 6.8, 6.4, 7.5, 7.9, 5.6, 7.4, 7.3, 6.6, 6.5, 5.8, 10.0, 6.9, 6.9, 6.6, 5.3, 6.8, 4.4, 7.9, 6.9, 6.5, 9.1, 9.0, 8.5, 9.1, 7.6, 7.6, 12.7, 7.6, 7.4, 7.2, 8.3, 6.4, 6.7, 7.3, 6.7, 7.8, 7.1, 6.4, 6.0, 6.8, 7.6, 6.9, 7.3, 6.8, 6.6, 6.9, 5.1, 11.9, 6.6, 5.8, 6.4, 6.6, 6.8, 8.0, 6.5, 6.4, 6.8, 7.2, 6.7, 6.0, 6.3, 7.6, 6.5, 6.6, 7.3, 8.3, 7.8, 7.8, 6.8, 7.4, 7.9, 7.2, 6.8, 7.5, 8.0, 8.0, 6.8, 9.2, 5.3, 6.9, 8.1, 10.7, 7.0, 7.5, 5.2, 6.6, 9.1, 6.4, 5.3, 6.8, 6.6, 8.0, 6.7, 6.0, 8.1, 8.2, 7.7, 7.7, 6.9, 6.0, 7.5, 7.1, 5.9, 6.7, 9.8, 7.7, 5.3, 8.0, 6.3, 6.1, 6.6, 7.5, 7.7, 7.0, 9.0, 6.4, 7.3, 7.5, 6.0, 8.6, 7.5, 8.3, 7.6, 8.4, 9.3, 6.5, 6.9, 7.0, 6.9, 6.4, 6.3, 6.3, 6.5, 8.4, 5.6, 6.6, 6.0, 7.3, 11.6, 7.6, 8.3, 8.3, 11.8, 5.9, 7.2, 6.0, 6.4, 6.9, 6.9, 7.1, 7.4, 6.2, 6.6, 7.9, 7.5, 9.0, 6.7, 6.2, 6.7, 6.7, 8.0, 7.9, 7.7, 6.9, 6.1, 7.9, 6.4, 6.4, 5.0, 6.6, 6.9, 9.8, 7.4, 15.6, 5.0, 5.4, 6.5, 6.2, 8.2, 7.6, 9.7, 7.8, 6.1, 9.3, 6.8, 6.2, 7.4, 6.1, 6.9, 15.5, 8.3, 6.2, 8.3, 9.2, 8.3, 6.8, 8.1, 6.3, 10.0, 7.3, 7.2, 6.4, 11.9, 6.6, 7.0, 6.8, 6.2, 8.5, 5.8, 8.4, 7.4, 8.9, 7.1, 6.8, 7.3, 8.3, 7.0, 7.6, 7.5, 7.2, 6.6, 6.5, 5.6, 4.9, 6.8, 9.9, 7.2, 8.8, 5.9, 7.2, 7.1, 7.5, 6.2, 6.6, 6.3, 12.6, 8.6, 8.9, 7.9, 8.3, 6.9, 6.3, 8.6, 7.2, 8.5, 7.1, 5.8, 7.2, 7.0, 7.0, 6.2, 6.1, 6.5, 6.0, 8.3, 8.0, 7.6, 7.7, 9.2, 6.0, 5.8, 7.9, 6.9, 11.8, 8.3, 7.0, 6.3, 9.1, 5.6, 8.2, 7.9, 7.0, 7.8, 6.7, 7.5, 6.9, 6.3, 7.6, 7.8, 6.6, 9.3, 6.5, 7.0, 7.7, 6.2, 6.9, 7.7, 6.7, 5.1, 8.4, 6.5, 7.2, 7.6, 7.5, 5.8, 7.7, 6.6, 6.7, 8.0, 8.5, 8.9, 10.4, 6.6, 6.8, 6.8, 5.9, 5.8, 6.7, 6.3, 6.2, 10.0, 13.2, 7.0, 9.4, 6.8, 5.9, 6.5, 6.0, 5.6, 8.9, 7.0, 9.0, 6.8, 7.0, 6.0, 6.2, 7.8, 6.3, 7.3, 6.0, 7.6, 7.3, 6.0, 7.4, 7.9, 8.7, 7.3, 7.1, 6.9, 8.1, 6.9, 7.0, 10.3, 8.4, 6.9, 6.9, 6.6, 9.6, 8.9, 6.8, 7.0, 7.4, 6.8, 6.6, 6.6, 6.4, 8.4, 8.1, 5.8, 6.6, 8.4, 6.4, 7.1, 7.0, 10.4, 7.8, 7.2, 7.3, 7.4, 7.5, 7.5, 5.7, 9.4, 7.9, 7.6, 11.8, 8.1, 7.2, 6.8, 6.5, 7.0, 6.9, 6.6, 7.7, 6.7, 7.5, 8.8, 7.1, 6.6, 7.2, 6.7, 5.8, 6.8, 6.9, 7.5, 6.4, 7.3, 7.4, 7.6, 6.1, 6.8, 6.9, 9.0, 7.6, 6.8, 6.3, 5.4, 11.5, 6.7, 7.4, 6.9, 7.2, 6.5, 6.8, 5.6, 7.9, 8.3, 8.6, 5.9, 8.4, 7.9, 6.0, 8.4, 5.8, 7.0, 10.0, 6.1, 6.2, 9.5, 5.3, 6.1, 11.5, 7.4, 10.3, 6.9, 7.9, 8.2, 6.4, 6.1, 6.4, 6.1, 7.9, 7.0, 6.9, 6.9, 7.0, 7.2, 7.9, 8.0, 7.6, 7.1, 7.2, 7.5, 7.0, 6.0, 7.2, 7.4, 7.2, 5.9, 6.1, 6.8, 6.8, 7.8, 7.0, 6.2, 6.5, 6.9, 8.0, 6.2, 6.5, 5.7, 8.4, 5.4, 7.2, 8.1, 8.5, 6.6, 7.1, 6.7, 7.6, 7.0, 6.0, 7.7, 7.4, 7.3, 10.1, 7.2, 7.4, 10.9, 6.8, 6.6, 7.0, 7.7, 6.7, 5.9, 9.1, 8.0, 6.7, 6.9, 6.7, 6.6, 7.4, 7.3, 6.6, 6.5, 7.2, 7.6, 7.0, 7.1, 6.1, 7.4, 7.0, 7.1, 7.7, 6.8, 6.6, 7.0, 6.3, 9.8, 6.7, 7.8, 7.9, 7.5, 8.7, 7.2, 5.8, 7.6, 6.7, 8.6, 7.0, 6.5, 6.8, 7.5, 6.6, 6.6, 6.8, 6.6, 8.2, 7.0, 6.1, 8.8, 6.4, 5.7, 6.9, 8.0, 4.2, 6.2, 6.8, 5.6, 6.3, 11.9, 7.9, 6.9, 10.9, 6.6, 6.4, 6.8, 5.8, 6.4, 6.8, 7.5, 5.6, 4.9, 7.4, 6.8, 6.3, 6.8, 6.8, 7.8, 6.2, 6.5, 7.1, 7.2, 7.2, 5.5, 6.9, 6.3, 6.4, 8.2, 6.1, 5.2, 6.8, 6.9, 7.7, 7.0, 7.5, 7.2, 10.1, 7.2, 7.2, 6.8, 7.3, 7.4, 5.6, 7.8, 6.3, 6.8, 5.6, 6.0, 7.1, 6.8, 6.9, 6.8, 6.2, 6.2, 5.9, 7.0, 6.9, 6.4, 6.9, 8.3, 5.6, 7.1, 8.2, 6.0, 6.7, 7.5, 7.2, 6.8, 10.0, 6.4, 6.2, 10.1, 7.0, 7.2, 5.5, 7.3, 9.3, 5.7, 5.8, 6.7, 11.1, 6.9, 11.5, 7.1, 8.5, 6.6, 6.3, 6.6, 7.8, 6.7, 6.0, 5.7, 6.7, 7.2, 6.7, 9.1, 7.8, 6.4, 8.8, 8.1, 7.4, 6.5, 7.1, 6.5, 6.9, 6.8, 6.7, 8.3, 7.4, 6.4, 6.8, 6.1, 5.3, 7.6, 7.6, 7.0, 6.2, 7.0, 11.3, 8.2, 5.0, 6.4, 6.0, 4.9, 6.3, 8.9, 6.6, 7.0, 6.5, 7.7, 7.6, 7.2, 6.0, 6.5, 5.9, 6.4, 6.5, 9.2, 7.0, 6.7, 8.4, 6.2, 6.7, 6.6, 6.8, 7.5, 7.4, 5.5, 8.0, 6.1, 6.2, 7.2, 6.9, 7.7, 7.4, 6.2, 8.2, 6.0, 6.2, 7.4, 8.3, 6.6, 6.4, 7.2, 7.9, 7.1, 7.0, 6.8, 6.0, 7.5, 5.6, 5.7, 6.0, 6.4, 6.8, 8.2, 7.0, 6.4, 8.9, 7.1, 7.5, 6.8, 9.4, 7.5, 7.4, 6.5, 6.9, 6.6, 6.5, 8.4, 7.1, 6.8, 7.2, 7.1, 10.8, 8.7, 6.5, 7.2, 7.3, 6.4, 6.4, 8.3, 8.2, 9.0, 8.2, 6.4, 7.1, 6.2, 10.9, 8.6, 9.6, 7.3, 12.0, 6.2, 6.0, 6.4, 6.9, 7.4, 5.8, 7.1, 8.3, 5.6, 5.7, 7.9, 6.7, 6.7, 9.2, 6.1, 10.6, 8.2, 6.0, 7.3, 7.2, 6.4, 7.4, 7.9, 7.4, 6.7, 6.8, 7.0, 6.7, 9.9, 6.8, 6.4, 8.3, 6.1, 7.2, 5.0, 6.9, 7.5, 5.8, 5.3, 6.9, 5.6, 7.2, 6.9, 8.9, 6.1, 6.0, 6.9, 7.3, 7.0, 8.6, 6.0, 7.8, 6.6, 9.8, 7.4, 6.3, 8.0, 6.4, 7.4, 5.2, 11.6, 8.9, 7.0, 6.9, 7.2, 7.2, 6.4, 6.4, 9.3, 6.5, 6.3, 6.4, 6.2, 10.4, 6.7, 5.6, 5.5, 10.6, 8.8, 8.9, 6.9, 7.4, 7.6, 6.6, 13.0, 7.2, 6.0, 9.1, 5.8, 6.2, 6.8, 7.5, 7.0, 7.0, 6.4, 6.5, 6.0, 5.1, 6.7, 6.9, 7.4, 7.9, 11.1, 7.4, 7.3, 7.8, 8.5, 8.1, 6.6, 6.4, 7.5, 6.7, 6.4, 6.1, 7.3, 7.0, 6.0, 7.7, 7.4, 6.3, 6.0, 6.6, 8.2, 7.1, 7.1, 7.6, 6.8, 7.2, 6.4, 7.0, 7.6, 5.7, 5.1, 6.7, 7.4, 5.7, 6.2, 7.7, 6.7, 6.6, 6.4, 6.8, 5.4, 7.1, 8.0, 6.0, 8.0, 11.0, 12.4, 6.6, 7.3, 6.3, 5.7, 6.6, 8.9, 7.0, 6.1, 6.8, 6.6, 6.3, 12.2, 6.9, 6.4, 6.6, 7.9, 4.9, 7.6, 6.6, 6.4, 7.5, 9.6, 7.2, 7.2, 8.0, 5.5, 6.3, 6.8, 6.9, 6.6, 6.3, 7.4, 7.6, 7.6, 5.6, 7.0, 6.9, 7.2, 5.8, 6.9, 6.8, 6.9, 6.7, 6.8, 6.5, 6.4, 6.8, 6.0, 7.3, 7.5, 6.9, 9.0, 9.0, 10.2, 6.6, 6.8, 7.8, 13.7, 7.1, 7.0, 8.0, 10.4, 7.1, 8.1, 7.7, 6.1, 8.3, 7.3, 8.2, 9.5, 7.4, 6.5, 8.3, 5.7, 6.5, 6.4, 7.8, 7.6, 6.8, 6.7, 7.0, 7.1, 6.7]}], \"layout\": {\"legend\": {\"orientation\": \"h\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"fixed.acidity\"}}, \"yaxis\": {\"title\": {\"text\": \"Share\"}}}}}, {\"id\": \"fixed.acidity_drift\", \"params\": {\"title\": \"\", \"size\": 2, \"text\": \"\", \"type\": \"big_graph\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"Current\", \"type\": \"scatter\", \"x\": [443, 319, 703, 526, 76, 963, 1260, 532, 1561, 517, 506, 1557, 271, 1058, 1381, 1039, 542, 107, 161, 1301, 519, 1021, 1213, 223, 1286, 1426, 1234, 587, 1183, 182, 567, 1492, 724, 1262, 1509, 657, 1137, 913, 1445, 342, 781, 14, 971, 1072, 1254, 678, 1175, 1481, 1370, 1443, 18, 1151, 1380, 434, 1430, 554, 53, 535, 1050, 427, 259, 124, 961, 1488, 1563, 720, 1291, 1061, 425, 846, 1147, 204, 1317, 618, 1088, 927, 1196, 582, 1194, 360, 1449, 862, 1135, 1453, 1442, 1017, 268, 685, 317, 775, 1086, 942, 1052, 801, 1362, 219, 379, 649, 1195, 479, 1542, 609, 930, 1105, 34, 708, 686, 1132, 693, 733, 1562, 1190, 473, 737, 672, 969, 858, 5, 1556, 298, 80, 940, 361, 1154, 1545, 1622, 784, 19, 1522, 996, 54, 1415, 1564, 1593, 1236, 9, 353, 1222, 113, 1010, 1263, 877, 82, 381, 818, 1210, 1409, 66, 254, 817, 92, 1340, 122, 1357, 511, 1546, 692, 17, 1248, 414, 52, 1296, 191, 175, 233, 900, 785, 935, 1298, 156, 487, 159, 481, 1255, 1597, 253, 1491, 841, 187, 914, 979, 249, 1114, 1366, 814, 716, 465, 875, 1242, 670, 299, 593, 436, 728, 141, 229, 1057, 912, 994, 648, 799, 1164, 1073, 4, 516, 152, 1267, 1237, 752, 1150, 825, 402, 1277, 575, 1437, 838, 390, 1505, 1093, 1026, 1611, 31, 674, 866, 1328, 616, 861, 897, 148, 303, 1451, 602, 1125, 1614, 1047, 1462, 1148, 574, 899, 1327, 89, 530, 408, 1192, 177, 520, 993, 326, 992, 717, 895, 1421, 984, 240, 85, 557, 278, 938, 1425, 958, 1232, 1149, 171, 1220, 227, 891, 489, 1391, 1184, 1032, 393, 726, 192, 260, 880, 1592, 1537, 491, 759, 1473, 959, 1454, 1015, 965, 1393, 1489, 1256, 133, 202, 1036, 438, 483, 666, 461, 142, 1181, 1580, 308, 538, 170, 310, 743, 1101, 1179, 315, 22, 1529, 45, 879, 1110, 61, 522, 1397, 829, 576, 1193, 1202, 1549, 1375, 27, 527, 1186, 1273, 828, 539, 1049, 1014, 412, 1091, 1497, 1595, 347, 2, 844, 1490, 632, 211, 1582, 918, 1217, 1115, 744, 459, 579, 771, 96, 178, 108, 1516, 805, 1240, 440, 619, 1, 1315, 1239, 1347, 512, 48, 722, 1517, 1621, 446, 565, 568, 796, 231, 1070, 1063, 215, 513, 704, 354, 55, 881, 746, 641, 762, 279, 1145, 1468, 224, 302, 911, 218, 1079, 874, 1266, 792, 1136, 372, 295, 364, 580, 1615, 688, 1560, 333, 467, 968, 399, 760, 740, 953, 1520, 1446, 1214, 615, 524, 546, 1495, 1324, 452, 1515, 432, 863, 442, 847, 276, 456, 184, 1116, 1200, 458, 1508, 1087, 1478, 376, 1479, 563, 1146, 1507, 42, 944, 823, 1228, 656, 1227, 198, 309, 761, 1158, 549, 47, 1209, 529, 933, 220, 1624, 1591, 651, 536, 362, 1314, 420, 564, 475, 482, 140, 679, 1436, 1334, 77, 39, 570, 962, 808, 981, 322, 1471, 251, 695, 1128, 813, 757, 820, 853, 831, 1246, 58, 553, 597, 241, 1288, 330, 1005, 789, 1617, 56, 1126, 411, 548, 501, 1211, 642, 558, 1605, 745, 878, 1056, 667, 435, 29, 270, 35, 1157, 422, 1310, 114, 1524, 1422, 689, 1018, 1168, 1360, 985, 1191, 793, 1363, 1504, 581, 644, 1199, 621, 1612, 494, 665, 431, 1095, 638, 1042, 1404, 1030, 40, 1121, 75, 1588, 1417, 247, 713, 1590, 186, 646, 312, 8, 1551, 1302, 1044, 768, 884, 1585, 1618, 826, 445, 712, 464, 1308, 195, 655, 1487, 1389, 1356, 243, 401, 572, 1074, 810, 477, 1460, 1544, 1182, 285, 471, 936, 1238, 578, 1034, 1535, 1513, 426, 1311, 1001, 986, 1038, 980, 1064, 620, 982, 1565, 194, 474, 1428, 569, 1165, 49, 1333, 1401, 1307, 1076, 991, 1566, 44, 1342, 245, 943, 300, 583, 1013, 269, 1548, 313, 776, 283, 1444, 540, 406, 338, 466, 363, 1002, 320, 1264, 1089, 70, 1027, 500, 10, 907, 505, 1295, 864, 1432, 64, 1122, 1543, 416, 898, 654, 205, 328, 486, 999, 1377, 970, 528, 1558, 418, 1379, 1299, 1378, 590, 1247, 1174, 472, 1323, 131, 15, 439, 1528, 476, 725, 1203, 1109, 1003, 1365, 103, 1279, 60, 871, 78, 391, 165, 1335, 1410, 1129, 960, 349, 185, 1464, 371, 117, 1398, 252, 507, 1613, 311, 1419, 395, 987, 358, 263, 359, 1559, 1305, 1506, 1376, 1055, 634, 1552, 16, 51, 1258, 493, 601, 997, 351, 711, 1604, 1486, 1339, 794, 97, 1475, 1423, 196, 748, 183, 1433, 1579, 613, 1536, 989, 682, 533, 610, 687, 892, 81, 896, 397, 267, 589, 386, 795, 1416, 132, 265, 1609, 1461, 883, 88, 840, 988, 1354, 676, 916, 629, 1269, 924, 294, 261, 1541, 1081, 1348, 1576, 405, 1616, 356, 608, 1097, 239, 1249, 1099, 1403, 119, 1096, 977, 751, 374, 453, 110, 1336, 1390, 905, 1287, 503, 1031, 1331, 1224, 729, 410, 1540, 367, 1607, 384, 200, 65, 1358, 1394, 1023, 272, 1418, 955, 677, 238, 1133, 974, 541, 478, 1257, 1265, 1465, 1589, 1326, 188, 1083, 681, 906, 1092, 1276, 316, 214, 1078, 1502, 1084, 660, 1142, 531, 255, 30, 662, 1253, 230, 157, 1343, 385, 1169, 380, 1188, 721, 264, 787, 101, 13, 1274, 68, 1024, 1170, 1156, 71, 1577, 566, 1372, 1245, 798, 523, 626, 495, 937, 155, 887, 758, 921, 790, 1349, 1230, 366, 1531, 983, 839, 228, 417, 206, 742, 79, 190, 492, 948, 145, 923, 318, 824, 1374, 1124, 1463, 596, 457, 144, 1359, 1292, 1045, 764, 842, 1140, 1408, 995, 904, 592, 1458, 135, 83, 1062, 154, 1440, 1283, 773, 1414, 127, 1177, 1318, 1413, 403, 150, 346, 413, 1303, 1523, 1619, 394, 1261, 1054, 208, 496, 352, 95, 625, 571, 37, 485, 143, 946, 158, 552, 1527, 1029, 518, 1180, 1218, 236, 1100, 222, 1431, 345, 1459, 120, 661, 588, 1623, 1493, 62, 1429, 811, 193, 235, 181, 1320, 389, 1103, 521, 669, 332, 258, 1369, 1538, 957, 382, 1382, 1567, 331, 934, 614, 262, 893, 6, 266, 769, 38, 901, 1573, 1578, 545, 118, 783, 652, 1025, 706, 105, 1189, 484, 1569, 630, 683, 20, 870, 242, 50, 162, 915, 966, 441, 867, 731, 1102, 1000, 1268, 1223, 822, 301, 723, 172], \"y\": [6.4, 7.3, 7.2, 6.8, 6.8, 6.4, 7.5, 7.9, 5.6, 7.4, 7.3, 6.6, 6.5, 5.8, 10.0, 6.9, 6.9, 6.6, 5.3, 6.8, 4.4, 7.9, 6.9, 6.5, 9.1, 9.0, 8.5, 9.1, 7.6, 7.6, 12.7, 7.6, 7.4, 7.2, 8.3, 6.4, 6.7, 7.3, 6.7, 7.8, 7.1, 6.4, 6.0, 6.8, 7.6, 6.9, 7.3, 6.8, 6.6, 6.9, 5.1, 11.9, 6.6, 5.8, 6.4, 6.6, 6.8, 8.0, 6.5, 6.4, 6.8, 7.2, 6.7, 6.0, 6.3, 7.6, 6.5, 6.6, 7.3, 8.3, 7.8, 7.8, 6.8, 7.4, 7.9, 7.2, 6.8, 7.5, 8.0, 8.0, 6.8, 9.2, 5.3, 6.9, 8.1, 10.7, 7.0, 7.5, 5.2, 6.6, 9.1, 6.4, 5.3, 6.8, 6.6, 8.0, 6.7, 6.0, 8.1, 8.2, 7.7, 7.7, 6.9, 6.0, 7.5, 7.1, 5.9, 6.7, 9.8, 7.7, 5.3, 8.0, 6.3, 6.1, 6.6, 7.5, 7.7, 7.0, 9.0, 6.4, 7.3, 7.5, 6.0, 8.6, 7.5, 8.3, 7.6, 8.4, 9.3, 6.5, 6.9, 7.0, 6.9, 6.4, 6.3, 6.3, 6.5, 8.4, 5.6, 6.6, 6.0, 7.3, 11.6, 7.6, 8.3, 8.3, 11.8, 5.9, 7.2, 6.0, 6.4, 6.9, 6.9, 7.1, 7.4, 6.2, 6.6, 7.9, 7.5, 9.0, 6.7, 6.2, 6.7, 6.7, 8.0, 7.9, 7.7, 6.9, 6.1, 7.9, 6.4, 6.4, 5.0, 6.6, 6.9, 9.8, 7.4, 15.6, 5.0, 5.4, 6.5, 6.2, 8.2, 7.6, 9.7, 7.8, 6.1, 9.3, 6.8, 6.2, 7.4, 6.1, 6.9, 15.5, 8.3, 6.2, 8.3, 9.2, 8.3, 6.8, 8.1, 6.3, 10.0, 7.3, 7.2, 6.4, 11.9, 6.6, 7.0, 6.8, 6.2, 8.5, 5.8, 8.4, 7.4, 8.9, 7.1, 6.8, 7.3, 8.3, 7.0, 7.6, 7.5, 7.2, 6.6, 6.5, 5.6, 4.9, 6.8, 9.9, 7.2, 8.8, 5.9, 7.2, 7.1, 7.5, 6.2, 6.6, 6.3, 12.6, 8.6, 8.9, 7.9, 8.3, 6.9, 6.3, 8.6, 7.2, 8.5, 7.1, 5.8, 7.2, 7.0, 7.0, 6.2, 6.1, 6.5, 6.0, 8.3, 8.0, 7.6, 7.7, 9.2, 6.0, 5.8, 7.9, 6.9, 11.8, 8.3, 7.0, 6.3, 9.1, 5.6, 8.2, 7.9, 7.0, 7.8, 6.7, 7.5, 6.9, 6.3, 7.6, 7.8, 6.6, 9.3, 6.5, 7.0, 7.7, 6.2, 6.9, 7.7, 6.7, 5.1, 8.4, 6.5, 7.2, 7.6, 7.5, 5.8, 7.7, 6.6, 6.7, 8.0, 8.5, 8.9, 10.4, 6.6, 6.8, 6.8, 5.9, 5.8, 6.7, 6.3, 6.2, 10.0, 13.2, 7.0, 9.4, 6.8, 5.9, 6.5, 6.0, 5.6, 8.9, 7.0, 9.0, 6.8, 7.0, 6.0, 6.2, 7.8, 6.3, 7.3, 6.0, 7.6, 7.3, 6.0, 7.4, 7.9, 8.7, 7.3, 7.1, 6.9, 8.1, 6.9, 7.0, 10.3, 8.4, 6.9, 6.9, 6.6, 9.6, 8.9, 6.8, 7.0, 7.4, 6.8, 6.6, 6.6, 6.4, 8.4, 8.1, 5.8, 6.6, 8.4, 6.4, 7.1, 7.0, 10.4, 7.8, 7.2, 7.3, 7.4, 7.5, 7.5, 5.7, 9.4, 7.9, 7.6, 11.8, 8.1, 7.2, 6.8, 6.5, 7.0, 6.9, 6.6, 7.7, 6.7, 7.5, 8.8, 7.1, 6.6, 7.2, 6.7, 5.8, 6.8, 6.9, 7.5, 6.4, 7.3, 7.4, 7.6, 6.1, 6.8, 6.9, 9.0, 7.6, 6.8, 6.3, 5.4, 11.5, 6.7, 7.4, 6.9, 7.2, 6.5, 6.8, 5.6, 7.9, 8.3, 8.6, 5.9, 8.4, 7.9, 6.0, 8.4, 5.8, 7.0, 10.0, 6.1, 6.2, 9.5, 5.3, 6.1, 11.5, 7.4, 10.3, 6.9, 7.9, 8.2, 6.4, 6.1, 6.4, 6.1, 7.9, 7.0, 6.9, 6.9, 7.0, 7.2, 7.9, 8.0, 7.6, 7.1, 7.2, 7.5, 7.0, 6.0, 7.2, 7.4, 7.2, 5.9, 6.1, 6.8, 6.8, 7.8, 7.0, 6.2, 6.5, 6.9, 8.0, 6.2, 6.5, 5.7, 8.4, 5.4, 7.2, 8.1, 8.5, 6.6, 7.1, 6.7, 7.6, 7.0, 6.0, 7.7, 7.4, 7.3, 10.1, 7.2, 7.4, 10.9, 6.8, 6.6, 7.0, 7.7, 6.7, 5.9, 9.1, 8.0, 6.7, 6.9, 6.7, 6.6, 7.4, 7.3, 6.6, 6.5, 7.2, 7.6, 7.0, 7.1, 6.1, 7.4, 7.0, 7.1, 7.7, 6.8, 6.6, 7.0, 6.3, 9.8, 6.7, 7.8, 7.9, 7.5, 8.7, 7.2, 5.8, 7.6, 6.7, 8.6, 7.0, 6.5, 6.8, 7.5, 6.6, 6.6, 6.8, 6.6, 8.2, 7.0, 6.1, 8.8, 6.4, 5.7, 6.9, 8.0, 4.2, 6.2, 6.8, 5.6, 6.3, 11.9, 7.9, 6.9, 10.9, 6.6, 6.4, 6.8, 5.8, 6.4, 6.8, 7.5, 5.6, 4.9, 7.4, 6.8, 6.3, 6.8, 6.8, 7.8, 6.2, 6.5, 7.1, 7.2, 7.2, 5.5, 6.9, 6.3, 6.4, 8.2, 6.1, 5.2, 6.8, 6.9, 7.7, 7.0, 7.5, 7.2, 10.1, 7.2, 7.2, 6.8, 7.3, 7.4, 5.6, 7.8, 6.3, 6.8, 5.6, 6.0, 7.1, 6.8, 6.9, 6.8, 6.2, 6.2, 5.9, 7.0, 6.9, 6.4, 6.9, 8.3, 5.6, 7.1, 8.2, 6.0, 6.7, 7.5, 7.2, 6.8, 10.0, 6.4, 6.2, 10.1, 7.0, 7.2, 5.5, 7.3, 9.3, 5.7, 5.8, 6.7, 11.1, 6.9, 11.5, 7.1, 8.5, 6.6, 6.3, 6.6, 7.8, 6.7, 6.0, 5.7, 6.7, 7.2, 6.7, 9.1, 7.8, 6.4, 8.8, 8.1, 7.4, 6.5, 7.1, 6.5, 6.9, 6.8, 6.7, 8.3, 7.4, 6.4, 6.8, 6.1, 5.3, 7.6, 7.6, 7.0, 6.2, 7.0, 11.3, 8.2, 5.0, 6.4, 6.0, 4.9, 6.3, 8.9, 6.6, 7.0, 6.5, 7.7, 7.6, 7.2, 6.0, 6.5, 5.9, 6.4, 6.5, 9.2, 7.0, 6.7, 8.4, 6.2, 6.7, 6.6, 6.8, 7.5, 7.4, 5.5, 8.0, 6.1, 6.2, 7.2, 6.9, 7.7, 7.4, 6.2, 8.2, 6.0, 6.2, 7.4, 8.3, 6.6, 6.4, 7.2, 7.9, 7.1, 7.0, 6.8, 6.0, 7.5, 5.6, 5.7, 6.0, 6.4, 6.8, 8.2, 7.0, 6.4, 8.9, 7.1, 7.5, 6.8, 9.4, 7.5, 7.4, 6.5, 6.9, 6.6, 6.5, 8.4, 7.1, 6.8, 7.2, 7.1, 10.8, 8.7, 6.5, 7.2, 7.3, 6.4, 6.4, 8.3, 8.2, 9.0, 8.2, 6.4, 7.1, 6.2, 10.9, 8.6, 9.6, 7.3, 12.0, 6.2, 6.0, 6.4, 6.9, 7.4, 5.8, 7.1, 8.3, 5.6, 5.7, 7.9, 6.7, 6.7, 9.2, 6.1, 10.6, 8.2, 6.0, 7.3, 7.2, 6.4, 7.4, 7.9, 7.4, 6.7, 6.8, 7.0, 6.7, 9.9, 6.8, 6.4, 8.3, 6.1, 7.2, 5.0, 6.9, 7.5, 5.8, 5.3, 6.9, 5.6, 7.2, 6.9, 8.9, 6.1, 6.0, 6.9, 7.3, 7.0, 8.6, 6.0, 7.8, 6.6, 9.8, 7.4, 6.3, 8.0, 6.4, 7.4, 5.2, 11.6, 8.9, 7.0, 6.9, 7.2, 7.2, 6.4, 6.4, 9.3, 6.5, 6.3, 6.4, 6.2, 10.4, 6.7, 5.6, 5.5, 10.6, 8.8, 8.9, 6.9, 7.4, 7.6, 6.6, 13.0, 7.2, 6.0, 9.1, 5.8, 6.2, 6.8, 7.5, 7.0, 7.0, 6.4, 6.5, 6.0, 5.1, 6.7, 6.9, 7.4, 7.9, 11.1, 7.4, 7.3, 7.8, 8.5, 8.1, 6.6, 6.4, 7.5, 6.7, 6.4, 6.1, 7.3, 7.0, 6.0, 7.7, 7.4, 6.3, 6.0, 6.6, 8.2, 7.1, 7.1, 7.6, 6.8, 7.2, 6.4, 7.0, 7.6, 5.7, 5.1, 6.7, 7.4, 5.7, 6.2, 7.7, 6.7, 6.6, 6.4, 6.8, 5.4, 7.1, 8.0, 6.0, 8.0, 11.0, 12.4, 6.6, 7.3, 6.3, 5.7, 6.6, 8.9, 7.0, 6.1, 6.8, 6.6, 6.3, 12.2, 6.9, 6.4, 6.6, 7.9, 4.9, 7.6, 6.6, 6.4, 7.5, 9.6, 7.2, 7.2, 8.0, 5.5, 6.3, 6.8, 6.9, 6.6, 6.3, 7.4, 7.6, 7.6, 5.6, 7.0, 6.9, 7.2, 5.8, 6.9, 6.8, 6.9, 6.7, 6.8, 6.5, 6.4, 6.8, 6.0, 7.3, 7.5, 6.9, 9.0, 9.0, 10.2, 6.6, 6.8, 7.8, 13.7, 7.1, 7.0, 8.0, 10.4, 7.1, 8.1, 7.7, 6.1, 8.3, 7.3, 8.2, 9.5, 7.4, 6.5, 8.3, 5.7, 6.5, 6.4, 7.8, 7.6, 6.8, 6.7, 7.0, 7.1, 6.7]}, {\"marker\": {\"color\": \"white\", \"opacity\": 0.005, \"size\": 0.01}, \"mode\": \"markers\", \"name\": \"Current\", \"showlegend\": false, \"type\": \"scatter\", \"x\": [2, 2], \"y\": [3.2147928248289634, 11.185307175171038]}], \"layout\": {\"legend\": {\"orientation\": \"h\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"shapes\": [{\"fillcolor\": \"LightGreen\", \"layer\": \"below\", \"line\": {\"width\": 0}, \"opacity\": 0.5, \"type\": \"rect\", \"x0\": 0, \"x1\": 1, \"xref\": \"paper\", \"y0\": 3.2147928248289634, \"y1\": 11.185307175171038, \"yref\": \"y\"}, {\"line\": {\"color\": \"Green\", \"width\": 3}, \"name\": \"Reference\", \"type\": \"line\", \"x0\": 0, \"x1\": 1, \"xref\": \"paper\", \"y0\": 7.200050000000001, \"y1\": 7.200050000000001, \"yref\": \"y\"}], \"showlegend\": true, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"Index\"}}, \"yaxis\": {\"title\": {\"text\": \"fixed.acidity\"}}}}}}, {\"id\": \"volatile.acidity_distr\", \"params\": {\"data\": [{\"histnorm\": \"probability\", \"marker\": {\"color\": \"#4d4d4d\"}, \"name\": \"Reference\", \"nbinsx\": 10, \"opacity\": 0.6, \"type\": \"histogram\", \"x\": [0.24, 0.19, 0.33, 0.1, 0.33, 0.36, 0.37, 0.19, 0.23, 0.27, 0.19, 0.46, 0.57, 0.12, 0.32, 0.26, 0.27, 0.25, 0.6, 0.37, 0.46, 0.18, 0.685, 0.335, 0.66, 0.2, 0.58, 0.21, 0.26, 0.4, 0.4, 0.41, 0.21, 0.25, 0.3, 0.24, 0.6, 0.3, 0.43, 0.145, 0.66, 0.21, 0.3, 0.27, 0.48, 0.32, 0.52, 0.37, 0.53, 0.24, 1.13, 0.26, 1.33, 0.17, 0.3, 0.24, 0.2, 0.23, 0.34, 0.31, 0.44, 0.26, 0.2, 0.08, 0.23, 1.115, 0.22, 0.19, 0.685, 0.76, 0.24, 0.15, 0.22, 0.34, 0.47, 0.27, 0.43, 0.69, 0.705, 0.15, 0.35, 0.3, 0.805, 0.19, 0.34, 0.28, 0.19, 0.23, 0.27, 0.27, 0.25, 0.44, 0.21, 0.28, 0.51, 0.4, 0.16, 0.44, 0.2, 0.42, 0.65, 0.25, 0.22, 0.38, 0.14, 0.28, 0.1, 0.38, 0.6, 0.365, 0.28, 0.21, 0.755, 0.31, 0.26, 0.165, 0.21, 0.17, 0.31, 0.44, 0.32, 0.37, 0.63, 0.21, 0.305, 0.3, 0.26, 0.37, 0.5, 0.22, 0.35, 0.24, 0.635, 0.36, 0.21, 0.27, 0.47, 0.22, 0.28, 0.18, 0.27, 0.4, 0.15, 0.18, 0.51, 0.45, 0.33, 0.4, 0.31, 0.39, 0.17, 0.38, 0.41, 0.6, 0.25, 0.7, 0.16, 0.15, 0.21, 0.66, 0.35, 0.22, 0.47, 0.64, 0.24, 0.29, 0.25, 0.54, 0.18, 0.14, 0.25, 0.17, 0.44, 0.27, 0.24, 0.24, 0.37, 0.17, 0.38, 0.41, 0.11, 0.22, 0.855, 0.27, 0.29, 0.33, 0.31, 0.15, 0.31, 0.25, 0.28, 0.28, 0.48, 0.18, 0.34, 0.77, 0.13, 0.31, 0.23, 0.36, 0.18, 0.24, 0.28, 0.26, 0.27, 0.48, 0.27, 0.18, 0.53, 0.51, 0.51, 0.3, 0.3, 0.54, 0.2, 0.2, 0.66, 0.17, 0.455, 0.52, 0.22, 0.39, 0.34, 0.38, 0.25, 0.29, 0.43, 0.37, 0.855, 0.42, 0.46, 0.18, 0.15, 0.23, 0.26, 0.24, 0.4, 0.6, 0.41, 0.23, 0.23, 0.2, 0.46, 0.28, 0.13, 0.15, 0.5, 0.23, 0.3, 0.27, 0.23, 0.31, 0.22, 0.2, 0.28, 0.28, 0.34, 0.22, 0.28, 0.21, 0.31, 0.27, 0.63, 0.125, 0.51, 0.39, 0.38, 0.21, 0.32, 0.23, 0.21, 0.32, 0.27, 0.44, 0.57, 0.41, 0.32, 0.44, 0.35, 0.43, 0.2, 0.34, 0.41, 0.15, 0.23, 0.15, 0.41, 0.69, 0.53, 0.17, 0.45, 0.39, 0.14, 0.43, 0.635, 0.34, 0.27, 0.2, 0.3, 0.5, 0.32, 0.235, 0.62, 0.39, 0.18, 0.25, 0.28, 1.025, 0.15, 0.28, 0.21, 0.66, 0.55, 0.33, 0.55, 0.59, 0.28, 0.28, 0.57, 0.23, 0.41, 0.26, 0.19, 0.16, 0.32, 0.35, 0.28, 0.62, 0.32, 0.27, 0.34, 0.24, 0.29, 0.19, 0.44, 0.36, 0.26, 0.765, 0.23, 0.25, 0.28, 0.775, 0.28, 0.17, 0.27, 0.26, 0.23, 0.21, 0.2, 0.18, 0.44, 0.935, 0.2, 0.21, 0.29, 0.21, 0.29, 0.27, 0.25, 0.17, 0.26, 0.17, 0.28, 0.34, 0.24, 0.15, 0.14, 0.32, 0.36, 0.76, 0.32, 0.27, 0.69, 0.28, 0.28, 0.21, 0.15, 0.27, 0.19, 0.17, 0.29, 0.26, 0.27, 0.36, 0.29, 0.23, 0.21, 0.44, 0.745, 0.27, 0.33, 0.45, 0.26, 0.25, 0.29, 0.29, 0.22, 0.2, 0.21, 0.19, 0.59, 0.38, 0.28, 0.68, 0.47, 0.31, 0.19, 0.4, 0.56, 0.21, 0.43, 0.2, 0.21, 0.2, 0.3, 0.87, 0.105, 0.27, 0.42, 0.21, 0.19, 0.14, 0.45, 0.23, 0.68, 0.46, 0.34, 0.29, 0.3, 0.43, 0.4, 0.53, 0.3, 0.31, 0.17, 0.655, 0.67, 0.28, 0.17, 0.34, 0.25, 0.18, 0.3, 0.25, 0.66, 0.23, 0.39, 0.29, 0.32, 0.34, 0.25, 0.24, 0.11, 0.28, 0.36, 0.29, 0.35, 0.2, 0.29, 0.56, 0.2, 0.23, 0.18, 0.59, 0.37, 0.44, 0.37, 0.28, 0.39, 0.48, 0.29, 0.28, 0.38, 0.6, 0.3, 0.58, 0.27, 0.18, 0.34, 0.32, 0.2, 0.58, 0.25, 1.33, 0.28, 0.43, 0.2, 0.16, 0.36, 0.33, 0.26, 0.21, 0.29, 0.14, 0.93, 0.34, 0.25, 0.56, 0.36, 0.38, 0.29, 0.22, 0.24, 0.395, 0.18, 0.275, 0.16, 0.27, 0.32, 0.17, 0.32, 0.23, 0.25, 0.3, 0.615, 0.27, 0.22, 0.755, 0.22, 0.41, 0.29, 0.21, 0.65, 0.24, 0.27, 0.3, 0.3, 0.29, 0.25, 0.27, 0.26, 0.255, 0.33, 0.17, 0.19, 0.35, 0.19, 0.2, 0.5, 0.5, 0.66, 0.25, 0.18, 0.35, 0.28, 0.25, 0.18, 0.73, 0.53, 0.26, 0.28, 0.18, 0.31, 1.0, 0.58, 0.25, 0.16, 0.21, 0.16, 0.18, 0.35, 0.18, 0.27, 0.2, 0.36, 0.3, 0.18, 0.48, 0.4, 0.26, 0.54, 0.29, 0.39, 0.63, 0.26, 0.19, 0.22, 0.21, 0.3, 0.15, 0.31, 0.25, 0.31, 0.28, 0.275, 0.32, 0.42, 0.19, 0.24, 0.71, 0.64, 0.46, 0.475, 0.22, 0.61, 0.21, 0.83, 0.22, 0.43, 0.49, 0.42, 0.69, 0.25, 0.58, 0.34, 0.19, 0.34, 0.23, 0.54, 0.4, 0.31, 0.26, 0.28, 0.15, 0.25, 0.44, 0.28, 0.3, 0.35, 0.38, 0.21, 0.31, 0.22, 0.45, 0.27, 0.76, 0.24, 0.58, 0.36, 0.62, 0.62, 0.58, 0.28, 0.695, 0.25, 0.25, 0.25, 0.34, 0.35, 0.41, 0.25, 0.12, 0.23, 0.17, 0.3, 0.44, 0.295, 0.33, 0.28, 0.16, 0.36, 0.25, 0.36, 0.37, 0.23, 0.46, 0.26, 0.42, 0.18, 0.22, 0.31, 0.15, 0.23, 0.26, 0.34, 0.2, 0.16, 0.45, 0.29, 0.45, 0.34, 0.32, 0.35, 0.24, 0.33, 0.25, 0.27, 0.19, 0.37, 0.4, 0.16, 0.24, 0.26, 0.46, 0.31, 0.52, 0.76, 0.68, 0.3, 0.88, 0.31, 0.29, 0.31, 0.28, 0.21, 0.835, 0.25, 0.345, 0.23, 0.2, 0.42, 0.21, 0.23, 0.29, 0.62, 0.23, 0.24, 0.12, 0.25, 0.32, 0.28, 0.315, 0.16, 0.18, 0.37, 0.17, 0.6, 0.17, 0.15, 0.39, 0.45, 0.4, 0.25, 0.35, 0.27, 0.14, 0.67, 0.41, 0.33, 0.19, 0.26, 0.4, 0.66, 0.3, 0.18, 0.23, 0.4, 0.26, 0.115, 0.3, 0.25, 0.28, 0.2, 0.22, 0.21, 0.2, 0.36, 0.19, 0.18, 0.22, 0.26, 0.2, 0.32, 0.725, 0.23, 0.36, 0.28, 0.32, 0.67, 0.23, 0.37, 0.24, 0.32, 0.41, 0.23, 0.58, 0.2, 0.32, 0.42, 0.18, 0.305, 0.2, 0.16, 0.21, 0.3, 0.18, 0.54, 0.31, 0.58, 0.31, 0.23, 0.34, 0.23, 0.26, 0.29, 0.24, 0.3, 0.19, 0.32, 0.26, 0.2, 0.38, 0.35, 0.37, 0.35, 0.24, 0.415, 0.52, 0.5, 0.22, 0.53, 0.2, 0.29, 0.31, 0.64, 0.34, 0.13, 0.63, 0.2, 0.37, 0.26, 0.19, 0.37, 0.4, 0.66, 0.36, 0.39, 0.29, 0.28, 0.21, 0.29, 0.23, 0.16, 0.545, 0.18, 0.38, 0.34, 0.18, 0.265, 0.32, 0.24, 0.26, 0.26, 0.18, 0.28, 0.2, 0.29, 0.38, 0.14, 0.46, 0.28, 0.14, 0.29, 0.44, 0.49, 0.18, 0.43, 0.23, 0.17, 0.65, 0.33, 0.18, 0.54, 0.43, 0.33, 0.695, 0.29, 0.28, 0.17, 0.3, 0.58, 0.22, 0.34, 0.41, 0.915, 0.42, 0.3, 0.18, 0.23, 0.16, 0.27, 0.82, 0.28, 0.2, 0.16, 0.2, 0.36, 0.2, 0.23, 0.17, 0.14, 0.615, 0.24, 0.34, 0.26, 0.39, 0.35, 0.27, 0.26, 0.36, 0.39, 0.32, 0.19, 0.18, 0.37, 0.51, 0.17, 0.63, 0.64, 0.27, 0.53, 0.26, 0.1, 0.39, 0.29, 0.49, 0.32, 0.32, 0.27, 0.23, 0.26, 0.44, 0.47, 0.24, 0.28, 0.34, 0.46, 0.59, 0.32, 0.47, 0.42, 0.16, 0.13, 0.24, 0.24, 0.25, 0.3, 0.34, 0.22, 0.96, 0.13, 0.41, 0.21, 0.32, 0.31, 0.19, 0.29, 0.43, 0.36, 0.34, 0.825, 0.31, 0.25, 0.3, 0.125, 0.29, 0.575, 0.37, 0.28, 0.755, 0.19, 0.25, 0.28, 0.31, 0.55, 0.45, 0.39, 0.24, 0.12, 0.32, 0.63, 0.26, 0.37, 0.5, 0.59, 0.28, 0.42, 0.37, 0.22, 0.34, 0.19, 0.24, 0.17, 0.2, 0.775, 0.23, 0.19, 0.36, 0.31, 0.24, 0.18, 0.32, 0.34, 0.23, 0.35, 0.61, 0.13, 0.38, 0.67, 0.3, 0.24, 0.46, 0.62, 0.24, 0.31, 0.52, 0.4, 0.18, 0.5, 0.19]}, {\"histnorm\": \"probability\", \"marker\": {\"color\": \"#ed0400\"}, \"name\": \"Current\", \"nbinsx\": 10, \"opacity\": 0.6, \"type\": \"histogram\", \"x\": [0.37, 0.365, 0.23, 0.21, 0.32, 0.62, 0.27, 0.58, 0.18, 0.21, 0.24, 0.3, 0.2, 0.3, 0.48, 0.25, 0.29, 0.27, 0.32, 0.28, 0.32, 0.2, 0.44, 0.43, 0.765, 0.785, 0.25, 0.22, 0.37, 0.2, 0.6, 0.3, 0.19, 0.19, 0.2, 0.31, 0.26, 0.25, 0.29, 0.25, 0.29, 0.22, 0.24, 0.21, 0.39, 0.34, 0.41, 0.31, 0.34, 0.22, 0.26, 0.38, 0.35, 0.3, 0.45, 0.19, 0.28, 0.25, 0.13, 0.23, 0.475, 0.605, 0.33, 0.24, 0.34, 0.52, 0.41, 0.22, 0.29, 0.26, 0.57, 0.3, 0.6, 0.29, 0.26, 0.41, 0.22, 0.41, 0.42, 0.57, 0.28, 0.28, 0.21, 0.26, 0.17, 0.22, 0.2, 0.27, 0.34, 0.21, 0.76, 0.42, 0.3, 0.3, 0.22, 0.25, 0.26, 0.3, 0.73, 0.6, 0.42, 0.28, 0.18, 0.54, 0.14, 0.26, 0.19, 0.28, 0.98, 0.34, 0.275, 0.29, 0.2, 0.28, 0.18, 0.52, 0.26, 0.12, 0.53, 0.15, 0.21, 0.31, 0.36, 0.485, 0.58, 0.24, 0.22, 0.31, 0.36, 0.33, 0.34, 0.25, 0.19, 0.43, 0.3, 0.2, 0.51, 0.24, 0.25, 0.31, 0.4, 0.4, 0.475, 0.25, 0.54, 0.6, 0.26, 0.61, 0.26, 0.28, 0.17, 0.51, 0.28, 0.26, 0.2, 0.25, 0.28, 0.53, 0.26, 0.31, 0.24, 0.38, 0.3, 0.66, 0.64, 0.33, 0.705, 0.29, 0.29, 0.37, 0.32, 0.36, 0.255, 0.24, 0.29, 0.66, 0.61, 0.645, 0.33, 0.23, 0.34, 0.16, 0.635, 0.31, 0.42, 0.46, 0.34, 0.39, 0.17, 0.19, 0.36, 0.26, 0.42, 0.645, 0.28, 0.27, 0.21, 0.36, 0.42, 0.34, 0.45, 0.27, 0.29, 0.21, 0.18, 0.865, 0.39, 0.23, 0.39, 0.91, 0.29, 0.46, 0.31, 0.35, 0.7, 0.4, 0.09, 0.775, 0.55, 0.22, 0.12, 0.1, 0.18, 0.2, 0.57, 0.19, 0.34, 0.335, 0.3, 0.35, 0.37, 0.685, 0.2, 0.23, 0.23, 0.55, 0.37, 0.24, 0.3, 0.39, 0.265, 0.3, 1.04, 0.34, 0.21, 0.15, 0.18, 0.27, 0.34, 0.25, 0.39, 0.27, 0.24, 0.31, 0.47, 0.2, 0.28, 0.38, 0.31, 0.39, 0.13, 0.39, 0.56, 0.29, 0.19, 0.5, 0.18, 0.33, 0.2, 0.14, 0.55, 0.22, 0.46, 0.37, 0.16, 0.27, 0.25, 0.25, 0.5, 0.41, 0.23, 0.345, 0.19, 0.18, 0.27, 0.22, 0.25, 0.3, 0.17, 0.58, 0.39, 0.19, 0.33, 0.35, 0.27, 0.36, 1.58, 0.26, 0.4, 0.17, 0.21, 0.31, 0.29, 0.21, 0.62, 0.44, 0.25, 0.64, 0.15, 0.26, 0.28, 0.46, 0.24, 0.32, 0.35, 0.46, 0.32, 0.42, 0.21, 0.22, 0.52, 0.31, 0.35, 0.33, 0.51, 0.62, 0.24, 0.18, 0.5, 0.35, 0.6, 0.26, 0.22, 0.33, 0.33, 0.655, 0.2, 0.28, 0.6, 0.42, 0.22, 0.31, 0.84, 0.28, 0.19, 0.23, 0.27, 0.2, 0.63, 0.3, 0.34, 0.21, 0.27, 0.14, 0.31, 0.16, 0.22, 0.24, 0.41, 0.27, 0.56, 0.4, 0.27, 0.24, 0.36, 0.22, 0.46, 0.61, 0.43, 0.5, 0.695, 0.19, 0.19, 0.21, 0.65, 0.16, 0.685, 0.17, 0.22, 0.23, 0.17, 0.695, 0.44, 0.28, 0.13, 0.28, 0.33, 0.3, 0.11, 0.14, 0.35, 0.34, 0.17, 0.39, 0.34, 0.32, 0.65, 0.28, 0.21, 0.28, 0.13, 0.24, 0.27, 0.41, 0.23, 0.25, 0.66, 0.18, 0.11, 0.17, 0.15, 0.59, 0.11, 0.68, 0.24, 0.585, 0.315, 0.18, 0.295, 0.29, 0.2, 0.22, 0.55, 0.37, 0.27, 0.28, 0.18, 0.345, 0.28, 0.44, 0.32, 0.2, 0.59, 0.585, 0.17, 0.45, 0.34, 0.43, 0.13, 0.21, 0.32, 0.17, 0.28, 0.4, 0.25, 0.52, 0.36, 0.24, 0.37, 0.3, 0.5, 0.31, 0.17, 0.16, 0.43, 0.24, 0.25, 0.3, 0.38, 0.31, 0.25, 0.36, 0.37, 0.22, 0.18, 0.26, 0.21, 0.16, 0.24, 0.46, 0.28, 0.55, 0.52, 0.31, 0.21, 0.635, 0.22, 0.37, 0.28, 0.19, 0.32, 0.14, 0.25, 0.36, 0.33, 0.28, 0.29, 0.59, 0.19, 0.65, 0.2, 0.29, 0.32, 0.19, 0.4, 0.43, 0.31, 0.16, 0.3, 0.785, 0.22, 0.27, 0.25, 0.14, 0.21, 0.23, 0.25, 0.31, 0.26, 0.26, 0.36, 0.43, 0.21, 0.32, 0.3, 0.54, 0.28, 0.63, 0.18, 0.17, 0.35, 0.27, 0.25, 0.41, 0.43, 0.35, 0.305, 0.23, 0.2, 0.54, 0.3, 0.31, 0.645, 0.39, 0.29, 0.39, 0.16, 0.24, 0.52, 0.3, 0.24, 0.42, 0.26, 0.15, 0.45, 0.27, 0.22, 0.22, 0.16, 0.215, 0.33, 0.24, 0.22, 0.34, 0.38, 0.21, 0.14, 0.53, 0.725, 0.34, 0.26, 0.18, 0.27, 0.47, 0.3, 0.26, 0.235, 0.26, 0.33, 0.29, 0.27, 0.23, 0.28, 0.24, 0.23, 0.2, 0.66, 0.27, 0.16, 0.45, 0.4, 0.2, 0.25, 0.28, 0.24, 0.23, 0.115, 0.25, 0.28, 0.57, 0.25, 0.27, 0.4, 0.37, 0.18, 0.38, 0.18, 0.21, 0.21, 0.19, 0.19, 0.3, 0.31, 0.18, 0.45, 0.23, 0.67, 0.36, 0.24, 0.445, 0.15, 0.45, 0.34, 0.24, 0.26, 0.2, 0.27, 0.18, 0.19, 0.18, 0.4, 0.21, 0.31, 0.32, 0.5, 0.21, 0.37, 0.32, 0.26, 0.21, 0.31, 0.34, 0.28, 0.33, 0.48, 0.42, 0.765, 0.315, 0.28, 0.2, 0.25, 0.28, 0.36, 0.17, 0.41, 0.28, 0.27, 0.15, 0.32, 0.39, 0.5, 0.52, 0.29, 0.34, 0.24, 0.25, 0.08, 0.34, 0.24, 0.4, 0.18, 0.27, 0.33, 0.19, 0.28, 0.18, 0.41, 0.57, 0.41, 0.23, 0.19, 0.36, 0.27, 0.34, 0.52, 0.38, 0.5, 0.42, 0.345, 0.33, 0.745, 0.22, 0.69, 0.18, 0.57, 0.23, 0.17, 0.33, 0.36, 0.18, 0.22, 0.22, 0.23, 0.4, 0.24, 0.745, 0.36, 0.35, 0.19, 0.23, 0.18, 0.17, 0.12, 0.44, 0.22, 0.17, 0.21, 0.685, 0.3, 0.22, 0.3, 0.2, 0.58, 0.44, 0.16, 0.16, 0.24, 0.36, 0.65, 0.21, 0.12, 0.29, 0.13, 0.32, 0.17, 0.26, 0.14, 0.21, 0.34, 0.25, 0.4, 0.38, 0.41, 0.12, 0.17, 0.42, 0.44, 0.3, 0.24, 0.19, 0.29, 0.3, 0.38, 0.23, 0.39, 0.12, 0.3, 0.34, 0.59, 0.45, 0.45, 0.46, 0.2, 0.22, 0.18, 0.18, 0.31, 0.35, 0.2, 0.26, 0.28, 0.47, 0.23, 0.39, 0.2, 0.56, 0.305, 0.45, 0.235, 0.24, 0.33, 0.26, 0.19, 0.26, 0.28, 0.705, 0.41, 0.22, 0.16, 0.31, 0.31, 0.16, 0.35, 1.02, 0.27, 0.28, 0.52, 0.21, 0.35, 0.26, 0.22, 0.33, 0.44, 0.41, 0.45, 0.675, 0.4, 0.37, 0.27, 0.78, 0.28, 0.25, 0.3, 0.19, 0.49, 0.6, 0.24, 0.32, 0.21, 0.19, 0.25, 0.62, 0.37, 0.14, 0.25, 0.26, 0.69, 0.31, 0.555, 0.21, 0.17, 0.45, 0.25, 0.25, 0.31, 0.26, 0.3, 0.6, 0.53, 0.24, 0.69, 0.38, 0.4, 0.62, 0.3, 0.22, 0.41, 0.29, 0.41, 0.3, 0.25, 0.26, 0.16, 0.27, 0.15, 0.5, 0.31, 0.59, 0.21, 0.19, 0.29, 0.24, 0.32, 0.32, 0.41, 0.21, 0.2, 0.25, 0.26, 0.42, 0.44, 0.36, 0.475, 0.15, 0.35, 0.33, 0.11, 0.31, 0.16, 0.34, 0.35, 0.24, 0.34, 0.2, 0.21, 0.28, 0.28, 0.23, 0.4, 0.19, 0.27, 0.28, 0.205, 0.26, 0.19, 0.43, 0.28, 0.21, 0.33, 0.24, 0.26, 0.25, 0.24, 0.27, 0.28, 0.26, 0.38, 0.3, 0.31, 0.15, 0.33, 0.26, 0.18, 0.32, 0.33, 0.61, 0.3, 0.38, 0.38, 0.56, 0.595, 0.34, 0.24, 0.22, 0.58, 0.26, 0.35, 0.32, 0.28, 0.39, 0.26, 0.23, 0.875, 0.2, 0.21, 0.35, 0.16, 0.33, 0.45, 0.58, 0.28, 0.3, 0.255, 0.335, 0.9, 0.21, 0.24, 0.63, 0.38, 0.16, 0.19, 0.24, 0.35, 0.48, 0.19, 0.2, 0.17, 0.16, 0.6, 0.55, 0.32, 0.18, 0.2, 0.38, 0.21, 0.15, 0.52, 0.63, 0.15, 0.38, 0.18, 0.22, 0.14, 0.16, 0.26, 0.49, 0.24, 0.32, 0.245, 0.44, 0.29, 0.15, 0.48, 0.645, 0.415, 0.18, 0.2, 0.83, 0.61, 0.34, 0.2, 0.18, 0.22, 0.4, 0.365, 0.51, 0.42, 0.49, 0.32, 0.25, 0.2, 0.22, 0.24, 0.18, 0.15, 0.27, 0.53, 0.23, 0.26, 0.28]}], \"layout\": {\"legend\": {\"orientation\": \"h\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"volatile.acidity\"}}, \"yaxis\": {\"title\": {\"text\": \"Share\"}}}}}, {\"id\": \"volatile.acidity_drift\", \"params\": {\"title\": \"\", \"size\": 2, \"text\": \"\", \"type\": \"big_graph\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"Current\", \"type\": \"scatter\", \"x\": [443, 319, 703, 526, 76, 963, 1260, 532, 1561, 517, 506, 1557, 271, 1058, 1381, 1039, 542, 107, 161, 1301, 519, 1021, 1213, 223, 1286, 1426, 1234, 587, 1183, 182, 567, 1492, 724, 1262, 1509, 657, 1137, 913, 1445, 342, 781, 14, 971, 1072, 1254, 678, 1175, 1481, 1370, 1443, 18, 1151, 1380, 434, 1430, 554, 53, 535, 1050, 427, 259, 124, 961, 1488, 1563, 720, 1291, 1061, 425, 846, 1147, 204, 1317, 618, 1088, 927, 1196, 582, 1194, 360, 1449, 862, 1135, 1453, 1442, 1017, 268, 685, 317, 775, 1086, 942, 1052, 801, 1362, 219, 379, 649, 1195, 479, 1542, 609, 930, 1105, 34, 708, 686, 1132, 693, 733, 1562, 1190, 473, 737, 672, 969, 858, 5, 1556, 298, 80, 940, 361, 1154, 1545, 1622, 784, 19, 1522, 996, 54, 1415, 1564, 1593, 1236, 9, 353, 1222, 113, 1010, 1263, 877, 82, 381, 818, 1210, 1409, 66, 254, 817, 92, 1340, 122, 1357, 511, 1546, 692, 17, 1248, 414, 52, 1296, 191, 175, 233, 900, 785, 935, 1298, 156, 487, 159, 481, 1255, 1597, 253, 1491, 841, 187, 914, 979, 249, 1114, 1366, 814, 716, 465, 875, 1242, 670, 299, 593, 436, 728, 141, 229, 1057, 912, 994, 648, 799, 1164, 1073, 4, 516, 152, 1267, 1237, 752, 1150, 825, 402, 1277, 575, 1437, 838, 390, 1505, 1093, 1026, 1611, 31, 674, 866, 1328, 616, 861, 897, 148, 303, 1451, 602, 1125, 1614, 1047, 1462, 1148, 574, 899, 1327, 89, 530, 408, 1192, 177, 520, 993, 326, 992, 717, 895, 1421, 984, 240, 85, 557, 278, 938, 1425, 958, 1232, 1149, 171, 1220, 227, 891, 489, 1391, 1184, 1032, 393, 726, 192, 260, 880, 1592, 1537, 491, 759, 1473, 959, 1454, 1015, 965, 1393, 1489, 1256, 133, 202, 1036, 438, 483, 666, 461, 142, 1181, 1580, 308, 538, 170, 310, 743, 1101, 1179, 315, 22, 1529, 45, 879, 1110, 61, 522, 1397, 829, 576, 1193, 1202, 1549, 1375, 27, 527, 1186, 1273, 828, 539, 1049, 1014, 412, 1091, 1497, 1595, 347, 2, 844, 1490, 632, 211, 1582, 918, 1217, 1115, 744, 459, 579, 771, 96, 178, 108, 1516, 805, 1240, 440, 619, 1, 1315, 1239, 1347, 512, 48, 722, 1517, 1621, 446, 565, 568, 796, 231, 1070, 1063, 215, 513, 704, 354, 55, 881, 746, 641, 762, 279, 1145, 1468, 224, 302, 911, 218, 1079, 874, 1266, 792, 1136, 372, 295, 364, 580, 1615, 688, 1560, 333, 467, 968, 399, 760, 740, 953, 1520, 1446, 1214, 615, 524, 546, 1495, 1324, 452, 1515, 432, 863, 442, 847, 276, 456, 184, 1116, 1200, 458, 1508, 1087, 1478, 376, 1479, 563, 1146, 1507, 42, 944, 823, 1228, 656, 1227, 198, 309, 761, 1158, 549, 47, 1209, 529, 933, 220, 1624, 1591, 651, 536, 362, 1314, 420, 564, 475, 482, 140, 679, 1436, 1334, 77, 39, 570, 962, 808, 981, 322, 1471, 251, 695, 1128, 813, 757, 820, 853, 831, 1246, 58, 553, 597, 241, 1288, 330, 1005, 789, 1617, 56, 1126, 411, 548, 501, 1211, 642, 558, 1605, 745, 878, 1056, 667, 435, 29, 270, 35, 1157, 422, 1310, 114, 1524, 1422, 689, 1018, 1168, 1360, 985, 1191, 793, 1363, 1504, 581, 644, 1199, 621, 1612, 494, 665, 431, 1095, 638, 1042, 1404, 1030, 40, 1121, 75, 1588, 1417, 247, 713, 1590, 186, 646, 312, 8, 1551, 1302, 1044, 768, 884, 1585, 1618, 826, 445, 712, 464, 1308, 195, 655, 1487, 1389, 1356, 243, 401, 572, 1074, 810, 477, 1460, 1544, 1182, 285, 471, 936, 1238, 578, 1034, 1535, 1513, 426, 1311, 1001, 986, 1038, 980, 1064, 620, 982, 1565, 194, 474, 1428, 569, 1165, 49, 1333, 1401, 1307, 1076, 991, 1566, 44, 1342, 245, 943, 300, 583, 1013, 269, 1548, 313, 776, 283, 1444, 540, 406, 338, 466, 363, 1002, 320, 1264, 1089, 70, 1027, 500, 10, 907, 505, 1295, 864, 1432, 64, 1122, 1543, 416, 898, 654, 205, 328, 486, 999, 1377, 970, 528, 1558, 418, 1379, 1299, 1378, 590, 1247, 1174, 472, 1323, 131, 15, 439, 1528, 476, 725, 1203, 1109, 1003, 1365, 103, 1279, 60, 871, 78, 391, 165, 1335, 1410, 1129, 960, 349, 185, 1464, 371, 117, 1398, 252, 507, 1613, 311, 1419, 395, 987, 358, 263, 359, 1559, 1305, 1506, 1376, 1055, 634, 1552, 16, 51, 1258, 493, 601, 997, 351, 711, 1604, 1486, 1339, 794, 97, 1475, 1423, 196, 748, 183, 1433, 1579, 613, 1536, 989, 682, 533, 610, 687, 892, 81, 896, 397, 267, 589, 386, 795, 1416, 132, 265, 1609, 1461, 883, 88, 840, 988, 1354, 676, 916, 629, 1269, 924, 294, 261, 1541, 1081, 1348, 1576, 405, 1616, 356, 608, 1097, 239, 1249, 1099, 1403, 119, 1096, 977, 751, 374, 453, 110, 1336, 1390, 905, 1287, 503, 1031, 1331, 1224, 729, 410, 1540, 367, 1607, 384, 200, 65, 1358, 1394, 1023, 272, 1418, 955, 677, 238, 1133, 974, 541, 478, 1257, 1265, 1465, 1589, 1326, 188, 1083, 681, 906, 1092, 1276, 316, 214, 1078, 1502, 1084, 660, 1142, 531, 255, 30, 662, 1253, 230, 157, 1343, 385, 1169, 380, 1188, 721, 264, 787, 101, 13, 1274, 68, 1024, 1170, 1156, 71, 1577, 566, 1372, 1245, 798, 523, 626, 495, 937, 155, 887, 758, 921, 790, 1349, 1230, 366, 1531, 983, 839, 228, 417, 206, 742, 79, 190, 492, 948, 145, 923, 318, 824, 1374, 1124, 1463, 596, 457, 144, 1359, 1292, 1045, 764, 842, 1140, 1408, 995, 904, 592, 1458, 135, 83, 1062, 154, 1440, 1283, 773, 1414, 127, 1177, 1318, 1413, 403, 150, 346, 413, 1303, 1523, 1619, 394, 1261, 1054, 208, 496, 352, 95, 625, 571, 37, 485, 143, 946, 158, 552, 1527, 1029, 518, 1180, 1218, 236, 1100, 222, 1431, 345, 1459, 120, 661, 588, 1623, 1493, 62, 1429, 811, 193, 235, 181, 1320, 389, 1103, 521, 669, 332, 258, 1369, 1538, 957, 382, 1382, 1567, 331, 934, 614, 262, 893, 6, 266, 769, 38, 901, 1573, 1578, 545, 118, 783, 652, 1025, 706, 105, 1189, 484, 1569, 630, 683, 20, 870, 242, 50, 162, 915, 966, 441, 867, 731, 1102, 1000, 1268, 1223, 822, 301, 723, 172], \"y\": [0.37, 0.365, 0.23, 0.21, 0.32, 0.62, 0.27, 0.58, 0.18, 0.21, 0.24, 0.3, 0.2, 0.3, 0.48, 0.25, 0.29, 0.27, 0.32, 0.28, 0.32, 0.2, 0.44, 0.43, 0.765, 0.785, 0.25, 0.22, 0.37, 0.2, 0.6, 0.3, 0.19, 0.19, 0.2, 0.31, 0.26, 0.25, 0.29, 0.25, 0.29, 0.22, 0.24, 0.21, 0.39, 0.34, 0.41, 0.31, 0.34, 0.22, 0.26, 0.38, 0.35, 0.3, 0.45, 0.19, 0.28, 0.25, 0.13, 0.23, 0.475, 0.605, 0.33, 0.24, 0.34, 0.52, 0.41, 0.22, 0.29, 0.26, 0.57, 0.3, 0.6, 0.29, 0.26, 0.41, 0.22, 0.41, 0.42, 0.57, 0.28, 0.28, 0.21, 0.26, 0.17, 0.22, 0.2, 0.27, 0.34, 0.21, 0.76, 0.42, 0.3, 0.3, 0.22, 0.25, 0.26, 0.3, 0.73, 0.6, 0.42, 0.28, 0.18, 0.54, 0.14, 0.26, 0.19, 0.28, 0.98, 0.34, 0.275, 0.29, 0.2, 0.28, 0.18, 0.52, 0.26, 0.12, 0.53, 0.15, 0.21, 0.31, 0.36, 0.485, 0.58, 0.24, 0.22, 0.31, 0.36, 0.33, 0.34, 0.25, 0.19, 0.43, 0.3, 0.2, 0.51, 0.24, 0.25, 0.31, 0.4, 0.4, 0.475, 0.25, 0.54, 0.6, 0.26, 0.61, 0.26, 0.28, 0.17, 0.51, 0.28, 0.26, 0.2, 0.25, 0.28, 0.53, 0.26, 0.31, 0.24, 0.38, 0.3, 0.66, 0.64, 0.33, 0.705, 0.29, 0.29, 0.37, 0.32, 0.36, 0.255, 0.24, 0.29, 0.66, 0.61, 0.645, 0.33, 0.23, 0.34, 0.16, 0.635, 0.31, 0.42, 0.46, 0.34, 0.39, 0.17, 0.19, 0.36, 0.26, 0.42, 0.645, 0.28, 0.27, 0.21, 0.36, 0.42, 0.34, 0.45, 0.27, 0.29, 0.21, 0.18, 0.865, 0.39, 0.23, 0.39, 0.91, 0.29, 0.46, 0.31, 0.35, 0.7, 0.4, 0.09, 0.775, 0.55, 0.22, 0.12, 0.1, 0.18, 0.2, 0.57, 0.19, 0.34, 0.335, 0.3, 0.35, 0.37, 0.685, 0.2, 0.23, 0.23, 0.55, 0.37, 0.24, 0.3, 0.39, 0.265, 0.3, 1.04, 0.34, 0.21, 0.15, 0.18, 0.27, 0.34, 0.25, 0.39, 0.27, 0.24, 0.31, 0.47, 0.2, 0.28, 0.38, 0.31, 0.39, 0.13, 0.39, 0.56, 0.29, 0.19, 0.5, 0.18, 0.33, 0.2, 0.14, 0.55, 0.22, 0.46, 0.37, 0.16, 0.27, 0.25, 0.25, 0.5, 0.41, 0.23, 0.345, 0.19, 0.18, 0.27, 0.22, 0.25, 0.3, 0.17, 0.58, 0.39, 0.19, 0.33, 0.35, 0.27, 0.36, 1.58, 0.26, 0.4, 0.17, 0.21, 0.31, 0.29, 0.21, 0.62, 0.44, 0.25, 0.64, 0.15, 0.26, 0.28, 0.46, 0.24, 0.32, 0.35, 0.46, 0.32, 0.42, 0.21, 0.22, 0.52, 0.31, 0.35, 0.33, 0.51, 0.62, 0.24, 0.18, 0.5, 0.35, 0.6, 0.26, 0.22, 0.33, 0.33, 0.655, 0.2, 0.28, 0.6, 0.42, 0.22, 0.31, 0.84, 0.28, 0.19, 0.23, 0.27, 0.2, 0.63, 0.3, 0.34, 0.21, 0.27, 0.14, 0.31, 0.16, 0.22, 0.24, 0.41, 0.27, 0.56, 0.4, 0.27, 0.24, 0.36, 0.22, 0.46, 0.61, 0.43, 0.5, 0.695, 0.19, 0.19, 0.21, 0.65, 0.16, 0.685, 0.17, 0.22, 0.23, 0.17, 0.695, 0.44, 0.28, 0.13, 0.28, 0.33, 0.3, 0.11, 0.14, 0.35, 0.34, 0.17, 0.39, 0.34, 0.32, 0.65, 0.28, 0.21, 0.28, 0.13, 0.24, 0.27, 0.41, 0.23, 0.25, 0.66, 0.18, 0.11, 0.17, 0.15, 0.59, 0.11, 0.68, 0.24, 0.585, 0.315, 0.18, 0.295, 0.29, 0.2, 0.22, 0.55, 0.37, 0.27, 0.28, 0.18, 0.345, 0.28, 0.44, 0.32, 0.2, 0.59, 0.585, 0.17, 0.45, 0.34, 0.43, 0.13, 0.21, 0.32, 0.17, 0.28, 0.4, 0.25, 0.52, 0.36, 0.24, 0.37, 0.3, 0.5, 0.31, 0.17, 0.16, 0.43, 0.24, 0.25, 0.3, 0.38, 0.31, 0.25, 0.36, 0.37, 0.22, 0.18, 0.26, 0.21, 0.16, 0.24, 0.46, 0.28, 0.55, 0.52, 0.31, 0.21, 0.635, 0.22, 0.37, 0.28, 0.19, 0.32, 0.14, 0.25, 0.36, 0.33, 0.28, 0.29, 0.59, 0.19, 0.65, 0.2, 0.29, 0.32, 0.19, 0.4, 0.43, 0.31, 0.16, 0.3, 0.785, 0.22, 0.27, 0.25, 0.14, 0.21, 0.23, 0.25, 0.31, 0.26, 0.26, 0.36, 0.43, 0.21, 0.32, 0.3, 0.54, 0.28, 0.63, 0.18, 0.17, 0.35, 0.27, 0.25, 0.41, 0.43, 0.35, 0.305, 0.23, 0.2, 0.54, 0.3, 0.31, 0.645, 0.39, 0.29, 0.39, 0.16, 0.24, 0.52, 0.3, 0.24, 0.42, 0.26, 0.15, 0.45, 0.27, 0.22, 0.22, 0.16, 0.215, 0.33, 0.24, 0.22, 0.34, 0.38, 0.21, 0.14, 0.53, 0.725, 0.34, 0.26, 0.18, 0.27, 0.47, 0.3, 0.26, 0.235, 0.26, 0.33, 0.29, 0.27, 0.23, 0.28, 0.24, 0.23, 0.2, 0.66, 0.27, 0.16, 0.45, 0.4, 0.2, 0.25, 0.28, 0.24, 0.23, 0.115, 0.25, 0.28, 0.57, 0.25, 0.27, 0.4, 0.37, 0.18, 0.38, 0.18, 0.21, 0.21, 0.19, 0.19, 0.3, 0.31, 0.18, 0.45, 0.23, 0.67, 0.36, 0.24, 0.445, 0.15, 0.45, 0.34, 0.24, 0.26, 0.2, 0.27, 0.18, 0.19, 0.18, 0.4, 0.21, 0.31, 0.32, 0.5, 0.21, 0.37, 0.32, 0.26, 0.21, 0.31, 0.34, 0.28, 0.33, 0.48, 0.42, 0.765, 0.315, 0.28, 0.2, 0.25, 0.28, 0.36, 0.17, 0.41, 0.28, 0.27, 0.15, 0.32, 0.39, 0.5, 0.52, 0.29, 0.34, 0.24, 0.25, 0.08, 0.34, 0.24, 0.4, 0.18, 0.27, 0.33, 0.19, 0.28, 0.18, 0.41, 0.57, 0.41, 0.23, 0.19, 0.36, 0.27, 0.34, 0.52, 0.38, 0.5, 0.42, 0.345, 0.33, 0.745, 0.22, 0.69, 0.18, 0.57, 0.23, 0.17, 0.33, 0.36, 0.18, 0.22, 0.22, 0.23, 0.4, 0.24, 0.745, 0.36, 0.35, 0.19, 0.23, 0.18, 0.17, 0.12, 0.44, 0.22, 0.17, 0.21, 0.685, 0.3, 0.22, 0.3, 0.2, 0.58, 0.44, 0.16, 0.16, 0.24, 0.36, 0.65, 0.21, 0.12, 0.29, 0.13, 0.32, 0.17, 0.26, 0.14, 0.21, 0.34, 0.25, 0.4, 0.38, 0.41, 0.12, 0.17, 0.42, 0.44, 0.3, 0.24, 0.19, 0.29, 0.3, 0.38, 0.23, 0.39, 0.12, 0.3, 0.34, 0.59, 0.45, 0.45, 0.46, 0.2, 0.22, 0.18, 0.18, 0.31, 0.35, 0.2, 0.26, 0.28, 0.47, 0.23, 0.39, 0.2, 0.56, 0.305, 0.45, 0.235, 0.24, 0.33, 0.26, 0.19, 0.26, 0.28, 0.705, 0.41, 0.22, 0.16, 0.31, 0.31, 0.16, 0.35, 1.02, 0.27, 0.28, 0.52, 0.21, 0.35, 0.26, 0.22, 0.33, 0.44, 0.41, 0.45, 0.675, 0.4, 0.37, 0.27, 0.78, 0.28, 0.25, 0.3, 0.19, 0.49, 0.6, 0.24, 0.32, 0.21, 0.19, 0.25, 0.62, 0.37, 0.14, 0.25, 0.26, 0.69, 0.31, 0.555, 0.21, 0.17, 0.45, 0.25, 0.25, 0.31, 0.26, 0.3, 0.6, 0.53, 0.24, 0.69, 0.38, 0.4, 0.62, 0.3, 0.22, 0.41, 0.29, 0.41, 0.3, 0.25, 0.26, 0.16, 0.27, 0.15, 0.5, 0.31, 0.59, 0.21, 0.19, 0.29, 0.24, 0.32, 0.32, 0.41, 0.21, 0.2, 0.25, 0.26, 0.42, 0.44, 0.36, 0.475, 0.15, 0.35, 0.33, 0.11, 0.31, 0.16, 0.34, 0.35, 0.24, 0.34, 0.2, 0.21, 0.28, 0.28, 0.23, 0.4, 0.19, 0.27, 0.28, 0.205, 0.26, 0.19, 0.43, 0.28, 0.21, 0.33, 0.24, 0.26, 0.25, 0.24, 0.27, 0.28, 0.26, 0.38, 0.3, 0.31, 0.15, 0.33, 0.26, 0.18, 0.32, 0.33, 0.61, 0.3, 0.38, 0.38, 0.56, 0.595, 0.34, 0.24, 0.22, 0.58, 0.26, 0.35, 0.32, 0.28, 0.39, 0.26, 0.23, 0.875, 0.2, 0.21, 0.35, 0.16, 0.33, 0.45, 0.58, 0.28, 0.3, 0.255, 0.335, 0.9, 0.21, 0.24, 0.63, 0.38, 0.16, 0.19, 0.24, 0.35, 0.48, 0.19, 0.2, 0.17, 0.16, 0.6, 0.55, 0.32, 0.18, 0.2, 0.38, 0.21, 0.15, 0.52, 0.63, 0.15, 0.38, 0.18, 0.22, 0.14, 0.16, 0.26, 0.49, 0.24, 0.32, 0.245, 0.44, 0.29, 0.15, 0.48, 0.645, 0.415, 0.18, 0.2, 0.83, 0.61, 0.34, 0.2, 0.18, 0.22, 0.4, 0.365, 0.51, 0.42, 0.49, 0.32, 0.25, 0.2, 0.22, 0.24, 0.18, 0.15, 0.27, 0.53, 0.23, 0.26, 0.28]}, {\"marker\": {\"color\": \"white\", \"opacity\": 0.005, \"size\": 0.01}, \"mode\": \"markers\", \"name\": \"Current\", \"showlegend\": false, \"type\": \"scatter\", \"x\": [2, 2], \"y\": [-0.16407390566865038, 0.8375239056686508]}], \"layout\": {\"legend\": {\"orientation\": \"h\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"shapes\": [{\"fillcolor\": \"LightGreen\", \"layer\": \"below\", \"line\": {\"width\": 0}, \"opacity\": 0.5, \"type\": \"rect\", \"x0\": 0, \"x1\": 1, \"xref\": \"paper\", \"y0\": -0.16407390566865038, \"y1\": 0.8375239056686508, \"yref\": \"y\"}, {\"line\": {\"color\": \"Green\", \"width\": 3}, \"name\": \"Reference\", \"type\": \"line\", \"x0\": 0, \"x1\": 1, \"xref\": \"paper\", \"y0\": 0.3367250000000002, \"y1\": 0.3367250000000002, \"yref\": \"y\"}], \"showlegend\": true, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"Index\"}}, \"yaxis\": {\"title\": {\"text\": \"volatile.acidity\"}}}}}}, {\"id\": \"citric.acid_distr\", \"params\": {\"data\": [{\"histnorm\": \"probability\", \"marker\": {\"color\": \"#4d4d4d\"}, \"name\": \"Reference\", \"nbinsx\": 10, \"opacity\": 0.6, \"type\": \"histogram\", \"x\": [0.32, 0.24, 0.36, 0.24, 0.27, 0.21, 0.3, 0.46, 0.34, 0.26, 0.4, 0.65, 0.21, 0.26, 0.47, 0.33, 0.32, 0.24, 0.08, 0.47, 0.23, 0.29, 0.76, 0.2, 0.0, 0.29, 0.07, 0.52, 0.28, 0.37, 0.27, 0.23, 0.28, 0.36, 0.49, 0.27, 0.3, 0.3, 0.49, 0.33, 0.48, 0.49, 0.74, 0.49, 0.32, 0.35, 0.06, 0.2, 0.33, 0.28, 0.09, 0.22, 0.0, 0.34, 0.47, 0.36, 0.44, 0.31, 0.31, 0.26, 0.22, 0.39, 0.26, 0.49, 0.37, 0.1, 0.26, 0.3, 0.0, 0.04, 0.26, 0.32, 0.18, 0.38, 0.19, 0.53, 0.3, 0.32, 0.1, 0.29, 0.29, 0.32, 0.0, 0.26, 0.27, 0.66, 0.29, 0.24, 0.49, 0.28, 0.37, 0.36, 0.38, 0.49, 0.24, 0.32, 0.35, 0.42, 0.37, 0.57, 0.23, 0.36, 0.74, 0.38, 0.44, 0.6, 0.27, 0.66, 0.13, 0.14, 0.28, 0.3, 0.15, 0.26, 0.24, 0.24, 0.36, 0.27, 0.43, 0.15, 0.35, 0.24, 0.24, 0.28, 0.22, 0.68, 0.31, 0.35, 0.49, 0.29, 0.46, 0.28, 0.1, 0.35, 0.24, 0.26, 0.49, 0.34, 0.42, 0.3, 0.45, 0.33, 0.34, 0.29, 0.25, 0.31, 0.31, 0.41, 0.28, 0.28, 0.38, 0.53, 0.52, 0.44, 0.35, 0.08, 0.4, 0.29, 0.24, 0.2, 0.25, 0.3, 0.34, 0.21, 0.29, 0.28, 0.25, 0.13, 0.65, 0.34, 0.36, 0.31, 0.46, 0.34, 0.3, 0.31, 0.65, 0.32, 0.26, 0.66, 0.49, 0.33, 0.02, 0.33, 0.33, 0.28, 0.32, 0.29, 0.07, 0.29, 0.43, 0.27, 0.32, 0.4, 0.25, 0.2, 0.36, 0.36, 0.35, 0.46, 0.3, 0.3, 0.37, 0.49, 0.43, 0.2, 0.34, 0.31, 0.22, 0.02, 0.01, 0.5, 0.23, 0.31, 0.36, 0.34, 0.0, 0.33, 0.18, 0.17, 0.4, 0.35, 0.1, 0.32, 0.43, 0.54, 0.4, 0.65, 0.02, 0.2, 0.24, 0.37, 0.31, 0.32, 0.24, 0.34, 0.41, 0.1, 0.66, 0.43, 0.46, 0.27, 0.24, 0.42, 0.32, 0.28, 0.59, 0.25, 0.26, 0.52, 0.3, 0.5, 0.56, 0.28, 0.46, 0.44, 0.35, 0.26, 0.35, 0.38, 0.5, 0.29, 0.27, 0.36, 0.25, 0.31, 0.2, 0.34, 0.3, 0.21, 0.28, 0.34, 0.58, 0.04, 0.31, 0.68, 0.19, 0.42, 0.37, 0.49, 0.24, 0.37, 0.24, 0.46, 0.28, 0.33, 0.14, 0.09, 0.04, 0.21, 0.2, 0.24, 0.27, 0.17, 0.1, 0.29, 0.49, 0.35, 0.3, 0.36, 0.16, 0.29, 0.33, 0.62, 0.48, 0.23, 0.34, 0.43, 0.31, 0.26, 0.29, 0.0, 0.14, 0.2, 0.05, 0.02, 0.34, 0.16, 0.28, 0.32, 0.34, 0.26, 0.48, 0.49, 0.27, 0.55, 0.49, 0.12, 0.24, 0.26, 0.37, 0.34, 0.49, 0.27, 0.24, 0.43, 0.22, 0.22, 0.49, 0.2, 0.34, 0.42, 0.19, 0.47, 0.32, 0.27, 0.26, 0.29, 0.49, 0.31, 0.32, 0.22, 0.32, 0.49, 0.26, 0.4, 0.3, 0.6, 0.51, 0.37, 0.34, 0.4, 0.3, 0.2, 0.31, 0.29, 0.36, 0.32, 0.21, 0.0, 0.23, 0.35, 0.21, 0.28, 0.28, 0.21, 0.36, 0.22, 0.41, 0.42, 0.34, 0.33, 0.4, 0.38, 0.18, 0.39, 1.0, 0.44, 0.12, 0.32, 0.22, 0.42, 0.31, 0.27, 0.4, 0.33, 0.42, 0.26, 0.34, 0.3, 0.14, 0.48, 0.38, 0.0, 0.43, 0.35, 0.41, 0.37, 0.09, 0.28, 0.31, 0.14, 0.49, 0.41, 0.39, 0.0, 0.34, 0.49, 0.53, 0.24, 0.37, 0.35, 0.07, 0.43, 0.24, 0.49, 0.44, 0.35, 0.32, 0.37, 0.57, 0.06, 0.34, 0.23, 0.36, 0.03, 0.08, 0.31, 0.3, 0.26, 0.26, 0.28, 0.41, 0.39, 0.0, 0.2, 0.79, 0.36, 0.23, 0.28, 0.36, 0.44, 0.32, 0.3, 0.39, 0.42, 0.25, 0.28, 0.41, 0.08, 0.39, 0.18, 0.31, 0.26, 0.64, 0.28, 0.3, 0.48, 0.24, 0.28, 0.41, 0.25, 0.21, 0.0, 0.28, 0.3, 0.12, 0.36, 0.1, 0.46, 0.38, 0.02, 0.24, 0.0, 0.35, 0.3, 0.26, 0.33, 0.46, 0.34, 0.52, 0.26, 0.16, 0.33, 0.45, 0.24, 0.39, 0.15, 0.47, 0.3, 0.37, 0.19, 0.34, 0.13, 0.36, 0.3, 0.36, 0.62, 0.5, 0.31, 0.3, 0.27, 0.27, 0.27, 0.04, 0.51, 0.38, 0.0, 0.31, 0.3, 0.31, 0.29, 0.02, 0.22, 0.39, 0.49, 0.27, 0.28, 0.31, 0.33, 0.44, 0.57, 0.26, 0.21, 0.36, 0.14, 0.31, 0.33, 0.5, 0.5, 0.33, 0.21, 0.28, 0.28, 0.45, 0.36, 0.26, 0.43, 0.13, 0.24, 0.49, 0.32, 0.26, 0.09, 0.0, 0.36, 0.29, 0.19, 0.41, 0.28, 0.41, 0.3, 0.3, 0.4, 0.32, 0.33, 0.51, 0.36, 0.41, 0.19, 0.04, 0.35, 0.44, 0.03, 0.27, 0.37, 0.29, 0.28, 0.31, 0.27, 0.44, 0.74, 0.36, 0.26, 0.3, 0.47, 0.13, 0.39, 0.3, 0.23, 0.28, 0.23, 0.06, 0.26, 0.38, 0.31, 0.0, 0.27, 0.34, 0.2, 0.48, 0.11, 0.32, 0.13, 0.36, 0.27, 0.49, 0.29, 0.37, 0.31, 0.51, 0.41, 0.29, 0.29, 0.37, 0.28, 0.24, 0.49, 0.3, 0.34, 0.28, 0.47, 0.42, 0.28, 0.32, 0.03, 0.47, 0.28, 0.04, 0.05, 0.21, 0.23, 0.33, 0.0, 0.28, 0.32, 0.34, 0.42, 0.2, 0.0, 0.54, 0.28, 0.25, 0.32, 0.21, 0.49, 0.24, 0.3, 0.35, 0.3, 0.56, 0.45, 0.41, 0.28, 0.35, 0.18, 0.25, 0.2, 0.37, 0.31, 0.3, 0.28, 0.27, 0.18, 0.34, 0.44, 0.3, 0.3, 0.56, 0.33, 0.39, 0.36, 0.49, 0.29, 0.41, 0.28, 0.32, 0.27, 0.5, 0.49, 0.31, 0.35, 0.24, 0.1, 0.37, 0.33, 0.29, 0.01, 0.33, 0.25, 0.49, 0.26, 0.38, 0.66, 0.74, 0.03, 0.34, 0.51, 0.38, 0.37, 0.45, 0.62, 0.33, 0.4, 0.24, 0.26, 0.47, 0.28, 0.28, 0.24, 0.46, 0.27, 0.35, 0.3, 0.76, 0.27, 0.01, 0.27, 0.27, 0.63, 0.73, 0.29, 0.28, 0.49, 0.25, 0.31, 0.02, 0.22, 0.27, 0.36, 0.3, 0.51, 0.15, 0.49, 0.33, 0.32, 0.35, 0.33, 0.29, 0.49, 0.57, 0.34, 0.33, 0.3, 0.32, 0.44, 0.24, 0.24, 0.48, 0.23, 0.24, 0.22, 0.25, 0.2, 0.35, 0.31, 0.39, 0.49, 0.3, 0.3, 0.3, 0.38, 0.26, 0.05, 0.41, 0.23, 0.4, 0.5, 0.39, 0.41, 0.39, 0.42, 0.3, 0.35, 0.34, 0.29, 0.26, 0.31, 0.12, 0.38, 0.38, 0.44, 0.33, 0.33, 0.49, 0.38, 0.27, 0.33, 0.61, 0.31, 0.31, 0.5, 0.36, 0.37, 0.19, 0.46, 0.13, 0.44, 0.24, 0.37, 0.35, 0.31, 0.25, 0.36, 0.21, 0.32, 0.37, 0.0, 0.3, 0.7, 0.36, 0.29, 0.33, 0.32, 0.07, 0.25, 0.24, 0.2, 0.28, 0.47, 0.21, 0.3, 0.4, 0.06, 0.28, 0.29, 0.27, 0.35, 0.22, 0.35, 0.35, 0.29, 0.41, 0.49, 0.25, 0.49, 0.25, 0.5, 0.49, 0.26, 0.29, 0.32, 0.55, 0.24, 0.22, 0.28, 0.11, 0.4, 0.3, 0.02, 0.4, 0.31, 0.26, 0.36, 0.23, 0.55, 0.22, 0.58, 0.36, 0.35, 0.2, 0.34, 0.1, 0.24, 0.0, 0.0, 0.32, 0.4, 0.23, 0.49, 0.32, 0.05, 0.32, 0.28, 0.41, 0.28, 0.37, 0.33, 0.31, 0.28, 0.33, 0.28, 0.35, 0.24, 0.3, 0.16, 0.24, 0.34, 0.31, 0.59, 0.21, 0.35, 0.26, 0.48, 0.2, 0.0, 0.74, 0.01, 0.21, 0.45, 0.16, 0.32, 0.24, 0.49, 0.32, 0.28, 0.37, 0.32, 0.37, 0.56, 0.29, 0.04, 0.31, 0.29, 0.44, 0.3, 0.14, 0.16, 0.33, 0.46, 0.23, 0.49, 0.38, 0.32, 0.26, 0.47, 0.56, 0.66, 0.29, 0.2, 0.29, 0.24, 0.4, 0.36, 0.25, 0.27, 0.21, 0.35, 0.65, 0.28, 0.24, 0.28, 0.54, 0.38, 0.25, 0.49, 0.22, 0.32, 0.17, 0.18, 0.43, 0.33, 0.4, 0.47, 0.04, 0.35, 0.35, 0.4, 0.33, 0.33, 0.24, 0.27, 0.16, 0.46, 0.0, 0.36, 0.46, 0.25, 0.49, 0.4, 0.33, 0.29, 0.24, 0.3, 0.22, 0.35, 0.31, 0.31, 0.38, 0.27, 0.49, 0.44, 0.4, 0.33, 0.26, 0.01, 0.38, 0.18, 0.22, 0.49, 0.18, 0.2, 0.28, 0.34, 0.29, 0.03, 0.7, 0.36, 0.09, 0.42]}, {\"histnorm\": \"probability\", \"marker\": {\"color\": \"#ed0400\"}, \"name\": \"Current\", \"nbinsx\": 10, \"opacity\": 0.6, \"type\": \"histogram\", \"x\": [0.19, 0.49, 0.38, 0.42, 0.21, 0.12, 0.36, 0.23, 0.29, 0.27, 0.29, 0.25, 0.31, 0.12, 0.24, 0.35, 0.4, 0.25, 0.23, 0.4, 0.39, 0.34, 0.0, 0.18, 0.04, 0.24, 0.31, 0.24, 0.34, 0.3, 0.65, 0.25, 0.31, 0.39, 0.35, 0.4, 0.39, 0.26, 0.45, 0.28, 0.49, 0.38, 0.28, 0.36, 0.32, 0.3, 0.29, 0.32, 0.27, 0.37, 0.34, 0.49, 0.34, 0.23, 0.07, 0.99, 0.39, 0.13, 0.27, 0.37, 0.33, 0.02, 0.34, 0.33, 0.36, 0.49, 0.64, 0.37, 0.3, 0.42, 0.09, 0.29, 0.18, 0.31, 0.33, 0.3, 0.37, 0.23, 0.17, 0.39, 0.44, 0.41, 0.29, 0.31, 0.44, 0.56, 0.74, 0.79, 0.0, 0.31, 0.68, 0.09, 0.2, 0.26, 0.36, 0.27, 0.29, 0.33, 0.0, 0.17, 0.38, 0.33, 0.33, 0.06, 0.34, 0.34, 0.21, 0.28, 0.32, 0.28, 0.24, 0.29, 0.19, 0.24, 0.28, 0.11, 0.3, 0.19, 0.49, 0.4, 0.33, 0.41, 0.06, 0.29, 0.2, 0.27, 0.34, 0.29, 0.39, 0.24, 0.74, 0.29, 0.49, 0.32, 0.34, 0.26, 0.25, 0.49, 0.26, 0.28, 0.3, 0.28, 0.4, 1.23, 0.24, 0.25, 0.52, 0.08, 0.44, 0.29, 0.27, 0.23, 0.24, 0.34, 0.35, 0.54, 0.09, 0.24, 0.26, 0.49, 0.32, 0.42, 0.29, 0.0, 0.22, 0.28, 0.1, 0.3, 0.27, 0.23, 0.25, 0.53, 0.22, 0.27, 0.25, 0.39, 0.01, 0.49, 0.23, 0.36, 0.27, 0.47, 0.1, 0.29, 0.46, 0.26, 0.46, 0.4, 0.35, 0.38, 0.34, 0.28, 0.2, 0.49, 0.27, 0.49, 0.58, 0.34, 0.38, 0.27, 0.34, 0.18, 0.4, 0.29, 0.45, 0.03, 0.69, 0.37, 0.21, 0.06, 0.26, 0.59, 0.33, 0.56, 0.0, 0.32, 0.3, 0.0, 0.03, 0.34, 0.29, 0.33, 0.31, 0.61, 0.02, 0.34, 0.25, 0.14, 0.35, 0.38, 0.32, 0.26, 0.4, 0.39, 0.39, 0.24, 0.24, 0.35, 0.91, 0.49, 0.36, 0.35, 0.05, 0.4, 0.81, 0.3, 0.4, 0.28, 0.4, 0.28, 0.47, 0.46, 0.3, 0.52, 0.21, 0.17, 0.38, 0.26, 0.39, 0.3, 0.34, 0.3, 0.18, 0.2, 0.25, 0.33, 0.36, 0.49, 0.49, 0.32, 0.15, 0.24, 0.24, 0.27, 0.3, 0.36, 0.34, 0.13, 0.36, 0.33, 0.49, 0.26, 0.32, 0.26, 0.41, 0.32, 0.45, 0.42, 0.28, 0.01, 0.28, 0.32, 0.22, 0.56, 0.26, 0.36, 0.0, 0.25, 0.42, 0.52, 0.5, 0.3, 0.49, 0.41, 0.19, 0.73, 0.3, 0.08, 0.41, 0.29, 0.34, 0.24, 0.55, 0.45, 0.45, 0.52, 0.29, 0.32, 0.36, 0.38, 0.11, 0.24, 0.4, 0.32, 0.09, 0.04, 0.4, 0.49, 0.0, 0.29, 0.14, 0.42, 0.5, 0.26, 0.41, 0.2, 0.32, 0.3, 0.06, 0.45, 0.26, 0.5, 0.21, 0.4, 0.39, 0.36, 0.24, 0.38, 0.02, 0.29, 0.24, 0.28, 0.34, 0.18, 0.31, 0.49, 0.35, 0.22, 0.24, 0.45, 0.08, 0.32, 0.2, 0.28, 0.36, 0.34, 0.2, 0.26, 0.5, 0.17, 0.13, 0.27, 0.31, 0.34, 0.18, 0.32, 0.11, 0.32, 0.28, 0.38, 0.44, 0.13, 0.37, 0.29, 0.37, 0.41, 0.32, 0.42, 0.26, 0.74, 0.49, 0.28, 0.3, 0.62, 0.4, 0.31, 0.02, 0.31, 0.34, 0.19, 0.27, 0.36, 0.42, 0.2, 0.42, 0.24, 0.17, 0.46, 0.27, 0.32, 0.32, 0.59, 0.34, 0.16, 0.49, 0.2, 0.2, 0.32, 0.26, 0.39, 0.49, 0.33, 0.1, 0.53, 0.27, 0.52, 0.42, 0.15, 0.32, 0.49, 0.28, 0.31, 0.44, 0.07, 0.27, 0.5, 0.28, 0.44, 0.28, 0.39, 0.26, 0.3, 0.3, 0.23, 0.48, 0.26, 0.3, 0.36, 0.23, 0.32, 0.0, 0.22, 0.29, 0.44, 0.42, 0.19, 0.47, 0.27, 0.26, 0.24, 0.36, 0.46, 0.3, 0.25, 0.35, 0.44, 0.39, 0.3, 0.27, 0.31, 0.22, 0.42, 0.08, 0.61, 0.25, 0.36, 0.29, 0.4, 0.34, 0.49, 0.47, 0.35, 0.33, 0.48, 0.28, 0.27, 0.29, 0.08, 0.49, 0.37, 0.34, 0.25, 0.52, 0.58, 0.3, 0.02, 0.26, 0.32, 0.29, 0.0, 0.32, 0.69, 0.3, 0.46, 0.34, 0.38, 0.42, 0.38, 0.28, 0.32, 0.44, 0.3, 0.31, 0.33, 0.49, 0.0, 0.26, 0.08, 0.28, 0.28, 0.3, 0.38, 0.49, 0.27, 0.49, 0.21, 0.38, 0.32, 0.61, 0.0, 0.22, 0.31, 0.25, 0.24, 0.26, 0.35, 0.38, 0.27, 0.08, 0.29, 0.24, 0.49, 0.46, 0.35, 0.43, 0.49, 0.2, 0.49, 0.36, 0.23, 0.41, 0.33, 0.32, 0.29, 0.49, 0.4, 0.38, 0.49, 0.09, 0.1, 0.34, 0.37, 0.29, 0.08, 0.32, 0.0, 0.27, 0.43, 0.31, 0.3, 0.22, 0.42, 0.49, 0.22, 0.39, 0.41, 0.03, 0.42, 0.31, 0.11, 0.24, 0.22, 0.46, 0.24, 0.45, 0.39, 0.35, 0.3, 0.28, 0.02, 0.39, 0.54, 0.62, 0.15, 0.37, 0.21, 0.42, 0.24, 0.27, 0.28, 0.71, 0.1, 0.27, 0.39, 0.3, 0.33, 0.02, 0.26, 0.29, 0.26, 0.28, 0.27, 0.2, 0.4, 0.37, 0.36, 0.28, 0.49, 0.71, 0.24, 0.12, 0.36, 0.42, 0.59, 0.16, 0.38, 0.34, 0.27, 0.24, 0.25, 0.69, 0.49, 0.36, 0.23, 0.08, 0.47, 0.18, 0.54, 0.26, 0.4, 0.41, 0.22, 0.29, 0.5, 0.27, 0.49, 0.32, 0.38, 0.33, 0.24, 0.3, 0.25, 0.28, 0.33, 0.38, 0.36, 0.33, 0.86, 0.24, 0.56, 0.3, 0.25, 0.43, 0.3, 0.41, 0.37, 0.14, 0.01, 0.49, 0.29, 0.23, 0.38, 0.29, 0.45, 0.34, 0.01, 0.2, 0.19, 0.34, 0.2, 0.18, 0.3, 0.08, 0.26, 0.21, 0.34, 0.28, 0.2, 0.31, 0.28, 0.32, 0.25, 0.35, 0.32, 0.3, 0.11, 0.32, 0.48, 0.25, 0.29, 0.31, 0.29, 0.33, 0.49, 0.31, 0.3, 0.33, 0.0, 0.42, 0.33, 0.2, 0.36, 0.2, 0.18, 0.27, 0.48, 0.3, 0.2, 0.02, 0.39, 0.32, 0.33, 0.39, 0.12, 0.37, 0.18, 0.3, 0.34, 0.23, 0.34, 0.48, 0.49, 0.01, 0.45, 0.38, 0.31, 0.2, 0.32, 0.62, 0.49, 0.25, 0.3, 0.29, 0.36, 0.1, 0.32, 0.23, 0.23, 0.0, 0.33, 0.4, 0.14, 0.22, 0.4, 0.74, 0.74, 0.39, 0.33, 0.33, 0.33, 0.36, 0.24, 0.38, 0.47, 0.42, 0.31, 0.39, 0.55, 0.34, 0.41, 0.44, 0.38, 0.3, 0.18, 0.31, 0.12, 0.24, 0.2, 0.74, 0.18, 0.42, 0.49, 0.24, 0.43, 0.43, 0.25, 0.32, 0.34, 0.28, 0.29, 0.38, 0.26, 0.31, 0.31, 0.34, 0.07, 0.53, 0.47, 0.49, 0.1, 0.25, 0.37, 0.33, 0.38, 0.2, 0.0, 0.33, 0.26, 0.4, 0.27, 0.26, 0.18, 0.36, 0.37, 0.35, 0.53, 0.07, 0.3, 0.26, 0.49, 0.26, 0.38, 0.36, 0.53, 0.45, 0.35, 0.22, 0.07, 0.66, 0.33, 0.0, 0.29, 0.24, 0.06, 0.33, 0.32, 0.39, 0.3, 0.16, 0.38, 0.44, 0.48, 0.28, 0.37, 0.32, 0.45, 0.4, 0.39, 0.24, 0.3, 0.58, 0.28, 0.65, 0.3, 0.21, 0.37, 0.3, 0.54, 0.56, 0.19, 0.24, 0.21, 0.06, 0.32, 0.51, 0.27, 0.26, 0.33, 0.3, 0.42, 0.48, 0.29, 0.3, 0.24, 0.26, 0.46, 0.3, 0.26, 0.18, 0.39, 0.19, 0.27, 0.31, 0.26, 0.29, 1.0, 0.36, 0.31, 0.38, 0.28, 0.44, 0.25, 0.41, 0.33, 0.35, 0.74, 0.2, 0.51, 0.26, 0.47, 0.22, 0.49, 0.31, 0.5, 0.29, 0.18, 0.45, 0.15, 0.14, 0.03, 0.1, 0.32, 0.36, 0.23, 0.16, 0.68, 0.49, 0.26, 0.36, 0.08, 0.24, 0.27, 0.13, 0.34, 0.3, 0.53, 0.21, 0.2, 0.49, 0.58, 0.43, 0.45, 0.26, 0.14, 0.06, 0.36, 0.29, 0.27, 0.42, 0.49, 0.39, 0.26, 0.35, 0.04, 0.4, 0.28, 0.28, 0.4, 0.26, 0.21, 0.25, 0.27, 0.31, 0.29, 0.41, 0.28, 0.54, 0.04, 0.28, 0.26, 0.28, 0.25, 0.28, 0.18, 0.26, 0.32, 0.29, 0.15, 0.38, 0.49, 0.65, 0.32, 0.25, 0.0, 0.68, 0.36, 0.34, 0.27, 0.49, 0.31, 0.3, 0.35, 0.46, 0.41, 0.49, 0.24, 0.41, 0.24, 0.3, 0.49, 0.24, 0.25, 0.22, 0.31, 0.4, 0.37, 0.29, 0.28, 0.3, 0.34]}], \"layout\": {\"legend\": {\"orientation\": \"h\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"citric.acid\"}}, \"yaxis\": {\"title\": {\"text\": \"Share\"}}}}}, {\"id\": \"citric.acid_drift\", \"params\": {\"title\": \"\", \"size\": 2, \"text\": \"\", \"type\": \"big_graph\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"Current\", \"type\": \"scatter\", \"x\": [443, 319, 703, 526, 76, 963, 1260, 532, 1561, 517, 506, 1557, 271, 1058, 1381, 1039, 542, 107, 161, 1301, 519, 1021, 1213, 223, 1286, 1426, 1234, 587, 1183, 182, 567, 1492, 724, 1262, 1509, 657, 1137, 913, 1445, 342, 781, 14, 971, 1072, 1254, 678, 1175, 1481, 1370, 1443, 18, 1151, 1380, 434, 1430, 554, 53, 535, 1050, 427, 259, 124, 961, 1488, 1563, 720, 1291, 1061, 425, 846, 1147, 204, 1317, 618, 1088, 927, 1196, 582, 1194, 360, 1449, 862, 1135, 1453, 1442, 1017, 268, 685, 317, 775, 1086, 942, 1052, 801, 1362, 219, 379, 649, 1195, 479, 1542, 609, 930, 1105, 34, 708, 686, 1132, 693, 733, 1562, 1190, 473, 737, 672, 969, 858, 5, 1556, 298, 80, 940, 361, 1154, 1545, 1622, 784, 19, 1522, 996, 54, 1415, 1564, 1593, 1236, 9, 353, 1222, 113, 1010, 1263, 877, 82, 381, 818, 1210, 1409, 66, 254, 817, 92, 1340, 122, 1357, 511, 1546, 692, 17, 1248, 414, 52, 1296, 191, 175, 233, 900, 785, 935, 1298, 156, 487, 159, 481, 1255, 1597, 253, 1491, 841, 187, 914, 979, 249, 1114, 1366, 814, 716, 465, 875, 1242, 670, 299, 593, 436, 728, 141, 229, 1057, 912, 994, 648, 799, 1164, 1073, 4, 516, 152, 1267, 1237, 752, 1150, 825, 402, 1277, 575, 1437, 838, 390, 1505, 1093, 1026, 1611, 31, 674, 866, 1328, 616, 861, 897, 148, 303, 1451, 602, 1125, 1614, 1047, 1462, 1148, 574, 899, 1327, 89, 530, 408, 1192, 177, 520, 993, 326, 992, 717, 895, 1421, 984, 240, 85, 557, 278, 938, 1425, 958, 1232, 1149, 171, 1220, 227, 891, 489, 1391, 1184, 1032, 393, 726, 192, 260, 880, 1592, 1537, 491, 759, 1473, 959, 1454, 1015, 965, 1393, 1489, 1256, 133, 202, 1036, 438, 483, 666, 461, 142, 1181, 1580, 308, 538, 170, 310, 743, 1101, 1179, 315, 22, 1529, 45, 879, 1110, 61, 522, 1397, 829, 576, 1193, 1202, 1549, 1375, 27, 527, 1186, 1273, 828, 539, 1049, 1014, 412, 1091, 1497, 1595, 347, 2, 844, 1490, 632, 211, 1582, 918, 1217, 1115, 744, 459, 579, 771, 96, 178, 108, 1516, 805, 1240, 440, 619, 1, 1315, 1239, 1347, 512, 48, 722, 1517, 1621, 446, 565, 568, 796, 231, 1070, 1063, 215, 513, 704, 354, 55, 881, 746, 641, 762, 279, 1145, 1468, 224, 302, 911, 218, 1079, 874, 1266, 792, 1136, 372, 295, 364, 580, 1615, 688, 1560, 333, 467, 968, 399, 760, 740, 953, 1520, 1446, 1214, 615, 524, 546, 1495, 1324, 452, 1515, 432, 863, 442, 847, 276, 456, 184, 1116, 1200, 458, 1508, 1087, 1478, 376, 1479, 563, 1146, 1507, 42, 944, 823, 1228, 656, 1227, 198, 309, 761, 1158, 549, 47, 1209, 529, 933, 220, 1624, 1591, 651, 536, 362, 1314, 420, 564, 475, 482, 140, 679, 1436, 1334, 77, 39, 570, 962, 808, 981, 322, 1471, 251, 695, 1128, 813, 757, 820, 853, 831, 1246, 58, 553, 597, 241, 1288, 330, 1005, 789, 1617, 56, 1126, 411, 548, 501, 1211, 642, 558, 1605, 745, 878, 1056, 667, 435, 29, 270, 35, 1157, 422, 1310, 114, 1524, 1422, 689, 1018, 1168, 1360, 985, 1191, 793, 1363, 1504, 581, 644, 1199, 621, 1612, 494, 665, 431, 1095, 638, 1042, 1404, 1030, 40, 1121, 75, 1588, 1417, 247, 713, 1590, 186, 646, 312, 8, 1551, 1302, 1044, 768, 884, 1585, 1618, 826, 445, 712, 464, 1308, 195, 655, 1487, 1389, 1356, 243, 401, 572, 1074, 810, 477, 1460, 1544, 1182, 285, 471, 936, 1238, 578, 1034, 1535, 1513, 426, 1311, 1001, 986, 1038, 980, 1064, 620, 982, 1565, 194, 474, 1428, 569, 1165, 49, 1333, 1401, 1307, 1076, 991, 1566, 44, 1342, 245, 943, 300, 583, 1013, 269, 1548, 313, 776, 283, 1444, 540, 406, 338, 466, 363, 1002, 320, 1264, 1089, 70, 1027, 500, 10, 907, 505, 1295, 864, 1432, 64, 1122, 1543, 416, 898, 654, 205, 328, 486, 999, 1377, 970, 528, 1558, 418, 1379, 1299, 1378, 590, 1247, 1174, 472, 1323, 131, 15, 439, 1528, 476, 725, 1203, 1109, 1003, 1365, 103, 1279, 60, 871, 78, 391, 165, 1335, 1410, 1129, 960, 349, 185, 1464, 371, 117, 1398, 252, 507, 1613, 311, 1419, 395, 987, 358, 263, 359, 1559, 1305, 1506, 1376, 1055, 634, 1552, 16, 51, 1258, 493, 601, 997, 351, 711, 1604, 1486, 1339, 794, 97, 1475, 1423, 196, 748, 183, 1433, 1579, 613, 1536, 989, 682, 533, 610, 687, 892, 81, 896, 397, 267, 589, 386, 795, 1416, 132, 265, 1609, 1461, 883, 88, 840, 988, 1354, 676, 916, 629, 1269, 924, 294, 261, 1541, 1081, 1348, 1576, 405, 1616, 356, 608, 1097, 239, 1249, 1099, 1403, 119, 1096, 977, 751, 374, 453, 110, 1336, 1390, 905, 1287, 503, 1031, 1331, 1224, 729, 410, 1540, 367, 1607, 384, 200, 65, 1358, 1394, 1023, 272, 1418, 955, 677, 238, 1133, 974, 541, 478, 1257, 1265, 1465, 1589, 1326, 188, 1083, 681, 906, 1092, 1276, 316, 214, 1078, 1502, 1084, 660, 1142, 531, 255, 30, 662, 1253, 230, 157, 1343, 385, 1169, 380, 1188, 721, 264, 787, 101, 13, 1274, 68, 1024, 1170, 1156, 71, 1577, 566, 1372, 1245, 798, 523, 626, 495, 937, 155, 887, 758, 921, 790, 1349, 1230, 366, 1531, 983, 839, 228, 417, 206, 742, 79, 190, 492, 948, 145, 923, 318, 824, 1374, 1124, 1463, 596, 457, 144, 1359, 1292, 1045, 764, 842, 1140, 1408, 995, 904, 592, 1458, 135, 83, 1062, 154, 1440, 1283, 773, 1414, 127, 1177, 1318, 1413, 403, 150, 346, 413, 1303, 1523, 1619, 394, 1261, 1054, 208, 496, 352, 95, 625, 571, 37, 485, 143, 946, 158, 552, 1527, 1029, 518, 1180, 1218, 236, 1100, 222, 1431, 345, 1459, 120, 661, 588, 1623, 1493, 62, 1429, 811, 193, 235, 181, 1320, 389, 1103, 521, 669, 332, 258, 1369, 1538, 957, 382, 1382, 1567, 331, 934, 614, 262, 893, 6, 266, 769, 38, 901, 1573, 1578, 545, 118, 783, 652, 1025, 706, 105, 1189, 484, 1569, 630, 683, 20, 870, 242, 50, 162, 915, 966, 441, 867, 731, 1102, 1000, 1268, 1223, 822, 301, 723, 172], \"y\": [0.19, 0.49, 0.38, 0.42, 0.21, 0.12, 0.36, 0.23, 0.29, 0.27, 0.29, 0.25, 0.31, 0.12, 0.24, 0.35, 0.4, 0.25, 0.23, 0.4, 0.39, 0.34, 0.0, 0.18, 0.04, 0.24, 0.31, 0.24, 0.34, 0.3, 0.65, 0.25, 0.31, 0.39, 0.35, 0.4, 0.39, 0.26, 0.45, 0.28, 0.49, 0.38, 0.28, 0.36, 0.32, 0.3, 0.29, 0.32, 0.27, 0.37, 0.34, 0.49, 0.34, 0.23, 0.07, 0.99, 0.39, 0.13, 0.27, 0.37, 0.33, 0.02, 0.34, 0.33, 0.36, 0.49, 0.64, 0.37, 0.3, 0.42, 0.09, 0.29, 0.18, 0.31, 0.33, 0.3, 0.37, 0.23, 0.17, 0.39, 0.44, 0.41, 0.29, 0.31, 0.44, 0.56, 0.74, 0.79, 0.0, 0.31, 0.68, 0.09, 0.2, 0.26, 0.36, 0.27, 0.29, 0.33, 0.0, 0.17, 0.38, 0.33, 0.33, 0.06, 0.34, 0.34, 0.21, 0.28, 0.32, 0.28, 0.24, 0.29, 0.19, 0.24, 0.28, 0.11, 0.3, 0.19, 0.49, 0.4, 0.33, 0.41, 0.06, 0.29, 0.2, 0.27, 0.34, 0.29, 0.39, 0.24, 0.74, 0.29, 0.49, 0.32, 0.34, 0.26, 0.25, 0.49, 0.26, 0.28, 0.3, 0.28, 0.4, 1.23, 0.24, 0.25, 0.52, 0.08, 0.44, 0.29, 0.27, 0.23, 0.24, 0.34, 0.35, 0.54, 0.09, 0.24, 0.26, 0.49, 0.32, 0.42, 0.29, 0.0, 0.22, 0.28, 0.1, 0.3, 0.27, 0.23, 0.25, 0.53, 0.22, 0.27, 0.25, 0.39, 0.01, 0.49, 0.23, 0.36, 0.27, 0.47, 0.1, 0.29, 0.46, 0.26, 0.46, 0.4, 0.35, 0.38, 0.34, 0.28, 0.2, 0.49, 0.27, 0.49, 0.58, 0.34, 0.38, 0.27, 0.34, 0.18, 0.4, 0.29, 0.45, 0.03, 0.69, 0.37, 0.21, 0.06, 0.26, 0.59, 0.33, 0.56, 0.0, 0.32, 0.3, 0.0, 0.03, 0.34, 0.29, 0.33, 0.31, 0.61, 0.02, 0.34, 0.25, 0.14, 0.35, 0.38, 0.32, 0.26, 0.4, 0.39, 0.39, 0.24, 0.24, 0.35, 0.91, 0.49, 0.36, 0.35, 0.05, 0.4, 0.81, 0.3, 0.4, 0.28, 0.4, 0.28, 0.47, 0.46, 0.3, 0.52, 0.21, 0.17, 0.38, 0.26, 0.39, 0.3, 0.34, 0.3, 0.18, 0.2, 0.25, 0.33, 0.36, 0.49, 0.49, 0.32, 0.15, 0.24, 0.24, 0.27, 0.3, 0.36, 0.34, 0.13, 0.36, 0.33, 0.49, 0.26, 0.32, 0.26, 0.41, 0.32, 0.45, 0.42, 0.28, 0.01, 0.28, 0.32, 0.22, 0.56, 0.26, 0.36, 0.0, 0.25, 0.42, 0.52, 0.5, 0.3, 0.49, 0.41, 0.19, 0.73, 0.3, 0.08, 0.41, 0.29, 0.34, 0.24, 0.55, 0.45, 0.45, 0.52, 0.29, 0.32, 0.36, 0.38, 0.11, 0.24, 0.4, 0.32, 0.09, 0.04, 0.4, 0.49, 0.0, 0.29, 0.14, 0.42, 0.5, 0.26, 0.41, 0.2, 0.32, 0.3, 0.06, 0.45, 0.26, 0.5, 0.21, 0.4, 0.39, 0.36, 0.24, 0.38, 0.02, 0.29, 0.24, 0.28, 0.34, 0.18, 0.31, 0.49, 0.35, 0.22, 0.24, 0.45, 0.08, 0.32, 0.2, 0.28, 0.36, 0.34, 0.2, 0.26, 0.5, 0.17, 0.13, 0.27, 0.31, 0.34, 0.18, 0.32, 0.11, 0.32, 0.28, 0.38, 0.44, 0.13, 0.37, 0.29, 0.37, 0.41, 0.32, 0.42, 0.26, 0.74, 0.49, 0.28, 0.3, 0.62, 0.4, 0.31, 0.02, 0.31, 0.34, 0.19, 0.27, 0.36, 0.42, 0.2, 0.42, 0.24, 0.17, 0.46, 0.27, 0.32, 0.32, 0.59, 0.34, 0.16, 0.49, 0.2, 0.2, 0.32, 0.26, 0.39, 0.49, 0.33, 0.1, 0.53, 0.27, 0.52, 0.42, 0.15, 0.32, 0.49, 0.28, 0.31, 0.44, 0.07, 0.27, 0.5, 0.28, 0.44, 0.28, 0.39, 0.26, 0.3, 0.3, 0.23, 0.48, 0.26, 0.3, 0.36, 0.23, 0.32, 0.0, 0.22, 0.29, 0.44, 0.42, 0.19, 0.47, 0.27, 0.26, 0.24, 0.36, 0.46, 0.3, 0.25, 0.35, 0.44, 0.39, 0.3, 0.27, 0.31, 0.22, 0.42, 0.08, 0.61, 0.25, 0.36, 0.29, 0.4, 0.34, 0.49, 0.47, 0.35, 0.33, 0.48, 0.28, 0.27, 0.29, 0.08, 0.49, 0.37, 0.34, 0.25, 0.52, 0.58, 0.3, 0.02, 0.26, 0.32, 0.29, 0.0, 0.32, 0.69, 0.3, 0.46, 0.34, 0.38, 0.42, 0.38, 0.28, 0.32, 0.44, 0.3, 0.31, 0.33, 0.49, 0.0, 0.26, 0.08, 0.28, 0.28, 0.3, 0.38, 0.49, 0.27, 0.49, 0.21, 0.38, 0.32, 0.61, 0.0, 0.22, 0.31, 0.25, 0.24, 0.26, 0.35, 0.38, 0.27, 0.08, 0.29, 0.24, 0.49, 0.46, 0.35, 0.43, 0.49, 0.2, 0.49, 0.36, 0.23, 0.41, 0.33, 0.32, 0.29, 0.49, 0.4, 0.38, 0.49, 0.09, 0.1, 0.34, 0.37, 0.29, 0.08, 0.32, 0.0, 0.27, 0.43, 0.31, 0.3, 0.22, 0.42, 0.49, 0.22, 0.39, 0.41, 0.03, 0.42, 0.31, 0.11, 0.24, 0.22, 0.46, 0.24, 0.45, 0.39, 0.35, 0.3, 0.28, 0.02, 0.39, 0.54, 0.62, 0.15, 0.37, 0.21, 0.42, 0.24, 0.27, 0.28, 0.71, 0.1, 0.27, 0.39, 0.3, 0.33, 0.02, 0.26, 0.29, 0.26, 0.28, 0.27, 0.2, 0.4, 0.37, 0.36, 0.28, 0.49, 0.71, 0.24, 0.12, 0.36, 0.42, 0.59, 0.16, 0.38, 0.34, 0.27, 0.24, 0.25, 0.69, 0.49, 0.36, 0.23, 0.08, 0.47, 0.18, 0.54, 0.26, 0.4, 0.41, 0.22, 0.29, 0.5, 0.27, 0.49, 0.32, 0.38, 0.33, 0.24, 0.3, 0.25, 0.28, 0.33, 0.38, 0.36, 0.33, 0.86, 0.24, 0.56, 0.3, 0.25, 0.43, 0.3, 0.41, 0.37, 0.14, 0.01, 0.49, 0.29, 0.23, 0.38, 0.29, 0.45, 0.34, 0.01, 0.2, 0.19, 0.34, 0.2, 0.18, 0.3, 0.08, 0.26, 0.21, 0.34, 0.28, 0.2, 0.31, 0.28, 0.32, 0.25, 0.35, 0.32, 0.3, 0.11, 0.32, 0.48, 0.25, 0.29, 0.31, 0.29, 0.33, 0.49, 0.31, 0.3, 0.33, 0.0, 0.42, 0.33, 0.2, 0.36, 0.2, 0.18, 0.27, 0.48, 0.3, 0.2, 0.02, 0.39, 0.32, 0.33, 0.39, 0.12, 0.37, 0.18, 0.3, 0.34, 0.23, 0.34, 0.48, 0.49, 0.01, 0.45, 0.38, 0.31, 0.2, 0.32, 0.62, 0.49, 0.25, 0.3, 0.29, 0.36, 0.1, 0.32, 0.23, 0.23, 0.0, 0.33, 0.4, 0.14, 0.22, 0.4, 0.74, 0.74, 0.39, 0.33, 0.33, 0.33, 0.36, 0.24, 0.38, 0.47, 0.42, 0.31, 0.39, 0.55, 0.34, 0.41, 0.44, 0.38, 0.3, 0.18, 0.31, 0.12, 0.24, 0.2, 0.74, 0.18, 0.42, 0.49, 0.24, 0.43, 0.43, 0.25, 0.32, 0.34, 0.28, 0.29, 0.38, 0.26, 0.31, 0.31, 0.34, 0.07, 0.53, 0.47, 0.49, 0.1, 0.25, 0.37, 0.33, 0.38, 0.2, 0.0, 0.33, 0.26, 0.4, 0.27, 0.26, 0.18, 0.36, 0.37, 0.35, 0.53, 0.07, 0.3, 0.26, 0.49, 0.26, 0.38, 0.36, 0.53, 0.45, 0.35, 0.22, 0.07, 0.66, 0.33, 0.0, 0.29, 0.24, 0.06, 0.33, 0.32, 0.39, 0.3, 0.16, 0.38, 0.44, 0.48, 0.28, 0.37, 0.32, 0.45, 0.4, 0.39, 0.24, 0.3, 0.58, 0.28, 0.65, 0.3, 0.21, 0.37, 0.3, 0.54, 0.56, 0.19, 0.24, 0.21, 0.06, 0.32, 0.51, 0.27, 0.26, 0.33, 0.3, 0.42, 0.48, 0.29, 0.3, 0.24, 0.26, 0.46, 0.3, 0.26, 0.18, 0.39, 0.19, 0.27, 0.31, 0.26, 0.29, 1.0, 0.36, 0.31, 0.38, 0.28, 0.44, 0.25, 0.41, 0.33, 0.35, 0.74, 0.2, 0.51, 0.26, 0.47, 0.22, 0.49, 0.31, 0.5, 0.29, 0.18, 0.45, 0.15, 0.14, 0.03, 0.1, 0.32, 0.36, 0.23, 0.16, 0.68, 0.49, 0.26, 0.36, 0.08, 0.24, 0.27, 0.13, 0.34, 0.3, 0.53, 0.21, 0.2, 0.49, 0.58, 0.43, 0.45, 0.26, 0.14, 0.06, 0.36, 0.29, 0.27, 0.42, 0.49, 0.39, 0.26, 0.35, 0.04, 0.4, 0.28, 0.28, 0.4, 0.26, 0.21, 0.25, 0.27, 0.31, 0.29, 0.41, 0.28, 0.54, 0.04, 0.28, 0.26, 0.28, 0.25, 0.28, 0.18, 0.26, 0.32, 0.29, 0.15, 0.38, 0.49, 0.65, 0.32, 0.25, 0.0, 0.68, 0.36, 0.34, 0.27, 0.49, 0.31, 0.3, 0.35, 0.46, 0.41, 0.49, 0.24, 0.41, 0.24, 0.3, 0.49, 0.24, 0.25, 0.22, 0.31, 0.4, 0.37, 0.29, 0.28, 0.3, 0.34]}, {\"marker\": {\"color\": \"white\", \"opacity\": 0.005, \"size\": 0.01}, \"mode\": \"markers\", \"name\": \"Current\", \"showlegend\": false, \"type\": \"scatter\", \"x\": [2, 2], \"y\": [-0.09588113165123036, 0.7315611316512318]}], \"layout\": {\"legend\": {\"orientation\": \"h\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"shapes\": [{\"fillcolor\": \"LightGreen\", \"layer\": \"below\", \"line\": {\"width\": 0}, \"opacity\": 0.5, \"type\": \"rect\", \"x0\": 0, \"x1\": 1, \"xref\": \"paper\", \"y0\": -0.09588113165123036, \"y1\": 0.7315611316512318, \"yref\": \"y\"}, {\"line\": {\"color\": \"Green\", \"width\": 3}, \"name\": \"Reference\", \"type\": \"line\", \"x0\": 0, \"x1\": 1, \"xref\": \"paper\", \"y0\": 0.31784000000000073, \"y1\": 0.31784000000000073, \"yref\": \"y\"}], \"showlegend\": true, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"Index\"}}, \"yaxis\": {\"title\": {\"text\": \"citric.acid\"}}}}}}, {\"id\": \"residual.sugar_distr\", \"params\": {\"data\": [{\"histnorm\": \"probability\", \"marker\": {\"color\": \"#4d4d4d\"}, \"name\": \"Reference\", \"nbinsx\": 10, \"opacity\": 0.6, \"type\": \"histogram\", \"x\": [1.3, 6.3, 2.6, 6.0, 1.2, 2.3, 2.2, 1.1, 2.7, 3.5, 0.9, 10.4, 1.5, 5.7, 5.1, 17.85, 1.1, 4.55, 2.0, 6.5, 2.6, 1.0, 3.7, 1.7, 3.9, 11.8, 6.9, 1.9, 8.2, 8.9, 4.5, 14.8, 1.5, 2.1, 7.2, 1.9, 4.5, 1.2, 13.0, 4.6, 1.2, 1.4, 13.5, 1.2, 2.1, 1.4, 2.7, 5.6, 2.4, 1.9, 1.5, 18.15, 1.7, 1.8, 1.4, 2.0, 13.9, 10.7, 2.0, 8.6, 4.3, 1.4, 1.1, 1.3, 1.8, 3.1, 1.2, 5.0, 1.9, 2.3, 11.0, 8.8, 6.4, 2.5, 8.3, 2.4, 3.5, 2.5, 13.0, 16.4, 14.4, 1.3, 2.5, 1.4, 1.2, 9.1, 5.5, 5.4, 1.1, 13.3, 13.5, 2.5, 0.8, 2.0, 1.2, 6.0, 1.6, 2.2, 11.8, 3.4, 5.0, 8.1, 2.7, 13.1, 1.6, 3.0, 1.3, 2.6, 2.6, 1.2, 2.4, 8.1, 1.8, 7.4, 17.8, 1.1, 8.55, 1.4, 7.0, 2.1, 1.5, 6.1, 2.4, 5.9, 16.0, 8.3, 4.8, 5.7, 2.2, 8.9, 3.6, 1.1, 2.1, 8.6, 2.3, 11.8, 13.0, 5.0, 7.1, 1.1, 10.6, 7.7, 1.1, 1.2, 1.7, 2.6, 4.2, 2.2, 1.5, 4.9, 1.8, 1.4, 3.0, 11.0, 12.0, 3.75, 1.5, 6.2, 12.1, 2.1, 7.8, 1.1, 8.9, 2.2, 13.7, 3.2, 1.3, 2.0, 1.4, 1.1, 13.1, 1.0, 2.2, 2.3, 1.2, 8.4, 6.4, 2.4, 7.7, 10.8, 4.5, 1.2, 1.9, 1.2, 0.9, 31.6, 1.2, 1.8, 1.5, 2.2, 13.0, 3.9, 1.4, 1.8, 2.0, 8.1, 1.6, 4.3, 16.5, 2.1, 12.8, 2.3, 9.1, 1.5, 7.5, 1.9, 10.5, 12.2, 2.2, 1.7, 2.1, 12.1, 2.0, 2.3, 1.5, 9.5, 2.0, 4.0, 1.9, 1.4, 14.75, 12.5, 3.5, 2.5, 4.5, 5.7, 2.6, 6.4, 2.4, 2.8, 2.7, 0.9, 5.8, 8.6, 9.2, 4.7, 2.2, 2.2, 10.8, 1.4, 6.4, 1.4, 1.7, 19.8, 14.4, 14.7, 1.4, 1.6, 13.4, 8.1, 14.9, 5.8, 14.5, 1.0, 3.2, 7.1, 1.8, 8.8, 15.3, 1.5, 13.3, 11.4, 2.0, 1.4, 2.9, 2.3, 6.6, 11.9, 9.9, 5.1, 2.7, 18.35, 11.2, 1.4, 1.8, 1.7, 14.5, 2.0, 1.0, 6.4, 9.2, 2.0, 1.8, 1.6, 11.1, 1.1, 3.0, 7.6, 1.7, 6.0, 1.6, 4.8, 4.6, 1.8, 2.4, 6.1, 1.2, 1.7, 2.1, 11.5, 7.0, 1.2, 1.7, 11.0, 1.5, 1.4, 3.6, 2.8, 1.1, 1.9, 1.8, 2.2, 8.3, 16.05, 8.0, 2.3, 1.6, 1.3, 2.1, 1.3, 9.2, 2.0, 1.1, 2.0, 4.9, 11.95, 6.5, 1.8, 13.1, 2.3, 1.9, 5.1, 7.1, 13.9, 12.1, 10.1, 4.8, 2.3, 0.9, 1.4, 3.6, 1.9, 7.8, 1.4, 3.6, 4.2, 1.3, 5.35, 5.9, 6.5, 3.0, 3.4, 1.1, 18.15, 1.6, 1.6, 6.5, 2.1, 8.0, 5.7, 14.4, 14.55, 1.6, 6.1, 1.3, 6.2, 8.8, 4.8, 1.5, 2.9, 16.2, 1.2, 2.1, 12.2, 4.5, 10.2, 1.8, 17.8, 8.9, 2.8, 7.8, 8.1, 10.0, 0.9, 15.0, 14.2, 1.1, 14.4, 1.8, 6.8, 1.4, 1.1, 1.3, 17.4, 6.5, 3.7, 14.6, 1.7, 16.05, 12.8, 2.0, 2.6, 2.0, 2.3, 2.1, 1.6, 1.1, 1.9, 2.9, 5.9, 3.6, 4.4, 1.8, 1.1, 1.7, 2.2, 12.2, 1.2, 3.3, 12.1, 2.6, 1.2, 1.1, 3.2, 2.2, 4.5, 4.2, 1.4, 1.7, 4.6, 4.6, 2.0, 1.5, 3.3, 1.7, 1.8, 2.1, 7.4, 7.3, 2.2, 13.5, 10.2, 2.0, 6.4, 2.2, 7.5, 1.4, 7.0, 16.2, 10.4, 8.1, 3.8, 1.6, 3.9, 1.6, 1.6, 18.4, 10.2, 7.8, 2.5, 2.3, 1.0, 1.5, 7.2, 13.9, 2.7, 2.7, 2.1, 4.8, 2.8, 10.8, 6.9, 2.0, 1.8, 2.2, 2.4, 1.3, 1.2, 3.5, 1.5, 4.7, 2.4, 7.4, 1.8, 2.3, 5.7, 6.8, 1.5, 2.1, 1.4, 13.2, 9.25, 7.9, 1.0, 8.6, 3.85, 18.95, 10.0, 1.4, 1.8, 8.3, 4.5, 15.4, 2.4, 2.0, 1.0, 1.2, 2.6, 10.7, 1.5, 1.9, 2.1, 1.5, 1.7, 0.8, 7.6, 2.8, 1.9, 6.3, 3.2, 8.95, 1.6, 2.1, 10.7, 2.0, 8.2, 5.0, 8.3, 1.35, 1.3, 3.6, 10.7, 15.6, 1.9, 1.9, 5.0, 19.25, 4.7, 13.8, 13.8, 2.5, 15.55, 8.5, 12.4, 6.0, 1.3, 1.4, 2.3, 2.0, 2.4, 1.0, 12.2, 7.3, 2.3, 1.5, 13.1, 10.4, 1.4, 1.7, 10.2, 2.3, 1.1, 13.0, 1.5, 2.2, 3.5, 4.0, 3.5, 14.1, 3.4, 1.7, 1.9, 2.6, 2.2, 11.8, 0.8, 4.8, 1.4, 1.2, 1.4, 6.7, 10.0, 2.2, 12.5, 5.4, 15.6, 12.8, 1.1, 1.4, 6.2, 4.4, 13.7, 1.0, 9.2, 12.1, 1.8, 2.8, 1.6, 2.5, 11.0, 9.85, 1.4, 8.2, 2.9, 11.0, 0.9, 7.3, 2.6, 15.4, 0.9, 14.8, 2.2, 6.9, 1.8, 3.1, 4.25, 17.8, 4.8, 5.7, 8.3, 8.6, 3.6, 1.9, 26.05, 4.5, 2.7, 15.2, 3.2, 5.7, 1.9, 1.9, 2.5, 14.6, 2.5, 7.25, 12.2, 4.7, 1.1, 5.7, 1.6, 1.3, 6.3, 18.8, 1.4, 6.55, 7.7, 1.6, 7.2, 1.2, 1.6, 1.3, 2.3, 19.35, 6.3, 16.5, 3.3, 10.4, 1.4, 6.2, 6.3, 7.7, 14.7, 9.8, 1.2, 2.6, 1.0, 1.4, 5.3, 11.9, 2.5, 6.9, 4.6, 8.65, 14.9, 2.0, 4.9, 4.5, 0.9, 1.8, 2.5, 1.2, 1.0, 1.9, 2.8, 6.2, 1.3, 4.2, 3.7, 4.1, 2.5, 2.7, 6.5, 2.9, 9.1, 1.2, 2.1, 1.3, 15.3, 6.1, 1.2, 9.1, 6.3, 6.9, 13.6, 1.1, 1.4, 2.1, 1.4, 5.0, 1.5, 3.2, 1.55, 1.5, 10.4, 4.2, 6.7, 2.3, 9.9, 11.0, 2.3, 3.2, 1.9, 1.6, 3.3, 19.1, 1.2, 2.2, 4.8, 4.9, 1.1, 9.3, 2.6, 1.9, 11.2, 8.0, 13.4, 5.1, 12.6, 1.95, 4.7, 1.0, 8.9, 1.7, 11.2, 4.8, 1.4, 2.2, 1.3, 18.0, 17.3, 7.2, 1.3, 2.3, 7.8, 17.8, 4.1, 8.9, 1.7, 13.0, 14.9, 1.1, 2.1, 12.3, 1.5, 14.6, 2.3, 1.1, 6.5, 12.1, 14.2, 1.2, 1.5, 9.6, 5.7, 2.7, 1.4, 12.7, 9.1, 1.9, 10.5, 14.3, 6.5, 8.1, 1.1, 4.7, 1.0, 4.4, 1.6, 11.8, 3.6, 7.4, 12.8, 0.8, 1.5, 10.5, 2.2, 1.4, 12.2, 2.3, 1.6, 3.8, 2.8, 1.4, 8.2, 1.8, 1.3, 1.0, 1.9, 0.9, 12.15, 2.0, 4.3, 3.5, 5.6, 1.6, 2.4, 6.9, 7.7, 4.2, 1.3, 15.55, 12.9, 2.3, 4.0, 8.7, 13.6, 1.2, 5.4, 8.6, 1.5, 6.4, 3.1, 15.15, 5.2, 4.8, 1.3, 1.4, 2.4, 5.9, 2.7, 6.8, 1.1, 2.2, 11.2, 2.0, 3.3, 1.1, 7.5, 2.8, 2.1, 2.6, 1.1, 2.0, 1.6, 5.0, 12.9, 9.5, 12.1, 1.9, 1.4, 3.0, 9.7, 1.3, 14.0, 2.1, 1.8, 1.6, 1.6, 3.5, 7.3, 1.1, 2.4, 7.6, 1.1, 1.9, 1.6, 4.8, 1.5, 1.5, 17.55, 7.6, 3.2, 0.6, 18.35, 2.2, 1.4, 15.6, 1.6, 1.6, 2.2, 10.7, 4.8, 7.4, 4.0, 7.6, 2.1, 12.8, 2.4, 1.8, 8.3, 2.7, 7.0, 1.1, 2.3, 1.8, 1.9, 1.2, 1.7, 7.9, 16.45, 3.1, 18.6, 2.7, 3.0, 11.5, 6.9, 2.4, 1.8, 7.4, 2.2, 8.8, 1.2, 1.8, 14.9, 1.7, 11.6, 2.8, 15.9, 4.2, 2.0, 15.5, 1.8, 1.7, 8.0, 11.2, 13.9, 9.65, 3.3, 7.5, 7.5, 2.1, 2.5, 7.0, 2.3, 3.3, 3.8, 2.1, 2.0, 8.3, 2.2, 10.9, 1.2, 22.0, 1.6, 2.2, 2.4, 1.6, 15.4, 1.0, 10.4, 2.4, 1.9, 14.9, 2.5, 0.8, 12.7, 9.7, 2.5, 1.5, 8.1, 1.3, 1.6, 9.6, 6.1, 2.2, 9.2, 14.5, 13.55, 10.5, 15.8, 1.3, 1.6, 8.1, 1.0, 1.8, 2.0, 1.1, 7.4, 2.7, 9.4, 1.3, 16.7, 3.5, 5.1, 10.5, 1.7, 13.1, 1.3, 2.3, 2.0]}, {\"histnorm\": \"probability\", \"marker\": {\"color\": \"#ed0400\"}, \"name\": \"Current\", \"nbinsx\": 10, \"opacity\": 0.6, \"type\": \"histogram\", \"x\": [3.5, 2.5, 14.3, 1.2, 2.2, 4.7, 7.0, 2.3, 2.3, 1.2, 1.2, 8.0, 2.1, 1.6, 2.7, 1.3, 19.45, 1.2, 9.65, 22.0, 4.3, 1.2, 1.4, 13.15, 1.6, 1.7, 2.8, 2.1, 3.2, 14.2, 2.3, 4.3, 14.5, 1.2, 0.9, 6.4, 1.1, 7.2, 14.3, 7.2, 1.2, 9.1, 3.95, 18.1, 3.6, 4.7, 1.8, 7.6, 6.2, 15.0, 6.4, 2.7, 4.9, 1.5, 1.1, 1.2, 1.4, 17.2, 2.6, 7.9, 3.95, 1.9, 7.5, 2.5, 4.9, 14.0, 11.8, 1.6, 13.0, 2.0, 2.3, 16.85, 1.9, 1.7, 10.3, 2.1, 1.7, 14.8, 2.0, 3.9, 9.3, 1.0, 0.7, 7.0, 14.1, 8.2, 0.8, 11.95, 1.8, 11.4, 1.7, 2.3, 1.1, 20.3, 5.5, 9.7, 7.1, 2.1, 2.5, 2.3, 8.1, 6.7, 1.0, 1.8, 1.3, 14.4, 1.7, 2.4, 2.3, 11.0, 7.4, 13.2, 12.3, 19.95, 1.7, 1.5, 1.7, 4.9, 1.9, 1.5, 1.0, 2.4, 1.4, 4.1, 2.0, 2.1, 9.7, 3.1, 1.5, 14.5, 11.2, 15.2, 6.6, 1.4, 1.6, 12.7, 1.7, 7.4, 3.6, 1.4, 1.6, 6.5, 1.4, 4.6, 3.4, 2.2, 1.8, 2.1, 7.1, 19.3, 9.9, 2.0, 2.1, 14.4, 6.1, 7.0, 10.9, 2.0, 18.35, 6.9, 9.0, 2.5, 2.8, 13.0, 2.4, 31.6, 2.6, 8.2, 1.7, 1.8, 5.0, 2.2, 2.7, 1.4, 12.2, 3.2, 2.0, 4.2, 11.8, 1.5, 2.8, 1.4, 2.1, 10.5, 2.1, 1.9, 4.7, 2.6, 1.8, 5.1, 1.8, 1.7, 15.4, 4.2, 17.5, 1.4, 17.1, 1.6, 2.5, 5.2, 8.3, 7.7, 2.9, 1.6, 4.4, 3.2, 2.8, 8.5, 10.7, 2.0, 13.1, 1.4, 1.2, 13.8, 1.9, 5.6, 6.2, 3.0, 1.6, 1.1, 10.3, 1.0, 11.7, 16.2, 2.1, 1.6, 2.5, 1.3, 2.8, 1.5, 2.0, 1.6, 1.3, 14.2, 1.6, 2.0, 6.1, 7.7, 8.2, 2.5, 1.2, 4.6, 2.2, 2.4, 1.1, 1.4, 1.1, 15.2, 4.7, 1.2, 7.5, 18.75, 4.2, 1.7, 1.0, 1.6, 7.8, 3.5, 2.4, 1.9, 9.3, 5.2, 1.6, 12.6, 10.8, 2.0, 1.3, 3.4, 1.7, 9.0, 1.8, 2.1, 4.8, 1.7, 4.8, 20.7, 13.7, 1.2, 6.1, 2.2, 7.1, 1.9, 7.4, 17.3, 2.0, 2.2, 2.3, 14.3, 4.7, 1.9, 4.9, 3.7, 1.6, 13.8, 8.2, 5.7, 2.1, 1.7, 4.4, 5.9, 8.7, 2.1, 11.7, 4.3, 3.9, 6.55, 1.6, 9.7, 12.9, 5.4, 2.2, 1.7, 8.1, 2.9, 2.5, 2.2, 7.6, 6.5, 18.1, 1.3, 1.8, 3.3, 6.3, 1.5, 2.1, 1.9, 1.8, 5.3, 1.4, 7.3, 2.4, 7.1, 13.7, 5.1, 13.7, 10.2, 3.0, 5.3, 1.6, 2.4, 1.5, 14.5, 4.1, 6.9, 8.0, 7.1, 2.1, 11.8, 1.9, 1.3, 3.3, 1.2, 10.7, 1.4, 9.1, 1.2, 5.5, 12.3, 4.9, 8.3, 2.1, 7.9, 14.95, 1.8, 11.1, 1.8, 1.9, 1.7, 2.3, 1.6, 2.0, 13.9, 14.5, 1.2, 7.0, 1.2, 2.7, 1.6, 12.0, 11.1, 14.1, 2.0, 5.1, 2.7, 12.85, 1.4, 15.6, 14.3, 14.8, 1.6, 1.0, 2.0, 1.1, 11.0, 2.1, 2.7, 2.1, 7.2, 1.2, 5.4, 4.6, 2.0, 2.6, 12.6, 7.4, 1.8, 3.0, 10.2, 8.6, 4.2, 2.5, 2.6, 8.8, 1.8, 1.3, 10.4, 6.6, 7.2, 1.1, 6.7, 1.7, 1.2, 2.2, 1.8, 1.7, 6.2, 5.1, 10.8, 7.75, 2.7, 6.6, 1.0, 2.3, 7.1, 1.5, 3.0, 12.1, 2.4, 13.3, 2.0, 2.1, 2.8, 7.75, 1.6, 15.8, 1.9, 5.0, 20.8, 9.5, 6.4, 0.8, 13.3, 2.4, 1.4, 5.5, 7.7, 4.1, 1.5, 6.0, 1.4, 13.2, 2.1, 1.5, 12.1, 5.4, 8.2, 1.8, 2.6, 16.8, 5.0, 10.0, 12.6, 4.4, 13.0, 1.1, 2.0, 1.2, 11.6, 1.3, 3.5, 15.6, 1.4, 2.9, 13.5, 5.7, 15.5, 4.8, 4.4, 15.55, 5.1, 2.7, 3.8, 1.8, 14.2, 5.3, 1.9, 7.8, 12.5, 1.1, 2.6, 10.4, 1.2, 4.1, 1.6, 5.6, 8.6, 14.2, 16.05, 12.5, 10.4, 8.3, 2.0, 3.8, 10.7, 8.2, 2.1, 1.9, 1.9, 9.8, 1.8, 6.5, 0.9, 2.7, 2.6, 13.0, 1.9, 1.4, 13.4, 16.2, 1.4, 10.2, 4.9, 2.0, 1.0, 7.0, 11.6, 12.7, 10.3, 2.4, 6.2, 8.6, 2.6, 15.55, 15.8, 1.4, 7.3, 16.0, 7.0, 1.5, 5.1, 16.8, 3.2, 1.2, 6.2, 2.7, 1.2, 1.0, 4.6, 5.5, 1.1, 15.1, 1.1, 10.8, 2.2, 1.4, 10.2, 11.75, 6.0, 7.4, 8.1, 17.8, 7.4, 1.3, 7.9, 1.9, 2.1, 2.3, 1.6, 1.2, 2.4, 5.1, 7.4, 3.75, 19.95, 3.8, 16.1, 5.4, 7.8, 1.4, 2.6, 18.95, 2.3, 10.8, 2.0, 1.5, 2.0, 2.1, 4.4, 1.2, 1.8, 17.5, 6.4, 2.3, 14.5, 11.8, 12.8, 1.8, 13.2, 13.3, 1.4, 14.7, 4.7, 14.9, 15.4, 1.4, 2.5, 1.25, 1.1, 1.5, 10.3, 3.0, 15.7, 6.9, 2.2, 12.9, 6.8, 2.4, 7.1, 7.0, 1.2, 10.2, 7.3, 1.8, 5.0, 2.1, 2.65, 2.4, 2.1, 2.8, 1.1, 7.4, 11.5, 1.6, 1.3, 2.6, 6.8, 1.2, 1.7, 1.4, 2.7, 1.9, 1.9, 11.1, 9.7, 4.3, 13.2, 1.9, 1.4, 1.6, 11.2, 12.8, 8.0, 9.2, 12.8, 6.8, 1.6, 10.4, 1.7, 2.0, 8.6, 5.7, 3.2, 3.9, 2.0, 1.2, 1.6, 2.4, 2.0, 1.0, 17.9, 2.5, 14.7, 1.8, 1.4, 1.5, 1.6, 17.55, 1.8, 13.55, 1.0, 12.0, 17.1, 10.7, 3.6, 3.85, 1.9, 4.0, 8.8, 1.2, 15.4, 6.5, 1.4, 1.0, 9.1, 1.4, 1.1, 3.0, 2.5, 14.3, 2.0, 6.6, 8.1, 2.4, 7.7, 15.5, 1.7, 11.3, 5.7, 2.3, 2.0, 9.6, 0.9, 1.4, 5.9, 1.5, 1.4, 5.4, 2.0, 6.3, 4.7, 13.7, 2.5, 6.1, 1.8, 7.4, 1.6, 16.0, 10.7, 10.6, 9.3, 2.5, 10.55, 2.9, 16.3, 1.7, 9.6, 4.6, 8.9, 2.2, 2.5, 1.5, 2.4, 1.6, 14.75, 11.9, 11.9, 2.4, 2.4, 3.5, 2.6, 1.3, 6.0, 1.6, 1.8, 1.5, 2.8, 1.2, 2.0, 1.9, 1.3, 8.9, 10.5, 12.8, 1.2, 1.5, 2.6, 1.9, 16.0, 17.85, 7.7, 6.4, 2.0, 2.3, 2.9, 1.6, 1.8, 2.1, 1.1, 1.6, 3.7, 8.0, 15.6, 1.9, 8.8, 2.7, 2.4, 6.7, 11.2, 7.3, 2.6, 17.75, 2.5, 3.7, 1.15, 2.6, 1.3, 1.3, 8.3, 1.3, 11.2, 5.2, 3.8, 4.7, 1.2, 9.2, 12.7, 2.5, 0.9, 4.5, 1.35, 7.4, 2.5, 13.2, 1.8, 2.1, 7.7, 5.25, 7.0, 3.65, 15.75, 1.9, 13.65, 8.5, 2.7, 5.2, 4.9, 2.2, 9.15, 0.9, 7.8, 15.8, 1.9, 2.5, 0.9, 14.0, 2.6, 2.8, 2.3, 1.8, 12.8, 17.5, 1.8, 2.6, 8.25, 1.9, 1.6, 1.5, 7.0, 11.9, 6.9, 12.1, 2.4, 1.0, 1.3, 1.2, 6.7, 14.8, 12.7, 13.7, 2.0, 3.1, 10.1, 1.3, 1.6, 9.25, 15.4, 12.9, 8.1, 1.6, 1.0, 2.0, 4.7, 1.7, 10.8, 1.1, 19.95, 1.1, 1.2, 9.7, 6.7, 1.3, 1.6, 17.8, 2.0, 2.3, 13.6, 5.3, 13.6, 1.7, 11.4, 1.6, 8.1, 1.4, 2.6, 1.3, 2.4, 10.6, 4.6, 2.2, 1.7, 2.8, 2.0, 1.5, 5.0, 2.0, 2.55, 2.6, 4.6, 12.7, 1.7, 17.8, 5.6, 3.45, 5.7, 6.3, 10.1, 6.7, 17.9, 1.4, 8.2, 7.1, 8.0, 2.0, 1.3, 2.5, 0.8, 11.4, 2.0, 1.9, 1.3, 1.2, 1.7, 1.1, 1.1, 9.85, 1.2, 1.1, 1.6, 2.1, 2.2, 9.5, 1.7, 8.0, 13.65, 1.3, 0.8, 7.9, 1.3, 4.4, 9.55, 1.1, 17.1, 7.9, 1.8, 2.2, 5.2, 1.1, 8.1, 5.9, 2.4, 2.4, 6.0, 2.0, 2.0, 2.9, 1.4, 2.1, 2.0, 2.1, 5.2, 1.3, 5.8, 1.8, 8.2, 2.5, 2.0, 2.3, 15.1, 2.3, 16.8, 13.8, 17.1, 1.5, 12.2, 1.3, 8.2, 4.3, 2.7, 2.0, 8.9]}], \"layout\": {\"legend\": {\"orientation\": \"h\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"residual.sugar\"}}, \"yaxis\": {\"title\": {\"text\": \"Share\"}}}}}, {\"id\": \"residual.sugar_drift\", \"params\": {\"title\": \"\", \"size\": 2, \"text\": \"\", \"type\": \"big_graph\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"Current\", \"type\": \"scatter\", \"x\": [443, 319, 703, 526, 76, 963, 1260, 532, 1561, 517, 506, 1557, 271, 1058, 1381, 1039, 542, 107, 161, 1301, 519, 1021, 1213, 223, 1286, 1426, 1234, 587, 1183, 182, 567, 1492, 724, 1262, 1509, 657, 1137, 913, 1445, 342, 781, 14, 971, 1072, 1254, 678, 1175, 1481, 1370, 1443, 18, 1151, 1380, 434, 1430, 554, 53, 535, 1050, 427, 259, 124, 961, 1488, 1563, 720, 1291, 1061, 425, 846, 1147, 204, 1317, 618, 1088, 927, 1196, 582, 1194, 360, 1449, 862, 1135, 1453, 1442, 1017, 268, 685, 317, 775, 1086, 942, 1052, 801, 1362, 219, 379, 649, 1195, 479, 1542, 609, 930, 1105, 34, 708, 686, 1132, 693, 733, 1562, 1190, 473, 737, 672, 969, 858, 5, 1556, 298, 80, 940, 361, 1154, 1545, 1622, 784, 19, 1522, 996, 54, 1415, 1564, 1593, 1236, 9, 353, 1222, 113, 1010, 1263, 877, 82, 381, 818, 1210, 1409, 66, 254, 817, 92, 1340, 122, 1357, 511, 1546, 692, 17, 1248, 414, 52, 1296, 191, 175, 233, 900, 785, 935, 1298, 156, 487, 159, 481, 1255, 1597, 253, 1491, 841, 187, 914, 979, 249, 1114, 1366, 814, 716, 465, 875, 1242, 670, 299, 593, 436, 728, 141, 229, 1057, 912, 994, 648, 799, 1164, 1073, 4, 516, 152, 1267, 1237, 752, 1150, 825, 402, 1277, 575, 1437, 838, 390, 1505, 1093, 1026, 1611, 31, 674, 866, 1328, 616, 861, 897, 148, 303, 1451, 602, 1125, 1614, 1047, 1462, 1148, 574, 899, 1327, 89, 530, 408, 1192, 177, 520, 993, 326, 992, 717, 895, 1421, 984, 240, 85, 557, 278, 938, 1425, 958, 1232, 1149, 171, 1220, 227, 891, 489, 1391, 1184, 1032, 393, 726, 192, 260, 880, 1592, 1537, 491, 759, 1473, 959, 1454, 1015, 965, 1393, 1489, 1256, 133, 202, 1036, 438, 483, 666, 461, 142, 1181, 1580, 308, 538, 170, 310, 743, 1101, 1179, 315, 22, 1529, 45, 879, 1110, 61, 522, 1397, 829, 576, 1193, 1202, 1549, 1375, 27, 527, 1186, 1273, 828, 539, 1049, 1014, 412, 1091, 1497, 1595, 347, 2, 844, 1490, 632, 211, 1582, 918, 1217, 1115, 744, 459, 579, 771, 96, 178, 108, 1516, 805, 1240, 440, 619, 1, 1315, 1239, 1347, 512, 48, 722, 1517, 1621, 446, 565, 568, 796, 231, 1070, 1063, 215, 513, 704, 354, 55, 881, 746, 641, 762, 279, 1145, 1468, 224, 302, 911, 218, 1079, 874, 1266, 792, 1136, 372, 295, 364, 580, 1615, 688, 1560, 333, 467, 968, 399, 760, 740, 953, 1520, 1446, 1214, 615, 524, 546, 1495, 1324, 452, 1515, 432, 863, 442, 847, 276, 456, 184, 1116, 1200, 458, 1508, 1087, 1478, 376, 1479, 563, 1146, 1507, 42, 944, 823, 1228, 656, 1227, 198, 309, 761, 1158, 549, 47, 1209, 529, 933, 220, 1624, 1591, 651, 536, 362, 1314, 420, 564, 475, 482, 140, 679, 1436, 1334, 77, 39, 570, 962, 808, 981, 322, 1471, 251, 695, 1128, 813, 757, 820, 853, 831, 1246, 58, 553, 597, 241, 1288, 330, 1005, 789, 1617, 56, 1126, 411, 548, 501, 1211, 642, 558, 1605, 745, 878, 1056, 667, 435, 29, 270, 35, 1157, 422, 1310, 114, 1524, 1422, 689, 1018, 1168, 1360, 985, 1191, 793, 1363, 1504, 581, 644, 1199, 621, 1612, 494, 665, 431, 1095, 638, 1042, 1404, 1030, 40, 1121, 75, 1588, 1417, 247, 713, 1590, 186, 646, 312, 8, 1551, 1302, 1044, 768, 884, 1585, 1618, 826, 445, 712, 464, 1308, 195, 655, 1487, 1389, 1356, 243, 401, 572, 1074, 810, 477, 1460, 1544, 1182, 285, 471, 936, 1238, 578, 1034, 1535, 1513, 426, 1311, 1001, 986, 1038, 980, 1064, 620, 982, 1565, 194, 474, 1428, 569, 1165, 49, 1333, 1401, 1307, 1076, 991, 1566, 44, 1342, 245, 943, 300, 583, 1013, 269, 1548, 313, 776, 283, 1444, 540, 406, 338, 466, 363, 1002, 320, 1264, 1089, 70, 1027, 500, 10, 907, 505, 1295, 864, 1432, 64, 1122, 1543, 416, 898, 654, 205, 328, 486, 999, 1377, 970, 528, 1558, 418, 1379, 1299, 1378, 590, 1247, 1174, 472, 1323, 131, 15, 439, 1528, 476, 725, 1203, 1109, 1003, 1365, 103, 1279, 60, 871, 78, 391, 165, 1335, 1410, 1129, 960, 349, 185, 1464, 371, 117, 1398, 252, 507, 1613, 311, 1419, 395, 987, 358, 263, 359, 1559, 1305, 1506, 1376, 1055, 634, 1552, 16, 51, 1258, 493, 601, 997, 351, 711, 1604, 1486, 1339, 794, 97, 1475, 1423, 196, 748, 183, 1433, 1579, 613, 1536, 989, 682, 533, 610, 687, 892, 81, 896, 397, 267, 589, 386, 795, 1416, 132, 265, 1609, 1461, 883, 88, 840, 988, 1354, 676, 916, 629, 1269, 924, 294, 261, 1541, 1081, 1348, 1576, 405, 1616, 356, 608, 1097, 239, 1249, 1099, 1403, 119, 1096, 977, 751, 374, 453, 110, 1336, 1390, 905, 1287, 503, 1031, 1331, 1224, 729, 410, 1540, 367, 1607, 384, 200, 65, 1358, 1394, 1023, 272, 1418, 955, 677, 238, 1133, 974, 541, 478, 1257, 1265, 1465, 1589, 1326, 188, 1083, 681, 906, 1092, 1276, 316, 214, 1078, 1502, 1084, 660, 1142, 531, 255, 30, 662, 1253, 230, 157, 1343, 385, 1169, 380, 1188, 721, 264, 787, 101, 13, 1274, 68, 1024, 1170, 1156, 71, 1577, 566, 1372, 1245, 798, 523, 626, 495, 937, 155, 887, 758, 921, 790, 1349, 1230, 366, 1531, 983, 839, 228, 417, 206, 742, 79, 190, 492, 948, 145, 923, 318, 824, 1374, 1124, 1463, 596, 457, 144, 1359, 1292, 1045, 764, 842, 1140, 1408, 995, 904, 592, 1458, 135, 83, 1062, 154, 1440, 1283, 773, 1414, 127, 1177, 1318, 1413, 403, 150, 346, 413, 1303, 1523, 1619, 394, 1261, 1054, 208, 496, 352, 95, 625, 571, 37, 485, 143, 946, 158, 552, 1527, 1029, 518, 1180, 1218, 236, 1100, 222, 1431, 345, 1459, 120, 661, 588, 1623, 1493, 62, 1429, 811, 193, 235, 181, 1320, 389, 1103, 521, 669, 332, 258, 1369, 1538, 957, 382, 1382, 1567, 331, 934, 614, 262, 893, 6, 266, 769, 38, 901, 1573, 1578, 545, 118, 783, 652, 1025, 706, 105, 1189, 484, 1569, 630, 683, 20, 870, 242, 50, 162, 915, 966, 441, 867, 731, 1102, 1000, 1268, 1223, 822, 301, 723, 172], \"y\": [3.5, 2.5, 14.3, 1.2, 2.2, 4.7, 7.0, 2.3, 2.3, 1.2, 1.2, 8.0, 2.1, 1.6, 2.7, 1.3, 19.45, 1.2, 9.65, 22.0, 4.3, 1.2, 1.4, 13.15, 1.6, 1.7, 2.8, 2.1, 3.2, 14.2, 2.3, 4.3, 14.5, 1.2, 0.9, 6.4, 1.1, 7.2, 14.3, 7.2, 1.2, 9.1, 3.95, 18.1, 3.6, 4.7, 1.8, 7.6, 6.2, 15.0, 6.4, 2.7, 4.9, 1.5, 1.1, 1.2, 1.4, 17.2, 2.6, 7.9, 3.95, 1.9, 7.5, 2.5, 4.9, 14.0, 11.8, 1.6, 13.0, 2.0, 2.3, 16.85, 1.9, 1.7, 10.3, 2.1, 1.7, 14.8, 2.0, 3.9, 9.3, 1.0, 0.7, 7.0, 14.1, 8.2, 0.8, 11.95, 1.8, 11.4, 1.7, 2.3, 1.1, 20.3, 5.5, 9.7, 7.1, 2.1, 2.5, 2.3, 8.1, 6.7, 1.0, 1.8, 1.3, 14.4, 1.7, 2.4, 2.3, 11.0, 7.4, 13.2, 12.3, 19.95, 1.7, 1.5, 1.7, 4.9, 1.9, 1.5, 1.0, 2.4, 1.4, 4.1, 2.0, 2.1, 9.7, 3.1, 1.5, 14.5, 11.2, 15.2, 6.6, 1.4, 1.6, 12.7, 1.7, 7.4, 3.6, 1.4, 1.6, 6.5, 1.4, 4.6, 3.4, 2.2, 1.8, 2.1, 7.1, 19.3, 9.9, 2.0, 2.1, 14.4, 6.1, 7.0, 10.9, 2.0, 18.35, 6.9, 9.0, 2.5, 2.8, 13.0, 2.4, 31.6, 2.6, 8.2, 1.7, 1.8, 5.0, 2.2, 2.7, 1.4, 12.2, 3.2, 2.0, 4.2, 11.8, 1.5, 2.8, 1.4, 2.1, 10.5, 2.1, 1.9, 4.7, 2.6, 1.8, 5.1, 1.8, 1.7, 15.4, 4.2, 17.5, 1.4, 17.1, 1.6, 2.5, 5.2, 8.3, 7.7, 2.9, 1.6, 4.4, 3.2, 2.8, 8.5, 10.7, 2.0, 13.1, 1.4, 1.2, 13.8, 1.9, 5.6, 6.2, 3.0, 1.6, 1.1, 10.3, 1.0, 11.7, 16.2, 2.1, 1.6, 2.5, 1.3, 2.8, 1.5, 2.0, 1.6, 1.3, 14.2, 1.6, 2.0, 6.1, 7.7, 8.2, 2.5, 1.2, 4.6, 2.2, 2.4, 1.1, 1.4, 1.1, 15.2, 4.7, 1.2, 7.5, 18.75, 4.2, 1.7, 1.0, 1.6, 7.8, 3.5, 2.4, 1.9, 9.3, 5.2, 1.6, 12.6, 10.8, 2.0, 1.3, 3.4, 1.7, 9.0, 1.8, 2.1, 4.8, 1.7, 4.8, 20.7, 13.7, 1.2, 6.1, 2.2, 7.1, 1.9, 7.4, 17.3, 2.0, 2.2, 2.3, 14.3, 4.7, 1.9, 4.9, 3.7, 1.6, 13.8, 8.2, 5.7, 2.1, 1.7, 4.4, 5.9, 8.7, 2.1, 11.7, 4.3, 3.9, 6.55, 1.6, 9.7, 12.9, 5.4, 2.2, 1.7, 8.1, 2.9, 2.5, 2.2, 7.6, 6.5, 18.1, 1.3, 1.8, 3.3, 6.3, 1.5, 2.1, 1.9, 1.8, 5.3, 1.4, 7.3, 2.4, 7.1, 13.7, 5.1, 13.7, 10.2, 3.0, 5.3, 1.6, 2.4, 1.5, 14.5, 4.1, 6.9, 8.0, 7.1, 2.1, 11.8, 1.9, 1.3, 3.3, 1.2, 10.7, 1.4, 9.1, 1.2, 5.5, 12.3, 4.9, 8.3, 2.1, 7.9, 14.95, 1.8, 11.1, 1.8, 1.9, 1.7, 2.3, 1.6, 2.0, 13.9, 14.5, 1.2, 7.0, 1.2, 2.7, 1.6, 12.0, 11.1, 14.1, 2.0, 5.1, 2.7, 12.85, 1.4, 15.6, 14.3, 14.8, 1.6, 1.0, 2.0, 1.1, 11.0, 2.1, 2.7, 2.1, 7.2, 1.2, 5.4, 4.6, 2.0, 2.6, 12.6, 7.4, 1.8, 3.0, 10.2, 8.6, 4.2, 2.5, 2.6, 8.8, 1.8, 1.3, 10.4, 6.6, 7.2, 1.1, 6.7, 1.7, 1.2, 2.2, 1.8, 1.7, 6.2, 5.1, 10.8, 7.75, 2.7, 6.6, 1.0, 2.3, 7.1, 1.5, 3.0, 12.1, 2.4, 13.3, 2.0, 2.1, 2.8, 7.75, 1.6, 15.8, 1.9, 5.0, 20.8, 9.5, 6.4, 0.8, 13.3, 2.4, 1.4, 5.5, 7.7, 4.1, 1.5, 6.0, 1.4, 13.2, 2.1, 1.5, 12.1, 5.4, 8.2, 1.8, 2.6, 16.8, 5.0, 10.0, 12.6, 4.4, 13.0, 1.1, 2.0, 1.2, 11.6, 1.3, 3.5, 15.6, 1.4, 2.9, 13.5, 5.7, 15.5, 4.8, 4.4, 15.55, 5.1, 2.7, 3.8, 1.8, 14.2, 5.3, 1.9, 7.8, 12.5, 1.1, 2.6, 10.4, 1.2, 4.1, 1.6, 5.6, 8.6, 14.2, 16.05, 12.5, 10.4, 8.3, 2.0, 3.8, 10.7, 8.2, 2.1, 1.9, 1.9, 9.8, 1.8, 6.5, 0.9, 2.7, 2.6, 13.0, 1.9, 1.4, 13.4, 16.2, 1.4, 10.2, 4.9, 2.0, 1.0, 7.0, 11.6, 12.7, 10.3, 2.4, 6.2, 8.6, 2.6, 15.55, 15.8, 1.4, 7.3, 16.0, 7.0, 1.5, 5.1, 16.8, 3.2, 1.2, 6.2, 2.7, 1.2, 1.0, 4.6, 5.5, 1.1, 15.1, 1.1, 10.8, 2.2, 1.4, 10.2, 11.75, 6.0, 7.4, 8.1, 17.8, 7.4, 1.3, 7.9, 1.9, 2.1, 2.3, 1.6, 1.2, 2.4, 5.1, 7.4, 3.75, 19.95, 3.8, 16.1, 5.4, 7.8, 1.4, 2.6, 18.95, 2.3, 10.8, 2.0, 1.5, 2.0, 2.1, 4.4, 1.2, 1.8, 17.5, 6.4, 2.3, 14.5, 11.8, 12.8, 1.8, 13.2, 13.3, 1.4, 14.7, 4.7, 14.9, 15.4, 1.4, 2.5, 1.25, 1.1, 1.5, 10.3, 3.0, 15.7, 6.9, 2.2, 12.9, 6.8, 2.4, 7.1, 7.0, 1.2, 10.2, 7.3, 1.8, 5.0, 2.1, 2.65, 2.4, 2.1, 2.8, 1.1, 7.4, 11.5, 1.6, 1.3, 2.6, 6.8, 1.2, 1.7, 1.4, 2.7, 1.9, 1.9, 11.1, 9.7, 4.3, 13.2, 1.9, 1.4, 1.6, 11.2, 12.8, 8.0, 9.2, 12.8, 6.8, 1.6, 10.4, 1.7, 2.0, 8.6, 5.7, 3.2, 3.9, 2.0, 1.2, 1.6, 2.4, 2.0, 1.0, 17.9, 2.5, 14.7, 1.8, 1.4, 1.5, 1.6, 17.55, 1.8, 13.55, 1.0, 12.0, 17.1, 10.7, 3.6, 3.85, 1.9, 4.0, 8.8, 1.2, 15.4, 6.5, 1.4, 1.0, 9.1, 1.4, 1.1, 3.0, 2.5, 14.3, 2.0, 6.6, 8.1, 2.4, 7.7, 15.5, 1.7, 11.3, 5.7, 2.3, 2.0, 9.6, 0.9, 1.4, 5.9, 1.5, 1.4, 5.4, 2.0, 6.3, 4.7, 13.7, 2.5, 6.1, 1.8, 7.4, 1.6, 16.0, 10.7, 10.6, 9.3, 2.5, 10.55, 2.9, 16.3, 1.7, 9.6, 4.6, 8.9, 2.2, 2.5, 1.5, 2.4, 1.6, 14.75, 11.9, 11.9, 2.4, 2.4, 3.5, 2.6, 1.3, 6.0, 1.6, 1.8, 1.5, 2.8, 1.2, 2.0, 1.9, 1.3, 8.9, 10.5, 12.8, 1.2, 1.5, 2.6, 1.9, 16.0, 17.85, 7.7, 6.4, 2.0, 2.3, 2.9, 1.6, 1.8, 2.1, 1.1, 1.6, 3.7, 8.0, 15.6, 1.9, 8.8, 2.7, 2.4, 6.7, 11.2, 7.3, 2.6, 17.75, 2.5, 3.7, 1.15, 2.6, 1.3, 1.3, 8.3, 1.3, 11.2, 5.2, 3.8, 4.7, 1.2, 9.2, 12.7, 2.5, 0.9, 4.5, 1.35, 7.4, 2.5, 13.2, 1.8, 2.1, 7.7, 5.25, 7.0, 3.65, 15.75, 1.9, 13.65, 8.5, 2.7, 5.2, 4.9, 2.2, 9.15, 0.9, 7.8, 15.8, 1.9, 2.5, 0.9, 14.0, 2.6, 2.8, 2.3, 1.8, 12.8, 17.5, 1.8, 2.6, 8.25, 1.9, 1.6, 1.5, 7.0, 11.9, 6.9, 12.1, 2.4, 1.0, 1.3, 1.2, 6.7, 14.8, 12.7, 13.7, 2.0, 3.1, 10.1, 1.3, 1.6, 9.25, 15.4, 12.9, 8.1, 1.6, 1.0, 2.0, 4.7, 1.7, 10.8, 1.1, 19.95, 1.1, 1.2, 9.7, 6.7, 1.3, 1.6, 17.8, 2.0, 2.3, 13.6, 5.3, 13.6, 1.7, 11.4, 1.6, 8.1, 1.4, 2.6, 1.3, 2.4, 10.6, 4.6, 2.2, 1.7, 2.8, 2.0, 1.5, 5.0, 2.0, 2.55, 2.6, 4.6, 12.7, 1.7, 17.8, 5.6, 3.45, 5.7, 6.3, 10.1, 6.7, 17.9, 1.4, 8.2, 7.1, 8.0, 2.0, 1.3, 2.5, 0.8, 11.4, 2.0, 1.9, 1.3, 1.2, 1.7, 1.1, 1.1, 9.85, 1.2, 1.1, 1.6, 2.1, 2.2, 9.5, 1.7, 8.0, 13.65, 1.3, 0.8, 7.9, 1.3, 4.4, 9.55, 1.1, 17.1, 7.9, 1.8, 2.2, 5.2, 1.1, 8.1, 5.9, 2.4, 2.4, 6.0, 2.0, 2.0, 2.9, 1.4, 2.1, 2.0, 2.1, 5.2, 1.3, 5.8, 1.8, 8.2, 2.5, 2.0, 2.3, 15.1, 2.3, 16.8, 13.8, 17.1, 1.5, 12.2, 1.3, 8.2, 4.3, 2.7, 2.0, 8.9]}, {\"marker\": {\"color\": \"white\", \"opacity\": 0.005, \"size\": 0.01}, \"mode\": \"markers\", \"name\": \"Current\", \"showlegend\": false, \"type\": \"scatter\", \"x\": [2, 2], \"y\": [-8.965058443570388, 19.754558443570396]}], \"layout\": {\"legend\": {\"orientation\": \"h\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"shapes\": [{\"fillcolor\": \"LightGreen\", \"layer\": \"below\", \"line\": {\"width\": 0}, \"opacity\": 0.5, \"type\": \"rect\", \"x0\": 0, \"x1\": 1, \"xref\": \"paper\", \"y0\": -8.965058443570388, \"y1\": 19.754558443570396, \"yref\": \"y\"}, {\"line\": {\"color\": \"Green\", \"width\": 3}, \"name\": \"Reference\", \"type\": \"line\", \"x0\": 0, \"x1\": 1, \"xref\": \"paper\", \"y0\": 5.394750000000004, \"y1\": 5.394750000000004, \"yref\": \"y\"}], \"showlegend\": true, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"Index\"}}, \"yaxis\": {\"title\": {\"text\": \"residual.sugar\"}}}}}}, {\"id\": \"chlorides_distr\", \"params\": {\"data\": [{\"histnorm\": \"probability\", \"marker\": {\"color\": \"#4d4d4d\"}, \"name\": \"Reference\", \"nbinsx\": 10, \"opacity\": 0.6, \"type\": \"histogram\", \"x\": [0.037, 0.054, 0.051, 0.039, 0.046, 0.086, 0.033, 0.032, 0.032, 0.071, 0.037, 0.05, 0.069, 0.044, 0.044, 0.049, 0.031, 0.053, 0.09, 0.061, 0.091, 0.036, 0.033, 0.086, 0.035, 0.043, 0.09, 0.038, 0.053, 0.034, 0.054, 0.051, 0.034, 0.039, 0.048, 0.068, 0.029, 0.033, 0.05, 0.029, 0.041, 0.039, 0.063, 0.062, 0.05, 0.052, 0.08, 0.032, 0.05, 0.081, 0.045, 0.049, 0.029, 0.05, 0.038, 0.03, 0.048, 0.032, 0.02, 0.033, 0.05, 0.046, 0.086, 0.035, 0.028, 0.067, 0.092, 0.043, 0.058, 0.041, 0.08, 0.029, 0.074, 0.033, 0.088, 0.044, 0.058, 0.044, 0.054, 0.068, 0.039, 0.04, 0.039, 0.042, 0.039, 0.037, 0.076, 0.06, 0.03, 0.02, 0.059, 0.04, 0.034, 0.039, 0.064, 0.045, 0.07, 0.035, 0.045, 0.044, 0.042, 0.047, 0.088, 0.085, 0.055, 0.012, 0.047, 0.069, 0.059, 0.051, 0.02, 0.032, 0.047, 0.076, 0.039, 0.032, 0.077, 0.047, 0.061, 0.05, 0.061, 0.089, 0.05, 0.078, 0.034, 0.073, 0.038, 0.047, 0.053, 0.032, 0.045, 0.033, 0.035, 0.034, 0.035, 0.044, 0.048, 0.086, 0.04, 0.084, 0.037, 0.035, 0.04, 0.08, 0.05, 0.055, 0.067, 0.044, 0.046, 0.05, 0.097, 0.031, 0.047, 0.043, 0.077, 0.035, 0.035, 0.04, 0.076, 0.046, 0.042, 0.05, 0.024, 0.091, 0.05, 0.037, 0.045, 0.08, 0.048, 0.053, 0.051, 0.048, 0.036, 0.064, 0.05, 0.041, 0.053, 0.024, 0.044, 0.033, 0.054, 0.039, 0.043, 0.021, 0.062, 0.042, 0.098, 0.052, 0.026, 0.04, 0.074, 0.062, 0.05, 0.037, 0.052, 0.049, 0.082, 0.043, 0.053, 0.078, 0.084, 0.074, 0.045, 0.068, 0.031, 0.041, 0.084, 0.034, 0.036, 0.047, 0.042, 0.044, 0.044, 0.08, 0.062, 0.035, 0.092, 0.08, 0.062, 0.038, 0.092, 0.049, 0.041, 0.046, 0.044, 0.04, 0.084, 0.085, 0.051, 0.044, 0.036, 0.031, 0.077, 0.066, 0.051, 0.051, 0.073, 0.036, 0.046, 0.044, 0.051, 0.038, 0.055, 0.043, 0.058, 0.048, 0.042, 0.027, 0.056, 0.039, 0.056, 0.036, 0.083, 0.044, 0.077, 0.082, 0.033, 0.043, 0.041, 0.035, 0.034, 0.054, 0.036, 0.036, 0.069, 0.042, 0.071, 0.038, 0.045, 0.044, 0.082, 0.066, 0.039, 0.033, 0.027, 0.087, 0.044, 0.076, 0.05, 0.069, 0.037, 0.029, 0.082, 0.08, 0.046, 0.044, 0.054, 0.031, 0.096, 0.045, 0.047, 0.037, 0.047, 0.068, 0.047, 0.04, 0.08, 0.044, 0.049, 0.026, 0.087, 0.032, 0.047, 0.036, 0.082, 0.028, 0.06, 0.048, 0.048, 0.049, 0.019, 0.026, 0.056, 0.034, 0.038, 0.041, 0.072, 0.05, 0.043, 0.057, 0.062, 0.042, 0.057, 0.056, 0.053, 0.041, 0.064, 0.057, 0.024, 0.04, 0.092, 0.04, 0.037, 0.035, 0.031, 0.045, 0.029, 0.038, 0.029, 0.095, 0.039, 0.042, 0.044, 0.032, 0.074, 0.047, 0.025, 0.067, 0.047, 0.045, 0.063, 0.047, 0.046, 0.026, 0.041, 0.049, 0.072, 0.055, 0.05, 0.08, 0.042, 0.051, 0.037, 0.034, 0.034, 0.046, 0.028, 0.036, 0.024, 0.039, 0.037, 0.04, 0.058, 0.048, 0.047, 0.041, 0.051, 0.043, 0.064, 0.039, 0.029, 0.044, 0.093, 0.04, 0.053, 0.084, 0.073, 0.052, 0.087, 0.075, 0.04, 0.081, 0.079, 0.047, 0.046, 0.038, 0.06, 0.062, 0.084, 0.05, 0.063, 0.044, 0.041, 0.036, 0.03, 0.035, 0.087, 0.07, 0.047, 0.036, 0.032, 0.028, 0.08, 0.063, 0.038, 0.052, 0.042, 0.078, 0.045, 0.041, 0.039, 0.021, 0.06, 0.039, 0.068, 0.034, 0.087, 0.05, 0.042, 0.055, 0.045, 0.037, 0.028, 0.026, 0.024, 0.084, 0.051, 0.054, 0.046, 0.048, 0.053, 0.038, 0.07, 0.043, 0.029, 0.093, 0.037, 0.068, 0.048, 0.056, 0.08, 0.074, 0.042, 0.074, 0.041, 0.046, 0.044, 0.05, 0.04, 0.069, 0.044, 0.082, 0.053, 0.039, 0.049, 0.033, 0.074, 0.056, 0.047, 0.034, 0.044, 0.052, 0.031, 0.038, 0.037, 0.073, 0.044, 0.096, 0.05, 0.056, 0.038, 0.039, 0.043, 0.082, 0.047, 0.049, 0.033, 0.042, 0.029, 0.014, 0.032, 0.049, 0.084, 0.035, 0.03, 0.055, 0.034, 0.066, 0.042, 0.055, 0.058, 0.026, 0.061, 0.045, 0.071, 0.056, 0.049, 0.09, 0.035, 0.046, 0.043, 0.03, 0.068, 0.039, 0.047, 0.051, 0.022, 0.035, 0.041, 0.059, 0.058, 0.046, 0.04, 0.048, 0.05, 0.065, 0.02, 0.05, 0.046, 0.046, 0.048, 0.039, 0.083, 0.033, 0.047, 0.037, 0.081, 0.037, 0.03, 0.053, 0.049, 0.049, 0.067, 0.066, 0.08, 0.048, 0.027, 0.05, 0.047, 0.048, 0.041, 0.054, 0.056, 0.079, 0.046, 0.043, 0.063, 0.044, 0.043, 0.041, 0.042, 0.032, 0.045, 0.03, 0.027, 0.033, 0.095, 0.057, 0.08, 0.071, 0.034, 0.084, 0.024, 0.096, 0.052, 0.04, 0.045, 0.031, 0.048, 0.039, 0.049, 0.041, 0.044, 0.026, 0.032, 0.047, 0.034, 0.035, 0.052, 0.045, 0.067, 0.052, 0.031, 0.032, 0.043, 0.057, 0.066, 0.046, 0.068, 0.079, 0.044, 0.043, 0.075, 0.028, 0.041, 0.031, 0.033, 0.034, 0.063, 0.04, 0.057, 0.085, 0.04, 0.026, 0.045, 0.039, 0.041, 0.052, 0.034, 0.046, 0.045, 0.07, 0.034, 0.04, 0.054, 0.02, 0.06, 0.05, 0.029, 0.047, 0.051, 0.055, 0.031, 0.051, 0.057, 0.064, 0.036, 0.043, 0.066, 0.042, 0.033, 0.053, 0.027, 0.03, 0.04, 0.09, 0.085, 0.026, 0.052, 0.043, 0.024, 0.052, 0.07, 0.075, 0.035, 0.094, 0.042, 0.038, 0.039, 0.047, 0.092, 0.056, 0.047, 0.067, 0.028, 0.029, 0.042, 0.052, 0.045, 0.039, 0.06, 0.066, 0.037, 0.035, 0.036, 0.058, 0.026, 0.036, 0.045, 0.066, 0.036, 0.079, 0.047, 0.035, 0.091, 0.066, 0.078, 0.052, 0.07, 0.045, 0.034, 0.072, 0.052, 0.036, 0.026, 0.05, 0.052, 0.079, 0.058, 0.051, 0.044, 0.026, 0.051, 0.038, 0.036, 0.062, 0.048, 0.05, 0.046, 0.056, 0.045, 0.095, 0.044, 0.054, 0.047, 0.039, 0.049, 0.071, 0.073, 0.058, 0.061, 0.036, 0.031, 0.051, 0.029, 0.058, 0.044, 0.063, 0.048, 0.076, 0.058, 0.048, 0.04, 0.039, 0.059, 0.041, 0.057, 0.043, 0.044, 0.042, 0.049, 0.036, 0.091, 0.031, 0.058, 0.027, 0.048, 0.027, 0.034, 0.027, 0.055, 0.039, 0.041, 0.025, 0.053, 0.042, 0.034, 0.024, 0.06, 0.033, 0.04, 0.048, 0.028, 0.034, 0.054, 0.033, 0.028, 0.081, 0.041, 0.036, 0.097, 0.019, 0.039, 0.054, 0.045, 0.036, 0.087, 0.07, 0.098, 0.069, 0.046, 0.044, 0.039, 0.043, 0.054, 0.037, 0.087, 0.047, 0.041, 0.026, 0.054, 0.048, 0.039, 0.048, 0.041, 0.04, 0.051, 0.029, 0.031, 0.033, 0.053, 0.042, 0.051, 0.022, 0.05, 0.031, 0.047, 0.044, 0.029, 0.049, 0.034, 0.078, 0.083, 0.045, 0.089, 0.053, 0.056, 0.056, 0.046, 0.036, 0.081, 0.035, 0.031, 0.048, 0.041, 0.044, 0.037, 0.047, 0.038, 0.043, 0.034, 0.081, 0.045, 0.039, 0.047, 0.028, 0.019, 0.039, 0.022, 0.05, 0.05, 0.087, 0.042, 0.05, 0.025, 0.08, 0.072, 0.046, 0.032, 0.098, 0.03, 0.034, 0.031, 0.064, 0.045, 0.076, 0.081, 0.05, 0.036, 0.041, 0.041, 0.032, 0.048, 0.031, 0.047, 0.063, 0.041, 0.039, 0.084, 0.036, 0.04, 0.038, 0.065, 0.037, 0.054, 0.055, 0.046, 0.047, 0.041, 0.048, 0.08, 0.046, 0.037, 0.047, 0.064, 0.08, 0.031, 0.047, 0.048, 0.057, 0.041, 0.092, 0.096, 0.04, 0.084, 0.039, 0.046, 0.06, 0.04, 0.047, 0.077, 0.062, 0.042, 0.045, 0.035, 0.048, 0.062, 0.08, 0.049, 0.052, 0.038, 0.031, 0.077, 0.051, 0.048, 0.073, 0.037, 0.04, 0.054, 0.028, 0.051, 0.046, 0.031, 0.052, 0.037, 0.079, 0.044, 0.045, 0.053, 0.031, 0.035, 0.033, 0.063, 0.046, 0.043, 0.083, 0.074, 0.023, 0.095, 0.046, 0.046, 0.046, 0.039, 0.038, 0.04, 0.07, 0.042, 0.036, 0.049, 0.047]}, {\"histnorm\": \"probability\", \"marker\": {\"color\": \"#ed0400\"}, \"name\": \"Current\", \"nbinsx\": 10, \"opacity\": 0.6, \"type\": \"histogram\", \"x\": [0.068, 0.088, 0.058, 0.045, 0.044, 0.06, 0.036, 0.076, 0.04, 0.041, 0.037, 0.036, 0.033, 0.036, 0.039, 0.043, 0.033, 0.026, 0.048, 0.03, 0.04, 0.07, 0.032, 0.078, 0.078, 0.032, 0.078, 0.028, 0.056, 0.063, 0.054, 0.045, 0.036, 0.05, 0.039, 0.04, 0.048, 0.054, 0.04, 0.031, 0.044, 0.038, 0.046, 0.035, 0.029, 0.032, 0.052, 0.059, 0.053, 0.034, 0.098, 0.032, 0.034, 0.03, 0.036, 0.036, 0.035, 0.05, 0.047, 0.096, 0.036, 0.026, 0.035, 0.034, 0.065, 0.04, 0.043, 0.08, 0.065, 0.054, 0.079, 0.035, 0.039, 0.083, 0.036, 0.054, 0.073, 0.034, 0.031, 0.042, 0.028, 0.039, 0.053, 0.044, 0.044, 0.04, 0.05, 0.039, 0.054, 0.077, 0.037, 0.029, 0.036, 0.036, 0.042, 0.081, 0.072, 0.061, 0.037, 0.054, 0.05, 0.055, 0.067, 0.045, 0.012, 0.078, 0.04, 0.038, 0.046, 0.048, 0.074, 0.041, 0.079, 0.059, 0.055, 0.042, 0.037, 0.065, 0.066, 0.026, 0.073, 0.03, 0.035, 0.08, 0.048, 0.069, 0.047, 0.036, 0.048, 0.049, 0.046, 0.048, 0.039, 0.037, 0.035, 0.047, 0.037, 0.091, 0.035, 0.076, 0.071, 0.071, 0.027, 0.051, 0.047, 0.072, 0.034, 0.067, 0.025, 0.046, 0.051, 0.072, 0.084, 0.034, 0.023, 0.038, 0.025, 0.033, 0.094, 0.053, 0.084, 0.026, 0.024, 0.077, 0.055, 0.043, 0.057, 0.04, 0.083, 0.074, 0.095, 0.03, 0.03, 0.067, 0.029, 0.073, 0.04, 0.074, 0.088, 0.029, 0.073, 0.04, 0.019, 0.075, 0.043, 0.043, 0.095, 0.045, 0.05, 0.049, 0.062, 0.094, 0.06, 0.037, 0.048, 0.098, 0.034, 0.046, 0.071, 0.095, 0.036, 0.098, 0.06, 0.046, 0.036, 0.048, 0.076, 0.087, 0.032, 0.072, 0.043, 0.039, 0.031, 0.051, 0.043, 0.029, 0.046, 0.036, 0.038, 0.058, 0.062, 0.088, 0.047, 0.058, 0.032, 0.078, 0.032, 0.031, 0.034, 0.08, 0.034, 0.032, 0.084, 0.065, 0.022, 0.04, 0.046, 0.055, 0.04, 0.027, 0.052, 0.04, 0.029, 0.044, 0.048, 0.031, 0.035, 0.078, 0.074, 0.062, 0.037, 0.078, 0.045, 0.042, 0.084, 0.036, 0.093, 0.04, 0.039, 0.077, 0.078, 0.042, 0.028, 0.037, 0.045, 0.044, 0.041, 0.071, 0.081, 0.05, 0.043, 0.015, 0.051, 0.091, 0.028, 0.045, 0.045, 0.037, 0.08, 0.035, 0.041, 0.027, 0.048, 0.042, 0.038, 0.038, 0.047, 0.017, 0.036, 0.038, 0.035, 0.036, 0.074, 0.046, 0.062, 0.044, 0.046, 0.037, 0.077, 0.04, 0.029, 0.092, 0.071, 0.025, 0.027, 0.046, 0.046, 0.073, 0.041, 0.022, 0.047, 0.062, 0.047, 0.04, 0.057, 0.044, 0.086, 0.045, 0.049, 0.051, 0.045, 0.071, 0.031, 0.054, 0.069, 0.072, 0.04, 0.059, 0.074, 0.05, 0.028, 0.028, 0.072, 0.055, 0.078, 0.053, 0.034, 0.038, 0.029, 0.047, 0.036, 0.055, 0.043, 0.051, 0.05, 0.031, 0.044, 0.028, 0.032, 0.057, 0.077, 0.051, 0.068, 0.082, 0.076, 0.057, 0.045, 0.06, 0.088, 0.036, 0.077, 0.053, 0.056, 0.034, 0.053, 0.076, 0.047, 0.038, 0.042, 0.016, 0.054, 0.045, 0.053, 0.035, 0.036, 0.082, 0.031, 0.047, 0.033, 0.049, 0.078, 0.04, 0.06, 0.042, 0.08, 0.031, 0.044, 0.032, 0.044, 0.053, 0.077, 0.055, 0.044, 0.04, 0.037, 0.087, 0.043, 0.078, 0.032, 0.086, 0.041, 0.047, 0.035, 0.036, 0.04, 0.031, 0.062, 0.034, 0.028, 0.036, 0.033, 0.032, 0.077, 0.021, 0.031, 0.071, 0.044, 0.056, 0.078, 0.049, 0.05, 0.057, 0.062, 0.034, 0.031, 0.066, 0.052, 0.079, 0.04, 0.031, 0.057, 0.034, 0.034, 0.048, 0.029, 0.043, 0.07, 0.045, 0.041, 0.076, 0.034, 0.057, 0.067, 0.074, 0.033, 0.035, 0.054, 0.046, 0.034, 0.043, 0.04, 0.027, 0.052, 0.071, 0.053, 0.035, 0.089, 0.045, 0.032, 0.035, 0.044, 0.063, 0.039, 0.057, 0.038, 0.033, 0.036, 0.06, 0.086, 0.058, 0.032, 0.044, 0.038, 0.038, 0.08, 0.031, 0.035, 0.036, 0.093, 0.043, 0.054, 0.036, 0.046, 0.052, 0.041, 0.058, 0.046, 0.062, 0.085, 0.021, 0.036, 0.055, 0.079, 0.049, 0.076, 0.039, 0.042, 0.028, 0.051, 0.088, 0.033, 0.033, 0.073, 0.047, 0.044, 0.043, 0.033, 0.049, 0.031, 0.083, 0.048, 0.04, 0.044, 0.043, 0.047, 0.07, 0.025, 0.034, 0.084, 0.037, 0.042, 0.076, 0.046, 0.044, 0.063, 0.033, 0.041, 0.037, 0.049, 0.024, 0.046, 0.098, 0.039, 0.041, 0.048, 0.06, 0.036, 0.028, 0.064, 0.032, 0.038, 0.03, 0.022, 0.045, 0.034, 0.044, 0.046, 0.053, 0.036, 0.054, 0.078, 0.05, 0.026, 0.043, 0.036, 0.032, 0.05, 0.074, 0.027, 0.053, 0.048, 0.038, 0.039, 0.077, 0.038, 0.065, 0.041, 0.029, 0.027, 0.08, 0.036, 0.027, 0.051, 0.022, 0.042, 0.043, 0.042, 0.051, 0.094, 0.056, 0.05, 0.051, 0.039, 0.027, 0.051, 0.035, 0.06, 0.052, 0.076, 0.048, 0.023, 0.033, 0.057, 0.092, 0.045, 0.046, 0.077, 0.042, 0.036, 0.085, 0.027, 0.023, 0.04, 0.041, 0.052, 0.041, 0.053, 0.064, 0.085, 0.084, 0.039, 0.046, 0.043, 0.036, 0.021, 0.045, 0.033, 0.048, 0.046, 0.037, 0.029, 0.017, 0.065, 0.081, 0.063, 0.036, 0.044, 0.067, 0.028, 0.046, 0.043, 0.062, 0.053, 0.046, 0.053, 0.045, 0.055, 0.037, 0.054, 0.088, 0.053, 0.031, 0.059, 0.082, 0.042, 0.048, 0.059, 0.075, 0.068, 0.066, 0.077, 0.045, 0.097, 0.041, 0.069, 0.043, 0.05, 0.031, 0.053, 0.037, 0.066, 0.05, 0.037, 0.061, 0.042, 0.09, 0.036, 0.056, 0.052, 0.073, 0.029, 0.047, 0.038, 0.031, 0.039, 0.037, 0.036, 0.045, 0.045, 0.045, 0.035, 0.075, 0.096, 0.05, 0.057, 0.026, 0.094, 0.057, 0.054, 0.041, 0.034, 0.041, 0.06, 0.034, 0.045, 0.042, 0.039, 0.031, 0.042, 0.097, 0.048, 0.075, 0.052, 0.08, 0.065, 0.029, 0.045, 0.03, 0.037, 0.035, 0.038, 0.075, 0.054, 0.061, 0.078, 0.067, 0.044, 0.042, 0.046, 0.046, 0.078, 0.076, 0.049, 0.053, 0.053, 0.044, 0.044, 0.041, 0.089, 0.059, 0.073, 0.036, 0.036, 0.055, 0.044, 0.053, 0.031, 0.053, 0.092, 0.034, 0.044, 0.037, 0.043, 0.057, 0.044, 0.034, 0.076, 0.035, 0.042, 0.07, 0.046, 0.037, 0.048, 0.043, 0.049, 0.03, 0.084, 0.082, 0.089, 0.097, 0.071, 0.046, 0.081, 0.044, 0.063, 0.03, 0.023, 0.044, 0.033, 0.053, 0.041, 0.061, 0.024, 0.035, 0.032, 0.034, 0.047, 0.091, 0.045, 0.053, 0.052, 0.052, 0.081, 0.067, 0.021, 0.056, 0.053, 0.044, 0.035, 0.048, 0.055, 0.077, 0.05, 0.046, 0.064, 0.051, 0.032, 0.046, 0.057, 0.066, 0.046, 0.025, 0.031, 0.095, 0.021, 0.053, 0.041, 0.028, 0.093, 0.02, 0.05, 0.067, 0.031, 0.046, 0.043, 0.041, 0.056, 0.086, 0.03, 0.036, 0.029, 0.022, 0.053, 0.038, 0.056, 0.086, 0.09, 0.05, 0.057, 0.026, 0.034, 0.059, 0.033, 0.054, 0.079, 0.032, 0.084, 0.03, 0.06, 0.039, 0.047, 0.032, 0.028, 0.043, 0.04, 0.032, 0.046, 0.046, 0.046, 0.059, 0.042, 0.05, 0.05, 0.073, 0.035, 0.027, 0.052, 0.058, 0.049, 0.042, 0.083, 0.032, 0.044, 0.038, 0.084, 0.042, 0.051, 0.047, 0.045, 0.085, 0.079, 0.031, 0.04, 0.066, 0.059, 0.043, 0.088, 0.035, 0.039, 0.053, 0.055, 0.066, 0.075, 0.032, 0.045, 0.038, 0.026, 0.036, 0.079, 0.034, 0.051, 0.083, 0.071, 0.037, 0.036, 0.033, 0.045, 0.046, 0.055, 0.048, 0.034, 0.033, 0.083, 0.071, 0.03, 0.03, 0.05, 0.048, 0.036, 0.037, 0.036, 0.058, 0.029, 0.036, 0.027, 0.05, 0.057, 0.046, 0.035, 0.043, 0.046, 0.046, 0.045, 0.078, 0.075, 0.033, 0.076, 0.082, 0.085, 0.043, 0.049, 0.08, 0.032, 0.036, 0.055, 0.05, 0.088, 0.079, 0.034, 0.03, 0.051, 0.048, 0.047, 0.05, 0.038, 0.053, 0.036, 0.055, 0.069, 0.053, 0.031, 0.048]}], \"layout\": {\"legend\": {\"orientation\": \"h\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"chlorides\"}}, \"yaxis\": {\"title\": {\"text\": \"Share\"}}}}}, {\"id\": \"chlorides_drift\", \"params\": {\"title\": \"\", \"size\": 2, \"text\": \"\", \"type\": \"big_graph\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"Current\", \"type\": \"scatter\", \"x\": [443, 319, 703, 526, 76, 963, 1260, 532, 1561, 517, 506, 1557, 271, 1058, 1381, 1039, 542, 107, 161, 1301, 519, 1021, 1213, 223, 1286, 1426, 1234, 587, 1183, 182, 567, 1492, 724, 1262, 1509, 657, 1137, 913, 1445, 342, 781, 14, 971, 1072, 1254, 678, 1175, 1481, 1370, 1443, 18, 1151, 1380, 434, 1430, 554, 53, 535, 1050, 427, 259, 124, 961, 1488, 1563, 720, 1291, 1061, 425, 846, 1147, 204, 1317, 618, 1088, 927, 1196, 582, 1194, 360, 1449, 862, 1135, 1453, 1442, 1017, 268, 685, 317, 775, 1086, 942, 1052, 801, 1362, 219, 379, 649, 1195, 479, 1542, 609, 930, 1105, 34, 708, 686, 1132, 693, 733, 1562, 1190, 473, 737, 672, 969, 858, 5, 1556, 298, 80, 940, 361, 1154, 1545, 1622, 784, 19, 1522, 996, 54, 1415, 1564, 1593, 1236, 9, 353, 1222, 113, 1010, 1263, 877, 82, 381, 818, 1210, 1409, 66, 254, 817, 92, 1340, 122, 1357, 511, 1546, 692, 17, 1248, 414, 52, 1296, 191, 175, 233, 900, 785, 935, 1298, 156, 487, 159, 481, 1255, 1597, 253, 1491, 841, 187, 914, 979, 249, 1114, 1366, 814, 716, 465, 875, 1242, 670, 299, 593, 436, 728, 141, 229, 1057, 912, 994, 648, 799, 1164, 1073, 4, 516, 152, 1267, 1237, 752, 1150, 825, 402, 1277, 575, 1437, 838, 390, 1505, 1093, 1026, 1611, 31, 674, 866, 1328, 616, 861, 897, 148, 303, 1451, 602, 1125, 1614, 1047, 1462, 1148, 574, 899, 1327, 89, 530, 408, 1192, 177, 520, 993, 326, 992, 717, 895, 1421, 984, 240, 85, 557, 278, 938, 1425, 958, 1232, 1149, 171, 1220, 227, 891, 489, 1391, 1184, 1032, 393, 726, 192, 260, 880, 1592, 1537, 491, 759, 1473, 959, 1454, 1015, 965, 1393, 1489, 1256, 133, 202, 1036, 438, 483, 666, 461, 142, 1181, 1580, 308, 538, 170, 310, 743, 1101, 1179, 315, 22, 1529, 45, 879, 1110, 61, 522, 1397, 829, 576, 1193, 1202, 1549, 1375, 27, 527, 1186, 1273, 828, 539, 1049, 1014, 412, 1091, 1497, 1595, 347, 2, 844, 1490, 632, 211, 1582, 918, 1217, 1115, 744, 459, 579, 771, 96, 178, 108, 1516, 805, 1240, 440, 619, 1, 1315, 1239, 1347, 512, 48, 722, 1517, 1621, 446, 565, 568, 796, 231, 1070, 1063, 215, 513, 704, 354, 55, 881, 746, 641, 762, 279, 1145, 1468, 224, 302, 911, 218, 1079, 874, 1266, 792, 1136, 372, 295, 364, 580, 1615, 688, 1560, 333, 467, 968, 399, 760, 740, 953, 1520, 1446, 1214, 615, 524, 546, 1495, 1324, 452, 1515, 432, 863, 442, 847, 276, 456, 184, 1116, 1200, 458, 1508, 1087, 1478, 376, 1479, 563, 1146, 1507, 42, 944, 823, 1228, 656, 1227, 198, 309, 761, 1158, 549, 47, 1209, 529, 933, 220, 1624, 1591, 651, 536, 362, 1314, 420, 564, 475, 482, 140, 679, 1436, 1334, 77, 39, 570, 962, 808, 981, 322, 1471, 251, 695, 1128, 813, 757, 820, 853, 831, 1246, 58, 553, 597, 241, 1288, 330, 1005, 789, 1617, 56, 1126, 411, 548, 501, 1211, 642, 558, 1605, 745, 878, 1056, 667, 435, 29, 270, 35, 1157, 422, 1310, 114, 1524, 1422, 689, 1018, 1168, 1360, 985, 1191, 793, 1363, 1504, 581, 644, 1199, 621, 1612, 494, 665, 431, 1095, 638, 1042, 1404, 1030, 40, 1121, 75, 1588, 1417, 247, 713, 1590, 186, 646, 312, 8, 1551, 1302, 1044, 768, 884, 1585, 1618, 826, 445, 712, 464, 1308, 195, 655, 1487, 1389, 1356, 243, 401, 572, 1074, 810, 477, 1460, 1544, 1182, 285, 471, 936, 1238, 578, 1034, 1535, 1513, 426, 1311, 1001, 986, 1038, 980, 1064, 620, 982, 1565, 194, 474, 1428, 569, 1165, 49, 1333, 1401, 1307, 1076, 991, 1566, 44, 1342, 245, 943, 300, 583, 1013, 269, 1548, 313, 776, 283, 1444, 540, 406, 338, 466, 363, 1002, 320, 1264, 1089, 70, 1027, 500, 10, 907, 505, 1295, 864, 1432, 64, 1122, 1543, 416, 898, 654, 205, 328, 486, 999, 1377, 970, 528, 1558, 418, 1379, 1299, 1378, 590, 1247, 1174, 472, 1323, 131, 15, 439, 1528, 476, 725, 1203, 1109, 1003, 1365, 103, 1279, 60, 871, 78, 391, 165, 1335, 1410, 1129, 960, 349, 185, 1464, 371, 117, 1398, 252, 507, 1613, 311, 1419, 395, 987, 358, 263, 359, 1559, 1305, 1506, 1376, 1055, 634, 1552, 16, 51, 1258, 493, 601, 997, 351, 711, 1604, 1486, 1339, 794, 97, 1475, 1423, 196, 748, 183, 1433, 1579, 613, 1536, 989, 682, 533, 610, 687, 892, 81, 896, 397, 267, 589, 386, 795, 1416, 132, 265, 1609, 1461, 883, 88, 840, 988, 1354, 676, 916, 629, 1269, 924, 294, 261, 1541, 1081, 1348, 1576, 405, 1616, 356, 608, 1097, 239, 1249, 1099, 1403, 119, 1096, 977, 751, 374, 453, 110, 1336, 1390, 905, 1287, 503, 1031, 1331, 1224, 729, 410, 1540, 367, 1607, 384, 200, 65, 1358, 1394, 1023, 272, 1418, 955, 677, 238, 1133, 974, 541, 478, 1257, 1265, 1465, 1589, 1326, 188, 1083, 681, 906, 1092, 1276, 316, 214, 1078, 1502, 1084, 660, 1142, 531, 255, 30, 662, 1253, 230, 157, 1343, 385, 1169, 380, 1188, 721, 264, 787, 101, 13, 1274, 68, 1024, 1170, 1156, 71, 1577, 566, 1372, 1245, 798, 523, 626, 495, 937, 155, 887, 758, 921, 790, 1349, 1230, 366, 1531, 983, 839, 228, 417, 206, 742, 79, 190, 492, 948, 145, 923, 318, 824, 1374, 1124, 1463, 596, 457, 144, 1359, 1292, 1045, 764, 842, 1140, 1408, 995, 904, 592, 1458, 135, 83, 1062, 154, 1440, 1283, 773, 1414, 127, 1177, 1318, 1413, 403, 150, 346, 413, 1303, 1523, 1619, 394, 1261, 1054, 208, 496, 352, 95, 625, 571, 37, 485, 143, 946, 158, 552, 1527, 1029, 518, 1180, 1218, 236, 1100, 222, 1431, 345, 1459, 120, 661, 588, 1623, 1493, 62, 1429, 811, 193, 235, 181, 1320, 389, 1103, 521, 669, 332, 258, 1369, 1538, 957, 382, 1382, 1567, 331, 934, 614, 262, 893, 6, 266, 769, 38, 901, 1573, 1578, 545, 118, 783, 652, 1025, 706, 105, 1189, 484, 1569, 630, 683, 20, 870, 242, 50, 162, 915, 966, 441, 867, 731, 1102, 1000, 1268, 1223, 822, 301, 723, 172], \"y\": [0.068, 0.088, 0.058, 0.045, 0.044, 0.06, 0.036, 0.076, 0.04, 0.041, 0.037, 0.036, 0.033, 0.036, 0.102, 0.039, 0.043, 0.033, 0.026, 0.048, 0.03, 0.04, 0.07, 0.032, 0.078, 0.078, 0.032, 0.078, 0.028, 0.056, 0.063, 0.054, 0.045, 0.036, 0.05, 0.039, 0.04, 0.048, 0.054, 0.04, 0.031, 0.044, 0.038, 0.046, 0.035, 0.029, 0.032, 0.052, 0.059, 0.053, 0.034, 0.098, 0.032, 0.034, 0.03, 0.122, 0.036, 0.036, 0.035, 0.05, 0.047, 0.096, 0.036, 0.026, 0.035, 0.034, 0.065, 0.04, 0.043, 0.08, 0.065, 0.054, 0.079, 0.035, 0.039, 0.083, 0.036, 0.054, 0.073, 0.034, 0.031, 0.042, 0.028, 0.039, 0.053, 0.044, 0.044, 0.04, 0.05, 0.039, 0.414, 0.054, 0.077, 0.037, 0.029, 0.036, 0.036, 0.042, 0.081, 0.072, 0.061, 0.037, 0.054, 0.05, 0.055, 0.067, 0.045, 0.012, 0.078, 0.04, 0.038, 0.046, 0.048, 0.074, 0.041, 0.079, 0.059, 0.055, 0.171, 0.042, 0.037, 0.065, 0.066, 0.026, 0.073, 0.03, 0.035, 0.194, 0.08, 0.048, 0.069, 0.047, 0.036, 0.048, 0.049, 0.046, 0.048, 0.039, 0.037, 0.035, 0.047, 0.037, 0.091, 0.035, 0.076, 0.118, 0.071, 0.071, 0.027, 0.051, 0.047, 0.072, 0.034, 0.067, 0.025, 0.046, 0.051, 0.072, 0.084, 0.034, 0.023, 0.038, 0.025, 0.033, 0.094, 0.053, 0.084, 0.026, 0.024, 0.077, 0.055, 0.23, 0.043, 0.057, 0.04, 0.083, 0.074, 0.095, 0.03, 0.03, 0.067, 0.029, 0.073, 0.04, 0.074, 0.088, 0.029, 0.073, 0.04, 0.019, 0.075, 0.043, 0.043, 0.095, 0.045, 0.05, 0.049, 0.062, 0.094, 0.06, 0.037, 0.048, 0.098, 0.034, 0.046, 0.071, 0.095, 0.036, 0.098, 0.06, 0.046, 0.414, 0.036, 0.048, 0.076, 0.087, 0.032, 0.102, 0.072, 0.043, 0.039, 0.031, 0.051, 0.043, 0.115, 0.029, 0.046, 0.036, 0.038, 0.058, 0.062, 0.088, 0.047, 0.058, 0.032, 0.078, 0.032, 0.031, 0.034, 0.08, 0.034, 0.032, 0.084, 0.065, 0.137, 0.022, 0.04, 0.046, 0.055, 0.04, 0.027, 0.052, 0.04, 0.029, 0.044, 0.048, 0.031, 0.035, 0.078, 0.074, 0.062, 0.037, 0.078, 0.045, 0.042, 0.084, 0.036, 0.093, 0.04, 0.039, 0.077, 0.078, 0.042, 0.028, 0.037, 0.045, 0.044, 0.041, 0.071, 0.081, 0.05, 0.043, 0.015, 0.051, 0.091, 0.028, 0.045, 0.045, 0.037, 0.08, 0.035, 0.041, 0.027, 0.048, 0.042, 0.038, 0.137, 0.038, 0.047, 0.017, 0.036, 0.038, 0.035, 0.036, 0.17, 0.074, 0.046, 0.062, 0.044, 0.046, 0.037, 0.077, 0.04, 0.029, 0.092, 0.071, 0.025, 0.027, 0.046, 0.046, 0.073, 0.041, 0.022, 0.047, 0.062, 0.146, 0.047, 0.04, 0.057, 0.044, 0.086, 0.045, 0.049, 0.051, 0.045, 0.071, 0.031, 0.054, 0.069, 0.072, 0.04, 0.059, 0.074, 0.05, 0.028, 0.028, 0.072, 0.055, 0.078, 0.053, 0.034, 0.038, 0.029, 0.047, 0.036, 0.055, 0.043, 0.051, 0.158, 0.05, 0.105, 0.031, 0.044, 0.028, 0.032, 0.057, 0.077, 0.051, 0.068, 0.082, 0.076, 0.057, 0.045, 0.06, 0.088, 0.036, 0.077, 0.053, 0.056, 0.034, 0.053, 0.076, 0.047, 0.038, 0.042, 0.016, 0.054, 0.045, 0.053, 0.035, 0.036, 0.082, 0.031, 0.047, 0.033, 0.049, 0.078, 0.04, 0.06, 0.042, 0.08, 0.031, 0.044, 0.032, 0.044, 0.053, 0.077, 0.055, 0.044, 0.04, 0.037, 0.087, 0.043, 0.078, 0.032, 0.086, 0.041, 0.047, 0.035, 0.036, 0.04, 0.031, 0.062, 0.413, 0.034, 0.028, 0.036, 0.033, 0.032, 0.077, 0.021, 0.031, 0.071, 0.044, 0.056, 0.078, 0.049, 0.214, 0.05, 0.057, 0.062, 0.034, 0.031, 0.066, 0.052, 0.079, 0.04, 0.031, 0.057, 0.034, 0.034, 0.048, 0.029, 0.043, 0.07, 0.045, 0.041, 0.076, 0.034, 0.057, 0.067, 0.074, 0.033, 0.035, 0.054, 0.046, 0.034, 0.043, 0.04, 0.027, 0.052, 0.211, 0.071, 0.053, 0.035, 0.089, 0.045, 0.032, 0.035, 0.044, 0.063, 0.039, 0.057, 0.038, 0.033, 0.036, 0.06, 0.086, 0.058, 0.11, 0.032, 0.044, 0.132, 0.038, 0.038, 0.08, 0.031, 0.035, 0.036, 0.093, 0.043, 0.176, 0.054, 0.036, 0.046, 0.052, 0.041, 0.058, 0.046, 0.062, 0.255, 0.085, 0.021, 0.036, 0.055, 0.079, 0.049, 0.076, 0.039, 0.042, 0.028, 0.051, 0.088, 0.033, 0.033, 0.073, 0.047, 0.044, 0.043, 0.033, 0.049, 0.031, 0.083, 0.048, 0.04, 0.044, 0.043, 0.047, 0.07, 0.025, 0.034, 0.084, 0.037, 0.042, 0.076, 0.046, 0.044, 0.063, 0.033, 0.041, 0.037, 0.049, 0.024, 0.046, 0.098, 0.039, 0.041, 0.118, 0.117, 0.048, 0.06, 0.036, 0.028, 0.064, 0.032, 0.038, 0.03, 0.022, 0.045, 0.212, 0.034, 0.044, 0.046, 0.053, 0.036, 0.054, 0.078, 0.05, 0.026, 0.043, 0.036, 0.032, 0.05, 0.074, 0.027, 0.053, 0.048, 0.038, 0.039, 0.077, 0.038, 0.065, 0.041, 0.029, 0.027, 0.08, 0.036, 0.027, 0.051, 0.022, 0.042, 0.043, 0.042, 0.051, 0.094, 0.056, 0.05, 0.051, 0.039, 0.027, 0.051, 0.035, 0.06, 0.052, 0.076, 0.048, 0.023, 0.033, 0.152, 0.057, 0.092, 0.045, 0.046, 0.077, 0.042, 0.036, 0.085, 0.027, 0.023, 0.04, 0.041, 0.052, 0.041, 0.053, 0.064, 0.085, 0.243, 0.084, 0.039, 0.046, 0.043, 0.036, 0.021, 0.045, 0.033, 0.048, 0.046, 0.037, 0.029, 0.017, 0.065, 0.081, 0.063, 0.036, 0.044, 0.067, 0.028, 0.174, 0.046, 0.043, 0.062, 0.053, 0.046, 0.053, 0.045, 0.055, 0.037, 0.054, 0.088, 0.053, 0.123, 0.031, 0.059, 0.082, 0.042, 0.048, 0.059, 0.075, 0.068, 0.066, 0.077, 0.045, 0.097, 0.041, 0.069, 0.043, 0.05, 0.031, 0.053, 0.037, 0.066, 0.05, 0.037, 0.061, 0.042, 0.09, 0.036, 0.056, 0.052, 0.073, 0.029, 0.047, 0.038, 0.031, 0.039, 0.037, 0.036, 0.105, 0.045, 0.045, 0.045, 0.035, 0.075, 0.096, 0.05, 0.057, 0.026, 0.118, 0.094, 0.057, 0.054, 0.041, 0.034, 0.041, 0.06, 0.034, 0.045, 0.042, 0.039, 0.031, 0.042, 0.097, 0.048, 0.075, 0.052, 0.08, 0.065, 0.029, 0.045, 0.03, 0.142, 0.037, 0.035, 0.038, 0.075, 0.054, 0.061, 0.105, 0.078, 0.099, 0.067, 0.114, 0.044, 0.042, 0.046, 0.046, 0.078, 0.076, 0.049, 0.053, 0.053, 0.044, 0.044, 0.118, 0.041, 0.089, 0.059, 0.073, 0.036, 0.036, 0.055, 0.044, 0.053, 0.031, 0.053, 0.092, 0.034, 0.044, 0.037, 0.043, 0.057, 0.044, 0.034, 0.076, 0.035, 0.042, 0.07, 0.046, 0.037, 0.048, 0.043, 0.049, 0.03, 0.084, 0.082, 0.089, 0.097, 0.071, 0.046, 0.081, 0.044, 0.063, 0.03, 0.023, 0.332, 0.044, 0.033, 0.053, 0.041, 0.061, 0.024, 0.176, 0.035, 0.032, 0.034, 0.047, 0.091, 0.045, 0.053, 0.052, 0.052, 0.081, 0.067, 0.021, 0.216, 0.056, 0.053, 0.044, 0.121, 0.035, 0.114, 0.048, 0.055, 0.077, 0.05, 0.046, 0.064, 0.051, 0.032, 0.046, 0.057, 0.066, 0.046, 0.025, 0.031, 0.119, 0.109, 0.095, 0.021, 0.053, 0.041, 0.028, 0.093, 0.02, 0.05, 0.067, 0.031, 0.046, 0.043, 0.041, 0.056, 0.086, 0.03, 0.036, 0.029, 0.022, 0.053, 0.038, 0.056, 0.086, 0.09, 0.05, 0.057, 0.026, 0.034, 0.059, 0.033, 0.054, 0.079, 0.032, 0.084, 0.03, 0.06, 0.039, 0.047, 0.032, 0.028, 0.043, 0.04, 0.032, 0.046, 0.046, 0.046, 0.059, 0.042, 0.05, 0.117, 0.05, 0.073, 0.035, 0.027, 0.052, 0.058, 0.049, 0.042, 0.083, 0.032, 0.044, 0.038, 0.084, 0.042, 0.051, 0.047, 0.045, 0.12, 0.085, 0.079, 0.031, 0.04, 0.066, 0.059, 0.043, 0.088, 0.035, 0.039, 0.053, 0.055, 0.066, 0.075, 0.032, 0.045, 0.038, 0.026, 0.036, 0.079, 0.034, 0.051, 0.083, 0.071, 0.037, 0.036, 0.033, 0.045, 0.046, 0.055, 0.048, 0.034, 0.033, 0.083, 0.071, 0.03, 0.03, 0.05, 0.048, 0.036, 0.037, 0.036, 0.058, 0.029, 0.036, 0.027, 0.05, 0.057, 0.046, 0.035, 0.043, 0.046, 0.046, 0.045, 0.078, 0.075, 0.033, 0.076, 0.082, 0.085, 0.043, 0.049, 0.08, 0.2, 0.032, 0.036, 0.055, 0.16, 0.05, 0.088, 0.079, 0.034, 0.03, 0.051, 0.048, 0.047, 0.05, 0.038, 0.053, 0.036, 0.055, 0.069, 0.053, 0.031, 0.048]}, {\"marker\": {\"color\": \"white\", \"opacity\": 0.005, \"size\": 0.01}, \"mode\": \"markers\", \"name\": \"Current\", \"showlegend\": false, \"type\": \"scatter\", \"x\": [2, 2], \"y\": [-0.039911869850479814, 0.14944186985047966]}], \"layout\": {\"legend\": {\"orientation\": \"h\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"shapes\": [{\"fillcolor\": \"LightGreen\", \"layer\": \"below\", \"line\": {\"width\": 0}, \"opacity\": 0.5, \"type\": \"rect\", \"x0\": 0, \"x1\": 1, \"xref\": \"paper\", \"y0\": -0.039911869850479814, \"y1\": 0.14944186985047966, \"yref\": \"y\"}, {\"line\": {\"color\": \"Green\", \"width\": 3}, \"name\": \"Reference\", \"type\": \"line\", \"x0\": 0, \"x1\": 1, \"xref\": \"paper\", \"y0\": 0.054764999999999925, \"y1\": 0.054764999999999925, \"yref\": \"y\"}], \"showlegend\": true, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"Index\"}}, \"yaxis\": {\"title\": {\"text\": \"chlorides\"}}}}}}, {\"id\": \"free.sulfur.dioxide_distr\", \"params\": {\"data\": [{\"histnorm\": \"probability\", \"marker\": {\"color\": \"#4d4d4d\"}, \"name\": \"Reference\", \"nbinsx\": 10, \"opacity\": 0.6, \"type\": \"histogram\", \"x\": [39.0, 34.0, 26.0, 25.0, 34.0, 20.0, 39.0, 33.0, 24.0, 26.0, 73.0, 76.0, 4.0, 56.0, 19.0, 41.5, 15.0, 41.0, 32.0, 23.0, 18.0, 26.0, 6.0, 17.0, 17.0, 21.0, 34.0, 9.0, 72.0, 36.0, 27.0, 28.0, 46.0, 30.0, 32.0, 40.0, 20.0, 25.0, 37.0, 33.0, 29.0, 15.0, 46.0, 35.0, 31.0, 8.0, 30.0, 61.0, 24.0, 30.0, 7.0, 23.0, 3.0, 96.0, 50.0, 21.0, 44.0, 59.0, 38.0, 47.0, 19.0, 12.0, 38.0, 18.0, 23.0, 5.0, 18.0, 34.0, 40.0, 15.0, 41.0, 24.0, 28.0, 12.0, 24.0, 6.0, 27.0, 22.0, 44.0, 45.0, 54.0, 27.0, 7.0, 30.0, 25.0, 26.0, 44.0, 60.0, 33.0, 50.0, 52.0, 12.0, 22.0, 10.0, 10.0, 50.0, 24.0, 14.0, 58.0, 4.0, 20.0, 54.0, 42.0, 14.0, 47.0, 10.0, 21.0, 10.0, 6.0, 24.0, 36.0, 13.0, 20.0, 28.0, 23.0, 25.0, 20.0, 39.0, 18.0, 22.0, 24.0, 19.0, 6.0, 29.0, 26.0, 37.5, 41.0, 12.0, 5.0, 24.0, 15.0, 26.0, 25.0, 37.0, 60.0, 55.0, 42.0, 36.0, 41.0, 20.0, 28.0, 27.0, 31.0, 12.0, 39.0, 21.0, 21.0, 7.0, 12.0, 36.0, 39.0, 5.0, 29.0, 50.0, 47.0, 8.0, 48.0, 39.0, 55.0, 23.0, 24.0, 36.0, 31.0, 32.0, 53.0, 16.0, 28.0, 15.0, 28.0, 7.0, 35.0, 13.0, 10.0, 4.0, 11.0, 52.0, 3.0, 41.0, 20.0, 77.0, 27.0, 36.0, 29.0, 41.0, 20.0, 35.0, 20.0, 21.0, 55.0, 19.0, 64.0, 52.0, 22.0, 7.0, 12.0, 30.0, 23.0, 15.0, 60.0, 24.0, 19.0, 23.0, 16.0, 34.0, 65.0, 9.0, 49.0, 46.0, 33.0, 13.0, 9.0, 38.0, 28.0, 11.0, 38.0, 38.0, 6.0, 17.0, 33.0, 5.0, 44.5, 26.0, 17.0, 24.0, 20.0, 54.0, 13.0, 3.0, 15.0, 28.0, 14.0, 36.0, 53.0, 47.0, 55.0, 43.0, 7.0, 14.0, 77.0, 22.0, 17.0, 12.0, 18.0, 53.0, 34.0, 29.0, 23.0, 28.0, 57.0, 53.0, 33.0, 42.0, 27.0, 45.0, 39.0, 49.0, 8.0, 23.0, 31.0, 37.0, 68.0, 31.0, 17.0, 22.0, 21.0, 23.0, 25.0, 37.0, 63.0, 29.0, 23.0, 44.0, 44.0, 43.0, 26.0, 18.0, 37.0, 7.0, 6.0, 12.0, 25.0, 24.0, 18.0, 38.0, 30.0, 16.0, 21.0, 34.0, 17.0, 26.0, 3.0, 45.0, 22.0, 27.0, 16.0, 29.0, 35.0, 7.0, 50.0, 18.0, 30.0, 33.0, 24.0, 66.0, 7.0, 20.0, 50.0, 21.0, 25.0, 12.0, 35.0, 3.0, 35.0, 26.0, 19.0, 24.0, 32.0, 36.0, 13.0, 59.0, 29.0, 23.5, 23.0, 20.0, 18.0, 22.0, 28.0, 38.0, 52.0, 61.0, 43.0, 8.0, 22.0, 45.0, 68.0, 29.0, 110.0, 9.0, 15.0, 29.0, 29.0, 8.0, 48.0, 5.0, 36.0, 20.0, 16.0, 43.0, 39.0, 53.0, 13.0, 11.0, 25.0, 41.0, 12.0, 35.0, 62.0, 17.0, 61.0, 29.0, 35.0, 47.0, 36.0, 47.0, 33.0, 39.0, 13.0, 40.0, 39.0, 26.0, 36.0, 36.0, 33.0, 52.0, 14.0, 17.0, 43.0, 16.0, 51.0, 45.0, 49.0, 47.0, 74.0, 3.0, 21.0, 49.0, 46.0, 29.0, 15.0, 47.0, 40.0, 61.0, 47.0, 29.0, 43.0, 30.0, 45.0, 40.0, 56.0, 48.5, 25.0, 22.0, 23.0, 17.0, 27.0, 9.0, 38.0, 17.0, 7.0, 29.0, 19.0, 35.0, 44.0, 36.0, 3.0, 10.0, 57.0, 35.0, 33.0, 53.0, 24.0, 15.0, 10.0, 14.0, 5.0, 26.0, 51.0, 42.0, 30.0, 17.0, 6.0, 29.0, 18.0, 34.0, 14.0, 7.0, 19.0, 7.0, 39.0, 31.0, 50.0, 29.0, 10.0, 8.0, 3.0, 44.0, 23.0, 38.0, 36.0, 43.0, 54.0, 49.0, 12.0, 36.0, 26.0, 19.0, 28.0, 78.0, 52.0, 14.0, 24.0, 13.0, 16.0, 35.0, 22.0, 18.0, 64.0, 6.0, 45.0, 6.0, 55.0, 44.0, 7.0, 16.0, 21.0, 15.0, 62.0, 9.0, 17.0, 56.0, 27.0, 19.0, 21.0, 3.0, 36.0, 24.0, 22.0, 16.0, 24.0, 14.0, 64.0, 73.0, 48.0, 20.0, 34.0, 5.0, 42.0, 38.0, 26.0, 31.0, 45.0, 16.0, 38.0, 14.0, 20.0, 19.0, 21.0, 6.0, 57.0, 48.0, 41.0, 35.0, 37.0, 45.0, 8.0, 35.0, 12.0, 6.0, 33.0, 49.0, 20.0, 29.0, 8.0, 26.0, 20.0, 49.0, 27.0, 27.0, 30.5, 26.0, 6.0, 66.0, 67.0, 44.0, 30.0, 48.0, 38.0, 25.0, 48.0, 48.0, 34.0, 28.0, 52.0, 86.0, 14.0, 40.0, 40.0, 15.0, 18.0, 27.0, 32.0, 36.0, 37.0, 7.0, 33.0, 35.0, 59.0, 51.0, 60.0, 29.0, 11.0, 20.0, 69.0, 35.0, 32.0, 37.0, 4.0, 31.0, 37.0, 47.0, 5.0, 25.0, 22.0, 17.0, 28.0, 3.0, 33.0, 48.0, 19.0, 51.0, 29.0, 36.0, 11.0, 48.0, 41.0, 27.0, 26.0, 17.0, 15.0, 15.0, 19.0, 44.0, 9.0, 37.0, 24.0, 45.0, 17.0, 45.0, 26.0, 13.0, 5.0, 8.0, 53.0, 14.0, 53.0, 52.0, 61.0, 24.0, 55.0, 23.0, 62.0, 29.0, 29.0, 21.0, 29.0, 43.0, 42.0, 36.0, 8.0, 44.0, 37.0, 18.0, 10.0, 27.0, 58.0, 27.0, 40.0, 21.0, 21.0, 24.0, 8.0, 16.0, 47.0, 3.0, 14.0, 43.0, 34.0, 17.0, 18.0, 36.0, 16.0, 17.0, 19.0, 35.0, 33.0, 16.0, 29.0, 42.0, 39.0, 15.0, 25.0, 40.0, 67.0, 45.0, 60.0, 18.0, 7.0, 15.0, 21.0, 41.0, 60.0, 29.0, 74.0, 40.0, 40.5, 24.0, 34.0, 27.0, 66.0, 20.0, 43.0, 56.0, 42.0, 55.0, 14.0, 29.0, 61.0, 52.0, 20.0, 38.0, 31.0, 35.0, 70.0, 31.0, 13.0, 9.0, 12.0, 32.0, 26.0, 35.0, 16.0, 32.0, 19.0, 26.0, 25.0, 10.0, 34.0, 54.0, 20.0, 28.0, 20.0, 7.0, 23.0, 66.0, 6.0, 33.0, 6.0, 36.0, 42.0, 38.0, 39.0, 15.0, 29.0, 44.0, 7.0, 88.0, 24.0, 26.0, 46.0, 6.0, 6.0, 29.0, 46.0, 10.0, 50.0, 53.0, 31.0, 49.0, 30.0, 63.0, 35.0, 13.0, 17.0, 68.0, 16.0, 35.0, 17.0, 59.0, 73.0, 17.0, 21.0, 32.0, 28.0, 53.0, 39.0, 21.0, 19.0, 38.0, 56.0, 37.0, 38.0, 25.0, 23.0, 29.0, 128.0, 20.0, 8.0, 44.0, 22.0, 33.0, 24.0, 14.0, 24.0, 17.0, 73.0, 23.0, 30.0, 61.0, 61.0, 47.0, 7.0, 35.0, 50.0, 47.0, 34.0, 34.0, 59.0, 45.0, 34.0, 53.0, 55.0, 47.0, 45.0, 46.0, 35.0, 31.0, 17.0, 27.0, 66.0, 22.0, 32.0, 57.0, 32.0, 12.0, 15.0, 19.0, 11.0, 54.0, 6.0, 24.0, 26.0, 16.0, 30.0, 29.0, 14.0, 12.0, 48.0, 14.0, 4.0, 21.0, 30.0, 33.0, 23.0, 10.0, 16.0, 5.0, 9.0, 51.0, 52.0, 21.0, 20.0, 57.0, 18.0, 27.0, 52.0, 30.0, 17.0, 53.0, 54.0, 24.0, 44.0, 37.0, 38.0, 36.0, 54.0, 8.0, 30.0, 6.0, 22.0, 28.0, 40.0, 48.0, 17.0, 41.0, 146.5, 18.0, 6.0, 12.0, 33.0, 8.0, 16.0, 20.0, 7.0, 14.0, 29.0, 58.0, 44.0, 60.0, 38.0, 36.0, 15.0, 26.0, 20.0, 24.0, 17.0, 18.0, 23.0, 22.0, 23.0, 9.0, 24.0, 26.0, 61.0, 24.0, 27.0, 13.0, 39.0, 36.0, 11.0, 33.0, 53.0, 18.0, 11.0, 33.0, 33.0, 11.0, 44.0, 27.0, 36.0, 6.0, 13.0, 34.0, 33.0, 64.0, 49.0, 40.0, 24.0, 14.0, 14.0, 52.0, 34.0, 38.0, 15.0, 47.0, 18.0, 20.0, 22.0, 31.0, 58.0, 52.5, 37.0, 38.0, 24.0, 17.0, 58.0, 23.0, 9.0, 3.0, 25.0, 7.0, 42.0, 18.0, 14.0, 54.0, 31.0, 62.0, 6.0, 26.0, 69.0, 15.0, 56.0, 4.0, 48.0, 57.0, 32.0, 45.0, 36.0, 24.0, 22.0, 70.0, 5.0, 34.0, 58.0, 19.0, 10.0, 37.0, 12.0, 15.0, 61.0, 10.0, 53.0, 35.0, 48.0, 13.0, 14.0, 23.0, 10.0, 81.0, 23.0, 47.0, 6.0, 52.0, 59.0, 5.0, 30.0, 38.0, 67.0, 24.0, 18.0, 68.0, 22.0, 48.0, 56.0, 31.0, 12.0, 53.0, 39.0, 20.0, 53.0, 46.0, 12.0, 16.0, 68.0, 46.0, 33.0, 13.0, 42.0, 28.0, 17.0, 47.0, 9.0, 50.0, 55.0, 31.0, 21.0, 10.0, 29.0, 40.0, 17.0, 16.0]}, {\"histnorm\": \"probability\", \"marker\": {\"color\": \"#ed0400\"}, \"name\": \"Current\", \"nbinsx\": 10, \"opacity\": 0.6, \"type\": \"histogram\", \"x\": [18.0, 39.0, 55.0, 24.0, 15.0, 33.0, 45.0, 23.0, 5.0, 27.0, 37.0, 21.0, 32.0, 57.0, 13.0, 29.0, 36.0, 36.0, 26.0, 48.0, 31.0, 29.0, 32.0, 25.0, 4.0, 10.0, 11.0, 1.0, 42.0, 53.0, 6.0, 22.0, 39.0, 32.0, 12.0, 39.0, 45.0, 52.0, 30.0, 46.0, 32.0, 35.0, 61.0, 32.0, 22.0, 34.0, 26.0, 35.0, 23.0, 59.0, 26.0, 12.0, 9.0, 37.0, 10.0, 45.0, 15.0, 49.0, 32.0, 60.0, 16.0, 10.0, 39.0, 31.0, 31.0, 37.0, 65.0, 31.0, 46.0, 11.0, 34.0, 23.0, 18.0, 23.0, 73.0, 35.0, 38.0, 28.0, 6.0, 22.0, 35.0, 14.0, 11.0, 37.0, 43.0, 37.0, 19.0, 51.0, 27.0, 46.0, 18.0, 34.0, 48.0, 45.0, 30.0, 15.0, 28.0, 31.0, 12.0, 11.0, 49.0, 32.0, 24.0, 38.0, 50.0, 35.0, 57.0, 36.0, 35.0, 31.0, 28.0, 26.0, 54.0, 32.0, 53.0, 11.0, 20.0, 27.0, 6.0, 23.0, 66.0, 34.0, 27.0, 19.0, 34.0, 22.0, 26.0, 14.0, 41.0, 20.0, 44.0, 40.0, 49.0, 10.0, 14.0, 60.0, 39.0, 46.0, 18.0, 28.0, 30.0, 26.0, 6.0, 51.0, 16.0, 9.0, 6.0, 16.0, 25.0, 36.0, 26.0, 13.0, 49.0, 35.0, 10.0, 58.0, 37.0, 15.0, 33.0, 26.0, 20.0, 34.0, 37.0, 32.0, 5.0, 35.0, 9.0, 35.0, 13.0, 23.0, 28.0, 19.0, 46.0, 33.0, 29.0, 21.0, 13.0, 10.0, 23.0, 74.0, 8.0, 23.0, 25.0, 21.0, 5.0, 23.0, 21.0, 10.0, 29.0, 22.0, 18.0, 24.0, 57.0, 10.0, 48.0, 20.0, 62.0, 5.0, 24.0, 14.0, 33.0, 45.0, 10.0, 29.0, 57.0, 27.0, 17.0, 46.0, 13.0, 4.0, 55.0, 16.0, 23.0, 55.0, 11.0, 10.0, 24.0, 8.0, 17.0, 20.0, 41.0, 33.0, 24.0, 14.0, 6.0, 39.0, 47.0, 69.0, 10.0, 31.0, 15.0, 16.0, 23.0, 49.0, 12.0, 10.0, 19.0, 36.0, 50.0, 8.0, 15.0, 32.0, 13.0, 24.0, 52.0, 38.0, 20.0, 6.0, 3.0, 31.0, 12.0, 45.0, 41.0, 5.0, 13.0, 46.0, 54.0, 38.0, 17.0, 32.0, 40.0, 29.0, 10.0, 45.0, 33.0, 15.0, 40.0, 54.0, 34.0, 54.0, 26.0, 1.0, 24.0, 10.0, 37.0, 45.0, 66.0, 81.0, 17.0, 22.0, 67.0, 15.0, 47.0, 17.0, 6.0, 36.0, 40.0, 45.0, 39.0, 40.0, 36.0, 26.0, 18.0, 55.0, 21.0, 26.0, 5.0, 29.0, 38.5, 21.0, 41.0, 18.0, 40.0, 24.0, 51.0, 38.0, 32.0, 26.0, 79.5, 34.0, 24.0, 18.0, 67.0, 37.0, 20.0, 12.0, 35.0, 20.0, 32.0, 24.0, 13.0, 25.0, 23.0, 11.0, 4.0, 27.0, 34.0, 34.0, 15.0, 56.0, 3.0, 62.0, 56.0, 16.0, 44.0, 28.0, 26.0, 44.0, 15.0, 32.0, 32.0, 6.0, 16.0, 30.0, 22.0, 31.0, 15.0, 51.0, 18.0, 24.0, 29.0, 12.0, 19.5, 30.0, 45.0, 18.0, 21.0, 35.0, 47.0, 52.0, 16.0, 23.0, 22.0, 39.0, 21.0, 29.0, 28.0, 25.0, 13.0, 21.0, 12.0, 45.0, 39.0, 26.0, 27.0, 7.0, 6.0, 47.0, 68.0, 15.0, 43.0, 12.0, 46.0, 26.0, 36.0, 6.0, 62.0, 45.0, 44.0, 21.0, 14.0, 31.0, 13.0, 66.0, 34.0, 25.0, 8.0, 47.0, 26.0, 67.0, 34.0, 27.0, 29.0, 54.0, 56.0, 6.0, 5.0, 58.0, 45.0, 37.0, 10.0, 13.0, 41.0, 12.0, 35.0, 17.0, 9.0, 17.0, 40.0, 6.0, 34.0, 38.0, 39.0, 9.0, 25.0, 37.0, 7.0, 26.0, 30.0, 11.0, 29.0, 22.0, 21.0, 34.0, 45.0, 19.0, 31.0, 5.0, 47.0, 21.0, 26.0, 33.0, 33.0, 5.0, 25.0, 42.0, 40.0, 40.0, 54.0, 28.0, 46.0, 46.0, 52.0, 25.0, 29.0, 53.0, 95.0, 24.0, 42.0, 17.0, 53.0, 24.0, 35.0, 54.0, 53.0, 52.0, 62.0, 34.0, 48.0, 15.0, 36.0, 37.0, 11.0, 31.0, 26.0, 15.0, 69.0, 34.0, 11.0, 29.0, 27.0, 24.0, 52.0, 44.0, 39.0, 31.0, 27.0, 6.0, 50.0, 11.0, 49.0, 30.0, 17.0, 51.0, 20.0, 15.0, 23.0, 18.0, 23.0, 11.0, 63.0, 36.0, 23.0, 15.0, 30.0, 41.0, 57.0, 16.0, 80.0, 23.0, 28.0, 6.0, 40.0, 27.0, 49.0, 39.0, 12.0, 15.0, 29.0, 62.0, 27.0, 7.0, 15.0, 25.0, 37.0, 46.0, 30.0, 35.0, 14.0, 40.0, 57.0, 20.0, 8.0, 8.0, 18.0, 57.0, 70.5, 54.0, 13.0, 29.0, 25.0, 32.0, 61.0, 55.0, 12.0, 53.0, 41.0, 50.0, 14.0, 64.0, 58.0, 68.0, 29.0, 29.0, 12.0, 38.0, 22.0, 10.0, 9.0, 19.0, 42.0, 31.0, 17.0, 18.0, 31.0, 13.0, 34.0, 22.0, 34.0, 60.0, 16.0, 56.0, 27.0, 45.0, 41.0, 24.0, 16.0, 35.0, 31.0, 6.0, 43.0, 53.0, 14.0, 32.0, 21.0, 71.0, 36.0, 67.0, 12.0, 11.0, 42.0, 7.0, 70.0, 27.0, 37.0, 7.0, 33.0, 37.0, 20.0, 28.0, 21.0, 34.0, 19.0, 48.0, 23.0, 44.0, 5.0, 54.0, 49.0, 23.0, 29.0, 17.0, 37.0, 81.0, 8.0, 16.0, 3.0, 28.0, 9.0, 64.0, 29.0, 68.0, 50.0, 3.0, 26.0, 64.0, 5.0, 37.0, 19.0, 18.0, 58.0, 30.0, 38.0, 29.0, 18.0, 9.0, 5.5, 5.0, 50.0, 31.0, 29.0, 27.0, 24.0, 35.0, 25.0, 61.0, 20.0, 20.0, 29.0, 22.0, 8.0, 14.0, 66.0, 46.0, 49.0, 53.0, 23.0, 36.0, 15.0, 40.0, 19.0, 54.0, 22.0, 48.5, 61.0, 47.0, 18.0, 5.0, 16.0, 65.0, 27.0, 20.0, 28.0, 6.0, 18.0, 26.0, 19.0, 22.0, 32.0, 36.0, 15.0, 50.0, 22.0, 40.0, 4.0, 24.0, 33.0, 49.0, 20.0, 24.0, 57.0, 44.0, 34.0, 9.0, 105.0, 16.0, 44.0, 35.0, 34.0, 56.0, 53.0, 23.0, 23.0, 46.0, 40.0, 14.0, 35.0, 22.0, 45.0, 31.0, 42.0, 60.0, 15.0, 28.0, 25.0, 31.0, 11.0, 61.0, 5.0, 21.0, 64.0, 20.0, 19.0, 34.0, 18.0, 18.0, 26.0, 63.0, 37.0, 34.0, 59.0, 33.0, 20.0, 10.0, 49.0, 15.0, 61.0, 14.0, 51.0, 26.0, 8.0, 4.0, 15.0, 43.0, 6.0, 64.0, 50.5, 22.0, 26.0, 20.0, 17.0, 9.0, 17.0, 44.5, 54.0, 54.0, 17.0, 11.0, 10.0, 11.0, 28.0, 11.0, 12.0, 6.0, 35.0, 15.0, 7.0, 25.0, 4.0, 42.0, 52.0, 33.0, 48.5, 40.0, 20.0, 12.0, 10.0, 41.0, 52.0, 57.0, 25.0, 18.0, 25.0, 26.0, 31.0, 8.0, 51.0, 25.0, 31.0, 14.0, 46.0, 67.0, 41.0, 26.0, 16.0, 17.0, 6.0, 44.0, 53.0, 45.0, 48.0, 11.0, 54.0, 30.0, 8.0, 72.0, 25.0, 32.0, 81.0, 46.0, 36.0, 52.0, 36.0, 63.0, 42.0, 60.5, 15.0, 16.0, 17.0, 6.0, 45.0, 34.0, 53.0, 41.0, 5.0, 45.0, 33.0, 33.0, 6.0, 16.0, 3.0, 52.0, 45.0, 15.0, 30.0, 50.0, 12.0, 25.0, 25.0, 35.0, 39.0, 6.0, 40.0, 11.0, 16.0, 34.0, 7.0, 5.0, 17.0, 48.5, 51.0, 39.0, 15.0, 14.0, 29.0, 6.0, 21.0, 58.0, 64.0, 62.0, 68.0, 24.0, 9.0, 19.0, 10.0, 44.0, 44.0, 33.0, 33.0, 8.0, 5.0, 21.0, 25.0, 26.0, 73.0, 32.0, 31.0, 47.0, 24.0, 14.0, 21.0, 56.0, 34.0, 37.0, 67.0, 42.0, 42.0, 30.0, 29.0, 26.0, 7.0, 50.0, 39.0, 19.0, 16.0, 56.0, 57.0, 40.0, 40.0, 49.0, 18.0, 48.0, 38.0, 17.0, 26.0, 6.0, 56.0, 25.0, 15.0, 18.0, 26.0, 29.0, 17.0, 10.0, 3.0, 10.0, 27.0, 26.0, 38.0, 3.0, 23.0, 43.0, 4.0, 32.0, 47.0, 37.0, 43.0, 36.0, 3.0, 29.0, 60.0, 54.0, 40.0, 69.0, 5.0, 48.0, 32.0, 17.0, 5.0, 27.0, 32.0, 36.0, 14.0, 30.0, 41.0, 36.0, 55.0, 59.0, 17.0, 7.0, 15.0, 31.0, 29.0, 52.0, 33.0, 43.0, 23.0, 25.0, 14.0, 35.0, 32.0, 44.0, 21.0, 31.0, 10.0, 18.0, 34.0, 51.0, 52.0, 26.0, 6.0, 59.0, 29.0, 8.0, 17.0, 31.0, 12.0, 11.0, 5.0, 36.0, 7.0, 25.0, 34.0, 15.0, 39.0, 16.0, 22.0, 34.0, 20.0, 50.0, 44.0, 44.0, 38.0, 46.0, 24.0, 52.0, 20.0, 16.0, 13.0, 32.0]}], \"layout\": {\"legend\": {\"orientation\": \"h\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"free.sulfur.dioxide\"}}, \"yaxis\": {\"title\": {\"text\": \"Share\"}}}}}, {\"id\": \"free.sulfur.dioxide_drift\", \"params\": {\"title\": \"\", \"size\": 2, \"text\": \"\", \"type\": \"big_graph\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"Current\", \"type\": \"scatter\", \"x\": [443, 319, 703, 526, 76, 963, 1260, 532, 1561, 517, 506, 1557, 271, 1058, 1381, 1039, 542, 107, 161, 1301, 519, 1021, 1213, 223, 1286, 1426, 1234, 587, 1183, 182, 567, 1492, 724, 1262, 1509, 657, 1137, 913, 1445, 342, 781, 14, 971, 1072, 1254, 678, 1175, 1481, 1370, 1443, 18, 1151, 1380, 434, 1430, 554, 53, 535, 1050, 427, 259, 124, 961, 1488, 1563, 720, 1291, 1061, 425, 846, 1147, 204, 1317, 618, 1088, 927, 1196, 582, 1194, 360, 1449, 862, 1135, 1453, 1442, 1017, 268, 685, 317, 775, 1086, 942, 1052, 801, 1362, 219, 379, 649, 1195, 479, 1542, 609, 930, 1105, 34, 708, 686, 1132, 693, 733, 1562, 1190, 473, 737, 672, 969, 858, 5, 1556, 298, 80, 940, 361, 1154, 1545, 1622, 784, 19, 1522, 996, 54, 1415, 1564, 1593, 1236, 9, 353, 1222, 113, 1010, 1263, 877, 82, 381, 818, 1210, 1409, 66, 254, 817, 92, 1340, 122, 1357, 511, 1546, 692, 17, 1248, 414, 52, 1296, 191, 175, 233, 900, 785, 935, 1298, 156, 487, 159, 481, 1255, 1597, 253, 1491, 841, 187, 914, 979, 249, 1114, 1366, 814, 716, 465, 875, 1242, 670, 299, 593, 436, 728, 141, 229, 1057, 912, 994, 648, 799, 1164, 1073, 4, 516, 152, 1267, 1237, 752, 1150, 825, 402, 1277, 575, 1437, 838, 390, 1505, 1093, 1026, 1611, 31, 674, 866, 1328, 616, 861, 897, 148, 303, 1451, 602, 1125, 1614, 1047, 1462, 1148, 574, 899, 1327, 89, 530, 408, 1192, 177, 520, 993, 326, 992, 717, 895, 1421, 984, 240, 85, 557, 278, 938, 1425, 958, 1232, 1149, 171, 1220, 227, 891, 489, 1391, 1184, 1032, 393, 726, 192, 260, 880, 1592, 1537, 491, 759, 1473, 959, 1454, 1015, 965, 1393, 1489, 1256, 133, 202, 1036, 438, 483, 666, 461, 142, 1181, 1580, 308, 538, 170, 310, 743, 1101, 1179, 315, 22, 1529, 45, 879, 1110, 61, 522, 1397, 829, 576, 1193, 1202, 1549, 1375, 27, 527, 1186, 1273, 828, 539, 1049, 1014, 412, 1091, 1497, 1595, 347, 2, 844, 1490, 632, 211, 1582, 918, 1217, 1115, 744, 459, 579, 771, 96, 178, 108, 1516, 805, 1240, 440, 619, 1, 1315, 1239, 1347, 512, 48, 722, 1517, 1621, 446, 565, 568, 796, 231, 1070, 1063, 215, 513, 704, 354, 55, 881, 746, 641, 762, 279, 1145, 1468, 224, 302, 911, 218, 1079, 874, 1266, 792, 1136, 372, 295, 364, 580, 1615, 688, 1560, 333, 467, 968, 399, 760, 740, 953, 1520, 1446, 1214, 615, 524, 546, 1495, 1324, 452, 1515, 432, 863, 442, 847, 276, 456, 184, 1116, 1200, 458, 1508, 1087, 1478, 376, 1479, 563, 1146, 1507, 42, 944, 823, 1228, 656, 1227, 198, 309, 761, 1158, 549, 47, 1209, 529, 933, 220, 1624, 1591, 651, 536, 362, 1314, 420, 564, 475, 482, 140, 679, 1436, 1334, 77, 39, 570, 962, 808, 981, 322, 1471, 251, 695, 1128, 813, 757, 820, 853, 831, 1246, 58, 553, 597, 241, 1288, 330, 1005, 789, 1617, 56, 1126, 411, 548, 501, 1211, 642, 558, 1605, 745, 878, 1056, 667, 435, 29, 270, 35, 1157, 422, 1310, 114, 1524, 1422, 689, 1018, 1168, 1360, 985, 1191, 793, 1363, 1504, 581, 644, 1199, 621, 1612, 494, 665, 431, 1095, 638, 1042, 1404, 1030, 40, 1121, 75, 1588, 1417, 247, 713, 1590, 186, 646, 312, 8, 1551, 1302, 1044, 768, 884, 1585, 1618, 826, 445, 712, 464, 1308, 195, 655, 1487, 1389, 1356, 243, 401, 572, 1074, 810, 477, 1460, 1544, 1182, 285, 471, 936, 1238, 578, 1034, 1535, 1513, 426, 1311, 1001, 986, 1038, 980, 1064, 620, 982, 1565, 194, 474, 1428, 569, 1165, 49, 1333, 1401, 1307, 1076, 991, 1566, 44, 1342, 245, 943, 300, 583, 1013, 269, 1548, 313, 776, 283, 1444, 540, 406, 338, 466, 363, 1002, 320, 1264, 1089, 70, 1027, 500, 10, 907, 505, 1295, 864, 1432, 64, 1122, 1543, 416, 898, 654, 205, 328, 486, 999, 1377, 970, 528, 1558, 418, 1379, 1299, 1378, 590, 1247, 1174, 472, 1323, 131, 15, 439, 1528, 476, 725, 1203, 1109, 1003, 1365, 103, 1279, 60, 871, 78, 391, 165, 1335, 1410, 1129, 960, 349, 185, 1464, 371, 117, 1398, 252, 507, 1613, 311, 1419, 395, 987, 358, 263, 359, 1559, 1305, 1506, 1376, 1055, 634, 1552, 16, 51, 1258, 493, 601, 997, 351, 711, 1604, 1486, 1339, 794, 97, 1475, 1423, 196, 748, 183, 1433, 1579, 613, 1536, 989, 682, 533, 610, 687, 892, 81, 896, 397, 267, 589, 386, 795, 1416, 132, 265, 1609, 1461, 883, 88, 840, 988, 1354, 676, 916, 629, 1269, 924, 294, 261, 1541, 1081, 1348, 1576, 405, 1616, 356, 608, 1097, 239, 1249, 1099, 1403, 119, 1096, 977, 751, 374, 453, 110, 1336, 1390, 905, 1287, 503, 1031, 1331, 1224, 729, 410, 1540, 367, 1607, 384, 200, 65, 1358, 1394, 1023, 272, 1418, 955, 677, 238, 1133, 974, 541, 478, 1257, 1265, 1465, 1589, 1326, 188, 1083, 681, 906, 1092, 1276, 316, 214, 1078, 1502, 1084, 660, 1142, 531, 255, 30, 662, 1253, 230, 157, 1343, 385, 1169, 380, 1188, 721, 264, 787, 101, 13, 1274, 68, 1024, 1170, 1156, 71, 1577, 566, 1372, 1245, 798, 523, 626, 495, 937, 155, 887, 758, 921, 790, 1349, 1230, 366, 1531, 983, 839, 228, 417, 206, 742, 79, 190, 492, 948, 145, 923, 318, 824, 1374, 1124, 1463, 596, 457, 144, 1359, 1292, 1045, 764, 842, 1140, 1408, 995, 904, 592, 1458, 135, 83, 1062, 154, 1440, 1283, 773, 1414, 127, 1177, 1318, 1413, 403, 150, 346, 413, 1303, 1523, 1619, 394, 1261, 1054, 208, 496, 352, 95, 625, 571, 37, 485, 143, 946, 158, 552, 1527, 1029, 518, 1180, 1218, 236, 1100, 222, 1431, 345, 1459, 120, 661, 588, 1623, 1493, 62, 1429, 811, 193, 235, 181, 1320, 389, 1103, 521, 669, 332, 258, 1369, 1538, 957, 382, 1382, 1567, 331, 934, 614, 262, 893, 6, 266, 769, 38, 901, 1573, 1578, 545, 118, 783, 652, 1025, 706, 105, 1189, 484, 1569, 630, 683, 20, 870, 242, 50, 162, 915, 966, 441, 867, 731, 1102, 1000, 1268, 1223, 822, 301, 723, 172], \"y\": [18.0, 39.0, 55.0, 24.0, 15.0, 33.0, 45.0, 23.0, 5.0, 27.0, 37.0, 21.0, 32.0, 57.0, 13.0, 29.0, 36.0, 36.0, 26.0, 48.0, 31.0, 29.0, 32.0, 25.0, 4.0, 10.0, 11.0, 1.0, 42.0, 53.0, 6.0, 22.0, 39.0, 32.0, 12.0, 39.0, 45.0, 52.0, 30.0, 46.0, 32.0, 35.0, 61.0, 32.0, 22.0, 34.0, 26.0, 35.0, 23.0, 59.0, 26.0, 12.0, 9.0, 37.0, 10.0, 45.0, 15.0, 49.0, 32.0, 60.0, 16.0, 10.0, 39.0, 31.0, 31.0, 37.0, 65.0, 31.0, 46.0, 11.0, 34.0, 23.0, 18.0, 23.0, 73.0, 35.0, 38.0, 28.0, 6.0, 22.0, 35.0, 14.0, 11.0, 37.0, 43.0, 37.0, 19.0, 51.0, 27.0, 46.0, 18.0, 34.0, 48.0, 45.0, 30.0, 15.0, 28.0, 31.0, 12.0, 11.0, 49.0, 32.0, 24.0, 38.0, 50.0, 35.0, 57.0, 36.0, 35.0, 31.0, 28.0, 26.0, 54.0, 32.0, 53.0, 11.0, 20.0, 27.0, 6.0, 23.0, 66.0, 34.0, 27.0, 19.0, 34.0, 22.0, 26.0, 14.0, 41.0, 20.0, 44.0, 40.0, 49.0, 10.0, 14.0, 60.0, 39.0, 46.0, 18.0, 28.0, 30.0, 26.0, 6.0, 51.0, 16.0, 9.0, 6.0, 16.0, 25.0, 36.0, 26.0, 13.0, 49.0, 35.0, 10.0, 58.0, 37.0, 15.0, 33.0, 26.0, 20.0, 34.0, 37.0, 32.0, 5.0, 35.0, 9.0, 35.0, 13.0, 23.0, 28.0, 19.0, 46.0, 33.0, 29.0, 21.0, 13.0, 10.0, 23.0, 74.0, 8.0, 23.0, 25.0, 21.0, 5.0, 23.0, 21.0, 10.0, 29.0, 22.0, 18.0, 24.0, 57.0, 10.0, 48.0, 20.0, 62.0, 5.0, 24.0, 14.0, 33.0, 45.0, 10.0, 29.0, 57.0, 27.0, 17.0, 46.0, 13.0, 4.0, 55.0, 16.0, 23.0, 55.0, 11.0, 10.0, 24.0, 8.0, 17.0, 20.0, 41.0, 33.0, 24.0, 14.0, 6.0, 39.0, 47.0, 69.0, 10.0, 31.0, 15.0, 16.0, 23.0, 49.0, 12.0, 10.0, 19.0, 36.0, 50.0, 8.0, 15.0, 32.0, 13.0, 24.0, 52.0, 38.0, 20.0, 6.0, 3.0, 31.0, 12.0, 45.0, 41.0, 5.0, 13.0, 46.0, 54.0, 38.0, 17.0, 32.0, 40.0, 29.0, 10.0, 45.0, 33.0, 15.0, 40.0, 54.0, 34.0, 54.0, 26.0, 1.0, 24.0, 10.0, 37.0, 45.0, 66.0, 81.0, 17.0, 22.0, 67.0, 15.0, 47.0, 17.0, 6.0, 36.0, 40.0, 45.0, 39.0, 40.0, 36.0, 26.0, 18.0, 55.0, 21.0, 26.0, 5.0, 29.0, 38.5, 21.0, 41.0, 18.0, 40.0, 24.0, 51.0, 38.0, 32.0, 26.0, 79.5, 34.0, 24.0, 18.0, 67.0, 37.0, 20.0, 12.0, 35.0, 20.0, 32.0, 24.0, 13.0, 25.0, 23.0, 11.0, 4.0, 27.0, 34.0, 34.0, 15.0, 56.0, 3.0, 62.0, 56.0, 16.0, 44.0, 28.0, 26.0, 44.0, 15.0, 32.0, 32.0, 6.0, 16.0, 30.0, 22.0, 31.0, 15.0, 51.0, 18.0, 24.0, 29.0, 12.0, 19.5, 30.0, 45.0, 18.0, 21.0, 35.0, 47.0, 52.0, 16.0, 23.0, 22.0, 39.0, 21.0, 29.0, 28.0, 25.0, 13.0, 21.0, 12.0, 45.0, 39.0, 26.0, 27.0, 7.0, 6.0, 47.0, 68.0, 15.0, 43.0, 12.0, 46.0, 26.0, 36.0, 6.0, 62.0, 45.0, 44.0, 21.0, 14.0, 31.0, 13.0, 66.0, 34.0, 25.0, 8.0, 47.0, 26.0, 67.0, 34.0, 27.0, 29.0, 54.0, 56.0, 6.0, 5.0, 58.0, 45.0, 37.0, 10.0, 13.0, 41.0, 12.0, 35.0, 17.0, 9.0, 17.0, 40.0, 6.0, 34.0, 38.0, 39.0, 9.0, 25.0, 37.0, 7.0, 26.0, 30.0, 11.0, 29.0, 22.0, 21.0, 34.0, 45.0, 19.0, 31.0, 5.0, 47.0, 21.0, 26.0, 33.0, 33.0, 5.0, 25.0, 42.0, 40.0, 40.0, 54.0, 28.0, 46.0, 46.0, 52.0, 25.0, 29.0, 53.0, 95.0, 24.0, 42.0, 17.0, 53.0, 24.0, 35.0, 54.0, 53.0, 52.0, 62.0, 34.0, 48.0, 15.0, 36.0, 37.0, 11.0, 31.0, 26.0, 15.0, 69.0, 34.0, 11.0, 29.0, 27.0, 24.0, 52.0, 44.0, 39.0, 31.0, 27.0, 6.0, 50.0, 11.0, 49.0, 30.0, 17.0, 51.0, 20.0, 15.0, 23.0, 18.0, 23.0, 11.0, 63.0, 36.0, 23.0, 15.0, 30.0, 41.0, 57.0, 16.0, 80.0, 23.0, 28.0, 6.0, 40.0, 27.0, 49.0, 39.0, 12.0, 15.0, 29.0, 62.0, 27.0, 7.0, 15.0, 25.0, 37.0, 46.0, 30.0, 35.0, 14.0, 40.0, 57.0, 20.0, 8.0, 8.0, 18.0, 57.0, 70.5, 54.0, 13.0, 29.0, 25.0, 32.0, 61.0, 55.0, 12.0, 53.0, 41.0, 50.0, 14.0, 64.0, 58.0, 68.0, 29.0, 29.0, 12.0, 38.0, 22.0, 10.0, 9.0, 19.0, 42.0, 31.0, 17.0, 18.0, 31.0, 13.0, 34.0, 22.0, 34.0, 60.0, 16.0, 56.0, 27.0, 45.0, 41.0, 24.0, 16.0, 35.0, 31.0, 6.0, 43.0, 53.0, 14.0, 32.0, 21.0, 71.0, 36.0, 67.0, 12.0, 11.0, 42.0, 7.0, 70.0, 27.0, 37.0, 7.0, 33.0, 37.0, 20.0, 28.0, 21.0, 34.0, 19.0, 48.0, 23.0, 44.0, 5.0, 54.0, 49.0, 23.0, 29.0, 17.0, 37.0, 81.0, 8.0, 16.0, 3.0, 28.0, 9.0, 64.0, 29.0, 68.0, 50.0, 3.0, 26.0, 64.0, 5.0, 37.0, 19.0, 18.0, 58.0, 30.0, 38.0, 29.0, 18.0, 9.0, 5.5, 5.0, 50.0, 31.0, 29.0, 27.0, 24.0, 35.0, 25.0, 61.0, 20.0, 20.0, 29.0, 22.0, 8.0, 14.0, 66.0, 46.0, 49.0, 53.0, 23.0, 36.0, 15.0, 40.0, 19.0, 54.0, 22.0, 48.5, 61.0, 47.0, 18.0, 5.0, 16.0, 65.0, 27.0, 20.0, 28.0, 6.0, 18.0, 26.0, 19.0, 22.0, 32.0, 36.0, 15.0, 50.0, 22.0, 40.0, 4.0, 24.0, 33.0, 49.0, 20.0, 24.0, 57.0, 44.0, 34.0, 9.0, 105.0, 16.0, 44.0, 35.0, 34.0, 56.0, 53.0, 23.0, 23.0, 46.0, 40.0, 14.0, 35.0, 22.0, 45.0, 31.0, 42.0, 60.0, 15.0, 28.0, 25.0, 31.0, 11.0, 61.0, 5.0, 21.0, 64.0, 20.0, 19.0, 34.0, 18.0, 18.0, 26.0, 63.0, 37.0, 34.0, 59.0, 33.0, 20.0, 10.0, 49.0, 15.0, 61.0, 14.0, 51.0, 26.0, 8.0, 4.0, 15.0, 43.0, 6.0, 64.0, 50.5, 22.0, 26.0, 20.0, 17.0, 9.0, 17.0, 44.5, 54.0, 54.0, 17.0, 11.0, 10.0, 11.0, 28.0, 11.0, 12.0, 6.0, 35.0, 15.0, 7.0, 25.0, 4.0, 42.0, 52.0, 33.0, 48.5, 40.0, 20.0, 12.0, 10.0, 41.0, 52.0, 57.0, 25.0, 18.0, 25.0, 26.0, 31.0, 8.0, 51.0, 25.0, 31.0, 14.0, 46.0, 67.0, 41.0, 26.0, 16.0, 17.0, 6.0, 44.0, 53.0, 45.0, 48.0, 11.0, 54.0, 30.0, 8.0, 72.0, 25.0, 32.0, 81.0, 46.0, 36.0, 52.0, 36.0, 63.0, 42.0, 60.5, 15.0, 16.0, 17.0, 6.0, 45.0, 34.0, 53.0, 41.0, 5.0, 45.0, 33.0, 33.0, 6.0, 16.0, 3.0, 52.0, 45.0, 15.0, 30.0, 50.0, 12.0, 25.0, 25.0, 35.0, 39.0, 6.0, 40.0, 11.0, 16.0, 34.0, 7.0, 5.0, 17.0, 48.5, 51.0, 39.0, 15.0, 14.0, 29.0, 6.0, 21.0, 58.0, 64.0, 62.0, 68.0, 24.0, 9.0, 19.0, 10.0, 44.0, 44.0, 33.0, 33.0, 8.0, 5.0, 21.0, 25.0, 26.0, 73.0, 32.0, 31.0, 47.0, 24.0, 14.0, 21.0, 56.0, 34.0, 37.0, 67.0, 42.0, 42.0, 30.0, 29.0, 26.0, 7.0, 50.0, 39.0, 19.0, 16.0, 56.0, 57.0, 40.0, 40.0, 49.0, 18.0, 48.0, 38.0, 17.0, 26.0, 6.0, 56.0, 25.0, 15.0, 18.0, 26.0, 29.0, 17.0, 10.0, 3.0, 10.0, 27.0, 26.0, 38.0, 3.0, 23.0, 43.0, 4.0, 32.0, 47.0, 37.0, 43.0, 36.0, 3.0, 29.0, 60.0, 54.0, 40.0, 69.0, 5.0, 48.0, 32.0, 17.0, 5.0, 27.0, 32.0, 36.0, 14.0, 30.0, 41.0, 36.0, 55.0, 59.0, 17.0, 7.0, 15.0, 31.0, 29.0, 52.0, 33.0, 43.0, 23.0, 25.0, 14.0, 35.0, 32.0, 44.0, 21.0, 31.0, 10.0, 18.0, 34.0, 51.0, 52.0, 26.0, 6.0, 59.0, 29.0, 8.0, 17.0, 31.0, 12.0, 11.0, 5.0, 36.0, 7.0, 25.0, 34.0, 15.0, 39.0, 16.0, 22.0, 34.0, 20.0, 50.0, 44.0, 44.0, 38.0, 46.0, 24.0, 52.0, 20.0, 16.0, 13.0, 32.0]}, {\"marker\": {\"color\": \"white\", \"opacity\": 0.005, \"size\": 0.01}, \"mode\": \"markers\", \"name\": \"Current\", \"showlegend\": false, \"type\": \"scatter\", \"x\": [2, 2], \"y\": [-22.117841690935318, 83.80684169093531]}], \"layout\": {\"legend\": {\"orientation\": \"h\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"shapes\": [{\"fillcolor\": \"LightGreen\", \"layer\": \"below\", \"line\": {\"width\": 0}, \"opacity\": 0.5, \"type\": \"rect\", \"x0\": 0, \"x1\": 1, \"xref\": \"paper\", \"y0\": -22.117841690935318, \"y1\": 83.80684169093531, \"yref\": \"y\"}, {\"line\": {\"color\": \"Green\", \"width\": 3}, \"name\": \"Reference\", \"type\": \"line\", \"x0\": 0, \"x1\": 1, \"xref\": \"paper\", \"y0\": 30.8445, \"y1\": 30.8445, \"yref\": \"y\"}], \"showlegend\": true, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"Index\"}}, \"yaxis\": {\"title\": {\"text\": \"free.sulfur.dioxide\"}}}}}}, {\"id\": \"total.sulfur.dioxide_distr\", \"params\": {\"data\": [{\"histnorm\": \"probability\", \"marker\": {\"color\": \"#4d4d4d\"}, \"name\": \"Reference\", \"nbinsx\": 10, \"opacity\": 0.6, \"type\": \"histogram\", \"x\": [123.0, 231.0, 126.0, 107.0, 175.0, 65.0, 107.0, 115.0, 121.0, 69.0, 180.0, 192.0, 9.0, 158.0, 65.0, 195.0, 151.0, 211.0, 44.0, 150.0, 77.0, 101.0, 43.0, 74.0, 45.0, 93.0, 149.0, 23.0, 202.0, 148.0, 95.0, 174.0, 142.0, 177.0, 84.0, 170.0, 110.0, 93.0, 158.0, 131.0, 75.0, 164.0, 165.0, 92.0, 54.0, 163.0, 79.0, 183.0, 144.0, 92.0, 19.0, 139.0, 12.0, 170.0, 187.0, 63.0, 130.0, 186.0, 142.0, 206.0, 99.0, 66.0, 67.0, 148.0, 60.0, 12.0, 97.0, 120.0, 63.0, 54.0, 211.0, 110.0, 120.0, 57.0, 142.0, 18.0, 135.0, 91.0, 214.0, 110.0, 177.0, 183.0, 20.0, 104.0, 106.0, 159.0, 189.0, 196.0, 156.0, 163.0, 192.0, 73.0, 98.0, 112.0, 104.0, 127.0, 147.0, 19.0, 130.0, 10.0, 128.0, 180.0, 144.0, 94.0, 140.0, 22.0, 100.0, 41.0, 24.0, 84.0, 100.0, 114.0, 84.0, 160.0, 124.0, 105.0, 86.0, 149.0, 87.0, 53.0, 125.0, 86.0, 33.0, 101.0, 141.0, 289.0, 168.0, 94.0, 14.0, 90.0, 37.0, 83.0, 60.0, 125.0, 189.0, 173.0, 220.0, 93.0, 169.0, 57.0, 124.0, 98.0, 93.0, 143.0, 177.0, 50.0, 93.0, 17.0, 119.0, 109.0, 148.0, 69.0, 55.0, 245.0, 179.0, 16.0, 143.0, 151.0, 164.0, 113.0, 116.0, 131.0, 172.0, 133.0, 134.0, 117.0, 85.0, 36.0, 157.0, 47.0, 200.0, 91.0, 41.0, 8.0, 95.0, 183.0, 8.0, 200.0, 103.0, 194.0, 133.0, 86.0, 38.0, 103.0, 117.0, 176.0, 166.0, 115.0, 144.0, 49.0, 233.0, 158.0, 121.0, 20.0, 110.0, 92.0, 72.0, 87.0, 171.0, 44.0, 171.0, 106.0, 76.0, 134.0, 243.0, 23.0, 228.0, 140.0, 89.0, 31.0, 25.0, 127.0, 138.0, 38.0, 147.0, 201.0, 23.0, 127.0, 106.0, 26.0, 129.5, 72.0, 63.0, 71.0, 115.0, 155.0, 52.0, 8.0, 23.0, 109.0, 44.0, 109.0, 155.0, 159.0, 152.0, 161.0, 17.0, 111.0, 194.0, 113.0, 85.0, 77.0, 34.0, 195.0, 109.0, 149.0, 42.0, 143.0, 206.0, 202.0, 118.0, 111.0, 159.0, 100.0, 133.0, 179.0, 167.0, 112.0, 117.0, 122.0, 195.0, 115.0, 91.0, 68.0, 45.0, 71.0, 137.0, 213.0, 192.0, 142.0, 111.0, 197.0, 161.0, 119.0, 120.0, 69.0, 115.0, 20.0, 72.0, 115.0, 150.0, 58.0, 47.0, 123.0, 97.0, 63.0, 43.0, 144.0, 31.0, 134.0, 15.0, 138.0, 104.0, 51.0, 33.0, 134.0, 126.0, 15.0, 163.0, 92.0, 136.0, 127.0, 118.0, 178.0, 15.0, 77.0, 194.0, 84.0, 96.0, 86.0, 128.0, 11.0, 164.0, 166.0, 164.0, 94.0, 118.0, 126.0, 49.0, 113.0, 150.0, 72.0, 58.0, 124.0, 122.0, 111.0, 111.0, 46.0, 204.0, 181.0, 74.0, 22.0, 124.0, 155.0, 210.0, 146.0, 198.0, 42.0, 73.0, 101.0, 121.0, 86.0, 184.0, 33.0, 133.0, 80.0, 128.0, 106.0, 128.0, 160.0, 75.0, 86.0, 78.0, 158.0, 87.0, 110.0, 156.0, 25.0, 189.0, 111.0, 189.0, 156.0, 139.0, 164.0, 106.0, 151.0, 60.0, 186.0, 184.0, 52.0, 176.0, 140.0, 141.0, 139.0, 92.0, 112.0, 150.0, 116.0, 169.0, 107.0, 128.0, 202.0, 227.0, 75.0, 116.0, 192.0, 114.0, 228.0, 64.0, 193.0, 177.0, 197.0, 155.0, 140.0, 167.0, 88.0, 163.0, 161.0, 142.0, 229.0, 48.0, 84.0, 156.0, 26.0, 66.0, 28.0, 143.0, 29.0, 22.0, 101.0, 143.0, 168.0, 152.0, 104.0, 9.0, 31.0, 146.0, 92.0, 98.0, 165.0, 99.0, 73.0, 131.0, 101.0, 28.0, 49.0, 144.0, 109.0, 130.0, 114.0, 20.0, 44.0, 96.0, 113.0, 61.0, 12.0, 48.0, 81.0, 104.0, 119.0, 156.0, 115.0, 24.0, 84.0, 11.0, 179.0, 90.0, 161.0, 176.0, 187.0, 180.0, 146.0, 90.0, 105.0, 93.0, 27.0, 182.0, 186.0, 171.0, 46.0, 87.0, 99.0, 84.0, 121.0, 171.0, 95.0, 158.0, 12.0, 138.0, 16.0, 149.0, 201.0, 35.0, 34.0, 177.0, 55.0, 138.0, 71.0, 63.0, 189.0, 103.0, 40.0, 113.0, 12.0, 114.0, 98.0, 93.0, 98.0, 44.0, 171.0, 179.0, 142.0, 197.0, 54.0, 187.0, 34.0, 155.0, 157.0, 124.0, 70.0, 227.0, 115.0, 174.0, 28.0, 249.5, 75.0, 90.0, 21.0, 206.0, 153.0, 142.0, 100.0, 81.0, 104.0, 50.0, 200.0, 65.0, 12.0, 170.0, 164.0, 151.0, 118.0, 25.0, 81.0, 27.0, 188.0, 151.0, 107.0, 218.0, 100.0, 19.0, 171.0, 210.0, 130.0, 96.0, 198.0, 167.0, 76.0, 82.0, 82.0, 102.0, 159.0, 242.0, 213.0, 49.0, 78.0, 141.0, 31.0, 22.0, 132.0, 148.0, 125.0, 157.0, 37.0, 96.0, 200.0, 143.0, 131.0, 173.0, 115.0, 61.0, 57.0, 160.0, 107.0, 79.0, 155.0, 23.0, 135.0, 194.0, 172.0, 13.0, 57.0, 48.0, 88.0, 112.0, 21.0, 87.0, 148.0, 125.0, 117.0, 160.0, 225.0, 31.0, 179.0, 149.0, 173.0, 158.0, 67.0, 102.0, 93.0, 78.0, 192.0, 131.0, 122.0, 220.0, 142.0, 43.0, 98.0, 86.0, 50.0, 110.0, 24.0, 209.0, 63.0, 247.0, 103.0, 206.0, 98.0, 95.0, 170.0, 204.0, 111.0, 163.0, 115.0, 93.0, 132.0, 111.0, 158.0, 97.0, 168.0, 221.0, 42.0, 87.0, 122.0, 178.0, 93.0, 234.0, 114.0, 87.0, 42.0, 62.0, 70.0, 168.0, 13.0, 78.0, 127.0, 134.0, 171.0, 117.0, 87.0, 160.0, 103.0, 111.0, 106.0, 143.0, 169.0, 140.0, 168.0, 141.0, 78.0, 102.0, 118.0, 207.0, 152.0, 171.0, 143.0, 57.0, 168.0, 138.0, 131.0, 206.0, 149.0, 134.0, 114.0, 210.0, 111.0, 166.0, 165.0, 230.0, 38.0, 162.0, 178.0, 186.0, 136.0, 79.0, 98.0, 174.0, 103.0, 47.0, 142.0, 68.0, 146.0, 154.0, 111.0, 164.0, 30.0, 16.0, 54.0, 155.0, 155.0, 47.0, 160.0, 102.0, 159.0, 111.0, 19.0, 176.0, 171.0, 90.0, 89.0, 125.0, 109.0, 118.0, 231.0, 62.0, 154.0, 24.0, 83.0, 126.0, 124.0, 133.0, 70.0, 108.0, 174.0, 38.0, 223.0, 37.0, 101.0, 116.0, 18.0, 22.0, 66.0, 169.0, 37.0, 208.0, 138.0, 92.0, 142.0, 134.0, 143.0, 154.0, 27.0, 42.0, 215.0, 131.0, 169.0, 113.0, 173.0, 166.0, 105.0, 122.0, 111.0, 178.0, 149.0, 113.0, 98.0, 42.0, 128.0, 183.0, 118.0, 172.0, 155.0, 58.0, 79.0, 212.0, 134.0, 117.0, 109.0, 193.0, 118.0, 88.0, 167.0, 205.0, 120.0, 223.0, 94.0, 93.0, 186.0, 248.0, 129.0, 11.0, 125.0, 185.0, 197.0, 108.0, 101.0, 195.0, 140.0, 124.0, 140.0, 194.0, 126.0, 176.0, 113.0, 156.0, 90.0, 135.0, 98.0, 188.0, 100.0, 211.0, 184.0, 111.0, 76.0, 82.0, 111.0, 64.0, 245.0, 14.0, 102.0, 109.0, 89.0, 114.0, 142.0, 31.0, 188.0, 114.0, 38.0, 28.0, 158.0, 121.0, 126.0, 92.0, 47.0, 61.0, 16.0, 117.0, 174.0, 158.0, 123.0, 142.0, 170.0, 102.0, 61.0, 242.0, 137.0, 73.0, 143.0, 198.0, 125.0, 172.0, 144.0, 216.0, 157.0, 128.0, 97.0, 114.0, 13.0, 118.0, 83.0, 143.0, 116.0, 119.0, 167.0, 307.5, 91.0, 51.0, 76.0, 125.0, 15.0, 68.0, 73.0, 60.0, 37.0, 106.0, 252.0, 213.0, 177.0, 110.0, 160.0, 115.0, 143.0, 68.0, 113.0, 78.0, 88.0, 124.0, 102.0, 112.0, 63.0, 110.0, 96.0, 204.0, 78.0, 151.0, 168.0, 114.0, 110.0, 82.0, 154.0, 189.0, 72.0, 71.0, 184.0, 134.0, 23.0, 229.0, 154.0, 109.0, 18.0, 91.0, 101.0, 123.0, 150.0, 170.0, 54.0, 126.0, 39.0, 31.0, 196.0, 128.0, 118.0, 65.0, 133.0, 130.0, 136.0, 184.0, 114.0, 215.0, 282.0, 144.0, 128.0, 125.0, 117.0, 223.0, 89.0, 37.0, 16.0, 95.0, 20.0, 215.0, 150.0, 114.0, 162.0, 110.0, 210.0, 17.0, 164.0, 144.0, 60.0, 115.5, 11.0, 134.0, 168.0, 136.0, 155.0, 119.0, 70.0, 71.0, 230.0, 13.0, 137.0, 176.0, 72.0, 69.0, 136.0, 65.0, 28.0, 195.0, 103.0, 154.0, 158.0, 167.0, 33.0, 56.0, 78.0, 164.0, 198.0, 131.0, 194.0, 33.0, 195.0, 240.0, 27.0, 95.0, 140.0, 234.0, 84.0, 87.0, 170.0, 87.0, 185.0, 178.0, 120.0, 48.0, 186.0, 193.0, 113.0, 140.0, 188.0, 72.0, 37.0, 170.0, 110.0, 75.0, 38.0, 104.0, 195.0, 34.0, 188.0, 62.0, 184.0, 152.0, 99.0, 145.0, 35.0, 197.0, 117.0, 99.0, 104.0]}, {\"histnorm\": \"probability\", \"marker\": {\"color\": \"#ed0400\"}, \"name\": \"Current\", \"nbinsx\": 10, \"opacity\": 0.6, \"type\": \"histogram\", \"x\": [101.0, 106.0, 194.0, 126.0, 68.0, 196.0, 164.0, 94.0, 47.0, 99.0, 97.0, 124.0, 95.0, 163.0, 32.0, 191.0, 156.0, 111.0, 119.0, 167.0, 127.0, 118.0, 38.0, 131.0, 14.0, 21.0, 61.0, 28.0, 162.0, 212.5, 25.0, 111.0, 193.0, 85.0, 74.0, 191.0, 147.0, 207.0, 181.0, 179.0, 99.0, 127.0, 134.0, 133.0, 93.0, 148.0, 74.0, 143.0, 136.0, 178.0, 99.0, 42.0, 125.0, 121.0, 131.0, 129.0, 115.0, 219.0, 76.0, 150.0, 81.0, 31.0, 124.0, 85.0, 185.0, 156.0, 225.0, 101.0, 238.0, 27.0, 45.0, 135.0, 86.0, 110.0, 212.0, 72.0, 195.0, 174.0, 18.0, 122.0, 137.0, 59.0, 66.0, 175.0, 145.0, 181.0, 163.0, 159.0, 63.0, 165.0, 64.0, 64.0, 166.0, 150.0, 105.0, 85.0, 100.0, 127.0, 24.0, 73.0, 144.0, 155.0, 164.0, 89.0, 153.0, 189.0, 135.0, 100.0, 152.0, 117.0, 114.0, 113.0, 145.0, 174.0, 161.0, 39.0, 38.0, 127.0, 25.0, 87.0, 144.0, 60.0, 128.0, 101.0, 44.0, 162.0, 143.0, 26.0, 55.0, 96.0, 150.0, 171.0, 172.0, 67.0, 132.0, 143.0, 177.0, 108.0, 115.0, 107.0, 117.0, 97.0, 28.0, 294.0, 112.0, 38.0, 10.0, 24.0, 126.0, 174.0, 101.0, 22.0, 121.0, 189.0, 40.0, 176.0, 131.0, 105.0, 139.0, 91.0, 109.0, 117.0, 107.0, 75.0, 33.0, 176.0, 26.0, 112.0, 76.0, 49.0, 138.0, 35.0, 153.0, 152.0, 136.0, 59.0, 38.0, 23.0, 158.0, 121.0, 44.0, 81.0, 60.0, 145.0, 16.0, 53.0, 94.0, 26.0, 84.0, 82.0, 38.0, 98.0, 201.0, 23.0, 253.0, 74.0, 213.0, 12.0, 60.0, 169.0, 216.0, 186.0, 26.0, 118.0, 166.0, 58.0, 35.0, 153.0, 91.0, 11.0, 204.0, 45.0, 99.0, 190.0, 34.0, 47.0, 134.0, 23.0, 42.0, 116.0, 98.0, 93.0, 94.0, 103.0, 16.0, 116.0, 182.0, 168.0, 164.0, 47.0, 28.0, 23.0, 92.0, 192.0, 65.0, 28.0, 86.0, 135.0, 199.0, 20.0, 80.0, 148.0, 29.0, 48.0, 123.0, 100.0, 107.0, 41.0, 9.0, 111.0, 88.0, 255.0, 213.0, 61.0, 98.0, 129.0, 216.0, 111.0, 43.0, 84.0, 126.0, 131.0, 21.0, 187.0, 124.0, 143.0, 117.0, 80.0, 169.0, 141.0, 35.0, 28.0, 72.0, 59.0, 171.0, 170.0, 184.0, 174.0, 102.0, 36.0, 210.0, 134.0, 124.0, 149.0, 16.0, 92.0, 118.0, 213.0, 133.0, 54.0, 109.0, 76.0, 89.0, 190.0, 133.0, 98.0, 9.0, 129.0, 245.0, 84.0, 191.0, 130.0, 131.0, 99.0, 148.0, 76.0, 134.0, 142.0, 183.0, 116.0, 125.0, 34.0, 216.0, 94.0, 88.0, 35.0, 124.0, 167.0, 133.0, 90.0, 38.0, 143.0, 174.0, 200.0, 9.0, 90.0, 105.0, 125.0, 26.0, 244.0, 15.0, 209.0, 189.0, 119.0, 197.0, 212.0, 118.0, 161.0, 59.0, 59.0, 172.0, 148.0, 65.0, 97.0, 84.0, 104.0, 33.0, 170.0, 30.0, 189.0, 99.0, 53.0, 166.0, 90.0, 140.0, 150.0, 114.0, 146.0, 144.0, 196.0, 44.0, 118.0, 179.0, 132.0, 132.0, 104.0, 54.0, 161.0, 19.0, 102.0, 20.0, 155.0, 193.0, 111.0, 94.0, 89.0, 31.0, 150.0, 143.0, 123.0, 145.0, 20.0, 201.0, 107.0, 105.0, 55.0, 227.0, 213.0, 95.0, 126.0, 56.0, 68.0, 73.0, 178.0, 111.0, 153.0, 15.0, 168.0, 111.0, 181.0, 172.0, 139.0, 110.0, 136.0, 189.0, 121.0, 13.0, 135.0, 104.0, 117.0, 51.0, 49.0, 113.0, 39.0, 148.0, 94.0, 126.0, 109.0, 102.0, 117.0, 169.0, 95.0, 51.0, 26.0, 122.0, 104.0, 77.0, 120.0, 114.0, 19.0, 132.0, 73.0, 68.0, 145.0, 135.0, 47.0, 149.0, 12.0, 132.0, 138.0, 87.0, 125.0, 139.0, 12.0, 94.0, 140.0, 143.0, 139.0, 166.0, 97.0, 114.0, 212.0, 119.0, 109.0, 129.0, 176.0, 163.0, 145.0, 134.0, 117.0, 178.0, 44.0, 95.0, 135.0, 143.0, 183.0, 180.0, 90.0, 129.0, 72.0, 131.0, 213.0, 32.0, 123.0, 81.0, 55.0, 152.0, 214.0, 126.0, 117.0, 173.0, 128.0, 173.0, 116.0, 204.0, 134.0, 156.0, 29.0, 134.0, 65.0, 151.0, 114.0, 44.0, 164.0, 125.0, 28.0, 90.0, 156.0, 56.0, 28.0, 201.0, 106.0, 116.0, 92.0, 140.0, 150.0, 182.0, 165.0, 225.0, 114.0, 142.0, 39.0, 142.0, 98.0, 188.0, 55.0, 86.0, 27.0, 113.0, 178.0, 87.0, 140.0, 33.0, 85.0, 158.0, 102.0, 95.0, 169.0, 103.0, 107.0, 191.0, 151.0, 28.0, 119.0, 113.0, 220.0, 163.0, 219.0, 26.0, 95.0, 135.0, 55.0, 171.0, 158.0, 21.0, 206.0, 113.0, 168.0, 122.0, 157.0, 173.0, 161.0, 97.0, 227.0, 42.0, 107.0, 81.0, 17.0, 17.0, 84.0, 162.0, 96.0, 118.0, 38.0, 161.0, 111.0, 118.0, 125.0, 143.0, 150.0, 116.0, 189.0, 142.0, 149.0, 98.0, 166.0, 86.0, 135.0, 68.0, 12.0, 131.0, 172.0, 102.0, 174.0, 128.0, 194.0, 108.0, 196.0, 83.0, 35.0, 155.0, 26.0, 189.0, 87.0, 93.0, 35.0, 187.0, 150.0, 89.0, 158.0, 114.0, 142.0, 120.0, 156.0, 97.0, 169.0, 11.0, 201.0, 130.0, 109.0, 149.0, 80.0, 162.0, 198.0, 23.0, 125.0, 89.0, 81.0, 55.0, 185.0, 53.0, 183.0, 173.0, 15.0, 138.0, 245.0, 17.0, 122.0, 130.0, 75.0, 160.0, 146.0, 90.0, 106.0, 34.0, 34.0, 48.0, 15.0, 118.0, 106.0, 151.0, 150.0, 85.0, 140.0, 85.0, 222.0, 155.0, 84.0, 109.0, 80.0, 17.0, 38.0, 169.0, 172.0, 172.0, 178.0, 93.0, 99.0, 60.0, 142.0, 171.0, 202.0, 126.0, 229.0, 216.0, 154.0, 119.0, 27.0, 43.0, 146.0, 104.0, 89.0, 199.0, 15.0, 167.0, 60.0, 112.0, 47.0, 143.0, 161.0, 48.0, 136.0, 89.0, 141.0, 9.0, 129.0, 154.0, 159.0, 113.0, 88.0, 158.0, 138.0, 145.0, 29.0, 179.0, 63.0, 92.0, 167.0, 181.0, 173.0, 160.0, 107.0, 131.0, 151.0, 129.0, 79.0, 132.0, 37.0, 213.0, 101.0, 170.0, 163.0, 50.0, 210.0, 135.0, 98.0, 77.0, 172.0, 31.0, 138.0, 162.0, 117.0, 102.0, 190.0, 75.0, 135.0, 105.0, 123.0, 143.0, 134.0, 169.0, 85.0, 70.0, 21.0, 182.0, 42.0, 186.0, 111.0, 153.0, 132.0, 111.0, 28.0, 101.0, 133.0, 25.0, 162.0, 238.5, 155.0, 44.0, 38.0, 100.0, 37.0, 101.0, 129.5, 168.0, 168.0, 43.0, 47.0, 40.0, 71.0, 186.0, 77.0, 113.0, 14.0, 125.0, 46.0, 11.0, 49.0, 117.0, 118.0, 164.0, 139.0, 229.0, 114.0, 98.0, 28.0, 53.0, 113.0, 187.0, 200.0, 148.0, 107.0, 133.0, 88.0, 128.0, 108.0, 70.0, 80.0, 113.0, 73.0, 152.0, 210.0, 104.0, 45.0, 72.0, 82.0, 19.0, 136.0, 206.0, 87.0, 161.0, 41.0, 173.0, 105.0, 14.0, 197.0, 97.0, 180.0, 147.0, 149.0, 135.0, 145.0, 116.0, 148.0, 150.0, 164.5, 21.0, 109.0, 126.0, 48.0, 128.0, 66.0, 178.0, 101.0, 16.0, 191.0, 180.0, 147.0, 14.0, 132.0, 10.0, 189.0, 151.0, 85.0, 137.0, 156.0, 31.0, 166.0, 98.0, 192.0, 167.0, 10.0, 153.0, 49.0, 99.0, 68.0, 16.0, 22.0, 80.0, 229.0, 225.0, 132.0, 47.0, 104.0, 122.0, 10.0, 57.0, 176.0, 226.0, 150.0, 210.0, 69.0, 131.0, 76.0, 102.0, 129.0, 95.0, 116.0, 168.0, 19.0, 21.0, 105.0, 173.0, 189.0, 142.0, 177.0, 177.0, 181.0, 58.0, 71.0, 191.0, 140.0, 110.0, 184.0, 152.0, 164.0, 105.0, 117.0, 124.0, 91.0, 69.0, 181.0, 145.0, 175.0, 85.0, 162.0, 181.0, 168.0, 157.0, 128.0, 89.0, 197.0, 167.0, 155.0, 138.0, 20.0, 212.0, 78.0, 25.0, 35.0, 80.0, 130.0, 129.0, 122.0, 7.0, 25.0, 69.0, 120.0, 140.0, 20.0, 124.0, 164.0, 14.0, 83.0, 136.0, 151.0, 157.0, 161.0, 6.0, 169.0, 221.0, 200.0, 190.0, 168.0, 10.0, 113.0, 166.0, 91.0, 13.0, 104.0, 85.0, 136.0, 167.0, 99.0, 103.0, 159.0, 108.0, 148.0, 91.0, 28.0, 136.0, 103.0, 213.0, 189.0, 85.0, 127.0, 169.0, 133.0, 107.0, 91.0, 112.0, 138.0, 82.0, 114.0, 72.0, 104.0, 84.0, 180.0, 159.0, 121.0, 17.0, 128.0, 61.0, 16.0, 43.0, 87.0, 136.0, 63.0, 16.0, 140.0, 49.0, 144.0, 74.0, 122.0, 106.0, 86.0, 145.0, 153.0, 127.0, 228.0, 112.0, 138.0, 157.0, 140.0, 112.0, 192.0, 114.0, 92.0, 128.0, 111.0]}], \"layout\": {\"legend\": {\"orientation\": \"h\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"total.sulfur.dioxide\"}}, \"yaxis\": {\"title\": {\"text\": \"Share\"}}}}}, {\"id\": \"total.sulfur.dioxide_drift\", \"params\": {\"title\": \"\", \"size\": 2, \"text\": \"\", \"type\": \"big_graph\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"Current\", \"type\": \"scatter\", \"x\": [443, 319, 703, 526, 76, 963, 1260, 532, 1561, 517, 506, 1557, 271, 1058, 1381, 1039, 542, 107, 161, 1301, 519, 1021, 1213, 223, 1286, 1426, 1234, 587, 1183, 182, 567, 1492, 724, 1262, 1509, 657, 1137, 913, 1445, 342, 781, 14, 971, 1072, 1254, 678, 1175, 1481, 1370, 1443, 18, 1151, 1380, 434, 1430, 554, 53, 535, 1050, 427, 259, 124, 961, 1488, 1563, 720, 1291, 1061, 425, 846, 1147, 204, 1317, 618, 1088, 927, 1196, 582, 1194, 360, 1449, 862, 1135, 1453, 1442, 1017, 268, 685, 317, 775, 1086, 942, 1052, 801, 1362, 219, 379, 649, 1195, 479, 1542, 609, 930, 1105, 34, 708, 686, 1132, 693, 733, 1562, 1190, 473, 737, 672, 969, 858, 5, 1556, 298, 80, 940, 361, 1154, 1545, 1622, 784, 19, 1522, 996, 54, 1415, 1564, 1593, 1236, 9, 353, 1222, 113, 1010, 1263, 877, 82, 381, 818, 1210, 1409, 66, 254, 817, 92, 1340, 122, 1357, 511, 1546, 692, 17, 1248, 414, 52, 1296, 191, 175, 233, 900, 785, 935, 1298, 156, 487, 159, 481, 1255, 1597, 253, 1491, 841, 187, 914, 979, 249, 1114, 1366, 814, 716, 465, 875, 1242, 670, 299, 593, 436, 728, 141, 229, 1057, 912, 994, 648, 799, 1164, 1073, 4, 516, 152, 1267, 1237, 752, 1150, 825, 402, 1277, 575, 1437, 838, 390, 1505, 1093, 1026, 1611, 31, 674, 866, 1328, 616, 861, 897, 148, 303, 1451, 602, 1125, 1614, 1047, 1462, 1148, 574, 899, 1327, 89, 530, 408, 1192, 177, 520, 993, 326, 992, 717, 895, 1421, 984, 240, 85, 557, 278, 938, 1425, 958, 1232, 1149, 171, 1220, 227, 891, 489, 1391, 1184, 1032, 393, 726, 192, 260, 880, 1592, 1537, 491, 759, 1473, 959, 1454, 1015, 965, 1393, 1489, 1256, 133, 202, 1036, 438, 483, 666, 461, 142, 1181, 1580, 308, 538, 170, 310, 743, 1101, 1179, 315, 22, 1529, 45, 879, 1110, 61, 522, 1397, 829, 576, 1193, 1202, 1549, 1375, 27, 527, 1186, 1273, 828, 539, 1049, 1014, 412, 1091, 1497, 1595, 347, 2, 844, 1490, 632, 211, 1582, 918, 1217, 1115, 744, 459, 579, 771, 96, 178, 108, 1516, 805, 1240, 440, 619, 1, 1315, 1239, 1347, 512, 48, 722, 1517, 1621, 446, 565, 568, 796, 231, 1070, 1063, 215, 513, 704, 354, 55, 881, 746, 641, 762, 279, 1145, 1468, 224, 302, 911, 218, 1079, 874, 1266, 792, 1136, 372, 295, 364, 580, 1615, 688, 1560, 333, 467, 968, 399, 760, 740, 953, 1520, 1446, 1214, 615, 524, 546, 1495, 1324, 452, 1515, 432, 863, 442, 847, 276, 456, 184, 1116, 1200, 458, 1508, 1087, 1478, 376, 1479, 563, 1146, 1507, 42, 944, 823, 1228, 656, 1227, 198, 309, 761, 1158, 549, 47, 1209, 529, 933, 220, 1624, 1591, 651, 536, 362, 1314, 420, 564, 475, 482, 140, 679, 1436, 1334, 77, 39, 570, 962, 808, 981, 322, 1471, 251, 695, 1128, 813, 757, 820, 853, 831, 1246, 58, 553, 597, 241, 1288, 330, 1005, 789, 1617, 56, 1126, 411, 548, 501, 1211, 642, 558, 1605, 745, 878, 1056, 667, 435, 29, 270, 35, 1157, 422, 1310, 114, 1524, 1422, 689, 1018, 1168, 1360, 985, 1191, 793, 1363, 1504, 581, 644, 1199, 621, 1612, 494, 665, 431, 1095, 638, 1042, 1404, 1030, 40, 1121, 75, 1588, 1417, 247, 713, 1590, 186, 646, 312, 8, 1551, 1302, 1044, 768, 884, 1585, 1618, 826, 445, 712, 464, 1308, 195, 655, 1487, 1389, 1356, 243, 401, 572, 1074, 810, 477, 1460, 1544, 1182, 285, 471, 936, 1238, 578, 1034, 1535, 1513, 426, 1311, 1001, 986, 1038, 980, 1064, 620, 982, 1565, 194, 474, 1428, 569, 1165, 49, 1333, 1401, 1307, 1076, 991, 1566, 44, 1342, 245, 943, 300, 583, 1013, 269, 1548, 313, 776, 283, 1444, 540, 406, 338, 466, 363, 1002, 320, 1264, 1089, 70, 1027, 500, 10, 907, 505, 1295, 864, 1432, 64, 1122, 1543, 416, 898, 654, 205, 328, 486, 999, 1377, 970, 528, 1558, 418, 1379, 1299, 1378, 590, 1247, 1174, 472, 1323, 131, 15, 439, 1528, 476, 725, 1203, 1109, 1003, 1365, 103, 1279, 60, 871, 78, 391, 165, 1335, 1410, 1129, 960, 349, 185, 1464, 371, 117, 1398, 252, 507, 1613, 311, 1419, 395, 987, 358, 263, 359, 1559, 1305, 1506, 1376, 1055, 634, 1552, 16, 51, 1258, 493, 601, 997, 351, 711, 1604, 1486, 1339, 794, 97, 1475, 1423, 196, 748, 183, 1433, 1579, 613, 1536, 989, 682, 533, 610, 687, 892, 81, 896, 397, 267, 589, 386, 795, 1416, 132, 265, 1609, 1461, 883, 88, 840, 988, 1354, 676, 916, 629, 1269, 924, 294, 261, 1541, 1081, 1348, 1576, 405, 1616, 356, 608, 1097, 239, 1249, 1099, 1403, 119, 1096, 977, 751, 374, 453, 110, 1336, 1390, 905, 1287, 503, 1031, 1331, 1224, 729, 410, 1540, 367, 1607, 384, 200, 65, 1358, 1394, 1023, 272, 1418, 955, 677, 238, 1133, 974, 541, 478, 1257, 1265, 1465, 1589, 1326, 188, 1083, 681, 906, 1092, 1276, 316, 214, 1078, 1502, 1084, 660, 1142, 531, 255, 30, 662, 1253, 230, 157, 1343, 385, 1169, 380, 1188, 721, 264, 787, 101, 13, 1274, 68, 1024, 1170, 1156, 71, 1577, 566, 1372, 1245, 798, 523, 626, 495, 937, 155, 887, 758, 921, 790, 1349, 1230, 366, 1531, 983, 839, 228, 417, 206, 742, 79, 190, 492, 948, 145, 923, 318, 824, 1374, 1124, 1463, 596, 457, 144, 1359, 1292, 1045, 764, 842, 1140, 1408, 995, 904, 592, 1458, 135, 83, 1062, 154, 1440, 1283, 773, 1414, 127, 1177, 1318, 1413, 403, 150, 346, 413, 1303, 1523, 1619, 394, 1261, 1054, 208, 496, 352, 95, 625, 571, 37, 485, 143, 946, 158, 552, 1527, 1029, 518, 1180, 1218, 236, 1100, 222, 1431, 345, 1459, 120, 661, 588, 1623, 1493, 62, 1429, 811, 193, 235, 181, 1320, 389, 1103, 521, 669, 332, 258, 1369, 1538, 957, 382, 1382, 1567, 331, 934, 614, 262, 893, 6, 266, 769, 38, 901, 1573, 1578, 545, 118, 783, 652, 1025, 706, 105, 1189, 484, 1569, 630, 683, 20, 870, 242, 50, 162, 915, 966, 441, 867, 731, 1102, 1000, 1268, 1223, 822, 301, 723, 172], \"y\": [101.0, 106.0, 194.0, 126.0, 68.0, 196.0, 164.0, 94.0, 47.0, 99.0, 97.0, 124.0, 95.0, 163.0, 32.0, 191.0, 156.0, 111.0, 119.0, 167.0, 127.0, 118.0, 38.0, 131.0, 14.0, 21.0, 61.0, 28.0, 162.0, 212.5, 25.0, 111.0, 193.0, 85.0, 74.0, 191.0, 147.0, 207.0, 181.0, 179.0, 99.0, 127.0, 134.0, 133.0, 93.0, 148.0, 74.0, 143.0, 136.0, 178.0, 99.0, 42.0, 125.0, 121.0, 131.0, 129.0, 115.0, 219.0, 76.0, 150.0, 81.0, 31.0, 124.0, 85.0, 185.0, 156.0, 225.0, 101.0, 238.0, 27.0, 45.0, 135.0, 86.0, 110.0, 212.0, 72.0, 195.0, 174.0, 18.0, 122.0, 137.0, 59.0, 66.0, 175.0, 145.0, 181.0, 163.0, 159.0, 63.0, 165.0, 64.0, 64.0, 166.0, 150.0, 105.0, 85.0, 100.0, 127.0, 24.0, 73.0, 144.0, 155.0, 164.0, 89.0, 153.0, 189.0, 135.0, 100.0, 152.0, 117.0, 114.0, 113.0, 145.0, 174.0, 161.0, 39.0, 38.0, 127.0, 25.0, 87.0, 144.0, 60.0, 128.0, 101.0, 44.0, 162.0, 143.0, 26.0, 55.0, 96.0, 150.0, 171.0, 172.0, 67.0, 132.0, 143.0, 177.0, 108.0, 115.0, 107.0, 117.0, 97.0, 28.0, 294.0, 112.0, 38.0, 10.0, 24.0, 126.0, 174.0, 101.0, 22.0, 121.0, 189.0, 40.0, 176.0, 131.0, 105.0, 139.0, 91.0, 109.0, 117.0, 107.0, 75.0, 33.0, 176.0, 26.0, 112.0, 76.0, 49.0, 138.0, 35.0, 153.0, 152.0, 136.0, 59.0, 38.0, 23.0, 158.0, 121.0, 44.0, 81.0, 60.0, 145.0, 16.0, 53.0, 94.0, 26.0, 84.0, 82.0, 38.0, 98.0, 201.0, 23.0, 253.0, 74.0, 213.0, 12.0, 60.0, 169.0, 216.0, 186.0, 26.0, 118.0, 166.0, 58.0, 35.0, 153.0, 91.0, 11.0, 204.0, 45.0, 99.0, 190.0, 34.0, 47.0, 134.0, 23.0, 42.0, 116.0, 98.0, 93.0, 94.0, 103.0, 16.0, 116.0, 182.0, 168.0, 164.0, 47.0, 28.0, 23.0, 92.0, 192.0, 65.0, 28.0, 86.0, 135.0, 199.0, 20.0, 80.0, 148.0, 29.0, 48.0, 123.0, 100.0, 107.0, 41.0, 9.0, 111.0, 88.0, 255.0, 213.0, 61.0, 98.0, 129.0, 216.0, 111.0, 43.0, 84.0, 126.0, 131.0, 21.0, 187.0, 124.0, 143.0, 117.0, 80.0, 169.0, 141.0, 35.0, 28.0, 72.0, 59.0, 171.0, 170.0, 184.0, 174.0, 102.0, 36.0, 210.0, 134.0, 124.0, 149.0, 16.0, 92.0, 118.0, 213.0, 133.0, 54.0, 109.0, 76.0, 89.0, 190.0, 133.0, 98.0, 9.0, 129.0, 245.0, 84.0, 191.0, 130.0, 131.0, 99.0, 148.0, 76.0, 134.0, 142.0, 183.0, 116.0, 125.0, 34.0, 216.0, 94.0, 88.0, 35.0, 124.0, 167.0, 133.0, 90.0, 38.0, 143.0, 174.0, 200.0, 9.0, 90.0, 105.0, 125.0, 26.0, 244.0, 15.0, 209.0, 189.0, 119.0, 197.0, 212.0, 118.0, 161.0, 59.0, 59.0, 172.0, 148.0, 65.0, 97.0, 84.0, 104.0, 33.0, 170.0, 30.0, 189.0, 99.0, 53.0, 166.0, 90.0, 140.0, 150.0, 114.0, 146.0, 144.0, 196.0, 44.0, 118.0, 179.0, 132.0, 132.0, 104.0, 54.0, 161.0, 19.0, 102.0, 20.0, 155.0, 193.0, 111.0, 94.0, 89.0, 31.0, 150.0, 143.0, 123.0, 145.0, 20.0, 201.0, 107.0, 105.0, 55.0, 227.0, 213.0, 95.0, 126.0, 56.0, 68.0, 73.0, 178.0, 111.0, 153.0, 15.0, 168.0, 111.0, 181.0, 172.0, 139.0, 110.0, 136.0, 189.0, 121.0, 13.0, 135.0, 104.0, 117.0, 51.0, 49.0, 113.0, 39.0, 148.0, 94.0, 126.0, 109.0, 102.0, 117.0, 169.0, 95.0, 51.0, 26.0, 122.0, 104.0, 77.0, 120.0, 114.0, 19.0, 132.0, 73.0, 68.0, 145.0, 135.0, 47.0, 149.0, 12.0, 132.0, 138.0, 87.0, 125.0, 139.0, 12.0, 94.0, 140.0, 143.0, 139.0, 166.0, 97.0, 114.0, 212.0, 119.0, 109.0, 129.0, 176.0, 163.0, 145.0, 134.0, 117.0, 178.0, 44.0, 95.0, 135.0, 143.0, 183.0, 180.0, 90.0, 129.0, 72.0, 131.0, 213.0, 32.0, 123.0, 81.0, 55.0, 152.0, 214.0, 126.0, 117.0, 173.0, 128.0, 173.0, 116.0, 204.0, 134.0, 156.0, 29.0, 134.0, 65.0, 151.0, 114.0, 44.0, 164.0, 125.0, 28.0, 90.0, 156.0, 56.0, 28.0, 201.0, 106.0, 116.0, 92.0, 140.0, 150.0, 182.0, 165.0, 225.0, 114.0, 142.0, 39.0, 142.0, 98.0, 188.0, 55.0, 86.0, 27.0, 113.0, 178.0, 87.0, 140.0, 33.0, 85.0, 158.0, 102.0, 95.0, 169.0, 103.0, 107.0, 191.0, 151.0, 28.0, 119.0, 113.0, 220.0, 163.0, 219.0, 26.0, 95.0, 135.0, 55.0, 171.0, 158.0, 21.0, 206.0, 113.0, 168.0, 122.0, 157.0, 173.0, 161.0, 97.0, 227.0, 42.0, 107.0, 81.0, 17.0, 17.0, 84.0, 162.0, 96.0, 118.0, 38.0, 161.0, 111.0, 118.0, 125.0, 143.0, 150.0, 116.0, 189.0, 142.0, 149.0, 98.0, 166.0, 86.0, 135.0, 68.0, 12.0, 131.0, 172.0, 102.0, 174.0, 128.0, 194.0, 108.0, 196.0, 83.0, 35.0, 155.0, 26.0, 189.0, 87.0, 93.0, 35.0, 187.0, 150.0, 89.0, 158.0, 114.0, 142.0, 120.0, 156.0, 97.0, 169.0, 11.0, 201.0, 130.0, 109.0, 149.0, 80.0, 162.0, 198.0, 23.0, 125.0, 89.0, 81.0, 55.0, 185.0, 53.0, 183.0, 173.0, 15.0, 138.0, 245.0, 17.0, 122.0, 130.0, 75.0, 160.0, 146.0, 90.0, 106.0, 34.0, 34.0, 48.0, 15.0, 118.0, 106.0, 151.0, 150.0, 85.0, 140.0, 85.0, 222.0, 155.0, 84.0, 109.0, 80.0, 17.0, 38.0, 169.0, 172.0, 172.0, 178.0, 93.0, 99.0, 60.0, 142.0, 171.0, 202.0, 126.0, 229.0, 216.0, 154.0, 119.0, 27.0, 43.0, 146.0, 104.0, 89.0, 199.0, 15.0, 167.0, 60.0, 112.0, 47.0, 143.0, 161.0, 48.0, 136.0, 89.0, 141.0, 9.0, 129.0, 154.0, 159.0, 113.0, 88.0, 158.0, 138.0, 145.0, 29.0, 179.0, 63.0, 92.0, 167.0, 181.0, 173.0, 160.0, 107.0, 131.0, 151.0, 129.0, 79.0, 132.0, 37.0, 213.0, 101.0, 170.0, 163.0, 50.0, 210.0, 135.0, 98.0, 77.0, 172.0, 31.0, 138.0, 162.0, 117.0, 102.0, 190.0, 75.0, 135.0, 105.0, 123.0, 143.0, 134.0, 169.0, 85.0, 70.0, 21.0, 182.0, 42.0, 186.0, 111.0, 153.0, 132.0, 111.0, 28.0, 101.0, 133.0, 25.0, 162.0, 238.5, 155.0, 44.0, 38.0, 100.0, 37.0, 101.0, 129.5, 168.0, 168.0, 43.0, 47.0, 40.0, 71.0, 186.0, 77.0, 113.0, 14.0, 125.0, 46.0, 11.0, 49.0, 117.0, 118.0, 164.0, 139.0, 229.0, 114.0, 98.0, 28.0, 53.0, 113.0, 187.0, 200.0, 148.0, 107.0, 133.0, 88.0, 128.0, 108.0, 70.0, 80.0, 113.0, 73.0, 152.0, 210.0, 104.0, 45.0, 72.0, 82.0, 19.0, 136.0, 206.0, 87.0, 161.0, 41.0, 173.0, 105.0, 14.0, 197.0, 97.0, 180.0, 147.0, 149.0, 135.0, 145.0, 116.0, 148.0, 150.0, 164.5, 21.0, 109.0, 126.0, 48.0, 128.0, 66.0, 178.0, 101.0, 16.0, 191.0, 180.0, 147.0, 14.0, 132.0, 10.0, 189.0, 151.0, 85.0, 137.0, 156.0, 31.0, 166.0, 98.0, 192.0, 167.0, 10.0, 153.0, 49.0, 99.0, 68.0, 16.0, 22.0, 80.0, 229.0, 225.0, 132.0, 47.0, 104.0, 122.0, 10.0, 57.0, 176.0, 226.0, 150.0, 210.0, 69.0, 131.0, 76.0, 102.0, 129.0, 95.0, 116.0, 168.0, 19.0, 21.0, 105.0, 173.0, 189.0, 142.0, 177.0, 177.0, 181.0, 58.0, 71.0, 191.0, 140.0, 110.0, 184.0, 152.0, 164.0, 105.0, 117.0, 124.0, 91.0, 69.0, 181.0, 145.0, 175.0, 85.0, 162.0, 181.0, 168.0, 157.0, 128.0, 89.0, 197.0, 167.0, 155.0, 138.0, 20.0, 212.0, 78.0, 25.0, 35.0, 80.0, 130.0, 129.0, 122.0, 7.0, 25.0, 69.0, 120.0, 140.0, 20.0, 124.0, 164.0, 14.0, 83.0, 136.0, 151.0, 157.0, 161.0, 6.0, 169.0, 221.0, 200.0, 190.0, 168.0, 10.0, 113.0, 166.0, 91.0, 13.0, 104.0, 85.0, 136.0, 167.0, 99.0, 103.0, 159.0, 108.0, 148.0, 91.0, 28.0, 136.0, 103.0, 213.0, 189.0, 85.0, 127.0, 169.0, 133.0, 107.0, 91.0, 112.0, 138.0, 82.0, 114.0, 72.0, 104.0, 84.0, 180.0, 159.0, 121.0, 17.0, 128.0, 61.0, 16.0, 43.0, 87.0, 136.0, 63.0, 16.0, 140.0, 49.0, 144.0, 74.0, 122.0, 106.0, 86.0, 145.0, 153.0, 127.0, 228.0, 112.0, 138.0, 157.0, 140.0, 112.0, 192.0, 114.0, 92.0, 128.0, 111.0]}, {\"marker\": {\"color\": \"white\", \"opacity\": 0.005, \"size\": 0.01}, \"mode\": \"markers\", \"name\": \"Current\", \"showlegend\": false, \"type\": \"scatter\", \"x\": [2, 2], \"y\": [-51.181601485274925, 286.8396014852749]}], \"layout\": {\"legend\": {\"orientation\": \"h\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"shapes\": [{\"fillcolor\": \"LightGreen\", \"layer\": \"below\", \"line\": {\"width\": 0}, \"opacity\": 0.5, \"type\": \"rect\", \"x0\": 0, \"x1\": 1, \"xref\": \"paper\", \"y0\": -51.181601485274925, \"y1\": 286.8396014852749, \"yref\": \"y\"}, {\"line\": {\"color\": \"Green\", \"width\": 3}, \"name\": \"Reference\", \"type\": \"line\", \"x0\": 0, \"x1\": 1, \"xref\": \"paper\", \"y0\": 117.829, \"y1\": 117.829, \"yref\": \"y\"}], \"showlegend\": true, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"Index\"}}, \"yaxis\": {\"title\": {\"text\": \"total.sulfur.dioxide\"}}}}}}, {\"id\": \"density_distr\", \"params\": {\"data\": [{\"histnorm\": \"probability\", \"marker\": {\"color\": \"#4d4d4d\"}, \"name\": \"Reference\", \"nbinsx\": 10, \"opacity\": 0.6, \"type\": \"histogram\", \"x\": [0.992, 0.9964, 0.99097, 0.99511, 0.9934, 0.99558, 0.98894, 0.9909, 0.9902, 0.98994, 0.9926, 0.9976, 0.99458, 0.9951, 0.991, 1.0, 0.9936, 0.9955, 0.9949, 0.9954, 0.99922, 0.99, 1.0032, 0.99002, 0.9976, 0.99364, 0.9944, 0.99648, 0.99566, 0.996, 0.99175, 0.99898, 0.9928, 0.99085, 0.9938, 0.9938, 0.99914, 0.98742, 0.9955, 0.9942, 0.9892, 0.9927, 0.9982, 0.9911, 0.99728, 0.99244, 0.9932, 0.99459, 0.99655, 0.9914, 0.994, 0.99904, 0.9964, 0.99035, 0.9927, 0.99076, 0.99855, 0.9969, 0.98892, 0.9964, 0.99015, 0.99089, 0.98954, 0.9945, 0.9971, 0.9958, 0.99245, 0.99242, 0.9979, 0.997, 0.99676, 0.9972, 0.99403, 0.9978, 0.992, 0.9962, 0.9906, 0.9979, 0.99741, 0.9978, 0.9991, 0.99266, 0.9969, 0.98998, 0.9932, 0.9965, 0.99304, 0.9948, 0.992, 0.9979, 0.9975, 0.99201, 0.98941, 0.9958, 0.992, 0.992, 0.9935, 0.99758, 0.99519, 0.9971, 0.99016, 0.9958, 0.991, 0.99792, 0.993, 0.99828, 0.9928, 1.001, 0.9984, 0.9941, 0.99064, 0.9941, 0.99593, 0.9954, 0.99773, 0.9925, 0.99146, 0.99254, 0.99628, 0.9957, 0.9918, 0.98934, 0.9974, 0.99278, 0.99824, 0.99316, 0.9951, 0.9965, 1.0002, 0.99556, 0.9973, 0.98928, 0.99638, 0.9916, 0.995, 0.99699, 0.9988, 0.99012, 0.9959, 0.99109, 0.997, 0.9935, 0.99096, 0.9918, 0.99212, 0.9982, 0.9896, 0.9984, 0.9919, 0.9918, 0.9942, 0.9926, 1.0001, 0.9972, 0.998, 0.99334, 0.9912, 0.99471, 0.997, 0.99733, 0.99241, 0.992, 0.9964, 0.9956, 0.99567, 0.98959, 0.98984, 0.9973, 0.9946, 0.9934, 0.9986, 0.993, 0.99638, 0.9951, 0.98914, 0.9963, 0.99817, 0.9938, 0.9925, 0.9976, 0.9946, 0.99058, 0.99472, 0.99002, 0.99048, 1.0103, 0.99208, 0.99166, 0.99208, 0.99666, 0.99745, 0.99202, 0.9889, 0.9941, 0.99034, 0.99892, 0.98974, 0.99152, 0.999, 0.99534, 0.99808, 0.99397, 0.9948, 0.9924, 0.9957, 0.99585, 0.9974, 0.998, 0.99678, 0.99538, 0.9958, 0.9974, 0.99382, 0.99699, 0.9931, 0.995, 0.9983, 0.9934, 0.98746, 0.9932, 0.9998, 0.9941, 0.9937, 0.99624, 0.9966, 0.98976, 0.99834, 0.99817, 0.99627, 0.98968, 0.998, 0.99007, 0.9945, 0.99452, 0.9961, 0.9935, 0.9984, 0.9964, 0.9976, 0.9938, 0.99279, 0.9905, 0.9948, 1.0, 0.9974, 0.99792, 0.998, 0.99256, 0.99775, 0.99548, 0.99835, 0.99189, 0.998, 0.99033, 0.996, 0.99528, 0.9908, 0.9931, 0.9998, 0.98972, 0.9982, 0.9949, 0.99616, 0.99014, 0.9974, 0.9982, 0.9938, 0.9962, 0.99642, 0.9942, 0.99405, 1.0008, 0.9977, 0.9894, 0.99625, 0.9973, 0.99684, 0.99566, 0.9902, 0.9963, 0.99502, 0.9964, 0.9956, 0.993, 0.99507, 0.9937, 0.9964, 0.9948, 0.9964, 0.9939, 0.9958, 0.99174, 0.9949, 0.99634, 0.99736, 0.99462, 0.99, 0.99458, 0.9895, 0.99642, 0.9949, 0.991, 0.98758, 0.9976, 0.9973, 0.99001, 0.9912, 0.9985, 0.9932, 0.9934, 0.99183, 0.99378, 0.9918, 0.9976, 0.99269, 0.99744, 0.9901, 0.99353, 0.99374, 0.99178, 0.9968, 0.99041, 0.99184, 0.9948, 0.9916, 0.99687, 0.9926, 0.99504, 0.998, 0.99394, 0.99408, 0.9974, 0.9944, 0.99807, 0.99718, 0.9982, 0.99437, 0.9963, 0.9928, 0.9916, 0.99111, 0.9959, 0.99579, 0.9939, 0.99215, 0.99089, 0.9934, 0.99112, 0.9938, 0.99276, 0.98954, 1.001, 0.9926, 0.9997, 0.9923, 0.9907, 0.99478, 0.99814, 0.99604, 0.9938, 0.9986, 0.99945, 0.99534, 0.9946, 0.993, 0.99471, 0.9956, 0.99235, 0.9928, 0.99379, 0.9986, 0.99138, 0.9962, 0.99522, 0.99224, 0.99324, 0.9922, 0.9989, 0.9954, 0.9908, 0.99397, 0.99558, 0.99582, 0.9904, 0.99736, 0.9979, 0.9931, 0.99955, 0.99588, 0.9938, 0.99287, 0.9932, 0.9937, 0.99776, 0.9953, 0.98994, 1.0003, 0.9924, 0.99678, 0.9986, 0.9981, 0.9972, 0.9912, 0.99783, 0.9982, 0.99672, 0.9907, 0.99674, 0.99669, 0.99278, 0.99022, 0.99396, 0.9912, 0.99317, 0.9948, 0.99656, 0.9973, 0.9911, 1.001, 0.9969, 0.99153, 0.9938, 0.9905, 0.9928, 0.9988, 0.9981, 0.991, 0.99119, 0.9911, 0.991, 0.99652, 0.99489, 0.98942, 0.99429, 0.99144, 0.99587, 0.9949, 0.99254, 0.99252, 0.98919, 0.99784, 0.99469, 0.99523, 0.9942, 0.99378, 0.99504, 0.99212, 0.9941, 0.9986, 0.99738, 0.9958, 0.9911, 0.99008, 0.98963, 0.99116, 0.99545, 0.99946, 0.997, 0.99537, 0.9971, 0.99044, 0.98956, 0.9924, 0.9981, 0.99873, 0.9966, 0.9916, 0.99408, 0.99174, 0.99682, 0.9937, 0.9955, 0.9961, 0.9972, 0.99166, 0.9968, 0.9921, 0.99199, 0.9937, 0.99308, 0.994, 0.99387, 0.99462, 0.9964, 0.9924, 0.992, 0.9928, 0.994, 0.99534, 0.9946, 0.9982, 0.9945, 0.99512, 0.99057, 0.9994, 0.99098, 0.9999, 0.99642, 0.99274, 0.99685, 0.9966, 0.9937, 0.9983, 0.99362, 0.9923, 0.992, 0.9925, 1.0002, 0.9968, 0.9942, 0.98912, 0.99094, 0.9892, 0.98914, 0.99036, 0.99548, 0.9908, 0.99672, 0.9918, 0.9927, 0.9968, 0.9917, 0.9972, 0.9954, 0.99546, 0.9974, 0.99198, 0.99308, 0.99388, 0.99066, 0.9986, 0.99464, 0.99907, 0.99255, 0.9917, 0.9937, 0.99954, 0.99202, 1.00242, 1.00242, 0.99414, 0.9982, 0.9952, 0.9962, 0.9934, 0.9891, 0.9941, 0.9966, 0.99573, 0.99234, 0.9936, 0.9967, 0.99625, 0.99685, 0.98918, 0.9986, 0.99518, 0.99184, 0.9932, 0.99469, 0.9982, 0.99109, 0.99705, 0.9917, 0.9964, 0.98987, 0.9996, 0.9904, 0.99886, 0.9924, 0.9942, 0.997, 0.99494, 0.99745, 0.99606, 0.9897, 0.994, 0.99168, 0.98999, 0.9909, 0.9952, 0.9977, 0.99615, 0.9975, 0.9926, 0.99872, 0.99772, 0.9918, 0.9929, 0.9948, 0.99036, 0.9981, 0.9904, 0.99228, 0.9993, 0.98984, 0.99822, 0.99299, 0.9987, 1.0015, 0.9958, 0.99578, 0.99563, 0.9984, 0.9984, 0.99026, 0.9957, 0.99194, 1.00369, 0.993, 0.9982, 0.9941, 0.9952, 0.99166, 0.99035, 0.9916, 0.99896, 0.9945, 0.9927, 0.99627, 0.9954, 0.99549, 0.9922, 1.00295, 0.98956, 0.9932, 1.0005, 0.9973, 0.9934, 0.9961, 0.997, 0.99352, 0.9994, 0.998, 0.99238, 0.99524, 0.9927, 0.9917, 0.9944, 0.9914, 0.9938, 0.9957, 1.00044, 0.99026, 0.99244, 0.9957, 0.99304, 0.99331, 0.99108, 0.992, 0.9923, 0.99064, 1.00118, 0.9921, 0.999, 0.99392, 0.994, 0.9944, 0.99546, 0.99326, 0.995, 0.99792, 0.99534, 0.9908, 0.99314, 0.99158, 0.99136, 0.99122, 0.9972, 0.99818, 0.99561, 0.9928, 0.9931, 0.99839, 0.99063, 0.99024, 0.9948, 0.99026, 0.99734, 0.9978, 0.9898, 0.993, 0.99273, 0.98816, 0.99602, 0.9978, 0.9965, 0.99586, 0.9925, 1.001, 0.9986, 0.9944, 0.9912, 0.9965, 0.9916, 0.9966, 0.99434, 0.9987, 0.99496, 0.99132, 0.996, 0.99358, 0.9938, 0.9977, 0.9934, 0.9934, 0.9978, 0.99074, 0.99048, 0.9898, 0.996, 0.98994, 0.99342, 0.9966, 1.0004, 0.9948, 0.99514, 0.99596, 0.99602, 1.0004, 0.9986, 0.9971, 0.9926, 1.0003, 1.00051, 0.99084, 0.99566, 0.9946, 0.9927, 0.9912, 0.99581, 0.995, 0.9972, 0.99656, 0.9965, 0.99975, 0.99052, 0.998, 0.989, 0.9916, 0.99238, 0.99455, 0.9954, 0.99479, 0.99393, 0.9924, 0.9946, 0.99362, 1.00038, 0.99906, 0.9958, 0.99296, 0.99633, 0.9977, 1.00241, 0.99475, 0.9935, 0.9906, 0.9984, 0.99835, 0.98883, 0.994, 0.99611, 0.9932, 0.99863, 0.99686, 0.99322, 0.9948, 0.99794, 0.99678, 0.99331, 0.9925, 0.9978, 0.99392, 0.99105, 0.99384, 0.99596, 0.99216, 0.9956, 0.99321, 0.9979, 0.99124, 0.99472, 0.98946, 0.9945, 0.98926, 0.9925, 0.9898, 0.99794, 0.99066, 0.99587, 0.9984, 0.98942, 0.98876, 0.99588, 0.99045, 0.9922, 0.9975, 0.9978, 0.9913, 0.9906, 0.99416, 0.98794, 0.9925, 0.99689, 0.9953, 0.9911, 0.99675, 0.98931, 0.9983, 0.992, 0.99658, 0.99136, 0.9991, 0.99572, 0.9964, 0.9942, 0.99582, 0.992, 0.9959, 0.99658, 0.9972, 0.9923, 0.9965, 0.9952, 0.99461, 0.9921, 0.99287, 0.9955, 0.9918, 0.9944, 0.98944, 0.9976, 0.9953, 0.99074, 0.9918, 0.98794, 0.99643, 0.9954, 0.99114, 0.99374, 0.99218, 0.9962, 0.9948, 0.9924, 0.993, 0.99076, 0.9966, 0.99152, 0.99498, 0.99782, 0.9925, 0.99709, 0.99615, 0.99458, 0.99806, 0.99715, 0.9983, 0.99056, 0.9937, 0.998, 0.9965, 0.9906, 0.9982, 0.99346, 0.99157, 0.9919, 0.9937, 0.99157, 0.9953, 0.9898, 0.99814, 0.99543, 0.9899, 0.9937, 0.99203, 0.99036, 0.99008, 0.9892, 0.99971, 0.9966, 1.0001, 0.9926, 0.99943, 0.992, 0.9955, 0.99785, 0.9927, 0.99044, 0.9986, 0.99657, 0.9912, 0.995, 0.9945, 0.99558, 0.995, 0.9942, 0.99522, 0.99689, 0.9955, 0.98856, 0.9939, 0.9927, 0.9979, 0.99095, 0.9972, 0.9938, 0.98946, 0.99542, 1.00098, 0.98944, 0.9985, 0.9984, 0.99411, 0.9969, 0.99266, 0.99732, 0.9962, 0.99268, 0.99647, 0.9971, 0.9917, 0.9925, 0.9968, 0.99142, 0.9968, 0.9964, 0.9979, 0.99214, 0.9955, 0.99737, 0.9962, 0.9917, 0.9949, 0.99663, 0.99807, 0.99334, 0.99798, 0.9976, 0.99558, 0.9972, 0.98946, 0.99454, 0.99543, 0.9934, 0.9938, 0.9967, 0.9947, 0.99577, 0.9969, 0.99752, 0.99082, 1.001, 0.9983, 0.9962, 0.9987, 0.99516, 0.9986, 0.99164, 0.99692, 0.9974, 0.9928, 0.99902, 1.0001, 0.99032, 0.998, 0.99848, 0.9909, 0.9928, 0.99494, 0.98987, 0.9934, 0.99578, 0.9939, 0.9976, 0.997, 0.9986, 0.99544, 0.99321, 0.9982, 0.99072, 0.9985, 0.99494, 0.99118, 0.9968, 0.99748, 0.99112, 0.99773, 1.0004, 0.9964, 0.994, 0.99898, 0.9907, 0.9921, 0.9966, 0.99575, 0.998, 0.9934, 0.9937, 0.99517]}, {\"histnorm\": \"probability\", \"marker\": {\"color\": \"#ed0400\"}, \"name\": \"Current\", \"nbinsx\": 10, \"opacity\": 0.6, \"type\": \"histogram\", \"x\": [0.9934, 0.9966, 0.9979, 0.99234, 0.9932, 0.99556, 0.9939, 0.99686, 0.99126, 0.9927, 0.9926, 0.99362, 0.989435, 0.99239, 1.0, 0.9908, 0.9996, 0.98918, 0.99168, 1.001, 0.98904, 0.9932, 0.99438, 0.99565, 0.998, 0.99692, 0.99189, 0.999, 0.9903, 0.999, 0.9997, 0.9956, 0.9986, 0.9918, 0.992, 0.99513, 0.9935, 0.99587, 0.99869, 0.99541, 0.9893, 0.99326, 0.99146, 1.0, 0.99144, 0.99165, 0.98889, 0.9959, 0.9957, 0.9992, 0.99449, 1.0004, 0.99253, 0.98871, 0.9905, 0.9936, 0.9918, 0.9996, 0.9914, 0.99488, 0.98988, 0.995, 0.99123, 0.99014, 0.9946, 0.9958, 0.9978, 0.99009, 0.9986, 0.9974, 0.99417, 0.9998, 0.9968, 0.9926, 0.9969, 0.997, 0.9908, 0.99898, 0.9972, 0.9917, 0.9946, 0.9922, 0.99215, 0.99376, 1.0006, 0.998, 0.9931, 0.99839, 0.9916, 0.99795, 0.99652, 0.99724, 0.9944, 0.99727, 0.99206, 0.99406, 0.99534, 0.98964, 0.99798, 0.9963, 0.9966, 0.9951, 0.9926, 0.99236, 0.9945, 0.9986, 0.99341, 0.99064, 0.998, 0.99815, 0.99313, 0.9983, 0.99668, 0.99922, 0.99207, 0.9968, 0.9949, 0.9953, 0.9975, 0.98972, 0.9923, 0.99492, 0.9934, 0.9918, 0.99494, 0.9914, 0.9965, 0.99536, 0.99652, 0.99456, 0.9968, 0.9982, 0.9932, 0.992, 0.994, 0.99526, 0.99212, 0.9934, 0.9904, 0.98836, 0.9931, 0.99148, 0.99704, 0.99018, 0.9976, 0.99616, 0.9968, 0.99376, 0.993, 0.99911, 0.99596, 0.99438, 0.98882, 0.9986, 0.99244, 0.99454, 0.99566, 0.996, 1.0011, 0.9937, 0.99262, 0.99132, 0.99159, 0.99551, 0.99612, 1.0103, 0.9976, 0.99144, 0.9893, 0.9963, 0.99171, 0.9934, 0.99238, 0.9934, 0.99552, 0.9989, 0.99748, 1.00315, 0.99322, 0.98976, 0.99384, 0.99, 0.99638, 0.9966, 0.99649, 0.9981, 0.991, 0.9984, 0.98961, 0.98961, 0.9933, 0.98918, 0.99848, 1.00315, 1.00014, 0.9931, 1.0006, 0.99667, 0.9979, 0.99252, 0.9976, 0.9962, 1.0006, 0.9917, 0.9943, 0.995, 0.9994, 0.99576, 0.99657, 0.99592, 0.99745, 0.99702, 0.9916, 0.9993, 0.9978, 0.9991, 0.993, 0.9965, 0.9956, 0.9927, 0.99564, 0.99094, 0.997, 0.9987, 0.99654, 0.98954, 0.99093, 0.99212, 0.9912, 0.99676, 0.9947, 0.99694, 0.99232, 0.9979, 0.9898, 0.9983, 0.98934, 0.9938, 0.99394, 0.9992, 0.9913, 0.99458, 0.9959, 0.99554, 0.9932, 0.99099, 0.9923, 0.99665, 0.99738, 0.99174, 0.9907, 1.0, 0.9927, 0.9918, 0.99345, 0.991, 0.99154, 0.98872, 0.99444, 0.99717, 0.9966, 0.9943, 0.99576, 0.9972, 0.99646, 0.9968, 0.9934, 1.0002, 0.9938, 0.9956, 0.99314, 0.999, 0.9908, 0.9923, 0.9967, 1.001, 0.99976, 0.992, 0.9978, 0.9949, 0.9951, 0.9936, 0.99278, 0.9984, 0.998, 0.99076, 0.99064, 0.9991, 0.9931, 0.99683, 0.9918, 0.99173, 0.9893, 0.9993, 0.99612, 0.9914, 0.99476, 0.99312, 0.9937, 0.9929, 0.99294, 0.9928, 0.9958, 0.9947, 0.9986, 0.999, 0.993, 0.9972, 0.99742, 0.99224, 0.98986, 0.9948, 0.99596, 0.98998, 0.99918, 1.0006, 0.99162, 0.99479, 1.0, 0.99232, 0.9955, 0.9914, 0.9922, 0.9954, 0.99584, 0.9984, 0.99, 0.9914, 0.99448, 0.9956, 0.9975, 0.99544, 0.9994, 0.99416, 0.9989, 0.9971, 0.99134, 0.9941, 0.9964, 0.99617, 0.99194, 0.9983, 0.99842, 0.9951, 0.994, 0.9922, 0.9956, 1.0004, 0.99712, 0.99362, 0.99031, 0.9926, 0.99669, 0.99164, 0.99216, 0.9917, 0.9938, 0.99676, 0.99471, 0.9955, 0.9958, 0.99176, 0.9962, 0.99182, 0.99313, 0.9959, 0.9956, 0.9946, 0.996, 0.996, 0.99546, 0.99807, 0.9986, 0.9931, 0.99915, 0.99111, 0.9984, 0.9948, 0.9983, 0.9997, 1.0006, 0.99546, 0.9938, 0.9912, 0.99581, 0.98876, 0.99734, 0.9991, 0.99676, 0.9933, 0.992, 0.99694, 0.99095, 0.9976, 0.98924, 0.99067, 0.99498, 0.9946, 0.9931, 0.99435, 0.9938, 0.99055, 0.9912, 0.99516, 0.9958, 0.993, 0.9976, 0.9968, 0.99454, 0.99182, 0.98878, 0.9988, 0.9962, 0.9977, 0.9932, 0.99681, 0.99494, 0.99498, 0.99154, 0.9938, 0.9938, 0.99239, 0.99512, 0.9979, 0.99088, 0.99161, 0.9939, 0.99494, 0.99158, 0.9963, 0.99188, 0.99035, 0.9992, 0.9945, 0.9924, 1.0003, 0.99677, 0.9994, 0.99655, 0.99176, 0.98974, 0.99152, 0.99296, 0.9958, 0.99782, 0.9964, 0.99173, 0.9975, 0.99568, 0.9924, 0.9932, 0.99942, 0.98944, 0.9932, 0.9973, 0.9958, 0.99184, 0.99344, 0.9912, 0.9928, 0.9976, 0.99534, 0.98986, 0.99481, 0.99287, 0.99584, 0.991, 0.99047, 0.99691, 0.99165, 0.99696, 0.9988, 0.99646, 0.99708, 0.9902, 0.99745, 0.99178, 0.9963, 0.99232, 0.9938, 0.99872, 0.99212, 0.9934, 0.9982, 0.99176, 0.99408, 0.99572, 0.9974, 0.9998, 1.0026, 0.99, 0.992, 0.99734, 0.9975, 0.99204, 0.99492, 0.9944, 0.99666, 0.9904, 0.9994, 0.997, 0.99288, 0.994, 0.99264, 0.99299, 0.99534, 0.9996, 0.9997, 0.99685, 0.9966, 0.9958, 0.99346, 0.99215, 0.99521, 0.9974, 0.9956, 0.9934, 0.9967, 0.99406, 0.99204, 0.9936, 0.9926, 0.9982, 0.99086, 0.9955, 0.9964, 0.99158, 0.99975, 0.9987, 0.98918, 0.9966, 0.9926, 0.99815, 0.9923, 0.99366, 0.99775, 0.99706, 0.99742, 0.99358, 0.99071, 0.99582, 0.9988, 0.9986, 0.99642, 0.99551, 0.9956, 0.99862, 0.9957, 0.9941, 0.99688, 0.99882, 0.99324, 0.98823, 0.9952, 1.0004, 0.992, 0.99043, 1.0002, 0.99655, 0.9927, 0.99705, 0.98942, 0.99356, 0.99553, 0.99154, 0.99315, 0.9954, 0.9928, 0.99226, 0.9958, 0.9989, 0.9958, 0.9936, 0.99545, 0.99, 0.9948, 0.99743, 0.992, 0.9898, 0.99354, 0.99186, 0.99404, 0.99524, 0.99922, 0.992, 0.9988, 0.9939, 0.99555, 0.99173, 0.99557, 0.9999, 0.99531, 0.9976, 0.9903, 0.992, 0.9961, 0.9938, 0.991, 0.9936, 0.9907, 0.99784, 0.99382, 0.98952, 0.99947, 0.997, 0.998, 0.9962, 0.9976, 0.9952, 0.99148, 0.99792, 0.99058, 0.9983, 0.9986, 0.9974, 0.99282, 0.98993, 0.9923, 0.9927, 0.99519, 0.9967, 0.99922, 0.9958, 0.9994, 0.9974, 0.9951, 0.99683, 0.99165, 0.99176, 0.99006, 0.9977, 0.998, 0.99002, 0.99458, 0.99552, 0.99736, 0.99612, 0.9987, 0.9908, 0.99194, 0.9946, 0.99445, 0.98965, 0.9904, 0.99086, 0.9953, 0.9934, 0.99046, 0.9902, 0.99084, 0.99774, 0.9984, 0.9973, 0.9966, 0.996, 0.9976, 0.991, 0.99288, 0.9928, 0.9975, 0.99808, 0.9961, 0.9982, 0.9986, 0.9952, 0.9934, 0.996, 0.9934, 0.998, 0.9963, 0.9954, 0.98956, 0.9961, 0.9988, 0.99366, 0.99084, 0.99314, 0.99522, 0.99138, 0.9991, 0.99739, 0.99704, 0.9959, 0.9941, 0.99458, 0.99305, 0.99971, 0.9919, 0.99544, 0.99094, 0.9992, 1.0001, 0.9981, 0.99416, 0.99189, 0.9965, 0.98936, 0.99628, 0.99352, 0.9984, 0.99276, 0.9939, 0.99164, 0.9926, 0.99193, 0.993, 0.9928, 0.9966, 0.9991, 0.9931, 0.9944, 0.9952, 0.99467, 0.99771, 0.9984, 0.9943, 0.99381, 0.9946, 0.9993, 0.99176, 0.9962, 0.99048, 0.99121, 0.9944, 0.9936, 0.99174, 0.99469, 0.99052, 0.9944, 0.9927, 0.9986, 0.9962, 0.99362, 0.99552, 0.9958, 0.9978, 0.99884, 0.9958, 0.99779, 0.994, 0.9927, 0.99184, 0.98916, 0.99924, 0.99581, 0.9962, 0.9958, 0.99692, 0.99522, 0.99818, 0.9957, 0.99732, 0.99471, 0.9998, 0.9978, 0.9978, 0.99444, 0.99599, 0.9944, 0.99402, 0.99211, 0.9956, 0.99176, 0.9982, 0.9925, 0.9979, 0.99331, 0.9997, 0.99032, 0.99018, 0.99488, 0.99517, 0.9986, 0.9908, 0.99069, 0.9994, 0.98815, 0.99862, 0.9998, 0.99566, 0.9955, 0.99514, 0.9906, 0.9984, 0.9916, 0.9929, 0.99418, 0.992, 0.98779, 0.9915, 0.9934, 0.99907, 0.99, 0.99824, 0.998, 0.9958, 0.9986, 0.9968, 0.9956, 0.9983, 0.9993, 0.99439, 0.9887, 0.99047, 0.9968, 0.99202, 0.9906, 0.9965, 0.9901, 0.99772, 0.9948, 0.9986, 0.991, 0.99185, 0.9947, 0.9984, 0.99572, 0.99249, 0.9943, 0.9911, 0.99388, 0.99726, 0.9976, 0.989315, 0.99358, 0.99527, 0.9926, 0.9944, 0.9978, 0.996, 0.99636, 0.99784, 0.99626, 0.99746, 0.99304, 0.99316, 0.9984, 0.99339, 0.99274, 0.9955, 0.99804, 0.99724, 0.9921, 0.98845, 0.99437, 0.99708, 0.99614, 0.9986, 0.98992, 0.9986, 0.9997, 0.99182, 0.9996, 0.99362, 0.9928, 0.99552, 0.99115, 0.99454, 0.997, 0.99508, 0.99718, 0.99556, 0.9904, 0.98964, 0.9903, 0.99221, 0.99676, 0.9954, 0.99825, 0.99546, 0.9986, 0.9962, 0.9948, 0.991, 0.9945, 1.0004, 0.99479, 0.9954, 0.9965, 0.98912, 0.99516, 0.99042, 0.9963, 0.99787, 0.9916, 0.99742, 0.9893, 0.99158, 0.9954, 0.99172, 0.9944, 0.9925, 0.9998, 0.9944, 0.9906, 0.998, 0.99459, 0.9976, 0.9938, 0.99456, 0.9893, 0.99558, 0.9931, 0.9927, 0.9956, 0.9963, 0.997, 0.9931, 0.99514, 0.9968, 0.9932, 0.99354, 0.9948, 0.99261, 0.99454, 0.997, 0.9994, 0.99198, 0.998, 0.9954, 0.99773, 0.9953, 0.9994, 0.9928, 0.99068, 0.9963, 0.99384, 0.9991, 0.9969, 0.99275, 0.9952, 0.9956, 0.9932, 0.99212, 0.9967, 0.99165, 0.9968, 0.99616, 0.99659, 0.9924, 0.9918, 0.99316, 0.992, 0.9928, 0.99532, 0.9936, 0.98939, 0.9914, 0.99616, 0.9964, 0.99367, 0.98892, 0.99596, 0.99784, 0.992, 0.99198, 0.99267, 0.99271, 0.99347, 0.9919, 0.99089, 1.0001, 0.99425, 0.99226, 0.989465, 0.9952, 0.9902, 0.9958, 0.995, 0.9978, 0.99565, 0.99192, 0.9953, 0.9964, 1.0014, 0.9898, 0.9922, 0.99652, 0.9994, 0.99166, 0.99242, 0.99576, 0.9884, 0.9979, 0.9966, 0.99764, 0.9951, 0.9953, 0.98964, 1.0001, 0.99837, 1.0001, 0.9934, 0.998, 0.9932, 0.99586, 0.99014, 0.99372, 0.9917, 0.99455]}], \"layout\": {\"legend\": {\"orientation\": \"h\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"density\"}}, \"yaxis\": {\"title\": {\"text\": \"Share\"}}}}}, {\"id\": \"density_drift\", \"params\": {\"title\": \"\", \"size\": 2, \"text\": \"\", \"type\": \"big_graph\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"Current\", \"type\": \"scatter\", \"x\": [443, 319, 703, 526, 76, 963, 1260, 532, 1561, 517, 506, 1557, 271, 1058, 1381, 1039, 542, 107, 161, 1301, 519, 1021, 1213, 223, 1286, 1426, 1234, 587, 1183, 182, 567, 1492, 724, 1262, 1509, 657, 1137, 913, 1445, 342, 781, 14, 971, 1072, 1254, 678, 1175, 1481, 1370, 1443, 18, 1151, 1380, 434, 1430, 554, 53, 535, 1050, 427, 259, 124, 961, 1488, 1563, 720, 1291, 1061, 425, 846, 1147, 204, 1317, 618, 1088, 927, 1196, 582, 1194, 360, 1449, 862, 1135, 1453, 1442, 1017, 268, 685, 317, 775, 1086, 942, 1052, 801, 1362, 219, 379, 649, 1195, 479, 1542, 609, 930, 1105, 34, 708, 686, 1132, 693, 733, 1562, 1190, 473, 737, 672, 969, 858, 5, 1556, 298, 80, 940, 361, 1154, 1545, 1622, 784, 19, 1522, 996, 54, 1415, 1564, 1593, 1236, 9, 353, 1222, 113, 1010, 1263, 877, 82, 381, 818, 1210, 1409, 66, 254, 817, 92, 1340, 122, 1357, 511, 1546, 692, 17, 1248, 414, 52, 1296, 191, 175, 233, 900, 785, 935, 1298, 156, 487, 159, 481, 1255, 1597, 253, 1491, 841, 187, 914, 979, 249, 1114, 1366, 814, 716, 465, 875, 1242, 670, 299, 593, 436, 728, 141, 229, 1057, 912, 994, 648, 799, 1164, 1073, 4, 516, 152, 1267, 1237, 752, 1150, 825, 402, 1277, 575, 1437, 838, 390, 1505, 1093, 1026, 1611, 31, 674, 866, 1328, 616, 861, 897, 148, 303, 1451, 602, 1125, 1614, 1047, 1462, 1148, 574, 899, 1327, 89, 530, 408, 1192, 177, 520, 993, 326, 992, 717, 895, 1421, 984, 240, 85, 557, 278, 938, 1425, 958, 1232, 1149, 171, 1220, 227, 891, 489, 1391, 1184, 1032, 393, 726, 192, 260, 880, 1592, 1537, 491, 759, 1473, 959, 1454, 1015, 965, 1393, 1489, 1256, 133, 202, 1036, 438, 483, 666, 461, 142, 1181, 1580, 308, 538, 170, 310, 743, 1101, 1179, 315, 22, 1529, 45, 879, 1110, 61, 522, 1397, 829, 576, 1193, 1202, 1549, 1375, 27, 527, 1186, 1273, 828, 539, 1049, 1014, 412, 1091, 1497, 1595, 347, 2, 844, 1490, 632, 211, 1582, 918, 1217, 1115, 744, 459, 579, 771, 96, 178, 108, 1516, 805, 1240, 440, 619, 1, 1315, 1239, 1347, 512, 48, 722, 1517, 1621, 446, 565, 568, 796, 231, 1070, 1063, 215, 513, 704, 354, 55, 881, 746, 641, 762, 279, 1145, 1468, 224, 302, 911, 218, 1079, 874, 1266, 792, 1136, 372, 295, 364, 580, 1615, 688, 1560, 333, 467, 968, 399, 760, 740, 953, 1520, 1446, 1214, 615, 524, 546, 1495, 1324, 452, 1515, 432, 863, 442, 847, 276, 456, 184, 1116, 1200, 458, 1508, 1087, 1478, 376, 1479, 563, 1146, 1507, 42, 944, 823, 1228, 656, 1227, 198, 309, 761, 1158, 549, 47, 1209, 529, 933, 220, 1624, 1591, 651, 536, 362, 1314, 420, 564, 475, 482, 140, 679, 1436, 1334, 77, 39, 570, 962, 808, 981, 322, 1471, 251, 695, 1128, 813, 757, 820, 853, 831, 1246, 58, 553, 597, 241, 1288, 330, 1005, 789, 1617, 56, 1126, 411, 548, 501, 1211, 642, 558, 1605, 745, 878, 1056, 667, 435, 29, 270, 35, 1157, 422, 1310, 114, 1524, 1422, 689, 1018, 1168, 1360, 985, 1191, 793, 1363, 1504, 581, 644, 1199, 621, 1612, 494, 665, 431, 1095, 638, 1042, 1404, 1030, 40, 1121, 75, 1588, 1417, 247, 713, 1590, 186, 646, 312, 8, 1551, 1302, 1044, 768, 884, 1585, 1618, 826, 445, 712, 464, 1308, 195, 655, 1487, 1389, 1356, 243, 401, 572, 1074, 810, 477, 1460, 1544, 1182, 285, 471, 936, 1238, 578, 1034, 1535, 1513, 426, 1311, 1001, 986, 1038, 980, 1064, 620, 982, 1565, 194, 474, 1428, 569, 1165, 49, 1333, 1401, 1307, 1076, 991, 1566, 44, 1342, 245, 943, 300, 583, 1013, 269, 1548, 313, 776, 283, 1444, 540, 406, 338, 466, 363, 1002, 320, 1264, 1089, 70, 1027, 500, 10, 907, 505, 1295, 864, 1432, 64, 1122, 1543, 416, 898, 654, 205, 328, 486, 999, 1377, 970, 528, 1558, 418, 1379, 1299, 1378, 590, 1247, 1174, 472, 1323, 131, 15, 439, 1528, 476, 725, 1203, 1109, 1003, 1365, 103, 1279, 60, 871, 78, 391, 165, 1335, 1410, 1129, 960, 349, 185, 1464, 371, 117, 1398, 252, 507, 1613, 311, 1419, 395, 987, 358, 263, 359, 1559, 1305, 1506, 1376, 1055, 634, 1552, 16, 51, 1258, 493, 601, 997, 351, 711, 1604, 1486, 1339, 794, 97, 1475, 1423, 196, 748, 183, 1433, 1579, 613, 1536, 989, 682, 533, 610, 687, 892, 81, 896, 397, 267, 589, 386, 795, 1416, 132, 265, 1609, 1461, 883, 88, 840, 988, 1354, 676, 916, 629, 1269, 924, 294, 261, 1541, 1081, 1348, 1576, 405, 1616, 356, 608, 1097, 239, 1249, 1099, 1403, 119, 1096, 977, 751, 374, 453, 110, 1336, 1390, 905, 1287, 503, 1031, 1331, 1224, 729, 410, 1540, 367, 1607, 384, 200, 65, 1358, 1394, 1023, 272, 1418, 955, 677, 238, 1133, 974, 541, 478, 1257, 1265, 1465, 1589, 1326, 188, 1083, 681, 906, 1092, 1276, 316, 214, 1078, 1502, 1084, 660, 1142, 531, 255, 30, 662, 1253, 230, 157, 1343, 385, 1169, 380, 1188, 721, 264, 787, 101, 13, 1274, 68, 1024, 1170, 1156, 71, 1577, 566, 1372, 1245, 798, 523, 626, 495, 937, 155, 887, 758, 921, 790, 1349, 1230, 366, 1531, 983, 839, 228, 417, 206, 742, 79, 190, 492, 948, 145, 923, 318, 824, 1374, 1124, 1463, 596, 457, 144, 1359, 1292, 1045, 764, 842, 1140, 1408, 995, 904, 592, 1458, 135, 83, 1062, 154, 1440, 1283, 773, 1414, 127, 1177, 1318, 1413, 403, 150, 346, 413, 1303, 1523, 1619, 394, 1261, 1054, 208, 496, 352, 95, 625, 571, 37, 485, 143, 946, 158, 552, 1527, 1029, 518, 1180, 1218, 236, 1100, 222, 1431, 345, 1459, 120, 661, 588, 1623, 1493, 62, 1429, 811, 193, 235, 181, 1320, 389, 1103, 521, 669, 332, 258, 1369, 1538, 957, 382, 1382, 1567, 331, 934, 614, 262, 893, 6, 266, 769, 38, 901, 1573, 1578, 545, 118, 783, 652, 1025, 706, 105, 1189, 484, 1569, 630, 683, 20, 870, 242, 50, 162, 915, 966, 441, 867, 731, 1102, 1000, 1268, 1223, 822, 301, 723, 172], \"y\": [0.9934, 0.9966, 0.9979, 0.99234, 0.9932, 0.99556, 0.9939, 0.99686, 0.99126, 0.9927, 0.9926, 0.99362, 0.989435, 0.99239, 1.0, 0.9908, 0.9996, 0.98918, 0.99168, 1.001, 0.98904, 0.9932, 0.99438, 0.99565, 0.998, 0.99692, 0.99189, 0.999, 0.9903, 0.999, 0.9997, 0.9956, 0.9986, 0.9918, 0.992, 0.99513, 0.9935, 0.99587, 0.99869, 0.99541, 0.9893, 0.99326, 0.99146, 1.0, 0.99144, 0.99165, 0.98889, 0.9959, 0.9957, 0.9992, 0.99449, 1.0004, 0.99253, 0.98871, 0.9905, 0.9936, 0.9918, 0.9996, 0.9914, 0.99488, 0.98988, 0.995, 0.99123, 0.99014, 0.9946, 0.9958, 0.9978, 0.99009, 0.9986, 0.9974, 0.99417, 0.9998, 0.9968, 0.9926, 0.9969, 0.997, 0.9908, 0.99898, 0.9972, 0.9917, 0.9946, 0.9922, 0.99215, 0.99376, 1.0006, 0.998, 0.9931, 0.99839, 0.9916, 0.99795, 0.99652, 0.99724, 0.9944, 0.99727, 0.99206, 0.99406, 0.99534, 0.98964, 0.99798, 0.9963, 0.9966, 0.9951, 0.9926, 0.99236, 0.9945, 0.9986, 0.99341, 0.99064, 0.998, 0.99815, 0.99313, 0.9983, 0.99668, 0.99922, 0.99207, 0.9968, 0.9949, 0.9953, 0.9975, 0.98972, 0.9923, 0.99492, 0.9934, 0.9918, 0.99494, 0.9914, 0.9965, 0.99536, 0.99652, 0.99456, 0.9968, 0.9982, 0.9932, 0.992, 0.994, 0.99526, 0.99212, 0.9934, 0.9904, 0.98836, 0.9931, 0.99148, 0.99704, 0.99018, 0.9976, 0.99616, 0.9968, 0.99376, 0.993, 0.99911, 0.99596, 0.99438, 0.98882, 0.9986, 0.99244, 0.99454, 0.99566, 0.996, 1.0011, 0.9937, 0.99262, 0.99132, 0.99159, 0.99551, 0.99612, 1.0103, 0.9976, 0.99144, 0.9893, 0.9963, 0.99171, 0.9934, 0.99238, 0.9934, 0.99552, 0.9989, 0.99748, 1.00315, 0.99322, 0.98976, 0.99384, 0.99, 0.99638, 0.9966, 0.99649, 0.9981, 0.991, 0.9984, 0.98961, 0.98961, 0.9933, 0.98918, 0.99848, 1.00315, 1.00014, 0.9931, 1.0006, 0.99667, 0.9979, 0.99252, 0.9976, 0.9962, 1.0006, 0.9917, 0.9943, 0.995, 0.9994, 0.99576, 0.99657, 0.99592, 0.99745, 0.99702, 0.9916, 0.9993, 0.9978, 0.9991, 0.993, 0.9965, 0.9956, 0.9927, 0.99564, 0.99094, 0.997, 0.9987, 0.99654, 0.98954, 0.99093, 0.99212, 0.9912, 0.99676, 0.9947, 0.99694, 0.99232, 0.9979, 0.9898, 0.9983, 0.98934, 0.9938, 0.99394, 0.9992, 0.9913, 0.99458, 0.9959, 0.99554, 0.9932, 0.99099, 0.9923, 0.99665, 0.99738, 0.99174, 0.9907, 1.0, 0.9927, 0.9918, 0.99345, 0.991, 0.99154, 0.98872, 0.99444, 0.99717, 0.9966, 0.9943, 0.99576, 0.9972, 0.99646, 0.9968, 0.9934, 1.0002, 0.9938, 0.9956, 0.99314, 0.999, 0.9908, 0.9923, 0.9967, 1.001, 0.99976, 0.992, 0.9978, 0.9949, 0.9951, 0.9936, 0.99278, 0.9984, 0.998, 0.99076, 0.99064, 0.9991, 0.9931, 0.99683, 0.9918, 0.99173, 0.9893, 0.9993, 0.99612, 0.9914, 0.99476, 0.99312, 0.9937, 0.9929, 0.99294, 0.9928, 0.9958, 0.9947, 0.9986, 0.999, 0.993, 0.9972, 0.99742, 0.99224, 0.98986, 0.9948, 0.99596, 0.98998, 0.99918, 1.0006, 0.99162, 0.99479, 1.0, 0.99232, 0.9955, 0.9914, 0.9922, 0.9954, 0.99584, 0.9984, 0.99, 0.9914, 0.99448, 0.9956, 0.9975, 0.99544, 0.9994, 0.99416, 0.9989, 0.9971, 0.99134, 0.9941, 0.9964, 0.99617, 0.99194, 0.9983, 0.99842, 0.9951, 0.994, 0.9922, 0.9956, 1.0004, 0.99712, 0.99362, 0.99031, 0.9926, 0.99669, 0.99164, 0.99216, 0.9917, 0.9938, 0.99676, 0.99471, 0.9955, 0.9958, 0.99176, 0.9962, 0.99182, 0.99313, 0.9959, 0.9956, 0.9946, 0.996, 0.996, 0.99546, 0.99807, 0.9986, 0.9931, 0.99915, 0.99111, 0.9984, 0.9948, 0.9983, 0.9997, 1.0006, 0.99546, 0.9938, 0.9912, 0.99581, 0.98876, 0.99734, 0.9991, 0.99676, 0.9933, 0.992, 0.99694, 0.99095, 0.9976, 0.98924, 0.99067, 0.99498, 0.9946, 0.9931, 0.99435, 0.9938, 0.99055, 0.9912, 0.99516, 0.9958, 0.993, 0.9976, 0.9968, 0.99454, 0.99182, 0.98878, 0.9988, 0.9962, 0.9977, 0.9932, 0.99681, 0.99494, 0.99498, 0.99154, 0.9938, 0.9938, 0.99239, 0.99512, 0.9979, 0.99088, 0.99161, 0.9939, 0.99494, 0.99158, 0.9963, 0.99188, 0.99035, 0.9992, 0.9945, 0.9924, 1.0003, 0.99677, 0.9994, 0.99655, 0.99176, 0.98974, 0.99152, 0.99296, 0.9958, 0.99782, 0.9964, 0.99173, 0.9975, 0.99568, 0.9924, 0.9932, 0.99942, 0.98944, 0.9932, 0.9973, 0.9958, 0.99184, 0.99344, 0.9912, 0.9928, 0.9976, 0.99534, 0.98986, 0.99481, 0.99287, 0.99584, 0.991, 0.99047, 0.99691, 0.99165, 0.99696, 0.9988, 0.99646, 0.99708, 0.9902, 0.99745, 0.99178, 0.9963, 0.99232, 0.9938, 0.99872, 0.99212, 0.9934, 0.9982, 0.99176, 0.99408, 0.99572, 0.9974, 0.9998, 1.0026, 0.99, 0.992, 0.99734, 0.9975, 0.99204, 0.99492, 0.9944, 0.99666, 0.9904, 0.9994, 0.997, 0.99288, 0.994, 0.99264, 0.99299, 0.99534, 0.9996, 0.9997, 0.99685, 0.9966, 0.9958, 0.99346, 0.99215, 0.99521, 0.9974, 0.9956, 0.9934, 0.9967, 0.99406, 0.99204, 0.9936, 0.9926, 0.9982, 0.99086, 0.9955, 0.9964, 0.99158, 0.99975, 0.9987, 0.98918, 0.9966, 0.9926, 0.99815, 0.9923, 0.99366, 0.99775, 0.99706, 0.99742, 0.99358, 0.99071, 0.99582, 0.9988, 0.9986, 0.99642, 0.99551, 0.9956, 0.99862, 0.9957, 0.9941, 0.99688, 0.99882, 0.99324, 0.98823, 0.9952, 1.0004, 0.992, 0.99043, 1.0002, 0.99655, 0.9927, 0.99705, 0.98942, 0.99356, 0.99553, 0.99154, 0.99315, 0.9954, 0.9928, 0.99226, 0.9958, 0.9989, 0.9958, 0.9936, 0.99545, 0.99, 0.9948, 0.99743, 0.992, 0.9898, 0.99354, 0.99186, 0.99404, 0.99524, 0.99922, 0.992, 0.9988, 0.9939, 0.99555, 0.99173, 0.99557, 0.9999, 0.99531, 0.9976, 0.9903, 0.992, 0.9961, 0.9938, 0.991, 0.9936, 0.9907, 0.99784, 0.99382, 0.98952, 0.99947, 0.997, 0.998, 0.9962, 0.9976, 0.9952, 0.99148, 0.99792, 0.99058, 0.9983, 0.9986, 0.9974, 0.99282, 0.98993, 0.9923, 0.9927, 0.99519, 0.9967, 0.99922, 0.9958, 0.9994, 0.9974, 0.9951, 0.99683, 0.99165, 0.99176, 0.99006, 0.9977, 0.998, 0.99002, 0.99458, 0.99552, 0.99736, 0.99612, 0.9987, 0.9908, 0.99194, 0.9946, 0.99445, 0.98965, 0.9904, 0.99086, 0.9953, 0.9934, 0.99046, 0.9902, 0.99084, 0.99774, 0.9984, 0.9973, 0.9966, 0.996, 0.9976, 0.991, 0.99288, 0.9928, 0.9975, 0.99808, 0.9961, 0.9982, 0.9986, 0.9952, 0.9934, 0.996, 0.9934, 0.998, 0.9963, 0.9954, 0.98956, 0.9961, 0.9988, 0.99366, 0.99084, 0.99314, 0.99522, 0.99138, 0.9991, 0.99739, 0.99704, 0.9959, 0.9941, 0.99458, 0.99305, 0.99971, 0.9919, 0.99544, 0.99094, 0.9992, 1.0001, 0.9981, 0.99416, 0.99189, 0.9965, 0.98936, 0.99628, 0.99352, 0.9984, 0.99276, 0.9939, 0.99164, 0.9926, 0.99193, 0.993, 0.9928, 0.9966, 0.9991, 0.9931, 0.9944, 0.9952, 0.99467, 0.99771, 0.9984, 0.9943, 0.99381, 0.9946, 0.9993, 0.99176, 0.9962, 0.99048, 0.99121, 0.9944, 0.9936, 0.99174, 0.99469, 0.99052, 0.9944, 0.9927, 0.9986, 0.9962, 0.99362, 0.99552, 0.9958, 0.9978, 0.99884, 0.9958, 0.99779, 0.994, 0.9927, 0.99184, 0.98916, 0.99924, 0.99581, 0.9962, 0.9958, 0.99692, 0.99522, 0.99818, 0.9957, 0.99732, 0.99471, 0.9998, 0.9978, 0.9978, 0.99444, 0.99599, 0.9944, 0.99402, 0.99211, 0.9956, 0.99176, 0.9982, 0.9925, 0.9979, 0.99331, 0.9997, 0.99032, 0.99018, 0.99488, 0.99517, 0.9986, 0.9908, 0.99069, 0.9994, 0.98815, 0.99862, 0.9998, 0.99566, 0.9955, 0.99514, 0.9906, 0.9984, 0.9916, 0.9929, 0.99418, 0.992, 0.98779, 0.9915, 0.9934, 0.99907, 0.99, 0.99824, 0.998, 0.9958, 0.9986, 0.9968, 0.9956, 0.9983, 0.9993, 0.99439, 0.9887, 0.99047, 0.9968, 0.99202, 0.9906, 0.9965, 0.9901, 0.99772, 0.9948, 0.9986, 0.991, 0.99185, 0.9947, 0.9984, 0.99572, 0.99249, 0.9943, 0.9911, 0.99388, 0.99726, 0.9976, 0.989315, 0.99358, 0.99527, 0.9926, 0.9944, 0.9978, 0.996, 0.99636, 0.99784, 0.99626, 0.99746, 0.99304, 0.99316, 0.9984, 0.99339, 0.99274, 0.9955, 0.99804, 0.99724, 0.9921, 0.98845, 0.99437, 0.99708, 0.99614, 0.9986, 0.98992, 0.9986, 0.9997, 0.99182, 0.9996, 0.99362, 0.9928, 0.99552, 0.99115, 0.99454, 0.997, 0.99508, 0.99718, 0.99556, 0.9904, 0.98964, 0.9903, 0.99221, 0.99676, 0.9954, 0.99825, 0.99546, 0.9986, 0.9962, 0.9948, 0.991, 0.9945, 1.0004, 0.99479, 0.9954, 0.9965, 0.98912, 0.99516, 0.99042, 0.9963, 0.99787, 0.9916, 0.99742, 0.9893, 0.99158, 0.9954, 0.99172, 0.9944, 0.9925, 0.9998, 0.9944, 0.9906, 0.998, 0.99459, 0.9976, 0.9938, 0.99456, 0.9893, 0.99558, 0.9931, 0.9927, 0.9956, 0.9963, 0.997, 0.9931, 0.99514, 0.9968, 0.9932, 0.99354, 0.9948, 0.99261, 0.99454, 0.997, 0.9994, 0.99198, 0.998, 0.9954, 0.99773, 0.9953, 0.9994, 0.9928, 0.99068, 0.9963, 0.99384, 0.9991, 0.9969, 0.99275, 0.9952, 0.9956, 0.9932, 0.99212, 0.9967, 0.99165, 0.9968, 0.99616, 0.99659, 0.9924, 0.9918, 0.99316, 0.992, 0.9928, 0.99532, 0.9936, 0.98939, 0.9914, 0.99616, 0.9964, 0.99367, 0.98892, 0.99596, 0.99784, 0.992, 0.99198, 0.99267, 0.99271, 0.99347, 0.9919, 0.99089, 1.0001, 0.99425, 0.99226, 0.989465, 0.9952, 0.9902, 0.9958, 0.995, 0.9978, 0.99565, 0.99192, 0.9953, 0.9964, 1.0014, 0.9898, 0.9922, 0.99652, 0.9994, 0.99166, 0.99242, 0.99576, 0.9884, 0.9979, 0.9966, 0.99764, 0.9951, 0.9953, 0.98964, 1.0001, 0.99837, 1.0001, 0.9934, 0.998, 0.9932, 0.99586, 0.99014, 0.99372, 0.9917, 0.99455]}, {\"marker\": {\"color\": \"white\", \"opacity\": 0.005, \"size\": 0.01}, \"mode\": \"markers\", \"name\": \"Current\", \"showlegend\": false, \"type\": \"scatter\", \"x\": [2, 2], \"y\": [0.9854642822361177, 1.0037394377638817]}], \"layout\": {\"legend\": {\"orientation\": \"h\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"shapes\": [{\"fillcolor\": \"LightGreen\", \"layer\": \"below\", \"line\": {\"width\": 0}, \"opacity\": 0.5, \"type\": \"rect\", \"x0\": 0, \"x1\": 1, \"xref\": \"paper\", \"y0\": 0.9854642822361177, \"y1\": 1.0037394377638817, \"yref\": \"y\"}, {\"line\": {\"color\": \"Green\", \"width\": 3}, \"name\": \"Reference\", \"type\": \"line\", \"x0\": 0, \"x1\": 1, \"xref\": \"paper\", \"y0\": 0.9946018599999997, \"y1\": 0.9946018599999997, \"yref\": \"y\"}], \"showlegend\": true, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"Index\"}}, \"yaxis\": {\"title\": {\"text\": \"density\"}}}}}}, {\"id\": \"pH_distr\", \"params\": {\"data\": [{\"histnorm\": \"probability\", \"marker\": {\"color\": \"#4d4d4d\"}, \"name\": \"Reference\", \"nbinsx\": 10, \"opacity\": 0.6, \"type\": \"histogram\", \"x\": [3.17, 3.36, 3.32, 3.59, 3.37, 3.4, 3.22, 3.36, 3.14, 3.1, 3.06, 3.16, 3.16, 3.52, 3.03, 3.06, 3.03, 3.37, 3.45, 3.14, 3.15, 3.09, 2.95, 3.34, 3.46, 3.18, 3.34, 3.36, 3.12, 3.16, 3.21, 3.18, 3.23, 3.25, 2.94, 3.64, 3.3, 3.31, 3.14, 3.28, 3.33, 3.25, 3.02, 3.38, 3.3, 3.24, 3.32, 3.24, 3.3, 3.1, 3.5, 3.06, 3.53, 3.38, 3.19, 3.13, 3.11, 3.12, 3.4, 3.26, 3.26, 3.25, 3.14, 3.46, 3.41, 3.54, 3.12, 2.94, 3.6, 3.26, 3.11, 3.4, 3.27, 3.3, 3.22, 3.2, 3.0, 3.29, 3.1, 3.15, 3.17, 3.3, 3.48, 3.32, 3.01, 3.66, 3.19, 3.19, 3.15, 3.03, 3.0, 3.22, 3.26, 3.15, 3.05, 3.51, 2.96, 3.25, 3.2, 3.04, 3.46, 3.08, 3.31, 3.02, 3.32, 3.39, 3.27, 3.17, 3.31, 3.15, 3.26, 3.12, 3.19, 3.13, 3.3, 3.32, 3.19, 3.4, 3.23, 3.32, 3.17, 3.04, 3.09, 3.15, 3.08, 3.01, 3.2, 3.48, 3.19, 3.29, 3.35, 3.25, 3.29, 3.0, 3.65, 3.11, 2.96, 3.27, 3.17, 3.02, 3.2, 3.18, 3.07, 3.2, 3.28, 3.37, 3.18, 3.08, 3.32, 3.19, 3.16, 3.14, 3.26, 3.19, 3.58, 3.43, 3.54, 3.6, 3.34, 3.13, 3.39, 3.26, 3.22, 3.27, 3.17, 3.26, 2.87, 3.61, 3.33, 3.47, 3.04, 2.79, 3.18, 3.4, 2.96, 3.09, 3.27, 3.5, 3.27, 3.05, 3.24, 3.1, 3.3, 3.0, 3.21, 3.15, 3.05, 3.1, 3.16, 3.4, 3.08, 3.35, 3.15, 3.28, 3.02, 3.2, 3.1, 3.11, 3.16, 3.4, 3.0, 2.98, 3.05, 2.99, 3.12, 3.39, 3.04, 3.06, 3.26, 3.36, 3.33, 3.04, 3.11, 3.24, 3.35, 3.14, 3.61, 3.19, 3.21, 3.26, 3.36, 3.17, 3.01, 3.27, 3.38, 3.27, 3.22, 3.27, 3.54, 3.23, 3.12, 2.89, 3.52, 3.08, 3.31, 3.2, 3.08, 3.15, 3.05, 3.22, 3.1, 3.25, 3.39, 2.96, 3.2, 2.96, 2.92, 3.3, 3.17, 3.18, 3.04, 3.18, 2.98, 3.4, 3.14, 3.15, 3.11, 2.98, 3.27, 3.2, 3.01, 3.35, 3.26, 3.15, 3.49, 3.52, 3.3, 3.09, 3.12, 3.36, 3.35, 3.22, 3.06, 3.36, 3.29, 3.08, 3.16, 3.14, 3.37, 3.27, 3.22, 3.34, 3.37, 3.38, 3.03, 3.37, 3.32, 3.26, 3.33, 3.08, 3.41, 3.23, 3.34, 3.49, 3.58, 3.48, 3.13, 3.32, 3.39, 3.11, 3.18, 3.34, 3.15, 3.16, 3.22, 3.32, 3.31, 3.06, 3.54, 3.15, 3.37, 3.71, 3.53, 3.09, 3.26, 3.55, 3.0, 3.13, 3.41, 3.1, 3.22, 3.16, 2.9, 3.32, 3.36, 3.11, 3.41, 3.38, 3.1, 3.45, 3.23, 3.22, 3.14, 2.94, 3.05, 3.4, 3.29, 3.1, 3.07, 3.24, 3.28, 3.23, 3.16, 2.89, 3.23, 3.12, 3.36, 2.93, 3.21, 3.03, 3.1, 3.43, 3.39, 3.28, 3.08, 3.02, 3.1, 3.38, 3.22, 3.2, 3.07, 3.34, 3.11, 3.17, 3.22, 3.6, 3.13, 3.22, 3.18, 3.51, 3.26, 3.09, 3.25, 3.03, 3.36, 3.66, 3.42, 3.07, 3.14, 3.27, 3.21, 3.13, 3.18, 3.28, 3.14, 2.98, 2.95, 3.26, 3.22, 3.23, 3.14, 3.02, 3.42, 3.2, 3.15, 3.25, 3.21, 3.44, 3.11, 3.14, 3.14, 3.32, 3.13, 3.45, 3.17, 3.24, 2.92, 3.12, 3.46, 3.15, 3.15, 2.93, 3.32, 2.99, 3.14, 3.25, 3.16, 3.38, 3.2, 3.25, 3.18, 3.46, 2.97, 3.15, 3.14, 3.05, 3.01, 3.31, 3.28, 3.23, 3.28, 3.38, 3.56, 3.16, 3.22, 3.34, 3.49, 3.04, 2.91, 3.55, 3.39, 3.11, 3.27, 3.18, 3.71, 3.18, 3.17, 3.26, 3.26, 2.96, 3.08, 3.06, 3.57, 3.26, 3.15, 3.28, 3.13, 3.14, 3.12, 3.24, 2.94, 3.22, 3.34, 3.37, 2.99, 3.22, 3.12, 3.26, 3.23, 3.24, 3.09, 3.19, 3.33, 3.47, 3.2, 3.46, 3.21, 3.7, 3.01, 3.24, 3.37, 3.38, 3.38, 3.54, 3.28, 3.54, 3.15, 3.14, 3.4, 3.13, 3.1, 3.05, 3.21, 3.19, 3.12, 3.01, 2.97, 3.28, 3.09, 3.42, 3.12, 3.02, 3.03, 3.62, 3.37, 3.01, 3.16, 3.16, 3.08, 3.12, 3.29, 3.03, 3.2, 3.4, 3.14, 3.16, 2.95, 3.34, 3.24, 3.53, 3.08, 3.3, 3.47, 2.86, 3.15, 3.52, 3.22, 3.36, 3.16, 2.98, 3.12, 3.25, 3.06, 3.07, 3.15, 3.3, 2.93, 2.88, 3.16, 3.16, 3.27, 3.48, 3.22, 3.16, 3.01, 3.23, 3.34, 3.15, 3.21, 3.63, 3.13, 2.92, 3.09, 3.32, 3.29, 3.04, 3.2, 3.22, 3.24, 3.11, 3.21, 3.02, 3.16, 3.46, 3.3, 3.18, 3.28, 3.14, 3.2, 3.14, 3.72, 3.18, 3.3, 3.53, 2.87, 3.09, 3.14, 3.5, 3.32, 3.28, 3.04, 3.06, 3.33, 3.1, 3.33, 3.18, 3.24, 3.23, 3.26, 2.89, 3.11, 3.11, 2.97, 3.06, 2.94, 3.35, 3.33, 3.29, 3.38, 3.16, 2.87, 2.88, 3.12, 3.17, 3.44, 3.5, 3.09, 3.0, 3.18, 3.22, 3.06, 2.96, 3.44, 3.1, 3.14, 3.26, 3.1, 3.12, 3.27, 3.11, 3.25, 3.39, 3.3, 3.06, 3.45, 3.34, 3.02, 3.22, 3.22, 3.42, 3.52, 3.46, 3.34, 3.49, 2.94, 3.23, 3.21, 3.12, 3.33, 3.27, 2.94, 3.5, 3.1, 3.16, 2.92, 3.11, 3.35, 3.22, 3.44, 3.38, 3.24, 3.16, 3.39, 3.29, 3.16, 3.12, 3.39, 3.06, 3.2, 3.08, 3.2, 2.96, 3.16, 3.42, 3.15, 3.09, 3.11, 3.12, 3.02, 3.24, 3.11, 3.29, 3.14, 3.03, 3.27, 3.09, 3.12, 3.5, 3.15, 3.22, 3.33, 3.45, 3.18, 3.48, 3.24, 3.24, 3.45, 3.51, 3.25, 3.41, 3.12, 3.14, 3.17, 3.66, 3.13, 3.39, 3.1, 3.09, 3.17, 3.14, 3.12, 2.96, 3.23, 3.08, 3.41, 3.24, 3.15, 3.33, 3.12, 3.29, 3.14, 3.37, 3.27, 3.11, 3.22, 3.28, 3.4, 3.34, 3.12, 3.16, 3.17, 3.45, 3.05, 3.32, 3.05, 3.38, 3.32, 3.14, 3.2, 3.27, 3.21, 3.32, 3.31, 3.19, 3.28, 3.12, 3.18, 3.39, 3.12, 3.26, 3.0, 3.25, 3.16, 3.21, 3.11, 3.15, 3.57, 3.77, 2.98, 3.08, 3.49, 3.74, 3.42, 3.29, 3.44, 3.18, 3.06, 3.07, 3.08, 3.04, 3.18, 3.21, 3.11, 3.21, 3.16, 3.21, 3.03, 3.19, 3.31, 3.28, 3.29, 3.11, 3.39, 3.24, 3.36, 3.54, 3.26, 2.98, 3.44, 3.34, 3.09, 2.96, 3.11, 3.35, 3.13, 3.24, 3.23, 3.09, 3.0, 2.99, 3.31, 3.09, 3.11, 2.94, 3.13, 3.1, 3.29, 3.26, 3.34, 3.29, 3.26, 2.96, 3.08, 3.01, 3.59, 3.17, 3.41, 3.37, 3.2, 3.0, 3.09, 3.18, 3.18, 3.38, 3.29, 3.41, 3.15, 3.16, 3.35, 2.9, 3.11, 3.28, 3.49, 3.36, 3.22, 3.02, 3.08, 3.1, 3.25, 3.17, 3.29, 3.22, 2.96, 3.18, 3.17, 3.06, 3.08, 3.22, 3.36, 3.38, 3.43, 3.04, 3.12, 3.12, 3.24, 3.42, 3.51, 3.06, 3.03, 3.35, 3.3, 3.32, 2.94, 3.34, 3.13, 3.29, 3.08, 3.08, 3.05, 3.11, 3.23, 3.08, 3.36, 3.44, 3.68, 3.68, 2.93, 3.28, 3.05, 3.13, 3.36, 3.36, 3.1, 3.36, 3.2, 3.17, 3.08, 3.22, 3.3, 2.94, 3.25, 3.31, 3.08, 3.12, 3.21, 3.34, 3.03, 3.05, 2.97, 3.04, 3.03, 3.36, 3.49, 3.06, 3.22, 3.54, 3.26, 3.34, 3.59, 3.18, 3.2, 3.25, 3.61, 3.38, 3.05, 2.93, 3.09, 3.12, 3.19, 3.1, 3.22, 3.37, 3.31, 3.36, 3.22, 3.25, 3.66, 3.42, 3.25, 3.32, 3.02, 3.23, 3.32, 3.28, 3.2, 3.19, 3.15, 3.14, 3.13, 3.36, 3.16, 3.28, 3.42, 3.15, 3.14, 2.94, 2.99, 3.21, 2.98, 3.14, 3.37, 3.22, 3.19, 3.39, 3.54, 2.95, 3.29, 3.23, 3.22, 2.87, 3.52, 3.02, 2.93, 3.27, 3.21, 3.38, 3.35, 3.2, 3.25, 3.07, 3.09, 3.23, 3.13, 3.05, 3.1, 3.3, 3.23, 3.14, 3.3, 3.15, 3.08, 3.21, 3.15, 3.24, 3.18, 3.09, 3.1, 3.2, 3.34, 3.24, 3.05, 3.22, 3.15, 3.04, 3.4, 3.48, 3.28, 3.53, 3.28, 3.14, 3.38, 3.08, 3.44, 3.24, 3.04, 3.34, 3.06, 3.27, 3.63, 3.09]}, {\"histnorm\": \"probability\", \"marker\": {\"color\": \"#ed0400\"}, \"name\": \"Current\", \"nbinsx\": 10, \"opacity\": 0.6, \"type\": \"histogram\", \"x\": [3.03, 3.36, 3.09, 3.09, 3.17, 3.22, 3.03, 3.21, 3.07, 3.19, 3.19, 3.06, 2.96, 3.38, 3.28, 3.13, 2.93, 3.16, 3.18, 2.93, 3.46, 3.14, 3.32, 3.23, 3.29, 3.29, 3.06, 3.41, 3.01, 3.14, 3.03, 3.12, 3.1, 3.16, 3.13, 3.14, 3.32, 3.12, 3.14, 3.14, 3.07, 2.97, 3.3, 3.27, 3.08, 3.36, 2.96, 3.14, 3.3, 3.37, 3.23, 3.16, 3.32, 2.96, 2.97, 3.09, 3.27, 2.96, 3.21, 2.86, 3.23, 3.46, 2.99, 3.13, 3.15, 3.14, 3.12, 3.15, 3.06, 3.21, 3.46, 3.16, 3.59, 3.07, 2.93, 3.44, 3.35, 3.18, 3.29, 3.29, 3.16, 2.96, 3.3, 3.32, 3.28, 2.87, 3.46, 2.98, 3.68, 3.41, 2.9, 3.41, 3.3, 3.04, 3.2, 2.99, 3.08, 3.32, 3.38, 3.2, 3.4, 3.39, 3.42, 3.3, 3.29, 3.07, 3.32, 3.26, 3.25, 3.27, 3.38, 3.25, 3.16, 3.19, 3.13, 3.42, 3.29, 3.29, 3.27, 3.11, 3.11, 3.34, 3.26, 3.01, 3.1, 2.99, 3.08, 3.22, 3.47, 3.06, 3.0, 3.22, 3.2, 3.08, 3.3, 3.26, 3.28, 3.03, 3.42, 3.0, 3.17, 3.16, 3.07, 3.03, 3.27, 3.15, 3.2, 3.56, 3.02, 3.14, 3.34, 3.4, 2.98, 3.07, 2.79, 3.19, 2.93, 3.27, 3.17, 2.99, 3.34, 3.36, 3.31, 3.15, 3.37, 3.15, 3.39, 3.0, 3.21, 3.28, 3.27, 3.37, 3.75, 3.22, 3.05, 3.37, 3.48, 2.92, 3.41, 3.24, 3.21, 3.26, 3.29, 3.04, 3.27, 3.43, 3.29, 3.34, 2.91, 3.05, 3.38, 3.14, 3.08, 2.92, 3.02, 3.32, 3.01, 3.2, 3.31, 3.27, 3.31, 3.23, 3.48, 3.3, 3.13, 3.61, 3.1, 3.2, 3.03, 3.53, 3.16, 3.03, 3.18, 3.07, 3.51, 3.38, 2.99, 3.45, 3.37, 3.0, 3.19, 3.06, 3.19, 3.06, 3.38, 3.21, 3.21, 3.47, 3.09, 3.26, 3.23, 3.32, 3.2, 2.98, 3.25, 3.45, 3.04, 3.19, 3.39, 3.07, 2.95, 3.15, 3.22, 3.34, 3.03, 3.42, 2.94, 3.17, 3.38, 3.18, 3.38, 3.04, 3.28, 3.07, 3.14, 3.3, 3.03, 3.18, 3.31, 3.39, 3.21, 3.38, 3.15, 3.33, 3.22, 3.2, 3.27, 3.3, 3.05, 3.22, 3.32, 3.41, 3.29, 2.97, 3.47, 3.0, 3.22, 3.14, 3.35, 3.41, 3.23, 3.08, 2.99, 3.0, 3.28, 3.27, 3.16, 3.18, 3.41, 3.4, 3.19, 2.9, 3.51, 3.07, 3.43, 2.93, 3.5, 3.45, 3.25, 3.14, 2.96, 3.36, 3.14, 3.18, 3.17, 3.17, 3.42, 3.37, 3.24, 3.24, 3.36, 3.39, 3.24, 3.25, 3.15, 3.1, 3.15, 3.08, 3.27, 3.2, 3.34, 3.31, 3.54, 3.19, 3.35, 3.16, 3.13, 3.24, 3.36, 3.36, 3.42, 3.2, 3.24, 3.15, 3.18, 2.96, 3.38, 3.12, 3.3, 3.33, 3.27, 2.94, 3.53, 3.26, 3.11, 3.35, 3.22, 3.34, 3.4, 3.29, 3.1, 2.8, 3.13, 3.27, 2.98, 3.23, 3.3, 3.1, 3.17, 3.18, 3.13, 3.05, 3.37, 3.34, 2.95, 3.81, 3.37, 3.36, 3.1, 3.39, 3.29, 2.94, 3.1, 3.51, 3.38, 3.26, 3.19, 3.29, 2.99, 2.93, 3.28, 3.29, 3.08, 3.32, 3.05, 3.16, 3.25, 3.18, 3.2, 3.26, 2.96, 3.45, 3.17, 3.16, 2.97, 3.44, 3.35, 3.29, 3.51, 3.31, 3.23, 3.28, 3.31, 2.91, 3.22, 3.23, 3.29, 3.14, 3.2, 3.24, 3.04, 3.18, 3.42, 3.5, 3.45, 3.13, 2.94, 3.42, 3.47, 3.12, 3.05, 2.83, 3.52, 3.06, 2.97, 3.28, 3.16, 3.25, 3.12, 3.23, 3.15, 3.24, 3.46, 3.34, 3.2, 3.26, 3.22, 3.19, 3.34, 3.05, 3.1, 3.03, 3.22, 3.34, 3.07, 3.23, 3.33, 3.2, 3.23, 3.23, 3.19, 3.47, 3.03, 3.11, 3.42, 3.17, 2.92, 3.1, 3.38, 3.16, 3.01, 3.4, 3.36, 3.21, 3.1, 3.2, 3.09, 2.88, 3.23, 3.26, 3.08, 2.99, 3.56, 3.09, 3.31, 3.31, 3.76, 3.1, 3.14, 3.14, 3.18, 2.97, 3.02, 3.04, 3.17, 3.19, 3.49, 3.38, 3.42, 3.32, 3.16, 3.11, 3.28, 3.12, 3.36, 3.35, 3.13, 2.88, 3.19, 3.36, 3.11, 2.96, 2.99, 3.37, 3.22, 3.06, 3.29, 3.38, 3.18, 3.23, 3.12, 3.33, 3.17, 3.34, 3.52, 3.39, 3.15, 3.32, 3.11, 3.15, 3.4, 3.45, 3.42, 3.05, 3.14, 3.27, 3.22, 3.12, 3.06, 3.26, 3.08, 3.36, 3.28, 3.0, 3.17, 3.07, 3.15, 3.04, 3.4, 3.03, 3.33, 3.34, 2.94, 3.24, 3.21, 3.24, 3.22, 3.54, 3.2, 3.42, 3.25, 3.1, 3.2, 3.29, 3.16, 3.21, 3.03, 3.07, 3.35, 3.21, 3.24, 3.16, 3.18, 3.3, 2.95, 3.44, 3.07, 3.13, 3.06, 3.1, 3.07, 3.22, 3.09, 3.23, 3.19, 3.48, 3.53, 2.94, 3.33, 3.3, 3.24, 3.24, 3.28, 3.19, 3.55, 3.18, 3.32, 3.1, 3.18, 3.36, 2.97, 3.17, 3.08, 3.3, 3.3, 3.33, 3.4, 3.3, 3.06, 3.2, 2.85, 3.14, 3.32, 3.35, 3.09, 3.42, 3.48, 3.25, 3.33, 3.3, 2.96, 3.12, 3.13, 3.2, 3.26, 3.49, 2.95, 3.0, 3.12, 3.12, 3.37, 3.25, 3.19, 3.2, 3.28, 3.06, 3.17, 3.15, 3.14, 3.31, 3.06, 3.17, 3.27, 3.13, 3.33, 3.24, 3.4, 2.98, 3.06, 3.0, 3.15, 3.0, 3.41, 3.16, 3.05, 3.19, 3.8, 3.09, 3.15, 3.03, 3.32, 3.43, 2.89, 3.08, 3.37, 3.01, 3.34, 2.92, 3.19, 3.14, 3.0, 3.22, 3.38, 3.14, 3.09, 3.08, 3.38, 3.57, 3.48, 3.11, 3.04, 3.06, 3.54, 2.94, 3.24, 3.7, 3.18, 3.39, 3.24, 3.14, 3.2, 3.14, 3.34, 3.34, 3.16, 3.12, 2.94, 3.41, 3.2, 3.29, 3.6, 3.3, 3.09, 3.28, 3.04, 3.19, 3.2, 3.04, 3.3, 3.06, 3.03, 3.52, 3.25, 3.16, 3.45, 3.5, 3.25, 3.46, 3.18, 3.42, 3.36, 3.05, 3.58, 3.56, 2.9, 3.15, 3.13, 3.24, 3.67, 3.05, 3.4, 3.21, 3.23, 3.16, 3.54, 3.32, 3.32, 3.44, 3.19, 3.21, 3.1, 3.39, 3.19, 3.41, 3.35, 3.31, 3.13, 2.85, 3.16, 2.99, 3.0, 3.07, 3.04, 3.26, 3.09, 3.4, 3.32, 3.01, 3.42, 3.24, 3.27, 3.66, 3.37, 3.36, 3.58, 3.58, 3.31, 3.27, 3.14, 2.89, 3.31, 3.21, 3.3, 3.3, 3.11, 3.11, 3.29, 3.1, 3.4, 3.04, 3.1, 3.06, 3.14, 3.42, 3.15, 3.51, 3.32, 3.22, 2.99, 3.17, 3.16, 3.1, 3.34, 3.08, 3.1, 3.08, 3.34, 3.25, 3.12, 3.06, 3.12, 3.06, 3.29, 3.38, 3.55, 3.35, 3.27, 2.98, 3.24, 3.48, 3.34, 3.52, 3.36, 3.11, 3.21, 3.56, 3.59, 3.25, 3.22, 2.99, 3.16, 3.16, 3.31, 3.32, 3.21, 3.06, 3.38, 2.95, 3.24, 3.15, 3.16, 3.15, 3.01, 3.19, 3.15, 3.16, 3.13, 3.33, 3.05, 3.0, 3.35, 3.0, 3.2, 3.51, 3.26, 3.38, 3.26, 3.24, 3.16, 3.1, 3.14, 3.33, 3.38, 3.29, 3.26, 3.23, 3.31, 3.37, 3.15, 3.14, 3.16, 3.34, 3.05, 2.99, 3.42, 3.23, 3.44, 3.19, 3.02, 3.23, 3.05, 3.4, 2.97, 3.18, 3.46, 3.36, 3.2, 3.04, 2.9, 3.35, 3.17, 3.13, 3.26, 3.08, 3.05, 3.27, 3.12, 3.12, 3.34, 3.31, 3.49, 3.16, 3.72, 3.47, 3.54, 3.29, 2.99, 3.49, 3.47, 3.13, 3.14, 3.2, 3.32, 3.22, 3.19, 3.03, 3.24, 3.07, 3.1, 3.03, 3.51, 3.19, 3.16, 3.22, 3.77, 3.29, 3.22, 3.11, 3.44, 3.44, 3.36, 3.3, 3.2, 2.94, 3.22, 3.18, 3.12, 3.4, 3.3, 3.34, 3.3, 3.27, 3.44, 3.19, 3.27, 3.07, 3.15, 3.14, 3.13, 3.28, 3.09, 3.18, 3.04, 3.47, 3.39, 3.24, 3.31, 3.26, 3.15, 3.23, 3.16, 3.44, 3.34, 3.24, 2.98, 3.19, 3.0, 3.44, 3.29, 3.28, 3.1, 3.35, 3.28, 3.0, 3.17, 3.24, 3.26, 3.17, 3.24, 2.98, 3.15, 3.3, 3.26, 3.27, 3.11, 3.24, 3.04, 3.13, 2.93, 3.23, 3.22, 3.19, 3.34, 3.38, 3.06, 3.26, 3.25, 3.29, 3.16, 3.35, 2.99, 3.24, 3.19, 3.39, 3.36, 3.34, 3.06, 3.13, 3.13, 3.03, 2.97, 3.3, 3.41, 3.06, 3.14, 3.11, 3.22, 3.18, 3.19, 3.25]}], \"layout\": {\"legend\": {\"orientation\": \"h\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"pH\"}}, \"yaxis\": {\"title\": {\"text\": \"Share\"}}}}}, {\"id\": \"pH_drift\", \"params\": {\"title\": \"\", \"size\": 2, \"text\": \"\", \"type\": \"big_graph\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"Current\", \"type\": \"scatter\", \"x\": [443, 319, 703, 526, 76, 963, 1260, 532, 1561, 517, 506, 1557, 271, 1058, 1381, 1039, 542, 107, 161, 1301, 519, 1021, 1213, 223, 1286, 1426, 1234, 587, 1183, 182, 567, 1492, 724, 1262, 1509, 657, 1137, 913, 1445, 342, 781, 14, 971, 1072, 1254, 678, 1175, 1481, 1370, 1443, 18, 1151, 1380, 434, 1430, 554, 53, 535, 1050, 427, 259, 124, 961, 1488, 1563, 720, 1291, 1061, 425, 846, 1147, 204, 1317, 618, 1088, 927, 1196, 582, 1194, 360, 1449, 862, 1135, 1453, 1442, 1017, 268, 685, 317, 775, 1086, 942, 1052, 801, 1362, 219, 379, 649, 1195, 479, 1542, 609, 930, 1105, 34, 708, 686, 1132, 693, 733, 1562, 1190, 473, 737, 672, 969, 858, 5, 1556, 298, 80, 940, 361, 1154, 1545, 1622, 784, 19, 1522, 996, 54, 1415, 1564, 1593, 1236, 9, 353, 1222, 113, 1010, 1263, 877, 82, 381, 818, 1210, 1409, 66, 254, 817, 92, 1340, 122, 1357, 511, 1546, 692, 17, 1248, 414, 52, 1296, 191, 175, 233, 900, 785, 935, 1298, 156, 487, 159, 481, 1255, 1597, 253, 1491, 841, 187, 914, 979, 249, 1114, 1366, 814, 716, 465, 875, 1242, 670, 299, 593, 436, 728, 141, 229, 1057, 912, 994, 648, 799, 1164, 1073, 4, 516, 152, 1267, 1237, 752, 1150, 825, 402, 1277, 575, 1437, 838, 390, 1505, 1093, 1026, 1611, 31, 674, 866, 1328, 616, 861, 897, 148, 303, 1451, 602, 1125, 1614, 1047, 1462, 1148, 574, 899, 1327, 89, 530, 408, 1192, 177, 520, 993, 326, 992, 717, 895, 1421, 984, 240, 85, 557, 278, 938, 1425, 958, 1232, 1149, 171, 1220, 227, 891, 489, 1391, 1184, 1032, 393, 726, 192, 260, 880, 1592, 1537, 491, 759, 1473, 959, 1454, 1015, 965, 1393, 1489, 1256, 133, 202, 1036, 438, 483, 666, 461, 142, 1181, 1580, 308, 538, 170, 310, 743, 1101, 1179, 315, 22, 1529, 45, 879, 1110, 61, 522, 1397, 829, 576, 1193, 1202, 1549, 1375, 27, 527, 1186, 1273, 828, 539, 1049, 1014, 412, 1091, 1497, 1595, 347, 2, 844, 1490, 632, 211, 1582, 918, 1217, 1115, 744, 459, 579, 771, 96, 178, 108, 1516, 805, 1240, 440, 619, 1, 1315, 1239, 1347, 512, 48, 722, 1517, 1621, 446, 565, 568, 796, 231, 1070, 1063, 215, 513, 704, 354, 55, 881, 746, 641, 762, 279, 1145, 1468, 224, 302, 911, 218, 1079, 874, 1266, 792, 1136, 372, 295, 364, 580, 1615, 688, 1560, 333, 467, 968, 399, 760, 740, 953, 1520, 1446, 1214, 615, 524, 546, 1495, 1324, 452, 1515, 432, 863, 442, 847, 276, 456, 184, 1116, 1200, 458, 1508, 1087, 1478, 376, 1479, 563, 1146, 1507, 42, 944, 823, 1228, 656, 1227, 198, 309, 761, 1158, 549, 47, 1209, 529, 933, 220, 1624, 1591, 651, 536, 362, 1314, 420, 564, 475, 482, 140, 679, 1436, 1334, 77, 39, 570, 962, 808, 981, 322, 1471, 251, 695, 1128, 813, 757, 820, 853, 831, 1246, 58, 553, 597, 241, 1288, 330, 1005, 789, 1617, 56, 1126, 411, 548, 501, 1211, 642, 558, 1605, 745, 878, 1056, 667, 435, 29, 270, 35, 1157, 422, 1310, 114, 1524, 1422, 689, 1018, 1168, 1360, 985, 1191, 793, 1363, 1504, 581, 644, 1199, 621, 1612, 494, 665, 431, 1095, 638, 1042, 1404, 1030, 40, 1121, 75, 1588, 1417, 247, 713, 1590, 186, 646, 312, 8, 1551, 1302, 1044, 768, 884, 1585, 1618, 826, 445, 712, 464, 1308, 195, 655, 1487, 1389, 1356, 243, 401, 572, 1074, 810, 477, 1460, 1544, 1182, 285, 471, 936, 1238, 578, 1034, 1535, 1513, 426, 1311, 1001, 986, 1038, 980, 1064, 620, 982, 1565, 194, 474, 1428, 569, 1165, 49, 1333, 1401, 1307, 1076, 991, 1566, 44, 1342, 245, 943, 300, 583, 1013, 269, 1548, 313, 776, 283, 1444, 540, 406, 338, 466, 363, 1002, 320, 1264, 1089, 70, 1027, 500, 10, 907, 505, 1295, 864, 1432, 64, 1122, 1543, 416, 898, 654, 205, 328, 486, 999, 1377, 970, 528, 1558, 418, 1379, 1299, 1378, 590, 1247, 1174, 472, 1323, 131, 15, 439, 1528, 476, 725, 1203, 1109, 1003, 1365, 103, 1279, 60, 871, 78, 391, 165, 1335, 1410, 1129, 960, 349, 185, 1464, 371, 117, 1398, 252, 507, 1613, 311, 1419, 395, 987, 358, 263, 359, 1559, 1305, 1506, 1376, 1055, 634, 1552, 16, 51, 1258, 493, 601, 997, 351, 711, 1604, 1486, 1339, 794, 97, 1475, 1423, 196, 748, 183, 1433, 1579, 613, 1536, 989, 682, 533, 610, 687, 892, 81, 896, 397, 267, 589, 386, 795, 1416, 132, 265, 1609, 1461, 883, 88, 840, 988, 1354, 676, 916, 629, 1269, 924, 294, 261, 1541, 1081, 1348, 1576, 405, 1616, 356, 608, 1097, 239, 1249, 1099, 1403, 119, 1096, 977, 751, 374, 453, 110, 1336, 1390, 905, 1287, 503, 1031, 1331, 1224, 729, 410, 1540, 367, 1607, 384, 200, 65, 1358, 1394, 1023, 272, 1418, 955, 677, 238, 1133, 974, 541, 478, 1257, 1265, 1465, 1589, 1326, 188, 1083, 681, 906, 1092, 1276, 316, 214, 1078, 1502, 1084, 660, 1142, 531, 255, 30, 662, 1253, 230, 157, 1343, 385, 1169, 380, 1188, 721, 264, 787, 101, 13, 1274, 68, 1024, 1170, 1156, 71, 1577, 566, 1372, 1245, 798, 523, 626, 495, 937, 155, 887, 758, 921, 790, 1349, 1230, 366, 1531, 983, 839, 228, 417, 206, 742, 79, 190, 492, 948, 145, 923, 318, 824, 1374, 1124, 1463, 596, 457, 144, 1359, 1292, 1045, 764, 842, 1140, 1408, 995, 904, 592, 1458, 135, 83, 1062, 154, 1440, 1283, 773, 1414, 127, 1177, 1318, 1413, 403, 150, 346, 413, 1303, 1523, 1619, 394, 1261, 1054, 208, 496, 352, 95, 625, 571, 37, 485, 143, 946, 158, 552, 1527, 1029, 518, 1180, 1218, 236, 1100, 222, 1431, 345, 1459, 120, 661, 588, 1623, 1493, 62, 1429, 811, 193, 235, 181, 1320, 389, 1103, 521, 669, 332, 258, 1369, 1538, 957, 382, 1382, 1567, 331, 934, 614, 262, 893, 6, 266, 769, 38, 901, 1573, 1578, 545, 118, 783, 652, 1025, 706, 105, 1189, 484, 1569, 630, 683, 20, 870, 242, 50, 162, 915, 966, 441, 867, 731, 1102, 1000, 1268, 1223, 822, 301, 723, 172], \"y\": [3.03, 3.36, 3.09, 3.09, 3.17, 3.22, 3.03, 3.21, 3.07, 3.19, 3.19, 3.06, 2.96, 3.38, 3.28, 3.13, 2.93, 3.16, 3.18, 2.93, 3.46, 3.14, 3.32, 3.23, 3.29, 3.29, 3.06, 3.41, 3.01, 3.14, 3.03, 3.12, 3.1, 3.16, 3.13, 3.14, 3.32, 3.12, 3.14, 3.14, 3.07, 2.97, 3.3, 3.27, 3.08, 3.36, 2.96, 3.14, 3.3, 3.37, 3.23, 3.16, 3.32, 2.96, 2.97, 3.09, 3.27, 2.96, 3.21, 2.86, 3.23, 3.46, 2.99, 3.13, 3.15, 3.14, 3.12, 3.15, 3.06, 3.21, 3.46, 3.16, 3.59, 3.07, 2.93, 3.44, 3.35, 3.18, 3.29, 3.29, 3.16, 2.96, 3.3, 3.32, 3.28, 2.87, 3.46, 2.98, 3.68, 3.41, 2.9, 3.41, 3.3, 3.04, 3.2, 2.99, 3.08, 3.32, 3.38, 3.2, 3.4, 3.39, 3.42, 3.3, 3.29, 3.07, 3.32, 3.26, 3.25, 3.27, 3.38, 3.25, 3.16, 3.19, 3.13, 3.42, 3.29, 3.29, 3.27, 3.11, 3.11, 3.34, 3.26, 3.01, 3.1, 2.99, 3.08, 3.22, 3.47, 3.06, 3.0, 3.22, 3.2, 3.08, 3.3, 3.26, 3.28, 3.03, 3.42, 3.0, 3.17, 3.16, 3.07, 3.03, 3.27, 3.15, 3.2, 3.56, 3.02, 3.14, 3.34, 3.4, 2.98, 3.07, 2.79, 3.19, 2.93, 3.27, 3.17, 2.99, 3.34, 3.36, 3.31, 3.15, 3.37, 3.15, 3.39, 3.0, 3.21, 3.28, 3.27, 3.37, 3.75, 3.22, 3.05, 3.37, 3.48, 2.92, 3.41, 3.24, 3.21, 3.26, 3.29, 3.04, 3.27, 3.43, 3.29, 3.34, 2.91, 3.05, 3.38, 3.14, 3.08, 2.92, 3.02, 3.32, 3.01, 3.2, 3.31, 3.27, 3.31, 3.23, 3.48, 3.3, 3.13, 3.61, 3.1, 3.2, 3.03, 3.53, 3.16, 3.03, 3.18, 3.07, 3.51, 3.38, 2.99, 3.45, 3.37, 3.0, 3.19, 3.06, 3.19, 3.06, 3.38, 3.21, 3.21, 3.47, 3.09, 3.26, 3.23, 3.32, 3.2, 2.98, 3.25, 3.45, 3.04, 3.19, 3.39, 3.07, 2.95, 3.15, 3.22, 3.34, 3.03, 3.42, 2.94, 3.17, 3.38, 3.18, 3.38, 3.04, 3.28, 3.07, 3.14, 3.3, 3.03, 3.18, 3.31, 3.39, 3.21, 3.38, 3.15, 3.33, 3.22, 3.2, 3.27, 3.3, 3.05, 3.22, 3.32, 3.41, 3.29, 2.97, 3.47, 3.0, 3.22, 3.14, 3.35, 3.41, 3.23, 3.08, 2.99, 3.0, 3.28, 3.27, 3.16, 3.18, 3.41, 3.4, 3.19, 2.9, 3.51, 3.07, 3.43, 2.93, 3.5, 3.45, 3.25, 3.14, 2.96, 3.36, 3.14, 3.18, 3.17, 3.17, 3.42, 3.37, 3.24, 3.24, 3.36, 3.39, 3.24, 3.25, 3.15, 3.1, 3.15, 3.08, 3.27, 3.2, 3.34, 3.31, 3.54, 3.19, 3.35, 3.16, 3.13, 3.24, 3.36, 3.36, 3.42, 3.2, 3.24, 3.15, 3.18, 2.96, 3.38, 3.12, 3.3, 3.33, 3.27, 2.94, 3.53, 3.26, 3.11, 3.35, 3.22, 3.34, 3.4, 3.29, 3.1, 2.8, 3.13, 3.27, 2.98, 3.23, 3.3, 3.1, 3.17, 3.18, 3.13, 3.05, 3.37, 3.34, 2.95, 3.81, 3.37, 3.36, 3.1, 3.39, 3.29, 2.94, 3.1, 3.51, 3.38, 3.26, 3.19, 3.29, 2.99, 2.93, 3.28, 3.29, 3.08, 3.32, 3.05, 3.16, 3.25, 3.18, 3.2, 3.26, 2.96, 3.45, 3.17, 3.16, 2.97, 3.44, 3.35, 3.29, 3.51, 3.31, 3.23, 3.28, 3.31, 2.91, 3.22, 3.23, 3.29, 3.14, 3.2, 3.24, 3.04, 3.18, 3.42, 3.5, 3.45, 3.13, 2.94, 3.42, 3.47, 3.12, 3.05, 2.83, 3.52, 3.06, 2.97, 3.28, 3.16, 3.25, 3.12, 3.23, 3.15, 3.24, 3.46, 3.34, 3.2, 3.26, 3.22, 3.19, 3.34, 3.05, 3.1, 3.03, 3.22, 3.34, 3.07, 3.23, 3.33, 3.2, 3.23, 3.23, 3.19, 3.47, 3.03, 3.11, 3.42, 3.17, 2.92, 3.1, 3.38, 3.16, 3.01, 3.4, 3.36, 3.21, 3.1, 3.2, 3.09, 2.88, 3.23, 3.26, 3.08, 2.99, 3.56, 3.09, 3.31, 3.31, 3.76, 3.1, 3.14, 3.14, 3.18, 2.97, 3.02, 3.04, 3.17, 3.19, 3.49, 3.38, 3.42, 3.32, 3.16, 3.11, 3.28, 3.12, 3.36, 3.35, 3.13, 2.88, 3.19, 3.36, 3.11, 2.96, 2.99, 3.37, 3.22, 3.06, 3.29, 3.38, 3.18, 3.23, 3.12, 3.33, 3.17, 3.34, 3.52, 3.39, 3.15, 3.32, 3.11, 3.15, 3.4, 3.45, 3.42, 3.05, 3.14, 3.27, 3.22, 3.12, 3.06, 3.26, 3.08, 3.36, 3.28, 3.0, 3.17, 3.07, 3.15, 3.04, 3.4, 3.03, 3.33, 3.34, 2.94, 3.24, 3.21, 3.24, 3.22, 3.54, 3.2, 3.42, 3.25, 3.1, 3.2, 3.29, 3.16, 3.21, 3.03, 3.07, 3.35, 3.21, 3.24, 3.16, 3.18, 3.3, 2.95, 3.44, 3.07, 3.13, 3.06, 3.1, 3.07, 3.22, 3.09, 3.23, 3.19, 3.48, 3.53, 2.94, 3.33, 3.3, 3.24, 3.24, 3.28, 3.19, 3.55, 3.18, 3.32, 3.1, 3.18, 3.36, 2.97, 3.17, 3.08, 3.3, 3.3, 3.33, 3.4, 3.3, 3.06, 3.2, 2.85, 3.14, 3.32, 3.35, 3.09, 3.42, 3.48, 3.25, 3.33, 3.3, 2.96, 3.12, 3.13, 3.2, 3.26, 3.49, 2.95, 3.0, 3.12, 3.12, 3.37, 3.25, 3.19, 3.2, 3.28, 3.06, 3.17, 3.15, 3.14, 3.31, 3.06, 3.17, 3.27, 3.13, 3.33, 3.24, 3.4, 2.98, 3.06, 3.0, 3.15, 3.0, 3.41, 3.16, 3.05, 3.19, 3.8, 3.09, 3.15, 3.03, 3.32, 3.43, 2.89, 3.08, 3.37, 3.01, 3.34, 2.92, 3.19, 3.14, 3.0, 3.22, 3.38, 3.14, 3.09, 3.08, 3.38, 3.57, 3.48, 3.11, 3.04, 3.06, 3.54, 2.94, 3.24, 3.7, 3.18, 3.39, 3.24, 3.14, 3.2, 3.14, 3.34, 3.34, 3.16, 3.12, 2.94, 3.41, 3.2, 3.29, 3.6, 3.3, 3.09, 3.28, 3.04, 3.19, 3.2, 3.04, 3.3, 3.06, 3.03, 3.52, 3.25, 3.16, 3.45, 3.5, 3.25, 3.46, 3.18, 3.42, 3.36, 3.05, 3.58, 3.56, 2.9, 3.15, 3.13, 3.24, 3.67, 3.05, 3.4, 3.21, 3.23, 3.16, 3.54, 3.32, 3.32, 3.44, 3.19, 3.21, 3.1, 3.39, 3.19, 3.41, 3.35, 3.31, 3.13, 2.85, 3.16, 2.99, 3.0, 3.07, 3.04, 3.26, 3.09, 3.4, 3.32, 3.01, 3.42, 3.24, 3.27, 3.66, 3.37, 3.36, 3.58, 3.58, 3.31, 3.27, 3.14, 2.89, 3.31, 3.21, 3.3, 3.3, 3.11, 3.11, 3.29, 3.1, 3.4, 3.04, 3.1, 3.06, 3.14, 3.42, 3.15, 3.51, 3.32, 3.22, 2.99, 3.17, 3.16, 3.1, 3.34, 3.08, 3.1, 3.08, 3.34, 3.25, 3.12, 3.06, 3.12, 3.06, 3.29, 3.38, 3.55, 3.35, 3.27, 2.98, 3.24, 3.48, 3.34, 3.52, 3.36, 3.11, 3.21, 3.56, 3.59, 3.25, 3.22, 2.99, 3.16, 3.16, 3.31, 3.32, 3.21, 3.06, 3.38, 2.95, 3.24, 3.15, 3.16, 3.15, 3.01, 3.19, 3.15, 3.16, 3.13, 3.33, 3.05, 3.0, 3.35, 3.0, 3.2, 3.51, 3.26, 3.38, 3.26, 3.24, 3.16, 3.1, 3.14, 3.33, 3.38, 3.29, 3.26, 3.23, 3.31, 3.37, 3.15, 3.14, 3.16, 3.34, 3.05, 2.99, 3.42, 3.23, 3.44, 3.19, 3.02, 3.23, 3.05, 3.4, 2.97, 3.18, 3.46, 3.36, 3.2, 3.04, 2.9, 3.35, 3.17, 3.13, 3.26, 3.08, 3.05, 3.27, 3.12, 3.12, 3.34, 3.31, 3.49, 3.16, 3.72, 3.47, 3.54, 3.29, 2.99, 3.49, 3.47, 3.13, 3.14, 3.2, 3.32, 3.22, 3.19, 3.03, 3.24, 3.07, 3.1, 3.03, 3.51, 3.19, 3.16, 3.22, 3.77, 3.29, 3.22, 3.11, 3.44, 3.44, 3.36, 3.3, 3.2, 2.94, 3.22, 3.18, 3.12, 3.4, 3.3, 3.34, 3.3, 3.27, 3.44, 3.19, 3.27, 3.07, 3.15, 3.14, 3.13, 3.28, 3.09, 3.18, 3.04, 3.47, 3.39, 3.24, 3.31, 3.26, 3.15, 3.23, 3.16, 3.44, 3.34, 3.24, 2.98, 3.19, 3.0, 3.44, 3.29, 3.28, 3.1, 3.35, 3.28, 3.0, 3.17, 3.24, 3.26, 3.17, 3.24, 2.98, 3.15, 3.3, 3.26, 3.27, 3.11, 3.24, 3.04, 3.13, 2.93, 3.23, 3.22, 3.19, 3.34, 3.38, 3.06, 3.26, 3.25, 3.29, 3.16, 3.35, 2.99, 3.24, 3.19, 3.39, 3.36, 3.34, 3.06, 3.13, 3.13, 3.03, 2.97, 3.3, 3.41, 3.06, 3.14, 3.11, 3.22, 3.18, 3.19, 3.25]}, {\"marker\": {\"color\": \"white\", \"opacity\": 0.005, \"size\": 0.01}, \"mode\": \"markers\", \"name\": \"Current\", \"showlegend\": false, \"type\": \"scatter\", \"x\": [2, 2], \"y\": [2.7320606238412704, 3.7079593761587293]}], \"layout\": {\"legend\": {\"orientation\": \"h\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"shapes\": [{\"fillcolor\": \"LightGreen\", \"layer\": \"below\", \"line\": {\"width\": 0}, \"opacity\": 0.5, \"type\": \"rect\", \"x0\": 0, \"x1\": 1, \"xref\": \"paper\", \"y0\": 2.7320606238412704, \"y1\": 3.7079593761587293, \"yref\": \"y\"}, {\"line\": {\"color\": \"Green\", \"width\": 3}, \"name\": \"Reference\", \"type\": \"line\", \"x0\": 0, \"x1\": 1, \"xref\": \"paper\", \"y0\": 3.22001, \"y1\": 3.22001, \"yref\": \"y\"}], \"showlegend\": true, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"Index\"}}, \"yaxis\": {\"title\": {\"text\": \"pH\"}}}}}}, {\"id\": \"sulphates_distr\", \"params\": {\"data\": [{\"histnorm\": \"probability\", \"marker\": {\"color\": \"#4d4d4d\"}, \"name\": \"Reference\", \"nbinsx\": 10, \"opacity\": 0.6, \"type\": \"histogram\", \"x\": [0.42, 0.54, 0.53, 0.49, 0.54, 0.54, 0.53, 0.5, 0.38, 0.38, 0.34, 0.42, 0.54, 0.37, 0.41, 0.44, 0.41, 0.67, 0.58, 0.45, 0.51, 0.37, 0.68, 0.48, 0.54, 0.34, 0.57, 0.67, 0.56, 0.5, 0.59, 0.49, 0.42, 0.4, 0.32, 0.54, 1.17, 0.4, 0.35, 0.4, 0.39, 0.63, 0.4, 0.42, 0.65, 0.42, 0.43, 0.43, 0.6, 0.39, 0.48, 0.5, 0.49, 0.9, 0.45, 0.63, 0.48, 0.55, 0.41, 0.36, 0.53, 0.75, 0.38, 0.44, 0.71, 0.6, 0.41, 0.47, 0.81, 0.65, 0.49, 0.4, 0.5, 0.47, 0.45, 1.13, 0.37, 0.62, 0.5, 0.37, 0.58, 0.43, 0.56, 0.41, 0.55, 0.55, 0.47, 0.78, 0.54, 0.38, 0.44, 0.48, 0.32, 0.46, 0.29, 0.58, 0.36, 0.57, 0.35, 0.63, 0.48, 0.42, 0.41, 0.48, 0.51, 0.68, 0.46, 0.68, 0.59, 0.43, 0.39, 0.35, 0.5, 0.46, 0.5, 0.47, 0.22, 0.52, 0.64, 0.62, 0.64, 0.26, 0.57, 0.4, 0.5, 0.51, 0.38, 0.69, 0.44, 0.46, 0.86, 0.33, 0.75, 0.32, 0.72, 0.6, 0.51, 0.36, 0.43, 0.51, 0.46, 0.41, 0.72, 0.48, 0.57, 0.91, 0.48, 0.67, 0.51, 0.58, 0.67, 0.52, 0.88, 0.57, 0.47, 0.52, 0.52, 0.44, 0.39, 0.48, 0.4, 0.45, 0.6, 0.45, 0.38, 0.42, 0.48, 0.64, 0.62, 0.4, 0.46, 0.37, 0.69, 0.64, 0.36, 0.32, 0.58, 0.5, 0.45, 0.46, 0.42, 0.76, 0.56, 0.45, 0.5, 0.38, 0.54, 0.38, 0.42, 0.76, 0.38, 0.44, 0.53, 0.7, 0.54, 0.58, 0.5, 0.48, 0.59, 0.85, 0.52, 0.5, 0.54, 0.61, 0.47, 0.43, 0.41, 0.53, 0.46, 0.54, 0.56, 0.53, 0.62, 0.56, 0.56, 0.44, 0.96, 0.39, 0.83, 0.32, 0.41, 0.29, 0.39, 0.85, 0.5, 0.34, 0.64, 0.58, 0.6, 0.47, 0.74, 0.44, 0.46, 0.52, 0.38, 0.59, 0.67, 0.66, 0.46, 0.62, 0.78, 0.36, 0.6, 0.44, 0.35, 0.39, 0.68, 0.54, 0.43, 0.48, 0.54, 0.53, 0.4, 0.41, 0.58, 0.48, 0.41, 0.41, 0.5, 0.43, 0.47, 0.48, 0.58, 0.5, 0.96, 0.65, 0.69, 0.5, 0.49, 0.33, 0.64, 0.55, 0.41, 0.33, 0.53, 1.31, 0.43, 0.79, 0.34, 0.57, 0.44, 0.59, 0.62, 0.51, 0.39, 0.4, 0.57, 0.38, 0.56, 0.54, 0.56, 0.43, 0.44, 0.64, 0.69, 0.57, 0.48, 0.8, 0.43, 0.49, 0.47, 0.5, 0.39, 0.5, 0.64, 0.62, 0.52, 0.57, 0.51, 0.38, 0.48, 0.63, 0.51, 0.46, 0.46, 0.53, 0.38, 0.46, 0.6, 0.55, 0.51, 0.47, 0.5, 0.49, 0.71, 0.29, 0.58, 0.89, 0.49, 0.63, 0.81, 0.94, 0.41, 0.41, 0.5, 0.46, 0.67, 0.55, 0.38, 0.54, 0.48, 0.59, 0.5, 0.28, 0.46, 0.39, 0.6, 0.43, 0.48, 0.38, 0.63, 0.64, 0.54, 0.39, 0.46, 0.6, 0.4, 0.72, 0.49, 0.49, 0.53, 0.78, 0.49, 0.42, 0.55, 0.44, 0.35, 0.54, 0.41, 0.6, 0.54, 0.45, 0.51, 0.56, 0.58, 0.48, 0.69, 0.53, 0.57, 0.43, 0.4, 0.46, 0.5, 0.34, 0.5, 0.48, 0.43, 0.54, 0.59, 0.39, 0.48, 0.4, 0.5, 0.49, 0.44, 0.42, 0.69, 0.66, 0.38, 0.49, 0.56, 0.7, 0.52, 0.53, 0.76, 0.83, 0.42, 0.65, 0.61, 0.4, 0.34, 0.45, 0.44, 0.39, 0.57, 0.5, 0.37, 0.42, 0.95, 0.39, 0.5, 0.39, 0.28, 0.36, 0.6, 0.57, 0.76, 0.62, 0.41, 0.43, 0.57, 0.83, 0.48, 0.48, 0.54, 0.39, 0.49, 0.47, 0.57, 0.49, 0.46, 0.45, 0.85, 0.46, 0.63, 0.48, 0.46, 0.37, 0.54, 0.57, 0.42, 0.37, 0.52, 0.58, 0.49, 0.73, 0.62, 0.46, 0.51, 0.66, 0.35, 0.39, 0.58, 0.49, 0.8, 0.67, 0.59, 0.62, 0.43, 0.53, 0.59, 0.4, 0.47, 0.7, 0.57, 0.59, 0.42, 0.68, 0.39, 0.49, 0.58, 0.66, 0.58, 0.48, 0.5, 0.61, 0.42, 0.42, 0.85, 0.47, 0.46, 0.37, 0.36, 0.64, 0.59, 0.36, 0.47, 0.52, 0.56, 0.59, 0.47, 0.44, 0.42, 0.67, 0.79, 0.56, 0.42, 0.67, 0.6, 0.58, 0.42, 0.63, 0.46, 0.56, 0.4, 0.54, 0.64, 0.49, 0.66, 0.79, 0.54, 0.5, 0.67, 0.36, 0.69, 0.58, 0.49, 0.37, 0.53, 0.44, 0.82, 0.61, 0.68, 0.41, 0.54, 0.71, 0.52, 0.54, 0.75, 0.75, 0.78, 0.64, 0.53, 0.51, 0.33, 0.64, 0.72, 0.57, 0.68, 0.73, 0.41, 0.54, 0.43, 0.55, 0.38, 0.46, 0.4, 0.39, 0.66, 0.45, 0.5, 0.51, 0.5, 0.5, 0.72, 0.37, 0.97, 0.38, 0.63, 0.43, 0.58, 1.36, 0.84, 0.58, 0.49, 0.31, 0.42, 0.49, 0.54, 0.38, 0.44, 0.43, 0.86, 0.52, 0.42, 0.56, 0.47, 0.53, 0.53, 0.34, 0.62, 0.53, 0.29, 0.34, 0.48, 0.5, 0.6, 0.44, 0.62, 0.69, 0.29, 0.47, 0.46, 0.62, 0.55, 0.39, 0.4, 0.54, 0.77, 0.77, 0.6, 0.44, 0.6, 0.38, 0.45, 0.47, 0.45, 0.45, 0.41, 0.52, 0.54, 0.66, 0.49, 0.42, 0.31, 0.38, 0.66, 0.54, 0.51, 0.57, 0.58, 0.65, 0.67, 0.52, 0.37, 0.53, 0.38, 0.53, 0.43, 0.67, 0.43, 0.44, 0.51, 0.66, 0.35, 0.37, 0.61, 0.49, 0.69, 0.44, 0.33, 0.48, 0.53, 0.46, 0.59, 0.51, 0.37, 0.4, 0.55, 0.49, 0.39, 0.39, 0.4, 0.4, 0.61, 0.32, 0.42, 0.46, 0.63, 0.71, 0.53, 0.47, 0.38, 0.52, 0.63, 0.58, 0.48, 0.39, 0.57, 0.55, 0.44, 0.44, 0.52, 0.34, 0.39, 0.6, 0.68, 0.66, 0.79, 0.67, 1.02, 0.47, 0.35, 0.55, 0.41, 0.47, 0.51, 0.51, 0.79, 0.61, 0.36, 0.59, 0.46, 0.59, 0.32, 0.56, 0.9, 0.42, 0.38, 0.42, 0.58, 0.4, 0.51, 0.57, 0.6, 0.35, 0.61, 0.5, 0.38, 0.49, 0.66, 0.59, 0.41, 0.91, 0.5, 0.35, 0.68, 0.62, 0.42, 0.48, 0.5, 0.9, 0.54, 0.6, 0.44, 0.47, 0.67, 0.38, 0.25, 0.68, 0.4, 0.54, 0.43, 0.34, 0.52, 0.46, 0.57, 0.6, 0.61, 0.46, 0.64, 0.43, 0.97, 0.54, 0.43, 0.45, 0.38, 0.46, 0.67, 0.54, 0.39, 0.55, 0.58, 0.56, 0.71, 0.58, 0.38, 0.45, 0.58, 0.72, 0.52, 0.49, 0.38, 0.5, 0.53, 0.6, 0.54, 0.31, 0.48, 0.46, 0.44, 0.37, 0.52, 0.43, 0.45, 0.36, 0.44, 0.46, 0.54, 0.47, 0.59, 0.46, 0.5, 0.39, 0.38, 0.62, 0.52, 0.54, 0.52, 0.59, 0.57, 0.45, 0.43, 0.34, 0.66, 0.49, 0.51, 0.58, 0.36, 0.73, 0.72, 0.42, 0.38, 0.77, 0.6, 0.6, 0.35, 0.52, 0.44, 0.64, 0.54, 0.39, 0.42, 0.67, 0.53, 0.96, 0.39, 0.54, 0.41, 0.64, 0.55, 0.39, 0.6, 0.48, 0.44, 0.62, 0.43, 0.65, 0.36, 0.51, 0.59, 0.67, 0.69, 0.43, 0.37, 0.64, 0.48, 0.84, 0.49, 0.62, 0.48, 0.4, 0.98, 0.56, 0.52, 0.49, 0.61, 0.46, 0.54, 0.54, 0.59, 0.49, 0.51, 0.53, 0.73, 0.73, 0.33, 0.44, 0.37, 0.59, 0.4, 0.53, 0.55, 0.47, 0.53, 1.06, 0.49, 0.65, 0.4, 0.43, 0.49, 0.53, 0.38, 0.61, 0.47, 0.56, 0.59, 0.45, 0.43, 1.05, 0.47, 0.6, 0.42, 0.4, 0.48, 0.93, 0.38, 0.53, 0.66, 0.48, 0.53, 0.52, 0.61, 0.99, 0.62, 1.95, 0.43, 0.35, 0.48, 0.51, 0.39, 0.57, 0.61, 0.68, 0.56, 0.49, 0.65, 0.92, 0.49, 0.63, 0.58, 0.47, 0.9, 0.5, 0.53, 0.5, 0.92, 0.5, 0.74, 0.44, 0.41, 0.59, 0.49, 0.46, 0.4, 0.41, 0.34, 0.69, 0.84, 0.55, 0.77, 0.38, 0.7, 0.72, 0.59, 0.4, 0.51, 0.73, 0.46, 1.36, 0.77, 0.58, 0.5, 0.66, 0.6, 0.62, 0.51, 0.69, 0.45, 0.58, 0.57, 0.5, 0.45, 0.64, 0.4, 0.79, 0.5, 0.36, 0.46, 0.5, 0.62, 0.5, 0.44, 0.51, 0.51, 0.56, 0.5, 0.56, 0.46, 0.51, 0.53, 0.78, 0.5, 0.65, 0.58, 0.65, 0.53, 0.71, 0.98, 0.48, 0.47, 0.56, 0.44, 0.46, 0.35, 0.57, 0.64, 0.95, 0.63, 0.66]}, {\"histnorm\": \"probability\", \"marker\": {\"color\": \"#ed0400\"}, \"name\": \"Current\", \"nbinsx\": 10, \"opacity\": 0.6, \"type\": \"histogram\", \"x\": [0.38, 0.78, 0.44, 0.87, 0.39, 0.48, 0.33, 0.58, 0.45, 0.33, 0.7, 0.38, 0.61, 0.59, 0.56, 0.52, 0.47, 0.37, 0.53, 0.5, 0.36, 0.41, 0.58, 0.51, 0.54, 0.67, 0.44, 0.87, 0.33, 0.46, 0.57, 0.49, 0.5, 0.5, 0.38, 0.52, 0.58, 0.37, 0.57, 0.6, 0.33, 0.3, 0.54, 0.48, 0.6, 0.49, 0.35, 0.38, 0.49, 0.82, 0.41, 0.61, 0.81, 0.34, 0.28, 0.31, 0.72, 0.46, 0.76, 0.49, 0.53, 0.53, 0.32, 0.5, 0.49, 0.38, 0.51, 0.66, 0.41, 0.8, 0.74, 0.38, 0.57, 0.38, 0.49, 0.52, 0.72, 0.49, 0.61, 0.67, 0.36, 0.25, 0.4, 0.49, 0.75, 0.68, 0.53, 0.44, 0.79, 0.44, 1.33, 0.68, 0.54, 0.38, 0.47, 0.36, 0.36, 0.42, 0.46, 0.45, 0.58, 0.62, 0.51, 0.5, 0.8, 0.53, 0.44, 0.39, 0.48, 0.29, 0.51, 0.37, 0.42, 0.44, 0.45, 0.58, 0.47, 0.41, 0.61, 0.46, 0.52, 0.85, 0.55, 0.38, 0.43, 0.68, 0.49, 0.78, 0.73, 0.3, 0.81, 0.45, 0.27, 0.41, 0.49, 0.35, 0.57, 0.33, 0.5, 0.4, 0.48, 0.58, 0.65, 0.43, 0.61, 0.53, 0.72, 0.77, 0.34, 0.5, 0.5, 0.84, 0.43, 0.53, 0.52, 0.7, 0.62, 0.54, 0.39, 0.34, 0.35, 0.59, 0.63, 0.5, 0.58, 0.38, 0.49, 0.37, 0.51, 0.67, 0.5, 0.93, 0.76, 0.56, 0.65, 0.71, 0.65, 0.74, 0.64, 0.99, 0.56, 0.42, 0.75, 0.35, 0.74, 0.74, 0.62, 0.75, 0.57, 0.36, 0.88, 0.44, 0.54, 0.74, 0.56, 0.44, 0.51, 0.67, 0.7, 0.57, 0.64, 0.47, 0.91, 0.5, 0.62, 0.49, 0.61, 0.48, 0.47, 0.64, 0.41, 1.34, 0.6, 0.58, 0.56, 0.77, 0.39, 0.56, 0.48, 0.47, 0.38, 0.68, 0.44, 0.36, 0.69, 0.68, 0.4, 0.46, 0.53, 0.82, 0.73, 0.47, 0.45, 0.48, 0.4, 0.78, 0.26, 0.37, 0.49, 0.82, 0.36, 0.45, 0.55, 0.86, 0.39, 0.57, 0.32, 0.39, 0.66, 0.53, 0.45, 0.52, 0.49, 0.43, 0.46, 0.43, 0.42, 0.47, 0.77, 0.61, 0.39, 0.44, 0.49, 0.42, 0.41, 0.55, 0.95, 0.76, 0.37, 0.43, 0.82, 0.87, 0.37, 0.48, 0.44, 0.45, 0.75, 0.42, 0.8, 0.75, 0.34, 0.38, 0.39, 0.43, 0.7, 0.59, 0.48, 0.63, 0.46, 0.73, 0.58, 0.57, 0.38, 0.58, 0.64, 0.59, 0.4, 0.56, 0.57, 0.4, 0.56, 0.63, 0.34, 0.53, 0.93, 0.85, 0.51, 0.46, 0.78, 0.41, 0.33, 0.6, 0.5, 0.6, 0.43, 0.56, 0.65, 0.43, 0.48, 0.47, 0.52, 0.44, 0.5, 0.46, 0.54, 0.7, 0.49, 0.4, 0.45, 0.55, 0.6, 0.53, 0.66, 0.41, 0.64, 0.58, 0.68, 0.48, 0.46, 0.77, 0.48, 0.44, 0.72, 0.44, 0.66, 0.47, 0.66, 0.82, 0.75, 0.54, 0.4, 0.46, 0.48, 0.54, 0.31, 0.47, 0.53, 0.67, 0.49, 0.48, 0.52, 0.46, 0.37, 0.46, 0.39, 0.57, 0.64, 0.6, 0.87, 0.48, 0.54, 0.41, 0.5, 0.47, 0.77, 0.48, 0.7, 0.76, 0.3, 0.55, 0.75, 0.54, 0.65, 0.41, 0.55, 0.4, 0.56, 0.63, 0.35, 0.45, 0.33, 0.48, 0.58, 0.5, 0.48, 0.73, 0.62, 0.57, 0.47, 0.35, 0.39, 0.48, 0.51, 0.43, 0.48, 0.7, 0.55, 0.43, 0.37, 0.43, 0.58, 0.65, 0.4, 0.7, 0.57, 0.4, 0.51, 0.44, 0.56, 0.42, 0.37, 0.31, 0.76, 1.06, 0.51, 0.51, 0.52, 0.49, 0.64, 0.63, 0.36, 0.52, 0.63, 0.57, 0.43, 1.11, 0.49, 0.63, 0.42, 0.52, 0.47, 0.49, 0.46, 0.56, 0.45, 0.54, 0.42, 0.33, 0.42, 0.44, 0.34, 0.59, 0.33, 0.75, 0.72, 0.38, 0.59, 0.52, 0.38, 0.35, 0.48, 0.85, 0.56, 0.4, 0.54, 0.51, 0.75, 0.47, 0.38, 0.6, 0.46, 0.56, 0.63, 0.5, 0.52, 0.57, 0.63, 0.51, 0.5, 0.51, 0.56, 0.68, 0.48, 0.48, 0.64, 0.44, 0.59, 0.5, 0.36, 0.64, 0.39, 0.4, 0.77, 0.48, 0.73, 0.81, 0.5, 0.36, 0.38, 0.86, 0.53, 0.43, 0.38, 0.49, 0.38, 0.46, 0.75, 0.6, 0.41, 0.49, 0.43, 0.46, 0.39, 0.52, 0.58, 0.84, 0.38, 0.54, 0.45, 0.42, 0.42, 0.5, 0.9, 0.34, 0.35, 0.58, 0.52, 0.47, 0.36, 0.35, 0.4, 0.82, 0.6, 0.31, 0.38, 0.53, 0.82, 0.45, 0.72, 0.32, 0.59, 0.75, 0.35, 0.37, 0.75, 0.43, 0.46, 0.5, 0.39, 0.44, 0.57, 0.69, 0.46, 0.53, 0.61, 0.54, 0.54, 0.56, 0.49, 0.38, 0.52, 0.48, 0.37, 0.65, 0.42, 0.46, 0.5, 0.55, 0.55, 0.4, 0.53, 0.48, 0.59, 0.52, 0.43, 0.62, 0.57, 0.46, 0.44, 0.65, 0.44, 0.58, 0.58, 0.44, 0.49, 0.64, 0.42, 0.5, 0.65, 0.62, 0.47, 0.53, 0.49, 0.59, 0.45, 0.47, 0.41, 0.31, 0.46, 0.64, 0.5, 0.48, 0.41, 0.78, 0.44, 0.42, 0.52, 0.46, 0.46, 0.36, 0.39, 0.36, 0.45, 0.69, 0.7, 0.49, 0.3, 0.68, 0.46, 0.5, 0.7, 0.76, 0.46, 0.78, 0.33, 0.36, 0.65, 0.6, 0.49, 0.56, 0.45, 0.61, 0.98, 0.52, 0.64, 0.77, 0.6, 0.7, 0.59, 0.35, 0.6, 0.33, 0.61, 0.4, 0.34, 0.47, 0.41, 0.53, 0.51, 0.37, 0.71, 0.65, 0.57, 0.4, 0.74, 0.48, 0.7, 0.5, 0.39, 0.46, 0.52, 0.43, 0.47, 0.49, 0.46, 0.45, 0.45, 0.84, 0.64, 0.32, 0.54, 0.33, 0.59, 0.66, 0.39, 0.75, 0.4, 0.78, 0.4, 0.51, 0.47, 0.37, 0.54, 0.72, 0.54, 0.7, 0.43, 0.53, 0.56, 0.55, 0.43, 0.37, 0.32, 0.49, 0.59, 0.82, 0.5, 0.47, 0.42, 0.41, 0.38, 0.65, 0.45, 0.27, 0.59, 0.54, 0.4, 0.57, 0.63, 0.55, 0.45, 0.3, 0.67, 0.72, 0.43, 0.41, 0.55, 0.43, 0.8, 0.52, 0.41, 0.5, 0.6, 0.72, 0.88, 0.35, 0.45, 0.42, 0.65, 0.38, 0.52, 0.77, 0.42, 0.76, 0.52, 0.64, 0.45, 0.42, 0.44, 0.32, 0.44, 0.32, 0.37, 0.41, 0.43, 0.41, 0.6, 0.58, 0.68, 0.71, 0.57, 0.65, 0.53, 0.41, 0.68, 0.68, 0.77, 0.81, 0.36, 0.49, 0.45, 0.56, 0.73, 0.75, 0.49, 0.92, 0.52, 0.76, 0.44, 0.64, 0.48, 0.5, 0.49, 0.4, 0.5, 0.72, 0.5, 0.46, 0.41, 0.44, 0.45, 0.53, 0.59, 0.57, 0.5, 0.55, 0.82, 0.4, 0.4, 0.45, 0.32, 0.68, 0.62, 0.64, 0.6, 0.54, 0.82, 0.88, 0.43, 0.53, 0.48, 0.8, 0.3, 0.38, 0.9, 0.43, 0.38, 0.51, 0.95, 0.59, 0.72, 0.88, 0.62, 0.44, 0.36, 0.45, 0.6, 0.39, 0.46, 0.28, 0.37, 0.58, 0.48, 0.31, 0.81, 0.5, 0.45, 0.58, 0.74, 0.37, 0.6, 0.6, 0.52, 0.54, 0.58, 0.55, 0.65, 0.56, 0.42, 0.37, 0.51, 0.87, 0.51, 0.33, 0.38, 0.72, 0.79, 0.58, 0.46, 0.49, 0.66, 0.46, 0.61, 0.44, 0.52, 0.58, 0.55, 0.7, 0.63, 0.37, 0.5, 0.53, 0.29, 0.41, 0.42, 0.39, 0.35, 0.65, 0.44, 0.6, 0.53, 0.35, 0.51, 0.74, 0.37, 0.58, 0.39, 0.49, 0.58, 0.38, 0.63, 0.42, 0.69, 0.58, 0.59, 0.5, 0.39, 0.68, 0.48, 0.32, 0.62, 0.42, 0.39, 0.56, 0.56, 0.44, 0.43, 0.52, 0.46, 0.34, 0.38, 0.48, 0.53, 0.64, 0.64, 0.6, 0.59, 0.38, 0.65, 0.63, 0.38, 0.5, 0.54, 0.63, 0.58, 0.61, 0.75, 0.73, 0.79, 0.58, 0.5, 0.76, 0.52, 0.46, 0.31, 0.4, 0.52, 0.51, 0.63, 0.44, 0.45, 0.48, 0.39, 0.46, 0.56, 0.68, 0.45, 0.58, 0.75, 0.57, 0.5, 0.51, 0.68, 0.36, 0.56, 0.43, 0.52, 0.53, 0.56, 0.55, 0.44, 0.37, 0.57, 0.6, 0.51, 0.51, 0.47, 0.39, 0.46, 0.37, 0.45, 0.37, 0.36, 0.55, 0.48, 0.45, 0.39, 0.45, 0.35, 0.58, 0.63, 0.71, 0.6, 0.59, 0.8, 0.37, 0.46, 0.48, 0.63, 0.47, 0.73, 0.54, 0.33, 0.49, 0.78, 0.64, 0.52, 0.51, 0.52, 0.52, 0.66, 0.37, 0.55, 0.53, 0.76, 0.52, 0.59, 0.56, 0.49, 0.54]}], \"layout\": {\"legend\": {\"orientation\": \"h\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"sulphates\"}}, \"yaxis\": {\"title\": {\"text\": \"Share\"}}}}}, {\"id\": \"sulphates_drift\", \"params\": {\"title\": \"\", \"size\": 2, \"text\": \"\", \"type\": \"big_graph\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"Current\", \"type\": \"scatter\", \"x\": [443, 319, 703, 526, 76, 963, 1260, 532, 1561, 517, 506, 1557, 271, 1058, 1381, 1039, 542, 107, 161, 1301, 519, 1021, 1213, 223, 1286, 1426, 1234, 587, 1183, 182, 567, 1492, 724, 1262, 1509, 657, 1137, 913, 1445, 342, 781, 14, 971, 1072, 1254, 678, 1175, 1481, 1370, 1443, 18, 1151, 1380, 434, 1430, 554, 53, 535, 1050, 427, 259, 124, 961, 1488, 1563, 720, 1291, 1061, 425, 846, 1147, 204, 1317, 618, 1088, 927, 1196, 582, 1194, 360, 1449, 862, 1135, 1453, 1442, 1017, 268, 685, 317, 775, 1086, 942, 1052, 801, 1362, 219, 379, 649, 1195, 479, 1542, 609, 930, 1105, 34, 708, 686, 1132, 693, 733, 1562, 1190, 473, 737, 672, 969, 858, 5, 1556, 298, 80, 940, 361, 1154, 1545, 1622, 784, 19, 1522, 996, 54, 1415, 1564, 1593, 1236, 9, 353, 1222, 113, 1010, 1263, 877, 82, 381, 818, 1210, 1409, 66, 254, 817, 92, 1340, 122, 1357, 511, 1546, 692, 17, 1248, 414, 52, 1296, 191, 175, 233, 900, 785, 935, 1298, 156, 487, 159, 481, 1255, 1597, 253, 1491, 841, 187, 914, 979, 249, 1114, 1366, 814, 716, 465, 875, 1242, 670, 299, 593, 436, 728, 141, 229, 1057, 912, 994, 648, 799, 1164, 1073, 4, 516, 152, 1267, 1237, 752, 1150, 825, 402, 1277, 575, 1437, 838, 390, 1505, 1093, 1026, 1611, 31, 674, 866, 1328, 616, 861, 897, 148, 303, 1451, 602, 1125, 1614, 1047, 1462, 1148, 574, 899, 1327, 89, 530, 408, 1192, 177, 520, 993, 326, 992, 717, 895, 1421, 984, 240, 85, 557, 278, 938, 1425, 958, 1232, 1149, 171, 1220, 227, 891, 489, 1391, 1184, 1032, 393, 726, 192, 260, 880, 1592, 1537, 491, 759, 1473, 959, 1454, 1015, 965, 1393, 1489, 1256, 133, 202, 1036, 438, 483, 666, 461, 142, 1181, 1580, 308, 538, 170, 310, 743, 1101, 1179, 315, 22, 1529, 45, 879, 1110, 61, 522, 1397, 829, 576, 1193, 1202, 1549, 1375, 27, 527, 1186, 1273, 828, 539, 1049, 1014, 412, 1091, 1497, 1595, 347, 2, 844, 1490, 632, 211, 1582, 918, 1217, 1115, 744, 459, 579, 771, 96, 178, 108, 1516, 805, 1240, 440, 619, 1, 1315, 1239, 1347, 512, 48, 722, 1517, 1621, 446, 565, 568, 796, 231, 1070, 1063, 215, 513, 704, 354, 55, 881, 746, 641, 762, 279, 1145, 1468, 224, 302, 911, 218, 1079, 874, 1266, 792, 1136, 372, 295, 364, 580, 1615, 688, 1560, 333, 467, 968, 399, 760, 740, 953, 1520, 1446, 1214, 615, 524, 546, 1495, 1324, 452, 1515, 432, 863, 442, 847, 276, 456, 184, 1116, 1200, 458, 1508, 1087, 1478, 376, 1479, 563, 1146, 1507, 42, 944, 823, 1228, 656, 1227, 198, 309, 761, 1158, 549, 47, 1209, 529, 933, 220, 1624, 1591, 651, 536, 362, 1314, 420, 564, 475, 482, 140, 679, 1436, 1334, 77, 39, 570, 962, 808, 981, 322, 1471, 251, 695, 1128, 813, 757, 820, 853, 831, 1246, 58, 553, 597, 241, 1288, 330, 1005, 789, 1617, 56, 1126, 411, 548, 501, 1211, 642, 558, 1605, 745, 878, 1056, 667, 435, 29, 270, 35, 1157, 422, 1310, 114, 1524, 1422, 689, 1018, 1168, 1360, 985, 1191, 793, 1363, 1504, 581, 644, 1199, 621, 1612, 494, 665, 431, 1095, 638, 1042, 1404, 1030, 40, 1121, 75, 1588, 1417, 247, 713, 1590, 186, 646, 312, 8, 1551, 1302, 1044, 768, 884, 1585, 1618, 826, 445, 712, 464, 1308, 195, 655, 1487, 1389, 1356, 243, 401, 572, 1074, 810, 477, 1460, 1544, 1182, 285, 471, 936, 1238, 578, 1034, 1535, 1513, 426, 1311, 1001, 986, 1038, 980, 1064, 620, 982, 1565, 194, 474, 1428, 569, 1165, 49, 1333, 1401, 1307, 1076, 991, 1566, 44, 1342, 245, 943, 300, 583, 1013, 269, 1548, 313, 776, 283, 1444, 540, 406, 338, 466, 363, 1002, 320, 1264, 1089, 70, 1027, 500, 10, 907, 505, 1295, 864, 1432, 64, 1122, 1543, 416, 898, 654, 205, 328, 486, 999, 1377, 970, 528, 1558, 418, 1379, 1299, 1378, 590, 1247, 1174, 472, 1323, 131, 15, 439, 1528, 476, 725, 1203, 1109, 1003, 1365, 103, 1279, 60, 871, 78, 391, 165, 1335, 1410, 1129, 960, 349, 185, 1464, 371, 117, 1398, 252, 507, 1613, 311, 1419, 395, 987, 358, 263, 359, 1559, 1305, 1506, 1376, 1055, 634, 1552, 16, 51, 1258, 493, 601, 997, 351, 711, 1604, 1486, 1339, 794, 97, 1475, 1423, 196, 748, 183, 1433, 1579, 613, 1536, 989, 682, 533, 610, 687, 892, 81, 896, 397, 267, 589, 386, 795, 1416, 132, 265, 1609, 1461, 883, 88, 840, 988, 1354, 676, 916, 629, 1269, 924, 294, 261, 1541, 1081, 1348, 1576, 405, 1616, 356, 608, 1097, 239, 1249, 1099, 1403, 119, 1096, 977, 751, 374, 453, 110, 1336, 1390, 905, 1287, 503, 1031, 1331, 1224, 729, 410, 1540, 367, 1607, 384, 200, 65, 1358, 1394, 1023, 272, 1418, 955, 677, 238, 1133, 974, 541, 478, 1257, 1265, 1465, 1589, 1326, 188, 1083, 681, 906, 1092, 1276, 316, 214, 1078, 1502, 1084, 660, 1142, 531, 255, 30, 662, 1253, 230, 157, 1343, 385, 1169, 380, 1188, 721, 264, 787, 101, 13, 1274, 68, 1024, 1170, 1156, 71, 1577, 566, 1372, 1245, 798, 523, 626, 495, 937, 155, 887, 758, 921, 790, 1349, 1230, 366, 1531, 983, 839, 228, 417, 206, 742, 79, 190, 492, 948, 145, 923, 318, 824, 1374, 1124, 1463, 596, 457, 144, 1359, 1292, 1045, 764, 842, 1140, 1408, 995, 904, 592, 1458, 135, 83, 1062, 154, 1440, 1283, 773, 1414, 127, 1177, 1318, 1413, 403, 150, 346, 413, 1303, 1523, 1619, 394, 1261, 1054, 208, 496, 352, 95, 625, 571, 37, 485, 143, 946, 158, 552, 1527, 1029, 518, 1180, 1218, 236, 1100, 222, 1431, 345, 1459, 120, 661, 588, 1623, 1493, 62, 1429, 811, 193, 235, 181, 1320, 389, 1103, 521, 669, 332, 258, 1369, 1538, 957, 382, 1382, 1567, 331, 934, 614, 262, 893, 6, 266, 769, 38, 901, 1573, 1578, 545, 118, 783, 652, 1025, 706, 105, 1189, 484, 1569, 630, 683, 20, 870, 242, 50, 162, 915, 966, 441, 867, 731, 1102, 1000, 1268, 1223, 822, 301, 723, 172], \"y\": [0.38, 0.78, 0.44, 0.87, 0.39, 0.48, 0.33, 0.58, 0.45, 0.33, 0.7, 0.38, 0.61, 0.59, 0.56, 0.52, 0.47, 0.37, 0.53, 0.5, 0.36, 0.41, 0.58, 0.51, 0.54, 0.67, 0.44, 0.87, 0.33, 0.46, 0.57, 0.49, 0.5, 0.5, 0.38, 0.52, 0.58, 0.37, 0.57, 0.6, 0.33, 0.3, 0.54, 0.48, 0.6, 0.49, 0.35, 0.38, 0.49, 0.82, 0.41, 0.61, 0.81, 0.34, 0.28, 0.31, 0.72, 0.46, 0.76, 0.49, 0.53, 0.53, 0.32, 0.5, 0.49, 0.38, 0.51, 0.66, 0.41, 0.8, 0.74, 0.38, 0.57, 0.38, 0.49, 0.52, 0.72, 0.49, 0.61, 0.67, 0.36, 0.25, 0.4, 0.49, 0.75, 0.68, 0.53, 0.44, 0.79, 0.44, 1.33, 0.68, 0.54, 0.38, 0.47, 0.36, 0.36, 0.42, 0.46, 0.45, 0.58, 0.62, 0.51, 0.5, 0.8, 0.53, 0.44, 0.39, 0.48, 0.29, 0.51, 0.37, 0.42, 0.44, 0.45, 0.58, 0.47, 0.41, 0.61, 0.46, 0.52, 0.85, 0.55, 0.38, 0.43, 0.68, 0.49, 0.78, 0.73, 0.3, 0.81, 0.45, 0.27, 0.41, 0.49, 0.35, 0.57, 0.33, 0.5, 0.4, 0.48, 0.58, 0.65, 0.43, 0.61, 0.53, 0.72, 0.77, 0.34, 0.5, 0.5, 0.84, 0.43, 0.53, 0.52, 0.7, 0.62, 0.54, 0.39, 0.34, 0.35, 0.59, 0.63, 0.5, 0.58, 0.38, 0.49, 0.37, 0.51, 0.67, 0.5, 0.93, 0.76, 0.56, 0.65, 0.71, 0.65, 0.74, 0.64, 0.99, 0.56, 0.42, 0.75, 0.35, 0.74, 0.74, 0.62, 0.75, 0.57, 0.36, 0.88, 0.44, 0.54, 0.74, 0.56, 0.44, 0.51, 0.67, 0.7, 0.57, 0.64, 0.47, 0.91, 0.5, 0.62, 0.49, 0.61, 0.48, 0.47, 0.64, 0.41, 1.34, 0.6, 0.58, 0.56, 0.77, 0.39, 0.56, 0.48, 0.47, 0.38, 0.68, 0.44, 0.36, 0.69, 0.68, 0.4, 0.46, 0.53, 0.82, 0.73, 0.47, 0.45, 0.48, 0.4, 0.78, 0.26, 0.37, 0.49, 0.82, 0.36, 0.45, 0.55, 0.86, 0.39, 0.57, 0.32, 0.39, 0.66, 0.53, 0.45, 0.52, 0.49, 0.43, 0.46, 0.43, 0.42, 0.47, 0.77, 0.61, 0.39, 0.44, 0.49, 0.42, 0.41, 0.55, 0.95, 0.76, 0.37, 0.43, 0.82, 0.87, 0.37, 0.48, 0.44, 0.45, 0.75, 0.42, 0.8, 0.75, 0.34, 0.38, 0.39, 0.43, 0.7, 0.59, 0.48, 0.63, 0.46, 0.73, 0.58, 0.57, 0.38, 0.58, 0.64, 0.59, 0.4, 0.56, 0.57, 0.4, 0.56, 0.63, 0.34, 0.53, 0.93, 0.85, 0.51, 0.46, 0.78, 0.41, 0.33, 0.6, 0.5, 0.6, 0.43, 0.56, 0.65, 0.43, 0.48, 0.47, 0.52, 0.44, 0.5, 0.46, 0.54, 0.7, 0.49, 0.4, 0.45, 0.55, 0.6, 0.53, 0.66, 0.41, 0.64, 0.58, 0.68, 0.48, 0.46, 0.77, 0.48, 0.44, 0.72, 0.44, 0.66, 0.47, 0.66, 0.82, 0.75, 0.54, 0.4, 0.46, 0.48, 0.54, 0.31, 0.47, 0.53, 0.67, 0.49, 0.48, 0.52, 0.46, 0.37, 0.46, 0.39, 0.57, 0.64, 0.6, 0.87, 0.48, 0.54, 0.41, 0.5, 0.47, 0.77, 0.48, 0.7, 0.76, 0.3, 0.55, 0.75, 0.54, 0.65, 0.41, 0.55, 0.4, 0.56, 0.63, 0.35, 0.45, 0.33, 0.48, 0.58, 0.5, 0.48, 0.73, 0.62, 0.57, 0.47, 0.35, 0.39, 0.48, 0.51, 0.43, 0.48, 0.7, 0.55, 0.43, 0.37, 0.43, 0.58, 0.65, 0.4, 0.7, 0.57, 0.4, 0.51, 0.44, 0.56, 0.42, 0.37, 0.31, 0.76, 1.06, 0.51, 0.51, 0.52, 0.49, 0.64, 0.63, 0.36, 0.52, 0.63, 0.57, 0.43, 1.11, 0.49, 0.63, 0.42, 0.52, 0.47, 0.49, 0.46, 0.56, 0.45, 0.54, 0.42, 0.33, 0.42, 0.44, 0.34, 0.59, 0.33, 0.75, 0.72, 0.38, 0.59, 0.52, 0.38, 0.35, 0.48, 0.85, 0.56, 0.4, 0.54, 0.51, 0.75, 0.47, 0.38, 0.6, 0.46, 0.56, 0.63, 0.5, 0.52, 0.57, 0.63, 0.51, 0.5, 0.51, 0.56, 0.68, 0.48, 0.48, 0.64, 0.44, 0.59, 0.5, 0.36, 0.64, 0.39, 0.4, 0.77, 0.48, 0.73, 0.81, 0.5, 0.36, 0.38, 0.86, 0.53, 0.43, 0.38, 0.49, 0.38, 0.46, 0.75, 0.6, 0.41, 0.49, 0.43, 0.46, 0.39, 0.52, 0.58, 0.84, 0.38, 0.54, 0.45, 0.42, 0.42, 0.5, 0.9, 0.34, 0.35, 0.58, 0.52, 0.47, 0.36, 0.35, 0.4, 0.82, 0.6, 0.31, 0.38, 0.53, 0.82, 0.45, 0.72, 0.32, 0.59, 0.75, 0.35, 0.37, 0.75, 0.43, 0.46, 0.5, 0.39, 0.44, 0.57, 0.69, 0.46, 0.53, 0.61, 0.54, 0.54, 0.56, 0.49, 0.38, 0.52, 0.48, 0.37, 0.65, 0.42, 0.46, 0.5, 0.55, 0.55, 0.4, 0.53, 0.48, 0.59, 0.52, 0.43, 0.62, 0.57, 0.46, 0.44, 0.65, 0.44, 0.58, 0.58, 0.44, 0.49, 0.64, 0.42, 0.5, 0.65, 0.62, 0.47, 0.53, 0.49, 0.59, 0.45, 0.47, 0.41, 0.31, 0.46, 0.64, 0.5, 0.48, 0.41, 0.78, 0.44, 0.42, 0.52, 0.46, 0.46, 0.36, 0.39, 0.36, 0.45, 0.69, 0.7, 0.49, 0.3, 0.68, 0.46, 0.5, 0.7, 0.76, 0.46, 0.78, 0.33, 0.36, 0.65, 0.6, 0.49, 0.56, 0.45, 0.61, 0.98, 0.52, 0.64, 0.77, 0.6, 0.7, 0.59, 0.35, 0.6, 0.33, 0.61, 0.4, 0.34, 0.47, 0.41, 0.53, 0.51, 0.37, 0.71, 0.65, 0.57, 0.4, 0.74, 0.48, 0.7, 0.5, 0.39, 0.46, 0.52, 0.43, 0.47, 0.49, 0.46, 0.45, 0.45, 0.84, 0.64, 0.32, 0.54, 0.33, 0.59, 0.66, 0.39, 0.75, 0.4, 0.78, 0.4, 0.51, 0.47, 0.37, 0.54, 0.72, 0.54, 0.7, 0.43, 0.53, 0.56, 0.55, 0.43, 0.37, 0.32, 0.49, 0.59, 0.82, 0.5, 0.47, 0.42, 0.41, 0.38, 0.65, 0.45, 0.27, 0.59, 0.54, 0.4, 0.57, 0.63, 0.55, 0.45, 0.3, 0.67, 0.72, 0.43, 0.41, 0.55, 0.43, 0.8, 0.52, 0.41, 0.5, 0.6, 0.72, 0.88, 0.35, 0.45, 0.42, 0.65, 0.38, 0.52, 0.77, 0.42, 0.76, 0.52, 0.64, 0.45, 0.42, 0.44, 0.32, 0.44, 0.32, 0.37, 0.41, 0.43, 0.41, 0.6, 0.58, 0.68, 0.71, 0.57, 0.65, 0.53, 0.41, 0.68, 0.68, 0.77, 0.81, 0.36, 0.49, 0.45, 0.56, 0.73, 0.75, 0.49, 0.92, 0.52, 0.76, 0.44, 0.64, 0.48, 0.5, 0.49, 0.4, 0.5, 0.72, 0.5, 0.46, 0.41, 0.44, 0.45, 0.53, 0.59, 0.57, 0.5, 0.55, 0.82, 0.4, 0.4, 0.45, 0.32, 0.68, 0.62, 0.64, 0.6, 0.54, 0.82, 0.88, 0.43, 0.53, 0.48, 0.8, 0.3, 0.38, 0.9, 0.43, 0.38, 0.51, 0.95, 0.59, 0.72, 0.88, 0.62, 0.44, 0.36, 0.45, 0.6, 0.39, 0.46, 0.28, 0.37, 0.58, 0.48, 0.31, 0.81, 0.5, 0.45, 0.58, 0.74, 0.37, 0.6, 0.6, 0.52, 0.54, 0.58, 0.55, 0.65, 0.56, 0.42, 0.37, 0.51, 0.87, 0.51, 0.33, 0.38, 0.72, 0.79, 0.58, 0.46, 0.49, 0.66, 0.46, 0.61, 0.44, 0.52, 0.58, 0.55, 0.7, 0.63, 0.37, 0.5, 0.53, 0.29, 0.41, 0.42, 0.39, 0.35, 0.65, 0.44, 0.6, 0.53, 0.35, 0.51, 0.74, 0.37, 0.58, 0.39, 0.49, 0.58, 0.38, 0.63, 0.42, 0.69, 0.58, 0.59, 0.5, 0.39, 0.68, 0.48, 0.32, 0.62, 0.42, 0.39, 0.56, 0.56, 0.44, 0.43, 0.52, 0.46, 0.34, 0.38, 0.48, 0.53, 0.64, 0.64, 0.6, 0.59, 0.38, 0.65, 0.63, 0.38, 0.5, 0.54, 0.63, 0.58, 0.61, 0.75, 0.73, 0.79, 0.58, 0.5, 0.76, 0.52, 0.46, 0.31, 0.4, 0.52, 0.51, 0.63, 0.44, 0.45, 0.48, 0.39, 0.46, 0.56, 0.68, 0.45, 0.58, 0.75, 0.57, 0.5, 0.51, 0.68, 0.36, 0.56, 0.43, 0.52, 0.53, 0.56, 0.55, 0.44, 0.37, 0.57, 0.6, 0.51, 0.51, 0.47, 0.39, 0.46, 0.37, 0.45, 0.37, 0.36, 0.55, 0.48, 0.45, 0.39, 0.45, 0.35, 0.58, 0.63, 0.71, 0.6, 0.59, 0.8, 0.37, 0.46, 0.48, 0.63, 0.47, 0.73, 0.54, 0.33, 0.49, 0.78, 0.64, 0.52, 0.51, 0.52, 0.52, 0.66, 0.37, 0.55, 0.53, 0.76, 0.52, 0.59, 0.56, 0.49, 0.54]}, {\"marker\": {\"color\": \"white\", \"opacity\": 0.005, \"size\": 0.01}, \"mode\": \"markers\", \"name\": \"Current\", \"showlegend\": false, \"type\": \"scatter\", \"x\": [2, 2], \"y\": [0.08396450462794602, 0.9781554953720539]}], \"layout\": {\"legend\": {\"orientation\": \"h\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"shapes\": [{\"fillcolor\": \"LightGreen\", \"layer\": \"below\", \"line\": {\"width\": 0}, \"opacity\": 0.5, \"type\": \"rect\", \"x0\": 0, \"x1\": 1, \"xref\": \"paper\", \"y0\": 0.08396450462794602, \"y1\": 0.9781554953720539, \"yref\": \"y\"}, {\"line\": {\"color\": \"Green\", \"width\": 3}, \"name\": \"Reference\", \"type\": \"line\", \"x0\": 0, \"x1\": 1, \"xref\": \"paper\", \"y0\": 0.53106, \"y1\": 0.53106, \"yref\": \"y\"}], \"showlegend\": true, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"Index\"}}, \"yaxis\": {\"title\": {\"text\": \"sulphates\"}}}}}}, {\"id\": \"alcohol_distr\", \"params\": {\"data\": [{\"histnorm\": \"probability\", \"marker\": {\"color\": \"#4d4d4d\"}, \"name\": \"Reference\", \"nbinsx\": 10, \"opacity\": 0.6, \"type\": \"histogram\", \"x\": [11.2, 10.0, 12.7, 10.5, 9.4, 10.1, 13.5, 10.4, 12.4, 11.5, 10.0, 8.7, 9.8, 10.5, 12.6, 9.1, 10.6, 9.5, 10.5, 9.6, 9.4, 11.7, 11.2, 12.3, 9.5, 11.9, 9.7, 10.4, 10.0, 9.3, 12.3, 9.7, 10.1, 11.9, 11.5, 10.0, 10.2, 13.6, 11.3, 9.6, 12.8, 11.0, 8.7, 12.2, 10.0, 10.7, 9.3, 9.5, 9.5, 10.9, 9.8, 9.2, 10.9, 11.8, 9.5, 12.5, 10.0, 9.5, 12.9, 9.1, 12.8, 11.3, 11.5, 10.2, 12.1, 11.2, 9.7, 11.2, 9.9, 9.8, 10.0, 8.8, 9.9, 9.0, 12.3, 12.0, 12.0, 10.1, 9.1, 9.7, 8.9, 10.1, 9.6, 12.4, 10.4, 10.8, 10.3, 10.0, 11.1, 8.6, 9.1, 10.8, 11.8, 10.1, 10.8, 12.5, 10.0, 10.4, 10.8, 9.6, 12.8, 9.2, 12.2, 9.2, 10.2, 10.6, 9.5, 9.8, 9.2, 8.9, 11.7, 10.5, 9.5, 9.8, 10.1, 9.1, 13.4, 10.5, 10.6, 9.3, 12.2, 13.4, 9.4, 11.0, 9.1, 12.3, 9.3, 10.7, 9.6, 9.8, 12.8, 12.3, 10.9, 12.4, 10.1, 9.8, 9.2, 13.5, 10.6, 11.0, 10.4, 12.2, 11.3, 11.3, 10.6, 9.9, 13.4, 9.3, 10.4, 12.2, 10.2, 10.1, 11.0, 9.3, 10.0, 12.6, 12.4, 10.6, 9.4, 9.2, 11.3, 10.4, 9.2, 9.9, 10.6, 12.6, 11.2, 9.8, 9.4, 10.2, 8.9, 10.1, 11.9, 11.0, 12.5, 8.8, 11.0, 9.7, 12.2, 8.7, 10.6, 11.4, 10.75, 12.4, 11.4, 8.8, 9.8, 10.2, 10.0, 10.9, 8.9, 10.7, 12.7, 11.1, 11.4, 9.2, 11.5, 12.0, 9.1, 11.0, 9.0, 10.0, 11.1, 9.8, 9.0, 9.05, 10.4, 8.9, 9.6, 10.5, 9.5, 8.9, 9.8, 10.9, 11.0, 10.1, 9.9, 10.6, 14.0, 10.0, 9.1, 11.6, 9.2, 11.0, 9.9, 12.9, 10.0, 11.0, 11.0, 13.4, 10.0, 12.7, 10.5, 10.5, 9.4, 10.6, 9.3, 9.8, 8.7, 10.6, 11.7, 10.9, 10.6, 9.1, 9.2, 9.0, 10.5, 10.3, 9.5, 9.5, 9.0, 11.9, 9.1, 11.4, 9.5, 9.2, 12.1, 11.4, 9.6, 12.0, 9.2, 10.5, 9.8, 11.7, 12.1, 9.7, 10.4, 9.6, 10.2, 10.1, 10.2, 9.0, 8.9, 12.1, 9.3, 9.3, 10.3, 11.1, 11.4, 9.0, 10.5, 9.4, 10.4, 9.7, 10.5, 9.9, 10.5, 10.1, 10.0, 9.8, 9.2, 11.2, 9.0, 10.4, 10.8, 10.7, 12.1, 11.9, 12.7, 9.6, 9.6, 11.0, 13.55, 8.7, 10.1, 11.4, 11.6, 10.1, 10.3, 9.4, 11.2, 12.8, 12.5, 8.9, 12.2, 9.7, 12.1, 8.7, 12.8, 11.0, 9.1, 11.8, 10.5, 10.7, 12.5, 9.7, 12.2, 11.8, 8.8, 10.6, 12.0, 10.9, 10.8, 8.8, 9.5, 9.5, 10.6, 9.4, 10.4, 10.8, 12.1, 9.5, 9.4, 9.6, 10.8, 11.5, 10.0, 11.5, 10.8, 10.9, 12.8, 11.3, 10.2, 8.7, 10.5, 12.9, 9.4, 10.6, 9.2, 10.8, 9.1, 9.1, 9.3, 10.0, 10.8, 10.6, 11.05, 11.0, 9.9, 11.5, 9.1, 11.2, 9.9, 10.4, 11.9, 12.2, 11.0, 9.2, 9.8, 11.8, 10.7, 10.8, 9.4, 11.4, 9.2, 9.0, 9.2, 8.8, 9.5, 11.4, 9.9, 9.0, 10.1, 10.1, 9.3, 12.3, 8.6, 11.0, 10.6, 9.1, 9.7, 9.6, 11.1, 9.5, 10.8, 11.2, 11.4, 11.2, 10.2, 11.0, 12.0, 9.4, 12.6, 9.2, 11.5, 9.8, 9.0, 12.2, 9.2, 9.5, 10.9, 9.9, 10.8, 11.5, 10.2, 9.6, 12.3, 11.6, 11.2, 13.2, 12.5, 10.3, 13.0, 8.4, 10.8, 9.5, 11.4, 11.4, 11.0, 13.0, 9.9, 10.9, 11.7, 11.5, 12.8, 9.53333333333333, 10.5, 11.2, 9.1, 9.4, 9.2, 11.6, 12.2, 12.75, 11.9, 11.9, 9.3, 10.0, 9.6, 9.6, 12.0, 11.5, 10.1, 9.4, 9.3, 9.4, 12.0, 12.4, 11.2, 10.3, 10.9666666666667, 9.1, 9.5, 9.9, 11.4, 10.2, 10.0, 10.9, 9.2, 9.6, 10.7, 12.6, 10.5, 10.9, 10.2, 12.3, 11.0, 9.7, 11.0, 9.7, 9.0, 11.4, 9.4, 11.5, 10.2, 11.8, 9.0, 9.4, 10.1, 9.5, 9.0, 9.6, 9.0, 12.4, 11.3, 10.7, 11.0, 9.7, 9.4, 9.4, 12.8, 10.9, 12.2, 12.6, 11.0, 9.4, 11.4, 9.7, 12.6, 11.7, 9.3, 11.0, 9.5, 9.7, 11.2, 9.7, 12.2, 11.0, 9.5, 12.4, 9.3, 10.4, 9.5, 9.7, 10.8, 10.3, 9.1, 10.5, 8.8, 8.8, 12.8, 9.6, 10.5, 9.9, 11.1, 12.1, 9.5, 11.0, 9.9, 11.3, 10.0, 9.4, 9.0, 9.0, 12.4, 8.9, 10.8, 10.5, 11.2, 10.9, 9.5, 11.0, 9.6, 11.4, 11.0, 12.4, 10.1, 12.2, 9.4, 10.4, 11.4, 10.3, 11.5, 9.8, 9.7, 10.8, 9.9, 10.4, 12.6, 11.2, 9.6, 10.0, 12.0, 9.0, 10.8, 9.0, 9.0, 10.3, 10.4, 10.1, 12.9, 9.4, 10.8, 12.5, 9.2, 12.7, 10.4, 9.9, 9.5, 9.2, 10.0, 9.7, 10.8, 9.1, 9.3, 11.2, 9.0, 10.9, 9.0, 9.5, 9.5, 10.0, 10.5, 10.2, 12.2, 11.2666666666667, 8.9, 9.9, 11.0, 9.2, 10.4, 11.0, 11.8, 10.6, 12.6, 9.2, 9.0, 9.4, 10.2, 11.5, 9.3, 12.5, 8.8, 9.2, 11.5, 10.4, 10.6, 11.3, 10.1, 10.8, 10.5, 9.6, 8.7, 12.0, 11.1, 8.7, 10.4, 11.1, 11.3, 11.2, 10.5, 11.9, 9.1, 11.6, 9.1, 10.8, 10.6, 9.4, 10.5, 10.8, 9.6, 9.0, 10.2, 11.0, 10.0, 11.2, 11.4333333333333, 12.2, 9.3, 10.8, 9.5, 12.0, 12.4, 9.0, 12.4, 12.8, 9.4, 11.2, 10.5, 9.4, 11.6333333333333, 10.0, 10.5, 13.1, 8.8, 9.3, 11.5, 11.3, 12.3, 11.2, 10.6, 10.7, 11.0, 10.8, 10.7, 9.6, 9.5, 9.1, 9.7, 11.8, 10.1, 10.2, 10.4, 9.6, 10.4, 9.5, 11.0, 10.9, 12.6, 12.4, 9.5, 11.9, 10.2, 9.7, 13.0, 10.2, 10.9, 9.9, 9.1, 9.5, 11.2, 9.5, 10.5, 11.0, 9.2, 11.5, 11.0666666666667, 9.2, 10.4, 11.0, 10.4, 13.4, 9.6, 9.4, 8.7, 8.8, 12.4, 9.9, 12.9, 12.4, 9.5, 11.0, 9.0, 10.8, 10.2, 10.0, 11.7, 10.6, 8.5, 8.8, 9.7, 10.0, 10.6, 9.2, 8.9, 9.0, 12.0, 12.5, 9.0, 9.0, 11.7, 9.9, 9.9, 9.2, 9.4, 9.5, 9.2, 9.6, 9.7, 10.3, 11.5, 11.4, 9.6, 10.1, 12.8, 10.5, 10.5, 12.0, 10.5, 11.7, 9.0, 12.5, 10.1, 11.4, 9.9, 12.3, 12.2, 12.3, 9.3, 12.1, 10.4, 9.0, 12.1, 12.3, 9.9, 11.9, 10.5, 9.3, 10.0, 11.6, 12.7, 9.5, 13.2, 13.0, 9.8, 9.5, 11.5, 9.0, 12.0, 9.3, 11.6, 9.3, 11.2, 10.5, 9.3, 10.1, 10.2, 9.5, 10.7, 9.5, 10.1, 9.4, 11.4, 10.7, 10.5, 12.1, 10.8, 11.0, 10.2, 12.2, 10.5, 12.8, 10.0, 10.6, 12.2, 11.1, 13.2, 11.6, 9.4, 12.0, 11.0, 10.0, 10.3, 11.3, 11.0, 10.8, 11.2, 9.7, 10.4, 10.4, 9.4, 10.8, 10.2, 9.2, 9.0, 8.7, 9.3, 8.9, 11.4, 9.4, 9.5, 9.8, 11.2, 9.8, 11.4, 13.6, 11.0, 10.7, 11.3666666666667, 10.5, 12.5, 10.0, 10.1, 12.1, 10.1, 11.5, 12.7, 12.0, 12.9, 9.0, 8.6, 9.7, 10.6, 9.3, 10.6, 9.3, 10.5, 10.5, 11.9, 9.4, 9.3, 12.5, 10.1, 9.3, 9.5, 10.7, 12.2, 10.8, 9.8, 9.5, 13.2, 10.8, 10.3, 9.8, 11.2, 9.9, 9.3, 12.5, 9.5, 9.3, 12.8, 10.2, 9.4, 10.1, 9.5, 11.1, 9.8, 10.5, 11.1, 10.5, 9.2, 11.2, 11.7, 10.2, 11.0, 9.5, 11.7, 8.8, 10.8, 10.9, 9.7, 9.5, 11.5, 9.6, 9.5, 8.8, 10.9333333333333, 10.5, 14.9, 9.8, 10.7, 12.7, 10.4, 11.8, 10.1, 9.4, 9.2, 11.3, 9.4, 10.2, 10.4, 11.3, 8.7, 10.0, 10.9, 9.5, 9.7, 9.4, 9.8, 9.6, 9.4, 10.9, 8.9, 9.5, 10.9, 9.6, 9.0, 11.7, 9.6, 9.53333333333333, 12.3, 9.4, 10.2, 10.8, 9.6, 9.5, 9.2, 11.0, 11.7, 9.2, 11.3, 10.0, 9.53333333333333, 10.8, 9.5, 9.8, 11.8, 9.2, 9.9, 10.0, 10.1, 9.4, 12.0, 11.8, 9.4, 10.0, 9.7, 9.5, 13.0, 10.0]}, {\"histnorm\": \"probability\", \"marker\": {\"color\": \"#ed0400\"}, \"name\": \"Current\", \"nbinsx\": 10, \"opacity\": 0.6, \"type\": \"histogram\", \"x\": [9.0, 11.0, 9.0, 10.9, 9.4, 8.9, 11.0, 9.5, 10.1, 9.8, 10.1, 10.8, 12.0, 10.5, 10.0, 11.0, 8.9, 12.4, 12.2, 8.7, 12.8, 10.6, 11.4, 10.7, 9.7, 10.0, 11.5, 10.3, 12.4, 8.9, 9.9, 9.2, 9.2, 10.5, 10.5, 9.8, 9.6, 9.2, 9.1, 10.1, 12.2, 11.0, 11.3, 8.8, 12.5, 12.3, 13.0, 9.0, 10.1, 9.5, 9.2, 10.3, 12.0, 12.1, 10.8, 8.7, 11.7, 9.7, 11.3333333333333, 9.3, 13.4, 11.8, 12.4, 11.3, 9.7, 11.8, 8.9, 12.0, 8.7, 9.4, 12.7, 9.0, 9.3, 10.9, 9.5, 9.4, 12.5, 9.7, 9.2, 12.8, 10.4, 10.5, 9.8, 11.4, 8.8, 9.5, 10.2, 8.7, 14.0, 9.8, 9.1, 10.4, 8.7, 12.3, 11.8, 11.2, 9.3, 12.5, 9.6, 9.3, 11.0, 10.7, 10.5, 10.55, 9.6, 9.1, 9.5, 11.7, 9.4, 9.2, 11.0, 9.7, 9.3, 9.3, 10.2, 9.6, 10.8, 9.4, 9.4, 12.2, 10.2, 11.4, 9.3, 12.4, 9.3, 11.9, 9.8, 12.0, 10.9, 11.5, 9.2, 9.3, 11.5, 11.4, 9.5, 10.8, 10.5666666666667, 11.9, 12.6, 13.2, 10.1, 12.6, 10.0333333333333, 13.1, 9.4, 9.8, 10.2, 11.1, 11.1, 9.0, 9.9, 11.2, 13.2, 9.1, 10.9, 10.4, 9.5, 9.4, 8.8, 11.5, 12.6, 11.6, 11.3, 10.7, 11.0, 8.8, 9.7, 12.3, 12.6, 9.3, 12.4, 12.4, 11.3, 9.5, 10.4, 11.5, 9.8, 11.1, 11.8, 12.1, 12.0, 12.2, 10.9, 9.4, 12.3, 9.2, 12.3, 10.2, 12.0, 12.5, 13.6, 12.5, 9.4, 11.1, 9.1, 9.8, 9.3, 10.5, 10.8, 11.6, 9.7, 9.0, 9.7, 11.0, 11.2, 12.7, 10.8, 9.4, 9.3, 10.9, 9.6, 9.2, 10.5, 9.4, 9.4, 10.5, 10.9, 10.7, 9.0, 10.2, 9.8, 11.2, 9.5, 9.2, 9.5, 12.5, 11.3, 10.4666666666667, 12.0, 10.6, 11.3, 9.4, 10.0, 9.0, 12.7, 9.5, 13.4, 10.5, 11.7, 10.3, 11.4, 11.5, 9.9, 11.0, 9.2, 11.4, 10.2, 10.9, 11.6, 11.1, 14.0, 8.9, 11.8, 10.4, 9.2, 11.4, 13.1, 13.6, 12.5, 9.0, 9.6, 11.0, 9.9, 9.5, 9.2, 9.5, 9.5, 10.7, 10.1, 9.4, 11.6, 10.3, 12.6, 10.4, 9.0, 8.8, 8.9, 9.8, 10.5, 11.1, 9.5, 9.5, 11.0, 9.4, 9.7, 11.9, 11.9, 9.2, 10.8, 9.7, 12.2, 10.5, 12.5, 9.4, 9.8, 12.5, 10.9, 10.4, 9.6, 11.9, 11.0, 10.6, 10.8, 9.7, 9.2, 12.0, 10.1, 8.9, 10.2, 11.4, 12.8, 10.6, 9.2, 12.4, 9.4, 9.0, 12.8, 10.6, 8.8, 10.0, 9.3, 11.3, 11.6, 9.4, 10.5, 9.4, 12.8, 12.2, 9.5, 10.0, 10.8, 9.5, 9.0, 9.2, 9.1, 9.2, 11.2, 10.3, 9.4, 12.0, 11.2, 9.1, 9.25, 10.1, 10.8, 12.1, 12.8, 8.9, 9.8, 9.9, 12.3, 10.6, 10.6, 11.2, 12.0, 11.2, 10.7, 9.4, 9.4, 9.5, 11.0, 13.3, 10.2, 11.4, 13.0, 10.3, 10.4, 10.6, 11.4, 9.5, 10.1, 8.8, 9.2, 10.7, 9.4, 11.0, 10.1, 9.6, 9.2, 9.7, 8.8, 10.1, 10.5, 11.6, 10.7, 13.4, 10.4, 9.2, 9.8, 10.2, 10.5, 9.4, 11.0, 8.7, 12.2, 12.2, 10.4, 10.6, 10.7, 10.2, 11.1, 12.5, 12.7, 10.6, 9.3, 11.4, 10.4, 9.9, 9.9, 11.3, 12.6, 11.0, 9.3, 9.9, 10.7, 9.4, 8.8, 10.4, 10.6, 10.7, 10.1, 10.3, 11.2, 9.1, 11.9, 11.8, 11.7, 10.0, 12.8, 11.6, 11.45, 11.3, 9.5, 9.7, 10.2, 11.0, 10.3, 9.5, 10.1, 10.9, 12.8, 10.4, 11.0, 9.2, 9.2, 9.5, 12.2, 11.0, 10.0, 11.8, 9.2, 10.0, 12.9, 10.3, 10.5, 9.5, 11.3, 10.1, 12.3, 10.5, 9.0, 11.0, 12.0, 10.7, 11.0, 9.4, 12.6, 11.2, 10.5, 11.5, 9.6, 9.3, 11.6, 9.3, 11.4, 10.4, 11.0, 9.8, 9.8, 10.1, 9.0, 10.4, 9.5, 9.2, 12.5, 13.0, 10.3, 9.0, 9.1, 10.4, 12.7, 11.0, 11.5, 9.6, 12.6, 10.6, 10.4, 9.0, 11.3, 9.4, 9.5, 9.2, 9.4, 10.9, 11.0, 10.3, 9.1, 9.2, 10.0, 10.5, 10.2, 11.9, 10.8, 10.2, 9.7, 11.4, 9.4, 9.5, 10.9, 10.2, 11.4, 10.5, 10.0, 11.7, 11.3, 9.5, 11.5, 8.8, 9.2, 12.4, 9.3, 12.0, 10.0, 10.1, 10.2, 9.3, 10.4, 8.8, 12.5, 12.9, 10.3, 8.7, 8.8, 10.6, 10.2, 9.2, 8.9, 10.3, 10.3, 8.0, 9.4, 10.2, 13.05, 10.1, 10.3, 10.8, 11.4, 11.7, 10.8, 9.8, 10.5, 12.0, 11.2, 9.6, 10.5, 12.4, 9.4, 11.5, 12.2, 9.3, 9.2, 9.3, 10.2, 9.3, 11.9, 10.5, 9.7, 11.0, 11.65, 11.4, 11.3, 11.0, 9.7, 9.3, 11.2, 10.2, 10.2, 10.1, 11.1, 10.8, 9.0, 12.5, 8.6, 12.6, 10.8, 9.5, 10.6, 11.5, 9.1, 11.4, 9.5, 9.8, 12.7, 9.1, 9.6, 9.8, 9.5, 9.0, 11.0, 10.5, 9.0, 12.5, 9.0, 9.4, 9.6, 10.0, 11.4, 10.4, 9.8, 10.6, 10.3, 9.4, 9.0, 9.6, 9.0, 9.3, 10.6, 12.6, 12.8, 11.3, 8.6, 10.2, 11.9, 9.0, 9.7, 12.1, 10.3, 9.2, 11.2, 10.5, 10.2, 10.6, 12.4, 12.0, 11.7, 9.3, 10.2, 11.4, 12.8, 11.5, 10.5, 9.0, 9.0, 10.2, 10.8, 9.0, 12.0, 9.3, 9.8, 8.7, 9.0, 9.3, 9.3, 9.1, 9.4, 9.1, 10.0, 12.5, 9.1, 9.8, 9.4, 12.0, 10.3, 9.2, 10.6, 14.0, 9.2, 10.0, 10.1, 8.8, 9.7, 10.6, 9.2, 9.5, 9.8, 10.4, 9.0, 11.0, 11.0, 10.65, 9.0, 8.8, 9.7, 11.3, 11.3, 9.6, 13.3, 9.4, 9.4, 8.7, 10.9, 10.4, 9.8, 12.7, 10.9, 10.3, 11.0, 10.6, 9.2, 11.4, 10.4, 10.3, 12.5, 9.2, 8.7, 10.3, 12.8, 9.5, 9.7, 10.9, 9.4, 11.4, 11.3, 10.0, 10.7, 10.2, 9.3, 11.4, 10.0, 10.6, 9.4, 11.4, 10.0, 11.9, 9.6, 9.0, 8.6, 10.6, 8.8, 11.0, 9.9, 12.7, 12.5, 8.8, 9.7, 9.4, 9.5, 9.5, 10.8, 10.8, 10.1, 9.8, 10.0, 9.1, 10.1, 10.1, 12.5, 11.0, 9.8, 9.5, 10.8, 9.7, 11.4, 9.8, 11.4, 10.0, 11.5, 10.3, 12.2, 11.75, 9.6, 10.3, 9.1, 11.0, 11.4, 10.0, 13.5, 8.9, 9.3, 9.4, 9.6, 10.2, 12.0, 10.1, 12.3, 9.0, 12.9, 11.3, 14.2, 11.4, 11.5, 9.5, 12.6, 10.1, 9.5, 10.1, 11.7, 9.2, 9.2, 10.0, 9.5, 12.4, 13.0, 11.4, 10.5, 10.9, 11.0, 9.2, 11.6, 9.3, 10.7, 9.2, 12.6, 11.2, 11.5, 9.1, 11.3, 10.1, 9.1, 11.4, 10.0, 9.8, 9.0, 13.0, 12.5, 9.5, 11.6, 9.7, 11.5, 12.1, 9.7, 9.5, 9.2, 9.5, 11.1, 11.2, 10.2, 11.3333333333333, 9.5, 9.0, 9.2, 10.9, 11.4, 13.1, 11.5, 10.9, 11.8, 10.3, 12.3, 9.1, 9.5, 11.4, 10.6, 11.4, 10.5, 11.1, 11.0, 10.4, 9.3, 10.0, 9.5, 10.1, 10.8, 12.3, 11.9, 11.0, 9.8, 10.4, 8.7, 11.4, 10.5, 9.5, 9.1, 12.1, 11.4, 9.0, 11.2, 9.4, 9.4, 13.0, 9.6, 12.5, 10.5, 10.3, 11.1, 12.0, 12.4, 11.0, 11.0, 12.3, 10.2, 11.0, 8.7, 9.9, 12.4, 8.8, 9.5, 9.6, 9.8, 10.5, 12.5, 9.5, 10.0, 10.0, 9.5, 10.2, 9.5, 10.2, 11.1, 10.0, 9.3, 10.4, 10.0, 10.0, 11.2, 11.8, 10.4, 12.5, 9.6, 9.4, 10.1, 9.5, 11.5, 11.5, 12.7, 9.4, 10.8, 8.8, 10.4, 12.2, 9.4, 9.5, 11.2, 10.4666666666667, 9.8, 10.5, 9.5, 9.8, 10.5, 10.6, 10.5, 10.4, 9.9, 9.6, 10.5, 9.1, 11.9, 11.4, 9.8, 9.7, 12.1, 12.9, 10.4, 9.5, 10.4, 9.3, 12.2, 10.2, 10.4, 12.4, 11.0, 8.8, 10.0, 10.8, 12.15, 10.7, 11.45, 8.9, 10.2, 9.2, 11.8, 12.1, 10.4, 9.8, 10.0, 12.7, 11.6, 9.8, 8.4, 12.3, 10.3, 10.2, 13.4, 9.3, 11.0, 9.5, 11.0, 12.0, 12.8, 9.2, 8.8, 8.8, 9.9, 8.9, 10.0, 9.5, 13.4, 9.3, 11.4, 11.0]}], \"layout\": {\"legend\": {\"orientation\": \"h\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"alcohol\"}}, \"yaxis\": {\"title\": {\"text\": \"Share\"}}}}}, {\"id\": \"alcohol_drift\", \"params\": {\"title\": \"\", \"size\": 2, \"text\": \"\", \"type\": \"big_graph\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"Current\", \"type\": \"scatter\", \"x\": [443, 319, 703, 526, 76, 963, 1260, 532, 1561, 517, 506, 1557, 271, 1058, 1381, 1039, 542, 107, 161, 1301, 519, 1021, 1213, 223, 1286, 1426, 1234, 587, 1183, 182, 567, 1492, 724, 1262, 1509, 657, 1137, 913, 1445, 342, 781, 14, 971, 1072, 1254, 678, 1175, 1481, 1370, 1443, 18, 1151, 1380, 434, 1430, 554, 53, 535, 1050, 427, 259, 124, 961, 1488, 1563, 720, 1291, 1061, 425, 846, 1147, 204, 1317, 618, 1088, 927, 1196, 582, 1194, 360, 1449, 862, 1135, 1453, 1442, 1017, 268, 685, 317, 775, 1086, 942, 1052, 801, 1362, 219, 379, 649, 1195, 479, 1542, 609, 930, 1105, 34, 708, 686, 1132, 693, 733, 1562, 1190, 473, 737, 672, 969, 858, 5, 1556, 298, 80, 940, 361, 1154, 1545, 1622, 784, 19, 1522, 996, 54, 1415, 1564, 1593, 1236, 9, 353, 1222, 113, 1010, 1263, 877, 82, 381, 818, 1210, 1409, 66, 254, 817, 92, 1340, 122, 1357, 511, 1546, 692, 17, 1248, 414, 52, 1296, 191, 175, 233, 900, 785, 935, 1298, 156, 487, 159, 481, 1255, 1597, 253, 1491, 841, 187, 914, 979, 249, 1114, 1366, 814, 716, 465, 875, 1242, 670, 299, 593, 436, 728, 141, 229, 1057, 912, 994, 648, 799, 1164, 1073, 4, 516, 152, 1267, 1237, 752, 1150, 825, 402, 1277, 575, 1437, 838, 390, 1505, 1093, 1026, 1611, 31, 674, 866, 1328, 616, 861, 897, 148, 303, 1451, 602, 1125, 1614, 1047, 1462, 1148, 574, 899, 1327, 89, 530, 408, 1192, 177, 520, 993, 326, 992, 717, 895, 1421, 984, 240, 85, 557, 278, 938, 1425, 958, 1232, 1149, 171, 1220, 227, 891, 489, 1391, 1184, 1032, 393, 726, 192, 260, 880, 1592, 1537, 491, 759, 1473, 959, 1454, 1015, 965, 1393, 1489, 1256, 133, 202, 1036, 438, 483, 666, 461, 142, 1181, 1580, 308, 538, 170, 310, 743, 1101, 1179, 315, 22, 1529, 45, 879, 1110, 61, 522, 1397, 829, 576, 1193, 1202, 1549, 1375, 27, 527, 1186, 1273, 828, 539, 1049, 1014, 412, 1091, 1497, 1595, 347, 2, 844, 1490, 632, 211, 1582, 918, 1217, 1115, 744, 459, 579, 771, 96, 178, 108, 1516, 805, 1240, 440, 619, 1, 1315, 1239, 1347, 512, 48, 722, 1517, 1621, 446, 565, 568, 796, 231, 1070, 1063, 215, 513, 704, 354, 55, 881, 746, 641, 762, 279, 1145, 1468, 224, 302, 911, 218, 1079, 874, 1266, 792, 1136, 372, 295, 364, 580, 1615, 688, 1560, 333, 467, 968, 399, 760, 740, 953, 1520, 1446, 1214, 615, 524, 546, 1495, 1324, 452, 1515, 432, 863, 442, 847, 276, 456, 184, 1116, 1200, 458, 1508, 1087, 1478, 376, 1479, 563, 1146, 1507, 42, 944, 823, 1228, 656, 1227, 198, 309, 761, 1158, 549, 47, 1209, 529, 933, 220, 1624, 1591, 651, 536, 362, 1314, 420, 564, 475, 482, 140, 679, 1436, 1334, 77, 39, 570, 962, 808, 981, 322, 1471, 251, 695, 1128, 813, 757, 820, 853, 831, 1246, 58, 553, 597, 241, 1288, 330, 1005, 789, 1617, 56, 1126, 411, 548, 501, 1211, 642, 558, 1605, 745, 878, 1056, 667, 435, 29, 270, 35, 1157, 422, 1310, 114, 1524, 1422, 689, 1018, 1168, 1360, 985, 1191, 793, 1363, 1504, 581, 644, 1199, 621, 1612, 494, 665, 431, 1095, 638, 1042, 1404, 1030, 40, 1121, 75, 1588, 1417, 247, 713, 1590, 186, 646, 312, 8, 1551, 1302, 1044, 768, 884, 1585, 1618, 826, 445, 712, 464, 1308, 195, 655, 1487, 1389, 1356, 243, 401, 572, 1074, 810, 477, 1460, 1544, 1182, 285, 471, 936, 1238, 578, 1034, 1535, 1513, 426, 1311, 1001, 986, 1038, 980, 1064, 620, 982, 1565, 194, 474, 1428, 569, 1165, 49, 1333, 1401, 1307, 1076, 991, 1566, 44, 1342, 245, 943, 300, 583, 1013, 269, 1548, 313, 776, 283, 1444, 540, 406, 338, 466, 363, 1002, 320, 1264, 1089, 70, 1027, 500, 10, 907, 505, 1295, 864, 1432, 64, 1122, 1543, 416, 898, 654, 205, 328, 486, 999, 1377, 970, 528, 1558, 418, 1379, 1299, 1378, 590, 1247, 1174, 472, 1323, 131, 15, 439, 1528, 476, 725, 1203, 1109, 1003, 1365, 103, 1279, 60, 871, 78, 391, 165, 1335, 1410, 1129, 960, 349, 185, 1464, 371, 117, 1398, 252, 507, 1613, 311, 1419, 395, 987, 358, 263, 359, 1559, 1305, 1506, 1376, 1055, 634, 1552, 16, 51, 1258, 493, 601, 997, 351, 711, 1604, 1486, 1339, 794, 97, 1475, 1423, 196, 748, 183, 1433, 1579, 613, 1536, 989, 682, 533, 610, 687, 892, 81, 896, 397, 267, 589, 386, 795, 1416, 132, 265, 1609, 1461, 883, 88, 840, 988, 1354, 676, 916, 629, 1269, 924, 294, 261, 1541, 1081, 1348, 1576, 405, 1616, 356, 608, 1097, 239, 1249, 1099, 1403, 119, 1096, 977, 751, 374, 453, 110, 1336, 1390, 905, 1287, 503, 1031, 1331, 1224, 729, 410, 1540, 367, 1607, 384, 200, 65, 1358, 1394, 1023, 272, 1418, 955, 677, 238, 1133, 974, 541, 478, 1257, 1265, 1465, 1589, 1326, 188, 1083, 681, 906, 1092, 1276, 316, 214, 1078, 1502, 1084, 660, 1142, 531, 255, 30, 662, 1253, 230, 157, 1343, 385, 1169, 380, 1188, 721, 264, 787, 101, 13, 1274, 68, 1024, 1170, 1156, 71, 1577, 566, 1372, 1245, 798, 523, 626, 495, 937, 155, 887, 758, 921, 790, 1349, 1230, 366, 1531, 983, 839, 228, 417, 206, 742, 79, 190, 492, 948, 145, 923, 318, 824, 1374, 1124, 1463, 596, 457, 144, 1359, 1292, 1045, 764, 842, 1140, 1408, 995, 904, 592, 1458, 135, 83, 1062, 154, 1440, 1283, 773, 1414, 127, 1177, 1318, 1413, 403, 150, 346, 413, 1303, 1523, 1619, 394, 1261, 1054, 208, 496, 352, 95, 625, 571, 37, 485, 143, 946, 158, 552, 1527, 1029, 518, 1180, 1218, 236, 1100, 222, 1431, 345, 1459, 120, 661, 588, 1623, 1493, 62, 1429, 811, 193, 235, 181, 1320, 389, 1103, 521, 669, 332, 258, 1369, 1538, 957, 382, 1382, 1567, 331, 934, 614, 262, 893, 6, 266, 769, 38, 901, 1573, 1578, 545, 118, 783, 652, 1025, 706, 105, 1189, 484, 1569, 630, 683, 20, 870, 242, 50, 162, 915, 966, 441, 867, 731, 1102, 1000, 1268, 1223, 822, 301, 723, 172], \"y\": [9.0, 11.0, 9.0, 10.9, 9.4, 8.9, 11.0, 9.5, 10.1, 9.8, 10.1, 10.8, 12.0, 10.5, 10.0, 11.0, 8.9, 12.4, 12.2, 8.7, 12.8, 10.6, 11.4, 10.7, 9.7, 10.0, 11.5, 10.3, 12.4, 8.9, 9.9, 9.2, 9.2, 10.5, 10.5, 9.8, 9.6, 9.2, 9.1, 10.1, 12.2, 11.0, 11.3, 8.8, 12.5, 12.3, 13.0, 9.0, 10.1, 9.5, 9.2, 10.3, 12.0, 12.1, 10.8, 8.7, 11.7, 9.7, 11.3333333333333, 9.3, 13.4, 11.8, 12.4, 11.3, 9.7, 11.8, 8.9, 12.0, 8.7, 9.4, 12.7, 9.0, 9.3, 10.9, 9.5, 9.4, 12.5, 9.7, 9.2, 12.8, 10.4, 10.5, 9.8, 11.4, 8.8, 9.5, 10.2, 8.7, 14.0, 9.8, 9.1, 10.4, 8.7, 12.3, 11.8, 11.2, 9.3, 12.5, 9.6, 9.3, 11.0, 10.7, 10.5, 10.55, 9.6, 9.1, 9.5, 11.7, 9.4, 9.2, 11.0, 9.7, 9.3, 9.3, 10.2, 9.6, 10.8, 9.4, 9.4, 12.2, 10.2, 11.4, 9.3, 12.4, 9.3, 11.9, 9.8, 12.0, 10.9, 11.5, 9.2, 9.3, 11.5, 11.4, 9.5, 10.8, 10.5666666666667, 11.9, 12.6, 13.2, 10.1, 12.6, 10.0333333333333, 13.1, 9.4, 9.8, 10.2, 11.1, 11.1, 9.0, 9.9, 11.2, 13.2, 9.1, 10.9, 10.4, 9.5, 9.4, 8.8, 11.5, 12.6, 11.6, 11.3, 10.7, 11.0, 8.8, 9.7, 12.3, 12.6, 9.3, 12.4, 12.4, 11.3, 9.5, 10.4, 11.5, 9.8, 11.1, 11.8, 12.1, 12.0, 12.2, 10.9, 9.4, 12.3, 9.2, 12.3, 10.2, 12.0, 12.5, 13.6, 12.5, 9.4, 11.1, 9.1, 9.8, 9.3, 10.5, 10.8, 11.6, 9.7, 9.0, 9.7, 11.0, 11.2, 12.7, 10.8, 9.4, 9.3, 10.9, 9.6, 9.2, 10.5, 9.4, 9.4, 10.5, 10.9, 10.7, 9.0, 10.2, 9.8, 11.2, 9.5, 9.2, 9.5, 12.5, 11.3, 10.4666666666667, 12.0, 10.6, 11.3, 9.4, 10.0, 9.0, 12.7, 9.5, 13.4, 10.5, 11.7, 10.3, 11.4, 11.5, 9.9, 11.0, 9.2, 11.4, 10.2, 10.9, 11.6, 11.1, 14.0, 8.9, 11.8, 10.4, 9.2, 11.4, 13.1, 13.6, 12.5, 9.0, 9.6, 11.0, 9.9, 9.5, 9.2, 9.5, 9.5, 10.7, 10.1, 9.4, 11.6, 10.3, 12.6, 10.4, 9.0, 8.8, 8.9, 9.8, 10.5, 11.1, 9.5, 9.5, 11.0, 9.4, 9.7, 11.9, 11.9, 9.2, 10.8, 9.7, 12.2, 10.5, 12.5, 9.4, 9.8, 12.5, 10.9, 10.4, 9.6, 11.9, 11.0, 10.6, 10.8, 9.7, 9.2, 12.0, 10.1, 8.9, 10.2, 11.4, 12.8, 10.6, 9.2, 12.4, 9.4, 9.0, 12.8, 10.6, 8.8, 10.0, 9.3, 11.3, 11.6, 9.4, 10.5, 9.4, 12.8, 12.2, 9.5, 10.0, 10.8, 9.5, 9.0, 9.2, 9.1, 9.2, 11.2, 10.3, 9.4, 12.0, 11.2, 9.1, 9.25, 10.1, 10.8, 12.1, 12.8, 8.9, 9.8, 9.9, 12.3, 10.6, 10.6, 11.2, 12.0, 11.2, 10.7, 9.4, 9.4, 9.5, 11.0, 13.3, 10.2, 11.4, 13.0, 10.3, 10.4, 10.6, 11.4, 9.5, 10.1, 8.8, 9.2, 10.7, 9.4, 11.0, 10.1, 9.6, 9.2, 9.7, 8.8, 10.1, 10.5, 11.6, 10.7, 13.4, 10.4, 9.2, 9.8, 10.2, 10.5, 9.4, 11.0, 8.7, 12.2, 12.2, 10.4, 10.6, 10.7, 10.2, 11.1, 12.5, 12.7, 10.6, 9.3, 11.4, 10.4, 9.9, 9.9, 11.3, 12.6, 11.0, 9.3, 9.9, 10.7, 9.4, 8.8, 10.4, 10.6, 10.7, 10.1, 10.3, 11.2, 9.1, 11.9, 11.8, 11.7, 10.0, 12.8, 11.6, 11.45, 11.3, 9.5, 9.7, 10.2, 11.0, 10.3, 9.5, 10.1, 10.9, 12.8, 10.4, 11.0, 9.2, 9.2, 9.5, 12.2, 11.0, 10.0, 11.8, 9.2, 10.0, 12.9, 10.3, 10.5, 9.5, 11.3, 10.1, 12.3, 10.5, 9.0, 11.0, 12.0, 10.7, 11.0, 9.4, 12.6, 11.2, 10.5, 11.5, 9.6, 9.3, 11.6, 9.3, 11.4, 10.4, 11.0, 9.8, 9.8, 10.1, 9.0, 10.4, 9.5, 9.2, 12.5, 13.0, 10.3, 9.0, 9.1, 10.4, 12.7, 11.0, 11.5, 9.6, 12.6, 10.6, 10.4, 9.0, 11.3, 9.4, 9.5, 9.2, 9.4, 10.9, 11.0, 10.3, 9.1, 9.2, 10.0, 10.5, 10.2, 11.9, 10.8, 10.2, 9.7, 11.4, 9.4, 9.5, 10.9, 10.2, 11.4, 10.5, 10.0, 11.7, 11.3, 9.5, 11.5, 8.8, 9.2, 12.4, 9.3, 12.0, 10.0, 10.1, 10.2, 9.3, 10.4, 8.8, 12.5, 12.9, 10.3, 8.7, 8.8, 10.6, 10.2, 9.2, 8.9, 10.3, 10.3, 8.0, 9.4, 10.2, 13.05, 10.1, 10.3, 10.8, 11.4, 11.7, 10.8, 9.8, 10.5, 12.0, 11.2, 9.6, 10.5, 12.4, 9.4, 11.5, 12.2, 9.3, 9.2, 9.3, 10.2, 9.3, 11.9, 10.5, 9.7, 11.0, 11.65, 11.4, 11.3, 11.0, 9.7, 9.3, 11.2, 10.2, 10.2, 10.1, 11.1, 10.8, 9.0, 12.5, 8.6, 12.6, 10.8, 9.5, 10.6, 11.5, 9.1, 11.4, 9.5, 9.8, 12.7, 9.1, 9.6, 9.8, 9.5, 9.0, 11.0, 10.5, 9.0, 12.5, 9.0, 9.4, 9.6, 10.0, 11.4, 10.4, 9.8, 10.6, 10.3, 9.4, 9.0, 9.6, 9.0, 9.3, 10.6, 12.6, 12.8, 11.3, 8.6, 10.2, 11.9, 9.0, 9.7, 12.1, 10.3, 9.2, 11.2, 10.5, 10.2, 10.6, 12.4, 12.0, 11.7, 9.3, 10.2, 11.4, 12.8, 11.5, 10.5, 9.0, 9.0, 10.2, 10.8, 9.0, 12.0, 9.3, 9.8, 8.7, 9.0, 9.3, 9.3, 9.1, 9.4, 9.1, 10.0, 12.5, 9.1, 9.8, 9.4, 12.0, 10.3, 9.2, 10.6, 14.0, 9.2, 10.0, 10.1, 8.8, 9.7, 10.6, 9.2, 9.5, 9.8, 10.4, 9.0, 11.0, 11.0, 10.65, 9.0, 8.8, 9.7, 11.3, 11.3, 9.6, 13.3, 9.4, 9.4, 8.7, 10.9, 10.4, 9.8, 12.7, 10.9, 10.3, 11.0, 10.6, 9.2, 11.4, 10.4, 10.3, 12.5, 9.2, 8.7, 10.3, 12.8, 9.5, 9.7, 10.9, 9.4, 11.4, 11.3, 10.0, 10.7, 10.2, 9.3, 11.4, 10.0, 10.6, 9.4, 11.4, 10.0, 11.9, 9.6, 9.0, 8.6, 10.6, 8.8, 11.0, 9.9, 12.7, 12.5, 8.8, 9.7, 9.4, 9.5, 9.5, 10.8, 10.8, 10.1, 9.8, 10.0, 9.1, 10.1, 10.1, 12.5, 11.0, 9.8, 9.5, 10.8, 9.7, 11.4, 9.8, 11.4, 10.0, 11.5, 10.3, 12.2, 11.75, 9.6, 10.3, 9.1, 11.0, 11.4, 10.0, 13.5, 8.9, 9.3, 9.4, 9.6, 10.2, 12.0, 10.1, 12.3, 9.0, 12.9, 11.3, 14.2, 11.4, 11.5, 9.5, 12.6, 10.1, 9.5, 10.1, 11.7, 9.2, 9.2, 10.0, 9.5, 12.4, 13.0, 11.4, 10.5, 10.9, 11.0, 9.2, 11.6, 9.3, 10.7, 9.2, 12.6, 11.2, 11.5, 9.1, 11.3, 10.1, 9.1, 11.4, 10.0, 9.8, 9.0, 13.0, 12.5, 9.5, 11.6, 9.7, 11.5, 12.1, 9.7, 9.5, 9.2, 9.5, 11.1, 11.2, 10.2, 11.3333333333333, 9.5, 9.0, 9.2, 10.9, 11.4, 13.1, 11.5, 10.9, 11.8, 10.3, 12.3, 9.1, 9.5, 11.4, 10.6, 11.4, 10.5, 11.1, 11.0, 10.4, 9.3, 10.0, 9.5, 10.1, 10.8, 12.3, 11.9, 11.0, 9.8, 10.4, 8.7, 11.4, 10.5, 9.5, 9.1, 12.1, 11.4, 9.0, 11.2, 9.4, 9.4, 13.0, 9.6, 12.5, 10.5, 10.3, 11.1, 12.0, 12.4, 11.0, 11.0, 12.3, 10.2, 11.0, 8.7, 9.9, 12.4, 8.8, 9.5, 9.6, 9.8, 10.5, 12.5, 9.5, 10.0, 10.0, 9.5, 10.2, 9.5, 10.2, 11.1, 10.0, 9.3, 10.4, 10.0, 10.0, 11.2, 11.8, 10.4, 12.5, 9.6, 9.4, 10.1, 9.5, 11.5, 11.5, 12.7, 9.4, 10.8, 8.8, 10.4, 12.2, 9.4, 9.5, 11.2, 10.4666666666667, 9.8, 10.5, 9.5, 9.8, 10.5, 10.6, 10.5, 10.4, 9.9, 9.6, 10.5, 9.1, 11.9, 11.4, 9.8, 9.7, 12.1, 12.9, 10.4, 9.5, 10.4, 9.3, 12.2, 10.2, 10.4, 12.4, 11.0, 8.8, 10.0, 10.8, 12.15, 10.7, 11.45, 8.9, 10.2, 9.2, 11.8, 12.1, 10.4, 9.8, 10.0, 12.7, 11.6, 9.8, 8.4, 12.3, 10.3, 10.2, 13.4, 9.3, 11.0, 9.5, 11.0, 12.0, 12.8, 9.2, 8.8, 8.8, 9.9, 8.9, 10.0, 9.5, 13.4, 9.3, 11.4, 11.0]}, {\"marker\": {\"color\": \"white\", \"opacity\": 0.005, \"size\": 0.01}, \"mode\": \"markers\", \"name\": \"Current\", \"showlegend\": false, \"type\": \"scatter\", \"x\": [2, 2], \"y\": [6.991666384467629, 14.029566948865671]}], \"layout\": {\"legend\": {\"orientation\": \"h\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"shapes\": [{\"fillcolor\": \"LightGreen\", \"layer\": \"below\", \"line\": {\"width\": 0}, \"opacity\": 0.5, \"type\": \"rect\", \"x0\": 0, \"x1\": 1, \"xref\": \"paper\", \"y0\": 6.991666384467629, \"y1\": 14.029566948865671, \"yref\": \"y\"}, {\"line\": {\"color\": \"Green\", \"width\": 3}, \"name\": \"Reference\", \"type\": \"line\", \"x0\": 0, \"x1\": 1, \"xref\": \"paper\", \"y0\": 10.51061666666665, \"y1\": 10.51061666666665, \"yref\": \"y\"}], \"showlegend\": true, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"Index\"}}, \"yaxis\": {\"title\": {\"text\": \"alcohol\"}}}}}}], \"alerts\": [], \"tabs\": []}]};\n",
473         "    var additional_graphs_evidently_dashboard_3966efb347484c23af70237a11fa6d90 = {\"fixed.acidity_distr\": {\"data\": [{\"histnorm\": \"probability\", \"marker\": {\"color\": \"#4d4d4d\"}, \"name\": \"Reference\", \"nbinsx\": 10, \"opacity\": 0.6, \"type\": \"histogram\", \"x\": [7.0, 7.3, 7.5, 6.3, 6.3, 7.0, 6.5, 5.6, 6.9, 5.8, 8.1, 7.2, 7.7, 6.2, 7.2, 7.3, 9.1, 6.8, 6.2, 6.6, 9.2, 7.3, 15.6, 5.2, 7.1, 6.2, 5.3, 8.5, 8.0, 6.9, 7.7, 7.5, 6.3, 7.3, 9.0, 6.0, 7.0, 5.3, 7.8, 7.1, 6.2, 6.9, 7.3, 6.3, 7.3, 7.3, 5.1, 6.4, 7.8, 7.2, 5.7, 6.6, 8.2, 5.8, 6.1, 7.2, 7.7, 7.7, 5.9, 7.4, 6.7, 6.5, 6.0, 7.2, 7.7, 7.5, 7.4, 8.8, 7.0, 7.8, 8.1, 6.8, 5.9, 8.2, 6.2, 9.4, 6.8, 9.7, 7.5, 7.0, 6.6, 6.2, 7.0, 6.0, 7.8, 5.8, 6.3, 7.1, 14.2, 6.8, 7.4, 5.9, 6.0, 9.1, 7.6, 5.9, 8.5, 11.1, 6.3, 10.2, 5.9, 6.6, 7.1, 6.9, 6.6, 8.2, 5.7, 12.6, 8.3, 7.1, 6.7, 7.4, 7.1, 7.0, 5.7, 5.3, 6.7, 6.7, 8.2, 6.6, 7.0, 6.2, 9.9, 6.4, 6.3, 7.9, 6.6, 7.4, 12.3, 7.0, 7.9, 6.5, 8.2, 6.9, 5.7, 7.4, 7.6, 6.3, 8.0, 8.3, 9.1, 8.0, 7.8, 7.3, 6.5, 8.6, 6.9, 10.8, 6.4, 7.7, 8.8, 6.5, 11.5, 6.3, 6.5, 6.7, 6.6, 6.1, 6.0, 8.5, 5.0, 5.8, 6.7, 7.7, 6.3, 5.9, 6.6, 6.7, 7.3, 8.3, 7.3, 8.5, 9.9, 7.5, 7.2, 7.4, 8.6, 6.4, 5.2, 7.4, 7.9, 6.7, 6.7, 8.0, 7.0, 7.9, 6.9, 6.4, 6.6, 7.4, 6.2, 5.6, 6.7, 7.9, 5.9, 7.5, 6.0, 7.7, 7.1, 7.2, 6.8, 8.2, 6.9, 6.3, 6.1, 6.9, 9.2, 7.8, 8.1, 7.5, 6.8, 6.7, 7.7, 9.2, 6.9, 6.1, 7.3, 7.0, 5.0, 6.5, 7.3, 7.1, 7.0, 8.2, 7.7, 5.0, 10.1, 8.6, 6.6, 7.1, 9.5, 8.0, 5.9, 6.8, 5.8, 6.9, 10.8, 8.4, 7.4, 7.4, 7.2, 5.8, 6.7, 7.4, 7.3, 7.0, 12.0, 6.7, 6.2, 6.6, 6.6, 6.4, 6.4, 5.9, 9.2, 6.4, 7.8, 7.4, 7.7, 6.1, 7.2, 5.9, 7.5, 6.4, 7.9, 7.6, 6.1, 7.2, 7.1, 6.3, 7.1, 7.6, 7.8, 5.2, 7.8, 7.8, 5.9, 10.2, 5.6, 6.2, 6.5, 7.8, 7.4, 6.2, 8.5, 7.2, 7.6, 6.4, 7.8, 6.0, 6.2, 6.2, 5.5, 7.1, 7.4, 6.0, 6.8, 7.9, 6.1, 6.7, 6.2, 5.6, 5.5, 7.2, 11.1, 5.2, 5.9, 10.6, 6.4, 7.1, 6.6, 5.6, 5.0, 5.8, 7.0, 7.1, 7.8, 6.1, 6.3, 8.4, 6.7, 6.8, 8.5, 7.7, 6.4, 6.9, 7.1, 8.4, 7.1, 6.7, 8.2, 8.2, 8.1, 7.3, 7.0, 8.0, 6.8, 8.7, 8.2, 6.5, 6.5, 7.7, 7.1, 10.3, 6.0, 6.9, 6.6, 6.6, 7.0, 7.5, 6.6, 10.1, 6.6, 6.6, 7.0, 8.3, 6.4, 7.1, 6.6, 7.0, 7.1, 7.1, 9.4, 7.1, 7.7, 6.1, 8.3, 6.0, 6.6, 6.3, 6.4, 7.8, 7.9, 6.9, 6.7, 4.8, 6.4, 6.8, 6.6, 6.3, 7.1, 8.9, 6.5, 5.8, 6.4, 7.2, 7.2, 6.4, 7.0, 7.0, 7.3, 5.7, 7.7, 6.5, 6.3, 5.8, 8.0, 6.2, 6.4, 7.4, 9.4, 7.5, 7.2, 7.1, 10.8, 10.1, 7.6, 10.7, 6.7, 6.4, 6.5, 6.6, 7.3, 6.9, 9.8, 8.1, 7.4, 6.3, 11.6, 5.9, 6.1, 7.2, 6.4, 8.3, 9.6, 12.5, 7.2, 7.0, 6.2, 7.3, 9.1, 6.5, 5.2, 6.2, 6.0, 7.2, 6.4, 6.7, 6.0, 5.5, 6.7, 6.7, 9.1, 7.3, 5.6, 6.5, 7.1, 7.8, 6.4, 7.2, 6.6, 7.6, 5.1, 5.8, 8.0, 10.8, 6.2, 7.8, 6.9, 7.7, 7.3, 5.1, 5.6, 7.3, 8.2, 7.8, 7.9, 8.3, 6.2, 7.1, 6.0, 6.1, 7.3, 7.1, 7.0, 7.3, 6.7, 5.7, 7.0, 6.0, 6.8, 6.6, 5.9, 8.1, 5.8, 5.7, 6.0, 8.4, 7.2, 8.9, 7.5, 8.5, 5.9, 7.1, 9.8, 7.5, 7.2, 6.6, 6.6, 7.2, 7.3, 6.5, 7.3, 5.9, 6.1, 7.7, 7.1, 13.4, 6.4, 8.3, 6.0, 6.4, 5.9, 5.8, 6.0, 6.3, 6.1, 7.5, 6.8, 6.3, 7.5, 7.3, 7.0, 7.4, 8.8, 7.4, 6.4, 5.1, 6.7, 8.1, 11.4, 5.6, 7.4, 6.1, 6.8, 5.6, 6.9, 7.0, 9.9, 9.9, 7.2, 6.2, 6.8, 6.5, 8.8, 5.1, 6.5, 10.0, 7.2, 5.9, 8.1, 7.1, 7.2, 8.2, 5.8, 7.3, 6.8, 6.1, 7.7, 6.7, 9.9, 8.3, 6.8, 6.3, 8.4, 6.2, 11.5, 6.9, 7.4, 6.2, 5.6, 8.9, 7.2, 7.2, 6.6, 5.9, 7.5, 5.1, 6.2, 6.2, 6.7, 9.8, 9.2, 7.2, 5.8, 6.6, 6.6, 5.6, 7.7, 9.2, 6.6, 7.1, 6.4, 7.0, 8.0, 5.9, 8.6, 7.4, 9.0, 10.0, 9.8, 10.0, 7.5, 8.3, 6.5, 5.5, 6.9, 7.5, 10.2, 6.1, 7.5, 8.6, 7.7, 6.4, 6.8, 6.1, 6.0, 6.7, 6.3, 7.4, 7.0, 6.0, 7.7, 6.8, 5.0, 5.3, 8.5, 8.0, 5.9, 7.4, 6.7, 6.1, 7.0, 7.3, 7.4, 5.7, 6.8, 7.4, 6.4, 6.1, 9.6, 7.0, 7.2, 6.8, 7.5, 6.5, 6.6, 6.4, 5.7, 6.6, 7.1, 7.0, 6.1, 6.3, 7.1, 7.7, 5.7, 7.5, 7.5, 6.9, 5.9, 7.0, 6.1, 5.8, 6.6, 8.0, 7.4, 6.7, 6.8, 10.8, 7.0, 8.0, 7.7, 6.7, 6.6, 6.4, 6.4, 5.6, 11.3, 9.3, 5.5, 6.9, 6.8, 4.4, 6.6, 9.1, 8.3, 6.3, 6.9, 9.8, 11.1, 7.6, 6.4, 5.8, 6.8, 7.3, 7.6, 7.9, 7.2, 7.4, 7.5, 6.9, 6.3, 7.2, 6.7, 6.7, 10.5, 5.9, 6.8, 6.1, 9.2, 5.8, 7.3, 7.4, 12.0, 6.4, 7.1, 6.4, 6.2, 12.3, 11.1, 7.6, 7.1, 11.5, 8.0, 6.4, 7.3, 6.5, 6.2, 6.7, 7.3, 8.9, 8.3, 6.2, 6.5, 8.7, 5.7, 6.9, 6.5, 7.0, 6.4, 6.7, 9.3, 6.4, 7.5, 7.3, 6.2, 5.8, 6.5, 6.6, 6.3, 5.6, 6.1, 6.6, 7.5, 6.5, 7.7, 7.5, 6.8, 6.6, 5.7, 7.8, 6.3, 6.0, 7.3, 7.9, 7.0, 6.2, 6.7, 6.5, 7.3, 8.6, 6.9, 6.5, 7.3, 7.4, 6.9, 7.0, 7.0, 5.3, 7.2, 7.9, 6.7, 5.1, 6.7, 6.5, 6.4, 6.9, 7.7, 7.8, 7.1, 7.5, 6.5, 6.3, 6.6, 6.7, 5.9, 6.6, 9.9, 6.7, 6.8, 8.4, 6.0, 8.1, 6.4, 8.9, 6.5, 7.2, 7.1, 8.6, 8.0, 6.2, 6.5, 8.9, 6.8, 6.9, 6.3, 7.2, 5.8, 9.5, 6.0, 5.9, 6.8, 7.9, 6.8, 7.1, 9.2, 6.8, 6.7, 7.0, 6.8, 6.0, 7.9, 7.9, 6.5, 7.5, 6.0, 10.1, 7.0, 6.8, 6.3, 7.2, 9.4, 7.7, 7.1, 6.6, 5.3, 8.2, 6.4, 6.8, 8.6, 7.2, 9.9, 7.0, 5.8, 6.3, 7.8, 7.7, 6.6, 6.7, 9.2, 7.6, 5.6, 6.4, 5.6, 5.1, 7.7, 7.4, 7.1, 8.6, 6.1, 9.0, 8.0, 6.2, 7.6, 7.2, 7.1, 6.5, 6.3, 7.2, 6.5, 9.4, 8.7, 6.1, 6.4, 6.3, 7.9, 7.8, 7.5, 10.6, 7.0, 6.4, 5.9, 6.4, 6.1, 6.0, 7.0, 6.9, 6.4, 6.4, 5.4, 6.8, 6.0, 8.2, 6.8, 8.6, 7.5, 6.7, 6.3, 9.4, 6.0, 5.0, 9.0, 7.2, 6.8, 5.6, 6.5, 8.0, 5.6, 7.4, 7.8, 7.4, 7.1, 6.4, 7.0, 6.2, 9.4, 6.0, 5.9, 7.7, 7.1, 7.6, 6.3, 6.6, 7.1, 7.3, 6.4, 10.5, 15.9, 8.1, 8.1, 6.4, 6.2, 8.8, 6.1, 7.0, 8.1, 7.2, 6.4, 9.2, 6.6, 6.9, 6.8, 9.7, 8.8, 9.1, 6.5, 6.9, 5.5, 7.8, 9.9, 7.8, 7.3, 10.8, 6.0, 7.3, 6.7, 6.7, 6.1, 6.6, 6.8, 6.3, 7.15, 7.0, 9.1, 8.0, 7.4, 6.5, 5.3, 6.6, 7.1, 10.8, 6.6, 7.0, 7.2, 7.4, 7.5, 6.2, 10.7, 8.0, 7.0, 7.0, 5.9, 6.8, 7.6, 8.0, 8.4, 6.9, 5.6, 9.2]}, {\"histnorm\": \"probability\", \"marker\": {\"color\": \"#ed0400\"}, \"name\": \"Current\", \"nbinsx\": 10, \"opacity\": 0.6, \"type\": \"histogram\", \"x\": [6.4, 7.3, 7.2, 6.8, 6.8, 6.4, 7.5, 7.9, 5.6, 7.4, 7.3, 6.6, 6.5, 5.8, 10.0, 6.9, 6.9, 6.6, 5.3, 6.8, 4.4, 7.9, 6.9, 6.5, 9.1, 9.0, 8.5, 9.1, 7.6, 7.6, 12.7, 7.6, 7.4, 7.2, 8.3, 6.4, 6.7, 7.3, 6.7, 7.8, 7.1, 6.4, 6.0, 6.8, 7.6, 6.9, 7.3, 6.8, 6.6, 6.9, 5.1, 11.9, 6.6, 5.8, 6.4, 6.6, 6.8, 8.0, 6.5, 6.4, 6.8, 7.2, 6.7, 6.0, 6.3, 7.6, 6.5, 6.6, 7.3, 8.3, 7.8, 7.8, 6.8, 7.4, 7.9, 7.2, 6.8, 7.5, 8.0, 8.0, 6.8, 9.2, 5.3, 6.9, 8.1, 10.7, 7.0, 7.5, 5.2, 6.6, 9.1, 6.4, 5.3, 6.8, 6.6, 8.0, 6.7, 6.0, 8.1, 8.2, 7.7, 7.7, 6.9, 6.0, 7.5, 7.1, 5.9, 6.7, 9.8, 7.7, 5.3, 8.0, 6.3, 6.1, 6.6, 7.5, 7.7, 7.0, 9.0, 6.4, 7.3, 7.5, 6.0, 8.6, 7.5, 8.3, 7.6, 8.4, 9.3, 6.5, 6.9, 7.0, 6.9, 6.4, 6.3, 6.3, 6.5, 8.4, 5.6, 6.6, 6.0, 7.3, 11.6, 7.6, 8.3, 8.3, 11.8, 5.9, 7.2, 6.0, 6.4, 6.9, 6.9, 7.1, 7.4, 6.2, 6.6, 7.9, 7.5, 9.0, 6.7, 6.2, 6.7, 6.7, 8.0, 7.9, 7.7, 6.9, 6.1, 7.9, 6.4, 6.4, 5.0, 6.6, 6.9, 9.8, 7.4, 15.6, 5.0, 5.4, 6.5, 6.2, 8.2, 7.6, 9.7, 7.8, 6.1, 9.3, 6.8, 6.2, 7.4, 6.1, 6.9, 15.5, 8.3, 6.2, 8.3, 9.2, 8.3, 6.8, 8.1, 6.3, 10.0, 7.3, 7.2, 6.4, 11.9, 6.6, 7.0, 6.8, 6.2, 8.5, 5.8, 8.4, 7.4, 8.9, 7.1, 6.8, 7.3, 8.3, 7.0, 7.6, 7.5, 7.2, 6.6, 6.5, 5.6, 4.9, 6.8, 9.9, 7.2, 8.8, 5.9, 7.2, 7.1, 7.5, 6.2, 6.6, 6.3, 12.6, 8.6, 8.9, 7.9, 8.3, 6.9, 6.3, 8.6, 7.2, 8.5, 7.1, 5.8, 7.2, 7.0, 7.0, 6.2, 6.1, 6.5, 6.0, 8.3, 8.0, 7.6, 7.7, 9.2, 6.0, 5.8, 7.9, 6.9, 11.8, 8.3, 7.0, 6.3, 9.1, 5.6, 8.2, 7.9, 7.0, 7.8, 6.7, 7.5, 6.9, 6.3, 7.6, 7.8, 6.6, 9.3, 6.5, 7.0, 7.7, 6.2, 6.9, 7.7, 6.7, 5.1, 8.4, 6.5, 7.2, 7.6, 7.5, 5.8, 7.7, 6.6, 6.7, 8.0, 8.5, 8.9, 10.4, 6.6, 6.8, 6.8, 5.9, 5.8, 6.7, 6.3, 6.2, 10.0, 13.2, 7.0, 9.4, 6.8, 5.9, 6.5, 6.0, 5.6, 8.9, 7.0, 9.0, 6.8, 7.0, 6.0, 6.2, 7.8, 6.3, 7.3, 6.0, 7.6, 7.3, 6.0, 7.4, 7.9, 8.7, 7.3, 7.1, 6.9, 8.1, 6.9, 7.0, 10.3, 8.4, 6.9, 6.9, 6.6, 9.6, 8.9, 6.8, 7.0, 7.4, 6.8, 6.6, 6.6, 6.4, 8.4, 8.1, 5.8, 6.6, 8.4, 6.4, 7.1, 7.0, 10.4, 7.8, 7.2, 7.3, 7.4, 7.5, 7.5, 5.7, 9.4, 7.9, 7.6, 11.8, 8.1, 7.2, 6.8, 6.5, 7.0, 6.9, 6.6, 7.7, 6.7, 7.5, 8.8, 7.1, 6.6, 7.2, 6.7, 5.8, 6.8, 6.9, 7.5, 6.4, 7.3, 7.4, 7.6, 6.1, 6.8, 6.9, 9.0, 7.6, 6.8, 6.3, 5.4, 11.5, 6.7, 7.4, 6.9, 7.2, 6.5, 6.8, 5.6, 7.9, 8.3, 8.6, 5.9, 8.4, 7.9, 6.0, 8.4, 5.8, 7.0, 10.0, 6.1, 6.2, 9.5, 5.3, 6.1, 11.5, 7.4, 10.3, 6.9, 7.9, 8.2, 6.4, 6.1, 6.4, 6.1, 7.9, 7.0, 6.9, 6.9, 7.0, 7.2, 7.9, 8.0, 7.6, 7.1, 7.2, 7.5, 7.0, 6.0, 7.2, 7.4, 7.2, 5.9, 6.1, 6.8, 6.8, 7.8, 7.0, 6.2, 6.5, 6.9, 8.0, 6.2, 6.5, 5.7, 8.4, 5.4, 7.2, 8.1, 8.5, 6.6, 7.1, 6.7, 7.6, 7.0, 6.0, 7.7, 7.4, 7.3, 10.1, 7.2, 7.4, 10.9, 6.8, 6.6, 7.0, 7.7, 6.7, 5.9, 9.1, 8.0, 6.7, 6.9, 6.7, 6.6, 7.4, 7.3, 6.6, 6.5, 7.2, 7.6, 7.0, 7.1, 6.1, 7.4, 7.0, 7.1, 7.7, 6.8, 6.6, 7.0, 6.3, 9.8, 6.7, 7.8, 7.9, 7.5, 8.7, 7.2, 5.8, 7.6, 6.7, 8.6, 7.0, 6.5, 6.8, 7.5, 6.6, 6.6, 6.8, 6.6, 8.2, 7.0, 6.1, 8.8, 6.4, 5.7, 6.9, 8.0, 4.2, 6.2, 6.8, 5.6, 6.3, 11.9, 7.9, 6.9, 10.9, 6.6, 6.4, 6.8, 5.8, 6.4, 6.8, 7.5, 5.6, 4.9, 7.4, 6.8, 6.3, 6.8, 6.8, 7.8, 6.2, 6.5, 7.1, 7.2, 7.2, 5.5, 6.9, 6.3, 6.4, 8.2, 6.1, 5.2, 6.8, 6.9, 7.7, 7.0, 7.5, 7.2, 10.1, 7.2, 7.2, 6.8, 7.3, 7.4, 5.6, 7.8, 6.3, 6.8, 5.6, 6.0, 7.1, 6.8, 6.9, 6.8, 6.2, 6.2, 5.9, 7.0, 6.9, 6.4, 6.9, 8.3, 5.6, 7.1, 8.2, 6.0, 6.7, 7.5, 7.2, 6.8, 10.0, 6.4, 6.2, 10.1, 7.0, 7.2, 5.5, 7.3, 9.3, 5.7, 5.8, 6.7, 11.1, 6.9, 11.5, 7.1, 8.5, 6.6, 6.3, 6.6, 7.8, 6.7, 6.0, 5.7, 6.7, 7.2, 6.7, 9.1, 7.8, 6.4, 8.8, 8.1, 7.4, 6.5, 7.1, 6.5, 6.9, 6.8, 6.7, 8.3, 7.4, 6.4, 6.8, 6.1, 5.3, 7.6, 7.6, 7.0, 6.2, 7.0, 11.3, 8.2, 5.0, 6.4, 6.0, 4.9, 6.3, 8.9, 6.6, 7.0, 6.5, 7.7, 7.6, 7.2, 6.0, 6.5, 5.9, 6.4, 6.5, 9.2, 7.0, 6.7, 8.4, 6.2, 6.7, 6.6, 6.8, 7.5, 7.4, 5.5, 8.0, 6.1, 6.2, 7.2, 6.9, 7.7, 7.4, 6.2, 8.2, 6.0, 6.2, 7.4, 8.3, 6.6, 6.4, 7.2, 7.9, 7.1, 7.0, 6.8, 6.0, 7.5, 5.6, 5.7, 6.0, 6.4, 6.8, 8.2, 7.0, 6.4, 8.9, 7.1, 7.5, 6.8, 9.4, 7.5, 7.4, 6.5, 6.9, 6.6, 6.5, 8.4, 7.1, 6.8, 7.2, 7.1, 10.8, 8.7, 6.5, 7.2, 7.3, 6.4, 6.4, 8.3, 8.2, 9.0, 8.2, 6.4, 7.1, 6.2, 10.9, 8.6, 9.6, 7.3, 12.0, 6.2, 6.0, 6.4, 6.9, 7.4, 5.8, 7.1, 8.3, 5.6, 5.7, 7.9, 6.7, 6.7, 9.2, 6.1, 10.6, 8.2, 6.0, 7.3, 7.2, 6.4, 7.4, 7.9, 7.4, 6.7, 6.8, 7.0, 6.7, 9.9, 6.8, 6.4, 8.3, 6.1, 7.2, 5.0, 6.9, 7.5, 5.8, 5.3, 6.9, 5.6, 7.2, 6.9, 8.9, 6.1, 6.0, 6.9, 7.3, 7.0, 8.6, 6.0, 7.8, 6.6, 9.8, 7.4, 6.3, 8.0, 6.4, 7.4, 5.2, 11.6, 8.9, 7.0, 6.9, 7.2, 7.2, 6.4, 6.4, 9.3, 6.5, 6.3, 6.4, 6.2, 10.4, 6.7, 5.6, 5.5, 10.6, 8.8, 8.9, 6.9, 7.4, 7.6, 6.6, 13.0, 7.2, 6.0, 9.1, 5.8, 6.2, 6.8, 7.5, 7.0, 7.0, 6.4, 6.5, 6.0, 5.1, 6.7, 6.9, 7.4, 7.9, 11.1, 7.4, 7.3, 7.8, 8.5, 8.1, 6.6, 6.4, 7.5, 6.7, 6.4, 6.1, 7.3, 7.0, 6.0, 7.7, 7.4, 6.3, 6.0, 6.6, 8.2, 7.1, 7.1, 7.6, 6.8, 7.2, 6.4, 7.0, 7.6, 5.7, 5.1, 6.7, 7.4, 5.7, 6.2, 7.7, 6.7, 6.6, 6.4, 6.8, 5.4, 7.1, 8.0, 6.0, 8.0, 11.0, 12.4, 6.6, 7.3, 6.3, 5.7, 6.6, 8.9, 7.0, 6.1, 6.8, 6.6, 6.3, 12.2, 6.9, 6.4, 6.6, 7.9, 4.9, 7.6, 6.6, 6.4, 7.5, 9.6, 7.2, 7.2, 8.0, 5.5, 6.3, 6.8, 6.9, 6.6, 6.3, 7.4, 7.6, 7.6, 5.6, 7.0, 6.9, 7.2, 5.8, 6.9, 6.8, 6.9, 6.7, 6.8, 6.5, 6.4, 6.8, 6.0, 7.3, 7.5, 6.9, 9.0, 9.0, 10.2, 6.6, 6.8, 7.8, 13.7, 7.1, 7.0, 8.0, 10.4, 7.1, 8.1, 7.7, 6.1, 8.3, 7.3, 8.2, 9.5, 7.4, 6.5, 8.3, 5.7, 6.5, 6.4, 7.8, 7.6, 6.8, 6.7, 7.0, 7.1, 6.7]}], \"layout\": {\"legend\": {\"orientation\": \"h\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"fixed.acidity\"}}, \"yaxis\": {\"title\": {\"text\": \"Share\"}}}}, \"fixed.acidity_drift\": {\"title\": \"\", \"size\": 2, \"text\": \"\", \"type\": \"big_graph\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"Current\", \"type\": \"scatter\", \"x\": [443, 319, 703, 526, 76, 963, 1260, 532, 1561, 517, 506, 1557, 271, 1058, 1381, 1039, 542, 107, 161, 1301, 519, 1021, 1213, 223, 1286, 1426, 1234, 587, 1183, 182, 567, 1492, 724, 1262, 1509, 657, 1137, 913, 1445, 342, 781, 14, 971, 1072, 1254, 678, 1175, 1481, 1370, 1443, 18, 1151, 1380, 434, 1430, 554, 53, 535, 1050, 427, 259, 124, 961, 1488, 1563, 720, 1291, 1061, 425, 846, 1147, 204, 1317, 618, 1088, 927, 1196, 582, 1194, 360, 1449, 862, 1135, 1453, 1442, 1017, 268, 685, 317, 775, 1086, 942, 1052, 801, 1362, 219, 379, 649, 1195, 479, 1542, 609, 930, 1105, 34, 708, 686, 1132, 693, 733, 1562, 1190, 473, 737, 672, 969, 858, 5, 1556, 298, 80, 940, 361, 1154, 1545, 1622, 784, 19, 1522, 996, 54, 1415, 1564, 1593, 1236, 9, 353, 1222, 113, 1010, 1263, 877, 82, 381, 818, 1210, 1409, 66, 254, 817, 92, 1340, 122, 1357, 511, 1546, 692, 17, 1248, 414, 52, 1296, 191, 175, 233, 900, 785, 935, 1298, 156, 487, 159, 481, 1255, 1597, 253, 1491, 841, 187, 914, 979, 249, 1114, 1366, 814, 716, 465, 875, 1242, 670, 299, 593, 436, 728, 141, 229, 1057, 912, 994, 648, 799, 1164, 1073, 4, 516, 152, 1267, 1237, 752, 1150, 825, 402, 1277, 575, 1437, 838, 390, 1505, 1093, 1026, 1611, 31, 674, 866, 1328, 616, 861, 897, 148, 303, 1451, 602, 1125, 1614, 1047, 1462, 1148, 574, 899, 1327, 89, 530, 408, 1192, 177, 520, 993, 326, 992, 717, 895, 1421, 984, 240, 85, 557, 278, 938, 1425, 958, 1232, 1149, 171, 1220, 227, 891, 489, 1391, 1184, 1032, 393, 726, 192, 260, 880, 1592, 1537, 491, 759, 1473, 959, 1454, 1015, 965, 1393, 1489, 1256, 133, 202, 1036, 438, 483, 666, 461, 142, 1181, 1580, 308, 538, 170, 310, 743, 1101, 1179, 315, 22, 1529, 45, 879, 1110, 61, 522, 1397, 829, 576, 1193, 1202, 1549, 1375, 27, 527, 1186, 1273, 828, 539, 1049, 1014, 412, 1091, 1497, 1595, 347, 2, 844, 1490, 632, 211, 1582, 918, 1217, 1115, 744, 459, 579, 771, 96, 178, 108, 1516, 805, 1240, 440, 619, 1, 1315, 1239, 1347, 512, 48, 722, 1517, 1621, 446, 565, 568, 796, 231, 1070, 1063, 215, 513, 704, 354, 55, 881, 746, 641, 762, 279, 1145, 1468, 224, 302, 911, 218, 1079, 874, 1266, 792, 1136, 372, 295, 364, 580, 1615, 688, 1560, 333, 467, 968, 399, 760, 740, 953, 1520, 1446, 1214, 615, 524, 546, 1495, 1324, 452, 1515, 432, 863, 442, 847, 276, 456, 184, 1116, 1200, 458, 1508, 1087, 1478, 376, 1479, 563, 1146, 1507, 42, 944, 823, 1228, 656, 1227, 198, 309, 761, 1158, 549, 47, 1209, 529, 933, 220, 1624, 1591, 651, 536, 362, 1314, 420, 564, 475, 482, 140, 679, 1436, 1334, 77, 39, 570, 962, 808, 981, 322, 1471, 251, 695, 1128, 813, 757, 820, 853, 831, 1246, 58, 553, 597, 241, 1288, 330, 1005, 789, 1617, 56, 1126, 411, 548, 501, 1211, 642, 558, 1605, 745, 878, 1056, 667, 435, 29, 270, 35, 1157, 422, 1310, 114, 1524, 1422, 689, 1018, 1168, 1360, 985, 1191, 793, 1363, 1504, 581, 644, 1199, 621, 1612, 494, 665, 431, 1095, 638, 1042, 1404, 1030, 40, 1121, 75, 1588, 1417, 247, 713, 1590, 186, 646, 312, 8, 1551, 1302, 1044, 768, 884, 1585, 1618, 826, 445, 712, 464, 1308, 195, 655, 1487, 1389, 1356, 243, 401, 572, 1074, 810, 477, 1460, 1544, 1182, 285, 471, 936, 1238, 578, 1034, 1535, 1513, 426, 1311, 1001, 986, 1038, 980, 1064, 620, 982, 1565, 194, 474, 1428, 569, 1165, 49, 1333, 1401, 1307, 1076, 991, 1566, 44, 1342, 245, 943, 300, 583, 1013, 269, 1548, 313, 776, 283, 1444, 540, 406, 338, 466, 363, 1002, 320, 1264, 1089, 70, 1027, 500, 10, 907, 505, 1295, 864, 1432, 64, 1122, 1543, 416, 898, 654, 205, 328, 486, 999, 1377, 970, 528, 1558, 418, 1379, 1299, 1378, 590, 1247, 1174, 472, 1323, 131, 15, 439, 1528, 476, 725, 1203, 1109, 1003, 1365, 103, 1279, 60, 871, 78, 391, 165, 1335, 1410, 1129, 960, 349, 185, 1464, 371, 117, 1398, 252, 507, 1613, 311, 1419, 395, 987, 358, 263, 359, 1559, 1305, 1506, 1376, 1055, 634, 1552, 16, 51, 1258, 493, 601, 997, 351, 711, 1604, 1486, 1339, 794, 97, 1475, 1423, 196, 748, 183, 1433, 1579, 613, 1536, 989, 682, 533, 610, 687, 892, 81, 896, 397, 267, 589, 386, 795, 1416, 132, 265, 1609, 1461, 883, 88, 840, 988, 1354, 676, 916, 629, 1269, 924, 294, 261, 1541, 1081, 1348, 1576, 405, 1616, 356, 608, 1097, 239, 1249, 1099, 1403, 119, 1096, 977, 751, 374, 453, 110, 1336, 1390, 905, 1287, 503, 1031, 1331, 1224, 729, 410, 1540, 367, 1607, 384, 200, 65, 1358, 1394, 1023, 272, 1418, 955, 677, 238, 1133, 974, 541, 478, 1257, 1265, 1465, 1589, 1326, 188, 1083, 681, 906, 1092, 1276, 316, 214, 1078, 1502, 1084, 660, 1142, 531, 255, 30, 662, 1253, 230, 157, 1343, 385, 1169, 380, 1188, 721, 264, 787, 101, 13, 1274, 68, 1024, 1170, 1156, 71, 1577, 566, 1372, 1245, 798, 523, 626, 495, 937, 155, 887, 758, 921, 790, 1349, 1230, 366, 1531, 983, 839, 228, 417, 206, 742, 79, 190, 492, 948, 145, 923, 318, 824, 1374, 1124, 1463, 596, 457, 144, 1359, 1292, 1045, 764, 842, 1140, 1408, 995, 904, 592, 1458, 135, 83, 1062, 154, 1440, 1283, 773, 1414, 127, 1177, 1318, 1413, 403, 150, 346, 413, 1303, 1523, 1619, 394, 1261, 1054, 208, 496, 352, 95, 625, 571, 37, 485, 143, 946, 158, 552, 1527, 1029, 518, 1180, 1218, 236, 1100, 222, 1431, 345, 1459, 120, 661, 588, 1623, 1493, 62, 1429, 811, 193, 235, 181, 1320, 389, 1103, 521, 669, 332, 258, 1369, 1538, 957, 382, 1382, 1567, 331, 934, 614, 262, 893, 6, 266, 769, 38, 901, 1573, 1578, 545, 118, 783, 652, 1025, 706, 105, 1189, 484, 1569, 630, 683, 20, 870, 242, 50, 162, 915, 966, 441, 867, 731, 1102, 1000, 1268, 1223, 822, 301, 723, 172], \"y\": [6.4, 7.3, 7.2, 6.8, 6.8, 6.4, 7.5, 7.9, 5.6, 7.4, 7.3, 6.6, 6.5, 5.8, 10.0, 6.9, 6.9, 6.6, 5.3, 6.8, 4.4, 7.9, 6.9, 6.5, 9.1, 9.0, 8.5, 9.1, 7.6, 7.6, 12.7, 7.6, 7.4, 7.2, 8.3, 6.4, 6.7, 7.3, 6.7, 7.8, 7.1, 6.4, 6.0, 6.8, 7.6, 6.9, 7.3, 6.8, 6.6, 6.9, 5.1, 11.9, 6.6, 5.8, 6.4, 6.6, 6.8, 8.0, 6.5, 6.4, 6.8, 7.2, 6.7, 6.0, 6.3, 7.6, 6.5, 6.6, 7.3, 8.3, 7.8, 7.8, 6.8, 7.4, 7.9, 7.2, 6.8, 7.5, 8.0, 8.0, 6.8, 9.2, 5.3, 6.9, 8.1, 10.7, 7.0, 7.5, 5.2, 6.6, 9.1, 6.4, 5.3, 6.8, 6.6, 8.0, 6.7, 6.0, 8.1, 8.2, 7.7, 7.7, 6.9, 6.0, 7.5, 7.1, 5.9, 6.7, 9.8, 7.7, 5.3, 8.0, 6.3, 6.1, 6.6, 7.5, 7.7, 7.0, 9.0, 6.4, 7.3, 7.5, 6.0, 8.6, 7.5, 8.3, 7.6, 8.4, 9.3, 6.5, 6.9, 7.0, 6.9, 6.4, 6.3, 6.3, 6.5, 8.4, 5.6, 6.6, 6.0, 7.3, 11.6, 7.6, 8.3, 8.3, 11.8, 5.9, 7.2, 6.0, 6.4, 6.9, 6.9, 7.1, 7.4, 6.2, 6.6, 7.9, 7.5, 9.0, 6.7, 6.2, 6.7, 6.7, 8.0, 7.9, 7.7, 6.9, 6.1, 7.9, 6.4, 6.4, 5.0, 6.6, 6.9, 9.8, 7.4, 15.6, 5.0, 5.4, 6.5, 6.2, 8.2, 7.6, 9.7, 7.8, 6.1, 9.3, 6.8, 6.2, 7.4, 6.1, 6.9, 15.5, 8.3, 6.2, 8.3, 9.2, 8.3, 6.8, 8.1, 6.3, 10.0, 7.3, 7.2, 6.4, 11.9, 6.6, 7.0, 6.8, 6.2, 8.5, 5.8, 8.4, 7.4, 8.9, 7.1, 6.8, 7.3, 8.3, 7.0, 7.6, 7.5, 7.2, 6.6, 6.5, 5.6, 4.9, 6.8, 9.9, 7.2, 8.8, 5.9, 7.2, 7.1, 7.5, 6.2, 6.6, 6.3, 12.6, 8.6, 8.9, 7.9, 8.3, 6.9, 6.3, 8.6, 7.2, 8.5, 7.1, 5.8, 7.2, 7.0, 7.0, 6.2, 6.1, 6.5, 6.0, 8.3, 8.0, 7.6, 7.7, 9.2, 6.0, 5.8, 7.9, 6.9, 11.8, 8.3, 7.0, 6.3, 9.1, 5.6, 8.2, 7.9, 7.0, 7.8, 6.7, 7.5, 6.9, 6.3, 7.6, 7.8, 6.6, 9.3, 6.5, 7.0, 7.7, 6.2, 6.9, 7.7, 6.7, 5.1, 8.4, 6.5, 7.2, 7.6, 7.5, 5.8, 7.7, 6.6, 6.7, 8.0, 8.5, 8.9, 10.4, 6.6, 6.8, 6.8, 5.9, 5.8, 6.7, 6.3, 6.2, 10.0, 13.2, 7.0, 9.4, 6.8, 5.9, 6.5, 6.0, 5.6, 8.9, 7.0, 9.0, 6.8, 7.0, 6.0, 6.2, 7.8, 6.3, 7.3, 6.0, 7.6, 7.3, 6.0, 7.4, 7.9, 8.7, 7.3, 7.1, 6.9, 8.1, 6.9, 7.0, 10.3, 8.4, 6.9, 6.9, 6.6, 9.6, 8.9, 6.8, 7.0, 7.4, 6.8, 6.6, 6.6, 6.4, 8.4, 8.1, 5.8, 6.6, 8.4, 6.4, 7.1, 7.0, 10.4, 7.8, 7.2, 7.3, 7.4, 7.5, 7.5, 5.7, 9.4, 7.9, 7.6, 11.8, 8.1, 7.2, 6.8, 6.5, 7.0, 6.9, 6.6, 7.7, 6.7, 7.5, 8.8, 7.1, 6.6, 7.2, 6.7, 5.8, 6.8, 6.9, 7.5, 6.4, 7.3, 7.4, 7.6, 6.1, 6.8, 6.9, 9.0, 7.6, 6.8, 6.3, 5.4, 11.5, 6.7, 7.4, 6.9, 7.2, 6.5, 6.8, 5.6, 7.9, 8.3, 8.6, 5.9, 8.4, 7.9, 6.0, 8.4, 5.8, 7.0, 10.0, 6.1, 6.2, 9.5, 5.3, 6.1, 11.5, 7.4, 10.3, 6.9, 7.9, 8.2, 6.4, 6.1, 6.4, 6.1, 7.9, 7.0, 6.9, 6.9, 7.0, 7.2, 7.9, 8.0, 7.6, 7.1, 7.2, 7.5, 7.0, 6.0, 7.2, 7.4, 7.2, 5.9, 6.1, 6.8, 6.8, 7.8, 7.0, 6.2, 6.5, 6.9, 8.0, 6.2, 6.5, 5.7, 8.4, 5.4, 7.2, 8.1, 8.5, 6.6, 7.1, 6.7, 7.6, 7.0, 6.0, 7.7, 7.4, 7.3, 10.1, 7.2, 7.4, 10.9, 6.8, 6.6, 7.0, 7.7, 6.7, 5.9, 9.1, 8.0, 6.7, 6.9, 6.7, 6.6, 7.4, 7.3, 6.6, 6.5, 7.2, 7.6, 7.0, 7.1, 6.1, 7.4, 7.0, 7.1, 7.7, 6.8, 6.6, 7.0, 6.3, 9.8, 6.7, 7.8, 7.9, 7.5, 8.7, 7.2, 5.8, 7.6, 6.7, 8.6, 7.0, 6.5, 6.8, 7.5, 6.6, 6.6, 6.8, 6.6, 8.2, 7.0, 6.1, 8.8, 6.4, 5.7, 6.9, 8.0, 4.2, 6.2, 6.8, 5.6, 6.3, 11.9, 7.9, 6.9, 10.9, 6.6, 6.4, 6.8, 5.8, 6.4, 6.8, 7.5, 5.6, 4.9, 7.4, 6.8, 6.3, 6.8, 6.8, 7.8, 6.2, 6.5, 7.1, 7.2, 7.2, 5.5, 6.9, 6.3, 6.4, 8.2, 6.1, 5.2, 6.8, 6.9, 7.7, 7.0, 7.5, 7.2, 10.1, 7.2, 7.2, 6.8, 7.3, 7.4, 5.6, 7.8, 6.3, 6.8, 5.6, 6.0, 7.1, 6.8, 6.9, 6.8, 6.2, 6.2, 5.9, 7.0, 6.9, 6.4, 6.9, 8.3, 5.6, 7.1, 8.2, 6.0, 6.7, 7.5, 7.2, 6.8, 10.0, 6.4, 6.2, 10.1, 7.0, 7.2, 5.5, 7.3, 9.3, 5.7, 5.8, 6.7, 11.1, 6.9, 11.5, 7.1, 8.5, 6.6, 6.3, 6.6, 7.8, 6.7, 6.0, 5.7, 6.7, 7.2, 6.7, 9.1, 7.8, 6.4, 8.8, 8.1, 7.4, 6.5, 7.1, 6.5, 6.9, 6.8, 6.7, 8.3, 7.4, 6.4, 6.8, 6.1, 5.3, 7.6, 7.6, 7.0, 6.2, 7.0, 11.3, 8.2, 5.0, 6.4, 6.0, 4.9, 6.3, 8.9, 6.6, 7.0, 6.5, 7.7, 7.6, 7.2, 6.0, 6.5, 5.9, 6.4, 6.5, 9.2, 7.0, 6.7, 8.4, 6.2, 6.7, 6.6, 6.8, 7.5, 7.4, 5.5, 8.0, 6.1, 6.2, 7.2, 6.9, 7.7, 7.4, 6.2, 8.2, 6.0, 6.2, 7.4, 8.3, 6.6, 6.4, 7.2, 7.9, 7.1, 7.0, 6.8, 6.0, 7.5, 5.6, 5.7, 6.0, 6.4, 6.8, 8.2, 7.0, 6.4, 8.9, 7.1, 7.5, 6.8, 9.4, 7.5, 7.4, 6.5, 6.9, 6.6, 6.5, 8.4, 7.1, 6.8, 7.2, 7.1, 10.8, 8.7, 6.5, 7.2, 7.3, 6.4, 6.4, 8.3, 8.2, 9.0, 8.2, 6.4, 7.1, 6.2, 10.9, 8.6, 9.6, 7.3, 12.0, 6.2, 6.0, 6.4, 6.9, 7.4, 5.8, 7.1, 8.3, 5.6, 5.7, 7.9, 6.7, 6.7, 9.2, 6.1, 10.6, 8.2, 6.0, 7.3, 7.2, 6.4, 7.4, 7.9, 7.4, 6.7, 6.8, 7.0, 6.7, 9.9, 6.8, 6.4, 8.3, 6.1, 7.2, 5.0, 6.9, 7.5, 5.8, 5.3, 6.9, 5.6, 7.2, 6.9, 8.9, 6.1, 6.0, 6.9, 7.3, 7.0, 8.6, 6.0, 7.8, 6.6, 9.8, 7.4, 6.3, 8.0, 6.4, 7.4, 5.2, 11.6, 8.9, 7.0, 6.9, 7.2, 7.2, 6.4, 6.4, 9.3, 6.5, 6.3, 6.4, 6.2, 10.4, 6.7, 5.6, 5.5, 10.6, 8.8, 8.9, 6.9, 7.4, 7.6, 6.6, 13.0, 7.2, 6.0, 9.1, 5.8, 6.2, 6.8, 7.5, 7.0, 7.0, 6.4, 6.5, 6.0, 5.1, 6.7, 6.9, 7.4, 7.9, 11.1, 7.4, 7.3, 7.8, 8.5, 8.1, 6.6, 6.4, 7.5, 6.7, 6.4, 6.1, 7.3, 7.0, 6.0, 7.7, 7.4, 6.3, 6.0, 6.6, 8.2, 7.1, 7.1, 7.6, 6.8, 7.2, 6.4, 7.0, 7.6, 5.7, 5.1, 6.7, 7.4, 5.7, 6.2, 7.7, 6.7, 6.6, 6.4, 6.8, 5.4, 7.1, 8.0, 6.0, 8.0, 11.0, 12.4, 6.6, 7.3, 6.3, 5.7, 6.6, 8.9, 7.0, 6.1, 6.8, 6.6, 6.3, 12.2, 6.9, 6.4, 6.6, 7.9, 4.9, 7.6, 6.6, 6.4, 7.5, 9.6, 7.2, 7.2, 8.0, 5.5, 6.3, 6.8, 6.9, 6.6, 6.3, 7.4, 7.6, 7.6, 5.6, 7.0, 6.9, 7.2, 5.8, 6.9, 6.8, 6.9, 6.7, 6.8, 6.5, 6.4, 6.8, 6.0, 7.3, 7.5, 6.9, 9.0, 9.0, 10.2, 6.6, 6.8, 7.8, 13.7, 7.1, 7.0, 8.0, 10.4, 7.1, 8.1, 7.7, 6.1, 8.3, 7.3, 8.2, 9.5, 7.4, 6.5, 8.3, 5.7, 6.5, 6.4, 7.8, 7.6, 6.8, 6.7, 7.0, 7.1, 6.7]}, {\"marker\": {\"color\": \"white\", \"opacity\": 0.005, \"size\": 0.01}, \"mode\": \"markers\", \"name\": \"Current\", \"showlegend\": false, \"type\": \"scatter\", \"x\": [2, 2], \"y\": [3.2147928248289634, 11.185307175171038]}], \"layout\": {\"legend\": {\"orientation\": \"h\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"shapes\": [{\"fillcolor\": \"LightGreen\", \"layer\": \"below\", \"line\": {\"width\": 0}, \"opacity\": 0.5, \"type\": \"rect\", \"x0\": 0, \"x1\": 1, \"xref\": \"paper\", \"y0\": 3.2147928248289634, \"y1\": 11.185307175171038, \"yref\": \"y\"}, {\"line\": {\"color\": \"Green\", \"width\": 3}, \"name\": \"Reference\", \"type\": \"line\", \"x0\": 0, \"x1\": 1, \"xref\": \"paper\", \"y0\": 7.200050000000001, \"y1\": 7.200050000000001, \"yref\": \"y\"}], \"showlegend\": true, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"Index\"}}, \"yaxis\": {\"title\": {\"text\": \"fixed.acidity\"}}}}}, \"volatile.acidity_distr\": {\"data\": [{\"histnorm\": \"probability\", \"marker\": {\"color\": \"#4d4d4d\"}, \"name\": \"Reference\", \"nbinsx\": 10, \"opacity\": 0.6, \"type\": \"histogram\", \"x\": [0.24, 0.19, 0.33, 0.1, 0.33, 0.36, 0.37, 0.19, 0.23, 0.27, 0.19, 0.46, 0.57, 0.12, 0.32, 0.26, 0.27, 0.25, 0.6, 0.37, 0.46, 0.18, 0.685, 0.335, 0.66, 0.2, 0.58, 0.21, 0.26, 0.4, 0.4, 0.41, 0.21, 0.25, 0.3, 0.24, 0.6, 0.3, 0.43, 0.145, 0.66, 0.21, 0.3, 0.27, 0.48, 0.32, 0.52, 0.37, 0.53, 0.24, 1.13, 0.26, 1.33, 0.17, 0.3, 0.24, 0.2, 0.23, 0.34, 0.31, 0.44, 0.26, 0.2, 0.08, 0.23, 1.115, 0.22, 0.19, 0.685, 0.76, 0.24, 0.15, 0.22, 0.34, 0.47, 0.27, 0.43, 0.69, 0.705, 0.15, 0.35, 0.3, 0.805, 0.19, 0.34, 0.28, 0.19, 0.23, 0.27, 0.27, 0.25, 0.44, 0.21, 0.28, 0.51, 0.4, 0.16, 0.44, 0.2, 0.42, 0.65, 0.25, 0.22, 0.38, 0.14, 0.28, 0.1, 0.38, 0.6, 0.365, 0.28, 0.21, 0.755, 0.31, 0.26, 0.165, 0.21, 0.17, 0.31, 0.44, 0.32, 0.37, 0.63, 0.21, 0.305, 0.3, 0.26, 0.37, 0.5, 0.22, 0.35, 0.24, 0.635, 0.36, 0.21, 0.27, 0.47, 0.22, 0.28, 0.18, 0.27, 0.4, 0.15, 0.18, 0.51, 0.45, 0.33, 0.4, 0.31, 0.39, 0.17, 0.38, 0.41, 0.6, 0.25, 0.7, 0.16, 0.15, 0.21, 0.66, 0.35, 0.22, 0.47, 0.64, 0.24, 0.29, 0.25, 0.54, 0.18, 0.14, 0.25, 0.17, 0.44, 0.27, 0.24, 0.24, 0.37, 0.17, 0.38, 0.41, 0.11, 0.22, 0.855, 0.27, 0.29, 0.33, 0.31, 0.15, 0.31, 0.25, 0.28, 0.28, 0.48, 0.18, 0.34, 0.77, 0.13, 0.31, 0.23, 0.36, 0.18, 0.24, 0.28, 0.26, 0.27, 0.48, 0.27, 0.18, 0.53, 0.51, 0.51, 0.3, 0.3, 0.54, 0.2, 0.2, 0.66, 0.17, 0.455, 0.52, 0.22, 0.39, 0.34, 0.38, 0.25, 0.29, 0.43, 0.37, 0.855, 0.42, 0.46, 0.18, 0.15, 0.23, 0.26, 0.24, 0.4, 0.6, 0.41, 0.23, 0.23, 0.2, 0.46, 0.28, 0.13, 0.15, 0.5, 0.23, 0.3, 0.27, 0.23, 0.31, 0.22, 0.2, 0.28, 0.28, 0.34, 0.22, 0.28, 0.21, 0.31, 0.27, 0.63, 0.125, 0.51, 0.39, 0.38, 0.21, 0.32, 0.23, 0.21, 0.32, 0.27, 0.44, 0.57, 0.41, 0.32, 0.44, 0.35, 0.43, 0.2, 0.34, 0.41, 0.15, 0.23, 0.15, 0.41, 0.69, 0.53, 0.17, 0.45, 0.39, 0.14, 0.43, 0.635, 0.34, 0.27, 0.2, 0.3, 0.5, 0.32, 0.235, 0.62, 0.39, 0.18, 0.25, 0.28, 1.025, 0.15, 0.28, 0.21, 0.66, 0.55, 0.33, 0.55, 0.59, 0.28, 0.28, 0.57, 0.23, 0.41, 0.26, 0.19, 0.16, 0.32, 0.35, 0.28, 0.62, 0.32, 0.27, 0.34, 0.24, 0.29, 0.19, 0.44, 0.36, 0.26, 0.765, 0.23, 0.25, 0.28, 0.775, 0.28, 0.17, 0.27, 0.26, 0.23, 0.21, 0.2, 0.18, 0.44, 0.935, 0.2, 0.21, 0.29, 0.21, 0.29, 0.27, 0.25, 0.17, 0.26, 0.17, 0.28, 0.34, 0.24, 0.15, 0.14, 0.32, 0.36, 0.76, 0.32, 0.27, 0.69, 0.28, 0.28, 0.21, 0.15, 0.27, 0.19, 0.17, 0.29, 0.26, 0.27, 0.36, 0.29, 0.23, 0.21, 0.44, 0.745, 0.27, 0.33, 0.45, 0.26, 0.25, 0.29, 0.29, 0.22, 0.2, 0.21, 0.19, 0.59, 0.38, 0.28, 0.68, 0.47, 0.31, 0.19, 0.4, 0.56, 0.21, 0.43, 0.2, 0.21, 0.2, 0.3, 0.87, 0.105, 0.27, 0.42, 0.21, 0.19, 0.14, 0.45, 0.23, 0.68, 0.46, 0.34, 0.29, 0.3, 0.43, 0.4, 0.53, 0.3, 0.31, 0.17, 0.655, 0.67, 0.28, 0.17, 0.34, 0.25, 0.18, 0.3, 0.25, 0.66, 0.23, 0.39, 0.29, 0.32, 0.34, 0.25, 0.24, 0.11, 0.28, 0.36, 0.29, 0.35, 0.2, 0.29, 0.56, 0.2, 0.23, 0.18, 0.59, 0.37, 0.44, 0.37, 0.28, 0.39, 0.48, 0.29, 0.28, 0.38, 0.6, 0.3, 0.58, 0.27, 0.18, 0.34, 0.32, 0.2, 0.58, 0.25, 1.33, 0.28, 0.43, 0.2, 0.16, 0.36, 0.33, 0.26, 0.21, 0.29, 0.14, 0.93, 0.34, 0.25, 0.56, 0.36, 0.38, 0.29, 0.22, 0.24, 0.395, 0.18, 0.275, 0.16, 0.27, 0.32, 0.17, 0.32, 0.23, 0.25, 0.3, 0.615, 0.27, 0.22, 0.755, 0.22, 0.41, 0.29, 0.21, 0.65, 0.24, 0.27, 0.3, 0.3, 0.29, 0.25, 0.27, 0.26, 0.255, 0.33, 0.17, 0.19, 0.35, 0.19, 0.2, 0.5, 0.5, 0.66, 0.25, 0.18, 0.35, 0.28, 0.25, 0.18, 0.73, 0.53, 0.26, 0.28, 0.18, 0.31, 1.0, 0.58, 0.25, 0.16, 0.21, 0.16, 0.18, 0.35, 0.18, 0.27, 0.2, 0.36, 0.3, 0.18, 0.48, 0.4, 0.26, 0.54, 0.29, 0.39, 0.63, 0.26, 0.19, 0.22, 0.21, 0.3, 0.15, 0.31, 0.25, 0.31, 0.28, 0.275, 0.32, 0.42, 0.19, 0.24, 0.71, 0.64, 0.46, 0.475, 0.22, 0.61, 0.21, 0.83, 0.22, 0.43, 0.49, 0.42, 0.69, 0.25, 0.58, 0.34, 0.19, 0.34, 0.23, 0.54, 0.4, 0.31, 0.26, 0.28, 0.15, 0.25, 0.44, 0.28, 0.3, 0.35, 0.38, 0.21, 0.31, 0.22, 0.45, 0.27, 0.76, 0.24, 0.58, 0.36, 0.62, 0.62, 0.58, 0.28, 0.695, 0.25, 0.25, 0.25, 0.34, 0.35, 0.41, 0.25, 0.12, 0.23, 0.17, 0.3, 0.44, 0.295, 0.33, 0.28, 0.16, 0.36, 0.25, 0.36, 0.37, 0.23, 0.46, 0.26, 0.42, 0.18, 0.22, 0.31, 0.15, 0.23, 0.26, 0.34, 0.2, 0.16, 0.45, 0.29, 0.45, 0.34, 0.32, 0.35, 0.24, 0.33, 0.25, 0.27, 0.19, 0.37, 0.4, 0.16, 0.24, 0.26, 0.46, 0.31, 0.52, 0.76, 0.68, 0.3, 0.88, 0.31, 0.29, 0.31, 0.28, 0.21, 0.835, 0.25, 0.345, 0.23, 0.2, 0.42, 0.21, 0.23, 0.29, 0.62, 0.23, 0.24, 0.12, 0.25, 0.32, 0.28, 0.315, 0.16, 0.18, 0.37, 0.17, 0.6, 0.17, 0.15, 0.39, 0.45, 0.4, 0.25, 0.35, 0.27, 0.14, 0.67, 0.41, 0.33, 0.19, 0.26, 0.4, 0.66, 0.3, 0.18, 0.23, 0.4, 0.26, 0.115, 0.3, 0.25, 0.28, 0.2, 0.22, 0.21, 0.2, 0.36, 0.19, 0.18, 0.22, 0.26, 0.2, 0.32, 0.725, 0.23, 0.36, 0.28, 0.32, 0.67, 0.23, 0.37, 0.24, 0.32, 0.41, 0.23, 0.58, 0.2, 0.32, 0.42, 0.18, 0.305, 0.2, 0.16, 0.21, 0.3, 0.18, 0.54, 0.31, 0.58, 0.31, 0.23, 0.34, 0.23, 0.26, 0.29, 0.24, 0.3, 0.19, 0.32, 0.26, 0.2, 0.38, 0.35, 0.37, 0.35, 0.24, 0.415, 0.52, 0.5, 0.22, 0.53, 0.2, 0.29, 0.31, 0.64, 0.34, 0.13, 0.63, 0.2, 0.37, 0.26, 0.19, 0.37, 0.4, 0.66, 0.36, 0.39, 0.29, 0.28, 0.21, 0.29, 0.23, 0.16, 0.545, 0.18, 0.38, 0.34, 0.18, 0.265, 0.32, 0.24, 0.26, 0.26, 0.18, 0.28, 0.2, 0.29, 0.38, 0.14, 0.46, 0.28, 0.14, 0.29, 0.44, 0.49, 0.18, 0.43, 0.23, 0.17, 0.65, 0.33, 0.18, 0.54, 0.43, 0.33, 0.695, 0.29, 0.28, 0.17, 0.3, 0.58, 0.22, 0.34, 0.41, 0.915, 0.42, 0.3, 0.18, 0.23, 0.16, 0.27, 0.82, 0.28, 0.2, 0.16, 0.2, 0.36, 0.2, 0.23, 0.17, 0.14, 0.615, 0.24, 0.34, 0.26, 0.39, 0.35, 0.27, 0.26, 0.36, 0.39, 0.32, 0.19, 0.18, 0.37, 0.51, 0.17, 0.63, 0.64, 0.27, 0.53, 0.26, 0.1, 0.39, 0.29, 0.49, 0.32, 0.32, 0.27, 0.23, 0.26, 0.44, 0.47, 0.24, 0.28, 0.34, 0.46, 0.59, 0.32, 0.47, 0.42, 0.16, 0.13, 0.24, 0.24, 0.25, 0.3, 0.34, 0.22, 0.96, 0.13, 0.41, 0.21, 0.32, 0.31, 0.19, 0.29, 0.43, 0.36, 0.34, 0.825, 0.31, 0.25, 0.3, 0.125, 0.29, 0.575, 0.37, 0.28, 0.755, 0.19, 0.25, 0.28, 0.31, 0.55, 0.45, 0.39, 0.24, 0.12, 0.32, 0.63, 0.26, 0.37, 0.5, 0.59, 0.28, 0.42, 0.37, 0.22, 0.34, 0.19, 0.24, 0.17, 0.2, 0.775, 0.23, 0.19, 0.36, 0.31, 0.24, 0.18, 0.32, 0.34, 0.23, 0.35, 0.61, 0.13, 0.38, 0.67, 0.3, 0.24, 0.46, 0.62, 0.24, 0.31, 0.52, 0.4, 0.18, 0.5, 0.19]}, {\"histnorm\": \"probability\", \"marker\": {\"color\": \"#ed0400\"}, \"name\": \"Current\", \"nbinsx\": 10, \"opacity\": 0.6, \"type\": \"histogram\", \"x\": [0.37, 0.365, 0.23, 0.21, 0.32, 0.62, 0.27, 0.58, 0.18, 0.21, 0.24, 0.3, 0.2, 0.3, 0.48, 0.25, 0.29, 0.27, 0.32, 0.28, 0.32, 0.2, 0.44, 0.43, 0.765, 0.785, 0.25, 0.22, 0.37, 0.2, 0.6, 0.3, 0.19, 0.19, 0.2, 0.31, 0.26, 0.25, 0.29, 0.25, 0.29, 0.22, 0.24, 0.21, 0.39, 0.34, 0.41, 0.31, 0.34, 0.22, 0.26, 0.38, 0.35, 0.3, 0.45, 0.19, 0.28, 0.25, 0.13, 0.23, 0.475, 0.605, 0.33, 0.24, 0.34, 0.52, 0.41, 0.22, 0.29, 0.26, 0.57, 0.3, 0.6, 0.29, 0.26, 0.41, 0.22, 0.41, 0.42, 0.57, 0.28, 0.28, 0.21, 0.26, 0.17, 0.22, 0.2, 0.27, 0.34, 0.21, 0.76, 0.42, 0.3, 0.3, 0.22, 0.25, 0.26, 0.3, 0.73, 0.6, 0.42, 0.28, 0.18, 0.54, 0.14, 0.26, 0.19, 0.28, 0.98, 0.34, 0.275, 0.29, 0.2, 0.28, 0.18, 0.52, 0.26, 0.12, 0.53, 0.15, 0.21, 0.31, 0.36, 0.485, 0.58, 0.24, 0.22, 0.31, 0.36, 0.33, 0.34, 0.25, 0.19, 0.43, 0.3, 0.2, 0.51, 0.24, 0.25, 0.31, 0.4, 0.4, 0.475, 0.25, 0.54, 0.6, 0.26, 0.61, 0.26, 0.28, 0.17, 0.51, 0.28, 0.26, 0.2, 0.25, 0.28, 0.53, 0.26, 0.31, 0.24, 0.38, 0.3, 0.66, 0.64, 0.33, 0.705, 0.29, 0.29, 0.37, 0.32, 0.36, 0.255, 0.24, 0.29, 0.66, 0.61, 0.645, 0.33, 0.23, 0.34, 0.16, 0.635, 0.31, 0.42, 0.46, 0.34, 0.39, 0.17, 0.19, 0.36, 0.26, 0.42, 0.645, 0.28, 0.27, 0.21, 0.36, 0.42, 0.34, 0.45, 0.27, 0.29, 0.21, 0.18, 0.865, 0.39, 0.23, 0.39, 0.91, 0.29, 0.46, 0.31, 0.35, 0.7, 0.4, 0.09, 0.775, 0.55, 0.22, 0.12, 0.1, 0.18, 0.2, 0.57, 0.19, 0.34, 0.335, 0.3, 0.35, 0.37, 0.685, 0.2, 0.23, 0.23, 0.55, 0.37, 0.24, 0.3, 0.39, 0.265, 0.3, 1.04, 0.34, 0.21, 0.15, 0.18, 0.27, 0.34, 0.25, 0.39, 0.27, 0.24, 0.31, 0.47, 0.2, 0.28, 0.38, 0.31, 0.39, 0.13, 0.39, 0.56, 0.29, 0.19, 0.5, 0.18, 0.33, 0.2, 0.14, 0.55, 0.22, 0.46, 0.37, 0.16, 0.27, 0.25, 0.25, 0.5, 0.41, 0.23, 0.345, 0.19, 0.18, 0.27, 0.22, 0.25, 0.3, 0.17, 0.58, 0.39, 0.19, 0.33, 0.35, 0.27, 0.36, 1.58, 0.26, 0.4, 0.17, 0.21, 0.31, 0.29, 0.21, 0.62, 0.44, 0.25, 0.64, 0.15, 0.26, 0.28, 0.46, 0.24, 0.32, 0.35, 0.46, 0.32, 0.42, 0.21, 0.22, 0.52, 0.31, 0.35, 0.33, 0.51, 0.62, 0.24, 0.18, 0.5, 0.35, 0.6, 0.26, 0.22, 0.33, 0.33, 0.655, 0.2, 0.28, 0.6, 0.42, 0.22, 0.31, 0.84, 0.28, 0.19, 0.23, 0.27, 0.2, 0.63, 0.3, 0.34, 0.21, 0.27, 0.14, 0.31, 0.16, 0.22, 0.24, 0.41, 0.27, 0.56, 0.4, 0.27, 0.24, 0.36, 0.22, 0.46, 0.61, 0.43, 0.5, 0.695, 0.19, 0.19, 0.21, 0.65, 0.16, 0.685, 0.17, 0.22, 0.23, 0.17, 0.695, 0.44, 0.28, 0.13, 0.28, 0.33, 0.3, 0.11, 0.14, 0.35, 0.34, 0.17, 0.39, 0.34, 0.32, 0.65, 0.28, 0.21, 0.28, 0.13, 0.24, 0.27, 0.41, 0.23, 0.25, 0.66, 0.18, 0.11, 0.17, 0.15, 0.59, 0.11, 0.68, 0.24, 0.585, 0.315, 0.18, 0.295, 0.29, 0.2, 0.22, 0.55, 0.37, 0.27, 0.28, 0.18, 0.345, 0.28, 0.44, 0.32, 0.2, 0.59, 0.585, 0.17, 0.45, 0.34, 0.43, 0.13, 0.21, 0.32, 0.17, 0.28, 0.4, 0.25, 0.52, 0.36, 0.24, 0.37, 0.3, 0.5, 0.31, 0.17, 0.16, 0.43, 0.24, 0.25, 0.3, 0.38, 0.31, 0.25, 0.36, 0.37, 0.22, 0.18, 0.26, 0.21, 0.16, 0.24, 0.46, 0.28, 0.55, 0.52, 0.31, 0.21, 0.635, 0.22, 0.37, 0.28, 0.19, 0.32, 0.14, 0.25, 0.36, 0.33, 0.28, 0.29, 0.59, 0.19, 0.65, 0.2, 0.29, 0.32, 0.19, 0.4, 0.43, 0.31, 0.16, 0.3, 0.785, 0.22, 0.27, 0.25, 0.14, 0.21, 0.23, 0.25, 0.31, 0.26, 0.26, 0.36, 0.43, 0.21, 0.32, 0.3, 0.54, 0.28, 0.63, 0.18, 0.17, 0.35, 0.27, 0.25, 0.41, 0.43, 0.35, 0.305, 0.23, 0.2, 0.54, 0.3, 0.31, 0.645, 0.39, 0.29, 0.39, 0.16, 0.24, 0.52, 0.3, 0.24, 0.42, 0.26, 0.15, 0.45, 0.27, 0.22, 0.22, 0.16, 0.215, 0.33, 0.24, 0.22, 0.34, 0.38, 0.21, 0.14, 0.53, 0.725, 0.34, 0.26, 0.18, 0.27, 0.47, 0.3, 0.26, 0.235, 0.26, 0.33, 0.29, 0.27, 0.23, 0.28, 0.24, 0.23, 0.2, 0.66, 0.27, 0.16, 0.45, 0.4, 0.2, 0.25, 0.28, 0.24, 0.23, 0.115, 0.25, 0.28, 0.57, 0.25, 0.27, 0.4, 0.37, 0.18, 0.38, 0.18, 0.21, 0.21, 0.19, 0.19, 0.3, 0.31, 0.18, 0.45, 0.23, 0.67, 0.36, 0.24, 0.445, 0.15, 0.45, 0.34, 0.24, 0.26, 0.2, 0.27, 0.18, 0.19, 0.18, 0.4, 0.21, 0.31, 0.32, 0.5, 0.21, 0.37, 0.32, 0.26, 0.21, 0.31, 0.34, 0.28, 0.33, 0.48, 0.42, 0.765, 0.315, 0.28, 0.2, 0.25, 0.28, 0.36, 0.17, 0.41, 0.28, 0.27, 0.15, 0.32, 0.39, 0.5, 0.52, 0.29, 0.34, 0.24, 0.25, 0.08, 0.34, 0.24, 0.4, 0.18, 0.27, 0.33, 0.19, 0.28, 0.18, 0.41, 0.57, 0.41, 0.23, 0.19, 0.36, 0.27, 0.34, 0.52, 0.38, 0.5, 0.42, 0.345, 0.33, 0.745, 0.22, 0.69, 0.18, 0.57, 0.23, 0.17, 0.33, 0.36, 0.18, 0.22, 0.22, 0.23, 0.4, 0.24, 0.745, 0.36, 0.35, 0.19, 0.23, 0.18, 0.17, 0.12, 0.44, 0.22, 0.17, 0.21, 0.685, 0.3, 0.22, 0.3, 0.2, 0.58, 0.44, 0.16, 0.16, 0.24, 0.36, 0.65, 0.21, 0.12, 0.29, 0.13, 0.32, 0.17, 0.26, 0.14, 0.21, 0.34, 0.25, 0.4, 0.38, 0.41, 0.12, 0.17, 0.42, 0.44, 0.3, 0.24, 0.19, 0.29, 0.3, 0.38, 0.23, 0.39, 0.12, 0.3, 0.34, 0.59, 0.45, 0.45, 0.46, 0.2, 0.22, 0.18, 0.18, 0.31, 0.35, 0.2, 0.26, 0.28, 0.47, 0.23, 0.39, 0.2, 0.56, 0.305, 0.45, 0.235, 0.24, 0.33, 0.26, 0.19, 0.26, 0.28, 0.705, 0.41, 0.22, 0.16, 0.31, 0.31, 0.16, 0.35, 1.02, 0.27, 0.28, 0.52, 0.21, 0.35, 0.26, 0.22, 0.33, 0.44, 0.41, 0.45, 0.675, 0.4, 0.37, 0.27, 0.78, 0.28, 0.25, 0.3, 0.19, 0.49, 0.6, 0.24, 0.32, 0.21, 0.19, 0.25, 0.62, 0.37, 0.14, 0.25, 0.26, 0.69, 0.31, 0.555, 0.21, 0.17, 0.45, 0.25, 0.25, 0.31, 0.26, 0.3, 0.6, 0.53, 0.24, 0.69, 0.38, 0.4, 0.62, 0.3, 0.22, 0.41, 0.29, 0.41, 0.3, 0.25, 0.26, 0.16, 0.27, 0.15, 0.5, 0.31, 0.59, 0.21, 0.19, 0.29, 0.24, 0.32, 0.32, 0.41, 0.21, 0.2, 0.25, 0.26, 0.42, 0.44, 0.36, 0.475, 0.15, 0.35, 0.33, 0.11, 0.31, 0.16, 0.34, 0.35, 0.24, 0.34, 0.2, 0.21, 0.28, 0.28, 0.23, 0.4, 0.19, 0.27, 0.28, 0.205, 0.26, 0.19, 0.43, 0.28, 0.21, 0.33, 0.24, 0.26, 0.25, 0.24, 0.27, 0.28, 0.26, 0.38, 0.3, 0.31, 0.15, 0.33, 0.26, 0.18, 0.32, 0.33, 0.61, 0.3, 0.38, 0.38, 0.56, 0.595, 0.34, 0.24, 0.22, 0.58, 0.26, 0.35, 0.32, 0.28, 0.39, 0.26, 0.23, 0.875, 0.2, 0.21, 0.35, 0.16, 0.33, 0.45, 0.58, 0.28, 0.3, 0.255, 0.335, 0.9, 0.21, 0.24, 0.63, 0.38, 0.16, 0.19, 0.24, 0.35, 0.48, 0.19, 0.2, 0.17, 0.16, 0.6, 0.55, 0.32, 0.18, 0.2, 0.38, 0.21, 0.15, 0.52, 0.63, 0.15, 0.38, 0.18, 0.22, 0.14, 0.16, 0.26, 0.49, 0.24, 0.32, 0.245, 0.44, 0.29, 0.15, 0.48, 0.645, 0.415, 0.18, 0.2, 0.83, 0.61, 0.34, 0.2, 0.18, 0.22, 0.4, 0.365, 0.51, 0.42, 0.49, 0.32, 0.25, 0.2, 0.22, 0.24, 0.18, 0.15, 0.27, 0.53, 0.23, 0.26, 0.28]}], \"layout\": {\"legend\": {\"orientation\": \"h\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"volatile.acidity\"}}, \"yaxis\": {\"title\": {\"text\": \"Share\"}}}}, \"volatile.acidity_drift\": {\"title\": \"\", \"size\": 2, \"text\": \"\", \"type\": \"big_graph\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"Current\", \"type\": \"scatter\", \"x\": [443, 319, 703, 526, 76, 963, 1260, 532, 1561, 517, 506, 1557, 271, 1058, 1381, 1039, 542, 107, 161, 1301, 519, 1021, 1213, 223, 1286, 1426, 1234, 587, 1183, 182, 567, 1492, 724, 1262, 1509, 657, 1137, 913, 1445, 342, 781, 14, 971, 1072, 1254, 678, 1175, 1481, 1370, 1443, 18, 1151, 1380, 434, 1430, 554, 53, 535, 1050, 427, 259, 124, 961, 1488, 1563, 720, 1291, 1061, 425, 846, 1147, 204, 1317, 618, 1088, 927, 1196, 582, 1194, 360, 1449, 862, 1135, 1453, 1442, 1017, 268, 685, 317, 775, 1086, 942, 1052, 801, 1362, 219, 379, 649, 1195, 479, 1542, 609, 930, 1105, 34, 708, 686, 1132, 693, 733, 1562, 1190, 473, 737, 672, 969, 858, 5, 1556, 298, 80, 940, 361, 1154, 1545, 1622, 784, 19, 1522, 996, 54, 1415, 1564, 1593, 1236, 9, 353, 1222, 113, 1010, 1263, 877, 82, 381, 818, 1210, 1409, 66, 254, 817, 92, 1340, 122, 1357, 511, 1546, 692, 17, 1248, 414, 52, 1296, 191, 175, 233, 900, 785, 935, 1298, 156, 487, 159, 481, 1255, 1597, 253, 1491, 841, 187, 914, 979, 249, 1114, 1366, 814, 716, 465, 875, 1242, 670, 299, 593, 436, 728, 141, 229, 1057, 912, 994, 648, 799, 1164, 1073, 4, 516, 152, 1267, 1237, 752, 1150, 825, 402, 1277, 575, 1437, 838, 390, 1505, 1093, 1026, 1611, 31, 674, 866, 1328, 616, 861, 897, 148, 303, 1451, 602, 1125, 1614, 1047, 1462, 1148, 574, 899, 1327, 89, 530, 408, 1192, 177, 520, 993, 326, 992, 717, 895, 1421, 984, 240, 85, 557, 278, 938, 1425, 958, 1232, 1149, 171, 1220, 227, 891, 489, 1391, 1184, 1032, 393, 726, 192, 260, 880, 1592, 1537, 491, 759, 1473, 959, 1454, 1015, 965, 1393, 1489, 1256, 133, 202, 1036, 438, 483, 666, 461, 142, 1181, 1580, 308, 538, 170, 310, 743, 1101, 1179, 315, 22, 1529, 45, 879, 1110, 61, 522, 1397, 829, 576, 1193, 1202, 1549, 1375, 27, 527, 1186, 1273, 828, 539, 1049, 1014, 412, 1091, 1497, 1595, 347, 2, 844, 1490, 632, 211, 1582, 918, 1217, 1115, 744, 459, 579, 771, 96, 178, 108, 1516, 805, 1240, 440, 619, 1, 1315, 1239, 1347, 512, 48, 722, 1517, 1621, 446, 565, 568, 796, 231, 1070, 1063, 215, 513, 704, 354, 55, 881, 746, 641, 762, 279, 1145, 1468, 224, 302, 911, 218, 1079, 874, 1266, 792, 1136, 372, 295, 364, 580, 1615, 688, 1560, 333, 467, 968, 399, 760, 740, 953, 1520, 1446, 1214, 615, 524, 546, 1495, 1324, 452, 1515, 432, 863, 442, 847, 276, 456, 184, 1116, 1200, 458, 1508, 1087, 1478, 376, 1479, 563, 1146, 1507, 42, 944, 823, 1228, 656, 1227, 198, 309, 761, 1158, 549, 47, 1209, 529, 933, 220, 1624, 1591, 651, 536, 362, 1314, 420, 564, 475, 482, 140, 679, 1436, 1334, 77, 39, 570, 962, 808, 981, 322, 1471, 251, 695, 1128, 813, 757, 820, 853, 831, 1246, 58, 553, 597, 241, 1288, 330, 1005, 789, 1617, 56, 1126, 411, 548, 501, 1211, 642, 558, 1605, 745, 878, 1056, 667, 435, 29, 270, 35, 1157, 422, 1310, 114, 1524, 1422, 689, 1018, 1168, 1360, 985, 1191, 793, 1363, 1504, 581, 644, 1199, 621, 1612, 494, 665, 431, 1095, 638, 1042, 1404, 1030, 40, 1121, 75, 1588, 1417, 247, 713, 1590, 186, 646, 312, 8, 1551, 1302, 1044, 768, 884, 1585, 1618, 826, 445, 712, 464, 1308, 195, 655, 1487, 1389, 1356, 243, 401, 572, 1074, 810, 477, 1460, 1544, 1182, 285, 471, 936, 1238, 578, 1034, 1535, 1513, 426, 1311, 1001, 986, 1038, 980, 1064, 620, 982, 1565, 194, 474, 1428, 569, 1165, 49, 1333, 1401, 1307, 1076, 991, 1566, 44, 1342, 245, 943, 300, 583, 1013, 269, 1548, 313, 776, 283, 1444, 540, 406, 338, 466, 363, 1002, 320, 1264, 1089, 70, 1027, 500, 10, 907, 505, 1295, 864, 1432, 64, 1122, 1543, 416, 898, 654, 205, 328, 486, 999, 1377, 970, 528, 1558, 418, 1379, 1299, 1378, 590, 1247, 1174, 472, 1323, 131, 15, 439, 1528, 476, 725, 1203, 1109, 1003, 1365, 103, 1279, 60, 871, 78, 391, 165, 1335, 1410, 1129, 960, 349, 185, 1464, 371, 117, 1398, 252, 507, 1613, 311, 1419, 395, 987, 358, 263, 359, 1559, 1305, 1506, 1376, 1055, 634, 1552, 16, 51, 1258, 493, 601, 997, 351, 711, 1604, 1486, 1339, 794, 97, 1475, 1423, 196, 748, 183, 1433, 1579, 613, 1536, 989, 682, 533, 610, 687, 892, 81, 896, 397, 267, 589, 386, 795, 1416, 132, 265, 1609, 1461, 883, 88, 840, 988, 1354, 676, 916, 629, 1269, 924, 294, 261, 1541, 1081, 1348, 1576, 405, 1616, 356, 608, 1097, 239, 1249, 1099, 1403, 119, 1096, 977, 751, 374, 453, 110, 1336, 1390, 905, 1287, 503, 1031, 1331, 1224, 729, 410, 1540, 367, 1607, 384, 200, 65, 1358, 1394, 1023, 272, 1418, 955, 677, 238, 1133, 974, 541, 478, 1257, 1265, 1465, 1589, 1326, 188, 1083, 681, 906, 1092, 1276, 316, 214, 1078, 1502, 1084, 660, 1142, 531, 255, 30, 662, 1253, 230, 157, 1343, 385, 1169, 380, 1188, 721, 264, 787, 101, 13, 1274, 68, 1024, 1170, 1156, 71, 1577, 566, 1372, 1245, 798, 523, 626, 495, 937, 155, 887, 758, 921, 790, 1349, 1230, 366, 1531, 983, 839, 228, 417, 206, 742, 79, 190, 492, 948, 145, 923, 318, 824, 1374, 1124, 1463, 596, 457, 144, 1359, 1292, 1045, 764, 842, 1140, 1408, 995, 904, 592, 1458, 135, 83, 1062, 154, 1440, 1283, 773, 1414, 127, 1177, 1318, 1413, 403, 150, 346, 413, 1303, 1523, 1619, 394, 1261, 1054, 208, 496, 352, 95, 625, 571, 37, 485, 143, 946, 158, 552, 1527, 1029, 518, 1180, 1218, 236, 1100, 222, 1431, 345, 1459, 120, 661, 588, 1623, 1493, 62, 1429, 811, 193, 235, 181, 1320, 389, 1103, 521, 669, 332, 258, 1369, 1538, 957, 382, 1382, 1567, 331, 934, 614, 262, 893, 6, 266, 769, 38, 901, 1573, 1578, 545, 118, 783, 652, 1025, 706, 105, 1189, 484, 1569, 630, 683, 20, 870, 242, 50, 162, 915, 966, 441, 867, 731, 1102, 1000, 1268, 1223, 822, 301, 723, 172], \"y\": [0.37, 0.365, 0.23, 0.21, 0.32, 0.62, 0.27, 0.58, 0.18, 0.21, 0.24, 0.3, 0.2, 0.3, 0.48, 0.25, 0.29, 0.27, 0.32, 0.28, 0.32, 0.2, 0.44, 0.43, 0.765, 0.785, 0.25, 0.22, 0.37, 0.2, 0.6, 0.3, 0.19, 0.19, 0.2, 0.31, 0.26, 0.25, 0.29, 0.25, 0.29, 0.22, 0.24, 0.21, 0.39, 0.34, 0.41, 0.31, 0.34, 0.22, 0.26, 0.38, 0.35, 0.3, 0.45, 0.19, 0.28, 0.25, 0.13, 0.23, 0.475, 0.605, 0.33, 0.24, 0.34, 0.52, 0.41, 0.22, 0.29, 0.26, 0.57, 0.3, 0.6, 0.29, 0.26, 0.41, 0.22, 0.41, 0.42, 0.57, 0.28, 0.28, 0.21, 0.26, 0.17, 0.22, 0.2, 0.27, 0.34, 0.21, 0.76, 0.42, 0.3, 0.3, 0.22, 0.25, 0.26, 0.3, 0.73, 0.6, 0.42, 0.28, 0.18, 0.54, 0.14, 0.26, 0.19, 0.28, 0.98, 0.34, 0.275, 0.29, 0.2, 0.28, 0.18, 0.52, 0.26, 0.12, 0.53, 0.15, 0.21, 0.31, 0.36, 0.485, 0.58, 0.24, 0.22, 0.31, 0.36, 0.33, 0.34, 0.25, 0.19, 0.43, 0.3, 0.2, 0.51, 0.24, 0.25, 0.31, 0.4, 0.4, 0.475, 0.25, 0.54, 0.6, 0.26, 0.61, 0.26, 0.28, 0.17, 0.51, 0.28, 0.26, 0.2, 0.25, 0.28, 0.53, 0.26, 0.31, 0.24, 0.38, 0.3, 0.66, 0.64, 0.33, 0.705, 0.29, 0.29, 0.37, 0.32, 0.36, 0.255, 0.24, 0.29, 0.66, 0.61, 0.645, 0.33, 0.23, 0.34, 0.16, 0.635, 0.31, 0.42, 0.46, 0.34, 0.39, 0.17, 0.19, 0.36, 0.26, 0.42, 0.645, 0.28, 0.27, 0.21, 0.36, 0.42, 0.34, 0.45, 0.27, 0.29, 0.21, 0.18, 0.865, 0.39, 0.23, 0.39, 0.91, 0.29, 0.46, 0.31, 0.35, 0.7, 0.4, 0.09, 0.775, 0.55, 0.22, 0.12, 0.1, 0.18, 0.2, 0.57, 0.19, 0.34, 0.335, 0.3, 0.35, 0.37, 0.685, 0.2, 0.23, 0.23, 0.55, 0.37, 0.24, 0.3, 0.39, 0.265, 0.3, 1.04, 0.34, 0.21, 0.15, 0.18, 0.27, 0.34, 0.25, 0.39, 0.27, 0.24, 0.31, 0.47, 0.2, 0.28, 0.38, 0.31, 0.39, 0.13, 0.39, 0.56, 0.29, 0.19, 0.5, 0.18, 0.33, 0.2, 0.14, 0.55, 0.22, 0.46, 0.37, 0.16, 0.27, 0.25, 0.25, 0.5, 0.41, 0.23, 0.345, 0.19, 0.18, 0.27, 0.22, 0.25, 0.3, 0.17, 0.58, 0.39, 0.19, 0.33, 0.35, 0.27, 0.36, 1.58, 0.26, 0.4, 0.17, 0.21, 0.31, 0.29, 0.21, 0.62, 0.44, 0.25, 0.64, 0.15, 0.26, 0.28, 0.46, 0.24, 0.32, 0.35, 0.46, 0.32, 0.42, 0.21, 0.22, 0.52, 0.31, 0.35, 0.33, 0.51, 0.62, 0.24, 0.18, 0.5, 0.35, 0.6, 0.26, 0.22, 0.33, 0.33, 0.655, 0.2, 0.28, 0.6, 0.42, 0.22, 0.31, 0.84, 0.28, 0.19, 0.23, 0.27, 0.2, 0.63, 0.3, 0.34, 0.21, 0.27, 0.14, 0.31, 0.16, 0.22, 0.24, 0.41, 0.27, 0.56, 0.4, 0.27, 0.24, 0.36, 0.22, 0.46, 0.61, 0.43, 0.5, 0.695, 0.19, 0.19, 0.21, 0.65, 0.16, 0.685, 0.17, 0.22, 0.23, 0.17, 0.695, 0.44, 0.28, 0.13, 0.28, 0.33, 0.3, 0.11, 0.14, 0.35, 0.34, 0.17, 0.39, 0.34, 0.32, 0.65, 0.28, 0.21, 0.28, 0.13, 0.24, 0.27, 0.41, 0.23, 0.25, 0.66, 0.18, 0.11, 0.17, 0.15, 0.59, 0.11, 0.68, 0.24, 0.585, 0.315, 0.18, 0.295, 0.29, 0.2, 0.22, 0.55, 0.37, 0.27, 0.28, 0.18, 0.345, 0.28, 0.44, 0.32, 0.2, 0.59, 0.585, 0.17, 0.45, 0.34, 0.43, 0.13, 0.21, 0.32, 0.17, 0.28, 0.4, 0.25, 0.52, 0.36, 0.24, 0.37, 0.3, 0.5, 0.31, 0.17, 0.16, 0.43, 0.24, 0.25, 0.3, 0.38, 0.31, 0.25, 0.36, 0.37, 0.22, 0.18, 0.26, 0.21, 0.16, 0.24, 0.46, 0.28, 0.55, 0.52, 0.31, 0.21, 0.635, 0.22, 0.37, 0.28, 0.19, 0.32, 0.14, 0.25, 0.36, 0.33, 0.28, 0.29, 0.59, 0.19, 0.65, 0.2, 0.29, 0.32, 0.19, 0.4, 0.43, 0.31, 0.16, 0.3, 0.785, 0.22, 0.27, 0.25, 0.14, 0.21, 0.23, 0.25, 0.31, 0.26, 0.26, 0.36, 0.43, 0.21, 0.32, 0.3, 0.54, 0.28, 0.63, 0.18, 0.17, 0.35, 0.27, 0.25, 0.41, 0.43, 0.35, 0.305, 0.23, 0.2, 0.54, 0.3, 0.31, 0.645, 0.39, 0.29, 0.39, 0.16, 0.24, 0.52, 0.3, 0.24, 0.42, 0.26, 0.15, 0.45, 0.27, 0.22, 0.22, 0.16, 0.215, 0.33, 0.24, 0.22, 0.34, 0.38, 0.21, 0.14, 0.53, 0.725, 0.34, 0.26, 0.18, 0.27, 0.47, 0.3, 0.26, 0.235, 0.26, 0.33, 0.29, 0.27, 0.23, 0.28, 0.24, 0.23, 0.2, 0.66, 0.27, 0.16, 0.45, 0.4, 0.2, 0.25, 0.28, 0.24, 0.23, 0.115, 0.25, 0.28, 0.57, 0.25, 0.27, 0.4, 0.37, 0.18, 0.38, 0.18, 0.21, 0.21, 0.19, 0.19, 0.3, 0.31, 0.18, 0.45, 0.23, 0.67, 0.36, 0.24, 0.445, 0.15, 0.45, 0.34, 0.24, 0.26, 0.2, 0.27, 0.18, 0.19, 0.18, 0.4, 0.21, 0.31, 0.32, 0.5, 0.21, 0.37, 0.32, 0.26, 0.21, 0.31, 0.34, 0.28, 0.33, 0.48, 0.42, 0.765, 0.315, 0.28, 0.2, 0.25, 0.28, 0.36, 0.17, 0.41, 0.28, 0.27, 0.15, 0.32, 0.39, 0.5, 0.52, 0.29, 0.34, 0.24, 0.25, 0.08, 0.34, 0.24, 0.4, 0.18, 0.27, 0.33, 0.19, 0.28, 0.18, 0.41, 0.57, 0.41, 0.23, 0.19, 0.36, 0.27, 0.34, 0.52, 0.38, 0.5, 0.42, 0.345, 0.33, 0.745, 0.22, 0.69, 0.18, 0.57, 0.23, 0.17, 0.33, 0.36, 0.18, 0.22, 0.22, 0.23, 0.4, 0.24, 0.745, 0.36, 0.35, 0.19, 0.23, 0.18, 0.17, 0.12, 0.44, 0.22, 0.17, 0.21, 0.685, 0.3, 0.22, 0.3, 0.2, 0.58, 0.44, 0.16, 0.16, 0.24, 0.36, 0.65, 0.21, 0.12, 0.29, 0.13, 0.32, 0.17, 0.26, 0.14, 0.21, 0.34, 0.25, 0.4, 0.38, 0.41, 0.12, 0.17, 0.42, 0.44, 0.3, 0.24, 0.19, 0.29, 0.3, 0.38, 0.23, 0.39, 0.12, 0.3, 0.34, 0.59, 0.45, 0.45, 0.46, 0.2, 0.22, 0.18, 0.18, 0.31, 0.35, 0.2, 0.26, 0.28, 0.47, 0.23, 0.39, 0.2, 0.56, 0.305, 0.45, 0.235, 0.24, 0.33, 0.26, 0.19, 0.26, 0.28, 0.705, 0.41, 0.22, 0.16, 0.31, 0.31, 0.16, 0.35, 1.02, 0.27, 0.28, 0.52, 0.21, 0.35, 0.26, 0.22, 0.33, 0.44, 0.41, 0.45, 0.675, 0.4, 0.37, 0.27, 0.78, 0.28, 0.25, 0.3, 0.19, 0.49, 0.6, 0.24, 0.32, 0.21, 0.19, 0.25, 0.62, 0.37, 0.14, 0.25, 0.26, 0.69, 0.31, 0.555, 0.21, 0.17, 0.45, 0.25, 0.25, 0.31, 0.26, 0.3, 0.6, 0.53, 0.24, 0.69, 0.38, 0.4, 0.62, 0.3, 0.22, 0.41, 0.29, 0.41, 0.3, 0.25, 0.26, 0.16, 0.27, 0.15, 0.5, 0.31, 0.59, 0.21, 0.19, 0.29, 0.24, 0.32, 0.32, 0.41, 0.21, 0.2, 0.25, 0.26, 0.42, 0.44, 0.36, 0.475, 0.15, 0.35, 0.33, 0.11, 0.31, 0.16, 0.34, 0.35, 0.24, 0.34, 0.2, 0.21, 0.28, 0.28, 0.23, 0.4, 0.19, 0.27, 0.28, 0.205, 0.26, 0.19, 0.43, 0.28, 0.21, 0.33, 0.24, 0.26, 0.25, 0.24, 0.27, 0.28, 0.26, 0.38, 0.3, 0.31, 0.15, 0.33, 0.26, 0.18, 0.32, 0.33, 0.61, 0.3, 0.38, 0.38, 0.56, 0.595, 0.34, 0.24, 0.22, 0.58, 0.26, 0.35, 0.32, 0.28, 0.39, 0.26, 0.23, 0.875, 0.2, 0.21, 0.35, 0.16, 0.33, 0.45, 0.58, 0.28, 0.3, 0.255, 0.335, 0.9, 0.21, 0.24, 0.63, 0.38, 0.16, 0.19, 0.24, 0.35, 0.48, 0.19, 0.2, 0.17, 0.16, 0.6, 0.55, 0.32, 0.18, 0.2, 0.38, 0.21, 0.15, 0.52, 0.63, 0.15, 0.38, 0.18, 0.22, 0.14, 0.16, 0.26, 0.49, 0.24, 0.32, 0.245, 0.44, 0.29, 0.15, 0.48, 0.645, 0.415, 0.18, 0.2, 0.83, 0.61, 0.34, 0.2, 0.18, 0.22, 0.4, 0.365, 0.51, 0.42, 0.49, 0.32, 0.25, 0.2, 0.22, 0.24, 0.18, 0.15, 0.27, 0.53, 0.23, 0.26, 0.28]}, {\"marker\": {\"color\": \"white\", \"opacity\": 0.005, \"size\": 0.01}, \"mode\": \"markers\", \"name\": \"Current\", \"showlegend\": false, \"type\": \"scatter\", \"x\": [2, 2], \"y\": [-0.16407390566865038, 0.8375239056686508]}], \"layout\": {\"legend\": {\"orientation\": \"h\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"shapes\": [{\"fillcolor\": \"LightGreen\", \"layer\": \"below\", \"line\": {\"width\": 0}, \"opacity\": 0.5, \"type\": \"rect\", \"x0\": 0, \"x1\": 1, \"xref\": \"paper\", \"y0\": -0.16407390566865038, \"y1\": 0.8375239056686508, \"yref\": \"y\"}, {\"line\": {\"color\": \"Green\", \"width\": 3}, \"name\": \"Reference\", \"type\": \"line\", \"x0\": 0, \"x1\": 1, \"xref\": \"paper\", \"y0\": 0.3367250000000002, \"y1\": 0.3367250000000002, \"yref\": \"y\"}], \"showlegend\": true, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"Index\"}}, \"yaxis\": {\"title\": {\"text\": \"volatile.acidity\"}}}}}, \"citric.acid_distr\": {\"data\": [{\"histnorm\": \"probability\", \"marker\": {\"color\": \"#4d4d4d\"}, \"name\": \"Reference\", \"nbinsx\": 10, \"opacity\": 0.6, \"type\": \"histogram\", \"x\": [0.32, 0.24, 0.36, 0.24, 0.27, 0.21, 0.3, 0.46, 0.34, 0.26, 0.4, 0.65, 0.21, 0.26, 0.47, 0.33, 0.32, 0.24, 0.08, 0.47, 0.23, 0.29, 0.76, 0.2, 0.0, 0.29, 0.07, 0.52, 0.28, 0.37, 0.27, 0.23, 0.28, 0.36, 0.49, 0.27, 0.3, 0.3, 0.49, 0.33, 0.48, 0.49, 0.74, 0.49, 0.32, 0.35, 0.06, 0.2, 0.33, 0.28, 0.09, 0.22, 0.0, 0.34, 0.47, 0.36, 0.44, 0.31, 0.31, 0.26, 0.22, 0.39, 0.26, 0.49, 0.37, 0.1, 0.26, 0.3, 0.0, 0.04, 0.26, 0.32, 0.18, 0.38, 0.19, 0.53, 0.3, 0.32, 0.1, 0.29, 0.29, 0.32, 0.0, 0.26, 0.27, 0.66, 0.29, 0.24, 0.49, 0.28, 0.37, 0.36, 0.38, 0.49, 0.24, 0.32, 0.35, 0.42, 0.37, 0.57, 0.23, 0.36, 0.74, 0.38, 0.44, 0.6, 0.27, 0.66, 0.13, 0.14, 0.28, 0.3, 0.15, 0.26, 0.24, 0.24, 0.36, 0.27, 0.43, 0.15, 0.35, 0.24, 0.24, 0.28, 0.22, 0.68, 0.31, 0.35, 0.49, 0.29, 0.46, 0.28, 0.1, 0.35, 0.24, 0.26, 0.49, 0.34, 0.42, 0.3, 0.45, 0.33, 0.34, 0.29, 0.25, 0.31, 0.31, 0.41, 0.28, 0.28, 0.38, 0.53, 0.52, 0.44, 0.35, 0.08, 0.4, 0.29, 0.24, 0.2, 0.25, 0.3, 0.34, 0.21, 0.29, 0.28, 0.25, 0.13, 0.65, 0.34, 0.36, 0.31, 0.46, 0.34, 0.3, 0.31, 0.65, 0.32, 0.26, 0.66, 0.49, 0.33, 0.02, 0.33, 0.33, 0.28, 0.32, 0.29, 0.07, 0.29, 0.43, 0.27, 0.32, 0.4, 0.25, 0.2, 0.36, 0.36, 0.35, 0.46, 0.3, 0.3, 0.37, 0.49, 0.43, 0.2, 0.34, 0.31, 0.22, 0.02, 0.01, 0.5, 0.23, 0.31, 0.36, 0.34, 0.0, 0.33, 0.18, 0.17, 0.4, 0.35, 0.1, 0.32, 0.43, 0.54, 0.4, 0.65, 0.02, 0.2, 0.24, 0.37, 0.31, 0.32, 0.24, 0.34, 0.41, 0.1, 0.66, 0.43, 0.46, 0.27, 0.24, 0.42, 0.32, 0.28, 0.59, 0.25, 0.26, 0.52, 0.3, 0.5, 0.56, 0.28, 0.46, 0.44, 0.35, 0.26, 0.35, 0.38, 0.5, 0.29, 0.27, 0.36, 0.25, 0.31, 0.2, 0.34, 0.3, 0.21, 0.28, 0.34, 0.58, 0.04, 0.31, 0.68, 0.19, 0.42, 0.37, 0.49, 0.24, 0.37, 0.24, 0.46, 0.28, 0.33, 0.14, 0.09, 0.04, 0.21, 0.2, 0.24, 0.27, 0.17, 0.1, 0.29, 0.49, 0.35, 0.3, 0.36, 0.16, 0.29, 0.33, 0.62, 0.48, 0.23, 0.34, 0.43, 0.31, 0.26, 0.29, 0.0, 0.14, 0.2, 0.05, 0.02, 0.34, 0.16, 0.28, 0.32, 0.34, 0.26, 0.48, 0.49, 0.27, 0.55, 0.49, 0.12, 0.24, 0.26, 0.37, 0.34, 0.49, 0.27, 0.24, 0.43, 0.22, 0.22, 0.49, 0.2, 0.34, 0.42, 0.19, 0.47, 0.32, 0.27, 0.26, 0.29, 0.49, 0.31, 0.32, 0.22, 0.32, 0.49, 0.26, 0.4, 0.3, 0.6, 0.51, 0.37, 0.34, 0.4, 0.3, 0.2, 0.31, 0.29, 0.36, 0.32, 0.21, 0.0, 0.23, 0.35, 0.21, 0.28, 0.28, 0.21, 0.36, 0.22, 0.41, 0.42, 0.34, 0.33, 0.4, 0.38, 0.18, 0.39, 1.0, 0.44, 0.12, 0.32, 0.22, 0.42, 0.31, 0.27, 0.4, 0.33, 0.42, 0.26, 0.34, 0.3, 0.14, 0.48, 0.38, 0.0, 0.43, 0.35, 0.41, 0.37, 0.09, 0.28, 0.31, 0.14, 0.49, 0.41, 0.39, 0.0, 0.34, 0.49, 0.53, 0.24, 0.37, 0.35, 0.07, 0.43, 0.24, 0.49, 0.44, 0.35, 0.32, 0.37, 0.57, 0.06, 0.34, 0.23, 0.36, 0.03, 0.08, 0.31, 0.3, 0.26, 0.26, 0.28, 0.41, 0.39, 0.0, 0.2, 0.79, 0.36, 0.23, 0.28, 0.36, 0.44, 0.32, 0.3, 0.39, 0.42, 0.25, 0.28, 0.41, 0.08, 0.39, 0.18, 0.31, 0.26, 0.64, 0.28, 0.3, 0.48, 0.24, 0.28, 0.41, 0.25, 0.21, 0.0, 0.28, 0.3, 0.12, 0.36, 0.1, 0.46, 0.38, 0.02, 0.24, 0.0, 0.35, 0.3, 0.26, 0.33, 0.46, 0.34, 0.52, 0.26, 0.16, 0.33, 0.45, 0.24, 0.39, 0.15, 0.47, 0.3, 0.37, 0.19, 0.34, 0.13, 0.36, 0.3, 0.36, 0.62, 0.5, 0.31, 0.3, 0.27, 0.27, 0.27, 0.04, 0.51, 0.38, 0.0, 0.31, 0.3, 0.31, 0.29, 0.02, 0.22, 0.39, 0.49, 0.27, 0.28, 0.31, 0.33, 0.44, 0.57, 0.26, 0.21, 0.36, 0.14, 0.31, 0.33, 0.5, 0.5, 0.33, 0.21, 0.28, 0.28, 0.45, 0.36, 0.26, 0.43, 0.13, 0.24, 0.49, 0.32, 0.26, 0.09, 0.0, 0.36, 0.29, 0.19, 0.41, 0.28, 0.41, 0.3, 0.3, 0.4, 0.32, 0.33, 0.51, 0.36, 0.41, 0.19, 0.04, 0.35, 0.44, 0.03, 0.27, 0.37, 0.29, 0.28, 0.31, 0.27, 0.44, 0.74, 0.36, 0.26, 0.3, 0.47, 0.13, 0.39, 0.3, 0.23, 0.28, 0.23, 0.06, 0.26, 0.38, 0.31, 0.0, 0.27, 0.34, 0.2, 0.48, 0.11, 0.32, 0.13, 0.36, 0.27, 0.49, 0.29, 0.37, 0.31, 0.51, 0.41, 0.29, 0.29, 0.37, 0.28, 0.24, 0.49, 0.3, 0.34, 0.28, 0.47, 0.42, 0.28, 0.32, 0.03, 0.47, 0.28, 0.04, 0.05, 0.21, 0.23, 0.33, 0.0, 0.28, 0.32, 0.34, 0.42, 0.2, 0.0, 0.54, 0.28, 0.25, 0.32, 0.21, 0.49, 0.24, 0.3, 0.35, 0.3, 0.56, 0.45, 0.41, 0.28, 0.35, 0.18, 0.25, 0.2, 0.37, 0.31, 0.3, 0.28, 0.27, 0.18, 0.34, 0.44, 0.3, 0.3, 0.56, 0.33, 0.39, 0.36, 0.49, 0.29, 0.41, 0.28, 0.32, 0.27, 0.5, 0.49, 0.31, 0.35, 0.24, 0.1, 0.37, 0.33, 0.29, 0.01, 0.33, 0.25, 0.49, 0.26, 0.38, 0.66, 0.74, 0.03, 0.34, 0.51, 0.38, 0.37, 0.45, 0.62, 0.33, 0.4, 0.24, 0.26, 0.47, 0.28, 0.28, 0.24, 0.46, 0.27, 0.35, 0.3, 0.76, 0.27, 0.01, 0.27, 0.27, 0.63, 0.73, 0.29, 0.28, 0.49, 0.25, 0.31, 0.02, 0.22, 0.27, 0.36, 0.3, 0.51, 0.15, 0.49, 0.33, 0.32, 0.35, 0.33, 0.29, 0.49, 0.57, 0.34, 0.33, 0.3, 0.32, 0.44, 0.24, 0.24, 0.48, 0.23, 0.24, 0.22, 0.25, 0.2, 0.35, 0.31, 0.39, 0.49, 0.3, 0.3, 0.3, 0.38, 0.26, 0.05, 0.41, 0.23, 0.4, 0.5, 0.39, 0.41, 0.39, 0.42, 0.3, 0.35, 0.34, 0.29, 0.26, 0.31, 0.12, 0.38, 0.38, 0.44, 0.33, 0.33, 0.49, 0.38, 0.27, 0.33, 0.61, 0.31, 0.31, 0.5, 0.36, 0.37, 0.19, 0.46, 0.13, 0.44, 0.24, 0.37, 0.35, 0.31, 0.25, 0.36, 0.21, 0.32, 0.37, 0.0, 0.3, 0.7, 0.36, 0.29, 0.33, 0.32, 0.07, 0.25, 0.24, 0.2, 0.28, 0.47, 0.21, 0.3, 0.4, 0.06, 0.28, 0.29, 0.27, 0.35, 0.22, 0.35, 0.35, 0.29, 0.41, 0.49, 0.25, 0.49, 0.25, 0.5, 0.49, 0.26, 0.29, 0.32, 0.55, 0.24, 0.22, 0.28, 0.11, 0.4, 0.3, 0.02, 0.4, 0.31, 0.26, 0.36, 0.23, 0.55, 0.22, 0.58, 0.36, 0.35, 0.2, 0.34, 0.1, 0.24, 0.0, 0.0, 0.32, 0.4, 0.23, 0.49, 0.32, 0.05, 0.32, 0.28, 0.41, 0.28, 0.37, 0.33, 0.31, 0.28, 0.33, 0.28, 0.35, 0.24, 0.3, 0.16, 0.24, 0.34, 0.31, 0.59, 0.21, 0.35, 0.26, 0.48, 0.2, 0.0, 0.74, 0.01, 0.21, 0.45, 0.16, 0.32, 0.24, 0.49, 0.32, 0.28, 0.37, 0.32, 0.37, 0.56, 0.29, 0.04, 0.31, 0.29, 0.44, 0.3, 0.14, 0.16, 0.33, 0.46, 0.23, 0.49, 0.38, 0.32, 0.26, 0.47, 0.56, 0.66, 0.29, 0.2, 0.29, 0.24, 0.4, 0.36, 0.25, 0.27, 0.21, 0.35, 0.65, 0.28, 0.24, 0.28, 0.54, 0.38, 0.25, 0.49, 0.22, 0.32, 0.17, 0.18, 0.43, 0.33, 0.4, 0.47, 0.04, 0.35, 0.35, 0.4, 0.33, 0.33, 0.24, 0.27, 0.16, 0.46, 0.0, 0.36, 0.46, 0.25, 0.49, 0.4, 0.33, 0.29, 0.24, 0.3, 0.22, 0.35, 0.31, 0.31, 0.38, 0.27, 0.49, 0.44, 0.4, 0.33, 0.26, 0.01, 0.38, 0.18, 0.22, 0.49, 0.18, 0.2, 0.28, 0.34, 0.29, 0.03, 0.7, 0.36, 0.09, 0.42]}, {\"histnorm\": \"probability\", \"marker\": {\"color\": \"#ed0400\"}, \"name\": \"Current\", \"nbinsx\": 10, \"opacity\": 0.6, \"type\": \"histogram\", \"x\": [0.19, 0.49, 0.38, 0.42, 0.21, 0.12, 0.36, 0.23, 0.29, 0.27, 0.29, 0.25, 0.31, 0.12, 0.24, 0.35, 0.4, 0.25, 0.23, 0.4, 0.39, 0.34, 0.0, 0.18, 0.04, 0.24, 0.31, 0.24, 0.34, 0.3, 0.65, 0.25, 0.31, 0.39, 0.35, 0.4, 0.39, 0.26, 0.45, 0.28, 0.49, 0.38, 0.28, 0.36, 0.32, 0.3, 0.29, 0.32, 0.27, 0.37, 0.34, 0.49, 0.34, 0.23, 0.07, 0.99, 0.39, 0.13, 0.27, 0.37, 0.33, 0.02, 0.34, 0.33, 0.36, 0.49, 0.64, 0.37, 0.3, 0.42, 0.09, 0.29, 0.18, 0.31, 0.33, 0.3, 0.37, 0.23, 0.17, 0.39, 0.44, 0.41, 0.29, 0.31, 0.44, 0.56, 0.74, 0.79, 0.0, 0.31, 0.68, 0.09, 0.2, 0.26, 0.36, 0.27, 0.29, 0.33, 0.0, 0.17, 0.38, 0.33, 0.33, 0.06, 0.34, 0.34, 0.21, 0.28, 0.32, 0.28, 0.24, 0.29, 0.19, 0.24, 0.28, 0.11, 0.3, 0.19, 0.49, 0.4, 0.33, 0.41, 0.06, 0.29, 0.2, 0.27, 0.34, 0.29, 0.39, 0.24, 0.74, 0.29, 0.49, 0.32, 0.34, 0.26, 0.25, 0.49, 0.26, 0.28, 0.3, 0.28, 0.4, 1.23, 0.24, 0.25, 0.52, 0.08, 0.44, 0.29, 0.27, 0.23, 0.24, 0.34, 0.35, 0.54, 0.09, 0.24, 0.26, 0.49, 0.32, 0.42, 0.29, 0.0, 0.22, 0.28, 0.1, 0.3, 0.27, 0.23, 0.25, 0.53, 0.22, 0.27, 0.25, 0.39, 0.01, 0.49, 0.23, 0.36, 0.27, 0.47, 0.1, 0.29, 0.46, 0.26, 0.46, 0.4, 0.35, 0.38, 0.34, 0.28, 0.2, 0.49, 0.27, 0.49, 0.58, 0.34, 0.38, 0.27, 0.34, 0.18, 0.4, 0.29, 0.45, 0.03, 0.69, 0.37, 0.21, 0.06, 0.26, 0.59, 0.33, 0.56, 0.0, 0.32, 0.3, 0.0, 0.03, 0.34, 0.29, 0.33, 0.31, 0.61, 0.02, 0.34, 0.25, 0.14, 0.35, 0.38, 0.32, 0.26, 0.4, 0.39, 0.39, 0.24, 0.24, 0.35, 0.91, 0.49, 0.36, 0.35, 0.05, 0.4, 0.81, 0.3, 0.4, 0.28, 0.4, 0.28, 0.47, 0.46, 0.3, 0.52, 0.21, 0.17, 0.38, 0.26, 0.39, 0.3, 0.34, 0.3, 0.18, 0.2, 0.25, 0.33, 0.36, 0.49, 0.49, 0.32, 0.15, 0.24, 0.24, 0.27, 0.3, 0.36, 0.34, 0.13, 0.36, 0.33, 0.49, 0.26, 0.32, 0.26, 0.41, 0.32, 0.45, 0.42, 0.28, 0.01, 0.28, 0.32, 0.22, 0.56, 0.26, 0.36, 0.0, 0.25, 0.42, 0.52, 0.5, 0.3, 0.49, 0.41, 0.19, 0.73, 0.3, 0.08, 0.41, 0.29, 0.34, 0.24, 0.55, 0.45, 0.45, 0.52, 0.29, 0.32, 0.36, 0.38, 0.11, 0.24, 0.4, 0.32, 0.09, 0.04, 0.4, 0.49, 0.0, 0.29, 0.14, 0.42, 0.5, 0.26, 0.41, 0.2, 0.32, 0.3, 0.06, 0.45, 0.26, 0.5, 0.21, 0.4, 0.39, 0.36, 0.24, 0.38, 0.02, 0.29, 0.24, 0.28, 0.34, 0.18, 0.31, 0.49, 0.35, 0.22, 0.24, 0.45, 0.08, 0.32, 0.2, 0.28, 0.36, 0.34, 0.2, 0.26, 0.5, 0.17, 0.13, 0.27, 0.31, 0.34, 0.18, 0.32, 0.11, 0.32, 0.28, 0.38, 0.44, 0.13, 0.37, 0.29, 0.37, 0.41, 0.32, 0.42, 0.26, 0.74, 0.49, 0.28, 0.3, 0.62, 0.4, 0.31, 0.02, 0.31, 0.34, 0.19, 0.27, 0.36, 0.42, 0.2, 0.42, 0.24, 0.17, 0.46, 0.27, 0.32, 0.32, 0.59, 0.34, 0.16, 0.49, 0.2, 0.2, 0.32, 0.26, 0.39, 0.49, 0.33, 0.1, 0.53, 0.27, 0.52, 0.42, 0.15, 0.32, 0.49, 0.28, 0.31, 0.44, 0.07, 0.27, 0.5, 0.28, 0.44, 0.28, 0.39, 0.26, 0.3, 0.3, 0.23, 0.48, 0.26, 0.3, 0.36, 0.23, 0.32, 0.0, 0.22, 0.29, 0.44, 0.42, 0.19, 0.47, 0.27, 0.26, 0.24, 0.36, 0.46, 0.3, 0.25, 0.35, 0.44, 0.39, 0.3, 0.27, 0.31, 0.22, 0.42, 0.08, 0.61, 0.25, 0.36, 0.29, 0.4, 0.34, 0.49, 0.47, 0.35, 0.33, 0.48, 0.28, 0.27, 0.29, 0.08, 0.49, 0.37, 0.34, 0.25, 0.52, 0.58, 0.3, 0.02, 0.26, 0.32, 0.29, 0.0, 0.32, 0.69, 0.3, 0.46, 0.34, 0.38, 0.42, 0.38, 0.28, 0.32, 0.44, 0.3, 0.31, 0.33, 0.49, 0.0, 0.26, 0.08, 0.28, 0.28, 0.3, 0.38, 0.49, 0.27, 0.49, 0.21, 0.38, 0.32, 0.61, 0.0, 0.22, 0.31, 0.25, 0.24, 0.26, 0.35, 0.38, 0.27, 0.08, 0.29, 0.24, 0.49, 0.46, 0.35, 0.43, 0.49, 0.2, 0.49, 0.36, 0.23, 0.41, 0.33, 0.32, 0.29, 0.49, 0.4, 0.38, 0.49, 0.09, 0.1, 0.34, 0.37, 0.29, 0.08, 0.32, 0.0, 0.27, 0.43, 0.31, 0.3, 0.22, 0.42, 0.49, 0.22, 0.39, 0.41, 0.03, 0.42, 0.31, 0.11, 0.24, 0.22, 0.46, 0.24, 0.45, 0.39, 0.35, 0.3, 0.28, 0.02, 0.39, 0.54, 0.62, 0.15, 0.37, 0.21, 0.42, 0.24, 0.27, 0.28, 0.71, 0.1, 0.27, 0.39, 0.3, 0.33, 0.02, 0.26, 0.29, 0.26, 0.28, 0.27, 0.2, 0.4, 0.37, 0.36, 0.28, 0.49, 0.71, 0.24, 0.12, 0.36, 0.42, 0.59, 0.16, 0.38, 0.34, 0.27, 0.24, 0.25, 0.69, 0.49, 0.36, 0.23, 0.08, 0.47, 0.18, 0.54, 0.26, 0.4, 0.41, 0.22, 0.29, 0.5, 0.27, 0.49, 0.32, 0.38, 0.33, 0.24, 0.3, 0.25, 0.28, 0.33, 0.38, 0.36, 0.33, 0.86, 0.24, 0.56, 0.3, 0.25, 0.43, 0.3, 0.41, 0.37, 0.14, 0.01, 0.49, 0.29, 0.23, 0.38, 0.29, 0.45, 0.34, 0.01, 0.2, 0.19, 0.34, 0.2, 0.18, 0.3, 0.08, 0.26, 0.21, 0.34, 0.28, 0.2, 0.31, 0.28, 0.32, 0.25, 0.35, 0.32, 0.3, 0.11, 0.32, 0.48, 0.25, 0.29, 0.31, 0.29, 0.33, 0.49, 0.31, 0.3, 0.33, 0.0, 0.42, 0.33, 0.2, 0.36, 0.2, 0.18, 0.27, 0.48, 0.3, 0.2, 0.02, 0.39, 0.32, 0.33, 0.39, 0.12, 0.37, 0.18, 0.3, 0.34, 0.23, 0.34, 0.48, 0.49, 0.01, 0.45, 0.38, 0.31, 0.2, 0.32, 0.62, 0.49, 0.25, 0.3, 0.29, 0.36, 0.1, 0.32, 0.23, 0.23, 0.0, 0.33, 0.4, 0.14, 0.22, 0.4, 0.74, 0.74, 0.39, 0.33, 0.33, 0.33, 0.36, 0.24, 0.38, 0.47, 0.42, 0.31, 0.39, 0.55, 0.34, 0.41, 0.44, 0.38, 0.3, 0.18, 0.31, 0.12, 0.24, 0.2, 0.74, 0.18, 0.42, 0.49, 0.24, 0.43, 0.43, 0.25, 0.32, 0.34, 0.28, 0.29, 0.38, 0.26, 0.31, 0.31, 0.34, 0.07, 0.53, 0.47, 0.49, 0.1, 0.25, 0.37, 0.33, 0.38, 0.2, 0.0, 0.33, 0.26, 0.4, 0.27, 0.26, 0.18, 0.36, 0.37, 0.35, 0.53, 0.07, 0.3, 0.26, 0.49, 0.26, 0.38, 0.36, 0.53, 0.45, 0.35, 0.22, 0.07, 0.66, 0.33, 0.0, 0.29, 0.24, 0.06, 0.33, 0.32, 0.39, 0.3, 0.16, 0.38, 0.44, 0.48, 0.28, 0.37, 0.32, 0.45, 0.4, 0.39, 0.24, 0.3, 0.58, 0.28, 0.65, 0.3, 0.21, 0.37, 0.3, 0.54, 0.56, 0.19, 0.24, 0.21, 0.06, 0.32, 0.51, 0.27, 0.26, 0.33, 0.3, 0.42, 0.48, 0.29, 0.3, 0.24, 0.26, 0.46, 0.3, 0.26, 0.18, 0.39, 0.19, 0.27, 0.31, 0.26, 0.29, 1.0, 0.36, 0.31, 0.38, 0.28, 0.44, 0.25, 0.41, 0.33, 0.35, 0.74, 0.2, 0.51, 0.26, 0.47, 0.22, 0.49, 0.31, 0.5, 0.29, 0.18, 0.45, 0.15, 0.14, 0.03, 0.1, 0.32, 0.36, 0.23, 0.16, 0.68, 0.49, 0.26, 0.36, 0.08, 0.24, 0.27, 0.13, 0.34, 0.3, 0.53, 0.21, 0.2, 0.49, 0.58, 0.43, 0.45, 0.26, 0.14, 0.06, 0.36, 0.29, 0.27, 0.42, 0.49, 0.39, 0.26, 0.35, 0.04, 0.4, 0.28, 0.28, 0.4, 0.26, 0.21, 0.25, 0.27, 0.31, 0.29, 0.41, 0.28, 0.54, 0.04, 0.28, 0.26, 0.28, 0.25, 0.28, 0.18, 0.26, 0.32, 0.29, 0.15, 0.38, 0.49, 0.65, 0.32, 0.25, 0.0, 0.68, 0.36, 0.34, 0.27, 0.49, 0.31, 0.3, 0.35, 0.46, 0.41, 0.49, 0.24, 0.41, 0.24, 0.3, 0.49, 0.24, 0.25, 0.22, 0.31, 0.4, 0.37, 0.29, 0.28, 0.3, 0.34]}], \"layout\": {\"legend\": {\"orientation\": \"h\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"citric.acid\"}}, \"yaxis\": {\"title\": {\"text\": \"Share\"}}}}, \"citric.acid_drift\": {\"title\": \"\", \"size\": 2, \"text\": \"\", \"type\": \"big_graph\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"Current\", \"type\": \"scatter\", \"x\": [443, 319, 703, 526, 76, 963, 1260, 532, 1561, 517, 506, 1557, 271, 1058, 1381, 1039, 542, 107, 161, 1301, 519, 1021, 1213, 223, 1286, 1426, 1234, 587, 1183, 182, 567, 1492, 724, 1262, 1509, 657, 1137, 913, 1445, 342, 781, 14, 971, 1072, 1254, 678, 1175, 1481, 1370, 1443, 18, 1151, 1380, 434, 1430, 554, 53, 535, 1050, 427, 259, 124, 961, 1488, 1563, 720, 1291, 1061, 425, 846, 1147, 204, 1317, 618, 1088, 927, 1196, 582, 1194, 360, 1449, 862, 1135, 1453, 1442, 1017, 268, 685, 317, 775, 1086, 942, 1052, 801, 1362, 219, 379, 649, 1195, 479, 1542, 609, 930, 1105, 34, 708, 686, 1132, 693, 733, 1562, 1190, 473, 737, 672, 969, 858, 5, 1556, 298, 80, 940, 361, 1154, 1545, 1622, 784, 19, 1522, 996, 54, 1415, 1564, 1593, 1236, 9, 353, 1222, 113, 1010, 1263, 877, 82, 381, 818, 1210, 1409, 66, 254, 817, 92, 1340, 122, 1357, 511, 1546, 692, 17, 1248, 414, 52, 1296, 191, 175, 233, 900, 785, 935, 1298, 156, 487, 159, 481, 1255, 1597, 253, 1491, 841, 187, 914, 979, 249, 1114, 1366, 814, 716, 465, 875, 1242, 670, 299, 593, 436, 728, 141, 229, 1057, 912, 994, 648, 799, 1164, 1073, 4, 516, 152, 1267, 1237, 752, 1150, 825, 402, 1277, 575, 1437, 838, 390, 1505, 1093, 1026, 1611, 31, 674, 866, 1328, 616, 861, 897, 148, 303, 1451, 602, 1125, 1614, 1047, 1462, 1148, 574, 899, 1327, 89, 530, 408, 1192, 177, 520, 993, 326, 992, 717, 895, 1421, 984, 240, 85, 557, 278, 938, 1425, 958, 1232, 1149, 171, 1220, 227, 891, 489, 1391, 1184, 1032, 393, 726, 192, 260, 880, 1592, 1537, 491, 759, 1473, 959, 1454, 1015, 965, 1393, 1489, 1256, 133, 202, 1036, 438, 483, 666, 461, 142, 1181, 1580, 308, 538, 170, 310, 743, 1101, 1179, 315, 22, 1529, 45, 879, 1110, 61, 522, 1397, 829, 576, 1193, 1202, 1549, 1375, 27, 527, 1186, 1273, 828, 539, 1049, 1014, 412, 1091, 1497, 1595, 347, 2, 844, 1490, 632, 211, 1582, 918, 1217, 1115, 744, 459, 579, 771, 96, 178, 108, 1516, 805, 1240, 440, 619, 1, 1315, 1239, 1347, 512, 48, 722, 1517, 1621, 446, 565, 568, 796, 231, 1070, 1063, 215, 513, 704, 354, 55, 881, 746, 641, 762, 279, 1145, 1468, 224, 302, 911, 218, 1079, 874, 1266, 792, 1136, 372, 295, 364, 580, 1615, 688, 1560, 333, 467, 968, 399, 760, 740, 953, 1520, 1446, 1214, 615, 524, 546, 1495, 1324, 452, 1515, 432, 863, 442, 847, 276, 456, 184, 1116, 1200, 458, 1508, 1087, 1478, 376, 1479, 563, 1146, 1507, 42, 944, 823, 1228, 656, 1227, 198, 309, 761, 1158, 549, 47, 1209, 529, 933, 220, 1624, 1591, 651, 536, 362, 1314, 420, 564, 475, 482, 140, 679, 1436, 1334, 77, 39, 570, 962, 808, 981, 322, 1471, 251, 695, 1128, 813, 757, 820, 853, 831, 1246, 58, 553, 597, 241, 1288, 330, 1005, 789, 1617, 56, 1126, 411, 548, 501, 1211, 642, 558, 1605, 745, 878, 1056, 667, 435, 29, 270, 35, 1157, 422, 1310, 114, 1524, 1422, 689, 1018, 1168, 1360, 985, 1191, 793, 1363, 1504, 581, 644, 1199, 621, 1612, 494, 665, 431, 1095, 638, 1042, 1404, 1030, 40, 1121, 75, 1588, 1417, 247, 713, 1590, 186, 646, 312, 8, 1551, 1302, 1044, 768, 884, 1585, 1618, 826, 445, 712, 464, 1308, 195, 655, 1487, 1389, 1356, 243, 401, 572, 1074, 810, 477, 1460, 1544, 1182, 285, 471, 936, 1238, 578, 1034, 1535, 1513, 426, 1311, 1001, 986, 1038, 980, 1064, 620, 982, 1565, 194, 474, 1428, 569, 1165, 49, 1333, 1401, 1307, 1076, 991, 1566, 44, 1342, 245, 943, 300, 583, 1013, 269, 1548, 313, 776, 283, 1444, 540, 406, 338, 466, 363, 1002, 320, 1264, 1089, 70, 1027, 500, 10, 907, 505, 1295, 864, 1432, 64, 1122, 1543, 416, 898, 654, 205, 328, 486, 999, 1377, 970, 528, 1558, 418, 1379, 1299, 1378, 590, 1247, 1174, 472, 1323, 131, 15, 439, 1528, 476, 725, 1203, 1109, 1003, 1365, 103, 1279, 60, 871, 78, 391, 165, 1335, 1410, 1129, 960, 349, 185, 1464, 371, 117, 1398, 252, 507, 1613, 311, 1419, 395, 987, 358, 263, 359, 1559, 1305, 1506, 1376, 1055, 634, 1552, 16, 51, 1258, 493, 601, 997, 351, 711, 1604, 1486, 1339, 794, 97, 1475, 1423, 196, 748, 183, 1433, 1579, 613, 1536, 989, 682, 533, 610, 687, 892, 81, 896, 397, 267, 589, 386, 795, 1416, 132, 265, 1609, 1461, 883, 88, 840, 988, 1354, 676, 916, 629, 1269, 924, 294, 261, 1541, 1081, 1348, 1576, 405, 1616, 356, 608, 1097, 239, 1249, 1099, 1403, 119, 1096, 977, 751, 374, 453, 110, 1336, 1390, 905, 1287, 503, 1031, 1331, 1224, 729, 410, 1540, 367, 1607, 384, 200, 65, 1358, 1394, 1023, 272, 1418, 955, 677, 238, 1133, 974, 541, 478, 1257, 1265, 1465, 1589, 1326, 188, 1083, 681, 906, 1092, 1276, 316, 214, 1078, 1502, 1084, 660, 1142, 531, 255, 30, 662, 1253, 230, 157, 1343, 385, 1169, 380, 1188, 721, 264, 787, 101, 13, 1274, 68, 1024, 1170, 1156, 71, 1577, 566, 1372, 1245, 798, 523, 626, 495, 937, 155, 887, 758, 921, 790, 1349, 1230, 366, 1531, 983, 839, 228, 417, 206, 742, 79, 190, 492, 948, 145, 923, 318, 824, 1374, 1124, 1463, 596, 457, 144, 1359, 1292, 1045, 764, 842, 1140, 1408, 995, 904, 592, 1458, 135, 83, 1062, 154, 1440, 1283, 773, 1414, 127, 1177, 1318, 1413, 403, 150, 346, 413, 1303, 1523, 1619, 394, 1261, 1054, 208, 496, 352, 95, 625, 571, 37, 485, 143, 946, 158, 552, 1527, 1029, 518, 1180, 1218, 236, 1100, 222, 1431, 345, 1459, 120, 661, 588, 1623, 1493, 62, 1429, 811, 193, 235, 181, 1320, 389, 1103, 521, 669, 332, 258, 1369, 1538, 957, 382, 1382, 1567, 331, 934, 614, 262, 893, 6, 266, 769, 38, 901, 1573, 1578, 545, 118, 783, 652, 1025, 706, 105, 1189, 484, 1569, 630, 683, 20, 870, 242, 50, 162, 915, 966, 441, 867, 731, 1102, 1000, 1268, 1223, 822, 301, 723, 172], \"y\": [0.19, 0.49, 0.38, 0.42, 0.21, 0.12, 0.36, 0.23, 0.29, 0.27, 0.29, 0.25, 0.31, 0.12, 0.24, 0.35, 0.4, 0.25, 0.23, 0.4, 0.39, 0.34, 0.0, 0.18, 0.04, 0.24, 0.31, 0.24, 0.34, 0.3, 0.65, 0.25, 0.31, 0.39, 0.35, 0.4, 0.39, 0.26, 0.45, 0.28, 0.49, 0.38, 0.28, 0.36, 0.32, 0.3, 0.29, 0.32, 0.27, 0.37, 0.34, 0.49, 0.34, 0.23, 0.07, 0.99, 0.39, 0.13, 0.27, 0.37, 0.33, 0.02, 0.34, 0.33, 0.36, 0.49, 0.64, 0.37, 0.3, 0.42, 0.09, 0.29, 0.18, 0.31, 0.33, 0.3, 0.37, 0.23, 0.17, 0.39, 0.44, 0.41, 0.29, 0.31, 0.44, 0.56, 0.74, 0.79, 0.0, 0.31, 0.68, 0.09, 0.2, 0.26, 0.36, 0.27, 0.29, 0.33, 0.0, 0.17, 0.38, 0.33, 0.33, 0.06, 0.34, 0.34, 0.21, 0.28, 0.32, 0.28, 0.24, 0.29, 0.19, 0.24, 0.28, 0.11, 0.3, 0.19, 0.49, 0.4, 0.33, 0.41, 0.06, 0.29, 0.2, 0.27, 0.34, 0.29, 0.39, 0.24, 0.74, 0.29, 0.49, 0.32, 0.34, 0.26, 0.25, 0.49, 0.26, 0.28, 0.3, 0.28, 0.4, 1.23, 0.24, 0.25, 0.52, 0.08, 0.44, 0.29, 0.27, 0.23, 0.24, 0.34, 0.35, 0.54, 0.09, 0.24, 0.26, 0.49, 0.32, 0.42, 0.29, 0.0, 0.22, 0.28, 0.1, 0.3, 0.27, 0.23, 0.25, 0.53, 0.22, 0.27, 0.25, 0.39, 0.01, 0.49, 0.23, 0.36, 0.27, 0.47, 0.1, 0.29, 0.46, 0.26, 0.46, 0.4, 0.35, 0.38, 0.34, 0.28, 0.2, 0.49, 0.27, 0.49, 0.58, 0.34, 0.38, 0.27, 0.34, 0.18, 0.4, 0.29, 0.45, 0.03, 0.69, 0.37, 0.21, 0.06, 0.26, 0.59, 0.33, 0.56, 0.0, 0.32, 0.3, 0.0, 0.03, 0.34, 0.29, 0.33, 0.31, 0.61, 0.02, 0.34, 0.25, 0.14, 0.35, 0.38, 0.32, 0.26, 0.4, 0.39, 0.39, 0.24, 0.24, 0.35, 0.91, 0.49, 0.36, 0.35, 0.05, 0.4, 0.81, 0.3, 0.4, 0.28, 0.4, 0.28, 0.47, 0.46, 0.3, 0.52, 0.21, 0.17, 0.38, 0.26, 0.39, 0.3, 0.34, 0.3, 0.18, 0.2, 0.25, 0.33, 0.36, 0.49, 0.49, 0.32, 0.15, 0.24, 0.24, 0.27, 0.3, 0.36, 0.34, 0.13, 0.36, 0.33, 0.49, 0.26, 0.32, 0.26, 0.41, 0.32, 0.45, 0.42, 0.28, 0.01, 0.28, 0.32, 0.22, 0.56, 0.26, 0.36, 0.0, 0.25, 0.42, 0.52, 0.5, 0.3, 0.49, 0.41, 0.19, 0.73, 0.3, 0.08, 0.41, 0.29, 0.34, 0.24, 0.55, 0.45, 0.45, 0.52, 0.29, 0.32, 0.36, 0.38, 0.11, 0.24, 0.4, 0.32, 0.09, 0.04, 0.4, 0.49, 0.0, 0.29, 0.14, 0.42, 0.5, 0.26, 0.41, 0.2, 0.32, 0.3, 0.06, 0.45, 0.26, 0.5, 0.21, 0.4, 0.39, 0.36, 0.24, 0.38, 0.02, 0.29, 0.24, 0.28, 0.34, 0.18, 0.31, 0.49, 0.35, 0.22, 0.24, 0.45, 0.08, 0.32, 0.2, 0.28, 0.36, 0.34, 0.2, 0.26, 0.5, 0.17, 0.13, 0.27, 0.31, 0.34, 0.18, 0.32, 0.11, 0.32, 0.28, 0.38, 0.44, 0.13, 0.37, 0.29, 0.37, 0.41, 0.32, 0.42, 0.26, 0.74, 0.49, 0.28, 0.3, 0.62, 0.4, 0.31, 0.02, 0.31, 0.34, 0.19, 0.27, 0.36, 0.42, 0.2, 0.42, 0.24, 0.17, 0.46, 0.27, 0.32, 0.32, 0.59, 0.34, 0.16, 0.49, 0.2, 0.2, 0.32, 0.26, 0.39, 0.49, 0.33, 0.1, 0.53, 0.27, 0.52, 0.42, 0.15, 0.32, 0.49, 0.28, 0.31, 0.44, 0.07, 0.27, 0.5, 0.28, 0.44, 0.28, 0.39, 0.26, 0.3, 0.3, 0.23, 0.48, 0.26, 0.3, 0.36, 0.23, 0.32, 0.0, 0.22, 0.29, 0.44, 0.42, 0.19, 0.47, 0.27, 0.26, 0.24, 0.36, 0.46, 0.3, 0.25, 0.35, 0.44, 0.39, 0.3, 0.27, 0.31, 0.22, 0.42, 0.08, 0.61, 0.25, 0.36, 0.29, 0.4, 0.34, 0.49, 0.47, 0.35, 0.33, 0.48, 0.28, 0.27, 0.29, 0.08, 0.49, 0.37, 0.34, 0.25, 0.52, 0.58, 0.3, 0.02, 0.26, 0.32, 0.29, 0.0, 0.32, 0.69, 0.3, 0.46, 0.34, 0.38, 0.42, 0.38, 0.28, 0.32, 0.44, 0.3, 0.31, 0.33, 0.49, 0.0, 0.26, 0.08, 0.28, 0.28, 0.3, 0.38, 0.49, 0.27, 0.49, 0.21, 0.38, 0.32, 0.61, 0.0, 0.22, 0.31, 0.25, 0.24, 0.26, 0.35, 0.38, 0.27, 0.08, 0.29, 0.24, 0.49, 0.46, 0.35, 0.43, 0.49, 0.2, 0.49, 0.36, 0.23, 0.41, 0.33, 0.32, 0.29, 0.49, 0.4, 0.38, 0.49, 0.09, 0.1, 0.34, 0.37, 0.29, 0.08, 0.32, 0.0, 0.27, 0.43, 0.31, 0.3, 0.22, 0.42, 0.49, 0.22, 0.39, 0.41, 0.03, 0.42, 0.31, 0.11, 0.24, 0.22, 0.46, 0.24, 0.45, 0.39, 0.35, 0.3, 0.28, 0.02, 0.39, 0.54, 0.62, 0.15, 0.37, 0.21, 0.42, 0.24, 0.27, 0.28, 0.71, 0.1, 0.27, 0.39, 0.3, 0.33, 0.02, 0.26, 0.29, 0.26, 0.28, 0.27, 0.2, 0.4, 0.37, 0.36, 0.28, 0.49, 0.71, 0.24, 0.12, 0.36, 0.42, 0.59, 0.16, 0.38, 0.34, 0.27, 0.24, 0.25, 0.69, 0.49, 0.36, 0.23, 0.08, 0.47, 0.18, 0.54, 0.26, 0.4, 0.41, 0.22, 0.29, 0.5, 0.27, 0.49, 0.32, 0.38, 0.33, 0.24, 0.3, 0.25, 0.28, 0.33, 0.38, 0.36, 0.33, 0.86, 0.24, 0.56, 0.3, 0.25, 0.43, 0.3, 0.41, 0.37, 0.14, 0.01, 0.49, 0.29, 0.23, 0.38, 0.29, 0.45, 0.34, 0.01, 0.2, 0.19, 0.34, 0.2, 0.18, 0.3, 0.08, 0.26, 0.21, 0.34, 0.28, 0.2, 0.31, 0.28, 0.32, 0.25, 0.35, 0.32, 0.3, 0.11, 0.32, 0.48, 0.25, 0.29, 0.31, 0.29, 0.33, 0.49, 0.31, 0.3, 0.33, 0.0, 0.42, 0.33, 0.2, 0.36, 0.2, 0.18, 0.27, 0.48, 0.3, 0.2, 0.02, 0.39, 0.32, 0.33, 0.39, 0.12, 0.37, 0.18, 0.3, 0.34, 0.23, 0.34, 0.48, 0.49, 0.01, 0.45, 0.38, 0.31, 0.2, 0.32, 0.62, 0.49, 0.25, 0.3, 0.29, 0.36, 0.1, 0.32, 0.23, 0.23, 0.0, 0.33, 0.4, 0.14, 0.22, 0.4, 0.74, 0.74, 0.39, 0.33, 0.33, 0.33, 0.36, 0.24, 0.38, 0.47, 0.42, 0.31, 0.39, 0.55, 0.34, 0.41, 0.44, 0.38, 0.3, 0.18, 0.31, 0.12, 0.24, 0.2, 0.74, 0.18, 0.42, 0.49, 0.24, 0.43, 0.43, 0.25, 0.32, 0.34, 0.28, 0.29, 0.38, 0.26, 0.31, 0.31, 0.34, 0.07, 0.53, 0.47, 0.49, 0.1, 0.25, 0.37, 0.33, 0.38, 0.2, 0.0, 0.33, 0.26, 0.4, 0.27, 0.26, 0.18, 0.36, 0.37, 0.35, 0.53, 0.07, 0.3, 0.26, 0.49, 0.26, 0.38, 0.36, 0.53, 0.45, 0.35, 0.22, 0.07, 0.66, 0.33, 0.0, 0.29, 0.24, 0.06, 0.33, 0.32, 0.39, 0.3, 0.16, 0.38, 0.44, 0.48, 0.28, 0.37, 0.32, 0.45, 0.4, 0.39, 0.24, 0.3, 0.58, 0.28, 0.65, 0.3, 0.21, 0.37, 0.3, 0.54, 0.56, 0.19, 0.24, 0.21, 0.06, 0.32, 0.51, 0.27, 0.26, 0.33, 0.3, 0.42, 0.48, 0.29, 0.3, 0.24, 0.26, 0.46, 0.3, 0.26, 0.18, 0.39, 0.19, 0.27, 0.31, 0.26, 0.29, 1.0, 0.36, 0.31, 0.38, 0.28, 0.44, 0.25, 0.41, 0.33, 0.35, 0.74, 0.2, 0.51, 0.26, 0.47, 0.22, 0.49, 0.31, 0.5, 0.29, 0.18, 0.45, 0.15, 0.14, 0.03, 0.1, 0.32, 0.36, 0.23, 0.16, 0.68, 0.49, 0.26, 0.36, 0.08, 0.24, 0.27, 0.13, 0.34, 0.3, 0.53, 0.21, 0.2, 0.49, 0.58, 0.43, 0.45, 0.26, 0.14, 0.06, 0.36, 0.29, 0.27, 0.42, 0.49, 0.39, 0.26, 0.35, 0.04, 0.4, 0.28, 0.28, 0.4, 0.26, 0.21, 0.25, 0.27, 0.31, 0.29, 0.41, 0.28, 0.54, 0.04, 0.28, 0.26, 0.28, 0.25, 0.28, 0.18, 0.26, 0.32, 0.29, 0.15, 0.38, 0.49, 0.65, 0.32, 0.25, 0.0, 0.68, 0.36, 0.34, 0.27, 0.49, 0.31, 0.3, 0.35, 0.46, 0.41, 0.49, 0.24, 0.41, 0.24, 0.3, 0.49, 0.24, 0.25, 0.22, 0.31, 0.4, 0.37, 0.29, 0.28, 0.3, 0.34]}, {\"marker\": {\"color\": \"white\", \"opacity\": 0.005, \"size\": 0.01}, \"mode\": \"markers\", \"name\": \"Current\", \"showlegend\": false, \"type\": \"scatter\", \"x\": [2, 2], \"y\": [-0.09588113165123036, 0.7315611316512318]}], \"layout\": {\"legend\": {\"orientation\": \"h\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"shapes\": [{\"fillcolor\": \"LightGreen\", \"layer\": \"below\", \"line\": {\"width\": 0}, \"opacity\": 0.5, \"type\": \"rect\", \"x0\": 0, \"x1\": 1, \"xref\": \"paper\", \"y0\": -0.09588113165123036, \"y1\": 0.7315611316512318, \"yref\": \"y\"}, {\"line\": {\"color\": \"Green\", \"width\": 3}, \"name\": \"Reference\", \"type\": \"line\", \"x0\": 0, \"x1\": 1, \"xref\": \"paper\", \"y0\": 0.31784000000000073, \"y1\": 0.31784000000000073, \"yref\": \"y\"}], \"showlegend\": true, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"Index\"}}, \"yaxis\": {\"title\": {\"text\": \"citric.acid\"}}}}}, \"residual.sugar_distr\": {\"data\": [{\"histnorm\": \"probability\", \"marker\": {\"color\": \"#4d4d4d\"}, \"name\": \"Reference\", \"nbinsx\": 10, \"opacity\": 0.6, \"type\": \"histogram\", \"x\": [1.3, 6.3, 2.6, 6.0, 1.2, 2.3, 2.2, 1.1, 2.7, 3.5, 0.9, 10.4, 1.5, 5.7, 5.1, 17.85, 1.1, 4.55, 2.0, 6.5, 2.6, 1.0, 3.7, 1.7, 3.9, 11.8, 6.9, 1.9, 8.2, 8.9, 4.5, 14.8, 1.5, 2.1, 7.2, 1.9, 4.5, 1.2, 13.0, 4.6, 1.2, 1.4, 13.5, 1.2, 2.1, 1.4, 2.7, 5.6, 2.4, 1.9, 1.5, 18.15, 1.7, 1.8, 1.4, 2.0, 13.9, 10.7, 2.0, 8.6, 4.3, 1.4, 1.1, 1.3, 1.8, 3.1, 1.2, 5.0, 1.9, 2.3, 11.0, 8.8, 6.4, 2.5, 8.3, 2.4, 3.5, 2.5, 13.0, 16.4, 14.4, 1.3, 2.5, 1.4, 1.2, 9.1, 5.5, 5.4, 1.1, 13.3, 13.5, 2.5, 0.8, 2.0, 1.2, 6.0, 1.6, 2.2, 11.8, 3.4, 5.0, 8.1, 2.7, 13.1, 1.6, 3.0, 1.3, 2.6, 2.6, 1.2, 2.4, 8.1, 1.8, 7.4, 17.8, 1.1, 8.55, 1.4, 7.0, 2.1, 1.5, 6.1, 2.4, 5.9, 16.0, 8.3, 4.8, 5.7, 2.2, 8.9, 3.6, 1.1, 2.1, 8.6, 2.3, 11.8, 13.0, 5.0, 7.1, 1.1, 10.6, 7.7, 1.1, 1.2, 1.7, 2.6, 4.2, 2.2, 1.5, 4.9, 1.8, 1.4, 3.0, 11.0, 12.0, 3.75, 1.5, 6.2, 12.1, 2.1, 7.8, 1.1, 8.9, 2.2, 13.7, 3.2, 1.3, 2.0, 1.4, 1.1, 13.1, 1.0, 2.2, 2.3, 1.2, 8.4, 6.4, 2.4, 7.7, 10.8, 4.5, 1.2, 1.9, 1.2, 0.9, 31.6, 1.2, 1.8, 1.5, 2.2, 13.0, 3.9, 1.4, 1.8, 2.0, 8.1, 1.6, 4.3, 16.5, 2.1, 12.8, 2.3, 9.1, 1.5, 7.5, 1.9, 10.5, 12.2, 2.2, 1.7, 2.1, 12.1, 2.0, 2.3, 1.5, 9.5, 2.0, 4.0, 1.9, 1.4, 14.75, 12.5, 3.5, 2.5, 4.5, 5.7, 2.6, 6.4, 2.4, 2.8, 2.7, 0.9, 5.8, 8.6, 9.2, 4.7, 2.2, 2.2, 10.8, 1.4, 6.4, 1.4, 1.7, 19.8, 14.4, 14.7, 1.4, 1.6, 13.4, 8.1, 14.9, 5.8, 14.5, 1.0, 3.2, 7.1, 1.8, 8.8, 15.3, 1.5, 13.3, 11.4, 2.0, 1.4, 2.9, 2.3, 6.6, 11.9, 9.9, 5.1, 2.7, 18.35, 11.2, 1.4, 1.8, 1.7, 14.5, 2.0, 1.0, 6.4, 9.2, 2.0, 1.8, 1.6, 11.1, 1.1, 3.0, 7.6, 1.7, 6.0, 1.6, 4.8, 4.6, 1.8, 2.4, 6.1, 1.2, 1.7, 2.1, 11.5, 7.0, 1.2, 1.7, 11.0, 1.5, 1.4, 3.6, 2.8, 1.1, 1.9, 1.8, 2.2, 8.3, 16.05, 8.0, 2.3, 1.6, 1.3, 2.1, 1.3, 9.2, 2.0, 1.1, 2.0, 4.9, 11.95, 6.5, 1.8, 13.1, 2.3, 1.9, 5.1, 7.1, 13.9, 12.1, 10.1, 4.8, 2.3, 0.9, 1.4, 3.6, 1.9, 7.8, 1.4, 3.6, 4.2, 1.3, 5.35, 5.9, 6.5, 3.0, 3.4, 1.1, 18.15, 1.6, 1.6, 6.5, 2.1, 8.0, 5.7, 14.4, 14.55, 1.6, 6.1, 1.3, 6.2, 8.8, 4.8, 1.5, 2.9, 16.2, 1.2, 2.1, 12.2, 4.5, 10.2, 1.8, 17.8, 8.9, 2.8, 7.8, 8.1, 10.0, 0.9, 15.0, 14.2, 1.1, 14.4, 1.8, 6.8, 1.4, 1.1, 1.3, 17.4, 6.5, 3.7, 14.6, 1.7, 16.05, 12.8, 2.0, 2.6, 2.0, 2.3, 2.1, 1.6, 1.1, 1.9, 2.9, 5.9, 3.6, 4.4, 1.8, 1.1, 1.7, 2.2, 12.2, 1.2, 3.3, 12.1, 2.6, 1.2, 1.1, 3.2, 2.2, 4.5, 4.2, 1.4, 1.7, 4.6, 4.6, 2.0, 1.5, 3.3, 1.7, 1.8, 2.1, 7.4, 7.3, 2.2, 13.5, 10.2, 2.0, 6.4, 2.2, 7.5, 1.4, 7.0, 16.2, 10.4, 8.1, 3.8, 1.6, 3.9, 1.6, 1.6, 18.4, 10.2, 7.8, 2.5, 2.3, 1.0, 1.5, 7.2, 13.9, 2.7, 2.7, 2.1, 4.8, 2.8, 10.8, 6.9, 2.0, 1.8, 2.2, 2.4, 1.3, 1.2, 3.5, 1.5, 4.7, 2.4, 7.4, 1.8, 2.3, 5.7, 6.8, 1.5, 2.1, 1.4, 13.2, 9.25, 7.9, 1.0, 8.6, 3.85, 18.95, 10.0, 1.4, 1.8, 8.3, 4.5, 15.4, 2.4, 2.0, 1.0, 1.2, 2.6, 10.7, 1.5, 1.9, 2.1, 1.5, 1.7, 0.8, 7.6, 2.8, 1.9, 6.3, 3.2, 8.95, 1.6, 2.1, 10.7, 2.0, 8.2, 5.0, 8.3, 1.35, 1.3, 3.6, 10.7, 15.6, 1.9, 1.9, 5.0, 19.25, 4.7, 13.8, 13.8, 2.5, 15.55, 8.5, 12.4, 6.0, 1.3, 1.4, 2.3, 2.0, 2.4, 1.0, 12.2, 7.3, 2.3, 1.5, 13.1, 10.4, 1.4, 1.7, 10.2, 2.3, 1.1, 13.0, 1.5, 2.2, 3.5, 4.0, 3.5, 14.1, 3.4, 1.7, 1.9, 2.6, 2.2, 11.8, 0.8, 4.8, 1.4, 1.2, 1.4, 6.7, 10.0, 2.2, 12.5, 5.4, 15.6, 12.8, 1.1, 1.4, 6.2, 4.4, 13.7, 1.0, 9.2, 12.1, 1.8, 2.8, 1.6, 2.5, 11.0, 9.85, 1.4, 8.2, 2.9, 11.0, 0.9, 7.3, 2.6, 15.4, 0.9, 14.8, 2.2, 6.9, 1.8, 3.1, 4.25, 17.8, 4.8, 5.7, 8.3, 8.6, 3.6, 1.9, 26.05, 4.5, 2.7, 15.2, 3.2, 5.7, 1.9, 1.9, 2.5, 14.6, 2.5, 7.25, 12.2, 4.7, 1.1, 5.7, 1.6, 1.3, 6.3, 18.8, 1.4, 6.55, 7.7, 1.6, 7.2, 1.2, 1.6, 1.3, 2.3, 19.35, 6.3, 16.5, 3.3, 10.4, 1.4, 6.2, 6.3, 7.7, 14.7, 9.8, 1.2, 2.6, 1.0, 1.4, 5.3, 11.9, 2.5, 6.9, 4.6, 8.65, 14.9, 2.0, 4.9, 4.5, 0.9, 1.8, 2.5, 1.2, 1.0, 1.9, 2.8, 6.2, 1.3, 4.2, 3.7, 4.1, 2.5, 2.7, 6.5, 2.9, 9.1, 1.2, 2.1, 1.3, 15.3, 6.1, 1.2, 9.1, 6.3, 6.9, 13.6, 1.1, 1.4, 2.1, 1.4, 5.0, 1.5, 3.2, 1.55, 1.5, 10.4, 4.2, 6.7, 2.3, 9.9, 11.0, 2.3, 3.2, 1.9, 1.6, 3.3, 19.1, 1.2, 2.2, 4.8, 4.9, 1.1, 9.3, 2.6, 1.9, 11.2, 8.0, 13.4, 5.1, 12.6, 1.95, 4.7, 1.0, 8.9, 1.7, 11.2, 4.8, 1.4, 2.2, 1.3, 18.0, 17.3, 7.2, 1.3, 2.3, 7.8, 17.8, 4.1, 8.9, 1.7, 13.0, 14.9, 1.1, 2.1, 12.3, 1.5, 14.6, 2.3, 1.1, 6.5, 12.1, 14.2, 1.2, 1.5, 9.6, 5.7, 2.7, 1.4, 12.7, 9.1, 1.9, 10.5, 14.3, 6.5, 8.1, 1.1, 4.7, 1.0, 4.4, 1.6, 11.8, 3.6, 7.4, 12.8, 0.8, 1.5, 10.5, 2.2, 1.4, 12.2, 2.3, 1.6, 3.8, 2.8, 1.4, 8.2, 1.8, 1.3, 1.0, 1.9, 0.9, 12.15, 2.0, 4.3, 3.5, 5.6, 1.6, 2.4, 6.9, 7.7, 4.2, 1.3, 15.55, 12.9, 2.3, 4.0, 8.7, 13.6, 1.2, 5.4, 8.6, 1.5, 6.4, 3.1, 15.15, 5.2, 4.8, 1.3, 1.4, 2.4, 5.9, 2.7, 6.8, 1.1, 2.2, 11.2, 2.0, 3.3, 1.1, 7.5, 2.8, 2.1, 2.6, 1.1, 2.0, 1.6, 5.0, 12.9, 9.5, 12.1, 1.9, 1.4, 3.0, 9.7, 1.3, 14.0, 2.1, 1.8, 1.6, 1.6, 3.5, 7.3, 1.1, 2.4, 7.6, 1.1, 1.9, 1.6, 4.8, 1.5, 1.5, 17.55, 7.6, 3.2, 0.6, 18.35, 2.2, 1.4, 15.6, 1.6, 1.6, 2.2, 10.7, 4.8, 7.4, 4.0, 7.6, 2.1, 12.8, 2.4, 1.8, 8.3, 2.7, 7.0, 1.1, 2.3, 1.8, 1.9, 1.2, 1.7, 7.9, 16.45, 3.1, 18.6, 2.7, 3.0, 11.5, 6.9, 2.4, 1.8, 7.4, 2.2, 8.8, 1.2, 1.8, 14.9, 1.7, 11.6, 2.8, 15.9, 4.2, 2.0, 15.5, 1.8, 1.7, 8.0, 11.2, 13.9, 9.65, 3.3, 7.5, 7.5, 2.1, 2.5, 7.0, 2.3, 3.3, 3.8, 2.1, 2.0, 8.3, 2.2, 10.9, 1.2, 22.0, 1.6, 2.2, 2.4, 1.6, 15.4, 1.0, 10.4, 2.4, 1.9, 14.9, 2.5, 0.8, 12.7, 9.7, 2.5, 1.5, 8.1, 1.3, 1.6, 9.6, 6.1, 2.2, 9.2, 14.5, 13.55, 10.5, 15.8, 1.3, 1.6, 8.1, 1.0, 1.8, 2.0, 1.1, 7.4, 2.7, 9.4, 1.3, 16.7, 3.5, 5.1, 10.5, 1.7, 13.1, 1.3, 2.3, 2.0]}, {\"histnorm\": \"probability\", \"marker\": {\"color\": \"#ed0400\"}, \"name\": \"Current\", \"nbinsx\": 10, \"opacity\": 0.6, \"type\": \"histogram\", \"x\": [3.5, 2.5, 14.3, 1.2, 2.2, 4.7, 7.0, 2.3, 2.3, 1.2, 1.2, 8.0, 2.1, 1.6, 2.7, 1.3, 19.45, 1.2, 9.65, 22.0, 4.3, 1.2, 1.4, 13.15, 1.6, 1.7, 2.8, 2.1, 3.2, 14.2, 2.3, 4.3, 14.5, 1.2, 0.9, 6.4, 1.1, 7.2, 14.3, 7.2, 1.2, 9.1, 3.95, 18.1, 3.6, 4.7, 1.8, 7.6, 6.2, 15.0, 6.4, 2.7, 4.9, 1.5, 1.1, 1.2, 1.4, 17.2, 2.6, 7.9, 3.95, 1.9, 7.5, 2.5, 4.9, 14.0, 11.8, 1.6, 13.0, 2.0, 2.3, 16.85, 1.9, 1.7, 10.3, 2.1, 1.7, 14.8, 2.0, 3.9, 9.3, 1.0, 0.7, 7.0, 14.1, 8.2, 0.8, 11.95, 1.8, 11.4, 1.7, 2.3, 1.1, 20.3, 5.5, 9.7, 7.1, 2.1, 2.5, 2.3, 8.1, 6.7, 1.0, 1.8, 1.3, 14.4, 1.7, 2.4, 2.3, 11.0, 7.4, 13.2, 12.3, 19.95, 1.7, 1.5, 1.7, 4.9, 1.9, 1.5, 1.0, 2.4, 1.4, 4.1, 2.0, 2.1, 9.7, 3.1, 1.5, 14.5, 11.2, 15.2, 6.6, 1.4, 1.6, 12.7, 1.7, 7.4, 3.6, 1.4, 1.6, 6.5, 1.4, 4.6, 3.4, 2.2, 1.8, 2.1, 7.1, 19.3, 9.9, 2.0, 2.1, 14.4, 6.1, 7.0, 10.9, 2.0, 18.35, 6.9, 9.0, 2.5, 2.8, 13.0, 2.4, 31.6, 2.6, 8.2, 1.7, 1.8, 5.0, 2.2, 2.7, 1.4, 12.2, 3.2, 2.0, 4.2, 11.8, 1.5, 2.8, 1.4, 2.1, 10.5, 2.1, 1.9, 4.7, 2.6, 1.8, 5.1, 1.8, 1.7, 15.4, 4.2, 17.5, 1.4, 17.1, 1.6, 2.5, 5.2, 8.3, 7.7, 2.9, 1.6, 4.4, 3.2, 2.8, 8.5, 10.7, 2.0, 13.1, 1.4, 1.2, 13.8, 1.9, 5.6, 6.2, 3.0, 1.6, 1.1, 10.3, 1.0, 11.7, 16.2, 2.1, 1.6, 2.5, 1.3, 2.8, 1.5, 2.0, 1.6, 1.3, 14.2, 1.6, 2.0, 6.1, 7.7, 8.2, 2.5, 1.2, 4.6, 2.2, 2.4, 1.1, 1.4, 1.1, 15.2, 4.7, 1.2, 7.5, 18.75, 4.2, 1.7, 1.0, 1.6, 7.8, 3.5, 2.4, 1.9, 9.3, 5.2, 1.6, 12.6, 10.8, 2.0, 1.3, 3.4, 1.7, 9.0, 1.8, 2.1, 4.8, 1.7, 4.8, 20.7, 13.7, 1.2, 6.1, 2.2, 7.1, 1.9, 7.4, 17.3, 2.0, 2.2, 2.3, 14.3, 4.7, 1.9, 4.9, 3.7, 1.6, 13.8, 8.2, 5.7, 2.1, 1.7, 4.4, 5.9, 8.7, 2.1, 11.7, 4.3, 3.9, 6.55, 1.6, 9.7, 12.9, 5.4, 2.2, 1.7, 8.1, 2.9, 2.5, 2.2, 7.6, 6.5, 18.1, 1.3, 1.8, 3.3, 6.3, 1.5, 2.1, 1.9, 1.8, 5.3, 1.4, 7.3, 2.4, 7.1, 13.7, 5.1, 13.7, 10.2, 3.0, 5.3, 1.6, 2.4, 1.5, 14.5, 4.1, 6.9, 8.0, 7.1, 2.1, 11.8, 1.9, 1.3, 3.3, 1.2, 10.7, 1.4, 9.1, 1.2, 5.5, 12.3, 4.9, 8.3, 2.1, 7.9, 14.95, 1.8, 11.1, 1.8, 1.9, 1.7, 2.3, 1.6, 2.0, 13.9, 14.5, 1.2, 7.0, 1.2, 2.7, 1.6, 12.0, 11.1, 14.1, 2.0, 5.1, 2.7, 12.85, 1.4, 15.6, 14.3, 14.8, 1.6, 1.0, 2.0, 1.1, 11.0, 2.1, 2.7, 2.1, 7.2, 1.2, 5.4, 4.6, 2.0, 2.6, 12.6, 7.4, 1.8, 3.0, 10.2, 8.6, 4.2, 2.5, 2.6, 8.8, 1.8, 1.3, 10.4, 6.6, 7.2, 1.1, 6.7, 1.7, 1.2, 2.2, 1.8, 1.7, 6.2, 5.1, 10.8, 7.75, 2.7, 6.6, 1.0, 2.3, 7.1, 1.5, 3.0, 12.1, 2.4, 13.3, 2.0, 2.1, 2.8, 7.75, 1.6, 15.8, 1.9, 5.0, 20.8, 9.5, 6.4, 0.8, 13.3, 2.4, 1.4, 5.5, 7.7, 4.1, 1.5, 6.0, 1.4, 13.2, 2.1, 1.5, 12.1, 5.4, 8.2, 1.8, 2.6, 16.8, 5.0, 10.0, 12.6, 4.4, 13.0, 1.1, 2.0, 1.2, 11.6, 1.3, 3.5, 15.6, 1.4, 2.9, 13.5, 5.7, 15.5, 4.8, 4.4, 15.55, 5.1, 2.7, 3.8, 1.8, 14.2, 5.3, 1.9, 7.8, 12.5, 1.1, 2.6, 10.4, 1.2, 4.1, 1.6, 5.6, 8.6, 14.2, 16.05, 12.5, 10.4, 8.3, 2.0, 3.8, 10.7, 8.2, 2.1, 1.9, 1.9, 9.8, 1.8, 6.5, 0.9, 2.7, 2.6, 13.0, 1.9, 1.4, 13.4, 16.2, 1.4, 10.2, 4.9, 2.0, 1.0, 7.0, 11.6, 12.7, 10.3, 2.4, 6.2, 8.6, 2.6, 15.55, 15.8, 1.4, 7.3, 16.0, 7.0, 1.5, 5.1, 16.8, 3.2, 1.2, 6.2, 2.7, 1.2, 1.0, 4.6, 5.5, 1.1, 15.1, 1.1, 10.8, 2.2, 1.4, 10.2, 11.75, 6.0, 7.4, 8.1, 17.8, 7.4, 1.3, 7.9, 1.9, 2.1, 2.3, 1.6, 1.2, 2.4, 5.1, 7.4, 3.75, 19.95, 3.8, 16.1, 5.4, 7.8, 1.4, 2.6, 18.95, 2.3, 10.8, 2.0, 1.5, 2.0, 2.1, 4.4, 1.2, 1.8, 17.5, 6.4, 2.3, 14.5, 11.8, 12.8, 1.8, 13.2, 13.3, 1.4, 14.7, 4.7, 14.9, 15.4, 1.4, 2.5, 1.25, 1.1, 1.5, 10.3, 3.0, 15.7, 6.9, 2.2, 12.9, 6.8, 2.4, 7.1, 7.0, 1.2, 10.2, 7.3, 1.8, 5.0, 2.1, 2.65, 2.4, 2.1, 2.8, 1.1, 7.4, 11.5, 1.6, 1.3, 2.6, 6.8, 1.2, 1.7, 1.4, 2.7, 1.9, 1.9, 11.1, 9.7, 4.3, 13.2, 1.9, 1.4, 1.6, 11.2, 12.8, 8.0, 9.2, 12.8, 6.8, 1.6, 10.4, 1.7, 2.0, 8.6, 5.7, 3.2, 3.9, 2.0, 1.2, 1.6, 2.4, 2.0, 1.0, 17.9, 2.5, 14.7, 1.8, 1.4, 1.5, 1.6, 17.55, 1.8, 13.55, 1.0, 12.0, 17.1, 10.7, 3.6, 3.85, 1.9, 4.0, 8.8, 1.2, 15.4, 6.5, 1.4, 1.0, 9.1, 1.4, 1.1, 3.0, 2.5, 14.3, 2.0, 6.6, 8.1, 2.4, 7.7, 15.5, 1.7, 11.3, 5.7, 2.3, 2.0, 9.6, 0.9, 1.4, 5.9, 1.5, 1.4, 5.4, 2.0, 6.3, 4.7, 13.7, 2.5, 6.1, 1.8, 7.4, 1.6, 16.0, 10.7, 10.6, 9.3, 2.5, 10.55, 2.9, 16.3, 1.7, 9.6, 4.6, 8.9, 2.2, 2.5, 1.5, 2.4, 1.6, 14.75, 11.9, 11.9, 2.4, 2.4, 3.5, 2.6, 1.3, 6.0, 1.6, 1.8, 1.5, 2.8, 1.2, 2.0, 1.9, 1.3, 8.9, 10.5, 12.8, 1.2, 1.5, 2.6, 1.9, 16.0, 17.85, 7.7, 6.4, 2.0, 2.3, 2.9, 1.6, 1.8, 2.1, 1.1, 1.6, 3.7, 8.0, 15.6, 1.9, 8.8, 2.7, 2.4, 6.7, 11.2, 7.3, 2.6, 17.75, 2.5, 3.7, 1.15, 2.6, 1.3, 1.3, 8.3, 1.3, 11.2, 5.2, 3.8, 4.7, 1.2, 9.2, 12.7, 2.5, 0.9, 4.5, 1.35, 7.4, 2.5, 13.2, 1.8, 2.1, 7.7, 5.25, 7.0, 3.65, 15.75, 1.9, 13.65, 8.5, 2.7, 5.2, 4.9, 2.2, 9.15, 0.9, 7.8, 15.8, 1.9, 2.5, 0.9, 14.0, 2.6, 2.8, 2.3, 1.8, 12.8, 17.5, 1.8, 2.6, 8.25, 1.9, 1.6, 1.5, 7.0, 11.9, 6.9, 12.1, 2.4, 1.0, 1.3, 1.2, 6.7, 14.8, 12.7, 13.7, 2.0, 3.1, 10.1, 1.3, 1.6, 9.25, 15.4, 12.9, 8.1, 1.6, 1.0, 2.0, 4.7, 1.7, 10.8, 1.1, 19.95, 1.1, 1.2, 9.7, 6.7, 1.3, 1.6, 17.8, 2.0, 2.3, 13.6, 5.3, 13.6, 1.7, 11.4, 1.6, 8.1, 1.4, 2.6, 1.3, 2.4, 10.6, 4.6, 2.2, 1.7, 2.8, 2.0, 1.5, 5.0, 2.0, 2.55, 2.6, 4.6, 12.7, 1.7, 17.8, 5.6, 3.45, 5.7, 6.3, 10.1, 6.7, 17.9, 1.4, 8.2, 7.1, 8.0, 2.0, 1.3, 2.5, 0.8, 11.4, 2.0, 1.9, 1.3, 1.2, 1.7, 1.1, 1.1, 9.85, 1.2, 1.1, 1.6, 2.1, 2.2, 9.5, 1.7, 8.0, 13.65, 1.3, 0.8, 7.9, 1.3, 4.4, 9.55, 1.1, 17.1, 7.9, 1.8, 2.2, 5.2, 1.1, 8.1, 5.9, 2.4, 2.4, 6.0, 2.0, 2.0, 2.9, 1.4, 2.1, 2.0, 2.1, 5.2, 1.3, 5.8, 1.8, 8.2, 2.5, 2.0, 2.3, 15.1, 2.3, 16.8, 13.8, 17.1, 1.5, 12.2, 1.3, 8.2, 4.3, 2.7, 2.0, 8.9]}], \"layout\": {\"legend\": {\"orientation\": \"h\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"residual.sugar\"}}, \"yaxis\": {\"title\": {\"text\": \"Share\"}}}}, \"residual.sugar_drift\": {\"title\": \"\", \"size\": 2, \"text\": \"\", \"type\": \"big_graph\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"Current\", \"type\": \"scatter\", \"x\": [443, 319, 703, 526, 76, 963, 1260, 532, 1561, 517, 506, 1557, 271, 1058, 1381, 1039, 542, 107, 161, 1301, 519, 1021, 1213, 223, 1286, 1426, 1234, 587, 1183, 182, 567, 1492, 724, 1262, 1509, 657, 1137, 913, 1445, 342, 781, 14, 971, 1072, 1254, 678, 1175, 1481, 1370, 1443, 18, 1151, 1380, 434, 1430, 554, 53, 535, 1050, 427, 259, 124, 961, 1488, 1563, 720, 1291, 1061, 425, 846, 1147, 204, 1317, 618, 1088, 927, 1196, 582, 1194, 360, 1449, 862, 1135, 1453, 1442, 1017, 268, 685, 317, 775, 1086, 942, 1052, 801, 1362, 219, 379, 649, 1195, 479, 1542, 609, 930, 1105, 34, 708, 686, 1132, 693, 733, 1562, 1190, 473, 737, 672, 969, 858, 5, 1556, 298, 80, 940, 361, 1154, 1545, 1622, 784, 19, 1522, 996, 54, 1415, 1564, 1593, 1236, 9, 353, 1222, 113, 1010, 1263, 877, 82, 381, 818, 1210, 1409, 66, 254, 817, 92, 1340, 122, 1357, 511, 1546, 692, 17, 1248, 414, 52, 1296, 191, 175, 233, 900, 785, 935, 1298, 156, 487, 159, 481, 1255, 1597, 253, 1491, 841, 187, 914, 979, 249, 1114, 1366, 814, 716, 465, 875, 1242, 670, 299, 593, 436, 728, 141, 229, 1057, 912, 994, 648, 799, 1164, 1073, 4, 516, 152, 1267, 1237, 752, 1150, 825, 402, 1277, 575, 1437, 838, 390, 1505, 1093, 1026, 1611, 31, 674, 866, 1328, 616, 861, 897, 148, 303, 1451, 602, 1125, 1614, 1047, 1462, 1148, 574, 899, 1327, 89, 530, 408, 1192, 177, 520, 993, 326, 992, 717, 895, 1421, 984, 240, 85, 557, 278, 938, 1425, 958, 1232, 1149, 171, 1220, 227, 891, 489, 1391, 1184, 1032, 393, 726, 192, 260, 880, 1592, 1537, 491, 759, 1473, 959, 1454, 1015, 965, 1393, 1489, 1256, 133, 202, 1036, 438, 483, 666, 461, 142, 1181, 1580, 308, 538, 170, 310, 743, 1101, 1179, 315, 22, 1529, 45, 879, 1110, 61, 522, 1397, 829, 576, 1193, 1202, 1549, 1375, 27, 527, 1186, 1273, 828, 539, 1049, 1014, 412, 1091, 1497, 1595, 347, 2, 844, 1490, 632, 211, 1582, 918, 1217, 1115, 744, 459, 579, 771, 96, 178, 108, 1516, 805, 1240, 440, 619, 1, 1315, 1239, 1347, 512, 48, 722, 1517, 1621, 446, 565, 568, 796, 231, 1070, 1063, 215, 513, 704, 354, 55, 881, 746, 641, 762, 279, 1145, 1468, 224, 302, 911, 218, 1079, 874, 1266, 792, 1136, 372, 295, 364, 580, 1615, 688, 1560, 333, 467, 968, 399, 760, 740, 953, 1520, 1446, 1214, 615, 524, 546, 1495, 1324, 452, 1515, 432, 863, 442, 847, 276, 456, 184, 1116, 1200, 458, 1508, 1087, 1478, 376, 1479, 563, 1146, 1507, 42, 944, 823, 1228, 656, 1227, 198, 309, 761, 1158, 549, 47, 1209, 529, 933, 220, 1624, 1591, 651, 536, 362, 1314, 420, 564, 475, 482, 140, 679, 1436, 1334, 77, 39, 570, 962, 808, 981, 322, 1471, 251, 695, 1128, 813, 757, 820, 853, 831, 1246, 58, 553, 597, 241, 1288, 330, 1005, 789, 1617, 56, 1126, 411, 548, 501, 1211, 642, 558, 1605, 745, 878, 1056, 667, 435, 29, 270, 35, 1157, 422, 1310, 114, 1524, 1422, 689, 1018, 1168, 1360, 985, 1191, 793, 1363, 1504, 581, 644, 1199, 621, 1612, 494, 665, 431, 1095, 638, 1042, 1404, 1030, 40, 1121, 75, 1588, 1417, 247, 713, 1590, 186, 646, 312, 8, 1551, 1302, 1044, 768, 884, 1585, 1618, 826, 445, 712, 464, 1308, 195, 655, 1487, 1389, 1356, 243, 401, 572, 1074, 810, 477, 1460, 1544, 1182, 285, 471, 936, 1238, 578, 1034, 1535, 1513, 426, 1311, 1001, 986, 1038, 980, 1064, 620, 982, 1565, 194, 474, 1428, 569, 1165, 49, 1333, 1401, 1307, 1076, 991, 1566, 44, 1342, 245, 943, 300, 583, 1013, 269, 1548, 313, 776, 283, 1444, 540, 406, 338, 466, 363, 1002, 320, 1264, 1089, 70, 1027, 500, 10, 907, 505, 1295, 864, 1432, 64, 1122, 1543, 416, 898, 654, 205, 328, 486, 999, 1377, 970, 528, 1558, 418, 1379, 1299, 1378, 590, 1247, 1174, 472, 1323, 131, 15, 439, 1528, 476, 725, 1203, 1109, 1003, 1365, 103, 1279, 60, 871, 78, 391, 165, 1335, 1410, 1129, 960, 349, 185, 1464, 371, 117, 1398, 252, 507, 1613, 311, 1419, 395, 987, 358, 263, 359, 1559, 1305, 1506, 1376, 1055, 634, 1552, 16, 51, 1258, 493, 601, 997, 351, 711, 1604, 1486, 1339, 794, 97, 1475, 1423, 196, 748, 183, 1433, 1579, 613, 1536, 989, 682, 533, 610, 687, 892, 81, 896, 397, 267, 589, 386, 795, 1416, 132, 265, 1609, 1461, 883, 88, 840, 988, 1354, 676, 916, 629, 1269, 924, 294, 261, 1541, 1081, 1348, 1576, 405, 1616, 356, 608, 1097, 239, 1249, 1099, 1403, 119, 1096, 977, 751, 374, 453, 110, 1336, 1390, 905, 1287, 503, 1031, 1331, 1224, 729, 410, 1540, 367, 1607, 384, 200, 65, 1358, 1394, 1023, 272, 1418, 955, 677, 238, 1133, 974, 541, 478, 1257, 1265, 1465, 1589, 1326, 188, 1083, 681, 906, 1092, 1276, 316, 214, 1078, 1502, 1084, 660, 1142, 531, 255, 30, 662, 1253, 230, 157, 1343, 385, 1169, 380, 1188, 721, 264, 787, 101, 13, 1274, 68, 1024, 1170, 1156, 71, 1577, 566, 1372, 1245, 798, 523, 626, 495, 937, 155, 887, 758, 921, 790, 1349, 1230, 366, 1531, 983, 839, 228, 417, 206, 742, 79, 190, 492, 948, 145, 923, 318, 824, 1374, 1124, 1463, 596, 457, 144, 1359, 1292, 1045, 764, 842, 1140, 1408, 995, 904, 592, 1458, 135, 83, 1062, 154, 1440, 1283, 773, 1414, 127, 1177, 1318, 1413, 403, 150, 346, 413, 1303, 1523, 1619, 394, 1261, 1054, 208, 496, 352, 95, 625, 571, 37, 485, 143, 946, 158, 552, 1527, 1029, 518, 1180, 1218, 236, 1100, 222, 1431, 345, 1459, 120, 661, 588, 1623, 1493, 62, 1429, 811, 193, 235, 181, 1320, 389, 1103, 521, 669, 332, 258, 1369, 1538, 957, 382, 1382, 1567, 331, 934, 614, 262, 893, 6, 266, 769, 38, 901, 1573, 1578, 545, 118, 783, 652, 1025, 706, 105, 1189, 484, 1569, 630, 683, 20, 870, 242, 50, 162, 915, 966, 441, 867, 731, 1102, 1000, 1268, 1223, 822, 301, 723, 172], \"y\": [3.5, 2.5, 14.3, 1.2, 2.2, 4.7, 7.0, 2.3, 2.3, 1.2, 1.2, 8.0, 2.1, 1.6, 2.7, 1.3, 19.45, 1.2, 9.65, 22.0, 4.3, 1.2, 1.4, 13.15, 1.6, 1.7, 2.8, 2.1, 3.2, 14.2, 2.3, 4.3, 14.5, 1.2, 0.9, 6.4, 1.1, 7.2, 14.3, 7.2, 1.2, 9.1, 3.95, 18.1, 3.6, 4.7, 1.8, 7.6, 6.2, 15.0, 6.4, 2.7, 4.9, 1.5, 1.1, 1.2, 1.4, 17.2, 2.6, 7.9, 3.95, 1.9, 7.5, 2.5, 4.9, 14.0, 11.8, 1.6, 13.0, 2.0, 2.3, 16.85, 1.9, 1.7, 10.3, 2.1, 1.7, 14.8, 2.0, 3.9, 9.3, 1.0, 0.7, 7.0, 14.1, 8.2, 0.8, 11.95, 1.8, 11.4, 1.7, 2.3, 1.1, 20.3, 5.5, 9.7, 7.1, 2.1, 2.5, 2.3, 8.1, 6.7, 1.0, 1.8, 1.3, 14.4, 1.7, 2.4, 2.3, 11.0, 7.4, 13.2, 12.3, 19.95, 1.7, 1.5, 1.7, 4.9, 1.9, 1.5, 1.0, 2.4, 1.4, 4.1, 2.0, 2.1, 9.7, 3.1, 1.5, 14.5, 11.2, 15.2, 6.6, 1.4, 1.6, 12.7, 1.7, 7.4, 3.6, 1.4, 1.6, 6.5, 1.4, 4.6, 3.4, 2.2, 1.8, 2.1, 7.1, 19.3, 9.9, 2.0, 2.1, 14.4, 6.1, 7.0, 10.9, 2.0, 18.35, 6.9, 9.0, 2.5, 2.8, 13.0, 2.4, 31.6, 2.6, 8.2, 1.7, 1.8, 5.0, 2.2, 2.7, 1.4, 12.2, 3.2, 2.0, 4.2, 11.8, 1.5, 2.8, 1.4, 2.1, 10.5, 2.1, 1.9, 4.7, 2.6, 1.8, 5.1, 1.8, 1.7, 15.4, 4.2, 17.5, 1.4, 17.1, 1.6, 2.5, 5.2, 8.3, 7.7, 2.9, 1.6, 4.4, 3.2, 2.8, 8.5, 10.7, 2.0, 13.1, 1.4, 1.2, 13.8, 1.9, 5.6, 6.2, 3.0, 1.6, 1.1, 10.3, 1.0, 11.7, 16.2, 2.1, 1.6, 2.5, 1.3, 2.8, 1.5, 2.0, 1.6, 1.3, 14.2, 1.6, 2.0, 6.1, 7.7, 8.2, 2.5, 1.2, 4.6, 2.2, 2.4, 1.1, 1.4, 1.1, 15.2, 4.7, 1.2, 7.5, 18.75, 4.2, 1.7, 1.0, 1.6, 7.8, 3.5, 2.4, 1.9, 9.3, 5.2, 1.6, 12.6, 10.8, 2.0, 1.3, 3.4, 1.7, 9.0, 1.8, 2.1, 4.8, 1.7, 4.8, 20.7, 13.7, 1.2, 6.1, 2.2, 7.1, 1.9, 7.4, 17.3, 2.0, 2.2, 2.3, 14.3, 4.7, 1.9, 4.9, 3.7, 1.6, 13.8, 8.2, 5.7, 2.1, 1.7, 4.4, 5.9, 8.7, 2.1, 11.7, 4.3, 3.9, 6.55, 1.6, 9.7, 12.9, 5.4, 2.2, 1.7, 8.1, 2.9, 2.5, 2.2, 7.6, 6.5, 18.1, 1.3, 1.8, 3.3, 6.3, 1.5, 2.1, 1.9, 1.8, 5.3, 1.4, 7.3, 2.4, 7.1, 13.7, 5.1, 13.7, 10.2, 3.0, 5.3, 1.6, 2.4, 1.5, 14.5, 4.1, 6.9, 8.0, 7.1, 2.1, 11.8, 1.9, 1.3, 3.3, 1.2, 10.7, 1.4, 9.1, 1.2, 5.5, 12.3, 4.9, 8.3, 2.1, 7.9, 14.95, 1.8, 11.1, 1.8, 1.9, 1.7, 2.3, 1.6, 2.0, 13.9, 14.5, 1.2, 7.0, 1.2, 2.7, 1.6, 12.0, 11.1, 14.1, 2.0, 5.1, 2.7, 12.85, 1.4, 15.6, 14.3, 14.8, 1.6, 1.0, 2.0, 1.1, 11.0, 2.1, 2.7, 2.1, 7.2, 1.2, 5.4, 4.6, 2.0, 2.6, 12.6, 7.4, 1.8, 3.0, 10.2, 8.6, 4.2, 2.5, 2.6, 8.8, 1.8, 1.3, 10.4, 6.6, 7.2, 1.1, 6.7, 1.7, 1.2, 2.2, 1.8, 1.7, 6.2, 5.1, 10.8, 7.75, 2.7, 6.6, 1.0, 2.3, 7.1, 1.5, 3.0, 12.1, 2.4, 13.3, 2.0, 2.1, 2.8, 7.75, 1.6, 15.8, 1.9, 5.0, 20.8, 9.5, 6.4, 0.8, 13.3, 2.4, 1.4, 5.5, 7.7, 4.1, 1.5, 6.0, 1.4, 13.2, 2.1, 1.5, 12.1, 5.4, 8.2, 1.8, 2.6, 16.8, 5.0, 10.0, 12.6, 4.4, 13.0, 1.1, 2.0, 1.2, 11.6, 1.3, 3.5, 15.6, 1.4, 2.9, 13.5, 5.7, 15.5, 4.8, 4.4, 15.55, 5.1, 2.7, 3.8, 1.8, 14.2, 5.3, 1.9, 7.8, 12.5, 1.1, 2.6, 10.4, 1.2, 4.1, 1.6, 5.6, 8.6, 14.2, 16.05, 12.5, 10.4, 8.3, 2.0, 3.8, 10.7, 8.2, 2.1, 1.9, 1.9, 9.8, 1.8, 6.5, 0.9, 2.7, 2.6, 13.0, 1.9, 1.4, 13.4, 16.2, 1.4, 10.2, 4.9, 2.0, 1.0, 7.0, 11.6, 12.7, 10.3, 2.4, 6.2, 8.6, 2.6, 15.55, 15.8, 1.4, 7.3, 16.0, 7.0, 1.5, 5.1, 16.8, 3.2, 1.2, 6.2, 2.7, 1.2, 1.0, 4.6, 5.5, 1.1, 15.1, 1.1, 10.8, 2.2, 1.4, 10.2, 11.75, 6.0, 7.4, 8.1, 17.8, 7.4, 1.3, 7.9, 1.9, 2.1, 2.3, 1.6, 1.2, 2.4, 5.1, 7.4, 3.75, 19.95, 3.8, 16.1, 5.4, 7.8, 1.4, 2.6, 18.95, 2.3, 10.8, 2.0, 1.5, 2.0, 2.1, 4.4, 1.2, 1.8, 17.5, 6.4, 2.3, 14.5, 11.8, 12.8, 1.8, 13.2, 13.3, 1.4, 14.7, 4.7, 14.9, 15.4, 1.4, 2.5, 1.25, 1.1, 1.5, 10.3, 3.0, 15.7, 6.9, 2.2, 12.9, 6.8, 2.4, 7.1, 7.0, 1.2, 10.2, 7.3, 1.8, 5.0, 2.1, 2.65, 2.4, 2.1, 2.8, 1.1, 7.4, 11.5, 1.6, 1.3, 2.6, 6.8, 1.2, 1.7, 1.4, 2.7, 1.9, 1.9, 11.1, 9.7, 4.3, 13.2, 1.9, 1.4, 1.6, 11.2, 12.8, 8.0, 9.2, 12.8, 6.8, 1.6, 10.4, 1.7, 2.0, 8.6, 5.7, 3.2, 3.9, 2.0, 1.2, 1.6, 2.4, 2.0, 1.0, 17.9, 2.5, 14.7, 1.8, 1.4, 1.5, 1.6, 17.55, 1.8, 13.55, 1.0, 12.0, 17.1, 10.7, 3.6, 3.85, 1.9, 4.0, 8.8, 1.2, 15.4, 6.5, 1.4, 1.0, 9.1, 1.4, 1.1, 3.0, 2.5, 14.3, 2.0, 6.6, 8.1, 2.4, 7.7, 15.5, 1.7, 11.3, 5.7, 2.3, 2.0, 9.6, 0.9, 1.4, 5.9, 1.5, 1.4, 5.4, 2.0, 6.3, 4.7, 13.7, 2.5, 6.1, 1.8, 7.4, 1.6, 16.0, 10.7, 10.6, 9.3, 2.5, 10.55, 2.9, 16.3, 1.7, 9.6, 4.6, 8.9, 2.2, 2.5, 1.5, 2.4, 1.6, 14.75, 11.9, 11.9, 2.4, 2.4, 3.5, 2.6, 1.3, 6.0, 1.6, 1.8, 1.5, 2.8, 1.2, 2.0, 1.9, 1.3, 8.9, 10.5, 12.8, 1.2, 1.5, 2.6, 1.9, 16.0, 17.85, 7.7, 6.4, 2.0, 2.3, 2.9, 1.6, 1.8, 2.1, 1.1, 1.6, 3.7, 8.0, 15.6, 1.9, 8.8, 2.7, 2.4, 6.7, 11.2, 7.3, 2.6, 17.75, 2.5, 3.7, 1.15, 2.6, 1.3, 1.3, 8.3, 1.3, 11.2, 5.2, 3.8, 4.7, 1.2, 9.2, 12.7, 2.5, 0.9, 4.5, 1.35, 7.4, 2.5, 13.2, 1.8, 2.1, 7.7, 5.25, 7.0, 3.65, 15.75, 1.9, 13.65, 8.5, 2.7, 5.2, 4.9, 2.2, 9.15, 0.9, 7.8, 15.8, 1.9, 2.5, 0.9, 14.0, 2.6, 2.8, 2.3, 1.8, 12.8, 17.5, 1.8, 2.6, 8.25, 1.9, 1.6, 1.5, 7.0, 11.9, 6.9, 12.1, 2.4, 1.0, 1.3, 1.2, 6.7, 14.8, 12.7, 13.7, 2.0, 3.1, 10.1, 1.3, 1.6, 9.25, 15.4, 12.9, 8.1, 1.6, 1.0, 2.0, 4.7, 1.7, 10.8, 1.1, 19.95, 1.1, 1.2, 9.7, 6.7, 1.3, 1.6, 17.8, 2.0, 2.3, 13.6, 5.3, 13.6, 1.7, 11.4, 1.6, 8.1, 1.4, 2.6, 1.3, 2.4, 10.6, 4.6, 2.2, 1.7, 2.8, 2.0, 1.5, 5.0, 2.0, 2.55, 2.6, 4.6, 12.7, 1.7, 17.8, 5.6, 3.45, 5.7, 6.3, 10.1, 6.7, 17.9, 1.4, 8.2, 7.1, 8.0, 2.0, 1.3, 2.5, 0.8, 11.4, 2.0, 1.9, 1.3, 1.2, 1.7, 1.1, 1.1, 9.85, 1.2, 1.1, 1.6, 2.1, 2.2, 9.5, 1.7, 8.0, 13.65, 1.3, 0.8, 7.9, 1.3, 4.4, 9.55, 1.1, 17.1, 7.9, 1.8, 2.2, 5.2, 1.1, 8.1, 5.9, 2.4, 2.4, 6.0, 2.0, 2.0, 2.9, 1.4, 2.1, 2.0, 2.1, 5.2, 1.3, 5.8, 1.8, 8.2, 2.5, 2.0, 2.3, 15.1, 2.3, 16.8, 13.8, 17.1, 1.5, 12.2, 1.3, 8.2, 4.3, 2.7, 2.0, 8.9]}, {\"marker\": {\"color\": \"white\", \"opacity\": 0.005, \"size\": 0.01}, \"mode\": \"markers\", \"name\": \"Current\", \"showlegend\": false, \"type\": \"scatter\", \"x\": [2, 2], \"y\": [-8.965058443570388, 19.754558443570396]}], \"layout\": {\"legend\": {\"orientation\": \"h\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"shapes\": [{\"fillcolor\": \"LightGreen\", \"layer\": \"below\", \"line\": {\"width\": 0}, \"opacity\": 0.5, \"type\": \"rect\", \"x0\": 0, \"x1\": 1, \"xref\": \"paper\", \"y0\": -8.965058443570388, \"y1\": 19.754558443570396, \"yref\": \"y\"}, {\"line\": {\"color\": \"Green\", \"width\": 3}, \"name\": \"Reference\", \"type\": \"line\", \"x0\": 0, \"x1\": 1, \"xref\": \"paper\", \"y0\": 5.394750000000004, \"y1\": 5.394750000000004, \"yref\": \"y\"}], \"showlegend\": true, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"Index\"}}, \"yaxis\": {\"title\": {\"text\": \"residual.sugar\"}}}}}, \"chlorides_distr\": {\"data\": [{\"histnorm\": \"probability\", \"marker\": {\"color\": \"#4d4d4d\"}, \"name\": \"Reference\", \"nbinsx\": 10, \"opacity\": 0.6, \"type\": \"histogram\", \"x\": [0.037, 0.054, 0.051, 0.039, 0.046, 0.086, 0.033, 0.032, 0.032, 0.071, 0.037, 0.05, 0.069, 0.044, 0.044, 0.049, 0.031, 0.053, 0.09, 0.061, 0.091, 0.036, 0.033, 0.086, 0.035, 0.043, 0.09, 0.038, 0.053, 0.034, 0.054, 0.051, 0.034, 0.039, 0.048, 0.068, 0.029, 0.033, 0.05, 0.029, 0.041, 0.039, 0.063, 0.062, 0.05, 0.052, 0.08, 0.032, 0.05, 0.081, 0.045, 0.049, 0.029, 0.05, 0.038, 0.03, 0.048, 0.032, 0.02, 0.033, 0.05, 0.046, 0.086, 0.035, 0.028, 0.067, 0.092, 0.043, 0.058, 0.041, 0.08, 0.029, 0.074, 0.033, 0.088, 0.044, 0.058, 0.044, 0.054, 0.068, 0.039, 0.04, 0.039, 0.042, 0.039, 0.037, 0.076, 0.06, 0.03, 0.02, 0.059, 0.04, 0.034, 0.039, 0.064, 0.045, 0.07, 0.035, 0.045, 0.044, 0.042, 0.047, 0.088, 0.085, 0.055, 0.012, 0.047, 0.069, 0.059, 0.051, 0.02, 0.032, 0.047, 0.076, 0.039, 0.032, 0.077, 0.047, 0.061, 0.05, 0.061, 0.089, 0.05, 0.078, 0.034, 0.073, 0.038, 0.047, 0.053, 0.032, 0.045, 0.033, 0.035, 0.034, 0.035, 0.044, 0.048, 0.086, 0.04, 0.084, 0.037, 0.035, 0.04, 0.08, 0.05, 0.055, 0.067, 0.044, 0.046, 0.05, 0.097, 0.031, 0.047, 0.043, 0.077, 0.035, 0.035, 0.04, 0.076, 0.046, 0.042, 0.05, 0.024, 0.091, 0.05, 0.037, 0.045, 0.08, 0.048, 0.053, 0.051, 0.048, 0.036, 0.064, 0.05, 0.041, 0.053, 0.024, 0.044, 0.033, 0.054, 0.039, 0.043, 0.021, 0.062, 0.042, 0.098, 0.052, 0.026, 0.04, 0.074, 0.062, 0.05, 0.037, 0.052, 0.049, 0.082, 0.043, 0.053, 0.078, 0.084, 0.074, 0.045, 0.068, 0.031, 0.041, 0.084, 0.034, 0.036, 0.047, 0.042, 0.044, 0.044, 0.08, 0.062, 0.035, 0.092, 0.08, 0.062, 0.038, 0.092, 0.049, 0.041, 0.046, 0.044, 0.04, 0.084, 0.085, 0.051, 0.044, 0.036, 0.031, 0.077, 0.066, 0.051, 0.051, 0.073, 0.036, 0.046, 0.044, 0.051, 0.038, 0.055, 0.043, 0.058, 0.048, 0.042, 0.027, 0.056, 0.039, 0.056, 0.036, 0.083, 0.044, 0.077, 0.082, 0.033, 0.043, 0.041, 0.035, 0.034, 0.054, 0.036, 0.036, 0.069, 0.042, 0.071, 0.038, 0.045, 0.044, 0.082, 0.066, 0.039, 0.033, 0.027, 0.087, 0.044, 0.076, 0.05, 0.069, 0.037, 0.029, 0.082, 0.08, 0.046, 0.044, 0.054, 0.031, 0.096, 0.045, 0.047, 0.037, 0.047, 0.068, 0.047, 0.04, 0.08, 0.044, 0.049, 0.026, 0.087, 0.032, 0.047, 0.036, 0.082, 0.028, 0.06, 0.048, 0.048, 0.049, 0.019, 0.026, 0.056, 0.034, 0.038, 0.041, 0.072, 0.05, 0.043, 0.057, 0.062, 0.042, 0.057, 0.056, 0.053, 0.041, 0.064, 0.057, 0.024, 0.04, 0.092, 0.04, 0.037, 0.035, 0.031, 0.045, 0.029, 0.038, 0.029, 0.095, 0.039, 0.042, 0.044, 0.032, 0.074, 0.047, 0.025, 0.067, 0.047, 0.045, 0.063, 0.047, 0.046, 0.026, 0.041, 0.049, 0.072, 0.055, 0.05, 0.08, 0.042, 0.051, 0.037, 0.034, 0.034, 0.046, 0.028, 0.036, 0.024, 0.039, 0.037, 0.04, 0.058, 0.048, 0.047, 0.041, 0.051, 0.043, 0.064, 0.039, 0.029, 0.044, 0.093, 0.04, 0.053, 0.084, 0.073, 0.052, 0.087, 0.075, 0.04, 0.081, 0.079, 0.047, 0.046, 0.038, 0.06, 0.062, 0.084, 0.05, 0.063, 0.044, 0.041, 0.036, 0.03, 0.035, 0.087, 0.07, 0.047, 0.036, 0.032, 0.028, 0.08, 0.063, 0.038, 0.052, 0.042, 0.078, 0.045, 0.041, 0.039, 0.021, 0.06, 0.039, 0.068, 0.034, 0.087, 0.05, 0.042, 0.055, 0.045, 0.037, 0.028, 0.026, 0.024, 0.084, 0.051, 0.054, 0.046, 0.048, 0.053, 0.038, 0.07, 0.043, 0.029, 0.093, 0.037, 0.068, 0.048, 0.056, 0.08, 0.074, 0.042, 0.074, 0.041, 0.046, 0.044, 0.05, 0.04, 0.069, 0.044, 0.082, 0.053, 0.039, 0.049, 0.033, 0.074, 0.056, 0.047, 0.034, 0.044, 0.052, 0.031, 0.038, 0.037, 0.073, 0.044, 0.096, 0.05, 0.056, 0.038, 0.039, 0.043, 0.082, 0.047, 0.049, 0.033, 0.042, 0.029, 0.014, 0.032, 0.049, 0.084, 0.035, 0.03, 0.055, 0.034, 0.066, 0.042, 0.055, 0.058, 0.026, 0.061, 0.045, 0.071, 0.056, 0.049, 0.09, 0.035, 0.046, 0.043, 0.03, 0.068, 0.039, 0.047, 0.051, 0.022, 0.035, 0.041, 0.059, 0.058, 0.046, 0.04, 0.048, 0.05, 0.065, 0.02, 0.05, 0.046, 0.046, 0.048, 0.039, 0.083, 0.033, 0.047, 0.037, 0.081, 0.037, 0.03, 0.053, 0.049, 0.049, 0.067, 0.066, 0.08, 0.048, 0.027, 0.05, 0.047, 0.048, 0.041, 0.054, 0.056, 0.079, 0.046, 0.043, 0.063, 0.044, 0.043, 0.041, 0.042, 0.032, 0.045, 0.03, 0.027, 0.033, 0.095, 0.057, 0.08, 0.071, 0.034, 0.084, 0.024, 0.096, 0.052, 0.04, 0.045, 0.031, 0.048, 0.039, 0.049, 0.041, 0.044, 0.026, 0.032, 0.047, 0.034, 0.035, 0.052, 0.045, 0.067, 0.052, 0.031, 0.032, 0.043, 0.057, 0.066, 0.046, 0.068, 0.079, 0.044, 0.043, 0.075, 0.028, 0.041, 0.031, 0.033, 0.034, 0.063, 0.04, 0.057, 0.085, 0.04, 0.026, 0.045, 0.039, 0.041, 0.052, 0.034, 0.046, 0.045, 0.07, 0.034, 0.04, 0.054, 0.02, 0.06, 0.05, 0.029, 0.047, 0.051, 0.055, 0.031, 0.051, 0.057, 0.064, 0.036, 0.043, 0.066, 0.042, 0.033, 0.053, 0.027, 0.03, 0.04, 0.09, 0.085, 0.026, 0.052, 0.043, 0.024, 0.052, 0.07, 0.075, 0.035, 0.094, 0.042, 0.038, 0.039, 0.047, 0.092, 0.056, 0.047, 0.067, 0.028, 0.029, 0.042, 0.052, 0.045, 0.039, 0.06, 0.066, 0.037, 0.035, 0.036, 0.058, 0.026, 0.036, 0.045, 0.066, 0.036, 0.079, 0.047, 0.035, 0.091, 0.066, 0.078, 0.052, 0.07, 0.045, 0.034, 0.072, 0.052, 0.036, 0.026, 0.05, 0.052, 0.079, 0.058, 0.051, 0.044, 0.026, 0.051, 0.038, 0.036, 0.062, 0.048, 0.05, 0.046, 0.056, 0.045, 0.095, 0.044, 0.054, 0.047, 0.039, 0.049, 0.071, 0.073, 0.058, 0.061, 0.036, 0.031, 0.051, 0.029, 0.058, 0.044, 0.063, 0.048, 0.076, 0.058, 0.048, 0.04, 0.039, 0.059, 0.041, 0.057, 0.043, 0.044, 0.042, 0.049, 0.036, 0.091, 0.031, 0.058, 0.027, 0.048, 0.027, 0.034, 0.027, 0.055, 0.039, 0.041, 0.025, 0.053, 0.042, 0.034, 0.024, 0.06, 0.033, 0.04, 0.048, 0.028, 0.034, 0.054, 0.033, 0.028, 0.081, 0.041, 0.036, 0.097, 0.019, 0.039, 0.054, 0.045, 0.036, 0.087, 0.07, 0.098, 0.069, 0.046, 0.044, 0.039, 0.043, 0.054, 0.037, 0.087, 0.047, 0.041, 0.026, 0.054, 0.048, 0.039, 0.048, 0.041, 0.04, 0.051, 0.029, 0.031, 0.033, 0.053, 0.042, 0.051, 0.022, 0.05, 0.031, 0.047, 0.044, 0.029, 0.049, 0.034, 0.078, 0.083, 0.045, 0.089, 0.053, 0.056, 0.056, 0.046, 0.036, 0.081, 0.035, 0.031, 0.048, 0.041, 0.044, 0.037, 0.047, 0.038, 0.043, 0.034, 0.081, 0.045, 0.039, 0.047, 0.028, 0.019, 0.039, 0.022, 0.05, 0.05, 0.087, 0.042, 0.05, 0.025, 0.08, 0.072, 0.046, 0.032, 0.098, 0.03, 0.034, 0.031, 0.064, 0.045, 0.076, 0.081, 0.05, 0.036, 0.041, 0.041, 0.032, 0.048, 0.031, 0.047, 0.063, 0.041, 0.039, 0.084, 0.036, 0.04, 0.038, 0.065, 0.037, 0.054, 0.055, 0.046, 0.047, 0.041, 0.048, 0.08, 0.046, 0.037, 0.047, 0.064, 0.08, 0.031, 0.047, 0.048, 0.057, 0.041, 0.092, 0.096, 0.04, 0.084, 0.039, 0.046, 0.06, 0.04, 0.047, 0.077, 0.062, 0.042, 0.045, 0.035, 0.048, 0.062, 0.08, 0.049, 0.052, 0.038, 0.031, 0.077, 0.051, 0.048, 0.073, 0.037, 0.04, 0.054, 0.028, 0.051, 0.046, 0.031, 0.052, 0.037, 0.079, 0.044, 0.045, 0.053, 0.031, 0.035, 0.033, 0.063, 0.046, 0.043, 0.083, 0.074, 0.023, 0.095, 0.046, 0.046, 0.046, 0.039, 0.038, 0.04, 0.07, 0.042, 0.036, 0.049, 0.047]}, {\"histnorm\": \"probability\", \"marker\": {\"color\": \"#ed0400\"}, \"name\": \"Current\", \"nbinsx\": 10, \"opacity\": 0.6, \"type\": \"histogram\", \"x\": [0.068, 0.088, 0.058, 0.045, 0.044, 0.06, 0.036, 0.076, 0.04, 0.041, 0.037, 0.036, 0.033, 0.036, 0.039, 0.043, 0.033, 0.026, 0.048, 0.03, 0.04, 0.07, 0.032, 0.078, 0.078, 0.032, 0.078, 0.028, 0.056, 0.063, 0.054, 0.045, 0.036, 0.05, 0.039, 0.04, 0.048, 0.054, 0.04, 0.031, 0.044, 0.038, 0.046, 0.035, 0.029, 0.032, 0.052, 0.059, 0.053, 0.034, 0.098, 0.032, 0.034, 0.03, 0.036, 0.036, 0.035, 0.05, 0.047, 0.096, 0.036, 0.026, 0.035, 0.034, 0.065, 0.04, 0.043, 0.08, 0.065, 0.054, 0.079, 0.035, 0.039, 0.083, 0.036, 0.054, 0.073, 0.034, 0.031, 0.042, 0.028, 0.039, 0.053, 0.044, 0.044, 0.04, 0.05, 0.039, 0.054, 0.077, 0.037, 0.029, 0.036, 0.036, 0.042, 0.081, 0.072, 0.061, 0.037, 0.054, 0.05, 0.055, 0.067, 0.045, 0.012, 0.078, 0.04, 0.038, 0.046, 0.048, 0.074, 0.041, 0.079, 0.059, 0.055, 0.042, 0.037, 0.065, 0.066, 0.026, 0.073, 0.03, 0.035, 0.08, 0.048, 0.069, 0.047, 0.036, 0.048, 0.049, 0.046, 0.048, 0.039, 0.037, 0.035, 0.047, 0.037, 0.091, 0.035, 0.076, 0.071, 0.071, 0.027, 0.051, 0.047, 0.072, 0.034, 0.067, 0.025, 0.046, 0.051, 0.072, 0.084, 0.034, 0.023, 0.038, 0.025, 0.033, 0.094, 0.053, 0.084, 0.026, 0.024, 0.077, 0.055, 0.043, 0.057, 0.04, 0.083, 0.074, 0.095, 0.03, 0.03, 0.067, 0.029, 0.073, 0.04, 0.074, 0.088, 0.029, 0.073, 0.04, 0.019, 0.075, 0.043, 0.043, 0.095, 0.045, 0.05, 0.049, 0.062, 0.094, 0.06, 0.037, 0.048, 0.098, 0.034, 0.046, 0.071, 0.095, 0.036, 0.098, 0.06, 0.046, 0.036, 0.048, 0.076, 0.087, 0.032, 0.072, 0.043, 0.039, 0.031, 0.051, 0.043, 0.029, 0.046, 0.036, 0.038, 0.058, 0.062, 0.088, 0.047, 0.058, 0.032, 0.078, 0.032, 0.031, 0.034, 0.08, 0.034, 0.032, 0.084, 0.065, 0.022, 0.04, 0.046, 0.055, 0.04, 0.027, 0.052, 0.04, 0.029, 0.044, 0.048, 0.031, 0.035, 0.078, 0.074, 0.062, 0.037, 0.078, 0.045, 0.042, 0.084, 0.036, 0.093, 0.04, 0.039, 0.077, 0.078, 0.042, 0.028, 0.037, 0.045, 0.044, 0.041, 0.071, 0.081, 0.05, 0.043, 0.015, 0.051, 0.091, 0.028, 0.045, 0.045, 0.037, 0.08, 0.035, 0.041, 0.027, 0.048, 0.042, 0.038, 0.038, 0.047, 0.017, 0.036, 0.038, 0.035, 0.036, 0.074, 0.046, 0.062, 0.044, 0.046, 0.037, 0.077, 0.04, 0.029, 0.092, 0.071, 0.025, 0.027, 0.046, 0.046, 0.073, 0.041, 0.022, 0.047, 0.062, 0.047, 0.04, 0.057, 0.044, 0.086, 0.045, 0.049, 0.051, 0.045, 0.071, 0.031, 0.054, 0.069, 0.072, 0.04, 0.059, 0.074, 0.05, 0.028, 0.028, 0.072, 0.055, 0.078, 0.053, 0.034, 0.038, 0.029, 0.047, 0.036, 0.055, 0.043, 0.051, 0.05, 0.031, 0.044, 0.028, 0.032, 0.057, 0.077, 0.051, 0.068, 0.082, 0.076, 0.057, 0.045, 0.06, 0.088, 0.036, 0.077, 0.053, 0.056, 0.034, 0.053, 0.076, 0.047, 0.038, 0.042, 0.016, 0.054, 0.045, 0.053, 0.035, 0.036, 0.082, 0.031, 0.047, 0.033, 0.049, 0.078, 0.04, 0.06, 0.042, 0.08, 0.031, 0.044, 0.032, 0.044, 0.053, 0.077, 0.055, 0.044, 0.04, 0.037, 0.087, 0.043, 0.078, 0.032, 0.086, 0.041, 0.047, 0.035, 0.036, 0.04, 0.031, 0.062, 0.034, 0.028, 0.036, 0.033, 0.032, 0.077, 0.021, 0.031, 0.071, 0.044, 0.056, 0.078, 0.049, 0.05, 0.057, 0.062, 0.034, 0.031, 0.066, 0.052, 0.079, 0.04, 0.031, 0.057, 0.034, 0.034, 0.048, 0.029, 0.043, 0.07, 0.045, 0.041, 0.076, 0.034, 0.057, 0.067, 0.074, 0.033, 0.035, 0.054, 0.046, 0.034, 0.043, 0.04, 0.027, 0.052, 0.071, 0.053, 0.035, 0.089, 0.045, 0.032, 0.035, 0.044, 0.063, 0.039, 0.057, 0.038, 0.033, 0.036, 0.06, 0.086, 0.058, 0.032, 0.044, 0.038, 0.038, 0.08, 0.031, 0.035, 0.036, 0.093, 0.043, 0.054, 0.036, 0.046, 0.052, 0.041, 0.058, 0.046, 0.062, 0.085, 0.021, 0.036, 0.055, 0.079, 0.049, 0.076, 0.039, 0.042, 0.028, 0.051, 0.088, 0.033, 0.033, 0.073, 0.047, 0.044, 0.043, 0.033, 0.049, 0.031, 0.083, 0.048, 0.04, 0.044, 0.043, 0.047, 0.07, 0.025, 0.034, 0.084, 0.037, 0.042, 0.076, 0.046, 0.044, 0.063, 0.033, 0.041, 0.037, 0.049, 0.024, 0.046, 0.098, 0.039, 0.041, 0.048, 0.06, 0.036, 0.028, 0.064, 0.032, 0.038, 0.03, 0.022, 0.045, 0.034, 0.044, 0.046, 0.053, 0.036, 0.054, 0.078, 0.05, 0.026, 0.043, 0.036, 0.032, 0.05, 0.074, 0.027, 0.053, 0.048, 0.038, 0.039, 0.077, 0.038, 0.065, 0.041, 0.029, 0.027, 0.08, 0.036, 0.027, 0.051, 0.022, 0.042, 0.043, 0.042, 0.051, 0.094, 0.056, 0.05, 0.051, 0.039, 0.027, 0.051, 0.035, 0.06, 0.052, 0.076, 0.048, 0.023, 0.033, 0.057, 0.092, 0.045, 0.046, 0.077, 0.042, 0.036, 0.085, 0.027, 0.023, 0.04, 0.041, 0.052, 0.041, 0.053, 0.064, 0.085, 0.084, 0.039, 0.046, 0.043, 0.036, 0.021, 0.045, 0.033, 0.048, 0.046, 0.037, 0.029, 0.017, 0.065, 0.081, 0.063, 0.036, 0.044, 0.067, 0.028, 0.046, 0.043, 0.062, 0.053, 0.046, 0.053, 0.045, 0.055, 0.037, 0.054, 0.088, 0.053, 0.031, 0.059, 0.082, 0.042, 0.048, 0.059, 0.075, 0.068, 0.066, 0.077, 0.045, 0.097, 0.041, 0.069, 0.043, 0.05, 0.031, 0.053, 0.037, 0.066, 0.05, 0.037, 0.061, 0.042, 0.09, 0.036, 0.056, 0.052, 0.073, 0.029, 0.047, 0.038, 0.031, 0.039, 0.037, 0.036, 0.045, 0.045, 0.045, 0.035, 0.075, 0.096, 0.05, 0.057, 0.026, 0.094, 0.057, 0.054, 0.041, 0.034, 0.041, 0.06, 0.034, 0.045, 0.042, 0.039, 0.031, 0.042, 0.097, 0.048, 0.075, 0.052, 0.08, 0.065, 0.029, 0.045, 0.03, 0.037, 0.035, 0.038, 0.075, 0.054, 0.061, 0.078, 0.067, 0.044, 0.042, 0.046, 0.046, 0.078, 0.076, 0.049, 0.053, 0.053, 0.044, 0.044, 0.041, 0.089, 0.059, 0.073, 0.036, 0.036, 0.055, 0.044, 0.053, 0.031, 0.053, 0.092, 0.034, 0.044, 0.037, 0.043, 0.057, 0.044, 0.034, 0.076, 0.035, 0.042, 0.07, 0.046, 0.037, 0.048, 0.043, 0.049, 0.03, 0.084, 0.082, 0.089, 0.097, 0.071, 0.046, 0.081, 0.044, 0.063, 0.03, 0.023, 0.044, 0.033, 0.053, 0.041, 0.061, 0.024, 0.035, 0.032, 0.034, 0.047, 0.091, 0.045, 0.053, 0.052, 0.052, 0.081, 0.067, 0.021, 0.056, 0.053, 0.044, 0.035, 0.048, 0.055, 0.077, 0.05, 0.046, 0.064, 0.051, 0.032, 0.046, 0.057, 0.066, 0.046, 0.025, 0.031, 0.095, 0.021, 0.053, 0.041, 0.028, 0.093, 0.02, 0.05, 0.067, 0.031, 0.046, 0.043, 0.041, 0.056, 0.086, 0.03, 0.036, 0.029, 0.022, 0.053, 0.038, 0.056, 0.086, 0.09, 0.05, 0.057, 0.026, 0.034, 0.059, 0.033, 0.054, 0.079, 0.032, 0.084, 0.03, 0.06, 0.039, 0.047, 0.032, 0.028, 0.043, 0.04, 0.032, 0.046, 0.046, 0.046, 0.059, 0.042, 0.05, 0.05, 0.073, 0.035, 0.027, 0.052, 0.058, 0.049, 0.042, 0.083, 0.032, 0.044, 0.038, 0.084, 0.042, 0.051, 0.047, 0.045, 0.085, 0.079, 0.031, 0.04, 0.066, 0.059, 0.043, 0.088, 0.035, 0.039, 0.053, 0.055, 0.066, 0.075, 0.032, 0.045, 0.038, 0.026, 0.036, 0.079, 0.034, 0.051, 0.083, 0.071, 0.037, 0.036, 0.033, 0.045, 0.046, 0.055, 0.048, 0.034, 0.033, 0.083, 0.071, 0.03, 0.03, 0.05, 0.048, 0.036, 0.037, 0.036, 0.058, 0.029, 0.036, 0.027, 0.05, 0.057, 0.046, 0.035, 0.043, 0.046, 0.046, 0.045, 0.078, 0.075, 0.033, 0.076, 0.082, 0.085, 0.043, 0.049, 0.08, 0.032, 0.036, 0.055, 0.05, 0.088, 0.079, 0.034, 0.03, 0.051, 0.048, 0.047, 0.05, 0.038, 0.053, 0.036, 0.055, 0.069, 0.053, 0.031, 0.048]}], \"layout\": {\"legend\": {\"orientation\": \"h\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"chlorides\"}}, \"yaxis\": {\"title\": {\"text\": \"Share\"}}}}, \"chlorides_drift\": {\"title\": \"\", \"size\": 2, \"text\": \"\", \"type\": \"big_graph\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"Current\", \"type\": \"scatter\", \"x\": [443, 319, 703, 526, 76, 963, 1260, 532, 1561, 517, 506, 1557, 271, 1058, 1381, 1039, 542, 107, 161, 1301, 519, 1021, 1213, 223, 1286, 1426, 1234, 587, 1183, 182, 567, 1492, 724, 1262, 1509, 657, 1137, 913, 1445, 342, 781, 14, 971, 1072, 1254, 678, 1175, 1481, 1370, 1443, 18, 1151, 1380, 434, 1430, 554, 53, 535, 1050, 427, 259, 124, 961, 1488, 1563, 720, 1291, 1061, 425, 846, 1147, 204, 1317, 618, 1088, 927, 1196, 582, 1194, 360, 1449, 862, 1135, 1453, 1442, 1017, 268, 685, 317, 775, 1086, 942, 1052, 801, 1362, 219, 379, 649, 1195, 479, 1542, 609, 930, 1105, 34, 708, 686, 1132, 693, 733, 1562, 1190, 473, 737, 672, 969, 858, 5, 1556, 298, 80, 940, 361, 1154, 1545, 1622, 784, 19, 1522, 996, 54, 1415, 1564, 1593, 1236, 9, 353, 1222, 113, 1010, 1263, 877, 82, 381, 818, 1210, 1409, 66, 254, 817, 92, 1340, 122, 1357, 511, 1546, 692, 17, 1248, 414, 52, 1296, 191, 175, 233, 900, 785, 935, 1298, 156, 487, 159, 481, 1255, 1597, 253, 1491, 841, 187, 914, 979, 249, 1114, 1366, 814, 716, 465, 875, 1242, 670, 299, 593, 436, 728, 141, 229, 1057, 912, 994, 648, 799, 1164, 1073, 4, 516, 152, 1267, 1237, 752, 1150, 825, 402, 1277, 575, 1437, 838, 390, 1505, 1093, 1026, 1611, 31, 674, 866, 1328, 616, 861, 897, 148, 303, 1451, 602, 1125, 1614, 1047, 1462, 1148, 574, 899, 1327, 89, 530, 408, 1192, 177, 520, 993, 326, 992, 717, 895, 1421, 984, 240, 85, 557, 278, 938, 1425, 958, 1232, 1149, 171, 1220, 227, 891, 489, 1391, 1184, 1032, 393, 726, 192, 260, 880, 1592, 1537, 491, 759, 1473, 959, 1454, 1015, 965, 1393, 1489, 1256, 133, 202, 1036, 438, 483, 666, 461, 142, 1181, 1580, 308, 538, 170, 310, 743, 1101, 1179, 315, 22, 1529, 45, 879, 1110, 61, 522, 1397, 829, 576, 1193, 1202, 1549, 1375, 27, 527, 1186, 1273, 828, 539, 1049, 1014, 412, 1091, 1497, 1595, 347, 2, 844, 1490, 632, 211, 1582, 918, 1217, 1115, 744, 459, 579, 771, 96, 178, 108, 1516, 805, 1240, 440, 619, 1, 1315, 1239, 1347, 512, 48, 722, 1517, 1621, 446, 565, 568, 796, 231, 1070, 1063, 215, 513, 704, 354, 55, 881, 746, 641, 762, 279, 1145, 1468, 224, 302, 911, 218, 1079, 874, 1266, 792, 1136, 372, 295, 364, 580, 1615, 688, 1560, 333, 467, 968, 399, 760, 740, 953, 1520, 1446, 1214, 615, 524, 546, 1495, 1324, 452, 1515, 432, 863, 442, 847, 276, 456, 184, 1116, 1200, 458, 1508, 1087, 1478, 376, 1479, 563, 1146, 1507, 42, 944, 823, 1228, 656, 1227, 198, 309, 761, 1158, 549, 47, 1209, 529, 933, 220, 1624, 1591, 651, 536, 362, 1314, 420, 564, 475, 482, 140, 679, 1436, 1334, 77, 39, 570, 962, 808, 981, 322, 1471, 251, 695, 1128, 813, 757, 820, 853, 831, 1246, 58, 553, 597, 241, 1288, 330, 1005, 789, 1617, 56, 1126, 411, 548, 501, 1211, 642, 558, 1605, 745, 878, 1056, 667, 435, 29, 270, 35, 1157, 422, 1310, 114, 1524, 1422, 689, 1018, 1168, 1360, 985, 1191, 793, 1363, 1504, 581, 644, 1199, 621, 1612, 494, 665, 431, 1095, 638, 1042, 1404, 1030, 40, 1121, 75, 1588, 1417, 247, 713, 1590, 186, 646, 312, 8, 1551, 1302, 1044, 768, 884, 1585, 1618, 826, 445, 712, 464, 1308, 195, 655, 1487, 1389, 1356, 243, 401, 572, 1074, 810, 477, 1460, 1544, 1182, 285, 471, 936, 1238, 578, 1034, 1535, 1513, 426, 1311, 1001, 986, 1038, 980, 1064, 620, 982, 1565, 194, 474, 1428, 569, 1165, 49, 1333, 1401, 1307, 1076, 991, 1566, 44, 1342, 245, 943, 300, 583, 1013, 269, 1548, 313, 776, 283, 1444, 540, 406, 338, 466, 363, 1002, 320, 1264, 1089, 70, 1027, 500, 10, 907, 505, 1295, 864, 1432, 64, 1122, 1543, 416, 898, 654, 205, 328, 486, 999, 1377, 970, 528, 1558, 418, 1379, 1299, 1378, 590, 1247, 1174, 472, 1323, 131, 15, 439, 1528, 476, 725, 1203, 1109, 1003, 1365, 103, 1279, 60, 871, 78, 391, 165, 1335, 1410, 1129, 960, 349, 185, 1464, 371, 117, 1398, 252, 507, 1613, 311, 1419, 395, 987, 358, 263, 359, 1559, 1305, 1506, 1376, 1055, 634, 1552, 16, 51, 1258, 493, 601, 997, 351, 711, 1604, 1486, 1339, 794, 97, 1475, 1423, 196, 748, 183, 1433, 1579, 613, 1536, 989, 682, 533, 610, 687, 892, 81, 896, 397, 267, 589, 386, 795, 1416, 132, 265, 1609, 1461, 883, 88, 840, 988, 1354, 676, 916, 629, 1269, 924, 294, 261, 1541, 1081, 1348, 1576, 405, 1616, 356, 608, 1097, 239, 1249, 1099, 1403, 119, 1096, 977, 751, 374, 453, 110, 1336, 1390, 905, 1287, 503, 1031, 1331, 1224, 729, 410, 1540, 367, 1607, 384, 200, 65, 1358, 1394, 1023, 272, 1418, 955, 677, 238, 1133, 974, 541, 478, 1257, 1265, 1465, 1589, 1326, 188, 1083, 681, 906, 1092, 1276, 316, 214, 1078, 1502, 1084, 660, 1142, 531, 255, 30, 662, 1253, 230, 157, 1343, 385, 1169, 380, 1188, 721, 264, 787, 101, 13, 1274, 68, 1024, 1170, 1156, 71, 1577, 566, 1372, 1245, 798, 523, 626, 495, 937, 155, 887, 758, 921, 790, 1349, 1230, 366, 1531, 983, 839, 228, 417, 206, 742, 79, 190, 492, 948, 145, 923, 318, 824, 1374, 1124, 1463, 596, 457, 144, 1359, 1292, 1045, 764, 842, 1140, 1408, 995, 904, 592, 1458, 135, 83, 1062, 154, 1440, 1283, 773, 1414, 127, 1177, 1318, 1413, 403, 150, 346, 413, 1303, 1523, 1619, 394, 1261, 1054, 208, 496, 352, 95, 625, 571, 37, 485, 143, 946, 158, 552, 1527, 1029, 518, 1180, 1218, 236, 1100, 222, 1431, 345, 1459, 120, 661, 588, 1623, 1493, 62, 1429, 811, 193, 235, 181, 1320, 389, 1103, 521, 669, 332, 258, 1369, 1538, 957, 382, 1382, 1567, 331, 934, 614, 262, 893, 6, 266, 769, 38, 901, 1573, 1578, 545, 118, 783, 652, 1025, 706, 105, 1189, 484, 1569, 630, 683, 20, 870, 242, 50, 162, 915, 966, 441, 867, 731, 1102, 1000, 1268, 1223, 822, 301, 723, 172], \"y\": [0.068, 0.088, 0.058, 0.045, 0.044, 0.06, 0.036, 0.076, 0.04, 0.041, 0.037, 0.036, 0.033, 0.036, 0.102, 0.039, 0.043, 0.033, 0.026, 0.048, 0.03, 0.04, 0.07, 0.032, 0.078, 0.078, 0.032, 0.078, 0.028, 0.056, 0.063, 0.054, 0.045, 0.036, 0.05, 0.039, 0.04, 0.048, 0.054, 0.04, 0.031, 0.044, 0.038, 0.046, 0.035, 0.029, 0.032, 0.052, 0.059, 0.053, 0.034, 0.098, 0.032, 0.034, 0.03, 0.122, 0.036, 0.036, 0.035, 0.05, 0.047, 0.096, 0.036, 0.026, 0.035, 0.034, 0.065, 0.04, 0.043, 0.08, 0.065, 0.054, 0.079, 0.035, 0.039, 0.083, 0.036, 0.054, 0.073, 0.034, 0.031, 0.042, 0.028, 0.039, 0.053, 0.044, 0.044, 0.04, 0.05, 0.039, 0.414, 0.054, 0.077, 0.037, 0.029, 0.036, 0.036, 0.042, 0.081, 0.072, 0.061, 0.037, 0.054, 0.05, 0.055, 0.067, 0.045, 0.012, 0.078, 0.04, 0.038, 0.046, 0.048, 0.074, 0.041, 0.079, 0.059, 0.055, 0.171, 0.042, 0.037, 0.065, 0.066, 0.026, 0.073, 0.03, 0.035, 0.194, 0.08, 0.048, 0.069, 0.047, 0.036, 0.048, 0.049, 0.046, 0.048, 0.039, 0.037, 0.035, 0.047, 0.037, 0.091, 0.035, 0.076, 0.118, 0.071, 0.071, 0.027, 0.051, 0.047, 0.072, 0.034, 0.067, 0.025, 0.046, 0.051, 0.072, 0.084, 0.034, 0.023, 0.038, 0.025, 0.033, 0.094, 0.053, 0.084, 0.026, 0.024, 0.077, 0.055, 0.23, 0.043, 0.057, 0.04, 0.083, 0.074, 0.095, 0.03, 0.03, 0.067, 0.029, 0.073, 0.04, 0.074, 0.088, 0.029, 0.073, 0.04, 0.019, 0.075, 0.043, 0.043, 0.095, 0.045, 0.05, 0.049, 0.062, 0.094, 0.06, 0.037, 0.048, 0.098, 0.034, 0.046, 0.071, 0.095, 0.036, 0.098, 0.06, 0.046, 0.414, 0.036, 0.048, 0.076, 0.087, 0.032, 0.102, 0.072, 0.043, 0.039, 0.031, 0.051, 0.043, 0.115, 0.029, 0.046, 0.036, 0.038, 0.058, 0.062, 0.088, 0.047, 0.058, 0.032, 0.078, 0.032, 0.031, 0.034, 0.08, 0.034, 0.032, 0.084, 0.065, 0.137, 0.022, 0.04, 0.046, 0.055, 0.04, 0.027, 0.052, 0.04, 0.029, 0.044, 0.048, 0.031, 0.035, 0.078, 0.074, 0.062, 0.037, 0.078, 0.045, 0.042, 0.084, 0.036, 0.093, 0.04, 0.039, 0.077, 0.078, 0.042, 0.028, 0.037, 0.045, 0.044, 0.041, 0.071, 0.081, 0.05, 0.043, 0.015, 0.051, 0.091, 0.028, 0.045, 0.045, 0.037, 0.08, 0.035, 0.041, 0.027, 0.048, 0.042, 0.038, 0.137, 0.038, 0.047, 0.017, 0.036, 0.038, 0.035, 0.036, 0.17, 0.074, 0.046, 0.062, 0.044, 0.046, 0.037, 0.077, 0.04, 0.029, 0.092, 0.071, 0.025, 0.027, 0.046, 0.046, 0.073, 0.041, 0.022, 0.047, 0.062, 0.146, 0.047, 0.04, 0.057, 0.044, 0.086, 0.045, 0.049, 0.051, 0.045, 0.071, 0.031, 0.054, 0.069, 0.072, 0.04, 0.059, 0.074, 0.05, 0.028, 0.028, 0.072, 0.055, 0.078, 0.053, 0.034, 0.038, 0.029, 0.047, 0.036, 0.055, 0.043, 0.051, 0.158, 0.05, 0.105, 0.031, 0.044, 0.028, 0.032, 0.057, 0.077, 0.051, 0.068, 0.082, 0.076, 0.057, 0.045, 0.06, 0.088, 0.036, 0.077, 0.053, 0.056, 0.034, 0.053, 0.076, 0.047, 0.038, 0.042, 0.016, 0.054, 0.045, 0.053, 0.035, 0.036, 0.082, 0.031, 0.047, 0.033, 0.049, 0.078, 0.04, 0.06, 0.042, 0.08, 0.031, 0.044, 0.032, 0.044, 0.053, 0.077, 0.055, 0.044, 0.04, 0.037, 0.087, 0.043, 0.078, 0.032, 0.086, 0.041, 0.047, 0.035, 0.036, 0.04, 0.031, 0.062, 0.413, 0.034, 0.028, 0.036, 0.033, 0.032, 0.077, 0.021, 0.031, 0.071, 0.044, 0.056, 0.078, 0.049, 0.214, 0.05, 0.057, 0.062, 0.034, 0.031, 0.066, 0.052, 0.079, 0.04, 0.031, 0.057, 0.034, 0.034, 0.048, 0.029, 0.043, 0.07, 0.045, 0.041, 0.076, 0.034, 0.057, 0.067, 0.074, 0.033, 0.035, 0.054, 0.046, 0.034, 0.043, 0.04, 0.027, 0.052, 0.211, 0.071, 0.053, 0.035, 0.089, 0.045, 0.032, 0.035, 0.044, 0.063, 0.039, 0.057, 0.038, 0.033, 0.036, 0.06, 0.086, 0.058, 0.11, 0.032, 0.044, 0.132, 0.038, 0.038, 0.08, 0.031, 0.035, 0.036, 0.093, 0.043, 0.176, 0.054, 0.036, 0.046, 0.052, 0.041, 0.058, 0.046, 0.062, 0.255, 0.085, 0.021, 0.036, 0.055, 0.079, 0.049, 0.076, 0.039, 0.042, 0.028, 0.051, 0.088, 0.033, 0.033, 0.073, 0.047, 0.044, 0.043, 0.033, 0.049, 0.031, 0.083, 0.048, 0.04, 0.044, 0.043, 0.047, 0.07, 0.025, 0.034, 0.084, 0.037, 0.042, 0.076, 0.046, 0.044, 0.063, 0.033, 0.041, 0.037, 0.049, 0.024, 0.046, 0.098, 0.039, 0.041, 0.118, 0.117, 0.048, 0.06, 0.036, 0.028, 0.064, 0.032, 0.038, 0.03, 0.022, 0.045, 0.212, 0.034, 0.044, 0.046, 0.053, 0.036, 0.054, 0.078, 0.05, 0.026, 0.043, 0.036, 0.032, 0.05, 0.074, 0.027, 0.053, 0.048, 0.038, 0.039, 0.077, 0.038, 0.065, 0.041, 0.029, 0.027, 0.08, 0.036, 0.027, 0.051, 0.022, 0.042, 0.043, 0.042, 0.051, 0.094, 0.056, 0.05, 0.051, 0.039, 0.027, 0.051, 0.035, 0.06, 0.052, 0.076, 0.048, 0.023, 0.033, 0.152, 0.057, 0.092, 0.045, 0.046, 0.077, 0.042, 0.036, 0.085, 0.027, 0.023, 0.04, 0.041, 0.052, 0.041, 0.053, 0.064, 0.085, 0.243, 0.084, 0.039, 0.046, 0.043, 0.036, 0.021, 0.045, 0.033, 0.048, 0.046, 0.037, 0.029, 0.017, 0.065, 0.081, 0.063, 0.036, 0.044, 0.067, 0.028, 0.174, 0.046, 0.043, 0.062, 0.053, 0.046, 0.053, 0.045, 0.055, 0.037, 0.054, 0.088, 0.053, 0.123, 0.031, 0.059, 0.082, 0.042, 0.048, 0.059, 0.075, 0.068, 0.066, 0.077, 0.045, 0.097, 0.041, 0.069, 0.043, 0.05, 0.031, 0.053, 0.037, 0.066, 0.05, 0.037, 0.061, 0.042, 0.09, 0.036, 0.056, 0.052, 0.073, 0.029, 0.047, 0.038, 0.031, 0.039, 0.037, 0.036, 0.105, 0.045, 0.045, 0.045, 0.035, 0.075, 0.096, 0.05, 0.057, 0.026, 0.118, 0.094, 0.057, 0.054, 0.041, 0.034, 0.041, 0.06, 0.034, 0.045, 0.042, 0.039, 0.031, 0.042, 0.097, 0.048, 0.075, 0.052, 0.08, 0.065, 0.029, 0.045, 0.03, 0.142, 0.037, 0.035, 0.038, 0.075, 0.054, 0.061, 0.105, 0.078, 0.099, 0.067, 0.114, 0.044, 0.042, 0.046, 0.046, 0.078, 0.076, 0.049, 0.053, 0.053, 0.044, 0.044, 0.118, 0.041, 0.089, 0.059, 0.073, 0.036, 0.036, 0.055, 0.044, 0.053, 0.031, 0.053, 0.092, 0.034, 0.044, 0.037, 0.043, 0.057, 0.044, 0.034, 0.076, 0.035, 0.042, 0.07, 0.046, 0.037, 0.048, 0.043, 0.049, 0.03, 0.084, 0.082, 0.089, 0.097, 0.071, 0.046, 0.081, 0.044, 0.063, 0.03, 0.023, 0.332, 0.044, 0.033, 0.053, 0.041, 0.061, 0.024, 0.176, 0.035, 0.032, 0.034, 0.047, 0.091, 0.045, 0.053, 0.052, 0.052, 0.081, 0.067, 0.021, 0.216, 0.056, 0.053, 0.044, 0.121, 0.035, 0.114, 0.048, 0.055, 0.077, 0.05, 0.046, 0.064, 0.051, 0.032, 0.046, 0.057, 0.066, 0.046, 0.025, 0.031, 0.119, 0.109, 0.095, 0.021, 0.053, 0.041, 0.028, 0.093, 0.02, 0.05, 0.067, 0.031, 0.046, 0.043, 0.041, 0.056, 0.086, 0.03, 0.036, 0.029, 0.022, 0.053, 0.038, 0.056, 0.086, 0.09, 0.05, 0.057, 0.026, 0.034, 0.059, 0.033, 0.054, 0.079, 0.032, 0.084, 0.03, 0.06, 0.039, 0.047, 0.032, 0.028, 0.043, 0.04, 0.032, 0.046, 0.046, 0.046, 0.059, 0.042, 0.05, 0.117, 0.05, 0.073, 0.035, 0.027, 0.052, 0.058, 0.049, 0.042, 0.083, 0.032, 0.044, 0.038, 0.084, 0.042, 0.051, 0.047, 0.045, 0.12, 0.085, 0.079, 0.031, 0.04, 0.066, 0.059, 0.043, 0.088, 0.035, 0.039, 0.053, 0.055, 0.066, 0.075, 0.032, 0.045, 0.038, 0.026, 0.036, 0.079, 0.034, 0.051, 0.083, 0.071, 0.037, 0.036, 0.033, 0.045, 0.046, 0.055, 0.048, 0.034, 0.033, 0.083, 0.071, 0.03, 0.03, 0.05, 0.048, 0.036, 0.037, 0.036, 0.058, 0.029, 0.036, 0.027, 0.05, 0.057, 0.046, 0.035, 0.043, 0.046, 0.046, 0.045, 0.078, 0.075, 0.033, 0.076, 0.082, 0.085, 0.043, 0.049, 0.08, 0.2, 0.032, 0.036, 0.055, 0.16, 0.05, 0.088, 0.079, 0.034, 0.03, 0.051, 0.048, 0.047, 0.05, 0.038, 0.053, 0.036, 0.055, 0.069, 0.053, 0.031, 0.048]}, {\"marker\": {\"color\": \"white\", \"opacity\": 0.005, \"size\": 0.01}, \"mode\": \"markers\", \"name\": \"Current\", \"showlegend\": false, \"type\": \"scatter\", \"x\": [2, 2], \"y\": [-0.039911869850479814, 0.14944186985047966]}], \"layout\": {\"legend\": {\"orientation\": \"h\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"shapes\": [{\"fillcolor\": \"LightGreen\", \"layer\": \"below\", \"line\": {\"width\": 0}, \"opacity\": 0.5, \"type\": \"rect\", \"x0\": 0, \"x1\": 1, \"xref\": \"paper\", \"y0\": -0.039911869850479814, \"y1\": 0.14944186985047966, \"yref\": \"y\"}, {\"line\": {\"color\": \"Green\", \"width\": 3}, \"name\": \"Reference\", \"type\": \"line\", \"x0\": 0, \"x1\": 1, \"xref\": \"paper\", \"y0\": 0.054764999999999925, \"y1\": 0.054764999999999925, \"yref\": \"y\"}], \"showlegend\": true, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"Index\"}}, \"yaxis\": {\"title\": {\"text\": \"chlorides\"}}}}}, \"free.sulfur.dioxide_distr\": {\"data\": [{\"histnorm\": \"probability\", \"marker\": {\"color\": \"#4d4d4d\"}, \"name\": \"Reference\", \"nbinsx\": 10, \"opacity\": 0.6, \"type\": \"histogram\", \"x\": [39.0, 34.0, 26.0, 25.0, 34.0, 20.0, 39.0, 33.0, 24.0, 26.0, 73.0, 76.0, 4.0, 56.0, 19.0, 41.5, 15.0, 41.0, 32.0, 23.0, 18.0, 26.0, 6.0, 17.0, 17.0, 21.0, 34.0, 9.0, 72.0, 36.0, 27.0, 28.0, 46.0, 30.0, 32.0, 40.0, 20.0, 25.0, 37.0, 33.0, 29.0, 15.0, 46.0, 35.0, 31.0, 8.0, 30.0, 61.0, 24.0, 30.0, 7.0, 23.0, 3.0, 96.0, 50.0, 21.0, 44.0, 59.0, 38.0, 47.0, 19.0, 12.0, 38.0, 18.0, 23.0, 5.0, 18.0, 34.0, 40.0, 15.0, 41.0, 24.0, 28.0, 12.0, 24.0, 6.0, 27.0, 22.0, 44.0, 45.0, 54.0, 27.0, 7.0, 30.0, 25.0, 26.0, 44.0, 60.0, 33.0, 50.0, 52.0, 12.0, 22.0, 10.0, 10.0, 50.0, 24.0, 14.0, 58.0, 4.0, 20.0, 54.0, 42.0, 14.0, 47.0, 10.0, 21.0, 10.0, 6.0, 24.0, 36.0, 13.0, 20.0, 28.0, 23.0, 25.0, 20.0, 39.0, 18.0, 22.0, 24.0, 19.0, 6.0, 29.0, 26.0, 37.5, 41.0, 12.0, 5.0, 24.0, 15.0, 26.0, 25.0, 37.0, 60.0, 55.0, 42.0, 36.0, 41.0, 20.0, 28.0, 27.0, 31.0, 12.0, 39.0, 21.0, 21.0, 7.0, 12.0, 36.0, 39.0, 5.0, 29.0, 50.0, 47.0, 8.0, 48.0, 39.0, 55.0, 23.0, 24.0, 36.0, 31.0, 32.0, 53.0, 16.0, 28.0, 15.0, 28.0, 7.0, 35.0, 13.0, 10.0, 4.0, 11.0, 52.0, 3.0, 41.0, 20.0, 77.0, 27.0, 36.0, 29.0, 41.0, 20.0, 35.0, 20.0, 21.0, 55.0, 19.0, 64.0, 52.0, 22.0, 7.0, 12.0, 30.0, 23.0, 15.0, 60.0, 24.0, 19.0, 23.0, 16.0, 34.0, 65.0, 9.0, 49.0, 46.0, 33.0, 13.0, 9.0, 38.0, 28.0, 11.0, 38.0, 38.0, 6.0, 17.0, 33.0, 5.0, 44.5, 26.0, 17.0, 24.0, 20.0, 54.0, 13.0, 3.0, 15.0, 28.0, 14.0, 36.0, 53.0, 47.0, 55.0, 43.0, 7.0, 14.0, 77.0, 22.0, 17.0, 12.0, 18.0, 53.0, 34.0, 29.0, 23.0, 28.0, 57.0, 53.0, 33.0, 42.0, 27.0, 45.0, 39.0, 49.0, 8.0, 23.0, 31.0, 37.0, 68.0, 31.0, 17.0, 22.0, 21.0, 23.0, 25.0, 37.0, 63.0, 29.0, 23.0, 44.0, 44.0, 43.0, 26.0, 18.0, 37.0, 7.0, 6.0, 12.0, 25.0, 24.0, 18.0, 38.0, 30.0, 16.0, 21.0, 34.0, 17.0, 26.0, 3.0, 45.0, 22.0, 27.0, 16.0, 29.0, 35.0, 7.0, 50.0, 18.0, 30.0, 33.0, 24.0, 66.0, 7.0, 20.0, 50.0, 21.0, 25.0, 12.0, 35.0, 3.0, 35.0, 26.0, 19.0, 24.0, 32.0, 36.0, 13.0, 59.0, 29.0, 23.5, 23.0, 20.0, 18.0, 22.0, 28.0, 38.0, 52.0, 61.0, 43.0, 8.0, 22.0, 45.0, 68.0, 29.0, 110.0, 9.0, 15.0, 29.0, 29.0, 8.0, 48.0, 5.0, 36.0, 20.0, 16.0, 43.0, 39.0, 53.0, 13.0, 11.0, 25.0, 41.0, 12.0, 35.0, 62.0, 17.0, 61.0, 29.0, 35.0, 47.0, 36.0, 47.0, 33.0, 39.0, 13.0, 40.0, 39.0, 26.0, 36.0, 36.0, 33.0, 52.0, 14.0, 17.0, 43.0, 16.0, 51.0, 45.0, 49.0, 47.0, 74.0, 3.0, 21.0, 49.0, 46.0, 29.0, 15.0, 47.0, 40.0, 61.0, 47.0, 29.0, 43.0, 30.0, 45.0, 40.0, 56.0, 48.5, 25.0, 22.0, 23.0, 17.0, 27.0, 9.0, 38.0, 17.0, 7.0, 29.0, 19.0, 35.0, 44.0, 36.0, 3.0, 10.0, 57.0, 35.0, 33.0, 53.0, 24.0, 15.0, 10.0, 14.0, 5.0, 26.0, 51.0, 42.0, 30.0, 17.0, 6.0, 29.0, 18.0, 34.0, 14.0, 7.0, 19.0, 7.0, 39.0, 31.0, 50.0, 29.0, 10.0, 8.0, 3.0, 44.0, 23.0, 38.0, 36.0, 43.0, 54.0, 49.0, 12.0, 36.0, 26.0, 19.0, 28.0, 78.0, 52.0, 14.0, 24.0, 13.0, 16.0, 35.0, 22.0, 18.0, 64.0, 6.0, 45.0, 6.0, 55.0, 44.0, 7.0, 16.0, 21.0, 15.0, 62.0, 9.0, 17.0, 56.0, 27.0, 19.0, 21.0, 3.0, 36.0, 24.0, 22.0, 16.0, 24.0, 14.0, 64.0, 73.0, 48.0, 20.0, 34.0, 5.0, 42.0, 38.0, 26.0, 31.0, 45.0, 16.0, 38.0, 14.0, 20.0, 19.0, 21.0, 6.0, 57.0, 48.0, 41.0, 35.0, 37.0, 45.0, 8.0, 35.0, 12.0, 6.0, 33.0, 49.0, 20.0, 29.0, 8.0, 26.0, 20.0, 49.0, 27.0, 27.0, 30.5, 26.0, 6.0, 66.0, 67.0, 44.0, 30.0, 48.0, 38.0, 25.0, 48.0, 48.0, 34.0, 28.0, 52.0, 86.0, 14.0, 40.0, 40.0, 15.0, 18.0, 27.0, 32.0, 36.0, 37.0, 7.0, 33.0, 35.0, 59.0, 51.0, 60.0, 29.0, 11.0, 20.0, 69.0, 35.0, 32.0, 37.0, 4.0, 31.0, 37.0, 47.0, 5.0, 25.0, 22.0, 17.0, 28.0, 3.0, 33.0, 48.0, 19.0, 51.0, 29.0, 36.0, 11.0, 48.0, 41.0, 27.0, 26.0, 17.0, 15.0, 15.0, 19.0, 44.0, 9.0, 37.0, 24.0, 45.0, 17.0, 45.0, 26.0, 13.0, 5.0, 8.0, 53.0, 14.0, 53.0, 52.0, 61.0, 24.0, 55.0, 23.0, 62.0, 29.0, 29.0, 21.0, 29.0, 43.0, 42.0, 36.0, 8.0, 44.0, 37.0, 18.0, 10.0, 27.0, 58.0, 27.0, 40.0, 21.0, 21.0, 24.0, 8.0, 16.0, 47.0, 3.0, 14.0, 43.0, 34.0, 17.0, 18.0, 36.0, 16.0, 17.0, 19.0, 35.0, 33.0, 16.0, 29.0, 42.0, 39.0, 15.0, 25.0, 40.0, 67.0, 45.0, 60.0, 18.0, 7.0, 15.0, 21.0, 41.0, 60.0, 29.0, 74.0, 40.0, 40.5, 24.0, 34.0, 27.0, 66.0, 20.0, 43.0, 56.0, 42.0, 55.0, 14.0, 29.0, 61.0, 52.0, 20.0, 38.0, 31.0, 35.0, 70.0, 31.0, 13.0, 9.0, 12.0, 32.0, 26.0, 35.0, 16.0, 32.0, 19.0, 26.0, 25.0, 10.0, 34.0, 54.0, 20.0, 28.0, 20.0, 7.0, 23.0, 66.0, 6.0, 33.0, 6.0, 36.0, 42.0, 38.0, 39.0, 15.0, 29.0, 44.0, 7.0, 88.0, 24.0, 26.0, 46.0, 6.0, 6.0, 29.0, 46.0, 10.0, 50.0, 53.0, 31.0, 49.0, 30.0, 63.0, 35.0, 13.0, 17.0, 68.0, 16.0, 35.0, 17.0, 59.0, 73.0, 17.0, 21.0, 32.0, 28.0, 53.0, 39.0, 21.0, 19.0, 38.0, 56.0, 37.0, 38.0, 25.0, 23.0, 29.0, 128.0, 20.0, 8.0, 44.0, 22.0, 33.0, 24.0, 14.0, 24.0, 17.0, 73.0, 23.0, 30.0, 61.0, 61.0, 47.0, 7.0, 35.0, 50.0, 47.0, 34.0, 34.0, 59.0, 45.0, 34.0, 53.0, 55.0, 47.0, 45.0, 46.0, 35.0, 31.0, 17.0, 27.0, 66.0, 22.0, 32.0, 57.0, 32.0, 12.0, 15.0, 19.0, 11.0, 54.0, 6.0, 24.0, 26.0, 16.0, 30.0, 29.0, 14.0, 12.0, 48.0, 14.0, 4.0, 21.0, 30.0, 33.0, 23.0, 10.0, 16.0, 5.0, 9.0, 51.0, 52.0, 21.0, 20.0, 57.0, 18.0, 27.0, 52.0, 30.0, 17.0, 53.0, 54.0, 24.0, 44.0, 37.0, 38.0, 36.0, 54.0, 8.0, 30.0, 6.0, 22.0, 28.0, 40.0, 48.0, 17.0, 41.0, 146.5, 18.0, 6.0, 12.0, 33.0, 8.0, 16.0, 20.0, 7.0, 14.0, 29.0, 58.0, 44.0, 60.0, 38.0, 36.0, 15.0, 26.0, 20.0, 24.0, 17.0, 18.0, 23.0, 22.0, 23.0, 9.0, 24.0, 26.0, 61.0, 24.0, 27.0, 13.0, 39.0, 36.0, 11.0, 33.0, 53.0, 18.0, 11.0, 33.0, 33.0, 11.0, 44.0, 27.0, 36.0, 6.0, 13.0, 34.0, 33.0, 64.0, 49.0, 40.0, 24.0, 14.0, 14.0, 52.0, 34.0, 38.0, 15.0, 47.0, 18.0, 20.0, 22.0, 31.0, 58.0, 52.5, 37.0, 38.0, 24.0, 17.0, 58.0, 23.0, 9.0, 3.0, 25.0, 7.0, 42.0, 18.0, 14.0, 54.0, 31.0, 62.0, 6.0, 26.0, 69.0, 15.0, 56.0, 4.0, 48.0, 57.0, 32.0, 45.0, 36.0, 24.0, 22.0, 70.0, 5.0, 34.0, 58.0, 19.0, 10.0, 37.0, 12.0, 15.0, 61.0, 10.0, 53.0, 35.0, 48.0, 13.0, 14.0, 23.0, 10.0, 81.0, 23.0, 47.0, 6.0, 52.0, 59.0, 5.0, 30.0, 38.0, 67.0, 24.0, 18.0, 68.0, 22.0, 48.0, 56.0, 31.0, 12.0, 53.0, 39.0, 20.0, 53.0, 46.0, 12.0, 16.0, 68.0, 46.0, 33.0, 13.0, 42.0, 28.0, 17.0, 47.0, 9.0, 50.0, 55.0, 31.0, 21.0, 10.0, 29.0, 40.0, 17.0, 16.0]}, {\"histnorm\": \"probability\", \"marker\": {\"color\": \"#ed0400\"}, \"name\": \"Current\", \"nbinsx\": 10, \"opacity\": 0.6, \"type\": \"histogram\", \"x\": [18.0, 39.0, 55.0, 24.0, 15.0, 33.0, 45.0, 23.0, 5.0, 27.0, 37.0, 21.0, 32.0, 57.0, 13.0, 29.0, 36.0, 36.0, 26.0, 48.0, 31.0, 29.0, 32.0, 25.0, 4.0, 10.0, 11.0, 1.0, 42.0, 53.0, 6.0, 22.0, 39.0, 32.0, 12.0, 39.0, 45.0, 52.0, 30.0, 46.0, 32.0, 35.0, 61.0, 32.0, 22.0, 34.0, 26.0, 35.0, 23.0, 59.0, 26.0, 12.0, 9.0, 37.0, 10.0, 45.0, 15.0, 49.0, 32.0, 60.0, 16.0, 10.0, 39.0, 31.0, 31.0, 37.0, 65.0, 31.0, 46.0, 11.0, 34.0, 23.0, 18.0, 23.0, 73.0, 35.0, 38.0, 28.0, 6.0, 22.0, 35.0, 14.0, 11.0, 37.0, 43.0, 37.0, 19.0, 51.0, 27.0, 46.0, 18.0, 34.0, 48.0, 45.0, 30.0, 15.0, 28.0, 31.0, 12.0, 11.0, 49.0, 32.0, 24.0, 38.0, 50.0, 35.0, 57.0, 36.0, 35.0, 31.0, 28.0, 26.0, 54.0, 32.0, 53.0, 11.0, 20.0, 27.0, 6.0, 23.0, 66.0, 34.0, 27.0, 19.0, 34.0, 22.0, 26.0, 14.0, 41.0, 20.0, 44.0, 40.0, 49.0, 10.0, 14.0, 60.0, 39.0, 46.0, 18.0, 28.0, 30.0, 26.0, 6.0, 51.0, 16.0, 9.0, 6.0, 16.0, 25.0, 36.0, 26.0, 13.0, 49.0, 35.0, 10.0, 58.0, 37.0, 15.0, 33.0, 26.0, 20.0, 34.0, 37.0, 32.0, 5.0, 35.0, 9.0, 35.0, 13.0, 23.0, 28.0, 19.0, 46.0, 33.0, 29.0, 21.0, 13.0, 10.0, 23.0, 74.0, 8.0, 23.0, 25.0, 21.0, 5.0, 23.0, 21.0, 10.0, 29.0, 22.0, 18.0, 24.0, 57.0, 10.0, 48.0, 20.0, 62.0, 5.0, 24.0, 14.0, 33.0, 45.0, 10.0, 29.0, 57.0, 27.0, 17.0, 46.0, 13.0, 4.0, 55.0, 16.0, 23.0, 55.0, 11.0, 10.0, 24.0, 8.0, 17.0, 20.0, 41.0, 33.0, 24.0, 14.0, 6.0, 39.0, 47.0, 69.0, 10.0, 31.0, 15.0, 16.0, 23.0, 49.0, 12.0, 10.0, 19.0, 36.0, 50.0, 8.0, 15.0, 32.0, 13.0, 24.0, 52.0, 38.0, 20.0, 6.0, 3.0, 31.0, 12.0, 45.0, 41.0, 5.0, 13.0, 46.0, 54.0, 38.0, 17.0, 32.0, 40.0, 29.0, 10.0, 45.0, 33.0, 15.0, 40.0, 54.0, 34.0, 54.0, 26.0, 1.0, 24.0, 10.0, 37.0, 45.0, 66.0, 81.0, 17.0, 22.0, 67.0, 15.0, 47.0, 17.0, 6.0, 36.0, 40.0, 45.0, 39.0, 40.0, 36.0, 26.0, 18.0, 55.0, 21.0, 26.0, 5.0, 29.0, 38.5, 21.0, 41.0, 18.0, 40.0, 24.0, 51.0, 38.0, 32.0, 26.0, 79.5, 34.0, 24.0, 18.0, 67.0, 37.0, 20.0, 12.0, 35.0, 20.0, 32.0, 24.0, 13.0, 25.0, 23.0, 11.0, 4.0, 27.0, 34.0, 34.0, 15.0, 56.0, 3.0, 62.0, 56.0, 16.0, 44.0, 28.0, 26.0, 44.0, 15.0, 32.0, 32.0, 6.0, 16.0, 30.0, 22.0, 31.0, 15.0, 51.0, 18.0, 24.0, 29.0, 12.0, 19.5, 30.0, 45.0, 18.0, 21.0, 35.0, 47.0, 52.0, 16.0, 23.0, 22.0, 39.0, 21.0, 29.0, 28.0, 25.0, 13.0, 21.0, 12.0, 45.0, 39.0, 26.0, 27.0, 7.0, 6.0, 47.0, 68.0, 15.0, 43.0, 12.0, 46.0, 26.0, 36.0, 6.0, 62.0, 45.0, 44.0, 21.0, 14.0, 31.0, 13.0, 66.0, 34.0, 25.0, 8.0, 47.0, 26.0, 67.0, 34.0, 27.0, 29.0, 54.0, 56.0, 6.0, 5.0, 58.0, 45.0, 37.0, 10.0, 13.0, 41.0, 12.0, 35.0, 17.0, 9.0, 17.0, 40.0, 6.0, 34.0, 38.0, 39.0, 9.0, 25.0, 37.0, 7.0, 26.0, 30.0, 11.0, 29.0, 22.0, 21.0, 34.0, 45.0, 19.0, 31.0, 5.0, 47.0, 21.0, 26.0, 33.0, 33.0, 5.0, 25.0, 42.0, 40.0, 40.0, 54.0, 28.0, 46.0, 46.0, 52.0, 25.0, 29.0, 53.0, 95.0, 24.0, 42.0, 17.0, 53.0, 24.0, 35.0, 54.0, 53.0, 52.0, 62.0, 34.0, 48.0, 15.0, 36.0, 37.0, 11.0, 31.0, 26.0, 15.0, 69.0, 34.0, 11.0, 29.0, 27.0, 24.0, 52.0, 44.0, 39.0, 31.0, 27.0, 6.0, 50.0, 11.0, 49.0, 30.0, 17.0, 51.0, 20.0, 15.0, 23.0, 18.0, 23.0, 11.0, 63.0, 36.0, 23.0, 15.0, 30.0, 41.0, 57.0, 16.0, 80.0, 23.0, 28.0, 6.0, 40.0, 27.0, 49.0, 39.0, 12.0, 15.0, 29.0, 62.0, 27.0, 7.0, 15.0, 25.0, 37.0, 46.0, 30.0, 35.0, 14.0, 40.0, 57.0, 20.0, 8.0, 8.0, 18.0, 57.0, 70.5, 54.0, 13.0, 29.0, 25.0, 32.0, 61.0, 55.0, 12.0, 53.0, 41.0, 50.0, 14.0, 64.0, 58.0, 68.0, 29.0, 29.0, 12.0, 38.0, 22.0, 10.0, 9.0, 19.0, 42.0, 31.0, 17.0, 18.0, 31.0, 13.0, 34.0, 22.0, 34.0, 60.0, 16.0, 56.0, 27.0, 45.0, 41.0, 24.0, 16.0, 35.0, 31.0, 6.0, 43.0, 53.0, 14.0, 32.0, 21.0, 71.0, 36.0, 67.0, 12.0, 11.0, 42.0, 7.0, 70.0, 27.0, 37.0, 7.0, 33.0, 37.0, 20.0, 28.0, 21.0, 34.0, 19.0, 48.0, 23.0, 44.0, 5.0, 54.0, 49.0, 23.0, 29.0, 17.0, 37.0, 81.0, 8.0, 16.0, 3.0, 28.0, 9.0, 64.0, 29.0, 68.0, 50.0, 3.0, 26.0, 64.0, 5.0, 37.0, 19.0, 18.0, 58.0, 30.0, 38.0, 29.0, 18.0, 9.0, 5.5, 5.0, 50.0, 31.0, 29.0, 27.0, 24.0, 35.0, 25.0, 61.0, 20.0, 20.0, 29.0, 22.0, 8.0, 14.0, 66.0, 46.0, 49.0, 53.0, 23.0, 36.0, 15.0, 40.0, 19.0, 54.0, 22.0, 48.5, 61.0, 47.0, 18.0, 5.0, 16.0, 65.0, 27.0, 20.0, 28.0, 6.0, 18.0, 26.0, 19.0, 22.0, 32.0, 36.0, 15.0, 50.0, 22.0, 40.0, 4.0, 24.0, 33.0, 49.0, 20.0, 24.0, 57.0, 44.0, 34.0, 9.0, 105.0, 16.0, 44.0, 35.0, 34.0, 56.0, 53.0, 23.0, 23.0, 46.0, 40.0, 14.0, 35.0, 22.0, 45.0, 31.0, 42.0, 60.0, 15.0, 28.0, 25.0, 31.0, 11.0, 61.0, 5.0, 21.0, 64.0, 20.0, 19.0, 34.0, 18.0, 18.0, 26.0, 63.0, 37.0, 34.0, 59.0, 33.0, 20.0, 10.0, 49.0, 15.0, 61.0, 14.0, 51.0, 26.0, 8.0, 4.0, 15.0, 43.0, 6.0, 64.0, 50.5, 22.0, 26.0, 20.0, 17.0, 9.0, 17.0, 44.5, 54.0, 54.0, 17.0, 11.0, 10.0, 11.0, 28.0, 11.0, 12.0, 6.0, 35.0, 15.0, 7.0, 25.0, 4.0, 42.0, 52.0, 33.0, 48.5, 40.0, 20.0, 12.0, 10.0, 41.0, 52.0, 57.0, 25.0, 18.0, 25.0, 26.0, 31.0, 8.0, 51.0, 25.0, 31.0, 14.0, 46.0, 67.0, 41.0, 26.0, 16.0, 17.0, 6.0, 44.0, 53.0, 45.0, 48.0, 11.0, 54.0, 30.0, 8.0, 72.0, 25.0, 32.0, 81.0, 46.0, 36.0, 52.0, 36.0, 63.0, 42.0, 60.5, 15.0, 16.0, 17.0, 6.0, 45.0, 34.0, 53.0, 41.0, 5.0, 45.0, 33.0, 33.0, 6.0, 16.0, 3.0, 52.0, 45.0, 15.0, 30.0, 50.0, 12.0, 25.0, 25.0, 35.0, 39.0, 6.0, 40.0, 11.0, 16.0, 34.0, 7.0, 5.0, 17.0, 48.5, 51.0, 39.0, 15.0, 14.0, 29.0, 6.0, 21.0, 58.0, 64.0, 62.0, 68.0, 24.0, 9.0, 19.0, 10.0, 44.0, 44.0, 33.0, 33.0, 8.0, 5.0, 21.0, 25.0, 26.0, 73.0, 32.0, 31.0, 47.0, 24.0, 14.0, 21.0, 56.0, 34.0, 37.0, 67.0, 42.0, 42.0, 30.0, 29.0, 26.0, 7.0, 50.0, 39.0, 19.0, 16.0, 56.0, 57.0, 40.0, 40.0, 49.0, 18.0, 48.0, 38.0, 17.0, 26.0, 6.0, 56.0, 25.0, 15.0, 18.0, 26.0, 29.0, 17.0, 10.0, 3.0, 10.0, 27.0, 26.0, 38.0, 3.0, 23.0, 43.0, 4.0, 32.0, 47.0, 37.0, 43.0, 36.0, 3.0, 29.0, 60.0, 54.0, 40.0, 69.0, 5.0, 48.0, 32.0, 17.0, 5.0, 27.0, 32.0, 36.0, 14.0, 30.0, 41.0, 36.0, 55.0, 59.0, 17.0, 7.0, 15.0, 31.0, 29.0, 52.0, 33.0, 43.0, 23.0, 25.0, 14.0, 35.0, 32.0, 44.0, 21.0, 31.0, 10.0, 18.0, 34.0, 51.0, 52.0, 26.0, 6.0, 59.0, 29.0, 8.0, 17.0, 31.0, 12.0, 11.0, 5.0, 36.0, 7.0, 25.0, 34.0, 15.0, 39.0, 16.0, 22.0, 34.0, 20.0, 50.0, 44.0, 44.0, 38.0, 46.0, 24.0, 52.0, 20.0, 16.0, 13.0, 32.0]}], \"layout\": {\"legend\": {\"orientation\": \"h\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"free.sulfur.dioxide\"}}, \"yaxis\": {\"title\": {\"text\": \"Share\"}}}}, \"free.sulfur.dioxide_drift\": {\"title\": \"\", \"size\": 2, \"text\": \"\", \"type\": \"big_graph\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"Current\", \"type\": \"scatter\", \"x\": [443, 319, 703, 526, 76, 963, 1260, 532, 1561, 517, 506, 1557, 271, 1058, 1381, 1039, 542, 107, 161, 1301, 519, 1021, 1213, 223, 1286, 1426, 1234, 587, 1183, 182, 567, 1492, 724, 1262, 1509, 657, 1137, 913, 1445, 342, 781, 14, 971, 1072, 1254, 678, 1175, 1481, 1370, 1443, 18, 1151, 1380, 434, 1430, 554, 53, 535, 1050, 427, 259, 124, 961, 1488, 1563, 720, 1291, 1061, 425, 846, 1147, 204, 1317, 618, 1088, 927, 1196, 582, 1194, 360, 1449, 862, 1135, 1453, 1442, 1017, 268, 685, 317, 775, 1086, 942, 1052, 801, 1362, 219, 379, 649, 1195, 479, 1542, 609, 930, 1105, 34, 708, 686, 1132, 693, 733, 1562, 1190, 473, 737, 672, 969, 858, 5, 1556, 298, 80, 940, 361, 1154, 1545, 1622, 784, 19, 1522, 996, 54, 1415, 1564, 1593, 1236, 9, 353, 1222, 113, 1010, 1263, 877, 82, 381, 818, 1210, 1409, 66, 254, 817, 92, 1340, 122, 1357, 511, 1546, 692, 17, 1248, 414, 52, 1296, 191, 175, 233, 900, 785, 935, 1298, 156, 487, 159, 481, 1255, 1597, 253, 1491, 841, 187, 914, 979, 249, 1114, 1366, 814, 716, 465, 875, 1242, 670, 299, 593, 436, 728, 141, 229, 1057, 912, 994, 648, 799, 1164, 1073, 4, 516, 152, 1267, 1237, 752, 1150, 825, 402, 1277, 575, 1437, 838, 390, 1505, 1093, 1026, 1611, 31, 674, 866, 1328, 616, 861, 897, 148, 303, 1451, 602, 1125, 1614, 1047, 1462, 1148, 574, 899, 1327, 89, 530, 408, 1192, 177, 520, 993, 326, 992, 717, 895, 1421, 984, 240, 85, 557, 278, 938, 1425, 958, 1232, 1149, 171, 1220, 227, 891, 489, 1391, 1184, 1032, 393, 726, 192, 260, 880, 1592, 1537, 491, 759, 1473, 959, 1454, 1015, 965, 1393, 1489, 1256, 133, 202, 1036, 438, 483, 666, 461, 142, 1181, 1580, 308, 538, 170, 310, 743, 1101, 1179, 315, 22, 1529, 45, 879, 1110, 61, 522, 1397, 829, 576, 1193, 1202, 1549, 1375, 27, 527, 1186, 1273, 828, 539, 1049, 1014, 412, 1091, 1497, 1595, 347, 2, 844, 1490, 632, 211, 1582, 918, 1217, 1115, 744, 459, 579, 771, 96, 178, 108, 1516, 805, 1240, 440, 619, 1, 1315, 1239, 1347, 512, 48, 722, 1517, 1621, 446, 565, 568, 796, 231, 1070, 1063, 215, 513, 704, 354, 55, 881, 746, 641, 762, 279, 1145, 1468, 224, 302, 911, 218, 1079, 874, 1266, 792, 1136, 372, 295, 364, 580, 1615, 688, 1560, 333, 467, 968, 399, 760, 740, 953, 1520, 1446, 1214, 615, 524, 546, 1495, 1324, 452, 1515, 432, 863, 442, 847, 276, 456, 184, 1116, 1200, 458, 1508, 1087, 1478, 376, 1479, 563, 1146, 1507, 42, 944, 823, 1228, 656, 1227, 198, 309, 761, 1158, 549, 47, 1209, 529, 933, 220, 1624, 1591, 651, 536, 362, 1314, 420, 564, 475, 482, 140, 679, 1436, 1334, 77, 39, 570, 962, 808, 981, 322, 1471, 251, 695, 1128, 813, 757, 820, 853, 831, 1246, 58, 553, 597, 241, 1288, 330, 1005, 789, 1617, 56, 1126, 411, 548, 501, 1211, 642, 558, 1605, 745, 878, 1056, 667, 435, 29, 270, 35, 1157, 422, 1310, 114, 1524, 1422, 689, 1018, 1168, 1360, 985, 1191, 793, 1363, 1504, 581, 644, 1199, 621, 1612, 494, 665, 431, 1095, 638, 1042, 1404, 1030, 40, 1121, 75, 1588, 1417, 247, 713, 1590, 186, 646, 312, 8, 1551, 1302, 1044, 768, 884, 1585, 1618, 826, 445, 712, 464, 1308, 195, 655, 1487, 1389, 1356, 243, 401, 572, 1074, 810, 477, 1460, 1544, 1182, 285, 471, 936, 1238, 578, 1034, 1535, 1513, 426, 1311, 1001, 986, 1038, 980, 1064, 620, 982, 1565, 194, 474, 1428, 569, 1165, 49, 1333, 1401, 1307, 1076, 991, 1566, 44, 1342, 245, 943, 300, 583, 1013, 269, 1548, 313, 776, 283, 1444, 540, 406, 338, 466, 363, 1002, 320, 1264, 1089, 70, 1027, 500, 10, 907, 505, 1295, 864, 1432, 64, 1122, 1543, 416, 898, 654, 205, 328, 486, 999, 1377, 970, 528, 1558, 418, 1379, 1299, 1378, 590, 1247, 1174, 472, 1323, 131, 15, 439, 1528, 476, 725, 1203, 1109, 1003, 1365, 103, 1279, 60, 871, 78, 391, 165, 1335, 1410, 1129, 960, 349, 185, 1464, 371, 117, 1398, 252, 507, 1613, 311, 1419, 395, 987, 358, 263, 359, 1559, 1305, 1506, 1376, 1055, 634, 1552, 16, 51, 1258, 493, 601, 997, 351, 711, 1604, 1486, 1339, 794, 97, 1475, 1423, 196, 748, 183, 1433, 1579, 613, 1536, 989, 682, 533, 610, 687, 892, 81, 896, 397, 267, 589, 386, 795, 1416, 132, 265, 1609, 1461, 883, 88, 840, 988, 1354, 676, 916, 629, 1269, 924, 294, 261, 1541, 1081, 1348, 1576, 405, 1616, 356, 608, 1097, 239, 1249, 1099, 1403, 119, 1096, 977, 751, 374, 453, 110, 1336, 1390, 905, 1287, 503, 1031, 1331, 1224, 729, 410, 1540, 367, 1607, 384, 200, 65, 1358, 1394, 1023, 272, 1418, 955, 677, 238, 1133, 974, 541, 478, 1257, 1265, 1465, 1589, 1326, 188, 1083, 681, 906, 1092, 1276, 316, 214, 1078, 1502, 1084, 660, 1142, 531, 255, 30, 662, 1253, 230, 157, 1343, 385, 1169, 380, 1188, 721, 264, 787, 101, 13, 1274, 68, 1024, 1170, 1156, 71, 1577, 566, 1372, 1245, 798, 523, 626, 495, 937, 155, 887, 758, 921, 790, 1349, 1230, 366, 1531, 983, 839, 228, 417, 206, 742, 79, 190, 492, 948, 145, 923, 318, 824, 1374, 1124, 1463, 596, 457, 144, 1359, 1292, 1045, 764, 842, 1140, 1408, 995, 904, 592, 1458, 135, 83, 1062, 154, 1440, 1283, 773, 1414, 127, 1177, 1318, 1413, 403, 150, 346, 413, 1303, 1523, 1619, 394, 1261, 1054, 208, 496, 352, 95, 625, 571, 37, 485, 143, 946, 158, 552, 1527, 1029, 518, 1180, 1218, 236, 1100, 222, 1431, 345, 1459, 120, 661, 588, 1623, 1493, 62, 1429, 811, 193, 235, 181, 1320, 389, 1103, 521, 669, 332, 258, 1369, 1538, 957, 382, 1382, 1567, 331, 934, 614, 262, 893, 6, 266, 769, 38, 901, 1573, 1578, 545, 118, 783, 652, 1025, 706, 105, 1189, 484, 1569, 630, 683, 20, 870, 242, 50, 162, 915, 966, 441, 867, 731, 1102, 1000, 1268, 1223, 822, 301, 723, 172], \"y\": [18.0, 39.0, 55.0, 24.0, 15.0, 33.0, 45.0, 23.0, 5.0, 27.0, 37.0, 21.0, 32.0, 57.0, 13.0, 29.0, 36.0, 36.0, 26.0, 48.0, 31.0, 29.0, 32.0, 25.0, 4.0, 10.0, 11.0, 1.0, 42.0, 53.0, 6.0, 22.0, 39.0, 32.0, 12.0, 39.0, 45.0, 52.0, 30.0, 46.0, 32.0, 35.0, 61.0, 32.0, 22.0, 34.0, 26.0, 35.0, 23.0, 59.0, 26.0, 12.0, 9.0, 37.0, 10.0, 45.0, 15.0, 49.0, 32.0, 60.0, 16.0, 10.0, 39.0, 31.0, 31.0, 37.0, 65.0, 31.0, 46.0, 11.0, 34.0, 23.0, 18.0, 23.0, 73.0, 35.0, 38.0, 28.0, 6.0, 22.0, 35.0, 14.0, 11.0, 37.0, 43.0, 37.0, 19.0, 51.0, 27.0, 46.0, 18.0, 34.0, 48.0, 45.0, 30.0, 15.0, 28.0, 31.0, 12.0, 11.0, 49.0, 32.0, 24.0, 38.0, 50.0, 35.0, 57.0, 36.0, 35.0, 31.0, 28.0, 26.0, 54.0, 32.0, 53.0, 11.0, 20.0, 27.0, 6.0, 23.0, 66.0, 34.0, 27.0, 19.0, 34.0, 22.0, 26.0, 14.0, 41.0, 20.0, 44.0, 40.0, 49.0, 10.0, 14.0, 60.0, 39.0, 46.0, 18.0, 28.0, 30.0, 26.0, 6.0, 51.0, 16.0, 9.0, 6.0, 16.0, 25.0, 36.0, 26.0, 13.0, 49.0, 35.0, 10.0, 58.0, 37.0, 15.0, 33.0, 26.0, 20.0, 34.0, 37.0, 32.0, 5.0, 35.0, 9.0, 35.0, 13.0, 23.0, 28.0, 19.0, 46.0, 33.0, 29.0, 21.0, 13.0, 10.0, 23.0, 74.0, 8.0, 23.0, 25.0, 21.0, 5.0, 23.0, 21.0, 10.0, 29.0, 22.0, 18.0, 24.0, 57.0, 10.0, 48.0, 20.0, 62.0, 5.0, 24.0, 14.0, 33.0, 45.0, 10.0, 29.0, 57.0, 27.0, 17.0, 46.0, 13.0, 4.0, 55.0, 16.0, 23.0, 55.0, 11.0, 10.0, 24.0, 8.0, 17.0, 20.0, 41.0, 33.0, 24.0, 14.0, 6.0, 39.0, 47.0, 69.0, 10.0, 31.0, 15.0, 16.0, 23.0, 49.0, 12.0, 10.0, 19.0, 36.0, 50.0, 8.0, 15.0, 32.0, 13.0, 24.0, 52.0, 38.0, 20.0, 6.0, 3.0, 31.0, 12.0, 45.0, 41.0, 5.0, 13.0, 46.0, 54.0, 38.0, 17.0, 32.0, 40.0, 29.0, 10.0, 45.0, 33.0, 15.0, 40.0, 54.0, 34.0, 54.0, 26.0, 1.0, 24.0, 10.0, 37.0, 45.0, 66.0, 81.0, 17.0, 22.0, 67.0, 15.0, 47.0, 17.0, 6.0, 36.0, 40.0, 45.0, 39.0, 40.0, 36.0, 26.0, 18.0, 55.0, 21.0, 26.0, 5.0, 29.0, 38.5, 21.0, 41.0, 18.0, 40.0, 24.0, 51.0, 38.0, 32.0, 26.0, 79.5, 34.0, 24.0, 18.0, 67.0, 37.0, 20.0, 12.0, 35.0, 20.0, 32.0, 24.0, 13.0, 25.0, 23.0, 11.0, 4.0, 27.0, 34.0, 34.0, 15.0, 56.0, 3.0, 62.0, 56.0, 16.0, 44.0, 28.0, 26.0, 44.0, 15.0, 32.0, 32.0, 6.0, 16.0, 30.0, 22.0, 31.0, 15.0, 51.0, 18.0, 24.0, 29.0, 12.0, 19.5, 30.0, 45.0, 18.0, 21.0, 35.0, 47.0, 52.0, 16.0, 23.0, 22.0, 39.0, 21.0, 29.0, 28.0, 25.0, 13.0, 21.0, 12.0, 45.0, 39.0, 26.0, 27.0, 7.0, 6.0, 47.0, 68.0, 15.0, 43.0, 12.0, 46.0, 26.0, 36.0, 6.0, 62.0, 45.0, 44.0, 21.0, 14.0, 31.0, 13.0, 66.0, 34.0, 25.0, 8.0, 47.0, 26.0, 67.0, 34.0, 27.0, 29.0, 54.0, 56.0, 6.0, 5.0, 58.0, 45.0, 37.0, 10.0, 13.0, 41.0, 12.0, 35.0, 17.0, 9.0, 17.0, 40.0, 6.0, 34.0, 38.0, 39.0, 9.0, 25.0, 37.0, 7.0, 26.0, 30.0, 11.0, 29.0, 22.0, 21.0, 34.0, 45.0, 19.0, 31.0, 5.0, 47.0, 21.0, 26.0, 33.0, 33.0, 5.0, 25.0, 42.0, 40.0, 40.0, 54.0, 28.0, 46.0, 46.0, 52.0, 25.0, 29.0, 53.0, 95.0, 24.0, 42.0, 17.0, 53.0, 24.0, 35.0, 54.0, 53.0, 52.0, 62.0, 34.0, 48.0, 15.0, 36.0, 37.0, 11.0, 31.0, 26.0, 15.0, 69.0, 34.0, 11.0, 29.0, 27.0, 24.0, 52.0, 44.0, 39.0, 31.0, 27.0, 6.0, 50.0, 11.0, 49.0, 30.0, 17.0, 51.0, 20.0, 15.0, 23.0, 18.0, 23.0, 11.0, 63.0, 36.0, 23.0, 15.0, 30.0, 41.0, 57.0, 16.0, 80.0, 23.0, 28.0, 6.0, 40.0, 27.0, 49.0, 39.0, 12.0, 15.0, 29.0, 62.0, 27.0, 7.0, 15.0, 25.0, 37.0, 46.0, 30.0, 35.0, 14.0, 40.0, 57.0, 20.0, 8.0, 8.0, 18.0, 57.0, 70.5, 54.0, 13.0, 29.0, 25.0, 32.0, 61.0, 55.0, 12.0, 53.0, 41.0, 50.0, 14.0, 64.0, 58.0, 68.0, 29.0, 29.0, 12.0, 38.0, 22.0, 10.0, 9.0, 19.0, 42.0, 31.0, 17.0, 18.0, 31.0, 13.0, 34.0, 22.0, 34.0, 60.0, 16.0, 56.0, 27.0, 45.0, 41.0, 24.0, 16.0, 35.0, 31.0, 6.0, 43.0, 53.0, 14.0, 32.0, 21.0, 71.0, 36.0, 67.0, 12.0, 11.0, 42.0, 7.0, 70.0, 27.0, 37.0, 7.0, 33.0, 37.0, 20.0, 28.0, 21.0, 34.0, 19.0, 48.0, 23.0, 44.0, 5.0, 54.0, 49.0, 23.0, 29.0, 17.0, 37.0, 81.0, 8.0, 16.0, 3.0, 28.0, 9.0, 64.0, 29.0, 68.0, 50.0, 3.0, 26.0, 64.0, 5.0, 37.0, 19.0, 18.0, 58.0, 30.0, 38.0, 29.0, 18.0, 9.0, 5.5, 5.0, 50.0, 31.0, 29.0, 27.0, 24.0, 35.0, 25.0, 61.0, 20.0, 20.0, 29.0, 22.0, 8.0, 14.0, 66.0, 46.0, 49.0, 53.0, 23.0, 36.0, 15.0, 40.0, 19.0, 54.0, 22.0, 48.5, 61.0, 47.0, 18.0, 5.0, 16.0, 65.0, 27.0, 20.0, 28.0, 6.0, 18.0, 26.0, 19.0, 22.0, 32.0, 36.0, 15.0, 50.0, 22.0, 40.0, 4.0, 24.0, 33.0, 49.0, 20.0, 24.0, 57.0, 44.0, 34.0, 9.0, 105.0, 16.0, 44.0, 35.0, 34.0, 56.0, 53.0, 23.0, 23.0, 46.0, 40.0, 14.0, 35.0, 22.0, 45.0, 31.0, 42.0, 60.0, 15.0, 28.0, 25.0, 31.0, 11.0, 61.0, 5.0, 21.0, 64.0, 20.0, 19.0, 34.0, 18.0, 18.0, 26.0, 63.0, 37.0, 34.0, 59.0, 33.0, 20.0, 10.0, 49.0, 15.0, 61.0, 14.0, 51.0, 26.0, 8.0, 4.0, 15.0, 43.0, 6.0, 64.0, 50.5, 22.0, 26.0, 20.0, 17.0, 9.0, 17.0, 44.5, 54.0, 54.0, 17.0, 11.0, 10.0, 11.0, 28.0, 11.0, 12.0, 6.0, 35.0, 15.0, 7.0, 25.0, 4.0, 42.0, 52.0, 33.0, 48.5, 40.0, 20.0, 12.0, 10.0, 41.0, 52.0, 57.0, 25.0, 18.0, 25.0, 26.0, 31.0, 8.0, 51.0, 25.0, 31.0, 14.0, 46.0, 67.0, 41.0, 26.0, 16.0, 17.0, 6.0, 44.0, 53.0, 45.0, 48.0, 11.0, 54.0, 30.0, 8.0, 72.0, 25.0, 32.0, 81.0, 46.0, 36.0, 52.0, 36.0, 63.0, 42.0, 60.5, 15.0, 16.0, 17.0, 6.0, 45.0, 34.0, 53.0, 41.0, 5.0, 45.0, 33.0, 33.0, 6.0, 16.0, 3.0, 52.0, 45.0, 15.0, 30.0, 50.0, 12.0, 25.0, 25.0, 35.0, 39.0, 6.0, 40.0, 11.0, 16.0, 34.0, 7.0, 5.0, 17.0, 48.5, 51.0, 39.0, 15.0, 14.0, 29.0, 6.0, 21.0, 58.0, 64.0, 62.0, 68.0, 24.0, 9.0, 19.0, 10.0, 44.0, 44.0, 33.0, 33.0, 8.0, 5.0, 21.0, 25.0, 26.0, 73.0, 32.0, 31.0, 47.0, 24.0, 14.0, 21.0, 56.0, 34.0, 37.0, 67.0, 42.0, 42.0, 30.0, 29.0, 26.0, 7.0, 50.0, 39.0, 19.0, 16.0, 56.0, 57.0, 40.0, 40.0, 49.0, 18.0, 48.0, 38.0, 17.0, 26.0, 6.0, 56.0, 25.0, 15.0, 18.0, 26.0, 29.0, 17.0, 10.0, 3.0, 10.0, 27.0, 26.0, 38.0, 3.0, 23.0, 43.0, 4.0, 32.0, 47.0, 37.0, 43.0, 36.0, 3.0, 29.0, 60.0, 54.0, 40.0, 69.0, 5.0, 48.0, 32.0, 17.0, 5.0, 27.0, 32.0, 36.0, 14.0, 30.0, 41.0, 36.0, 55.0, 59.0, 17.0, 7.0, 15.0, 31.0, 29.0, 52.0, 33.0, 43.0, 23.0, 25.0, 14.0, 35.0, 32.0, 44.0, 21.0, 31.0, 10.0, 18.0, 34.0, 51.0, 52.0, 26.0, 6.0, 59.0, 29.0, 8.0, 17.0, 31.0, 12.0, 11.0, 5.0, 36.0, 7.0, 25.0, 34.0, 15.0, 39.0, 16.0, 22.0, 34.0, 20.0, 50.0, 44.0, 44.0, 38.0, 46.0, 24.0, 52.0, 20.0, 16.0, 13.0, 32.0]}, {\"marker\": {\"color\": \"white\", \"opacity\": 0.005, \"size\": 0.01}, \"mode\": \"markers\", \"name\": \"Current\", \"showlegend\": false, \"type\": \"scatter\", \"x\": [2, 2], \"y\": [-22.117841690935318, 83.80684169093531]}], \"layout\": {\"legend\": {\"orientation\": \"h\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"shapes\": [{\"fillcolor\": \"LightGreen\", \"layer\": \"below\", \"line\": {\"width\": 0}, \"opacity\": 0.5, \"type\": \"rect\", \"x0\": 0, \"x1\": 1, \"xref\": \"paper\", \"y0\": -22.117841690935318, \"y1\": 83.80684169093531, \"yref\": \"y\"}, {\"line\": {\"color\": \"Green\", \"width\": 3}, \"name\": \"Reference\", \"type\": \"line\", \"x0\": 0, \"x1\": 1, \"xref\": \"paper\", \"y0\": 30.8445, \"y1\": 30.8445, \"yref\": \"y\"}], \"showlegend\": true, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"Index\"}}, \"yaxis\": {\"title\": {\"text\": \"free.sulfur.dioxide\"}}}}}, \"total.sulfur.dioxide_distr\": {\"data\": [{\"histnorm\": \"probability\", \"marker\": {\"color\": \"#4d4d4d\"}, \"name\": \"Reference\", \"nbinsx\": 10, \"opacity\": 0.6, \"type\": \"histogram\", \"x\": [123.0, 231.0, 126.0, 107.0, 175.0, 65.0, 107.0, 115.0, 121.0, 69.0, 180.0, 192.0, 9.0, 158.0, 65.0, 195.0, 151.0, 211.0, 44.0, 150.0, 77.0, 101.0, 43.0, 74.0, 45.0, 93.0, 149.0, 23.0, 202.0, 148.0, 95.0, 174.0, 142.0, 177.0, 84.0, 170.0, 110.0, 93.0, 158.0, 131.0, 75.0, 164.0, 165.0, 92.0, 54.0, 163.0, 79.0, 183.0, 144.0, 92.0, 19.0, 139.0, 12.0, 170.0, 187.0, 63.0, 130.0, 186.0, 142.0, 206.0, 99.0, 66.0, 67.0, 148.0, 60.0, 12.0, 97.0, 120.0, 63.0, 54.0, 211.0, 110.0, 120.0, 57.0, 142.0, 18.0, 135.0, 91.0, 214.0, 110.0, 177.0, 183.0, 20.0, 104.0, 106.0, 159.0, 189.0, 196.0, 156.0, 163.0, 192.0, 73.0, 98.0, 112.0, 104.0, 127.0, 147.0, 19.0, 130.0, 10.0, 128.0, 180.0, 144.0, 94.0, 140.0, 22.0, 100.0, 41.0, 24.0, 84.0, 100.0, 114.0, 84.0, 160.0, 124.0, 105.0, 86.0, 149.0, 87.0, 53.0, 125.0, 86.0, 33.0, 101.0, 141.0, 289.0, 168.0, 94.0, 14.0, 90.0, 37.0, 83.0, 60.0, 125.0, 189.0, 173.0, 220.0, 93.0, 169.0, 57.0, 124.0, 98.0, 93.0, 143.0, 177.0, 50.0, 93.0, 17.0, 119.0, 109.0, 148.0, 69.0, 55.0, 245.0, 179.0, 16.0, 143.0, 151.0, 164.0, 113.0, 116.0, 131.0, 172.0, 133.0, 134.0, 117.0, 85.0, 36.0, 157.0, 47.0, 200.0, 91.0, 41.0, 8.0, 95.0, 183.0, 8.0, 200.0, 103.0, 194.0, 133.0, 86.0, 38.0, 103.0, 117.0, 176.0, 166.0, 115.0, 144.0, 49.0, 233.0, 158.0, 121.0, 20.0, 110.0, 92.0, 72.0, 87.0, 171.0, 44.0, 171.0, 106.0, 76.0, 134.0, 243.0, 23.0, 228.0, 140.0, 89.0, 31.0, 25.0, 127.0, 138.0, 38.0, 147.0, 201.0, 23.0, 127.0, 106.0, 26.0, 129.5, 72.0, 63.0, 71.0, 115.0, 155.0, 52.0, 8.0, 23.0, 109.0, 44.0, 109.0, 155.0, 159.0, 152.0, 161.0, 17.0, 111.0, 194.0, 113.0, 85.0, 77.0, 34.0, 195.0, 109.0, 149.0, 42.0, 143.0, 206.0, 202.0, 118.0, 111.0, 159.0, 100.0, 133.0, 179.0, 167.0, 112.0, 117.0, 122.0, 195.0, 115.0, 91.0, 68.0, 45.0, 71.0, 137.0, 213.0, 192.0, 142.0, 111.0, 197.0, 161.0, 119.0, 120.0, 69.0, 115.0, 20.0, 72.0, 115.0, 150.0, 58.0, 47.0, 123.0, 97.0, 63.0, 43.0, 144.0, 31.0, 134.0, 15.0, 138.0, 104.0, 51.0, 33.0, 134.0, 126.0, 15.0, 163.0, 92.0, 136.0, 127.0, 118.0, 178.0, 15.0, 77.0, 194.0, 84.0, 96.0, 86.0, 128.0, 11.0, 164.0, 166.0, 164.0, 94.0, 118.0, 126.0, 49.0, 113.0, 150.0, 72.0, 58.0, 124.0, 122.0, 111.0, 111.0, 46.0, 204.0, 181.0, 74.0, 22.0, 124.0, 155.0, 210.0, 146.0, 198.0, 42.0, 73.0, 101.0, 121.0, 86.0, 184.0, 33.0, 133.0, 80.0, 128.0, 106.0, 128.0, 160.0, 75.0, 86.0, 78.0, 158.0, 87.0, 110.0, 156.0, 25.0, 189.0, 111.0, 189.0, 156.0, 139.0, 164.0, 106.0, 151.0, 60.0, 186.0, 184.0, 52.0, 176.0, 140.0, 141.0, 139.0, 92.0, 112.0, 150.0, 116.0, 169.0, 107.0, 128.0, 202.0, 227.0, 75.0, 116.0, 192.0, 114.0, 228.0, 64.0, 193.0, 177.0, 197.0, 155.0, 140.0, 167.0, 88.0, 163.0, 161.0, 142.0, 229.0, 48.0, 84.0, 156.0, 26.0, 66.0, 28.0, 143.0, 29.0, 22.0, 101.0, 143.0, 168.0, 152.0, 104.0, 9.0, 31.0, 146.0, 92.0, 98.0, 165.0, 99.0, 73.0, 131.0, 101.0, 28.0, 49.0, 144.0, 109.0, 130.0, 114.0, 20.0, 44.0, 96.0, 113.0, 61.0, 12.0, 48.0, 81.0, 104.0, 119.0, 156.0, 115.0, 24.0, 84.0, 11.0, 179.0, 90.0, 161.0, 176.0, 187.0, 180.0, 146.0, 90.0, 105.0, 93.0, 27.0, 182.0, 186.0, 171.0, 46.0, 87.0, 99.0, 84.0, 121.0, 171.0, 95.0, 158.0, 12.0, 138.0, 16.0, 149.0, 201.0, 35.0, 34.0, 177.0, 55.0, 138.0, 71.0, 63.0, 189.0, 103.0, 40.0, 113.0, 12.0, 114.0, 98.0, 93.0, 98.0, 44.0, 171.0, 179.0, 142.0, 197.0, 54.0, 187.0, 34.0, 155.0, 157.0, 124.0, 70.0, 227.0, 115.0, 174.0, 28.0, 249.5, 75.0, 90.0, 21.0, 206.0, 153.0, 142.0, 100.0, 81.0, 104.0, 50.0, 200.0, 65.0, 12.0, 170.0, 164.0, 151.0, 118.0, 25.0, 81.0, 27.0, 188.0, 151.0, 107.0, 218.0, 100.0, 19.0, 171.0, 210.0, 130.0, 96.0, 198.0, 167.0, 76.0, 82.0, 82.0, 102.0, 159.0, 242.0, 213.0, 49.0, 78.0, 141.0, 31.0, 22.0, 132.0, 148.0, 125.0, 157.0, 37.0, 96.0, 200.0, 143.0, 131.0, 173.0, 115.0, 61.0, 57.0, 160.0, 107.0, 79.0, 155.0, 23.0, 135.0, 194.0, 172.0, 13.0, 57.0, 48.0, 88.0, 112.0, 21.0, 87.0, 148.0, 125.0, 117.0, 160.0, 225.0, 31.0, 179.0, 149.0, 173.0, 158.0, 67.0, 102.0, 93.0, 78.0, 192.0, 131.0, 122.0, 220.0, 142.0, 43.0, 98.0, 86.0, 50.0, 110.0, 24.0, 209.0, 63.0, 247.0, 103.0, 206.0, 98.0, 95.0, 170.0, 204.0, 111.0, 163.0, 115.0, 93.0, 132.0, 111.0, 158.0, 97.0, 168.0, 221.0, 42.0, 87.0, 122.0, 178.0, 93.0, 234.0, 114.0, 87.0, 42.0, 62.0, 70.0, 168.0, 13.0, 78.0, 127.0, 134.0, 171.0, 117.0, 87.0, 160.0, 103.0, 111.0, 106.0, 143.0, 169.0, 140.0, 168.0, 141.0, 78.0, 102.0, 118.0, 207.0, 152.0, 171.0, 143.0, 57.0, 168.0, 138.0, 131.0, 206.0, 149.0, 134.0, 114.0, 210.0, 111.0, 166.0, 165.0, 230.0, 38.0, 162.0, 178.0, 186.0, 136.0, 79.0, 98.0, 174.0, 103.0, 47.0, 142.0, 68.0, 146.0, 154.0, 111.0, 164.0, 30.0, 16.0, 54.0, 155.0, 155.0, 47.0, 160.0, 102.0, 159.0, 111.0, 19.0, 176.0, 171.0, 90.0, 89.0, 125.0, 109.0, 118.0, 231.0, 62.0, 154.0, 24.0, 83.0, 126.0, 124.0, 133.0, 70.0, 108.0, 174.0, 38.0, 223.0, 37.0, 101.0, 116.0, 18.0, 22.0, 66.0, 169.0, 37.0, 208.0, 138.0, 92.0, 142.0, 134.0, 143.0, 154.0, 27.0, 42.0, 215.0, 131.0, 169.0, 113.0, 173.0, 166.0, 105.0, 122.0, 111.0, 178.0, 149.0, 113.0, 98.0, 42.0, 128.0, 183.0, 118.0, 172.0, 155.0, 58.0, 79.0, 212.0, 134.0, 117.0, 109.0, 193.0, 118.0, 88.0, 167.0, 205.0, 120.0, 223.0, 94.0, 93.0, 186.0, 248.0, 129.0, 11.0, 125.0, 185.0, 197.0, 108.0, 101.0, 195.0, 140.0, 124.0, 140.0, 194.0, 126.0, 176.0, 113.0, 156.0, 90.0, 135.0, 98.0, 188.0, 100.0, 211.0, 184.0, 111.0, 76.0, 82.0, 111.0, 64.0, 245.0, 14.0, 102.0, 109.0, 89.0, 114.0, 142.0, 31.0, 188.0, 114.0, 38.0, 28.0, 158.0, 121.0, 126.0, 92.0, 47.0, 61.0, 16.0, 117.0, 174.0, 158.0, 123.0, 142.0, 170.0, 102.0, 61.0, 242.0, 137.0, 73.0, 143.0, 198.0, 125.0, 172.0, 144.0, 216.0, 157.0, 128.0, 97.0, 114.0, 13.0, 118.0, 83.0, 143.0, 116.0, 119.0, 167.0, 307.5, 91.0, 51.0, 76.0, 125.0, 15.0, 68.0, 73.0, 60.0, 37.0, 106.0, 252.0, 213.0, 177.0, 110.0, 160.0, 115.0, 143.0, 68.0, 113.0, 78.0, 88.0, 124.0, 102.0, 112.0, 63.0, 110.0, 96.0, 204.0, 78.0, 151.0, 168.0, 114.0, 110.0, 82.0, 154.0, 189.0, 72.0, 71.0, 184.0, 134.0, 23.0, 229.0, 154.0, 109.0, 18.0, 91.0, 101.0, 123.0, 150.0, 170.0, 54.0, 126.0, 39.0, 31.0, 196.0, 128.0, 118.0, 65.0, 133.0, 130.0, 136.0, 184.0, 114.0, 215.0, 282.0, 144.0, 128.0, 125.0, 117.0, 223.0, 89.0, 37.0, 16.0, 95.0, 20.0, 215.0, 150.0, 114.0, 162.0, 110.0, 210.0, 17.0, 164.0, 144.0, 60.0, 115.5, 11.0, 134.0, 168.0, 136.0, 155.0, 119.0, 70.0, 71.0, 230.0, 13.0, 137.0, 176.0, 72.0, 69.0, 136.0, 65.0, 28.0, 195.0, 103.0, 154.0, 158.0, 167.0, 33.0, 56.0, 78.0, 164.0, 198.0, 131.0, 194.0, 33.0, 195.0, 240.0, 27.0, 95.0, 140.0, 234.0, 84.0, 87.0, 170.0, 87.0, 185.0, 178.0, 120.0, 48.0, 186.0, 193.0, 113.0, 140.0, 188.0, 72.0, 37.0, 170.0, 110.0, 75.0, 38.0, 104.0, 195.0, 34.0, 188.0, 62.0, 184.0, 152.0, 99.0, 145.0, 35.0, 197.0, 117.0, 99.0, 104.0]}, {\"histnorm\": \"probability\", \"marker\": {\"color\": \"#ed0400\"}, \"name\": \"Current\", \"nbinsx\": 10, \"opacity\": 0.6, \"type\": \"histogram\", \"x\": [101.0, 106.0, 194.0, 126.0, 68.0, 196.0, 164.0, 94.0, 47.0, 99.0, 97.0, 124.0, 95.0, 163.0, 32.0, 191.0, 156.0, 111.0, 119.0, 167.0, 127.0, 118.0, 38.0, 131.0, 14.0, 21.0, 61.0, 28.0, 162.0, 212.5, 25.0, 111.0, 193.0, 85.0, 74.0, 191.0, 147.0, 207.0, 181.0, 179.0, 99.0, 127.0, 134.0, 133.0, 93.0, 148.0, 74.0, 143.0, 136.0, 178.0, 99.0, 42.0, 125.0, 121.0, 131.0, 129.0, 115.0, 219.0, 76.0, 150.0, 81.0, 31.0, 124.0, 85.0, 185.0, 156.0, 225.0, 101.0, 238.0, 27.0, 45.0, 135.0, 86.0, 110.0, 212.0, 72.0, 195.0, 174.0, 18.0, 122.0, 137.0, 59.0, 66.0, 175.0, 145.0, 181.0, 163.0, 159.0, 63.0, 165.0, 64.0, 64.0, 166.0, 150.0, 105.0, 85.0, 100.0, 127.0, 24.0, 73.0, 144.0, 155.0, 164.0, 89.0, 153.0, 189.0, 135.0, 100.0, 152.0, 117.0, 114.0, 113.0, 145.0, 174.0, 161.0, 39.0, 38.0, 127.0, 25.0, 87.0, 144.0, 60.0, 128.0, 101.0, 44.0, 162.0, 143.0, 26.0, 55.0, 96.0, 150.0, 171.0, 172.0, 67.0, 132.0, 143.0, 177.0, 108.0, 115.0, 107.0, 117.0, 97.0, 28.0, 294.0, 112.0, 38.0, 10.0, 24.0, 126.0, 174.0, 101.0, 22.0, 121.0, 189.0, 40.0, 176.0, 131.0, 105.0, 139.0, 91.0, 109.0, 117.0, 107.0, 75.0, 33.0, 176.0, 26.0, 112.0, 76.0, 49.0, 138.0, 35.0, 153.0, 152.0, 136.0, 59.0, 38.0, 23.0, 158.0, 121.0, 44.0, 81.0, 60.0, 145.0, 16.0, 53.0, 94.0, 26.0, 84.0, 82.0, 38.0, 98.0, 201.0, 23.0, 253.0, 74.0, 213.0, 12.0, 60.0, 169.0, 216.0, 186.0, 26.0, 118.0, 166.0, 58.0, 35.0, 153.0, 91.0, 11.0, 204.0, 45.0, 99.0, 190.0, 34.0, 47.0, 134.0, 23.0, 42.0, 116.0, 98.0, 93.0, 94.0, 103.0, 16.0, 116.0, 182.0, 168.0, 164.0, 47.0, 28.0, 23.0, 92.0, 192.0, 65.0, 28.0, 86.0, 135.0, 199.0, 20.0, 80.0, 148.0, 29.0, 48.0, 123.0, 100.0, 107.0, 41.0, 9.0, 111.0, 88.0, 255.0, 213.0, 61.0, 98.0, 129.0, 216.0, 111.0, 43.0, 84.0, 126.0, 131.0, 21.0, 187.0, 124.0, 143.0, 117.0, 80.0, 169.0, 141.0, 35.0, 28.0, 72.0, 59.0, 171.0, 170.0, 184.0, 174.0, 102.0, 36.0, 210.0, 134.0, 124.0, 149.0, 16.0, 92.0, 118.0, 213.0, 133.0, 54.0, 109.0, 76.0, 89.0, 190.0, 133.0, 98.0, 9.0, 129.0, 245.0, 84.0, 191.0, 130.0, 131.0, 99.0, 148.0, 76.0, 134.0, 142.0, 183.0, 116.0, 125.0, 34.0, 216.0, 94.0, 88.0, 35.0, 124.0, 167.0, 133.0, 90.0, 38.0, 143.0, 174.0, 200.0, 9.0, 90.0, 105.0, 125.0, 26.0, 244.0, 15.0, 209.0, 189.0, 119.0, 197.0, 212.0, 118.0, 161.0, 59.0, 59.0, 172.0, 148.0, 65.0, 97.0, 84.0, 104.0, 33.0, 170.0, 30.0, 189.0, 99.0, 53.0, 166.0, 90.0, 140.0, 150.0, 114.0, 146.0, 144.0, 196.0, 44.0, 118.0, 179.0, 132.0, 132.0, 104.0, 54.0, 161.0, 19.0, 102.0, 20.0, 155.0, 193.0, 111.0, 94.0, 89.0, 31.0, 150.0, 143.0, 123.0, 145.0, 20.0, 201.0, 107.0, 105.0, 55.0, 227.0, 213.0, 95.0, 126.0, 56.0, 68.0, 73.0, 178.0, 111.0, 153.0, 15.0, 168.0, 111.0, 181.0, 172.0, 139.0, 110.0, 136.0, 189.0, 121.0, 13.0, 135.0, 104.0, 117.0, 51.0, 49.0, 113.0, 39.0, 148.0, 94.0, 126.0, 109.0, 102.0, 117.0, 169.0, 95.0, 51.0, 26.0, 122.0, 104.0, 77.0, 120.0, 114.0, 19.0, 132.0, 73.0, 68.0, 145.0, 135.0, 47.0, 149.0, 12.0, 132.0, 138.0, 87.0, 125.0, 139.0, 12.0, 94.0, 140.0, 143.0, 139.0, 166.0, 97.0, 114.0, 212.0, 119.0, 109.0, 129.0, 176.0, 163.0, 145.0, 134.0, 117.0, 178.0, 44.0, 95.0, 135.0, 143.0, 183.0, 180.0, 90.0, 129.0, 72.0, 131.0, 213.0, 32.0, 123.0, 81.0, 55.0, 152.0, 214.0, 126.0, 117.0, 173.0, 128.0, 173.0, 116.0, 204.0, 134.0, 156.0, 29.0, 134.0, 65.0, 151.0, 114.0, 44.0, 164.0, 125.0, 28.0, 90.0, 156.0, 56.0, 28.0, 201.0, 106.0, 116.0, 92.0, 140.0, 150.0, 182.0, 165.0, 225.0, 114.0, 142.0, 39.0, 142.0, 98.0, 188.0, 55.0, 86.0, 27.0, 113.0, 178.0, 87.0, 140.0, 33.0, 85.0, 158.0, 102.0, 95.0, 169.0, 103.0, 107.0, 191.0, 151.0, 28.0, 119.0, 113.0, 220.0, 163.0, 219.0, 26.0, 95.0, 135.0, 55.0, 171.0, 158.0, 21.0, 206.0, 113.0, 168.0, 122.0, 157.0, 173.0, 161.0, 97.0, 227.0, 42.0, 107.0, 81.0, 17.0, 17.0, 84.0, 162.0, 96.0, 118.0, 38.0, 161.0, 111.0, 118.0, 125.0, 143.0, 150.0, 116.0, 189.0, 142.0, 149.0, 98.0, 166.0, 86.0, 135.0, 68.0, 12.0, 131.0, 172.0, 102.0, 174.0, 128.0, 194.0, 108.0, 196.0, 83.0, 35.0, 155.0, 26.0, 189.0, 87.0, 93.0, 35.0, 187.0, 150.0, 89.0, 158.0, 114.0, 142.0, 120.0, 156.0, 97.0, 169.0, 11.0, 201.0, 130.0, 109.0, 149.0, 80.0, 162.0, 198.0, 23.0, 125.0, 89.0, 81.0, 55.0, 185.0, 53.0, 183.0, 173.0, 15.0, 138.0, 245.0, 17.0, 122.0, 130.0, 75.0, 160.0, 146.0, 90.0, 106.0, 34.0, 34.0, 48.0, 15.0, 118.0, 106.0, 151.0, 150.0, 85.0, 140.0, 85.0, 222.0, 155.0, 84.0, 109.0, 80.0, 17.0, 38.0, 169.0, 172.0, 172.0, 178.0, 93.0, 99.0, 60.0, 142.0, 171.0, 202.0, 126.0, 229.0, 216.0, 154.0, 119.0, 27.0, 43.0, 146.0, 104.0, 89.0, 199.0, 15.0, 167.0, 60.0, 112.0, 47.0, 143.0, 161.0, 48.0, 136.0, 89.0, 141.0, 9.0, 129.0, 154.0, 159.0, 113.0, 88.0, 158.0, 138.0, 145.0, 29.0, 179.0, 63.0, 92.0, 167.0, 181.0, 173.0, 160.0, 107.0, 131.0, 151.0, 129.0, 79.0, 132.0, 37.0, 213.0, 101.0, 170.0, 163.0, 50.0, 210.0, 135.0, 98.0, 77.0, 172.0, 31.0, 138.0, 162.0, 117.0, 102.0, 190.0, 75.0, 135.0, 105.0, 123.0, 143.0, 134.0, 169.0, 85.0, 70.0, 21.0, 182.0, 42.0, 186.0, 111.0, 153.0, 132.0, 111.0, 28.0, 101.0, 133.0, 25.0, 162.0, 238.5, 155.0, 44.0, 38.0, 100.0, 37.0, 101.0, 129.5, 168.0, 168.0, 43.0, 47.0, 40.0, 71.0, 186.0, 77.0, 113.0, 14.0, 125.0, 46.0, 11.0, 49.0, 117.0, 118.0, 164.0, 139.0, 229.0, 114.0, 98.0, 28.0, 53.0, 113.0, 187.0, 200.0, 148.0, 107.0, 133.0, 88.0, 128.0, 108.0, 70.0, 80.0, 113.0, 73.0, 152.0, 210.0, 104.0, 45.0, 72.0, 82.0, 19.0, 136.0, 206.0, 87.0, 161.0, 41.0, 173.0, 105.0, 14.0, 197.0, 97.0, 180.0, 147.0, 149.0, 135.0, 145.0, 116.0, 148.0, 150.0, 164.5, 21.0, 109.0, 126.0, 48.0, 128.0, 66.0, 178.0, 101.0, 16.0, 191.0, 180.0, 147.0, 14.0, 132.0, 10.0, 189.0, 151.0, 85.0, 137.0, 156.0, 31.0, 166.0, 98.0, 192.0, 167.0, 10.0, 153.0, 49.0, 99.0, 68.0, 16.0, 22.0, 80.0, 229.0, 225.0, 132.0, 47.0, 104.0, 122.0, 10.0, 57.0, 176.0, 226.0, 150.0, 210.0, 69.0, 131.0, 76.0, 102.0, 129.0, 95.0, 116.0, 168.0, 19.0, 21.0, 105.0, 173.0, 189.0, 142.0, 177.0, 177.0, 181.0, 58.0, 71.0, 191.0, 140.0, 110.0, 184.0, 152.0, 164.0, 105.0, 117.0, 124.0, 91.0, 69.0, 181.0, 145.0, 175.0, 85.0, 162.0, 181.0, 168.0, 157.0, 128.0, 89.0, 197.0, 167.0, 155.0, 138.0, 20.0, 212.0, 78.0, 25.0, 35.0, 80.0, 130.0, 129.0, 122.0, 7.0, 25.0, 69.0, 120.0, 140.0, 20.0, 124.0, 164.0, 14.0, 83.0, 136.0, 151.0, 157.0, 161.0, 6.0, 169.0, 221.0, 200.0, 190.0, 168.0, 10.0, 113.0, 166.0, 91.0, 13.0, 104.0, 85.0, 136.0, 167.0, 99.0, 103.0, 159.0, 108.0, 148.0, 91.0, 28.0, 136.0, 103.0, 213.0, 189.0, 85.0, 127.0, 169.0, 133.0, 107.0, 91.0, 112.0, 138.0, 82.0, 114.0, 72.0, 104.0, 84.0, 180.0, 159.0, 121.0, 17.0, 128.0, 61.0, 16.0, 43.0, 87.0, 136.0, 63.0, 16.0, 140.0, 49.0, 144.0, 74.0, 122.0, 106.0, 86.0, 145.0, 153.0, 127.0, 228.0, 112.0, 138.0, 157.0, 140.0, 112.0, 192.0, 114.0, 92.0, 128.0, 111.0]}], \"layout\": {\"legend\": {\"orientation\": \"h\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"total.sulfur.dioxide\"}}, \"yaxis\": {\"title\": {\"text\": \"Share\"}}}}, \"total.sulfur.dioxide_drift\": {\"title\": \"\", \"size\": 2, \"text\": \"\", \"type\": \"big_graph\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"Current\", \"type\": \"scatter\", \"x\": [443, 319, 703, 526, 76, 963, 1260, 532, 1561, 517, 506, 1557, 271, 1058, 1381, 1039, 542, 107, 161, 1301, 519, 1021, 1213, 223, 1286, 1426, 1234, 587, 1183, 182, 567, 1492, 724, 1262, 1509, 657, 1137, 913, 1445, 342, 781, 14, 971, 1072, 1254, 678, 1175, 1481, 1370, 1443, 18, 1151, 1380, 434, 1430, 554, 53, 535, 1050, 427, 259, 124, 961, 1488, 1563, 720, 1291, 1061, 425, 846, 1147, 204, 1317, 618, 1088, 927, 1196, 582, 1194, 360, 1449, 862, 1135, 1453, 1442, 1017, 268, 685, 317, 775, 1086, 942, 1052, 801, 1362, 219, 379, 649, 1195, 479, 1542, 609, 930, 1105, 34, 708, 686, 1132, 693, 733, 1562, 1190, 473, 737, 672, 969, 858, 5, 1556, 298, 80, 940, 361, 1154, 1545, 1622, 784, 19, 1522, 996, 54, 1415, 1564, 1593, 1236, 9, 353, 1222, 113, 1010, 1263, 877, 82, 381, 818, 1210, 1409, 66, 254, 817, 92, 1340, 122, 1357, 511, 1546, 692, 17, 1248, 414, 52, 1296, 191, 175, 233, 900, 785, 935, 1298, 156, 487, 159, 481, 1255, 1597, 253, 1491, 841, 187, 914, 979, 249, 1114, 1366, 814, 716, 465, 875, 1242, 670, 299, 593, 436, 728, 141, 229, 1057, 912, 994, 648, 799, 1164, 1073, 4, 516, 152, 1267, 1237, 752, 1150, 825, 402, 1277, 575, 1437, 838, 390, 1505, 1093, 1026, 1611, 31, 674, 866, 1328, 616, 861, 897, 148, 303, 1451, 602, 1125, 1614, 1047, 1462, 1148, 574, 899, 1327, 89, 530, 408, 1192, 177, 520, 993, 326, 992, 717, 895, 1421, 984, 240, 85, 557, 278, 938, 1425, 958, 1232, 1149, 171, 1220, 227, 891, 489, 1391, 1184, 1032, 393, 726, 192, 260, 880, 1592, 1537, 491, 759, 1473, 959, 1454, 1015, 965, 1393, 1489, 1256, 133, 202, 1036, 438, 483, 666, 461, 142, 1181, 1580, 308, 538, 170, 310, 743, 1101, 1179, 315, 22, 1529, 45, 879, 1110, 61, 522, 1397, 829, 576, 1193, 1202, 1549, 1375, 27, 527, 1186, 1273, 828, 539, 1049, 1014, 412, 1091, 1497, 1595, 347, 2, 844, 1490, 632, 211, 1582, 918, 1217, 1115, 744, 459, 579, 771, 96, 178, 108, 1516, 805, 1240, 440, 619, 1, 1315, 1239, 1347, 512, 48, 722, 1517, 1621, 446, 565, 568, 796, 231, 1070, 1063, 215, 513, 704, 354, 55, 881, 746, 641, 762, 279, 1145, 1468, 224, 302, 911, 218, 1079, 874, 1266, 792, 1136, 372, 295, 364, 580, 1615, 688, 1560, 333, 467, 968, 399, 760, 740, 953, 1520, 1446, 1214, 615, 524, 546, 1495, 1324, 452, 1515, 432, 863, 442, 847, 276, 456, 184, 1116, 1200, 458, 1508, 1087, 1478, 376, 1479, 563, 1146, 1507, 42, 944, 823, 1228, 656, 1227, 198, 309, 761, 1158, 549, 47, 1209, 529, 933, 220, 1624, 1591, 651, 536, 362, 1314, 420, 564, 475, 482, 140, 679, 1436, 1334, 77, 39, 570, 962, 808, 981, 322, 1471, 251, 695, 1128, 813, 757, 820, 853, 831, 1246, 58, 553, 597, 241, 1288, 330, 1005, 789, 1617, 56, 1126, 411, 548, 501, 1211, 642, 558, 1605, 745, 878, 1056, 667, 435, 29, 270, 35, 1157, 422, 1310, 114, 1524, 1422, 689, 1018, 1168, 1360, 985, 1191, 793, 1363, 1504, 581, 644, 1199, 621, 1612, 494, 665, 431, 1095, 638, 1042, 1404, 1030, 40, 1121, 75, 1588, 1417, 247, 713, 1590, 186, 646, 312, 8, 1551, 1302, 1044, 768, 884, 1585, 1618, 826, 445, 712, 464, 1308, 195, 655, 1487, 1389, 1356, 243, 401, 572, 1074, 810, 477, 1460, 1544, 1182, 285, 471, 936, 1238, 578, 1034, 1535, 1513, 426, 1311, 1001, 986, 1038, 980, 1064, 620, 982, 1565, 194, 474, 1428, 569, 1165, 49, 1333, 1401, 1307, 1076, 991, 1566, 44, 1342, 245, 943, 300, 583, 1013, 269, 1548, 313, 776, 283, 1444, 540, 406, 338, 466, 363, 1002, 320, 1264, 1089, 70, 1027, 500, 10, 907, 505, 1295, 864, 1432, 64, 1122, 1543, 416, 898, 654, 205, 328, 486, 999, 1377, 970, 528, 1558, 418, 1379, 1299, 1378, 590, 1247, 1174, 472, 1323, 131, 15, 439, 1528, 476, 725, 1203, 1109, 1003, 1365, 103, 1279, 60, 871, 78, 391, 165, 1335, 1410, 1129, 960, 349, 185, 1464, 371, 117, 1398, 252, 507, 1613, 311, 1419, 395, 987, 358, 263, 359, 1559, 1305, 1506, 1376, 1055, 634, 1552, 16, 51, 1258, 493, 601, 997, 351, 711, 1604, 1486, 1339, 794, 97, 1475, 1423, 196, 748, 183, 1433, 1579, 613, 1536, 989, 682, 533, 610, 687, 892, 81, 896, 397, 267, 589, 386, 795, 1416, 132, 265, 1609, 1461, 883, 88, 840, 988, 1354, 676, 916, 629, 1269, 924, 294, 261, 1541, 1081, 1348, 1576, 405, 1616, 356, 608, 1097, 239, 1249, 1099, 1403, 119, 1096, 977, 751, 374, 453, 110, 1336, 1390, 905, 1287, 503, 1031, 1331, 1224, 729, 410, 1540, 367, 1607, 384, 200, 65, 1358, 1394, 1023, 272, 1418, 955, 677, 238, 1133, 974, 541, 478, 1257, 1265, 1465, 1589, 1326, 188, 1083, 681, 906, 1092, 1276, 316, 214, 1078, 1502, 1084, 660, 1142, 531, 255, 30, 662, 1253, 230, 157, 1343, 385, 1169, 380, 1188, 721, 264, 787, 101, 13, 1274, 68, 1024, 1170, 1156, 71, 1577, 566, 1372, 1245, 798, 523, 626, 495, 937, 155, 887, 758, 921, 790, 1349, 1230, 366, 1531, 983, 839, 228, 417, 206, 742, 79, 190, 492, 948, 145, 923, 318, 824, 1374, 1124, 1463, 596, 457, 144, 1359, 1292, 1045, 764, 842, 1140, 1408, 995, 904, 592, 1458, 135, 83, 1062, 154, 1440, 1283, 773, 1414, 127, 1177, 1318, 1413, 403, 150, 346, 413, 1303, 1523, 1619, 394, 1261, 1054, 208, 496, 352, 95, 625, 571, 37, 485, 143, 946, 158, 552, 1527, 1029, 518, 1180, 1218, 236, 1100, 222, 1431, 345, 1459, 120, 661, 588, 1623, 1493, 62, 1429, 811, 193, 235, 181, 1320, 389, 1103, 521, 669, 332, 258, 1369, 1538, 957, 382, 1382, 1567, 331, 934, 614, 262, 893, 6, 266, 769, 38, 901, 1573, 1578, 545, 118, 783, 652, 1025, 706, 105, 1189, 484, 1569, 630, 683, 20, 870, 242, 50, 162, 915, 966, 441, 867, 731, 1102, 1000, 1268, 1223, 822, 301, 723, 172], \"y\": [101.0, 106.0, 194.0, 126.0, 68.0, 196.0, 164.0, 94.0, 47.0, 99.0, 97.0, 124.0, 95.0, 163.0, 32.0, 191.0, 156.0, 111.0, 119.0, 167.0, 127.0, 118.0, 38.0, 131.0, 14.0, 21.0, 61.0, 28.0, 162.0, 212.5, 25.0, 111.0, 193.0, 85.0, 74.0, 191.0, 147.0, 207.0, 181.0, 179.0, 99.0, 127.0, 134.0, 133.0, 93.0, 148.0, 74.0, 143.0, 136.0, 178.0, 99.0, 42.0, 125.0, 121.0, 131.0, 129.0, 115.0, 219.0, 76.0, 150.0, 81.0, 31.0, 124.0, 85.0, 185.0, 156.0, 225.0, 101.0, 238.0, 27.0, 45.0, 135.0, 86.0, 110.0, 212.0, 72.0, 195.0, 174.0, 18.0, 122.0, 137.0, 59.0, 66.0, 175.0, 145.0, 181.0, 163.0, 159.0, 63.0, 165.0, 64.0, 64.0, 166.0, 150.0, 105.0, 85.0, 100.0, 127.0, 24.0, 73.0, 144.0, 155.0, 164.0, 89.0, 153.0, 189.0, 135.0, 100.0, 152.0, 117.0, 114.0, 113.0, 145.0, 174.0, 161.0, 39.0, 38.0, 127.0, 25.0, 87.0, 144.0, 60.0, 128.0, 101.0, 44.0, 162.0, 143.0, 26.0, 55.0, 96.0, 150.0, 171.0, 172.0, 67.0, 132.0, 143.0, 177.0, 108.0, 115.0, 107.0, 117.0, 97.0, 28.0, 294.0, 112.0, 38.0, 10.0, 24.0, 126.0, 174.0, 101.0, 22.0, 121.0, 189.0, 40.0, 176.0, 131.0, 105.0, 139.0, 91.0, 109.0, 117.0, 107.0, 75.0, 33.0, 176.0, 26.0, 112.0, 76.0, 49.0, 138.0, 35.0, 153.0, 152.0, 136.0, 59.0, 38.0, 23.0, 158.0, 121.0, 44.0, 81.0, 60.0, 145.0, 16.0, 53.0, 94.0, 26.0, 84.0, 82.0, 38.0, 98.0, 201.0, 23.0, 253.0, 74.0, 213.0, 12.0, 60.0, 169.0, 216.0, 186.0, 26.0, 118.0, 166.0, 58.0, 35.0, 153.0, 91.0, 11.0, 204.0, 45.0, 99.0, 190.0, 34.0, 47.0, 134.0, 23.0, 42.0, 116.0, 98.0, 93.0, 94.0, 103.0, 16.0, 116.0, 182.0, 168.0, 164.0, 47.0, 28.0, 23.0, 92.0, 192.0, 65.0, 28.0, 86.0, 135.0, 199.0, 20.0, 80.0, 148.0, 29.0, 48.0, 123.0, 100.0, 107.0, 41.0, 9.0, 111.0, 88.0, 255.0, 213.0, 61.0, 98.0, 129.0, 216.0, 111.0, 43.0, 84.0, 126.0, 131.0, 21.0, 187.0, 124.0, 143.0, 117.0, 80.0, 169.0, 141.0, 35.0, 28.0, 72.0, 59.0, 171.0, 170.0, 184.0, 174.0, 102.0, 36.0, 210.0, 134.0, 124.0, 149.0, 16.0, 92.0, 118.0, 213.0, 133.0, 54.0, 109.0, 76.0, 89.0, 190.0, 133.0, 98.0, 9.0, 129.0, 245.0, 84.0, 191.0, 130.0, 131.0, 99.0, 148.0, 76.0, 134.0, 142.0, 183.0, 116.0, 125.0, 34.0, 216.0, 94.0, 88.0, 35.0, 124.0, 167.0, 133.0, 90.0, 38.0, 143.0, 174.0, 200.0, 9.0, 90.0, 105.0, 125.0, 26.0, 244.0, 15.0, 209.0, 189.0, 119.0, 197.0, 212.0, 118.0, 161.0, 59.0, 59.0, 172.0, 148.0, 65.0, 97.0, 84.0, 104.0, 33.0, 170.0, 30.0, 189.0, 99.0, 53.0, 166.0, 90.0, 140.0, 150.0, 114.0, 146.0, 144.0, 196.0, 44.0, 118.0, 179.0, 132.0, 132.0, 104.0, 54.0, 161.0, 19.0, 102.0, 20.0, 155.0, 193.0, 111.0, 94.0, 89.0, 31.0, 150.0, 143.0, 123.0, 145.0, 20.0, 201.0, 107.0, 105.0, 55.0, 227.0, 213.0, 95.0, 126.0, 56.0, 68.0, 73.0, 178.0, 111.0, 153.0, 15.0, 168.0, 111.0, 181.0, 172.0, 139.0, 110.0, 136.0, 189.0, 121.0, 13.0, 135.0, 104.0, 117.0, 51.0, 49.0, 113.0, 39.0, 148.0, 94.0, 126.0, 109.0, 102.0, 117.0, 169.0, 95.0, 51.0, 26.0, 122.0, 104.0, 77.0, 120.0, 114.0, 19.0, 132.0, 73.0, 68.0, 145.0, 135.0, 47.0, 149.0, 12.0, 132.0, 138.0, 87.0, 125.0, 139.0, 12.0, 94.0, 140.0, 143.0, 139.0, 166.0, 97.0, 114.0, 212.0, 119.0, 109.0, 129.0, 176.0, 163.0, 145.0, 134.0, 117.0, 178.0, 44.0, 95.0, 135.0, 143.0, 183.0, 180.0, 90.0, 129.0, 72.0, 131.0, 213.0, 32.0, 123.0, 81.0, 55.0, 152.0, 214.0, 126.0, 117.0, 173.0, 128.0, 173.0, 116.0, 204.0, 134.0, 156.0, 29.0, 134.0, 65.0, 151.0, 114.0, 44.0, 164.0, 125.0, 28.0, 90.0, 156.0, 56.0, 28.0, 201.0, 106.0, 116.0, 92.0, 140.0, 150.0, 182.0, 165.0, 225.0, 114.0, 142.0, 39.0, 142.0, 98.0, 188.0, 55.0, 86.0, 27.0, 113.0, 178.0, 87.0, 140.0, 33.0, 85.0, 158.0, 102.0, 95.0, 169.0, 103.0, 107.0, 191.0, 151.0, 28.0, 119.0, 113.0, 220.0, 163.0, 219.0, 26.0, 95.0, 135.0, 55.0, 171.0, 158.0, 21.0, 206.0, 113.0, 168.0, 122.0, 157.0, 173.0, 161.0, 97.0, 227.0, 42.0, 107.0, 81.0, 17.0, 17.0, 84.0, 162.0, 96.0, 118.0, 38.0, 161.0, 111.0, 118.0, 125.0, 143.0, 150.0, 116.0, 189.0, 142.0, 149.0, 98.0, 166.0, 86.0, 135.0, 68.0, 12.0, 131.0, 172.0, 102.0, 174.0, 128.0, 194.0, 108.0, 196.0, 83.0, 35.0, 155.0, 26.0, 189.0, 87.0, 93.0, 35.0, 187.0, 150.0, 89.0, 158.0, 114.0, 142.0, 120.0, 156.0, 97.0, 169.0, 11.0, 201.0, 130.0, 109.0, 149.0, 80.0, 162.0, 198.0, 23.0, 125.0, 89.0, 81.0, 55.0, 185.0, 53.0, 183.0, 173.0, 15.0, 138.0, 245.0, 17.0, 122.0, 130.0, 75.0, 160.0, 146.0, 90.0, 106.0, 34.0, 34.0, 48.0, 15.0, 118.0, 106.0, 151.0, 150.0, 85.0, 140.0, 85.0, 222.0, 155.0, 84.0, 109.0, 80.0, 17.0, 38.0, 169.0, 172.0, 172.0, 178.0, 93.0, 99.0, 60.0, 142.0, 171.0, 202.0, 126.0, 229.0, 216.0, 154.0, 119.0, 27.0, 43.0, 146.0, 104.0, 89.0, 199.0, 15.0, 167.0, 60.0, 112.0, 47.0, 143.0, 161.0, 48.0, 136.0, 89.0, 141.0, 9.0, 129.0, 154.0, 159.0, 113.0, 88.0, 158.0, 138.0, 145.0, 29.0, 179.0, 63.0, 92.0, 167.0, 181.0, 173.0, 160.0, 107.0, 131.0, 151.0, 129.0, 79.0, 132.0, 37.0, 213.0, 101.0, 170.0, 163.0, 50.0, 210.0, 135.0, 98.0, 77.0, 172.0, 31.0, 138.0, 162.0, 117.0, 102.0, 190.0, 75.0, 135.0, 105.0, 123.0, 143.0, 134.0, 169.0, 85.0, 70.0, 21.0, 182.0, 42.0, 186.0, 111.0, 153.0, 132.0, 111.0, 28.0, 101.0, 133.0, 25.0, 162.0, 238.5, 155.0, 44.0, 38.0, 100.0, 37.0, 101.0, 129.5, 168.0, 168.0, 43.0, 47.0, 40.0, 71.0, 186.0, 77.0, 113.0, 14.0, 125.0, 46.0, 11.0, 49.0, 117.0, 118.0, 164.0, 139.0, 229.0, 114.0, 98.0, 28.0, 53.0, 113.0, 187.0, 200.0, 148.0, 107.0, 133.0, 88.0, 128.0, 108.0, 70.0, 80.0, 113.0, 73.0, 152.0, 210.0, 104.0, 45.0, 72.0, 82.0, 19.0, 136.0, 206.0, 87.0, 161.0, 41.0, 173.0, 105.0, 14.0, 197.0, 97.0, 180.0, 147.0, 149.0, 135.0, 145.0, 116.0, 148.0, 150.0, 164.5, 21.0, 109.0, 126.0, 48.0, 128.0, 66.0, 178.0, 101.0, 16.0, 191.0, 180.0, 147.0, 14.0, 132.0, 10.0, 189.0, 151.0, 85.0, 137.0, 156.0, 31.0, 166.0, 98.0, 192.0, 167.0, 10.0, 153.0, 49.0, 99.0, 68.0, 16.0, 22.0, 80.0, 229.0, 225.0, 132.0, 47.0, 104.0, 122.0, 10.0, 57.0, 176.0, 226.0, 150.0, 210.0, 69.0, 131.0, 76.0, 102.0, 129.0, 95.0, 116.0, 168.0, 19.0, 21.0, 105.0, 173.0, 189.0, 142.0, 177.0, 177.0, 181.0, 58.0, 71.0, 191.0, 140.0, 110.0, 184.0, 152.0, 164.0, 105.0, 117.0, 124.0, 91.0, 69.0, 181.0, 145.0, 175.0, 85.0, 162.0, 181.0, 168.0, 157.0, 128.0, 89.0, 197.0, 167.0, 155.0, 138.0, 20.0, 212.0, 78.0, 25.0, 35.0, 80.0, 130.0, 129.0, 122.0, 7.0, 25.0, 69.0, 120.0, 140.0, 20.0, 124.0, 164.0, 14.0, 83.0, 136.0, 151.0, 157.0, 161.0, 6.0, 169.0, 221.0, 200.0, 190.0, 168.0, 10.0, 113.0, 166.0, 91.0, 13.0, 104.0, 85.0, 136.0, 167.0, 99.0, 103.0, 159.0, 108.0, 148.0, 91.0, 28.0, 136.0, 103.0, 213.0, 189.0, 85.0, 127.0, 169.0, 133.0, 107.0, 91.0, 112.0, 138.0, 82.0, 114.0, 72.0, 104.0, 84.0, 180.0, 159.0, 121.0, 17.0, 128.0, 61.0, 16.0, 43.0, 87.0, 136.0, 63.0, 16.0, 140.0, 49.0, 144.0, 74.0, 122.0, 106.0, 86.0, 145.0, 153.0, 127.0, 228.0, 112.0, 138.0, 157.0, 140.0, 112.0, 192.0, 114.0, 92.0, 128.0, 111.0]}, {\"marker\": {\"color\": \"white\", \"opacity\": 0.005, \"size\": 0.01}, \"mode\": \"markers\", \"name\": \"Current\", \"showlegend\": false, \"type\": \"scatter\", \"x\": [2, 2], \"y\": [-51.181601485274925, 286.8396014852749]}], \"layout\": {\"legend\": {\"orientation\": \"h\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"shapes\": [{\"fillcolor\": \"LightGreen\", \"layer\": \"below\", \"line\": {\"width\": 0}, \"opacity\": 0.5, \"type\": \"rect\", \"x0\": 0, \"x1\": 1, \"xref\": \"paper\", \"y0\": -51.181601485274925, \"y1\": 286.8396014852749, \"yref\": \"y\"}, {\"line\": {\"color\": \"Green\", \"width\": 3}, \"name\": \"Reference\", \"type\": \"line\", \"x0\": 0, \"x1\": 1, \"xref\": \"paper\", \"y0\": 117.829, \"y1\": 117.829, \"yref\": \"y\"}], \"showlegend\": true, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"Index\"}}, \"yaxis\": {\"title\": {\"text\": \"total.sulfur.dioxide\"}}}}}, \"density_distr\": {\"data\": [{\"histnorm\": \"probability\", \"marker\": {\"color\": \"#4d4d4d\"}, \"name\": \"Reference\", \"nbinsx\": 10, \"opacity\": 0.6, \"type\": \"histogram\", \"x\": [0.992, 0.9964, 0.99097, 0.99511, 0.9934, 0.99558, 0.98894, 0.9909, 0.9902, 0.98994, 0.9926, 0.9976, 0.99458, 0.9951, 0.991, 1.0, 0.9936, 0.9955, 0.9949, 0.9954, 0.99922, 0.99, 1.0032, 0.99002, 0.9976, 0.99364, 0.9944, 0.99648, 0.99566, 0.996, 0.99175, 0.99898, 0.9928, 0.99085, 0.9938, 0.9938, 0.99914, 0.98742, 0.9955, 0.9942, 0.9892, 0.9927, 0.9982, 0.9911, 0.99728, 0.99244, 0.9932, 0.99459, 0.99655, 0.9914, 0.994, 0.99904, 0.9964, 0.99035, 0.9927, 0.99076, 0.99855, 0.9969, 0.98892, 0.9964, 0.99015, 0.99089, 0.98954, 0.9945, 0.9971, 0.9958, 0.99245, 0.99242, 0.9979, 0.997, 0.99676, 0.9972, 0.99403, 0.9978, 0.992, 0.9962, 0.9906, 0.9979, 0.99741, 0.9978, 0.9991, 0.99266, 0.9969, 0.98998, 0.9932, 0.9965, 0.99304, 0.9948, 0.992, 0.9979, 0.9975, 0.99201, 0.98941, 0.9958, 0.992, 0.992, 0.9935, 0.99758, 0.99519, 0.9971, 0.99016, 0.9958, 0.991, 0.99792, 0.993, 0.99828, 0.9928, 1.001, 0.9984, 0.9941, 0.99064, 0.9941, 0.99593, 0.9954, 0.99773, 0.9925, 0.99146, 0.99254, 0.99628, 0.9957, 0.9918, 0.98934, 0.9974, 0.99278, 0.99824, 0.99316, 0.9951, 0.9965, 1.0002, 0.99556, 0.9973, 0.98928, 0.99638, 0.9916, 0.995, 0.99699, 0.9988, 0.99012, 0.9959, 0.99109, 0.997, 0.9935, 0.99096, 0.9918, 0.99212, 0.9982, 0.9896, 0.9984, 0.9919, 0.9918, 0.9942, 0.9926, 1.0001, 0.9972, 0.998, 0.99334, 0.9912, 0.99471, 0.997, 0.99733, 0.99241, 0.992, 0.9964, 0.9956, 0.99567, 0.98959, 0.98984, 0.9973, 0.9946, 0.9934, 0.9986, 0.993, 0.99638, 0.9951, 0.98914, 0.9963, 0.99817, 0.9938, 0.9925, 0.9976, 0.9946, 0.99058, 0.99472, 0.99002, 0.99048, 1.0103, 0.99208, 0.99166, 0.99208, 0.99666, 0.99745, 0.99202, 0.9889, 0.9941, 0.99034, 0.99892, 0.98974, 0.99152, 0.999, 0.99534, 0.99808, 0.99397, 0.9948, 0.9924, 0.9957, 0.99585, 0.9974, 0.998, 0.99678, 0.99538, 0.9958, 0.9974, 0.99382, 0.99699, 0.9931, 0.995, 0.9983, 0.9934, 0.98746, 0.9932, 0.9998, 0.9941, 0.9937, 0.99624, 0.9966, 0.98976, 0.99834, 0.99817, 0.99627, 0.98968, 0.998, 0.99007, 0.9945, 0.99452, 0.9961, 0.9935, 0.9984, 0.9964, 0.9976, 0.9938, 0.99279, 0.9905, 0.9948, 1.0, 0.9974, 0.99792, 0.998, 0.99256, 0.99775, 0.99548, 0.99835, 0.99189, 0.998, 0.99033, 0.996, 0.99528, 0.9908, 0.9931, 0.9998, 0.98972, 0.9982, 0.9949, 0.99616, 0.99014, 0.9974, 0.9982, 0.9938, 0.9962, 0.99642, 0.9942, 0.99405, 1.0008, 0.9977, 0.9894, 0.99625, 0.9973, 0.99684, 0.99566, 0.9902, 0.9963, 0.99502, 0.9964, 0.9956, 0.993, 0.99507, 0.9937, 0.9964, 0.9948, 0.9964, 0.9939, 0.9958, 0.99174, 0.9949, 0.99634, 0.99736, 0.99462, 0.99, 0.99458, 0.9895, 0.99642, 0.9949, 0.991, 0.98758, 0.9976, 0.9973, 0.99001, 0.9912, 0.9985, 0.9932, 0.9934, 0.99183, 0.99378, 0.9918, 0.9976, 0.99269, 0.99744, 0.9901, 0.99353, 0.99374, 0.99178, 0.9968, 0.99041, 0.99184, 0.9948, 0.9916, 0.99687, 0.9926, 0.99504, 0.998, 0.99394, 0.99408, 0.9974, 0.9944, 0.99807, 0.99718, 0.9982, 0.99437, 0.9963, 0.9928, 0.9916, 0.99111, 0.9959, 0.99579, 0.9939, 0.99215, 0.99089, 0.9934, 0.99112, 0.9938, 0.99276, 0.98954, 1.001, 0.9926, 0.9997, 0.9923, 0.9907, 0.99478, 0.99814, 0.99604, 0.9938, 0.9986, 0.99945, 0.99534, 0.9946, 0.993, 0.99471, 0.9956, 0.99235, 0.9928, 0.99379, 0.9986, 0.99138, 0.9962, 0.99522, 0.99224, 0.99324, 0.9922, 0.9989, 0.9954, 0.9908, 0.99397, 0.99558, 0.99582, 0.9904, 0.99736, 0.9979, 0.9931, 0.99955, 0.99588, 0.9938, 0.99287, 0.9932, 0.9937, 0.99776, 0.9953, 0.98994, 1.0003, 0.9924, 0.99678, 0.9986, 0.9981, 0.9972, 0.9912, 0.99783, 0.9982, 0.99672, 0.9907, 0.99674, 0.99669, 0.99278, 0.99022, 0.99396, 0.9912, 0.99317, 0.9948, 0.99656, 0.9973, 0.9911, 1.001, 0.9969, 0.99153, 0.9938, 0.9905, 0.9928, 0.9988, 0.9981, 0.991, 0.99119, 0.9911, 0.991, 0.99652, 0.99489, 0.98942, 0.99429, 0.99144, 0.99587, 0.9949, 0.99254, 0.99252, 0.98919, 0.99784, 0.99469, 0.99523, 0.9942, 0.99378, 0.99504, 0.99212, 0.9941, 0.9986, 0.99738, 0.9958, 0.9911, 0.99008, 0.98963, 0.99116, 0.99545, 0.99946, 0.997, 0.99537, 0.9971, 0.99044, 0.98956, 0.9924, 0.9981, 0.99873, 0.9966, 0.9916, 0.99408, 0.99174, 0.99682, 0.9937, 0.9955, 0.9961, 0.9972, 0.99166, 0.9968, 0.9921, 0.99199, 0.9937, 0.99308, 0.994, 0.99387, 0.99462, 0.9964, 0.9924, 0.992, 0.9928, 0.994, 0.99534, 0.9946, 0.9982, 0.9945, 0.99512, 0.99057, 0.9994, 0.99098, 0.9999, 0.99642, 0.99274, 0.99685, 0.9966, 0.9937, 0.9983, 0.99362, 0.9923, 0.992, 0.9925, 1.0002, 0.9968, 0.9942, 0.98912, 0.99094, 0.9892, 0.98914, 0.99036, 0.99548, 0.9908, 0.99672, 0.9918, 0.9927, 0.9968, 0.9917, 0.9972, 0.9954, 0.99546, 0.9974, 0.99198, 0.99308, 0.99388, 0.99066, 0.9986, 0.99464, 0.99907, 0.99255, 0.9917, 0.9937, 0.99954, 0.99202, 1.00242, 1.00242, 0.99414, 0.9982, 0.9952, 0.9962, 0.9934, 0.9891, 0.9941, 0.9966, 0.99573, 0.99234, 0.9936, 0.9967, 0.99625, 0.99685, 0.98918, 0.9986, 0.99518, 0.99184, 0.9932, 0.99469, 0.9982, 0.99109, 0.99705, 0.9917, 0.9964, 0.98987, 0.9996, 0.9904, 0.99886, 0.9924, 0.9942, 0.997, 0.99494, 0.99745, 0.99606, 0.9897, 0.994, 0.99168, 0.98999, 0.9909, 0.9952, 0.9977, 0.99615, 0.9975, 0.9926, 0.99872, 0.99772, 0.9918, 0.9929, 0.9948, 0.99036, 0.9981, 0.9904, 0.99228, 0.9993, 0.98984, 0.99822, 0.99299, 0.9987, 1.0015, 0.9958, 0.99578, 0.99563, 0.9984, 0.9984, 0.99026, 0.9957, 0.99194, 1.00369, 0.993, 0.9982, 0.9941, 0.9952, 0.99166, 0.99035, 0.9916, 0.99896, 0.9945, 0.9927, 0.99627, 0.9954, 0.99549, 0.9922, 1.00295, 0.98956, 0.9932, 1.0005, 0.9973, 0.9934, 0.9961, 0.997, 0.99352, 0.9994, 0.998, 0.99238, 0.99524, 0.9927, 0.9917, 0.9944, 0.9914, 0.9938, 0.9957, 1.00044, 0.99026, 0.99244, 0.9957, 0.99304, 0.99331, 0.99108, 0.992, 0.9923, 0.99064, 1.00118, 0.9921, 0.999, 0.99392, 0.994, 0.9944, 0.99546, 0.99326, 0.995, 0.99792, 0.99534, 0.9908, 0.99314, 0.99158, 0.99136, 0.99122, 0.9972, 0.99818, 0.99561, 0.9928, 0.9931, 0.99839, 0.99063, 0.99024, 0.9948, 0.99026, 0.99734, 0.9978, 0.9898, 0.993, 0.99273, 0.98816, 0.99602, 0.9978, 0.9965, 0.99586, 0.9925, 1.001, 0.9986, 0.9944, 0.9912, 0.9965, 0.9916, 0.9966, 0.99434, 0.9987, 0.99496, 0.99132, 0.996, 0.99358, 0.9938, 0.9977, 0.9934, 0.9934, 0.9978, 0.99074, 0.99048, 0.9898, 0.996, 0.98994, 0.99342, 0.9966, 1.0004, 0.9948, 0.99514, 0.99596, 0.99602, 1.0004, 0.9986, 0.9971, 0.9926, 1.0003, 1.00051, 0.99084, 0.99566, 0.9946, 0.9927, 0.9912, 0.99581, 0.995, 0.9972, 0.99656, 0.9965, 0.99975, 0.99052, 0.998, 0.989, 0.9916, 0.99238, 0.99455, 0.9954, 0.99479, 0.99393, 0.9924, 0.9946, 0.99362, 1.00038, 0.99906, 0.9958, 0.99296, 0.99633, 0.9977, 1.00241, 0.99475, 0.9935, 0.9906, 0.9984, 0.99835, 0.98883, 0.994, 0.99611, 0.9932, 0.99863, 0.99686, 0.99322, 0.9948, 0.99794, 0.99678, 0.99331, 0.9925, 0.9978, 0.99392, 0.99105, 0.99384, 0.99596, 0.99216, 0.9956, 0.99321, 0.9979, 0.99124, 0.99472, 0.98946, 0.9945, 0.98926, 0.9925, 0.9898, 0.99794, 0.99066, 0.99587, 0.9984, 0.98942, 0.98876, 0.99588, 0.99045, 0.9922, 0.9975, 0.9978, 0.9913, 0.9906, 0.99416, 0.98794, 0.9925, 0.99689, 0.9953, 0.9911, 0.99675, 0.98931, 0.9983, 0.992, 0.99658, 0.99136, 0.9991, 0.99572, 0.9964, 0.9942, 0.99582, 0.992, 0.9959, 0.99658, 0.9972, 0.9923, 0.9965, 0.9952, 0.99461, 0.9921, 0.99287, 0.9955, 0.9918, 0.9944, 0.98944, 0.9976, 0.9953, 0.99074, 0.9918, 0.98794, 0.99643, 0.9954, 0.99114, 0.99374, 0.99218, 0.9962, 0.9948, 0.9924, 0.993, 0.99076, 0.9966, 0.99152, 0.99498, 0.99782, 0.9925, 0.99709, 0.99615, 0.99458, 0.99806, 0.99715, 0.9983, 0.99056, 0.9937, 0.998, 0.9965, 0.9906, 0.9982, 0.99346, 0.99157, 0.9919, 0.9937, 0.99157, 0.9953, 0.9898, 0.99814, 0.99543, 0.9899, 0.9937, 0.99203, 0.99036, 0.99008, 0.9892, 0.99971, 0.9966, 1.0001, 0.9926, 0.99943, 0.992, 0.9955, 0.99785, 0.9927, 0.99044, 0.9986, 0.99657, 0.9912, 0.995, 0.9945, 0.99558, 0.995, 0.9942, 0.99522, 0.99689, 0.9955, 0.98856, 0.9939, 0.9927, 0.9979, 0.99095, 0.9972, 0.9938, 0.98946, 0.99542, 1.00098, 0.98944, 0.9985, 0.9984, 0.99411, 0.9969, 0.99266, 0.99732, 0.9962, 0.99268, 0.99647, 0.9971, 0.9917, 0.9925, 0.9968, 0.99142, 0.9968, 0.9964, 0.9979, 0.99214, 0.9955, 0.99737, 0.9962, 0.9917, 0.9949, 0.99663, 0.99807, 0.99334, 0.99798, 0.9976, 0.99558, 0.9972, 0.98946, 0.99454, 0.99543, 0.9934, 0.9938, 0.9967, 0.9947, 0.99577, 0.9969, 0.99752, 0.99082, 1.001, 0.9983, 0.9962, 0.9987, 0.99516, 0.9986, 0.99164, 0.99692, 0.9974, 0.9928, 0.99902, 1.0001, 0.99032, 0.998, 0.99848, 0.9909, 0.9928, 0.99494, 0.98987, 0.9934, 0.99578, 0.9939, 0.9976, 0.997, 0.9986, 0.99544, 0.99321, 0.9982, 0.99072, 0.9985, 0.99494, 0.99118, 0.9968, 0.99748, 0.99112, 0.99773, 1.0004, 0.9964, 0.994, 0.99898, 0.9907, 0.9921, 0.9966, 0.99575, 0.998, 0.9934, 0.9937, 0.99517]}, {\"histnorm\": \"probability\", \"marker\": {\"color\": \"#ed0400\"}, \"name\": \"Current\", \"nbinsx\": 10, \"opacity\": 0.6, \"type\": \"histogram\", \"x\": [0.9934, 0.9966, 0.9979, 0.99234, 0.9932, 0.99556, 0.9939, 0.99686, 0.99126, 0.9927, 0.9926, 0.99362, 0.989435, 0.99239, 1.0, 0.9908, 0.9996, 0.98918, 0.99168, 1.001, 0.98904, 0.9932, 0.99438, 0.99565, 0.998, 0.99692, 0.99189, 0.999, 0.9903, 0.999, 0.9997, 0.9956, 0.9986, 0.9918, 0.992, 0.99513, 0.9935, 0.99587, 0.99869, 0.99541, 0.9893, 0.99326, 0.99146, 1.0, 0.99144, 0.99165, 0.98889, 0.9959, 0.9957, 0.9992, 0.99449, 1.0004, 0.99253, 0.98871, 0.9905, 0.9936, 0.9918, 0.9996, 0.9914, 0.99488, 0.98988, 0.995, 0.99123, 0.99014, 0.9946, 0.9958, 0.9978, 0.99009, 0.9986, 0.9974, 0.99417, 0.9998, 0.9968, 0.9926, 0.9969, 0.997, 0.9908, 0.99898, 0.9972, 0.9917, 0.9946, 0.9922, 0.99215, 0.99376, 1.0006, 0.998, 0.9931, 0.99839, 0.9916, 0.99795, 0.99652, 0.99724, 0.9944, 0.99727, 0.99206, 0.99406, 0.99534, 0.98964, 0.99798, 0.9963, 0.9966, 0.9951, 0.9926, 0.99236, 0.9945, 0.9986, 0.99341, 0.99064, 0.998, 0.99815, 0.99313, 0.9983, 0.99668, 0.99922, 0.99207, 0.9968, 0.9949, 0.9953, 0.9975, 0.98972, 0.9923, 0.99492, 0.9934, 0.9918, 0.99494, 0.9914, 0.9965, 0.99536, 0.99652, 0.99456, 0.9968, 0.9982, 0.9932, 0.992, 0.994, 0.99526, 0.99212, 0.9934, 0.9904, 0.98836, 0.9931, 0.99148, 0.99704, 0.99018, 0.9976, 0.99616, 0.9968, 0.99376, 0.993, 0.99911, 0.99596, 0.99438, 0.98882, 0.9986, 0.99244, 0.99454, 0.99566, 0.996, 1.0011, 0.9937, 0.99262, 0.99132, 0.99159, 0.99551, 0.99612, 1.0103, 0.9976, 0.99144, 0.9893, 0.9963, 0.99171, 0.9934, 0.99238, 0.9934, 0.99552, 0.9989, 0.99748, 1.00315, 0.99322, 0.98976, 0.99384, 0.99, 0.99638, 0.9966, 0.99649, 0.9981, 0.991, 0.9984, 0.98961, 0.98961, 0.9933, 0.98918, 0.99848, 1.00315, 1.00014, 0.9931, 1.0006, 0.99667, 0.9979, 0.99252, 0.9976, 0.9962, 1.0006, 0.9917, 0.9943, 0.995, 0.9994, 0.99576, 0.99657, 0.99592, 0.99745, 0.99702, 0.9916, 0.9993, 0.9978, 0.9991, 0.993, 0.9965, 0.9956, 0.9927, 0.99564, 0.99094, 0.997, 0.9987, 0.99654, 0.98954, 0.99093, 0.99212, 0.9912, 0.99676, 0.9947, 0.99694, 0.99232, 0.9979, 0.9898, 0.9983, 0.98934, 0.9938, 0.99394, 0.9992, 0.9913, 0.99458, 0.9959, 0.99554, 0.9932, 0.99099, 0.9923, 0.99665, 0.99738, 0.99174, 0.9907, 1.0, 0.9927, 0.9918, 0.99345, 0.991, 0.99154, 0.98872, 0.99444, 0.99717, 0.9966, 0.9943, 0.99576, 0.9972, 0.99646, 0.9968, 0.9934, 1.0002, 0.9938, 0.9956, 0.99314, 0.999, 0.9908, 0.9923, 0.9967, 1.001, 0.99976, 0.992, 0.9978, 0.9949, 0.9951, 0.9936, 0.99278, 0.9984, 0.998, 0.99076, 0.99064, 0.9991, 0.9931, 0.99683, 0.9918, 0.99173, 0.9893, 0.9993, 0.99612, 0.9914, 0.99476, 0.99312, 0.9937, 0.9929, 0.99294, 0.9928, 0.9958, 0.9947, 0.9986, 0.999, 0.993, 0.9972, 0.99742, 0.99224, 0.98986, 0.9948, 0.99596, 0.98998, 0.99918, 1.0006, 0.99162, 0.99479, 1.0, 0.99232, 0.9955, 0.9914, 0.9922, 0.9954, 0.99584, 0.9984, 0.99, 0.9914, 0.99448, 0.9956, 0.9975, 0.99544, 0.9994, 0.99416, 0.9989, 0.9971, 0.99134, 0.9941, 0.9964, 0.99617, 0.99194, 0.9983, 0.99842, 0.9951, 0.994, 0.9922, 0.9956, 1.0004, 0.99712, 0.99362, 0.99031, 0.9926, 0.99669, 0.99164, 0.99216, 0.9917, 0.9938, 0.99676, 0.99471, 0.9955, 0.9958, 0.99176, 0.9962, 0.99182, 0.99313, 0.9959, 0.9956, 0.9946, 0.996, 0.996, 0.99546, 0.99807, 0.9986, 0.9931, 0.99915, 0.99111, 0.9984, 0.9948, 0.9983, 0.9997, 1.0006, 0.99546, 0.9938, 0.9912, 0.99581, 0.98876, 0.99734, 0.9991, 0.99676, 0.9933, 0.992, 0.99694, 0.99095, 0.9976, 0.98924, 0.99067, 0.99498, 0.9946, 0.9931, 0.99435, 0.9938, 0.99055, 0.9912, 0.99516, 0.9958, 0.993, 0.9976, 0.9968, 0.99454, 0.99182, 0.98878, 0.9988, 0.9962, 0.9977, 0.9932, 0.99681, 0.99494, 0.99498, 0.99154, 0.9938, 0.9938, 0.99239, 0.99512, 0.9979, 0.99088, 0.99161, 0.9939, 0.99494, 0.99158, 0.9963, 0.99188, 0.99035, 0.9992, 0.9945, 0.9924, 1.0003, 0.99677, 0.9994, 0.99655, 0.99176, 0.98974, 0.99152, 0.99296, 0.9958, 0.99782, 0.9964, 0.99173, 0.9975, 0.99568, 0.9924, 0.9932, 0.99942, 0.98944, 0.9932, 0.9973, 0.9958, 0.99184, 0.99344, 0.9912, 0.9928, 0.9976, 0.99534, 0.98986, 0.99481, 0.99287, 0.99584, 0.991, 0.99047, 0.99691, 0.99165, 0.99696, 0.9988, 0.99646, 0.99708, 0.9902, 0.99745, 0.99178, 0.9963, 0.99232, 0.9938, 0.99872, 0.99212, 0.9934, 0.9982, 0.99176, 0.99408, 0.99572, 0.9974, 0.9998, 1.0026, 0.99, 0.992, 0.99734, 0.9975, 0.99204, 0.99492, 0.9944, 0.99666, 0.9904, 0.9994, 0.997, 0.99288, 0.994, 0.99264, 0.99299, 0.99534, 0.9996, 0.9997, 0.99685, 0.9966, 0.9958, 0.99346, 0.99215, 0.99521, 0.9974, 0.9956, 0.9934, 0.9967, 0.99406, 0.99204, 0.9936, 0.9926, 0.9982, 0.99086, 0.9955, 0.9964, 0.99158, 0.99975, 0.9987, 0.98918, 0.9966, 0.9926, 0.99815, 0.9923, 0.99366, 0.99775, 0.99706, 0.99742, 0.99358, 0.99071, 0.99582, 0.9988, 0.9986, 0.99642, 0.99551, 0.9956, 0.99862, 0.9957, 0.9941, 0.99688, 0.99882, 0.99324, 0.98823, 0.9952, 1.0004, 0.992, 0.99043, 1.0002, 0.99655, 0.9927, 0.99705, 0.98942, 0.99356, 0.99553, 0.99154, 0.99315, 0.9954, 0.9928, 0.99226, 0.9958, 0.9989, 0.9958, 0.9936, 0.99545, 0.99, 0.9948, 0.99743, 0.992, 0.9898, 0.99354, 0.99186, 0.99404, 0.99524, 0.99922, 0.992, 0.9988, 0.9939, 0.99555, 0.99173, 0.99557, 0.9999, 0.99531, 0.9976, 0.9903, 0.992, 0.9961, 0.9938, 0.991, 0.9936, 0.9907, 0.99784, 0.99382, 0.98952, 0.99947, 0.997, 0.998, 0.9962, 0.9976, 0.9952, 0.99148, 0.99792, 0.99058, 0.9983, 0.9986, 0.9974, 0.99282, 0.98993, 0.9923, 0.9927, 0.99519, 0.9967, 0.99922, 0.9958, 0.9994, 0.9974, 0.9951, 0.99683, 0.99165, 0.99176, 0.99006, 0.9977, 0.998, 0.99002, 0.99458, 0.99552, 0.99736, 0.99612, 0.9987, 0.9908, 0.99194, 0.9946, 0.99445, 0.98965, 0.9904, 0.99086, 0.9953, 0.9934, 0.99046, 0.9902, 0.99084, 0.99774, 0.9984, 0.9973, 0.9966, 0.996, 0.9976, 0.991, 0.99288, 0.9928, 0.9975, 0.99808, 0.9961, 0.9982, 0.9986, 0.9952, 0.9934, 0.996, 0.9934, 0.998, 0.9963, 0.9954, 0.98956, 0.9961, 0.9988, 0.99366, 0.99084, 0.99314, 0.99522, 0.99138, 0.9991, 0.99739, 0.99704, 0.9959, 0.9941, 0.99458, 0.99305, 0.99971, 0.9919, 0.99544, 0.99094, 0.9992, 1.0001, 0.9981, 0.99416, 0.99189, 0.9965, 0.98936, 0.99628, 0.99352, 0.9984, 0.99276, 0.9939, 0.99164, 0.9926, 0.99193, 0.993, 0.9928, 0.9966, 0.9991, 0.9931, 0.9944, 0.9952, 0.99467, 0.99771, 0.9984, 0.9943, 0.99381, 0.9946, 0.9993, 0.99176, 0.9962, 0.99048, 0.99121, 0.9944, 0.9936, 0.99174, 0.99469, 0.99052, 0.9944, 0.9927, 0.9986, 0.9962, 0.99362, 0.99552, 0.9958, 0.9978, 0.99884, 0.9958, 0.99779, 0.994, 0.9927, 0.99184, 0.98916, 0.99924, 0.99581, 0.9962, 0.9958, 0.99692, 0.99522, 0.99818, 0.9957, 0.99732, 0.99471, 0.9998, 0.9978, 0.9978, 0.99444, 0.99599, 0.9944, 0.99402, 0.99211, 0.9956, 0.99176, 0.9982, 0.9925, 0.9979, 0.99331, 0.9997, 0.99032, 0.99018, 0.99488, 0.99517, 0.9986, 0.9908, 0.99069, 0.9994, 0.98815, 0.99862, 0.9998, 0.99566, 0.9955, 0.99514, 0.9906, 0.9984, 0.9916, 0.9929, 0.99418, 0.992, 0.98779, 0.9915, 0.9934, 0.99907, 0.99, 0.99824, 0.998, 0.9958, 0.9986, 0.9968, 0.9956, 0.9983, 0.9993, 0.99439, 0.9887, 0.99047, 0.9968, 0.99202, 0.9906, 0.9965, 0.9901, 0.99772, 0.9948, 0.9986, 0.991, 0.99185, 0.9947, 0.9984, 0.99572, 0.99249, 0.9943, 0.9911, 0.99388, 0.99726, 0.9976, 0.989315, 0.99358, 0.99527, 0.9926, 0.9944, 0.9978, 0.996, 0.99636, 0.99784, 0.99626, 0.99746, 0.99304, 0.99316, 0.9984, 0.99339, 0.99274, 0.9955, 0.99804, 0.99724, 0.9921, 0.98845, 0.99437, 0.99708, 0.99614, 0.9986, 0.98992, 0.9986, 0.9997, 0.99182, 0.9996, 0.99362, 0.9928, 0.99552, 0.99115, 0.99454, 0.997, 0.99508, 0.99718, 0.99556, 0.9904, 0.98964, 0.9903, 0.99221, 0.99676, 0.9954, 0.99825, 0.99546, 0.9986, 0.9962, 0.9948, 0.991, 0.9945, 1.0004, 0.99479, 0.9954, 0.9965, 0.98912, 0.99516, 0.99042, 0.9963, 0.99787, 0.9916, 0.99742, 0.9893, 0.99158, 0.9954, 0.99172, 0.9944, 0.9925, 0.9998, 0.9944, 0.9906, 0.998, 0.99459, 0.9976, 0.9938, 0.99456, 0.9893, 0.99558, 0.9931, 0.9927, 0.9956, 0.9963, 0.997, 0.9931, 0.99514, 0.9968, 0.9932, 0.99354, 0.9948, 0.99261, 0.99454, 0.997, 0.9994, 0.99198, 0.998, 0.9954, 0.99773, 0.9953, 0.9994, 0.9928, 0.99068, 0.9963, 0.99384, 0.9991, 0.9969, 0.99275, 0.9952, 0.9956, 0.9932, 0.99212, 0.9967, 0.99165, 0.9968, 0.99616, 0.99659, 0.9924, 0.9918, 0.99316, 0.992, 0.9928, 0.99532, 0.9936, 0.98939, 0.9914, 0.99616, 0.9964, 0.99367, 0.98892, 0.99596, 0.99784, 0.992, 0.99198, 0.99267, 0.99271, 0.99347, 0.9919, 0.99089, 1.0001, 0.99425, 0.99226, 0.989465, 0.9952, 0.9902, 0.9958, 0.995, 0.9978, 0.99565, 0.99192, 0.9953, 0.9964, 1.0014, 0.9898, 0.9922, 0.99652, 0.9994, 0.99166, 0.99242, 0.99576, 0.9884, 0.9979, 0.9966, 0.99764, 0.9951, 0.9953, 0.98964, 1.0001, 0.99837, 1.0001, 0.9934, 0.998, 0.9932, 0.99586, 0.99014, 0.99372, 0.9917, 0.99455]}], \"layout\": {\"legend\": {\"orientation\": \"h\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"density\"}}, \"yaxis\": {\"title\": {\"text\": \"Share\"}}}}, \"density_drift\": {\"title\": \"\", \"size\": 2, \"text\": \"\", \"type\": \"big_graph\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"Current\", \"type\": \"scatter\", \"x\": [443, 319, 703, 526, 76, 963, 1260, 532, 1561, 517, 506, 1557, 271, 1058, 1381, 1039, 542, 107, 161, 1301, 519, 1021, 1213, 223, 1286, 1426, 1234, 587, 1183, 182, 567, 1492, 724, 1262, 1509, 657, 1137, 913, 1445, 342, 781, 14, 971, 1072, 1254, 678, 1175, 1481, 1370, 1443, 18, 1151, 1380, 434, 1430, 554, 53, 535, 1050, 427, 259, 124, 961, 1488, 1563, 720, 1291, 1061, 425, 846, 1147, 204, 1317, 618, 1088, 927, 1196, 582, 1194, 360, 1449, 862, 1135, 1453, 1442, 1017, 268, 685, 317, 775, 1086, 942, 1052, 801, 1362, 219, 379, 649, 1195, 479, 1542, 609, 930, 1105, 34, 708, 686, 1132, 693, 733, 1562, 1190, 473, 737, 672, 969, 858, 5, 1556, 298, 80, 940, 361, 1154, 1545, 1622, 784, 19, 1522, 996, 54, 1415, 1564, 1593, 1236, 9, 353, 1222, 113, 1010, 1263, 877, 82, 381, 818, 1210, 1409, 66, 254, 817, 92, 1340, 122, 1357, 511, 1546, 692, 17, 1248, 414, 52, 1296, 191, 175, 233, 900, 785, 935, 1298, 156, 487, 159, 481, 1255, 1597, 253, 1491, 841, 187, 914, 979, 249, 1114, 1366, 814, 716, 465, 875, 1242, 670, 299, 593, 436, 728, 141, 229, 1057, 912, 994, 648, 799, 1164, 1073, 4, 516, 152, 1267, 1237, 752, 1150, 825, 402, 1277, 575, 1437, 838, 390, 1505, 1093, 1026, 1611, 31, 674, 866, 1328, 616, 861, 897, 148, 303, 1451, 602, 1125, 1614, 1047, 1462, 1148, 574, 899, 1327, 89, 530, 408, 1192, 177, 520, 993, 326, 992, 717, 895, 1421, 984, 240, 85, 557, 278, 938, 1425, 958, 1232, 1149, 171, 1220, 227, 891, 489, 1391, 1184, 1032, 393, 726, 192, 260, 880, 1592, 1537, 491, 759, 1473, 959, 1454, 1015, 965, 1393, 1489, 1256, 133, 202, 1036, 438, 483, 666, 461, 142, 1181, 1580, 308, 538, 170, 310, 743, 1101, 1179, 315, 22, 1529, 45, 879, 1110, 61, 522, 1397, 829, 576, 1193, 1202, 1549, 1375, 27, 527, 1186, 1273, 828, 539, 1049, 1014, 412, 1091, 1497, 1595, 347, 2, 844, 1490, 632, 211, 1582, 918, 1217, 1115, 744, 459, 579, 771, 96, 178, 108, 1516, 805, 1240, 440, 619, 1, 1315, 1239, 1347, 512, 48, 722, 1517, 1621, 446, 565, 568, 796, 231, 1070, 1063, 215, 513, 704, 354, 55, 881, 746, 641, 762, 279, 1145, 1468, 224, 302, 911, 218, 1079, 874, 1266, 792, 1136, 372, 295, 364, 580, 1615, 688, 1560, 333, 467, 968, 399, 760, 740, 953, 1520, 1446, 1214, 615, 524, 546, 1495, 1324, 452, 1515, 432, 863, 442, 847, 276, 456, 184, 1116, 1200, 458, 1508, 1087, 1478, 376, 1479, 563, 1146, 1507, 42, 944, 823, 1228, 656, 1227, 198, 309, 761, 1158, 549, 47, 1209, 529, 933, 220, 1624, 1591, 651, 536, 362, 1314, 420, 564, 475, 482, 140, 679, 1436, 1334, 77, 39, 570, 962, 808, 981, 322, 1471, 251, 695, 1128, 813, 757, 820, 853, 831, 1246, 58, 553, 597, 241, 1288, 330, 1005, 789, 1617, 56, 1126, 411, 548, 501, 1211, 642, 558, 1605, 745, 878, 1056, 667, 435, 29, 270, 35, 1157, 422, 1310, 114, 1524, 1422, 689, 1018, 1168, 1360, 985, 1191, 793, 1363, 1504, 581, 644, 1199, 621, 1612, 494, 665, 431, 1095, 638, 1042, 1404, 1030, 40, 1121, 75, 1588, 1417, 247, 713, 1590, 186, 646, 312, 8, 1551, 1302, 1044, 768, 884, 1585, 1618, 826, 445, 712, 464, 1308, 195, 655, 1487, 1389, 1356, 243, 401, 572, 1074, 810, 477, 1460, 1544, 1182, 285, 471, 936, 1238, 578, 1034, 1535, 1513, 426, 1311, 1001, 986, 1038, 980, 1064, 620, 982, 1565, 194, 474, 1428, 569, 1165, 49, 1333, 1401, 1307, 1076, 991, 1566, 44, 1342, 245, 943, 300, 583, 1013, 269, 1548, 313, 776, 283, 1444, 540, 406, 338, 466, 363, 1002, 320, 1264, 1089, 70, 1027, 500, 10, 907, 505, 1295, 864, 1432, 64, 1122, 1543, 416, 898, 654, 205, 328, 486, 999, 1377, 970, 528, 1558, 418, 1379, 1299, 1378, 590, 1247, 1174, 472, 1323, 131, 15, 439, 1528, 476, 725, 1203, 1109, 1003, 1365, 103, 1279, 60, 871, 78, 391, 165, 1335, 1410, 1129, 960, 349, 185, 1464, 371, 117, 1398, 252, 507, 1613, 311, 1419, 395, 987, 358, 263, 359, 1559, 1305, 1506, 1376, 1055, 634, 1552, 16, 51, 1258, 493, 601, 997, 351, 711, 1604, 1486, 1339, 794, 97, 1475, 1423, 196, 748, 183, 1433, 1579, 613, 1536, 989, 682, 533, 610, 687, 892, 81, 896, 397, 267, 589, 386, 795, 1416, 132, 265, 1609, 1461, 883, 88, 840, 988, 1354, 676, 916, 629, 1269, 924, 294, 261, 1541, 1081, 1348, 1576, 405, 1616, 356, 608, 1097, 239, 1249, 1099, 1403, 119, 1096, 977, 751, 374, 453, 110, 1336, 1390, 905, 1287, 503, 1031, 1331, 1224, 729, 410, 1540, 367, 1607, 384, 200, 65, 1358, 1394, 1023, 272, 1418, 955, 677, 238, 1133, 974, 541, 478, 1257, 1265, 1465, 1589, 1326, 188, 1083, 681, 906, 1092, 1276, 316, 214, 1078, 1502, 1084, 660, 1142, 531, 255, 30, 662, 1253, 230, 157, 1343, 385, 1169, 380, 1188, 721, 264, 787, 101, 13, 1274, 68, 1024, 1170, 1156, 71, 1577, 566, 1372, 1245, 798, 523, 626, 495, 937, 155, 887, 758, 921, 790, 1349, 1230, 366, 1531, 983, 839, 228, 417, 206, 742, 79, 190, 492, 948, 145, 923, 318, 824, 1374, 1124, 1463, 596, 457, 144, 1359, 1292, 1045, 764, 842, 1140, 1408, 995, 904, 592, 1458, 135, 83, 1062, 154, 1440, 1283, 773, 1414, 127, 1177, 1318, 1413, 403, 150, 346, 413, 1303, 1523, 1619, 394, 1261, 1054, 208, 496, 352, 95, 625, 571, 37, 485, 143, 946, 158, 552, 1527, 1029, 518, 1180, 1218, 236, 1100, 222, 1431, 345, 1459, 120, 661, 588, 1623, 1493, 62, 1429, 811, 193, 235, 181, 1320, 389, 1103, 521, 669, 332, 258, 1369, 1538, 957, 382, 1382, 1567, 331, 934, 614, 262, 893, 6, 266, 769, 38, 901, 1573, 1578, 545, 118, 783, 652, 1025, 706, 105, 1189, 484, 1569, 630, 683, 20, 870, 242, 50, 162, 915, 966, 441, 867, 731, 1102, 1000, 1268, 1223, 822, 301, 723, 172], \"y\": [0.9934, 0.9966, 0.9979, 0.99234, 0.9932, 0.99556, 0.9939, 0.99686, 0.99126, 0.9927, 0.9926, 0.99362, 0.989435, 0.99239, 1.0, 0.9908, 0.9996, 0.98918, 0.99168, 1.001, 0.98904, 0.9932, 0.99438, 0.99565, 0.998, 0.99692, 0.99189, 0.999, 0.9903, 0.999, 0.9997, 0.9956, 0.9986, 0.9918, 0.992, 0.99513, 0.9935, 0.99587, 0.99869, 0.99541, 0.9893, 0.99326, 0.99146, 1.0, 0.99144, 0.99165, 0.98889, 0.9959, 0.9957, 0.9992, 0.99449, 1.0004, 0.99253, 0.98871, 0.9905, 0.9936, 0.9918, 0.9996, 0.9914, 0.99488, 0.98988, 0.995, 0.99123, 0.99014, 0.9946, 0.9958, 0.9978, 0.99009, 0.9986, 0.9974, 0.99417, 0.9998, 0.9968, 0.9926, 0.9969, 0.997, 0.9908, 0.99898, 0.9972, 0.9917, 0.9946, 0.9922, 0.99215, 0.99376, 1.0006, 0.998, 0.9931, 0.99839, 0.9916, 0.99795, 0.99652, 0.99724, 0.9944, 0.99727, 0.99206, 0.99406, 0.99534, 0.98964, 0.99798, 0.9963, 0.9966, 0.9951, 0.9926, 0.99236, 0.9945, 0.9986, 0.99341, 0.99064, 0.998, 0.99815, 0.99313, 0.9983, 0.99668, 0.99922, 0.99207, 0.9968, 0.9949, 0.9953, 0.9975, 0.98972, 0.9923, 0.99492, 0.9934, 0.9918, 0.99494, 0.9914, 0.9965, 0.99536, 0.99652, 0.99456, 0.9968, 0.9982, 0.9932, 0.992, 0.994, 0.99526, 0.99212, 0.9934, 0.9904, 0.98836, 0.9931, 0.99148, 0.99704, 0.99018, 0.9976, 0.99616, 0.9968, 0.99376, 0.993, 0.99911, 0.99596, 0.99438, 0.98882, 0.9986, 0.99244, 0.99454, 0.99566, 0.996, 1.0011, 0.9937, 0.99262, 0.99132, 0.99159, 0.99551, 0.99612, 1.0103, 0.9976, 0.99144, 0.9893, 0.9963, 0.99171, 0.9934, 0.99238, 0.9934, 0.99552, 0.9989, 0.99748, 1.00315, 0.99322, 0.98976, 0.99384, 0.99, 0.99638, 0.9966, 0.99649, 0.9981, 0.991, 0.9984, 0.98961, 0.98961, 0.9933, 0.98918, 0.99848, 1.00315, 1.00014, 0.9931, 1.0006, 0.99667, 0.9979, 0.99252, 0.9976, 0.9962, 1.0006, 0.9917, 0.9943, 0.995, 0.9994, 0.99576, 0.99657, 0.99592, 0.99745, 0.99702, 0.9916, 0.9993, 0.9978, 0.9991, 0.993, 0.9965, 0.9956, 0.9927, 0.99564, 0.99094, 0.997, 0.9987, 0.99654, 0.98954, 0.99093, 0.99212, 0.9912, 0.99676, 0.9947, 0.99694, 0.99232, 0.9979, 0.9898, 0.9983, 0.98934, 0.9938, 0.99394, 0.9992, 0.9913, 0.99458, 0.9959, 0.99554, 0.9932, 0.99099, 0.9923, 0.99665, 0.99738, 0.99174, 0.9907, 1.0, 0.9927, 0.9918, 0.99345, 0.991, 0.99154, 0.98872, 0.99444, 0.99717, 0.9966, 0.9943, 0.99576, 0.9972, 0.99646, 0.9968, 0.9934, 1.0002, 0.9938, 0.9956, 0.99314, 0.999, 0.9908, 0.9923, 0.9967, 1.001, 0.99976, 0.992, 0.9978, 0.9949, 0.9951, 0.9936, 0.99278, 0.9984, 0.998, 0.99076, 0.99064, 0.9991, 0.9931, 0.99683, 0.9918, 0.99173, 0.9893, 0.9993, 0.99612, 0.9914, 0.99476, 0.99312, 0.9937, 0.9929, 0.99294, 0.9928, 0.9958, 0.9947, 0.9986, 0.999, 0.993, 0.9972, 0.99742, 0.99224, 0.98986, 0.9948, 0.99596, 0.98998, 0.99918, 1.0006, 0.99162, 0.99479, 1.0, 0.99232, 0.9955, 0.9914, 0.9922, 0.9954, 0.99584, 0.9984, 0.99, 0.9914, 0.99448, 0.9956, 0.9975, 0.99544, 0.9994, 0.99416, 0.9989, 0.9971, 0.99134, 0.9941, 0.9964, 0.99617, 0.99194, 0.9983, 0.99842, 0.9951, 0.994, 0.9922, 0.9956, 1.0004, 0.99712, 0.99362, 0.99031, 0.9926, 0.99669, 0.99164, 0.99216, 0.9917, 0.9938, 0.99676, 0.99471, 0.9955, 0.9958, 0.99176, 0.9962, 0.99182, 0.99313, 0.9959, 0.9956, 0.9946, 0.996, 0.996, 0.99546, 0.99807, 0.9986, 0.9931, 0.99915, 0.99111, 0.9984, 0.9948, 0.9983, 0.9997, 1.0006, 0.99546, 0.9938, 0.9912, 0.99581, 0.98876, 0.99734, 0.9991, 0.99676, 0.9933, 0.992, 0.99694, 0.99095, 0.9976, 0.98924, 0.99067, 0.99498, 0.9946, 0.9931, 0.99435, 0.9938, 0.99055, 0.9912, 0.99516, 0.9958, 0.993, 0.9976, 0.9968, 0.99454, 0.99182, 0.98878, 0.9988, 0.9962, 0.9977, 0.9932, 0.99681, 0.99494, 0.99498, 0.99154, 0.9938, 0.9938, 0.99239, 0.99512, 0.9979, 0.99088, 0.99161, 0.9939, 0.99494, 0.99158, 0.9963, 0.99188, 0.99035, 0.9992, 0.9945, 0.9924, 1.0003, 0.99677, 0.9994, 0.99655, 0.99176, 0.98974, 0.99152, 0.99296, 0.9958, 0.99782, 0.9964, 0.99173, 0.9975, 0.99568, 0.9924, 0.9932, 0.99942, 0.98944, 0.9932, 0.9973, 0.9958, 0.99184, 0.99344, 0.9912, 0.9928, 0.9976, 0.99534, 0.98986, 0.99481, 0.99287, 0.99584, 0.991, 0.99047, 0.99691, 0.99165, 0.99696, 0.9988, 0.99646, 0.99708, 0.9902, 0.99745, 0.99178, 0.9963, 0.99232, 0.9938, 0.99872, 0.99212, 0.9934, 0.9982, 0.99176, 0.99408, 0.99572, 0.9974, 0.9998, 1.0026, 0.99, 0.992, 0.99734, 0.9975, 0.99204, 0.99492, 0.9944, 0.99666, 0.9904, 0.9994, 0.997, 0.99288, 0.994, 0.99264, 0.99299, 0.99534, 0.9996, 0.9997, 0.99685, 0.9966, 0.9958, 0.99346, 0.99215, 0.99521, 0.9974, 0.9956, 0.9934, 0.9967, 0.99406, 0.99204, 0.9936, 0.9926, 0.9982, 0.99086, 0.9955, 0.9964, 0.99158, 0.99975, 0.9987, 0.98918, 0.9966, 0.9926, 0.99815, 0.9923, 0.99366, 0.99775, 0.99706, 0.99742, 0.99358, 0.99071, 0.99582, 0.9988, 0.9986, 0.99642, 0.99551, 0.9956, 0.99862, 0.9957, 0.9941, 0.99688, 0.99882, 0.99324, 0.98823, 0.9952, 1.0004, 0.992, 0.99043, 1.0002, 0.99655, 0.9927, 0.99705, 0.98942, 0.99356, 0.99553, 0.99154, 0.99315, 0.9954, 0.9928, 0.99226, 0.9958, 0.9989, 0.9958, 0.9936, 0.99545, 0.99, 0.9948, 0.99743, 0.992, 0.9898, 0.99354, 0.99186, 0.99404, 0.99524, 0.99922, 0.992, 0.9988, 0.9939, 0.99555, 0.99173, 0.99557, 0.9999, 0.99531, 0.9976, 0.9903, 0.992, 0.9961, 0.9938, 0.991, 0.9936, 0.9907, 0.99784, 0.99382, 0.98952, 0.99947, 0.997, 0.998, 0.9962, 0.9976, 0.9952, 0.99148, 0.99792, 0.99058, 0.9983, 0.9986, 0.9974, 0.99282, 0.98993, 0.9923, 0.9927, 0.99519, 0.9967, 0.99922, 0.9958, 0.9994, 0.9974, 0.9951, 0.99683, 0.99165, 0.99176, 0.99006, 0.9977, 0.998, 0.99002, 0.99458, 0.99552, 0.99736, 0.99612, 0.9987, 0.9908, 0.99194, 0.9946, 0.99445, 0.98965, 0.9904, 0.99086, 0.9953, 0.9934, 0.99046, 0.9902, 0.99084, 0.99774, 0.9984, 0.9973, 0.9966, 0.996, 0.9976, 0.991, 0.99288, 0.9928, 0.9975, 0.99808, 0.9961, 0.9982, 0.9986, 0.9952, 0.9934, 0.996, 0.9934, 0.998, 0.9963, 0.9954, 0.98956, 0.9961, 0.9988, 0.99366, 0.99084, 0.99314, 0.99522, 0.99138, 0.9991, 0.99739, 0.99704, 0.9959, 0.9941, 0.99458, 0.99305, 0.99971, 0.9919, 0.99544, 0.99094, 0.9992, 1.0001, 0.9981, 0.99416, 0.99189, 0.9965, 0.98936, 0.99628, 0.99352, 0.9984, 0.99276, 0.9939, 0.99164, 0.9926, 0.99193, 0.993, 0.9928, 0.9966, 0.9991, 0.9931, 0.9944, 0.9952, 0.99467, 0.99771, 0.9984, 0.9943, 0.99381, 0.9946, 0.9993, 0.99176, 0.9962, 0.99048, 0.99121, 0.9944, 0.9936, 0.99174, 0.99469, 0.99052, 0.9944, 0.9927, 0.9986, 0.9962, 0.99362, 0.99552, 0.9958, 0.9978, 0.99884, 0.9958, 0.99779, 0.994, 0.9927, 0.99184, 0.98916, 0.99924, 0.99581, 0.9962, 0.9958, 0.99692, 0.99522, 0.99818, 0.9957, 0.99732, 0.99471, 0.9998, 0.9978, 0.9978, 0.99444, 0.99599, 0.9944, 0.99402, 0.99211, 0.9956, 0.99176, 0.9982, 0.9925, 0.9979, 0.99331, 0.9997, 0.99032, 0.99018, 0.99488, 0.99517, 0.9986, 0.9908, 0.99069, 0.9994, 0.98815, 0.99862, 0.9998, 0.99566, 0.9955, 0.99514, 0.9906, 0.9984, 0.9916, 0.9929, 0.99418, 0.992, 0.98779, 0.9915, 0.9934, 0.99907, 0.99, 0.99824, 0.998, 0.9958, 0.9986, 0.9968, 0.9956, 0.9983, 0.9993, 0.99439, 0.9887, 0.99047, 0.9968, 0.99202, 0.9906, 0.9965, 0.9901, 0.99772, 0.9948, 0.9986, 0.991, 0.99185, 0.9947, 0.9984, 0.99572, 0.99249, 0.9943, 0.9911, 0.99388, 0.99726, 0.9976, 0.989315, 0.99358, 0.99527, 0.9926, 0.9944, 0.9978, 0.996, 0.99636, 0.99784, 0.99626, 0.99746, 0.99304, 0.99316, 0.9984, 0.99339, 0.99274, 0.9955, 0.99804, 0.99724, 0.9921, 0.98845, 0.99437, 0.99708, 0.99614, 0.9986, 0.98992, 0.9986, 0.9997, 0.99182, 0.9996, 0.99362, 0.9928, 0.99552, 0.99115, 0.99454, 0.997, 0.99508, 0.99718, 0.99556, 0.9904, 0.98964, 0.9903, 0.99221, 0.99676, 0.9954, 0.99825, 0.99546, 0.9986, 0.9962, 0.9948, 0.991, 0.9945, 1.0004, 0.99479, 0.9954, 0.9965, 0.98912, 0.99516, 0.99042, 0.9963, 0.99787, 0.9916, 0.99742, 0.9893, 0.99158, 0.9954, 0.99172, 0.9944, 0.9925, 0.9998, 0.9944, 0.9906, 0.998, 0.99459, 0.9976, 0.9938, 0.99456, 0.9893, 0.99558, 0.9931, 0.9927, 0.9956, 0.9963, 0.997, 0.9931, 0.99514, 0.9968, 0.9932, 0.99354, 0.9948, 0.99261, 0.99454, 0.997, 0.9994, 0.99198, 0.998, 0.9954, 0.99773, 0.9953, 0.9994, 0.9928, 0.99068, 0.9963, 0.99384, 0.9991, 0.9969, 0.99275, 0.9952, 0.9956, 0.9932, 0.99212, 0.9967, 0.99165, 0.9968, 0.99616, 0.99659, 0.9924, 0.9918, 0.99316, 0.992, 0.9928, 0.99532, 0.9936, 0.98939, 0.9914, 0.99616, 0.9964, 0.99367, 0.98892, 0.99596, 0.99784, 0.992, 0.99198, 0.99267, 0.99271, 0.99347, 0.9919, 0.99089, 1.0001, 0.99425, 0.99226, 0.989465, 0.9952, 0.9902, 0.9958, 0.995, 0.9978, 0.99565, 0.99192, 0.9953, 0.9964, 1.0014, 0.9898, 0.9922, 0.99652, 0.9994, 0.99166, 0.99242, 0.99576, 0.9884, 0.9979, 0.9966, 0.99764, 0.9951, 0.9953, 0.98964, 1.0001, 0.99837, 1.0001, 0.9934, 0.998, 0.9932, 0.99586, 0.99014, 0.99372, 0.9917, 0.99455]}, {\"marker\": {\"color\": \"white\", \"opacity\": 0.005, \"size\": 0.01}, \"mode\": \"markers\", \"name\": \"Current\", \"showlegend\": false, \"type\": \"scatter\", \"x\": [2, 2], \"y\": [0.9854642822361177, 1.0037394377638817]}], \"layout\": {\"legend\": {\"orientation\": \"h\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"shapes\": [{\"fillcolor\": \"LightGreen\", \"layer\": \"below\", \"line\": {\"width\": 0}, \"opacity\": 0.5, \"type\": \"rect\", \"x0\": 0, \"x1\": 1, \"xref\": \"paper\", \"y0\": 0.9854642822361177, \"y1\": 1.0037394377638817, \"yref\": \"y\"}, {\"line\": {\"color\": \"Green\", \"width\": 3}, \"name\": \"Reference\", \"type\": \"line\", \"x0\": 0, \"x1\": 1, \"xref\": \"paper\", \"y0\": 0.9946018599999997, \"y1\": 0.9946018599999997, \"yref\": \"y\"}], \"showlegend\": true, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"Index\"}}, \"yaxis\": {\"title\": {\"text\": \"density\"}}}}}, \"pH_distr\": {\"data\": [{\"histnorm\": \"probability\", \"marker\": {\"color\": \"#4d4d4d\"}, \"name\": \"Reference\", \"nbinsx\": 10, \"opacity\": 0.6, \"type\": \"histogram\", \"x\": [3.17, 3.36, 3.32, 3.59, 3.37, 3.4, 3.22, 3.36, 3.14, 3.1, 3.06, 3.16, 3.16, 3.52, 3.03, 3.06, 3.03, 3.37, 3.45, 3.14, 3.15, 3.09, 2.95, 3.34, 3.46, 3.18, 3.34, 3.36, 3.12, 3.16, 3.21, 3.18, 3.23, 3.25, 2.94, 3.64, 3.3, 3.31, 3.14, 3.28, 3.33, 3.25, 3.02, 3.38, 3.3, 3.24, 3.32, 3.24, 3.3, 3.1, 3.5, 3.06, 3.53, 3.38, 3.19, 3.13, 3.11, 3.12, 3.4, 3.26, 3.26, 3.25, 3.14, 3.46, 3.41, 3.54, 3.12, 2.94, 3.6, 3.26, 3.11, 3.4, 3.27, 3.3, 3.22, 3.2, 3.0, 3.29, 3.1, 3.15, 3.17, 3.3, 3.48, 3.32, 3.01, 3.66, 3.19, 3.19, 3.15, 3.03, 3.0, 3.22, 3.26, 3.15, 3.05, 3.51, 2.96, 3.25, 3.2, 3.04, 3.46, 3.08, 3.31, 3.02, 3.32, 3.39, 3.27, 3.17, 3.31, 3.15, 3.26, 3.12, 3.19, 3.13, 3.3, 3.32, 3.19, 3.4, 3.23, 3.32, 3.17, 3.04, 3.09, 3.15, 3.08, 3.01, 3.2, 3.48, 3.19, 3.29, 3.35, 3.25, 3.29, 3.0, 3.65, 3.11, 2.96, 3.27, 3.17, 3.02, 3.2, 3.18, 3.07, 3.2, 3.28, 3.37, 3.18, 3.08, 3.32, 3.19, 3.16, 3.14, 3.26, 3.19, 3.58, 3.43, 3.54, 3.6, 3.34, 3.13, 3.39, 3.26, 3.22, 3.27, 3.17, 3.26, 2.87, 3.61, 3.33, 3.47, 3.04, 2.79, 3.18, 3.4, 2.96, 3.09, 3.27, 3.5, 3.27, 3.05, 3.24, 3.1, 3.3, 3.0, 3.21, 3.15, 3.05, 3.1, 3.16, 3.4, 3.08, 3.35, 3.15, 3.28, 3.02, 3.2, 3.1, 3.11, 3.16, 3.4, 3.0, 2.98, 3.05, 2.99, 3.12, 3.39, 3.04, 3.06, 3.26, 3.36, 3.33, 3.04, 3.11, 3.24, 3.35, 3.14, 3.61, 3.19, 3.21, 3.26, 3.36, 3.17, 3.01, 3.27, 3.38, 3.27, 3.22, 3.27, 3.54, 3.23, 3.12, 2.89, 3.52, 3.08, 3.31, 3.2, 3.08, 3.15, 3.05, 3.22, 3.1, 3.25, 3.39, 2.96, 3.2, 2.96, 2.92, 3.3, 3.17, 3.18, 3.04, 3.18, 2.98, 3.4, 3.14, 3.15, 3.11, 2.98, 3.27, 3.2, 3.01, 3.35, 3.26, 3.15, 3.49, 3.52, 3.3, 3.09, 3.12, 3.36, 3.35, 3.22, 3.06, 3.36, 3.29, 3.08, 3.16, 3.14, 3.37, 3.27, 3.22, 3.34, 3.37, 3.38, 3.03, 3.37, 3.32, 3.26, 3.33, 3.08, 3.41, 3.23, 3.34, 3.49, 3.58, 3.48, 3.13, 3.32, 3.39, 3.11, 3.18, 3.34, 3.15, 3.16, 3.22, 3.32, 3.31, 3.06, 3.54, 3.15, 3.37, 3.71, 3.53, 3.09, 3.26, 3.55, 3.0, 3.13, 3.41, 3.1, 3.22, 3.16, 2.9, 3.32, 3.36, 3.11, 3.41, 3.38, 3.1, 3.45, 3.23, 3.22, 3.14, 2.94, 3.05, 3.4, 3.29, 3.1, 3.07, 3.24, 3.28, 3.23, 3.16, 2.89, 3.23, 3.12, 3.36, 2.93, 3.21, 3.03, 3.1, 3.43, 3.39, 3.28, 3.08, 3.02, 3.1, 3.38, 3.22, 3.2, 3.07, 3.34, 3.11, 3.17, 3.22, 3.6, 3.13, 3.22, 3.18, 3.51, 3.26, 3.09, 3.25, 3.03, 3.36, 3.66, 3.42, 3.07, 3.14, 3.27, 3.21, 3.13, 3.18, 3.28, 3.14, 2.98, 2.95, 3.26, 3.22, 3.23, 3.14, 3.02, 3.42, 3.2, 3.15, 3.25, 3.21, 3.44, 3.11, 3.14, 3.14, 3.32, 3.13, 3.45, 3.17, 3.24, 2.92, 3.12, 3.46, 3.15, 3.15, 2.93, 3.32, 2.99, 3.14, 3.25, 3.16, 3.38, 3.2, 3.25, 3.18, 3.46, 2.97, 3.15, 3.14, 3.05, 3.01, 3.31, 3.28, 3.23, 3.28, 3.38, 3.56, 3.16, 3.22, 3.34, 3.49, 3.04, 2.91, 3.55, 3.39, 3.11, 3.27, 3.18, 3.71, 3.18, 3.17, 3.26, 3.26, 2.96, 3.08, 3.06, 3.57, 3.26, 3.15, 3.28, 3.13, 3.14, 3.12, 3.24, 2.94, 3.22, 3.34, 3.37, 2.99, 3.22, 3.12, 3.26, 3.23, 3.24, 3.09, 3.19, 3.33, 3.47, 3.2, 3.46, 3.21, 3.7, 3.01, 3.24, 3.37, 3.38, 3.38, 3.54, 3.28, 3.54, 3.15, 3.14, 3.4, 3.13, 3.1, 3.05, 3.21, 3.19, 3.12, 3.01, 2.97, 3.28, 3.09, 3.42, 3.12, 3.02, 3.03, 3.62, 3.37, 3.01, 3.16, 3.16, 3.08, 3.12, 3.29, 3.03, 3.2, 3.4, 3.14, 3.16, 2.95, 3.34, 3.24, 3.53, 3.08, 3.3, 3.47, 2.86, 3.15, 3.52, 3.22, 3.36, 3.16, 2.98, 3.12, 3.25, 3.06, 3.07, 3.15, 3.3, 2.93, 2.88, 3.16, 3.16, 3.27, 3.48, 3.22, 3.16, 3.01, 3.23, 3.34, 3.15, 3.21, 3.63, 3.13, 2.92, 3.09, 3.32, 3.29, 3.04, 3.2, 3.22, 3.24, 3.11, 3.21, 3.02, 3.16, 3.46, 3.3, 3.18, 3.28, 3.14, 3.2, 3.14, 3.72, 3.18, 3.3, 3.53, 2.87, 3.09, 3.14, 3.5, 3.32, 3.28, 3.04, 3.06, 3.33, 3.1, 3.33, 3.18, 3.24, 3.23, 3.26, 2.89, 3.11, 3.11, 2.97, 3.06, 2.94, 3.35, 3.33, 3.29, 3.38, 3.16, 2.87, 2.88, 3.12, 3.17, 3.44, 3.5, 3.09, 3.0, 3.18, 3.22, 3.06, 2.96, 3.44, 3.1, 3.14, 3.26, 3.1, 3.12, 3.27, 3.11, 3.25, 3.39, 3.3, 3.06, 3.45, 3.34, 3.02, 3.22, 3.22, 3.42, 3.52, 3.46, 3.34, 3.49, 2.94, 3.23, 3.21, 3.12, 3.33, 3.27, 2.94, 3.5, 3.1, 3.16, 2.92, 3.11, 3.35, 3.22, 3.44, 3.38, 3.24, 3.16, 3.39, 3.29, 3.16, 3.12, 3.39, 3.06, 3.2, 3.08, 3.2, 2.96, 3.16, 3.42, 3.15, 3.09, 3.11, 3.12, 3.02, 3.24, 3.11, 3.29, 3.14, 3.03, 3.27, 3.09, 3.12, 3.5, 3.15, 3.22, 3.33, 3.45, 3.18, 3.48, 3.24, 3.24, 3.45, 3.51, 3.25, 3.41, 3.12, 3.14, 3.17, 3.66, 3.13, 3.39, 3.1, 3.09, 3.17, 3.14, 3.12, 2.96, 3.23, 3.08, 3.41, 3.24, 3.15, 3.33, 3.12, 3.29, 3.14, 3.37, 3.27, 3.11, 3.22, 3.28, 3.4, 3.34, 3.12, 3.16, 3.17, 3.45, 3.05, 3.32, 3.05, 3.38, 3.32, 3.14, 3.2, 3.27, 3.21, 3.32, 3.31, 3.19, 3.28, 3.12, 3.18, 3.39, 3.12, 3.26, 3.0, 3.25, 3.16, 3.21, 3.11, 3.15, 3.57, 3.77, 2.98, 3.08, 3.49, 3.74, 3.42, 3.29, 3.44, 3.18, 3.06, 3.07, 3.08, 3.04, 3.18, 3.21, 3.11, 3.21, 3.16, 3.21, 3.03, 3.19, 3.31, 3.28, 3.29, 3.11, 3.39, 3.24, 3.36, 3.54, 3.26, 2.98, 3.44, 3.34, 3.09, 2.96, 3.11, 3.35, 3.13, 3.24, 3.23, 3.09, 3.0, 2.99, 3.31, 3.09, 3.11, 2.94, 3.13, 3.1, 3.29, 3.26, 3.34, 3.29, 3.26, 2.96, 3.08, 3.01, 3.59, 3.17, 3.41, 3.37, 3.2, 3.0, 3.09, 3.18, 3.18, 3.38, 3.29, 3.41, 3.15, 3.16, 3.35, 2.9, 3.11, 3.28, 3.49, 3.36, 3.22, 3.02, 3.08, 3.1, 3.25, 3.17, 3.29, 3.22, 2.96, 3.18, 3.17, 3.06, 3.08, 3.22, 3.36, 3.38, 3.43, 3.04, 3.12, 3.12, 3.24, 3.42, 3.51, 3.06, 3.03, 3.35, 3.3, 3.32, 2.94, 3.34, 3.13, 3.29, 3.08, 3.08, 3.05, 3.11, 3.23, 3.08, 3.36, 3.44, 3.68, 3.68, 2.93, 3.28, 3.05, 3.13, 3.36, 3.36, 3.1, 3.36, 3.2, 3.17, 3.08, 3.22, 3.3, 2.94, 3.25, 3.31, 3.08, 3.12, 3.21, 3.34, 3.03, 3.05, 2.97, 3.04, 3.03, 3.36, 3.49, 3.06, 3.22, 3.54, 3.26, 3.34, 3.59, 3.18, 3.2, 3.25, 3.61, 3.38, 3.05, 2.93, 3.09, 3.12, 3.19, 3.1, 3.22, 3.37, 3.31, 3.36, 3.22, 3.25, 3.66, 3.42, 3.25, 3.32, 3.02, 3.23, 3.32, 3.28, 3.2, 3.19, 3.15, 3.14, 3.13, 3.36, 3.16, 3.28, 3.42, 3.15, 3.14, 2.94, 2.99, 3.21, 2.98, 3.14, 3.37, 3.22, 3.19, 3.39, 3.54, 2.95, 3.29, 3.23, 3.22, 2.87, 3.52, 3.02, 2.93, 3.27, 3.21, 3.38, 3.35, 3.2, 3.25, 3.07, 3.09, 3.23, 3.13, 3.05, 3.1, 3.3, 3.23, 3.14, 3.3, 3.15, 3.08, 3.21, 3.15, 3.24, 3.18, 3.09, 3.1, 3.2, 3.34, 3.24, 3.05, 3.22, 3.15, 3.04, 3.4, 3.48, 3.28, 3.53, 3.28, 3.14, 3.38, 3.08, 3.44, 3.24, 3.04, 3.34, 3.06, 3.27, 3.63, 3.09]}, {\"histnorm\": \"probability\", \"marker\": {\"color\": \"#ed0400\"}, \"name\": \"Current\", \"nbinsx\": 10, \"opacity\": 0.6, \"type\": \"histogram\", \"x\": [3.03, 3.36, 3.09, 3.09, 3.17, 3.22, 3.03, 3.21, 3.07, 3.19, 3.19, 3.06, 2.96, 3.38, 3.28, 3.13, 2.93, 3.16, 3.18, 2.93, 3.46, 3.14, 3.32, 3.23, 3.29, 3.29, 3.06, 3.41, 3.01, 3.14, 3.03, 3.12, 3.1, 3.16, 3.13, 3.14, 3.32, 3.12, 3.14, 3.14, 3.07, 2.97, 3.3, 3.27, 3.08, 3.36, 2.96, 3.14, 3.3, 3.37, 3.23, 3.16, 3.32, 2.96, 2.97, 3.09, 3.27, 2.96, 3.21, 2.86, 3.23, 3.46, 2.99, 3.13, 3.15, 3.14, 3.12, 3.15, 3.06, 3.21, 3.46, 3.16, 3.59, 3.07, 2.93, 3.44, 3.35, 3.18, 3.29, 3.29, 3.16, 2.96, 3.3, 3.32, 3.28, 2.87, 3.46, 2.98, 3.68, 3.41, 2.9, 3.41, 3.3, 3.04, 3.2, 2.99, 3.08, 3.32, 3.38, 3.2, 3.4, 3.39, 3.42, 3.3, 3.29, 3.07, 3.32, 3.26, 3.25, 3.27, 3.38, 3.25, 3.16, 3.19, 3.13, 3.42, 3.29, 3.29, 3.27, 3.11, 3.11, 3.34, 3.26, 3.01, 3.1, 2.99, 3.08, 3.22, 3.47, 3.06, 3.0, 3.22, 3.2, 3.08, 3.3, 3.26, 3.28, 3.03, 3.42, 3.0, 3.17, 3.16, 3.07, 3.03, 3.27, 3.15, 3.2, 3.56, 3.02, 3.14, 3.34, 3.4, 2.98, 3.07, 2.79, 3.19, 2.93, 3.27, 3.17, 2.99, 3.34, 3.36, 3.31, 3.15, 3.37, 3.15, 3.39, 3.0, 3.21, 3.28, 3.27, 3.37, 3.75, 3.22, 3.05, 3.37, 3.48, 2.92, 3.41, 3.24, 3.21, 3.26, 3.29, 3.04, 3.27, 3.43, 3.29, 3.34, 2.91, 3.05, 3.38, 3.14, 3.08, 2.92, 3.02, 3.32, 3.01, 3.2, 3.31, 3.27, 3.31, 3.23, 3.48, 3.3, 3.13, 3.61, 3.1, 3.2, 3.03, 3.53, 3.16, 3.03, 3.18, 3.07, 3.51, 3.38, 2.99, 3.45, 3.37, 3.0, 3.19, 3.06, 3.19, 3.06, 3.38, 3.21, 3.21, 3.47, 3.09, 3.26, 3.23, 3.32, 3.2, 2.98, 3.25, 3.45, 3.04, 3.19, 3.39, 3.07, 2.95, 3.15, 3.22, 3.34, 3.03, 3.42, 2.94, 3.17, 3.38, 3.18, 3.38, 3.04, 3.28, 3.07, 3.14, 3.3, 3.03, 3.18, 3.31, 3.39, 3.21, 3.38, 3.15, 3.33, 3.22, 3.2, 3.27, 3.3, 3.05, 3.22, 3.32, 3.41, 3.29, 2.97, 3.47, 3.0, 3.22, 3.14, 3.35, 3.41, 3.23, 3.08, 2.99, 3.0, 3.28, 3.27, 3.16, 3.18, 3.41, 3.4, 3.19, 2.9, 3.51, 3.07, 3.43, 2.93, 3.5, 3.45, 3.25, 3.14, 2.96, 3.36, 3.14, 3.18, 3.17, 3.17, 3.42, 3.37, 3.24, 3.24, 3.36, 3.39, 3.24, 3.25, 3.15, 3.1, 3.15, 3.08, 3.27, 3.2, 3.34, 3.31, 3.54, 3.19, 3.35, 3.16, 3.13, 3.24, 3.36, 3.36, 3.42, 3.2, 3.24, 3.15, 3.18, 2.96, 3.38, 3.12, 3.3, 3.33, 3.27, 2.94, 3.53, 3.26, 3.11, 3.35, 3.22, 3.34, 3.4, 3.29, 3.1, 2.8, 3.13, 3.27, 2.98, 3.23, 3.3, 3.1, 3.17, 3.18, 3.13, 3.05, 3.37, 3.34, 2.95, 3.81, 3.37, 3.36, 3.1, 3.39, 3.29, 2.94, 3.1, 3.51, 3.38, 3.26, 3.19, 3.29, 2.99, 2.93, 3.28, 3.29, 3.08, 3.32, 3.05, 3.16, 3.25, 3.18, 3.2, 3.26, 2.96, 3.45, 3.17, 3.16, 2.97, 3.44, 3.35, 3.29, 3.51, 3.31, 3.23, 3.28, 3.31, 2.91, 3.22, 3.23, 3.29, 3.14, 3.2, 3.24, 3.04, 3.18, 3.42, 3.5, 3.45, 3.13, 2.94, 3.42, 3.47, 3.12, 3.05, 2.83, 3.52, 3.06, 2.97, 3.28, 3.16, 3.25, 3.12, 3.23, 3.15, 3.24, 3.46, 3.34, 3.2, 3.26, 3.22, 3.19, 3.34, 3.05, 3.1, 3.03, 3.22, 3.34, 3.07, 3.23, 3.33, 3.2, 3.23, 3.23, 3.19, 3.47, 3.03, 3.11, 3.42, 3.17, 2.92, 3.1, 3.38, 3.16, 3.01, 3.4, 3.36, 3.21, 3.1, 3.2, 3.09, 2.88, 3.23, 3.26, 3.08, 2.99, 3.56, 3.09, 3.31, 3.31, 3.76, 3.1, 3.14, 3.14, 3.18, 2.97, 3.02, 3.04, 3.17, 3.19, 3.49, 3.38, 3.42, 3.32, 3.16, 3.11, 3.28, 3.12, 3.36, 3.35, 3.13, 2.88, 3.19, 3.36, 3.11, 2.96, 2.99, 3.37, 3.22, 3.06, 3.29, 3.38, 3.18, 3.23, 3.12, 3.33, 3.17, 3.34, 3.52, 3.39, 3.15, 3.32, 3.11, 3.15, 3.4, 3.45, 3.42, 3.05, 3.14, 3.27, 3.22, 3.12, 3.06, 3.26, 3.08, 3.36, 3.28, 3.0, 3.17, 3.07, 3.15, 3.04, 3.4, 3.03, 3.33, 3.34, 2.94, 3.24, 3.21, 3.24, 3.22, 3.54, 3.2, 3.42, 3.25, 3.1, 3.2, 3.29, 3.16, 3.21, 3.03, 3.07, 3.35, 3.21, 3.24, 3.16, 3.18, 3.3, 2.95, 3.44, 3.07, 3.13, 3.06, 3.1, 3.07, 3.22, 3.09, 3.23, 3.19, 3.48, 3.53, 2.94, 3.33, 3.3, 3.24, 3.24, 3.28, 3.19, 3.55, 3.18, 3.32, 3.1, 3.18, 3.36, 2.97, 3.17, 3.08, 3.3, 3.3, 3.33, 3.4, 3.3, 3.06, 3.2, 2.85, 3.14, 3.32, 3.35, 3.09, 3.42, 3.48, 3.25, 3.33, 3.3, 2.96, 3.12, 3.13, 3.2, 3.26, 3.49, 2.95, 3.0, 3.12, 3.12, 3.37, 3.25, 3.19, 3.2, 3.28, 3.06, 3.17, 3.15, 3.14, 3.31, 3.06, 3.17, 3.27, 3.13, 3.33, 3.24, 3.4, 2.98, 3.06, 3.0, 3.15, 3.0, 3.41, 3.16, 3.05, 3.19, 3.8, 3.09, 3.15, 3.03, 3.32, 3.43, 2.89, 3.08, 3.37, 3.01, 3.34, 2.92, 3.19, 3.14, 3.0, 3.22, 3.38, 3.14, 3.09, 3.08, 3.38, 3.57, 3.48, 3.11, 3.04, 3.06, 3.54, 2.94, 3.24, 3.7, 3.18, 3.39, 3.24, 3.14, 3.2, 3.14, 3.34, 3.34, 3.16, 3.12, 2.94, 3.41, 3.2, 3.29, 3.6, 3.3, 3.09, 3.28, 3.04, 3.19, 3.2, 3.04, 3.3, 3.06, 3.03, 3.52, 3.25, 3.16, 3.45, 3.5, 3.25, 3.46, 3.18, 3.42, 3.36, 3.05, 3.58, 3.56, 2.9, 3.15, 3.13, 3.24, 3.67, 3.05, 3.4, 3.21, 3.23, 3.16, 3.54, 3.32, 3.32, 3.44, 3.19, 3.21, 3.1, 3.39, 3.19, 3.41, 3.35, 3.31, 3.13, 2.85, 3.16, 2.99, 3.0, 3.07, 3.04, 3.26, 3.09, 3.4, 3.32, 3.01, 3.42, 3.24, 3.27, 3.66, 3.37, 3.36, 3.58, 3.58, 3.31, 3.27, 3.14, 2.89, 3.31, 3.21, 3.3, 3.3, 3.11, 3.11, 3.29, 3.1, 3.4, 3.04, 3.1, 3.06, 3.14, 3.42, 3.15, 3.51, 3.32, 3.22, 2.99, 3.17, 3.16, 3.1, 3.34, 3.08, 3.1, 3.08, 3.34, 3.25, 3.12, 3.06, 3.12, 3.06, 3.29, 3.38, 3.55, 3.35, 3.27, 2.98, 3.24, 3.48, 3.34, 3.52, 3.36, 3.11, 3.21, 3.56, 3.59, 3.25, 3.22, 2.99, 3.16, 3.16, 3.31, 3.32, 3.21, 3.06, 3.38, 2.95, 3.24, 3.15, 3.16, 3.15, 3.01, 3.19, 3.15, 3.16, 3.13, 3.33, 3.05, 3.0, 3.35, 3.0, 3.2, 3.51, 3.26, 3.38, 3.26, 3.24, 3.16, 3.1, 3.14, 3.33, 3.38, 3.29, 3.26, 3.23, 3.31, 3.37, 3.15, 3.14, 3.16, 3.34, 3.05, 2.99, 3.42, 3.23, 3.44, 3.19, 3.02, 3.23, 3.05, 3.4, 2.97, 3.18, 3.46, 3.36, 3.2, 3.04, 2.9, 3.35, 3.17, 3.13, 3.26, 3.08, 3.05, 3.27, 3.12, 3.12, 3.34, 3.31, 3.49, 3.16, 3.72, 3.47, 3.54, 3.29, 2.99, 3.49, 3.47, 3.13, 3.14, 3.2, 3.32, 3.22, 3.19, 3.03, 3.24, 3.07, 3.1, 3.03, 3.51, 3.19, 3.16, 3.22, 3.77, 3.29, 3.22, 3.11, 3.44, 3.44, 3.36, 3.3, 3.2, 2.94, 3.22, 3.18, 3.12, 3.4, 3.3, 3.34, 3.3, 3.27, 3.44, 3.19, 3.27, 3.07, 3.15, 3.14, 3.13, 3.28, 3.09, 3.18, 3.04, 3.47, 3.39, 3.24, 3.31, 3.26, 3.15, 3.23, 3.16, 3.44, 3.34, 3.24, 2.98, 3.19, 3.0, 3.44, 3.29, 3.28, 3.1, 3.35, 3.28, 3.0, 3.17, 3.24, 3.26, 3.17, 3.24, 2.98, 3.15, 3.3, 3.26, 3.27, 3.11, 3.24, 3.04, 3.13, 2.93, 3.23, 3.22, 3.19, 3.34, 3.38, 3.06, 3.26, 3.25, 3.29, 3.16, 3.35, 2.99, 3.24, 3.19, 3.39, 3.36, 3.34, 3.06, 3.13, 3.13, 3.03, 2.97, 3.3, 3.41, 3.06, 3.14, 3.11, 3.22, 3.18, 3.19, 3.25]}], \"layout\": {\"legend\": {\"orientation\": \"h\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"pH\"}}, \"yaxis\": {\"title\": {\"text\": \"Share\"}}}}, \"pH_drift\": {\"title\": \"\", \"size\": 2, \"text\": \"\", \"type\": \"big_graph\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"Current\", \"type\": \"scatter\", \"x\": [443, 319, 703, 526, 76, 963, 1260, 532, 1561, 517, 506, 1557, 271, 1058, 1381, 1039, 542, 107, 161, 1301, 519, 1021, 1213, 223, 1286, 1426, 1234, 587, 1183, 182, 567, 1492, 724, 1262, 1509, 657, 1137, 913, 1445, 342, 781, 14, 971, 1072, 1254, 678, 1175, 1481, 1370, 1443, 18, 1151, 1380, 434, 1430, 554, 53, 535, 1050, 427, 259, 124, 961, 1488, 1563, 720, 1291, 1061, 425, 846, 1147, 204, 1317, 618, 1088, 927, 1196, 582, 1194, 360, 1449, 862, 1135, 1453, 1442, 1017, 268, 685, 317, 775, 1086, 942, 1052, 801, 1362, 219, 379, 649, 1195, 479, 1542, 609, 930, 1105, 34, 708, 686, 1132, 693, 733, 1562, 1190, 473, 737, 672, 969, 858, 5, 1556, 298, 80, 940, 361, 1154, 1545, 1622, 784, 19, 1522, 996, 54, 1415, 1564, 1593, 1236, 9, 353, 1222, 113, 1010, 1263, 877, 82, 381, 818, 1210, 1409, 66, 254, 817, 92, 1340, 122, 1357, 511, 1546, 692, 17, 1248, 414, 52, 1296, 191, 175, 233, 900, 785, 935, 1298, 156, 487, 159, 481, 1255, 1597, 253, 1491, 841, 187, 914, 979, 249, 1114, 1366, 814, 716, 465, 875, 1242, 670, 299, 593, 436, 728, 141, 229, 1057, 912, 994, 648, 799, 1164, 1073, 4, 516, 152, 1267, 1237, 752, 1150, 825, 402, 1277, 575, 1437, 838, 390, 1505, 1093, 1026, 1611, 31, 674, 866, 1328, 616, 861, 897, 148, 303, 1451, 602, 1125, 1614, 1047, 1462, 1148, 574, 899, 1327, 89, 530, 408, 1192, 177, 520, 993, 326, 992, 717, 895, 1421, 984, 240, 85, 557, 278, 938, 1425, 958, 1232, 1149, 171, 1220, 227, 891, 489, 1391, 1184, 1032, 393, 726, 192, 260, 880, 1592, 1537, 491, 759, 1473, 959, 1454, 1015, 965, 1393, 1489, 1256, 133, 202, 1036, 438, 483, 666, 461, 142, 1181, 1580, 308, 538, 170, 310, 743, 1101, 1179, 315, 22, 1529, 45, 879, 1110, 61, 522, 1397, 829, 576, 1193, 1202, 1549, 1375, 27, 527, 1186, 1273, 828, 539, 1049, 1014, 412, 1091, 1497, 1595, 347, 2, 844, 1490, 632, 211, 1582, 918, 1217, 1115, 744, 459, 579, 771, 96, 178, 108, 1516, 805, 1240, 440, 619, 1, 1315, 1239, 1347, 512, 48, 722, 1517, 1621, 446, 565, 568, 796, 231, 1070, 1063, 215, 513, 704, 354, 55, 881, 746, 641, 762, 279, 1145, 1468, 224, 302, 911, 218, 1079, 874, 1266, 792, 1136, 372, 295, 364, 580, 1615, 688, 1560, 333, 467, 968, 399, 760, 740, 953, 1520, 1446, 1214, 615, 524, 546, 1495, 1324, 452, 1515, 432, 863, 442, 847, 276, 456, 184, 1116, 1200, 458, 1508, 1087, 1478, 376, 1479, 563, 1146, 1507, 42, 944, 823, 1228, 656, 1227, 198, 309, 761, 1158, 549, 47, 1209, 529, 933, 220, 1624, 1591, 651, 536, 362, 1314, 420, 564, 475, 482, 140, 679, 1436, 1334, 77, 39, 570, 962, 808, 981, 322, 1471, 251, 695, 1128, 813, 757, 820, 853, 831, 1246, 58, 553, 597, 241, 1288, 330, 1005, 789, 1617, 56, 1126, 411, 548, 501, 1211, 642, 558, 1605, 745, 878, 1056, 667, 435, 29, 270, 35, 1157, 422, 1310, 114, 1524, 1422, 689, 1018, 1168, 1360, 985, 1191, 793, 1363, 1504, 581, 644, 1199, 621, 1612, 494, 665, 431, 1095, 638, 1042, 1404, 1030, 40, 1121, 75, 1588, 1417, 247, 713, 1590, 186, 646, 312, 8, 1551, 1302, 1044, 768, 884, 1585, 1618, 826, 445, 712, 464, 1308, 195, 655, 1487, 1389, 1356, 243, 401, 572, 1074, 810, 477, 1460, 1544, 1182, 285, 471, 936, 1238, 578, 1034, 1535, 1513, 426, 1311, 1001, 986, 1038, 980, 1064, 620, 982, 1565, 194, 474, 1428, 569, 1165, 49, 1333, 1401, 1307, 1076, 991, 1566, 44, 1342, 245, 943, 300, 583, 1013, 269, 1548, 313, 776, 283, 1444, 540, 406, 338, 466, 363, 1002, 320, 1264, 1089, 70, 1027, 500, 10, 907, 505, 1295, 864, 1432, 64, 1122, 1543, 416, 898, 654, 205, 328, 486, 999, 1377, 970, 528, 1558, 418, 1379, 1299, 1378, 590, 1247, 1174, 472, 1323, 131, 15, 439, 1528, 476, 725, 1203, 1109, 1003, 1365, 103, 1279, 60, 871, 78, 391, 165, 1335, 1410, 1129, 960, 349, 185, 1464, 371, 117, 1398, 252, 507, 1613, 311, 1419, 395, 987, 358, 263, 359, 1559, 1305, 1506, 1376, 1055, 634, 1552, 16, 51, 1258, 493, 601, 997, 351, 711, 1604, 1486, 1339, 794, 97, 1475, 1423, 196, 748, 183, 1433, 1579, 613, 1536, 989, 682, 533, 610, 687, 892, 81, 896, 397, 267, 589, 386, 795, 1416, 132, 265, 1609, 1461, 883, 88, 840, 988, 1354, 676, 916, 629, 1269, 924, 294, 261, 1541, 1081, 1348, 1576, 405, 1616, 356, 608, 1097, 239, 1249, 1099, 1403, 119, 1096, 977, 751, 374, 453, 110, 1336, 1390, 905, 1287, 503, 1031, 1331, 1224, 729, 410, 1540, 367, 1607, 384, 200, 65, 1358, 1394, 1023, 272, 1418, 955, 677, 238, 1133, 974, 541, 478, 1257, 1265, 1465, 1589, 1326, 188, 1083, 681, 906, 1092, 1276, 316, 214, 1078, 1502, 1084, 660, 1142, 531, 255, 30, 662, 1253, 230, 157, 1343, 385, 1169, 380, 1188, 721, 264, 787, 101, 13, 1274, 68, 1024, 1170, 1156, 71, 1577, 566, 1372, 1245, 798, 523, 626, 495, 937, 155, 887, 758, 921, 790, 1349, 1230, 366, 1531, 983, 839, 228, 417, 206, 742, 79, 190, 492, 948, 145, 923, 318, 824, 1374, 1124, 1463, 596, 457, 144, 1359, 1292, 1045, 764, 842, 1140, 1408, 995, 904, 592, 1458, 135, 83, 1062, 154, 1440, 1283, 773, 1414, 127, 1177, 1318, 1413, 403, 150, 346, 413, 1303, 1523, 1619, 394, 1261, 1054, 208, 496, 352, 95, 625, 571, 37, 485, 143, 946, 158, 552, 1527, 1029, 518, 1180, 1218, 236, 1100, 222, 1431, 345, 1459, 120, 661, 588, 1623, 1493, 62, 1429, 811, 193, 235, 181, 1320, 389, 1103, 521, 669, 332, 258, 1369, 1538, 957, 382, 1382, 1567, 331, 934, 614, 262, 893, 6, 266, 769, 38, 901, 1573, 1578, 545, 118, 783, 652, 1025, 706, 105, 1189, 484, 1569, 630, 683, 20, 870, 242, 50, 162, 915, 966, 441, 867, 731, 1102, 1000, 1268, 1223, 822, 301, 723, 172], \"y\": [3.03, 3.36, 3.09, 3.09, 3.17, 3.22, 3.03, 3.21, 3.07, 3.19, 3.19, 3.06, 2.96, 3.38, 3.28, 3.13, 2.93, 3.16, 3.18, 2.93, 3.46, 3.14, 3.32, 3.23, 3.29, 3.29, 3.06, 3.41, 3.01, 3.14, 3.03, 3.12, 3.1, 3.16, 3.13, 3.14, 3.32, 3.12, 3.14, 3.14, 3.07, 2.97, 3.3, 3.27, 3.08, 3.36, 2.96, 3.14, 3.3, 3.37, 3.23, 3.16, 3.32, 2.96, 2.97, 3.09, 3.27, 2.96, 3.21, 2.86, 3.23, 3.46, 2.99, 3.13, 3.15, 3.14, 3.12, 3.15, 3.06, 3.21, 3.46, 3.16, 3.59, 3.07, 2.93, 3.44, 3.35, 3.18, 3.29, 3.29, 3.16, 2.96, 3.3, 3.32, 3.28, 2.87, 3.46, 2.98, 3.68, 3.41, 2.9, 3.41, 3.3, 3.04, 3.2, 2.99, 3.08, 3.32, 3.38, 3.2, 3.4, 3.39, 3.42, 3.3, 3.29, 3.07, 3.32, 3.26, 3.25, 3.27, 3.38, 3.25, 3.16, 3.19, 3.13, 3.42, 3.29, 3.29, 3.27, 3.11, 3.11, 3.34, 3.26, 3.01, 3.1, 2.99, 3.08, 3.22, 3.47, 3.06, 3.0, 3.22, 3.2, 3.08, 3.3, 3.26, 3.28, 3.03, 3.42, 3.0, 3.17, 3.16, 3.07, 3.03, 3.27, 3.15, 3.2, 3.56, 3.02, 3.14, 3.34, 3.4, 2.98, 3.07, 2.79, 3.19, 2.93, 3.27, 3.17, 2.99, 3.34, 3.36, 3.31, 3.15, 3.37, 3.15, 3.39, 3.0, 3.21, 3.28, 3.27, 3.37, 3.75, 3.22, 3.05, 3.37, 3.48, 2.92, 3.41, 3.24, 3.21, 3.26, 3.29, 3.04, 3.27, 3.43, 3.29, 3.34, 2.91, 3.05, 3.38, 3.14, 3.08, 2.92, 3.02, 3.32, 3.01, 3.2, 3.31, 3.27, 3.31, 3.23, 3.48, 3.3, 3.13, 3.61, 3.1, 3.2, 3.03, 3.53, 3.16, 3.03, 3.18, 3.07, 3.51, 3.38, 2.99, 3.45, 3.37, 3.0, 3.19, 3.06, 3.19, 3.06, 3.38, 3.21, 3.21, 3.47, 3.09, 3.26, 3.23, 3.32, 3.2, 2.98, 3.25, 3.45, 3.04, 3.19, 3.39, 3.07, 2.95, 3.15, 3.22, 3.34, 3.03, 3.42, 2.94, 3.17, 3.38, 3.18, 3.38, 3.04, 3.28, 3.07, 3.14, 3.3, 3.03, 3.18, 3.31, 3.39, 3.21, 3.38, 3.15, 3.33, 3.22, 3.2, 3.27, 3.3, 3.05, 3.22, 3.32, 3.41, 3.29, 2.97, 3.47, 3.0, 3.22, 3.14, 3.35, 3.41, 3.23, 3.08, 2.99, 3.0, 3.28, 3.27, 3.16, 3.18, 3.41, 3.4, 3.19, 2.9, 3.51, 3.07, 3.43, 2.93, 3.5, 3.45, 3.25, 3.14, 2.96, 3.36, 3.14, 3.18, 3.17, 3.17, 3.42, 3.37, 3.24, 3.24, 3.36, 3.39, 3.24, 3.25, 3.15, 3.1, 3.15, 3.08, 3.27, 3.2, 3.34, 3.31, 3.54, 3.19, 3.35, 3.16, 3.13, 3.24, 3.36, 3.36, 3.42, 3.2, 3.24, 3.15, 3.18, 2.96, 3.38, 3.12, 3.3, 3.33, 3.27, 2.94, 3.53, 3.26, 3.11, 3.35, 3.22, 3.34, 3.4, 3.29, 3.1, 2.8, 3.13, 3.27, 2.98, 3.23, 3.3, 3.1, 3.17, 3.18, 3.13, 3.05, 3.37, 3.34, 2.95, 3.81, 3.37, 3.36, 3.1, 3.39, 3.29, 2.94, 3.1, 3.51, 3.38, 3.26, 3.19, 3.29, 2.99, 2.93, 3.28, 3.29, 3.08, 3.32, 3.05, 3.16, 3.25, 3.18, 3.2, 3.26, 2.96, 3.45, 3.17, 3.16, 2.97, 3.44, 3.35, 3.29, 3.51, 3.31, 3.23, 3.28, 3.31, 2.91, 3.22, 3.23, 3.29, 3.14, 3.2, 3.24, 3.04, 3.18, 3.42, 3.5, 3.45, 3.13, 2.94, 3.42, 3.47, 3.12, 3.05, 2.83, 3.52, 3.06, 2.97, 3.28, 3.16, 3.25, 3.12, 3.23, 3.15, 3.24, 3.46, 3.34, 3.2, 3.26, 3.22, 3.19, 3.34, 3.05, 3.1, 3.03, 3.22, 3.34, 3.07, 3.23, 3.33, 3.2, 3.23, 3.23, 3.19, 3.47, 3.03, 3.11, 3.42, 3.17, 2.92, 3.1, 3.38, 3.16, 3.01, 3.4, 3.36, 3.21, 3.1, 3.2, 3.09, 2.88, 3.23, 3.26, 3.08, 2.99, 3.56, 3.09, 3.31, 3.31, 3.76, 3.1, 3.14, 3.14, 3.18, 2.97, 3.02, 3.04, 3.17, 3.19, 3.49, 3.38, 3.42, 3.32, 3.16, 3.11, 3.28, 3.12, 3.36, 3.35, 3.13, 2.88, 3.19, 3.36, 3.11, 2.96, 2.99, 3.37, 3.22, 3.06, 3.29, 3.38, 3.18, 3.23, 3.12, 3.33, 3.17, 3.34, 3.52, 3.39, 3.15, 3.32, 3.11, 3.15, 3.4, 3.45, 3.42, 3.05, 3.14, 3.27, 3.22, 3.12, 3.06, 3.26, 3.08, 3.36, 3.28, 3.0, 3.17, 3.07, 3.15, 3.04, 3.4, 3.03, 3.33, 3.34, 2.94, 3.24, 3.21, 3.24, 3.22, 3.54, 3.2, 3.42, 3.25, 3.1, 3.2, 3.29, 3.16, 3.21, 3.03, 3.07, 3.35, 3.21, 3.24, 3.16, 3.18, 3.3, 2.95, 3.44, 3.07, 3.13, 3.06, 3.1, 3.07, 3.22, 3.09, 3.23, 3.19, 3.48, 3.53, 2.94, 3.33, 3.3, 3.24, 3.24, 3.28, 3.19, 3.55, 3.18, 3.32, 3.1, 3.18, 3.36, 2.97, 3.17, 3.08, 3.3, 3.3, 3.33, 3.4, 3.3, 3.06, 3.2, 2.85, 3.14, 3.32, 3.35, 3.09, 3.42, 3.48, 3.25, 3.33, 3.3, 2.96, 3.12, 3.13, 3.2, 3.26, 3.49, 2.95, 3.0, 3.12, 3.12, 3.37, 3.25, 3.19, 3.2, 3.28, 3.06, 3.17, 3.15, 3.14, 3.31, 3.06, 3.17, 3.27, 3.13, 3.33, 3.24, 3.4, 2.98, 3.06, 3.0, 3.15, 3.0, 3.41, 3.16, 3.05, 3.19, 3.8, 3.09, 3.15, 3.03, 3.32, 3.43, 2.89, 3.08, 3.37, 3.01, 3.34, 2.92, 3.19, 3.14, 3.0, 3.22, 3.38, 3.14, 3.09, 3.08, 3.38, 3.57, 3.48, 3.11, 3.04, 3.06, 3.54, 2.94, 3.24, 3.7, 3.18, 3.39, 3.24, 3.14, 3.2, 3.14, 3.34, 3.34, 3.16, 3.12, 2.94, 3.41, 3.2, 3.29, 3.6, 3.3, 3.09, 3.28, 3.04, 3.19, 3.2, 3.04, 3.3, 3.06, 3.03, 3.52, 3.25, 3.16, 3.45, 3.5, 3.25, 3.46, 3.18, 3.42, 3.36, 3.05, 3.58, 3.56, 2.9, 3.15, 3.13, 3.24, 3.67, 3.05, 3.4, 3.21, 3.23, 3.16, 3.54, 3.32, 3.32, 3.44, 3.19, 3.21, 3.1, 3.39, 3.19, 3.41, 3.35, 3.31, 3.13, 2.85, 3.16, 2.99, 3.0, 3.07, 3.04, 3.26, 3.09, 3.4, 3.32, 3.01, 3.42, 3.24, 3.27, 3.66, 3.37, 3.36, 3.58, 3.58, 3.31, 3.27, 3.14, 2.89, 3.31, 3.21, 3.3, 3.3, 3.11, 3.11, 3.29, 3.1, 3.4, 3.04, 3.1, 3.06, 3.14, 3.42, 3.15, 3.51, 3.32, 3.22, 2.99, 3.17, 3.16, 3.1, 3.34, 3.08, 3.1, 3.08, 3.34, 3.25, 3.12, 3.06, 3.12, 3.06, 3.29, 3.38, 3.55, 3.35, 3.27, 2.98, 3.24, 3.48, 3.34, 3.52, 3.36, 3.11, 3.21, 3.56, 3.59, 3.25, 3.22, 2.99, 3.16, 3.16, 3.31, 3.32, 3.21, 3.06, 3.38, 2.95, 3.24, 3.15, 3.16, 3.15, 3.01, 3.19, 3.15, 3.16, 3.13, 3.33, 3.05, 3.0, 3.35, 3.0, 3.2, 3.51, 3.26, 3.38, 3.26, 3.24, 3.16, 3.1, 3.14, 3.33, 3.38, 3.29, 3.26, 3.23, 3.31, 3.37, 3.15, 3.14, 3.16, 3.34, 3.05, 2.99, 3.42, 3.23, 3.44, 3.19, 3.02, 3.23, 3.05, 3.4, 2.97, 3.18, 3.46, 3.36, 3.2, 3.04, 2.9, 3.35, 3.17, 3.13, 3.26, 3.08, 3.05, 3.27, 3.12, 3.12, 3.34, 3.31, 3.49, 3.16, 3.72, 3.47, 3.54, 3.29, 2.99, 3.49, 3.47, 3.13, 3.14, 3.2, 3.32, 3.22, 3.19, 3.03, 3.24, 3.07, 3.1, 3.03, 3.51, 3.19, 3.16, 3.22, 3.77, 3.29, 3.22, 3.11, 3.44, 3.44, 3.36, 3.3, 3.2, 2.94, 3.22, 3.18, 3.12, 3.4, 3.3, 3.34, 3.3, 3.27, 3.44, 3.19, 3.27, 3.07, 3.15, 3.14, 3.13, 3.28, 3.09, 3.18, 3.04, 3.47, 3.39, 3.24, 3.31, 3.26, 3.15, 3.23, 3.16, 3.44, 3.34, 3.24, 2.98, 3.19, 3.0, 3.44, 3.29, 3.28, 3.1, 3.35, 3.28, 3.0, 3.17, 3.24, 3.26, 3.17, 3.24, 2.98, 3.15, 3.3, 3.26, 3.27, 3.11, 3.24, 3.04, 3.13, 2.93, 3.23, 3.22, 3.19, 3.34, 3.38, 3.06, 3.26, 3.25, 3.29, 3.16, 3.35, 2.99, 3.24, 3.19, 3.39, 3.36, 3.34, 3.06, 3.13, 3.13, 3.03, 2.97, 3.3, 3.41, 3.06, 3.14, 3.11, 3.22, 3.18, 3.19, 3.25]}, {\"marker\": {\"color\": \"white\", \"opacity\": 0.005, \"size\": 0.01}, \"mode\": \"markers\", \"name\": \"Current\", \"showlegend\": false, \"type\": \"scatter\", \"x\": [2, 2], \"y\": [2.7320606238412704, 3.7079593761587293]}], \"layout\": {\"legend\": {\"orientation\": \"h\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"shapes\": [{\"fillcolor\": \"LightGreen\", \"layer\": \"below\", \"line\": {\"width\": 0}, \"opacity\": 0.5, \"type\": \"rect\", \"x0\": 0, \"x1\": 1, \"xref\": \"paper\", \"y0\": 2.7320606238412704, \"y1\": 3.7079593761587293, \"yref\": \"y\"}, {\"line\": {\"color\": \"Green\", \"width\": 3}, \"name\": \"Reference\", \"type\": \"line\", \"x0\": 0, \"x1\": 1, \"xref\": \"paper\", \"y0\": 3.22001, \"y1\": 3.22001, \"yref\": \"y\"}], \"showlegend\": true, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"Index\"}}, \"yaxis\": {\"title\": {\"text\": \"pH\"}}}}}, \"sulphates_distr\": {\"data\": [{\"histnorm\": \"probability\", \"marker\": {\"color\": \"#4d4d4d\"}, \"name\": \"Reference\", \"nbinsx\": 10, \"opacity\": 0.6, \"type\": \"histogram\", \"x\": [0.42, 0.54, 0.53, 0.49, 0.54, 0.54, 0.53, 0.5, 0.38, 0.38, 0.34, 0.42, 0.54, 0.37, 0.41, 0.44, 0.41, 0.67, 0.58, 0.45, 0.51, 0.37, 0.68, 0.48, 0.54, 0.34, 0.57, 0.67, 0.56, 0.5, 0.59, 0.49, 0.42, 0.4, 0.32, 0.54, 1.17, 0.4, 0.35, 0.4, 0.39, 0.63, 0.4, 0.42, 0.65, 0.42, 0.43, 0.43, 0.6, 0.39, 0.48, 0.5, 0.49, 0.9, 0.45, 0.63, 0.48, 0.55, 0.41, 0.36, 0.53, 0.75, 0.38, 0.44, 0.71, 0.6, 0.41, 0.47, 0.81, 0.65, 0.49, 0.4, 0.5, 0.47, 0.45, 1.13, 0.37, 0.62, 0.5, 0.37, 0.58, 0.43, 0.56, 0.41, 0.55, 0.55, 0.47, 0.78, 0.54, 0.38, 0.44, 0.48, 0.32, 0.46, 0.29, 0.58, 0.36, 0.57, 0.35, 0.63, 0.48, 0.42, 0.41, 0.48, 0.51, 0.68, 0.46, 0.68, 0.59, 0.43, 0.39, 0.35, 0.5, 0.46, 0.5, 0.47, 0.22, 0.52, 0.64, 0.62, 0.64, 0.26, 0.57, 0.4, 0.5, 0.51, 0.38, 0.69, 0.44, 0.46, 0.86, 0.33, 0.75, 0.32, 0.72, 0.6, 0.51, 0.36, 0.43, 0.51, 0.46, 0.41, 0.72, 0.48, 0.57, 0.91, 0.48, 0.67, 0.51, 0.58, 0.67, 0.52, 0.88, 0.57, 0.47, 0.52, 0.52, 0.44, 0.39, 0.48, 0.4, 0.45, 0.6, 0.45, 0.38, 0.42, 0.48, 0.64, 0.62, 0.4, 0.46, 0.37, 0.69, 0.64, 0.36, 0.32, 0.58, 0.5, 0.45, 0.46, 0.42, 0.76, 0.56, 0.45, 0.5, 0.38, 0.54, 0.38, 0.42, 0.76, 0.38, 0.44, 0.53, 0.7, 0.54, 0.58, 0.5, 0.48, 0.59, 0.85, 0.52, 0.5, 0.54, 0.61, 0.47, 0.43, 0.41, 0.53, 0.46, 0.54, 0.56, 0.53, 0.62, 0.56, 0.56, 0.44, 0.96, 0.39, 0.83, 0.32, 0.41, 0.29, 0.39, 0.85, 0.5, 0.34, 0.64, 0.58, 0.6, 0.47, 0.74, 0.44, 0.46, 0.52, 0.38, 0.59, 0.67, 0.66, 0.46, 0.62, 0.78, 0.36, 0.6, 0.44, 0.35, 0.39, 0.68, 0.54, 0.43, 0.48, 0.54, 0.53, 0.4, 0.41, 0.58, 0.48, 0.41, 0.41, 0.5, 0.43, 0.47, 0.48, 0.58, 0.5, 0.96, 0.65, 0.69, 0.5, 0.49, 0.33, 0.64, 0.55, 0.41, 0.33, 0.53, 1.31, 0.43, 0.79, 0.34, 0.57, 0.44, 0.59, 0.62, 0.51, 0.39, 0.4, 0.57, 0.38, 0.56, 0.54, 0.56, 0.43, 0.44, 0.64, 0.69, 0.57, 0.48, 0.8, 0.43, 0.49, 0.47, 0.5, 0.39, 0.5, 0.64, 0.62, 0.52, 0.57, 0.51, 0.38, 0.48, 0.63, 0.51, 0.46, 0.46, 0.53, 0.38, 0.46, 0.6, 0.55, 0.51, 0.47, 0.5, 0.49, 0.71, 0.29, 0.58, 0.89, 0.49, 0.63, 0.81, 0.94, 0.41, 0.41, 0.5, 0.46, 0.67, 0.55, 0.38, 0.54, 0.48, 0.59, 0.5, 0.28, 0.46, 0.39, 0.6, 0.43, 0.48, 0.38, 0.63, 0.64, 0.54, 0.39, 0.46, 0.6, 0.4, 0.72, 0.49, 0.49, 0.53, 0.78, 0.49, 0.42, 0.55, 0.44, 0.35, 0.54, 0.41, 0.6, 0.54, 0.45, 0.51, 0.56, 0.58, 0.48, 0.69, 0.53, 0.57, 0.43, 0.4, 0.46, 0.5, 0.34, 0.5, 0.48, 0.43, 0.54, 0.59, 0.39, 0.48, 0.4, 0.5, 0.49, 0.44, 0.42, 0.69, 0.66, 0.38, 0.49, 0.56, 0.7, 0.52, 0.53, 0.76, 0.83, 0.42, 0.65, 0.61, 0.4, 0.34, 0.45, 0.44, 0.39, 0.57, 0.5, 0.37, 0.42, 0.95, 0.39, 0.5, 0.39, 0.28, 0.36, 0.6, 0.57, 0.76, 0.62, 0.41, 0.43, 0.57, 0.83, 0.48, 0.48, 0.54, 0.39, 0.49, 0.47, 0.57, 0.49, 0.46, 0.45, 0.85, 0.46, 0.63, 0.48, 0.46, 0.37, 0.54, 0.57, 0.42, 0.37, 0.52, 0.58, 0.49, 0.73, 0.62, 0.46, 0.51, 0.66, 0.35, 0.39, 0.58, 0.49, 0.8, 0.67, 0.59, 0.62, 0.43, 0.53, 0.59, 0.4, 0.47, 0.7, 0.57, 0.59, 0.42, 0.68, 0.39, 0.49, 0.58, 0.66, 0.58, 0.48, 0.5, 0.61, 0.42, 0.42, 0.85, 0.47, 0.46, 0.37, 0.36, 0.64, 0.59, 0.36, 0.47, 0.52, 0.56, 0.59, 0.47, 0.44, 0.42, 0.67, 0.79, 0.56, 0.42, 0.67, 0.6, 0.58, 0.42, 0.63, 0.46, 0.56, 0.4, 0.54, 0.64, 0.49, 0.66, 0.79, 0.54, 0.5, 0.67, 0.36, 0.69, 0.58, 0.49, 0.37, 0.53, 0.44, 0.82, 0.61, 0.68, 0.41, 0.54, 0.71, 0.52, 0.54, 0.75, 0.75, 0.78, 0.64, 0.53, 0.51, 0.33, 0.64, 0.72, 0.57, 0.68, 0.73, 0.41, 0.54, 0.43, 0.55, 0.38, 0.46, 0.4, 0.39, 0.66, 0.45, 0.5, 0.51, 0.5, 0.5, 0.72, 0.37, 0.97, 0.38, 0.63, 0.43, 0.58, 1.36, 0.84, 0.58, 0.49, 0.31, 0.42, 0.49, 0.54, 0.38, 0.44, 0.43, 0.86, 0.52, 0.42, 0.56, 0.47, 0.53, 0.53, 0.34, 0.62, 0.53, 0.29, 0.34, 0.48, 0.5, 0.6, 0.44, 0.62, 0.69, 0.29, 0.47, 0.46, 0.62, 0.55, 0.39, 0.4, 0.54, 0.77, 0.77, 0.6, 0.44, 0.6, 0.38, 0.45, 0.47, 0.45, 0.45, 0.41, 0.52, 0.54, 0.66, 0.49, 0.42, 0.31, 0.38, 0.66, 0.54, 0.51, 0.57, 0.58, 0.65, 0.67, 0.52, 0.37, 0.53, 0.38, 0.53, 0.43, 0.67, 0.43, 0.44, 0.51, 0.66, 0.35, 0.37, 0.61, 0.49, 0.69, 0.44, 0.33, 0.48, 0.53, 0.46, 0.59, 0.51, 0.37, 0.4, 0.55, 0.49, 0.39, 0.39, 0.4, 0.4, 0.61, 0.32, 0.42, 0.46, 0.63, 0.71, 0.53, 0.47, 0.38, 0.52, 0.63, 0.58, 0.48, 0.39, 0.57, 0.55, 0.44, 0.44, 0.52, 0.34, 0.39, 0.6, 0.68, 0.66, 0.79, 0.67, 1.02, 0.47, 0.35, 0.55, 0.41, 0.47, 0.51, 0.51, 0.79, 0.61, 0.36, 0.59, 0.46, 0.59, 0.32, 0.56, 0.9, 0.42, 0.38, 0.42, 0.58, 0.4, 0.51, 0.57, 0.6, 0.35, 0.61, 0.5, 0.38, 0.49, 0.66, 0.59, 0.41, 0.91, 0.5, 0.35, 0.68, 0.62, 0.42, 0.48, 0.5, 0.9, 0.54, 0.6, 0.44, 0.47, 0.67, 0.38, 0.25, 0.68, 0.4, 0.54, 0.43, 0.34, 0.52, 0.46, 0.57, 0.6, 0.61, 0.46, 0.64, 0.43, 0.97, 0.54, 0.43, 0.45, 0.38, 0.46, 0.67, 0.54, 0.39, 0.55, 0.58, 0.56, 0.71, 0.58, 0.38, 0.45, 0.58, 0.72, 0.52, 0.49, 0.38, 0.5, 0.53, 0.6, 0.54, 0.31, 0.48, 0.46, 0.44, 0.37, 0.52, 0.43, 0.45, 0.36, 0.44, 0.46, 0.54, 0.47, 0.59, 0.46, 0.5, 0.39, 0.38, 0.62, 0.52, 0.54, 0.52, 0.59, 0.57, 0.45, 0.43, 0.34, 0.66, 0.49, 0.51, 0.58, 0.36, 0.73, 0.72, 0.42, 0.38, 0.77, 0.6, 0.6, 0.35, 0.52, 0.44, 0.64, 0.54, 0.39, 0.42, 0.67, 0.53, 0.96, 0.39, 0.54, 0.41, 0.64, 0.55, 0.39, 0.6, 0.48, 0.44, 0.62, 0.43, 0.65, 0.36, 0.51, 0.59, 0.67, 0.69, 0.43, 0.37, 0.64, 0.48, 0.84, 0.49, 0.62, 0.48, 0.4, 0.98, 0.56, 0.52, 0.49, 0.61, 0.46, 0.54, 0.54, 0.59, 0.49, 0.51, 0.53, 0.73, 0.73, 0.33, 0.44, 0.37, 0.59, 0.4, 0.53, 0.55, 0.47, 0.53, 1.06, 0.49, 0.65, 0.4, 0.43, 0.49, 0.53, 0.38, 0.61, 0.47, 0.56, 0.59, 0.45, 0.43, 1.05, 0.47, 0.6, 0.42, 0.4, 0.48, 0.93, 0.38, 0.53, 0.66, 0.48, 0.53, 0.52, 0.61, 0.99, 0.62, 1.95, 0.43, 0.35, 0.48, 0.51, 0.39, 0.57, 0.61, 0.68, 0.56, 0.49, 0.65, 0.92, 0.49, 0.63, 0.58, 0.47, 0.9, 0.5, 0.53, 0.5, 0.92, 0.5, 0.74, 0.44, 0.41, 0.59, 0.49, 0.46, 0.4, 0.41, 0.34, 0.69, 0.84, 0.55, 0.77, 0.38, 0.7, 0.72, 0.59, 0.4, 0.51, 0.73, 0.46, 1.36, 0.77, 0.58, 0.5, 0.66, 0.6, 0.62, 0.51, 0.69, 0.45, 0.58, 0.57, 0.5, 0.45, 0.64, 0.4, 0.79, 0.5, 0.36, 0.46, 0.5, 0.62, 0.5, 0.44, 0.51, 0.51, 0.56, 0.5, 0.56, 0.46, 0.51, 0.53, 0.78, 0.5, 0.65, 0.58, 0.65, 0.53, 0.71, 0.98, 0.48, 0.47, 0.56, 0.44, 0.46, 0.35, 0.57, 0.64, 0.95, 0.63, 0.66]}, {\"histnorm\": \"probability\", \"marker\": {\"color\": \"#ed0400\"}, \"name\": \"Current\", \"nbinsx\": 10, \"opacity\": 0.6, \"type\": \"histogram\", \"x\": [0.38, 0.78, 0.44, 0.87, 0.39, 0.48, 0.33, 0.58, 0.45, 0.33, 0.7, 0.38, 0.61, 0.59, 0.56, 0.52, 0.47, 0.37, 0.53, 0.5, 0.36, 0.41, 0.58, 0.51, 0.54, 0.67, 0.44, 0.87, 0.33, 0.46, 0.57, 0.49, 0.5, 0.5, 0.38, 0.52, 0.58, 0.37, 0.57, 0.6, 0.33, 0.3, 0.54, 0.48, 0.6, 0.49, 0.35, 0.38, 0.49, 0.82, 0.41, 0.61, 0.81, 0.34, 0.28, 0.31, 0.72, 0.46, 0.76, 0.49, 0.53, 0.53, 0.32, 0.5, 0.49, 0.38, 0.51, 0.66, 0.41, 0.8, 0.74, 0.38, 0.57, 0.38, 0.49, 0.52, 0.72, 0.49, 0.61, 0.67, 0.36, 0.25, 0.4, 0.49, 0.75, 0.68, 0.53, 0.44, 0.79, 0.44, 1.33, 0.68, 0.54, 0.38, 0.47, 0.36, 0.36, 0.42, 0.46, 0.45, 0.58, 0.62, 0.51, 0.5, 0.8, 0.53, 0.44, 0.39, 0.48, 0.29, 0.51, 0.37, 0.42, 0.44, 0.45, 0.58, 0.47, 0.41, 0.61, 0.46, 0.52, 0.85, 0.55, 0.38, 0.43, 0.68, 0.49, 0.78, 0.73, 0.3, 0.81, 0.45, 0.27, 0.41, 0.49, 0.35, 0.57, 0.33, 0.5, 0.4, 0.48, 0.58, 0.65, 0.43, 0.61, 0.53, 0.72, 0.77, 0.34, 0.5, 0.5, 0.84, 0.43, 0.53, 0.52, 0.7, 0.62, 0.54, 0.39, 0.34, 0.35, 0.59, 0.63, 0.5, 0.58, 0.38, 0.49, 0.37, 0.51, 0.67, 0.5, 0.93, 0.76, 0.56, 0.65, 0.71, 0.65, 0.74, 0.64, 0.99, 0.56, 0.42, 0.75, 0.35, 0.74, 0.74, 0.62, 0.75, 0.57, 0.36, 0.88, 0.44, 0.54, 0.74, 0.56, 0.44, 0.51, 0.67, 0.7, 0.57, 0.64, 0.47, 0.91, 0.5, 0.62, 0.49, 0.61, 0.48, 0.47, 0.64, 0.41, 1.34, 0.6, 0.58, 0.56, 0.77, 0.39, 0.56, 0.48, 0.47, 0.38, 0.68, 0.44, 0.36, 0.69, 0.68, 0.4, 0.46, 0.53, 0.82, 0.73, 0.47, 0.45, 0.48, 0.4, 0.78, 0.26, 0.37, 0.49, 0.82, 0.36, 0.45, 0.55, 0.86, 0.39, 0.57, 0.32, 0.39, 0.66, 0.53, 0.45, 0.52, 0.49, 0.43, 0.46, 0.43, 0.42, 0.47, 0.77, 0.61, 0.39, 0.44, 0.49, 0.42, 0.41, 0.55, 0.95, 0.76, 0.37, 0.43, 0.82, 0.87, 0.37, 0.48, 0.44, 0.45, 0.75, 0.42, 0.8, 0.75, 0.34, 0.38, 0.39, 0.43, 0.7, 0.59, 0.48, 0.63, 0.46, 0.73, 0.58, 0.57, 0.38, 0.58, 0.64, 0.59, 0.4, 0.56, 0.57, 0.4, 0.56, 0.63, 0.34, 0.53, 0.93, 0.85, 0.51, 0.46, 0.78, 0.41, 0.33, 0.6, 0.5, 0.6, 0.43, 0.56, 0.65, 0.43, 0.48, 0.47, 0.52, 0.44, 0.5, 0.46, 0.54, 0.7, 0.49, 0.4, 0.45, 0.55, 0.6, 0.53, 0.66, 0.41, 0.64, 0.58, 0.68, 0.48, 0.46, 0.77, 0.48, 0.44, 0.72, 0.44, 0.66, 0.47, 0.66, 0.82, 0.75, 0.54, 0.4, 0.46, 0.48, 0.54, 0.31, 0.47, 0.53, 0.67, 0.49, 0.48, 0.52, 0.46, 0.37, 0.46, 0.39, 0.57, 0.64, 0.6, 0.87, 0.48, 0.54, 0.41, 0.5, 0.47, 0.77, 0.48, 0.7, 0.76, 0.3, 0.55, 0.75, 0.54, 0.65, 0.41, 0.55, 0.4, 0.56, 0.63, 0.35, 0.45, 0.33, 0.48, 0.58, 0.5, 0.48, 0.73, 0.62, 0.57, 0.47, 0.35, 0.39, 0.48, 0.51, 0.43, 0.48, 0.7, 0.55, 0.43, 0.37, 0.43, 0.58, 0.65, 0.4, 0.7, 0.57, 0.4, 0.51, 0.44, 0.56, 0.42, 0.37, 0.31, 0.76, 1.06, 0.51, 0.51, 0.52, 0.49, 0.64, 0.63, 0.36, 0.52, 0.63, 0.57, 0.43, 1.11, 0.49, 0.63, 0.42, 0.52, 0.47, 0.49, 0.46, 0.56, 0.45, 0.54, 0.42, 0.33, 0.42, 0.44, 0.34, 0.59, 0.33, 0.75, 0.72, 0.38, 0.59, 0.52, 0.38, 0.35, 0.48, 0.85, 0.56, 0.4, 0.54, 0.51, 0.75, 0.47, 0.38, 0.6, 0.46, 0.56, 0.63, 0.5, 0.52, 0.57, 0.63, 0.51, 0.5, 0.51, 0.56, 0.68, 0.48, 0.48, 0.64, 0.44, 0.59, 0.5, 0.36, 0.64, 0.39, 0.4, 0.77, 0.48, 0.73, 0.81, 0.5, 0.36, 0.38, 0.86, 0.53, 0.43, 0.38, 0.49, 0.38, 0.46, 0.75, 0.6, 0.41, 0.49, 0.43, 0.46, 0.39, 0.52, 0.58, 0.84, 0.38, 0.54, 0.45, 0.42, 0.42, 0.5, 0.9, 0.34, 0.35, 0.58, 0.52, 0.47, 0.36, 0.35, 0.4, 0.82, 0.6, 0.31, 0.38, 0.53, 0.82, 0.45, 0.72, 0.32, 0.59, 0.75, 0.35, 0.37, 0.75, 0.43, 0.46, 0.5, 0.39, 0.44, 0.57, 0.69, 0.46, 0.53, 0.61, 0.54, 0.54, 0.56, 0.49, 0.38, 0.52, 0.48, 0.37, 0.65, 0.42, 0.46, 0.5, 0.55, 0.55, 0.4, 0.53, 0.48, 0.59, 0.52, 0.43, 0.62, 0.57, 0.46, 0.44, 0.65, 0.44, 0.58, 0.58, 0.44, 0.49, 0.64, 0.42, 0.5, 0.65, 0.62, 0.47, 0.53, 0.49, 0.59, 0.45, 0.47, 0.41, 0.31, 0.46, 0.64, 0.5, 0.48, 0.41, 0.78, 0.44, 0.42, 0.52, 0.46, 0.46, 0.36, 0.39, 0.36, 0.45, 0.69, 0.7, 0.49, 0.3, 0.68, 0.46, 0.5, 0.7, 0.76, 0.46, 0.78, 0.33, 0.36, 0.65, 0.6, 0.49, 0.56, 0.45, 0.61, 0.98, 0.52, 0.64, 0.77, 0.6, 0.7, 0.59, 0.35, 0.6, 0.33, 0.61, 0.4, 0.34, 0.47, 0.41, 0.53, 0.51, 0.37, 0.71, 0.65, 0.57, 0.4, 0.74, 0.48, 0.7, 0.5, 0.39, 0.46, 0.52, 0.43, 0.47, 0.49, 0.46, 0.45, 0.45, 0.84, 0.64, 0.32, 0.54, 0.33, 0.59, 0.66, 0.39, 0.75, 0.4, 0.78, 0.4, 0.51, 0.47, 0.37, 0.54, 0.72, 0.54, 0.7, 0.43, 0.53, 0.56, 0.55, 0.43, 0.37, 0.32, 0.49, 0.59, 0.82, 0.5, 0.47, 0.42, 0.41, 0.38, 0.65, 0.45, 0.27, 0.59, 0.54, 0.4, 0.57, 0.63, 0.55, 0.45, 0.3, 0.67, 0.72, 0.43, 0.41, 0.55, 0.43, 0.8, 0.52, 0.41, 0.5, 0.6, 0.72, 0.88, 0.35, 0.45, 0.42, 0.65, 0.38, 0.52, 0.77, 0.42, 0.76, 0.52, 0.64, 0.45, 0.42, 0.44, 0.32, 0.44, 0.32, 0.37, 0.41, 0.43, 0.41, 0.6, 0.58, 0.68, 0.71, 0.57, 0.65, 0.53, 0.41, 0.68, 0.68, 0.77, 0.81, 0.36, 0.49, 0.45, 0.56, 0.73, 0.75, 0.49, 0.92, 0.52, 0.76, 0.44, 0.64, 0.48, 0.5, 0.49, 0.4, 0.5, 0.72, 0.5, 0.46, 0.41, 0.44, 0.45, 0.53, 0.59, 0.57, 0.5, 0.55, 0.82, 0.4, 0.4, 0.45, 0.32, 0.68, 0.62, 0.64, 0.6, 0.54, 0.82, 0.88, 0.43, 0.53, 0.48, 0.8, 0.3, 0.38, 0.9, 0.43, 0.38, 0.51, 0.95, 0.59, 0.72, 0.88, 0.62, 0.44, 0.36, 0.45, 0.6, 0.39, 0.46, 0.28, 0.37, 0.58, 0.48, 0.31, 0.81, 0.5, 0.45, 0.58, 0.74, 0.37, 0.6, 0.6, 0.52, 0.54, 0.58, 0.55, 0.65, 0.56, 0.42, 0.37, 0.51, 0.87, 0.51, 0.33, 0.38, 0.72, 0.79, 0.58, 0.46, 0.49, 0.66, 0.46, 0.61, 0.44, 0.52, 0.58, 0.55, 0.7, 0.63, 0.37, 0.5, 0.53, 0.29, 0.41, 0.42, 0.39, 0.35, 0.65, 0.44, 0.6, 0.53, 0.35, 0.51, 0.74, 0.37, 0.58, 0.39, 0.49, 0.58, 0.38, 0.63, 0.42, 0.69, 0.58, 0.59, 0.5, 0.39, 0.68, 0.48, 0.32, 0.62, 0.42, 0.39, 0.56, 0.56, 0.44, 0.43, 0.52, 0.46, 0.34, 0.38, 0.48, 0.53, 0.64, 0.64, 0.6, 0.59, 0.38, 0.65, 0.63, 0.38, 0.5, 0.54, 0.63, 0.58, 0.61, 0.75, 0.73, 0.79, 0.58, 0.5, 0.76, 0.52, 0.46, 0.31, 0.4, 0.52, 0.51, 0.63, 0.44, 0.45, 0.48, 0.39, 0.46, 0.56, 0.68, 0.45, 0.58, 0.75, 0.57, 0.5, 0.51, 0.68, 0.36, 0.56, 0.43, 0.52, 0.53, 0.56, 0.55, 0.44, 0.37, 0.57, 0.6, 0.51, 0.51, 0.47, 0.39, 0.46, 0.37, 0.45, 0.37, 0.36, 0.55, 0.48, 0.45, 0.39, 0.45, 0.35, 0.58, 0.63, 0.71, 0.6, 0.59, 0.8, 0.37, 0.46, 0.48, 0.63, 0.47, 0.73, 0.54, 0.33, 0.49, 0.78, 0.64, 0.52, 0.51, 0.52, 0.52, 0.66, 0.37, 0.55, 0.53, 0.76, 0.52, 0.59, 0.56, 0.49, 0.54]}], \"layout\": {\"legend\": {\"orientation\": \"h\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"sulphates\"}}, \"yaxis\": {\"title\": {\"text\": \"Share\"}}}}, \"sulphates_drift\": {\"title\": \"\", \"size\": 2, \"text\": \"\", \"type\": \"big_graph\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"Current\", \"type\": \"scatter\", \"x\": [443, 319, 703, 526, 76, 963, 1260, 532, 1561, 517, 506, 1557, 271, 1058, 1381, 1039, 542, 107, 161, 1301, 519, 1021, 1213, 223, 1286, 1426, 1234, 587, 1183, 182, 567, 1492, 724, 1262, 1509, 657, 1137, 913, 1445, 342, 781, 14, 971, 1072, 1254, 678, 1175, 1481, 1370, 1443, 18, 1151, 1380, 434, 1430, 554, 53, 535, 1050, 427, 259, 124, 961, 1488, 1563, 720, 1291, 1061, 425, 846, 1147, 204, 1317, 618, 1088, 927, 1196, 582, 1194, 360, 1449, 862, 1135, 1453, 1442, 1017, 268, 685, 317, 775, 1086, 942, 1052, 801, 1362, 219, 379, 649, 1195, 479, 1542, 609, 930, 1105, 34, 708, 686, 1132, 693, 733, 1562, 1190, 473, 737, 672, 969, 858, 5, 1556, 298, 80, 940, 361, 1154, 1545, 1622, 784, 19, 1522, 996, 54, 1415, 1564, 1593, 1236, 9, 353, 1222, 113, 1010, 1263, 877, 82, 381, 818, 1210, 1409, 66, 254, 817, 92, 1340, 122, 1357, 511, 1546, 692, 17, 1248, 414, 52, 1296, 191, 175, 233, 900, 785, 935, 1298, 156, 487, 159, 481, 1255, 1597, 253, 1491, 841, 187, 914, 979, 249, 1114, 1366, 814, 716, 465, 875, 1242, 670, 299, 593, 436, 728, 141, 229, 1057, 912, 994, 648, 799, 1164, 1073, 4, 516, 152, 1267, 1237, 752, 1150, 825, 402, 1277, 575, 1437, 838, 390, 1505, 1093, 1026, 1611, 31, 674, 866, 1328, 616, 861, 897, 148, 303, 1451, 602, 1125, 1614, 1047, 1462, 1148, 574, 899, 1327, 89, 530, 408, 1192, 177, 520, 993, 326, 992, 717, 895, 1421, 984, 240, 85, 557, 278, 938, 1425, 958, 1232, 1149, 171, 1220, 227, 891, 489, 1391, 1184, 1032, 393, 726, 192, 260, 880, 1592, 1537, 491, 759, 1473, 959, 1454, 1015, 965, 1393, 1489, 1256, 133, 202, 1036, 438, 483, 666, 461, 142, 1181, 1580, 308, 538, 170, 310, 743, 1101, 1179, 315, 22, 1529, 45, 879, 1110, 61, 522, 1397, 829, 576, 1193, 1202, 1549, 1375, 27, 527, 1186, 1273, 828, 539, 1049, 1014, 412, 1091, 1497, 1595, 347, 2, 844, 1490, 632, 211, 1582, 918, 1217, 1115, 744, 459, 579, 771, 96, 178, 108, 1516, 805, 1240, 440, 619, 1, 1315, 1239, 1347, 512, 48, 722, 1517, 1621, 446, 565, 568, 796, 231, 1070, 1063, 215, 513, 704, 354, 55, 881, 746, 641, 762, 279, 1145, 1468, 224, 302, 911, 218, 1079, 874, 1266, 792, 1136, 372, 295, 364, 580, 1615, 688, 1560, 333, 467, 968, 399, 760, 740, 953, 1520, 1446, 1214, 615, 524, 546, 1495, 1324, 452, 1515, 432, 863, 442, 847, 276, 456, 184, 1116, 1200, 458, 1508, 1087, 1478, 376, 1479, 563, 1146, 1507, 42, 944, 823, 1228, 656, 1227, 198, 309, 761, 1158, 549, 47, 1209, 529, 933, 220, 1624, 1591, 651, 536, 362, 1314, 420, 564, 475, 482, 140, 679, 1436, 1334, 77, 39, 570, 962, 808, 981, 322, 1471, 251, 695, 1128, 813, 757, 820, 853, 831, 1246, 58, 553, 597, 241, 1288, 330, 1005, 789, 1617, 56, 1126, 411, 548, 501, 1211, 642, 558, 1605, 745, 878, 1056, 667, 435, 29, 270, 35, 1157, 422, 1310, 114, 1524, 1422, 689, 1018, 1168, 1360, 985, 1191, 793, 1363, 1504, 581, 644, 1199, 621, 1612, 494, 665, 431, 1095, 638, 1042, 1404, 1030, 40, 1121, 75, 1588, 1417, 247, 713, 1590, 186, 646, 312, 8, 1551, 1302, 1044, 768, 884, 1585, 1618, 826, 445, 712, 464, 1308, 195, 655, 1487, 1389, 1356, 243, 401, 572, 1074, 810, 477, 1460, 1544, 1182, 285, 471, 936, 1238, 578, 1034, 1535, 1513, 426, 1311, 1001, 986, 1038, 980, 1064, 620, 982, 1565, 194, 474, 1428, 569, 1165, 49, 1333, 1401, 1307, 1076, 991, 1566, 44, 1342, 245, 943, 300, 583, 1013, 269, 1548, 313, 776, 283, 1444, 540, 406, 338, 466, 363, 1002, 320, 1264, 1089, 70, 1027, 500, 10, 907, 505, 1295, 864, 1432, 64, 1122, 1543, 416, 898, 654, 205, 328, 486, 999, 1377, 970, 528, 1558, 418, 1379, 1299, 1378, 590, 1247, 1174, 472, 1323, 131, 15, 439, 1528, 476, 725, 1203, 1109, 1003, 1365, 103, 1279, 60, 871, 78, 391, 165, 1335, 1410, 1129, 960, 349, 185, 1464, 371, 117, 1398, 252, 507, 1613, 311, 1419, 395, 987, 358, 263, 359, 1559, 1305, 1506, 1376, 1055, 634, 1552, 16, 51, 1258, 493, 601, 997, 351, 711, 1604, 1486, 1339, 794, 97, 1475, 1423, 196, 748, 183, 1433, 1579, 613, 1536, 989, 682, 533, 610, 687, 892, 81, 896, 397, 267, 589, 386, 795, 1416, 132, 265, 1609, 1461, 883, 88, 840, 988, 1354, 676, 916, 629, 1269, 924, 294, 261, 1541, 1081, 1348, 1576, 405, 1616, 356, 608, 1097, 239, 1249, 1099, 1403, 119, 1096, 977, 751, 374, 453, 110, 1336, 1390, 905, 1287, 503, 1031, 1331, 1224, 729, 410, 1540, 367, 1607, 384, 200, 65, 1358, 1394, 1023, 272, 1418, 955, 677, 238, 1133, 974, 541, 478, 1257, 1265, 1465, 1589, 1326, 188, 1083, 681, 906, 1092, 1276, 316, 214, 1078, 1502, 1084, 660, 1142, 531, 255, 30, 662, 1253, 230, 157, 1343, 385, 1169, 380, 1188, 721, 264, 787, 101, 13, 1274, 68, 1024, 1170, 1156, 71, 1577, 566, 1372, 1245, 798, 523, 626, 495, 937, 155, 887, 758, 921, 790, 1349, 1230, 366, 1531, 983, 839, 228, 417, 206, 742, 79, 190, 492, 948, 145, 923, 318, 824, 1374, 1124, 1463, 596, 457, 144, 1359, 1292, 1045, 764, 842, 1140, 1408, 995, 904, 592, 1458, 135, 83, 1062, 154, 1440, 1283, 773, 1414, 127, 1177, 1318, 1413, 403, 150, 346, 413, 1303, 1523, 1619, 394, 1261, 1054, 208, 496, 352, 95, 625, 571, 37, 485, 143, 946, 158, 552, 1527, 1029, 518, 1180, 1218, 236, 1100, 222, 1431, 345, 1459, 120, 661, 588, 1623, 1493, 62, 1429, 811, 193, 235, 181, 1320, 389, 1103, 521, 669, 332, 258, 1369, 1538, 957, 382, 1382, 1567, 331, 934, 614, 262, 893, 6, 266, 769, 38, 901, 1573, 1578, 545, 118, 783, 652, 1025, 706, 105, 1189, 484, 1569, 630, 683, 20, 870, 242, 50, 162, 915, 966, 441, 867, 731, 1102, 1000, 1268, 1223, 822, 301, 723, 172], \"y\": [0.38, 0.78, 0.44, 0.87, 0.39, 0.48, 0.33, 0.58, 0.45, 0.33, 0.7, 0.38, 0.61, 0.59, 0.56, 0.52, 0.47, 0.37, 0.53, 0.5, 0.36, 0.41, 0.58, 0.51, 0.54, 0.67, 0.44, 0.87, 0.33, 0.46, 0.57, 0.49, 0.5, 0.5, 0.38, 0.52, 0.58, 0.37, 0.57, 0.6, 0.33, 0.3, 0.54, 0.48, 0.6, 0.49, 0.35, 0.38, 0.49, 0.82, 0.41, 0.61, 0.81, 0.34, 0.28, 0.31, 0.72, 0.46, 0.76, 0.49, 0.53, 0.53, 0.32, 0.5, 0.49, 0.38, 0.51, 0.66, 0.41, 0.8, 0.74, 0.38, 0.57, 0.38, 0.49, 0.52, 0.72, 0.49, 0.61, 0.67, 0.36, 0.25, 0.4, 0.49, 0.75, 0.68, 0.53, 0.44, 0.79, 0.44, 1.33, 0.68, 0.54, 0.38, 0.47, 0.36, 0.36, 0.42, 0.46, 0.45, 0.58, 0.62, 0.51, 0.5, 0.8, 0.53, 0.44, 0.39, 0.48, 0.29, 0.51, 0.37, 0.42, 0.44, 0.45, 0.58, 0.47, 0.41, 0.61, 0.46, 0.52, 0.85, 0.55, 0.38, 0.43, 0.68, 0.49, 0.78, 0.73, 0.3, 0.81, 0.45, 0.27, 0.41, 0.49, 0.35, 0.57, 0.33, 0.5, 0.4, 0.48, 0.58, 0.65, 0.43, 0.61, 0.53, 0.72, 0.77, 0.34, 0.5, 0.5, 0.84, 0.43, 0.53, 0.52, 0.7, 0.62, 0.54, 0.39, 0.34, 0.35, 0.59, 0.63, 0.5, 0.58, 0.38, 0.49, 0.37, 0.51, 0.67, 0.5, 0.93, 0.76, 0.56, 0.65, 0.71, 0.65, 0.74, 0.64, 0.99, 0.56, 0.42, 0.75, 0.35, 0.74, 0.74, 0.62, 0.75, 0.57, 0.36, 0.88, 0.44, 0.54, 0.74, 0.56, 0.44, 0.51, 0.67, 0.7, 0.57, 0.64, 0.47, 0.91, 0.5, 0.62, 0.49, 0.61, 0.48, 0.47, 0.64, 0.41, 1.34, 0.6, 0.58, 0.56, 0.77, 0.39, 0.56, 0.48, 0.47, 0.38, 0.68, 0.44, 0.36, 0.69, 0.68, 0.4, 0.46, 0.53, 0.82, 0.73, 0.47, 0.45, 0.48, 0.4, 0.78, 0.26, 0.37, 0.49, 0.82, 0.36, 0.45, 0.55, 0.86, 0.39, 0.57, 0.32, 0.39, 0.66, 0.53, 0.45, 0.52, 0.49, 0.43, 0.46, 0.43, 0.42, 0.47, 0.77, 0.61, 0.39, 0.44, 0.49, 0.42, 0.41, 0.55, 0.95, 0.76, 0.37, 0.43, 0.82, 0.87, 0.37, 0.48, 0.44, 0.45, 0.75, 0.42, 0.8, 0.75, 0.34, 0.38, 0.39, 0.43, 0.7, 0.59, 0.48, 0.63, 0.46, 0.73, 0.58, 0.57, 0.38, 0.58, 0.64, 0.59, 0.4, 0.56, 0.57, 0.4, 0.56, 0.63, 0.34, 0.53, 0.93, 0.85, 0.51, 0.46, 0.78, 0.41, 0.33, 0.6, 0.5, 0.6, 0.43, 0.56, 0.65, 0.43, 0.48, 0.47, 0.52, 0.44, 0.5, 0.46, 0.54, 0.7, 0.49, 0.4, 0.45, 0.55, 0.6, 0.53, 0.66, 0.41, 0.64, 0.58, 0.68, 0.48, 0.46, 0.77, 0.48, 0.44, 0.72, 0.44, 0.66, 0.47, 0.66, 0.82, 0.75, 0.54, 0.4, 0.46, 0.48, 0.54, 0.31, 0.47, 0.53, 0.67, 0.49, 0.48, 0.52, 0.46, 0.37, 0.46, 0.39, 0.57, 0.64, 0.6, 0.87, 0.48, 0.54, 0.41, 0.5, 0.47, 0.77, 0.48, 0.7, 0.76, 0.3, 0.55, 0.75, 0.54, 0.65, 0.41, 0.55, 0.4, 0.56, 0.63, 0.35, 0.45, 0.33, 0.48, 0.58, 0.5, 0.48, 0.73, 0.62, 0.57, 0.47, 0.35, 0.39, 0.48, 0.51, 0.43, 0.48, 0.7, 0.55, 0.43, 0.37, 0.43, 0.58, 0.65, 0.4, 0.7, 0.57, 0.4, 0.51, 0.44, 0.56, 0.42, 0.37, 0.31, 0.76, 1.06, 0.51, 0.51, 0.52, 0.49, 0.64, 0.63, 0.36, 0.52, 0.63, 0.57, 0.43, 1.11, 0.49, 0.63, 0.42, 0.52, 0.47, 0.49, 0.46, 0.56, 0.45, 0.54, 0.42, 0.33, 0.42, 0.44, 0.34, 0.59, 0.33, 0.75, 0.72, 0.38, 0.59, 0.52, 0.38, 0.35, 0.48, 0.85, 0.56, 0.4, 0.54, 0.51, 0.75, 0.47, 0.38, 0.6, 0.46, 0.56, 0.63, 0.5, 0.52, 0.57, 0.63, 0.51, 0.5, 0.51, 0.56, 0.68, 0.48, 0.48, 0.64, 0.44, 0.59, 0.5, 0.36, 0.64, 0.39, 0.4, 0.77, 0.48, 0.73, 0.81, 0.5, 0.36, 0.38, 0.86, 0.53, 0.43, 0.38, 0.49, 0.38, 0.46, 0.75, 0.6, 0.41, 0.49, 0.43, 0.46, 0.39, 0.52, 0.58, 0.84, 0.38, 0.54, 0.45, 0.42, 0.42, 0.5, 0.9, 0.34, 0.35, 0.58, 0.52, 0.47, 0.36, 0.35, 0.4, 0.82, 0.6, 0.31, 0.38, 0.53, 0.82, 0.45, 0.72, 0.32, 0.59, 0.75, 0.35, 0.37, 0.75, 0.43, 0.46, 0.5, 0.39, 0.44, 0.57, 0.69, 0.46, 0.53, 0.61, 0.54, 0.54, 0.56, 0.49, 0.38, 0.52, 0.48, 0.37, 0.65, 0.42, 0.46, 0.5, 0.55, 0.55, 0.4, 0.53, 0.48, 0.59, 0.52, 0.43, 0.62, 0.57, 0.46, 0.44, 0.65, 0.44, 0.58, 0.58, 0.44, 0.49, 0.64, 0.42, 0.5, 0.65, 0.62, 0.47, 0.53, 0.49, 0.59, 0.45, 0.47, 0.41, 0.31, 0.46, 0.64, 0.5, 0.48, 0.41, 0.78, 0.44, 0.42, 0.52, 0.46, 0.46, 0.36, 0.39, 0.36, 0.45, 0.69, 0.7, 0.49, 0.3, 0.68, 0.46, 0.5, 0.7, 0.76, 0.46, 0.78, 0.33, 0.36, 0.65, 0.6, 0.49, 0.56, 0.45, 0.61, 0.98, 0.52, 0.64, 0.77, 0.6, 0.7, 0.59, 0.35, 0.6, 0.33, 0.61, 0.4, 0.34, 0.47, 0.41, 0.53, 0.51, 0.37, 0.71, 0.65, 0.57, 0.4, 0.74, 0.48, 0.7, 0.5, 0.39, 0.46, 0.52, 0.43, 0.47, 0.49, 0.46, 0.45, 0.45, 0.84, 0.64, 0.32, 0.54, 0.33, 0.59, 0.66, 0.39, 0.75, 0.4, 0.78, 0.4, 0.51, 0.47, 0.37, 0.54, 0.72, 0.54, 0.7, 0.43, 0.53, 0.56, 0.55, 0.43, 0.37, 0.32, 0.49, 0.59, 0.82, 0.5, 0.47, 0.42, 0.41, 0.38, 0.65, 0.45, 0.27, 0.59, 0.54, 0.4, 0.57, 0.63, 0.55, 0.45, 0.3, 0.67, 0.72, 0.43, 0.41, 0.55, 0.43, 0.8, 0.52, 0.41, 0.5, 0.6, 0.72, 0.88, 0.35, 0.45, 0.42, 0.65, 0.38, 0.52, 0.77, 0.42, 0.76, 0.52, 0.64, 0.45, 0.42, 0.44, 0.32, 0.44, 0.32, 0.37, 0.41, 0.43, 0.41, 0.6, 0.58, 0.68, 0.71, 0.57, 0.65, 0.53, 0.41, 0.68, 0.68, 0.77, 0.81, 0.36, 0.49, 0.45, 0.56, 0.73, 0.75, 0.49, 0.92, 0.52, 0.76, 0.44, 0.64, 0.48, 0.5, 0.49, 0.4, 0.5, 0.72, 0.5, 0.46, 0.41, 0.44, 0.45, 0.53, 0.59, 0.57, 0.5, 0.55, 0.82, 0.4, 0.4, 0.45, 0.32, 0.68, 0.62, 0.64, 0.6, 0.54, 0.82, 0.88, 0.43, 0.53, 0.48, 0.8, 0.3, 0.38, 0.9, 0.43, 0.38, 0.51, 0.95, 0.59, 0.72, 0.88, 0.62, 0.44, 0.36, 0.45, 0.6, 0.39, 0.46, 0.28, 0.37, 0.58, 0.48, 0.31, 0.81, 0.5, 0.45, 0.58, 0.74, 0.37, 0.6, 0.6, 0.52, 0.54, 0.58, 0.55, 0.65, 0.56, 0.42, 0.37, 0.51, 0.87, 0.51, 0.33, 0.38, 0.72, 0.79, 0.58, 0.46, 0.49, 0.66, 0.46, 0.61, 0.44, 0.52, 0.58, 0.55, 0.7, 0.63, 0.37, 0.5, 0.53, 0.29, 0.41, 0.42, 0.39, 0.35, 0.65, 0.44, 0.6, 0.53, 0.35, 0.51, 0.74, 0.37, 0.58, 0.39, 0.49, 0.58, 0.38, 0.63, 0.42, 0.69, 0.58, 0.59, 0.5, 0.39, 0.68, 0.48, 0.32, 0.62, 0.42, 0.39, 0.56, 0.56, 0.44, 0.43, 0.52, 0.46, 0.34, 0.38, 0.48, 0.53, 0.64, 0.64, 0.6, 0.59, 0.38, 0.65, 0.63, 0.38, 0.5, 0.54, 0.63, 0.58, 0.61, 0.75, 0.73, 0.79, 0.58, 0.5, 0.76, 0.52, 0.46, 0.31, 0.4, 0.52, 0.51, 0.63, 0.44, 0.45, 0.48, 0.39, 0.46, 0.56, 0.68, 0.45, 0.58, 0.75, 0.57, 0.5, 0.51, 0.68, 0.36, 0.56, 0.43, 0.52, 0.53, 0.56, 0.55, 0.44, 0.37, 0.57, 0.6, 0.51, 0.51, 0.47, 0.39, 0.46, 0.37, 0.45, 0.37, 0.36, 0.55, 0.48, 0.45, 0.39, 0.45, 0.35, 0.58, 0.63, 0.71, 0.6, 0.59, 0.8, 0.37, 0.46, 0.48, 0.63, 0.47, 0.73, 0.54, 0.33, 0.49, 0.78, 0.64, 0.52, 0.51, 0.52, 0.52, 0.66, 0.37, 0.55, 0.53, 0.76, 0.52, 0.59, 0.56, 0.49, 0.54]}, {\"marker\": {\"color\": \"white\", \"opacity\": 0.005, \"size\": 0.01}, \"mode\": \"markers\", \"name\": \"Current\", \"showlegend\": false, \"type\": \"scatter\", \"x\": [2, 2], \"y\": [0.08396450462794602, 0.9781554953720539]}], \"layout\": {\"legend\": {\"orientation\": \"h\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"shapes\": [{\"fillcolor\": \"LightGreen\", \"layer\": \"below\", \"line\": {\"width\": 0}, \"opacity\": 0.5, \"type\": \"rect\", \"x0\": 0, \"x1\": 1, \"xref\": \"paper\", \"y0\": 0.08396450462794602, \"y1\": 0.9781554953720539, \"yref\": \"y\"}, {\"line\": {\"color\": \"Green\", \"width\": 3}, \"name\": \"Reference\", \"type\": \"line\", \"x0\": 0, \"x1\": 1, \"xref\": \"paper\", \"y0\": 0.53106, \"y1\": 0.53106, \"yref\": \"y\"}], \"showlegend\": true, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"Index\"}}, \"yaxis\": {\"title\": {\"text\": \"sulphates\"}}}}}, \"alcohol_distr\": {\"data\": [{\"histnorm\": \"probability\", \"marker\": {\"color\": \"#4d4d4d\"}, \"name\": \"Reference\", \"nbinsx\": 10, \"opacity\": 0.6, \"type\": \"histogram\", \"x\": [11.2, 10.0, 12.7, 10.5, 9.4, 10.1, 13.5, 10.4, 12.4, 11.5, 10.0, 8.7, 9.8, 10.5, 12.6, 9.1, 10.6, 9.5, 10.5, 9.6, 9.4, 11.7, 11.2, 12.3, 9.5, 11.9, 9.7, 10.4, 10.0, 9.3, 12.3, 9.7, 10.1, 11.9, 11.5, 10.0, 10.2, 13.6, 11.3, 9.6, 12.8, 11.0, 8.7, 12.2, 10.0, 10.7, 9.3, 9.5, 9.5, 10.9, 9.8, 9.2, 10.9, 11.8, 9.5, 12.5, 10.0, 9.5, 12.9, 9.1, 12.8, 11.3, 11.5, 10.2, 12.1, 11.2, 9.7, 11.2, 9.9, 9.8, 10.0, 8.8, 9.9, 9.0, 12.3, 12.0, 12.0, 10.1, 9.1, 9.7, 8.9, 10.1, 9.6, 12.4, 10.4, 10.8, 10.3, 10.0, 11.1, 8.6, 9.1, 10.8, 11.8, 10.1, 10.8, 12.5, 10.0, 10.4, 10.8, 9.6, 12.8, 9.2, 12.2, 9.2, 10.2, 10.6, 9.5, 9.8, 9.2, 8.9, 11.7, 10.5, 9.5, 9.8, 10.1, 9.1, 13.4, 10.5, 10.6, 9.3, 12.2, 13.4, 9.4, 11.0, 9.1, 12.3, 9.3, 10.7, 9.6, 9.8, 12.8, 12.3, 10.9, 12.4, 10.1, 9.8, 9.2, 13.5, 10.6, 11.0, 10.4, 12.2, 11.3, 11.3, 10.6, 9.9, 13.4, 9.3, 10.4, 12.2, 10.2, 10.1, 11.0, 9.3, 10.0, 12.6, 12.4, 10.6, 9.4, 9.2, 11.3, 10.4, 9.2, 9.9, 10.6, 12.6, 11.2, 9.8, 9.4, 10.2, 8.9, 10.1, 11.9, 11.0, 12.5, 8.8, 11.0, 9.7, 12.2, 8.7, 10.6, 11.4, 10.75, 12.4, 11.4, 8.8, 9.8, 10.2, 10.0, 10.9, 8.9, 10.7, 12.7, 11.1, 11.4, 9.2, 11.5, 12.0, 9.1, 11.0, 9.0, 10.0, 11.1, 9.8, 9.0, 9.05, 10.4, 8.9, 9.6, 10.5, 9.5, 8.9, 9.8, 10.9, 11.0, 10.1, 9.9, 10.6, 14.0, 10.0, 9.1, 11.6, 9.2, 11.0, 9.9, 12.9, 10.0, 11.0, 11.0, 13.4, 10.0, 12.7, 10.5, 10.5, 9.4, 10.6, 9.3, 9.8, 8.7, 10.6, 11.7, 10.9, 10.6, 9.1, 9.2, 9.0, 10.5, 10.3, 9.5, 9.5, 9.0, 11.9, 9.1, 11.4, 9.5, 9.2, 12.1, 11.4, 9.6, 12.0, 9.2, 10.5, 9.8, 11.7, 12.1, 9.7, 10.4, 9.6, 10.2, 10.1, 10.2, 9.0, 8.9, 12.1, 9.3, 9.3, 10.3, 11.1, 11.4, 9.0, 10.5, 9.4, 10.4, 9.7, 10.5, 9.9, 10.5, 10.1, 10.0, 9.8, 9.2, 11.2, 9.0, 10.4, 10.8, 10.7, 12.1, 11.9, 12.7, 9.6, 9.6, 11.0, 13.55, 8.7, 10.1, 11.4, 11.6, 10.1, 10.3, 9.4, 11.2, 12.8, 12.5, 8.9, 12.2, 9.7, 12.1, 8.7, 12.8, 11.0, 9.1, 11.8, 10.5, 10.7, 12.5, 9.7, 12.2, 11.8, 8.8, 10.6, 12.0, 10.9, 10.8, 8.8, 9.5, 9.5, 10.6, 9.4, 10.4, 10.8, 12.1, 9.5, 9.4, 9.6, 10.8, 11.5, 10.0, 11.5, 10.8, 10.9, 12.8, 11.3, 10.2, 8.7, 10.5, 12.9, 9.4, 10.6, 9.2, 10.8, 9.1, 9.1, 9.3, 10.0, 10.8, 10.6, 11.05, 11.0, 9.9, 11.5, 9.1, 11.2, 9.9, 10.4, 11.9, 12.2, 11.0, 9.2, 9.8, 11.8, 10.7, 10.8, 9.4, 11.4, 9.2, 9.0, 9.2, 8.8, 9.5, 11.4, 9.9, 9.0, 10.1, 10.1, 9.3, 12.3, 8.6, 11.0, 10.6, 9.1, 9.7, 9.6, 11.1, 9.5, 10.8, 11.2, 11.4, 11.2, 10.2, 11.0, 12.0, 9.4, 12.6, 9.2, 11.5, 9.8, 9.0, 12.2, 9.2, 9.5, 10.9, 9.9, 10.8, 11.5, 10.2, 9.6, 12.3, 11.6, 11.2, 13.2, 12.5, 10.3, 13.0, 8.4, 10.8, 9.5, 11.4, 11.4, 11.0, 13.0, 9.9, 10.9, 11.7, 11.5, 12.8, 9.53333333333333, 10.5, 11.2, 9.1, 9.4, 9.2, 11.6, 12.2, 12.75, 11.9, 11.9, 9.3, 10.0, 9.6, 9.6, 12.0, 11.5, 10.1, 9.4, 9.3, 9.4, 12.0, 12.4, 11.2, 10.3, 10.9666666666667, 9.1, 9.5, 9.9, 11.4, 10.2, 10.0, 10.9, 9.2, 9.6, 10.7, 12.6, 10.5, 10.9, 10.2, 12.3, 11.0, 9.7, 11.0, 9.7, 9.0, 11.4, 9.4, 11.5, 10.2, 11.8, 9.0, 9.4, 10.1, 9.5, 9.0, 9.6, 9.0, 12.4, 11.3, 10.7, 11.0, 9.7, 9.4, 9.4, 12.8, 10.9, 12.2, 12.6, 11.0, 9.4, 11.4, 9.7, 12.6, 11.7, 9.3, 11.0, 9.5, 9.7, 11.2, 9.7, 12.2, 11.0, 9.5, 12.4, 9.3, 10.4, 9.5, 9.7, 10.8, 10.3, 9.1, 10.5, 8.8, 8.8, 12.8, 9.6, 10.5, 9.9, 11.1, 12.1, 9.5, 11.0, 9.9, 11.3, 10.0, 9.4, 9.0, 9.0, 12.4, 8.9, 10.8, 10.5, 11.2, 10.9, 9.5, 11.0, 9.6, 11.4, 11.0, 12.4, 10.1, 12.2, 9.4, 10.4, 11.4, 10.3, 11.5, 9.8, 9.7, 10.8, 9.9, 10.4, 12.6, 11.2, 9.6, 10.0, 12.0, 9.0, 10.8, 9.0, 9.0, 10.3, 10.4, 10.1, 12.9, 9.4, 10.8, 12.5, 9.2, 12.7, 10.4, 9.9, 9.5, 9.2, 10.0, 9.7, 10.8, 9.1, 9.3, 11.2, 9.0, 10.9, 9.0, 9.5, 9.5, 10.0, 10.5, 10.2, 12.2, 11.2666666666667, 8.9, 9.9, 11.0, 9.2, 10.4, 11.0, 11.8, 10.6, 12.6, 9.2, 9.0, 9.4, 10.2, 11.5, 9.3, 12.5, 8.8, 9.2, 11.5, 10.4, 10.6, 11.3, 10.1, 10.8, 10.5, 9.6, 8.7, 12.0, 11.1, 8.7, 10.4, 11.1, 11.3, 11.2, 10.5, 11.9, 9.1, 11.6, 9.1, 10.8, 10.6, 9.4, 10.5, 10.8, 9.6, 9.0, 10.2, 11.0, 10.0, 11.2, 11.4333333333333, 12.2, 9.3, 10.8, 9.5, 12.0, 12.4, 9.0, 12.4, 12.8, 9.4, 11.2, 10.5, 9.4, 11.6333333333333, 10.0, 10.5, 13.1, 8.8, 9.3, 11.5, 11.3, 12.3, 11.2, 10.6, 10.7, 11.0, 10.8, 10.7, 9.6, 9.5, 9.1, 9.7, 11.8, 10.1, 10.2, 10.4, 9.6, 10.4, 9.5, 11.0, 10.9, 12.6, 12.4, 9.5, 11.9, 10.2, 9.7, 13.0, 10.2, 10.9, 9.9, 9.1, 9.5, 11.2, 9.5, 10.5, 11.0, 9.2, 11.5, 11.0666666666667, 9.2, 10.4, 11.0, 10.4, 13.4, 9.6, 9.4, 8.7, 8.8, 12.4, 9.9, 12.9, 12.4, 9.5, 11.0, 9.0, 10.8, 10.2, 10.0, 11.7, 10.6, 8.5, 8.8, 9.7, 10.0, 10.6, 9.2, 8.9, 9.0, 12.0, 12.5, 9.0, 9.0, 11.7, 9.9, 9.9, 9.2, 9.4, 9.5, 9.2, 9.6, 9.7, 10.3, 11.5, 11.4, 9.6, 10.1, 12.8, 10.5, 10.5, 12.0, 10.5, 11.7, 9.0, 12.5, 10.1, 11.4, 9.9, 12.3, 12.2, 12.3, 9.3, 12.1, 10.4, 9.0, 12.1, 12.3, 9.9, 11.9, 10.5, 9.3, 10.0, 11.6, 12.7, 9.5, 13.2, 13.0, 9.8, 9.5, 11.5, 9.0, 12.0, 9.3, 11.6, 9.3, 11.2, 10.5, 9.3, 10.1, 10.2, 9.5, 10.7, 9.5, 10.1, 9.4, 11.4, 10.7, 10.5, 12.1, 10.8, 11.0, 10.2, 12.2, 10.5, 12.8, 10.0, 10.6, 12.2, 11.1, 13.2, 11.6, 9.4, 12.0, 11.0, 10.0, 10.3, 11.3, 11.0, 10.8, 11.2, 9.7, 10.4, 10.4, 9.4, 10.8, 10.2, 9.2, 9.0, 8.7, 9.3, 8.9, 11.4, 9.4, 9.5, 9.8, 11.2, 9.8, 11.4, 13.6, 11.0, 10.7, 11.3666666666667, 10.5, 12.5, 10.0, 10.1, 12.1, 10.1, 11.5, 12.7, 12.0, 12.9, 9.0, 8.6, 9.7, 10.6, 9.3, 10.6, 9.3, 10.5, 10.5, 11.9, 9.4, 9.3, 12.5, 10.1, 9.3, 9.5, 10.7, 12.2, 10.8, 9.8, 9.5, 13.2, 10.8, 10.3, 9.8, 11.2, 9.9, 9.3, 12.5, 9.5, 9.3, 12.8, 10.2, 9.4, 10.1, 9.5, 11.1, 9.8, 10.5, 11.1, 10.5, 9.2, 11.2, 11.7, 10.2, 11.0, 9.5, 11.7, 8.8, 10.8, 10.9, 9.7, 9.5, 11.5, 9.6, 9.5, 8.8, 10.9333333333333, 10.5, 14.9, 9.8, 10.7, 12.7, 10.4, 11.8, 10.1, 9.4, 9.2, 11.3, 9.4, 10.2, 10.4, 11.3, 8.7, 10.0, 10.9, 9.5, 9.7, 9.4, 9.8, 9.6, 9.4, 10.9, 8.9, 9.5, 10.9, 9.6, 9.0, 11.7, 9.6, 9.53333333333333, 12.3, 9.4, 10.2, 10.8, 9.6, 9.5, 9.2, 11.0, 11.7, 9.2, 11.3, 10.0, 9.53333333333333, 10.8, 9.5, 9.8, 11.8, 9.2, 9.9, 10.0, 10.1, 9.4, 12.0, 11.8, 9.4, 10.0, 9.7, 9.5, 13.0, 10.0]}, {\"histnorm\": \"probability\", \"marker\": {\"color\": \"#ed0400\"}, \"name\": \"Current\", \"nbinsx\": 10, \"opacity\": 0.6, \"type\": \"histogram\", \"x\": [9.0, 11.0, 9.0, 10.9, 9.4, 8.9, 11.0, 9.5, 10.1, 9.8, 10.1, 10.8, 12.0, 10.5, 10.0, 11.0, 8.9, 12.4, 12.2, 8.7, 12.8, 10.6, 11.4, 10.7, 9.7, 10.0, 11.5, 10.3, 12.4, 8.9, 9.9, 9.2, 9.2, 10.5, 10.5, 9.8, 9.6, 9.2, 9.1, 10.1, 12.2, 11.0, 11.3, 8.8, 12.5, 12.3, 13.0, 9.0, 10.1, 9.5, 9.2, 10.3, 12.0, 12.1, 10.8, 8.7, 11.7, 9.7, 11.3333333333333, 9.3, 13.4, 11.8, 12.4, 11.3, 9.7, 11.8, 8.9, 12.0, 8.7, 9.4, 12.7, 9.0, 9.3, 10.9, 9.5, 9.4, 12.5, 9.7, 9.2, 12.8, 10.4, 10.5, 9.8, 11.4, 8.8, 9.5, 10.2, 8.7, 14.0, 9.8, 9.1, 10.4, 8.7, 12.3, 11.8, 11.2, 9.3, 12.5, 9.6, 9.3, 11.0, 10.7, 10.5, 10.55, 9.6, 9.1, 9.5, 11.7, 9.4, 9.2, 11.0, 9.7, 9.3, 9.3, 10.2, 9.6, 10.8, 9.4, 9.4, 12.2, 10.2, 11.4, 9.3, 12.4, 9.3, 11.9, 9.8, 12.0, 10.9, 11.5, 9.2, 9.3, 11.5, 11.4, 9.5, 10.8, 10.5666666666667, 11.9, 12.6, 13.2, 10.1, 12.6, 10.0333333333333, 13.1, 9.4, 9.8, 10.2, 11.1, 11.1, 9.0, 9.9, 11.2, 13.2, 9.1, 10.9, 10.4, 9.5, 9.4, 8.8, 11.5, 12.6, 11.6, 11.3, 10.7, 11.0, 8.8, 9.7, 12.3, 12.6, 9.3, 12.4, 12.4, 11.3, 9.5, 10.4, 11.5, 9.8, 11.1, 11.8, 12.1, 12.0, 12.2, 10.9, 9.4, 12.3, 9.2, 12.3, 10.2, 12.0, 12.5, 13.6, 12.5, 9.4, 11.1, 9.1, 9.8, 9.3, 10.5, 10.8, 11.6, 9.7, 9.0, 9.7, 11.0, 11.2, 12.7, 10.8, 9.4, 9.3, 10.9, 9.6, 9.2, 10.5, 9.4, 9.4, 10.5, 10.9, 10.7, 9.0, 10.2, 9.8, 11.2, 9.5, 9.2, 9.5, 12.5, 11.3, 10.4666666666667, 12.0, 10.6, 11.3, 9.4, 10.0, 9.0, 12.7, 9.5, 13.4, 10.5, 11.7, 10.3, 11.4, 11.5, 9.9, 11.0, 9.2, 11.4, 10.2, 10.9, 11.6, 11.1, 14.0, 8.9, 11.8, 10.4, 9.2, 11.4, 13.1, 13.6, 12.5, 9.0, 9.6, 11.0, 9.9, 9.5, 9.2, 9.5, 9.5, 10.7, 10.1, 9.4, 11.6, 10.3, 12.6, 10.4, 9.0, 8.8, 8.9, 9.8, 10.5, 11.1, 9.5, 9.5, 11.0, 9.4, 9.7, 11.9, 11.9, 9.2, 10.8, 9.7, 12.2, 10.5, 12.5, 9.4, 9.8, 12.5, 10.9, 10.4, 9.6, 11.9, 11.0, 10.6, 10.8, 9.7, 9.2, 12.0, 10.1, 8.9, 10.2, 11.4, 12.8, 10.6, 9.2, 12.4, 9.4, 9.0, 12.8, 10.6, 8.8, 10.0, 9.3, 11.3, 11.6, 9.4, 10.5, 9.4, 12.8, 12.2, 9.5, 10.0, 10.8, 9.5, 9.0, 9.2, 9.1, 9.2, 11.2, 10.3, 9.4, 12.0, 11.2, 9.1, 9.25, 10.1, 10.8, 12.1, 12.8, 8.9, 9.8, 9.9, 12.3, 10.6, 10.6, 11.2, 12.0, 11.2, 10.7, 9.4, 9.4, 9.5, 11.0, 13.3, 10.2, 11.4, 13.0, 10.3, 10.4, 10.6, 11.4, 9.5, 10.1, 8.8, 9.2, 10.7, 9.4, 11.0, 10.1, 9.6, 9.2, 9.7, 8.8, 10.1, 10.5, 11.6, 10.7, 13.4, 10.4, 9.2, 9.8, 10.2, 10.5, 9.4, 11.0, 8.7, 12.2, 12.2, 10.4, 10.6, 10.7, 10.2, 11.1, 12.5, 12.7, 10.6, 9.3, 11.4, 10.4, 9.9, 9.9, 11.3, 12.6, 11.0, 9.3, 9.9, 10.7, 9.4, 8.8, 10.4, 10.6, 10.7, 10.1, 10.3, 11.2, 9.1, 11.9, 11.8, 11.7, 10.0, 12.8, 11.6, 11.45, 11.3, 9.5, 9.7, 10.2, 11.0, 10.3, 9.5, 10.1, 10.9, 12.8, 10.4, 11.0, 9.2, 9.2, 9.5, 12.2, 11.0, 10.0, 11.8, 9.2, 10.0, 12.9, 10.3, 10.5, 9.5, 11.3, 10.1, 12.3, 10.5, 9.0, 11.0, 12.0, 10.7, 11.0, 9.4, 12.6, 11.2, 10.5, 11.5, 9.6, 9.3, 11.6, 9.3, 11.4, 10.4, 11.0, 9.8, 9.8, 10.1, 9.0, 10.4, 9.5, 9.2, 12.5, 13.0, 10.3, 9.0, 9.1, 10.4, 12.7, 11.0, 11.5, 9.6, 12.6, 10.6, 10.4, 9.0, 11.3, 9.4, 9.5, 9.2, 9.4, 10.9, 11.0, 10.3, 9.1, 9.2, 10.0, 10.5, 10.2, 11.9, 10.8, 10.2, 9.7, 11.4, 9.4, 9.5, 10.9, 10.2, 11.4, 10.5, 10.0, 11.7, 11.3, 9.5, 11.5, 8.8, 9.2, 12.4, 9.3, 12.0, 10.0, 10.1, 10.2, 9.3, 10.4, 8.8, 12.5, 12.9, 10.3, 8.7, 8.8, 10.6, 10.2, 9.2, 8.9, 10.3, 10.3, 8.0, 9.4, 10.2, 13.05, 10.1, 10.3, 10.8, 11.4, 11.7, 10.8, 9.8, 10.5, 12.0, 11.2, 9.6, 10.5, 12.4, 9.4, 11.5, 12.2, 9.3, 9.2, 9.3, 10.2, 9.3, 11.9, 10.5, 9.7, 11.0, 11.65, 11.4, 11.3, 11.0, 9.7, 9.3, 11.2, 10.2, 10.2, 10.1, 11.1, 10.8, 9.0, 12.5, 8.6, 12.6, 10.8, 9.5, 10.6, 11.5, 9.1, 11.4, 9.5, 9.8, 12.7, 9.1, 9.6, 9.8, 9.5, 9.0, 11.0, 10.5, 9.0, 12.5, 9.0, 9.4, 9.6, 10.0, 11.4, 10.4, 9.8, 10.6, 10.3, 9.4, 9.0, 9.6, 9.0, 9.3, 10.6, 12.6, 12.8, 11.3, 8.6, 10.2, 11.9, 9.0, 9.7, 12.1, 10.3, 9.2, 11.2, 10.5, 10.2, 10.6, 12.4, 12.0, 11.7, 9.3, 10.2, 11.4, 12.8, 11.5, 10.5, 9.0, 9.0, 10.2, 10.8, 9.0, 12.0, 9.3, 9.8, 8.7, 9.0, 9.3, 9.3, 9.1, 9.4, 9.1, 10.0, 12.5, 9.1, 9.8, 9.4, 12.0, 10.3, 9.2, 10.6, 14.0, 9.2, 10.0, 10.1, 8.8, 9.7, 10.6, 9.2, 9.5, 9.8, 10.4, 9.0, 11.0, 11.0, 10.65, 9.0, 8.8, 9.7, 11.3, 11.3, 9.6, 13.3, 9.4, 9.4, 8.7, 10.9, 10.4, 9.8, 12.7, 10.9, 10.3, 11.0, 10.6, 9.2, 11.4, 10.4, 10.3, 12.5, 9.2, 8.7, 10.3, 12.8, 9.5, 9.7, 10.9, 9.4, 11.4, 11.3, 10.0, 10.7, 10.2, 9.3, 11.4, 10.0, 10.6, 9.4, 11.4, 10.0, 11.9, 9.6, 9.0, 8.6, 10.6, 8.8, 11.0, 9.9, 12.7, 12.5, 8.8, 9.7, 9.4, 9.5, 9.5, 10.8, 10.8, 10.1, 9.8, 10.0, 9.1, 10.1, 10.1, 12.5, 11.0, 9.8, 9.5, 10.8, 9.7, 11.4, 9.8, 11.4, 10.0, 11.5, 10.3, 12.2, 11.75, 9.6, 10.3, 9.1, 11.0, 11.4, 10.0, 13.5, 8.9, 9.3, 9.4, 9.6, 10.2, 12.0, 10.1, 12.3, 9.0, 12.9, 11.3, 14.2, 11.4, 11.5, 9.5, 12.6, 10.1, 9.5, 10.1, 11.7, 9.2, 9.2, 10.0, 9.5, 12.4, 13.0, 11.4, 10.5, 10.9, 11.0, 9.2, 11.6, 9.3, 10.7, 9.2, 12.6, 11.2, 11.5, 9.1, 11.3, 10.1, 9.1, 11.4, 10.0, 9.8, 9.0, 13.0, 12.5, 9.5, 11.6, 9.7, 11.5, 12.1, 9.7, 9.5, 9.2, 9.5, 11.1, 11.2, 10.2, 11.3333333333333, 9.5, 9.0, 9.2, 10.9, 11.4, 13.1, 11.5, 10.9, 11.8, 10.3, 12.3, 9.1, 9.5, 11.4, 10.6, 11.4, 10.5, 11.1, 11.0, 10.4, 9.3, 10.0, 9.5, 10.1, 10.8, 12.3, 11.9, 11.0, 9.8, 10.4, 8.7, 11.4, 10.5, 9.5, 9.1, 12.1, 11.4, 9.0, 11.2, 9.4, 9.4, 13.0, 9.6, 12.5, 10.5, 10.3, 11.1, 12.0, 12.4, 11.0, 11.0, 12.3, 10.2, 11.0, 8.7, 9.9, 12.4, 8.8, 9.5, 9.6, 9.8, 10.5, 12.5, 9.5, 10.0, 10.0, 9.5, 10.2, 9.5, 10.2, 11.1, 10.0, 9.3, 10.4, 10.0, 10.0, 11.2, 11.8, 10.4, 12.5, 9.6, 9.4, 10.1, 9.5, 11.5, 11.5, 12.7, 9.4, 10.8, 8.8, 10.4, 12.2, 9.4, 9.5, 11.2, 10.4666666666667, 9.8, 10.5, 9.5, 9.8, 10.5, 10.6, 10.5, 10.4, 9.9, 9.6, 10.5, 9.1, 11.9, 11.4, 9.8, 9.7, 12.1, 12.9, 10.4, 9.5, 10.4, 9.3, 12.2, 10.2, 10.4, 12.4, 11.0, 8.8, 10.0, 10.8, 12.15, 10.7, 11.45, 8.9, 10.2, 9.2, 11.8, 12.1, 10.4, 9.8, 10.0, 12.7, 11.6, 9.8, 8.4, 12.3, 10.3, 10.2, 13.4, 9.3, 11.0, 9.5, 11.0, 12.0, 12.8, 9.2, 8.8, 8.8, 9.9, 8.9, 10.0, 9.5, 13.4, 9.3, 11.4, 11.0]}], \"layout\": {\"legend\": {\"orientation\": \"h\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"alcohol\"}}, \"yaxis\": {\"title\": {\"text\": \"Share\"}}}}, \"alcohol_drift\": {\"title\": \"\", \"size\": 2, \"text\": \"\", \"type\": \"big_graph\", \"params\": {\"data\": [{\"marker\": {\"color\": \"#4d4d4d\", \"size\": 6}, \"mode\": \"markers\", \"name\": \"Current\", \"type\": \"scatter\", \"x\": [443, 319, 703, 526, 76, 963, 1260, 532, 1561, 517, 506, 1557, 271, 1058, 1381, 1039, 542, 107, 161, 1301, 519, 1021, 1213, 223, 1286, 1426, 1234, 587, 1183, 182, 567, 1492, 724, 1262, 1509, 657, 1137, 913, 1445, 342, 781, 14, 971, 1072, 1254, 678, 1175, 1481, 1370, 1443, 18, 1151, 1380, 434, 1430, 554, 53, 535, 1050, 427, 259, 124, 961, 1488, 1563, 720, 1291, 1061, 425, 846, 1147, 204, 1317, 618, 1088, 927, 1196, 582, 1194, 360, 1449, 862, 1135, 1453, 1442, 1017, 268, 685, 317, 775, 1086, 942, 1052, 801, 1362, 219, 379, 649, 1195, 479, 1542, 609, 930, 1105, 34, 708, 686, 1132, 693, 733, 1562, 1190, 473, 737, 672, 969, 858, 5, 1556, 298, 80, 940, 361, 1154, 1545, 1622, 784, 19, 1522, 996, 54, 1415, 1564, 1593, 1236, 9, 353, 1222, 113, 1010, 1263, 877, 82, 381, 818, 1210, 1409, 66, 254, 817, 92, 1340, 122, 1357, 511, 1546, 692, 17, 1248, 414, 52, 1296, 191, 175, 233, 900, 785, 935, 1298, 156, 487, 159, 481, 1255, 1597, 253, 1491, 841, 187, 914, 979, 249, 1114, 1366, 814, 716, 465, 875, 1242, 670, 299, 593, 436, 728, 141, 229, 1057, 912, 994, 648, 799, 1164, 1073, 4, 516, 152, 1267, 1237, 752, 1150, 825, 402, 1277, 575, 1437, 838, 390, 1505, 1093, 1026, 1611, 31, 674, 866, 1328, 616, 861, 897, 148, 303, 1451, 602, 1125, 1614, 1047, 1462, 1148, 574, 899, 1327, 89, 530, 408, 1192, 177, 520, 993, 326, 992, 717, 895, 1421, 984, 240, 85, 557, 278, 938, 1425, 958, 1232, 1149, 171, 1220, 227, 891, 489, 1391, 1184, 1032, 393, 726, 192, 260, 880, 1592, 1537, 491, 759, 1473, 959, 1454, 1015, 965, 1393, 1489, 1256, 133, 202, 1036, 438, 483, 666, 461, 142, 1181, 1580, 308, 538, 170, 310, 743, 1101, 1179, 315, 22, 1529, 45, 879, 1110, 61, 522, 1397, 829, 576, 1193, 1202, 1549, 1375, 27, 527, 1186, 1273, 828, 539, 1049, 1014, 412, 1091, 1497, 1595, 347, 2, 844, 1490, 632, 211, 1582, 918, 1217, 1115, 744, 459, 579, 771, 96, 178, 108, 1516, 805, 1240, 440, 619, 1, 1315, 1239, 1347, 512, 48, 722, 1517, 1621, 446, 565, 568, 796, 231, 1070, 1063, 215, 513, 704, 354, 55, 881, 746, 641, 762, 279, 1145, 1468, 224, 302, 911, 218, 1079, 874, 1266, 792, 1136, 372, 295, 364, 580, 1615, 688, 1560, 333, 467, 968, 399, 760, 740, 953, 1520, 1446, 1214, 615, 524, 546, 1495, 1324, 452, 1515, 432, 863, 442, 847, 276, 456, 184, 1116, 1200, 458, 1508, 1087, 1478, 376, 1479, 563, 1146, 1507, 42, 944, 823, 1228, 656, 1227, 198, 309, 761, 1158, 549, 47, 1209, 529, 933, 220, 1624, 1591, 651, 536, 362, 1314, 420, 564, 475, 482, 140, 679, 1436, 1334, 77, 39, 570, 962, 808, 981, 322, 1471, 251, 695, 1128, 813, 757, 820, 853, 831, 1246, 58, 553, 597, 241, 1288, 330, 1005, 789, 1617, 56, 1126, 411, 548, 501, 1211, 642, 558, 1605, 745, 878, 1056, 667, 435, 29, 270, 35, 1157, 422, 1310, 114, 1524, 1422, 689, 1018, 1168, 1360, 985, 1191, 793, 1363, 1504, 581, 644, 1199, 621, 1612, 494, 665, 431, 1095, 638, 1042, 1404, 1030, 40, 1121, 75, 1588, 1417, 247, 713, 1590, 186, 646, 312, 8, 1551, 1302, 1044, 768, 884, 1585, 1618, 826, 445, 712, 464, 1308, 195, 655, 1487, 1389, 1356, 243, 401, 572, 1074, 810, 477, 1460, 1544, 1182, 285, 471, 936, 1238, 578, 1034, 1535, 1513, 426, 1311, 1001, 986, 1038, 980, 1064, 620, 982, 1565, 194, 474, 1428, 569, 1165, 49, 1333, 1401, 1307, 1076, 991, 1566, 44, 1342, 245, 943, 300, 583, 1013, 269, 1548, 313, 776, 283, 1444, 540, 406, 338, 466, 363, 1002, 320, 1264, 1089, 70, 1027, 500, 10, 907, 505, 1295, 864, 1432, 64, 1122, 1543, 416, 898, 654, 205, 328, 486, 999, 1377, 970, 528, 1558, 418, 1379, 1299, 1378, 590, 1247, 1174, 472, 1323, 131, 15, 439, 1528, 476, 725, 1203, 1109, 1003, 1365, 103, 1279, 60, 871, 78, 391, 165, 1335, 1410, 1129, 960, 349, 185, 1464, 371, 117, 1398, 252, 507, 1613, 311, 1419, 395, 987, 358, 263, 359, 1559, 1305, 1506, 1376, 1055, 634, 1552, 16, 51, 1258, 493, 601, 997, 351, 711, 1604, 1486, 1339, 794, 97, 1475, 1423, 196, 748, 183, 1433, 1579, 613, 1536, 989, 682, 533, 610, 687, 892, 81, 896, 397, 267, 589, 386, 795, 1416, 132, 265, 1609, 1461, 883, 88, 840, 988, 1354, 676, 916, 629, 1269, 924, 294, 261, 1541, 1081, 1348, 1576, 405, 1616, 356, 608, 1097, 239, 1249, 1099, 1403, 119, 1096, 977, 751, 374, 453, 110, 1336, 1390, 905, 1287, 503, 1031, 1331, 1224, 729, 410, 1540, 367, 1607, 384, 200, 65, 1358, 1394, 1023, 272, 1418, 955, 677, 238, 1133, 974, 541, 478, 1257, 1265, 1465, 1589, 1326, 188, 1083, 681, 906, 1092, 1276, 316, 214, 1078, 1502, 1084, 660, 1142, 531, 255, 30, 662, 1253, 230, 157, 1343, 385, 1169, 380, 1188, 721, 264, 787, 101, 13, 1274, 68, 1024, 1170, 1156, 71, 1577, 566, 1372, 1245, 798, 523, 626, 495, 937, 155, 887, 758, 921, 790, 1349, 1230, 366, 1531, 983, 839, 228, 417, 206, 742, 79, 190, 492, 948, 145, 923, 318, 824, 1374, 1124, 1463, 596, 457, 144, 1359, 1292, 1045, 764, 842, 1140, 1408, 995, 904, 592, 1458, 135, 83, 1062, 154, 1440, 1283, 773, 1414, 127, 1177, 1318, 1413, 403, 150, 346, 413, 1303, 1523, 1619, 394, 1261, 1054, 208, 496, 352, 95, 625, 571, 37, 485, 143, 946, 158, 552, 1527, 1029, 518, 1180, 1218, 236, 1100, 222, 1431, 345, 1459, 120, 661, 588, 1623, 1493, 62, 1429, 811, 193, 235, 181, 1320, 389, 1103, 521, 669, 332, 258, 1369, 1538, 957, 382, 1382, 1567, 331, 934, 614, 262, 893, 6, 266, 769, 38, 901, 1573, 1578, 545, 118, 783, 652, 1025, 706, 105, 1189, 484, 1569, 630, 683, 20, 870, 242, 50, 162, 915, 966, 441, 867, 731, 1102, 1000, 1268, 1223, 822, 301, 723, 172], \"y\": [9.0, 11.0, 9.0, 10.9, 9.4, 8.9, 11.0, 9.5, 10.1, 9.8, 10.1, 10.8, 12.0, 10.5, 10.0, 11.0, 8.9, 12.4, 12.2, 8.7, 12.8, 10.6, 11.4, 10.7, 9.7, 10.0, 11.5, 10.3, 12.4, 8.9, 9.9, 9.2, 9.2, 10.5, 10.5, 9.8, 9.6, 9.2, 9.1, 10.1, 12.2, 11.0, 11.3, 8.8, 12.5, 12.3, 13.0, 9.0, 10.1, 9.5, 9.2, 10.3, 12.0, 12.1, 10.8, 8.7, 11.7, 9.7, 11.3333333333333, 9.3, 13.4, 11.8, 12.4, 11.3, 9.7, 11.8, 8.9, 12.0, 8.7, 9.4, 12.7, 9.0, 9.3, 10.9, 9.5, 9.4, 12.5, 9.7, 9.2, 12.8, 10.4, 10.5, 9.8, 11.4, 8.8, 9.5, 10.2, 8.7, 14.0, 9.8, 9.1, 10.4, 8.7, 12.3, 11.8, 11.2, 9.3, 12.5, 9.6, 9.3, 11.0, 10.7, 10.5, 10.55, 9.6, 9.1, 9.5, 11.7, 9.4, 9.2, 11.0, 9.7, 9.3, 9.3, 10.2, 9.6, 10.8, 9.4, 9.4, 12.2, 10.2, 11.4, 9.3, 12.4, 9.3, 11.9, 9.8, 12.0, 10.9, 11.5, 9.2, 9.3, 11.5, 11.4, 9.5, 10.8, 10.5666666666667, 11.9, 12.6, 13.2, 10.1, 12.6, 10.0333333333333, 13.1, 9.4, 9.8, 10.2, 11.1, 11.1, 9.0, 9.9, 11.2, 13.2, 9.1, 10.9, 10.4, 9.5, 9.4, 8.8, 11.5, 12.6, 11.6, 11.3, 10.7, 11.0, 8.8, 9.7, 12.3, 12.6, 9.3, 12.4, 12.4, 11.3, 9.5, 10.4, 11.5, 9.8, 11.1, 11.8, 12.1, 12.0, 12.2, 10.9, 9.4, 12.3, 9.2, 12.3, 10.2, 12.0, 12.5, 13.6, 12.5, 9.4, 11.1, 9.1, 9.8, 9.3, 10.5, 10.8, 11.6, 9.7, 9.0, 9.7, 11.0, 11.2, 12.7, 10.8, 9.4, 9.3, 10.9, 9.6, 9.2, 10.5, 9.4, 9.4, 10.5, 10.9, 10.7, 9.0, 10.2, 9.8, 11.2, 9.5, 9.2, 9.5, 12.5, 11.3, 10.4666666666667, 12.0, 10.6, 11.3, 9.4, 10.0, 9.0, 12.7, 9.5, 13.4, 10.5, 11.7, 10.3, 11.4, 11.5, 9.9, 11.0, 9.2, 11.4, 10.2, 10.9, 11.6, 11.1, 14.0, 8.9, 11.8, 10.4, 9.2, 11.4, 13.1, 13.6, 12.5, 9.0, 9.6, 11.0, 9.9, 9.5, 9.2, 9.5, 9.5, 10.7, 10.1, 9.4, 11.6, 10.3, 12.6, 10.4, 9.0, 8.8, 8.9, 9.8, 10.5, 11.1, 9.5, 9.5, 11.0, 9.4, 9.7, 11.9, 11.9, 9.2, 10.8, 9.7, 12.2, 10.5, 12.5, 9.4, 9.8, 12.5, 10.9, 10.4, 9.6, 11.9, 11.0, 10.6, 10.8, 9.7, 9.2, 12.0, 10.1, 8.9, 10.2, 11.4, 12.8, 10.6, 9.2, 12.4, 9.4, 9.0, 12.8, 10.6, 8.8, 10.0, 9.3, 11.3, 11.6, 9.4, 10.5, 9.4, 12.8, 12.2, 9.5, 10.0, 10.8, 9.5, 9.0, 9.2, 9.1, 9.2, 11.2, 10.3, 9.4, 12.0, 11.2, 9.1, 9.25, 10.1, 10.8, 12.1, 12.8, 8.9, 9.8, 9.9, 12.3, 10.6, 10.6, 11.2, 12.0, 11.2, 10.7, 9.4, 9.4, 9.5, 11.0, 13.3, 10.2, 11.4, 13.0, 10.3, 10.4, 10.6, 11.4, 9.5, 10.1, 8.8, 9.2, 10.7, 9.4, 11.0, 10.1, 9.6, 9.2, 9.7, 8.8, 10.1, 10.5, 11.6, 10.7, 13.4, 10.4, 9.2, 9.8, 10.2, 10.5, 9.4, 11.0, 8.7, 12.2, 12.2, 10.4, 10.6, 10.7, 10.2, 11.1, 12.5, 12.7, 10.6, 9.3, 11.4, 10.4, 9.9, 9.9, 11.3, 12.6, 11.0, 9.3, 9.9, 10.7, 9.4, 8.8, 10.4, 10.6, 10.7, 10.1, 10.3, 11.2, 9.1, 11.9, 11.8, 11.7, 10.0, 12.8, 11.6, 11.45, 11.3, 9.5, 9.7, 10.2, 11.0, 10.3, 9.5, 10.1, 10.9, 12.8, 10.4, 11.0, 9.2, 9.2, 9.5, 12.2, 11.0, 10.0, 11.8, 9.2, 10.0, 12.9, 10.3, 10.5, 9.5, 11.3, 10.1, 12.3, 10.5, 9.0, 11.0, 12.0, 10.7, 11.0, 9.4, 12.6, 11.2, 10.5, 11.5, 9.6, 9.3, 11.6, 9.3, 11.4, 10.4, 11.0, 9.8, 9.8, 10.1, 9.0, 10.4, 9.5, 9.2, 12.5, 13.0, 10.3, 9.0, 9.1, 10.4, 12.7, 11.0, 11.5, 9.6, 12.6, 10.6, 10.4, 9.0, 11.3, 9.4, 9.5, 9.2, 9.4, 10.9, 11.0, 10.3, 9.1, 9.2, 10.0, 10.5, 10.2, 11.9, 10.8, 10.2, 9.7, 11.4, 9.4, 9.5, 10.9, 10.2, 11.4, 10.5, 10.0, 11.7, 11.3, 9.5, 11.5, 8.8, 9.2, 12.4, 9.3, 12.0, 10.0, 10.1, 10.2, 9.3, 10.4, 8.8, 12.5, 12.9, 10.3, 8.7, 8.8, 10.6, 10.2, 9.2, 8.9, 10.3, 10.3, 8.0, 9.4, 10.2, 13.05, 10.1, 10.3, 10.8, 11.4, 11.7, 10.8, 9.8, 10.5, 12.0, 11.2, 9.6, 10.5, 12.4, 9.4, 11.5, 12.2, 9.3, 9.2, 9.3, 10.2, 9.3, 11.9, 10.5, 9.7, 11.0, 11.65, 11.4, 11.3, 11.0, 9.7, 9.3, 11.2, 10.2, 10.2, 10.1, 11.1, 10.8, 9.0, 12.5, 8.6, 12.6, 10.8, 9.5, 10.6, 11.5, 9.1, 11.4, 9.5, 9.8, 12.7, 9.1, 9.6, 9.8, 9.5, 9.0, 11.0, 10.5, 9.0, 12.5, 9.0, 9.4, 9.6, 10.0, 11.4, 10.4, 9.8, 10.6, 10.3, 9.4, 9.0, 9.6, 9.0, 9.3, 10.6, 12.6, 12.8, 11.3, 8.6, 10.2, 11.9, 9.0, 9.7, 12.1, 10.3, 9.2, 11.2, 10.5, 10.2, 10.6, 12.4, 12.0, 11.7, 9.3, 10.2, 11.4, 12.8, 11.5, 10.5, 9.0, 9.0, 10.2, 10.8, 9.0, 12.0, 9.3, 9.8, 8.7, 9.0, 9.3, 9.3, 9.1, 9.4, 9.1, 10.0, 12.5, 9.1, 9.8, 9.4, 12.0, 10.3, 9.2, 10.6, 14.0, 9.2, 10.0, 10.1, 8.8, 9.7, 10.6, 9.2, 9.5, 9.8, 10.4, 9.0, 11.0, 11.0, 10.65, 9.0, 8.8, 9.7, 11.3, 11.3, 9.6, 13.3, 9.4, 9.4, 8.7, 10.9, 10.4, 9.8, 12.7, 10.9, 10.3, 11.0, 10.6, 9.2, 11.4, 10.4, 10.3, 12.5, 9.2, 8.7, 10.3, 12.8, 9.5, 9.7, 10.9, 9.4, 11.4, 11.3, 10.0, 10.7, 10.2, 9.3, 11.4, 10.0, 10.6, 9.4, 11.4, 10.0, 11.9, 9.6, 9.0, 8.6, 10.6, 8.8, 11.0, 9.9, 12.7, 12.5, 8.8, 9.7, 9.4, 9.5, 9.5, 10.8, 10.8, 10.1, 9.8, 10.0, 9.1, 10.1, 10.1, 12.5, 11.0, 9.8, 9.5, 10.8, 9.7, 11.4, 9.8, 11.4, 10.0, 11.5, 10.3, 12.2, 11.75, 9.6, 10.3, 9.1, 11.0, 11.4, 10.0, 13.5, 8.9, 9.3, 9.4, 9.6, 10.2, 12.0, 10.1, 12.3, 9.0, 12.9, 11.3, 14.2, 11.4, 11.5, 9.5, 12.6, 10.1, 9.5, 10.1, 11.7, 9.2, 9.2, 10.0, 9.5, 12.4, 13.0, 11.4, 10.5, 10.9, 11.0, 9.2, 11.6, 9.3, 10.7, 9.2, 12.6, 11.2, 11.5, 9.1, 11.3, 10.1, 9.1, 11.4, 10.0, 9.8, 9.0, 13.0, 12.5, 9.5, 11.6, 9.7, 11.5, 12.1, 9.7, 9.5, 9.2, 9.5, 11.1, 11.2, 10.2, 11.3333333333333, 9.5, 9.0, 9.2, 10.9, 11.4, 13.1, 11.5, 10.9, 11.8, 10.3, 12.3, 9.1, 9.5, 11.4, 10.6, 11.4, 10.5, 11.1, 11.0, 10.4, 9.3, 10.0, 9.5, 10.1, 10.8, 12.3, 11.9, 11.0, 9.8, 10.4, 8.7, 11.4, 10.5, 9.5, 9.1, 12.1, 11.4, 9.0, 11.2, 9.4, 9.4, 13.0, 9.6, 12.5, 10.5, 10.3, 11.1, 12.0, 12.4, 11.0, 11.0, 12.3, 10.2, 11.0, 8.7, 9.9, 12.4, 8.8, 9.5, 9.6, 9.8, 10.5, 12.5, 9.5, 10.0, 10.0, 9.5, 10.2, 9.5, 10.2, 11.1, 10.0, 9.3, 10.4, 10.0, 10.0, 11.2, 11.8, 10.4, 12.5, 9.6, 9.4, 10.1, 9.5, 11.5, 11.5, 12.7, 9.4, 10.8, 8.8, 10.4, 12.2, 9.4, 9.5, 11.2, 10.4666666666667, 9.8, 10.5, 9.5, 9.8, 10.5, 10.6, 10.5, 10.4, 9.9, 9.6, 10.5, 9.1, 11.9, 11.4, 9.8, 9.7, 12.1, 12.9, 10.4, 9.5, 10.4, 9.3, 12.2, 10.2, 10.4, 12.4, 11.0, 8.8, 10.0, 10.8, 12.15, 10.7, 11.45, 8.9, 10.2, 9.2, 11.8, 12.1, 10.4, 9.8, 10.0, 12.7, 11.6, 9.8, 8.4, 12.3, 10.3, 10.2, 13.4, 9.3, 11.0, 9.5, 11.0, 12.0, 12.8, 9.2, 8.8, 8.8, 9.9, 8.9, 10.0, 9.5, 13.4, 9.3, 11.4, 11.0]}, {\"marker\": {\"color\": \"white\", \"opacity\": 0.005, \"size\": 0.01}, \"mode\": \"markers\", \"name\": \"Current\", \"showlegend\": false, \"type\": \"scatter\", \"x\": [2, 2], \"y\": [6.991666384467629, 14.029566948865671]}], \"layout\": {\"legend\": {\"orientation\": \"h\", \"x\": 1, \"xanchor\": \"right\", \"y\": 1.02, \"yanchor\": \"bottom\"}, \"shapes\": [{\"fillcolor\": \"LightGreen\", \"layer\": \"below\", \"line\": {\"width\": 0}, \"opacity\": 0.5, \"type\": \"rect\", \"x0\": 0, \"x1\": 1, \"xref\": \"paper\", \"y0\": 6.991666384467629, \"y1\": 14.029566948865671, \"yref\": \"y\"}, {\"line\": {\"color\": \"Green\", \"width\": 3}, \"name\": \"Reference\", \"type\": \"line\", \"x0\": 0, \"x1\": 1, \"xref\": \"paper\", \"y0\": 10.51061666666665, \"y1\": 10.51061666666665, \"yref\": \"y\"}], \"showlegend\": true, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"xaxis\": {\"title\": {\"text\": \"Index\"}}, \"yaxis\": {\"title\": {\"text\": \"alcohol\"}}}}}};\n",
474         "</script>\n",
475         "<script>\n",
476         "function domReady(fn) {\n",
477         "  // If we're early to the party\n",
478         "  document.addEventListener(\"DOMContentLoaded\", fn);\n",
479         "  // If late; I mean on time.\n",
480         "  if (document.readyState === \"interactive\" || document.readyState === \"complete\" ) {\n",
481         "    fn();\n",
482         "  }\n",
483         "}\n",
484         "\n",
485         "domReady(function () {\n",
486         "    requirejs([\"evidently\"], function(ev) {\n",
487         "        drawDashboard(evidently_dashboard_3966efb347484c23af70237a11fa6d90,\n",
488         "        new Map(Object.entries(additional_graphs_evidently_dashboard_3966efb347484c23af70237a11fa6d90)),\n",
489         "        \"root_evidently_dashboard_3966efb347484c23af70237a11fa6d90\");\n",
490         "    },\n",
491         "    function(err) {\n",
492         "        $(\"#root_evidently_dashboard_3966efb347484c23af70237a11fa6d90\").innerHTML = \"Failed to load\";\n",
493         "    })\n",
494         "});\n",
495         "</script>\n",
496         "<div class=\"reset-this-parent\" id=\"root_evidently_dashboard_3966efb347484c23af70237a11fa6d90\">Loading...</div>\n",
497         "\n"
498        ],
499        "text/plain": [
500         "<IPython.core.display.HTML object>"
501        ]
502       },
503       "execution_count": 203,
504       "metadata": {},
505       "output_type": "execute_result"
506      }
507     ],
508     "source": [
509      "model_performance_dashboard = Dashboard(tabs=[DataDriftTab()], options=[m_options])\n",
510      "model_performance_dashboard.calculate(merged_train_data.sample(1000, random_state=0), \n",
511      "                                      merged_test_data.sample(1000, random_state=0),\n",
512      "                                      column_mapping=wine_column_mapping)\n",
513      "model_performance_dashboard.show()"
514     ]
515    },
516    {
517     "cell_type": "code",
518     "execution_count": null,
519     "id": "63c3be1f",
520     "metadata": {},
521     "outputs": [],
522     "source": []
523    }
524   ],
525   "metadata": {
526    "kernelspec": {
527     "display_name": "Python 3 (ipykernel)",
528     "language": "python",
529     "name": "python3"
530    },
531    "language_info": {
532     "codemirror_mode": {
533      "name": "ipython",
534      "version": 3
535     },
536     "file_extension": ".py",
537     "mimetype": "text/x-python",
538     "name": "python",
539     "nbconvert_exporter": "python",
540     "pygments_lexer": "ipython3",
541     "version": "3.9.7"
542    }
543   },
544   "nbformat": 4,
545   "nbformat_minor": 5
546  }